blob: 0ef0c3fcb0c64440af5eb79edb1fc47a32f6ca91 [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 Welte7c24b9e2010-05-12 12:21:52 +0000335 DEBUGP(DNS, "NSVC=%u Starting timer in mode %s (%u seconds)\n",
336 nsvc->nsvci, get_value_string(timer_mode_strs, mode),
337 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 Welte7c24b9e2010-05-12 12:21:52 +0000350 DEBUGP(DNS, "NSVC=%u Timer expired in mode %s (%u seconds)\n",
351 nsvc->nsvci, get_value_string(timer_mode_strs, nsvc->timer_mode),
352 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 Weltee4ecc8c2010-05-12 00:16:57 +0200365 ns_dispatch_signal(nsvc, S_NS_BLOCK, NS_CAUSE_NSVC_BLOCKED);
Harald Welte9ba50052010-03-14 15:45:01 +0800366 return;
367 }
Harald Welteb983c312010-05-12 12:11:45 +0000368 /* Tns-test case: send NS-ALIVE PDU */
369 gprs_ns_tx_alive(nsvc);
370 /* start Tns-alive timer */
Harald Welte69a4cf22010-05-03 20:55:10 +0200371 nsvc_start_timer(nsvc, NSVC_TIMER_TNS_ALIVE);
Harald Welte80405452010-05-03 20:16:13 +0200372 break;
373 case NSVC_TIMER_TNS_TEST:
Harald Welte9ba50052010-03-14 15:45:01 +0800374 /* Tns-test case: send NS-ALIVE PDU */
Harald Welteb983c312010-05-12 12:11:45 +0000375 gprs_ns_tx_alive(nsvc);
376 /* start Tns-alive timer (transition into faster
377 * alive retransmissions) */
Harald Welte7c24b9e2010-05-12 12:21:52 +0000378 nsvc->alive_retries = 0;
Harald Welte69a4cf22010-05-03 20:55:10 +0200379 nsvc_start_timer(nsvc, NSVC_TIMER_TNS_ALIVE);
380 break;
381 case NSVC_TIMER_TNS_RESET:
382 /* Chapter 7.3: Re-send the RESET */
Harald Welte570fb832010-05-03 21:05:24 +0200383 gprs_ns_tx_reset(nsvc, NS_CAUSE_OM_INTERVENTION);
Harald Weltec1402a62010-05-12 11:48:44 +0200384 /* Re-start Tns-reset timer */
Harald Welte69a4cf22010-05-03 20:55:10 +0200385 nsvc_start_timer(nsvc, NSVC_TIMER_TNS_RESET);
Harald Welte80405452010-05-03 20:16:13 +0200386 break;
Harald Welte2fc725d2010-05-11 10:15:26 +0200387 case _NSVC_TIMER_NR:
388 break;
Harald Welte9ba50052010-03-14 15:45:01 +0800389 }
Harald Welte9ba50052010-03-14 15:45:01 +0800390}
391
392/* Section 9.2.6 */
Harald Weltec5478482010-03-18 00:01:43 +0800393static int gprs_ns_tx_reset_ack(struct gprs_nsvc *nsvc)
Harald Welte9ba50052010-03-14 15:45:01 +0800394{
395 struct msgb *msg = msgb_alloc(NS_ALLOC_SIZE, "GPRS/NS");
396 struct gprs_ns_hdr *nsh;
Harald Welte8f9a3ee2010-05-02 11:26:34 +0200397 uint16_t nsvci, nsei;
Harald Welte9ba50052010-03-14 15:45:01 +0800398
399 if (!msg)
400 return -ENOMEM;
401
Harald Weltec5478482010-03-18 00:01:43 +0800402 nsvci = htons(nsvc->nsvci);
403 nsei = htons(nsvc->nsei);
Harald Welte9ba50052010-03-14 15:45:01 +0800404
405 nsh = (struct gprs_ns_hdr *) msgb_put(msg, sizeof(*nsh));
406
407 nsh->pdu_type = NS_PDUT_RESET_ACK;
408
Harald Weltee4ecc8c2010-05-12 00:16:57 +0200409 LOGP(DNS, LOGL_INFO, "NSEI=%u Tx NS RESET ACK (NSVCI=%u)\n",
Harald Weltebbc9fac2010-05-03 18:54:12 +0200410 nsvc->nsei, nsvc->nsvci);
Harald Weltec5478482010-03-18 00:01:43 +0800411
Harald Welte8f9a3ee2010-05-02 11:26:34 +0200412 msgb_tvlv_put(msg, NS_IE_VCI, 2, (uint8_t *)&nsvci);
413 msgb_tvlv_put(msg, NS_IE_NSEI, 2, (uint8_t *)&nsei);
Harald Welte9ba50052010-03-14 15:45:01 +0800414
Harald Welte24a655f2010-04-30 19:54:29 +0200415 return gprs_ns_tx(nsvc, msg);
Harald Welte9ba50052010-03-14 15:45:01 +0800416}
417
Harald Welte24a655f2010-04-30 19:54:29 +0200418/* Section 9.2.10: transmit side / NS-UNITDATA-REQUEST primitive */
419int gprs_ns_sendmsg(struct gprs_ns_inst *nsi, struct msgb *msg)
Harald Welte9ba50052010-03-14 15:45:01 +0800420{
Harald Welte24a655f2010-04-30 19:54:29 +0200421 struct gprs_nsvc *nsvc;
Harald Welte9ba50052010-03-14 15:45:01 +0800422 struct gprs_ns_hdr *nsh;
Harald Welte8f9a3ee2010-05-02 11:26:34 +0200423 uint16_t bvci = msgb_bvci(msg);
Harald Welte24a655f2010-04-30 19:54:29 +0200424
425 nsvc = nsvc_by_nsei(nsi, msgb_nsei(msg));
426 if (!nsvc) {
Harald Welteb8a6a832010-05-11 05:54:22 +0200427 LOGP(DNS, LOGL_ERROR, "Unable to resolve NSEI %u "
Harald Weltebbc9fac2010-05-03 18:54:12 +0200428 "to NS-VC!\n", msgb_nsei(msg));
Harald Welte24a655f2010-04-30 19:54:29 +0200429 return -EINVAL;
430 }
Harald Welte9ba50052010-03-14 15:45:01 +0800431
Harald Welte69a4cf22010-05-03 20:55:10 +0200432 if (!(nsvc->state & NSE_S_ALIVE)) {
Harald Welteb8a6a832010-05-11 05:54:22 +0200433 LOGP(DNS, LOGL_ERROR, "NSEI=%u is not alive, cannot send\n",
Harald Welte69a4cf22010-05-03 20:55:10 +0200434 nsvc->nsei);
435 return -EBUSY;
436 }
437 if (nsvc->state & NSE_S_BLOCKED) {
Harald Welteb8a6a832010-05-11 05:54:22 +0200438 LOGP(DNS, LOGL_ERROR, "NSEI=%u is blocked, cannot send\n",
Harald Welte69a4cf22010-05-03 20:55:10 +0200439 nsvc->nsei);
440 return -EBUSY;
441 }
442
Harald Welte9ba50052010-03-14 15:45:01 +0800443 nsh = (struct gprs_ns_hdr *) msgb_push(msg, sizeof(*nsh) + 3);
444 if (!nsh) {
Harald Welteb8a6a832010-05-11 05:54:22 +0200445 LOGP(DNS, LOGL_ERROR, "Not enough headroom for NS header\n");
Harald Welte9ba50052010-03-14 15:45:01 +0800446 return -EIO;
447 }
448
449 nsh->pdu_type = NS_PDUT_UNITDATA;
450 /* spare octet in data[0] */
451 nsh->data[1] = bvci >> 8;
452 nsh->data[2] = bvci & 0xff;
453
Harald Welte24a655f2010-04-30 19:54:29 +0200454 return gprs_ns_tx(nsvc, msg);
Harald Welte9ba50052010-03-14 15:45:01 +0800455}
456
457/* Section 9.2.10: receive side */
Harald Welte24a655f2010-04-30 19:54:29 +0200458static int gprs_ns_rx_unitdata(struct gprs_nsvc *nsvc, struct msgb *msg)
Harald Welte9ba50052010-03-14 15:45:01 +0800459{
460 struct gprs_ns_hdr *nsh = (struct gprs_ns_hdr *)msg->l2h;
Harald Welte8f9a3ee2010-05-02 11:26:34 +0200461 uint16_t bvci;
Harald Welte9ba50052010-03-14 15:45:01 +0800462
Harald Weltec1402a62010-05-12 11:48:44 +0200463 if (nsvc->state & NSE_S_BLOCKED)
464 return gprs_ns_tx_status(nsvc, NS_CAUSE_NSVC_BLOCKED,
465 0, msg);
466
Harald Welte9ba50052010-03-14 15:45:01 +0800467 /* spare octet in data[0] */
468 bvci = nsh->data[1] << 8 | nsh->data[2];
Harald Welteec19c102010-05-02 09:50:42 +0200469 msgb_bssgph(msg) = &nsh->data[3];
Harald Welte30bc19a2010-05-02 11:19:37 +0200470 msgb_bvci(msg) = bvci;
Harald Welte9ba50052010-03-14 15:45:01 +0800471
472 /* call upper layer (BSSGP) */
Harald Weltef030b212010-04-26 19:18:54 +0200473 return nsvc->nsi->cb(GPRS_NS_EVT_UNIT_DATA, nsvc, msg, bvci);
Harald Welte9ba50052010-03-14 15:45:01 +0800474}
475
476/* Section 9.2.7 */
Harald Welte24a655f2010-04-30 19:54:29 +0200477static int gprs_ns_rx_status(struct gprs_nsvc *nsvc, struct msgb *msg)
Harald Welte9ba50052010-03-14 15:45:01 +0800478{
Harald Weltef030b212010-04-26 19:18:54 +0200479 struct gprs_ns_hdr *nsh = (struct gprs_ns_hdr *) msg->l2h;
Harald Welte9ba50052010-03-14 15:45:01 +0800480 struct tlv_parsed tp;
Harald Welte8f9a3ee2010-05-02 11:26:34 +0200481 uint8_t cause;
Harald Welte9ba50052010-03-14 15:45:01 +0800482 int rc;
483
Harald Weltee4ecc8c2010-05-12 00:16:57 +0200484 LOGP(DNS, LOGL_INFO, "NSEI=%u NS STATUS ", nsvc->nsei);
Harald Welte9ba50052010-03-14 15:45:01 +0800485
486 rc = tlv_parse(&tp, &ns_att_tlvdef, nsh->data, msgb_l2len(msg), 0, 0);
487
488 if (!TLVP_PRESENT(&tp, NS_IE_CAUSE)) {
Harald Weltee4ecc8c2010-05-12 00:16:57 +0200489 LOGPC(DNS, LOGL_INFO, "missing cause IE\n");
Harald Welte9ba50052010-03-14 15:45:01 +0800490 return -EINVAL;
491 }
492
493 cause = *TLVP_VAL(&tp, NS_IE_CAUSE);
Harald Weltee4ecc8c2010-05-12 00:16:57 +0200494 LOGPC(DNS, LOGL_INFO, "cause=%s\n", gprs_ns_cause_str(cause));
Harald Welte9ba50052010-03-14 15:45:01 +0800495
496 return 0;
497}
498
499/* Section 7.3 */
Harald Welte24a655f2010-04-30 19:54:29 +0200500static int gprs_ns_rx_reset(struct gprs_nsvc *nsvc, struct msgb *msg)
Harald Welte9ba50052010-03-14 15:45:01 +0800501{
502 struct gprs_ns_hdr *nsh = (struct gprs_ns_hdr *) msg->l2h;
Harald Welte9ba50052010-03-14 15:45:01 +0800503 struct tlv_parsed tp;
Harald Welte8f9a3ee2010-05-02 11:26:34 +0200504 uint8_t *cause;
505 uint16_t *nsvci, *nsei;
Harald Welte9ba50052010-03-14 15:45:01 +0800506 int rc;
507
Harald Welte9ba50052010-03-14 15:45:01 +0800508 rc = tlv_parse(&tp, &ns_att_tlvdef, nsh->data, msgb_l2len(msg), 0, 0);
509
510 if (!TLVP_PRESENT(&tp, NS_IE_CAUSE) ||
511 !TLVP_PRESENT(&tp, NS_IE_VCI) ||
512 !TLVP_PRESENT(&tp, NS_IE_NSEI)) {
Harald Welteb8a6a832010-05-11 05:54:22 +0200513 LOGP(DNS, LOGL_ERROR, "NS RESET Missing mandatory IE\n");
Harald Weltec1402a62010-05-12 11:48:44 +0200514 gprs_ns_tx_status(nsvc, NS_CAUSE_MISSING_ESSENT_IE, 0, msg);
Harald Welte9ba50052010-03-14 15:45:01 +0800515 return -EINVAL;
516 }
517
Harald Welte8f9a3ee2010-05-02 11:26:34 +0200518 cause = (uint8_t *) TLVP_VAL(&tp, NS_IE_CAUSE);
519 nsvci = (uint16_t *) TLVP_VAL(&tp, NS_IE_VCI);
520 nsei = (uint16_t *) TLVP_VAL(&tp, NS_IE_NSEI);
Harald Welte9ba50052010-03-14 15:45:01 +0800521
Harald Weltee4ecc8c2010-05-12 00:16:57 +0200522 LOGP(DNS, LOGL_INFO, "NSEI=%u Rx NS RESET (NSVCI=%u, cause=%s)\n",
Harald Weltebbc9fac2010-05-03 18:54:12 +0200523 nsvc->nsvci, nsvc->nsei, gprs_ns_cause_str(*cause));
524
Harald Weltec1402a62010-05-12 11:48:44 +0200525 /* Mark NS-VC as blocked and alive */
Harald Weltec5478482010-03-18 00:01:43 +0800526 nsvc->state = NSE_S_BLOCKED | NSE_S_ALIVE;
Harald Weltee8b9ca22010-05-11 18:18:31 +0200527
Harald Weltec5478482010-03-18 00:01:43 +0800528 nsvc->nsei = ntohs(*nsei);
529 nsvc->nsvci = ntohs(*nsvci);
Harald Welte9ba50052010-03-14 15:45:01 +0800530
Harald Welte9ba50052010-03-14 15:45:01 +0800531 /* start the test procedure */
Harald Welte69a4cf22010-05-03 20:55:10 +0200532 nsvc_start_timer(nsvc, NSVC_TIMER_TNS_ALIVE);
Harald Welte9ba50052010-03-14 15:45:01 +0800533
Harald Welte834f26d2010-05-11 06:20:54 +0200534 /* inform interested parties about the fact that this NSVC
535 * has received RESET */
Harald Welte2fc725d2010-05-11 10:15:26 +0200536 ns_dispatch_signal(nsvc, S_NS_RESET, *cause);
Harald Welte834f26d2010-05-11 06:20:54 +0200537
Harald Weltec5478482010-03-18 00:01:43 +0800538 return gprs_ns_tx_reset_ack(nsvc);
Harald Welte9ba50052010-03-14 15:45:01 +0800539}
540
Harald Welte834f26d2010-05-11 06:20:54 +0200541static int gprs_ns_rx_block(struct gprs_nsvc *nsvc, struct msgb *msg)
542{
543 struct gprs_ns_hdr *nsh = (struct gprs_ns_hdr *) msg->l2h;
544 struct tlv_parsed tp;
545 uint8_t *cause;
546 int rc;
547
Harald Weltee4ecc8c2010-05-12 00:16:57 +0200548 LOGP(DNS, LOGL_INFO, "NSEI=%u Rx NS BLOCK\n", nsvc->nsei);
Harald Welte834f26d2010-05-11 06:20:54 +0200549
550 nsvc->state |= NSE_S_BLOCKED;
551
552 rc = tlv_parse(&tp, &ns_att_tlvdef, nsh->data, msgb_l2len(msg), 0, 0);
553
554 if (!TLVP_PRESENT(&tp, NS_IE_CAUSE) ||
555 !TLVP_PRESENT(&tp, NS_IE_VCI)) {
Harald Welte834f26d2010-05-11 06:20:54 +0200556 LOGP(DNS, LOGL_ERROR, "NS RESET Missing mandatory IE\n");
Harald Weltec1402a62010-05-12 11:48:44 +0200557 gprs_ns_tx_status(nsvc, NS_CAUSE_MISSING_ESSENT_IE, 0, msg);
Harald Welte834f26d2010-05-11 06:20:54 +0200558 return -EINVAL;
559 }
560
561 cause = (uint8_t *) TLVP_VAL(&tp, NS_IE_CAUSE);
562 //nsvci = (uint16_t *) TLVP_VAL(&tp, NS_IE_VCI);
563
Harald Welte2fc725d2010-05-11 10:15:26 +0200564 ns_dispatch_signal(nsvc, S_NS_BLOCK, *cause);
Harald Welte834f26d2010-05-11 06:20:54 +0200565
566 return gprs_ns_tx_simple(nsvc, NS_PDUT_BLOCK_ACK);
567}
568
Harald Welte9ba50052010-03-14 15:45:01 +0800569/* main entry point, here incoming NS frames enter */
Harald Weltef030b212010-04-26 19:18:54 +0200570int gprs_ns_rcvmsg(struct gprs_ns_inst *nsi, struct msgb *msg,
571 struct sockaddr_in *saddr)
Harald Welte9ba50052010-03-14 15:45:01 +0800572{
573 struct gprs_ns_hdr *nsh = (struct gprs_ns_hdr *) msg->l2h;
Harald Weltef030b212010-04-26 19:18:54 +0200574 struct gprs_nsvc *nsvc;
Harald Welte9ba50052010-03-14 15:45:01 +0800575 int rc = 0;
576
Harald Weltef030b212010-04-26 19:18:54 +0200577 /* look up the NSVC based on source address */
578 nsvc = nsvc_by_rem_addr(nsi, saddr);
579 if (!nsvc) {
Harald Welte9a392932010-05-11 18:30:37 +0200580 struct tlv_parsed tp;
581 uint16_t nsei;
Harald Weltef030b212010-04-26 19:18:54 +0200582 /* Only the RESET procedure creates a new NSVC */
Harald Weltebbc9fac2010-05-03 18:54:12 +0200583 if (nsh->pdu_type != NS_PDUT_RESET) {
Harald Welteb8a6a832010-05-11 05:54:22 +0200584 LOGP(DNS, LOGL_INFO, "Ignoring NS PDU type 0x%0x "
Harald Weltebba902d2010-05-11 18:38:36 +0200585 "from %s:%u for non-existing NS-VC\n",
586 nsh->pdu_type, inet_ntoa(saddr->sin_addr),
587 ntohs(saddr->sin_port));
Harald Weltec1402a62010-05-12 11:48:44 +0200588 /* FIXME: send STATUS (but we have no NSVC!) */
Harald Welte570fb832010-05-03 21:05:24 +0200589 //gprs_ns_tx_reset(nsvc, NS_CAUSE_NSVC_UNKNOWN);
Harald Weltef030b212010-04-26 19:18:54 +0200590 return -EIO;
Harald Weltebbc9fac2010-05-03 18:54:12 +0200591 }
Harald Welte9a392932010-05-11 18:30:37 +0200592 rc = tlv_parse(&tp, &ns_att_tlvdef, nsh->data,
593 msgb_l2len(msg), 0, 0);
594 if (!TLVP_PRESENT(&tp, NS_IE_CAUSE) ||
595 !TLVP_PRESENT(&tp, NS_IE_VCI) ||
596 !TLVP_PRESENT(&tp, NS_IE_NSEI)) {
Harald Welte9a392932010-05-11 18:30:37 +0200597 LOGP(DNS, LOGL_ERROR, "NS RESET Missing mandatory IE\n");
Harald Weltec1402a62010-05-12 11:48:44 +0200598 gprs_ns_tx_status(nsvc, NS_CAUSE_MISSING_ESSENT_IE, 0,
599 msg);
Harald Welte9a392932010-05-11 18:30:37 +0200600 return -EINVAL;
601 }
602 nsei = ntohs(*(uint16_t *)TLVP_VAL(&tp, NS_IE_NSEI));
603 /* Check if we already know this NSEI, the remote end might
604 * simply have changed addresses, or it is a SGSN */
605 nsvc = nsvc_by_nsei(nsi, nsei);
606 if (!nsvc) {
607 LOGP(DNS, LOGL_INFO, "Creating NS-VC for BSS at %s:%u\n",
608 inet_ntoa(saddr->sin_addr), ntohs(saddr->sin_port));
609 nsvc = nsvc_create(nsi, 0xffff);
Harald Welte9a392932010-05-11 18:30:37 +0200610 }
Harald Welte2b7d4652010-05-11 18:40:45 +0200611 /* Update the remote peer IP address/port */
612 nsvc->ip.bts_addr = *saddr;
Harald Weltebbc9fac2010-05-03 18:54:12 +0200613 } else
614 msgb_nsei(msg) = nsvc->nsei;
Harald Weltec5478482010-03-18 00:01:43 +0800615
Harald Welte9ba50052010-03-14 15:45:01 +0800616 switch (nsh->pdu_type) {
617 case NS_PDUT_ALIVE:
618 /* remote end inquires whether we're still alive,
619 * we need to respond with ALIVE_ACK */
Harald Welteb983c312010-05-12 12:11:45 +0000620 rc = gprs_ns_tx_alive_ack(nsvc);
Harald Welte9ba50052010-03-14 15:45:01 +0800621 break;
622 case NS_PDUT_ALIVE_ACK:
623 /* stop Tns-alive */
Harald Welte80405452010-05-03 20:16:13 +0200624 bsc_del_timer(&nsvc->timer);
Harald Welte9ba50052010-03-14 15:45:01 +0800625 /* start Tns-test */
Harald Welte69a4cf22010-05-03 20:55:10 +0200626 nsvc_start_timer(nsvc, NSVC_TIMER_TNS_TEST);
Harald Welte7fb7e612010-05-03 21:11:22 +0200627 if (nsvc->remote_end_is_sgsn) {
628 /* FIXME: this should be one level higher */
629 if (nsvc->state & NSE_S_BLOCKED)
Harald Weltec1402a62010-05-12 11:48:44 +0200630 rc = gprs_ns_tx_unblock(nsvc);
Harald Welte7fb7e612010-05-03 21:11:22 +0200631 }
Harald Welte9ba50052010-03-14 15:45:01 +0800632 break;
633 case NS_PDUT_UNITDATA:
634 /* actual user data */
Harald Welte24a655f2010-04-30 19:54:29 +0200635 rc = gprs_ns_rx_unitdata(nsvc, msg);
Harald Welte9ba50052010-03-14 15:45:01 +0800636 break;
637 case NS_PDUT_STATUS:
Harald Welte24a655f2010-04-30 19:54:29 +0200638 rc = gprs_ns_rx_status(nsvc, msg);
Harald Welte9ba50052010-03-14 15:45:01 +0800639 break;
640 case NS_PDUT_RESET:
Harald Welte24a655f2010-04-30 19:54:29 +0200641 rc = gprs_ns_rx_reset(nsvc, msg);
Harald Welte9ba50052010-03-14 15:45:01 +0800642 break;
643 case NS_PDUT_RESET_ACK:
Harald Weltee4ecc8c2010-05-12 00:16:57 +0200644 LOGP(DNS, LOGL_INFO, "NSEI=%u Rx NS RESET ACK\n", nsvc->nsei);
Harald Weltec1402a62010-05-12 11:48:44 +0200645 /* mark NS-VC as blocked + active */
646 nsvc->state = NSE_S_BLOCKED | NSE_S_ALIVE;
Harald Weltef030b212010-04-26 19:18:54 +0200647 nsvc->remote_state = NSE_S_BLOCKED | NSE_S_ALIVE;
Harald Welte69a4cf22010-05-03 20:55:10 +0200648 if (nsvc->remote_end_is_sgsn) {
649 /* stop RESET timer */
650 bsc_del_timer(&nsvc->timer);
Harald Weltec1402a62010-05-12 11:48:44 +0200651 /* Initiate TEST proc.: Send ALIVE and start timer */
Harald Welte570fb832010-05-03 21:05:24 +0200652 rc = gprs_ns_tx_simple(nsvc, NS_PDUT_ALIVE);
653 nsvc_start_timer(nsvc, NSVC_TIMER_TNS_ALIVE);
Harald Welte69a4cf22010-05-03 20:55:10 +0200654 }
Harald Welte9ba50052010-03-14 15:45:01 +0800655 break;
656 case NS_PDUT_UNBLOCK:
657 /* Section 7.2: unblocking procedure */
Harald Weltee4ecc8c2010-05-12 00:16:57 +0200658 LOGP(DNS, LOGL_INFO, "NSEI=%u Rx NS UNBLOCK\n", nsvc->nsei);
Harald Welte9ba50052010-03-14 15:45:01 +0800659 nsvc->state &= ~NSE_S_BLOCKED;
Harald Welte834f26d2010-05-11 06:20:54 +0200660 ns_dispatch_signal(nsvc, S_NS_UNBLOCK, 0);
Harald Weltec5478482010-03-18 00:01:43 +0800661 rc = gprs_ns_tx_simple(nsvc, NS_PDUT_UNBLOCK_ACK);
Harald Welte9ba50052010-03-14 15:45:01 +0800662 break;
663 case NS_PDUT_UNBLOCK_ACK:
Harald Weltee4ecc8c2010-05-12 00:16:57 +0200664 LOGP(DNS, LOGL_INFO, "NSEI=%u Rx NS UNBLOCK ACK\n", nsvc->nsei);
Harald Weltec1402a62010-05-12 11:48:44 +0200665 /* mark NS-VC as unblocked + active */
666 nsvc->state = NSE_S_ALIVE;
Harald Weltef030b212010-04-26 19:18:54 +0200667 nsvc->remote_state = NSE_S_ALIVE;
Harald Welte9ba50052010-03-14 15:45:01 +0800668 break;
669 case NS_PDUT_BLOCK:
Harald Welte834f26d2010-05-11 06:20:54 +0200670 rc = gprs_ns_rx_block(nsvc, msg);
Harald Welte9ba50052010-03-14 15:45:01 +0800671 break;
672 case NS_PDUT_BLOCK_ACK:
Harald Weltee4ecc8c2010-05-12 00:16:57 +0200673 LOGP(DNS, LOGL_INFO, "NSEI=%u Rx NS BLOCK ACK\n", nsvc->nsei);
Harald Weltef030b212010-04-26 19:18:54 +0200674 /* mark remote NS-VC as blocked + active */
675 nsvc->remote_state = NSE_S_BLOCKED | NSE_S_ALIVE;
Harald Welte9ba50052010-03-14 15:45:01 +0800676 break;
677 default:
Harald Weltee4ecc8c2010-05-12 00:16:57 +0200678 LOGP(DNS, LOGL_NOTICE, "NSEI=%u Rx Unknown NS PDU type 0x%02x\n",
Harald Weltebbc9fac2010-05-03 18:54:12 +0200679 nsvc->nsei, nsh->pdu_type);
Harald Welte9ba50052010-03-14 15:45:01 +0800680 rc = -EINVAL;
681 break;
682 }
683 return rc;
684}
685
Harald Weltef030b212010-04-26 19:18:54 +0200686struct gprs_ns_inst *gprs_ns_instantiate(gprs_ns_cb_t *cb)
687{
688 struct gprs_ns_inst *nsi = talloc_zero(tall_bsc_ctx, struct gprs_ns_inst);
689
690 nsi->cb = cb;
691 INIT_LLIST_HEAD(&nsi->gprs_nsvcs);
692
Harald Welte3771d092010-04-30 20:26:32 +0200693 return nsi;
Harald Weltef030b212010-04-26 19:18:54 +0200694}
695
696void gprs_ns_destroy(struct gprs_ns_inst *nsi)
697{
698 /* FIXME: clear all timers */
699
700 /* recursively free the NSI and all its NSVCs */
701 talloc_free(nsi);
702}
703
704
705/* NS-over-IP code, according to 3GPP TS 48.016 Chapter 6.2
706 * We don't support Size Procedure, Configuration Procedure, ChangeWeight Procedure */
707
708/* Read a single NS-over-IP message */
709static struct msgb *read_nsip_msg(struct bsc_fd *bfd, int *error,
710 struct sockaddr_in *saddr)
711{
712 struct msgb *msg = msgb_alloc(NS_ALLOC_SIZE, "Abis/IP/GPRS-NS");
713 int ret = 0;
714 socklen_t saddr_len = sizeof(*saddr);
715
716 if (!msg) {
717 *error = -ENOMEM;
718 return NULL;
719 }
720
721 ret = recvfrom(bfd->fd, msg->data, NS_ALLOC_SIZE, 0,
722 (struct sockaddr *)saddr, &saddr_len);
723 if (ret < 0) {
Harald Welteb8a6a832010-05-11 05:54:22 +0200724 LOGP(DNS, LOGL_ERROR, "recv error %s during NSIP recv\n",
Harald Weltebbc9fac2010-05-03 18:54:12 +0200725 strerror(errno));
Harald Weltef030b212010-04-26 19:18:54 +0200726 msgb_free(msg);
727 *error = ret;
728 return NULL;
729 } else if (ret == 0) {
730 msgb_free(msg);
731 *error = ret;
732 return NULL;
733 }
734
735 msg->l2h = msg->data;
736 msgb_put(msg, ret);
737
738 return msg;
739}
740
741static int handle_nsip_read(struct bsc_fd *bfd)
742{
743 int error;
744 struct sockaddr_in saddr;
745 struct gprs_ns_inst *nsi = bfd->data;
746 struct msgb *msg = read_nsip_msg(bfd, &error, &saddr);
747
748 if (!msg)
749 return error;
750
751 return gprs_ns_rcvmsg(nsi, msg, &saddr);
752}
753
754static int handle_nsip_write(struct bsc_fd *bfd)
755{
756 /* FIXME: actually send the data here instead of nsip_sendmsg() */
757 return -EIO;
758}
759
Harald Welte24a655f2010-04-30 19:54:29 +0200760int nsip_sendmsg(struct gprs_nsvc *nsvc, struct msgb *msg)
Harald Weltef030b212010-04-26 19:18:54 +0200761{
762 int rc;
763 struct gprs_ns_inst *nsi = nsvc->nsi;
764 struct sockaddr_in *daddr = &nsvc->ip.bts_addr;
765
766 rc = sendto(nsi->nsip.fd.fd, msg->data, msg->len, 0,
767 (struct sockaddr *)daddr, sizeof(*daddr));
768
769 talloc_free(msg);
770
771 return rc;
772}
773
774/* UDP Port 23000 carries the LLC-in-BSSGP-in-NS protocol stack */
775static int nsip_fd_cb(struct bsc_fd *bfd, unsigned int what)
776{
777 int rc = 0;
778
779 if (what & BSC_FD_READ)
780 rc = handle_nsip_read(bfd);
781 if (what & BSC_FD_WRITE)
782 rc = handle_nsip_write(bfd);
783
784 return rc;
785}
786
787
788/* FIXME: this is currently in input/ipaccess.c */
Harald Welte8f9a3ee2010-05-02 11:26:34 +0200789extern int make_sock(struct bsc_fd *bfd, int proto, uint16_t port,
Harald Weltef030b212010-04-26 19:18:54 +0200790 int (*cb)(struct bsc_fd *fd, unsigned int what));
791
792/* Listen for incoming GPRS packets */
793int nsip_listen(struct gprs_ns_inst *nsi, uint16_t udp_port)
794{
795 int ret;
796
797 ret = make_sock(&nsi->nsip.fd, IPPROTO_UDP, udp_port, nsip_fd_cb);
798 if (ret < 0)
799 return ret;
800
801 nsi->ll = GPRS_NS_LL_UDP;
802 nsi->nsip.fd.data = nsi;
803
804 return ret;
805}
Harald Welte3771d092010-04-30 20:26:32 +0200806
807/* Establish a connection (from the BSS) to the SGSN */
808struct gprs_nsvc *nsip_connect(struct gprs_ns_inst *nsi,
Harald Welte1203de32010-05-01 11:28:43 +0200809 struct sockaddr_in *dest, uint16_t nsei,
810 uint16_t nsvci)
Harald Welte3771d092010-04-30 20:26:32 +0200811{
812 struct gprs_nsvc *nsvc;
813
814 nsvc = nsvc_by_rem_addr(nsi, dest);
Harald Welte38407ef2010-05-12 11:56:39 +0000815 if (!nsvc)
Harald Welte3771d092010-04-30 20:26:32 +0200816 nsvc = nsvc_create(nsi, nsvci);
Harald Welte38407ef2010-05-12 11:56:39 +0000817 nsvc->ip.bts_addr = *dest;
Harald Welte1203de32010-05-01 11:28:43 +0200818 nsvc->nsei = nsei;
819 nsvc->nsvci = nsvci;
Harald Welte3771d092010-04-30 20:26:32 +0200820 nsvc->remote_end_is_sgsn = 1;
821
822 /* Initiate a RESET procedure */
Harald Weltec1402a62010-05-12 11:48:44 +0200823 /* Mark NS-VC locally as blocked and dead */
824 nsvc->state = NSE_S_BLOCKED;
825 /* Send NS-RESET PDU */
Harald Welte570fb832010-05-03 21:05:24 +0200826 if (gprs_ns_tx_reset(nsvc, NS_CAUSE_OM_INTERVENTION) < 0) {
Harald Welteb8a6a832010-05-11 05:54:22 +0200827 LOGP(DNS, LOGL_ERROR, "NSEI=%u, error resetting NS-VC\n",
Harald Welte69a4cf22010-05-03 20:55:10 +0200828 nsei);
829 }
Harald Weltec1402a62010-05-12 11:48:44 +0200830 /* Start Tns-reset */
Harald Welte69a4cf22010-05-03 20:55:10 +0200831 nsvc_start_timer(nsvc, NSVC_TIMER_TNS_RESET);
Harald Welte3771d092010-04-30 20:26:32 +0200832
833 return nsvc;
834}