blob: 46d779b4c09c03e2a232a0e00557cafb345b5df3 [file] [log] [blame]
Harald Welte96f71f22010-05-03 19:28:05 +02001/* GPRS SNDCP protocol implementation as per 3GPP TS 04.65 */
2
3/* (C) 2010 by Harald Welte <laforge@gnumonks.org>
Harald Weltece22f922010-06-03 21:21:21 +02004 * (C) 2010 by On-Waves
Harald Welte96f71f22010-05-03 19:28:05 +02005 *
6 * All Rights Reserved
7 *
8 * This program is free software; you can redistribute it and/or modify
Harald Welte9af6ddf2011-01-01 15:25:50 +01009 * it under the terms of the GNU Affero General Public License as published by
10 * the Free Software Foundation; either version 3 of the License, or
Harald Welte96f71f22010-05-03 19:28:05 +020011 * (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
Harald Welte9af6ddf2011-01-01 15:25:50 +010016 * GNU Affero General Public License for more details.
Harald Welte96f71f22010-05-03 19:28:05 +020017 *
Harald Welte9af6ddf2011-01-01 15:25:50 +010018 * You should have received a copy of the GNU Affero General Public License
19 * along with this program. If not, see <http://www.gnu.org/licenses/>.
Harald Welte96f71f22010-05-03 19:28:05 +020020 *
21 */
22
23#include <errno.h>
24#include <stdint.h>
25
Pablo Neira Ayuso136f4532011-03-22 16:47:59 +010026#include <osmocom/core/msgb.h>
27#include <osmocom/core/linuxlist.h>
28#include <osmocom/core/timer.h>
29#include <osmocom/core/talloc.h>
Harald Welteea34a4e2012-06-16 14:59:56 +080030#include <osmocom/gprs/gprs_bssgp.h>
Harald Welte96f71f22010-05-03 19:28:05 +020031
32#include <openbsc/gsm_data.h>
33#include <openbsc/debug.h>
Harald Welte96f71f22010-05-03 19:28:05 +020034#include <openbsc/gprs_llc.h>
Harald Welteebabdea2010-06-01 18:28:10 +020035#include <openbsc/sgsn.h>
Harald Welte96f71f22010-05-03 19:28:05 +020036
Harald Weltef78a3b22010-06-30 17:21:19 +020037#include "gprs_sndcp.h"
38
Harald Welte96f71f22010-05-03 19:28:05 +020039/* Chapter 7.2: SN-PDU Formats */
40struct sndcp_common_hdr {
41 /* octet 1 */
42 uint8_t nsapi:4;
43 uint8_t more:1;
44 uint8_t type:1;
45 uint8_t first:1;
46 uint8_t spare:1;
Harald Weltece22f922010-06-03 21:21:21 +020047} __attribute__((packed));
48
49/* PCOMP / DCOMP only exist in first fragment */
50struct sndcp_comp_hdr {
Harald Welte96f71f22010-05-03 19:28:05 +020051 /* octet 2 */
Harald Welte5cc2bc32010-06-02 23:17:05 +020052 uint8_t pcomp:4;
53 uint8_t dcomp:4;
Harald Welteebabdea2010-06-01 18:28:10 +020054} __attribute__((packed));
Harald Welte96f71f22010-05-03 19:28:05 +020055
56struct sndcp_udata_hdr {
57 /* octet 3 */
58 uint8_t npdu_high:4;
59 uint8_t seg_nr:4;
60 /* octet 4 */
61 uint8_t npdu_low;
Harald Welteebabdea2010-06-01 18:28:10 +020062} __attribute__((packed));
63
Harald Welteebabdea2010-06-01 18:28:10 +020064
65static void *tall_sndcp_ctx;
66
67/* A fragment queue entry, containing one framgent of a N-PDU */
Harald Weltece22f922010-06-03 21:21:21 +020068struct defrag_queue_entry {
Harald Welteebabdea2010-06-01 18:28:10 +020069 struct llist_head list;
Harald Weltece22f922010-06-03 21:21:21 +020070 /* segment number of this fragment */
71 uint32_t seg_nr;
72 /* length of the data area of this fragment */
Harald Welteebabdea2010-06-01 18:28:10 +020073 uint32_t data_len;
Harald Weltece22f922010-06-03 21:21:21 +020074 /* pointer to the data of this fragment */
75 uint8_t *data;
Harald Welteebabdea2010-06-01 18:28:10 +020076};
77
Harald Weltef78a3b22010-06-30 17:21:19 +020078LLIST_HEAD(gprs_sndcp_entities);
Harald Welte96f71f22010-05-03 19:28:05 +020079
Harald Weltece22f922010-06-03 21:21:21 +020080/* Enqueue a fragment into the defragment queue */
Harald Weltef78a3b22010-06-30 17:21:19 +020081static int defrag_enqueue(struct gprs_sndcp_entity *sne, uint8_t seg_nr,
Harald Welte3d6815a2010-07-02 17:16:07 +020082 uint8_t *data, uint32_t data_len)
Harald Welteebabdea2010-06-01 18:28:10 +020083{
Harald Weltece22f922010-06-03 21:21:21 +020084 struct defrag_queue_entry *dqe;
Harald Welteebabdea2010-06-01 18:28:10 +020085
Harald Weltece22f922010-06-03 21:21:21 +020086 dqe = talloc_zero(tall_sndcp_ctx, struct defrag_queue_entry);
87 if (!dqe)
88 return -ENOMEM;
89 dqe->data = talloc_zero_size(dqe, data_len);
90 if (!dqe->data) {
91 talloc_free(dqe);
92 return -ENOMEM;
93 }
94 dqe->seg_nr = seg_nr;
95 dqe->data_len = data_len;
96
97 llist_add(&dqe->list, &sne->defrag.frag_list);
98
99 if (seg_nr > sne->defrag.highest_seg)
100 sne->defrag.highest_seg = seg_nr;
101
102 sne->defrag.seg_have |= (1 << seg_nr);
103 sne->defrag.tot_len += data_len;
104
Harald Welte8f0c0a32010-07-02 10:29:06 +0200105 memcpy(dqe->data, data, data_len);
106
Harald Weltece22f922010-06-03 21:21:21 +0200107 return 0;
Harald Welteebabdea2010-06-01 18:28:10 +0200108}
109
Harald Weltece22f922010-06-03 21:21:21 +0200110/* return if we have all segments of this N-PDU */
Harald Weltef78a3b22010-06-30 17:21:19 +0200111static int defrag_have_all_segments(struct gprs_sndcp_entity *sne)
Harald Welteebabdea2010-06-01 18:28:10 +0200112{
Harald Weltece22f922010-06-03 21:21:21 +0200113 uint32_t seg_needed = 0;
114 unsigned int i;
Harald Welteebabdea2010-06-01 18:28:10 +0200115
Harald Weltece22f922010-06-03 21:21:21 +0200116 /* create a bitmask of needed segments */
Harald Welte951a12c2010-07-01 15:09:45 +0200117 for (i = 0; i <= sne->defrag.highest_seg; i++)
Harald Weltece22f922010-06-03 21:21:21 +0200118 seg_needed |= (1 << i);
119
120 if (seg_needed == sne->defrag.seg_have)
121 return 1;
122
123 return 0;
Harald Welteebabdea2010-06-01 18:28:10 +0200124}
125
Harald Weltef78a3b22010-06-30 17:21:19 +0200126static struct defrag_queue_entry *defrag_get_seg(struct gprs_sndcp_entity *sne,
Harald Weltece22f922010-06-03 21:21:21 +0200127 uint32_t seg_nr)
Harald Welteebabdea2010-06-01 18:28:10 +0200128{
Harald Weltece22f922010-06-03 21:21:21 +0200129 struct defrag_queue_entry *dqe;
130
131 llist_for_each_entry(dqe, &sne->defrag.frag_list, list) {
132 if (dqe->seg_nr == seg_nr) {
133 llist_del(&dqe->list);
134 return dqe;
135 }
136 }
137 return NULL;
Harald Welteebabdea2010-06-01 18:28:10 +0200138}
Harald Weltece22f922010-06-03 21:21:21 +0200139
Harald Welte8b705f22010-07-02 16:18:59 +0200140/* Perform actual defragmentation and create an output packet */
Harald Weltef78a3b22010-06-30 17:21:19 +0200141static int defrag_segments(struct gprs_sndcp_entity *sne)
Harald Weltece22f922010-06-03 21:21:21 +0200142{
143 struct msgb *msg;
144 unsigned int seg_nr;
145 uint8_t *npdu;
146
Harald Welteab4094c2010-07-02 16:01:47 +0200147 LOGP(DSNDCP, LOGL_DEBUG, "TLLI=0x%08x NSAPI=%u: Defragment output PDU %u "
148 "num_seg=%u tot_len=%u\n", sne->lle->llme->tlli, sne->nsapi,
149 sne->defrag.npdu, sne->defrag.highest_seg, sne->defrag.tot_len);
Sylvain Munauteda125c2010-06-09 20:56:52 +0200150 msg = msgb_alloc_headroom(sne->defrag.tot_len+256, 128, "SNDCP Defrag");
Harald Weltece22f922010-06-03 21:21:21 +0200151 if (!msg)
152 return -ENOMEM;
153
154 /* FIXME: message headers + identifiers */
155
156 npdu = msg->data;
157
Harald Welte993697c2010-07-02 10:11:42 +0200158 for (seg_nr = 0; seg_nr <= sne->defrag.highest_seg; seg_nr++) {
Harald Weltece22f922010-06-03 21:21:21 +0200159 struct defrag_queue_entry *dqe;
160 uint8_t *data;
161
162 dqe = defrag_get_seg(sne, seg_nr);
163 if (!dqe) {
164 LOGP(DSNDCP, LOGL_ERROR, "Segment %u missing\n", seg_nr);
Holger Hans Peter Freythera8ddb082012-03-01 20:30:32 +0100165 msgb_free(msg);
Harald Weltece22f922010-06-03 21:21:21 +0200166 return -EIO;
167 }
168 /* actually append the segment to the N-PDU */
169 data = msgb_put(msg, dqe->data_len);
170 memcpy(data, dqe->data, dqe->data_len);
171
172 /* release memory for the fragment queue entry */
173 talloc_free(dqe);
174 }
175
Harald Welte8b705f22010-07-02 16:18:59 +0200176 /* FIXME: cancel timer */
177
Harald Weltece22f922010-06-03 21:21:21 +0200178 /* actually send the N-PDU to the SGSN core code, which then
179 * hands it off to the correct GTP tunnel + GGSN via gtp_data_req() */
Harald Welte8911cef2010-07-01 19:56:19 +0200180 return sgsn_rx_sndcp_ud_ind(&sne->ra_id, sne->lle->llme->tlli,
181 sne->nsapi, msg, sne->defrag.tot_len, npdu);
Harald Weltece22f922010-06-03 21:21:21 +0200182}
183
Harald Welte60da7d42010-07-02 15:45:12 +0200184static int defrag_input(struct gprs_sndcp_entity *sne, struct msgb *msg, uint8_t *hdr,
185 unsigned int len)
Harald Weltece22f922010-06-03 21:21:21 +0200186{
187 struct sndcp_common_hdr *sch;
Harald Weltece22f922010-06-03 21:21:21 +0200188 struct sndcp_udata_hdr *suh;
189 uint16_t npdu_num;
190 uint8_t *data;
191 int rc;
192
193 sch = (struct sndcp_common_hdr *) hdr;
194 if (sch->first) {
Harald Weltece22f922010-06-03 21:21:21 +0200195 suh = (struct sndcp_udata_hdr *) (hdr + 1 + sizeof(struct sndcp_common_hdr));
196 } else
197 suh = (struct sndcp_udata_hdr *) (hdr + sizeof(struct sndcp_common_hdr));
198
199 data = (uint8_t *)suh + sizeof(struct sndcp_udata_hdr);
200
201 npdu_num = (suh->npdu_high << 8) | suh->npdu_low;
202
Harald Welteab4094c2010-07-02 16:01:47 +0200203 LOGP(DSNDCP, LOGL_DEBUG, "TLLI=0x%08x NSAPI=%u: Input PDU %u Segment %u "
204 "Length %u %s %s\n", sne->lle->llme->tlli, sne->nsapi, npdu_num,
205 suh->seg_nr, len, sch->first ? "F " : "", sch->more ? "M" : "");
Harald Welteb87bc862010-07-01 20:29:20 +0200206
Harald Weltece22f922010-06-03 21:21:21 +0200207 if (sch->first) {
208 /* first segment of a new packet. Discard all leftover fragments of
209 * previous packet */
210 if (!llist_empty(&sne->defrag.frag_list)) {
Harald Welte65d96782010-07-01 12:19:02 +0200211 struct defrag_queue_entry *dqe, *dqe2;
Harald Welteb87bc862010-07-01 20:29:20 +0200212 LOGP(DSNDCP, LOGL_INFO, "TLLI=0x%08x NSAPI=%u: Dropping "
213 "SN-PDU %u due to insufficient segments (%04x)\n",
214 sne->lle->llme->tlli, sne->nsapi, sne->defrag.npdu,
215 sne->defrag.seg_have);
Harald Welte65d96782010-07-01 12:19:02 +0200216 llist_for_each_entry_safe(dqe, dqe2, &sne->defrag.frag_list, list) {
Harald Weltece22f922010-06-03 21:21:21 +0200217 llist_del(&dqe->list);
218 talloc_free(dqe);
219 }
220 }
221 /* store the currently de-fragmented PDU number */
222 sne->defrag.npdu = npdu_num;
Harald Welte8b705f22010-07-02 16:18:59 +0200223
224 /* Re-set fragmentation state */
Harald Weltece22f922010-06-03 21:21:21 +0200225 sne->defrag.no_more = sne->defrag.highest_seg = sne->defrag.seg_have = 0;
Harald Welte8b705f22010-07-02 16:18:59 +0200226 sne->defrag.tot_len = 0;
227 /* FIXME: (re)start timer */
Harald Weltece22f922010-06-03 21:21:21 +0200228 }
229
230 if (sne->defrag.npdu != npdu_num) {
231 LOGP(DSNDCP, LOGL_INFO, "Segment for different SN-PDU "
232 "(%u != %u)\n", npdu_num, sne->defrag.npdu);
233 /* FIXME */
234 }
235
236 /* FIXME: check if seg_nr already exists */
Harald Welte3d6815a2010-07-02 17:16:07 +0200237 /* make sure to subtract length of SNDCP header from 'len' */
238 rc = defrag_enqueue(sne, suh->seg_nr, data, len - (data - hdr));
Harald Weltece22f922010-06-03 21:21:21 +0200239 if (rc < 0)
240 return rc;
241
242 if (!sch->more) {
243 /* this is suppsed to be the last segment of the N-PDU, but it
244 * might well be not the last to arrive */
245 sne->defrag.no_more = 1;
246 }
247
248 if (sne->defrag.no_more) {
249 /* we have already received the last segment before, let's check
250 * if all the previous segments exist */
251 if (defrag_have_all_segments(sne))
252 return defrag_segments(sne);
253 }
254
255 return 0;
256}
Harald Welteebabdea2010-06-01 18:28:10 +0200257
Harald Weltef78a3b22010-06-30 17:21:19 +0200258static struct gprs_sndcp_entity *gprs_sndcp_entity_by_lle(const struct gprs_llc_lle *lle,
Harald Welteebabdea2010-06-01 18:28:10 +0200259 uint8_t nsapi)
260{
Harald Weltef78a3b22010-06-30 17:21:19 +0200261 struct gprs_sndcp_entity *sne;
Harald Welteebabdea2010-06-01 18:28:10 +0200262
Harald Weltef78a3b22010-06-30 17:21:19 +0200263 llist_for_each_entry(sne, &gprs_sndcp_entities, list) {
Harald Welteebabdea2010-06-01 18:28:10 +0200264 if (sne->lle == lle && sne->nsapi == nsapi)
265 return sne;
266 }
267 return NULL;
268}
269
Harald Weltef78a3b22010-06-30 17:21:19 +0200270static struct gprs_sndcp_entity *gprs_sndcp_entity_alloc(struct gprs_llc_lle *lle,
Harald Welteebabdea2010-06-01 18:28:10 +0200271 uint8_t nsapi)
272{
Harald Weltef78a3b22010-06-30 17:21:19 +0200273 struct gprs_sndcp_entity *sne;
Harald Welteebabdea2010-06-01 18:28:10 +0200274
Harald Weltef78a3b22010-06-30 17:21:19 +0200275 sne = talloc_zero(tall_sndcp_ctx, struct gprs_sndcp_entity);
Harald Welteebabdea2010-06-01 18:28:10 +0200276 if (!sne)
277 return NULL;
278
279 sne->lle = lle;
280 sne->nsapi = nsapi;
Harald Weltece22f922010-06-03 21:21:21 +0200281 sne->defrag.timer.data = sne;
Harald Welteebabdea2010-06-01 18:28:10 +0200282 //sne->fqueue.timer.cb = FIXME;
283 sne->rx_state = SNDCP_RX_S_FIRST;
Harald Welte362aea02010-07-01 12:31:10 +0200284 INIT_LLIST_HEAD(&sne->defrag.frag_list);
Harald Welteebabdea2010-06-01 18:28:10 +0200285
Harald Weltef78a3b22010-06-30 17:21:19 +0200286 llist_add(&sne->list, &gprs_sndcp_entities);
Harald Welte61444522010-06-02 12:40:48 +0200287
Harald Welteebabdea2010-06-01 18:28:10 +0200288 return sne;
289}
290
291/* Entry point for the SNSM-ACTIVATE.indication */
292int sndcp_sm_activate_ind(struct gprs_llc_lle *lle, uint8_t nsapi)
293{
Harald Welte61444522010-06-02 12:40:48 +0200294 LOGP(DSNDCP, LOGL_INFO, "SNSM-ACTIVATE.ind (lle=%p TLLI=%08x, "
295 "SAPI=%u, NSAPI=%u)\n", lle, lle->llme->tlli, lle->sapi, nsapi);
Harald Welteebabdea2010-06-01 18:28:10 +0200296
Harald Weltef78a3b22010-06-30 17:21:19 +0200297 if (gprs_sndcp_entity_by_lle(lle, nsapi)) {
Harald Welte16836a32010-06-02 10:25:40 +0200298 LOGP(DSNDCP, LOGL_ERROR, "Trying to ACTIVATE "
299 "already-existing entity (TLLI=%08x, NSAPI=%u)\n",
300 lle->llme->tlli, nsapi);
301 return -EEXIST;
302 }
303
Harald Weltef78a3b22010-06-30 17:21:19 +0200304 if (!gprs_sndcp_entity_alloc(lle, nsapi)) {
Harald Welte16836a32010-06-02 10:25:40 +0200305 LOGP(DSNDCP, LOGL_ERROR, "Out of memory during ACTIVATE\n");
Harald Welteebabdea2010-06-01 18:28:10 +0200306 return -ENOMEM;
Harald Welte16836a32010-06-02 10:25:40 +0200307 }
Harald Welteebabdea2010-06-01 18:28:10 +0200308
309 return 0;
310}
311
Harald Weltece22f922010-06-03 21:21:21 +0200312/* Entry point for the SNSM-DEACTIVATE.indication */
313int sndcp_sm_deactivate_ind(struct gprs_llc_lle *lle, uint8_t nsapi)
314{
Harald Weltef78a3b22010-06-30 17:21:19 +0200315 struct gprs_sndcp_entity *sne;
Harald Weltece22f922010-06-03 21:21:21 +0200316
317 LOGP(DSNDCP, LOGL_INFO, "SNSM-DEACTIVATE.ind (lle=%p, TLLI=%08x, "
318 "SAPI=%u, NSAPI=%u)\n", lle, lle->llme->tlli, lle->sapi, nsapi);
319
Harald Weltef78a3b22010-06-30 17:21:19 +0200320 sne = gprs_sndcp_entity_by_lle(lle, nsapi);
Harald Weltece22f922010-06-03 21:21:21 +0200321 if (!sne) {
322 LOGP(DSNDCP, LOGL_ERROR, "SNSM-DEACTIVATE.ind for non-"
323 "existing TLLI=%08x SAPI=%u NSAPI=%u\n", lle->llme->tlli,
324 lle->sapi, nsapi);
325 return -ENOENT;
326 }
327 llist_del(&sne->list);
328 /* frag queue entries are hierarchically allocated, so no need to
329 * free them explicitly here */
330 talloc_free(sne);
331
332 return 0;
333}
334
335/* Fragmenter state */
336struct sndcp_frag_state {
337 uint8_t frag_nr;
338 struct msgb *msg; /* original message */
339 uint8_t *next_byte; /* first byte of next fragment */
340
Harald Weltef78a3b22010-06-30 17:21:19 +0200341 struct gprs_sndcp_entity *sne;
Harald Weltece22f922010-06-03 21:21:21 +0200342 void *mmcontext;
343};
344
345/* returns '1' if there are more fragments to send, '0' if none */
346static int sndcp_send_ud_frag(struct sndcp_frag_state *fs)
347{
Harald Weltef78a3b22010-06-30 17:21:19 +0200348 struct gprs_sndcp_entity *sne = fs->sne;
Harald Weltece22f922010-06-03 21:21:21 +0200349 struct gprs_llc_lle *lle = sne->lle;
350 struct sndcp_common_hdr *sch;
351 struct sndcp_comp_hdr *scomph;
352 struct sndcp_udata_hdr *suh;
353 struct msgb *fmsg;
354 unsigned int max_payload_len;
355 unsigned int len;
356 uint8_t *data;
357 int rc, more;
358
Sylvain Munauteda125c2010-06-09 20:56:52 +0200359 fmsg = msgb_alloc_headroom(fs->sne->lle->params.n201_u+256, 128,
Harald Weltece22f922010-06-03 21:21:21 +0200360 "SNDCP Frag");
Holger Hans Peter Freytherf9ffd1f2014-10-10 17:35:54 +0200361 if (!fmsg) {
362 msgb_free(fs->msg);
Harald Weltece22f922010-06-03 21:21:21 +0200363 return -ENOMEM;
Holger Hans Peter Freytherf9ffd1f2014-10-10 17:35:54 +0200364 }
Harald Weltece22f922010-06-03 21:21:21 +0200365
366 /* make sure lower layers route the fragment like the original */
367 msgb_tlli(fmsg) = msgb_tlli(fs->msg);
368 msgb_bvci(fmsg) = msgb_bvci(fs->msg);
369 msgb_nsei(fmsg) = msgb_nsei(fs->msg);
370
371 /* prepend common SNDCP header */
372 sch = (struct sndcp_common_hdr *) msgb_put(fmsg, sizeof(*sch));
373 sch->nsapi = sne->nsapi;
374 /* Set FIRST bit if we are the first fragment in a series */
375 if (fs->frag_nr == 0)
376 sch->first = 1;
377 sch->type = 1;
378
379 /* append the compression header for first fragment */
380 if (sch->first) {
381 scomph = (struct sndcp_comp_hdr *)
382 msgb_put(fmsg, sizeof(*scomph));
383 scomph->pcomp = 0;
384 scomph->dcomp = 0;
385 }
386
387 /* append the user-data header */
388 suh = (struct sndcp_udata_hdr *) msgb_put(fmsg, sizeof(*suh));
389 suh->npdu_low = sne->tx_npdu_nr & 0xff;
390 suh->npdu_high = (sne->tx_npdu_nr >> 8) & 0xf;
391 suh->seg_nr = fs->frag_nr % 0xf;
392
393 /* calculate remaining length to be sent */
394 len = (fs->msg->data + fs->msg->len) - fs->next_byte;
395 /* how much payload can we actually send via LLC? */
396 max_payload_len = lle->params.n201_u - (sizeof(*sch) + sizeof(*suh));
397 if (sch->first)
398 max_payload_len -= sizeof(*scomph);
399 /* check if we're exceeding the max */
400 if (len > max_payload_len)
401 len = max_payload_len;
402
403 /* copy the actual fragment data into our fmsg */
404 data = msgb_put(fmsg, len);
405 memcpy(data, fs->next_byte, len);
406
407 /* Increment fragment number and data pointer to next fragment */
408 fs->frag_nr++;
409 fs->next_byte += len;
410
411 /* determine if we have more fragemnts to send */
412 if ((fs->msg->data + fs->msg->len) <= fs->next_byte)
413 more = 0;
414 else
415 more = 1;
416
417 /* set the MORE bit of the SNDCP header accordingly */
418 sch->more = more;
419
420 rc = gprs_llc_tx_ui(fmsg, lle->sapi, 0, fs->mmcontext);
Holger Hans Peter Freytherf9ffd1f2014-10-10 17:35:54 +0200421 /* abort in case of error, do not advance frag_nr / next_byte */
Harald Weltece22f922010-06-03 21:21:21 +0200422 if (rc < 0) {
Holger Hans Peter Freytherf9ffd1f2014-10-10 17:35:54 +0200423 msgb_free(fs->msg);
Harald Weltece22f922010-06-03 21:21:21 +0200424 return rc;
425 }
426
427 if (!more) {
428 /* we've sent all fragments */
429 msgb_free(fs->msg);
430 memset(fs, 0, sizeof(*fs));
431 /* increment NPDU number for next frame */
432 sne->tx_npdu_nr = (sne->tx_npdu_nr + 1) % 0xfff;
433 return 0;
434 }
435
436 /* default: more fragments to send */
437 return 1;
438}
439
Harald Weltedb2c39f2010-06-03 07:14:59 +0200440/* Request transmission of a SN-PDU over specified LLC Entity + SAPI */
Harald Weltebb1c8052010-06-03 06:38:38 +0200441int sndcp_unitdata_req(struct msgb *msg, struct gprs_llc_lle *lle, uint8_t nsapi,
442 void *mmcontext)
443{
Harald Weltef78a3b22010-06-30 17:21:19 +0200444 struct gprs_sndcp_entity *sne;
Harald Weltebb1c8052010-06-03 06:38:38 +0200445 struct sndcp_common_hdr *sch;
Harald Weltece22f922010-06-03 21:21:21 +0200446 struct sndcp_comp_hdr *scomph;
Harald Weltebb1c8052010-06-03 06:38:38 +0200447 struct sndcp_udata_hdr *suh;
Harald Weltece22f922010-06-03 21:21:21 +0200448 struct sndcp_frag_state fs;
Harald Weltebb1c8052010-06-03 06:38:38 +0200449
450 /* Identifiers from UP: (TLLI, SAPI) + (BVCI, NSEI) */
451
Harald Weltef78a3b22010-06-30 17:21:19 +0200452 sne = gprs_sndcp_entity_by_lle(lle, nsapi);
Harald Weltebb1c8052010-06-03 06:38:38 +0200453 if (!sne) {
454 LOGP(DSNDCP, LOGL_ERROR, "Cannot find SNDCP Entity\n");
Holger Hans Peter Freytherf9ffd1f2014-10-10 17:35:54 +0200455 msgb_free(msg);
Harald Weltebb1c8052010-06-03 06:38:38 +0200456 return -EIO;
457 }
458
Harald Weltece22f922010-06-03 21:21:21 +0200459 /* Check if we need to fragment this N-PDU into multiple SN-PDUs */
460 if (msg->len > lle->params.n201_u -
461 (sizeof(*sch) + sizeof(*suh) + sizeof(*scomph))) {
462 /* initialize the fragmenter state */
463 fs.msg = msg;
464 fs.frag_nr = 0;
465 fs.next_byte = msg->data;
466 fs.sne = sne;
467 fs.mmcontext = mmcontext;
468
469 /* call function to generate and send fragments until all
470 * of the N-PDU has been sent */
471 while (1) {
472 int rc = sndcp_send_ud_frag(&fs);
473 if (rc == 0)
474 return 0;
475 if (rc < 0)
476 return rc;
477 }
478 /* not reached */
479 return 0;
480 }
481
482 /* this is the non-fragmenting case where we only build 1 SN-PDU */
483
Harald Weltebb1c8052010-06-03 06:38:38 +0200484 /* prepend the user-data header */
485 suh = (struct sndcp_udata_hdr *) msgb_push(msg, sizeof(*suh));
Harald Weltece22f922010-06-03 21:21:21 +0200486 suh->npdu_low = sne->tx_npdu_nr & 0xff;
487 suh->npdu_high = (sne->tx_npdu_nr >> 8) & 0xf;
488 suh->seg_nr = 0;
489 sne->tx_npdu_nr = (sne->tx_npdu_nr + 1) % 0xfff;
490
491 scomph = (struct sndcp_comp_hdr *) msgb_push(msg, sizeof(*scomph));
492 scomph->pcomp = 0;
493 scomph->dcomp = 0;
Harald Weltebb1c8052010-06-03 06:38:38 +0200494
495 /* prepend common SNDCP header */
496 sch = (struct sndcp_common_hdr *) msgb_push(msg, sizeof(*sch));
497 sch->first = 1;
498 sch->type = 1;
499 sch->nsapi = nsapi;
500
501 return gprs_llc_tx_ui(msg, lle->sapi, 0, mmcontext);
502}
503
Harald Welteebabdea2010-06-01 18:28:10 +0200504/* Section 5.1.2.17 LL-UNITDATA.ind */
Harald Welte36f12172010-07-02 16:44:24 +0200505int sndcp_llunitdata_ind(struct msgb *msg, struct gprs_llc_lle *lle,
506 uint8_t *hdr, uint16_t len)
Harald Welteebabdea2010-06-01 18:28:10 +0200507{
Harald Weltef78a3b22010-06-30 17:21:19 +0200508 struct gprs_sndcp_entity *sne;
Harald Welteebabdea2010-06-01 18:28:10 +0200509 struct sndcp_common_hdr *sch = (struct sndcp_common_hdr *)hdr;
Harald Weltece22f922010-06-03 21:21:21 +0200510 struct sndcp_comp_hdr *scomph = NULL;
Harald Welteebabdea2010-06-01 18:28:10 +0200511 struct sndcp_udata_hdr *suh;
Harald Welte16836a32010-06-02 10:25:40 +0200512 uint8_t *npdu;
Holger Hans Peter Freythercfee9522014-04-04 12:43:08 +0200513 uint16_t npdu_num __attribute__((unused));
Harald Welteebabdea2010-06-01 18:28:10 +0200514 int npdu_len;
515
Harald Weltece22f922010-06-03 21:21:21 +0200516 sch = (struct sndcp_common_hdr *) hdr;
517 if (sch->first) {
518 scomph = (struct sndcp_comp_hdr *) (hdr + 1);
519 suh = (struct sndcp_udata_hdr *) (hdr + 1 + sizeof(struct sndcp_common_hdr));
520 } else
521 suh = (struct sndcp_udata_hdr *) (hdr + sizeof(struct sndcp_common_hdr));
522
Harald Welteebabdea2010-06-01 18:28:10 +0200523 if (sch->type == 0) {
Harald Welte69996cb2010-06-02 10:26:19 +0200524 LOGP(DSNDCP, LOGL_ERROR, "SN-DATA PDU at unitdata_ind() function\n");
Harald Welte96f71f22010-05-03 19:28:05 +0200525 return -EINVAL;
526 }
527
Harald Welte16836a32010-06-02 10:25:40 +0200528 if (len < sizeof(*sch) + sizeof(*suh)) {
Harald Welte69996cb2010-06-02 10:26:19 +0200529 LOGP(DSNDCP, LOGL_ERROR, "SN-UNITDATA PDU too short (%u)\n", len);
Harald Welteebabdea2010-06-01 18:28:10 +0200530 return -EIO;
531 }
532
Harald Weltef78a3b22010-06-30 17:21:19 +0200533 sne = gprs_sndcp_entity_by_lle(lle, sch->nsapi);
Harald Welteebabdea2010-06-01 18:28:10 +0200534 if (!sne) {
Harald Welte69996cb2010-06-02 10:26:19 +0200535 LOGP(DSNDCP, LOGL_ERROR, "Message for non-existing SNDCP Entity "
Harald Welte61444522010-06-02 12:40:48 +0200536 "(lle=%p, TLLI=%08x, SAPI=%u, NSAPI=%u)\n", lle,
537 lle->llme->tlli, lle->sapi, sch->nsapi);
Harald Welteebabdea2010-06-01 18:28:10 +0200538 return -EIO;
539 }
Harald Welte8911cef2010-07-01 19:56:19 +0200540 /* FIXME: move this RA_ID up to the LLME or even higher */
541 bssgp_parse_cell_id(&sne->ra_id, msgb_bcid(msg));
Harald Welteebabdea2010-06-01 18:28:10 +0200542
Harald Welteab4094c2010-07-02 16:01:47 +0200543 /* any non-first segment is by definition something to defragment
544 * as is any segment that tells us there are more segments */
545 if (!sch->first || sch->more)
Harald Welte60da7d42010-07-02 15:45:12 +0200546 return defrag_input(sne, msg, hdr, len);
Harald Welteebabdea2010-06-01 18:28:10 +0200547
Harald Weltece22f922010-06-03 21:21:21 +0200548 if (scomph && (scomph->pcomp || scomph->dcomp)) {
Harald Welte69996cb2010-06-02 10:26:19 +0200549 LOGP(DSNDCP, LOGL_ERROR, "We don't support compression yet\n");
Harald Welteebabdea2010-06-01 18:28:10 +0200550 return -EIO;
551 }
Harald Welteebabdea2010-06-01 18:28:10 +0200552
Harald Welte16836a32010-06-02 10:25:40 +0200553 npdu_num = (suh->npdu_high << 8) | suh->npdu_low;
Harald Welteebabdea2010-06-01 18:28:10 +0200554 npdu = (uint8_t *)suh + sizeof(*suh);
555 npdu_len = (msg->data + msg->len) - npdu;
Harald Welte61444522010-06-02 12:40:48 +0200556 if (npdu_len <= 0) {
Harald Welte69996cb2010-06-02 10:26:19 +0200557 LOGP(DSNDCP, LOGL_ERROR, "Short SNDCP N-PDU: %d\n", npdu_len);
Harald Welteebabdea2010-06-01 18:28:10 +0200558 return -EIO;
559 }
560 /* actually send the N-PDU to the SGSN core code, which then
561 * hands it off to the correct GTP tunnel + GGSN via gtp_data_req() */
Harald Welte8911cef2010-07-01 19:56:19 +0200562 return sgsn_rx_sndcp_ud_ind(&sne->ra_id, lle->llme->tlli, sne->nsapi, msg, npdu_len, npdu);
Harald Welte96f71f22010-05-03 19:28:05 +0200563}
564
Holger Hans Peter Freythercfee9522014-04-04 12:43:08 +0200565#if 0
Harald Welte2720e732010-05-17 00:44:57 +0200566/* Section 5.1.2.1 LL-RESET.ind */
Harald Weltef78a3b22010-06-30 17:21:19 +0200567static int sndcp_ll_reset_ind(struct gprs_sndcp_entity *se)
Harald Welte2720e732010-05-17 00:44:57 +0200568{
569 /* treat all outstanding SNDCP-LLC request type primitives as not sent */
570 /* reset all SNDCP XID parameters to default values */
Holger Hans Peter Freyther6142dc42011-10-14 23:37:27 +0200571 LOGP(DSNDCP, LOGL_NOTICE, "not implemented.\n");
572 return 0;
Harald Welte2720e732010-05-17 00:44:57 +0200573}
574
Harald Welte2720e732010-05-17 00:44:57 +0200575static int sndcp_ll_status_ind()
576{
577 /* inform the SM sub-layer by means of SNSM-STATUS.req */
Holger Hans Peter Freyther6142dc42011-10-14 23:37:27 +0200578 LOGP(DSNDCP, LOGL_NOTICE, "not implemented.\n");
579 return 0;
Harald Welte2720e732010-05-17 00:44:57 +0200580}
581
582static struct sndcp_state_list {{
583 uint32_t states;
584 unsigned int type;
Harald Weltef78a3b22010-06-30 17:21:19 +0200585 int (*rout)(struct gprs_sndcp_entity *se, struct msgb *msg);
Harald Welte2720e732010-05-17 00:44:57 +0200586} sndcp_state_list[] = {
587 { ALL_STATES,
588 LL_RESET_IND, sndcp_ll_reset_ind },
589 { ALL_STATES,
590 LL_ESTABLISH_IND, sndcp_ll_est_ind },
591 { SBIT(SNDCP_S_EST_RQD),
592 LL_ESTABLISH_RESP, sndcp_ll_est_ind },
593 { SBIT(SNDCP_S_EST_RQD),
594 LL_ESTABLISH_CONF, sndcp_ll_est_conf },
595 { SBIT(SNDCP_S_
596};
597
598static int sndcp_rx_llc_prim()
599{
600 case LL_ESTABLISH_REQ:
601 case LL_RELEASE_REQ:
602 case LL_XID_REQ:
603 case LL_DATA_REQ:
604 LL_UNITDATA_REQ, /* TLLI, SN-PDU, Ref, QoS, Radio Prio, Ciph */
605
606 switch (prim) {
607 case LL_RESET_IND:
608 case LL_ESTABLISH_IND:
609 case LL_ESTABLISH_RESP:
610 case LL_ESTABLISH_CONF:
611 case LL_RELEASE_IND:
612 case LL_RELEASE_CONF:
613 case LL_XID_IND:
614 case LL_XID_RESP:
615 case LL_XID_CONF:
616 case LL_DATA_IND:
617 case LL_DATA_CONF:
618 case LL_UNITDATA_IND:
619 case LL_STATUS_IND:
620}
Harald Welteebabdea2010-06-01 18:28:10 +0200621#endif