blob: 72962dc223ca5bf892ec924aade62ce5abeed135 [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>
4 *
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>
24#include <stdint.h>
25
26#include <osmocore/msgb.h>
27#include <osmocore/linuxlist.h>
28#include <osmocore/timer.h>
29#include <osmocore/talloc.h>
30
31#include <openbsc/gsm_data.h>
32#include <openbsc/debug.h>
33#include <openbsc/gprs_bssgp.h>
34#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
37/* Chapter 7.2: SN-PDU Formats */
38struct sndcp_common_hdr {
39 /* octet 1 */
40 uint8_t nsapi:4;
41 uint8_t more:1;
42 uint8_t type:1;
43 uint8_t first:1;
44 uint8_t spare:1;
45 /* octet 2 */
Harald Welte5cc2bc32010-06-02 23:17:05 +020046 uint8_t pcomp:4;
47 uint8_t dcomp:4;
Harald Welteebabdea2010-06-01 18:28:10 +020048} __attribute__((packed));
Harald Welte96f71f22010-05-03 19:28:05 +020049
50struct sndcp_udata_hdr {
51 /* octet 3 */
52 uint8_t npdu_high:4;
53 uint8_t seg_nr:4;
54 /* octet 4 */
55 uint8_t npdu_low;
Harald Welteebabdea2010-06-01 18:28:10 +020056} __attribute__((packed));
57
58/* See 6.7.1.2 Reassembly */
59enum sndcp_rx_state {
60 SNDCP_RX_S_FIRST,
61 SNDCP_RX_S_SUBSEQ,
62 SNDCP_RX_S_DISCARD,
63};
64
65
66static void *tall_sndcp_ctx;
67
68/* A fragment queue entry, containing one framgent of a N-PDU */
69struct frag_queue_entry {
70 struct llist_head list;
71 uint8_t seg_nr;
72 uint32_t data_len;
73 uint8_t data[0];
74};
75
76/* A fragment queue header, maintaining list of fragments for one N-PDU */
77struct frag_queue_head {
78 uint16_t npdu;
79
80 /* linked list of frag_queue_entry: one for each fragment */
81 struct llist_head frag_list;
82
83 struct timer_list timer;
Harald Welte96f71f22010-05-03 19:28:05 +020084};
85
Harald Welte2720e732010-05-17 00:44:57 +020086struct sndcp_entity {
Harald Welteebabdea2010-06-01 18:28:10 +020087 struct llist_head list;
88
Harald Weltebb1c8052010-06-03 06:38:38 +020089 /* reference to the LLC Entity below this SNDCP entity */
Harald Welteebabdea2010-06-01 18:28:10 +020090 struct gprs_llc_lle *lle;
Harald Weltebb1c8052010-06-03 06:38:38 +020091 /* The NSAPI we shall use on top of LLC */
Harald Welteebabdea2010-06-01 18:28:10 +020092 uint8_t nsapi;
93
Harald Weltebb1c8052010-06-03 06:38:38 +020094 /* NPDU number for the GTP->SNDCP side */
95 uint16_t npdu_nr;
96 /* SNDCP eeceiver state */
Harald Welteebabdea2010-06-01 18:28:10 +020097 enum sndcp_rx_state rx_state;
Harald Weltebb1c8052010-06-03 06:38:38 +020098 /* The defragmentation queue */
Harald Welteebabdea2010-06-01 18:28:10 +020099 struct frag_queue_head fqueue;
Harald Welte2720e732010-05-17 00:44:57 +0200100};
101
Harald Welteebabdea2010-06-01 18:28:10 +0200102LLIST_HEAD(sndcp_entities);
Harald Welte96f71f22010-05-03 19:28:05 +0200103
Harald Welteebabdea2010-06-01 18:28:10 +0200104#if 0
105static struct frag_queue_entry _find_fqe(struct freg_queue_head *fqh, uint8_t seg_nr)
106{
107
108}
109
110static struct frag_queue_head _find_fqh(struct sndcp_entity *sne, uint16_t npdu)
111{
112
113}
114
115static int ul_enqueue_fragment(struct sndcp_entity *sne, uint16_t npdu,
116 uint8_t seg_nr, uint32_t data_len, uint8_t *data)
117{
118
119}
120#endif
121
122static struct sndcp_entity *sndcp_entity_by_lle(const struct gprs_llc_lle *lle,
123 uint8_t nsapi)
124{
125 struct sndcp_entity *sne;
126
127 llist_for_each_entry(sne, &sndcp_entities, list) {
128 if (sne->lle == lle && sne->nsapi == nsapi)
129 return sne;
130 }
131 return NULL;
132}
133
134static struct sndcp_entity *sndcp_entity_alloc(struct gprs_llc_lle *lle,
135 uint8_t nsapi)
136{
137 struct sndcp_entity *sne;
138
139 sne = talloc_zero(tall_sndcp_ctx, struct sndcp_entity);
140 if (!sne)
141 return NULL;
142
143 sne->lle = lle;
144 sne->nsapi = nsapi;
145 sne->fqueue.timer.data = sne;
146 //sne->fqueue.timer.cb = FIXME;
147 sne->rx_state = SNDCP_RX_S_FIRST;
148
Harald Welte61444522010-06-02 12:40:48 +0200149 llist_add(&sne->list, &sndcp_entities);
150
Harald Welteebabdea2010-06-01 18:28:10 +0200151 return sne;
152}
153
154/* Entry point for the SNSM-ACTIVATE.indication */
155int sndcp_sm_activate_ind(struct gprs_llc_lle *lle, uint8_t nsapi)
156{
Harald Welte61444522010-06-02 12:40:48 +0200157 LOGP(DSNDCP, LOGL_INFO, "SNSM-ACTIVATE.ind (lle=%p TLLI=%08x, "
158 "SAPI=%u, NSAPI=%u)\n", lle, lle->llme->tlli, lle->sapi, nsapi);
Harald Welteebabdea2010-06-01 18:28:10 +0200159
Harald Welte16836a32010-06-02 10:25:40 +0200160 if (sndcp_entity_by_lle(lle, nsapi)) {
161 LOGP(DSNDCP, LOGL_ERROR, "Trying to ACTIVATE "
162 "already-existing entity (TLLI=%08x, NSAPI=%u)\n",
163 lle->llme->tlli, nsapi);
164 return -EEXIST;
165 }
166
167 if (!sndcp_entity_alloc(lle, nsapi)) {
168 LOGP(DSNDCP, LOGL_ERROR, "Out of memory during ACTIVATE\n");
Harald Welteebabdea2010-06-01 18:28:10 +0200169 return -ENOMEM;
Harald Welte16836a32010-06-02 10:25:40 +0200170 }
Harald Welteebabdea2010-06-01 18:28:10 +0200171
172 return 0;
173}
174
Harald Weltedb2c39f2010-06-03 07:14:59 +0200175/* Request transmission of a SN-PDU over specified LLC Entity + SAPI */
Harald Weltebb1c8052010-06-03 06:38:38 +0200176int sndcp_unitdata_req(struct msgb *msg, struct gprs_llc_lle *lle, uint8_t nsapi,
177 void *mmcontext)
178{
179 struct sndcp_entity *sne;
180 struct sndcp_common_hdr *sch;
181 struct sndcp_udata_hdr *suh;
182
183 /* Identifiers from UP: (TLLI, SAPI) + (BVCI, NSEI) */
184
Harald Weltedb2c39f2010-06-03 07:14:59 +0200185 if (msg->len > lle->params.n201_u - (sizeof(*sch) + sizeof(*suh))) {
186 LOGP(DSNDCP, LOGL_ERROR, "Message length %u > N201-U (%u): "
187 "SNDCP Fragmentation not yet implemented\n",
188 msg->len, lle->params.n201_u);
189 return -EIO;
190 }
191
Harald Weltebb1c8052010-06-03 06:38:38 +0200192 sne = sndcp_entity_by_lle(lle, nsapi);
193 if (!sne) {
194 LOGP(DSNDCP, LOGL_ERROR, "Cannot find SNDCP Entity\n");
195 return -EIO;
196 }
197
198 /* prepend the user-data header */
199 suh = (struct sndcp_udata_hdr *) msgb_push(msg, sizeof(*suh));
200 suh->npdu_low = sne->npdu_nr & 0xff;
201 suh->npdu_high = (sne->npdu_nr >> 8) & 0xf;
202 sne->npdu_nr = (sne->npdu_nr + 1) % 0xfff;
203
204 /* prepend common SNDCP header */
205 sch = (struct sndcp_common_hdr *) msgb_push(msg, sizeof(*sch));
206 sch->first = 1;
207 sch->type = 1;
208 sch->nsapi = nsapi;
209
210 return gprs_llc_tx_ui(msg, lle->sapi, 0, mmcontext);
211}
212
Harald Welteebabdea2010-06-01 18:28:10 +0200213/* Section 5.1.2.17 LL-UNITDATA.ind */
214int sndcp_llunitdata_ind(struct msgb *msg, struct gprs_llc_lle *lle, uint8_t *hdr, uint8_t len)
215{
216 struct sndcp_entity *sne;
217 struct sndcp_common_hdr *sch = (struct sndcp_common_hdr *)hdr;
218 struct sndcp_udata_hdr *suh;
Harald Welte16836a32010-06-02 10:25:40 +0200219 uint8_t *npdu;
Harald Welteebabdea2010-06-01 18:28:10 +0200220 uint16_t npdu_num;
221 int npdu_len;
222
223 if (sch->type == 0) {
Harald Welte69996cb2010-06-02 10:26:19 +0200224 LOGP(DSNDCP, LOGL_ERROR, "SN-DATA PDU at unitdata_ind() function\n");
Harald Welte96f71f22010-05-03 19:28:05 +0200225 return -EINVAL;
226 }
227
Harald Welte16836a32010-06-02 10:25:40 +0200228 if (len < sizeof(*sch) + sizeof(*suh)) {
Harald Welte69996cb2010-06-02 10:26:19 +0200229 LOGP(DSNDCP, LOGL_ERROR, "SN-UNITDATA PDU too short (%u)\n", len);
Harald Welteebabdea2010-06-01 18:28:10 +0200230 return -EIO;
231 }
232
233 sne = sndcp_entity_by_lle(lle, sch->nsapi);
234 if (!sne) {
Harald Welte69996cb2010-06-02 10:26:19 +0200235 LOGP(DSNDCP, LOGL_ERROR, "Message for non-existing SNDCP Entity "
Harald Welte61444522010-06-02 12:40:48 +0200236 "(lle=%p, TLLI=%08x, SAPI=%u, NSAPI=%u)\n", lle,
237 lle->llme->tlli, lle->sapi, sch->nsapi);
Harald Welteebabdea2010-06-01 18:28:10 +0200238 return -EIO;
239 }
240
241 if (!sch->first || sch->more) {
242 /* FIXME: implement fragment re-assembly */
Harald Welte69996cb2010-06-02 10:26:19 +0200243 LOGP(DSNDCP, LOGL_ERROR, "We don't support reassembly yet\n");
Harald Welteebabdea2010-06-01 18:28:10 +0200244 return -EIO;
245 }
246
Harald Welte16836a32010-06-02 10:25:40 +0200247 if (sch->pcomp || sch->dcomp) {
Harald Welte69996cb2010-06-02 10:26:19 +0200248 LOGP(DSNDCP, LOGL_ERROR, "We don't support compression yet\n");
Harald Welteebabdea2010-06-01 18:28:10 +0200249 return -EIO;
250 }
Harald Welteebabdea2010-06-01 18:28:10 +0200251
Harald Welte16836a32010-06-02 10:25:40 +0200252 suh = (struct sndcp_udata_hdr *) (hdr + sizeof(struct sndcp_common_hdr));
253 npdu_num = (suh->npdu_high << 8) | suh->npdu_low;
Harald Welteebabdea2010-06-01 18:28:10 +0200254 npdu = (uint8_t *)suh + sizeof(*suh);
255 npdu_len = (msg->data + msg->len) - npdu;
Harald Welte61444522010-06-02 12:40:48 +0200256 if (npdu_len <= 0) {
Harald Welte69996cb2010-06-02 10:26:19 +0200257 LOGP(DSNDCP, LOGL_ERROR, "Short SNDCP N-PDU: %d\n", npdu_len);
Harald Welteebabdea2010-06-01 18:28:10 +0200258 return -EIO;
259 }
260 /* actually send the N-PDU to the SGSN core code, which then
261 * hands it off to the correct GTP tunnel + GGSN via gtp_data_req() */
262 return sgsn_rx_sndcp_ud_ind(lle->llme->tlli, sne->nsapi, msg, npdu_len, npdu);
Harald Welte96f71f22010-05-03 19:28:05 +0200263}
264
Harald Welte2720e732010-05-17 00:44:57 +0200265/* Section 5.1.2.1 LL-RESET.ind */
Harald Welteebabdea2010-06-01 18:28:10 +0200266static int sndcp_ll_reset_ind(struct sndcp_entity *se)
Harald Welte2720e732010-05-17 00:44:57 +0200267{
268 /* treat all outstanding SNDCP-LLC request type primitives as not sent */
269 /* reset all SNDCP XID parameters to default values */
270}
271
Harald Welte2720e732010-05-17 00:44:57 +0200272static int sndcp_ll_status_ind()
273{
274 /* inform the SM sub-layer by means of SNSM-STATUS.req */
275}
276
Harald Welteebabdea2010-06-01 18:28:10 +0200277#if 0
Harald Welte2720e732010-05-17 00:44:57 +0200278static struct sndcp_state_list {{
279 uint32_t states;
280 unsigned int type;
281 int (*rout)(struct sndcp_entity *se, struct msgb *msg);
282} sndcp_state_list[] = {
283 { ALL_STATES,
284 LL_RESET_IND, sndcp_ll_reset_ind },
285 { ALL_STATES,
286 LL_ESTABLISH_IND, sndcp_ll_est_ind },
287 { SBIT(SNDCP_S_EST_RQD),
288 LL_ESTABLISH_RESP, sndcp_ll_est_ind },
289 { SBIT(SNDCP_S_EST_RQD),
290 LL_ESTABLISH_CONF, sndcp_ll_est_conf },
291 { SBIT(SNDCP_S_
292};
293
294static int sndcp_rx_llc_prim()
295{
296 case LL_ESTABLISH_REQ:
297 case LL_RELEASE_REQ:
298 case LL_XID_REQ:
299 case LL_DATA_REQ:
300 LL_UNITDATA_REQ, /* TLLI, SN-PDU, Ref, QoS, Radio Prio, Ciph */
301
302 switch (prim) {
303 case LL_RESET_IND:
304 case LL_ESTABLISH_IND:
305 case LL_ESTABLISH_RESP:
306 case LL_ESTABLISH_CONF:
307 case LL_RELEASE_IND:
308 case LL_RELEASE_CONF:
309 case LL_XID_IND:
310 case LL_XID_RESP:
311 case LL_XID_CONF:
312 case LL_DATA_IND:
313 case LL_DATA_CONF:
314 case LL_UNITDATA_IND:
315 case LL_STATUS_IND:
316}
Harald Welteebabdea2010-06-01 18:28:10 +0200317#endif