blob: 9cb330058edc78263e1d9002ae3b2364278958d5 [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 Weltec1402a62010-05-12 11:48:44 +0200219int gprs_ns_tx_status(struct gprs_nsvc *nsvc, uint8_t cause,
220 uint16_t bvci, struct msgb *orig_msg)
221{
222 struct msgb *msg = msgb_alloc(NS_ALLOC_SIZE, "GPRS/NS");
223 struct gprs_ns_hdr *nsh;
224 uint16_t nsvci = htons(nsvc->nsvci);
225
226 bvci = htons(bvci);
227
228 if (!msg)
229 return -ENOMEM;
230
231 nsh = (struct gprs_ns_hdr *) msgb_put(msg, sizeof(*nsh));
232 nsh->pdu_type = NS_PDUT_STATUS;
233
234 msgb_tvlv_put(msg, NS_IE_CAUSE, 1, &cause);
235
236 /* Section 9.2.7.1: Static conditions for NS-VCI */
237 if (cause == NS_CAUSE_NSVC_BLOCKED ||
238 cause == NS_CAUSE_NSVC_UNKNOWN)
239 msgb_tvlv_put(msg, NS_IE_VCI, 2, (uint8_t *)&nsvci);
240
241 /* Section 9.2.7.2: Static conditions for NS PDU */
242 switch (cause) {
243 case NS_CAUSE_SEM_INCORR_PDU:
244 case NS_CAUSE_PDU_INCOMP_PSTATE:
245 case NS_CAUSE_PROTO_ERR_UNSPEC:
246 case NS_CAUSE_INVAL_ESSENT_IE:
247 case NS_CAUSE_MISSING_ESSENT_IE:
248 msgb_tvlv_put(msg, NS_IE_PDU, msgb_l2len(orig_msg),
249 orig_msg->l2h);
250 break;
251 default:
252 break;
253 }
254
255 /* Section 9.2.7.3: Static conditions for BVCI */
256 if (cause == NS_CAUSE_BVCI_UNKNOWN)
257 msgb_tvlv_put(msg, NS_IE_VCI, 2, (uint8_t *)&bvci);
258
259 return gprs_ns_tx(nsvc, msg);
260}
261
Harald Welte834f26d2010-05-11 06:20:54 +0200262int gprs_ns_tx_block(struct gprs_nsvc *nsvc, uint8_t cause)
263{
264 struct msgb *msg = msgb_alloc(NS_ALLOC_SIZE, "GPRS/NS");
265 struct gprs_ns_hdr *nsh;
266 uint16_t nsvci = htons(nsvc->nsvci);
267
268 if (!msg)
269 return -ENOMEM;
270
271 /* be conservative and mark it as blocked even now! */
272 nsvc->state |= NSE_S_BLOCKED;
273
274 nsh = (struct gprs_ns_hdr *) msgb_put(msg, sizeof(*nsh));
275 nsh->pdu_type = NS_PDUT_BLOCK;
276
277 msgb_tvlv_put(msg, NS_IE_CAUSE, 1, &cause);
278 msgb_tvlv_put(msg, NS_IE_VCI, 2, (uint8_t *) &nsvci);
279
280 return gprs_ns_tx(nsvc, msg);
281}
282
283int gprs_ns_tx_unblock(struct gprs_nsvc *nsvc)
284{
285 return gprs_ns_tx_simple(nsvc, NS_PDUT_UNBLOCK);
286}
287
Harald Welte9ba50052010-03-14 15:45:01 +0800288#define NS_ALIVE_RETRIES 10 /* after 3 failed retransmit we declare BTS as dead */
289
Harald Welte69a4cf22010-05-03 20:55:10 +0200290static const uint8_t timer_mode_tout[_NSVC_TIMER_NR] = {
291 [NSVC_TIMER_TNS_RESET] = 60,
292 [NSVC_TIMER_TNS_ALIVE] = 3,
293 [NSVC_TIMER_TNS_TEST] = 30,
294};
295
296static void nsvc_start_timer(struct gprs_nsvc *nsvc, enum nsvc_timer_mode mode)
297{
298 nsvc->alive_retries = 0;
299
300 if (bsc_timer_pending(&nsvc->timer))
301 bsc_del_timer(&nsvc->timer);
302
303 nsvc->timer_mode = mode;
304 bsc_schedule_timer(&nsvc->timer, timer_mode_tout[mode], 0);
305}
306
Harald Welte80405452010-05-03 20:16:13 +0200307static void gprs_ns_timer_cb(void *data)
Harald Welte9ba50052010-03-14 15:45:01 +0800308{
309 struct gprs_nsvc *nsvc = data;
310
Harald Welte80405452010-05-03 20:16:13 +0200311 switch (nsvc->timer_mode) {
312 case NSVC_TIMER_TNS_ALIVE:
Harald Welte9ba50052010-03-14 15:45:01 +0800313 /* Tns-alive case: we expired without response ! */
314 nsvc->alive_retries++;
315 if (nsvc->alive_retries > NS_ALIVE_RETRIES) {
316 /* mark as dead and blocked */
317 nsvc->state = NSE_S_BLOCKED;
Harald Weltee4ecc8c2010-05-12 00:16:57 +0200318 LOGP(DNS, LOGL_NOTICE,
319 "NSEI=%u Tns-alive expired more then "
Harald Welte69a4cf22010-05-03 20:55:10 +0200320 "%u times, blocking NS-VC\n", nsvc->nsei,
321 NS_ALIVE_RETRIES);
Harald Weltee4ecc8c2010-05-12 00:16:57 +0200322 ns_dispatch_signal(nsvc, S_NS_BLOCK, NS_CAUSE_NSVC_BLOCKED);
Harald Welte9ba50052010-03-14 15:45:01 +0800323 return;
324 }
Harald Welte69a4cf22010-05-03 20:55:10 +0200325 nsvc_start_timer(nsvc, NSVC_TIMER_TNS_ALIVE);
Harald Welte80405452010-05-03 20:16:13 +0200326 break;
327 case NSVC_TIMER_TNS_TEST:
Harald Welte9ba50052010-03-14 15:45:01 +0800328 /* Tns-test case: send NS-ALIVE PDU */
Harald Weltec5478482010-03-18 00:01:43 +0800329 gprs_ns_tx_simple(nsvc, NS_PDUT_ALIVE);
Harald Welte9ba50052010-03-14 15:45:01 +0800330 /* start Tns-alive timer */
Harald Welte69a4cf22010-05-03 20:55:10 +0200331 nsvc_start_timer(nsvc, NSVC_TIMER_TNS_ALIVE);
332 break;
333 case NSVC_TIMER_TNS_RESET:
334 /* Chapter 7.3: Re-send the RESET */
Harald Welte570fb832010-05-03 21:05:24 +0200335 gprs_ns_tx_reset(nsvc, NS_CAUSE_OM_INTERVENTION);
Harald Weltec1402a62010-05-12 11:48:44 +0200336 /* Re-start Tns-reset timer */
Harald Welte69a4cf22010-05-03 20:55:10 +0200337 nsvc_start_timer(nsvc, NSVC_TIMER_TNS_RESET);
Harald Welte80405452010-05-03 20:16:13 +0200338 break;
Harald Welte2fc725d2010-05-11 10:15:26 +0200339 case _NSVC_TIMER_NR:
340 break;
Harald Welte9ba50052010-03-14 15:45:01 +0800341 }
Harald Welte9ba50052010-03-14 15:45:01 +0800342}
343
344/* Section 9.2.6 */
Harald Weltec5478482010-03-18 00:01:43 +0800345static int gprs_ns_tx_reset_ack(struct gprs_nsvc *nsvc)
Harald Welte9ba50052010-03-14 15:45:01 +0800346{
347 struct msgb *msg = msgb_alloc(NS_ALLOC_SIZE, "GPRS/NS");
348 struct gprs_ns_hdr *nsh;
Harald Welte8f9a3ee2010-05-02 11:26:34 +0200349 uint16_t nsvci, nsei;
Harald Welte9ba50052010-03-14 15:45:01 +0800350
351 if (!msg)
352 return -ENOMEM;
353
Harald Weltec5478482010-03-18 00:01:43 +0800354 nsvci = htons(nsvc->nsvci);
355 nsei = htons(nsvc->nsei);
Harald Welte9ba50052010-03-14 15:45:01 +0800356
357 nsh = (struct gprs_ns_hdr *) msgb_put(msg, sizeof(*nsh));
358
359 nsh->pdu_type = NS_PDUT_RESET_ACK;
360
Harald Weltee4ecc8c2010-05-12 00:16:57 +0200361 LOGP(DNS, LOGL_INFO, "NSEI=%u Tx NS RESET ACK (NSVCI=%u)\n",
Harald Weltebbc9fac2010-05-03 18:54:12 +0200362 nsvc->nsei, nsvc->nsvci);
Harald Weltec5478482010-03-18 00:01:43 +0800363
Harald Welte8f9a3ee2010-05-02 11:26:34 +0200364 msgb_tvlv_put(msg, NS_IE_VCI, 2, (uint8_t *)&nsvci);
365 msgb_tvlv_put(msg, NS_IE_NSEI, 2, (uint8_t *)&nsei);
Harald Welte9ba50052010-03-14 15:45:01 +0800366
Harald Welte24a655f2010-04-30 19:54:29 +0200367 return gprs_ns_tx(nsvc, msg);
Harald Welte9ba50052010-03-14 15:45:01 +0800368}
369
Harald Welte24a655f2010-04-30 19:54:29 +0200370/* Section 9.2.10: transmit side / NS-UNITDATA-REQUEST primitive */
371int gprs_ns_sendmsg(struct gprs_ns_inst *nsi, struct msgb *msg)
Harald Welte9ba50052010-03-14 15:45:01 +0800372{
Harald Welte24a655f2010-04-30 19:54:29 +0200373 struct gprs_nsvc *nsvc;
Harald Welte9ba50052010-03-14 15:45:01 +0800374 struct gprs_ns_hdr *nsh;
Harald Welte8f9a3ee2010-05-02 11:26:34 +0200375 uint16_t bvci = msgb_bvci(msg);
Harald Welte24a655f2010-04-30 19:54:29 +0200376
377 nsvc = nsvc_by_nsei(nsi, msgb_nsei(msg));
378 if (!nsvc) {
Harald Welteb8a6a832010-05-11 05:54:22 +0200379 LOGP(DNS, LOGL_ERROR, "Unable to resolve NSEI %u "
Harald Weltebbc9fac2010-05-03 18:54:12 +0200380 "to NS-VC!\n", msgb_nsei(msg));
Harald Welte24a655f2010-04-30 19:54:29 +0200381 return -EINVAL;
382 }
Harald Welte9ba50052010-03-14 15:45:01 +0800383
Harald Welte69a4cf22010-05-03 20:55:10 +0200384 if (!(nsvc->state & NSE_S_ALIVE)) {
Harald Welteb8a6a832010-05-11 05:54:22 +0200385 LOGP(DNS, LOGL_ERROR, "NSEI=%u is not alive, cannot send\n",
Harald Welte69a4cf22010-05-03 20:55:10 +0200386 nsvc->nsei);
387 return -EBUSY;
388 }
389 if (nsvc->state & NSE_S_BLOCKED) {
Harald Welteb8a6a832010-05-11 05:54:22 +0200390 LOGP(DNS, LOGL_ERROR, "NSEI=%u is blocked, cannot send\n",
Harald Welte69a4cf22010-05-03 20:55:10 +0200391 nsvc->nsei);
392 return -EBUSY;
393 }
394
Harald Welte9ba50052010-03-14 15:45:01 +0800395 nsh = (struct gprs_ns_hdr *) msgb_push(msg, sizeof(*nsh) + 3);
396 if (!nsh) {
Harald Welteb8a6a832010-05-11 05:54:22 +0200397 LOGP(DNS, LOGL_ERROR, "Not enough headroom for NS header\n");
Harald Welte9ba50052010-03-14 15:45:01 +0800398 return -EIO;
399 }
400
401 nsh->pdu_type = NS_PDUT_UNITDATA;
402 /* spare octet in data[0] */
403 nsh->data[1] = bvci >> 8;
404 nsh->data[2] = bvci & 0xff;
405
Harald Welte24a655f2010-04-30 19:54:29 +0200406 return gprs_ns_tx(nsvc, msg);
Harald Welte9ba50052010-03-14 15:45:01 +0800407}
408
409/* Section 9.2.10: receive side */
Harald Welte24a655f2010-04-30 19:54:29 +0200410static int gprs_ns_rx_unitdata(struct gprs_nsvc *nsvc, struct msgb *msg)
Harald Welte9ba50052010-03-14 15:45:01 +0800411{
412 struct gprs_ns_hdr *nsh = (struct gprs_ns_hdr *)msg->l2h;
Harald Welte8f9a3ee2010-05-02 11:26:34 +0200413 uint16_t bvci;
Harald Welte9ba50052010-03-14 15:45:01 +0800414
Harald Weltec1402a62010-05-12 11:48:44 +0200415 if (nsvc->state & NSE_S_BLOCKED)
416 return gprs_ns_tx_status(nsvc, NS_CAUSE_NSVC_BLOCKED,
417 0, msg);
418
Harald Welte9ba50052010-03-14 15:45:01 +0800419 /* spare octet in data[0] */
420 bvci = nsh->data[1] << 8 | nsh->data[2];
Harald Welteec19c102010-05-02 09:50:42 +0200421 msgb_bssgph(msg) = &nsh->data[3];
Harald Welte30bc19a2010-05-02 11:19:37 +0200422 msgb_bvci(msg) = bvci;
Harald Welte9ba50052010-03-14 15:45:01 +0800423
424 /* call upper layer (BSSGP) */
Harald Weltef030b212010-04-26 19:18:54 +0200425 return nsvc->nsi->cb(GPRS_NS_EVT_UNIT_DATA, nsvc, msg, bvci);
Harald Welte9ba50052010-03-14 15:45:01 +0800426}
427
428/* Section 9.2.7 */
Harald Welte24a655f2010-04-30 19:54:29 +0200429static int gprs_ns_rx_status(struct gprs_nsvc *nsvc, struct msgb *msg)
Harald Welte9ba50052010-03-14 15:45:01 +0800430{
Harald Weltef030b212010-04-26 19:18:54 +0200431 struct gprs_ns_hdr *nsh = (struct gprs_ns_hdr *) msg->l2h;
Harald Welte9ba50052010-03-14 15:45:01 +0800432 struct tlv_parsed tp;
Harald Welte8f9a3ee2010-05-02 11:26:34 +0200433 uint8_t cause;
Harald Welte9ba50052010-03-14 15:45:01 +0800434 int rc;
435
Harald Weltee4ecc8c2010-05-12 00:16:57 +0200436 LOGP(DNS, LOGL_INFO, "NSEI=%u NS STATUS ", nsvc->nsei);
Harald Welte9ba50052010-03-14 15:45:01 +0800437
438 rc = tlv_parse(&tp, &ns_att_tlvdef, nsh->data, msgb_l2len(msg), 0, 0);
439
440 if (!TLVP_PRESENT(&tp, NS_IE_CAUSE)) {
Harald Weltee4ecc8c2010-05-12 00:16:57 +0200441 LOGPC(DNS, LOGL_INFO, "missing cause IE\n");
Harald Welte9ba50052010-03-14 15:45:01 +0800442 return -EINVAL;
443 }
444
445 cause = *TLVP_VAL(&tp, NS_IE_CAUSE);
Harald Weltee4ecc8c2010-05-12 00:16:57 +0200446 LOGPC(DNS, LOGL_INFO, "cause=%s\n", gprs_ns_cause_str(cause));
Harald Welte9ba50052010-03-14 15:45:01 +0800447
448 return 0;
449}
450
451/* Section 7.3 */
Harald Welte24a655f2010-04-30 19:54:29 +0200452static int gprs_ns_rx_reset(struct gprs_nsvc *nsvc, struct msgb *msg)
Harald Welte9ba50052010-03-14 15:45:01 +0800453{
454 struct gprs_ns_hdr *nsh = (struct gprs_ns_hdr *) msg->l2h;
Harald Welte9ba50052010-03-14 15:45:01 +0800455 struct tlv_parsed tp;
Harald Welte8f9a3ee2010-05-02 11:26:34 +0200456 uint8_t *cause;
457 uint16_t *nsvci, *nsei;
Harald Welte9ba50052010-03-14 15:45:01 +0800458 int rc;
459
Harald Welte9ba50052010-03-14 15:45:01 +0800460 rc = tlv_parse(&tp, &ns_att_tlvdef, nsh->data, msgb_l2len(msg), 0, 0);
461
462 if (!TLVP_PRESENT(&tp, NS_IE_CAUSE) ||
463 !TLVP_PRESENT(&tp, NS_IE_VCI) ||
464 !TLVP_PRESENT(&tp, NS_IE_NSEI)) {
Harald Welteb8a6a832010-05-11 05:54:22 +0200465 LOGP(DNS, LOGL_ERROR, "NS RESET Missing mandatory IE\n");
Harald Weltec1402a62010-05-12 11:48:44 +0200466 gprs_ns_tx_status(nsvc, NS_CAUSE_MISSING_ESSENT_IE, 0, msg);
Harald Welte9ba50052010-03-14 15:45:01 +0800467 return -EINVAL;
468 }
469
Harald Welte8f9a3ee2010-05-02 11:26:34 +0200470 cause = (uint8_t *) TLVP_VAL(&tp, NS_IE_CAUSE);
471 nsvci = (uint16_t *) TLVP_VAL(&tp, NS_IE_VCI);
472 nsei = (uint16_t *) TLVP_VAL(&tp, NS_IE_NSEI);
Harald Welte9ba50052010-03-14 15:45:01 +0800473
Harald Weltee4ecc8c2010-05-12 00:16:57 +0200474 LOGP(DNS, LOGL_INFO, "NSEI=%u Rx NS RESET (NSVCI=%u, cause=%s)\n",
Harald Weltebbc9fac2010-05-03 18:54:12 +0200475 nsvc->nsvci, nsvc->nsei, gprs_ns_cause_str(*cause));
476
Harald Weltec1402a62010-05-12 11:48:44 +0200477 /* Mark NS-VC as blocked and alive */
Harald Weltec5478482010-03-18 00:01:43 +0800478 nsvc->state = NSE_S_BLOCKED | NSE_S_ALIVE;
Harald Weltee8b9ca22010-05-11 18:18:31 +0200479
Harald Weltec5478482010-03-18 00:01:43 +0800480 nsvc->nsei = ntohs(*nsei);
481 nsvc->nsvci = ntohs(*nsvci);
Harald Welte9ba50052010-03-14 15:45:01 +0800482
Harald Welte9ba50052010-03-14 15:45:01 +0800483 /* start the test procedure */
Harald Welte69a4cf22010-05-03 20:55:10 +0200484 nsvc_start_timer(nsvc, NSVC_TIMER_TNS_ALIVE);
Harald Welte9ba50052010-03-14 15:45:01 +0800485
Harald Welte834f26d2010-05-11 06:20:54 +0200486 /* inform interested parties about the fact that this NSVC
487 * has received RESET */
Harald Welte2fc725d2010-05-11 10:15:26 +0200488 ns_dispatch_signal(nsvc, S_NS_RESET, *cause);
Harald Welte834f26d2010-05-11 06:20:54 +0200489
Harald Weltec5478482010-03-18 00:01:43 +0800490 return gprs_ns_tx_reset_ack(nsvc);
Harald Welte9ba50052010-03-14 15:45:01 +0800491}
492
Harald Welte834f26d2010-05-11 06:20:54 +0200493static int gprs_ns_rx_block(struct gprs_nsvc *nsvc, struct msgb *msg)
494{
495 struct gprs_ns_hdr *nsh = (struct gprs_ns_hdr *) msg->l2h;
496 struct tlv_parsed tp;
497 uint8_t *cause;
498 int rc;
499
Harald Weltee4ecc8c2010-05-12 00:16:57 +0200500 LOGP(DNS, LOGL_INFO, "NSEI=%u Rx NS BLOCK\n", nsvc->nsei);
Harald Welte834f26d2010-05-11 06:20:54 +0200501
502 nsvc->state |= NSE_S_BLOCKED;
503
504 rc = tlv_parse(&tp, &ns_att_tlvdef, nsh->data, msgb_l2len(msg), 0, 0);
505
506 if (!TLVP_PRESENT(&tp, NS_IE_CAUSE) ||
507 !TLVP_PRESENT(&tp, NS_IE_VCI)) {
Harald Welte834f26d2010-05-11 06:20:54 +0200508 LOGP(DNS, LOGL_ERROR, "NS RESET Missing mandatory IE\n");
Harald Weltec1402a62010-05-12 11:48:44 +0200509 gprs_ns_tx_status(nsvc, NS_CAUSE_MISSING_ESSENT_IE, 0, msg);
Harald Welte834f26d2010-05-11 06:20:54 +0200510 return -EINVAL;
511 }
512
513 cause = (uint8_t *) TLVP_VAL(&tp, NS_IE_CAUSE);
514 //nsvci = (uint16_t *) TLVP_VAL(&tp, NS_IE_VCI);
515
Harald Welte2fc725d2010-05-11 10:15:26 +0200516 ns_dispatch_signal(nsvc, S_NS_BLOCK, *cause);
Harald Welte834f26d2010-05-11 06:20:54 +0200517
518 return gprs_ns_tx_simple(nsvc, NS_PDUT_BLOCK_ACK);
519}
520
Harald Welte9ba50052010-03-14 15:45:01 +0800521/* main entry point, here incoming NS frames enter */
Harald Weltef030b212010-04-26 19:18:54 +0200522int gprs_ns_rcvmsg(struct gprs_ns_inst *nsi, struct msgb *msg,
523 struct sockaddr_in *saddr)
Harald Welte9ba50052010-03-14 15:45:01 +0800524{
525 struct gprs_ns_hdr *nsh = (struct gprs_ns_hdr *) msg->l2h;
Harald Weltef030b212010-04-26 19:18:54 +0200526 struct gprs_nsvc *nsvc;
Harald Welte9ba50052010-03-14 15:45:01 +0800527 int rc = 0;
528
Harald Weltef030b212010-04-26 19:18:54 +0200529 /* look up the NSVC based on source address */
530 nsvc = nsvc_by_rem_addr(nsi, saddr);
531 if (!nsvc) {
Harald Welte9a392932010-05-11 18:30:37 +0200532 struct tlv_parsed tp;
533 uint16_t nsei;
Harald Weltef030b212010-04-26 19:18:54 +0200534 /* Only the RESET procedure creates a new NSVC */
Harald Weltebbc9fac2010-05-03 18:54:12 +0200535 if (nsh->pdu_type != NS_PDUT_RESET) {
Harald Welteb8a6a832010-05-11 05:54:22 +0200536 LOGP(DNS, LOGL_INFO, "Ignoring NS PDU type 0x%0x "
Harald Weltebba902d2010-05-11 18:38:36 +0200537 "from %s:%u for non-existing NS-VC\n",
538 nsh->pdu_type, inet_ntoa(saddr->sin_addr),
539 ntohs(saddr->sin_port));
Harald Weltec1402a62010-05-12 11:48:44 +0200540 /* FIXME: send STATUS (but we have no NSVC!) */
Harald Welte570fb832010-05-03 21:05:24 +0200541 //gprs_ns_tx_reset(nsvc, NS_CAUSE_NSVC_UNKNOWN);
Harald Weltef030b212010-04-26 19:18:54 +0200542 return -EIO;
Harald Weltebbc9fac2010-05-03 18:54:12 +0200543 }
Harald Welte9a392932010-05-11 18:30:37 +0200544 rc = tlv_parse(&tp, &ns_att_tlvdef, nsh->data,
545 msgb_l2len(msg), 0, 0);
546 if (!TLVP_PRESENT(&tp, NS_IE_CAUSE) ||
547 !TLVP_PRESENT(&tp, NS_IE_VCI) ||
548 !TLVP_PRESENT(&tp, NS_IE_NSEI)) {
Harald Welte9a392932010-05-11 18:30:37 +0200549 LOGP(DNS, LOGL_ERROR, "NS RESET Missing mandatory IE\n");
Harald Weltec1402a62010-05-12 11:48:44 +0200550 gprs_ns_tx_status(nsvc, NS_CAUSE_MISSING_ESSENT_IE, 0,
551 msg);
Harald Welte9a392932010-05-11 18:30:37 +0200552 return -EINVAL;
553 }
554 nsei = ntohs(*(uint16_t *)TLVP_VAL(&tp, NS_IE_NSEI));
555 /* Check if we already know this NSEI, the remote end might
556 * simply have changed addresses, or it is a SGSN */
557 nsvc = nsvc_by_nsei(nsi, nsei);
558 if (!nsvc) {
559 LOGP(DNS, LOGL_INFO, "Creating NS-VC for BSS at %s:%u\n",
560 inet_ntoa(saddr->sin_addr), ntohs(saddr->sin_port));
561 nsvc = nsvc_create(nsi, 0xffff);
Harald Welte9a392932010-05-11 18:30:37 +0200562 }
Harald Welte2b7d4652010-05-11 18:40:45 +0200563 /* Update the remote peer IP address/port */
564 nsvc->ip.bts_addr = *saddr;
Harald Weltebbc9fac2010-05-03 18:54:12 +0200565 } else
566 msgb_nsei(msg) = nsvc->nsei;
Harald Weltec5478482010-03-18 00:01:43 +0800567
Harald Welte9ba50052010-03-14 15:45:01 +0800568 switch (nsh->pdu_type) {
569 case NS_PDUT_ALIVE:
570 /* remote end inquires whether we're still alive,
571 * we need to respond with ALIVE_ACK */
Harald Weltec5478482010-03-18 00:01:43 +0800572 rc = gprs_ns_tx_simple(nsvc, NS_PDUT_ALIVE_ACK);
Harald Welte9ba50052010-03-14 15:45:01 +0800573 break;
574 case NS_PDUT_ALIVE_ACK:
575 /* stop Tns-alive */
Harald Welte80405452010-05-03 20:16:13 +0200576 bsc_del_timer(&nsvc->timer);
Harald Welte9ba50052010-03-14 15:45:01 +0800577 /* start Tns-test */
Harald Welte69a4cf22010-05-03 20:55:10 +0200578 nsvc_start_timer(nsvc, NSVC_TIMER_TNS_TEST);
Harald Welte7fb7e612010-05-03 21:11:22 +0200579 if (nsvc->remote_end_is_sgsn) {
580 /* FIXME: this should be one level higher */
581 if (nsvc->state & NSE_S_BLOCKED)
Harald Weltec1402a62010-05-12 11:48:44 +0200582 rc = gprs_ns_tx_unblock(nsvc);
Harald Welte7fb7e612010-05-03 21:11:22 +0200583 }
Harald Welte9ba50052010-03-14 15:45:01 +0800584 break;
585 case NS_PDUT_UNITDATA:
586 /* actual user data */
Harald Welte24a655f2010-04-30 19:54:29 +0200587 rc = gprs_ns_rx_unitdata(nsvc, msg);
Harald Welte9ba50052010-03-14 15:45:01 +0800588 break;
589 case NS_PDUT_STATUS:
Harald Welte24a655f2010-04-30 19:54:29 +0200590 rc = gprs_ns_rx_status(nsvc, msg);
Harald Welte9ba50052010-03-14 15:45:01 +0800591 break;
592 case NS_PDUT_RESET:
Harald Welte24a655f2010-04-30 19:54:29 +0200593 rc = gprs_ns_rx_reset(nsvc, msg);
Harald Welte9ba50052010-03-14 15:45:01 +0800594 break;
595 case NS_PDUT_RESET_ACK:
Harald Weltee4ecc8c2010-05-12 00:16:57 +0200596 LOGP(DNS, LOGL_INFO, "NSEI=%u Rx NS RESET ACK\n", nsvc->nsei);
Harald Weltec1402a62010-05-12 11:48:44 +0200597 /* mark NS-VC as blocked + active */
598 nsvc->state = NSE_S_BLOCKED | NSE_S_ALIVE;
Harald Weltef030b212010-04-26 19:18:54 +0200599 nsvc->remote_state = NSE_S_BLOCKED | NSE_S_ALIVE;
Harald Welte69a4cf22010-05-03 20:55:10 +0200600 if (nsvc->remote_end_is_sgsn) {
601 /* stop RESET timer */
602 bsc_del_timer(&nsvc->timer);
Harald Weltec1402a62010-05-12 11:48:44 +0200603 /* Initiate TEST proc.: Send ALIVE and start timer */
Harald Welte570fb832010-05-03 21:05:24 +0200604 rc = gprs_ns_tx_simple(nsvc, NS_PDUT_ALIVE);
605 nsvc_start_timer(nsvc, NSVC_TIMER_TNS_ALIVE);
Harald Welte69a4cf22010-05-03 20:55:10 +0200606 }
Harald Welte9ba50052010-03-14 15:45:01 +0800607 break;
608 case NS_PDUT_UNBLOCK:
609 /* Section 7.2: unblocking procedure */
Harald Weltee4ecc8c2010-05-12 00:16:57 +0200610 LOGP(DNS, LOGL_INFO, "NSEI=%u Rx NS UNBLOCK\n", nsvc->nsei);
Harald Welte9ba50052010-03-14 15:45:01 +0800611 nsvc->state &= ~NSE_S_BLOCKED;
Harald Welte834f26d2010-05-11 06:20:54 +0200612 ns_dispatch_signal(nsvc, S_NS_UNBLOCK, 0);
Harald Weltec5478482010-03-18 00:01:43 +0800613 rc = gprs_ns_tx_simple(nsvc, NS_PDUT_UNBLOCK_ACK);
Harald Welte9ba50052010-03-14 15:45:01 +0800614 break;
615 case NS_PDUT_UNBLOCK_ACK:
Harald Weltee4ecc8c2010-05-12 00:16:57 +0200616 LOGP(DNS, LOGL_INFO, "NSEI=%u Rx NS UNBLOCK ACK\n", nsvc->nsei);
Harald Weltec1402a62010-05-12 11:48:44 +0200617 /* mark NS-VC as unblocked + active */
618 nsvc->state = NSE_S_ALIVE;
Harald Weltef030b212010-04-26 19:18:54 +0200619 nsvc->remote_state = NSE_S_ALIVE;
Harald Welte9ba50052010-03-14 15:45:01 +0800620 break;
621 case NS_PDUT_BLOCK:
Harald Welte834f26d2010-05-11 06:20:54 +0200622 rc = gprs_ns_rx_block(nsvc, msg);
Harald Welte9ba50052010-03-14 15:45:01 +0800623 break;
624 case NS_PDUT_BLOCK_ACK:
Harald Weltee4ecc8c2010-05-12 00:16:57 +0200625 LOGP(DNS, LOGL_INFO, "NSEI=%u Rx NS BLOCK ACK\n", nsvc->nsei);
Harald Weltef030b212010-04-26 19:18:54 +0200626 /* mark remote NS-VC as blocked + active */
627 nsvc->remote_state = NSE_S_BLOCKED | NSE_S_ALIVE;
Harald Welte9ba50052010-03-14 15:45:01 +0800628 break;
629 default:
Harald Weltee4ecc8c2010-05-12 00:16:57 +0200630 LOGP(DNS, LOGL_NOTICE, "NSEI=%u Rx Unknown NS PDU type 0x%02x\n",
Harald Weltebbc9fac2010-05-03 18:54:12 +0200631 nsvc->nsei, nsh->pdu_type);
Harald Welte9ba50052010-03-14 15:45:01 +0800632 rc = -EINVAL;
633 break;
634 }
635 return rc;
636}
637
Harald Weltef030b212010-04-26 19:18:54 +0200638struct gprs_ns_inst *gprs_ns_instantiate(gprs_ns_cb_t *cb)
639{
640 struct gprs_ns_inst *nsi = talloc_zero(tall_bsc_ctx, struct gprs_ns_inst);
641
642 nsi->cb = cb;
643 INIT_LLIST_HEAD(&nsi->gprs_nsvcs);
644
Harald Welte3771d092010-04-30 20:26:32 +0200645 return nsi;
Harald Weltef030b212010-04-26 19:18:54 +0200646}
647
648void gprs_ns_destroy(struct gprs_ns_inst *nsi)
649{
650 /* FIXME: clear all timers */
651
652 /* recursively free the NSI and all its NSVCs */
653 talloc_free(nsi);
654}
655
656
657/* NS-over-IP code, according to 3GPP TS 48.016 Chapter 6.2
658 * We don't support Size Procedure, Configuration Procedure, ChangeWeight Procedure */
659
660/* Read a single NS-over-IP message */
661static struct msgb *read_nsip_msg(struct bsc_fd *bfd, int *error,
662 struct sockaddr_in *saddr)
663{
664 struct msgb *msg = msgb_alloc(NS_ALLOC_SIZE, "Abis/IP/GPRS-NS");
665 int ret = 0;
666 socklen_t saddr_len = sizeof(*saddr);
667
668 if (!msg) {
669 *error = -ENOMEM;
670 return NULL;
671 }
672
673 ret = recvfrom(bfd->fd, msg->data, NS_ALLOC_SIZE, 0,
674 (struct sockaddr *)saddr, &saddr_len);
675 if (ret < 0) {
Harald Welteb8a6a832010-05-11 05:54:22 +0200676 LOGP(DNS, LOGL_ERROR, "recv error %s during NSIP recv\n",
Harald Weltebbc9fac2010-05-03 18:54:12 +0200677 strerror(errno));
Harald Weltef030b212010-04-26 19:18:54 +0200678 msgb_free(msg);
679 *error = ret;
680 return NULL;
681 } else if (ret == 0) {
682 msgb_free(msg);
683 *error = ret;
684 return NULL;
685 }
686
687 msg->l2h = msg->data;
688 msgb_put(msg, ret);
689
690 return msg;
691}
692
693static int handle_nsip_read(struct bsc_fd *bfd)
694{
695 int error;
696 struct sockaddr_in saddr;
697 struct gprs_ns_inst *nsi = bfd->data;
698 struct msgb *msg = read_nsip_msg(bfd, &error, &saddr);
699
700 if (!msg)
701 return error;
702
703 return gprs_ns_rcvmsg(nsi, msg, &saddr);
704}
705
706static int handle_nsip_write(struct bsc_fd *bfd)
707{
708 /* FIXME: actually send the data here instead of nsip_sendmsg() */
709 return -EIO;
710}
711
Harald Welte24a655f2010-04-30 19:54:29 +0200712int nsip_sendmsg(struct gprs_nsvc *nsvc, struct msgb *msg)
Harald Weltef030b212010-04-26 19:18:54 +0200713{
714 int rc;
715 struct gprs_ns_inst *nsi = nsvc->nsi;
716 struct sockaddr_in *daddr = &nsvc->ip.bts_addr;
717
718 rc = sendto(nsi->nsip.fd.fd, msg->data, msg->len, 0,
719 (struct sockaddr *)daddr, sizeof(*daddr));
720
721 talloc_free(msg);
722
723 return rc;
724}
725
726/* UDP Port 23000 carries the LLC-in-BSSGP-in-NS protocol stack */
727static int nsip_fd_cb(struct bsc_fd *bfd, unsigned int what)
728{
729 int rc = 0;
730
731 if (what & BSC_FD_READ)
732 rc = handle_nsip_read(bfd);
733 if (what & BSC_FD_WRITE)
734 rc = handle_nsip_write(bfd);
735
736 return rc;
737}
738
739
740/* FIXME: this is currently in input/ipaccess.c */
Harald Welte8f9a3ee2010-05-02 11:26:34 +0200741extern int make_sock(struct bsc_fd *bfd, int proto, uint16_t port,
Harald Weltef030b212010-04-26 19:18:54 +0200742 int (*cb)(struct bsc_fd *fd, unsigned int what));
743
744/* Listen for incoming GPRS packets */
745int nsip_listen(struct gprs_ns_inst *nsi, uint16_t udp_port)
746{
747 int ret;
748
749 ret = make_sock(&nsi->nsip.fd, IPPROTO_UDP, udp_port, nsip_fd_cb);
750 if (ret < 0)
751 return ret;
752
753 nsi->ll = GPRS_NS_LL_UDP;
754 nsi->nsip.fd.data = nsi;
755
756 return ret;
757}
Harald Welte3771d092010-04-30 20:26:32 +0200758
759/* Establish a connection (from the BSS) to the SGSN */
760struct gprs_nsvc *nsip_connect(struct gprs_ns_inst *nsi,
Harald Welte1203de32010-05-01 11:28:43 +0200761 struct sockaddr_in *dest, uint16_t nsei,
762 uint16_t nsvci)
Harald Welte3771d092010-04-30 20:26:32 +0200763{
764 struct gprs_nsvc *nsvc;
765
766 nsvc = nsvc_by_rem_addr(nsi, dest);
767 if (!nsvc) {
768 nsvc = nsvc_create(nsi, nsvci);
769 nsvc->ip.bts_addr = *dest;
770 }
Harald Welte1203de32010-05-01 11:28:43 +0200771 nsvc->nsei = nsei;
772 nsvc->nsvci = nsvci;
Harald Welte3771d092010-04-30 20:26:32 +0200773 nsvc->remote_end_is_sgsn = 1;
774
775 /* Initiate a RESET procedure */
Harald Weltec1402a62010-05-12 11:48:44 +0200776 /* Mark NS-VC locally as blocked and dead */
777 nsvc->state = NSE_S_BLOCKED;
778 /* Send NS-RESET PDU */
Harald Welte570fb832010-05-03 21:05:24 +0200779 if (gprs_ns_tx_reset(nsvc, NS_CAUSE_OM_INTERVENTION) < 0) {
Harald Welteb8a6a832010-05-11 05:54:22 +0200780 LOGP(DNS, LOGL_ERROR, "NSEI=%u, error resetting NS-VC\n",
Harald Welte69a4cf22010-05-03 20:55:10 +0200781 nsei);
782 }
Harald Weltec1402a62010-05-12 11:48:44 +0200783 /* Start Tns-reset */
Harald Welte69a4cf22010-05-03 20:55:10 +0200784 nsvc_start_timer(nsvc, NSVC_TIMER_TNS_RESET);
Harald Welte3771d092010-04-30 20:26:32 +0200785
786 return nsvc;
787}