blob: 2b189cd304a1d407e0e205dd1f4c7313db37c9ed [file] [log] [blame]
Harald Weltea9f23c82011-11-23 15:01:31 +01001/* GPRS Networks Service (NS) messages on the Gb interface
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 Welte605ac5d2012-06-16 16:09:52 +08004/* (C) 2009-2012 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
Harald Welte7fa89c22014-10-26 20:33:09 +01009 * 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
Harald Welte9ba50052010-03-14 15:45:01 +080011 * (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
Harald Welte7fa89c22014-10-26 20:33:09 +010016 * GNU General Public License for more details.
Harald Welte9ba50052010-03-14 15:45:01 +080017 *
Harald Welte7fa89c22014-10-26 20:33:09 +010018 * You should have received a copy of the GNU General Public License
Harald Weltee4cbb3f2011-01-01 15:25:50 +010019 * along with this program. If not, see <http://www.gnu.org/licenses/>.
Harald Welte9ba50052010-03-14 15:45:01 +080020 *
21 */
22
Harald Weltea9f23c82011-11-23 15:01:31 +010023/*! \addtogroup libgb
24 * @{
25 */
26
27/*! \file gprs_ns.c */
28
29/*!
30 * GPRS Networks Service (NS) messages on the Gb interface
31 * 3GPP TS 08.16 version 8.0.1 Release 1999 / ETSI TS 101 299 V8.0.1 (2002-05)
32 *
33 * Some introduction into NS: NS is used typically on top of frame relay,
Harald Welte9ba50052010-03-14 15:45:01 +080034 * but in the ip.access world it is encapsulated in UDP packets. It serves
35 * as an intermediate shim betwen BSSGP and the underlying medium. It doesn't
36 * do much, apart from providing congestion notification and status indication.
37 *
38 * Terms:
39 * NS Network Service
40 * NSVC NS Virtual Connection
41 * NSEI NS Entity Identifier
42 * NSVL NS Virtual Link
43 * NSVLI NS Virtual Link Identifier
44 * BVC BSSGP Virtual Connection
45 * BVCI BSSGP Virtual Connection Identifier
46 * NSVCG NS Virtual Connection Goup
47 * Blocked NS-VC cannot be used for user traffic
48 * Alive Ability of a NS-VC to provide communication
49 *
50 * There can be multiple BSSGP virtual connections over one (group of) NSVC's. BSSGP will
51 * therefore identify the BSSGP virtual connection by a BVCI passed down to NS.
52 * NS then has to firgure out which NSVC's are responsible for this BVCI.
53 * Those mappings are administratively configured.
54 */
55
Harald Weltedd1c83c2010-05-13 13:58:08 +020056/* This implementation has the following limitations:
57 * o Only one NS-VC for each NSE: No load-sharing function
58 * o NSVCI 65535 and 65534 are reserved for internal use
59 * o Only UDP is supported as of now, no frame relay support
60 * o The IP Sub-Network-Service (SNS) as specified in 48.016 is not implemented
61 * o There are no BLOCK and UNBLOCK timers (yet?)
62 */
63
Harald Welte9ba50052010-03-14 15:45:01 +080064#include <stdlib.h>
65#include <unistd.h>
66#include <errno.h>
Harald Welte8f9a3ee2010-05-02 11:26:34 +020067#include <stdint.h>
Harald Welte9ba50052010-03-14 15:45:01 +080068
Holger Hans Peter Freyther3c16de22012-07-12 14:13:41 +020069#include <sys/types.h>
70#include <sys/socket.h>
Harald Welte9ba50052010-03-14 15:45:01 +080071#include <arpa/inet.h>
72
Pablo Neira Ayusoff663232011-03-22 16:47:59 +010073#include <osmocom/core/msgb.h>
74#include <osmocom/gsm/tlv.h>
75#include <osmocom/core/talloc.h>
76#include <osmocom/core/select.h>
77#include <osmocom/core/rate_ctr.h>
Jacob Erlbeck0a1400f2015-10-06 15:23:25 +020078#include <osmocom/core/stat_item.h>
Jacob Erlbeckbc9d9ac2015-11-02 14:49:35 +010079#include <osmocom/core/stats.h>
Harald Welte73952e32012-06-16 14:59:56 +080080#include <osmocom/core/socket.h>
Harald Welte4fcdd762012-06-16 16:40:42 +080081#include <osmocom/core/signal.h>
Harald Welte73952e32012-06-16 14:59:56 +080082#include <osmocom/gprs/gprs_ns.h>
83#include <osmocom/gprs/gprs_bssgp.h>
84#include <osmocom/gprs/gprs_ns_frgre.h>
85
Harald Weltecca49632012-06-16 17:45:59 +080086#include "common_vty.h"
Harald Welte9ba50052010-03-14 15:45:01 +080087
Harald Welte9ba50052010-03-14 15:45:01 +080088static const struct tlv_definition ns_att_tlvdef = {
89 .def = {
90 [NS_IE_CAUSE] = { TLV_TYPE_TvLV, 0 },
91 [NS_IE_VCI] = { TLV_TYPE_TvLV, 0 },
92 [NS_IE_PDU] = { TLV_TYPE_TvLV, 0 },
93 [NS_IE_BVCI] = { TLV_TYPE_TvLV, 0 },
94 [NS_IE_NSEI] = { TLV_TYPE_TvLV, 0 },
95 },
96};
97
Harald Weltec51c23c2010-05-13 12:55:20 +020098enum ns_ctr {
99 NS_CTR_PKTS_IN,
100 NS_CTR_PKTS_OUT,
101 NS_CTR_BYTES_IN,
102 NS_CTR_BYTES_OUT,
103 NS_CTR_BLOCKED,
104 NS_CTR_DEAD,
Jacob Erlbeck5e6d6792013-10-14 22:06:48 +0200105 NS_CTR_REPLACED,
106 NS_CTR_NSEI_CHG,
Jacob Erlbeck5405a102013-10-24 01:33:23 +0200107 NS_CTR_INV_VCI,
108 NS_CTR_INV_NSEI,
Jacob Erlbeck0a1400f2015-10-06 15:23:25 +0200109 NS_CTR_LOST_ALIVE,
110 NS_CTR_LOST_RESET,
Harald Weltec51c23c2010-05-13 12:55:20 +0200111};
112
Harald Welte144e0292010-05-13 11:45:07 +0200113static const struct rate_ctr_desc nsvc_ctr_description[] = {
Jacob Erlbeck5e6d6792013-10-14 22:06:48 +0200114 { "packets.in", "Packets at NS Level ( In)" },
115 { "packets.out","Packets at NS Level (Out)" },
116 { "bytes.in", "Bytes at NS Level ( In)" },
117 { "bytes.out", "Bytes at NS Level (Out)" },
118 { "blocked", "NS-VC Block count " },
119 { "dead", "NS-VC gone dead count " },
120 { "replaced", "NS-VC replaced other count" },
Jacob Erlbeckab852ee2013-10-24 01:33:24 +0200121 { "nsei-chg", "NS-VC changed NSEI count " },
Jacob Erlbeck5405a102013-10-24 01:33:23 +0200122 { "inv-nsvci", "NS-VCI was invalid count " },
123 { "inv-nsei", "NSEI was invalid count " },
Jacob Erlbeck0a1400f2015-10-06 15:23:25 +0200124 { "lost.alive", "ALIVE ACK missing count " },
125 { "lost.reset", "RESET ACK missing count " },
Harald Welte144e0292010-05-13 11:45:07 +0200126};
127
128static const struct rate_ctr_group_desc nsvc_ctrg_desc = {
Harald Weltec51c23c2010-05-13 12:55:20 +0200129 .group_name_prefix = "ns.nsvc",
Harald Welte144e0292010-05-13 11:45:07 +0200130 .group_description = "NSVC Peer Statistics",
131 .num_ctr = ARRAY_SIZE(nsvc_ctr_description),
132 .ctr_desc = nsvc_ctr_description,
133};
134
Jacob Erlbeck0a1400f2015-10-06 15:23:25 +0200135enum ns_stat {
136 NS_STAT_ALIVE_DELAY,
137};
138
Jacob Erlbeckfc9533d2015-10-29 00:55:58 +0100139static const struct osmo_stat_item_desc nsvc_stat_description[] = {
Jacob Erlbeck0a1400f2015-10-06 15:23:25 +0200140 { "alive.delay", "ALIVE reponse time ", "ms", 16, 0 },
141};
142
Jacob Erlbeckfc9533d2015-10-29 00:55:58 +0100143static const struct osmo_stat_item_group_desc nsvc_statg_desc = {
Jacob Erlbeck0a1400f2015-10-06 15:23:25 +0200144 .group_name_prefix = "ns.nsvc",
145 .group_description = "NSVC Peer Statistics",
146 .num_items = ARRAY_SIZE(nsvc_stat_description),
147 .item_desc = nsvc_stat_description,
Jacob Erlbeckbc9d9ac2015-11-02 14:49:35 +0100148 .class_id = OSMO_STATS_CLASS_PEER,
Jacob Erlbeck0a1400f2015-10-06 15:23:25 +0200149};
150
Holger Hans Peter Freyther9e1cd5a2013-10-25 11:09:26 +0200151#define CHECK_TX_RC(rc, nsvc) \
152 if (rc < 0) \
153 LOGP(DNS, LOGL_ERROR, "TX failed (%d) to peer %s\n", \
154 rc, gprs_ns_ll_str(nsvc));
155
Jacob Erlbeck8d192d72015-04-07 17:52:45 +0200156struct msgb *gprs_ns_msgb_alloc(void)
157{
158 struct msgb *msg = msgb_alloc_headroom(NS_ALLOC_SIZE, NS_ALLOC_HEADROOM,
159 "GPRS/NS");
160 if (!msg) {
161 LOGP(DNS, LOGL_ERROR, "Failed to allocate NS message of size %d\n",
162 NS_ALLOC_SIZE);
163 }
164 return msg;
165}
166
Holger Hans Peter Freyther9e1cd5a2013-10-25 11:09:26 +0200167
Harald Weltea9f23c82011-11-23 15:01:31 +0100168/*! \brief Lookup struct gprs_nsvc based on NSVCI
169 * \param[in] nsi NS instance in which to search
170 * \param[in] nsvci NSVCI to be searched
171 * \returns gprs_nsvc of respective NSVCI
172 */
Harald Weltef5430362012-06-17 12:25:53 +0800173struct gprs_nsvc *gprs_nsvc_by_nsvci(struct gprs_ns_inst *nsi, uint16_t nsvci)
Harald Weltef030b212010-04-26 19:18:54 +0200174{
175 struct gprs_nsvc *nsvc;
176 llist_for_each_entry(nsvc, &nsi->gprs_nsvcs, list) {
177 if (nsvc->nsvci == nsvci)
178 return nsvc;
179 }
180 return NULL;
181}
182
Harald Weltea9f23c82011-11-23 15:01:31 +0100183/*! \brief Lookup struct gprs_nsvc based on NSEI
184 * \param[in] nsi NS instance in which to search
185 * \param[in] nsei NSEI to be searched
Jacob Erlbeck69017152013-10-14 12:03:54 +0200186 * \returns first gprs_nsvc of respective NSEI
Harald Weltea9f23c82011-11-23 15:01:31 +0100187 */
Harald Weltef5430362012-06-17 12:25:53 +0800188struct gprs_nsvc *gprs_nsvc_by_nsei(struct gprs_ns_inst *nsi, uint16_t nsei)
Harald Welte24a655f2010-04-30 19:54:29 +0200189{
190 struct gprs_nsvc *nsvc;
191 llist_for_each_entry(nsvc, &nsi->gprs_nsvcs, list) {
192 if (nsvc->nsei == nsei)
193 return nsvc;
194 }
195 return NULL;
196}
197
Jacob Erlbeck69017152013-10-14 12:03:54 +0200198static struct gprs_nsvc *gprs_active_nsvc_by_nsei(struct gprs_ns_inst *nsi,
199 uint16_t nsei)
200{
201 struct gprs_nsvc *nsvc;
202 llist_for_each_entry(nsvc, &nsi->gprs_nsvcs, list) {
203 if (nsvc->nsei == nsei) {
Jacob Erlbeckbf021962013-10-17 13:58:35 +0200204 if (!(nsvc->state & NSE_S_BLOCKED) &&
205 nsvc->state & NSE_S_ALIVE)
Jacob Erlbeck69017152013-10-14 12:03:54 +0200206 return nsvc;
207 }
208 }
209 return NULL;
210}
211
Harald Weltef030b212010-04-26 19:18:54 +0200212/* Lookup struct gprs_nsvc based on remote peer socket addr */
213static struct gprs_nsvc *nsvc_by_rem_addr(struct gprs_ns_inst *nsi,
214 struct sockaddr_in *sin)
215{
216 struct gprs_nsvc *nsvc;
217 llist_for_each_entry(nsvc, &nsi->gprs_nsvcs, list) {
Harald Welte38407ef2010-05-12 11:56:39 +0000218 if (nsvc->ip.bts_addr.sin_addr.s_addr ==
219 sin->sin_addr.s_addr &&
220 nsvc->ip.bts_addr.sin_port == sin->sin_port)
Harald Weltef030b212010-04-26 19:18:54 +0200221 return nsvc;
222 }
223 return NULL;
224}
225
Harald Welte69a4cf22010-05-03 20:55:10 +0200226static void gprs_ns_timer_cb(void *data);
227
Harald Weltef5430362012-06-17 12:25:53 +0800228struct gprs_nsvc *gprs_nsvc_create(struct gprs_ns_inst *nsi, uint16_t nsvci)
Harald Weltef030b212010-04-26 19:18:54 +0200229{
230 struct gprs_nsvc *nsvc;
231
Harald Welteb1020d52010-05-25 22:17:30 +0200232 LOGP(DNS, LOGL_INFO, "NSVCI=%u Creating NS-VC\n", nsvci);
233
Harald Weltef030b212010-04-26 19:18:54 +0200234 nsvc = talloc_zero(nsi, struct gprs_nsvc);
235 nsvc->nsvci = nsvci;
Jacob Erlbeck9b591b72013-11-11 09:43:05 +0100236 nsvc->nsvci_is_valid = 1;
Harald Weltef030b212010-04-26 19:18:54 +0200237 /* before RESET procedure: BLOCKED and DEAD */
238 nsvc->state = NSE_S_BLOCKED;
239 nsvc->nsi = nsi;
Harald Welte69a4cf22010-05-03 20:55:10 +0200240 nsvc->timer.cb = gprs_ns_timer_cb;
241 nsvc->timer.data = nsvc;
Harald Welte144e0292010-05-13 11:45:07 +0200242 nsvc->ctrg = rate_ctr_group_alloc(nsvc, &nsvc_ctrg_desc, nsvci);
Jacob Erlbeckfc9533d2015-10-29 00:55:58 +0100243 nsvc->statg = osmo_stat_item_group_alloc(nsvc, &nsvc_statg_desc, nsvci);
Harald Welte69a4cf22010-05-03 20:55:10 +0200244
Harald Weltef030b212010-04-26 19:18:54 +0200245 llist_add(&nsvc->list, &nsi->gprs_nsvcs);
246
247 return nsvc;
248}
Harald Welte9ba50052010-03-14 15:45:01 +0800249
Harald Weltea9f23c82011-11-23 15:01:31 +0100250/*! \brief Delete given NS-VC
251 * \param[in] nsvc gprs_nsvc to be deleted
252 */
Harald Weltef5430362012-06-17 12:25:53 +0800253void gprs_nsvc_delete(struct gprs_nsvc *nsvc)
Harald Welte2bffac52010-05-12 15:55:23 +0000254{
Pablo Neira Ayuso2b159522011-05-06 12:11:06 +0200255 if (osmo_timer_pending(&nsvc->timer))
256 osmo_timer_del(&nsvc->timer);
Harald Welte2bffac52010-05-12 15:55:23 +0000257 llist_del(&nsvc->list);
Jacob Erlbecka52ba012013-10-24 01:33:21 +0200258 rate_ctr_group_free(nsvc->ctrg);
Harald Welte2bffac52010-05-12 15:55:23 +0000259 talloc_free(nsvc);
260}
261
Pablo Neira Ayuso2b88a2a2011-05-06 12:12:31 +0200262static void ns_osmo_signal_dispatch(struct gprs_nsvc *nsvc, unsigned int signal,
Harald Welte834f26d2010-05-11 06:20:54 +0200263 uint8_t cause)
264{
Jacob Erlbeck5e6d6792013-10-14 22:06:48 +0200265 struct ns_signal_data nssd = {0};
Harald Welte834f26d2010-05-11 06:20:54 +0200266
267 nssd.nsvc = nsvc;
268 nssd.cause = cause;
269
Harald Welte4fcdd762012-06-16 16:40:42 +0800270 osmo_signal_dispatch(SS_L_NS, signal, &nssd);
Harald Welte834f26d2010-05-11 06:20:54 +0200271}
272
Jacob Erlbeck5405a102013-10-24 01:33:23 +0200273static void ns_osmo_signal_dispatch_mismatch(struct gprs_nsvc *nsvc,
274 struct msgb *msg,
275 uint8_t pdu_type, uint8_t ie_type)
276{
277 struct ns_signal_data nssd = {0};
278
279 nssd.nsvc = nsvc;
280 nssd.pdu_type = pdu_type;
281 nssd.ie_type = ie_type;
282 nssd.msg = msg;
283
284 osmo_signal_dispatch(SS_L_NS, S_NS_MISMATCH, &nssd);
285}
286
Jacob Erlbeck5e6d6792013-10-14 22:06:48 +0200287static void ns_osmo_signal_dispatch_replaced(struct gprs_nsvc *nsvc, struct gprs_nsvc *old_nsvc)
288{
289 struct ns_signal_data nssd = {0};
290
291 nssd.nsvc = nsvc;
292 nssd.old_nsvc = old_nsvc;
293
294 osmo_signal_dispatch(SS_L_NS, S_NS_REPLACED, &nssd);
295}
296
Harald Welte9ba50052010-03-14 15:45:01 +0800297/* Section 10.3.2, Table 13 */
Harald Welte2577d412010-05-02 09:37:45 +0200298static const struct value_string ns_cause_str[] = {
299 { NS_CAUSE_TRANSIT_FAIL, "Transit network failure" },
300 { NS_CAUSE_OM_INTERVENTION, "O&M intervention" },
301 { NS_CAUSE_EQUIP_FAIL, "Equipment failure" },
302 { NS_CAUSE_NSVC_BLOCKED, "NS-VC blocked" },
303 { NS_CAUSE_NSVC_UNKNOWN, "NS-VC unknown" },
304 { NS_CAUSE_BVCI_UNKNOWN, "BVCI unknown" },
305 { NS_CAUSE_SEM_INCORR_PDU, "Semantically incorrect PDU" },
306 { NS_CAUSE_PDU_INCOMP_PSTATE, "PDU not compatible with protocol state" },
Harald Welte69a4cf22010-05-03 20:55:10 +0200307 { NS_CAUSE_PROTO_ERR_UNSPEC, "Protocol error, unspecified" },
Harald Welte2577d412010-05-02 09:37:45 +0200308 { NS_CAUSE_INVAL_ESSENT_IE, "Invalid essential IE" },
309 { NS_CAUSE_MISSING_ESSENT_IE, "Missing essential IE" },
310 { 0, NULL }
Harald Welte9ba50052010-03-14 15:45:01 +0800311};
312
Harald Weltea9f23c82011-11-23 15:01:31 +0100313/*! \brief Obtain a human-readable string for NS cause value */
Harald Welte2577d412010-05-02 09:37:45 +0200314const char *gprs_ns_cause_str(enum ns_cause cause)
Harald Welte9ba50052010-03-14 15:45:01 +0800315{
Harald Welte2577d412010-05-02 09:37:45 +0200316 return get_value_string(ns_cause_str, cause);
Harald Welte9ba50052010-03-14 15:45:01 +0800317}
318
Harald Welte24a655f2010-04-30 19:54:29 +0200319static int nsip_sendmsg(struct gprs_nsvc *nsvc, struct msgb *msg);
Harald Welteb3ee2652010-05-19 14:38:50 +0200320extern int grps_ns_frgre_sendmsg(struct gprs_nsvc *nsvc, struct msgb *msg);
Harald Weltef030b212010-04-26 19:18:54 +0200321
Harald Welte24a655f2010-04-30 19:54:29 +0200322static int gprs_ns_tx(struct gprs_nsvc *nsvc, struct msgb *msg)
Harald Welte9ba50052010-03-14 15:45:01 +0800323{
Harald Weltef030b212010-04-26 19:18:54 +0200324 int ret;
325
Harald Weltecca49632012-06-16 17:45:59 +0800326 log_set_context(GPRS_CTX_NSVC, nsvc);
Harald Welte91f7f4b2010-05-15 23:52:02 +0200327
Harald Welte144e0292010-05-13 11:45:07 +0200328 /* Increment number of Uplink bytes */
Harald Weltec51c23c2010-05-13 12:55:20 +0200329 rate_ctr_inc(&nsvc->ctrg->ctr[NS_CTR_PKTS_OUT]);
330 rate_ctr_add(&nsvc->ctrg->ctr[NS_CTR_BYTES_OUT], msgb_l2len(msg));
Harald Welte144e0292010-05-13 11:45:07 +0200331
Harald Welteb3ee2652010-05-19 14:38:50 +0200332 switch (nsvc->ll) {
Harald Weltef030b212010-04-26 19:18:54 +0200333 case GPRS_NS_LL_UDP:
Harald Welte24a655f2010-04-30 19:54:29 +0200334 ret = nsip_sendmsg(nsvc, msg);
Jacob Erlbeck8d192d72015-04-07 17:52:45 +0200335 if (ret < 0)
336 LOGP(DNS, LOGL_INFO,
337 "failed to send NS message via UDP: %s\n",
338 strerror(-ret));
Harald Weltef030b212010-04-26 19:18:54 +0200339 break;
Harald Welteb3ee2652010-05-19 14:38:50 +0200340 case GPRS_NS_LL_FR_GRE:
341 ret = gprs_ns_frgre_sendmsg(nsvc, msg);
Jacob Erlbeck8d192d72015-04-07 17:52:45 +0200342 if (ret < 0)
343 LOGP(DNS, LOGL_INFO,
344 "failed to send NS message via FR/GRE: %s\n",
345 strerror(-ret));
Harald Welteb3ee2652010-05-19 14:38:50 +0200346 break;
Harald Weltef030b212010-04-26 19:18:54 +0200347 default:
Harald Welteb3ee2652010-05-19 14:38:50 +0200348 LOGP(DNS, LOGL_ERROR, "unsupported NS linklayer %u\n", nsvc->ll);
Harald Weltef030b212010-04-26 19:18:54 +0200349 msgb_free(msg);
350 ret = -EIO;
351 break;
352 }
353 return ret;
Harald Welte9ba50052010-03-14 15:45:01 +0800354}
355
Harald Welte8f9a3ee2010-05-02 11:26:34 +0200356static int gprs_ns_tx_simple(struct gprs_nsvc *nsvc, uint8_t pdu_type)
Harald Welte9ba50052010-03-14 15:45:01 +0800357{
Harald Welteba4c6662010-05-19 15:38:10 +0200358 struct msgb *msg = gprs_ns_msgb_alloc();
Harald Welte9ba50052010-03-14 15:45:01 +0800359 struct gprs_ns_hdr *nsh;
360
Harald Weltecca49632012-06-16 17:45:59 +0800361 log_set_context(GPRS_CTX_NSVC, nsvc);
Harald Welte91f7f4b2010-05-15 23:52:02 +0200362
Harald Welte9ba50052010-03-14 15:45:01 +0800363 if (!msg)
364 return -ENOMEM;
365
Harald Welte144e0292010-05-13 11:45:07 +0200366 msg->l2h = msgb_put(msg, sizeof(*nsh));
367 nsh = (struct gprs_ns_hdr *) msg->l2h;
Harald Welte9ba50052010-03-14 15:45:01 +0800368
369 nsh->pdu_type = pdu_type;
370
Harald Welte24a655f2010-04-30 19:54:29 +0200371 return gprs_ns_tx(nsvc, msg);
Harald Welte9ba50052010-03-14 15:45:01 +0800372}
373
Harald Weltea9f23c82011-11-23 15:01:31 +0100374/*! \brief Transmit a NS-RESET on a given NSVC
375 * \param[in] nsvc NS-VC used for transmission
376 * \paam[in] cause Numeric NS cause value
377 */
Harald Welte834f26d2010-05-11 06:20:54 +0200378int gprs_ns_tx_reset(struct gprs_nsvc *nsvc, uint8_t cause)
Harald Welte69a4cf22010-05-03 20:55:10 +0200379{
Harald Welteba4c6662010-05-19 15:38:10 +0200380 struct msgb *msg = gprs_ns_msgb_alloc();
Harald Welte69a4cf22010-05-03 20:55:10 +0200381 struct gprs_ns_hdr *nsh;
Harald Welte69a4cf22010-05-03 20:55:10 +0200382 uint16_t nsvci = htons(nsvc->nsvci);
383 uint16_t nsei = htons(nsvc->nsei);
384
Harald Weltecca49632012-06-16 17:45:59 +0800385 log_set_context(GPRS_CTX_NSVC, nsvc);
Harald Welte91f7f4b2010-05-15 23:52:02 +0200386
Harald Welte69a4cf22010-05-03 20:55:10 +0200387 if (!msg)
388 return -ENOMEM;
389
Harald Welte6ecaa3d2010-05-12 12:01:33 +0000390 LOGP(DNS, LOGL_INFO, "NSEI=%u Tx NS RESET (NSVCI=%u, cause=%s)\n",
391 nsvc->nsei, nsvc->nsvci, gprs_ns_cause_str(cause));
392
Harald Welte144e0292010-05-13 11:45:07 +0200393 msg->l2h = msgb_put(msg, sizeof(*nsh));
394 nsh = (struct gprs_ns_hdr *) msg->l2h;
Harald Welte69a4cf22010-05-03 20:55:10 +0200395 nsh->pdu_type = NS_PDUT_RESET;
396
397 msgb_tvlv_put(msg, NS_IE_CAUSE, 1, &cause);
398 msgb_tvlv_put(msg, NS_IE_VCI, 2, (uint8_t *) &nsvci);
399 msgb_tvlv_put(msg, NS_IE_NSEI, 2, (uint8_t *) &nsei);
400
401 return gprs_ns_tx(nsvc, msg);
402
403}
404
Harald Weltea9f23c82011-11-23 15:01:31 +0100405/*! \brief Transmit a NS-STATUS on a given NSVC
406 * \param[in] nsvc NS-VC to be used for transmission
407 * \param[in] cause Numeric NS cause value
408 * \param[in] bvci BVCI to be reset within NSVC
409 * \param[in] orig_msg message causing the STATUS */
Harald Weltec1402a62010-05-12 11:48:44 +0200410int gprs_ns_tx_status(struct gprs_nsvc *nsvc, uint8_t cause,
411 uint16_t bvci, struct msgb *orig_msg)
412{
Harald Welteba4c6662010-05-19 15:38:10 +0200413 struct msgb *msg = gprs_ns_msgb_alloc();
Harald Weltec1402a62010-05-12 11:48:44 +0200414 struct gprs_ns_hdr *nsh;
415 uint16_t nsvci = htons(nsvc->nsvci);
416
Harald Weltecca49632012-06-16 17:45:59 +0800417 log_set_context(GPRS_CTX_NSVC, nsvc);
Harald Welte91f7f4b2010-05-15 23:52:02 +0200418
Harald Weltec1402a62010-05-12 11:48:44 +0200419 bvci = htons(bvci);
420
421 if (!msg)
422 return -ENOMEM;
423
Harald Welte90af1942010-05-15 23:02:24 +0200424 LOGP(DNS, LOGL_NOTICE, "NSEI=%u Tx NS STATUS (NSVCI=%u, cause=%s)\n",
Harald Welte6ecaa3d2010-05-12 12:01:33 +0000425 nsvc->nsei, nsvc->nsvci, gprs_ns_cause_str(cause));
426
Harald Welte144e0292010-05-13 11:45:07 +0200427 msg->l2h = msgb_put(msg, sizeof(*nsh));
428 nsh = (struct gprs_ns_hdr *) msg->l2h;
Harald Weltec1402a62010-05-12 11:48:44 +0200429 nsh->pdu_type = NS_PDUT_STATUS;
430
431 msgb_tvlv_put(msg, NS_IE_CAUSE, 1, &cause);
432
433 /* Section 9.2.7.1: Static conditions for NS-VCI */
434 if (cause == NS_CAUSE_NSVC_BLOCKED ||
435 cause == NS_CAUSE_NSVC_UNKNOWN)
436 msgb_tvlv_put(msg, NS_IE_VCI, 2, (uint8_t *)&nsvci);
437
438 /* Section 9.2.7.2: Static conditions for NS PDU */
439 switch (cause) {
440 case NS_CAUSE_SEM_INCORR_PDU:
441 case NS_CAUSE_PDU_INCOMP_PSTATE:
442 case NS_CAUSE_PROTO_ERR_UNSPEC:
443 case NS_CAUSE_INVAL_ESSENT_IE:
444 case NS_CAUSE_MISSING_ESSENT_IE:
445 msgb_tvlv_put(msg, NS_IE_PDU, msgb_l2len(orig_msg),
446 orig_msg->l2h);
447 break;
448 default:
449 break;
450 }
451
452 /* Section 9.2.7.3: Static conditions for BVCI */
453 if (cause == NS_CAUSE_BVCI_UNKNOWN)
454 msgb_tvlv_put(msg, NS_IE_VCI, 2, (uint8_t *)&bvci);
455
456 return gprs_ns_tx(nsvc, msg);
457}
458
Harald Weltea9f23c82011-11-23 15:01:31 +0100459/*! \brief Transmit a NS-BLOCK on a tiven NS-VC
460 * \param[in] nsvc NS-VC on which the NS-BLOCK is to be transmitted
461 * \param[in] cause Numeric NS Cause value
462 * \returns 0 in case of success
463 */
Harald Welte834f26d2010-05-11 06:20:54 +0200464int gprs_ns_tx_block(struct gprs_nsvc *nsvc, uint8_t cause)
465{
Harald Welteba4c6662010-05-19 15:38:10 +0200466 struct msgb *msg = gprs_ns_msgb_alloc();
Harald Welte834f26d2010-05-11 06:20:54 +0200467 struct gprs_ns_hdr *nsh;
468 uint16_t nsvci = htons(nsvc->nsvci);
469
Harald Weltecca49632012-06-16 17:45:59 +0800470 log_set_context(GPRS_CTX_NSVC, nsvc);
Harald Welte91f7f4b2010-05-15 23:52:02 +0200471
Harald Welte834f26d2010-05-11 06:20:54 +0200472 if (!msg)
473 return -ENOMEM;
474
Harald Welte6ecaa3d2010-05-12 12:01:33 +0000475 LOGP(DNS, LOGL_INFO, "NSEI=%u Tx NS BLOCK (NSVCI=%u, cause=%s)\n",
476 nsvc->nsei, nsvc->nsvci, gprs_ns_cause_str(cause));
477
Harald Welte834f26d2010-05-11 06:20:54 +0200478 /* be conservative and mark it as blocked even now! */
479 nsvc->state |= NSE_S_BLOCKED;
Harald Weltec51c23c2010-05-13 12:55:20 +0200480 rate_ctr_inc(&nsvc->ctrg->ctr[NS_CTR_BLOCKED]);
Harald Welte834f26d2010-05-11 06:20:54 +0200481
Harald Welte144e0292010-05-13 11:45:07 +0200482 msg->l2h = msgb_put(msg, sizeof(*nsh));
483 nsh = (struct gprs_ns_hdr *) msg->l2h;
Harald Welte834f26d2010-05-11 06:20:54 +0200484 nsh->pdu_type = NS_PDUT_BLOCK;
485
486 msgb_tvlv_put(msg, NS_IE_CAUSE, 1, &cause);
487 msgb_tvlv_put(msg, NS_IE_VCI, 2, (uint8_t *) &nsvci);
488
489 return gprs_ns_tx(nsvc, msg);
490}
491
Harald Weltea9f23c82011-11-23 15:01:31 +0100492/*! \brief Transmit a NS-UNBLOCK on a given NS-VC
493 * \param[in] nsvc NS-VC on which the NS-UNBLOCK is to be transmitted
494 * \returns 0 in case of success
495 */
Harald Welte834f26d2010-05-11 06:20:54 +0200496int gprs_ns_tx_unblock(struct gprs_nsvc *nsvc)
497{
Harald Weltecca49632012-06-16 17:45:59 +0800498 log_set_context(GPRS_CTX_NSVC, nsvc);
Harald Welte6ecaa3d2010-05-12 12:01:33 +0000499 LOGP(DNS, LOGL_INFO, "NSEI=%u Tx NS UNBLOCK (NSVCI=%u)\n",
500 nsvc->nsei, nsvc->nsvci);
501
Harald Welte834f26d2010-05-11 06:20:54 +0200502 return gprs_ns_tx_simple(nsvc, NS_PDUT_UNBLOCK);
503}
504
Harald Weltea9f23c82011-11-23 15:01:31 +0100505/*! \brief Transmit a NS-ALIVE on a given NS-VC
506 * \param[in] nsvc NS-VC on which the NS-ALIVE is to be transmitted
507 * \returns 0 in case of success
508 */
Harald Welteb983c312010-05-12 12:11:45 +0000509int gprs_ns_tx_alive(struct gprs_nsvc *nsvc)
510{
Harald Weltecca49632012-06-16 17:45:59 +0800511 log_set_context(GPRS_CTX_NSVC, nsvc);
Harald Welteb983c312010-05-12 12:11:45 +0000512 LOGP(DNS, LOGL_DEBUG, "NSEI=%u Tx NS ALIVE (NSVCI=%u)\n",
513 nsvc->nsei, nsvc->nsvci);
514
515 return gprs_ns_tx_simple(nsvc, NS_PDUT_ALIVE);
516}
517
Harald Weltea9f23c82011-11-23 15:01:31 +0100518/*! \brief Transmit a NS-ALIVE-ACK on a given NS-VC
519 * \param[in] nsvc NS-VC on which the NS-ALIVE-ACK is to be transmitted
520 * \returns 0 in case of success
521 */
Harald Welteb983c312010-05-12 12:11:45 +0000522int gprs_ns_tx_alive_ack(struct gprs_nsvc *nsvc)
523{
Harald Weltecca49632012-06-16 17:45:59 +0800524 log_set_context(GPRS_CTX_NSVC, nsvc);
Harald Welteb983c312010-05-12 12:11:45 +0000525 LOGP(DNS, LOGL_DEBUG, "NSEI=%u Tx NS ALIVE_ACK (NSVCI=%u)\n",
526 nsvc->nsei, nsvc->nsvci);
527
528 return gprs_ns_tx_simple(nsvc, NS_PDUT_ALIVE_ACK);
529}
530
Harald Weltefe4ab902010-05-12 17:19:53 +0000531static const enum ns_timeout timer_mode_tout[_NSVC_TIMER_NR] = {
532 [NSVC_TIMER_TNS_RESET] = NS_TOUT_TNS_RESET,
533 [NSVC_TIMER_TNS_ALIVE] = NS_TOUT_TNS_ALIVE,
534 [NSVC_TIMER_TNS_TEST] = NS_TOUT_TNS_TEST,
Harald Welte69a4cf22010-05-03 20:55:10 +0200535};
536
Harald Welte7c24b9e2010-05-12 12:21:52 +0000537static const struct value_string timer_mode_strs[] = {
538 { NSVC_TIMER_TNS_RESET, "tns-reset" },
539 { NSVC_TIMER_TNS_ALIVE, "tns-alive" },
540 { NSVC_TIMER_TNS_TEST, "tns-test" },
541 { 0, NULL }
542};
543
Harald Welte69a4cf22010-05-03 20:55:10 +0200544static void nsvc_start_timer(struct gprs_nsvc *nsvc, enum nsvc_timer_mode mode)
545{
Harald Weltefe4ab902010-05-12 17:19:53 +0000546 enum ns_timeout tout = timer_mode_tout[mode];
547 unsigned int seconds = nsvc->nsi->timeout[tout];
548
Harald Weltecca49632012-06-16 17:45:59 +0800549 log_set_context(GPRS_CTX_NSVC, nsvc);
Harald Welte4e187c62010-05-12 13:55:36 +0000550 DEBUGP(DNS, "NSEI=%u Starting timer in mode %s (%u seconds)\n",
551 nsvc->nsei, get_value_string(timer_mode_strs, mode),
Harald Weltefe4ab902010-05-12 17:19:53 +0000552 seconds);
Harald Welte7c24b9e2010-05-12 12:21:52 +0000553
Pablo Neira Ayuso2b159522011-05-06 12:11:06 +0200554 if (osmo_timer_pending(&nsvc->timer))
555 osmo_timer_del(&nsvc->timer);
Harald Welte69a4cf22010-05-03 20:55:10 +0200556
Jacob Erlbeck0a1400f2015-10-06 15:23:25 +0200557 gettimeofday(&nsvc->timer_started, NULL);
Harald Welte69a4cf22010-05-03 20:55:10 +0200558 nsvc->timer_mode = mode;
Pablo Neira Ayuso2b159522011-05-06 12:11:06 +0200559 osmo_timer_schedule(&nsvc->timer, seconds, 0);
Harald Welte69a4cf22010-05-03 20:55:10 +0200560}
561
Jacob Erlbeck0a1400f2015-10-06 15:23:25 +0200562static int nsvc_timer_elapsed_ms(struct gprs_nsvc *nsvc)
563{
564 struct timeval now, elapsed;
565 gettimeofday(&now, NULL);
566 timersub(&now, &nsvc->timer_started, &elapsed);
567
568 return 1000 * elapsed.tv_sec + elapsed.tv_usec / 1000;
569}
570
Harald Welte80405452010-05-03 20:16:13 +0200571static void gprs_ns_timer_cb(void *data)
Harald Welte9ba50052010-03-14 15:45:01 +0800572{
573 struct gprs_nsvc *nsvc = data;
Harald Weltefe4ab902010-05-12 17:19:53 +0000574 enum ns_timeout tout = timer_mode_tout[nsvc->timer_mode];
575 unsigned int seconds = nsvc->nsi->timeout[tout];
Harald Welte9ba50052010-03-14 15:45:01 +0800576
Harald Weltecca49632012-06-16 17:45:59 +0800577 log_set_context(GPRS_CTX_NSVC, nsvc);
Harald Welte4e187c62010-05-12 13:55:36 +0000578 DEBUGP(DNS, "NSEI=%u Timer expired in mode %s (%u seconds)\n",
579 nsvc->nsei, get_value_string(timer_mode_strs, nsvc->timer_mode),
Harald Weltefe4ab902010-05-12 17:19:53 +0000580 seconds);
Harald Welte7c24b9e2010-05-12 12:21:52 +0000581
Harald Welte80405452010-05-03 20:16:13 +0200582 switch (nsvc->timer_mode) {
583 case NSVC_TIMER_TNS_ALIVE:
Harald Welte9ba50052010-03-14 15:45:01 +0800584 /* Tns-alive case: we expired without response ! */
Jacob Erlbeck0a1400f2015-10-06 15:23:25 +0200585 rate_ctr_inc(&nsvc->ctrg->ctr[NS_CTR_LOST_ALIVE]);
Harald Welte9ba50052010-03-14 15:45:01 +0800586 nsvc->alive_retries++;
Harald Weltefe4ab902010-05-12 17:19:53 +0000587 if (nsvc->alive_retries >
588 nsvc->nsi->timeout[NS_TOUT_TNS_ALIVE_RETRIES]) {
Harald Welte9ba50052010-03-14 15:45:01 +0800589 /* mark as dead and blocked */
590 nsvc->state = NSE_S_BLOCKED;
Harald Weltec51c23c2010-05-13 12:55:20 +0200591 rate_ctr_inc(&nsvc->ctrg->ctr[NS_CTR_BLOCKED]);
592 rate_ctr_inc(&nsvc->ctrg->ctr[NS_CTR_DEAD]);
Harald Weltee4ecc8c2010-05-12 00:16:57 +0200593 LOGP(DNS, LOGL_NOTICE,
594 "NSEI=%u Tns-alive expired more then "
Harald Welte69a4cf22010-05-03 20:55:10 +0200595 "%u times, blocking NS-VC\n", nsvc->nsei,
Harald Weltefe4ab902010-05-12 17:19:53 +0000596 nsvc->nsi->timeout[NS_TOUT_TNS_ALIVE_RETRIES]);
Pablo Neira Ayuso2b88a2a2011-05-06 12:12:31 +0200597 ns_osmo_signal_dispatch(nsvc, S_NS_ALIVE_EXP, 0);
598 ns_osmo_signal_dispatch(nsvc, S_NS_BLOCK, NS_CAUSE_NSVC_BLOCKED);
Harald Welte9ba50052010-03-14 15:45:01 +0800599 return;
600 }
Harald Welteb983c312010-05-12 12:11:45 +0000601 /* Tns-test case: send NS-ALIVE PDU */
602 gprs_ns_tx_alive(nsvc);
603 /* start Tns-alive timer */
Harald Welte69a4cf22010-05-03 20:55:10 +0200604 nsvc_start_timer(nsvc, NSVC_TIMER_TNS_ALIVE);
Harald Welte80405452010-05-03 20:16:13 +0200605 break;
606 case NSVC_TIMER_TNS_TEST:
Harald Welte9ba50052010-03-14 15:45:01 +0800607 /* Tns-test case: send NS-ALIVE PDU */
Harald Welteb983c312010-05-12 12:11:45 +0000608 gprs_ns_tx_alive(nsvc);
609 /* start Tns-alive timer (transition into faster
610 * alive retransmissions) */
Harald Welte7c24b9e2010-05-12 12:21:52 +0000611 nsvc->alive_retries = 0;
Harald Welte69a4cf22010-05-03 20:55:10 +0200612 nsvc_start_timer(nsvc, NSVC_TIMER_TNS_ALIVE);
613 break;
614 case NSVC_TIMER_TNS_RESET:
Jacob Erlbeck0a1400f2015-10-06 15:23:25 +0200615 rate_ctr_inc(&nsvc->ctrg->ctr[NS_CTR_LOST_RESET]);
Harald Welte69a4cf22010-05-03 20:55:10 +0200616 /* Chapter 7.3: Re-send the RESET */
Harald Welte570fb832010-05-03 21:05:24 +0200617 gprs_ns_tx_reset(nsvc, NS_CAUSE_OM_INTERVENTION);
Harald Weltec1402a62010-05-12 11:48:44 +0200618 /* Re-start Tns-reset timer */
Harald Welte69a4cf22010-05-03 20:55:10 +0200619 nsvc_start_timer(nsvc, NSVC_TIMER_TNS_RESET);
Harald Welte80405452010-05-03 20:16:13 +0200620 break;
Harald Welte2fc725d2010-05-11 10:15:26 +0200621 case _NSVC_TIMER_NR:
622 break;
Harald Welte9ba50052010-03-14 15:45:01 +0800623 }
Harald Welte9ba50052010-03-14 15:45:01 +0800624}
625
626/* Section 9.2.6 */
Harald Weltec5478482010-03-18 00:01:43 +0800627static int gprs_ns_tx_reset_ack(struct gprs_nsvc *nsvc)
Harald Welte9ba50052010-03-14 15:45:01 +0800628{
Harald Welteba4c6662010-05-19 15:38:10 +0200629 struct msgb *msg = gprs_ns_msgb_alloc();
Harald Welte9ba50052010-03-14 15:45:01 +0800630 struct gprs_ns_hdr *nsh;
Harald Welte8f9a3ee2010-05-02 11:26:34 +0200631 uint16_t nsvci, nsei;
Harald Welte9ba50052010-03-14 15:45:01 +0800632
Harald Weltecca49632012-06-16 17:45:59 +0800633 log_set_context(GPRS_CTX_NSVC, nsvc);
Harald Welte9ba50052010-03-14 15:45:01 +0800634 if (!msg)
635 return -ENOMEM;
636
Harald Weltec5478482010-03-18 00:01:43 +0800637 nsvci = htons(nsvc->nsvci);
638 nsei = htons(nsvc->nsei);
Harald Welte9ba50052010-03-14 15:45:01 +0800639
Harald Welte144e0292010-05-13 11:45:07 +0200640 msg->l2h = msgb_put(msg, sizeof(*nsh));
641 nsh = (struct gprs_ns_hdr *) msg->l2h;
Harald Welte9ba50052010-03-14 15:45:01 +0800642
643 nsh->pdu_type = NS_PDUT_RESET_ACK;
644
Harald Weltee4ecc8c2010-05-12 00:16:57 +0200645 LOGP(DNS, LOGL_INFO, "NSEI=%u Tx NS RESET ACK (NSVCI=%u)\n",
Harald Weltebbc9fac2010-05-03 18:54:12 +0200646 nsvc->nsei, nsvc->nsvci);
Harald Weltec5478482010-03-18 00:01:43 +0800647
Harald Welte8f9a3ee2010-05-02 11:26:34 +0200648 msgb_tvlv_put(msg, NS_IE_VCI, 2, (uint8_t *)&nsvci);
649 msgb_tvlv_put(msg, NS_IE_NSEI, 2, (uint8_t *)&nsei);
Harald Welte9ba50052010-03-14 15:45:01 +0800650
Harald Welte24a655f2010-04-30 19:54:29 +0200651 return gprs_ns_tx(nsvc, msg);
Harald Welte9ba50052010-03-14 15:45:01 +0800652}
653
Harald Weltea9f23c82011-11-23 15:01:31 +0100654/*! \brief High-level function for transmitting a NS-UNITDATA messsage
655 * \param[in] nsi NS-instance on which we shall transmit
656 * \param[in] msg struct msgb to be trasnmitted
657 *
658 * This function obtains the NS-VC by the msgb_nsei(msg) and then checks
659 * if the NS-VC is ALIVEV and not BLOCKED. After that, it adds a NS
660 * header for the NS-UNITDATA message type and sends it off.
661 *
662 * Section 9.2.10: transmit side / NS-UNITDATA-REQUEST primitive
663 */
Harald Welte24a655f2010-04-30 19:54:29 +0200664int gprs_ns_sendmsg(struct gprs_ns_inst *nsi, struct msgb *msg)
Harald Welte9ba50052010-03-14 15:45:01 +0800665{
Harald Welte24a655f2010-04-30 19:54:29 +0200666 struct gprs_nsvc *nsvc;
Harald Welte9ba50052010-03-14 15:45:01 +0800667 struct gprs_ns_hdr *nsh;
Harald Welte8f9a3ee2010-05-02 11:26:34 +0200668 uint16_t bvci = msgb_bvci(msg);
Harald Welte24a655f2010-04-30 19:54:29 +0200669
Jacob Erlbeck69017152013-10-14 12:03:54 +0200670 nsvc = gprs_active_nsvc_by_nsei(nsi, msgb_nsei(msg));
Harald Welte24a655f2010-04-30 19:54:29 +0200671 if (!nsvc) {
Jacob Erlbeck69017152013-10-14 12:03:54 +0200672 int rc;
673 if (gprs_nsvc_by_nsei(nsi, msgb_nsei(msg))) {
674 LOGP(DNS, LOGL_ERROR,
675 "All NS-VCs for NSEI %u are either dead or blocked!\n",
676 msgb_nsei(msg));
677 rc = -EBUSY;
678 } else {
679 LOGP(DNS, LOGL_ERROR, "Unable to resolve NSEI %u "
680 "to NS-VC!\n", msgb_nsei(msg));
681 rc = -EINVAL;
682 }
683
Harald Weltef47df642010-08-09 21:15:40 +0800684 msgb_free(msg);
Jacob Erlbeck69017152013-10-14 12:03:54 +0200685 return rc;
Harald Welte24a655f2010-04-30 19:54:29 +0200686 }
Harald Weltecca49632012-06-16 17:45:59 +0800687 log_set_context(GPRS_CTX_NSVC, nsvc);
Harald Welte9ba50052010-03-14 15:45:01 +0800688
Harald Welteec20ba42010-05-13 12:18:49 +0200689 msg->l2h = msgb_push(msg, sizeof(*nsh) + 3);
690 nsh = (struct gprs_ns_hdr *) msg->l2h;
Harald Welte9ba50052010-03-14 15:45:01 +0800691 if (!nsh) {
Harald Welteb8a6a832010-05-11 05:54:22 +0200692 LOGP(DNS, LOGL_ERROR, "Not enough headroom for NS header\n");
Harald Weltef47df642010-08-09 21:15:40 +0800693 msgb_free(msg);
Harald Welte9ba50052010-03-14 15:45:01 +0800694 return -EIO;
695 }
696
697 nsh->pdu_type = NS_PDUT_UNITDATA;
698 /* spare octet in data[0] */
699 nsh->data[1] = bvci >> 8;
700 nsh->data[2] = bvci & 0xff;
701
Harald Welte24a655f2010-04-30 19:54:29 +0200702 return gprs_ns_tx(nsvc, msg);
Harald Welte9ba50052010-03-14 15:45:01 +0800703}
704
705/* Section 9.2.10: receive side */
Harald Welte24a655f2010-04-30 19:54:29 +0200706static int gprs_ns_rx_unitdata(struct gprs_nsvc *nsvc, struct msgb *msg)
Harald Welte9ba50052010-03-14 15:45:01 +0800707{
708 struct gprs_ns_hdr *nsh = (struct gprs_ns_hdr *)msg->l2h;
Harald Welte8f9a3ee2010-05-02 11:26:34 +0200709 uint16_t bvci;
Harald Welte9ba50052010-03-14 15:45:01 +0800710
Harald Weltec1402a62010-05-12 11:48:44 +0200711 if (nsvc->state & NSE_S_BLOCKED)
712 return gprs_ns_tx_status(nsvc, NS_CAUSE_NSVC_BLOCKED,
713 0, msg);
714
Harald Welte9ba50052010-03-14 15:45:01 +0800715 /* spare octet in data[0] */
716 bvci = nsh->data[1] << 8 | nsh->data[2];
Harald Welteec19c102010-05-02 09:50:42 +0200717 msgb_bssgph(msg) = &nsh->data[3];
Harald Welte30bc19a2010-05-02 11:19:37 +0200718 msgb_bvci(msg) = bvci;
Harald Welte9ba50052010-03-14 15:45:01 +0800719
720 /* call upper layer (BSSGP) */
Harald Weltef030b212010-04-26 19:18:54 +0200721 return nsvc->nsi->cb(GPRS_NS_EVT_UNIT_DATA, nsvc, msg, bvci);
Harald Welte9ba50052010-03-14 15:45:01 +0800722}
723
724/* Section 9.2.7 */
Harald Welte24a655f2010-04-30 19:54:29 +0200725static int gprs_ns_rx_status(struct gprs_nsvc *nsvc, struct msgb *msg)
Harald Welte9ba50052010-03-14 15:45:01 +0800726{
Harald Weltef030b212010-04-26 19:18:54 +0200727 struct gprs_ns_hdr *nsh = (struct gprs_ns_hdr *) msg->l2h;
Harald Welte9ba50052010-03-14 15:45:01 +0800728 struct tlv_parsed tp;
Harald Welte8f9a3ee2010-05-02 11:26:34 +0200729 uint8_t cause;
Harald Welte9ba50052010-03-14 15:45:01 +0800730 int rc;
731
Harald Welte41337832010-05-16 00:24:26 +0200732 LOGP(DNS, LOGL_NOTICE, "NSEI=%u Rx NS STATUS ", nsvc->nsei);
Harald Welte9ba50052010-03-14 15:45:01 +0800733
Harald Weltebd33f3d2010-05-30 17:19:38 +0200734 rc = tlv_parse(&tp, &ns_att_tlvdef, nsh->data,
735 msgb_l2len(msg) - sizeof(*nsh), 0, 0);
Harald Welte36250382010-05-28 10:08:14 +0200736 if (rc < 0) {
737 LOGPC(DNS, LOGL_NOTICE, "Error during TLV Parse\n");
738 LOGP(DNS, LOGL_ERROR, "NSEI=%u Rx NS STATUS: "
739 "Error during TLV Parse\n", nsvc->nsei);
740 return rc;
741 }
Harald Welte9ba50052010-03-14 15:45:01 +0800742
743 if (!TLVP_PRESENT(&tp, NS_IE_CAUSE)) {
Harald Weltee4ecc8c2010-05-12 00:16:57 +0200744 LOGPC(DNS, LOGL_INFO, "missing cause IE\n");
Harald Welte9ba50052010-03-14 15:45:01 +0800745 return -EINVAL;
746 }
747
748 cause = *TLVP_VAL(&tp, NS_IE_CAUSE);
Harald Welte41337832010-05-16 00:24:26 +0200749 LOGPC(DNS, LOGL_NOTICE, "cause=%s\n", gprs_ns_cause_str(cause));
Harald Welte9ba50052010-03-14 15:45:01 +0800750
751 return 0;
752}
753
Jacob Erlbeck5405a102013-10-24 01:33:23 +0200754/* Replace a nsvc object with another based on NSVCI.
755 * This function replaces looks for a NSVC with the given NSVCI and replaces it
756 * if possible and necessary. If replaced, the former value of *nsvc is
757 * returned in *old_nsvc.
758 * \return != 0 if *nsvc points to a matching NSVC.
759 */
760static int gprs_nsvc_replace_if_found(uint16_t nsvci,
761 struct gprs_nsvc **nsvc,
762 struct gprs_nsvc **old_nsvc)
763{
764 struct gprs_nsvc *matching_nsvc;
765
766 if ((*nsvc)->nsvci == nsvci) {
767 *old_nsvc = NULL;
768 return 1;
769 }
770
771 matching_nsvc = gprs_nsvc_by_nsvci((*nsvc)->nsi, nsvci);
772
773 if (!matching_nsvc)
774 return 0;
775
776 /* The NS-VCI is already used by this NS-VC */
777
778 char *old_peer;
779
780 /* Exchange the NS-VC objects */
781 *old_nsvc = *nsvc;
782 *nsvc = matching_nsvc;
783
784 /* Do logging */
785 old_peer = talloc_strdup(*old_nsvc, gprs_ns_ll_str(*old_nsvc));
786 LOGP(DNS, LOGL_INFO, "NS-VC changed link (NSVCI=%u) from %s to %s\n",
787 nsvci, old_peer, gprs_ns_ll_str(*nsvc));
788
789 talloc_free(old_peer);
790
Jacob Erlbeck5405a102013-10-24 01:33:23 +0200791 return 1;
792}
793
Harald Welte9ba50052010-03-14 15:45:01 +0800794/* Section 7.3 */
Jacob Erlbeck5e6d6792013-10-14 22:06:48 +0200795static int gprs_ns_rx_reset(struct gprs_nsvc **nsvc, struct msgb *msg)
Harald Welte9ba50052010-03-14 15:45:01 +0800796{
797 struct gprs_ns_hdr *nsh = (struct gprs_ns_hdr *) msg->l2h;
Harald Welte9ba50052010-03-14 15:45:01 +0800798 struct tlv_parsed tp;
Jacob Erlbeck5e6d6792013-10-14 22:06:48 +0200799 uint8_t cause;
800 uint16_t nsvci, nsei;
Jacob Erlbeck5405a102013-10-24 01:33:23 +0200801 struct gprs_nsvc *orig_nsvc = NULL;
Harald Welte9ba50052010-03-14 15:45:01 +0800802 int rc;
803
Harald Weltebd33f3d2010-05-30 17:19:38 +0200804 rc = tlv_parse(&tp, &ns_att_tlvdef, nsh->data,
805 msgb_l2len(msg) - sizeof(*nsh), 0, 0);
Harald Welte36250382010-05-28 10:08:14 +0200806 if (rc < 0) {
807 LOGP(DNS, LOGL_ERROR, "NSEI=%u Rx NS RESET "
Jacob Erlbeck5e6d6792013-10-14 22:06:48 +0200808 "Error during TLV Parse\n", (*nsvc)->nsei);
Harald Welte36250382010-05-28 10:08:14 +0200809 return rc;
810 }
Harald Welte9ba50052010-03-14 15:45:01 +0800811
812 if (!TLVP_PRESENT(&tp, NS_IE_CAUSE) ||
813 !TLVP_PRESENT(&tp, NS_IE_VCI) ||
814 !TLVP_PRESENT(&tp, NS_IE_NSEI)) {
Harald Welteb8a6a832010-05-11 05:54:22 +0200815 LOGP(DNS, LOGL_ERROR, "NS RESET Missing mandatory IE\n");
Jacob Erlbeck5e6d6792013-10-14 22:06:48 +0200816 gprs_ns_tx_status(*nsvc, NS_CAUSE_MISSING_ESSENT_IE, 0, msg);
Harald Welte9ba50052010-03-14 15:45:01 +0800817 return -EINVAL;
818 }
819
Jacob Erlbeck5e6d6792013-10-14 22:06:48 +0200820 cause = *(uint8_t *) TLVP_VAL(&tp, NS_IE_CAUSE);
821 nsvci = ntohs(*(uint16_t *) TLVP_VAL(&tp, NS_IE_VCI));
822 nsei = ntohs(*(uint16_t *) TLVP_VAL(&tp, NS_IE_NSEI));
Harald Welte9ba50052010-03-14 15:45:01 +0800823
Jacob Erlbeck5e6d6792013-10-14 22:06:48 +0200824 LOGP(DNS, LOGL_INFO, "NSVCI=%u%s Rx NS RESET (NSEI=%u, NSVCI=%u, cause=%s)\n",
825 (*nsvc)->nsvci, (*nsvc)->nsvci_is_valid ? "" : "(invalid)",
826 nsei, nsvci, gprs_ns_cause_str(cause));
827
Jacob Erlbeckab852ee2013-10-24 01:33:24 +0200828 if ((*nsvc)->nsvci_is_valid && (*nsvc)->nsvci != nsvci) {
829 if ((*nsvc)->persistent || (*nsvc)->remote_end_is_sgsn) {
Jacob Erlbeck5405a102013-10-24 01:33:23 +0200830 /* The incoming RESET doesn't match the NSVCI. Send an
831 * appropriate RESET_ACK and ignore the RESET.
832 * See 3GPP TS 08.16, 7.3.1, 2nd paragraph.
833 */
834 ns_osmo_signal_dispatch_mismatch(*nsvc, msg,
835 NS_PDUT_RESET,
836 NS_IE_VCI);
837 rate_ctr_inc(&(*nsvc)->ctrg->ctr[NS_CTR_INV_VCI]);
838 gprs_ns_tx_reset_ack(*nsvc);
839 return 0;
Jacob Erlbeck5e6d6792013-10-14 22:06:48 +0200840 }
Jacob Erlbeck5405a102013-10-24 01:33:23 +0200841
842 /* NS-VCI has changed */
Jacob Erlbeck54b8b2d2013-10-24 01:33:25 +0200843 if (!gprs_nsvc_replace_if_found(nsvci, nsvc, &orig_nsvc)) {
844 LOGP(DNS, LOGL_INFO, "Creating NS-VC %d replacing %d "
845 "at %s\n",
846 nsvci, (*nsvc)->nsvci,
847 gprs_ns_ll_str(*nsvc));
848 orig_nsvc = *nsvc;
849 *nsvc = gprs_nsvc_create((*nsvc)->nsi, nsvci);
Jacob Erlbeck54b8b2d2013-10-24 01:33:25 +0200850 (*nsvc)->nsei = nsei;
851 }
Jacob Erlbeckab852ee2013-10-24 01:33:24 +0200852 }
Jacob Erlbeck5405a102013-10-24 01:33:23 +0200853
Jacob Erlbeckab852ee2013-10-24 01:33:24 +0200854 if ((*nsvc)->nsvci_is_valid && (*nsvc)->nsei != nsei) {
855 if ((*nsvc)->persistent || (*nsvc)->remote_end_is_sgsn) {
856 /* The incoming RESET doesn't match the NSEI. Send an
857 * appropriate RESET_ACK and ignore the RESET.
858 * See 3GPP TS 08.16, 7.3.1, 3rd paragraph.
859 */
860 ns_osmo_signal_dispatch_mismatch(*nsvc, msg,
861 NS_PDUT_RESET,
862 NS_IE_NSEI);
863 rate_ctr_inc(&(*nsvc)->ctrg->ctr[NS_CTR_INV_NSEI]);
Holger Hans Peter Freyther726e2722013-10-25 11:05:10 +0200864 rc = gprs_ns_tx_reset_ack(*nsvc);
Holger Hans Peter Freyther9e1cd5a2013-10-25 11:09:26 +0200865 CHECK_TX_RC(rc, *nsvc);
Jacob Erlbeckab852ee2013-10-24 01:33:24 +0200866 return 0;
867 }
868
869 /* NSEI has changed */
870 rate_ctr_inc(&(*nsvc)->ctrg->ctr[NS_CTR_NSEI_CHG]);
871 (*nsvc)->nsei = nsei;
Jacob Erlbeck5e6d6792013-10-14 22:06:48 +0200872 }
Harald Weltebbc9fac2010-05-03 18:54:12 +0200873
Harald Weltec1402a62010-05-12 11:48:44 +0200874 /* Mark NS-VC as blocked and alive */
Jacob Erlbeck5e6d6792013-10-14 22:06:48 +0200875 (*nsvc)->state = NSE_S_BLOCKED | NSE_S_ALIVE;
Harald Weltee8b9ca22010-05-11 18:18:31 +0200876
Jacob Erlbeck5405a102013-10-24 01:33:23 +0200877 if (orig_nsvc) {
Jacob Erlbeck54b8b2d2013-10-24 01:33:25 +0200878 rate_ctr_inc(&(*nsvc)->ctrg->ctr[NS_CTR_REPLACED]);
Jacob Erlbeck5405a102013-10-24 01:33:23 +0200879 ns_osmo_signal_dispatch_replaced(*nsvc, orig_nsvc);
Jacob Erlbeck5e6d6792013-10-14 22:06:48 +0200880
881 /* Update the ll info fields */
Jacob Erlbeck5405a102013-10-24 01:33:23 +0200882 gprs_ns_ll_copy(*nsvc, orig_nsvc);
883 gprs_ns_ll_clear(orig_nsvc);
Jacob Erlbeck5e6d6792013-10-14 22:06:48 +0200884 } else {
885 (*nsvc)->nsei = nsei;
886 (*nsvc)->nsvci = nsvci;
887 (*nsvc)->nsvci_is_valid = 1;
888 }
Harald Welte9ba50052010-03-14 15:45:01 +0800889
Harald Welte834f26d2010-05-11 06:20:54 +0200890 /* inform interested parties about the fact that this NSVC
891 * has received RESET */
Jacob Erlbeck5e6d6792013-10-14 22:06:48 +0200892 ns_osmo_signal_dispatch(*nsvc, S_NS_RESET, cause);
Harald Welte834f26d2010-05-11 06:20:54 +0200893
Jacob Erlbeck5e6d6792013-10-14 22:06:48 +0200894 rc = gprs_ns_tx_reset_ack(*nsvc);
Jacob Erlbeck05395a62013-10-08 12:04:45 +0200895
896 /* start the test procedure */
Jacob Erlbeck5e6d6792013-10-14 22:06:48 +0200897 gprs_ns_tx_simple((*nsvc), NS_PDUT_ALIVE);
898 nsvc_start_timer((*nsvc), NSVC_TIMER_TNS_TEST);
Jacob Erlbeck05395a62013-10-08 12:04:45 +0200899
900 return rc;
Harald Welte9ba50052010-03-14 15:45:01 +0800901}
902
Jacob Erlbeck5405a102013-10-24 01:33:23 +0200903static int gprs_ns_rx_reset_ack(struct gprs_nsvc **nsvc, struct msgb *msg)
904{
905 struct gprs_ns_hdr *nsh = (struct gprs_ns_hdr *) msg->l2h;
906 struct tlv_parsed tp;
907 uint16_t nsvci, nsei;
908 struct gprs_nsvc *orig_nsvc = NULL;
909 int rc;
910
911 rc = tlv_parse(&tp, &ns_att_tlvdef, nsh->data,
912 msgb_l2len(msg) - sizeof(*nsh), 0, 0);
913 if (rc < 0) {
914 LOGP(DNS, LOGL_ERROR, "NSEI=%u Rx NS RESET ACK "
915 "Error during TLV Parse\n", (*nsvc)->nsei);
916 return rc;
917 }
918
919 if (!TLVP_PRESENT(&tp, NS_IE_VCI) ||
920 !TLVP_PRESENT(&tp, NS_IE_NSEI)) {
921 LOGP(DNS, LOGL_ERROR, "NS RESET ACK Missing mandatory IE\n");
Holger Hans Peter Freyther7c91bfd2013-10-25 11:02:05 +0200922 rc = gprs_ns_tx_status(*nsvc, NS_CAUSE_MISSING_ESSENT_IE, 0, msg);
Holger Hans Peter Freyther9e1cd5a2013-10-25 11:09:26 +0200923 CHECK_TX_RC(rc, *nsvc);
Jacob Erlbeck5405a102013-10-24 01:33:23 +0200924 return -EINVAL;
925 }
926
927 nsvci = ntohs(*(uint16_t *) TLVP_VAL(&tp, NS_IE_VCI));
928 nsei = ntohs(*(uint16_t *) TLVP_VAL(&tp, NS_IE_NSEI));
929
930 LOGP(DNS, LOGL_INFO, "NSVCI=%u%s Rx NS RESET ACK (NSEI=%u, NSVCI=%u)\n",
931 (*nsvc)->nsvci, (*nsvc)->nsvci_is_valid ? "" : "(invalid)",
932 nsei, nsvci);
933
934 if (!((*nsvc)->state & NSE_S_RESET)) {
935 /* Not waiting for a RESET_ACK on this NS-VC, ignore it.
936 * See 3GPP TS 08.16, 7.3.1, 5th paragraph.
937 */
938 LOGP(DNS, LOGL_ERROR,
939 "NS RESET ACK Discarding unexpected message for "
940 "NS-VCI %d from SGSN NSEI=%d\n",
941 nsvci, nsei);
942 return 0;
943 }
944
945 if (!(*nsvc)->nsvci_is_valid) {
946 LOGP(DNS, LOGL_NOTICE,
947 "NS RESET ACK Uninitialised NS-VC (%u) for "
948 "NS-VCI %d, NSEI=%d from %s\n",
949 (*nsvc)->nsvci, nsvci, nsei, gprs_ns_ll_str(*nsvc));
950 return -EINVAL;
951 }
952
953 if ((*nsvc)->nsvci != nsvci) {
954 /* NS-VCI has changed */
955
956 /* if !0, use another NSVC object that matches the NSVCI */
957 int use_other_nsvc;
958
959 /* Only do this with BSS peers */
Jacob Erlbeckab852ee2013-10-24 01:33:24 +0200960 use_other_nsvc = !(*nsvc)->remote_end_is_sgsn &&
961 !(*nsvc)->persistent;
Jacob Erlbeck5405a102013-10-24 01:33:23 +0200962
963 if (use_other_nsvc)
964 /* Update *nsvc to point to the right NSVC object */
965 use_other_nsvc = gprs_nsvc_replace_if_found(nsvci, nsvc,
966 &orig_nsvc);
967
968 if (!use_other_nsvc) {
969 /* The incoming RESET_ACK doesn't match the NSVCI.
970 * See 3GPP TS 08.16, 7.3.1, 4th paragraph.
971 */
972 ns_osmo_signal_dispatch_mismatch(*nsvc, msg,
973 NS_PDUT_RESET_ACK,
974 NS_IE_VCI);
975 rate_ctr_inc(&(*nsvc)->ctrg->ctr[NS_CTR_INV_VCI]);
976 LOGP(DNS, LOGL_ERROR,
977 "NS RESET ACK Unknown NS-VCI %d (%s NSEI=%d) "
978 "from %s\n",
979 nsvci,
980 (*nsvc)->remote_end_is_sgsn ? "SGSN" : "BSS",
981 nsei, gprs_ns_ll_str(*nsvc));
982 return -EINVAL;
983 }
984
985 /* Notify others */
Jacob Erlbeck54b8b2d2013-10-24 01:33:25 +0200986 rate_ctr_inc(&(*nsvc)->ctrg->ctr[NS_CTR_REPLACED]);
Jacob Erlbeck5405a102013-10-24 01:33:23 +0200987 ns_osmo_signal_dispatch_replaced(*nsvc, orig_nsvc);
988
989 /* Update the ll info fields */
990 gprs_ns_ll_copy(*nsvc, orig_nsvc);
991 gprs_ns_ll_clear(orig_nsvc);
992 } else if ((*nsvc)->nsei != nsei) {
Jacob Erlbeckab852ee2013-10-24 01:33:24 +0200993 if ((*nsvc)->persistent || (*nsvc)->remote_end_is_sgsn) {
994 /* The incoming RESET_ACK doesn't match the NSEI.
995 * See 3GPP TS 08.16, 7.3.1, 4th paragraph.
996 */
997 ns_osmo_signal_dispatch_mismatch(*nsvc, msg,
998 NS_PDUT_RESET_ACK,
999 NS_IE_NSEI);
1000 rate_ctr_inc(&(*nsvc)->ctrg->ctr[NS_CTR_INV_NSEI]);
1001 LOGP(DNS, LOGL_ERROR,
1002 "NS RESET ACK Unknown NSEI %d (NS-VCI=%u) from %s\n",
1003 nsei, nsvci, gprs_ns_ll_str(*nsvc));
1004 return -EINVAL;
1005 }
1006
1007 /* NSEI has changed */
1008 rate_ctr_inc(&(*nsvc)->ctrg->ctr[NS_CTR_NSEI_CHG]);
1009 (*nsvc)->nsei = nsei;
Jacob Erlbeck5405a102013-10-24 01:33:23 +02001010 }
1011
1012 /* Mark NS-VC as blocked and alive */
1013 (*nsvc)->state = NSE_S_BLOCKED | NSE_S_ALIVE;
1014 (*nsvc)->remote_state = NSE_S_BLOCKED | NSE_S_ALIVE;
1015 rate_ctr_inc(&(*nsvc)->ctrg->ctr[NS_CTR_BLOCKED]);
1016 if ((*nsvc)->persistent || (*nsvc)->remote_end_is_sgsn) {
1017 /* stop RESET timer */
1018 osmo_timer_del(&(*nsvc)->timer);
1019 }
1020 /* Initiate TEST proc.: Send ALIVE and start timer */
1021 rc = gprs_ns_tx_simple(*nsvc, NS_PDUT_ALIVE);
1022 nsvc_start_timer(*nsvc, NSVC_TIMER_TNS_TEST);
1023
1024 return rc;
1025}
1026
Harald Welte834f26d2010-05-11 06:20:54 +02001027static int gprs_ns_rx_block(struct gprs_nsvc *nsvc, struct msgb *msg)
1028{
1029 struct gprs_ns_hdr *nsh = (struct gprs_ns_hdr *) msg->l2h;
1030 struct tlv_parsed tp;
1031 uint8_t *cause;
1032 int rc;
1033
Harald Weltee4ecc8c2010-05-12 00:16:57 +02001034 LOGP(DNS, LOGL_INFO, "NSEI=%u Rx NS BLOCK\n", nsvc->nsei);
Harald Welte834f26d2010-05-11 06:20:54 +02001035
1036 nsvc->state |= NSE_S_BLOCKED;
1037
Harald Weltebd33f3d2010-05-30 17:19:38 +02001038 rc = tlv_parse(&tp, &ns_att_tlvdef, nsh->data,
1039 msgb_l2len(msg) - sizeof(*nsh), 0, 0);
Harald Welte36250382010-05-28 10:08:14 +02001040 if (rc < 0) {
1041 LOGP(DNS, LOGL_ERROR, "NSEI=%u Rx NS BLOCK "
1042 "Error during TLV Parse\n", nsvc->nsei);
1043 return rc;
1044 }
Harald Welte834f26d2010-05-11 06:20:54 +02001045
1046 if (!TLVP_PRESENT(&tp, NS_IE_CAUSE) ||
1047 !TLVP_PRESENT(&tp, NS_IE_VCI)) {
Harald Welte834f26d2010-05-11 06:20:54 +02001048 LOGP(DNS, LOGL_ERROR, "NS RESET Missing mandatory IE\n");
Harald Weltec1402a62010-05-12 11:48:44 +02001049 gprs_ns_tx_status(nsvc, NS_CAUSE_MISSING_ESSENT_IE, 0, msg);
Harald Welte834f26d2010-05-11 06:20:54 +02001050 return -EINVAL;
1051 }
1052
1053 cause = (uint8_t *) TLVP_VAL(&tp, NS_IE_CAUSE);
1054 //nsvci = (uint16_t *) TLVP_VAL(&tp, NS_IE_VCI);
1055
Pablo Neira Ayuso2b88a2a2011-05-06 12:12:31 +02001056 ns_osmo_signal_dispatch(nsvc, S_NS_BLOCK, *cause);
Harald Weltec51c23c2010-05-13 12:55:20 +02001057 rate_ctr_inc(&nsvc->ctrg->ctr[NS_CTR_BLOCKED]);
Harald Welte834f26d2010-05-11 06:20:54 +02001058
1059 return gprs_ns_tx_simple(nsvc, NS_PDUT_BLOCK_ACK);
1060}
1061
Jacob Erlbeck84cdc702013-10-08 12:04:44 +02001062int gprs_ns_vc_create(struct gprs_ns_inst *nsi, struct msgb *msg,
1063 struct gprs_nsvc *fallback_nsvc,
1064 struct gprs_nsvc **new_nsvc);
1065
1066int gprs_ns_process_msg(struct gprs_ns_inst *nsi, struct msgb *msg,
Jacob Erlbeck5e6d6792013-10-14 22:06:48 +02001067 struct gprs_nsvc **nsvc);
Jacob Erlbeck84cdc702013-10-08 12:04:44 +02001068
Harald Weltea9f23c82011-11-23 15:01:31 +01001069/*! \brief Receive incoming NS message from underlying transport layer
1070 * \param nsi NS instance to which the data belongs
1071 * \param[in] msg message buffer containing newly-received data
1072 * \param[in] saddr socketaddr from which data was received
1073 * \param[in] ll link-layer type in which data was received
1074 * \returns 0 in case of success, < 0 in case of error
1075 *
1076 * This is the main entry point int othe NS imlementation where frames
1077 * from the underlying transport (normally UDP) enter.
1078 */
Harald Weltef030b212010-04-26 19:18:54 +02001079int gprs_ns_rcvmsg(struct gprs_ns_inst *nsi, struct msgb *msg,
Harald Welteb3ee2652010-05-19 14:38:50 +02001080 struct sockaddr_in *saddr, enum gprs_ns_ll ll)
Harald Welte9ba50052010-03-14 15:45:01 +08001081{
Harald Weltef030b212010-04-26 19:18:54 +02001082 struct gprs_nsvc *nsvc;
Harald Welte9ba50052010-03-14 15:45:01 +08001083 int rc = 0;
1084
Harald Weltef030b212010-04-26 19:18:54 +02001085 /* look up the NSVC based on source address */
1086 nsvc = nsvc_by_rem_addr(nsi, saddr);
Jacob Erlbeck84cdc702013-10-08 12:04:44 +02001087
Harald Weltef030b212010-04-26 19:18:54 +02001088 if (!nsvc) {
Jacob Erlbeck84cdc702013-10-08 12:04:44 +02001089 struct gprs_nsvc *fallback_nsvc;
1090
1091 fallback_nsvc = nsi->unknown_nsvc;
1092 log_set_context(GPRS_CTX_NSVC, fallback_nsvc);
1093 fallback_nsvc->ip.bts_addr = *saddr;
1094 fallback_nsvc->ll = ll;
1095
1096 rc = gprs_ns_vc_create(nsi, msg, fallback_nsvc, &nsvc);
1097
Jacob Erlbeck5e6d6792013-10-14 22:06:48 +02001098 if (rc < 0)
Harald Welte36250382010-05-28 10:08:14 +02001099 return rc;
Jacob Erlbeck84cdc702013-10-08 12:04:44 +02001100
1101 rc = 0;
1102 }
1103
Jacob Erlbeck5e6d6792013-10-14 22:06:48 +02001104 if (nsvc)
1105 rc = gprs_ns_process_msg(nsi, msg, &nsvc);
Jacob Erlbeck84cdc702013-10-08 12:04:44 +02001106
1107 return rc;
1108}
1109
Jacob Erlbeck96550e02013-10-14 22:06:47 +02001110const char *gprs_ns_ll_str(struct gprs_nsvc *nsvc)
Jacob Erlbeck84cdc702013-10-08 12:04:44 +02001111{
1112 static char buf[80];
1113 snprintf(buf, sizeof(buf), "%s:%u",
1114 inet_ntoa(nsvc->ip.bts_addr.sin_addr),
1115 ntohs(nsvc->ip.bts_addr.sin_port));
Holger Hans Peter Freyther0cccf402013-10-25 11:00:23 +02001116 buf[sizeof(buf) - 1] = '\0';
Jacob Erlbeck84cdc702013-10-08 12:04:44 +02001117
1118 return buf;
1119}
1120
Jacob Erlbeck96550e02013-10-14 22:06:47 +02001121void gprs_ns_ll_copy(struct gprs_nsvc *nsvc, struct gprs_nsvc *other)
1122{
1123 nsvc->ll = other->ll;
1124
1125 switch (nsvc->ll) {
1126 case GPRS_NS_LL_UDP:
1127 nsvc->ip = other->ip;
1128 break;
1129 case GPRS_NS_LL_FR_GRE:
1130 nsvc->frgre = other->frgre;
1131 break;
1132 default:
1133 break;
1134 }
1135}
1136
1137void gprs_ns_ll_clear(struct gprs_nsvc *nsvc)
1138{
1139 switch (nsvc->ll) {
1140 case GPRS_NS_LL_UDP:
1141 nsvc->ip.bts_addr.sin_addr.s_addr = INADDR_ANY;
1142 nsvc->ip.bts_addr.sin_port = 0;
1143 break;
1144 case GPRS_NS_LL_FR_GRE:
1145 nsvc->frgre.bts_addr.sin_addr.s_addr = INADDR_ANY;
1146 nsvc->frgre.bts_addr.sin_port = 0;
1147 break;
1148 default:
1149 break;
1150 }
1151}
1152
Jacob Erlbeck84cdc702013-10-08 12:04:44 +02001153/*! \brief Create/get NS-VC independently from underlying transport layer
1154 * \param nsi NS instance to which the data belongs
1155 * \param[in] msg message buffer containing newly-received data
1156 * \param[in] fallback_nsvc is used to send error messages back to the peer
Jacob Erlbeck5e6d6792013-10-14 22:06:48 +02001157 * and to initialise the ll info of a created NS-VC object
Jacob Erlbeck84cdc702013-10-08 12:04:44 +02001158 * \param[out] new_nsvc contains a pointer to a NS-VC object if one has
1159 * been created or found
1160 * \returns < 0 in case of error, GPRS_NS_CS_SKIPPED if a message has been
1161 * skipped, GPRS_NS_CS_REJECTED if a message has been rejected and
1162 * answered accordingly, GPRS_NS_CS_CREATED if a new NS-VC object
1163 * has been created and registered, and GPRS_NS_CS_FOUND if an
1164 * existing NS-VC object has been found with the same NSEI.
1165 *
1166 * This contains the initial NS automaton state (NS-VC not yet attached).
1167 */
1168int gprs_ns_vc_create(struct gprs_ns_inst *nsi, struct msgb *msg,
1169 struct gprs_nsvc *fallback_nsvc,
1170 struct gprs_nsvc **new_nsvc)
1171{
1172 struct gprs_ns_hdr *nsh = (struct gprs_ns_hdr *)msg->l2h;
1173 struct gprs_nsvc *existing_nsvc;
1174
1175 struct tlv_parsed tp;
Jacob Erlbeckb6390f92013-10-08 12:04:46 +02001176 uint16_t nsvci;
Jacob Erlbeck5e6d6792013-10-14 22:06:48 +02001177 uint16_t nsei;
Jacob Erlbeck84cdc702013-10-08 12:04:44 +02001178
1179 int rc;
1180
1181 if (nsh->pdu_type == NS_PDUT_STATUS) {
Jacob Erlbeck3d557b12013-10-28 13:29:11 +01001182 /* Do not respond, see 3GPP TS 08.16, 7.5.1 */
Jacob Erlbeck84cdc702013-10-08 12:04:44 +02001183 LOGP(DNS, LOGL_INFO, "Ignoring NS STATUS from %s "
1184 "for non-existing NS-VC\n",
Jacob Erlbeck96550e02013-10-14 22:06:47 +02001185 gprs_ns_ll_str(fallback_nsvc));
Jacob Erlbeck84cdc702013-10-08 12:04:44 +02001186 return GPRS_NS_CS_SKIPPED;
1187 }
1188
Jacob Erlbeck3d557b12013-10-28 13:29:11 +01001189 if (nsh->pdu_type == NS_PDUT_ALIVE_ACK) {
1190 /* Ignore this, see 3GPP TS 08.16, 7.4.1 */
1191 LOGP(DNS, LOGL_INFO, "Ignoring NS ALIVE ACK from %s "
1192 "for non-existing NS-VC\n",
1193 gprs_ns_ll_str(fallback_nsvc));
1194 return GPRS_NS_CS_SKIPPED;
1195 }
1196
1197 if (nsh->pdu_type == NS_PDUT_RESET_ACK) {
1198 /* Ignore this, see 3GPP TS 08.16, 7.3.1 */
1199 LOGP(DNS, LOGL_INFO, "Ignoring NS RESET ACK from %s "
1200 "for non-existing NS-VC\n",
1201 gprs_ns_ll_str(fallback_nsvc));
1202 return GPRS_NS_CS_SKIPPED;
1203 }
1204
Jacob Erlbeck84cdc702013-10-08 12:04:44 +02001205 /* Only the RESET procedure creates a new NSVC */
1206 if (nsh->pdu_type != NS_PDUT_RESET) {
1207 /* Since we have no NSVC, we have to use a fake */
1208 log_set_context(GPRS_CTX_NSVC, fallback_nsvc);
1209 LOGP(DNS, LOGL_INFO, "Rejecting NS PDU type 0x%0x "
1210 "from %s for non-existing NS-VC\n",
Jacob Erlbeck96550e02013-10-14 22:06:47 +02001211 nsh->pdu_type, gprs_ns_ll_str(fallback_nsvc));
Jacob Erlbeck84cdc702013-10-08 12:04:44 +02001212 fallback_nsvc->nsvci = fallback_nsvc->nsei = 0xfffe;
Jacob Erlbeck5405a102013-10-24 01:33:23 +02001213 fallback_nsvc->nsvci_is_valid = 0;
Jacob Erlbeck84cdc702013-10-08 12:04:44 +02001214 fallback_nsvc->state = NSE_S_ALIVE;
1215
1216 rc = gprs_ns_tx_status(fallback_nsvc,
1217 NS_CAUSE_PDU_INCOMP_PSTATE, 0, msg);
1218 if (rc < 0) {
1219 LOGP(DNS, LOGL_ERROR, "TX failed (%d) to peer %s\n",
Jacob Erlbeck96550e02013-10-14 22:06:47 +02001220 rc, gprs_ns_ll_str(fallback_nsvc));
Jacob Erlbeck84cdc702013-10-08 12:04:44 +02001221 return rc;
1222 }
1223 return GPRS_NS_CS_REJECTED;
1224 }
1225
1226 rc = tlv_parse(&tp, &ns_att_tlvdef, nsh->data,
1227 msgb_l2len(msg) - sizeof(*nsh), 0, 0);
1228 if (rc < 0) {
1229 LOGP(DNS, LOGL_ERROR, "Rx NS RESET Error %d during "
1230 "TLV Parse\n", rc);
1231 return rc;
1232 }
1233 if (!TLVP_PRESENT(&tp, NS_IE_CAUSE) ||
1234 !TLVP_PRESENT(&tp, NS_IE_VCI) || !TLVP_PRESENT(&tp, NS_IE_NSEI)) {
1235 LOGP(DNS, LOGL_ERROR, "NS RESET Missing mandatory IE\n");
Holger Hans Peter Freyther9e1cd5a2013-10-25 11:09:26 +02001236 rc = gprs_ns_tx_status(fallback_nsvc, NS_CAUSE_MISSING_ESSENT_IE, 0,
Jacob Erlbeck84cdc702013-10-08 12:04:44 +02001237 msg);
Holger Hans Peter Freyther9e1cd5a2013-10-25 11:09:26 +02001238 CHECK_TX_RC(rc, fallback_nsvc);
Jacob Erlbeck84cdc702013-10-08 12:04:44 +02001239 return -EINVAL;
1240 }
Jacob Erlbeckb6390f92013-10-08 12:04:46 +02001241 nsvci = ntohs(*(uint16_t *) TLVP_VAL(&tp, NS_IE_VCI));
Jacob Erlbeck5e6d6792013-10-14 22:06:48 +02001242 nsei = ntohs(*(uint16_t *) TLVP_VAL(&tp, NS_IE_NSEI));
Jacob Erlbeckb6390f92013-10-08 12:04:46 +02001243 /* Check if we already know this NSVCI, the remote end might
Jacob Erlbeck84cdc702013-10-08 12:04:44 +02001244 * simply have changed addresses, or it is a SGSN */
Jacob Erlbeckb6390f92013-10-08 12:04:46 +02001245 existing_nsvc = gprs_nsvc_by_nsvci(nsi, nsvci);
Jacob Erlbeck84cdc702013-10-08 12:04:44 +02001246 if (!existing_nsvc) {
1247 *new_nsvc = gprs_nsvc_create(nsi, 0xffff);
Jacob Erlbeck9b591b72013-11-11 09:43:05 +01001248 (*new_nsvc)->nsvci_is_valid = 0;
Jacob Erlbeck84cdc702013-10-08 12:04:44 +02001249 log_set_context(GPRS_CTX_NSVC, *new_nsvc);
Jacob Erlbeck5e6d6792013-10-14 22:06:48 +02001250 gprs_ns_ll_copy(*new_nsvc, fallback_nsvc);
Jacob Erlbeck84cdc702013-10-08 12:04:44 +02001251 LOGP(DNS, LOGL_INFO, "Creating NS-VC for BSS at %s\n",
Jacob Erlbeck96550e02013-10-14 22:06:47 +02001252 gprs_ns_ll_str(fallback_nsvc));
Jacob Erlbeck84cdc702013-10-08 12:04:44 +02001253
1254 return GPRS_NS_CS_CREATED;
1255 }
1256
Jacob Erlbeck5e6d6792013-10-14 22:06:48 +02001257 /* Check NSEI */
1258 if (existing_nsvc->nsei != nsei) {
1259 LOGP(DNS, LOGL_NOTICE,
1260 "NS-VC changed NSEI (NSVCI=%u) from %u to %u\n",
1261 nsvci, existing_nsvc->nsei, nsei);
1262
1263 /* Override old NSEI */
1264 existing_nsvc->nsei = nsei;
1265
1266 /* Do statistics */
1267 rate_ctr_inc(&existing_nsvc->ctrg->ctr[NS_CTR_NSEI_CHG]);
1268 }
1269
Jacob Erlbeck84cdc702013-10-08 12:04:44 +02001270 *new_nsvc = existing_nsvc;
Jacob Erlbeck5e6d6792013-10-14 22:06:48 +02001271 gprs_ns_ll_copy(*new_nsvc, fallback_nsvc);
Jacob Erlbeck84cdc702013-10-08 12:04:44 +02001272 return GPRS_NS_CS_FOUND;
1273}
1274
1275/*! \brief Process NS message independently from underlying transport layer
1276 * \param nsi NS instance to which the data belongs
1277 * \param[in] msg message buffer containing newly-received data
Jacob Erlbeck5e6d6792013-10-14 22:06:48 +02001278 * \param[inout] nsvc refers to the virtual connection, may be modified when
1279 * processing a NS_RESET
Jacob Erlbeck84cdc702013-10-08 12:04:44 +02001280 * \returns 0 in case of success, < 0 in case of error
1281 *
1282 * This contains the main NS automaton.
1283 */
1284int gprs_ns_process_msg(struct gprs_ns_inst *nsi, struct msgb *msg,
Jacob Erlbeck5e6d6792013-10-14 22:06:48 +02001285 struct gprs_nsvc **nsvc)
Jacob Erlbeck84cdc702013-10-08 12:04:44 +02001286{
1287 struct gprs_ns_hdr *nsh = (struct gprs_ns_hdr *) msg->l2h;
1288 int rc = 0;
1289
Jacob Erlbeck5e6d6792013-10-14 22:06:48 +02001290 msgb_nsei(msg) = (*nsvc)->nsei;
Harald Weltec5478482010-03-18 00:01:43 +08001291
Jacob Erlbeck5e6d6792013-10-14 22:06:48 +02001292 log_set_context(GPRS_CTX_NSVC, *nsvc);
Harald Welte91f7f4b2010-05-15 23:52:02 +02001293
Harald Welte144e0292010-05-13 11:45:07 +02001294 /* Increment number of Incoming bytes */
Jacob Erlbeck5e6d6792013-10-14 22:06:48 +02001295 rate_ctr_inc(&(*nsvc)->ctrg->ctr[NS_CTR_PKTS_IN]);
1296 rate_ctr_add(&(*nsvc)->ctrg->ctr[NS_CTR_BYTES_IN], msgb_l2len(msg));
Harald Welte144e0292010-05-13 11:45:07 +02001297
Harald Welte9ba50052010-03-14 15:45:01 +08001298 switch (nsh->pdu_type) {
1299 case NS_PDUT_ALIVE:
Harald Welte2bffac52010-05-12 15:55:23 +00001300 /* If we're dead and blocked and suddenly receive a
1301 * NS-ALIVE out of the blue, we might have been re-started
1302 * and should send a NS-RESET to make sure everything recovers
1303 * fine. */
Jacob Erlbeck5e6d6792013-10-14 22:06:48 +02001304 if ((*nsvc)->state == NSE_S_BLOCKED)
Jacob Erlbeck6ac70a42014-10-07 14:12:30 +02001305 rc = gprs_nsvc_reset((*nsvc), NS_CAUSE_PDU_INCOMP_PSTATE);
1306 else if (!((*nsvc)->state & NSE_S_RESET))
Jacob Erlbeck5e6d6792013-10-14 22:06:48 +02001307 rc = gprs_ns_tx_alive_ack(*nsvc);
Harald Welte9ba50052010-03-14 15:45:01 +08001308 break;
1309 case NS_PDUT_ALIVE_ACK:
Jacob Erlbeck0a1400f2015-10-06 15:23:25 +02001310 if ((*nsvc)->timer_mode == NSVC_TIMER_TNS_ALIVE)
Jacob Erlbeckfc9533d2015-10-29 00:55:58 +01001311 osmo_stat_item_set((*nsvc)->statg->items[NS_STAT_ALIVE_DELAY],
Jacob Erlbeck0a1400f2015-10-06 15:23:25 +02001312 nsvc_timer_elapsed_ms(*nsvc));
Harald Welte90af1942010-05-15 23:02:24 +02001313 /* stop Tns-alive and start Tns-test */
Jacob Erlbeck5e6d6792013-10-14 22:06:48 +02001314 nsvc_start_timer(*nsvc, NSVC_TIMER_TNS_TEST);
1315 if ((*nsvc)->remote_end_is_sgsn) {
Harald Welte7fb7e612010-05-03 21:11:22 +02001316 /* FIXME: this should be one level higher */
Jacob Erlbeck5e6d6792013-10-14 22:06:48 +02001317 if ((*nsvc)->state & NSE_S_BLOCKED)
1318 rc = gprs_ns_tx_unblock(*nsvc);
Harald Welte7fb7e612010-05-03 21:11:22 +02001319 }
Harald Welte9ba50052010-03-14 15:45:01 +08001320 break;
1321 case NS_PDUT_UNITDATA:
1322 /* actual user data */
Jacob Erlbeck5e6d6792013-10-14 22:06:48 +02001323 rc = gprs_ns_rx_unitdata(*nsvc, msg);
Harald Welte9ba50052010-03-14 15:45:01 +08001324 break;
1325 case NS_PDUT_STATUS:
Jacob Erlbeck5e6d6792013-10-14 22:06:48 +02001326 rc = gprs_ns_rx_status(*nsvc, msg);
Harald Welte9ba50052010-03-14 15:45:01 +08001327 break;
1328 case NS_PDUT_RESET:
Harald Welte24a655f2010-04-30 19:54:29 +02001329 rc = gprs_ns_rx_reset(nsvc, msg);
Harald Welte9ba50052010-03-14 15:45:01 +08001330 break;
1331 case NS_PDUT_RESET_ACK:
Jacob Erlbeck5405a102013-10-24 01:33:23 +02001332 rc = gprs_ns_rx_reset_ack(nsvc, msg);
Harald Welte9ba50052010-03-14 15:45:01 +08001333 break;
1334 case NS_PDUT_UNBLOCK:
1335 /* Section 7.2: unblocking procedure */
Jacob Erlbeck5e6d6792013-10-14 22:06:48 +02001336 LOGP(DNS, LOGL_INFO, "NSEI=%u Rx NS UNBLOCK\n", (*nsvc)->nsei);
1337 (*nsvc)->state &= ~NSE_S_BLOCKED;
1338 ns_osmo_signal_dispatch(*nsvc, S_NS_UNBLOCK, 0);
1339 rc = gprs_ns_tx_simple(*nsvc, NS_PDUT_UNBLOCK_ACK);
Harald Welte9ba50052010-03-14 15:45:01 +08001340 break;
1341 case NS_PDUT_UNBLOCK_ACK:
Jacob Erlbeck5e6d6792013-10-14 22:06:48 +02001342 LOGP(DNS, LOGL_INFO, "NSEI=%u Rx NS UNBLOCK ACK\n", (*nsvc)->nsei);
Harald Weltec1402a62010-05-12 11:48:44 +02001343 /* mark NS-VC as unblocked + active */
Jacob Erlbeck5e6d6792013-10-14 22:06:48 +02001344 (*nsvc)->state = NSE_S_ALIVE;
1345 (*nsvc)->remote_state = NSE_S_ALIVE;
1346 ns_osmo_signal_dispatch(*nsvc, S_NS_UNBLOCK, 0);
Harald Welte9ba50052010-03-14 15:45:01 +08001347 break;
1348 case NS_PDUT_BLOCK:
Jacob Erlbeck5e6d6792013-10-14 22:06:48 +02001349 rc = gprs_ns_rx_block(*nsvc, msg);
Harald Welte9ba50052010-03-14 15:45:01 +08001350 break;
1351 case NS_PDUT_BLOCK_ACK:
Jacob Erlbeck5e6d6792013-10-14 22:06:48 +02001352 LOGP(DNS, LOGL_INFO, "NSEI=%u Rx NS BLOCK ACK\n", (*nsvc)->nsei);
Harald Weltef030b212010-04-26 19:18:54 +02001353 /* mark remote NS-VC as blocked + active */
Jacob Erlbeck5e6d6792013-10-14 22:06:48 +02001354 (*nsvc)->remote_state = NSE_S_BLOCKED | NSE_S_ALIVE;
Harald Welte9ba50052010-03-14 15:45:01 +08001355 break;
1356 default:
Harald Weltee4ecc8c2010-05-12 00:16:57 +02001357 LOGP(DNS, LOGL_NOTICE, "NSEI=%u Rx Unknown NS PDU type 0x%02x\n",
Jacob Erlbeck5e6d6792013-10-14 22:06:48 +02001358 (*nsvc)->nsei, nsh->pdu_type);
Harald Welte9ba50052010-03-14 15:45:01 +08001359 rc = -EINVAL;
1360 break;
1361 }
1362 return rc;
1363}
1364
Harald Weltea9f23c82011-11-23 15:01:31 +01001365/*! \brief Create a new GPRS NS instance
1366 * \param[in] cb Call-back function for incoming BSSGP data
1367 * \returns dynamically allocated gprs_ns_inst
1368 */
Harald Welte4fcdd762012-06-16 16:40:42 +08001369struct gprs_ns_inst *gprs_ns_instantiate(gprs_ns_cb_t *cb, void *ctx)
Harald Weltef030b212010-04-26 19:18:54 +02001370{
Harald Welte4fcdd762012-06-16 16:40:42 +08001371 struct gprs_ns_inst *nsi = talloc_zero(ctx, struct gprs_ns_inst);
Harald Weltef030b212010-04-26 19:18:54 +02001372
1373 nsi->cb = cb;
1374 INIT_LLIST_HEAD(&nsi->gprs_nsvcs);
Harald Weltefe4ab902010-05-12 17:19:53 +00001375 nsi->timeout[NS_TOUT_TNS_BLOCK] = 3;
1376 nsi->timeout[NS_TOUT_TNS_BLOCK_RETRIES] = 3;
1377 nsi->timeout[NS_TOUT_TNS_RESET] = 3;
1378 nsi->timeout[NS_TOUT_TNS_RESET_RETRIES] = 3;
1379 nsi->timeout[NS_TOUT_TNS_TEST] = 30;
1380 nsi->timeout[NS_TOUT_TNS_ALIVE] = 3;
1381 nsi->timeout[NS_TOUT_TNS_ALIVE_RETRIES] = 10;
Harald Weltef030b212010-04-26 19:18:54 +02001382
Harald Welte60cc6ac2010-05-13 14:20:56 +02001383 /* Create the dummy NSVC that we use for sending
1384 * messages to non-existant/unknown NS-VC's */
Harald Weltef5430362012-06-17 12:25:53 +08001385 nsi->unknown_nsvc = gprs_nsvc_create(nsi, 0xfffe);
Jacob Erlbeck9b591b72013-11-11 09:43:05 +01001386 nsi->unknown_nsvc->nsvci_is_valid = 0;
Harald Welte60cc6ac2010-05-13 14:20:56 +02001387 llist_del(&nsi->unknown_nsvc->list);
Holger Hans Peter Freyther777b0562014-07-07 20:00:35 +02001388 INIT_LLIST_HEAD(&nsi->unknown_nsvc->list);
Harald Weltedd1c83c2010-05-13 13:58:08 +02001389
Harald Welte3771d092010-04-30 20:26:32 +02001390 return nsi;
Harald Weltef030b212010-04-26 19:18:54 +02001391}
1392
Holger Hans Peter Freytherc62a1bf2013-07-02 09:10:11 +02001393void gprs_ns_close(struct gprs_ns_inst *nsi)
Harald Weltef030b212010-04-26 19:18:54 +02001394{
Andreas Eversbergaaccdac2012-09-28 10:11:25 +02001395 struct gprs_nsvc *nsvc, *nsvc2;
Harald Weltef030b212010-04-26 19:18:54 +02001396
Holger Hans Peter Freyther777b0562014-07-07 20:00:35 +02001397 gprs_nsvc_delete(nsi->unknown_nsvc);
1398
Andreas Eversbergaaccdac2012-09-28 10:11:25 +02001399 /* delete all NSVCs and clear their timers */
1400 llist_for_each_entry_safe(nsvc, nsvc2, &nsi->gprs_nsvcs, list)
1401 gprs_nsvc_delete(nsvc);
1402
1403 /* close socket and unregister */
1404 if (nsi->nsip.fd.data) {
1405 close(nsi->nsip.fd.fd);
1406 osmo_fd_unregister(&nsi->nsip.fd);
Holger Hans Peter Freytherc62a1bf2013-07-02 09:10:11 +02001407 nsi->nsip.fd.data = NULL;
Andreas Eversbergaaccdac2012-09-28 10:11:25 +02001408 }
Holger Hans Peter Freytherc62a1bf2013-07-02 09:10:11 +02001409}
Andreas Eversbergaaccdac2012-09-28 10:11:25 +02001410
Holger Hans Peter Freytherc62a1bf2013-07-02 09:10:11 +02001411/*! \brief Destroy an entire NS instance
1412 * \param nsi gprs_ns_inst that is to be destroyed
1413 *
1414 * This function releases all resources associated with the
1415 * NS-instance.
1416 */
1417void gprs_ns_destroy(struct gprs_ns_inst *nsi)
1418{
1419 gprs_ns_close(nsi);
Andreas Eversbergaaccdac2012-09-28 10:11:25 +02001420 /* free the NSI */
Harald Weltef030b212010-04-26 19:18:54 +02001421 talloc_free(nsi);
1422}
1423
1424
1425/* NS-over-IP code, according to 3GPP TS 48.016 Chapter 6.2
1426 * We don't support Size Procedure, Configuration Procedure, ChangeWeight Procedure */
1427
1428/* Read a single NS-over-IP message */
Pablo Neira Ayusobfadfb72011-05-06 12:11:23 +02001429static struct msgb *read_nsip_msg(struct osmo_fd *bfd, int *error,
Harald Weltef030b212010-04-26 19:18:54 +02001430 struct sockaddr_in *saddr)
1431{
Harald Welteba4c6662010-05-19 15:38:10 +02001432 struct msgb *msg = gprs_ns_msgb_alloc();
Harald Weltef030b212010-04-26 19:18:54 +02001433 int ret = 0;
1434 socklen_t saddr_len = sizeof(*saddr);
1435
1436 if (!msg) {
1437 *error = -ENOMEM;
1438 return NULL;
1439 }
1440
Holger Hans Peter Freyther26c32512010-05-28 03:25:36 +08001441 ret = recvfrom(bfd->fd, msg->data, NS_ALLOC_SIZE - NS_ALLOC_HEADROOM, 0,
Harald Weltef030b212010-04-26 19:18:54 +02001442 (struct sockaddr *)saddr, &saddr_len);
1443 if (ret < 0) {
Harald Welteb8a6a832010-05-11 05:54:22 +02001444 LOGP(DNS, LOGL_ERROR, "recv error %s during NSIP recv\n",
Harald Weltebbc9fac2010-05-03 18:54:12 +02001445 strerror(errno));
Harald Weltef030b212010-04-26 19:18:54 +02001446 msgb_free(msg);
1447 *error = ret;
1448 return NULL;
1449 } else if (ret == 0) {
1450 msgb_free(msg);
1451 *error = ret;
1452 return NULL;
1453 }
1454
1455 msg->l2h = msg->data;
1456 msgb_put(msg, ret);
1457
1458 return msg;
1459}
1460
Pablo Neira Ayusobfadfb72011-05-06 12:11:23 +02001461static int handle_nsip_read(struct osmo_fd *bfd)
Harald Weltef030b212010-04-26 19:18:54 +02001462{
1463 int error;
1464 struct sockaddr_in saddr;
1465 struct gprs_ns_inst *nsi = bfd->data;
1466 struct msgb *msg = read_nsip_msg(bfd, &error, &saddr);
1467
1468 if (!msg)
1469 return error;
1470
Harald Welteb3ee2652010-05-19 14:38:50 +02001471 error = gprs_ns_rcvmsg(nsi, msg, &saddr, GPRS_NS_LL_UDP);
Harald Welte91813cf2010-05-12 18:38:45 +00001472
1473 msgb_free(msg);
1474
1475 return error;
Harald Weltef030b212010-04-26 19:18:54 +02001476}
1477
Pablo Neira Ayusobfadfb72011-05-06 12:11:23 +02001478static int handle_nsip_write(struct osmo_fd *bfd)
Harald Weltef030b212010-04-26 19:18:54 +02001479{
1480 /* FIXME: actually send the data here instead of nsip_sendmsg() */
1481 return -EIO;
1482}
1483
Harald Welteb3ee2652010-05-19 14:38:50 +02001484static int nsip_sendmsg(struct gprs_nsvc *nsvc, struct msgb *msg)
Harald Weltef030b212010-04-26 19:18:54 +02001485{
1486 int rc;
1487 struct gprs_ns_inst *nsi = nsvc->nsi;
1488 struct sockaddr_in *daddr = &nsvc->ip.bts_addr;
1489
1490 rc = sendto(nsi->nsip.fd.fd, msg->data, msg->len, 0,
1491 (struct sockaddr *)daddr, sizeof(*daddr));
1492
Holger Hans Peter Freyther52746462012-03-01 20:30:32 +01001493 msgb_free(msg);
Harald Weltef030b212010-04-26 19:18:54 +02001494
1495 return rc;
1496}
1497
1498/* UDP Port 23000 carries the LLC-in-BSSGP-in-NS protocol stack */
Pablo Neira Ayusobfadfb72011-05-06 12:11:23 +02001499static int nsip_fd_cb(struct osmo_fd *bfd, unsigned int what)
Harald Weltef030b212010-04-26 19:18:54 +02001500{
1501 int rc = 0;
1502
1503 if (what & BSC_FD_READ)
1504 rc = handle_nsip_read(bfd);
1505 if (what & BSC_FD_WRITE)
1506 rc = handle_nsip_write(bfd);
1507
1508 return rc;
1509}
1510
Harald Weltea9f23c82011-11-23 15:01:31 +01001511/*! \brief Create a listening socket for GPRS NS/UDP/IP
1512 * \param[in] nsi NS protocol instance to listen
1513 * \returns >=0 (fd) in case of success, negative in case of error
1514 *
1515 * A call to this function will create a UDP socket bound to the port
1516 * number and IP address specified in the NS protocol instance. The
1517 * file descriptor of the socket will be stored in nsi->nsip.fd.
1518 */
Harald Welte7fb05232010-05-19 15:09:09 +02001519int gprs_ns_nsip_listen(struct gprs_ns_inst *nsi)
Harald Weltef030b212010-04-26 19:18:54 +02001520{
Harald Welte73952e32012-06-16 14:59:56 +08001521 struct in_addr in;
Harald Weltef030b212010-04-26 19:18:54 +02001522 int ret;
1523
Harald Welte73952e32012-06-16 14:59:56 +08001524 in.s_addr = htonl(nsi->nsip.local_ip);
1525
1526 nsi->nsip.fd.cb = nsip_fd_cb;
1527 nsi->nsip.fd.data = nsi;
1528 ret = osmo_sock_init_ofd(&nsi->nsip.fd, AF_INET, SOCK_DGRAM,
1529 IPPROTO_UDP, inet_ntoa(in),
1530 nsi->nsip.local_port, OSMO_SOCK_F_BIND);
Harald Weltef030b212010-04-26 19:18:54 +02001531 if (ret < 0)
1532 return ret;
1533
Holger Hans Peter Freyther2c3393d2013-03-25 11:59:58 +01001534 ret = setsockopt(nsi->nsip.fd.fd, IPPROTO_IP, IP_TOS,
1535 &nsi->nsip.dscp, sizeof(nsi->nsip.dscp));
1536 if (ret < 0)
1537 LOGP(DNS, LOGL_ERROR,
1538 "Failed to set the DSCP to %d with ret(%d) errno(%d)\n",
1539 nsi->nsip.dscp, ret, errno);
1540
Harald Weltef030b212010-04-26 19:18:54 +02001541
1542 return ret;
1543}
Harald Welte3771d092010-04-30 20:26:32 +02001544
Harald Weltea9f23c82011-11-23 15:01:31 +01001545/*! \brief Initiate a RESET procedure
1546 * \param[in] nsvc NS-VC in which to start the procedure
1547 * \param[in] cause Numeric NS cause value
1548 *
1549 * This is a high-level function initiating a NS-RESET procedure. It
1550 * will not only send a NS-RESET, but also set the state to BLOCKED and
1551 * start the Tns-reset timer.
1552 */
Jacob Erlbeck0540d832014-10-08 11:47:36 +02001553int gprs_nsvc_reset(struct gprs_nsvc *nsvc, uint8_t cause)
Harald Welte731d1fc2010-05-14 11:53:08 +00001554{
Jacob Erlbeck0540d832014-10-08 11:47:36 +02001555 int rc;
1556
Harald Welteb1020d52010-05-25 22:17:30 +02001557 LOGP(DNS, LOGL_INFO, "NSEI=%u RESET procedure based on API request\n",
1558 nsvc->nsei);
1559
Harald Welte731d1fc2010-05-14 11:53:08 +00001560 /* Mark NS-VC locally as blocked and dead */
Jacob Erlbeck6ac70a42014-10-07 14:12:30 +02001561 nsvc->state = NSE_S_BLOCKED | NSE_S_RESET;
1562
Harald Welte731d1fc2010-05-14 11:53:08 +00001563 /* Send NS-RESET PDU */
Jacob Erlbeck0540d832014-10-08 11:47:36 +02001564 rc = gprs_ns_tx_reset(nsvc, cause);
1565 if (rc < 0) {
Harald Welte731d1fc2010-05-14 11:53:08 +00001566 LOGP(DNS, LOGL_ERROR, "NSEI=%u, error resetting NS-VC\n",
1567 nsvc->nsei);
1568 }
1569 /* Start Tns-reset */
1570 nsvc_start_timer(nsvc, NSVC_TIMER_TNS_RESET);
Jacob Erlbeck0540d832014-10-08 11:47:36 +02001571
1572 return rc;
Harald Welte731d1fc2010-05-14 11:53:08 +00001573}
1574
Harald Weltea9f23c82011-11-23 15:01:31 +01001575/*! \brief Establish a NS connection (from the BSS) to the SGSN
1576 * \param nsi NS-instance
1577 * \param[in] dest Destination IP/Port
1578 * \param[in] nsei NSEI of the to-be-established NS-VC
1579 * \param[in] nsvci NSVCI of the to-be-established NS-VC
1580 * \returns struct gprs_nsvc representing the new NS-VC
1581 *
1582 * This function will establish a single NS/UDP/IP connection in uplink
1583 * (BSS to SGSN) direction.
1584 */
Harald Weltef5430362012-06-17 12:25:53 +08001585struct gprs_nsvc *gprs_ns_nsip_connect(struct gprs_ns_inst *nsi,
Harald Welte1203de32010-05-01 11:28:43 +02001586 struct sockaddr_in *dest, uint16_t nsei,
1587 uint16_t nsvci)
Harald Welte3771d092010-04-30 20:26:32 +02001588{
1589 struct gprs_nsvc *nsvc;
1590
1591 nsvc = nsvc_by_rem_addr(nsi, dest);
Harald Welte38407ef2010-05-12 11:56:39 +00001592 if (!nsvc)
Harald Weltef5430362012-06-17 12:25:53 +08001593 nsvc = gprs_nsvc_create(nsi, nsvci);
Harald Welte38407ef2010-05-12 11:56:39 +00001594 nsvc->ip.bts_addr = *dest;
Harald Welte1203de32010-05-01 11:28:43 +02001595 nsvc->nsei = nsei;
Harald Welte3771d092010-04-30 20:26:32 +02001596 nsvc->remote_end_is_sgsn = 1;
1597
Holger Hans Peter Freyther5617d992010-05-23 21:18:01 +08001598 gprs_nsvc_reset(nsvc, NS_CAUSE_OM_INTERVENTION);
1599 return nsvc;
Harald Welte3771d092010-04-30 20:26:32 +02001600}
Harald Weltea9f23c82011-11-23 15:01:31 +01001601
Harald Weltecca49632012-06-16 17:45:59 +08001602void gprs_ns_set_log_ss(int ss)
1603{
1604 DNS = ss;
1605}
1606
Harald Weltea9f23c82011-11-23 15:01:31 +01001607/*! }@ */