blob: 50ab8203f40ba0bc8073bae7e3f514eb835039d2 [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
Harald Weltedd1c83c2010-05-13 13:58:08 +020047/* This implementation has the following limitations:
48 * o Only one NS-VC for each NSE: No load-sharing function
49 * o NSVCI 65535 and 65534 are reserved for internal use
50 * o Only UDP is supported as of now, no frame relay support
51 * o The IP Sub-Network-Service (SNS) as specified in 48.016 is not implemented
52 * o There are no BLOCK and UNBLOCK timers (yet?)
53 */
54
Harald Welte9ba50052010-03-14 15:45:01 +080055#include <stdlib.h>
56#include <unistd.h>
57#include <errno.h>
Harald Welte8f9a3ee2010-05-02 11:26:34 +020058#include <stdint.h>
Harald Welte9ba50052010-03-14 15:45:01 +080059
60#include <arpa/inet.h>
61
62#include <openbsc/gsm_data.h>
63#include <osmocore/msgb.h>
64#include <osmocore/tlv.h>
65#include <osmocore/talloc.h>
Harald Weltef030b212010-04-26 19:18:54 +020066#include <osmocore/select.h>
Harald Welte144e0292010-05-13 11:45:07 +020067#include <osmocore/rate_ctr.h>
Harald Welte9ba50052010-03-14 15:45:01 +080068#include <openbsc/debug.h>
Harald Welte834f26d2010-05-11 06:20:54 +020069#include <openbsc/signal.h>
Harald Welte9ba50052010-03-14 15:45:01 +080070#include <openbsc/gprs_ns.h>
71#include <openbsc/gprs_bssgp.h>
72
73#define NS_ALLOC_SIZE 1024
74
75static const struct tlv_definition ns_att_tlvdef = {
76 .def = {
77 [NS_IE_CAUSE] = { TLV_TYPE_TvLV, 0 },
78 [NS_IE_VCI] = { TLV_TYPE_TvLV, 0 },
79 [NS_IE_PDU] = { TLV_TYPE_TvLV, 0 },
80 [NS_IE_BVCI] = { TLV_TYPE_TvLV, 0 },
81 [NS_IE_NSEI] = { TLV_TYPE_TvLV, 0 },
82 },
83};
84
Harald Weltec51c23c2010-05-13 12:55:20 +020085enum ns_ctr {
86 NS_CTR_PKTS_IN,
87 NS_CTR_PKTS_OUT,
88 NS_CTR_BYTES_IN,
89 NS_CTR_BYTES_OUT,
90 NS_CTR_BLOCKED,
91 NS_CTR_DEAD,
92};
93
Harald Welte144e0292010-05-13 11:45:07 +020094static const struct rate_ctr_desc nsvc_ctr_description[] = {
95 { "packets.in", "Packets at NS Level ( In)" },
Harald Weltec51c23c2010-05-13 12:55:20 +020096 { "packets.out","Packets at NS Level (Out)" },
97 { "bytes.in", "Bytes at NS Level ( In)" },
98 { "bytes.out", "Bytes at NS Level (Out)" },
99 { "blocked", "NS-VC Block count " },
100 { "dead", "NS-VC gone dead count " },
Harald Welte144e0292010-05-13 11:45:07 +0200101};
102
103static const struct rate_ctr_group_desc nsvc_ctrg_desc = {
Harald Weltec51c23c2010-05-13 12:55:20 +0200104 .group_name_prefix = "ns.nsvc",
Harald Welte144e0292010-05-13 11:45:07 +0200105 .group_description = "NSVC Peer Statistics",
106 .num_ctr = ARRAY_SIZE(nsvc_ctr_description),
107 .ctr_desc = nsvc_ctr_description,
108};
109
Harald Weltef030b212010-04-26 19:18:54 +0200110/* Lookup struct gprs_nsvc based on NSVCI */
111static struct gprs_nsvc *nsvc_by_nsvci(struct gprs_ns_inst *nsi,
Harald Welte8f9a3ee2010-05-02 11:26:34 +0200112 uint16_t nsvci)
Harald Weltef030b212010-04-26 19:18:54 +0200113{
114 struct gprs_nsvc *nsvc;
115 llist_for_each_entry(nsvc, &nsi->gprs_nsvcs, list) {
116 if (nsvc->nsvci == nsvci)
117 return nsvc;
118 }
119 return NULL;
120}
121
Harald Welte24a655f2010-04-30 19:54:29 +0200122/* Lookup struct gprs_nsvc based on NSVCI */
Harald Welte144e0292010-05-13 11:45:07 +0200123struct gprs_nsvc *nsvc_by_nsei(struct gprs_ns_inst *nsi, uint16_t nsei)
Harald Welte24a655f2010-04-30 19:54:29 +0200124{
125 struct gprs_nsvc *nsvc;
126 llist_for_each_entry(nsvc, &nsi->gprs_nsvcs, list) {
127 if (nsvc->nsei == nsei)
128 return nsvc;
129 }
130 return NULL;
131}
132
Harald Weltef030b212010-04-26 19:18:54 +0200133/* Lookup struct gprs_nsvc based on remote peer socket addr */
134static struct gprs_nsvc *nsvc_by_rem_addr(struct gprs_ns_inst *nsi,
135 struct sockaddr_in *sin)
136{
137 struct gprs_nsvc *nsvc;
138 llist_for_each_entry(nsvc, &nsi->gprs_nsvcs, list) {
Harald Welte38407ef2010-05-12 11:56:39 +0000139 if (nsvc->ip.bts_addr.sin_addr.s_addr ==
140 sin->sin_addr.s_addr &&
141 nsvc->ip.bts_addr.sin_port == sin->sin_port)
Harald Weltef030b212010-04-26 19:18:54 +0200142 return nsvc;
143 }
144 return NULL;
145}
146
Harald Welte69a4cf22010-05-03 20:55:10 +0200147static void gprs_ns_timer_cb(void *data);
148
Harald Welte144e0292010-05-13 11:45:07 +0200149struct gprs_nsvc *nsvc_create(struct gprs_ns_inst *nsi, uint16_t nsvci)
Harald Weltef030b212010-04-26 19:18:54 +0200150{
151 struct gprs_nsvc *nsvc;
152
153 nsvc = talloc_zero(nsi, struct gprs_nsvc);
154 nsvc->nsvci = nsvci;
155 /* before RESET procedure: BLOCKED and DEAD */
156 nsvc->state = NSE_S_BLOCKED;
157 nsvc->nsi = nsi;
Harald Welte69a4cf22010-05-03 20:55:10 +0200158 nsvc->timer.cb = gprs_ns_timer_cb;
159 nsvc->timer.data = nsvc;
Harald Welte144e0292010-05-13 11:45:07 +0200160 nsvc->ctrg = rate_ctr_group_alloc(nsvc, &nsvc_ctrg_desc, nsvci);
Harald Welte69a4cf22010-05-03 20:55:10 +0200161
Harald Weltef030b212010-04-26 19:18:54 +0200162 llist_add(&nsvc->list, &nsi->gprs_nsvcs);
163
164 return nsvc;
165}
Harald Welte9ba50052010-03-14 15:45:01 +0800166
Harald Welte144e0292010-05-13 11:45:07 +0200167void nsvc_delete(struct gprs_nsvc *nsvc)
Harald Welte2bffac52010-05-12 15:55:23 +0000168{
169 if (bsc_timer_pending(&nsvc->timer))
170 bsc_del_timer(&nsvc->timer);
171 llist_del(&nsvc->list);
172 talloc_free(nsvc);
173}
174
Harald Welte2fc725d2010-05-11 10:15:26 +0200175static void ns_dispatch_signal(struct gprs_nsvc *nsvc, unsigned int signal,
Harald Welte834f26d2010-05-11 06:20:54 +0200176 uint8_t cause)
177{
178 struct ns_signal_data nssd;
179
180 nssd.nsvc = nsvc;
181 nssd.cause = cause;
182
183 dispatch_signal(SS_NS, signal, &nssd);
184}
185
Harald Welte9ba50052010-03-14 15:45:01 +0800186/* Section 10.3.2, Table 13 */
Harald Welte2577d412010-05-02 09:37:45 +0200187static const struct value_string ns_cause_str[] = {
188 { NS_CAUSE_TRANSIT_FAIL, "Transit network failure" },
189 { NS_CAUSE_OM_INTERVENTION, "O&M intervention" },
190 { NS_CAUSE_EQUIP_FAIL, "Equipment failure" },
191 { NS_CAUSE_NSVC_BLOCKED, "NS-VC blocked" },
192 { NS_CAUSE_NSVC_UNKNOWN, "NS-VC unknown" },
193 { NS_CAUSE_BVCI_UNKNOWN, "BVCI unknown" },
194 { NS_CAUSE_SEM_INCORR_PDU, "Semantically incorrect PDU" },
195 { NS_CAUSE_PDU_INCOMP_PSTATE, "PDU not compatible with protocol state" },
Harald Welte69a4cf22010-05-03 20:55:10 +0200196 { NS_CAUSE_PROTO_ERR_UNSPEC, "Protocol error, unspecified" },
Harald Welte2577d412010-05-02 09:37:45 +0200197 { NS_CAUSE_INVAL_ESSENT_IE, "Invalid essential IE" },
198 { NS_CAUSE_MISSING_ESSENT_IE, "Missing essential IE" },
199 { 0, NULL }
Harald Welte9ba50052010-03-14 15:45:01 +0800200};
201
Harald Welte2577d412010-05-02 09:37:45 +0200202const char *gprs_ns_cause_str(enum ns_cause cause)
Harald Welte9ba50052010-03-14 15:45:01 +0800203{
Harald Welte2577d412010-05-02 09:37:45 +0200204 return get_value_string(ns_cause_str, cause);
Harald Welte9ba50052010-03-14 15:45:01 +0800205}
206
Harald Welte24a655f2010-04-30 19:54:29 +0200207static int nsip_sendmsg(struct gprs_nsvc *nsvc, struct msgb *msg);
Harald Weltef030b212010-04-26 19:18:54 +0200208
Harald Welte24a655f2010-04-30 19:54:29 +0200209static int gprs_ns_tx(struct gprs_nsvc *nsvc, struct msgb *msg)
Harald Welte9ba50052010-03-14 15:45:01 +0800210{
Harald Weltef030b212010-04-26 19:18:54 +0200211 int ret;
212
Harald Welte144e0292010-05-13 11:45:07 +0200213 /* Increment number of Uplink bytes */
Harald Weltec51c23c2010-05-13 12:55:20 +0200214 rate_ctr_inc(&nsvc->ctrg->ctr[NS_CTR_PKTS_OUT]);
215 rate_ctr_add(&nsvc->ctrg->ctr[NS_CTR_BYTES_OUT], msgb_l2len(msg));
Harald Welte144e0292010-05-13 11:45:07 +0200216
Harald Weltef030b212010-04-26 19:18:54 +0200217 switch (nsvc->nsi->ll) {
218 case GPRS_NS_LL_UDP:
Harald Welte24a655f2010-04-30 19:54:29 +0200219 ret = nsip_sendmsg(nsvc, msg);
Harald Weltef030b212010-04-26 19:18:54 +0200220 break;
221 default:
Harald Welteb8a6a832010-05-11 05:54:22 +0200222 LOGP(DNS, LOGL_ERROR, "unsupported NS linklayer %u\n", nsvc->nsi->ll);
Harald Weltef030b212010-04-26 19:18:54 +0200223 msgb_free(msg);
224 ret = -EIO;
225 break;
226 }
227 return ret;
Harald Welte9ba50052010-03-14 15:45:01 +0800228}
229
Harald Welte8f9a3ee2010-05-02 11:26:34 +0200230static int gprs_ns_tx_simple(struct gprs_nsvc *nsvc, uint8_t pdu_type)
Harald Welte9ba50052010-03-14 15:45:01 +0800231{
232 struct msgb *msg = msgb_alloc(NS_ALLOC_SIZE, "GPRS/NS");
233 struct gprs_ns_hdr *nsh;
234
235 if (!msg)
236 return -ENOMEM;
237
Harald Welte144e0292010-05-13 11:45:07 +0200238 msg->l2h = msgb_put(msg, sizeof(*nsh));
239 nsh = (struct gprs_ns_hdr *) msg->l2h;
Harald Welte9ba50052010-03-14 15:45:01 +0800240
241 nsh->pdu_type = pdu_type;
242
Harald Welte24a655f2010-04-30 19:54:29 +0200243 return gprs_ns_tx(nsvc, msg);
Harald Welte9ba50052010-03-14 15:45:01 +0800244}
245
Harald Welte834f26d2010-05-11 06:20:54 +0200246int gprs_ns_tx_reset(struct gprs_nsvc *nsvc, uint8_t cause)
Harald Welte69a4cf22010-05-03 20:55:10 +0200247{
248 struct msgb *msg = msgb_alloc(NS_ALLOC_SIZE, "GPRS/NS");
249 struct gprs_ns_hdr *nsh;
Harald Welte69a4cf22010-05-03 20:55:10 +0200250 uint16_t nsvci = htons(nsvc->nsvci);
251 uint16_t nsei = htons(nsvc->nsei);
252
253 if (!msg)
254 return -ENOMEM;
255
Harald Welte6ecaa3d2010-05-12 12:01:33 +0000256 LOGP(DNS, LOGL_INFO, "NSEI=%u Tx NS RESET (NSVCI=%u, cause=%s)\n",
257 nsvc->nsei, nsvc->nsvci, gprs_ns_cause_str(cause));
258
Harald Welte144e0292010-05-13 11:45:07 +0200259 msg->l2h = msgb_put(msg, sizeof(*nsh));
260 nsh = (struct gprs_ns_hdr *) msg->l2h;
Harald Welte69a4cf22010-05-03 20:55:10 +0200261 nsh->pdu_type = NS_PDUT_RESET;
262
263 msgb_tvlv_put(msg, NS_IE_CAUSE, 1, &cause);
264 msgb_tvlv_put(msg, NS_IE_VCI, 2, (uint8_t *) &nsvci);
265 msgb_tvlv_put(msg, NS_IE_NSEI, 2, (uint8_t *) &nsei);
266
267 return gprs_ns_tx(nsvc, msg);
268
269}
270
Harald Weltec1402a62010-05-12 11:48:44 +0200271int gprs_ns_tx_status(struct gprs_nsvc *nsvc, uint8_t cause,
272 uint16_t bvci, struct msgb *orig_msg)
273{
274 struct msgb *msg = msgb_alloc(NS_ALLOC_SIZE, "GPRS/NS");
275 struct gprs_ns_hdr *nsh;
276 uint16_t nsvci = htons(nsvc->nsvci);
277
278 bvci = htons(bvci);
279
280 if (!msg)
281 return -ENOMEM;
282
Harald Welte6ecaa3d2010-05-12 12:01:33 +0000283 LOGP(DNS, LOGL_INFO, "NSEI=%u Tx NS STATUS (NSVCI=%u, cause=%s)\n",
284 nsvc->nsei, nsvc->nsvci, gprs_ns_cause_str(cause));
285
Harald Welte144e0292010-05-13 11:45:07 +0200286 msg->l2h = msgb_put(msg, sizeof(*nsh));
287 nsh = (struct gprs_ns_hdr *) msg->l2h;
Harald Weltec1402a62010-05-12 11:48:44 +0200288 nsh->pdu_type = NS_PDUT_STATUS;
289
290 msgb_tvlv_put(msg, NS_IE_CAUSE, 1, &cause);
291
292 /* Section 9.2.7.1: Static conditions for NS-VCI */
293 if (cause == NS_CAUSE_NSVC_BLOCKED ||
294 cause == NS_CAUSE_NSVC_UNKNOWN)
295 msgb_tvlv_put(msg, NS_IE_VCI, 2, (uint8_t *)&nsvci);
296
297 /* Section 9.2.7.2: Static conditions for NS PDU */
298 switch (cause) {
299 case NS_CAUSE_SEM_INCORR_PDU:
300 case NS_CAUSE_PDU_INCOMP_PSTATE:
301 case NS_CAUSE_PROTO_ERR_UNSPEC:
302 case NS_CAUSE_INVAL_ESSENT_IE:
303 case NS_CAUSE_MISSING_ESSENT_IE:
304 msgb_tvlv_put(msg, NS_IE_PDU, msgb_l2len(orig_msg),
305 orig_msg->l2h);
306 break;
307 default:
308 break;
309 }
310
311 /* Section 9.2.7.3: Static conditions for BVCI */
312 if (cause == NS_CAUSE_BVCI_UNKNOWN)
313 msgb_tvlv_put(msg, NS_IE_VCI, 2, (uint8_t *)&bvci);
314
315 return gprs_ns_tx(nsvc, msg);
316}
317
Harald Welte834f26d2010-05-11 06:20:54 +0200318int gprs_ns_tx_block(struct gprs_nsvc *nsvc, uint8_t cause)
319{
320 struct msgb *msg = msgb_alloc(NS_ALLOC_SIZE, "GPRS/NS");
321 struct gprs_ns_hdr *nsh;
322 uint16_t nsvci = htons(nsvc->nsvci);
323
324 if (!msg)
325 return -ENOMEM;
326
Harald Welte6ecaa3d2010-05-12 12:01:33 +0000327 LOGP(DNS, LOGL_INFO, "NSEI=%u Tx NS BLOCK (NSVCI=%u, cause=%s)\n",
328 nsvc->nsei, nsvc->nsvci, gprs_ns_cause_str(cause));
329
Harald Welte834f26d2010-05-11 06:20:54 +0200330 /* be conservative and mark it as blocked even now! */
331 nsvc->state |= NSE_S_BLOCKED;
Harald Weltec51c23c2010-05-13 12:55:20 +0200332 rate_ctr_inc(&nsvc->ctrg->ctr[NS_CTR_BLOCKED]);
Harald Welte834f26d2010-05-11 06:20:54 +0200333
Harald Welte144e0292010-05-13 11:45:07 +0200334 msg->l2h = msgb_put(msg, sizeof(*nsh));
335 nsh = (struct gprs_ns_hdr *) msg->l2h;
Harald Welte834f26d2010-05-11 06:20:54 +0200336 nsh->pdu_type = NS_PDUT_BLOCK;
337
338 msgb_tvlv_put(msg, NS_IE_CAUSE, 1, &cause);
339 msgb_tvlv_put(msg, NS_IE_VCI, 2, (uint8_t *) &nsvci);
340
341 return gprs_ns_tx(nsvc, msg);
342}
343
344int gprs_ns_tx_unblock(struct gprs_nsvc *nsvc)
345{
Harald Welte6ecaa3d2010-05-12 12:01:33 +0000346 LOGP(DNS, LOGL_INFO, "NSEI=%u Tx NS UNBLOCK (NSVCI=%u)\n",
347 nsvc->nsei, nsvc->nsvci);
348
Harald Welte834f26d2010-05-11 06:20:54 +0200349 return gprs_ns_tx_simple(nsvc, NS_PDUT_UNBLOCK);
350}
351
Harald Welteb983c312010-05-12 12:11:45 +0000352int gprs_ns_tx_alive(struct gprs_nsvc *nsvc)
353{
354 LOGP(DNS, LOGL_DEBUG, "NSEI=%u Tx NS ALIVE (NSVCI=%u)\n",
355 nsvc->nsei, nsvc->nsvci);
356
357 return gprs_ns_tx_simple(nsvc, NS_PDUT_ALIVE);
358}
359
360int gprs_ns_tx_alive_ack(struct gprs_nsvc *nsvc)
361{
362 LOGP(DNS, LOGL_DEBUG, "NSEI=%u Tx NS ALIVE_ACK (NSVCI=%u)\n",
363 nsvc->nsei, nsvc->nsvci);
364
365 return gprs_ns_tx_simple(nsvc, NS_PDUT_ALIVE_ACK);
366}
367
Harald Weltefe4ab902010-05-12 17:19:53 +0000368static const enum ns_timeout timer_mode_tout[_NSVC_TIMER_NR] = {
369 [NSVC_TIMER_TNS_RESET] = NS_TOUT_TNS_RESET,
370 [NSVC_TIMER_TNS_ALIVE] = NS_TOUT_TNS_ALIVE,
371 [NSVC_TIMER_TNS_TEST] = NS_TOUT_TNS_TEST,
Harald Welte69a4cf22010-05-03 20:55:10 +0200372};
373
Harald Welte7c24b9e2010-05-12 12:21:52 +0000374static const struct value_string timer_mode_strs[] = {
375 { NSVC_TIMER_TNS_RESET, "tns-reset" },
376 { NSVC_TIMER_TNS_ALIVE, "tns-alive" },
377 { NSVC_TIMER_TNS_TEST, "tns-test" },
378 { 0, NULL }
379};
380
Harald Welte69a4cf22010-05-03 20:55:10 +0200381static void nsvc_start_timer(struct gprs_nsvc *nsvc, enum nsvc_timer_mode mode)
382{
Harald Weltefe4ab902010-05-12 17:19:53 +0000383 enum ns_timeout tout = timer_mode_tout[mode];
384 unsigned int seconds = nsvc->nsi->timeout[tout];
385
Harald Welte4e187c62010-05-12 13:55:36 +0000386 DEBUGP(DNS, "NSEI=%u Starting timer in mode %s (%u seconds)\n",
387 nsvc->nsei, get_value_string(timer_mode_strs, mode),
Harald Weltefe4ab902010-05-12 17:19:53 +0000388 seconds);
Harald Welte7c24b9e2010-05-12 12:21:52 +0000389
Harald Welte69a4cf22010-05-03 20:55:10 +0200390 if (bsc_timer_pending(&nsvc->timer))
391 bsc_del_timer(&nsvc->timer);
392
393 nsvc->timer_mode = mode;
Harald Weltefe4ab902010-05-12 17:19:53 +0000394 bsc_schedule_timer(&nsvc->timer, seconds, 0);
Harald Welte69a4cf22010-05-03 20:55:10 +0200395}
396
Harald Welte80405452010-05-03 20:16:13 +0200397static void gprs_ns_timer_cb(void *data)
Harald Welte9ba50052010-03-14 15:45:01 +0800398{
399 struct gprs_nsvc *nsvc = data;
Harald Weltefe4ab902010-05-12 17:19:53 +0000400 enum ns_timeout tout = timer_mode_tout[nsvc->timer_mode];
401 unsigned int seconds = nsvc->nsi->timeout[tout];
Harald Welte9ba50052010-03-14 15:45:01 +0800402
Harald Welte4e187c62010-05-12 13:55:36 +0000403 DEBUGP(DNS, "NSEI=%u Timer expired in mode %s (%u seconds)\n",
404 nsvc->nsei, get_value_string(timer_mode_strs, nsvc->timer_mode),
Harald Weltefe4ab902010-05-12 17:19:53 +0000405 seconds);
Harald Welte7c24b9e2010-05-12 12:21:52 +0000406
Harald Welte80405452010-05-03 20:16:13 +0200407 switch (nsvc->timer_mode) {
408 case NSVC_TIMER_TNS_ALIVE:
Harald Welte9ba50052010-03-14 15:45:01 +0800409 /* Tns-alive case: we expired without response ! */
410 nsvc->alive_retries++;
Harald Weltefe4ab902010-05-12 17:19:53 +0000411 if (nsvc->alive_retries >
412 nsvc->nsi->timeout[NS_TOUT_TNS_ALIVE_RETRIES]) {
Harald Welte9ba50052010-03-14 15:45:01 +0800413 /* mark as dead and blocked */
414 nsvc->state = NSE_S_BLOCKED;
Harald Weltec51c23c2010-05-13 12:55:20 +0200415 rate_ctr_inc(&nsvc->ctrg->ctr[NS_CTR_BLOCKED]);
416 rate_ctr_inc(&nsvc->ctrg->ctr[NS_CTR_DEAD]);
Harald Weltee4ecc8c2010-05-12 00:16:57 +0200417 LOGP(DNS, LOGL_NOTICE,
418 "NSEI=%u Tns-alive expired more then "
Harald Welte69a4cf22010-05-03 20:55:10 +0200419 "%u times, blocking NS-VC\n", nsvc->nsei,
Harald Weltefe4ab902010-05-12 17:19:53 +0000420 nsvc->nsi->timeout[NS_TOUT_TNS_ALIVE_RETRIES]);
Harald Welte4941b352010-05-12 13:28:25 +0000421 ns_dispatch_signal(nsvc, S_NS_ALIVE_EXP, 0);
Harald Weltee4ecc8c2010-05-12 00:16:57 +0200422 ns_dispatch_signal(nsvc, S_NS_BLOCK, NS_CAUSE_NSVC_BLOCKED);
Harald Welte9ba50052010-03-14 15:45:01 +0800423 return;
424 }
Harald Welteb983c312010-05-12 12:11:45 +0000425 /* Tns-test case: send NS-ALIVE PDU */
426 gprs_ns_tx_alive(nsvc);
427 /* start Tns-alive timer */
Harald Welte69a4cf22010-05-03 20:55:10 +0200428 nsvc_start_timer(nsvc, NSVC_TIMER_TNS_ALIVE);
Harald Welte80405452010-05-03 20:16:13 +0200429 break;
430 case NSVC_TIMER_TNS_TEST:
Harald Welte9ba50052010-03-14 15:45:01 +0800431 /* Tns-test case: send NS-ALIVE PDU */
Harald Welteb983c312010-05-12 12:11:45 +0000432 gprs_ns_tx_alive(nsvc);
433 /* start Tns-alive timer (transition into faster
434 * alive retransmissions) */
Harald Welte7c24b9e2010-05-12 12:21:52 +0000435 nsvc->alive_retries = 0;
Harald Welte69a4cf22010-05-03 20:55:10 +0200436 nsvc_start_timer(nsvc, NSVC_TIMER_TNS_ALIVE);
437 break;
438 case NSVC_TIMER_TNS_RESET:
439 /* Chapter 7.3: Re-send the RESET */
Harald Welte570fb832010-05-03 21:05:24 +0200440 gprs_ns_tx_reset(nsvc, NS_CAUSE_OM_INTERVENTION);
Harald Weltec1402a62010-05-12 11:48:44 +0200441 /* Re-start Tns-reset timer */
Harald Welte69a4cf22010-05-03 20:55:10 +0200442 nsvc_start_timer(nsvc, NSVC_TIMER_TNS_RESET);
Harald Welte80405452010-05-03 20:16:13 +0200443 break;
Harald Welte2fc725d2010-05-11 10:15:26 +0200444 case _NSVC_TIMER_NR:
445 break;
Harald Welte9ba50052010-03-14 15:45:01 +0800446 }
Harald Welte9ba50052010-03-14 15:45:01 +0800447}
448
449/* Section 9.2.6 */
Harald Weltec5478482010-03-18 00:01:43 +0800450static int gprs_ns_tx_reset_ack(struct gprs_nsvc *nsvc)
Harald Welte9ba50052010-03-14 15:45:01 +0800451{
452 struct msgb *msg = msgb_alloc(NS_ALLOC_SIZE, "GPRS/NS");
453 struct gprs_ns_hdr *nsh;
Harald Welte8f9a3ee2010-05-02 11:26:34 +0200454 uint16_t nsvci, nsei;
Harald Welte9ba50052010-03-14 15:45:01 +0800455
456 if (!msg)
457 return -ENOMEM;
458
Harald Weltec5478482010-03-18 00:01:43 +0800459 nsvci = htons(nsvc->nsvci);
460 nsei = htons(nsvc->nsei);
Harald Welte9ba50052010-03-14 15:45:01 +0800461
Harald Welte144e0292010-05-13 11:45:07 +0200462 msg->l2h = msgb_put(msg, sizeof(*nsh));
463 nsh = (struct gprs_ns_hdr *) msg->l2h;
Harald Welte9ba50052010-03-14 15:45:01 +0800464
465 nsh->pdu_type = NS_PDUT_RESET_ACK;
466
Harald Weltee4ecc8c2010-05-12 00:16:57 +0200467 LOGP(DNS, LOGL_INFO, "NSEI=%u Tx NS RESET ACK (NSVCI=%u)\n",
Harald Weltebbc9fac2010-05-03 18:54:12 +0200468 nsvc->nsei, nsvc->nsvci);
Harald Weltec5478482010-03-18 00:01:43 +0800469
Harald Welte8f9a3ee2010-05-02 11:26:34 +0200470 msgb_tvlv_put(msg, NS_IE_VCI, 2, (uint8_t *)&nsvci);
471 msgb_tvlv_put(msg, NS_IE_NSEI, 2, (uint8_t *)&nsei);
Harald Welte9ba50052010-03-14 15:45:01 +0800472
Harald Welte24a655f2010-04-30 19:54:29 +0200473 return gprs_ns_tx(nsvc, msg);
Harald Welte9ba50052010-03-14 15:45:01 +0800474}
475
Harald Welte24a655f2010-04-30 19:54:29 +0200476/* Section 9.2.10: transmit side / NS-UNITDATA-REQUEST primitive */
477int gprs_ns_sendmsg(struct gprs_ns_inst *nsi, struct msgb *msg)
Harald Welte9ba50052010-03-14 15:45:01 +0800478{
Harald Welte24a655f2010-04-30 19:54:29 +0200479 struct gprs_nsvc *nsvc;
Harald Welte9ba50052010-03-14 15:45:01 +0800480 struct gprs_ns_hdr *nsh;
Harald Welte8f9a3ee2010-05-02 11:26:34 +0200481 uint16_t bvci = msgb_bvci(msg);
Harald Welte24a655f2010-04-30 19:54:29 +0200482
483 nsvc = nsvc_by_nsei(nsi, msgb_nsei(msg));
484 if (!nsvc) {
Harald Welteb8a6a832010-05-11 05:54:22 +0200485 LOGP(DNS, LOGL_ERROR, "Unable to resolve NSEI %u "
Harald Weltebbc9fac2010-05-03 18:54:12 +0200486 "to NS-VC!\n", msgb_nsei(msg));
Harald Welte24a655f2010-04-30 19:54:29 +0200487 return -EINVAL;
488 }
Harald Welte9ba50052010-03-14 15:45:01 +0800489
Harald Welte69a4cf22010-05-03 20:55:10 +0200490 if (!(nsvc->state & NSE_S_ALIVE)) {
Harald Welteb8a6a832010-05-11 05:54:22 +0200491 LOGP(DNS, LOGL_ERROR, "NSEI=%u is not alive, cannot send\n",
Harald Welte69a4cf22010-05-03 20:55:10 +0200492 nsvc->nsei);
493 return -EBUSY;
494 }
495 if (nsvc->state & NSE_S_BLOCKED) {
Harald Welteb8a6a832010-05-11 05:54:22 +0200496 LOGP(DNS, LOGL_ERROR, "NSEI=%u is blocked, cannot send\n",
Harald Welte69a4cf22010-05-03 20:55:10 +0200497 nsvc->nsei);
498 return -EBUSY;
499 }
500
Harald Welteec20ba42010-05-13 12:18:49 +0200501 msg->l2h = msgb_push(msg, sizeof(*nsh) + 3);
502 nsh = (struct gprs_ns_hdr *) msg->l2h;
Harald Welte9ba50052010-03-14 15:45:01 +0800503 if (!nsh) {
Harald Welteb8a6a832010-05-11 05:54:22 +0200504 LOGP(DNS, LOGL_ERROR, "Not enough headroom for NS header\n");
Harald Welte9ba50052010-03-14 15:45:01 +0800505 return -EIO;
506 }
507
508 nsh->pdu_type = NS_PDUT_UNITDATA;
509 /* spare octet in data[0] */
510 nsh->data[1] = bvci >> 8;
511 nsh->data[2] = bvci & 0xff;
512
Harald Welte24a655f2010-04-30 19:54:29 +0200513 return gprs_ns_tx(nsvc, msg);
Harald Welte9ba50052010-03-14 15:45:01 +0800514}
515
516/* Section 9.2.10: receive side */
Harald Welte24a655f2010-04-30 19:54:29 +0200517static int gprs_ns_rx_unitdata(struct gprs_nsvc *nsvc, struct msgb *msg)
Harald Welte9ba50052010-03-14 15:45:01 +0800518{
519 struct gprs_ns_hdr *nsh = (struct gprs_ns_hdr *)msg->l2h;
Harald Welte8f9a3ee2010-05-02 11:26:34 +0200520 uint16_t bvci;
Harald Welte9ba50052010-03-14 15:45:01 +0800521
Harald Weltec1402a62010-05-12 11:48:44 +0200522 if (nsvc->state & NSE_S_BLOCKED)
523 return gprs_ns_tx_status(nsvc, NS_CAUSE_NSVC_BLOCKED,
524 0, msg);
525
Harald Welte9ba50052010-03-14 15:45:01 +0800526 /* spare octet in data[0] */
527 bvci = nsh->data[1] << 8 | nsh->data[2];
Harald Welteec19c102010-05-02 09:50:42 +0200528 msgb_bssgph(msg) = &nsh->data[3];
Harald Welte30bc19a2010-05-02 11:19:37 +0200529 msgb_bvci(msg) = bvci;
Harald Welte9ba50052010-03-14 15:45:01 +0800530
531 /* call upper layer (BSSGP) */
Harald Weltef030b212010-04-26 19:18:54 +0200532 return nsvc->nsi->cb(GPRS_NS_EVT_UNIT_DATA, nsvc, msg, bvci);
Harald Welte9ba50052010-03-14 15:45:01 +0800533}
534
535/* Section 9.2.7 */
Harald Welte24a655f2010-04-30 19:54:29 +0200536static int gprs_ns_rx_status(struct gprs_nsvc *nsvc, struct msgb *msg)
Harald Welte9ba50052010-03-14 15:45:01 +0800537{
Harald Weltef030b212010-04-26 19:18:54 +0200538 struct gprs_ns_hdr *nsh = (struct gprs_ns_hdr *) msg->l2h;
Harald Welte9ba50052010-03-14 15:45:01 +0800539 struct tlv_parsed tp;
Harald Welte8f9a3ee2010-05-02 11:26:34 +0200540 uint8_t cause;
Harald Welte9ba50052010-03-14 15:45:01 +0800541 int rc;
542
Harald Weltee4ecc8c2010-05-12 00:16:57 +0200543 LOGP(DNS, LOGL_INFO, "NSEI=%u NS STATUS ", nsvc->nsei);
Harald Welte9ba50052010-03-14 15:45:01 +0800544
545 rc = tlv_parse(&tp, &ns_att_tlvdef, nsh->data, msgb_l2len(msg), 0, 0);
546
547 if (!TLVP_PRESENT(&tp, NS_IE_CAUSE)) {
Harald Weltee4ecc8c2010-05-12 00:16:57 +0200548 LOGPC(DNS, LOGL_INFO, "missing cause IE\n");
Harald Welte9ba50052010-03-14 15:45:01 +0800549 return -EINVAL;
550 }
551
552 cause = *TLVP_VAL(&tp, NS_IE_CAUSE);
Harald Weltee4ecc8c2010-05-12 00:16:57 +0200553 LOGPC(DNS, LOGL_INFO, "cause=%s\n", gprs_ns_cause_str(cause));
Harald Welte9ba50052010-03-14 15:45:01 +0800554
555 return 0;
556}
557
558/* Section 7.3 */
Harald Welte24a655f2010-04-30 19:54:29 +0200559static int gprs_ns_rx_reset(struct gprs_nsvc *nsvc, struct msgb *msg)
Harald Welte9ba50052010-03-14 15:45:01 +0800560{
561 struct gprs_ns_hdr *nsh = (struct gprs_ns_hdr *) msg->l2h;
Harald Welte9ba50052010-03-14 15:45:01 +0800562 struct tlv_parsed tp;
Harald Welte8f9a3ee2010-05-02 11:26:34 +0200563 uint8_t *cause;
564 uint16_t *nsvci, *nsei;
Harald Welte9ba50052010-03-14 15:45:01 +0800565 int rc;
566
Harald Welte9ba50052010-03-14 15:45:01 +0800567 rc = tlv_parse(&tp, &ns_att_tlvdef, nsh->data, msgb_l2len(msg), 0, 0);
568
569 if (!TLVP_PRESENT(&tp, NS_IE_CAUSE) ||
570 !TLVP_PRESENT(&tp, NS_IE_VCI) ||
571 !TLVP_PRESENT(&tp, NS_IE_NSEI)) {
Harald Welteb8a6a832010-05-11 05:54:22 +0200572 LOGP(DNS, LOGL_ERROR, "NS RESET Missing mandatory IE\n");
Harald Weltec1402a62010-05-12 11:48:44 +0200573 gprs_ns_tx_status(nsvc, NS_CAUSE_MISSING_ESSENT_IE, 0, msg);
Harald Welte9ba50052010-03-14 15:45:01 +0800574 return -EINVAL;
575 }
576
Harald Welte8f9a3ee2010-05-02 11:26:34 +0200577 cause = (uint8_t *) TLVP_VAL(&tp, NS_IE_CAUSE);
578 nsvci = (uint16_t *) TLVP_VAL(&tp, NS_IE_VCI);
579 nsei = (uint16_t *) TLVP_VAL(&tp, NS_IE_NSEI);
Harald Welte9ba50052010-03-14 15:45:01 +0800580
Harald Weltee4ecc8c2010-05-12 00:16:57 +0200581 LOGP(DNS, LOGL_INFO, "NSEI=%u Rx NS RESET (NSVCI=%u, cause=%s)\n",
Harald Weltebbc9fac2010-05-03 18:54:12 +0200582 nsvc->nsvci, nsvc->nsei, gprs_ns_cause_str(*cause));
583
Harald Weltec1402a62010-05-12 11:48:44 +0200584 /* Mark NS-VC as blocked and alive */
Harald Weltec5478482010-03-18 00:01:43 +0800585 nsvc->state = NSE_S_BLOCKED | NSE_S_ALIVE;
Harald Weltee8b9ca22010-05-11 18:18:31 +0200586
Harald Weltec5478482010-03-18 00:01:43 +0800587 nsvc->nsei = ntohs(*nsei);
588 nsvc->nsvci = ntohs(*nsvci);
Harald Welte9ba50052010-03-14 15:45:01 +0800589
Harald Welte9ba50052010-03-14 15:45:01 +0800590 /* start the test procedure */
Harald Welte69a4cf22010-05-03 20:55:10 +0200591 nsvc_start_timer(nsvc, NSVC_TIMER_TNS_ALIVE);
Harald Welte9ba50052010-03-14 15:45:01 +0800592
Harald Welte834f26d2010-05-11 06:20:54 +0200593 /* inform interested parties about the fact that this NSVC
594 * has received RESET */
Harald Welte2fc725d2010-05-11 10:15:26 +0200595 ns_dispatch_signal(nsvc, S_NS_RESET, *cause);
Harald Welte834f26d2010-05-11 06:20:54 +0200596
Harald Weltec5478482010-03-18 00:01:43 +0800597 return gprs_ns_tx_reset_ack(nsvc);
Harald Welte9ba50052010-03-14 15:45:01 +0800598}
599
Harald Welte834f26d2010-05-11 06:20:54 +0200600static int gprs_ns_rx_block(struct gprs_nsvc *nsvc, struct msgb *msg)
601{
602 struct gprs_ns_hdr *nsh = (struct gprs_ns_hdr *) msg->l2h;
603 struct tlv_parsed tp;
604 uint8_t *cause;
605 int rc;
606
Harald Weltee4ecc8c2010-05-12 00:16:57 +0200607 LOGP(DNS, LOGL_INFO, "NSEI=%u Rx NS BLOCK\n", nsvc->nsei);
Harald Welte834f26d2010-05-11 06:20:54 +0200608
609 nsvc->state |= NSE_S_BLOCKED;
610
611 rc = tlv_parse(&tp, &ns_att_tlvdef, nsh->data, msgb_l2len(msg), 0, 0);
612
613 if (!TLVP_PRESENT(&tp, NS_IE_CAUSE) ||
614 !TLVP_PRESENT(&tp, NS_IE_VCI)) {
Harald Welte834f26d2010-05-11 06:20:54 +0200615 LOGP(DNS, LOGL_ERROR, "NS RESET Missing mandatory IE\n");
Harald Weltec1402a62010-05-12 11:48:44 +0200616 gprs_ns_tx_status(nsvc, NS_CAUSE_MISSING_ESSENT_IE, 0, msg);
Harald Welte834f26d2010-05-11 06:20:54 +0200617 return -EINVAL;
618 }
619
620 cause = (uint8_t *) TLVP_VAL(&tp, NS_IE_CAUSE);
621 //nsvci = (uint16_t *) TLVP_VAL(&tp, NS_IE_VCI);
622
Harald Welte2fc725d2010-05-11 10:15:26 +0200623 ns_dispatch_signal(nsvc, S_NS_BLOCK, *cause);
Harald Weltec51c23c2010-05-13 12:55:20 +0200624 rate_ctr_inc(&nsvc->ctrg->ctr[NS_CTR_BLOCKED]);
Harald Welte834f26d2010-05-11 06:20:54 +0200625
626 return gprs_ns_tx_simple(nsvc, NS_PDUT_BLOCK_ACK);
627}
628
Harald Welte9ba50052010-03-14 15:45:01 +0800629/* main entry point, here incoming NS frames enter */
Harald Weltef030b212010-04-26 19:18:54 +0200630int gprs_ns_rcvmsg(struct gprs_ns_inst *nsi, struct msgb *msg,
631 struct sockaddr_in *saddr)
Harald Welte9ba50052010-03-14 15:45:01 +0800632{
633 struct gprs_ns_hdr *nsh = (struct gprs_ns_hdr *) msg->l2h;
Harald Weltef030b212010-04-26 19:18:54 +0200634 struct gprs_nsvc *nsvc;
Harald Welte9ba50052010-03-14 15:45:01 +0800635 int rc = 0;
636
Harald Weltef030b212010-04-26 19:18:54 +0200637 /* look up the NSVC based on source address */
638 nsvc = nsvc_by_rem_addr(nsi, saddr);
639 if (!nsvc) {
Harald Welte9a392932010-05-11 18:30:37 +0200640 struct tlv_parsed tp;
641 uint16_t nsei;
Harald Weltef030b212010-04-26 19:18:54 +0200642 /* Only the RESET procedure creates a new NSVC */
Harald Weltebbc9fac2010-05-03 18:54:12 +0200643 if (nsh->pdu_type != NS_PDUT_RESET) {
Harald Weltedd1c83c2010-05-13 13:58:08 +0200644 /* Since we have no NSVC, we have to use a fake */
645 nsvc = nsi->unknown_nsvc;
646 LOGP(DNS, LOGL_INFO, "Rejecting NS PDU type 0x%0x "
Harald Weltebba902d2010-05-11 18:38:36 +0200647 "from %s:%u for non-existing NS-VC\n",
648 nsh->pdu_type, inet_ntoa(saddr->sin_addr),
649 ntohs(saddr->sin_port));
Harald Weltedd1c83c2010-05-13 13:58:08 +0200650 nsvc->nsvci = nsvc->nsei = 0xfffe;
651 nsvc->ip.bts_addr = *saddr;
652 nsvc->state = NSE_S_ALIVE;
653 return gprs_ns_tx_status(nsvc,
Harald Welte803647e2010-05-12 13:51:08 +0000654 NS_CAUSE_PDU_INCOMP_PSTATE, 0,
655 msg);
Harald Weltebbc9fac2010-05-03 18:54:12 +0200656 }
Harald Welte9a392932010-05-11 18:30:37 +0200657 rc = tlv_parse(&tp, &ns_att_tlvdef, nsh->data,
658 msgb_l2len(msg), 0, 0);
659 if (!TLVP_PRESENT(&tp, NS_IE_CAUSE) ||
660 !TLVP_PRESENT(&tp, NS_IE_VCI) ||
661 !TLVP_PRESENT(&tp, NS_IE_NSEI)) {
Harald Welte9a392932010-05-11 18:30:37 +0200662 LOGP(DNS, LOGL_ERROR, "NS RESET Missing mandatory IE\n");
Harald Weltec1402a62010-05-12 11:48:44 +0200663 gprs_ns_tx_status(nsvc, NS_CAUSE_MISSING_ESSENT_IE, 0,
664 msg);
Harald Welte9a392932010-05-11 18:30:37 +0200665 return -EINVAL;
666 }
667 nsei = ntohs(*(uint16_t *)TLVP_VAL(&tp, NS_IE_NSEI));
668 /* Check if we already know this NSEI, the remote end might
669 * simply have changed addresses, or it is a SGSN */
670 nsvc = nsvc_by_nsei(nsi, nsei);
671 if (!nsvc) {
672 LOGP(DNS, LOGL_INFO, "Creating NS-VC for BSS at %s:%u\n",
673 inet_ntoa(saddr->sin_addr), ntohs(saddr->sin_port));
674 nsvc = nsvc_create(nsi, 0xffff);
Harald Welte9a392932010-05-11 18:30:37 +0200675 }
Harald Welte2b7d4652010-05-11 18:40:45 +0200676 /* Update the remote peer IP address/port */
677 nsvc->ip.bts_addr = *saddr;
Harald Weltebbc9fac2010-05-03 18:54:12 +0200678 } else
679 msgb_nsei(msg) = nsvc->nsei;
Harald Weltec5478482010-03-18 00:01:43 +0800680
Harald Welte144e0292010-05-13 11:45:07 +0200681 /* Increment number of Incoming bytes */
Harald Weltec51c23c2010-05-13 12:55:20 +0200682 rate_ctr_inc(&nsvc->ctrg->ctr[NS_CTR_PKTS_IN]);
Harald Weltec51c23c2010-05-13 12:55:20 +0200683 rate_ctr_add(&nsvc->ctrg->ctr[NS_CTR_BYTES_IN], msgb_l2len(msg));
Harald Welte144e0292010-05-13 11:45:07 +0200684
Harald Welte9ba50052010-03-14 15:45:01 +0800685 switch (nsh->pdu_type) {
686 case NS_PDUT_ALIVE:
Harald Welte2bffac52010-05-12 15:55:23 +0000687 /* If we're dead and blocked and suddenly receive a
688 * NS-ALIVE out of the blue, we might have been re-started
689 * and should send a NS-RESET to make sure everything recovers
690 * fine. */
691 if (nsvc->state == NSE_S_BLOCKED)
692 rc = gprs_ns_tx_reset(nsvc, NS_CAUSE_PDU_INCOMP_PSTATE);
693 else
694 rc = gprs_ns_tx_alive_ack(nsvc);
Harald Welte9ba50052010-03-14 15:45:01 +0800695 break;
696 case NS_PDUT_ALIVE_ACK:
697 /* stop Tns-alive */
Harald Welte80405452010-05-03 20:16:13 +0200698 bsc_del_timer(&nsvc->timer);
Harald Welte9ba50052010-03-14 15:45:01 +0800699 /* start Tns-test */
Harald Welte69a4cf22010-05-03 20:55:10 +0200700 nsvc_start_timer(nsvc, NSVC_TIMER_TNS_TEST);
Harald Welte7fb7e612010-05-03 21:11:22 +0200701 if (nsvc->remote_end_is_sgsn) {
702 /* FIXME: this should be one level higher */
703 if (nsvc->state & NSE_S_BLOCKED)
Harald Weltec1402a62010-05-12 11:48:44 +0200704 rc = gprs_ns_tx_unblock(nsvc);
Harald Welte7fb7e612010-05-03 21:11:22 +0200705 }
Harald Welte9ba50052010-03-14 15:45:01 +0800706 break;
707 case NS_PDUT_UNITDATA:
708 /* actual user data */
Harald Welte24a655f2010-04-30 19:54:29 +0200709 rc = gprs_ns_rx_unitdata(nsvc, msg);
Harald Welte9ba50052010-03-14 15:45:01 +0800710 break;
711 case NS_PDUT_STATUS:
Harald Welte24a655f2010-04-30 19:54:29 +0200712 rc = gprs_ns_rx_status(nsvc, msg);
Harald Welte9ba50052010-03-14 15:45:01 +0800713 break;
714 case NS_PDUT_RESET:
Harald Welte24a655f2010-04-30 19:54:29 +0200715 rc = gprs_ns_rx_reset(nsvc, msg);
Harald Welte9ba50052010-03-14 15:45:01 +0800716 break;
717 case NS_PDUT_RESET_ACK:
Harald Weltee4ecc8c2010-05-12 00:16:57 +0200718 LOGP(DNS, LOGL_INFO, "NSEI=%u Rx NS RESET ACK\n", nsvc->nsei);
Harald Weltec1402a62010-05-12 11:48:44 +0200719 /* mark NS-VC as blocked + active */
720 nsvc->state = NSE_S_BLOCKED | NSE_S_ALIVE;
Harald Weltef030b212010-04-26 19:18:54 +0200721 nsvc->remote_state = NSE_S_BLOCKED | NSE_S_ALIVE;
Harald Weltec51c23c2010-05-13 12:55:20 +0200722 rate_ctr_inc(&nsvc->ctrg->ctr[NS_CTR_BLOCKED]);
Harald Welte69a4cf22010-05-03 20:55:10 +0200723 if (nsvc->remote_end_is_sgsn) {
724 /* stop RESET timer */
725 bsc_del_timer(&nsvc->timer);
Harald Weltec1402a62010-05-12 11:48:44 +0200726 /* Initiate TEST proc.: Send ALIVE and start timer */
Harald Welte570fb832010-05-03 21:05:24 +0200727 rc = gprs_ns_tx_simple(nsvc, NS_PDUT_ALIVE);
728 nsvc_start_timer(nsvc, NSVC_TIMER_TNS_ALIVE);
Harald Welte69a4cf22010-05-03 20:55:10 +0200729 }
Harald Welte9ba50052010-03-14 15:45:01 +0800730 break;
731 case NS_PDUT_UNBLOCK:
732 /* Section 7.2: unblocking procedure */
Harald Weltee4ecc8c2010-05-12 00:16:57 +0200733 LOGP(DNS, LOGL_INFO, "NSEI=%u Rx NS UNBLOCK\n", nsvc->nsei);
Harald Welte9ba50052010-03-14 15:45:01 +0800734 nsvc->state &= ~NSE_S_BLOCKED;
Harald Welte834f26d2010-05-11 06:20:54 +0200735 ns_dispatch_signal(nsvc, S_NS_UNBLOCK, 0);
Harald Weltec5478482010-03-18 00:01:43 +0800736 rc = gprs_ns_tx_simple(nsvc, NS_PDUT_UNBLOCK_ACK);
Harald Welte9ba50052010-03-14 15:45:01 +0800737 break;
738 case NS_PDUT_UNBLOCK_ACK:
Harald Weltee4ecc8c2010-05-12 00:16:57 +0200739 LOGP(DNS, LOGL_INFO, "NSEI=%u Rx NS UNBLOCK ACK\n", nsvc->nsei);
Harald Weltec1402a62010-05-12 11:48:44 +0200740 /* mark NS-VC as unblocked + active */
741 nsvc->state = NSE_S_ALIVE;
Harald Weltef030b212010-04-26 19:18:54 +0200742 nsvc->remote_state = NSE_S_ALIVE;
Harald Weltef88dc002010-05-12 14:18:46 +0000743 ns_dispatch_signal(nsvc, S_NS_UNBLOCK, 0);
Harald Welte9ba50052010-03-14 15:45:01 +0800744 break;
745 case NS_PDUT_BLOCK:
Harald Welte834f26d2010-05-11 06:20:54 +0200746 rc = gprs_ns_rx_block(nsvc, msg);
Harald Welte9ba50052010-03-14 15:45:01 +0800747 break;
748 case NS_PDUT_BLOCK_ACK:
Harald Weltee4ecc8c2010-05-12 00:16:57 +0200749 LOGP(DNS, LOGL_INFO, "NSEI=%u Rx NS BLOCK ACK\n", nsvc->nsei);
Harald Weltef030b212010-04-26 19:18:54 +0200750 /* mark remote NS-VC as blocked + active */
751 nsvc->remote_state = NSE_S_BLOCKED | NSE_S_ALIVE;
Harald Welte9ba50052010-03-14 15:45:01 +0800752 break;
753 default:
Harald Weltee4ecc8c2010-05-12 00:16:57 +0200754 LOGP(DNS, LOGL_NOTICE, "NSEI=%u Rx Unknown NS PDU type 0x%02x\n",
Harald Weltebbc9fac2010-05-03 18:54:12 +0200755 nsvc->nsei, nsh->pdu_type);
Harald Welte9ba50052010-03-14 15:45:01 +0800756 rc = -EINVAL;
757 break;
758 }
759 return rc;
760}
761
Harald Weltef030b212010-04-26 19:18:54 +0200762struct gprs_ns_inst *gprs_ns_instantiate(gprs_ns_cb_t *cb)
763{
764 struct gprs_ns_inst *nsi = talloc_zero(tall_bsc_ctx, struct gprs_ns_inst);
765
766 nsi->cb = cb;
767 INIT_LLIST_HEAD(&nsi->gprs_nsvcs);
Harald Weltefe4ab902010-05-12 17:19:53 +0000768 nsi->timeout[NS_TOUT_TNS_BLOCK] = 3;
769 nsi->timeout[NS_TOUT_TNS_BLOCK_RETRIES] = 3;
770 nsi->timeout[NS_TOUT_TNS_RESET] = 3;
771 nsi->timeout[NS_TOUT_TNS_RESET_RETRIES] = 3;
772 nsi->timeout[NS_TOUT_TNS_TEST] = 30;
773 nsi->timeout[NS_TOUT_TNS_ALIVE] = 3;
774 nsi->timeout[NS_TOUT_TNS_ALIVE_RETRIES] = 10;
Harald Weltef030b212010-04-26 19:18:54 +0200775
Harald Weltedd1c83c2010-05-13 13:58:08 +0200776 nsi->unknown_nsvc = nsvc_create(nsi, 0xfffe);
777
Harald Welte3771d092010-04-30 20:26:32 +0200778 return nsi;
Harald Weltef030b212010-04-26 19:18:54 +0200779}
780
781void gprs_ns_destroy(struct gprs_ns_inst *nsi)
782{
783 /* FIXME: clear all timers */
784
785 /* recursively free the NSI and all its NSVCs */
786 talloc_free(nsi);
787}
788
789
790/* NS-over-IP code, according to 3GPP TS 48.016 Chapter 6.2
791 * We don't support Size Procedure, Configuration Procedure, ChangeWeight Procedure */
792
793/* Read a single NS-over-IP message */
794static struct msgb *read_nsip_msg(struct bsc_fd *bfd, int *error,
795 struct sockaddr_in *saddr)
796{
797 struct msgb *msg = msgb_alloc(NS_ALLOC_SIZE, "Abis/IP/GPRS-NS");
798 int ret = 0;
799 socklen_t saddr_len = sizeof(*saddr);
800
801 if (!msg) {
802 *error = -ENOMEM;
803 return NULL;
804 }
805
806 ret = recvfrom(bfd->fd, msg->data, NS_ALLOC_SIZE, 0,
807 (struct sockaddr *)saddr, &saddr_len);
808 if (ret < 0) {
Harald Welteb8a6a832010-05-11 05:54:22 +0200809 LOGP(DNS, LOGL_ERROR, "recv error %s during NSIP recv\n",
Harald Weltebbc9fac2010-05-03 18:54:12 +0200810 strerror(errno));
Harald Weltef030b212010-04-26 19:18:54 +0200811 msgb_free(msg);
812 *error = ret;
813 return NULL;
814 } else if (ret == 0) {
815 msgb_free(msg);
816 *error = ret;
817 return NULL;
818 }
819
820 msg->l2h = msg->data;
821 msgb_put(msg, ret);
822
823 return msg;
824}
825
826static int handle_nsip_read(struct bsc_fd *bfd)
827{
828 int error;
829 struct sockaddr_in saddr;
830 struct gprs_ns_inst *nsi = bfd->data;
831 struct msgb *msg = read_nsip_msg(bfd, &error, &saddr);
832
833 if (!msg)
834 return error;
835
Harald Welte91813cf2010-05-12 18:38:45 +0000836 error = gprs_ns_rcvmsg(nsi, msg, &saddr);
837
838 msgb_free(msg);
839
840 return error;
Harald Weltef030b212010-04-26 19:18:54 +0200841}
842
843static int handle_nsip_write(struct bsc_fd *bfd)
844{
845 /* FIXME: actually send the data here instead of nsip_sendmsg() */
846 return -EIO;
847}
848
Harald Welte24a655f2010-04-30 19:54:29 +0200849int nsip_sendmsg(struct gprs_nsvc *nsvc, struct msgb *msg)
Harald Weltef030b212010-04-26 19:18:54 +0200850{
851 int rc;
852 struct gprs_ns_inst *nsi = nsvc->nsi;
853 struct sockaddr_in *daddr = &nsvc->ip.bts_addr;
854
855 rc = sendto(nsi->nsip.fd.fd, msg->data, msg->len, 0,
856 (struct sockaddr *)daddr, sizeof(*daddr));
857
858 talloc_free(msg);
859
860 return rc;
861}
862
863/* UDP Port 23000 carries the LLC-in-BSSGP-in-NS protocol stack */
864static int nsip_fd_cb(struct bsc_fd *bfd, unsigned int what)
865{
866 int rc = 0;
867
868 if (what & BSC_FD_READ)
869 rc = handle_nsip_read(bfd);
870 if (what & BSC_FD_WRITE)
871 rc = handle_nsip_write(bfd);
872
873 return rc;
874}
875
Harald Welte8f9a3ee2010-05-02 11:26:34 +0200876extern int make_sock(struct bsc_fd *bfd, int proto, uint16_t port,
Harald Weltef030b212010-04-26 19:18:54 +0200877 int (*cb)(struct bsc_fd *fd, unsigned int what));
878
879/* Listen for incoming GPRS packets */
880int nsip_listen(struct gprs_ns_inst *nsi, uint16_t udp_port)
881{
882 int ret;
883
884 ret = make_sock(&nsi->nsip.fd, IPPROTO_UDP, udp_port, nsip_fd_cb);
885 if (ret < 0)
886 return ret;
887
888 nsi->ll = GPRS_NS_LL_UDP;
889 nsi->nsip.fd.data = nsi;
890
891 return ret;
892}
Harald Welte3771d092010-04-30 20:26:32 +0200893
894/* Establish a connection (from the BSS) to the SGSN */
895struct gprs_nsvc *nsip_connect(struct gprs_ns_inst *nsi,
Harald Welte1203de32010-05-01 11:28:43 +0200896 struct sockaddr_in *dest, uint16_t nsei,
897 uint16_t nsvci)
Harald Welte3771d092010-04-30 20:26:32 +0200898{
899 struct gprs_nsvc *nsvc;
900
901 nsvc = nsvc_by_rem_addr(nsi, dest);
Harald Welte38407ef2010-05-12 11:56:39 +0000902 if (!nsvc)
Harald Welte3771d092010-04-30 20:26:32 +0200903 nsvc = nsvc_create(nsi, nsvci);
Harald Welte38407ef2010-05-12 11:56:39 +0000904 nsvc->ip.bts_addr = *dest;
Harald Welte1203de32010-05-01 11:28:43 +0200905 nsvc->nsei = nsei;
906 nsvc->nsvci = nsvci;
Harald Welte3771d092010-04-30 20:26:32 +0200907 nsvc->remote_end_is_sgsn = 1;
908
909 /* Initiate a RESET procedure */
Harald Weltec1402a62010-05-12 11:48:44 +0200910 /* Mark NS-VC locally as blocked and dead */
911 nsvc->state = NSE_S_BLOCKED;
912 /* Send NS-RESET PDU */
Harald Welte570fb832010-05-03 21:05:24 +0200913 if (gprs_ns_tx_reset(nsvc, NS_CAUSE_OM_INTERVENTION) < 0) {
Harald Welteb8a6a832010-05-11 05:54:22 +0200914 LOGP(DNS, LOGL_ERROR, "NSEI=%u, error resetting NS-VC\n",
Harald Welte69a4cf22010-05-03 20:55:10 +0200915 nsei);
916 }
Harald Weltec1402a62010-05-12 11:48:44 +0200917 /* Start Tns-reset */
Harald Welte69a4cf22010-05-03 20:55:10 +0200918 nsvc_start_timer(nsvc, NSVC_TIMER_TNS_RESET);
Harald Welte3771d092010-04-30 20:26:32 +0200919
920 return nsvc;
921}
Harald Welte2bffac52010-05-12 15:55:23 +0000922
Harald Welte2bffac52010-05-12 15:55:23 +0000923