blob: fe66f460bece5985f54c6cf6956e0810ec1c26aa [file] [log] [blame]
Harald Welteaf086782010-05-11 10:01:17 +02001/* GPRS BSSGP protocol implementation as per 3GPP TS 08.18 */
2
Harald Welte605ac5d2012-06-16 16:09:52 +08003/* (C) 2009-2012 by Harald Welte <laforge@gnumonks.org>
Harald Welteaf086782010-05-11 10:01:17 +02004 *
5 * All Rights Reserved
6 *
7 * This program is free software; you can redistribute it and/or modify
Harald Welte7fa89c22014-10-26 20:33:09 +01008 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
Harald Welteaf086782010-05-11 10:01:17 +020010 * (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
Harald Welte7fa89c22014-10-26 20:33:09 +010015 * GNU General Public License for more details.
Harald Welteaf086782010-05-11 10:01:17 +020016 *
Harald Welte7fa89c22014-10-26 20:33:09 +010017 * You should have received a copy of the GNU General Public License
Harald Weltee4cbb3f2011-01-01 15:25:50 +010018 * along with this program. If not, see <http://www.gnu.org/licenses/>.
Harald Welteaf086782010-05-11 10:01:17 +020019 *
20 */
21
22#include <errno.h>
23#include <stdint.h>
24
25#include <netinet/in.h>
26
Pablo Neira Ayusoff663232011-03-22 16:47:59 +010027#include <osmocom/core/msgb.h>
28#include <osmocom/gsm/tlv.h>
29#include <osmocom/core/talloc.h>
Harald Welte73952e32012-06-16 14:59:56 +080030#include <osmocom/gprs/gprs_bssgp.h>
31#include <osmocom/gprs/gprs_ns.h>
Harald Welteaf086782010-05-11 10:01:17 +020032
Harald Weltecca49632012-06-16 17:45:59 +080033#include "common_vty.h"
Harald Welteaf086782010-05-11 10:01:17 +020034
35struct gprs_ns_inst *bssgp_nsi;
36
37/* BSSGP Protocol specific, not implementation specific */
38/* FIXME: This needs to go into libosmocore after finished */
39
40/* Chapter 11.3.9 / Table 11.10: Cause coding */
41static const struct value_string bssgp_cause_strings[] = {
42 { BSSGP_CAUSE_PROC_OVERLOAD, "Processor overload" },
43 { BSSGP_CAUSE_EQUIP_FAIL, "Equipment Failure" },
44 { BSSGP_CAUSE_TRASIT_NET_FAIL, "Transit netowkr service failure" },
45 { BSSGP_CAUSE_CAPA_GREATER_0KPBS,"Transmission capacity modified" },
46 { BSSGP_CAUSE_UNKNOWN_MS, "Unknown MS" },
47 { BSSGP_CAUSE_UNKNOWN_BVCI, "Unknown BVCI" },
48 { BSSGP_CAUSE_CELL_TRAF_CONG, "Cell traffic congestion" },
49 { BSSGP_CAUSE_SGSN_CONG, "SGSN congestion" },
50 { BSSGP_CAUSE_OML_INTERV, "O&M intervention" },
51 { BSSGP_CAUSE_BVCI_BLOCKED, "BVCI blocked" },
52 { BSSGP_CAUSE_PFC_CREATE_FAIL, "PFC create failure" },
53 { BSSGP_CAUSE_SEM_INCORR_PDU, "Semantically incorrect PDU" },
54 { BSSGP_CAUSE_INV_MAND_INF, "Invalid mandatory information" },
55 { BSSGP_CAUSE_MISSING_MAND_IE, "Missing mandatory IE" },
56 { BSSGP_CAUSE_MISSING_COND_IE, "Missing conditional IE" },
57 { BSSGP_CAUSE_UNEXP_COND_IE, "Unexpected conditional IE" },
58 { BSSGP_CAUSE_COND_IE_ERR, "Conditional IE error" },
59 { BSSGP_CAUSE_PDU_INCOMP_STATE, "PDU incompatible with protocol state" },
60 { BSSGP_CAUSE_PROTO_ERR_UNSPEC, "Protocol error - unspecified" },
61 { BSSGP_CAUSE_PDU_INCOMP_FEAT, "PDU not compatible with feature set" },
62 { 0, NULL },
63};
64
65const char *bssgp_cause_str(enum gprs_bssgp_cause cause)
66{
67 return get_value_string(bssgp_cause_strings, cause);
68}
69
70
71struct msgb *bssgp_msgb_alloc(void)
72{
Jacob Erlbecka39e2de2014-09-23 13:28:24 +020073 struct msgb *msg = msgb_alloc_headroom(4096, 128, "BSSGP");
74 msgb_bssgph(msg) = msg->data;
75 return msg;
Harald Welteaf086782010-05-11 10:01:17 +020076}
77
78/* Transmit a simple response such as BLOCK/UNBLOCK/RESET ACK/NACK */
79int bssgp_tx_simple_bvci(uint8_t pdu_type, uint16_t nsei,
80 uint16_t bvci, uint16_t ns_bvci)
81{
82 struct msgb *msg = bssgp_msgb_alloc();
83 struct bssgp_normal_hdr *bgph =
84 (struct bssgp_normal_hdr *) msgb_put(msg, sizeof(*bgph));
85 uint16_t _bvci;
86
87 msgb_nsei(msg) = nsei;
88 msgb_bvci(msg) = ns_bvci;
89
90 bgph->pdu_type = pdu_type;
91 _bvci = htons(bvci);
92 msgb_tvlv_put(msg, BSSGP_IE_BVCI, 2, (uint8_t *) &_bvci);
93
94 return gprs_ns_sendmsg(bssgp_nsi, msg);
95}
96
97/* Chapter 10.4.14: Status */
98int bssgp_tx_status(uint8_t cause, uint16_t *bvci, struct msgb *orig_msg)
99{
100 struct msgb *msg = bssgp_msgb_alloc();
101 struct bssgp_normal_hdr *bgph =
102 (struct bssgp_normal_hdr *) msgb_put(msg, sizeof(*bgph));
103
Jacob Erlbecka7165772014-09-23 13:28:21 +0200104 /* GSM 08.18, 10.4.14.1: The BVCI must be included if (and only if) the
105 cause is either "BVCI blocked" or "BVCI unknown" */
106 if (cause == BSSGP_CAUSE_UNKNOWN_BVCI || cause == BSSGP_CAUSE_BVCI_BLOCKED) {
107 if (bvci == NULL)
108 LOGP(DBSSGP, LOGL_ERROR, "BSSGP Tx STATUS, cause=%s: "
109 "missing conditional BVCI\n",
110 bssgp_cause_str(cause));
111 } else {
112 if (bvci != NULL)
113 LOGP(DBSSGP, LOGL_ERROR, "BSSGP Tx STATUS, cause=%s: "
114 "unexpected conditional BVCI\n",
115 bssgp_cause_str(cause));
116 }
117
Holger Hans Peter Freyther8e2e78e2010-06-08 16:05:20 +0800118 LOGP(DBSSGP, LOGL_NOTICE, "BSSGP BVCI=%u Tx STATUS, cause=%s\n",
Harald Weltecfb545a2010-06-03 21:30:57 +0200119 bvci ? *bvci : 0, bssgp_cause_str(cause));
Harald Welteaf086782010-05-11 10:01:17 +0200120 msgb_nsei(msg) = msgb_nsei(orig_msg);
121 msgb_bvci(msg) = 0;
122
123 bgph->pdu_type = BSSGP_PDUT_STATUS;
124 msgb_tvlv_put(msg, BSSGP_IE_CAUSE, 1, &cause);
125 if (bvci) {
126 uint16_t _bvci = htons(*bvci);
127 msgb_tvlv_put(msg, BSSGP_IE_BVCI, 2, (uint8_t *) &_bvci);
128 }
Harald Welted83d1b62011-07-16 13:45:10 +0200129 msgb_tvlv_put(msg, BSSGP_IE_PDU_IN_ERROR,
130 msgb_bssgp_len(orig_msg), msgb_bssgph(orig_msg));
Harald Welteaf086782010-05-11 10:01:17 +0200131
132 return gprs_ns_sendmsg(bssgp_nsi, msg);
133}