blob: 6adb0bfd1f2434cba4d74c945558e9f40bbbc85d [file] [log] [blame]
Harald Welte381a1aa2017-10-16 18:31:20 +02001/*! \defgroup gsup Generic Subscriber Update Protocol
2 * @{
3 *
4 * The Generic Subscriber Update Protocol (GSUP) is an Osmocom-specific
5 * non-standard protocol replacing MAP as the protocol between
6 * MSC/VLR/SGSN and HLR in a 3GPP cellular communications network.
7 *
8 * It was designed around the same transactions and architecture as the
9 * MAP messages/operations, but without the complexity of TCAP and MAP,
10 * and without the need for ASN.1 encoding.
11 *
12 * The purpose is to keep protocol complexity out of OsmoSGSN and
13 * OsmoMSC, while providing a clean path to an external GSUP to MAP
14 * translator.
15 *
16 * \file gsup.h
17 * Osmocom Generic Subscriber Update Protocol message encoder/decoder. */
Neels Hofmeyr17518fe2017-06-20 04:35:06 +020018/*
Harald Weltee08da972017-11-13 01:00:26 +090019 * (C) 2014 by sysmocom - s.f.m.c. GmbH, Author: Jacob Erlbeck
Harald Welte3b6fb082016-04-25 18:46:22 +020020 * (C) 2016 by Harald Welte <laforge@gnumonks.org>
21 * All Rights Reserved
22 *
Harald Weltee08da972017-11-13 01:00:26 +090023 * SPDX-License-Identifier: GPL-2.0+
24 *
Harald Welte3b6fb082016-04-25 18:46:22 +020025 * This program is free software; you can redistribute it and/or modify
26 * it under the terms of the GNU General Public License as published by
27 * the Free Software Foundation; either version 2 of the License, or
28 * (at your option) any later version.
29 *
30 * This program is distributed in the hope that it will be useful,
31 * but WITHOUT ANY WARRANTY; without even the implied warranty of
32 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
33 * GNU General Public License for more details.
34 *
35 * You should have received a copy of the GNU General Public License
36 * along with this program. If not, see <http://www.gnu.org/licenses/>.
37 *
38 */
39#pragma once
40
41#include <stdint.h>
42#include <osmocom/core/msgb.h>
Vadim Yanitskiyc2628312018-09-25 23:03:13 +070043#include <osmocom/gsm/gsup_sms.h>
Harald Welte3b6fb082016-04-25 18:46:22 +020044#include <osmocom/gsm/protocol/gsm_23_003.h>
45#include <osmocom/gsm/protocol/gsm_04_08_gprs.h>
46#include <osmocom/crypt/auth.h>
47
Neels Hofmeyrb970e102017-07-21 15:55:28 +020048#define OSMO_GSUP_PORT 4222
49
Harald Welte3b6fb082016-04-25 18:46:22 +020050/*! Maximum nubmer of PDP inside \ref osmo_gsup_message */
51#define OSMO_GSUP_MAX_NUM_PDP_INFO 10 /* GSM 09.02 limits this to 50 */
52/*! Maximum number of auth info inside \ref osmo_gsup_message */
53#define OSMO_GSUP_MAX_NUM_AUTH_INFO 5
54/*! Maximum number of octets encoding MSISDN in BCD format */
55#define OSMO_GSUP_MAX_MSISDN_LEN 9
Stefan Sperlingdda1d452018-05-03 11:50:32 +020056#define OSMO_GSUP_MAX_CALLED_PARTY_BCD_LEN 43 /* TS 24.008 10.5.4.7 */
Harald Welte3b6fb082016-04-25 18:46:22 +020057
58#define OSMO_GSUP_PDP_TYPE_SIZE 2
59
60/*! Information Element Identifiers for GSUP IEs */
61enum osmo_gsup_iei {
62 OSMO_GSUP_IMSI_IE = 0x01,
63 OSMO_GSUP_CAUSE_IE = 0x02,
64 OSMO_GSUP_AUTH_TUPLE_IE = 0x03,
65 OSMO_GSUP_PDP_INFO_COMPL_IE = 0x04,
66 OSMO_GSUP_PDP_INFO_IE = 0x05,
67 OSMO_GSUP_CANCEL_TYPE_IE = 0x06,
68 OSMO_GSUP_FREEZE_PTMSI_IE = 0x07,
69 OSMO_GSUP_MSISDN_IE = 0x08,
70 OSMO_GSUP_HLR_NUMBER_IE = 0x09,
71 OSMO_GSUP_PDP_CONTEXT_ID_IE = 0x10,
72 OSMO_GSUP_PDP_TYPE_IE = 0x11,
73 OSMO_GSUP_ACCESS_POINT_NAME_IE = 0x12,
74 OSMO_GSUP_PDP_QOS_IE = 0x13,
Holger Hans Peter Freythereb55c0d2017-07-07 16:53:30 +020075 OSMO_GSUP_CHARG_CHAR_IE = 0x14,
Harald Welte3b6fb082016-04-25 18:46:22 +020076 OSMO_GSUP_RAND_IE = 0x20,
77 OSMO_GSUP_SRES_IE = 0x21,
78 OSMO_GSUP_KC_IE = 0x22,
79 /* 3G support */
80 OSMO_GSUP_IK_IE = 0x23,
81 OSMO_GSUP_CK_IE = 0x24,
82 OSMO_GSUP_AUTN_IE = 0x25,
83 OSMO_GSUP_AUTS_IE = 0x26,
84 OSMO_GSUP_RES_IE = 0x27,
Harald Welte48dc1a52016-05-05 18:46:42 +020085 OSMO_GSUP_CN_DOMAIN_IE = 0x28,
Vadim Yanitskiy72696042018-04-07 02:34:55 +070086
87 OSMO_GSUP_SESSION_ID_IE = 0x30,
88 OSMO_GSUP_SESSION_STATE_IE = 0x31,
Vadim Yanitskiy36c7b332018-03-31 05:23:09 +070089
90 /*! Supplementary Services payload */
91 OSMO_GSUP_SS_INFO_IE = 0x35,
Vadim Yanitskiyc2628312018-09-25 23:03:13 +070092
93 /* SM related IEs (see 3GPP TS 29.002, section 7.6.8) */
94 OSMO_GSUP_SM_RP_MR_IE = 0x40,
95 OSMO_GSUP_SM_RP_DA_IE = 0x41,
96 OSMO_GSUP_SM_RP_OA_IE = 0x42,
97 OSMO_GSUP_SM_RP_UI_IE = 0x43,
98 OSMO_GSUP_SM_RP_CAUSE_IE = 0x44,
99 OSMO_GSUP_SM_RP_MMS_IE = 0x45,
Vadim Yanitskiyf9ee8da2018-11-13 02:06:15 +0700100 OSMO_GSUP_SM_ALERT_RSN_IE = 0x46,
Oliver Smith19742402018-12-21 10:18:28 +0100101
Oliver Smith10db2812018-12-14 16:14:34 +0100102 OSMO_GSUP_IMEI_IE = 0x50,
103 OSMO_GSUP_IMEI_RESULT_IE = 0x51,
104
Oliver Smith19742402018-12-21 10:18:28 +0100105 _OSMO_GSUP_IEI_END_MARKER
Harald Welte3b6fb082016-04-25 18:46:22 +0200106};
107
108/*! GSUP message type */
109enum osmo_gsup_message_type {
110 OSMO_GSUP_MSGT_UPDATE_LOCATION_REQUEST = 0b00000100,
111 OSMO_GSUP_MSGT_UPDATE_LOCATION_ERROR = 0b00000101,
112 OSMO_GSUP_MSGT_UPDATE_LOCATION_RESULT = 0b00000110,
113
114 OSMO_GSUP_MSGT_SEND_AUTH_INFO_REQUEST = 0b00001000,
115 OSMO_GSUP_MSGT_SEND_AUTH_INFO_ERROR = 0b00001001,
116 OSMO_GSUP_MSGT_SEND_AUTH_INFO_RESULT = 0b00001010,
117
Harald Weltede960cb2016-06-16 22:57:09 +0200118 OSMO_GSUP_MSGT_AUTH_FAIL_REPORT = 0b00001011,
119
Harald Welte3b6fb082016-04-25 18:46:22 +0200120 OSMO_GSUP_MSGT_PURGE_MS_REQUEST = 0b00001100,
121 OSMO_GSUP_MSGT_PURGE_MS_ERROR = 0b00001101,
122 OSMO_GSUP_MSGT_PURGE_MS_RESULT = 0b00001110,
123
124 OSMO_GSUP_MSGT_INSERT_DATA_REQUEST = 0b00010000,
125 OSMO_GSUP_MSGT_INSERT_DATA_ERROR = 0b00010001,
126 OSMO_GSUP_MSGT_INSERT_DATA_RESULT = 0b00010010,
127
128 OSMO_GSUP_MSGT_DELETE_DATA_REQUEST = 0b00010100,
129 OSMO_GSUP_MSGT_DELETE_DATA_ERROR = 0b00010101,
130 OSMO_GSUP_MSGT_DELETE_DATA_RESULT = 0b00010110,
131
132 OSMO_GSUP_MSGT_LOCATION_CANCEL_REQUEST = 0b00011100,
133 OSMO_GSUP_MSGT_LOCATION_CANCEL_ERROR = 0b00011101,
134 OSMO_GSUP_MSGT_LOCATION_CANCEL_RESULT = 0b00011110,
Vadim Yanitskiy36c7b332018-03-31 05:23:09 +0700135
136 OSMO_GSUP_MSGT_PROC_SS_REQUEST = 0b00100000,
137 OSMO_GSUP_MSGT_PROC_SS_ERROR = 0b00100001,
138 OSMO_GSUP_MSGT_PROC_SS_RESULT = 0b00100010,
Vadim Yanitskiyc2628312018-09-25 23:03:13 +0700139
140 OSMO_GSUP_MSGT_MO_FORWARD_SM_REQUEST = 0b00100100,
141 OSMO_GSUP_MSGT_MO_FORWARD_SM_ERROR = 0b00100101,
142 OSMO_GSUP_MSGT_MO_FORWARD_SM_RESULT = 0b00100110,
143
144 OSMO_GSUP_MSGT_MT_FORWARD_SM_REQUEST = 0b00101000,
145 OSMO_GSUP_MSGT_MT_FORWARD_SM_ERROR = 0b00101001,
146 OSMO_GSUP_MSGT_MT_FORWARD_SM_RESULT = 0b00101010,
Vadim Yanitskiyf9ee8da2018-11-13 02:06:15 +0700147
148 OSMO_GSUP_MSGT_READY_FOR_SM_REQUEST = 0b00101100,
149 OSMO_GSUP_MSGT_READY_FOR_SM_ERROR = 0b00101101,
150 OSMO_GSUP_MSGT_READY_FOR_SM_RESULT = 0b00101110,
Oliver Smith10db2812018-12-14 16:14:34 +0100151
152 OSMO_GSUP_MSGT_CHECK_IMEI_REQUEST = 0b00110000,
153 OSMO_GSUP_MSGT_CHECK_IMEI_ERROR = 0b00110001,
154 OSMO_GSUP_MSGT_CHECK_IMEI_RESULT = 0b00110010,
Harald Welte3b6fb082016-04-25 18:46:22 +0200155};
156
157#define OSMO_GSUP_IS_MSGT_REQUEST(msgt) (((msgt) & 0b00000011) == 0b00)
158#define OSMO_GSUP_IS_MSGT_ERROR(msgt) (((msgt) & 0b00000011) == 0b01)
159#define OSMO_GSUP_TO_MSGT_ERROR(msgt) (((msgt) & 0b11111100) | 0b01)
160
Neels Hofmeyr10f5fb42017-02-09 02:09:09 +0100161extern const struct value_string osmo_gsup_message_type_names[];
162static inline const char *
163osmo_gsup_message_type_name(enum osmo_gsup_message_type val)
164{ return get_value_string(osmo_gsup_message_type_names, val); }
165
Harald Welte3b6fb082016-04-25 18:46:22 +0200166enum osmo_gsup_cancel_type {
167 OSMO_GSUP_CANCEL_TYPE_UPDATE = 1, /* on wire: 0 */
168 OSMO_GSUP_CANCEL_TYPE_WITHDRAW = 2, /* on wire: 1 */
169};
170
Harald Welte48dc1a52016-05-05 18:46:42 +0200171enum osmo_gsup_cn_domain {
172 OSMO_GSUP_CN_DOMAIN_PS = 1,
173 OSMO_GSUP_CN_DOMAIN_CS = 2,
174};
175
Oliver Smith10db2812018-12-14 16:14:34 +0100176enum osmo_gsup_imei_result {
177 OSMO_GSUP_IMEI_RESULT_ACK = 1,
178 OSMO_GSUP_IMEI_RESULT_NACK = 2,
179};
180
Vadim Yanitskiy72696042018-04-07 02:34:55 +0700181/*! TCAP-like session state */
182enum osmo_gsup_session_state {
183 /*! Undefined session state */
184 OSMO_GSUP_SESSION_STATE_NONE = 0x00,
185 /*! Initiation of a new session */
186 OSMO_GSUP_SESSION_STATE_BEGIN = 0x01,
187 /*! Communication of an existing session */
188 OSMO_GSUP_SESSION_STATE_CONTINUE = 0x02,
189 /*! Indication of the session end */
190 OSMO_GSUP_SESSION_STATE_END = 0x03,
191};
192
Harald Welte6a6a6092018-06-16 11:10:12 +0200193extern const struct value_string osmo_gsup_session_state_names[];
194static inline const char *
195osmo_gsup_session_state_name(enum osmo_gsup_session_state val)
196{ return get_value_string(osmo_gsup_session_state_names, val); }
197
Harald Welte3b6fb082016-04-25 18:46:22 +0200198/*! parsed/decoded PDP context information */
199struct osmo_gsup_pdp_info {
200 unsigned int context_id;
201 int have_info;
202 /*! Type of PDP context */
203 uint16_t pdp_type;
204 /*! APN information, still in encoded form. Can be NULL if no
205 * APN information included */
206 const uint8_t *apn_enc;
207 /*! length (in octets) of apn_enc */
208 size_t apn_enc_len;
209 /*! QoS information, still in encoded form. Can be NULL if no
210 * QoS information included */
211 const uint8_t *qos_enc;
212 /*! length (in octets) of qos_enc */
213 size_t qos_enc_len;
Holger Hans Peter Freythereb55c0d2017-07-07 16:53:30 +0200214 /*! PDP Charging Characteristics, still in encoded form. Can be NULL if no
215 * PDP Charging Characteristics */
216 const uint8_t *pdp_charg_enc;
217 /*! length (in octets) of pdp_charg_enc */
218 size_t pdp_charg_enc_len;
Harald Welte3b6fb082016-04-25 18:46:22 +0200219};
220
221/*! parsed/decoded GSUP protocol message */
222struct osmo_gsup_message {
223 enum osmo_gsup_message_type message_type;
224 char imsi[GSM23003_IMSI_MAX_DIGITS+2];
225 enum gsm48_gmm_cause cause;
226 enum osmo_gsup_cancel_type cancel_type;
227 int pdp_info_compl;
228 int freeze_ptmsi;
229 struct osmo_auth_vector auth_vectors[OSMO_GSUP_MAX_NUM_AUTH_INFO];
230 size_t num_auth_vectors;
231 struct osmo_gsup_pdp_info pdp_infos[OSMO_GSUP_MAX_NUM_PDP_INFO];
232 size_t num_pdp_infos;
233 const uint8_t *msisdn_enc;
234 size_t msisdn_enc_len;
235 const uint8_t *hlr_enc;
236 size_t hlr_enc_len;
237 const uint8_t *auts;
Harald Welte766da862016-05-06 11:18:15 +0200238 const uint8_t *rand;
Harald Welte48dc1a52016-05-05 18:46:42 +0200239 enum osmo_gsup_cn_domain cn_domain;
Holger Hans Peter Freythereb55c0d2017-07-07 16:53:30 +0200240 const uint8_t *pdp_charg_enc;
241 size_t pdp_charg_enc_len;
Vadim Yanitskiy72696042018-04-07 02:34:55 +0700242
243 /*! Session state \ref osmo_gsup_session_state */
244 enum osmo_gsup_session_state session_state;
245 /*! Unique session identifier and origination flag.
Vadim Yanitskiy5a7b4652018-11-06 18:24:49 +0700246 * Encoded only when \ref session_state != 0x00 */
Vadim Yanitskiy72696042018-04-07 02:34:55 +0700247 uint32_t session_id;
Vadim Yanitskiy36c7b332018-03-31 05:23:09 +0700248
249 /*! ASN.1 encoded MAP payload for Supplementary Services */
250 uint8_t *ss_info;
251 size_t ss_info_len;
Vadim Yanitskiyc2628312018-09-25 23:03:13 +0700252
253 /*! SM-RP-MR (see 3GPP TS 29.002, 7.6.1.1), Message Reference.
254 * Please note that there is no SM-RP-MR in TCAP/MAP! SM-RP-MR
255 * is usually mapped to TCAP's InvokeID, but we don't need it. */
256 const uint8_t *sm_rp_mr;
257 /*! SM-RP-DA (see 3GPP TS 29.002, 7.6.8.1), Destination Address */
258 enum osmo_gsup_sms_sm_rp_oda_t sm_rp_da_type;
259 size_t sm_rp_da_len;
260 const uint8_t *sm_rp_da;
261 /*! SM-RP-OA (see 3GPP TS 29.002, 7.6.8.2), Originating Address */
262 enum osmo_gsup_sms_sm_rp_oda_t sm_rp_oa_type;
263 size_t sm_rp_oa_len;
264 const uint8_t *sm_rp_oa;
265 /*! SM-RP-UI (see 3GPP TS 29.002, 7.6.8.4), SMS TPDU */
266 const uint8_t *sm_rp_ui;
267 size_t sm_rp_ui_len;
268 /*! SM-RP-Cause value (1 oct.) as per GSM TS 04.11, section 8.2.5.4 */
269 const uint8_t *sm_rp_cause;
270 /*! SM-RP-MMS (More Messages to Send), section 7.6.8.7 */
271 const uint8_t *sm_rp_mms;
Vadim Yanitskiyf9ee8da2018-11-13 02:06:15 +0700272 /*! Alert reason (see 3GPP TS 29.002, 7.6.8.8) */
273 enum osmo_gsup_sms_sm_alert_rsn_t sm_alert_rsn;
Oliver Smith10db2812018-12-14 16:14:34 +0100274
275 const uint8_t *imei_enc;
276 size_t imei_enc_len;
277 enum osmo_gsup_imei_result imei_result;
Harald Welte3b6fb082016-04-25 18:46:22 +0200278};
279
280int osmo_gsup_decode(const uint8_t *data, size_t data_len,
281 struct osmo_gsup_message *gsup_msg);
Max80f4c4e2018-01-24 12:33:05 +0100282int osmo_gsup_encode(struct msgb *msg, const struct osmo_gsup_message *gsup_msg);
Harald Welte520ebc12018-06-11 20:27:27 +0200283int osmo_gsup_get_err_msg_type(enum osmo_gsup_message_type type_in);
Harald Welte381a1aa2017-10-16 18:31:20 +0200284
285/*! @} */