blob: 68d7d765436cf51b2ddd9de27a3f20eb93fa3bd5 [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 Welte10997d02010-05-03 12:28:12 +0200200 return gprs_bssgp_tx_dl_ud(msg);
201}
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 Welteeaa614c2010-05-02 11:26:34 +0200215int gprs_llc_tx_ui(struct msgb *msg, uint8_t sapi, int command)
Harald Welte9b455bf2010-03-14 15:45:01 +0800216{
Harald Weltee6afd602010-05-02 11:19:37 +0200217 struct gprs_llc_lle *lle;
Harald Welteeaa614c2010-05-02 11:26:34 +0200218 uint8_t *fcs, *llch;
219 uint8_t addr, ctrl[2];
220 uint32_t fcs_calc;
221 uint16_t nu = 0;
Harald Welte9b455bf2010-03-14 15:45:01 +0800222
Harald Weltee6afd602010-05-02 11:19:37 +0200223 /* Identifiers from UP: (TLLI, SAPI) + (BVCI, NSEI) */
224
225 /* look-up or create the LL Entity for this (TLLI, SAPI) tuple */
226 lle = lle_by_tlli_sapi(msgb_tlli(msg), sapi);
227 if (!lle)
228 lle = lle_alloc(msgb_tlli(msg), sapi);
229 /* Update LLE's (BVCI, NSEI) tuple */
230 lle->bvci = msgb_bvci(msg);
231 lle->nsei = msgb_nsei(msg);
232
Harald Welte6bdee6a2010-05-30 21:51:58 +0200233 /* Increment V(U) */
234 nu = lle->vu_send;
235 lle->vu_send = (lle->vu_send + 1) % 512;
236
Harald Welte9b455bf2010-03-14 15:45:01 +0800237 /* Address Field */
238 addr = sapi & 0xf;
239 if (command)
240 addr |= 0x40;
241
242 /* Control Field */
243 ctrl[0] = 0xc0;
244 ctrl[0] |= nu >> 6;
245 ctrl[1] = (nu << 2) & 0xfc;
246 ctrl[1] |= 0x01; /* Protected Mode */
247
248 /* prepend LLC UI header */
249 llch = msgb_push(msg, 3);
250 llch[0] = addr;
251 llch[1] = ctrl[0];
252 llch[2] = ctrl[1];
253
254 /* append FCS to end of frame */
255 fcs = msgb_put(msg, 3);
256 fcs_calc = gprs_llc_fcs(llch, fcs - llch);
257 fcs[0] = fcs_calc & 0xff;
258 fcs[1] = (fcs_calc >> 8) & 0xff;
259 fcs[2] = (fcs_calc >> 16) & 0xff;
260
Harald Weltee6afd602010-05-02 11:19:37 +0200261 /* Identifiers passed down: (BVCI, NSEI) */
262
Harald Welte1ae09c72010-05-13 19:22:55 +0200263 /* Send BSSGP-DL-UNITDATA.req */
Harald Welte9b455bf2010-03-14 15:45:01 +0800264 return gprs_bssgp_tx_dl_ud(msg);
265}
266
Holger Hans Peter Freyther3a6fdcd2010-05-23 21:35:25 +0800267static void gprs_llc_hdr_dump(struct gprs_llc_hdr_parsed *gph)
Harald Welte9b455bf2010-03-14 15:45:01 +0800268{
Harald Weltec6ecafe2010-05-13 19:47:50 +0200269 DEBUGP(DLLC, "LLC SAPI=%u %c %c FCS=0x%06x(%s) ",
Harald Welte9b455bf2010-03-14 15:45:01 +0800270 gph->sapi, gph->is_cmd ? 'C' : 'R', gph->ack_req ? 'A' : ' ',
271 gph->fcs, gph->fcs_calc == gph->fcs ? "correct" : "WRONG");
272
273 if (gph->cmd)
Harald Welteb61f4032010-05-18 12:31:50 +0200274 DEBUGPC(DLLC, "CMD=%s ", get_value_string(llc_cmd_strs, gph->cmd));
Harald Welte9b455bf2010-03-14 15:45:01 +0800275
276 if (gph->data)
Harald Weltec6ecafe2010-05-13 19:47:50 +0200277 DEBUGPC(DLLC, "DATA ");
Harald Welte9b455bf2010-03-14 15:45:01 +0800278
Harald Weltec6ecafe2010-05-13 19:47:50 +0200279 DEBUGPC(DLLC, "\n");
Harald Welte9b455bf2010-03-14 15:45:01 +0800280}
281static int gprs_llc_hdr_rx(struct gprs_llc_hdr_parsed *gph,
282 struct gprs_llc_lle *lle)
283{
284 switch (gph->cmd) {
285 case GPRS_LLC_SABM: /* Section 6.4.1.1 */
286 lle->v_sent = lle->v_ack = lle->v_recv = 0;
287 if (lle->state == GPRS_LLS_ASSIGNED_ADM) {
288 /* start re-establishment (8.7.1) */
289 }
290 lle->state = GPRS_LLS_REMOTE_EST;
291 /* FIXME: Send UA */
292 lle->state = GPRS_LLS_ABM;
293 /* FIXME: process data */
294 break;
295 case GPRS_LLC_DISC: /* Section 6.4.1.2 */
296 /* FIXME: Send UA */
297 /* terminate ABM */
298 lle->state = GPRS_LLS_ASSIGNED_ADM;
299 break;
300 case GPRS_LLC_UA: /* Section 6.4.1.3 */
301 if (lle->state == GPRS_LLS_LOCAL_EST)
302 lle->state = GPRS_LLS_ABM;
303 break;
304 case GPRS_LLC_DM: /* Section 6.4.1.4: ABM cannot be performed */
305 if (lle->state == GPRS_LLS_LOCAL_EST)
306 lle->state = GPRS_LLS_ASSIGNED_ADM;
307 break;
308 case GPRS_LLC_FRMR: /* Section 6.4.1.5 */
309 break;
310 case GPRS_LLC_XID: /* Section 6.4.1.6 */
Harald Welte5658a1a2010-05-03 13:25:07 +0200311 /* FIXME: implement XID negotiation using SNDCP */
312 {
313 struct msgb *resp;
314 uint8_t *xid;
315 resp = msgb_alloc_headroom(4096, 1024, "LLC_XID");
316 xid = msgb_put(resp, gph->data_len);
317 memcpy(xid, gph->data, gph->data_len);
318 gprs_llc_tx_xid(lle, resp);
319 }
Harald Welte9b455bf2010-03-14 15:45:01 +0800320 break;
321 }
322
323 return 0;
324}
325
326/* parse a GPRS LLC header, also check for invalid frames */
327static int gprs_llc_hdr_parse(struct gprs_llc_hdr_parsed *ghp,
Holger Hans Peter Freytherfa848d42010-05-23 21:43:57 +0800328 uint8_t *llc_hdr, int len)
Harald Welte9b455bf2010-03-14 15:45:01 +0800329{
Harald Welteeaa614c2010-05-02 11:26:34 +0200330 uint8_t *ctrl = llc_hdr+1;
Harald Welte9b455bf2010-03-14 15:45:01 +0800331 int is_sack = 0;
332 unsigned int crc_length;
Harald Welteeaa614c2010-05-02 11:26:34 +0200333 uint32_t fcs_calc;
Harald Welte9b455bf2010-03-14 15:45:01 +0800334
335 if (len <= CRC24_LENGTH)
336 return -EIO;
337
338 crc_length = len - CRC24_LENGTH;
339
340 ghp->ack_req = 0;
341
342 /* Section 5.5: FCS */
343 ghp->fcs = *(llc_hdr + len - 3);
344 ghp->fcs |= *(llc_hdr + len - 2) << 8;
345 ghp->fcs |= *(llc_hdr + len - 1) << 16;
346
347 /* Section 6.2.1: invalid PD field */
348 if (llc_hdr[0] & 0x80)
349 return -EIO;
350
351 /* This only works for the MS->SGSN direction */
352 if (llc_hdr[0] & 0x40)
353 ghp->is_cmd = 0;
354 else
355 ghp->is_cmd = 1;
356
357 ghp->sapi = llc_hdr[0] & 0xf;
358
359 /* Section 6.2.3: check for reserved SAPI */
360 switch (ghp->sapi) {
361 case 0:
362 case 4:
363 case 6:
364 case 0xa:
365 case 0xc:
366 case 0xd:
367 case 0xf:
368 return -EINVAL;
369 }
370
371 if ((ctrl[0] & 0x80) == 0) {
372 /* I (Information transfer + Supervisory) format */
Harald Welteeaa614c2010-05-02 11:26:34 +0200373 uint8_t k;
Harald Welte9b455bf2010-03-14 15:45:01 +0800374
375 ghp->data = ctrl + 3;
376
377 if (ctrl[0] & 0x40)
378 ghp->ack_req = 1;
379
380 ghp->seq_tx = (ctrl[0] & 0x1f) << 4;
381 ghp->seq_tx |= (ctrl[1] >> 4);
382
383 ghp->seq_rx = (ctrl[1] & 0x7) << 6;
384 ghp->seq_rx |= (ctrl[2] >> 2);
385
386 switch (ctrl[2] & 0x03) {
387 case 0:
388 ghp->cmd = GPRS_LLC_RR;
389 break;
390 case 1:
391 ghp->cmd = GPRS_LLC_ACK;
392 break;
393 case 2:
394 ghp->cmd = GPRS_LLC_RNR;
395 break;
396 case 3:
397 ghp->cmd = GPRS_LLC_SACK;
398 k = ctrl[3] & 0x1f;
399 ghp->data += 1 + k;
400 break;
401 }
Harald Welte5658a1a2010-05-03 13:25:07 +0200402 ghp->data_len = (llc_hdr + len - 3) - ghp->data;
Harald Welte9b455bf2010-03-14 15:45:01 +0800403 } else if ((ctrl[0] & 0xc0) == 0x80) {
404 /* S (Supervisory) format */
405 ghp->data = NULL;
Harald Welte5658a1a2010-05-03 13:25:07 +0200406 ghp->data_len = 0;
Harald Welte9b455bf2010-03-14 15:45:01 +0800407
408 if (ctrl[0] & 0x20)
409 ghp->ack_req = 1;
410 ghp->seq_rx = (ctrl[0] & 0x7) << 6;
411 ghp->seq_rx |= (ctrl[1] >> 2);
412
413 switch (ctrl[1] & 0x03) {
414 case 0:
415 ghp->cmd = GPRS_LLC_RR;
416 break;
417 case 1:
418 ghp->cmd = GPRS_LLC_ACK;
419 break;
420 case 2:
421 ghp->cmd = GPRS_LLC_RNR;
422 break;
423 case 3:
424 ghp->cmd = GPRS_LLC_SACK;
425 break;
426 }
427 } else if ((ctrl[0] & 0xe0) == 0xc0) {
428 /* UI (Unconfirmed Inforamtion) format */
Harald Welte1ae09c72010-05-13 19:22:55 +0200429 ghp->cmd = GPRS_LLC_UI;
Harald Welte9b455bf2010-03-14 15:45:01 +0800430 ghp->data = ctrl + 2;
Harald Welte5658a1a2010-05-03 13:25:07 +0200431 ghp->data_len = (llc_hdr + len - 3) - ghp->data;
Harald Welte9b455bf2010-03-14 15:45:01 +0800432
433 ghp->seq_tx = (ctrl[0] & 0x7) << 6;
434 ghp->seq_tx |= (ctrl[1] >> 2);
435 if (ctrl[1] & 0x02) {
436 ghp->is_encrypted = 1;
437 /* FIXME: encryption */
438 }
439 if (ctrl[1] & 0x01) {
440 /* FCS over hdr + all inf fields */
441 } else {
442 /* FCS over hdr + N202 octets (4) */
443 if (crc_length > UI_HDR_LEN + N202)
444 crc_length = UI_HDR_LEN + N202;
445 }
446 } else {
447 /* U (Unnumbered) format: 1 1 1 P/F M4 M3 M2 M1 */
448 ghp->data = NULL;
Harald Welte5658a1a2010-05-03 13:25:07 +0200449 ghp->data_len = 0;
Harald Welte9b455bf2010-03-14 15:45:01 +0800450
451 switch (ctrl[0] & 0xf) {
Harald Welte5658a1a2010-05-03 13:25:07 +0200452 case GPRS_LLC_U_NULL_CMD:
Harald Welte9b455bf2010-03-14 15:45:01 +0800453 ghp->cmd = GPRS_LLC_NULL;
454 break;
Harald Welte5658a1a2010-05-03 13:25:07 +0200455 case GPRS_LLC_U_DM_RESP:
Harald Welte9b455bf2010-03-14 15:45:01 +0800456 ghp->cmd = GPRS_LLC_DM;
457 break;
Harald Welte5658a1a2010-05-03 13:25:07 +0200458 case GPRS_LLC_U_DISC_CMD:
Harald Welte9b455bf2010-03-14 15:45:01 +0800459 ghp->cmd = GPRS_LLC_DISC;
460 break;
Harald Welte5658a1a2010-05-03 13:25:07 +0200461 case GPRS_LLC_U_UA_RESP:
Harald Welte9b455bf2010-03-14 15:45:01 +0800462 ghp->cmd = GPRS_LLC_UA;
463 break;
Harald Welte5658a1a2010-05-03 13:25:07 +0200464 case GPRS_LLC_U_SABM_CMD:
Harald Welte9b455bf2010-03-14 15:45:01 +0800465 ghp->cmd = GPRS_LLC_SABM;
466 break;
Harald Welte5658a1a2010-05-03 13:25:07 +0200467 case GPRS_LLC_U_FRMR_RESP:
Harald Welte9b455bf2010-03-14 15:45:01 +0800468 ghp->cmd = GPRS_LLC_FRMR;
469 break;
Harald Welte5658a1a2010-05-03 13:25:07 +0200470 case GPRS_LLC_U_XID:
Harald Welte9b455bf2010-03-14 15:45:01 +0800471 ghp->cmd = GPRS_LLC_XID;
Harald Welte5658a1a2010-05-03 13:25:07 +0200472 ghp->data = ctrl + 1;
473 ghp->data_len = (llc_hdr + len - 3) - ghp->data;
Harald Welte9b455bf2010-03-14 15:45:01 +0800474 break;
475 default:
476 return -EIO;
477 }
478 }
479
480 /* calculate what FCS we expect */
481 ghp->fcs_calc = gprs_llc_fcs(llc_hdr, crc_length);
482
483 /* FIXME: parse sack frame */
Harald Welte1ae09c72010-05-13 19:22:55 +0200484 if (ghp->cmd == GPRS_LLC_SACK) {
Harald Welte1b170d12010-05-13 19:49:06 +0200485 LOGP(DLLC, LOGL_NOTICE, "Unsupported SACK frame\n");
Harald Welte1ae09c72010-05-13 19:22:55 +0200486 return -EIO;
487 }
488
489 return 0;
Harald Welte9b455bf2010-03-14 15:45:01 +0800490}
491
Harald Weltea2665542010-05-02 09:28:11 +0200492/* receive an incoming LLC PDU (BSSGP-UL-UNITDATA-IND, 7.2.4.2) */
Harald Welte9b455bf2010-03-14 15:45:01 +0800493int gprs_llc_rcvmsg(struct msgb *msg, struct tlv_parsed *tv)
494{
Harald Weltefd3fa1d2010-05-02 09:50:42 +0200495 struct bssgp_ud_hdr *udh = (struct bssgp_ud_hdr *) msgb_bssgph(msg);
Harald Welte943c5bc2010-04-30 16:33:12 +0200496 struct gprs_llc_hdr *lh = msgb_llch(msg);
Harald Welte9b455bf2010-03-14 15:45:01 +0800497 struct gprs_llc_hdr_parsed llhp;
Harald Welte10997d02010-05-03 12:28:12 +0200498 struct gprs_llc_lle *lle;
Harald Weltea2665542010-05-02 09:28:11 +0200499 int rc = 0;
Harald Welte9b455bf2010-03-14 15:45:01 +0800500
Harald Welte11d7c102010-05-02 11:54:55 +0200501 /* Identifiers from DOWN: NSEI, BVCI, TLLI */
502
Holger Hans Peter Freyther4752e0c2010-05-23 21:33:57 +0800503 memset(&llhp, 0, sizeof(llhp));
Holger Hans Peter Freytherfa848d42010-05-23 21:43:57 +0800504 rc = gprs_llc_hdr_parse(&llhp, (uint8_t *) lh, TLVP_LEN(tv, BSSGP_IE_LLC_PDU));
Harald Welte9b455bf2010-03-14 15:45:01 +0800505 gprs_llc_hdr_dump(&llhp);
Harald Welte1ae09c72010-05-13 19:22:55 +0200506 if (rc < 0) {
Harald Welte1b170d12010-05-13 19:49:06 +0200507 LOGP(DLLC, LOGL_NOTICE, "Error during LLC header parsing\n");
Harald Welte1ae09c72010-05-13 19:22:55 +0200508 return rc;
509 }
510
511 if (llhp.fcs != llhp.fcs_calc) {
Harald Welte1b170d12010-05-13 19:49:06 +0200512 LOGP(DLLC, LOGL_INFO, "Dropping frame with invalid FCS\n");
Harald Welte1ae09c72010-05-13 19:22:55 +0200513 return -EIO;
514 }
Harald Weltea2665542010-05-02 09:28:11 +0200515
516 /* find the LLC Entity for this TLLI+SAPI tuple */
517 lle = lle_by_tlli_sapi(msgb_tlli(msg), llhp.sapi);
Harald Welte1ae09c72010-05-13 19:22:55 +0200518
519 /* 7.2.1.1 LLC belonging to unassigned TLLI+SAPI shall be discarded,
520 * except UID and XID frames with SAPI=1 */
Harald Welted764c062010-05-18 12:45:08 +0200521 if (!lle) {
522 if (llhp.sapi == GPRS_SAPI_GMM &&
523 (llhp.cmd == GPRS_LLC_XID || llhp.cmd == GPRS_LLC_UI)) {
524 /* FIXME: don't use the TLLI but the 0xFFFF unassigned? */
525 lle = lle_alloc(msgb_tlli(msg), llhp.sapi);
526 } else {
527 LOGP(DLLC, LOGL_NOTICE,
528 "unknown TLLI/SAPI: Silently dropping\n");
529 return 0;
530 }
Harald Welte1ae09c72010-05-13 19:22:55 +0200531 }
Harald Weltea2665542010-05-02 09:28:11 +0200532
Harald Welte10997d02010-05-03 12:28:12 +0200533 /* Update LLE's (BVCI, NSEI) tuple */
534 lle->bvci = msgb_bvci(msg);
535 lle->nsei = msgb_nsei(msg);
536
Harald Welte1ae09c72010-05-13 19:22:55 +0200537 /* Receive and Process the actual LLC frame */
Harald Welte9b455bf2010-03-14 15:45:01 +0800538 rc = gprs_llc_hdr_rx(&llhp, lle);
Harald Welte1ae09c72010-05-13 19:22:55 +0200539 if (rc < 0)
540 return rc;
Harald Welte9b455bf2010-03-14 15:45:01 +0800541
Harald Welte1ae09c72010-05-13 19:22:55 +0200542 /* llhp.data is only set when we need to send LL_[UNIT]DATA_IND up */
Harald Welte9b455bf2010-03-14 15:45:01 +0800543 if (llhp.data) {
Harald Welte943c5bc2010-04-30 16:33:12 +0200544 msgb_gmmh(msg) = llhp.data;
Harald Welte9b455bf2010-03-14 15:45:01 +0800545 switch (llhp.sapi) {
546 case GPRS_SAPI_GMM:
Harald Welte1ae09c72010-05-13 19:22:55 +0200547 /* send LL_UNITDATA_IND to GMM */
Harald Welte9b455bf2010-03-14 15:45:01 +0800548 rc = gsm0408_gprs_rcvmsg(msg);
Harald Weltea2665542010-05-02 09:28:11 +0200549 break;
550 case GPRS_SAPI_TOM2:
551 case GPRS_SAPI_TOM8:
Harald Welte1ae09c72010-05-13 19:22:55 +0200552 /* FIXME: send LL_DATA_IND/LL_UNITDATA_IND to TOM */
Harald Weltea2665542010-05-02 09:28:11 +0200553 case GPRS_SAPI_SNDCP3:
554 case GPRS_SAPI_SNDCP5:
555 case GPRS_SAPI_SNDCP9:
556 case GPRS_SAPI_SNDCP11:
Harald Welte1ae09c72010-05-13 19:22:55 +0200557 /* FIXME: send LL_DATA_IND/LL_UNITDATA_IND to SNDCP */
Harald Weltea2665542010-05-02 09:28:11 +0200558 case GPRS_SAPI_SMS:
559 /* FIXME */
560 default:
Harald Weltec6ecafe2010-05-13 19:47:50 +0200561 LOGP(DLLC, LOGL_NOTICE, "Unsupported SAPI %u\n", llhp.sapi);
Harald Weltea2665542010-05-02 09:28:11 +0200562 rc = -EINVAL;
563 break;
Harald Welte9b455bf2010-03-14 15:45:01 +0800564 }
565 }
566
Harald Weltea2665542010-05-02 09:28:11 +0200567 return rc;
Harald Welte9b455bf2010-03-14 15:45:01 +0800568}