blob: 4553da843bfa2bfa30c1bd023c761562e3790cc0 [file] [log] [blame]
Neels Hofmeyr17518fe2017-06-20 04:35:06 +02001/*! \file gprs_bssgp_util.c
2 * GPRS BSSGP protocol implementation as per 3GPP TS 08.18. */
3/*
4 * (C) 2009-2017 by Harald Welte <laforge@gnumonks.org>
Harald Welteaf086782010-05-11 10:01:17 +02005 *
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 Welteaf086782010-05-11 10:01:17 +020011 * (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 Welteaf086782010-05-11 10:01:17 +020017 *
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 Welteaf086782010-05-11 10:01:17 +020020 *
21 */
22
23#include <errno.h>
24#include <stdint.h>
25
Pablo Neira Ayusoff663232011-03-22 16:47:59 +010026#include <osmocom/core/msgb.h>
Harald Weltebfe62e52017-05-15 12:48:30 +020027#include <osmocom/core/byteswap.h>
Pablo Neira Ayusoff663232011-03-22 16:47:59 +010028#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[] = {
Max4aaa8ab2017-06-29 19:27:24 +020042 { 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_PFC_PREEMPTED, "PFC preempted" },
54 { BSSGP_CAUSE_ABQP_NOT_SUPP, "ABQP no more supported" },
55 { BSSGP_CAUSE_SEM_INCORR_PDU, "Semantically incorrect PDU" },
56 { BSSGP_CAUSE_INV_MAND_INF, "Invalid mandatory information" },
57 { BSSGP_CAUSE_MISSING_MAND_IE, "Missing mandatory IE" },
58 { BSSGP_CAUSE_MISSING_COND_IE, "Missing conditional IE" },
59 { BSSGP_CAUSE_UNEXP_COND_IE, "Unexpected conditional IE" },
60 { BSSGP_CAUSE_COND_IE_ERR, "Conditional IE error" },
61 { BSSGP_CAUSE_PDU_INCOMP_STATE, "PDU incompatible with protocol state" },
62 { BSSGP_CAUSE_PROTO_ERR_UNSPEC, "Protocol error - unspecified" },
63 { BSSGP_CAUSE_PDU_INCOMP_FEAT, "PDU not compatible with feature set" },
64 { BSSGP_CAUSE_REQ_INFO_NOT_AVAIL, "Requested Information not available" },
65 { BSSGP_CAUSE_UNKN_DST , "Unknown Destination address" },
66 { BSSGP_CAUSE_UNKN_RIM_AI, "Unknown RIM Application Identity or RIM application disabled" },
67 { BSSGP_CAUSE_INVAL_CONT_UI, "Invalid Container Unit Information" },
68 { BSSGP_CAUSE_PFC_QUEUE, "PFC queuing" },
69 { BSSGP_CAUSE_PFC_CREATED, "PFC created successfully" },
70 { BSSGP_CAUSE_T12_EXPIRY, "T12 expiry" },
71 { BSSGP_CAUSE_MS_UNDER_PS_HO, "MS under PS Handover treatment" },
72 { BSSGP_CAUSE_UL_QUALITY, "Uplink quality" },
73 { BSSGP_CAUSE_UL_STRENGTH, "Uplink strength" },
74 { BSSGP_CAUSE_DL_QUALITY, "Downlink quality" },
75 { BSSGP_CAUSE_DL_STRENGTH, "Downlink strength" },
76 { BSSGP_CAUSE_DISTANCE, "Distance" },
77 { BSSGP_CAUSE_BETTER_CELL, "Better cell" },
78 { BSSGP_CAUSE_TRAFFIC, "Traffic" },
79 { BSSGP_CAUSE_MS_RADIO_LOSS, "Radio contact lost with MS" },
80 { BSSGP_CAUSE_MS_BACK_OLD_CHAN, "MS back on old channel" },
81 { BSSGP_CAUSE_T13_EXPIRY, "T13 expiry" },
82 { BSSGP_CAUSE_T14_EXPIRY, "T14 expiry" },
83 { BSSGP_CAUSE_NOT_ALL_PFC, "Not all requested PFCs created" },
84 { BSSGP_CAUSE_CS, "CS cause" },
85 { BSSGP_CAUSE_REQ_ALG_NOT_SUPP, "Requested ciphering and/or integrity protection algorithms not supported" },
86 { BSSGP_CAUSE_RELOC_FAIL, "Relocation failure in target system" },
87 { BSSGP_CAUSE_DIR_RETRY , "Directed Retry" },
88 { BSSGP_CAUSE_TIME_CRIT_RELOC , "Time critical relocation" },
89 { BSSGP_CAUSE_PS_HO_TARG_NA , "PS Handover Target not allowed" },
90 { BSSGP_CAUSE_PS_HO_TARG_NOT_SUPP, "PS Handover not Supported in Target BSS or Target System" },
91 { BSSGP_CAUSE_PUESBINE, "Incoming relocation not supported due to PUESBINE feature" },
92 { BSSGP_CAUSE_DTM_HO_NO_CS_RES, "DTM Handover - No CS resource" },
93 { BSSGP_CAUSE_DTM_HO_PS_ALLOC_FAIL, "DTM Handover - PS Allocation failure" },
94 { BSSGP_CAUSE_DTM_HO_T24_EXPIRY, "DTM Handover - T24 expiry" },
95 { BSSGP_CAUSE_DTM_HO_INVAL_CS_IND, "DTM Handover - Invalid CS Indication IE" },
96 { BSSGP_CAUSE_DTM_HO_T23_EXPIRY, "DTM Handover - T23 expiry" },
97 { BSSGP_CAUSE_DTM_HO_MSC_ERR, "DTM Handover - MSC Error" },
98 { BSSGP_CAUSE_INVAL_CSG_CELL, "Invalid CSG cell" },
Harald Welteaf086782010-05-11 10:01:17 +020099 { 0, NULL },
100};
101
Maxc0d9a6c2016-03-09 12:29:23 +0100102static const struct value_string bssgp_pdu_strings[] = {
103 { BSSGP_PDUT_DL_UNITDATA, "DL-UNITDATA" },
104 { BSSGP_PDUT_UL_UNITDATA, "UL-UNITDATA" },
105 { BSSGP_PDUT_RA_CAPABILITY, "RA-CAPABILITY" },
106 { BSSGP_PDUT_PTM_UNITDATA, "PTM-UNITDATA" },
107 { BSSGP_PDUT_PAGING_PS, "PAGING-PS" },
108 { BSSGP_PDUT_PAGING_CS, "PAGING-CS" },
109 { BSSGP_PDUT_RA_CAPA_UDPATE, "RA-CAPABILITY-UPDATE" },
110 { BSSGP_PDUT_RA_CAPA_UPDATE_ACK, "RA-CAPABILITY-UPDATE-ACK" },
111 { BSSGP_PDUT_RADIO_STATUS, "RADIO-STATUS" },
112 { BSSGP_PDUT_SUSPEND, "SUSPEND" },
113 { BSSGP_PDUT_SUSPEND_ACK, "SUSPEND-ACK" },
114 { BSSGP_PDUT_SUSPEND_NACK, "SUSPEND-NACK" },
115 { BSSGP_PDUT_RESUME, "RESUME" },
116 { BSSGP_PDUT_RESUME_ACK, "RESUME-ACK" },
117 { BSSGP_PDUT_RESUME_NACK, "RESUME-NACK" },
118 { BSSGP_PDUT_BVC_BLOCK, "BVC-BLOCK" },
119 { BSSGP_PDUT_BVC_BLOCK_ACK, "BVC-BLOCK-ACK" },
120 { BSSGP_PDUT_BVC_RESET, "BVC-RESET" },
121 { BSSGP_PDUT_BVC_RESET_ACK, "BVC-RESET-ACK" },
122 { BSSGP_PDUT_BVC_UNBLOCK, "BVC-UNBLOCK" },
123 { BSSGP_PDUT_BVC_UNBLOCK_ACK, "BVC-UNBLOCK-ACK" },
124 { BSSGP_PDUT_FLOW_CONTROL_BVC, "FLOW-CONTROL-BVC" },
125 { BSSGP_PDUT_FLOW_CONTROL_BVC_ACK, "FLOW-CONTROL-BVC-ACK" },
126 { BSSGP_PDUT_FLOW_CONTROL_MS, "FLOW-CONTROL-MS" },
127 { BSSGP_PDUT_FLOW_CONTROL_MS_ACK, "FLOW-CONTROL-MS-ACK" },
128 { BSSGP_PDUT_FLUSH_LL, "FLUSH-LL" },
129 { BSSGP_PDUT_FLUSH_LL_ACK, "FLUSH-LL-ACK" },
130 { BSSGP_PDUT_LLC_DISCARD, "LLC DISCARDED" },
131 { BSSGP_PDUT_SGSN_INVOKE_TRACE, "SGSN-INVOKE-TRACE" },
132 { BSSGP_PDUT_STATUS, "STATUS" },
133 { BSSGP_PDUT_DOWNLOAD_BSS_PFC, "DOWNLOAD-BSS-PFC" },
134 { BSSGP_PDUT_CREATE_BSS_PFC, "CREATE-BSS-PFC" },
135 { BSSGP_PDUT_CREATE_BSS_PFC_ACK, "CREATE-BSS-PFC-ACK" },
136 { BSSGP_PDUT_CREATE_BSS_PFC_NACK, "CREATE-BSS-PFC-NACK" },
137 { BSSGP_PDUT_MODIFY_BSS_PFC, "MODIFY-BSS-PFC" },
138 { BSSGP_PDUT_MODIFY_BSS_PFC_ACK, "MODIFY-BSS-PFC-ACK" },
139 { BSSGP_PDUT_DELETE_BSS_PFC, "DELETE-BSS-PFC" },
140 { BSSGP_PDUT_DELETE_BSS_PFC_ACK, "DELETE-BSS-PFC-ACK" },
141 { 0, NULL },
142};
143
Harald Welteaf086782010-05-11 10:01:17 +0200144const char *bssgp_cause_str(enum gprs_bssgp_cause cause)
145{
146 return get_value_string(bssgp_cause_strings, cause);
147}
148
Maxc0d9a6c2016-03-09 12:29:23 +0100149const char *bssgp_pdu_str(enum bssgp_pdu_type pdu)
150{
151 return get_value_string(bssgp_pdu_strings, pdu);
152}
Harald Welteaf086782010-05-11 10:01:17 +0200153
154struct msgb *bssgp_msgb_alloc(void)
155{
Jacob Erlbecka39e2de2014-09-23 13:28:24 +0200156 struct msgb *msg = msgb_alloc_headroom(4096, 128, "BSSGP");
Jacob Erlbecka84db612015-04-09 14:22:22 +0200157
158 /* TODO: Add handling of msg == NULL to this function and to all callers */
159 OSMO_ASSERT(msg != NULL);
160
Jacob Erlbecka39e2de2014-09-23 13:28:24 +0200161 msgb_bssgph(msg) = msg->data;
162 return msg;
Harald Welteaf086782010-05-11 10:01:17 +0200163}
164
Jacob Erlbeckf78ec5c2015-11-17 09:53:23 +0100165struct msgb *bssgp_msgb_copy(const struct msgb *msg, const char *name)
166{
167 struct libgb_msgb_cb *old_cb, *new_cb;
168 struct msgb *new_msg;
169
170 new_msg = msgb_copy(msg, name);
171 if (!new_msg)
172 return NULL;
173
174 /* copy GB specific data */
175 old_cb = LIBGB_MSGB_CB(msg);
176 new_cb = LIBGB_MSGB_CB(new_msg);
177
178 if (old_cb->bssgph)
179 new_cb->bssgph = new_msg->_data + (old_cb->bssgph - msg->_data);
180 if (old_cb->llch)
181 new_cb->llch = new_msg->_data + (old_cb->llch - msg->_data);
182
183 /* bssgp_cell_id is a pointer into the old msgb, so we need to make
184 * it a pointer into the new msgb */
185 if (old_cb->bssgp_cell_id)
186 new_cb->bssgp_cell_id = new_msg->_data +
187 (old_cb->bssgp_cell_id - msg->_data);
188 new_cb->nsei = old_cb->nsei;
189 new_cb->bvci = old_cb->bvci;
190 new_cb->tlli = old_cb->tlli;
191
192 return new_msg;
193}
194
Harald Welteaf086782010-05-11 10:01:17 +0200195/* Transmit a simple response such as BLOCK/UNBLOCK/RESET ACK/NACK */
196int bssgp_tx_simple_bvci(uint8_t pdu_type, uint16_t nsei,
197 uint16_t bvci, uint16_t ns_bvci)
198{
199 struct msgb *msg = bssgp_msgb_alloc();
200 struct bssgp_normal_hdr *bgph =
201 (struct bssgp_normal_hdr *) msgb_put(msg, sizeof(*bgph));
202 uint16_t _bvci;
203
204 msgb_nsei(msg) = nsei;
205 msgb_bvci(msg) = ns_bvci;
206
207 bgph->pdu_type = pdu_type;
Harald Weltebfe62e52017-05-15 12:48:30 +0200208 _bvci = osmo_htons(bvci);
Harald Welteaf086782010-05-11 10:01:17 +0200209 msgb_tvlv_put(msg, BSSGP_IE_BVCI, 2, (uint8_t *) &_bvci);
210
211 return gprs_ns_sendmsg(bssgp_nsi, msg);
212}
213
214/* Chapter 10.4.14: Status */
215int bssgp_tx_status(uint8_t cause, uint16_t *bvci, struct msgb *orig_msg)
216{
217 struct msgb *msg = bssgp_msgb_alloc();
218 struct bssgp_normal_hdr *bgph =
219 (struct bssgp_normal_hdr *) msgb_put(msg, sizeof(*bgph));
220
Jacob Erlbecka7165772014-09-23 13:28:21 +0200221 /* GSM 08.18, 10.4.14.1: The BVCI must be included if (and only if) the
222 cause is either "BVCI blocked" or "BVCI unknown" */
223 if (cause == BSSGP_CAUSE_UNKNOWN_BVCI || cause == BSSGP_CAUSE_BVCI_BLOCKED) {
224 if (bvci == NULL)
225 LOGP(DBSSGP, LOGL_ERROR, "BSSGP Tx STATUS, cause=%s: "
226 "missing conditional BVCI\n",
227 bssgp_cause_str(cause));
228 } else {
229 if (bvci != NULL)
230 LOGP(DBSSGP, LOGL_ERROR, "BSSGP Tx STATUS, cause=%s: "
231 "unexpected conditional BVCI\n",
232 bssgp_cause_str(cause));
233 }
234
Holger Hans Peter Freyther8e2e78e2010-06-08 16:05:20 +0800235 LOGP(DBSSGP, LOGL_NOTICE, "BSSGP BVCI=%u Tx STATUS, cause=%s\n",
Harald Weltecfb545a2010-06-03 21:30:57 +0200236 bvci ? *bvci : 0, bssgp_cause_str(cause));
Harald Welteaf086782010-05-11 10:01:17 +0200237 msgb_nsei(msg) = msgb_nsei(orig_msg);
238 msgb_bvci(msg) = 0;
239
240 bgph->pdu_type = BSSGP_PDUT_STATUS;
241 msgb_tvlv_put(msg, BSSGP_IE_CAUSE, 1, &cause);
242 if (bvci) {
Harald Weltebfe62e52017-05-15 12:48:30 +0200243 uint16_t _bvci = osmo_htons(*bvci);
Harald Welteaf086782010-05-11 10:01:17 +0200244 msgb_tvlv_put(msg, BSSGP_IE_BVCI, 2, (uint8_t *) &_bvci);
245 }
Harald Welted83d1b62011-07-16 13:45:10 +0200246 msgb_tvlv_put(msg, BSSGP_IE_PDU_IN_ERROR,
247 msgb_bssgp_len(orig_msg), msgb_bssgph(orig_msg));
Harald Welteaf086782010-05-11 10:01:17 +0200248
249 return gprs_ns_sendmsg(bssgp_nsi, msg);
250}