blob: 69c96ca37f234a99bf3c3c7cdda2b3af344452d2 [file] [log] [blame]
Harald Welte24a655f2010-04-30 19:54:29 +02001/* GPRS Networks Service (NS) messages on the Gb interfacebvci = msgb_bvci(msg);
Harald Welte9ba50052010-03-14 15:45:01 +08002 * 3GPP TS 08.16 version 8.0.1 Release 1999 / ETSI TS 101 299 V8.0.1 (2002-05) */
3
Harald Weltef030b212010-04-26 19:18:54 +02004/* (C) 2009-2010 by Harald Welte <laforge@gnumonks.org>
Harald Welte9ba50052010-03-14 15:45:01 +08005 *
6 * All Rights Reserved
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (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
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License along
19 * with this program; if not, write to the Free Software Foundation, Inc.,
20 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
21 *
22 */
23
24/* Some introduction into NS: NS is used typically on top of frame relay,
25 * but in the ip.access world it is encapsulated in UDP packets. It serves
26 * as an intermediate shim betwen BSSGP and the underlying medium. It doesn't
27 * do much, apart from providing congestion notification and status indication.
28 *
29 * Terms:
30 * NS Network Service
31 * NSVC NS Virtual Connection
32 * NSEI NS Entity Identifier
33 * NSVL NS Virtual Link
34 * NSVLI NS Virtual Link Identifier
35 * BVC BSSGP Virtual Connection
36 * BVCI BSSGP Virtual Connection Identifier
37 * NSVCG NS Virtual Connection Goup
38 * Blocked NS-VC cannot be used for user traffic
39 * Alive Ability of a NS-VC to provide communication
40 *
41 * There can be multiple BSSGP virtual connections over one (group of) NSVC's. BSSGP will
42 * therefore identify the BSSGP virtual connection by a BVCI passed down to NS.
43 * NS then has to firgure out which NSVC's are responsible for this BVCI.
44 * Those mappings are administratively configured.
45 */
46
47#include <stdlib.h>
48#include <unistd.h>
49#include <errno.h>
Harald Welte8f9a3ee2010-05-02 11:26:34 +020050#include <stdint.h>
Harald Welte9ba50052010-03-14 15:45:01 +080051
52#include <arpa/inet.h>
53
54#include <openbsc/gsm_data.h>
55#include <osmocore/msgb.h>
56#include <osmocore/tlv.h>
57#include <osmocore/talloc.h>
Harald Weltef030b212010-04-26 19:18:54 +020058#include <osmocore/select.h>
Harald Welte9ba50052010-03-14 15:45:01 +080059#include <openbsc/debug.h>
Harald Welte834f26d2010-05-11 06:20:54 +020060#include <openbsc/signal.h>
Harald Welte9ba50052010-03-14 15:45:01 +080061#include <openbsc/gprs_ns.h>
62#include <openbsc/gprs_bssgp.h>
63
64#define NS_ALLOC_SIZE 1024
65
66static const struct tlv_definition ns_att_tlvdef = {
67 .def = {
68 [NS_IE_CAUSE] = { TLV_TYPE_TvLV, 0 },
69 [NS_IE_VCI] = { TLV_TYPE_TvLV, 0 },
70 [NS_IE_PDU] = { TLV_TYPE_TvLV, 0 },
71 [NS_IE_BVCI] = { TLV_TYPE_TvLV, 0 },
72 [NS_IE_NSEI] = { TLV_TYPE_TvLV, 0 },
73 },
74};
75
Harald Weltef030b212010-04-26 19:18:54 +020076/* Lookup struct gprs_nsvc based on NSVCI */
77static struct gprs_nsvc *nsvc_by_nsvci(struct gprs_ns_inst *nsi,
Harald Welte8f9a3ee2010-05-02 11:26:34 +020078 uint16_t nsvci)
Harald Weltef030b212010-04-26 19:18:54 +020079{
80 struct gprs_nsvc *nsvc;
81 llist_for_each_entry(nsvc, &nsi->gprs_nsvcs, list) {
82 if (nsvc->nsvci == nsvci)
83 return nsvc;
84 }
85 return NULL;
86}
87
Harald Welte24a655f2010-04-30 19:54:29 +020088/* Lookup struct gprs_nsvc based on NSVCI */
89static struct gprs_nsvc *nsvc_by_nsei(struct gprs_ns_inst *nsi,
Harald Welte8f9a3ee2010-05-02 11:26:34 +020090 uint16_t nsei)
Harald Welte24a655f2010-04-30 19:54:29 +020091{
92 struct gprs_nsvc *nsvc;
93 llist_for_each_entry(nsvc, &nsi->gprs_nsvcs, list) {
94 if (nsvc->nsei == nsei)
95 return nsvc;
96 }
97 return NULL;
98}
99
100
Harald Weltef030b212010-04-26 19:18:54 +0200101/* Lookup struct gprs_nsvc based on remote peer socket addr */
102static struct gprs_nsvc *nsvc_by_rem_addr(struct gprs_ns_inst *nsi,
103 struct sockaddr_in *sin)
104{
105 struct gprs_nsvc *nsvc;
106 llist_for_each_entry(nsvc, &nsi->gprs_nsvcs, list) {
107 if (!memcmp(&nsvc->ip.bts_addr, sin, sizeof(*sin)))
108 return nsvc;
109 }
110 return NULL;
111}
112
Harald Welte69a4cf22010-05-03 20:55:10 +0200113static void gprs_ns_timer_cb(void *data);
114
Harald Welte8f9a3ee2010-05-02 11:26:34 +0200115static struct gprs_nsvc *nsvc_create(struct gprs_ns_inst *nsi, uint16_t nsvci)
Harald Weltef030b212010-04-26 19:18:54 +0200116{
117 struct gprs_nsvc *nsvc;
118
119 nsvc = talloc_zero(nsi, struct gprs_nsvc);
120 nsvc->nsvci = nsvci;
121 /* before RESET procedure: BLOCKED and DEAD */
122 nsvc->state = NSE_S_BLOCKED;
123 nsvc->nsi = nsi;
Harald Welte69a4cf22010-05-03 20:55:10 +0200124 nsvc->timer.cb = gprs_ns_timer_cb;
125 nsvc->timer.data = nsvc;
126
Harald Weltef030b212010-04-26 19:18:54 +0200127 llist_add(&nsvc->list, &nsi->gprs_nsvcs);
128
129 return nsvc;
130}
Harald Welte9ba50052010-03-14 15:45:01 +0800131
Harald Welte2fc725d2010-05-11 10:15:26 +0200132static void ns_dispatch_signal(struct gprs_nsvc *nsvc, unsigned int signal,
Harald Welte834f26d2010-05-11 06:20:54 +0200133 uint8_t cause)
134{
135 struct ns_signal_data nssd;
136
137 nssd.nsvc = nsvc;
138 nssd.cause = cause;
139
140 dispatch_signal(SS_NS, signal, &nssd);
141}
142
Harald Welte9ba50052010-03-14 15:45:01 +0800143/* Section 10.3.2, Table 13 */
Harald Welte2577d412010-05-02 09:37:45 +0200144static const struct value_string ns_cause_str[] = {
145 { NS_CAUSE_TRANSIT_FAIL, "Transit network failure" },
146 { NS_CAUSE_OM_INTERVENTION, "O&M intervention" },
147 { NS_CAUSE_EQUIP_FAIL, "Equipment failure" },
148 { NS_CAUSE_NSVC_BLOCKED, "NS-VC blocked" },
149 { NS_CAUSE_NSVC_UNKNOWN, "NS-VC unknown" },
150 { NS_CAUSE_BVCI_UNKNOWN, "BVCI unknown" },
151 { NS_CAUSE_SEM_INCORR_PDU, "Semantically incorrect PDU" },
152 { NS_CAUSE_PDU_INCOMP_PSTATE, "PDU not compatible with protocol state" },
Harald Welte69a4cf22010-05-03 20:55:10 +0200153 { NS_CAUSE_PROTO_ERR_UNSPEC, "Protocol error, unspecified" },
Harald Welte2577d412010-05-02 09:37:45 +0200154 { NS_CAUSE_INVAL_ESSENT_IE, "Invalid essential IE" },
155 { NS_CAUSE_MISSING_ESSENT_IE, "Missing essential IE" },
156 { 0, NULL }
Harald Welte9ba50052010-03-14 15:45:01 +0800157};
158
Harald Welte2577d412010-05-02 09:37:45 +0200159const char *gprs_ns_cause_str(enum ns_cause cause)
Harald Welte9ba50052010-03-14 15:45:01 +0800160{
Harald Welte2577d412010-05-02 09:37:45 +0200161 return get_value_string(ns_cause_str, cause);
Harald Welte9ba50052010-03-14 15:45:01 +0800162}
163
Harald Welte24a655f2010-04-30 19:54:29 +0200164static int nsip_sendmsg(struct gprs_nsvc *nsvc, struct msgb *msg);
Harald Weltef030b212010-04-26 19:18:54 +0200165
Harald Welte24a655f2010-04-30 19:54:29 +0200166static int gprs_ns_tx(struct gprs_nsvc *nsvc, struct msgb *msg)
Harald Welte9ba50052010-03-14 15:45:01 +0800167{
Harald Weltef030b212010-04-26 19:18:54 +0200168 int ret;
169
170 switch (nsvc->nsi->ll) {
171 case GPRS_NS_LL_UDP:
Harald Welte24a655f2010-04-30 19:54:29 +0200172 ret = nsip_sendmsg(nsvc, msg);
Harald Weltef030b212010-04-26 19:18:54 +0200173 break;
174 default:
Harald Welteb8a6a832010-05-11 05:54:22 +0200175 LOGP(DNS, LOGL_ERROR, "unsupported NS linklayer %u\n", nsvc->nsi->ll);
Harald Weltef030b212010-04-26 19:18:54 +0200176 msgb_free(msg);
177 ret = -EIO;
178 break;
179 }
180 return ret;
Harald Welte9ba50052010-03-14 15:45:01 +0800181}
182
Harald Welte8f9a3ee2010-05-02 11:26:34 +0200183static int gprs_ns_tx_simple(struct gprs_nsvc *nsvc, uint8_t pdu_type)
Harald Welte9ba50052010-03-14 15:45:01 +0800184{
185 struct msgb *msg = msgb_alloc(NS_ALLOC_SIZE, "GPRS/NS");
186 struct gprs_ns_hdr *nsh;
187
188 if (!msg)
189 return -ENOMEM;
190
191 nsh = (struct gprs_ns_hdr *) msgb_put(msg, sizeof(*nsh));
192
193 nsh->pdu_type = pdu_type;
194
Harald Welte24a655f2010-04-30 19:54:29 +0200195 return gprs_ns_tx(nsvc, msg);
Harald Welte9ba50052010-03-14 15:45:01 +0800196}
197
Harald Welte834f26d2010-05-11 06:20:54 +0200198int gprs_ns_tx_reset(struct gprs_nsvc *nsvc, uint8_t cause)
Harald Welte69a4cf22010-05-03 20:55:10 +0200199{
200 struct msgb *msg = msgb_alloc(NS_ALLOC_SIZE, "GPRS/NS");
201 struct gprs_ns_hdr *nsh;
Harald Welte69a4cf22010-05-03 20:55:10 +0200202 uint16_t nsvci = htons(nsvc->nsvci);
203 uint16_t nsei = htons(nsvc->nsei);
204
205 if (!msg)
206 return -ENOMEM;
207
208 nsh = (struct gprs_ns_hdr *) msgb_put(msg, sizeof(*nsh));
209 nsh->pdu_type = NS_PDUT_RESET;
210
211 msgb_tvlv_put(msg, NS_IE_CAUSE, 1, &cause);
212 msgb_tvlv_put(msg, NS_IE_VCI, 2, (uint8_t *) &nsvci);
213 msgb_tvlv_put(msg, NS_IE_NSEI, 2, (uint8_t *) &nsei);
214
215 return gprs_ns_tx(nsvc, msg);
216
217}
218
Harald Welte834f26d2010-05-11 06:20:54 +0200219int gprs_ns_tx_block(struct gprs_nsvc *nsvc, uint8_t cause)
220{
221 struct msgb *msg = msgb_alloc(NS_ALLOC_SIZE, "GPRS/NS");
222 struct gprs_ns_hdr *nsh;
223 uint16_t nsvci = htons(nsvc->nsvci);
224
225 if (!msg)
226 return -ENOMEM;
227
228 /* be conservative and mark it as blocked even now! */
229 nsvc->state |= NSE_S_BLOCKED;
230
231 nsh = (struct gprs_ns_hdr *) msgb_put(msg, sizeof(*nsh));
232 nsh->pdu_type = NS_PDUT_BLOCK;
233
234 msgb_tvlv_put(msg, NS_IE_CAUSE, 1, &cause);
235 msgb_tvlv_put(msg, NS_IE_VCI, 2, (uint8_t *) &nsvci);
236
237 return gprs_ns_tx(nsvc, msg);
238}
239
240int gprs_ns_tx_unblock(struct gprs_nsvc *nsvc)
241{
242 return gprs_ns_tx_simple(nsvc, NS_PDUT_UNBLOCK);
243}
244
Harald Welte9ba50052010-03-14 15:45:01 +0800245#define NS_ALIVE_RETRIES 10 /* after 3 failed retransmit we declare BTS as dead */
246
Harald Welte69a4cf22010-05-03 20:55:10 +0200247static const uint8_t timer_mode_tout[_NSVC_TIMER_NR] = {
248 [NSVC_TIMER_TNS_RESET] = 60,
249 [NSVC_TIMER_TNS_ALIVE] = 3,
250 [NSVC_TIMER_TNS_TEST] = 30,
251};
252
253static void nsvc_start_timer(struct gprs_nsvc *nsvc, enum nsvc_timer_mode mode)
254{
255 nsvc->alive_retries = 0;
256
257 if (bsc_timer_pending(&nsvc->timer))
258 bsc_del_timer(&nsvc->timer);
259
260 nsvc->timer_mode = mode;
261 bsc_schedule_timer(&nsvc->timer, timer_mode_tout[mode], 0);
262}
263
Harald Welte80405452010-05-03 20:16:13 +0200264static void gprs_ns_timer_cb(void *data)
Harald Welte9ba50052010-03-14 15:45:01 +0800265{
266 struct gprs_nsvc *nsvc = data;
267
Harald Welte80405452010-05-03 20:16:13 +0200268 switch (nsvc->timer_mode) {
269 case NSVC_TIMER_TNS_ALIVE:
Harald Welte9ba50052010-03-14 15:45:01 +0800270 /* Tns-alive case: we expired without response ! */
271 nsvc->alive_retries++;
272 if (nsvc->alive_retries > NS_ALIVE_RETRIES) {
273 /* mark as dead and blocked */
274 nsvc->state = NSE_S_BLOCKED;
Harald Welteb8a6a832010-05-11 05:54:22 +0200275 DEBUGP(DNS, "NSEI=%u Tns-alive expired more then "
Harald Welte69a4cf22010-05-03 20:55:10 +0200276 "%u times, blocking NS-VC\n", nsvc->nsei,
277 NS_ALIVE_RETRIES);
Harald Welte9ba50052010-03-14 15:45:01 +0800278 /* FIXME: inform higher layers */
279 return;
280 }
Harald Welte69a4cf22010-05-03 20:55:10 +0200281 nsvc_start_timer(nsvc, NSVC_TIMER_TNS_ALIVE);
Harald Welte80405452010-05-03 20:16:13 +0200282 break;
283 case NSVC_TIMER_TNS_TEST:
Harald Welte9ba50052010-03-14 15:45:01 +0800284 /* Tns-test case: send NS-ALIVE PDU */
Harald Weltec5478482010-03-18 00:01:43 +0800285 gprs_ns_tx_simple(nsvc, NS_PDUT_ALIVE);
Harald Welte9ba50052010-03-14 15:45:01 +0800286 /* start Tns-alive timer */
Harald Welte69a4cf22010-05-03 20:55:10 +0200287 nsvc_start_timer(nsvc, NSVC_TIMER_TNS_ALIVE);
288 break;
289 case NSVC_TIMER_TNS_RESET:
290 /* Chapter 7.3: Re-send the RESET */
Harald Welte570fb832010-05-03 21:05:24 +0200291 gprs_ns_tx_reset(nsvc, NS_CAUSE_OM_INTERVENTION);
Harald Welte69a4cf22010-05-03 20:55:10 +0200292 nsvc_start_timer(nsvc, NSVC_TIMER_TNS_RESET);
Harald Welte80405452010-05-03 20:16:13 +0200293 break;
Harald Welte2fc725d2010-05-11 10:15:26 +0200294 case _NSVC_TIMER_NR:
295 break;
Harald Welte9ba50052010-03-14 15:45:01 +0800296 }
Harald Welte9ba50052010-03-14 15:45:01 +0800297}
298
299/* Section 9.2.6 */
Harald Weltec5478482010-03-18 00:01:43 +0800300static int gprs_ns_tx_reset_ack(struct gprs_nsvc *nsvc)
Harald Welte9ba50052010-03-14 15:45:01 +0800301{
302 struct msgb *msg = msgb_alloc(NS_ALLOC_SIZE, "GPRS/NS");
303 struct gprs_ns_hdr *nsh;
Harald Welte8f9a3ee2010-05-02 11:26:34 +0200304 uint16_t nsvci, nsei;
Harald Welte9ba50052010-03-14 15:45:01 +0800305
306 if (!msg)
307 return -ENOMEM;
308
Harald Weltec5478482010-03-18 00:01:43 +0800309 nsvci = htons(nsvc->nsvci);
310 nsei = htons(nsvc->nsei);
Harald Welte9ba50052010-03-14 15:45:01 +0800311
312 nsh = (struct gprs_ns_hdr *) msgb_put(msg, sizeof(*nsh));
313
314 nsh->pdu_type = NS_PDUT_RESET_ACK;
315
Harald Welteb8a6a832010-05-11 05:54:22 +0200316 DEBUGP(DNS, "NSEI=%u Tx NS RESET ACK (NSVCI=%u)\n",
Harald Weltebbc9fac2010-05-03 18:54:12 +0200317 nsvc->nsei, nsvc->nsvci);
Harald Weltec5478482010-03-18 00:01:43 +0800318
Harald Welte8f9a3ee2010-05-02 11:26:34 +0200319 msgb_tvlv_put(msg, NS_IE_VCI, 2, (uint8_t *)&nsvci);
320 msgb_tvlv_put(msg, NS_IE_NSEI, 2, (uint8_t *)&nsei);
Harald Welte9ba50052010-03-14 15:45:01 +0800321
Harald Welte24a655f2010-04-30 19:54:29 +0200322 return gprs_ns_tx(nsvc, msg);
Harald Welte9ba50052010-03-14 15:45:01 +0800323}
324
Harald Welte24a655f2010-04-30 19:54:29 +0200325/* Section 9.2.10: transmit side / NS-UNITDATA-REQUEST primitive */
326int gprs_ns_sendmsg(struct gprs_ns_inst *nsi, struct msgb *msg)
Harald Welte9ba50052010-03-14 15:45:01 +0800327{
Harald Welte24a655f2010-04-30 19:54:29 +0200328 struct gprs_nsvc *nsvc;
Harald Welte9ba50052010-03-14 15:45:01 +0800329 struct gprs_ns_hdr *nsh;
Harald Welte8f9a3ee2010-05-02 11:26:34 +0200330 uint16_t bvci = msgb_bvci(msg);
Harald Welte24a655f2010-04-30 19:54:29 +0200331
332 nsvc = nsvc_by_nsei(nsi, msgb_nsei(msg));
333 if (!nsvc) {
Harald Welteb8a6a832010-05-11 05:54:22 +0200334 LOGP(DNS, LOGL_ERROR, "Unable to resolve NSEI %u "
Harald Weltebbc9fac2010-05-03 18:54:12 +0200335 "to NS-VC!\n", msgb_nsei(msg));
Harald Welte24a655f2010-04-30 19:54:29 +0200336 return -EINVAL;
337 }
Harald Welte9ba50052010-03-14 15:45:01 +0800338
Harald Welte69a4cf22010-05-03 20:55:10 +0200339 if (!(nsvc->state & NSE_S_ALIVE)) {
Harald Welteb8a6a832010-05-11 05:54:22 +0200340 LOGP(DNS, LOGL_ERROR, "NSEI=%u is not alive, cannot send\n",
Harald Welte69a4cf22010-05-03 20:55:10 +0200341 nsvc->nsei);
342 return -EBUSY;
343 }
344 if (nsvc->state & NSE_S_BLOCKED) {
Harald Welteb8a6a832010-05-11 05:54:22 +0200345 LOGP(DNS, LOGL_ERROR, "NSEI=%u is blocked, cannot send\n",
Harald Welte69a4cf22010-05-03 20:55:10 +0200346 nsvc->nsei);
347 return -EBUSY;
348 }
349
Harald Welte9ba50052010-03-14 15:45:01 +0800350 nsh = (struct gprs_ns_hdr *) msgb_push(msg, sizeof(*nsh) + 3);
351 if (!nsh) {
Harald Welteb8a6a832010-05-11 05:54:22 +0200352 LOGP(DNS, LOGL_ERROR, "Not enough headroom for NS header\n");
Harald Welte9ba50052010-03-14 15:45:01 +0800353 return -EIO;
354 }
355
356 nsh->pdu_type = NS_PDUT_UNITDATA;
357 /* spare octet in data[0] */
358 nsh->data[1] = bvci >> 8;
359 nsh->data[2] = bvci & 0xff;
360
Harald Welte24a655f2010-04-30 19:54:29 +0200361 return gprs_ns_tx(nsvc, msg);
Harald Welte9ba50052010-03-14 15:45:01 +0800362}
363
364/* Section 9.2.10: receive side */
Harald Welte24a655f2010-04-30 19:54:29 +0200365static int gprs_ns_rx_unitdata(struct gprs_nsvc *nsvc, struct msgb *msg)
Harald Welte9ba50052010-03-14 15:45:01 +0800366{
367 struct gprs_ns_hdr *nsh = (struct gprs_ns_hdr *)msg->l2h;
Harald Welte8f9a3ee2010-05-02 11:26:34 +0200368 uint16_t bvci;
Harald Welte9ba50052010-03-14 15:45:01 +0800369
370 /* spare octet in data[0] */
371 bvci = nsh->data[1] << 8 | nsh->data[2];
Harald Welteec19c102010-05-02 09:50:42 +0200372 msgb_bssgph(msg) = &nsh->data[3];
Harald Welte30bc19a2010-05-02 11:19:37 +0200373 msgb_bvci(msg) = bvci;
Harald Welte9ba50052010-03-14 15:45:01 +0800374
375 /* call upper layer (BSSGP) */
Harald Weltef030b212010-04-26 19:18:54 +0200376 return nsvc->nsi->cb(GPRS_NS_EVT_UNIT_DATA, nsvc, msg, bvci);
Harald Welte9ba50052010-03-14 15:45:01 +0800377}
378
379/* Section 9.2.7 */
Harald Welte24a655f2010-04-30 19:54:29 +0200380static int gprs_ns_rx_status(struct gprs_nsvc *nsvc, struct msgb *msg)
Harald Welte9ba50052010-03-14 15:45:01 +0800381{
Harald Weltef030b212010-04-26 19:18:54 +0200382 struct gprs_ns_hdr *nsh = (struct gprs_ns_hdr *) msg->l2h;
Harald Welte9ba50052010-03-14 15:45:01 +0800383 struct tlv_parsed tp;
Harald Welte8f9a3ee2010-05-02 11:26:34 +0200384 uint8_t cause;
Harald Welte9ba50052010-03-14 15:45:01 +0800385 int rc;
386
Harald Welteb8a6a832010-05-11 05:54:22 +0200387 DEBUGP(DNS, "NSEI=%u NS STATUS ", nsvc->nsei);
Harald Welte9ba50052010-03-14 15:45:01 +0800388
389 rc = tlv_parse(&tp, &ns_att_tlvdef, nsh->data, msgb_l2len(msg), 0, 0);
390
391 if (!TLVP_PRESENT(&tp, NS_IE_CAUSE)) {
Harald Welteb8a6a832010-05-11 05:54:22 +0200392 DEBUGPC(DNS, "missing cause IE\n");
Harald Welte9ba50052010-03-14 15:45:01 +0800393 return -EINVAL;
394 }
395
396 cause = *TLVP_VAL(&tp, NS_IE_CAUSE);
Harald Welteb8a6a832010-05-11 05:54:22 +0200397 DEBUGPC(DNS, "cause=%s\n", gprs_ns_cause_str(cause));
Harald Welte9ba50052010-03-14 15:45:01 +0800398
399 return 0;
400}
401
402/* Section 7.3 */
Harald Welte24a655f2010-04-30 19:54:29 +0200403static int gprs_ns_rx_reset(struct gprs_nsvc *nsvc, struct msgb *msg)
Harald Welte9ba50052010-03-14 15:45:01 +0800404{
405 struct gprs_ns_hdr *nsh = (struct gprs_ns_hdr *) msg->l2h;
Harald Welte9ba50052010-03-14 15:45:01 +0800406 struct tlv_parsed tp;
Harald Welte8f9a3ee2010-05-02 11:26:34 +0200407 uint8_t *cause;
408 uint16_t *nsvci, *nsei;
Harald Welte9ba50052010-03-14 15:45:01 +0800409 int rc;
410
Harald Welte9ba50052010-03-14 15:45:01 +0800411 rc = tlv_parse(&tp, &ns_att_tlvdef, nsh->data, msgb_l2len(msg), 0, 0);
412
413 if (!TLVP_PRESENT(&tp, NS_IE_CAUSE) ||
414 !TLVP_PRESENT(&tp, NS_IE_VCI) ||
415 !TLVP_PRESENT(&tp, NS_IE_NSEI)) {
416 /* FIXME: respond with NS_CAUSE_MISSING_ESSENT_IE */
Harald Welteb8a6a832010-05-11 05:54:22 +0200417 LOGP(DNS, LOGL_ERROR, "NS RESET Missing mandatory IE\n");
Harald Welte9ba50052010-03-14 15:45:01 +0800418 return -EINVAL;
419 }
420
Harald Welte8f9a3ee2010-05-02 11:26:34 +0200421 cause = (uint8_t *) TLVP_VAL(&tp, NS_IE_CAUSE);
422 nsvci = (uint16_t *) TLVP_VAL(&tp, NS_IE_VCI);
423 nsei = (uint16_t *) TLVP_VAL(&tp, NS_IE_NSEI);
Harald Welte9ba50052010-03-14 15:45:01 +0800424
Harald Welteb8a6a832010-05-11 05:54:22 +0200425 DEBUGP(DNS, "NSEI=%u NS RESET (NSVCI=%u, cause=%s)\n",
Harald Weltebbc9fac2010-05-03 18:54:12 +0200426 nsvc->nsvci, nsvc->nsei, gprs_ns_cause_str(*cause));
427
Harald Weltec5478482010-03-18 00:01:43 +0800428 nsvc->state = NSE_S_BLOCKED | NSE_S_ALIVE;
429 nsvc->nsei = ntohs(*nsei);
430 nsvc->nsvci = ntohs(*nsvci);
Harald Welte9ba50052010-03-14 15:45:01 +0800431
Harald Welte9ba50052010-03-14 15:45:01 +0800432 /* mark the NS-VC as blocked and alive */
Harald Welte9ba50052010-03-14 15:45:01 +0800433 /* start the test procedure */
Harald Welte69a4cf22010-05-03 20:55:10 +0200434 nsvc_start_timer(nsvc, NSVC_TIMER_TNS_ALIVE);
Harald Welte9ba50052010-03-14 15:45:01 +0800435
Harald Welte834f26d2010-05-11 06:20:54 +0200436 /* inform interested parties about the fact that this NSVC
437 * has received RESET */
Harald Welte2fc725d2010-05-11 10:15:26 +0200438 ns_dispatch_signal(nsvc, S_NS_RESET, *cause);
Harald Welte834f26d2010-05-11 06:20:54 +0200439
Harald Weltec5478482010-03-18 00:01:43 +0800440 return gprs_ns_tx_reset_ack(nsvc);
Harald Welte9ba50052010-03-14 15:45:01 +0800441}
442
Harald Welte834f26d2010-05-11 06:20:54 +0200443static int gprs_ns_rx_block(struct gprs_nsvc *nsvc, struct msgb *msg)
444{
445 struct gprs_ns_hdr *nsh = (struct gprs_ns_hdr *) msg->l2h;
446 struct tlv_parsed tp;
447 uint8_t *cause;
448 int rc;
449
450 DEBUGP(DNS, "NSEI=%u Rx NS BLOCK\n", nsvc->nsei);
451
452 nsvc->state |= NSE_S_BLOCKED;
453
454 rc = tlv_parse(&tp, &ns_att_tlvdef, nsh->data, msgb_l2len(msg), 0, 0);
455
456 if (!TLVP_PRESENT(&tp, NS_IE_CAUSE) ||
457 !TLVP_PRESENT(&tp, NS_IE_VCI)) {
458 /* FIXME: respond with NS_CAUSE_MISSING_ESSENT_IE */
459 LOGP(DNS, LOGL_ERROR, "NS RESET Missing mandatory IE\n");
460 return -EINVAL;
461 }
462
463 cause = (uint8_t *) TLVP_VAL(&tp, NS_IE_CAUSE);
464 //nsvci = (uint16_t *) TLVP_VAL(&tp, NS_IE_VCI);
465
Harald Welte2fc725d2010-05-11 10:15:26 +0200466 ns_dispatch_signal(nsvc, S_NS_BLOCK, *cause);
Harald Welte834f26d2010-05-11 06:20:54 +0200467
468 return gprs_ns_tx_simple(nsvc, NS_PDUT_BLOCK_ACK);
469}
470
Harald Welte9ba50052010-03-14 15:45:01 +0800471/* main entry point, here incoming NS frames enter */
Harald Weltef030b212010-04-26 19:18:54 +0200472int gprs_ns_rcvmsg(struct gprs_ns_inst *nsi, struct msgb *msg,
473 struct sockaddr_in *saddr)
Harald Welte9ba50052010-03-14 15:45:01 +0800474{
475 struct gprs_ns_hdr *nsh = (struct gprs_ns_hdr *) msg->l2h;
Harald Weltef030b212010-04-26 19:18:54 +0200476 struct gprs_nsvc *nsvc;
Harald Welte9ba50052010-03-14 15:45:01 +0800477 int rc = 0;
478
Harald Weltef030b212010-04-26 19:18:54 +0200479 /* look up the NSVC based on source address */
480 nsvc = nsvc_by_rem_addr(nsi, saddr);
481 if (!nsvc) {
482 /* Only the RESET procedure creates a new NSVC */
Harald Weltebbc9fac2010-05-03 18:54:12 +0200483 if (nsh->pdu_type != NS_PDUT_RESET) {
Harald Welteb8a6a832010-05-11 05:54:22 +0200484 LOGP(DNS, LOGL_INFO, "Ignoring NS PDU type 0x%0x "
Harald Weltebbc9fac2010-05-03 18:54:12 +0200485 "from %s for non-existing NS-VC\n",
486 nsh->pdu_type, inet_ntoa(saddr->sin_addr));
Harald Welte570fb832010-05-03 21:05:24 +0200487 //gprs_ns_tx_reset(nsvc, NS_CAUSE_NSVC_UNKNOWN);
Harald Weltef030b212010-04-26 19:18:54 +0200488 return -EIO;
Harald Weltebbc9fac2010-05-03 18:54:12 +0200489 }
Harald Welteb8a6a832010-05-11 05:54:22 +0200490 LOGP(DNS, LOGL_INFO, "Creating NS-VC for BSS at %s:%u\n",
Harald Weltebbc9fac2010-05-03 18:54:12 +0200491 inet_ntoa(saddr->sin_addr), ntohs(saddr->sin_port));
Harald Weltef030b212010-04-26 19:18:54 +0200492 nsvc = nsvc_create(nsi, 0xffff);
493 nsvc->ip.bts_addr = *saddr;
Harald Weltebbc9fac2010-05-03 18:54:12 +0200494 } else
495 msgb_nsei(msg) = nsvc->nsei;
Harald Weltec5478482010-03-18 00:01:43 +0800496
Harald Welte9ba50052010-03-14 15:45:01 +0800497 switch (nsh->pdu_type) {
498 case NS_PDUT_ALIVE:
499 /* remote end inquires whether we're still alive,
500 * we need to respond with ALIVE_ACK */
Harald Weltec5478482010-03-18 00:01:43 +0800501 rc = gprs_ns_tx_simple(nsvc, NS_PDUT_ALIVE_ACK);
Harald Welte9ba50052010-03-14 15:45:01 +0800502 break;
503 case NS_PDUT_ALIVE_ACK:
504 /* stop Tns-alive */
Harald Welte80405452010-05-03 20:16:13 +0200505 bsc_del_timer(&nsvc->timer);
Harald Welte9ba50052010-03-14 15:45:01 +0800506 /* start Tns-test */
Harald Welte69a4cf22010-05-03 20:55:10 +0200507 nsvc_start_timer(nsvc, NSVC_TIMER_TNS_TEST);
Harald Welte7fb7e612010-05-03 21:11:22 +0200508 if (nsvc->remote_end_is_sgsn) {
509 /* FIXME: this should be one level higher */
510 if (nsvc->state & NSE_S_BLOCKED)
511 rc = gprs_ns_tx_simple(nsvc, NS_PDUT_UNBLOCK);
512 }
Harald Welte9ba50052010-03-14 15:45:01 +0800513 break;
514 case NS_PDUT_UNITDATA:
515 /* actual user data */
Harald Welte24a655f2010-04-30 19:54:29 +0200516 rc = gprs_ns_rx_unitdata(nsvc, msg);
Harald Welte9ba50052010-03-14 15:45:01 +0800517 break;
518 case NS_PDUT_STATUS:
Harald Welte24a655f2010-04-30 19:54:29 +0200519 rc = gprs_ns_rx_status(nsvc, msg);
Harald Welte9ba50052010-03-14 15:45:01 +0800520 break;
521 case NS_PDUT_RESET:
Harald Welte24a655f2010-04-30 19:54:29 +0200522 rc = gprs_ns_rx_reset(nsvc, msg);
Harald Welte9ba50052010-03-14 15:45:01 +0800523 break;
524 case NS_PDUT_RESET_ACK:
Harald Welteb8a6a832010-05-11 05:54:22 +0200525 DEBUGP(DNS, "NSEI=%u Rx NS RESET ACK\n", nsvc->nsei);
Harald Weltef030b212010-04-26 19:18:54 +0200526 /* mark remote NS-VC as blocked + active */
527 nsvc->remote_state = NSE_S_BLOCKED | NSE_S_ALIVE;
Harald Welte69a4cf22010-05-03 20:55:10 +0200528 if (nsvc->remote_end_is_sgsn) {
529 /* stop RESET timer */
530 bsc_del_timer(&nsvc->timer);
Harald Welte570fb832010-05-03 21:05:24 +0200531 /* send ALIVE PDU */
532 rc = gprs_ns_tx_simple(nsvc, NS_PDUT_ALIVE);
533 nsvc_start_timer(nsvc, NSVC_TIMER_TNS_ALIVE);
Harald Welte7fb7e612010-05-03 21:11:22 +0200534 /* mark local state as BLOCKED + ALIVE */
535 nsvc->state = NSE_S_BLOCKED | NSE_S_ALIVE;
Harald Welte69a4cf22010-05-03 20:55:10 +0200536 }
Harald Welte9ba50052010-03-14 15:45:01 +0800537 break;
538 case NS_PDUT_UNBLOCK:
539 /* Section 7.2: unblocking procedure */
Harald Welteb8a6a832010-05-11 05:54:22 +0200540 DEBUGP(DNS, "NSEI=%u Rx NS UNBLOCK\n", nsvc->nsei);
Harald Welte9ba50052010-03-14 15:45:01 +0800541 nsvc->state &= ~NSE_S_BLOCKED;
Harald Welte834f26d2010-05-11 06:20:54 +0200542 ns_dispatch_signal(nsvc, S_NS_UNBLOCK, 0);
Harald Weltec5478482010-03-18 00:01:43 +0800543 rc = gprs_ns_tx_simple(nsvc, NS_PDUT_UNBLOCK_ACK);
Harald Welte9ba50052010-03-14 15:45:01 +0800544 break;
545 case NS_PDUT_UNBLOCK_ACK:
Harald Welteb8a6a832010-05-11 05:54:22 +0200546 DEBUGP(DNS, "NSEI=%u Rx NS UNBLOCK ACK\n", nsvc->nsei);
Harald Weltef030b212010-04-26 19:18:54 +0200547 /* mark remote NS-VC as unblocked + active */
548 nsvc->remote_state = NSE_S_ALIVE;
Harald Welte7fb7e612010-05-03 21:11:22 +0200549 if (nsvc->remote_end_is_sgsn)
550 nsvc->state = NSE_S_ALIVE;
Harald Welte9ba50052010-03-14 15:45:01 +0800551 break;
552 case NS_PDUT_BLOCK:
Harald Welte834f26d2010-05-11 06:20:54 +0200553 rc = gprs_ns_rx_block(nsvc, msg);
Harald Welte9ba50052010-03-14 15:45:01 +0800554 break;
555 case NS_PDUT_BLOCK_ACK:
Harald Welteb8a6a832010-05-11 05:54:22 +0200556 DEBUGP(DNS, "NSEI=%u Rx NS BLOCK ACK\n", nsvc->nsei);
Harald Weltef030b212010-04-26 19:18:54 +0200557 /* mark remote NS-VC as blocked + active */
558 nsvc->remote_state = NSE_S_BLOCKED | NSE_S_ALIVE;
Harald Welte9ba50052010-03-14 15:45:01 +0800559 break;
560 default:
Harald Welteb8a6a832010-05-11 05:54:22 +0200561 DEBUGP(DNS, "NSEI=%u Rx Unknown NS PDU type 0x%02x\n",
Harald Weltebbc9fac2010-05-03 18:54:12 +0200562 nsvc->nsei, nsh->pdu_type);
Harald Welte9ba50052010-03-14 15:45:01 +0800563 rc = -EINVAL;
564 break;
565 }
566 return rc;
567}
568
Harald Weltef030b212010-04-26 19:18:54 +0200569struct gprs_ns_inst *gprs_ns_instantiate(gprs_ns_cb_t *cb)
570{
571 struct gprs_ns_inst *nsi = talloc_zero(tall_bsc_ctx, struct gprs_ns_inst);
572
573 nsi->cb = cb;
574 INIT_LLIST_HEAD(&nsi->gprs_nsvcs);
575
Harald Welte3771d092010-04-30 20:26:32 +0200576 return nsi;
Harald Weltef030b212010-04-26 19:18:54 +0200577}
578
579void gprs_ns_destroy(struct gprs_ns_inst *nsi)
580{
581 /* FIXME: clear all timers */
582
583 /* recursively free the NSI and all its NSVCs */
584 talloc_free(nsi);
585}
586
587
588/* NS-over-IP code, according to 3GPP TS 48.016 Chapter 6.2
589 * We don't support Size Procedure, Configuration Procedure, ChangeWeight Procedure */
590
591/* Read a single NS-over-IP message */
592static struct msgb *read_nsip_msg(struct bsc_fd *bfd, int *error,
593 struct sockaddr_in *saddr)
594{
595 struct msgb *msg = msgb_alloc(NS_ALLOC_SIZE, "Abis/IP/GPRS-NS");
596 int ret = 0;
597 socklen_t saddr_len = sizeof(*saddr);
598
599 if (!msg) {
600 *error = -ENOMEM;
601 return NULL;
602 }
603
604 ret = recvfrom(bfd->fd, msg->data, NS_ALLOC_SIZE, 0,
605 (struct sockaddr *)saddr, &saddr_len);
606 if (ret < 0) {
Harald Welteb8a6a832010-05-11 05:54:22 +0200607 LOGP(DNS, LOGL_ERROR, "recv error %s during NSIP recv\n",
Harald Weltebbc9fac2010-05-03 18:54:12 +0200608 strerror(errno));
Harald Weltef030b212010-04-26 19:18:54 +0200609 msgb_free(msg);
610 *error = ret;
611 return NULL;
612 } else if (ret == 0) {
613 msgb_free(msg);
614 *error = ret;
615 return NULL;
616 }
617
618 msg->l2h = msg->data;
619 msgb_put(msg, ret);
620
621 return msg;
622}
623
624static int handle_nsip_read(struct bsc_fd *bfd)
625{
626 int error;
627 struct sockaddr_in saddr;
628 struct gprs_ns_inst *nsi = bfd->data;
629 struct msgb *msg = read_nsip_msg(bfd, &error, &saddr);
630
631 if (!msg)
632 return error;
633
634 return gprs_ns_rcvmsg(nsi, msg, &saddr);
635}
636
637static int handle_nsip_write(struct bsc_fd *bfd)
638{
639 /* FIXME: actually send the data here instead of nsip_sendmsg() */
640 return -EIO;
641}
642
Harald Welte24a655f2010-04-30 19:54:29 +0200643int nsip_sendmsg(struct gprs_nsvc *nsvc, struct msgb *msg)
Harald Weltef030b212010-04-26 19:18:54 +0200644{
645 int rc;
646 struct gprs_ns_inst *nsi = nsvc->nsi;
647 struct sockaddr_in *daddr = &nsvc->ip.bts_addr;
648
649 rc = sendto(nsi->nsip.fd.fd, msg->data, msg->len, 0,
650 (struct sockaddr *)daddr, sizeof(*daddr));
651
652 talloc_free(msg);
653
654 return rc;
655}
656
657/* UDP Port 23000 carries the LLC-in-BSSGP-in-NS protocol stack */
658static int nsip_fd_cb(struct bsc_fd *bfd, unsigned int what)
659{
660 int rc = 0;
661
662 if (what & BSC_FD_READ)
663 rc = handle_nsip_read(bfd);
664 if (what & BSC_FD_WRITE)
665 rc = handle_nsip_write(bfd);
666
667 return rc;
668}
669
670
671/* FIXME: this is currently in input/ipaccess.c */
Harald Welte8f9a3ee2010-05-02 11:26:34 +0200672extern int make_sock(struct bsc_fd *bfd, int proto, uint16_t port,
Harald Weltef030b212010-04-26 19:18:54 +0200673 int (*cb)(struct bsc_fd *fd, unsigned int what));
674
675/* Listen for incoming GPRS packets */
676int nsip_listen(struct gprs_ns_inst *nsi, uint16_t udp_port)
677{
678 int ret;
679
680 ret = make_sock(&nsi->nsip.fd, IPPROTO_UDP, udp_port, nsip_fd_cb);
681 if (ret < 0)
682 return ret;
683
684 nsi->ll = GPRS_NS_LL_UDP;
685 nsi->nsip.fd.data = nsi;
686
687 return ret;
688}
Harald Welte3771d092010-04-30 20:26:32 +0200689
690/* Establish a connection (from the BSS) to the SGSN */
691struct gprs_nsvc *nsip_connect(struct gprs_ns_inst *nsi,
Harald Welte1203de32010-05-01 11:28:43 +0200692 struct sockaddr_in *dest, uint16_t nsei,
693 uint16_t nsvci)
Harald Welte3771d092010-04-30 20:26:32 +0200694{
695 struct gprs_nsvc *nsvc;
696
697 nsvc = nsvc_by_rem_addr(nsi, dest);
698 if (!nsvc) {
699 nsvc = nsvc_create(nsi, nsvci);
700 nsvc->ip.bts_addr = *dest;
701 }
Harald Welte1203de32010-05-01 11:28:43 +0200702 nsvc->nsei = nsei;
703 nsvc->nsvci = nsvci;
Harald Welte3771d092010-04-30 20:26:32 +0200704 nsvc->remote_end_is_sgsn = 1;
705
706 /* Initiate a RESET procedure */
Harald Welte570fb832010-05-03 21:05:24 +0200707 if (gprs_ns_tx_reset(nsvc, NS_CAUSE_OM_INTERVENTION) < 0) {
Harald Welteb8a6a832010-05-11 05:54:22 +0200708 LOGP(DNS, LOGL_ERROR, "NSEI=%u, error resetting NS-VC\n",
Harald Welte69a4cf22010-05-03 20:55:10 +0200709 nsei);
710 }
711 /* run a timer and re-transmit the reset request? */
712 nsvc_start_timer(nsvc, NSVC_TIMER_TNS_RESET);
Harald Welte3771d092010-04-30 20:26:32 +0200713
714 return nsvc;
715}