blob: 619a82904271462e3d1761dabc5f8d3ba1edce69 [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>
60#include <openbsc/gprs_ns.h>
61#include <openbsc/gprs_bssgp.h>
62
63#define NS_ALLOC_SIZE 1024
64
65static const struct tlv_definition ns_att_tlvdef = {
66 .def = {
67 [NS_IE_CAUSE] = { TLV_TYPE_TvLV, 0 },
68 [NS_IE_VCI] = { TLV_TYPE_TvLV, 0 },
69 [NS_IE_PDU] = { TLV_TYPE_TvLV, 0 },
70 [NS_IE_BVCI] = { TLV_TYPE_TvLV, 0 },
71 [NS_IE_NSEI] = { TLV_TYPE_TvLV, 0 },
72 },
73};
74
Harald Weltef030b212010-04-26 19:18:54 +020075/* Lookup struct gprs_nsvc based on NSVCI */
76static struct gprs_nsvc *nsvc_by_nsvci(struct gprs_ns_inst *nsi,
Harald Welte8f9a3ee2010-05-02 11:26:34 +020077 uint16_t nsvci)
Harald Weltef030b212010-04-26 19:18:54 +020078{
79 struct gprs_nsvc *nsvc;
80 llist_for_each_entry(nsvc, &nsi->gprs_nsvcs, list) {
81 if (nsvc->nsvci == nsvci)
82 return nsvc;
83 }
84 return NULL;
85}
86
Harald Welte24a655f2010-04-30 19:54:29 +020087/* Lookup struct gprs_nsvc based on NSVCI */
88static struct gprs_nsvc *nsvc_by_nsei(struct gprs_ns_inst *nsi,
Harald Welte8f9a3ee2010-05-02 11:26:34 +020089 uint16_t nsei)
Harald Welte24a655f2010-04-30 19:54:29 +020090{
91 struct gprs_nsvc *nsvc;
92 llist_for_each_entry(nsvc, &nsi->gprs_nsvcs, list) {
93 if (nsvc->nsei == nsei)
94 return nsvc;
95 }
96 return NULL;
97}
98
99
Harald Weltef030b212010-04-26 19:18:54 +0200100/* Lookup struct gprs_nsvc based on remote peer socket addr */
101static struct gprs_nsvc *nsvc_by_rem_addr(struct gprs_ns_inst *nsi,
102 struct sockaddr_in *sin)
103{
104 struct gprs_nsvc *nsvc;
105 llist_for_each_entry(nsvc, &nsi->gprs_nsvcs, list) {
106 if (!memcmp(&nsvc->ip.bts_addr, sin, sizeof(*sin)))
107 return nsvc;
108 }
109 return NULL;
110}
111
Harald Welte8f9a3ee2010-05-02 11:26:34 +0200112static struct gprs_nsvc *nsvc_create(struct gprs_ns_inst *nsi, uint16_t nsvci)
Harald Weltef030b212010-04-26 19:18:54 +0200113{
114 struct gprs_nsvc *nsvc;
115
116 nsvc = talloc_zero(nsi, struct gprs_nsvc);
117 nsvc->nsvci = nsvci;
118 /* before RESET procedure: BLOCKED and DEAD */
119 nsvc->state = NSE_S_BLOCKED;
120 nsvc->nsi = nsi;
121 llist_add(&nsvc->list, &nsi->gprs_nsvcs);
122
123 return nsvc;
124}
Harald Welte9ba50052010-03-14 15:45:01 +0800125
126/* Section 10.3.2, Table 13 */
Harald Welte2577d412010-05-02 09:37:45 +0200127static const struct value_string ns_cause_str[] = {
128 { NS_CAUSE_TRANSIT_FAIL, "Transit network failure" },
129 { NS_CAUSE_OM_INTERVENTION, "O&M intervention" },
130 { NS_CAUSE_EQUIP_FAIL, "Equipment failure" },
131 { NS_CAUSE_NSVC_BLOCKED, "NS-VC blocked" },
132 { NS_CAUSE_NSVC_UNKNOWN, "NS-VC unknown" },
133 { NS_CAUSE_BVCI_UNKNOWN, "BVCI unknown" },
134 { NS_CAUSE_SEM_INCORR_PDU, "Semantically incorrect PDU" },
135 { NS_CAUSE_PDU_INCOMP_PSTATE, "PDU not compatible with protocol state" },
136 { NS_CAUSE_PROTO_ERR_UNSPEC, "Protocol error }, unspecified" },
137 { NS_CAUSE_INVAL_ESSENT_IE, "Invalid essential IE" },
138 { NS_CAUSE_MISSING_ESSENT_IE, "Missing essential IE" },
139 { 0, NULL }
Harald Welte9ba50052010-03-14 15:45:01 +0800140};
141
Harald Welte2577d412010-05-02 09:37:45 +0200142const char *gprs_ns_cause_str(enum ns_cause cause)
Harald Welte9ba50052010-03-14 15:45:01 +0800143{
Harald Welte2577d412010-05-02 09:37:45 +0200144 return get_value_string(ns_cause_str, cause);
Harald Welte9ba50052010-03-14 15:45:01 +0800145}
146
Harald Welte24a655f2010-04-30 19:54:29 +0200147static int nsip_sendmsg(struct gprs_nsvc *nsvc, struct msgb *msg);
Harald Weltef030b212010-04-26 19:18:54 +0200148
Harald Welte24a655f2010-04-30 19:54:29 +0200149static int gprs_ns_tx(struct gprs_nsvc *nsvc, struct msgb *msg)
Harald Welte9ba50052010-03-14 15:45:01 +0800150{
Harald Weltef030b212010-04-26 19:18:54 +0200151 int ret;
152
153 switch (nsvc->nsi->ll) {
154 case GPRS_NS_LL_UDP:
Harald Welte24a655f2010-04-30 19:54:29 +0200155 ret = nsip_sendmsg(nsvc, msg);
Harald Weltef030b212010-04-26 19:18:54 +0200156 break;
157 default:
158 LOGP(DGPRS, LOGL_ERROR, "unsupported NS linklayer %u\n", nsvc->nsi->ll);
159 msgb_free(msg);
160 ret = -EIO;
161 break;
162 }
163 return ret;
Harald Welte9ba50052010-03-14 15:45:01 +0800164}
165
Harald Welte8f9a3ee2010-05-02 11:26:34 +0200166static int gprs_ns_tx_simple(struct gprs_nsvc *nsvc, uint8_t pdu_type)
Harald Welte9ba50052010-03-14 15:45:01 +0800167{
168 struct msgb *msg = msgb_alloc(NS_ALLOC_SIZE, "GPRS/NS");
169 struct gprs_ns_hdr *nsh;
170
171 if (!msg)
172 return -ENOMEM;
173
174 nsh = (struct gprs_ns_hdr *) msgb_put(msg, sizeof(*nsh));
175
176 nsh->pdu_type = pdu_type;
177
Harald Welte24a655f2010-04-30 19:54:29 +0200178 return gprs_ns_tx(nsvc, msg);
Harald Welte9ba50052010-03-14 15:45:01 +0800179}
180
181#define NS_TIMER_ALIVE 3, 0 /* after 3 seconds without response, we retry */
182#define NS_TIMER_TEST 30, 0 /* every 10 seconds we check if the BTS is still alive */
183#define NS_ALIVE_RETRIES 10 /* after 3 failed retransmit we declare BTS as dead */
184
185static void gprs_ns_alive_cb(void *data)
186{
187 struct gprs_nsvc *nsvc = data;
188
189 if (nsvc->timer_is_tns_alive) {
190 /* Tns-alive case: we expired without response ! */
191 nsvc->alive_retries++;
192 if (nsvc->alive_retries > NS_ALIVE_RETRIES) {
193 /* mark as dead and blocked */
194 nsvc->state = NSE_S_BLOCKED;
195 DEBUGP(DGPRS, "Tns-alive more then %u retries, "
196 " blocking NS-VC\n", NS_ALIVE_RETRIES);
197 /* FIXME: inform higher layers */
198 return;
199 }
200 } else {
201 /* Tns-test case: send NS-ALIVE PDU */
Harald Weltec5478482010-03-18 00:01:43 +0800202 gprs_ns_tx_simple(nsvc, NS_PDUT_ALIVE);
Harald Welte9ba50052010-03-14 15:45:01 +0800203 /* start Tns-alive timer */
204 nsvc->timer_is_tns_alive = 1;
205 }
206 bsc_schedule_timer(&nsvc->alive_timer, NS_TIMER_ALIVE);
207}
208
209/* Section 9.2.6 */
Harald Weltec5478482010-03-18 00:01:43 +0800210static int gprs_ns_tx_reset_ack(struct gprs_nsvc *nsvc)
Harald Welte9ba50052010-03-14 15:45:01 +0800211{
212 struct msgb *msg = msgb_alloc(NS_ALLOC_SIZE, "GPRS/NS");
213 struct gprs_ns_hdr *nsh;
Harald Welte8f9a3ee2010-05-02 11:26:34 +0200214 uint16_t nsvci, nsei;
Harald Welte9ba50052010-03-14 15:45:01 +0800215
216 if (!msg)
217 return -ENOMEM;
218
Harald Weltec5478482010-03-18 00:01:43 +0800219 nsvci = htons(nsvc->nsvci);
220 nsei = htons(nsvc->nsei);
Harald Welte9ba50052010-03-14 15:45:01 +0800221
222 nsh = (struct gprs_ns_hdr *) msgb_put(msg, sizeof(*nsh));
223
224 nsh->pdu_type = NS_PDUT_RESET_ACK;
225
Harald Weltebbc9fac2010-05-03 18:54:12 +0200226 DEBUGP(DGPRS, "NSEI=%u Tx NS RESET ACK (NSVCI=%u)\n",
227 nsvc->nsei, nsvc->nsvci);
Harald Weltec5478482010-03-18 00:01:43 +0800228
Harald Welte8f9a3ee2010-05-02 11:26:34 +0200229 msgb_tvlv_put(msg, NS_IE_VCI, 2, (uint8_t *)&nsvci);
230 msgb_tvlv_put(msg, NS_IE_NSEI, 2, (uint8_t *)&nsei);
Harald Welte9ba50052010-03-14 15:45:01 +0800231
Harald Welte24a655f2010-04-30 19:54:29 +0200232 return gprs_ns_tx(nsvc, msg);
Harald Welte9ba50052010-03-14 15:45:01 +0800233}
234
Harald Welte24a655f2010-04-30 19:54:29 +0200235/* Section 9.2.10: transmit side / NS-UNITDATA-REQUEST primitive */
236int gprs_ns_sendmsg(struct gprs_ns_inst *nsi, struct msgb *msg)
Harald Welte9ba50052010-03-14 15:45:01 +0800237{
Harald Welte24a655f2010-04-30 19:54:29 +0200238 struct gprs_nsvc *nsvc;
Harald Welte9ba50052010-03-14 15:45:01 +0800239 struct gprs_ns_hdr *nsh;
Harald Welte8f9a3ee2010-05-02 11:26:34 +0200240 uint16_t bvci = msgb_bvci(msg);
Harald Welte24a655f2010-04-30 19:54:29 +0200241
242 nsvc = nsvc_by_nsei(nsi, msgb_nsei(msg));
243 if (!nsvc) {
Harald Weltebbc9fac2010-05-03 18:54:12 +0200244 LOGP(DGPRS, LOGL_ERROR, "Unable to resolve NSEI %u "
245 "to NS-VC!\n", msgb_nsei(msg));
Harald Welte24a655f2010-04-30 19:54:29 +0200246 return -EINVAL;
247 }
Harald Welte9ba50052010-03-14 15:45:01 +0800248
249 nsh = (struct gprs_ns_hdr *) msgb_push(msg, sizeof(*nsh) + 3);
250 if (!nsh) {
Harald Weltebbc9fac2010-05-03 18:54:12 +0200251 LOGP(DGPRS, LOGL_ERROR, "Not enough headroom for NS header\n");
Harald Welte9ba50052010-03-14 15:45:01 +0800252 return -EIO;
253 }
254
255 nsh->pdu_type = NS_PDUT_UNITDATA;
256 /* spare octet in data[0] */
257 nsh->data[1] = bvci >> 8;
258 nsh->data[2] = bvci & 0xff;
259
Harald Welte24a655f2010-04-30 19:54:29 +0200260 return gprs_ns_tx(nsvc, msg);
Harald Welte9ba50052010-03-14 15:45:01 +0800261}
262
263/* Section 9.2.10: receive side */
Harald Welte24a655f2010-04-30 19:54:29 +0200264static int gprs_ns_rx_unitdata(struct gprs_nsvc *nsvc, struct msgb *msg)
Harald Welte9ba50052010-03-14 15:45:01 +0800265{
266 struct gprs_ns_hdr *nsh = (struct gprs_ns_hdr *)msg->l2h;
Harald Welte8f9a3ee2010-05-02 11:26:34 +0200267 uint16_t bvci;
Harald Welte9ba50052010-03-14 15:45:01 +0800268
269 /* spare octet in data[0] */
270 bvci = nsh->data[1] << 8 | nsh->data[2];
Harald Welteec19c102010-05-02 09:50:42 +0200271 msgb_bssgph(msg) = &nsh->data[3];
Harald Welte30bc19a2010-05-02 11:19:37 +0200272 msgb_bvci(msg) = bvci;
Harald Welte9ba50052010-03-14 15:45:01 +0800273
274 /* call upper layer (BSSGP) */
Harald Weltef030b212010-04-26 19:18:54 +0200275 return nsvc->nsi->cb(GPRS_NS_EVT_UNIT_DATA, nsvc, msg, bvci);
Harald Welte9ba50052010-03-14 15:45:01 +0800276}
277
278/* Section 9.2.7 */
Harald Welte24a655f2010-04-30 19:54:29 +0200279static int gprs_ns_rx_status(struct gprs_nsvc *nsvc, struct msgb *msg)
Harald Welte9ba50052010-03-14 15:45:01 +0800280{
Harald Weltef030b212010-04-26 19:18:54 +0200281 struct gprs_ns_hdr *nsh = (struct gprs_ns_hdr *) msg->l2h;
Harald Welte9ba50052010-03-14 15:45:01 +0800282 struct tlv_parsed tp;
Harald Welte8f9a3ee2010-05-02 11:26:34 +0200283 uint8_t cause;
Harald Welte9ba50052010-03-14 15:45:01 +0800284 int rc;
285
Harald Weltebbc9fac2010-05-03 18:54:12 +0200286 DEBUGP(DGPRS, "NSEI=%u NS STATUS ", nsvc->nsei);
Harald Welte9ba50052010-03-14 15:45:01 +0800287
288 rc = tlv_parse(&tp, &ns_att_tlvdef, nsh->data, msgb_l2len(msg), 0, 0);
289
290 if (!TLVP_PRESENT(&tp, NS_IE_CAUSE)) {
291 DEBUGPC(DGPRS, "missing cause IE\n");
292 return -EINVAL;
293 }
294
295 cause = *TLVP_VAL(&tp, NS_IE_CAUSE);
296 DEBUGPC(DGPRS, "cause=%s\n", gprs_ns_cause_str(cause));
297
298 return 0;
299}
300
301/* Section 7.3 */
Harald Welte24a655f2010-04-30 19:54:29 +0200302static int gprs_ns_rx_reset(struct gprs_nsvc *nsvc, struct msgb *msg)
Harald Welte9ba50052010-03-14 15:45:01 +0800303{
304 struct gprs_ns_hdr *nsh = (struct gprs_ns_hdr *) msg->l2h;
Harald Welte9ba50052010-03-14 15:45:01 +0800305 struct tlv_parsed tp;
Harald Welte8f9a3ee2010-05-02 11:26:34 +0200306 uint8_t *cause;
307 uint16_t *nsvci, *nsei;
Harald Welte9ba50052010-03-14 15:45:01 +0800308 int rc;
309
Harald Welte9ba50052010-03-14 15:45:01 +0800310 rc = tlv_parse(&tp, &ns_att_tlvdef, nsh->data, msgb_l2len(msg), 0, 0);
311
312 if (!TLVP_PRESENT(&tp, NS_IE_CAUSE) ||
313 !TLVP_PRESENT(&tp, NS_IE_VCI) ||
314 !TLVP_PRESENT(&tp, NS_IE_NSEI)) {
315 /* FIXME: respond with NS_CAUSE_MISSING_ESSENT_IE */
Harald Weltebbc9fac2010-05-03 18:54:12 +0200316 LOGP(DGPRS, LOGL_ERROR, "NS RESET Missing mandatory IE\n");
Harald Welte9ba50052010-03-14 15:45:01 +0800317 return -EINVAL;
318 }
319
Harald Welte8f9a3ee2010-05-02 11:26:34 +0200320 cause = (uint8_t *) TLVP_VAL(&tp, NS_IE_CAUSE);
321 nsvci = (uint16_t *) TLVP_VAL(&tp, NS_IE_VCI);
322 nsei = (uint16_t *) TLVP_VAL(&tp, NS_IE_NSEI);
Harald Welte9ba50052010-03-14 15:45:01 +0800323
Harald Weltebbc9fac2010-05-03 18:54:12 +0200324 DEBUGP(DGPRS, "NSEI=%u NS RESET (NSVCI=%u, cause=%s)\n",
325 nsvc->nsvci, nsvc->nsei, gprs_ns_cause_str(*cause));
326
Harald Weltec5478482010-03-18 00:01:43 +0800327 nsvc->state = NSE_S_BLOCKED | NSE_S_ALIVE;
328 nsvc->nsei = ntohs(*nsei);
329 nsvc->nsvci = ntohs(*nsvci);
Harald Welte9ba50052010-03-14 15:45:01 +0800330
Harald Welte9ba50052010-03-14 15:45:01 +0800331 /* mark the NS-VC as blocked and alive */
Harald Welte9ba50052010-03-14 15:45:01 +0800332 /* start the test procedure */
333 nsvc->alive_timer.cb = gprs_ns_alive_cb;
334 nsvc->alive_timer.data = nsvc;
335 bsc_schedule_timer(&nsvc->alive_timer, NS_TIMER_ALIVE);
336
Harald Weltec5478482010-03-18 00:01:43 +0800337 return gprs_ns_tx_reset_ack(nsvc);
Harald Welte9ba50052010-03-14 15:45:01 +0800338}
339
340/* main entry point, here incoming NS frames enter */
Harald Weltef030b212010-04-26 19:18:54 +0200341int gprs_ns_rcvmsg(struct gprs_ns_inst *nsi, struct msgb *msg,
342 struct sockaddr_in *saddr)
Harald Welte9ba50052010-03-14 15:45:01 +0800343{
344 struct gprs_ns_hdr *nsh = (struct gprs_ns_hdr *) msg->l2h;
Harald Weltef030b212010-04-26 19:18:54 +0200345 struct gprs_nsvc *nsvc;
Harald Welte9ba50052010-03-14 15:45:01 +0800346 int rc = 0;
347
Harald Weltef030b212010-04-26 19:18:54 +0200348 /* look up the NSVC based on source address */
349 nsvc = nsvc_by_rem_addr(nsi, saddr);
350 if (!nsvc) {
351 /* Only the RESET procedure creates a new NSVC */
Harald Weltebbc9fac2010-05-03 18:54:12 +0200352 if (nsh->pdu_type != NS_PDUT_RESET) {
353 LOGP(DGPRS, LOGL_INFO, "Ignoring NS PDU type 0x%0x "
354 "from %s for non-existing NS-VC\n",
355 nsh->pdu_type, inet_ntoa(saddr->sin_addr));
Harald Weltef030b212010-04-26 19:18:54 +0200356 return -EIO;
Harald Weltebbc9fac2010-05-03 18:54:12 +0200357 }
358 LOGP(DGPRS, LOGL_INFO, "Creating NS-VC for BSS at %s:%u\n",
359 inet_ntoa(saddr->sin_addr), ntohs(saddr->sin_port));
Harald Weltef030b212010-04-26 19:18:54 +0200360 nsvc = nsvc_create(nsi, 0xffff);
361 nsvc->ip.bts_addr = *saddr;
Harald Weltebbc9fac2010-05-03 18:54:12 +0200362 } else
363 msgb_nsei(msg) = nsvc->nsei;
Harald Weltec5478482010-03-18 00:01:43 +0800364
Harald Welte9ba50052010-03-14 15:45:01 +0800365 switch (nsh->pdu_type) {
366 case NS_PDUT_ALIVE:
367 /* remote end inquires whether we're still alive,
368 * we need to respond with ALIVE_ACK */
Harald Weltec5478482010-03-18 00:01:43 +0800369 rc = gprs_ns_tx_simple(nsvc, NS_PDUT_ALIVE_ACK);
Harald Welte9ba50052010-03-14 15:45:01 +0800370 break;
371 case NS_PDUT_ALIVE_ACK:
372 /* stop Tns-alive */
373 bsc_del_timer(&nsvc->alive_timer);
374 /* start Tns-test */
375 nsvc->timer_is_tns_alive = 0;
376 bsc_schedule_timer(&nsvc->alive_timer, NS_TIMER_TEST);
377 break;
378 case NS_PDUT_UNITDATA:
379 /* actual user data */
Harald Welte24a655f2010-04-30 19:54:29 +0200380 rc = gprs_ns_rx_unitdata(nsvc, msg);
Harald Welte9ba50052010-03-14 15:45:01 +0800381 break;
382 case NS_PDUT_STATUS:
Harald Welte24a655f2010-04-30 19:54:29 +0200383 rc = gprs_ns_rx_status(nsvc, msg);
Harald Welte9ba50052010-03-14 15:45:01 +0800384 break;
385 case NS_PDUT_RESET:
Harald Welte24a655f2010-04-30 19:54:29 +0200386 rc = gprs_ns_rx_reset(nsvc, msg);
Harald Welte9ba50052010-03-14 15:45:01 +0800387 break;
388 case NS_PDUT_RESET_ACK:
Harald Weltebbc9fac2010-05-03 18:54:12 +0200389 DEBUGP(DGPRS, "NSEI=%u Rx NS RESET ACK\n", nsvc->nsei);
Harald Weltef030b212010-04-26 19:18:54 +0200390 /* mark remote NS-VC as blocked + active */
391 nsvc->remote_state = NSE_S_BLOCKED | NSE_S_ALIVE;
Harald Welte9ba50052010-03-14 15:45:01 +0800392 break;
393 case NS_PDUT_UNBLOCK:
394 /* Section 7.2: unblocking procedure */
Harald Weltebbc9fac2010-05-03 18:54:12 +0200395 DEBUGP(DGPRS, "NSEI=%u Rx NS UNBLOCK\n", nsvc->nsei);
Harald Welte9ba50052010-03-14 15:45:01 +0800396 nsvc->state &= ~NSE_S_BLOCKED;
Harald Weltec5478482010-03-18 00:01:43 +0800397 rc = gprs_ns_tx_simple(nsvc, NS_PDUT_UNBLOCK_ACK);
Harald Welte9ba50052010-03-14 15:45:01 +0800398 break;
399 case NS_PDUT_UNBLOCK_ACK:
Harald Weltebbc9fac2010-05-03 18:54:12 +0200400 DEBUGP(DGPRS, "NSEI=%u Rx NS UNBLOCK ACK\n", nsvc->nsei);
Harald Weltef030b212010-04-26 19:18:54 +0200401 /* mark remote NS-VC as unblocked + active */
402 nsvc->remote_state = NSE_S_ALIVE;
Harald Welte9ba50052010-03-14 15:45:01 +0800403 break;
404 case NS_PDUT_BLOCK:
Harald Weltebbc9fac2010-05-03 18:54:12 +0200405 DEBUGP(DGPRS, "NSEI=%u Rx NS BLOCK\n", nsvc->nsei);
Harald Welte9ba50052010-03-14 15:45:01 +0800406 nsvc->state |= NSE_S_BLOCKED;
Harald Weltec5478482010-03-18 00:01:43 +0800407 rc = gprs_ns_tx_simple(nsvc, NS_PDUT_UNBLOCK_ACK);
Harald Welte9ba50052010-03-14 15:45:01 +0800408 break;
409 case NS_PDUT_BLOCK_ACK:
Harald Weltebbc9fac2010-05-03 18:54:12 +0200410 DEBUGP(DGPRS, "NSEI=%u Rx NS BLOCK ACK\n", nsvc->nsei);
Harald Weltef030b212010-04-26 19:18:54 +0200411 /* mark remote NS-VC as blocked + active */
412 nsvc->remote_state = NSE_S_BLOCKED | NSE_S_ALIVE;
Harald Welte9ba50052010-03-14 15:45:01 +0800413 break;
414 default:
Harald Weltebbc9fac2010-05-03 18:54:12 +0200415 DEBUGP(DGPRS, "NSEI=%u Rx Unknown NS PDU type 0x%02x\n",
416 nsvc->nsei, nsh->pdu_type);
Harald Welte9ba50052010-03-14 15:45:01 +0800417 rc = -EINVAL;
418 break;
419 }
420 return rc;
421}
422
Harald Weltef030b212010-04-26 19:18:54 +0200423struct gprs_ns_inst *gprs_ns_instantiate(gprs_ns_cb_t *cb)
424{
425 struct gprs_ns_inst *nsi = talloc_zero(tall_bsc_ctx, struct gprs_ns_inst);
426
427 nsi->cb = cb;
428 INIT_LLIST_HEAD(&nsi->gprs_nsvcs);
429
Harald Welte3771d092010-04-30 20:26:32 +0200430 return nsi;
Harald Weltef030b212010-04-26 19:18:54 +0200431}
432
433void gprs_ns_destroy(struct gprs_ns_inst *nsi)
434{
435 /* FIXME: clear all timers */
436
437 /* recursively free the NSI and all its NSVCs */
438 talloc_free(nsi);
439}
440
441
442/* NS-over-IP code, according to 3GPP TS 48.016 Chapter 6.2
443 * We don't support Size Procedure, Configuration Procedure, ChangeWeight Procedure */
444
445/* Read a single NS-over-IP message */
446static struct msgb *read_nsip_msg(struct bsc_fd *bfd, int *error,
447 struct sockaddr_in *saddr)
448{
449 struct msgb *msg = msgb_alloc(NS_ALLOC_SIZE, "Abis/IP/GPRS-NS");
450 int ret = 0;
451 socklen_t saddr_len = sizeof(*saddr);
452
453 if (!msg) {
454 *error = -ENOMEM;
455 return NULL;
456 }
457
458 ret = recvfrom(bfd->fd, msg->data, NS_ALLOC_SIZE, 0,
459 (struct sockaddr *)saddr, &saddr_len);
460 if (ret < 0) {
Harald Weltebbc9fac2010-05-03 18:54:12 +0200461 LOGP(DGPRS, LOGL_ERROR, "recv error %s during NSIP recv\n",
462 strerror(errno));
Harald Weltef030b212010-04-26 19:18:54 +0200463 msgb_free(msg);
464 *error = ret;
465 return NULL;
466 } else if (ret == 0) {
467 msgb_free(msg);
468 *error = ret;
469 return NULL;
470 }
471
472 msg->l2h = msg->data;
473 msgb_put(msg, ret);
474
475 return msg;
476}
477
478static int handle_nsip_read(struct bsc_fd *bfd)
479{
480 int error;
481 struct sockaddr_in saddr;
482 struct gprs_ns_inst *nsi = bfd->data;
483 struct msgb *msg = read_nsip_msg(bfd, &error, &saddr);
484
485 if (!msg)
486 return error;
487
488 return gprs_ns_rcvmsg(nsi, msg, &saddr);
489}
490
491static int handle_nsip_write(struct bsc_fd *bfd)
492{
493 /* FIXME: actually send the data here instead of nsip_sendmsg() */
494 return -EIO;
495}
496
Harald Welte24a655f2010-04-30 19:54:29 +0200497int nsip_sendmsg(struct gprs_nsvc *nsvc, struct msgb *msg)
Harald Weltef030b212010-04-26 19:18:54 +0200498{
499 int rc;
500 struct gprs_ns_inst *nsi = nsvc->nsi;
501 struct sockaddr_in *daddr = &nsvc->ip.bts_addr;
502
503 rc = sendto(nsi->nsip.fd.fd, msg->data, msg->len, 0,
504 (struct sockaddr *)daddr, sizeof(*daddr));
505
506 talloc_free(msg);
507
508 return rc;
509}
510
511/* UDP Port 23000 carries the LLC-in-BSSGP-in-NS protocol stack */
512static int nsip_fd_cb(struct bsc_fd *bfd, unsigned int what)
513{
514 int rc = 0;
515
516 if (what & BSC_FD_READ)
517 rc = handle_nsip_read(bfd);
518 if (what & BSC_FD_WRITE)
519 rc = handle_nsip_write(bfd);
520
521 return rc;
522}
523
524
525/* FIXME: this is currently in input/ipaccess.c */
Harald Welte8f9a3ee2010-05-02 11:26:34 +0200526extern int make_sock(struct bsc_fd *bfd, int proto, uint16_t port,
Harald Weltef030b212010-04-26 19:18:54 +0200527 int (*cb)(struct bsc_fd *fd, unsigned int what));
528
529/* Listen for incoming GPRS packets */
530int nsip_listen(struct gprs_ns_inst *nsi, uint16_t udp_port)
531{
532 int ret;
533
534 ret = make_sock(&nsi->nsip.fd, IPPROTO_UDP, udp_port, nsip_fd_cb);
535 if (ret < 0)
536 return ret;
537
538 nsi->ll = GPRS_NS_LL_UDP;
539 nsi->nsip.fd.data = nsi;
540
541 return ret;
542}
Harald Welte3771d092010-04-30 20:26:32 +0200543
544/* Establish a connection (from the BSS) to the SGSN */
545struct gprs_nsvc *nsip_connect(struct gprs_ns_inst *nsi,
Harald Welte1203de32010-05-01 11:28:43 +0200546 struct sockaddr_in *dest, uint16_t nsei,
547 uint16_t nsvci)
Harald Welte3771d092010-04-30 20:26:32 +0200548{
549 struct gprs_nsvc *nsvc;
550
551 nsvc = nsvc_by_rem_addr(nsi, dest);
552 if (!nsvc) {
553 nsvc = nsvc_create(nsi, nsvci);
554 nsvc->ip.bts_addr = *dest;
555 }
Harald Welte1203de32010-05-01 11:28:43 +0200556 nsvc->nsei = nsei;
557 nsvc->nsvci = nsvci;
Harald Welte3771d092010-04-30 20:26:32 +0200558 nsvc->remote_end_is_sgsn = 1;
559
560 /* Initiate a RESET procedure */
561 if (gprs_ns_tx_simple(nsvc, NS_PDUT_RESET) < 0)
562 return NULL;
563 /* FIXME: should we run a timer and re-transmit the reset request? */
564
565 return nsvc;
566}