blob: c13f45f07a9efab39b8776e053dd6590927f3ecc [file] [log] [blame]
Harald Welte9b455bf2010-03-14 15:45:01 +08001/* GPRS LLC protocol implementation as per 3GPP TS 04.64 */
2
Harald Weltea2665542010-05-02 09:28:11 +02003/* (C) 2009-2010 by Harald Welte <laforge@gnumonks.org>
Harald Welte9b455bf2010-03-14 15:45:01 +08004 *
5 * All Rights Reserved
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License along
18 * with this program; if not, write to the Free Software Foundation, Inc.,
19 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
20 *
21 */
22
23#include <errno.h>
Harald Welteeaa614c2010-05-02 11:26:34 +020024#include <stdint.h>
Harald Welte9b455bf2010-03-14 15:45:01 +080025
Harald Welte9b455bf2010-03-14 15:45:01 +080026#include <osmocore/msgb.h>
Harald Welte9b455bf2010-03-14 15:45:01 +080027#include <osmocore/linuxlist.h>
28#include <osmocore/timer.h>
Harald Weltea2665542010-05-02 09:28:11 +020029#include <osmocore/talloc.h>
30
31#include <openbsc/gsm_data.h>
32#include <openbsc/debug.h>
Harald Welte9b455bf2010-03-14 15:45:01 +080033#include <openbsc/gprs_bssgp.h>
34#include <openbsc/gprs_llc.h>
35#include <openbsc/crc24.h>
36
Harald Welte2e918a82010-05-18 12:20:12 +020037LLIST_HEAD(gprs_llc_lles);
Harald Weltea2665542010-05-02 09:28:11 +020038void *llc_tall_ctx;
39
40/* lookup LLC Entity based on DLCI (TLLI+SAPI tuple) */
41static struct gprs_llc_lle *lle_by_tlli_sapi(uint32_t tlli, uint32_t sapi)
42{
43 struct gprs_llc_lle *lle;
44
45 llist_for_each_entry(lle, &gprs_llc_lles, list) {
46 if (lle->tlli == tlli && lle->sapi == sapi)
47 return lle;
48 }
49 return NULL;
50}
51
52static struct gprs_llc_lle *lle_alloc(uint32_t tlli, uint32_t sapi)
53{
54 struct gprs_llc_lle *lle;
55
56 lle = talloc_zero(llc_tall_ctx, struct gprs_llc_lle);
57 if (!lle)
58 return NULL;
59
60 lle->tlli = tlli;
61 lle->sapi = sapi;
62 lle->state = GPRS_LLS_UNASSIGNED;
63 llist_add(&lle->list, &gprs_llc_lles);
64
65 return lle;
66}
67
Harald Welte9b455bf2010-03-14 15:45:01 +080068enum gprs_llc_cmd {
69 GPRS_LLC_NULL,
70 GPRS_LLC_RR,
71 GPRS_LLC_ACK,
72 GPRS_LLC_RNR,
73 GPRS_LLC_SACK,
74 GPRS_LLC_DM,
75 GPRS_LLC_DISC,
76 GPRS_LLC_UA,
77 GPRS_LLC_SABM,
78 GPRS_LLC_FRMR,
79 GPRS_LLC_XID,
Harald Welte1ae09c72010-05-13 19:22:55 +020080 GPRS_LLC_UI,
Harald Welte9b455bf2010-03-14 15:45:01 +080081};
82
Harald Welteb61f4032010-05-18 12:31:50 +020083static const struct value_string llc_cmd_strs[] = {
84 { GPRS_LLC_NULL, "NULL" },
85 { GPRS_LLC_RR, "RR" },
86 { GPRS_LLC_ACK, "ACK" },
87 { GPRS_LLC_RNR, "RNR" },
88 { GPRS_LLC_SACK, "SACK" },
89 { GPRS_LLC_DM, "DM" },
90 { GPRS_LLC_DISC, "DISC" },
91 { GPRS_LLC_UA, "UA" },
92 { GPRS_LLC_SABM, "SABM" },
93 { GPRS_LLC_FRMR, "FRMR" },
94 { GPRS_LLC_XID, "XID" },
95 { GPRS_LLC_UI, "UI" },
96 { 0, NULL }
97};
98
Harald Welte9b455bf2010-03-14 15:45:01 +080099struct gprs_llc_hdr_parsed {
Harald Welteeaa614c2010-05-02 11:26:34 +0200100 uint8_t sapi;
101 uint8_t is_cmd:1,
Harald Welte9b455bf2010-03-14 15:45:01 +0800102 ack_req:1,
103 is_encrypted:1;
Harald Welteeaa614c2010-05-02 11:26:34 +0200104 uint32_t seq_rx;
105 uint32_t seq_tx;
106 uint32_t fcs;
107 uint32_t fcs_calc;
108 uint8_t *data;
Harald Welte5658a1a2010-05-03 13:25:07 +0200109 uint16_t data_len;
Harald Welte9b455bf2010-03-14 15:45:01 +0800110 enum gprs_llc_cmd cmd;
111};
112
113#define LLC_ALLOC_SIZE 16384
114#define UI_HDR_LEN 3
115#define N202 4
116#define CRC24_LENGTH 3
117
Harald Welteeaa614c2010-05-02 11:26:34 +0200118static int gprs_llc_fcs(uint8_t *data, unsigned int len)
Harald Welte9b455bf2010-03-14 15:45:01 +0800119{
Harald Welteeaa614c2010-05-02 11:26:34 +0200120 uint32_t fcs_calc;
Harald Welte9b455bf2010-03-14 15:45:01 +0800121
122 fcs_calc = crc24_calc(INIT_CRC24, data, len);
123 fcs_calc = ~fcs_calc;
124 fcs_calc &= 0xffffff;
125
126 return fcs_calc;
127}
128
Harald Welte9b455bf2010-03-14 15:45:01 +0800129static void t200_expired(void *data)
130{
131 struct gprs_llc_lle *lle = data;
132
133 /* 8.5.1.3: Expiry of T200 */
134
135 if (lle->retrans_ctr >= lle->n200) {
136 /* FIXME: LLGM-STATUS-IND, LL-RELEASE-IND/CNF */
137 lle->state = GPRS_LLS_ASSIGNED_ADM;
138 }
139
140 switch (lle->state) {
141 case GPRS_LLS_LOCAL_EST:
Harald Welte1ae09c72010-05-13 19:22:55 +0200142 /* FIXME: retransmit SABM */
143 /* FIXME: re-start T200 */
Harald Welte9b455bf2010-03-14 15:45:01 +0800144 lle->retrans_ctr++;
145 break;
146 case GPRS_LLS_LOCAL_REL:
Harald Welte1ae09c72010-05-13 19:22:55 +0200147 /* FIXME: retransmit DISC */
148 /* FIXME: re-start T200 */
Harald Welte9b455bf2010-03-14 15:45:01 +0800149 lle->retrans_ctr++;
150 break;
151 }
152
153}
154
155static void t201_expired(void *data)
156{
157 struct gprs_llc_lle *lle = data;
158
159 if (lle->retrans_ctr < lle->n200) {
Harald Welte1ae09c72010-05-13 19:22:55 +0200160 /* FIXME: transmit apropriate supervisory frame (8.6.4.1) */
161 /* FIXME: set timer T201 */
Harald Welte9b455bf2010-03-14 15:45:01 +0800162 lle->retrans_ctr++;
163 }
164}
165
Harald Welte10997d02010-05-03 12:28:12 +0200166int gprs_llc_tx_u(struct msgb *msg, uint8_t sapi, int command,
167 enum gprs_llc_u_cmd u_cmd, int pf_bit)
168{
169 uint8_t *fcs, *llch;
170 uint8_t addr, ctrl;
171 uint32_t fcs_calc;
172
173 /* Identifiers from UP: (TLLI, SAPI) + (BVCI, NSEI) */
174
175 /* Address Field */
176 addr = sapi & 0xf;
177 if (command)
178 addr |= 0x40;
179
180 /* 6.3 Figure 8 */
181 ctrl = 0xe0 | u_cmd;
182 if (pf_bit)
183 ctrl |= 0x10;
184
185 /* prepend LLC UI header */
186 llch = msgb_push(msg, 2);
187 llch[0] = addr;
188 llch[1] = ctrl;
189
190 /* append FCS to end of frame */
191 fcs = msgb_put(msg, 3);
192 fcs_calc = gprs_llc_fcs(llch, fcs - llch);
193 fcs[0] = fcs_calc & 0xff;
194 fcs[1] = (fcs_calc >> 8) & 0xff;
195 fcs[2] = (fcs_calc >> 16) & 0xff;
196
197 /* Identifiers passed down: (BVCI, NSEI) */
198
Harald Welte1ae09c72010-05-13 19:22:55 +0200199 /* Send BSSGP-DL-UNITDATA.req */
Harald Welte56a01452010-05-31 22:12:30 +0200200 return gprs_bssgp_tx_dl_ud(msg, NULL);
Harald Welte10997d02010-05-03 12:28:12 +0200201}
202
203/* Send XID response to LLE */
204static int gprs_llc_tx_xid(struct gprs_llc_lle *lle, struct msgb *msg)
205{
206 /* copy identifiers from LLE to ensure lower layers can route */
207 msgb_tlli(msg) = lle->tlli;
208 msgb_bvci(msg) = lle->bvci;
209 msgb_nsei(msg) = lle->nsei;
210
211 return gprs_llc_tx_u(msg, lle->sapi, 0, GPRS_LLC_U_XID, 1);
212}
213
Harald Welte9b455bf2010-03-14 15:45:01 +0800214/* Transmit a UI frame over the given SAPI */
Harald Welte56a01452010-05-31 22:12:30 +0200215int gprs_llc_tx_ui(struct msgb *msg, uint8_t sapi, int command,
216 void *mmctx)
Harald Welte9b455bf2010-03-14 15:45:01 +0800217{
Harald Weltee6afd602010-05-02 11:19:37 +0200218 struct gprs_llc_lle *lle;
Harald Welteeaa614c2010-05-02 11:26:34 +0200219 uint8_t *fcs, *llch;
220 uint8_t addr, ctrl[2];
221 uint32_t fcs_calc;
222 uint16_t nu = 0;
Harald Welte9b455bf2010-03-14 15:45:01 +0800223
Harald Weltee6afd602010-05-02 11:19:37 +0200224 /* Identifiers from UP: (TLLI, SAPI) + (BVCI, NSEI) */
225
226 /* look-up or create the LL Entity for this (TLLI, SAPI) tuple */
227 lle = lle_by_tlli_sapi(msgb_tlli(msg), sapi);
228 if (!lle)
229 lle = lle_alloc(msgb_tlli(msg), sapi);
230 /* Update LLE's (BVCI, NSEI) tuple */
231 lle->bvci = msgb_bvci(msg);
232 lle->nsei = msgb_nsei(msg);
233
Harald Welte6bdee6a2010-05-30 21:51:58 +0200234 /* Increment V(U) */
235 nu = lle->vu_send;
236 lle->vu_send = (lle->vu_send + 1) % 512;
237
Harald Welte9b455bf2010-03-14 15:45:01 +0800238 /* Address Field */
239 addr = sapi & 0xf;
240 if (command)
241 addr |= 0x40;
242
243 /* Control Field */
244 ctrl[0] = 0xc0;
245 ctrl[0] |= nu >> 6;
246 ctrl[1] = (nu << 2) & 0xfc;
247 ctrl[1] |= 0x01; /* Protected Mode */
248
249 /* prepend LLC UI header */
250 llch = msgb_push(msg, 3);
251 llch[0] = addr;
252 llch[1] = ctrl[0];
253 llch[2] = ctrl[1];
254
255 /* append FCS to end of frame */
256 fcs = msgb_put(msg, 3);
257 fcs_calc = gprs_llc_fcs(llch, fcs - llch);
258 fcs[0] = fcs_calc & 0xff;
259 fcs[1] = (fcs_calc >> 8) & 0xff;
260 fcs[2] = (fcs_calc >> 16) & 0xff;
261
Harald Weltee6afd602010-05-02 11:19:37 +0200262 /* Identifiers passed down: (BVCI, NSEI) */
263
Harald Welte1ae09c72010-05-13 19:22:55 +0200264 /* Send BSSGP-DL-UNITDATA.req */
Harald Welte56a01452010-05-31 22:12:30 +0200265 return gprs_bssgp_tx_dl_ud(msg, mmctx);
Harald Welte9b455bf2010-03-14 15:45:01 +0800266}
267
Holger Hans Peter Freyther3a6fdcd2010-05-23 21:35:25 +0800268static void gprs_llc_hdr_dump(struct gprs_llc_hdr_parsed *gph)
Harald Welte9b455bf2010-03-14 15:45:01 +0800269{
Harald Weltec6ecafe2010-05-13 19:47:50 +0200270 DEBUGP(DLLC, "LLC SAPI=%u %c %c FCS=0x%06x(%s) ",
Harald Welte9b455bf2010-03-14 15:45:01 +0800271 gph->sapi, gph->is_cmd ? 'C' : 'R', gph->ack_req ? 'A' : ' ',
272 gph->fcs, gph->fcs_calc == gph->fcs ? "correct" : "WRONG");
273
274 if (gph->cmd)
Harald Welteb61f4032010-05-18 12:31:50 +0200275 DEBUGPC(DLLC, "CMD=%s ", get_value_string(llc_cmd_strs, gph->cmd));
Harald Welte9b455bf2010-03-14 15:45:01 +0800276
277 if (gph->data)
Harald Weltec6ecafe2010-05-13 19:47:50 +0200278 DEBUGPC(DLLC, "DATA ");
Harald Welte9b455bf2010-03-14 15:45:01 +0800279
Harald Weltec6ecafe2010-05-13 19:47:50 +0200280 DEBUGPC(DLLC, "\n");
Harald Welte9b455bf2010-03-14 15:45:01 +0800281}
282static int gprs_llc_hdr_rx(struct gprs_llc_hdr_parsed *gph,
283 struct gprs_llc_lle *lle)
284{
285 switch (gph->cmd) {
286 case GPRS_LLC_SABM: /* Section 6.4.1.1 */
287 lle->v_sent = lle->v_ack = lle->v_recv = 0;
288 if (lle->state == GPRS_LLS_ASSIGNED_ADM) {
289 /* start re-establishment (8.7.1) */
290 }
291 lle->state = GPRS_LLS_REMOTE_EST;
292 /* FIXME: Send UA */
293 lle->state = GPRS_LLS_ABM;
294 /* FIXME: process data */
295 break;
296 case GPRS_LLC_DISC: /* Section 6.4.1.2 */
297 /* FIXME: Send UA */
298 /* terminate ABM */
299 lle->state = GPRS_LLS_ASSIGNED_ADM;
300 break;
301 case GPRS_LLC_UA: /* Section 6.4.1.3 */
302 if (lle->state == GPRS_LLS_LOCAL_EST)
303 lle->state = GPRS_LLS_ABM;
304 break;
305 case GPRS_LLC_DM: /* Section 6.4.1.4: ABM cannot be performed */
306 if (lle->state == GPRS_LLS_LOCAL_EST)
307 lle->state = GPRS_LLS_ASSIGNED_ADM;
308 break;
309 case GPRS_LLC_FRMR: /* Section 6.4.1.5 */
310 break;
311 case GPRS_LLC_XID: /* Section 6.4.1.6 */
Harald Welte5658a1a2010-05-03 13:25:07 +0200312 /* FIXME: implement XID negotiation using SNDCP */
313 {
314 struct msgb *resp;
315 uint8_t *xid;
316 resp = msgb_alloc_headroom(4096, 1024, "LLC_XID");
317 xid = msgb_put(resp, gph->data_len);
318 memcpy(xid, gph->data, gph->data_len);
319 gprs_llc_tx_xid(lle, resp);
320 }
Harald Welte9b455bf2010-03-14 15:45:01 +0800321 break;
322 }
323
324 return 0;
325}
326
327/* parse a GPRS LLC header, also check for invalid frames */
328static int gprs_llc_hdr_parse(struct gprs_llc_hdr_parsed *ghp,
Holger Hans Peter Freytherfa848d42010-05-23 21:43:57 +0800329 uint8_t *llc_hdr, int len)
Harald Welte9b455bf2010-03-14 15:45:01 +0800330{
Harald Welteeaa614c2010-05-02 11:26:34 +0200331 uint8_t *ctrl = llc_hdr+1;
Harald Welte9b455bf2010-03-14 15:45:01 +0800332 int is_sack = 0;
333 unsigned int crc_length;
Harald Welteeaa614c2010-05-02 11:26:34 +0200334 uint32_t fcs_calc;
Harald Welte9b455bf2010-03-14 15:45:01 +0800335
336 if (len <= CRC24_LENGTH)
337 return -EIO;
338
339 crc_length = len - CRC24_LENGTH;
340
341 ghp->ack_req = 0;
342
343 /* Section 5.5: FCS */
344 ghp->fcs = *(llc_hdr + len - 3);
345 ghp->fcs |= *(llc_hdr + len - 2) << 8;
346 ghp->fcs |= *(llc_hdr + len - 1) << 16;
347
348 /* Section 6.2.1: invalid PD field */
349 if (llc_hdr[0] & 0x80)
350 return -EIO;
351
352 /* This only works for the MS->SGSN direction */
353 if (llc_hdr[0] & 0x40)
354 ghp->is_cmd = 0;
355 else
356 ghp->is_cmd = 1;
357
358 ghp->sapi = llc_hdr[0] & 0xf;
359
360 /* Section 6.2.3: check for reserved SAPI */
361 switch (ghp->sapi) {
362 case 0:
363 case 4:
364 case 6:
365 case 0xa:
366 case 0xc:
367 case 0xd:
368 case 0xf:
369 return -EINVAL;
370 }
371
372 if ((ctrl[0] & 0x80) == 0) {
373 /* I (Information transfer + Supervisory) format */
Harald Welteeaa614c2010-05-02 11:26:34 +0200374 uint8_t k;
Harald Welte9b455bf2010-03-14 15:45:01 +0800375
376 ghp->data = ctrl + 3;
377
378 if (ctrl[0] & 0x40)
379 ghp->ack_req = 1;
380
381 ghp->seq_tx = (ctrl[0] & 0x1f) << 4;
382 ghp->seq_tx |= (ctrl[1] >> 4);
383
384 ghp->seq_rx = (ctrl[1] & 0x7) << 6;
385 ghp->seq_rx |= (ctrl[2] >> 2);
386
387 switch (ctrl[2] & 0x03) {
388 case 0:
389 ghp->cmd = GPRS_LLC_RR;
390 break;
391 case 1:
392 ghp->cmd = GPRS_LLC_ACK;
393 break;
394 case 2:
395 ghp->cmd = GPRS_LLC_RNR;
396 break;
397 case 3:
398 ghp->cmd = GPRS_LLC_SACK;
399 k = ctrl[3] & 0x1f;
400 ghp->data += 1 + k;
401 break;
402 }
Harald Welte5658a1a2010-05-03 13:25:07 +0200403 ghp->data_len = (llc_hdr + len - 3) - ghp->data;
Harald Welte9b455bf2010-03-14 15:45:01 +0800404 } else if ((ctrl[0] & 0xc0) == 0x80) {
405 /* S (Supervisory) format */
406 ghp->data = NULL;
Harald Welte5658a1a2010-05-03 13:25:07 +0200407 ghp->data_len = 0;
Harald Welte9b455bf2010-03-14 15:45:01 +0800408
409 if (ctrl[0] & 0x20)
410 ghp->ack_req = 1;
411 ghp->seq_rx = (ctrl[0] & 0x7) << 6;
412 ghp->seq_rx |= (ctrl[1] >> 2);
413
414 switch (ctrl[1] & 0x03) {
415 case 0:
416 ghp->cmd = GPRS_LLC_RR;
417 break;
418 case 1:
419 ghp->cmd = GPRS_LLC_ACK;
420 break;
421 case 2:
422 ghp->cmd = GPRS_LLC_RNR;
423 break;
424 case 3:
425 ghp->cmd = GPRS_LLC_SACK;
426 break;
427 }
428 } else if ((ctrl[0] & 0xe0) == 0xc0) {
429 /* UI (Unconfirmed Inforamtion) format */
Harald Welte1ae09c72010-05-13 19:22:55 +0200430 ghp->cmd = GPRS_LLC_UI;
Harald Welte9b455bf2010-03-14 15:45:01 +0800431 ghp->data = ctrl + 2;
Harald Welte5658a1a2010-05-03 13:25:07 +0200432 ghp->data_len = (llc_hdr + len - 3) - ghp->data;
Harald Welte9b455bf2010-03-14 15:45:01 +0800433
434 ghp->seq_tx = (ctrl[0] & 0x7) << 6;
435 ghp->seq_tx |= (ctrl[1] >> 2);
436 if (ctrl[1] & 0x02) {
437 ghp->is_encrypted = 1;
438 /* FIXME: encryption */
439 }
440 if (ctrl[1] & 0x01) {
441 /* FCS over hdr + all inf fields */
442 } else {
443 /* FCS over hdr + N202 octets (4) */
444 if (crc_length > UI_HDR_LEN + N202)
445 crc_length = UI_HDR_LEN + N202;
446 }
447 } else {
448 /* U (Unnumbered) format: 1 1 1 P/F M4 M3 M2 M1 */
449 ghp->data = NULL;
Harald Welte5658a1a2010-05-03 13:25:07 +0200450 ghp->data_len = 0;
Harald Welte9b455bf2010-03-14 15:45:01 +0800451
452 switch (ctrl[0] & 0xf) {
Harald Welte5658a1a2010-05-03 13:25:07 +0200453 case GPRS_LLC_U_NULL_CMD:
Harald Welte9b455bf2010-03-14 15:45:01 +0800454 ghp->cmd = GPRS_LLC_NULL;
455 break;
Harald Welte5658a1a2010-05-03 13:25:07 +0200456 case GPRS_LLC_U_DM_RESP:
Harald Welte9b455bf2010-03-14 15:45:01 +0800457 ghp->cmd = GPRS_LLC_DM;
458 break;
Harald Welte5658a1a2010-05-03 13:25:07 +0200459 case GPRS_LLC_U_DISC_CMD:
Harald Welte9b455bf2010-03-14 15:45:01 +0800460 ghp->cmd = GPRS_LLC_DISC;
461 break;
Harald Welte5658a1a2010-05-03 13:25:07 +0200462 case GPRS_LLC_U_UA_RESP:
Harald Welte9b455bf2010-03-14 15:45:01 +0800463 ghp->cmd = GPRS_LLC_UA;
464 break;
Harald Welte5658a1a2010-05-03 13:25:07 +0200465 case GPRS_LLC_U_SABM_CMD:
Harald Welte9b455bf2010-03-14 15:45:01 +0800466 ghp->cmd = GPRS_LLC_SABM;
467 break;
Harald Welte5658a1a2010-05-03 13:25:07 +0200468 case GPRS_LLC_U_FRMR_RESP:
Harald Welte9b455bf2010-03-14 15:45:01 +0800469 ghp->cmd = GPRS_LLC_FRMR;
470 break;
Harald Welte5658a1a2010-05-03 13:25:07 +0200471 case GPRS_LLC_U_XID:
Harald Welte9b455bf2010-03-14 15:45:01 +0800472 ghp->cmd = GPRS_LLC_XID;
Harald Welte5658a1a2010-05-03 13:25:07 +0200473 ghp->data = ctrl + 1;
474 ghp->data_len = (llc_hdr + len - 3) - ghp->data;
Harald Welte9b455bf2010-03-14 15:45:01 +0800475 break;
476 default:
477 return -EIO;
478 }
479 }
480
481 /* calculate what FCS we expect */
482 ghp->fcs_calc = gprs_llc_fcs(llc_hdr, crc_length);
483
484 /* FIXME: parse sack frame */
Harald Welte1ae09c72010-05-13 19:22:55 +0200485 if (ghp->cmd == GPRS_LLC_SACK) {
Harald Welte1b170d12010-05-13 19:49:06 +0200486 LOGP(DLLC, LOGL_NOTICE, "Unsupported SACK frame\n");
Harald Welte1ae09c72010-05-13 19:22:55 +0200487 return -EIO;
488 }
489
490 return 0;
Harald Welte9b455bf2010-03-14 15:45:01 +0800491}
492
Harald Weltea2665542010-05-02 09:28:11 +0200493/* receive an incoming LLC PDU (BSSGP-UL-UNITDATA-IND, 7.2.4.2) */
Harald Welte9b455bf2010-03-14 15:45:01 +0800494int gprs_llc_rcvmsg(struct msgb *msg, struct tlv_parsed *tv)
495{
Harald Weltefd3fa1d2010-05-02 09:50:42 +0200496 struct bssgp_ud_hdr *udh = (struct bssgp_ud_hdr *) msgb_bssgph(msg);
Harald Welte943c5bc2010-04-30 16:33:12 +0200497 struct gprs_llc_hdr *lh = msgb_llch(msg);
Harald Welte9b455bf2010-03-14 15:45:01 +0800498 struct gprs_llc_hdr_parsed llhp;
Harald Welte10997d02010-05-03 12:28:12 +0200499 struct gprs_llc_lle *lle;
Harald Weltea2665542010-05-02 09:28:11 +0200500 int rc = 0;
Harald Welte9b455bf2010-03-14 15:45:01 +0800501
Harald Welte11d7c102010-05-02 11:54:55 +0200502 /* Identifiers from DOWN: NSEI, BVCI, TLLI */
503
Holger Hans Peter Freyther4752e0c2010-05-23 21:33:57 +0800504 memset(&llhp, 0, sizeof(llhp));
Holger Hans Peter Freytherfa848d42010-05-23 21:43:57 +0800505 rc = gprs_llc_hdr_parse(&llhp, (uint8_t *) lh, TLVP_LEN(tv, BSSGP_IE_LLC_PDU));
Harald Welte9b455bf2010-03-14 15:45:01 +0800506 gprs_llc_hdr_dump(&llhp);
Harald Welte1ae09c72010-05-13 19:22:55 +0200507 if (rc < 0) {
Harald Welte1b170d12010-05-13 19:49:06 +0200508 LOGP(DLLC, LOGL_NOTICE, "Error during LLC header parsing\n");
Harald Welte1ae09c72010-05-13 19:22:55 +0200509 return rc;
510 }
511
512 if (llhp.fcs != llhp.fcs_calc) {
Harald Welte1b170d12010-05-13 19:49:06 +0200513 LOGP(DLLC, LOGL_INFO, "Dropping frame with invalid FCS\n");
Harald Welte1ae09c72010-05-13 19:22:55 +0200514 return -EIO;
515 }
Harald Weltea2665542010-05-02 09:28:11 +0200516
517 /* find the LLC Entity for this TLLI+SAPI tuple */
518 lle = lle_by_tlli_sapi(msgb_tlli(msg), llhp.sapi);
Harald Welte1ae09c72010-05-13 19:22:55 +0200519
520 /* 7.2.1.1 LLC belonging to unassigned TLLI+SAPI shall be discarded,
521 * except UID and XID frames with SAPI=1 */
Harald Welted764c062010-05-18 12:45:08 +0200522 if (!lle) {
523 if (llhp.sapi == GPRS_SAPI_GMM &&
524 (llhp.cmd == GPRS_LLC_XID || llhp.cmd == GPRS_LLC_UI)) {
525 /* FIXME: don't use the TLLI but the 0xFFFF unassigned? */
526 lle = lle_alloc(msgb_tlli(msg), llhp.sapi);
527 } else {
528 LOGP(DLLC, LOGL_NOTICE,
529 "unknown TLLI/SAPI: Silently dropping\n");
530 return 0;
531 }
Harald Welte1ae09c72010-05-13 19:22:55 +0200532 }
Harald Weltea2665542010-05-02 09:28:11 +0200533
Harald Welte10997d02010-05-03 12:28:12 +0200534 /* Update LLE's (BVCI, NSEI) tuple */
535 lle->bvci = msgb_bvci(msg);
536 lle->nsei = msgb_nsei(msg);
537
Harald Welte1ae09c72010-05-13 19:22:55 +0200538 /* Receive and Process the actual LLC frame */
Harald Welte9b455bf2010-03-14 15:45:01 +0800539 rc = gprs_llc_hdr_rx(&llhp, lle);
Harald Welte1ae09c72010-05-13 19:22:55 +0200540 if (rc < 0)
541 return rc;
Harald Welte9b455bf2010-03-14 15:45:01 +0800542
Harald Welte1ae09c72010-05-13 19:22:55 +0200543 /* llhp.data is only set when we need to send LL_[UNIT]DATA_IND up */
Harald Welte9b455bf2010-03-14 15:45:01 +0800544 if (llhp.data) {
Harald Welte943c5bc2010-04-30 16:33:12 +0200545 msgb_gmmh(msg) = llhp.data;
Harald Welte9b455bf2010-03-14 15:45:01 +0800546 switch (llhp.sapi) {
547 case GPRS_SAPI_GMM:
Harald Welte1ae09c72010-05-13 19:22:55 +0200548 /* send LL_UNITDATA_IND to GMM */
Harald Welte9b455bf2010-03-14 15:45:01 +0800549 rc = gsm0408_gprs_rcvmsg(msg);
Harald Weltea2665542010-05-02 09:28:11 +0200550 break;
551 case GPRS_SAPI_TOM2:
552 case GPRS_SAPI_TOM8:
Harald Welte1ae09c72010-05-13 19:22:55 +0200553 /* FIXME: send LL_DATA_IND/LL_UNITDATA_IND to TOM */
Harald Weltea2665542010-05-02 09:28:11 +0200554 case GPRS_SAPI_SNDCP3:
555 case GPRS_SAPI_SNDCP5:
556 case GPRS_SAPI_SNDCP9:
557 case GPRS_SAPI_SNDCP11:
Harald Welte1ae09c72010-05-13 19:22:55 +0200558 /* FIXME: send LL_DATA_IND/LL_UNITDATA_IND to SNDCP */
Harald Weltea2665542010-05-02 09:28:11 +0200559 case GPRS_SAPI_SMS:
560 /* FIXME */
561 default:
Harald Weltec6ecafe2010-05-13 19:47:50 +0200562 LOGP(DLLC, LOGL_NOTICE, "Unsupported SAPI %u\n", llhp.sapi);
Harald Weltea2665542010-05-02 09:28:11 +0200563 rc = -EINVAL;
564 break;
Harald Welte9b455bf2010-03-14 15:45:01 +0800565 }
566 }
567
Harald Weltea2665542010-05-02 09:28:11 +0200568 return rc;
Harald Welte9b455bf2010-03-14 15:45:01 +0800569}