blob: 12ad1a631c07f7cbdd4c0f8ef0659915b4d4c8be [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 */
46 uint8_t pcomp;
47 uint8_t dcomp;
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
89 struct gprs_llc_lle *lle;
90 uint8_t nsapi;
91
92 enum sndcp_rx_state rx_state;
93 struct frag_queue_head fqueue;
Harald Welte2720e732010-05-17 00:44:57 +020094};
95
Harald Welteebabdea2010-06-01 18:28:10 +020096LLIST_HEAD(sndcp_entities);
Harald Welte96f71f22010-05-03 19:28:05 +020097
Harald Welteebabdea2010-06-01 18:28:10 +020098#if 0
99static struct frag_queue_entry _find_fqe(struct freg_queue_head *fqh, uint8_t seg_nr)
100{
101
102}
103
104static struct frag_queue_head _find_fqh(struct sndcp_entity *sne, uint16_t npdu)
105{
106
107}
108
109static int ul_enqueue_fragment(struct sndcp_entity *sne, uint16_t npdu,
110 uint8_t seg_nr, uint32_t data_len, uint8_t *data)
111{
112
113}
114#endif
115
116static struct sndcp_entity *sndcp_entity_by_lle(const struct gprs_llc_lle *lle,
117 uint8_t nsapi)
118{
119 struct sndcp_entity *sne;
120
121 llist_for_each_entry(sne, &sndcp_entities, list) {
122 if (sne->lle == lle && sne->nsapi == nsapi)
123 return sne;
124 }
125 return NULL;
126}
127
128static struct sndcp_entity *sndcp_entity_alloc(struct gprs_llc_lle *lle,
129 uint8_t nsapi)
130{
131 struct sndcp_entity *sne;
132
133 sne = talloc_zero(tall_sndcp_ctx, struct sndcp_entity);
134 if (!sne)
135 return NULL;
136
137 sne->lle = lle;
138 sne->nsapi = nsapi;
139 sne->fqueue.timer.data = sne;
140 //sne->fqueue.timer.cb = FIXME;
141 sne->rx_state = SNDCP_RX_S_FIRST;
142
Harald Welte61444522010-06-02 12:40:48 +0200143 llist_add(&sne->list, &sndcp_entities);
144
Harald Welteebabdea2010-06-01 18:28:10 +0200145 return sne;
146}
147
148/* Entry point for the SNSM-ACTIVATE.indication */
149int sndcp_sm_activate_ind(struct gprs_llc_lle *lle, uint8_t nsapi)
150{
Harald Welte61444522010-06-02 12:40:48 +0200151 LOGP(DSNDCP, LOGL_INFO, "SNSM-ACTIVATE.ind (lle=%p TLLI=%08x, "
152 "SAPI=%u, NSAPI=%u)\n", lle, lle->llme->tlli, lle->sapi, nsapi);
Harald Welteebabdea2010-06-01 18:28:10 +0200153
Harald Welte16836a32010-06-02 10:25:40 +0200154 if (sndcp_entity_by_lle(lle, nsapi)) {
155 LOGP(DSNDCP, LOGL_ERROR, "Trying to ACTIVATE "
156 "already-existing entity (TLLI=%08x, NSAPI=%u)\n",
157 lle->llme->tlli, nsapi);
158 return -EEXIST;
159 }
160
161 if (!sndcp_entity_alloc(lle, nsapi)) {
162 LOGP(DSNDCP, LOGL_ERROR, "Out of memory during ACTIVATE\n");
Harald Welteebabdea2010-06-01 18:28:10 +0200163 return -ENOMEM;
Harald Welte16836a32010-06-02 10:25:40 +0200164 }
Harald Welteebabdea2010-06-01 18:28:10 +0200165
166 return 0;
167}
168
169/* Section 5.1.2.17 LL-UNITDATA.ind */
170int sndcp_llunitdata_ind(struct msgb *msg, struct gprs_llc_lle *lle, uint8_t *hdr, uint8_t len)
171{
172 struct sndcp_entity *sne;
173 struct sndcp_common_hdr *sch = (struct sndcp_common_hdr *)hdr;
174 struct sndcp_udata_hdr *suh;
Harald Welte16836a32010-06-02 10:25:40 +0200175 uint8_t *npdu;
Harald Welteebabdea2010-06-01 18:28:10 +0200176 uint16_t npdu_num;
177 int npdu_len;
178
179 if (sch->type == 0) {
Harald Welte69996cb2010-06-02 10:26:19 +0200180 LOGP(DSNDCP, LOGL_ERROR, "SN-DATA PDU at unitdata_ind() function\n");
Harald Welte96f71f22010-05-03 19:28:05 +0200181 return -EINVAL;
182 }
183
Harald Welte16836a32010-06-02 10:25:40 +0200184 if (len < sizeof(*sch) + sizeof(*suh)) {
Harald Welte69996cb2010-06-02 10:26:19 +0200185 LOGP(DSNDCP, LOGL_ERROR, "SN-UNITDATA PDU too short (%u)\n", len);
Harald Welteebabdea2010-06-01 18:28:10 +0200186 return -EIO;
187 }
188
189 sne = sndcp_entity_by_lle(lle, sch->nsapi);
190 if (!sne) {
Harald Welte69996cb2010-06-02 10:26:19 +0200191 LOGP(DSNDCP, LOGL_ERROR, "Message for non-existing SNDCP Entity "
Harald Welte61444522010-06-02 12:40:48 +0200192 "(lle=%p, TLLI=%08x, SAPI=%u, NSAPI=%u)\n", lle,
193 lle->llme->tlli, lle->sapi, sch->nsapi);
Harald Welteebabdea2010-06-01 18:28:10 +0200194 return -EIO;
195 }
196
197 if (!sch->first || sch->more) {
198 /* FIXME: implement fragment re-assembly */
Harald Welte69996cb2010-06-02 10:26:19 +0200199 LOGP(DSNDCP, LOGL_ERROR, "We don't support reassembly yet\n");
Harald Welteebabdea2010-06-01 18:28:10 +0200200 return -EIO;
201 }
202
Harald Welte16836a32010-06-02 10:25:40 +0200203 if (sch->pcomp || sch->dcomp) {
Harald Welte69996cb2010-06-02 10:26:19 +0200204 LOGP(DSNDCP, LOGL_ERROR, "We don't support compression yet\n");
Harald Welteebabdea2010-06-01 18:28:10 +0200205 return -EIO;
206 }
Harald Welteebabdea2010-06-01 18:28:10 +0200207
Harald Welte16836a32010-06-02 10:25:40 +0200208 suh = (struct sndcp_udata_hdr *) (hdr + sizeof(struct sndcp_common_hdr));
209 npdu_num = (suh->npdu_high << 8) | suh->npdu_low;
Harald Welteebabdea2010-06-01 18:28:10 +0200210 npdu = (uint8_t *)suh + sizeof(*suh);
211 npdu_len = (msg->data + msg->len) - npdu;
Harald Welte61444522010-06-02 12:40:48 +0200212 if (npdu_len <= 0) {
Harald Welte69996cb2010-06-02 10:26:19 +0200213 LOGP(DSNDCP, LOGL_ERROR, "Short SNDCP N-PDU: %d\n", npdu_len);
Harald Welteebabdea2010-06-01 18:28:10 +0200214 return -EIO;
215 }
216 /* actually send the N-PDU to the SGSN core code, which then
217 * hands it off to the correct GTP tunnel + GGSN via gtp_data_req() */
218 return sgsn_rx_sndcp_ud_ind(lle->llme->tlli, sne->nsapi, msg, npdu_len, npdu);
Harald Welte96f71f22010-05-03 19:28:05 +0200219}
220
Harald Welte2720e732010-05-17 00:44:57 +0200221/* Section 5.1.2.1 LL-RESET.ind */
Harald Welteebabdea2010-06-01 18:28:10 +0200222static int sndcp_ll_reset_ind(struct sndcp_entity *se)
Harald Welte2720e732010-05-17 00:44:57 +0200223{
224 /* treat all outstanding SNDCP-LLC request type primitives as not sent */
225 /* reset all SNDCP XID parameters to default values */
226}
227
Harald Welte2720e732010-05-17 00:44:57 +0200228static int sndcp_ll_status_ind()
229{
230 /* inform the SM sub-layer by means of SNSM-STATUS.req */
231}
232
Harald Welteebabdea2010-06-01 18:28:10 +0200233#if 0
Harald Welte2720e732010-05-17 00:44:57 +0200234static struct sndcp_state_list {{
235 uint32_t states;
236 unsigned int type;
237 int (*rout)(struct sndcp_entity *se, struct msgb *msg);
238} sndcp_state_list[] = {
239 { ALL_STATES,
240 LL_RESET_IND, sndcp_ll_reset_ind },
241 { ALL_STATES,
242 LL_ESTABLISH_IND, sndcp_ll_est_ind },
243 { SBIT(SNDCP_S_EST_RQD),
244 LL_ESTABLISH_RESP, sndcp_ll_est_ind },
245 { SBIT(SNDCP_S_EST_RQD),
246 LL_ESTABLISH_CONF, sndcp_ll_est_conf },
247 { SBIT(SNDCP_S_
248};
249
250static int sndcp_rx_llc_prim()
251{
252 case LL_ESTABLISH_REQ:
253 case LL_RELEASE_REQ:
254 case LL_XID_REQ:
255 case LL_DATA_REQ:
256 LL_UNITDATA_REQ, /* TLLI, SN-PDU, Ref, QoS, Radio Prio, Ciph */
257
258 switch (prim) {
259 case LL_RESET_IND:
260 case LL_ESTABLISH_IND:
261 case LL_ESTABLISH_RESP:
262 case LL_ESTABLISH_CONF:
263 case LL_RELEASE_IND:
264 case LL_RELEASE_CONF:
265 case LL_XID_IND:
266 case LL_XID_RESP:
267 case LL_XID_CONF:
268 case LL_DATA_IND:
269 case LL_DATA_CONF:
270 case LL_UNITDATA_IND:
271 case LL_STATUS_IND:
272}
Harald Welteebabdea2010-06-01 18:28:10 +0200273#endif