blob: e93bd43fbbf966f2d886248c97773970da581611 [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
297 LOGP(DNS, LOGL_INFO, "NSEI=%u Tx NS UNBLOCK (NSVCI=%u)\n",
298 nsvc->nsei, nsvc->nsvci);
299
Harald Welte834f26d2010-05-11 06:20:54 +0200300 return gprs_ns_tx_simple(nsvc, NS_PDUT_UNBLOCK);
301}
302
Harald Welte9ba50052010-03-14 15:45:01 +0800303#define NS_ALIVE_RETRIES 10 /* after 3 failed retransmit we declare BTS as dead */
304
Harald Welte69a4cf22010-05-03 20:55:10 +0200305static const uint8_t timer_mode_tout[_NSVC_TIMER_NR] = {
306 [NSVC_TIMER_TNS_RESET] = 60,
307 [NSVC_TIMER_TNS_ALIVE] = 3,
308 [NSVC_TIMER_TNS_TEST] = 30,
309};
310
311static void nsvc_start_timer(struct gprs_nsvc *nsvc, enum nsvc_timer_mode mode)
312{
313 nsvc->alive_retries = 0;
314
315 if (bsc_timer_pending(&nsvc->timer))
316 bsc_del_timer(&nsvc->timer);
317
318 nsvc->timer_mode = mode;
319 bsc_schedule_timer(&nsvc->timer, timer_mode_tout[mode], 0);
320}
321
Harald Welte80405452010-05-03 20:16:13 +0200322static void gprs_ns_timer_cb(void *data)
Harald Welte9ba50052010-03-14 15:45:01 +0800323{
324 struct gprs_nsvc *nsvc = data;
325
Harald Welte80405452010-05-03 20:16:13 +0200326 switch (nsvc->timer_mode) {
327 case NSVC_TIMER_TNS_ALIVE:
Harald Welte9ba50052010-03-14 15:45:01 +0800328 /* Tns-alive case: we expired without response ! */
329 nsvc->alive_retries++;
330 if (nsvc->alive_retries > NS_ALIVE_RETRIES) {
331 /* mark as dead and blocked */
332 nsvc->state = NSE_S_BLOCKED;
Harald Weltee4ecc8c2010-05-12 00:16:57 +0200333 LOGP(DNS, LOGL_NOTICE,
334 "NSEI=%u Tns-alive expired more then "
Harald Welte69a4cf22010-05-03 20:55:10 +0200335 "%u times, blocking NS-VC\n", nsvc->nsei,
336 NS_ALIVE_RETRIES);
Harald Weltee4ecc8c2010-05-12 00:16:57 +0200337 ns_dispatch_signal(nsvc, S_NS_BLOCK, NS_CAUSE_NSVC_BLOCKED);
Harald Welte9ba50052010-03-14 15:45:01 +0800338 return;
339 }
Harald Welte69a4cf22010-05-03 20:55:10 +0200340 nsvc_start_timer(nsvc, NSVC_TIMER_TNS_ALIVE);
Harald Welte80405452010-05-03 20:16:13 +0200341 break;
342 case NSVC_TIMER_TNS_TEST:
Harald Welte9ba50052010-03-14 15:45:01 +0800343 /* Tns-test case: send NS-ALIVE PDU */
Harald Weltec5478482010-03-18 00:01:43 +0800344 gprs_ns_tx_simple(nsvc, NS_PDUT_ALIVE);
Harald Welte9ba50052010-03-14 15:45:01 +0800345 /* start Tns-alive timer */
Harald Welte69a4cf22010-05-03 20:55:10 +0200346 nsvc_start_timer(nsvc, NSVC_TIMER_TNS_ALIVE);
347 break;
348 case NSVC_TIMER_TNS_RESET:
349 /* Chapter 7.3: Re-send the RESET */
Harald Welte570fb832010-05-03 21:05:24 +0200350 gprs_ns_tx_reset(nsvc, NS_CAUSE_OM_INTERVENTION);
Harald Weltec1402a62010-05-12 11:48:44 +0200351 /* Re-start Tns-reset timer */
Harald Welte69a4cf22010-05-03 20:55:10 +0200352 nsvc_start_timer(nsvc, NSVC_TIMER_TNS_RESET);
Harald Welte80405452010-05-03 20:16:13 +0200353 break;
Harald Welte2fc725d2010-05-11 10:15:26 +0200354 case _NSVC_TIMER_NR:
355 break;
Harald Welte9ba50052010-03-14 15:45:01 +0800356 }
Harald Welte9ba50052010-03-14 15:45:01 +0800357}
358
359/* Section 9.2.6 */
Harald Weltec5478482010-03-18 00:01:43 +0800360static int gprs_ns_tx_reset_ack(struct gprs_nsvc *nsvc)
Harald Welte9ba50052010-03-14 15:45:01 +0800361{
362 struct msgb *msg = msgb_alloc(NS_ALLOC_SIZE, "GPRS/NS");
363 struct gprs_ns_hdr *nsh;
Harald Welte8f9a3ee2010-05-02 11:26:34 +0200364 uint16_t nsvci, nsei;
Harald Welte9ba50052010-03-14 15:45:01 +0800365
366 if (!msg)
367 return -ENOMEM;
368
Harald Weltec5478482010-03-18 00:01:43 +0800369 nsvci = htons(nsvc->nsvci);
370 nsei = htons(nsvc->nsei);
Harald Welte9ba50052010-03-14 15:45:01 +0800371
372 nsh = (struct gprs_ns_hdr *) msgb_put(msg, sizeof(*nsh));
373
374 nsh->pdu_type = NS_PDUT_RESET_ACK;
375
Harald Weltee4ecc8c2010-05-12 00:16:57 +0200376 LOGP(DNS, LOGL_INFO, "NSEI=%u Tx NS RESET ACK (NSVCI=%u)\n",
Harald Weltebbc9fac2010-05-03 18:54:12 +0200377 nsvc->nsei, nsvc->nsvci);
Harald Weltec5478482010-03-18 00:01:43 +0800378
Harald Welte8f9a3ee2010-05-02 11:26:34 +0200379 msgb_tvlv_put(msg, NS_IE_VCI, 2, (uint8_t *)&nsvci);
380 msgb_tvlv_put(msg, NS_IE_NSEI, 2, (uint8_t *)&nsei);
Harald Welte9ba50052010-03-14 15:45:01 +0800381
Harald Welte24a655f2010-04-30 19:54:29 +0200382 return gprs_ns_tx(nsvc, msg);
Harald Welte9ba50052010-03-14 15:45:01 +0800383}
384
Harald Welte24a655f2010-04-30 19:54:29 +0200385/* Section 9.2.10: transmit side / NS-UNITDATA-REQUEST primitive */
386int gprs_ns_sendmsg(struct gprs_ns_inst *nsi, struct msgb *msg)
Harald Welte9ba50052010-03-14 15:45:01 +0800387{
Harald Welte24a655f2010-04-30 19:54:29 +0200388 struct gprs_nsvc *nsvc;
Harald Welte9ba50052010-03-14 15:45:01 +0800389 struct gprs_ns_hdr *nsh;
Harald Welte8f9a3ee2010-05-02 11:26:34 +0200390 uint16_t bvci = msgb_bvci(msg);
Harald Welte24a655f2010-04-30 19:54:29 +0200391
392 nsvc = nsvc_by_nsei(nsi, msgb_nsei(msg));
393 if (!nsvc) {
Harald Welteb8a6a832010-05-11 05:54:22 +0200394 LOGP(DNS, LOGL_ERROR, "Unable to resolve NSEI %u "
Harald Weltebbc9fac2010-05-03 18:54:12 +0200395 "to NS-VC!\n", msgb_nsei(msg));
Harald Welte24a655f2010-04-30 19:54:29 +0200396 return -EINVAL;
397 }
Harald Welte9ba50052010-03-14 15:45:01 +0800398
Harald Welte69a4cf22010-05-03 20:55:10 +0200399 if (!(nsvc->state & NSE_S_ALIVE)) {
Harald Welteb8a6a832010-05-11 05:54:22 +0200400 LOGP(DNS, LOGL_ERROR, "NSEI=%u is not alive, cannot send\n",
Harald Welte69a4cf22010-05-03 20:55:10 +0200401 nsvc->nsei);
402 return -EBUSY;
403 }
404 if (nsvc->state & NSE_S_BLOCKED) {
Harald Welteb8a6a832010-05-11 05:54:22 +0200405 LOGP(DNS, LOGL_ERROR, "NSEI=%u is blocked, cannot send\n",
Harald Welte69a4cf22010-05-03 20:55:10 +0200406 nsvc->nsei);
407 return -EBUSY;
408 }
409
Harald Welte9ba50052010-03-14 15:45:01 +0800410 nsh = (struct gprs_ns_hdr *) msgb_push(msg, sizeof(*nsh) + 3);
411 if (!nsh) {
Harald Welteb8a6a832010-05-11 05:54:22 +0200412 LOGP(DNS, LOGL_ERROR, "Not enough headroom for NS header\n");
Harald Welte9ba50052010-03-14 15:45:01 +0800413 return -EIO;
414 }
415
416 nsh->pdu_type = NS_PDUT_UNITDATA;
417 /* spare octet in data[0] */
418 nsh->data[1] = bvci >> 8;
419 nsh->data[2] = bvci & 0xff;
420
Harald Welte24a655f2010-04-30 19:54:29 +0200421 return gprs_ns_tx(nsvc, msg);
Harald Welte9ba50052010-03-14 15:45:01 +0800422}
423
424/* Section 9.2.10: receive side */
Harald Welte24a655f2010-04-30 19:54:29 +0200425static int gprs_ns_rx_unitdata(struct gprs_nsvc *nsvc, struct msgb *msg)
Harald Welte9ba50052010-03-14 15:45:01 +0800426{
427 struct gprs_ns_hdr *nsh = (struct gprs_ns_hdr *)msg->l2h;
Harald Welte8f9a3ee2010-05-02 11:26:34 +0200428 uint16_t bvci;
Harald Welte9ba50052010-03-14 15:45:01 +0800429
Harald Weltec1402a62010-05-12 11:48:44 +0200430 if (nsvc->state & NSE_S_BLOCKED)
431 return gprs_ns_tx_status(nsvc, NS_CAUSE_NSVC_BLOCKED,
432 0, msg);
433
Harald Welte9ba50052010-03-14 15:45:01 +0800434 /* spare octet in data[0] */
435 bvci = nsh->data[1] << 8 | nsh->data[2];
Harald Welteec19c102010-05-02 09:50:42 +0200436 msgb_bssgph(msg) = &nsh->data[3];
Harald Welte30bc19a2010-05-02 11:19:37 +0200437 msgb_bvci(msg) = bvci;
Harald Welte9ba50052010-03-14 15:45:01 +0800438
439 /* call upper layer (BSSGP) */
Harald Weltef030b212010-04-26 19:18:54 +0200440 return nsvc->nsi->cb(GPRS_NS_EVT_UNIT_DATA, nsvc, msg, bvci);
Harald Welte9ba50052010-03-14 15:45:01 +0800441}
442
443/* Section 9.2.7 */
Harald Welte24a655f2010-04-30 19:54:29 +0200444static int gprs_ns_rx_status(struct gprs_nsvc *nsvc, struct msgb *msg)
Harald Welte9ba50052010-03-14 15:45:01 +0800445{
Harald Weltef030b212010-04-26 19:18:54 +0200446 struct gprs_ns_hdr *nsh = (struct gprs_ns_hdr *) msg->l2h;
Harald Welte9ba50052010-03-14 15:45:01 +0800447 struct tlv_parsed tp;
Harald Welte8f9a3ee2010-05-02 11:26:34 +0200448 uint8_t cause;
Harald Welte9ba50052010-03-14 15:45:01 +0800449 int rc;
450
Harald Weltee4ecc8c2010-05-12 00:16:57 +0200451 LOGP(DNS, LOGL_INFO, "NSEI=%u NS STATUS ", nsvc->nsei);
Harald Welte9ba50052010-03-14 15:45:01 +0800452
453 rc = tlv_parse(&tp, &ns_att_tlvdef, nsh->data, msgb_l2len(msg), 0, 0);
454
455 if (!TLVP_PRESENT(&tp, NS_IE_CAUSE)) {
Harald Weltee4ecc8c2010-05-12 00:16:57 +0200456 LOGPC(DNS, LOGL_INFO, "missing cause IE\n");
Harald Welte9ba50052010-03-14 15:45:01 +0800457 return -EINVAL;
458 }
459
460 cause = *TLVP_VAL(&tp, NS_IE_CAUSE);
Harald Weltee4ecc8c2010-05-12 00:16:57 +0200461 LOGPC(DNS, LOGL_INFO, "cause=%s\n", gprs_ns_cause_str(cause));
Harald Welte9ba50052010-03-14 15:45:01 +0800462
463 return 0;
464}
465
466/* Section 7.3 */
Harald Welte24a655f2010-04-30 19:54:29 +0200467static int gprs_ns_rx_reset(struct gprs_nsvc *nsvc, struct msgb *msg)
Harald Welte9ba50052010-03-14 15:45:01 +0800468{
469 struct gprs_ns_hdr *nsh = (struct gprs_ns_hdr *) msg->l2h;
Harald Welte9ba50052010-03-14 15:45:01 +0800470 struct tlv_parsed tp;
Harald Welte8f9a3ee2010-05-02 11:26:34 +0200471 uint8_t *cause;
472 uint16_t *nsvci, *nsei;
Harald Welte9ba50052010-03-14 15:45:01 +0800473 int rc;
474
Harald Welte9ba50052010-03-14 15:45:01 +0800475 rc = tlv_parse(&tp, &ns_att_tlvdef, nsh->data, msgb_l2len(msg), 0, 0);
476
477 if (!TLVP_PRESENT(&tp, NS_IE_CAUSE) ||
478 !TLVP_PRESENT(&tp, NS_IE_VCI) ||
479 !TLVP_PRESENT(&tp, NS_IE_NSEI)) {
Harald Welteb8a6a832010-05-11 05:54:22 +0200480 LOGP(DNS, LOGL_ERROR, "NS RESET Missing mandatory IE\n");
Harald Weltec1402a62010-05-12 11:48:44 +0200481 gprs_ns_tx_status(nsvc, NS_CAUSE_MISSING_ESSENT_IE, 0, msg);
Harald Welte9ba50052010-03-14 15:45:01 +0800482 return -EINVAL;
483 }
484
Harald Welte8f9a3ee2010-05-02 11:26:34 +0200485 cause = (uint8_t *) TLVP_VAL(&tp, NS_IE_CAUSE);
486 nsvci = (uint16_t *) TLVP_VAL(&tp, NS_IE_VCI);
487 nsei = (uint16_t *) TLVP_VAL(&tp, NS_IE_NSEI);
Harald Welte9ba50052010-03-14 15:45:01 +0800488
Harald Weltee4ecc8c2010-05-12 00:16:57 +0200489 LOGP(DNS, LOGL_INFO, "NSEI=%u Rx NS RESET (NSVCI=%u, cause=%s)\n",
Harald Weltebbc9fac2010-05-03 18:54:12 +0200490 nsvc->nsvci, nsvc->nsei, gprs_ns_cause_str(*cause));
491
Harald Weltec1402a62010-05-12 11:48:44 +0200492 /* Mark NS-VC as blocked and alive */
Harald Weltec5478482010-03-18 00:01:43 +0800493 nsvc->state = NSE_S_BLOCKED | NSE_S_ALIVE;
Harald Weltee8b9ca22010-05-11 18:18:31 +0200494
Harald Weltec5478482010-03-18 00:01:43 +0800495 nsvc->nsei = ntohs(*nsei);
496 nsvc->nsvci = ntohs(*nsvci);
Harald Welte9ba50052010-03-14 15:45:01 +0800497
Harald Welte9ba50052010-03-14 15:45:01 +0800498 /* start the test procedure */
Harald Welte69a4cf22010-05-03 20:55:10 +0200499 nsvc_start_timer(nsvc, NSVC_TIMER_TNS_ALIVE);
Harald Welte9ba50052010-03-14 15:45:01 +0800500
Harald Welte834f26d2010-05-11 06:20:54 +0200501 /* inform interested parties about the fact that this NSVC
502 * has received RESET */
Harald Welte2fc725d2010-05-11 10:15:26 +0200503 ns_dispatch_signal(nsvc, S_NS_RESET, *cause);
Harald Welte834f26d2010-05-11 06:20:54 +0200504
Harald Weltec5478482010-03-18 00:01:43 +0800505 return gprs_ns_tx_reset_ack(nsvc);
Harald Welte9ba50052010-03-14 15:45:01 +0800506}
507
Harald Welte834f26d2010-05-11 06:20:54 +0200508static int gprs_ns_rx_block(struct gprs_nsvc *nsvc, struct msgb *msg)
509{
510 struct gprs_ns_hdr *nsh = (struct gprs_ns_hdr *) msg->l2h;
511 struct tlv_parsed tp;
512 uint8_t *cause;
513 int rc;
514
Harald Weltee4ecc8c2010-05-12 00:16:57 +0200515 LOGP(DNS, LOGL_INFO, "NSEI=%u Rx NS BLOCK\n", nsvc->nsei);
Harald Welte834f26d2010-05-11 06:20:54 +0200516
517 nsvc->state |= NSE_S_BLOCKED;
518
519 rc = tlv_parse(&tp, &ns_att_tlvdef, nsh->data, msgb_l2len(msg), 0, 0);
520
521 if (!TLVP_PRESENT(&tp, NS_IE_CAUSE) ||
522 !TLVP_PRESENT(&tp, NS_IE_VCI)) {
Harald Welte834f26d2010-05-11 06:20:54 +0200523 LOGP(DNS, LOGL_ERROR, "NS RESET Missing mandatory IE\n");
Harald Weltec1402a62010-05-12 11:48:44 +0200524 gprs_ns_tx_status(nsvc, NS_CAUSE_MISSING_ESSENT_IE, 0, msg);
Harald Welte834f26d2010-05-11 06:20:54 +0200525 return -EINVAL;
526 }
527
528 cause = (uint8_t *) TLVP_VAL(&tp, NS_IE_CAUSE);
529 //nsvci = (uint16_t *) TLVP_VAL(&tp, NS_IE_VCI);
530
Harald Welte2fc725d2010-05-11 10:15:26 +0200531 ns_dispatch_signal(nsvc, S_NS_BLOCK, *cause);
Harald Welte834f26d2010-05-11 06:20:54 +0200532
533 return gprs_ns_tx_simple(nsvc, NS_PDUT_BLOCK_ACK);
534}
535
Harald Welte9ba50052010-03-14 15:45:01 +0800536/* main entry point, here incoming NS frames enter */
Harald Weltef030b212010-04-26 19:18:54 +0200537int gprs_ns_rcvmsg(struct gprs_ns_inst *nsi, struct msgb *msg,
538 struct sockaddr_in *saddr)
Harald Welte9ba50052010-03-14 15:45:01 +0800539{
540 struct gprs_ns_hdr *nsh = (struct gprs_ns_hdr *) msg->l2h;
Harald Weltef030b212010-04-26 19:18:54 +0200541 struct gprs_nsvc *nsvc;
Harald Welte9ba50052010-03-14 15:45:01 +0800542 int rc = 0;
543
Harald Weltef030b212010-04-26 19:18:54 +0200544 /* look up the NSVC based on source address */
545 nsvc = nsvc_by_rem_addr(nsi, saddr);
546 if (!nsvc) {
Harald Welte9a392932010-05-11 18:30:37 +0200547 struct tlv_parsed tp;
548 uint16_t nsei;
Harald Weltef030b212010-04-26 19:18:54 +0200549 /* Only the RESET procedure creates a new NSVC */
Harald Weltebbc9fac2010-05-03 18:54:12 +0200550 if (nsh->pdu_type != NS_PDUT_RESET) {
Harald Welteb8a6a832010-05-11 05:54:22 +0200551 LOGP(DNS, LOGL_INFO, "Ignoring NS PDU type 0x%0x "
Harald Weltebba902d2010-05-11 18:38:36 +0200552 "from %s:%u for non-existing NS-VC\n",
553 nsh->pdu_type, inet_ntoa(saddr->sin_addr),
554 ntohs(saddr->sin_port));
Harald Weltec1402a62010-05-12 11:48:44 +0200555 /* FIXME: send STATUS (but we have no NSVC!) */
Harald Welte570fb832010-05-03 21:05:24 +0200556 //gprs_ns_tx_reset(nsvc, NS_CAUSE_NSVC_UNKNOWN);
Harald Weltef030b212010-04-26 19:18:54 +0200557 return -EIO;
Harald Weltebbc9fac2010-05-03 18:54:12 +0200558 }
Harald Welte9a392932010-05-11 18:30:37 +0200559 rc = tlv_parse(&tp, &ns_att_tlvdef, nsh->data,
560 msgb_l2len(msg), 0, 0);
561 if (!TLVP_PRESENT(&tp, NS_IE_CAUSE) ||
562 !TLVP_PRESENT(&tp, NS_IE_VCI) ||
563 !TLVP_PRESENT(&tp, NS_IE_NSEI)) {
Harald Welte9a392932010-05-11 18:30:37 +0200564 LOGP(DNS, LOGL_ERROR, "NS RESET Missing mandatory IE\n");
Harald Weltec1402a62010-05-12 11:48:44 +0200565 gprs_ns_tx_status(nsvc, NS_CAUSE_MISSING_ESSENT_IE, 0,
566 msg);
Harald Welte9a392932010-05-11 18:30:37 +0200567 return -EINVAL;
568 }
569 nsei = ntohs(*(uint16_t *)TLVP_VAL(&tp, NS_IE_NSEI));
570 /* Check if we already know this NSEI, the remote end might
571 * simply have changed addresses, or it is a SGSN */
572 nsvc = nsvc_by_nsei(nsi, nsei);
573 if (!nsvc) {
574 LOGP(DNS, LOGL_INFO, "Creating NS-VC for BSS at %s:%u\n",
575 inet_ntoa(saddr->sin_addr), ntohs(saddr->sin_port));
576 nsvc = nsvc_create(nsi, 0xffff);
Harald Welte9a392932010-05-11 18:30:37 +0200577 }
Harald Welte2b7d4652010-05-11 18:40:45 +0200578 /* Update the remote peer IP address/port */
579 nsvc->ip.bts_addr = *saddr;
Harald Weltebbc9fac2010-05-03 18:54:12 +0200580 } else
581 msgb_nsei(msg) = nsvc->nsei;
Harald Weltec5478482010-03-18 00:01:43 +0800582
Harald Welte9ba50052010-03-14 15:45:01 +0800583 switch (nsh->pdu_type) {
584 case NS_PDUT_ALIVE:
585 /* remote end inquires whether we're still alive,
586 * we need to respond with ALIVE_ACK */
Harald Weltec5478482010-03-18 00:01:43 +0800587 rc = gprs_ns_tx_simple(nsvc, NS_PDUT_ALIVE_ACK);
Harald Welte9ba50052010-03-14 15:45:01 +0800588 break;
589 case NS_PDUT_ALIVE_ACK:
590 /* stop Tns-alive */
Harald Welte80405452010-05-03 20:16:13 +0200591 bsc_del_timer(&nsvc->timer);
Harald Welte9ba50052010-03-14 15:45:01 +0800592 /* start Tns-test */
Harald Welte69a4cf22010-05-03 20:55:10 +0200593 nsvc_start_timer(nsvc, NSVC_TIMER_TNS_TEST);
Harald Welte7fb7e612010-05-03 21:11:22 +0200594 if (nsvc->remote_end_is_sgsn) {
595 /* FIXME: this should be one level higher */
596 if (nsvc->state & NSE_S_BLOCKED)
Harald Weltec1402a62010-05-12 11:48:44 +0200597 rc = gprs_ns_tx_unblock(nsvc);
Harald Welte7fb7e612010-05-03 21:11:22 +0200598 }
Harald Welte9ba50052010-03-14 15:45:01 +0800599 break;
600 case NS_PDUT_UNITDATA:
601 /* actual user data */
Harald Welte24a655f2010-04-30 19:54:29 +0200602 rc = gprs_ns_rx_unitdata(nsvc, msg);
Harald Welte9ba50052010-03-14 15:45:01 +0800603 break;
604 case NS_PDUT_STATUS:
Harald Welte24a655f2010-04-30 19:54:29 +0200605 rc = gprs_ns_rx_status(nsvc, msg);
Harald Welte9ba50052010-03-14 15:45:01 +0800606 break;
607 case NS_PDUT_RESET:
Harald Welte24a655f2010-04-30 19:54:29 +0200608 rc = gprs_ns_rx_reset(nsvc, msg);
Harald Welte9ba50052010-03-14 15:45:01 +0800609 break;
610 case NS_PDUT_RESET_ACK:
Harald Weltee4ecc8c2010-05-12 00:16:57 +0200611 LOGP(DNS, LOGL_INFO, "NSEI=%u Rx NS RESET ACK\n", nsvc->nsei);
Harald Weltec1402a62010-05-12 11:48:44 +0200612 /* mark NS-VC as blocked + active */
613 nsvc->state = NSE_S_BLOCKED | NSE_S_ALIVE;
Harald Weltef030b212010-04-26 19:18:54 +0200614 nsvc->remote_state = NSE_S_BLOCKED | NSE_S_ALIVE;
Harald Welte69a4cf22010-05-03 20:55:10 +0200615 if (nsvc->remote_end_is_sgsn) {
616 /* stop RESET timer */
617 bsc_del_timer(&nsvc->timer);
Harald Weltec1402a62010-05-12 11:48:44 +0200618 /* Initiate TEST proc.: Send ALIVE and start timer */
Harald Welte570fb832010-05-03 21:05:24 +0200619 rc = gprs_ns_tx_simple(nsvc, NS_PDUT_ALIVE);
620 nsvc_start_timer(nsvc, NSVC_TIMER_TNS_ALIVE);
Harald Welte69a4cf22010-05-03 20:55:10 +0200621 }
Harald Welte9ba50052010-03-14 15:45:01 +0800622 break;
623 case NS_PDUT_UNBLOCK:
624 /* Section 7.2: unblocking procedure */
Harald Weltee4ecc8c2010-05-12 00:16:57 +0200625 LOGP(DNS, LOGL_INFO, "NSEI=%u Rx NS UNBLOCK\n", nsvc->nsei);
Harald Welte9ba50052010-03-14 15:45:01 +0800626 nsvc->state &= ~NSE_S_BLOCKED;
Harald Welte834f26d2010-05-11 06:20:54 +0200627 ns_dispatch_signal(nsvc, S_NS_UNBLOCK, 0);
Harald Weltec5478482010-03-18 00:01:43 +0800628 rc = gprs_ns_tx_simple(nsvc, NS_PDUT_UNBLOCK_ACK);
Harald Welte9ba50052010-03-14 15:45:01 +0800629 break;
630 case NS_PDUT_UNBLOCK_ACK:
Harald Weltee4ecc8c2010-05-12 00:16:57 +0200631 LOGP(DNS, LOGL_INFO, "NSEI=%u Rx NS UNBLOCK ACK\n", nsvc->nsei);
Harald Weltec1402a62010-05-12 11:48:44 +0200632 /* mark NS-VC as unblocked + active */
633 nsvc->state = NSE_S_ALIVE;
Harald Weltef030b212010-04-26 19:18:54 +0200634 nsvc->remote_state = NSE_S_ALIVE;
Harald Welte9ba50052010-03-14 15:45:01 +0800635 break;
636 case NS_PDUT_BLOCK:
Harald Welte834f26d2010-05-11 06:20:54 +0200637 rc = gprs_ns_rx_block(nsvc, msg);
Harald Welte9ba50052010-03-14 15:45:01 +0800638 break;
639 case NS_PDUT_BLOCK_ACK:
Harald Weltee4ecc8c2010-05-12 00:16:57 +0200640 LOGP(DNS, LOGL_INFO, "NSEI=%u Rx NS BLOCK ACK\n", nsvc->nsei);
Harald Weltef030b212010-04-26 19:18:54 +0200641 /* mark remote NS-VC as blocked + active */
642 nsvc->remote_state = NSE_S_BLOCKED | NSE_S_ALIVE;
Harald Welte9ba50052010-03-14 15:45:01 +0800643 break;
644 default:
Harald Weltee4ecc8c2010-05-12 00:16:57 +0200645 LOGP(DNS, LOGL_NOTICE, "NSEI=%u Rx Unknown NS PDU type 0x%02x\n",
Harald Weltebbc9fac2010-05-03 18:54:12 +0200646 nsvc->nsei, nsh->pdu_type);
Harald Welte9ba50052010-03-14 15:45:01 +0800647 rc = -EINVAL;
648 break;
649 }
650 return rc;
651}
652
Harald Weltef030b212010-04-26 19:18:54 +0200653struct gprs_ns_inst *gprs_ns_instantiate(gprs_ns_cb_t *cb)
654{
655 struct gprs_ns_inst *nsi = talloc_zero(tall_bsc_ctx, struct gprs_ns_inst);
656
657 nsi->cb = cb;
658 INIT_LLIST_HEAD(&nsi->gprs_nsvcs);
659
Harald Welte3771d092010-04-30 20:26:32 +0200660 return nsi;
Harald Weltef030b212010-04-26 19:18:54 +0200661}
662
663void gprs_ns_destroy(struct gprs_ns_inst *nsi)
664{
665 /* FIXME: clear all timers */
666
667 /* recursively free the NSI and all its NSVCs */
668 talloc_free(nsi);
669}
670
671
672/* NS-over-IP code, according to 3GPP TS 48.016 Chapter 6.2
673 * We don't support Size Procedure, Configuration Procedure, ChangeWeight Procedure */
674
675/* Read a single NS-over-IP message */
676static struct msgb *read_nsip_msg(struct bsc_fd *bfd, int *error,
677 struct sockaddr_in *saddr)
678{
679 struct msgb *msg = msgb_alloc(NS_ALLOC_SIZE, "Abis/IP/GPRS-NS");
680 int ret = 0;
681 socklen_t saddr_len = sizeof(*saddr);
682
683 if (!msg) {
684 *error = -ENOMEM;
685 return NULL;
686 }
687
688 ret = recvfrom(bfd->fd, msg->data, NS_ALLOC_SIZE, 0,
689 (struct sockaddr *)saddr, &saddr_len);
690 if (ret < 0) {
Harald Welteb8a6a832010-05-11 05:54:22 +0200691 LOGP(DNS, LOGL_ERROR, "recv error %s during NSIP recv\n",
Harald Weltebbc9fac2010-05-03 18:54:12 +0200692 strerror(errno));
Harald Weltef030b212010-04-26 19:18:54 +0200693 msgb_free(msg);
694 *error = ret;
695 return NULL;
696 } else if (ret == 0) {
697 msgb_free(msg);
698 *error = ret;
699 return NULL;
700 }
701
702 msg->l2h = msg->data;
703 msgb_put(msg, ret);
704
705 return msg;
706}
707
708static int handle_nsip_read(struct bsc_fd *bfd)
709{
710 int error;
711 struct sockaddr_in saddr;
712 struct gprs_ns_inst *nsi = bfd->data;
713 struct msgb *msg = read_nsip_msg(bfd, &error, &saddr);
714
715 if (!msg)
716 return error;
717
718 return gprs_ns_rcvmsg(nsi, msg, &saddr);
719}
720
721static int handle_nsip_write(struct bsc_fd *bfd)
722{
723 /* FIXME: actually send the data here instead of nsip_sendmsg() */
724 return -EIO;
725}
726
Harald Welte24a655f2010-04-30 19:54:29 +0200727int nsip_sendmsg(struct gprs_nsvc *nsvc, struct msgb *msg)
Harald Weltef030b212010-04-26 19:18:54 +0200728{
729 int rc;
730 struct gprs_ns_inst *nsi = nsvc->nsi;
731 struct sockaddr_in *daddr = &nsvc->ip.bts_addr;
732
733 rc = sendto(nsi->nsip.fd.fd, msg->data, msg->len, 0,
734 (struct sockaddr *)daddr, sizeof(*daddr));
735
736 talloc_free(msg);
737
738 return rc;
739}
740
741/* UDP Port 23000 carries the LLC-in-BSSGP-in-NS protocol stack */
742static int nsip_fd_cb(struct bsc_fd *bfd, unsigned int what)
743{
744 int rc = 0;
745
746 if (what & BSC_FD_READ)
747 rc = handle_nsip_read(bfd);
748 if (what & BSC_FD_WRITE)
749 rc = handle_nsip_write(bfd);
750
751 return rc;
752}
753
754
755/* FIXME: this is currently in input/ipaccess.c */
Harald Welte8f9a3ee2010-05-02 11:26:34 +0200756extern int make_sock(struct bsc_fd *bfd, int proto, uint16_t port,
Harald Weltef030b212010-04-26 19:18:54 +0200757 int (*cb)(struct bsc_fd *fd, unsigned int what));
758
759/* Listen for incoming GPRS packets */
760int nsip_listen(struct gprs_ns_inst *nsi, uint16_t udp_port)
761{
762 int ret;
763
764 ret = make_sock(&nsi->nsip.fd, IPPROTO_UDP, udp_port, nsip_fd_cb);
765 if (ret < 0)
766 return ret;
767
768 nsi->ll = GPRS_NS_LL_UDP;
769 nsi->nsip.fd.data = nsi;
770
771 return ret;
772}
Harald Welte3771d092010-04-30 20:26:32 +0200773
774/* Establish a connection (from the BSS) to the SGSN */
775struct gprs_nsvc *nsip_connect(struct gprs_ns_inst *nsi,
Harald Welte1203de32010-05-01 11:28:43 +0200776 struct sockaddr_in *dest, uint16_t nsei,
777 uint16_t nsvci)
Harald Welte3771d092010-04-30 20:26:32 +0200778{
779 struct gprs_nsvc *nsvc;
780
781 nsvc = nsvc_by_rem_addr(nsi, dest);
Harald Welte38407ef2010-05-12 11:56:39 +0000782 if (!nsvc)
Harald Welte3771d092010-04-30 20:26:32 +0200783 nsvc = nsvc_create(nsi, nsvci);
Harald Welte38407ef2010-05-12 11:56:39 +0000784 nsvc->ip.bts_addr = *dest;
Harald Welte1203de32010-05-01 11:28:43 +0200785 nsvc->nsei = nsei;
786 nsvc->nsvci = nsvci;
Harald Welte3771d092010-04-30 20:26:32 +0200787 nsvc->remote_end_is_sgsn = 1;
788
789 /* Initiate a RESET procedure */
Harald Weltec1402a62010-05-12 11:48:44 +0200790 /* Mark NS-VC locally as blocked and dead */
791 nsvc->state = NSE_S_BLOCKED;
792 /* Send NS-RESET PDU */
Harald Welte570fb832010-05-03 21:05:24 +0200793 if (gprs_ns_tx_reset(nsvc, NS_CAUSE_OM_INTERVENTION) < 0) {
Harald Welteb8a6a832010-05-11 05:54:22 +0200794 LOGP(DNS, LOGL_ERROR, "NSEI=%u, error resetting NS-VC\n",
Harald Welte69a4cf22010-05-03 20:55:10 +0200795 nsei);
796 }
Harald Weltec1402a62010-05-12 11:48:44 +0200797 /* Start Tns-reset */
Harald Welte69a4cf22010-05-03 20:55:10 +0200798 nsvc_start_timer(nsvc, NSVC_TIMER_TNS_RESET);
Harald Welte3771d092010-04-30 20:26:32 +0200799
800 return nsvc;
801}