blob: 8cb26a633b477161fd7da5dc98af0cd129bd12e6 [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) {
Harald Welte38407ef2010-05-12 11:56:39 +0000107 if (nsvc->ip.bts_addr.sin_addr.s_addr ==
108 sin->sin_addr.s_addr &&
109 nsvc->ip.bts_addr.sin_port == sin->sin_port)
Harald Weltef030b212010-04-26 19:18:54 +0200110 return nsvc;
111 }
112 return NULL;
113}
114
Harald Welte69a4cf22010-05-03 20:55:10 +0200115static void gprs_ns_timer_cb(void *data);
116
Harald Welte8f9a3ee2010-05-02 11:26:34 +0200117static struct gprs_nsvc *nsvc_create(struct gprs_ns_inst *nsi, uint16_t nsvci)
Harald Weltef030b212010-04-26 19:18:54 +0200118{
119 struct gprs_nsvc *nsvc;
120
121 nsvc = talloc_zero(nsi, struct gprs_nsvc);
122 nsvc->nsvci = nsvci;
123 /* before RESET procedure: BLOCKED and DEAD */
124 nsvc->state = NSE_S_BLOCKED;
125 nsvc->nsi = nsi;
Harald Welte69a4cf22010-05-03 20:55:10 +0200126 nsvc->timer.cb = gprs_ns_timer_cb;
127 nsvc->timer.data = nsvc;
128
Harald Weltef030b212010-04-26 19:18:54 +0200129 llist_add(&nsvc->list, &nsi->gprs_nsvcs);
130
131 return nsvc;
132}
Harald Welte9ba50052010-03-14 15:45:01 +0800133
Harald Welte2fc725d2010-05-11 10:15:26 +0200134static void ns_dispatch_signal(struct gprs_nsvc *nsvc, unsigned int signal,
Harald Welte834f26d2010-05-11 06:20:54 +0200135 uint8_t cause)
136{
137 struct ns_signal_data nssd;
138
139 nssd.nsvc = nsvc;
140 nssd.cause = cause;
141
142 dispatch_signal(SS_NS, signal, &nssd);
143}
144
Harald Welte9ba50052010-03-14 15:45:01 +0800145/* Section 10.3.2, Table 13 */
Harald Welte2577d412010-05-02 09:37:45 +0200146static const struct value_string ns_cause_str[] = {
147 { NS_CAUSE_TRANSIT_FAIL, "Transit network failure" },
148 { NS_CAUSE_OM_INTERVENTION, "O&M intervention" },
149 { NS_CAUSE_EQUIP_FAIL, "Equipment failure" },
150 { NS_CAUSE_NSVC_BLOCKED, "NS-VC blocked" },
151 { NS_CAUSE_NSVC_UNKNOWN, "NS-VC unknown" },
152 { NS_CAUSE_BVCI_UNKNOWN, "BVCI unknown" },
153 { NS_CAUSE_SEM_INCORR_PDU, "Semantically incorrect PDU" },
154 { NS_CAUSE_PDU_INCOMP_PSTATE, "PDU not compatible with protocol state" },
Harald Welte69a4cf22010-05-03 20:55:10 +0200155 { NS_CAUSE_PROTO_ERR_UNSPEC, "Protocol error, unspecified" },
Harald Welte2577d412010-05-02 09:37:45 +0200156 { NS_CAUSE_INVAL_ESSENT_IE, "Invalid essential IE" },
157 { NS_CAUSE_MISSING_ESSENT_IE, "Missing essential IE" },
158 { 0, NULL }
Harald Welte9ba50052010-03-14 15:45:01 +0800159};
160
Harald Welte2577d412010-05-02 09:37:45 +0200161const char *gprs_ns_cause_str(enum ns_cause cause)
Harald Welte9ba50052010-03-14 15:45:01 +0800162{
Harald Welte2577d412010-05-02 09:37:45 +0200163 return get_value_string(ns_cause_str, cause);
Harald Welte9ba50052010-03-14 15:45:01 +0800164}
165
Harald Welte24a655f2010-04-30 19:54:29 +0200166static int nsip_sendmsg(struct gprs_nsvc *nsvc, struct msgb *msg);
Harald Weltef030b212010-04-26 19:18:54 +0200167
Harald Welte24a655f2010-04-30 19:54:29 +0200168static int gprs_ns_tx(struct gprs_nsvc *nsvc, struct msgb *msg)
Harald Welte9ba50052010-03-14 15:45:01 +0800169{
Harald Weltef030b212010-04-26 19:18:54 +0200170 int ret;
171
172 switch (nsvc->nsi->ll) {
173 case GPRS_NS_LL_UDP:
Harald Welte24a655f2010-04-30 19:54:29 +0200174 ret = nsip_sendmsg(nsvc, msg);
Harald Weltef030b212010-04-26 19:18:54 +0200175 break;
176 default:
Harald Welteb8a6a832010-05-11 05:54:22 +0200177 LOGP(DNS, LOGL_ERROR, "unsupported NS linklayer %u\n", nsvc->nsi->ll);
Harald Weltef030b212010-04-26 19:18:54 +0200178 msgb_free(msg);
179 ret = -EIO;
180 break;
181 }
182 return ret;
Harald Welte9ba50052010-03-14 15:45:01 +0800183}
184
Harald Welte8f9a3ee2010-05-02 11:26:34 +0200185static int gprs_ns_tx_simple(struct gprs_nsvc *nsvc, uint8_t pdu_type)
Harald Welte9ba50052010-03-14 15:45:01 +0800186{
187 struct msgb *msg = msgb_alloc(NS_ALLOC_SIZE, "GPRS/NS");
188 struct gprs_ns_hdr *nsh;
189
190 if (!msg)
191 return -ENOMEM;
192
193 nsh = (struct gprs_ns_hdr *) msgb_put(msg, sizeof(*nsh));
194
195 nsh->pdu_type = pdu_type;
196
Harald Welte24a655f2010-04-30 19:54:29 +0200197 return gprs_ns_tx(nsvc, msg);
Harald Welte9ba50052010-03-14 15:45:01 +0800198}
199
Harald Welte834f26d2010-05-11 06:20:54 +0200200int gprs_ns_tx_reset(struct gprs_nsvc *nsvc, uint8_t cause)
Harald Welte69a4cf22010-05-03 20:55:10 +0200201{
202 struct msgb *msg = msgb_alloc(NS_ALLOC_SIZE, "GPRS/NS");
203 struct gprs_ns_hdr *nsh;
Harald Welte69a4cf22010-05-03 20:55:10 +0200204 uint16_t nsvci = htons(nsvc->nsvci);
205 uint16_t nsei = htons(nsvc->nsei);
206
207 if (!msg)
208 return -ENOMEM;
209
Harald Welte6ecaa3d2010-05-12 12:01:33 +0000210 LOGP(DNS, LOGL_INFO, "NSEI=%u Tx NS RESET (NSVCI=%u, cause=%s)\n",
211 nsvc->nsei, nsvc->nsvci, gprs_ns_cause_str(cause));
212
Harald Welte69a4cf22010-05-03 20:55:10 +0200213 nsh = (struct gprs_ns_hdr *) msgb_put(msg, sizeof(*nsh));
214 nsh->pdu_type = NS_PDUT_RESET;
215
216 msgb_tvlv_put(msg, NS_IE_CAUSE, 1, &cause);
217 msgb_tvlv_put(msg, NS_IE_VCI, 2, (uint8_t *) &nsvci);
218 msgb_tvlv_put(msg, NS_IE_NSEI, 2, (uint8_t *) &nsei);
219
220 return gprs_ns_tx(nsvc, msg);
221
222}
223
Harald Weltec1402a62010-05-12 11:48:44 +0200224int gprs_ns_tx_status(struct gprs_nsvc *nsvc, uint8_t cause,
225 uint16_t bvci, struct msgb *orig_msg)
226{
227 struct msgb *msg = msgb_alloc(NS_ALLOC_SIZE, "GPRS/NS");
228 struct gprs_ns_hdr *nsh;
229 uint16_t nsvci = htons(nsvc->nsvci);
230
231 bvci = htons(bvci);
232
233 if (!msg)
234 return -ENOMEM;
235
Harald Welte6ecaa3d2010-05-12 12:01:33 +0000236 LOGP(DNS, LOGL_INFO, "NSEI=%u Tx NS STATUS (NSVCI=%u, cause=%s)\n",
237 nsvc->nsei, nsvc->nsvci, gprs_ns_cause_str(cause));
238
Harald Weltec1402a62010-05-12 11:48:44 +0200239 nsh = (struct gprs_ns_hdr *) msgb_put(msg, sizeof(*nsh));
240 nsh->pdu_type = NS_PDUT_STATUS;
241
242 msgb_tvlv_put(msg, NS_IE_CAUSE, 1, &cause);
243
244 /* Section 9.2.7.1: Static conditions for NS-VCI */
245 if (cause == NS_CAUSE_NSVC_BLOCKED ||
246 cause == NS_CAUSE_NSVC_UNKNOWN)
247 msgb_tvlv_put(msg, NS_IE_VCI, 2, (uint8_t *)&nsvci);
248
249 /* Section 9.2.7.2: Static conditions for NS PDU */
250 switch (cause) {
251 case NS_CAUSE_SEM_INCORR_PDU:
252 case NS_CAUSE_PDU_INCOMP_PSTATE:
253 case NS_CAUSE_PROTO_ERR_UNSPEC:
254 case NS_CAUSE_INVAL_ESSENT_IE:
255 case NS_CAUSE_MISSING_ESSENT_IE:
256 msgb_tvlv_put(msg, NS_IE_PDU, msgb_l2len(orig_msg),
257 orig_msg->l2h);
258 break;
259 default:
260 break;
261 }
262
263 /* Section 9.2.7.3: Static conditions for BVCI */
264 if (cause == NS_CAUSE_BVCI_UNKNOWN)
265 msgb_tvlv_put(msg, NS_IE_VCI, 2, (uint8_t *)&bvci);
266
267 return gprs_ns_tx(nsvc, msg);
268}
269
Harald Welte834f26d2010-05-11 06:20:54 +0200270int gprs_ns_tx_block(struct gprs_nsvc *nsvc, uint8_t cause)
271{
272 struct msgb *msg = msgb_alloc(NS_ALLOC_SIZE, "GPRS/NS");
273 struct gprs_ns_hdr *nsh;
274 uint16_t nsvci = htons(nsvc->nsvci);
275
276 if (!msg)
277 return -ENOMEM;
278
Harald Welte6ecaa3d2010-05-12 12:01:33 +0000279 LOGP(DNS, LOGL_INFO, "NSEI=%u Tx NS BLOCK (NSVCI=%u, cause=%s)\n",
280 nsvc->nsei, nsvc->nsvci, gprs_ns_cause_str(cause));
281
Harald Welte834f26d2010-05-11 06:20:54 +0200282 /* be conservative and mark it as blocked even now! */
283 nsvc->state |= NSE_S_BLOCKED;
284
285 nsh = (struct gprs_ns_hdr *) msgb_put(msg, sizeof(*nsh));
286 nsh->pdu_type = NS_PDUT_BLOCK;
287
288 msgb_tvlv_put(msg, NS_IE_CAUSE, 1, &cause);
289 msgb_tvlv_put(msg, NS_IE_VCI, 2, (uint8_t *) &nsvci);
290
291 return gprs_ns_tx(nsvc, msg);
292}
293
294int gprs_ns_tx_unblock(struct gprs_nsvc *nsvc)
295{
Harald Welte6ecaa3d2010-05-12 12:01:33 +0000296 LOGP(DNS, LOGL_INFO, "NSEI=%u Tx NS UNBLOCK (NSVCI=%u)\n",
297 nsvc->nsei, nsvc->nsvci);
298
Harald Welte834f26d2010-05-11 06:20:54 +0200299 return gprs_ns_tx_simple(nsvc, NS_PDUT_UNBLOCK);
300}
301
Harald Welteb983c312010-05-12 12:11:45 +0000302int gprs_ns_tx_alive(struct gprs_nsvc *nsvc)
303{
304 LOGP(DNS, LOGL_DEBUG, "NSEI=%u Tx NS ALIVE (NSVCI=%u)\n",
305 nsvc->nsei, nsvc->nsvci);
306
307 return gprs_ns_tx_simple(nsvc, NS_PDUT_ALIVE);
308}
309
310int gprs_ns_tx_alive_ack(struct gprs_nsvc *nsvc)
311{
312 LOGP(DNS, LOGL_DEBUG, "NSEI=%u Tx NS ALIVE_ACK (NSVCI=%u)\n",
313 nsvc->nsei, nsvc->nsvci);
314
315 return gprs_ns_tx_simple(nsvc, NS_PDUT_ALIVE_ACK);
316}
317
Harald Welte9ba50052010-03-14 15:45:01 +0800318#define NS_ALIVE_RETRIES 10 /* after 3 failed retransmit we declare BTS as dead */
319
Harald Welte69a4cf22010-05-03 20:55:10 +0200320static const uint8_t timer_mode_tout[_NSVC_TIMER_NR] = {
321 [NSVC_TIMER_TNS_RESET] = 60,
322 [NSVC_TIMER_TNS_ALIVE] = 3,
323 [NSVC_TIMER_TNS_TEST] = 30,
324};
325
Harald Welte7c24b9e2010-05-12 12:21:52 +0000326static const struct value_string timer_mode_strs[] = {
327 { NSVC_TIMER_TNS_RESET, "tns-reset" },
328 { NSVC_TIMER_TNS_ALIVE, "tns-alive" },
329 { NSVC_TIMER_TNS_TEST, "tns-test" },
330 { 0, NULL }
331};
332
Harald Welte69a4cf22010-05-03 20:55:10 +0200333static void nsvc_start_timer(struct gprs_nsvc *nsvc, enum nsvc_timer_mode mode)
334{
Harald Welte4e187c62010-05-12 13:55:36 +0000335 DEBUGP(DNS, "NSEI=%u Starting timer in mode %s (%u seconds)\n",
336 nsvc->nsei, get_value_string(timer_mode_strs, mode),
Harald Welte7c24b9e2010-05-12 12:21:52 +0000337 timer_mode_tout[mode]);
338
Harald Welte69a4cf22010-05-03 20:55:10 +0200339 if (bsc_timer_pending(&nsvc->timer))
340 bsc_del_timer(&nsvc->timer);
341
342 nsvc->timer_mode = mode;
343 bsc_schedule_timer(&nsvc->timer, timer_mode_tout[mode], 0);
344}
345
Harald Welte80405452010-05-03 20:16:13 +0200346static void gprs_ns_timer_cb(void *data)
Harald Welte9ba50052010-03-14 15:45:01 +0800347{
348 struct gprs_nsvc *nsvc = data;
349
Harald Welte4e187c62010-05-12 13:55:36 +0000350 DEBUGP(DNS, "NSEI=%u Timer expired in mode %s (%u seconds)\n",
351 nsvc->nsei, get_value_string(timer_mode_strs, nsvc->timer_mode),
Harald Welte7c24b9e2010-05-12 12:21:52 +0000352 timer_mode_tout[nsvc->timer_mode]);
353
Harald Welte80405452010-05-03 20:16:13 +0200354 switch (nsvc->timer_mode) {
355 case NSVC_TIMER_TNS_ALIVE:
Harald Welte9ba50052010-03-14 15:45:01 +0800356 /* Tns-alive case: we expired without response ! */
357 nsvc->alive_retries++;
358 if (nsvc->alive_retries > NS_ALIVE_RETRIES) {
359 /* mark as dead and blocked */
360 nsvc->state = NSE_S_BLOCKED;
Harald Weltee4ecc8c2010-05-12 00:16:57 +0200361 LOGP(DNS, LOGL_NOTICE,
362 "NSEI=%u Tns-alive expired more then "
Harald Welte69a4cf22010-05-03 20:55:10 +0200363 "%u times, blocking NS-VC\n", nsvc->nsei,
364 NS_ALIVE_RETRIES);
Harald Welte4941b352010-05-12 13:28:25 +0000365 ns_dispatch_signal(nsvc, S_NS_ALIVE_EXP, 0);
Harald Weltee4ecc8c2010-05-12 00:16:57 +0200366 ns_dispatch_signal(nsvc, S_NS_BLOCK, NS_CAUSE_NSVC_BLOCKED);
Harald Welte9ba50052010-03-14 15:45:01 +0800367 return;
368 }
Harald Welteb983c312010-05-12 12:11:45 +0000369 /* Tns-test case: send NS-ALIVE PDU */
370 gprs_ns_tx_alive(nsvc);
371 /* start Tns-alive timer */
Harald Welte69a4cf22010-05-03 20:55:10 +0200372 nsvc_start_timer(nsvc, NSVC_TIMER_TNS_ALIVE);
Harald Welte80405452010-05-03 20:16:13 +0200373 break;
374 case NSVC_TIMER_TNS_TEST:
Harald Welte9ba50052010-03-14 15:45:01 +0800375 /* Tns-test case: send NS-ALIVE PDU */
Harald Welteb983c312010-05-12 12:11:45 +0000376 gprs_ns_tx_alive(nsvc);
377 /* start Tns-alive timer (transition into faster
378 * alive retransmissions) */
Harald Welte7c24b9e2010-05-12 12:21:52 +0000379 nsvc->alive_retries = 0;
Harald Welte69a4cf22010-05-03 20:55:10 +0200380 nsvc_start_timer(nsvc, NSVC_TIMER_TNS_ALIVE);
381 break;
382 case NSVC_TIMER_TNS_RESET:
383 /* Chapter 7.3: Re-send the RESET */
Harald Welte570fb832010-05-03 21:05:24 +0200384 gprs_ns_tx_reset(nsvc, NS_CAUSE_OM_INTERVENTION);
Harald Weltec1402a62010-05-12 11:48:44 +0200385 /* Re-start Tns-reset timer */
Harald Welte69a4cf22010-05-03 20:55:10 +0200386 nsvc_start_timer(nsvc, NSVC_TIMER_TNS_RESET);
Harald Welte80405452010-05-03 20:16:13 +0200387 break;
Harald Welte2fc725d2010-05-11 10:15:26 +0200388 case _NSVC_TIMER_NR:
389 break;
Harald Welte9ba50052010-03-14 15:45:01 +0800390 }
Harald Welte9ba50052010-03-14 15:45:01 +0800391}
392
393/* Section 9.2.6 */
Harald Weltec5478482010-03-18 00:01:43 +0800394static int gprs_ns_tx_reset_ack(struct gprs_nsvc *nsvc)
Harald Welte9ba50052010-03-14 15:45:01 +0800395{
396 struct msgb *msg = msgb_alloc(NS_ALLOC_SIZE, "GPRS/NS");
397 struct gprs_ns_hdr *nsh;
Harald Welte8f9a3ee2010-05-02 11:26:34 +0200398 uint16_t nsvci, nsei;
Harald Welte9ba50052010-03-14 15:45:01 +0800399
400 if (!msg)
401 return -ENOMEM;
402
Harald Weltec5478482010-03-18 00:01:43 +0800403 nsvci = htons(nsvc->nsvci);
404 nsei = htons(nsvc->nsei);
Harald Welte9ba50052010-03-14 15:45:01 +0800405
406 nsh = (struct gprs_ns_hdr *) msgb_put(msg, sizeof(*nsh));
407
408 nsh->pdu_type = NS_PDUT_RESET_ACK;
409
Harald Weltee4ecc8c2010-05-12 00:16:57 +0200410 LOGP(DNS, LOGL_INFO, "NSEI=%u Tx NS RESET ACK (NSVCI=%u)\n",
Harald Weltebbc9fac2010-05-03 18:54:12 +0200411 nsvc->nsei, nsvc->nsvci);
Harald Weltec5478482010-03-18 00:01:43 +0800412
Harald Welte8f9a3ee2010-05-02 11:26:34 +0200413 msgb_tvlv_put(msg, NS_IE_VCI, 2, (uint8_t *)&nsvci);
414 msgb_tvlv_put(msg, NS_IE_NSEI, 2, (uint8_t *)&nsei);
Harald Welte9ba50052010-03-14 15:45:01 +0800415
Harald Welte24a655f2010-04-30 19:54:29 +0200416 return gprs_ns_tx(nsvc, msg);
Harald Welte9ba50052010-03-14 15:45:01 +0800417}
418
Harald Welte24a655f2010-04-30 19:54:29 +0200419/* Section 9.2.10: transmit side / NS-UNITDATA-REQUEST primitive */
420int gprs_ns_sendmsg(struct gprs_ns_inst *nsi, struct msgb *msg)
Harald Welte9ba50052010-03-14 15:45:01 +0800421{
Harald Welte24a655f2010-04-30 19:54:29 +0200422 struct gprs_nsvc *nsvc;
Harald Welte9ba50052010-03-14 15:45:01 +0800423 struct gprs_ns_hdr *nsh;
Harald Welte8f9a3ee2010-05-02 11:26:34 +0200424 uint16_t bvci = msgb_bvci(msg);
Harald Welte24a655f2010-04-30 19:54:29 +0200425
426 nsvc = nsvc_by_nsei(nsi, msgb_nsei(msg));
427 if (!nsvc) {
Harald Welteb8a6a832010-05-11 05:54:22 +0200428 LOGP(DNS, LOGL_ERROR, "Unable to resolve NSEI %u "
Harald Weltebbc9fac2010-05-03 18:54:12 +0200429 "to NS-VC!\n", msgb_nsei(msg));
Harald Welte24a655f2010-04-30 19:54:29 +0200430 return -EINVAL;
431 }
Harald Welte9ba50052010-03-14 15:45:01 +0800432
Harald Welte69a4cf22010-05-03 20:55:10 +0200433 if (!(nsvc->state & NSE_S_ALIVE)) {
Harald Welteb8a6a832010-05-11 05:54:22 +0200434 LOGP(DNS, LOGL_ERROR, "NSEI=%u is not alive, cannot send\n",
Harald Welte69a4cf22010-05-03 20:55:10 +0200435 nsvc->nsei);
436 return -EBUSY;
437 }
438 if (nsvc->state & NSE_S_BLOCKED) {
Harald Welteb8a6a832010-05-11 05:54:22 +0200439 LOGP(DNS, LOGL_ERROR, "NSEI=%u is blocked, cannot send\n",
Harald Welte69a4cf22010-05-03 20:55:10 +0200440 nsvc->nsei);
441 return -EBUSY;
442 }
443
Harald Welte9ba50052010-03-14 15:45:01 +0800444 nsh = (struct gprs_ns_hdr *) msgb_push(msg, sizeof(*nsh) + 3);
445 if (!nsh) {
Harald Welteb8a6a832010-05-11 05:54:22 +0200446 LOGP(DNS, LOGL_ERROR, "Not enough headroom for NS header\n");
Harald Welte9ba50052010-03-14 15:45:01 +0800447 return -EIO;
448 }
449
450 nsh->pdu_type = NS_PDUT_UNITDATA;
451 /* spare octet in data[0] */
452 nsh->data[1] = bvci >> 8;
453 nsh->data[2] = bvci & 0xff;
454
Harald Welte24a655f2010-04-30 19:54:29 +0200455 return gprs_ns_tx(nsvc, msg);
Harald Welte9ba50052010-03-14 15:45:01 +0800456}
457
458/* Section 9.2.10: receive side */
Harald Welte24a655f2010-04-30 19:54:29 +0200459static int gprs_ns_rx_unitdata(struct gprs_nsvc *nsvc, struct msgb *msg)
Harald Welte9ba50052010-03-14 15:45:01 +0800460{
461 struct gprs_ns_hdr *nsh = (struct gprs_ns_hdr *)msg->l2h;
Harald Welte8f9a3ee2010-05-02 11:26:34 +0200462 uint16_t bvci;
Harald Welte9ba50052010-03-14 15:45:01 +0800463
Harald Weltec1402a62010-05-12 11:48:44 +0200464 if (nsvc->state & NSE_S_BLOCKED)
465 return gprs_ns_tx_status(nsvc, NS_CAUSE_NSVC_BLOCKED,
466 0, msg);
467
Harald Welte9ba50052010-03-14 15:45:01 +0800468 /* spare octet in data[0] */
469 bvci = nsh->data[1] << 8 | nsh->data[2];
Harald Welteec19c102010-05-02 09:50:42 +0200470 msgb_bssgph(msg) = &nsh->data[3];
Harald Welte30bc19a2010-05-02 11:19:37 +0200471 msgb_bvci(msg) = bvci;
Harald Welte9ba50052010-03-14 15:45:01 +0800472
473 /* call upper layer (BSSGP) */
Harald Weltef030b212010-04-26 19:18:54 +0200474 return nsvc->nsi->cb(GPRS_NS_EVT_UNIT_DATA, nsvc, msg, bvci);
Harald Welte9ba50052010-03-14 15:45:01 +0800475}
476
477/* Section 9.2.7 */
Harald Welte24a655f2010-04-30 19:54:29 +0200478static int gprs_ns_rx_status(struct gprs_nsvc *nsvc, struct msgb *msg)
Harald Welte9ba50052010-03-14 15:45:01 +0800479{
Harald Weltef030b212010-04-26 19:18:54 +0200480 struct gprs_ns_hdr *nsh = (struct gprs_ns_hdr *) msg->l2h;
Harald Welte9ba50052010-03-14 15:45:01 +0800481 struct tlv_parsed tp;
Harald Welte8f9a3ee2010-05-02 11:26:34 +0200482 uint8_t cause;
Harald Welte9ba50052010-03-14 15:45:01 +0800483 int rc;
484
Harald Weltee4ecc8c2010-05-12 00:16:57 +0200485 LOGP(DNS, LOGL_INFO, "NSEI=%u NS STATUS ", nsvc->nsei);
Harald Welte9ba50052010-03-14 15:45:01 +0800486
487 rc = tlv_parse(&tp, &ns_att_tlvdef, nsh->data, msgb_l2len(msg), 0, 0);
488
489 if (!TLVP_PRESENT(&tp, NS_IE_CAUSE)) {
Harald Weltee4ecc8c2010-05-12 00:16:57 +0200490 LOGPC(DNS, LOGL_INFO, "missing cause IE\n");
Harald Welte9ba50052010-03-14 15:45:01 +0800491 return -EINVAL;
492 }
493
494 cause = *TLVP_VAL(&tp, NS_IE_CAUSE);
Harald Weltee4ecc8c2010-05-12 00:16:57 +0200495 LOGPC(DNS, LOGL_INFO, "cause=%s\n", gprs_ns_cause_str(cause));
Harald Welte9ba50052010-03-14 15:45:01 +0800496
497 return 0;
498}
499
500/* Section 7.3 */
Harald Welte24a655f2010-04-30 19:54:29 +0200501static int gprs_ns_rx_reset(struct gprs_nsvc *nsvc, struct msgb *msg)
Harald Welte9ba50052010-03-14 15:45:01 +0800502{
503 struct gprs_ns_hdr *nsh = (struct gprs_ns_hdr *) msg->l2h;
Harald Welte9ba50052010-03-14 15:45:01 +0800504 struct tlv_parsed tp;
Harald Welte8f9a3ee2010-05-02 11:26:34 +0200505 uint8_t *cause;
506 uint16_t *nsvci, *nsei;
Harald Welte9ba50052010-03-14 15:45:01 +0800507 int rc;
508
Harald Welte9ba50052010-03-14 15:45:01 +0800509 rc = tlv_parse(&tp, &ns_att_tlvdef, nsh->data, msgb_l2len(msg), 0, 0);
510
511 if (!TLVP_PRESENT(&tp, NS_IE_CAUSE) ||
512 !TLVP_PRESENT(&tp, NS_IE_VCI) ||
513 !TLVP_PRESENT(&tp, NS_IE_NSEI)) {
Harald Welteb8a6a832010-05-11 05:54:22 +0200514 LOGP(DNS, LOGL_ERROR, "NS RESET Missing mandatory IE\n");
Harald Weltec1402a62010-05-12 11:48:44 +0200515 gprs_ns_tx_status(nsvc, NS_CAUSE_MISSING_ESSENT_IE, 0, msg);
Harald Welte9ba50052010-03-14 15:45:01 +0800516 return -EINVAL;
517 }
518
Harald Welte8f9a3ee2010-05-02 11:26:34 +0200519 cause = (uint8_t *) TLVP_VAL(&tp, NS_IE_CAUSE);
520 nsvci = (uint16_t *) TLVP_VAL(&tp, NS_IE_VCI);
521 nsei = (uint16_t *) TLVP_VAL(&tp, NS_IE_NSEI);
Harald Welte9ba50052010-03-14 15:45:01 +0800522
Harald Weltee4ecc8c2010-05-12 00:16:57 +0200523 LOGP(DNS, LOGL_INFO, "NSEI=%u Rx NS RESET (NSVCI=%u, cause=%s)\n",
Harald Weltebbc9fac2010-05-03 18:54:12 +0200524 nsvc->nsvci, nsvc->nsei, gprs_ns_cause_str(*cause));
525
Harald Weltec1402a62010-05-12 11:48:44 +0200526 /* Mark NS-VC as blocked and alive */
Harald Weltec5478482010-03-18 00:01:43 +0800527 nsvc->state = NSE_S_BLOCKED | NSE_S_ALIVE;
Harald Weltee8b9ca22010-05-11 18:18:31 +0200528
Harald Weltec5478482010-03-18 00:01:43 +0800529 nsvc->nsei = ntohs(*nsei);
530 nsvc->nsvci = ntohs(*nsvci);
Harald Welte9ba50052010-03-14 15:45:01 +0800531
Harald Welte9ba50052010-03-14 15:45:01 +0800532 /* start the test procedure */
Harald Welte69a4cf22010-05-03 20:55:10 +0200533 nsvc_start_timer(nsvc, NSVC_TIMER_TNS_ALIVE);
Harald Welte9ba50052010-03-14 15:45:01 +0800534
Harald Welte834f26d2010-05-11 06:20:54 +0200535 /* inform interested parties about the fact that this NSVC
536 * has received RESET */
Harald Welte2fc725d2010-05-11 10:15:26 +0200537 ns_dispatch_signal(nsvc, S_NS_RESET, *cause);
Harald Welte834f26d2010-05-11 06:20:54 +0200538
Harald Weltec5478482010-03-18 00:01:43 +0800539 return gprs_ns_tx_reset_ack(nsvc);
Harald Welte9ba50052010-03-14 15:45:01 +0800540}
541
Harald Welte834f26d2010-05-11 06:20:54 +0200542static int gprs_ns_rx_block(struct gprs_nsvc *nsvc, struct msgb *msg)
543{
544 struct gprs_ns_hdr *nsh = (struct gprs_ns_hdr *) msg->l2h;
545 struct tlv_parsed tp;
546 uint8_t *cause;
547 int rc;
548
Harald Weltee4ecc8c2010-05-12 00:16:57 +0200549 LOGP(DNS, LOGL_INFO, "NSEI=%u Rx NS BLOCK\n", nsvc->nsei);
Harald Welte834f26d2010-05-11 06:20:54 +0200550
551 nsvc->state |= NSE_S_BLOCKED;
552
553 rc = tlv_parse(&tp, &ns_att_tlvdef, nsh->data, msgb_l2len(msg), 0, 0);
554
555 if (!TLVP_PRESENT(&tp, NS_IE_CAUSE) ||
556 !TLVP_PRESENT(&tp, NS_IE_VCI)) {
Harald Welte834f26d2010-05-11 06:20:54 +0200557 LOGP(DNS, LOGL_ERROR, "NS RESET Missing mandatory IE\n");
Harald Weltec1402a62010-05-12 11:48:44 +0200558 gprs_ns_tx_status(nsvc, NS_CAUSE_MISSING_ESSENT_IE, 0, msg);
Harald Welte834f26d2010-05-11 06:20:54 +0200559 return -EINVAL;
560 }
561
562 cause = (uint8_t *) TLVP_VAL(&tp, NS_IE_CAUSE);
563 //nsvci = (uint16_t *) TLVP_VAL(&tp, NS_IE_VCI);
564
Harald Welte2fc725d2010-05-11 10:15:26 +0200565 ns_dispatch_signal(nsvc, S_NS_BLOCK, *cause);
Harald Welte834f26d2010-05-11 06:20:54 +0200566
567 return gprs_ns_tx_simple(nsvc, NS_PDUT_BLOCK_ACK);
568}
569
Harald Welte9ba50052010-03-14 15:45:01 +0800570/* main entry point, here incoming NS frames enter */
Harald Weltef030b212010-04-26 19:18:54 +0200571int gprs_ns_rcvmsg(struct gprs_ns_inst *nsi, struct msgb *msg,
572 struct sockaddr_in *saddr)
Harald Welte9ba50052010-03-14 15:45:01 +0800573{
574 struct gprs_ns_hdr *nsh = (struct gprs_ns_hdr *) msg->l2h;
Harald Weltef030b212010-04-26 19:18:54 +0200575 struct gprs_nsvc *nsvc;
Harald Welte9ba50052010-03-14 15:45:01 +0800576 int rc = 0;
577
Harald Weltef030b212010-04-26 19:18:54 +0200578 /* look up the NSVC based on source address */
579 nsvc = nsvc_by_rem_addr(nsi, saddr);
580 if (!nsvc) {
Harald Welte9a392932010-05-11 18:30:37 +0200581 struct tlv_parsed tp;
582 uint16_t nsei;
Harald Weltef030b212010-04-26 19:18:54 +0200583 /* Only the RESET procedure creates a new NSVC */
Harald Weltebbc9fac2010-05-03 18:54:12 +0200584 if (nsh->pdu_type != NS_PDUT_RESET) {
Harald Welte803647e2010-05-12 13:51:08 +0000585 struct gprs_nsvc fake_nsvc;
Harald Welteb8a6a832010-05-11 05:54:22 +0200586 LOGP(DNS, LOGL_INFO, "Ignoring NS PDU type 0x%0x "
Harald Weltebba902d2010-05-11 18:38:36 +0200587 "from %s:%u for non-existing NS-VC\n",
588 nsh->pdu_type, inet_ntoa(saddr->sin_addr),
589 ntohs(saddr->sin_port));
Harald Welte803647e2010-05-12 13:51:08 +0000590 /* Since we have no NSVC, we have to create a fake */
591 fake_nsvc.nsvci = fake_nsvc.nsei = 0;
592 fake_nsvc.nsi = nsi;
593 fake_nsvc.ip.bts_addr = *saddr;
594 fake_nsvc.state = NSE_S_ALIVE;
595#if 0
596 return gprs_ns_tx_status(&fake_nsvc,
597 NS_CAUSE_PDU_INCOMP_PSTATE, 0,
598 msg);
599#else
600 /* BS+ Gb implementation ignores STATUS, so we try
601 * our luck with a RESET incompatible with the spec */
602 return gprs_ns_tx_simple(&fake_nsvc, NS_PDUT_RESET);
603#endif
Harald Weltebbc9fac2010-05-03 18:54:12 +0200604 }
Harald Welte9a392932010-05-11 18:30:37 +0200605 rc = tlv_parse(&tp, &ns_att_tlvdef, nsh->data,
606 msgb_l2len(msg), 0, 0);
607 if (!TLVP_PRESENT(&tp, NS_IE_CAUSE) ||
608 !TLVP_PRESENT(&tp, NS_IE_VCI) ||
609 !TLVP_PRESENT(&tp, NS_IE_NSEI)) {
Harald Welte9a392932010-05-11 18:30:37 +0200610 LOGP(DNS, LOGL_ERROR, "NS RESET Missing mandatory IE\n");
Harald Weltec1402a62010-05-12 11:48:44 +0200611 gprs_ns_tx_status(nsvc, NS_CAUSE_MISSING_ESSENT_IE, 0,
612 msg);
Harald Welte9a392932010-05-11 18:30:37 +0200613 return -EINVAL;
614 }
615 nsei = ntohs(*(uint16_t *)TLVP_VAL(&tp, NS_IE_NSEI));
616 /* Check if we already know this NSEI, the remote end might
617 * simply have changed addresses, or it is a SGSN */
618 nsvc = nsvc_by_nsei(nsi, nsei);
619 if (!nsvc) {
620 LOGP(DNS, LOGL_INFO, "Creating NS-VC for BSS at %s:%u\n",
621 inet_ntoa(saddr->sin_addr), ntohs(saddr->sin_port));
622 nsvc = nsvc_create(nsi, 0xffff);
Harald Welte9a392932010-05-11 18:30:37 +0200623 }
Harald Welte2b7d4652010-05-11 18:40:45 +0200624 /* Update the remote peer IP address/port */
625 nsvc->ip.bts_addr = *saddr;
Harald Weltebbc9fac2010-05-03 18:54:12 +0200626 } else
627 msgb_nsei(msg) = nsvc->nsei;
Harald Weltec5478482010-03-18 00:01:43 +0800628
Harald Welte9ba50052010-03-14 15:45:01 +0800629 switch (nsh->pdu_type) {
630 case NS_PDUT_ALIVE:
631 /* remote end inquires whether we're still alive,
632 * we need to respond with ALIVE_ACK */
Harald Welteb983c312010-05-12 12:11:45 +0000633 rc = gprs_ns_tx_alive_ack(nsvc);
Harald Welte9ba50052010-03-14 15:45:01 +0800634 break;
635 case NS_PDUT_ALIVE_ACK:
636 /* stop Tns-alive */
Harald Welte80405452010-05-03 20:16:13 +0200637 bsc_del_timer(&nsvc->timer);
Harald Welte9ba50052010-03-14 15:45:01 +0800638 /* start Tns-test */
Harald Welte69a4cf22010-05-03 20:55:10 +0200639 nsvc_start_timer(nsvc, NSVC_TIMER_TNS_TEST);
Harald Welte7fb7e612010-05-03 21:11:22 +0200640 if (nsvc->remote_end_is_sgsn) {
641 /* FIXME: this should be one level higher */
642 if (nsvc->state & NSE_S_BLOCKED)
Harald Weltec1402a62010-05-12 11:48:44 +0200643 rc = gprs_ns_tx_unblock(nsvc);
Harald Welte7fb7e612010-05-03 21:11:22 +0200644 }
Harald Welte9ba50052010-03-14 15:45:01 +0800645 break;
646 case NS_PDUT_UNITDATA:
647 /* actual user data */
Harald Welte24a655f2010-04-30 19:54:29 +0200648 rc = gprs_ns_rx_unitdata(nsvc, msg);
Harald Welte9ba50052010-03-14 15:45:01 +0800649 break;
650 case NS_PDUT_STATUS:
Harald Welte24a655f2010-04-30 19:54:29 +0200651 rc = gprs_ns_rx_status(nsvc, msg);
Harald Welte9ba50052010-03-14 15:45:01 +0800652 break;
653 case NS_PDUT_RESET:
Harald Welte24a655f2010-04-30 19:54:29 +0200654 rc = gprs_ns_rx_reset(nsvc, msg);
Harald Welte9ba50052010-03-14 15:45:01 +0800655 break;
656 case NS_PDUT_RESET_ACK:
Harald Weltee4ecc8c2010-05-12 00:16:57 +0200657 LOGP(DNS, LOGL_INFO, "NSEI=%u Rx NS RESET ACK\n", nsvc->nsei);
Harald Weltec1402a62010-05-12 11:48:44 +0200658 /* mark NS-VC as blocked + active */
659 nsvc->state = NSE_S_BLOCKED | NSE_S_ALIVE;
Harald Weltef030b212010-04-26 19:18:54 +0200660 nsvc->remote_state = NSE_S_BLOCKED | NSE_S_ALIVE;
Harald Welte69a4cf22010-05-03 20:55:10 +0200661 if (nsvc->remote_end_is_sgsn) {
662 /* stop RESET timer */
663 bsc_del_timer(&nsvc->timer);
Harald Weltec1402a62010-05-12 11:48:44 +0200664 /* Initiate TEST proc.: Send ALIVE and start timer */
Harald Welte570fb832010-05-03 21:05:24 +0200665 rc = gprs_ns_tx_simple(nsvc, NS_PDUT_ALIVE);
666 nsvc_start_timer(nsvc, NSVC_TIMER_TNS_ALIVE);
Harald Welte69a4cf22010-05-03 20:55:10 +0200667 }
Harald Welte9ba50052010-03-14 15:45:01 +0800668 break;
669 case NS_PDUT_UNBLOCK:
670 /* Section 7.2: unblocking procedure */
Harald Weltee4ecc8c2010-05-12 00:16:57 +0200671 LOGP(DNS, LOGL_INFO, "NSEI=%u Rx NS UNBLOCK\n", nsvc->nsei);
Harald Welte9ba50052010-03-14 15:45:01 +0800672 nsvc->state &= ~NSE_S_BLOCKED;
Harald Welte834f26d2010-05-11 06:20:54 +0200673 ns_dispatch_signal(nsvc, S_NS_UNBLOCK, 0);
Harald Weltec5478482010-03-18 00:01:43 +0800674 rc = gprs_ns_tx_simple(nsvc, NS_PDUT_UNBLOCK_ACK);
Harald Welte9ba50052010-03-14 15:45:01 +0800675 break;
676 case NS_PDUT_UNBLOCK_ACK:
Harald Weltee4ecc8c2010-05-12 00:16:57 +0200677 LOGP(DNS, LOGL_INFO, "NSEI=%u Rx NS UNBLOCK ACK\n", nsvc->nsei);
Harald Weltec1402a62010-05-12 11:48:44 +0200678 /* mark NS-VC as unblocked + active */
679 nsvc->state = NSE_S_ALIVE;
Harald Weltef030b212010-04-26 19:18:54 +0200680 nsvc->remote_state = NSE_S_ALIVE;
Harald Welte9ba50052010-03-14 15:45:01 +0800681 break;
682 case NS_PDUT_BLOCK:
Harald Welte834f26d2010-05-11 06:20:54 +0200683 rc = gprs_ns_rx_block(nsvc, msg);
Harald Welte9ba50052010-03-14 15:45:01 +0800684 break;
685 case NS_PDUT_BLOCK_ACK:
Harald Weltee4ecc8c2010-05-12 00:16:57 +0200686 LOGP(DNS, LOGL_INFO, "NSEI=%u Rx NS BLOCK ACK\n", nsvc->nsei);
Harald Weltef030b212010-04-26 19:18:54 +0200687 /* mark remote NS-VC as blocked + active */
688 nsvc->remote_state = NSE_S_BLOCKED | NSE_S_ALIVE;
Harald Welte9ba50052010-03-14 15:45:01 +0800689 break;
690 default:
Harald Weltee4ecc8c2010-05-12 00:16:57 +0200691 LOGP(DNS, LOGL_NOTICE, "NSEI=%u Rx Unknown NS PDU type 0x%02x\n",
Harald Weltebbc9fac2010-05-03 18:54:12 +0200692 nsvc->nsei, nsh->pdu_type);
Harald Welte9ba50052010-03-14 15:45:01 +0800693 rc = -EINVAL;
694 break;
695 }
696 return rc;
697}
698
Harald Weltef030b212010-04-26 19:18:54 +0200699struct gprs_ns_inst *gprs_ns_instantiate(gprs_ns_cb_t *cb)
700{
701 struct gprs_ns_inst *nsi = talloc_zero(tall_bsc_ctx, struct gprs_ns_inst);
702
703 nsi->cb = cb;
704 INIT_LLIST_HEAD(&nsi->gprs_nsvcs);
705
Harald Welte3771d092010-04-30 20:26:32 +0200706 return nsi;
Harald Weltef030b212010-04-26 19:18:54 +0200707}
708
709void gprs_ns_destroy(struct gprs_ns_inst *nsi)
710{
711 /* FIXME: clear all timers */
712
713 /* recursively free the NSI and all its NSVCs */
714 talloc_free(nsi);
715}
716
717
718/* NS-over-IP code, according to 3GPP TS 48.016 Chapter 6.2
719 * We don't support Size Procedure, Configuration Procedure, ChangeWeight Procedure */
720
721/* Read a single NS-over-IP message */
722static struct msgb *read_nsip_msg(struct bsc_fd *bfd, int *error,
723 struct sockaddr_in *saddr)
724{
725 struct msgb *msg = msgb_alloc(NS_ALLOC_SIZE, "Abis/IP/GPRS-NS");
726 int ret = 0;
727 socklen_t saddr_len = sizeof(*saddr);
728
729 if (!msg) {
730 *error = -ENOMEM;
731 return NULL;
732 }
733
734 ret = recvfrom(bfd->fd, msg->data, NS_ALLOC_SIZE, 0,
735 (struct sockaddr *)saddr, &saddr_len);
736 if (ret < 0) {
Harald Welteb8a6a832010-05-11 05:54:22 +0200737 LOGP(DNS, LOGL_ERROR, "recv error %s during NSIP recv\n",
Harald Weltebbc9fac2010-05-03 18:54:12 +0200738 strerror(errno));
Harald Weltef030b212010-04-26 19:18:54 +0200739 msgb_free(msg);
740 *error = ret;
741 return NULL;
742 } else if (ret == 0) {
743 msgb_free(msg);
744 *error = ret;
745 return NULL;
746 }
747
748 msg->l2h = msg->data;
749 msgb_put(msg, ret);
750
751 return msg;
752}
753
754static int handle_nsip_read(struct bsc_fd *bfd)
755{
756 int error;
757 struct sockaddr_in saddr;
758 struct gprs_ns_inst *nsi = bfd->data;
759 struct msgb *msg = read_nsip_msg(bfd, &error, &saddr);
760
761 if (!msg)
762 return error;
763
764 return gprs_ns_rcvmsg(nsi, msg, &saddr);
765}
766
767static int handle_nsip_write(struct bsc_fd *bfd)
768{
769 /* FIXME: actually send the data here instead of nsip_sendmsg() */
770 return -EIO;
771}
772
Harald Welte24a655f2010-04-30 19:54:29 +0200773int nsip_sendmsg(struct gprs_nsvc *nsvc, struct msgb *msg)
Harald Weltef030b212010-04-26 19:18:54 +0200774{
775 int rc;
776 struct gprs_ns_inst *nsi = nsvc->nsi;
777 struct sockaddr_in *daddr = &nsvc->ip.bts_addr;
778
779 rc = sendto(nsi->nsip.fd.fd, msg->data, msg->len, 0,
780 (struct sockaddr *)daddr, sizeof(*daddr));
781
782 talloc_free(msg);
783
784 return rc;
785}
786
787/* UDP Port 23000 carries the LLC-in-BSSGP-in-NS protocol stack */
788static int nsip_fd_cb(struct bsc_fd *bfd, unsigned int what)
789{
790 int rc = 0;
791
792 if (what & BSC_FD_READ)
793 rc = handle_nsip_read(bfd);
794 if (what & BSC_FD_WRITE)
795 rc = handle_nsip_write(bfd);
796
797 return rc;
798}
799
Harald Welte8f9a3ee2010-05-02 11:26:34 +0200800extern int make_sock(struct bsc_fd *bfd, int proto, uint16_t port,
Harald Weltef030b212010-04-26 19:18:54 +0200801 int (*cb)(struct bsc_fd *fd, unsigned int what));
802
803/* Listen for incoming GPRS packets */
804int nsip_listen(struct gprs_ns_inst *nsi, uint16_t udp_port)
805{
806 int ret;
807
808 ret = make_sock(&nsi->nsip.fd, IPPROTO_UDP, udp_port, nsip_fd_cb);
809 if (ret < 0)
810 return ret;
811
812 nsi->ll = GPRS_NS_LL_UDP;
813 nsi->nsip.fd.data = nsi;
814
815 return ret;
816}
Harald Welte3771d092010-04-30 20:26:32 +0200817
818/* Establish a connection (from the BSS) to the SGSN */
819struct gprs_nsvc *nsip_connect(struct gprs_ns_inst *nsi,
Harald Welte1203de32010-05-01 11:28:43 +0200820 struct sockaddr_in *dest, uint16_t nsei,
821 uint16_t nsvci)
Harald Welte3771d092010-04-30 20:26:32 +0200822{
823 struct gprs_nsvc *nsvc;
824
825 nsvc = nsvc_by_rem_addr(nsi, dest);
Harald Welte38407ef2010-05-12 11:56:39 +0000826 if (!nsvc)
Harald Welte3771d092010-04-30 20:26:32 +0200827 nsvc = nsvc_create(nsi, nsvci);
Harald Welte38407ef2010-05-12 11:56:39 +0000828 nsvc->ip.bts_addr = *dest;
Harald Welte1203de32010-05-01 11:28:43 +0200829 nsvc->nsei = nsei;
830 nsvc->nsvci = nsvci;
Harald Welte3771d092010-04-30 20:26:32 +0200831 nsvc->remote_end_is_sgsn = 1;
832
833 /* Initiate a RESET procedure */
Harald Weltec1402a62010-05-12 11:48:44 +0200834 /* Mark NS-VC locally as blocked and dead */
835 nsvc->state = NSE_S_BLOCKED;
836 /* Send NS-RESET PDU */
Harald Welte570fb832010-05-03 21:05:24 +0200837 if (gprs_ns_tx_reset(nsvc, NS_CAUSE_OM_INTERVENTION) < 0) {
Harald Welteb8a6a832010-05-11 05:54:22 +0200838 LOGP(DNS, LOGL_ERROR, "NSEI=%u, error resetting NS-VC\n",
Harald Welte69a4cf22010-05-03 20:55:10 +0200839 nsei);
840 }
Harald Weltec1402a62010-05-12 11:48:44 +0200841 /* Start Tns-reset */
Harald Welte69a4cf22010-05-03 20:55:10 +0200842 nsvc_start_timer(nsvc, NSVC_TIMER_TNS_RESET);
Harald Welte3771d092010-04-30 20:26:32 +0200843
844 return nsvc;
845}