blob: c5cf962f6e955c2d68ed3132f2b3c28c043d4196 [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>
Holger Hans Peter Freytheree59fe42010-05-23 21:23:44 +080072#include <openbsc/gprs_ns_frgre.h>
Holger Hans Peter Freythere75a34f2010-05-23 21:19:55 +080073#include <openbsc/socket.h>
Harald Welte9ba50052010-03-14 15:45:01 +080074
Harald Welte9ba50052010-03-14 15:45:01 +080075static 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 */
Harald Welte90af1942010-05-15 23:02:24 +0200111struct gprs_nsvc *nsvc_by_nsvci(struct gprs_ns_inst *nsi, uint16_t nsvci)
Harald Weltef030b212010-04-26 19:18:54 +0200112{
113 struct gprs_nsvc *nsvc;
114 llist_for_each_entry(nsvc, &nsi->gprs_nsvcs, list) {
115 if (nsvc->nsvci == nsvci)
116 return nsvc;
117 }
118 return NULL;
119}
120
Harald Welte24a655f2010-04-30 19:54:29 +0200121/* Lookup struct gprs_nsvc based on NSVCI */
Harald Welte144e0292010-05-13 11:45:07 +0200122struct gprs_nsvc *nsvc_by_nsei(struct gprs_ns_inst *nsi, uint16_t nsei)
Harald Welte24a655f2010-04-30 19:54:29 +0200123{
124 struct gprs_nsvc *nsvc;
125 llist_for_each_entry(nsvc, &nsi->gprs_nsvcs, list) {
126 if (nsvc->nsei == nsei)
127 return nsvc;
128 }
129 return NULL;
130}
131
Harald Weltef030b212010-04-26 19:18:54 +0200132/* Lookup struct gprs_nsvc based on remote peer socket addr */
133static struct gprs_nsvc *nsvc_by_rem_addr(struct gprs_ns_inst *nsi,
134 struct sockaddr_in *sin)
135{
136 struct gprs_nsvc *nsvc;
137 llist_for_each_entry(nsvc, &nsi->gprs_nsvcs, list) {
Harald Welte38407ef2010-05-12 11:56:39 +0000138 if (nsvc->ip.bts_addr.sin_addr.s_addr ==
139 sin->sin_addr.s_addr &&
140 nsvc->ip.bts_addr.sin_port == sin->sin_port)
Harald Weltef030b212010-04-26 19:18:54 +0200141 return nsvc;
142 }
143 return NULL;
144}
145
Harald Welte69a4cf22010-05-03 20:55:10 +0200146static void gprs_ns_timer_cb(void *data);
147
Harald Welte144e0292010-05-13 11:45:07 +0200148struct gprs_nsvc *nsvc_create(struct gprs_ns_inst *nsi, uint16_t nsvci)
Harald Weltef030b212010-04-26 19:18:54 +0200149{
150 struct gprs_nsvc *nsvc;
151
Harald Welteb1020d52010-05-25 22:17:30 +0200152 LOGP(DNS, LOGL_INFO, "NSVCI=%u Creating NS-VC\n", nsvci);
153
Harald Weltef030b212010-04-26 19:18:54 +0200154 nsvc = talloc_zero(nsi, struct gprs_nsvc);
155 nsvc->nsvci = nsvci;
156 /* before RESET procedure: BLOCKED and DEAD */
157 nsvc->state = NSE_S_BLOCKED;
158 nsvc->nsi = nsi;
Harald Welte69a4cf22010-05-03 20:55:10 +0200159 nsvc->timer.cb = gprs_ns_timer_cb;
160 nsvc->timer.data = nsvc;
Harald Welte144e0292010-05-13 11:45:07 +0200161 nsvc->ctrg = rate_ctr_group_alloc(nsvc, &nsvc_ctrg_desc, nsvci);
Harald Welte69a4cf22010-05-03 20:55:10 +0200162
Harald Weltef030b212010-04-26 19:18:54 +0200163 llist_add(&nsvc->list, &nsi->gprs_nsvcs);
164
165 return nsvc;
166}
Harald Welte9ba50052010-03-14 15:45:01 +0800167
Harald Welte144e0292010-05-13 11:45:07 +0200168void nsvc_delete(struct gprs_nsvc *nsvc)
Harald Welte2bffac52010-05-12 15:55:23 +0000169{
170 if (bsc_timer_pending(&nsvc->timer))
171 bsc_del_timer(&nsvc->timer);
172 llist_del(&nsvc->list);
173 talloc_free(nsvc);
174}
175
Harald Welte2fc725d2010-05-11 10:15:26 +0200176static void ns_dispatch_signal(struct gprs_nsvc *nsvc, unsigned int signal,
Harald Welte834f26d2010-05-11 06:20:54 +0200177 uint8_t cause)
178{
179 struct ns_signal_data nssd;
180
181 nssd.nsvc = nsvc;
182 nssd.cause = cause;
183
184 dispatch_signal(SS_NS, signal, &nssd);
185}
186
Harald Welte9ba50052010-03-14 15:45:01 +0800187/* Section 10.3.2, Table 13 */
Harald Welte2577d412010-05-02 09:37:45 +0200188static const struct value_string ns_cause_str[] = {
189 { NS_CAUSE_TRANSIT_FAIL, "Transit network failure" },
190 { NS_CAUSE_OM_INTERVENTION, "O&M intervention" },
191 { NS_CAUSE_EQUIP_FAIL, "Equipment failure" },
192 { NS_CAUSE_NSVC_BLOCKED, "NS-VC blocked" },
193 { NS_CAUSE_NSVC_UNKNOWN, "NS-VC unknown" },
194 { NS_CAUSE_BVCI_UNKNOWN, "BVCI unknown" },
195 { NS_CAUSE_SEM_INCORR_PDU, "Semantically incorrect PDU" },
196 { NS_CAUSE_PDU_INCOMP_PSTATE, "PDU not compatible with protocol state" },
Harald Welte69a4cf22010-05-03 20:55:10 +0200197 { NS_CAUSE_PROTO_ERR_UNSPEC, "Protocol error, unspecified" },
Harald Welte2577d412010-05-02 09:37:45 +0200198 { NS_CAUSE_INVAL_ESSENT_IE, "Invalid essential IE" },
199 { NS_CAUSE_MISSING_ESSENT_IE, "Missing essential IE" },
200 { 0, NULL }
Harald Welte9ba50052010-03-14 15:45:01 +0800201};
202
Harald Welte2577d412010-05-02 09:37:45 +0200203const char *gprs_ns_cause_str(enum ns_cause cause)
Harald Welte9ba50052010-03-14 15:45:01 +0800204{
Harald Welte2577d412010-05-02 09:37:45 +0200205 return get_value_string(ns_cause_str, cause);
Harald Welte9ba50052010-03-14 15:45:01 +0800206}
207
Harald Welte24a655f2010-04-30 19:54:29 +0200208static int nsip_sendmsg(struct gprs_nsvc *nsvc, struct msgb *msg);
Harald Welteb3ee2652010-05-19 14:38:50 +0200209extern int grps_ns_frgre_sendmsg(struct gprs_nsvc *nsvc, struct msgb *msg);
Harald Weltef030b212010-04-26 19:18:54 +0200210
Harald Welte24a655f2010-04-30 19:54:29 +0200211static int gprs_ns_tx(struct gprs_nsvc *nsvc, struct msgb *msg)
Harald Welte9ba50052010-03-14 15:45:01 +0800212{
Harald Weltef030b212010-04-26 19:18:54 +0200213 int ret;
214
Harald Welte91f7f4b2010-05-15 23:52:02 +0200215 log_set_context(BSC_CTX_NSVC, nsvc);
216
Harald Welte144e0292010-05-13 11:45:07 +0200217 /* Increment number of Uplink bytes */
Harald Weltec51c23c2010-05-13 12:55:20 +0200218 rate_ctr_inc(&nsvc->ctrg->ctr[NS_CTR_PKTS_OUT]);
219 rate_ctr_add(&nsvc->ctrg->ctr[NS_CTR_BYTES_OUT], msgb_l2len(msg));
Harald Welte144e0292010-05-13 11:45:07 +0200220
Harald Welteb3ee2652010-05-19 14:38:50 +0200221 switch (nsvc->ll) {
Harald Weltef030b212010-04-26 19:18:54 +0200222 case GPRS_NS_LL_UDP:
Harald Welte24a655f2010-04-30 19:54:29 +0200223 ret = nsip_sendmsg(nsvc, msg);
Harald Weltef030b212010-04-26 19:18:54 +0200224 break;
Harald Welteb3ee2652010-05-19 14:38:50 +0200225 case GPRS_NS_LL_FR_GRE:
226 ret = gprs_ns_frgre_sendmsg(nsvc, msg);
227 break;
Harald Weltef030b212010-04-26 19:18:54 +0200228 default:
Harald Welteb3ee2652010-05-19 14:38:50 +0200229 LOGP(DNS, LOGL_ERROR, "unsupported NS linklayer %u\n", nsvc->ll);
Harald Weltef030b212010-04-26 19:18:54 +0200230 msgb_free(msg);
231 ret = -EIO;
232 break;
233 }
234 return ret;
Harald Welte9ba50052010-03-14 15:45:01 +0800235}
236
Harald Welte8f9a3ee2010-05-02 11:26:34 +0200237static int gprs_ns_tx_simple(struct gprs_nsvc *nsvc, uint8_t pdu_type)
Harald Welte9ba50052010-03-14 15:45:01 +0800238{
Harald Welteba4c6662010-05-19 15:38:10 +0200239 struct msgb *msg = gprs_ns_msgb_alloc();
Harald Welte9ba50052010-03-14 15:45:01 +0800240 struct gprs_ns_hdr *nsh;
241
Harald Welte91f7f4b2010-05-15 23:52:02 +0200242 log_set_context(BSC_CTX_NSVC, nsvc);
243
Harald Welte9ba50052010-03-14 15:45:01 +0800244 if (!msg)
245 return -ENOMEM;
246
Harald Welte144e0292010-05-13 11:45:07 +0200247 msg->l2h = msgb_put(msg, sizeof(*nsh));
248 nsh = (struct gprs_ns_hdr *) msg->l2h;
Harald Welte9ba50052010-03-14 15:45:01 +0800249
250 nsh->pdu_type = pdu_type;
251
Harald Welte24a655f2010-04-30 19:54:29 +0200252 return gprs_ns_tx(nsvc, msg);
Harald Welte9ba50052010-03-14 15:45:01 +0800253}
254
Harald Welte834f26d2010-05-11 06:20:54 +0200255int gprs_ns_tx_reset(struct gprs_nsvc *nsvc, uint8_t cause)
Harald Welte69a4cf22010-05-03 20:55:10 +0200256{
Harald Welteba4c6662010-05-19 15:38:10 +0200257 struct msgb *msg = gprs_ns_msgb_alloc();
Harald Welte69a4cf22010-05-03 20:55:10 +0200258 struct gprs_ns_hdr *nsh;
Harald Welte69a4cf22010-05-03 20:55:10 +0200259 uint16_t nsvci = htons(nsvc->nsvci);
260 uint16_t nsei = htons(nsvc->nsei);
261
Harald Welte91f7f4b2010-05-15 23:52:02 +0200262 log_set_context(BSC_CTX_NSVC, nsvc);
263
Harald Welte69a4cf22010-05-03 20:55:10 +0200264 if (!msg)
265 return -ENOMEM;
266
Harald Welte6ecaa3d2010-05-12 12:01:33 +0000267 LOGP(DNS, LOGL_INFO, "NSEI=%u Tx NS RESET (NSVCI=%u, cause=%s)\n",
268 nsvc->nsei, nsvc->nsvci, gprs_ns_cause_str(cause));
269
Harald Welte144e0292010-05-13 11:45:07 +0200270 msg->l2h = msgb_put(msg, sizeof(*nsh));
271 nsh = (struct gprs_ns_hdr *) msg->l2h;
Harald Welte69a4cf22010-05-03 20:55:10 +0200272 nsh->pdu_type = NS_PDUT_RESET;
273
274 msgb_tvlv_put(msg, NS_IE_CAUSE, 1, &cause);
275 msgb_tvlv_put(msg, NS_IE_VCI, 2, (uint8_t *) &nsvci);
276 msgb_tvlv_put(msg, NS_IE_NSEI, 2, (uint8_t *) &nsei);
277
278 return gprs_ns_tx(nsvc, msg);
279
280}
281
Harald Weltec1402a62010-05-12 11:48:44 +0200282int gprs_ns_tx_status(struct gprs_nsvc *nsvc, uint8_t cause,
283 uint16_t bvci, struct msgb *orig_msg)
284{
Harald Welteba4c6662010-05-19 15:38:10 +0200285 struct msgb *msg = gprs_ns_msgb_alloc();
Harald Weltec1402a62010-05-12 11:48:44 +0200286 struct gprs_ns_hdr *nsh;
287 uint16_t nsvci = htons(nsvc->nsvci);
288
Harald Welte91f7f4b2010-05-15 23:52:02 +0200289 log_set_context(BSC_CTX_NSVC, nsvc);
290
Harald Weltec1402a62010-05-12 11:48:44 +0200291 bvci = htons(bvci);
292
293 if (!msg)
294 return -ENOMEM;
295
Harald Welte90af1942010-05-15 23:02:24 +0200296 LOGP(DNS, LOGL_NOTICE, "NSEI=%u Tx NS STATUS (NSVCI=%u, cause=%s)\n",
Harald Welte6ecaa3d2010-05-12 12:01:33 +0000297 nsvc->nsei, nsvc->nsvci, gprs_ns_cause_str(cause));
298
Harald Welte144e0292010-05-13 11:45:07 +0200299 msg->l2h = msgb_put(msg, sizeof(*nsh));
300 nsh = (struct gprs_ns_hdr *) msg->l2h;
Harald Weltec1402a62010-05-12 11:48:44 +0200301 nsh->pdu_type = NS_PDUT_STATUS;
302
303 msgb_tvlv_put(msg, NS_IE_CAUSE, 1, &cause);
304
305 /* Section 9.2.7.1: Static conditions for NS-VCI */
306 if (cause == NS_CAUSE_NSVC_BLOCKED ||
307 cause == NS_CAUSE_NSVC_UNKNOWN)
308 msgb_tvlv_put(msg, NS_IE_VCI, 2, (uint8_t *)&nsvci);
309
310 /* Section 9.2.7.2: Static conditions for NS PDU */
311 switch (cause) {
312 case NS_CAUSE_SEM_INCORR_PDU:
313 case NS_CAUSE_PDU_INCOMP_PSTATE:
314 case NS_CAUSE_PROTO_ERR_UNSPEC:
315 case NS_CAUSE_INVAL_ESSENT_IE:
316 case NS_CAUSE_MISSING_ESSENT_IE:
317 msgb_tvlv_put(msg, NS_IE_PDU, msgb_l2len(orig_msg),
318 orig_msg->l2h);
319 break;
320 default:
321 break;
322 }
323
324 /* Section 9.2.7.3: Static conditions for BVCI */
325 if (cause == NS_CAUSE_BVCI_UNKNOWN)
326 msgb_tvlv_put(msg, NS_IE_VCI, 2, (uint8_t *)&bvci);
327
328 return gprs_ns_tx(nsvc, msg);
329}
330
Harald Welte834f26d2010-05-11 06:20:54 +0200331int gprs_ns_tx_block(struct gprs_nsvc *nsvc, uint8_t cause)
332{
Harald Welteba4c6662010-05-19 15:38:10 +0200333 struct msgb *msg = gprs_ns_msgb_alloc();
Harald Welte834f26d2010-05-11 06:20:54 +0200334 struct gprs_ns_hdr *nsh;
335 uint16_t nsvci = htons(nsvc->nsvci);
336
Harald Welte91f7f4b2010-05-15 23:52:02 +0200337 log_set_context(BSC_CTX_NSVC, nsvc);
338
Harald Welte834f26d2010-05-11 06:20:54 +0200339 if (!msg)
340 return -ENOMEM;
341
Harald Welte6ecaa3d2010-05-12 12:01:33 +0000342 LOGP(DNS, LOGL_INFO, "NSEI=%u Tx NS BLOCK (NSVCI=%u, cause=%s)\n",
343 nsvc->nsei, nsvc->nsvci, gprs_ns_cause_str(cause));
344
Harald Welte834f26d2010-05-11 06:20:54 +0200345 /* be conservative and mark it as blocked even now! */
346 nsvc->state |= NSE_S_BLOCKED;
Harald Weltec51c23c2010-05-13 12:55:20 +0200347 rate_ctr_inc(&nsvc->ctrg->ctr[NS_CTR_BLOCKED]);
Harald Welte834f26d2010-05-11 06:20:54 +0200348
Harald Welte144e0292010-05-13 11:45:07 +0200349 msg->l2h = msgb_put(msg, sizeof(*nsh));
350 nsh = (struct gprs_ns_hdr *) msg->l2h;
Harald Welte834f26d2010-05-11 06:20:54 +0200351 nsh->pdu_type = NS_PDUT_BLOCK;
352
353 msgb_tvlv_put(msg, NS_IE_CAUSE, 1, &cause);
354 msgb_tvlv_put(msg, NS_IE_VCI, 2, (uint8_t *) &nsvci);
355
356 return gprs_ns_tx(nsvc, msg);
357}
358
359int gprs_ns_tx_unblock(struct gprs_nsvc *nsvc)
360{
Harald Welte91f7f4b2010-05-15 23:52:02 +0200361 log_set_context(BSC_CTX_NSVC, nsvc);
Harald Welte6ecaa3d2010-05-12 12:01:33 +0000362 LOGP(DNS, LOGL_INFO, "NSEI=%u Tx NS UNBLOCK (NSVCI=%u)\n",
363 nsvc->nsei, nsvc->nsvci);
364
Harald Welte834f26d2010-05-11 06:20:54 +0200365 return gprs_ns_tx_simple(nsvc, NS_PDUT_UNBLOCK);
366}
367
Harald Welteb983c312010-05-12 12:11:45 +0000368int gprs_ns_tx_alive(struct gprs_nsvc *nsvc)
369{
Harald Welte91f7f4b2010-05-15 23:52:02 +0200370 log_set_context(BSC_CTX_NSVC, nsvc);
Harald Welteb983c312010-05-12 12:11:45 +0000371 LOGP(DNS, LOGL_DEBUG, "NSEI=%u Tx NS ALIVE (NSVCI=%u)\n",
372 nsvc->nsei, nsvc->nsvci);
373
374 return gprs_ns_tx_simple(nsvc, NS_PDUT_ALIVE);
375}
376
377int gprs_ns_tx_alive_ack(struct gprs_nsvc *nsvc)
378{
Harald Welte91f7f4b2010-05-15 23:52:02 +0200379 log_set_context(BSC_CTX_NSVC, nsvc);
Harald Welteb983c312010-05-12 12:11:45 +0000380 LOGP(DNS, LOGL_DEBUG, "NSEI=%u Tx NS ALIVE_ACK (NSVCI=%u)\n",
381 nsvc->nsei, nsvc->nsvci);
382
383 return gprs_ns_tx_simple(nsvc, NS_PDUT_ALIVE_ACK);
384}
385
Harald Weltefe4ab902010-05-12 17:19:53 +0000386static const enum ns_timeout timer_mode_tout[_NSVC_TIMER_NR] = {
387 [NSVC_TIMER_TNS_RESET] = NS_TOUT_TNS_RESET,
388 [NSVC_TIMER_TNS_ALIVE] = NS_TOUT_TNS_ALIVE,
389 [NSVC_TIMER_TNS_TEST] = NS_TOUT_TNS_TEST,
Harald Welte69a4cf22010-05-03 20:55:10 +0200390};
391
Harald Welte7c24b9e2010-05-12 12:21:52 +0000392static const struct value_string timer_mode_strs[] = {
393 { NSVC_TIMER_TNS_RESET, "tns-reset" },
394 { NSVC_TIMER_TNS_ALIVE, "tns-alive" },
395 { NSVC_TIMER_TNS_TEST, "tns-test" },
396 { 0, NULL }
397};
398
Harald Welte69a4cf22010-05-03 20:55:10 +0200399static void nsvc_start_timer(struct gprs_nsvc *nsvc, enum nsvc_timer_mode mode)
400{
Harald Weltefe4ab902010-05-12 17:19:53 +0000401 enum ns_timeout tout = timer_mode_tout[mode];
402 unsigned int seconds = nsvc->nsi->timeout[tout];
403
Harald Welte91f7f4b2010-05-15 23:52:02 +0200404 log_set_context(BSC_CTX_NSVC, nsvc);
Harald Welte4e187c62010-05-12 13:55:36 +0000405 DEBUGP(DNS, "NSEI=%u Starting timer in mode %s (%u seconds)\n",
406 nsvc->nsei, get_value_string(timer_mode_strs, mode),
Harald Weltefe4ab902010-05-12 17:19:53 +0000407 seconds);
Harald Welte7c24b9e2010-05-12 12:21:52 +0000408
Harald Welte69a4cf22010-05-03 20:55:10 +0200409 if (bsc_timer_pending(&nsvc->timer))
410 bsc_del_timer(&nsvc->timer);
411
412 nsvc->timer_mode = mode;
Harald Weltefe4ab902010-05-12 17:19:53 +0000413 bsc_schedule_timer(&nsvc->timer, seconds, 0);
Harald Welte69a4cf22010-05-03 20:55:10 +0200414}
415
Harald Welte80405452010-05-03 20:16:13 +0200416static void gprs_ns_timer_cb(void *data)
Harald Welte9ba50052010-03-14 15:45:01 +0800417{
418 struct gprs_nsvc *nsvc = data;
Harald Weltefe4ab902010-05-12 17:19:53 +0000419 enum ns_timeout tout = timer_mode_tout[nsvc->timer_mode];
420 unsigned int seconds = nsvc->nsi->timeout[tout];
Harald Welte9ba50052010-03-14 15:45:01 +0800421
Harald Welte91f7f4b2010-05-15 23:52:02 +0200422 log_set_context(BSC_CTX_NSVC, nsvc);
Harald Welte4e187c62010-05-12 13:55:36 +0000423 DEBUGP(DNS, "NSEI=%u Timer expired in mode %s (%u seconds)\n",
424 nsvc->nsei, get_value_string(timer_mode_strs, nsvc->timer_mode),
Harald Weltefe4ab902010-05-12 17:19:53 +0000425 seconds);
Harald Welte7c24b9e2010-05-12 12:21:52 +0000426
Harald Welte80405452010-05-03 20:16:13 +0200427 switch (nsvc->timer_mode) {
428 case NSVC_TIMER_TNS_ALIVE:
Harald Welte9ba50052010-03-14 15:45:01 +0800429 /* Tns-alive case: we expired without response ! */
430 nsvc->alive_retries++;
Harald Weltefe4ab902010-05-12 17:19:53 +0000431 if (nsvc->alive_retries >
432 nsvc->nsi->timeout[NS_TOUT_TNS_ALIVE_RETRIES]) {
Harald Welte9ba50052010-03-14 15:45:01 +0800433 /* mark as dead and blocked */
434 nsvc->state = NSE_S_BLOCKED;
Harald Weltec51c23c2010-05-13 12:55:20 +0200435 rate_ctr_inc(&nsvc->ctrg->ctr[NS_CTR_BLOCKED]);
436 rate_ctr_inc(&nsvc->ctrg->ctr[NS_CTR_DEAD]);
Harald Weltee4ecc8c2010-05-12 00:16:57 +0200437 LOGP(DNS, LOGL_NOTICE,
438 "NSEI=%u Tns-alive expired more then "
Harald Welte69a4cf22010-05-03 20:55:10 +0200439 "%u times, blocking NS-VC\n", nsvc->nsei,
Harald Weltefe4ab902010-05-12 17:19:53 +0000440 nsvc->nsi->timeout[NS_TOUT_TNS_ALIVE_RETRIES]);
Harald Welte4941b352010-05-12 13:28:25 +0000441 ns_dispatch_signal(nsvc, S_NS_ALIVE_EXP, 0);
Harald Weltee4ecc8c2010-05-12 00:16:57 +0200442 ns_dispatch_signal(nsvc, S_NS_BLOCK, NS_CAUSE_NSVC_BLOCKED);
Harald Welte9ba50052010-03-14 15:45:01 +0800443 return;
444 }
Harald Welteb983c312010-05-12 12:11:45 +0000445 /* Tns-test case: send NS-ALIVE PDU */
446 gprs_ns_tx_alive(nsvc);
447 /* start Tns-alive timer */
Harald Welte69a4cf22010-05-03 20:55:10 +0200448 nsvc_start_timer(nsvc, NSVC_TIMER_TNS_ALIVE);
Harald Welte80405452010-05-03 20:16:13 +0200449 break;
450 case NSVC_TIMER_TNS_TEST:
Harald Welte9ba50052010-03-14 15:45:01 +0800451 /* Tns-test case: send NS-ALIVE PDU */
Harald Welteb983c312010-05-12 12:11:45 +0000452 gprs_ns_tx_alive(nsvc);
453 /* start Tns-alive timer (transition into faster
454 * alive retransmissions) */
Harald Welte7c24b9e2010-05-12 12:21:52 +0000455 nsvc->alive_retries = 0;
Harald Welte69a4cf22010-05-03 20:55:10 +0200456 nsvc_start_timer(nsvc, NSVC_TIMER_TNS_ALIVE);
457 break;
458 case NSVC_TIMER_TNS_RESET:
459 /* Chapter 7.3: Re-send the RESET */
Harald Welte570fb832010-05-03 21:05:24 +0200460 gprs_ns_tx_reset(nsvc, NS_CAUSE_OM_INTERVENTION);
Harald Weltec1402a62010-05-12 11:48:44 +0200461 /* Re-start Tns-reset timer */
Harald Welte69a4cf22010-05-03 20:55:10 +0200462 nsvc_start_timer(nsvc, NSVC_TIMER_TNS_RESET);
Harald Welte80405452010-05-03 20:16:13 +0200463 break;
Harald Welte2fc725d2010-05-11 10:15:26 +0200464 case _NSVC_TIMER_NR:
465 break;
Harald Welte9ba50052010-03-14 15:45:01 +0800466 }
Harald Welte9ba50052010-03-14 15:45:01 +0800467}
468
469/* Section 9.2.6 */
Harald Weltec5478482010-03-18 00:01:43 +0800470static int gprs_ns_tx_reset_ack(struct gprs_nsvc *nsvc)
Harald Welte9ba50052010-03-14 15:45:01 +0800471{
Harald Welteba4c6662010-05-19 15:38:10 +0200472 struct msgb *msg = gprs_ns_msgb_alloc();
Harald Welte9ba50052010-03-14 15:45:01 +0800473 struct gprs_ns_hdr *nsh;
Harald Welte8f9a3ee2010-05-02 11:26:34 +0200474 uint16_t nsvci, nsei;
Harald Welte9ba50052010-03-14 15:45:01 +0800475
Harald Welte91f7f4b2010-05-15 23:52:02 +0200476 log_set_context(BSC_CTX_NSVC, nsvc);
Harald Welte9ba50052010-03-14 15:45:01 +0800477 if (!msg)
478 return -ENOMEM;
479
Harald Weltec5478482010-03-18 00:01:43 +0800480 nsvci = htons(nsvc->nsvci);
481 nsei = htons(nsvc->nsei);
Harald Welte9ba50052010-03-14 15:45:01 +0800482
Harald Welte144e0292010-05-13 11:45:07 +0200483 msg->l2h = msgb_put(msg, sizeof(*nsh));
484 nsh = (struct gprs_ns_hdr *) msg->l2h;
Harald Welte9ba50052010-03-14 15:45:01 +0800485
486 nsh->pdu_type = NS_PDUT_RESET_ACK;
487
Harald Weltee4ecc8c2010-05-12 00:16:57 +0200488 LOGP(DNS, LOGL_INFO, "NSEI=%u Tx NS RESET ACK (NSVCI=%u)\n",
Harald Weltebbc9fac2010-05-03 18:54:12 +0200489 nsvc->nsei, nsvc->nsvci);
Harald Weltec5478482010-03-18 00:01:43 +0800490
Harald Welte8f9a3ee2010-05-02 11:26:34 +0200491 msgb_tvlv_put(msg, NS_IE_VCI, 2, (uint8_t *)&nsvci);
492 msgb_tvlv_put(msg, NS_IE_NSEI, 2, (uint8_t *)&nsei);
Harald Welte9ba50052010-03-14 15:45:01 +0800493
Harald Welte24a655f2010-04-30 19:54:29 +0200494 return gprs_ns_tx(nsvc, msg);
Harald Welte9ba50052010-03-14 15:45:01 +0800495}
496
Harald Welte24a655f2010-04-30 19:54:29 +0200497/* Section 9.2.10: transmit side / NS-UNITDATA-REQUEST primitive */
498int gprs_ns_sendmsg(struct gprs_ns_inst *nsi, struct msgb *msg)
Harald Welte9ba50052010-03-14 15:45:01 +0800499{
Harald Welte24a655f2010-04-30 19:54:29 +0200500 struct gprs_nsvc *nsvc;
Harald Welte9ba50052010-03-14 15:45:01 +0800501 struct gprs_ns_hdr *nsh;
Harald Welte8f9a3ee2010-05-02 11:26:34 +0200502 uint16_t bvci = msgb_bvci(msg);
Harald Welte24a655f2010-04-30 19:54:29 +0200503
504 nsvc = nsvc_by_nsei(nsi, msgb_nsei(msg));
505 if (!nsvc) {
Harald Welteb8a6a832010-05-11 05:54:22 +0200506 LOGP(DNS, LOGL_ERROR, "Unable to resolve NSEI %u "
Harald Weltebbc9fac2010-05-03 18:54:12 +0200507 "to NS-VC!\n", msgb_nsei(msg));
Harald Welte24a655f2010-04-30 19:54:29 +0200508 return -EINVAL;
509 }
Harald Welte91f7f4b2010-05-15 23:52:02 +0200510 log_set_context(BSC_CTX_NSVC, nsvc);
Harald Welte9ba50052010-03-14 15:45:01 +0800511
Harald Welte69a4cf22010-05-03 20:55:10 +0200512 if (!(nsvc->state & NSE_S_ALIVE)) {
Harald Welteb8a6a832010-05-11 05:54:22 +0200513 LOGP(DNS, LOGL_ERROR, "NSEI=%u is not alive, cannot send\n",
Harald Welte69a4cf22010-05-03 20:55:10 +0200514 nsvc->nsei);
515 return -EBUSY;
516 }
517 if (nsvc->state & NSE_S_BLOCKED) {
Harald Welteb8a6a832010-05-11 05:54:22 +0200518 LOGP(DNS, LOGL_ERROR, "NSEI=%u is blocked, cannot send\n",
Harald Welte69a4cf22010-05-03 20:55:10 +0200519 nsvc->nsei);
520 return -EBUSY;
521 }
522
Harald Welteec20ba42010-05-13 12:18:49 +0200523 msg->l2h = msgb_push(msg, sizeof(*nsh) + 3);
524 nsh = (struct gprs_ns_hdr *) msg->l2h;
Harald Welte9ba50052010-03-14 15:45:01 +0800525 if (!nsh) {
Harald Welteb8a6a832010-05-11 05:54:22 +0200526 LOGP(DNS, LOGL_ERROR, "Not enough headroom for NS header\n");
Harald Welte9ba50052010-03-14 15:45:01 +0800527 return -EIO;
528 }
529
530 nsh->pdu_type = NS_PDUT_UNITDATA;
531 /* spare octet in data[0] */
532 nsh->data[1] = bvci >> 8;
533 nsh->data[2] = bvci & 0xff;
534
Harald Welte24a655f2010-04-30 19:54:29 +0200535 return gprs_ns_tx(nsvc, msg);
Harald Welte9ba50052010-03-14 15:45:01 +0800536}
537
538/* Section 9.2.10: receive side */
Harald Welte24a655f2010-04-30 19:54:29 +0200539static int gprs_ns_rx_unitdata(struct gprs_nsvc *nsvc, struct msgb *msg)
Harald Welte9ba50052010-03-14 15:45:01 +0800540{
541 struct gprs_ns_hdr *nsh = (struct gprs_ns_hdr *)msg->l2h;
Harald Welte8f9a3ee2010-05-02 11:26:34 +0200542 uint16_t bvci;
Harald Welte9ba50052010-03-14 15:45:01 +0800543
Harald Weltec1402a62010-05-12 11:48:44 +0200544 if (nsvc->state & NSE_S_BLOCKED)
545 return gprs_ns_tx_status(nsvc, NS_CAUSE_NSVC_BLOCKED,
546 0, msg);
547
Harald Welte9ba50052010-03-14 15:45:01 +0800548 /* spare octet in data[0] */
549 bvci = nsh->data[1] << 8 | nsh->data[2];
Harald Welteec19c102010-05-02 09:50:42 +0200550 msgb_bssgph(msg) = &nsh->data[3];
Harald Welte30bc19a2010-05-02 11:19:37 +0200551 msgb_bvci(msg) = bvci;
Harald Welte9ba50052010-03-14 15:45:01 +0800552
553 /* call upper layer (BSSGP) */
Harald Weltef030b212010-04-26 19:18:54 +0200554 return nsvc->nsi->cb(GPRS_NS_EVT_UNIT_DATA, nsvc, msg, bvci);
Harald Welte9ba50052010-03-14 15:45:01 +0800555}
556
557/* Section 9.2.7 */
Harald Welte24a655f2010-04-30 19:54:29 +0200558static int gprs_ns_rx_status(struct gprs_nsvc *nsvc, struct msgb *msg)
Harald Welte9ba50052010-03-14 15:45:01 +0800559{
Harald Weltef030b212010-04-26 19:18:54 +0200560 struct gprs_ns_hdr *nsh = (struct gprs_ns_hdr *) msg->l2h;
Harald Welte9ba50052010-03-14 15:45:01 +0800561 struct tlv_parsed tp;
Harald Welte8f9a3ee2010-05-02 11:26:34 +0200562 uint8_t cause;
Harald Welte9ba50052010-03-14 15:45:01 +0800563 int rc;
564
Harald Welte41337832010-05-16 00:24:26 +0200565 LOGP(DNS, LOGL_NOTICE, "NSEI=%u Rx NS STATUS ", nsvc->nsei);
Harald Welte9ba50052010-03-14 15:45:01 +0800566
567 rc = tlv_parse(&tp, &ns_att_tlvdef, nsh->data, msgb_l2len(msg), 0, 0);
Harald Welte36250382010-05-28 10:08:14 +0200568 if (rc < 0) {
569 LOGPC(DNS, LOGL_NOTICE, "Error during TLV Parse\n");
570 LOGP(DNS, LOGL_ERROR, "NSEI=%u Rx NS STATUS: "
571 "Error during TLV Parse\n", nsvc->nsei);
572 return rc;
573 }
Harald Welte9ba50052010-03-14 15:45:01 +0800574
575 if (!TLVP_PRESENT(&tp, NS_IE_CAUSE)) {
Harald Weltee4ecc8c2010-05-12 00:16:57 +0200576 LOGPC(DNS, LOGL_INFO, "missing cause IE\n");
Harald Welte9ba50052010-03-14 15:45:01 +0800577 return -EINVAL;
578 }
579
580 cause = *TLVP_VAL(&tp, NS_IE_CAUSE);
Harald Welte41337832010-05-16 00:24:26 +0200581 LOGPC(DNS, LOGL_NOTICE, "cause=%s\n", gprs_ns_cause_str(cause));
Harald Welte9ba50052010-03-14 15:45:01 +0800582
583 return 0;
584}
585
586/* Section 7.3 */
Harald Welte24a655f2010-04-30 19:54:29 +0200587static int gprs_ns_rx_reset(struct gprs_nsvc *nsvc, struct msgb *msg)
Harald Welte9ba50052010-03-14 15:45:01 +0800588{
589 struct gprs_ns_hdr *nsh = (struct gprs_ns_hdr *) msg->l2h;
Harald Welte9ba50052010-03-14 15:45:01 +0800590 struct tlv_parsed tp;
Harald Welte8f9a3ee2010-05-02 11:26:34 +0200591 uint8_t *cause;
592 uint16_t *nsvci, *nsei;
Harald Welte9ba50052010-03-14 15:45:01 +0800593 int rc;
594
Harald Welte9ba50052010-03-14 15:45:01 +0800595 rc = tlv_parse(&tp, &ns_att_tlvdef, nsh->data, msgb_l2len(msg), 0, 0);
Harald Welte36250382010-05-28 10:08:14 +0200596 if (rc < 0) {
597 LOGP(DNS, LOGL_ERROR, "NSEI=%u Rx NS RESET "
598 "Error during TLV Parse\n", nsvc->nsei);
599 return rc;
600 }
Harald Welte9ba50052010-03-14 15:45:01 +0800601
602 if (!TLVP_PRESENT(&tp, NS_IE_CAUSE) ||
603 !TLVP_PRESENT(&tp, NS_IE_VCI) ||
604 !TLVP_PRESENT(&tp, NS_IE_NSEI)) {
Harald Welteb8a6a832010-05-11 05:54:22 +0200605 LOGP(DNS, LOGL_ERROR, "NS RESET Missing mandatory IE\n");
Harald Weltec1402a62010-05-12 11:48:44 +0200606 gprs_ns_tx_status(nsvc, NS_CAUSE_MISSING_ESSENT_IE, 0, msg);
Harald Welte9ba50052010-03-14 15:45:01 +0800607 return -EINVAL;
608 }
609
Harald Welte8f9a3ee2010-05-02 11:26:34 +0200610 cause = (uint8_t *) TLVP_VAL(&tp, NS_IE_CAUSE);
611 nsvci = (uint16_t *) TLVP_VAL(&tp, NS_IE_VCI);
612 nsei = (uint16_t *) TLVP_VAL(&tp, NS_IE_NSEI);
Harald Welte9ba50052010-03-14 15:45:01 +0800613
Harald Weltee4ecc8c2010-05-12 00:16:57 +0200614 LOGP(DNS, LOGL_INFO, "NSEI=%u Rx NS RESET (NSVCI=%u, cause=%s)\n",
Harald Weltebbc9fac2010-05-03 18:54:12 +0200615 nsvc->nsvci, nsvc->nsei, gprs_ns_cause_str(*cause));
616
Harald Weltec1402a62010-05-12 11:48:44 +0200617 /* Mark NS-VC as blocked and alive */
Harald Weltec5478482010-03-18 00:01:43 +0800618 nsvc->state = NSE_S_BLOCKED | NSE_S_ALIVE;
Harald Weltee8b9ca22010-05-11 18:18:31 +0200619
Harald Weltec5478482010-03-18 00:01:43 +0800620 nsvc->nsei = ntohs(*nsei);
621 nsvc->nsvci = ntohs(*nsvci);
Harald Welte9ba50052010-03-14 15:45:01 +0800622
Harald Welte9ba50052010-03-14 15:45:01 +0800623 /* start the test procedure */
Harald Weltec9531202010-05-28 09:58:27 +0200624 gprs_ns_tx_simple(nsvc, NS_PDUT_ALIVE);
625 nsvc_start_timer(nsvc, NSVC_TIMER_TNS_TEST);
Harald Welte9ba50052010-03-14 15:45:01 +0800626
Harald Welte834f26d2010-05-11 06:20:54 +0200627 /* inform interested parties about the fact that this NSVC
628 * has received RESET */
Harald Welte2fc725d2010-05-11 10:15:26 +0200629 ns_dispatch_signal(nsvc, S_NS_RESET, *cause);
Harald Welte834f26d2010-05-11 06:20:54 +0200630
Harald Weltec5478482010-03-18 00:01:43 +0800631 return gprs_ns_tx_reset_ack(nsvc);
Harald Welte9ba50052010-03-14 15:45:01 +0800632}
633
Harald Welte834f26d2010-05-11 06:20:54 +0200634static int gprs_ns_rx_block(struct gprs_nsvc *nsvc, struct msgb *msg)
635{
636 struct gprs_ns_hdr *nsh = (struct gprs_ns_hdr *) msg->l2h;
637 struct tlv_parsed tp;
638 uint8_t *cause;
639 int rc;
640
Harald Weltee4ecc8c2010-05-12 00:16:57 +0200641 LOGP(DNS, LOGL_INFO, "NSEI=%u Rx NS BLOCK\n", nsvc->nsei);
Harald Welte834f26d2010-05-11 06:20:54 +0200642
643 nsvc->state |= NSE_S_BLOCKED;
644
645 rc = tlv_parse(&tp, &ns_att_tlvdef, nsh->data, msgb_l2len(msg), 0, 0);
Harald Welte36250382010-05-28 10:08:14 +0200646 if (rc < 0) {
647 LOGP(DNS, LOGL_ERROR, "NSEI=%u Rx NS BLOCK "
648 "Error during TLV Parse\n", nsvc->nsei);
649 return rc;
650 }
Harald Welte834f26d2010-05-11 06:20:54 +0200651
652 if (!TLVP_PRESENT(&tp, NS_IE_CAUSE) ||
653 !TLVP_PRESENT(&tp, NS_IE_VCI)) {
Harald Welte834f26d2010-05-11 06:20:54 +0200654 LOGP(DNS, LOGL_ERROR, "NS RESET Missing mandatory IE\n");
Harald Weltec1402a62010-05-12 11:48:44 +0200655 gprs_ns_tx_status(nsvc, NS_CAUSE_MISSING_ESSENT_IE, 0, msg);
Harald Welte834f26d2010-05-11 06:20:54 +0200656 return -EINVAL;
657 }
658
659 cause = (uint8_t *) TLVP_VAL(&tp, NS_IE_CAUSE);
660 //nsvci = (uint16_t *) TLVP_VAL(&tp, NS_IE_VCI);
661
Harald Welte2fc725d2010-05-11 10:15:26 +0200662 ns_dispatch_signal(nsvc, S_NS_BLOCK, *cause);
Harald Weltec51c23c2010-05-13 12:55:20 +0200663 rate_ctr_inc(&nsvc->ctrg->ctr[NS_CTR_BLOCKED]);
Harald Welte834f26d2010-05-11 06:20:54 +0200664
665 return gprs_ns_tx_simple(nsvc, NS_PDUT_BLOCK_ACK);
666}
667
Harald Welte9ba50052010-03-14 15:45:01 +0800668/* main entry point, here incoming NS frames enter */
Harald Weltef030b212010-04-26 19:18:54 +0200669int gprs_ns_rcvmsg(struct gprs_ns_inst *nsi, struct msgb *msg,
Harald Welteb3ee2652010-05-19 14:38:50 +0200670 struct sockaddr_in *saddr, enum gprs_ns_ll ll)
Harald Welte9ba50052010-03-14 15:45:01 +0800671{
672 struct gprs_ns_hdr *nsh = (struct gprs_ns_hdr *) msg->l2h;
Harald Weltef030b212010-04-26 19:18:54 +0200673 struct gprs_nsvc *nsvc;
Harald Welte9ba50052010-03-14 15:45:01 +0800674 int rc = 0;
675
Harald Weltef030b212010-04-26 19:18:54 +0200676 /* look up the NSVC based on source address */
677 nsvc = nsvc_by_rem_addr(nsi, saddr);
678 if (!nsvc) {
Harald Welte9a392932010-05-11 18:30:37 +0200679 struct tlv_parsed tp;
680 uint16_t nsei;
Harald Welte1100a9d2010-05-19 16:01:39 +0200681 if (nsh->pdu_type == NS_PDUT_STATUS) {
682 LOGP(DNS, LOGL_INFO, "Ignoring NS STATUS from %s:%u "
683 "for non-existing NS-VC\n",
684 inet_ntoa(saddr->sin_addr), ntohs(saddr->sin_port));
685 return 0;
686 }
Harald Weltef030b212010-04-26 19:18:54 +0200687 /* Only the RESET procedure creates a new NSVC */
Harald Weltebbc9fac2010-05-03 18:54:12 +0200688 if (nsh->pdu_type != NS_PDUT_RESET) {
Harald Weltedd1c83c2010-05-13 13:58:08 +0200689 /* Since we have no NSVC, we have to use a fake */
690 nsvc = nsi->unknown_nsvc;
Harald Welte91f7f4b2010-05-15 23:52:02 +0200691 log_set_context(BSC_CTX_NSVC, nsvc);
Harald Weltedd1c83c2010-05-13 13:58:08 +0200692 LOGP(DNS, LOGL_INFO, "Rejecting NS PDU type 0x%0x "
Harald Weltebba902d2010-05-11 18:38:36 +0200693 "from %s:%u for non-existing NS-VC\n",
694 nsh->pdu_type, inet_ntoa(saddr->sin_addr),
695 ntohs(saddr->sin_port));
Harald Weltedd1c83c2010-05-13 13:58:08 +0200696 nsvc->nsvci = nsvc->nsei = 0xfffe;
697 nsvc->ip.bts_addr = *saddr;
698 nsvc->state = NSE_S_ALIVE;
Harald Welteb3ee2652010-05-19 14:38:50 +0200699 nsvc->ll = ll;
Harald Weltee0c42d12010-05-18 14:32:29 +0200700#if 0
701 return gprs_ns_tx_reset(nsvc, NS_CAUSE_PDU_INCOMP_PSTATE);
702#else
Harald Weltedd1c83c2010-05-13 13:58:08 +0200703 return gprs_ns_tx_status(nsvc,
Harald Welte803647e2010-05-12 13:51:08 +0000704 NS_CAUSE_PDU_INCOMP_PSTATE, 0,
705 msg);
Harald Weltee0c42d12010-05-18 14:32:29 +0200706#endif
Harald Weltebbc9fac2010-05-03 18:54:12 +0200707 }
Harald Welte9a392932010-05-11 18:30:37 +0200708 rc = tlv_parse(&tp, &ns_att_tlvdef, nsh->data,
709 msgb_l2len(msg), 0, 0);
Harald Welte36250382010-05-28 10:08:14 +0200710 rc = tlv_parse(&tp, &ns_att_tlvdef, nsh->data, msgb_l2len(msg), 0, 0);
711 if (rc < 0) {
712 LOGP(DNS, LOGL_ERROR, "Rx NS RESET Error during "
713 "TLV Parse\n");
714 return rc;
715 }
Harald Welte9a392932010-05-11 18:30:37 +0200716 if (!TLVP_PRESENT(&tp, NS_IE_CAUSE) ||
717 !TLVP_PRESENT(&tp, NS_IE_VCI) ||
718 !TLVP_PRESENT(&tp, NS_IE_NSEI)) {
Harald Welte9a392932010-05-11 18:30:37 +0200719 LOGP(DNS, LOGL_ERROR, "NS RESET Missing mandatory IE\n");
Harald Weltec1402a62010-05-12 11:48:44 +0200720 gprs_ns_tx_status(nsvc, NS_CAUSE_MISSING_ESSENT_IE, 0,
721 msg);
Harald Welte9a392932010-05-11 18:30:37 +0200722 return -EINVAL;
723 }
724 nsei = ntohs(*(uint16_t *)TLVP_VAL(&tp, NS_IE_NSEI));
725 /* Check if we already know this NSEI, the remote end might
726 * simply have changed addresses, or it is a SGSN */
727 nsvc = nsvc_by_nsei(nsi, nsei);
728 if (!nsvc) {
Harald Welte91f7f4b2010-05-15 23:52:02 +0200729 nsvc = nsvc_create(nsi, 0xffff);
Harald Welteb3ee2652010-05-19 14:38:50 +0200730 nsvc->ll = ll;
Harald Welte91f7f4b2010-05-15 23:52:02 +0200731 log_set_context(BSC_CTX_NSVC, nsvc);
Harald Welte9a392932010-05-11 18:30:37 +0200732 LOGP(DNS, LOGL_INFO, "Creating NS-VC for BSS at %s:%u\n",
733 inet_ntoa(saddr->sin_addr), ntohs(saddr->sin_port));
Harald Welte9a392932010-05-11 18:30:37 +0200734 }
Harald Welte2b7d4652010-05-11 18:40:45 +0200735 /* Update the remote peer IP address/port */
736 nsvc->ip.bts_addr = *saddr;
Harald Weltebbc9fac2010-05-03 18:54:12 +0200737 } else
738 msgb_nsei(msg) = nsvc->nsei;
Harald Weltec5478482010-03-18 00:01:43 +0800739
Harald Welte91f7f4b2010-05-15 23:52:02 +0200740 log_set_context(BSC_CTX_NSVC, nsvc);
741
Harald Welte144e0292010-05-13 11:45:07 +0200742 /* Increment number of Incoming bytes */
Harald Weltec51c23c2010-05-13 12:55:20 +0200743 rate_ctr_inc(&nsvc->ctrg->ctr[NS_CTR_PKTS_IN]);
Harald Weltec51c23c2010-05-13 12:55:20 +0200744 rate_ctr_add(&nsvc->ctrg->ctr[NS_CTR_BYTES_IN], msgb_l2len(msg));
Harald Welte144e0292010-05-13 11:45:07 +0200745
Harald Welte9ba50052010-03-14 15:45:01 +0800746 switch (nsh->pdu_type) {
747 case NS_PDUT_ALIVE:
Harald Welte2bffac52010-05-12 15:55:23 +0000748 /* If we're dead and blocked and suddenly receive a
749 * NS-ALIVE out of the blue, we might have been re-started
750 * and should send a NS-RESET to make sure everything recovers
751 * fine. */
752 if (nsvc->state == NSE_S_BLOCKED)
753 rc = gprs_ns_tx_reset(nsvc, NS_CAUSE_PDU_INCOMP_PSTATE);
754 else
755 rc = gprs_ns_tx_alive_ack(nsvc);
Harald Welte9ba50052010-03-14 15:45:01 +0800756 break;
757 case NS_PDUT_ALIVE_ACK:
Harald Welte90af1942010-05-15 23:02:24 +0200758 /* stop Tns-alive and start Tns-test */
Harald Welte69a4cf22010-05-03 20:55:10 +0200759 nsvc_start_timer(nsvc, NSVC_TIMER_TNS_TEST);
Harald Welte7fb7e612010-05-03 21:11:22 +0200760 if (nsvc->remote_end_is_sgsn) {
761 /* FIXME: this should be one level higher */
762 if (nsvc->state & NSE_S_BLOCKED)
Harald Weltec1402a62010-05-12 11:48:44 +0200763 rc = gprs_ns_tx_unblock(nsvc);
Harald Welte7fb7e612010-05-03 21:11:22 +0200764 }
Harald Welte9ba50052010-03-14 15:45:01 +0800765 break;
766 case NS_PDUT_UNITDATA:
767 /* actual user data */
Harald Welte24a655f2010-04-30 19:54:29 +0200768 rc = gprs_ns_rx_unitdata(nsvc, msg);
Harald Welte9ba50052010-03-14 15:45:01 +0800769 break;
770 case NS_PDUT_STATUS:
Harald Welte24a655f2010-04-30 19:54:29 +0200771 rc = gprs_ns_rx_status(nsvc, msg);
Harald Welte9ba50052010-03-14 15:45:01 +0800772 break;
773 case NS_PDUT_RESET:
Harald Welte24a655f2010-04-30 19:54:29 +0200774 rc = gprs_ns_rx_reset(nsvc, msg);
Harald Welte9ba50052010-03-14 15:45:01 +0800775 break;
776 case NS_PDUT_RESET_ACK:
Harald Weltee4ecc8c2010-05-12 00:16:57 +0200777 LOGP(DNS, LOGL_INFO, "NSEI=%u Rx NS RESET ACK\n", nsvc->nsei);
Harald Weltec1402a62010-05-12 11:48:44 +0200778 /* mark NS-VC as blocked + active */
779 nsvc->state = NSE_S_BLOCKED | NSE_S_ALIVE;
Harald Weltef030b212010-04-26 19:18:54 +0200780 nsvc->remote_state = NSE_S_BLOCKED | NSE_S_ALIVE;
Harald Weltec51c23c2010-05-13 12:55:20 +0200781 rate_ctr_inc(&nsvc->ctrg->ctr[NS_CTR_BLOCKED]);
Harald Welte731d1fc2010-05-14 11:53:08 +0000782 if (nsvc->persistent || nsvc->remote_end_is_sgsn) {
Harald Welte69a4cf22010-05-03 20:55:10 +0200783 /* stop RESET timer */
784 bsc_del_timer(&nsvc->timer);
785 }
Harald Welte90af1942010-05-15 23:02:24 +0200786 /* Initiate TEST proc.: Send ALIVE and start timer */
787 rc = gprs_ns_tx_simple(nsvc, NS_PDUT_ALIVE);
Harald Weltec9531202010-05-28 09:58:27 +0200788 nsvc_start_timer(nsvc, NSVC_TIMER_TNS_TEST);
Harald Welte9ba50052010-03-14 15:45:01 +0800789 break;
790 case NS_PDUT_UNBLOCK:
791 /* Section 7.2: unblocking procedure */
Harald Weltee4ecc8c2010-05-12 00:16:57 +0200792 LOGP(DNS, LOGL_INFO, "NSEI=%u Rx NS UNBLOCK\n", nsvc->nsei);
Harald Welte9ba50052010-03-14 15:45:01 +0800793 nsvc->state &= ~NSE_S_BLOCKED;
Harald Welte834f26d2010-05-11 06:20:54 +0200794 ns_dispatch_signal(nsvc, S_NS_UNBLOCK, 0);
Harald Weltec5478482010-03-18 00:01:43 +0800795 rc = gprs_ns_tx_simple(nsvc, NS_PDUT_UNBLOCK_ACK);
Harald Welte9ba50052010-03-14 15:45:01 +0800796 break;
797 case NS_PDUT_UNBLOCK_ACK:
Harald Weltee4ecc8c2010-05-12 00:16:57 +0200798 LOGP(DNS, LOGL_INFO, "NSEI=%u Rx NS UNBLOCK ACK\n", nsvc->nsei);
Harald Weltec1402a62010-05-12 11:48:44 +0200799 /* mark NS-VC as unblocked + active */
800 nsvc->state = NSE_S_ALIVE;
Harald Weltef030b212010-04-26 19:18:54 +0200801 nsvc->remote_state = NSE_S_ALIVE;
Harald Weltef88dc002010-05-12 14:18:46 +0000802 ns_dispatch_signal(nsvc, S_NS_UNBLOCK, 0);
Harald Welte9ba50052010-03-14 15:45:01 +0800803 break;
804 case NS_PDUT_BLOCK:
Harald Welte834f26d2010-05-11 06:20:54 +0200805 rc = gprs_ns_rx_block(nsvc, msg);
Harald Welte9ba50052010-03-14 15:45:01 +0800806 break;
807 case NS_PDUT_BLOCK_ACK:
Harald Weltee4ecc8c2010-05-12 00:16:57 +0200808 LOGP(DNS, LOGL_INFO, "NSEI=%u Rx NS BLOCK ACK\n", nsvc->nsei);
Harald Weltef030b212010-04-26 19:18:54 +0200809 /* mark remote NS-VC as blocked + active */
810 nsvc->remote_state = NSE_S_BLOCKED | NSE_S_ALIVE;
Harald Welte9ba50052010-03-14 15:45:01 +0800811 break;
812 default:
Harald Weltee4ecc8c2010-05-12 00:16:57 +0200813 LOGP(DNS, LOGL_NOTICE, "NSEI=%u Rx Unknown NS PDU type 0x%02x\n",
Harald Weltebbc9fac2010-05-03 18:54:12 +0200814 nsvc->nsei, nsh->pdu_type);
Harald Welte9ba50052010-03-14 15:45:01 +0800815 rc = -EINVAL;
816 break;
817 }
818 return rc;
819}
820
Harald Weltef030b212010-04-26 19:18:54 +0200821struct gprs_ns_inst *gprs_ns_instantiate(gprs_ns_cb_t *cb)
822{
823 struct gprs_ns_inst *nsi = talloc_zero(tall_bsc_ctx, struct gprs_ns_inst);
824
825 nsi->cb = cb;
826 INIT_LLIST_HEAD(&nsi->gprs_nsvcs);
Harald Weltefe4ab902010-05-12 17:19:53 +0000827 nsi->timeout[NS_TOUT_TNS_BLOCK] = 3;
828 nsi->timeout[NS_TOUT_TNS_BLOCK_RETRIES] = 3;
829 nsi->timeout[NS_TOUT_TNS_RESET] = 3;
830 nsi->timeout[NS_TOUT_TNS_RESET_RETRIES] = 3;
831 nsi->timeout[NS_TOUT_TNS_TEST] = 30;
832 nsi->timeout[NS_TOUT_TNS_ALIVE] = 3;
833 nsi->timeout[NS_TOUT_TNS_ALIVE_RETRIES] = 10;
Harald Weltef030b212010-04-26 19:18:54 +0200834
Harald Welte60cc6ac2010-05-13 14:20:56 +0200835 /* Create the dummy NSVC that we use for sending
836 * messages to non-existant/unknown NS-VC's */
Harald Weltedd1c83c2010-05-13 13:58:08 +0200837 nsi->unknown_nsvc = nsvc_create(nsi, 0xfffe);
Harald Welte60cc6ac2010-05-13 14:20:56 +0200838 llist_del(&nsi->unknown_nsvc->list);
Harald Weltedd1c83c2010-05-13 13:58:08 +0200839
Harald Welte3771d092010-04-30 20:26:32 +0200840 return nsi;
Harald Weltef030b212010-04-26 19:18:54 +0200841}
842
843void gprs_ns_destroy(struct gprs_ns_inst *nsi)
844{
845 /* FIXME: clear all timers */
846
847 /* recursively free the NSI and all its NSVCs */
848 talloc_free(nsi);
849}
850
851
852/* NS-over-IP code, according to 3GPP TS 48.016 Chapter 6.2
853 * We don't support Size Procedure, Configuration Procedure, ChangeWeight Procedure */
854
855/* Read a single NS-over-IP message */
856static struct msgb *read_nsip_msg(struct bsc_fd *bfd, int *error,
857 struct sockaddr_in *saddr)
858{
Harald Welteba4c6662010-05-19 15:38:10 +0200859 struct msgb *msg = gprs_ns_msgb_alloc();
Harald Weltef030b212010-04-26 19:18:54 +0200860 int ret = 0;
861 socklen_t saddr_len = sizeof(*saddr);
862
863 if (!msg) {
864 *error = -ENOMEM;
865 return NULL;
866 }
867
Holger Hans Peter Freyther26c32512010-05-28 03:25:36 +0800868 ret = recvfrom(bfd->fd, msg->data, NS_ALLOC_SIZE - NS_ALLOC_HEADROOM, 0,
Harald Weltef030b212010-04-26 19:18:54 +0200869 (struct sockaddr *)saddr, &saddr_len);
870 if (ret < 0) {
Harald Welteb8a6a832010-05-11 05:54:22 +0200871 LOGP(DNS, LOGL_ERROR, "recv error %s during NSIP recv\n",
Harald Weltebbc9fac2010-05-03 18:54:12 +0200872 strerror(errno));
Harald Weltef030b212010-04-26 19:18:54 +0200873 msgb_free(msg);
874 *error = ret;
875 return NULL;
876 } else if (ret == 0) {
877 msgb_free(msg);
878 *error = ret;
879 return NULL;
880 }
881
882 msg->l2h = msg->data;
883 msgb_put(msg, ret);
884
885 return msg;
886}
887
888static int handle_nsip_read(struct bsc_fd *bfd)
889{
890 int error;
891 struct sockaddr_in saddr;
892 struct gprs_ns_inst *nsi = bfd->data;
893 struct msgb *msg = read_nsip_msg(bfd, &error, &saddr);
894
895 if (!msg)
896 return error;
897
Harald Welteb3ee2652010-05-19 14:38:50 +0200898 error = gprs_ns_rcvmsg(nsi, msg, &saddr, GPRS_NS_LL_UDP);
Harald Welte91813cf2010-05-12 18:38:45 +0000899
900 msgb_free(msg);
901
902 return error;
Harald Weltef030b212010-04-26 19:18:54 +0200903}
904
905static int handle_nsip_write(struct bsc_fd *bfd)
906{
907 /* FIXME: actually send the data here instead of nsip_sendmsg() */
908 return -EIO;
909}
910
Harald Welteb3ee2652010-05-19 14:38:50 +0200911static int nsip_sendmsg(struct gprs_nsvc *nsvc, struct msgb *msg)
Harald Weltef030b212010-04-26 19:18:54 +0200912{
913 int rc;
914 struct gprs_ns_inst *nsi = nsvc->nsi;
915 struct sockaddr_in *daddr = &nsvc->ip.bts_addr;
916
917 rc = sendto(nsi->nsip.fd.fd, msg->data, msg->len, 0,
918 (struct sockaddr *)daddr, sizeof(*daddr));
919
920 talloc_free(msg);
921
922 return rc;
923}
924
925/* UDP Port 23000 carries the LLC-in-BSSGP-in-NS protocol stack */
926static int nsip_fd_cb(struct bsc_fd *bfd, unsigned int what)
927{
928 int rc = 0;
929
930 if (what & BSC_FD_READ)
931 rc = handle_nsip_read(bfd);
932 if (what & BSC_FD_WRITE)
933 rc = handle_nsip_write(bfd);
934
935 return rc;
936}
937
Harald Weltef030b212010-04-26 19:18:54 +0200938/* Listen for incoming GPRS packets */
Harald Welte7fb05232010-05-19 15:09:09 +0200939int gprs_ns_nsip_listen(struct gprs_ns_inst *nsi)
Harald Weltef030b212010-04-26 19:18:54 +0200940{
941 int ret;
942
Harald Welte7fb05232010-05-19 15:09:09 +0200943 ret = make_sock(&nsi->nsip.fd, IPPROTO_UDP, nsi->nsip.local_ip,
944 nsi->nsip.local_port, nsip_fd_cb);
Harald Weltef030b212010-04-26 19:18:54 +0200945 if (ret < 0)
946 return ret;
947
Harald Weltef030b212010-04-26 19:18:54 +0200948 nsi->nsip.fd.data = nsi;
949
950 return ret;
951}
Harald Welte3771d092010-04-30 20:26:32 +0200952
Harald Welte731d1fc2010-05-14 11:53:08 +0000953/* Initiate a RESET procedure */
Holger Hans Peter Freyther5617d992010-05-23 21:18:01 +0800954void gprs_nsvc_reset(struct gprs_nsvc *nsvc, uint8_t cause)
Harald Welte731d1fc2010-05-14 11:53:08 +0000955{
Harald Welteb1020d52010-05-25 22:17:30 +0200956 LOGP(DNS, LOGL_INFO, "NSEI=%u RESET procedure based on API request\n",
957 nsvc->nsei);
958
Harald Welte731d1fc2010-05-14 11:53:08 +0000959 /* Mark NS-VC locally as blocked and dead */
960 nsvc->state = NSE_S_BLOCKED;
961 /* Send NS-RESET PDU */
962 if (gprs_ns_tx_reset(nsvc, cause) < 0) {
963 LOGP(DNS, LOGL_ERROR, "NSEI=%u, error resetting NS-VC\n",
964 nsvc->nsei);
965 }
966 /* Start Tns-reset */
967 nsvc_start_timer(nsvc, NSVC_TIMER_TNS_RESET);
Harald Welte731d1fc2010-05-14 11:53:08 +0000968}
969
Harald Welte3771d092010-04-30 20:26:32 +0200970/* Establish a connection (from the BSS) to the SGSN */
971struct gprs_nsvc *nsip_connect(struct gprs_ns_inst *nsi,
Harald Welte1203de32010-05-01 11:28:43 +0200972 struct sockaddr_in *dest, uint16_t nsei,
973 uint16_t nsvci)
Harald Welte3771d092010-04-30 20:26:32 +0200974{
975 struct gprs_nsvc *nsvc;
976
977 nsvc = nsvc_by_rem_addr(nsi, dest);
Harald Welte38407ef2010-05-12 11:56:39 +0000978 if (!nsvc)
Harald Welte3771d092010-04-30 20:26:32 +0200979 nsvc = nsvc_create(nsi, nsvci);
Harald Welte38407ef2010-05-12 11:56:39 +0000980 nsvc->ip.bts_addr = *dest;
Harald Welte1203de32010-05-01 11:28:43 +0200981 nsvc->nsei = nsei;
982 nsvc->nsvci = nsvci;
Harald Welte3771d092010-04-30 20:26:32 +0200983 nsvc->remote_end_is_sgsn = 1;
984
Holger Hans Peter Freyther5617d992010-05-23 21:18:01 +0800985 gprs_nsvc_reset(nsvc, NS_CAUSE_OM_INTERVENTION);
986 return nsvc;
Harald Welte3771d092010-04-30 20:26:32 +0200987}