blob: 6ad72d28128d042729971bee8d3a4fbc6a981af2 [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
Pau Espin Pedrol74ee0242024-01-19 18:28:09 +010040#if (!EMBEDDED)
Harald Welte3b6fb082016-04-25 18:46:22 +020041
42#include <stdint.h>
43#include <osmocom/core/msgb.h>
Pau Espin Pedrol68a04df2024-01-19 18:03:59 +010044#include <osmocom/core/defs.h>
45#include <osmocom/core/endian.h>
Pau Espin Pedrol74ee0242024-01-19 18:28:09 +010046#include <osmocom/core/socket.h>
Vadim Yanitskiyc2628312018-09-25 23:03:13 +070047#include <osmocom/gsm/gsup_sms.h>
Harald Welte3b6fb082016-04-25 18:46:22 +020048#include <osmocom/gsm/protocol/gsm_23_003.h>
Oliver Smithaffbb202019-02-01 11:35:10 +010049#include <osmocom/gsm/protocol/gsm_03_40.h>
Harald Welte3b6fb082016-04-25 18:46:22 +020050#include <osmocom/gsm/protocol/gsm_04_08_gprs.h>
Oliver Smithaffbb202019-02-01 11:35:10 +010051#include <osmocom/gsm/protocol/gsm_08_08.h>
Neels Hofmeyr1b729ce2018-12-26 18:13:38 +010052#include <osmocom/gsm/gsm_utils.h>
Harald Welte3b6fb082016-04-25 18:46:22 +020053#include <osmocom/crypt/auth.h>
54
Neels Hofmeyrb970e102017-07-21 15:55:28 +020055#define OSMO_GSUP_PORT 4222
56
Harald Welte3b6fb082016-04-25 18:46:22 +020057/*! Maximum nubmer of PDP inside \ref osmo_gsup_message */
58#define OSMO_GSUP_MAX_NUM_PDP_INFO 10 /* GSM 09.02 limits this to 50 */
59/*! Maximum number of auth info inside \ref osmo_gsup_message */
60#define OSMO_GSUP_MAX_NUM_AUTH_INFO 5
61/*! Maximum number of octets encoding MSISDN in BCD format */
62#define OSMO_GSUP_MAX_MSISDN_LEN 9
Stefan Sperlingdda1d452018-05-03 11:50:32 +020063#define OSMO_GSUP_MAX_CALLED_PARTY_BCD_LEN 43 /* TS 24.008 10.5.4.7 */
Alexander Couzens3938dfb2024-02-22 16:28:09 +010064#define OSMO_GSUP_MAX_PCO_LEN 251
Harald Welte3b6fb082016-04-25 18:46:22 +020065
Harald Welte3b6fb082016-04-25 18:46:22 +020066/*! Information Element Identifiers for GSUP IEs */
67enum osmo_gsup_iei {
68 OSMO_GSUP_IMSI_IE = 0x01,
69 OSMO_GSUP_CAUSE_IE = 0x02,
70 OSMO_GSUP_AUTH_TUPLE_IE = 0x03,
71 OSMO_GSUP_PDP_INFO_COMPL_IE = 0x04,
72 OSMO_GSUP_PDP_INFO_IE = 0x05,
73 OSMO_GSUP_CANCEL_TYPE_IE = 0x06,
74 OSMO_GSUP_FREEZE_PTMSI_IE = 0x07,
75 OSMO_GSUP_MSISDN_IE = 0x08,
76 OSMO_GSUP_HLR_NUMBER_IE = 0x09,
Pau Espin Pedrol8dfdfc32024-01-18 16:32:35 +010077 OSMO_GSUP_MESSAGE_CLASS_IE = 0x0a,
Harald Welte3b6fb082016-04-25 18:46:22 +020078 OSMO_GSUP_PDP_CONTEXT_ID_IE = 0x10,
Pau Espin Pedrol74ee0242024-01-19 18:28:09 +010079 OSMO_GSUP_PDP_ADDRESS_IE = 0x11,
80#define OSMO_GSUP_PDP_TYPE_IE OSMO_GSUP_PDP_ADDRESS_IE /* Backward compat */
Harald Welte3b6fb082016-04-25 18:46:22 +020081 OSMO_GSUP_ACCESS_POINT_NAME_IE = 0x12,
82 OSMO_GSUP_PDP_QOS_IE = 0x13,
Holger Hans Peter Freythereb55c0d2017-07-07 16:53:30 +020083 OSMO_GSUP_CHARG_CHAR_IE = 0x14,
Alexander Couzens3938dfb2024-02-22 16:28:09 +010084 OSMO_GSUP_PCO_IE = 0x15,
Harald Welte3b6fb082016-04-25 18:46:22 +020085 OSMO_GSUP_RAND_IE = 0x20,
86 OSMO_GSUP_SRES_IE = 0x21,
87 OSMO_GSUP_KC_IE = 0x22,
88 /* 3G support */
89 OSMO_GSUP_IK_IE = 0x23,
90 OSMO_GSUP_CK_IE = 0x24,
91 OSMO_GSUP_AUTN_IE = 0x25,
92 OSMO_GSUP_AUTS_IE = 0x26,
93 OSMO_GSUP_RES_IE = 0x27,
Harald Welte48dc1a52016-05-05 18:46:42 +020094 OSMO_GSUP_CN_DOMAIN_IE = 0x28,
Neels Hofmeyr1b729ce2018-12-26 18:13:38 +010095 OSMO_GSUP_SUPPORTED_RAT_TYPES_IE = 0x29, /* supported RAT types */
96 OSMO_GSUP_CURRENT_RAT_TYPE_IE = 0x2a, /* currently used RAT type */
Vadim Yanitskiy72696042018-04-07 02:34:55 +070097
98 OSMO_GSUP_SESSION_ID_IE = 0x30,
99 OSMO_GSUP_SESSION_STATE_IE = 0x31,
Vadim Yanitskiy36c7b332018-03-31 05:23:09 +0700100
101 /*! Supplementary Services payload */
102 OSMO_GSUP_SS_INFO_IE = 0x35,
Vadim Yanitskiyc2628312018-09-25 23:03:13 +0700103
104 /* SM related IEs (see 3GPP TS 29.002, section 7.6.8) */
105 OSMO_GSUP_SM_RP_MR_IE = 0x40,
106 OSMO_GSUP_SM_RP_DA_IE = 0x41,
107 OSMO_GSUP_SM_RP_OA_IE = 0x42,
108 OSMO_GSUP_SM_RP_UI_IE = 0x43,
109 OSMO_GSUP_SM_RP_CAUSE_IE = 0x44,
110 OSMO_GSUP_SM_RP_MMS_IE = 0x45,
Vadim Yanitskiyf9ee8da2018-11-13 02:06:15 +0700111 OSMO_GSUP_SM_ALERT_RSN_IE = 0x46,
Oliver Smith19742402018-12-21 10:18:28 +0100112
Oliver Smith10db2812018-12-14 16:14:34 +0100113 OSMO_GSUP_IMEI_IE = 0x50,
114 OSMO_GSUP_IMEI_RESULT_IE = 0x51,
Harald Welte49ddef62019-08-16 12:22:29 +0200115 OSMO_GSUP_NUM_VECTORS_REQ_IE = 0x52,
Oliver Smith10db2812018-12-14 16:14:34 +0100116
Oliver Smithaffbb202019-02-01 11:35:10 +0100117 /* Inter-MSC handover related */
118 OSMO_GSUP_SOURCE_NAME_IE = 0x60,
119 OSMO_GSUP_DESTINATION_NAME_IE = 0x61,
120 OSMO_GSUP_AN_APDU_IE = 0x62,
121 OSMO_GSUP_CAUSE_RR_IE = 0x63,
122 OSMO_GSUP_CAUSE_BSSAP_IE = 0x64,
123 OSMO_GSUP_CAUSE_SM_IE = 0x65,
124
Oliver Smith19742402018-12-21 10:18:28 +0100125 _OSMO_GSUP_IEI_END_MARKER
Harald Welte3b6fb082016-04-25 18:46:22 +0200126};
127
Oliver Smithd6ff9c82019-02-01 15:21:25 +0100128/*! GSUP message type
129 * Make sure that new messages follow this scheme:
130 * .----------------------------.
131 * | Ending Bits | Category |
132 * |----------------------------|
133 * | 00 | Request |
134 * | 01 | Error |
135 * | 10 | Result |
136 * | 11 | Other |
137 * '----------------------------'
138 * Request, Error and Result messages must only differ in these last two bits.
139 */
Harald Welte3b6fb082016-04-25 18:46:22 +0200140enum osmo_gsup_message_type {
141 OSMO_GSUP_MSGT_UPDATE_LOCATION_REQUEST = 0b00000100,
142 OSMO_GSUP_MSGT_UPDATE_LOCATION_ERROR = 0b00000101,
143 OSMO_GSUP_MSGT_UPDATE_LOCATION_RESULT = 0b00000110,
144
145 OSMO_GSUP_MSGT_SEND_AUTH_INFO_REQUEST = 0b00001000,
146 OSMO_GSUP_MSGT_SEND_AUTH_INFO_ERROR = 0b00001001,
147 OSMO_GSUP_MSGT_SEND_AUTH_INFO_RESULT = 0b00001010,
148
Harald Weltede960cb2016-06-16 22:57:09 +0200149 OSMO_GSUP_MSGT_AUTH_FAIL_REPORT = 0b00001011,
150
Harald Welte3b6fb082016-04-25 18:46:22 +0200151 OSMO_GSUP_MSGT_PURGE_MS_REQUEST = 0b00001100,
152 OSMO_GSUP_MSGT_PURGE_MS_ERROR = 0b00001101,
153 OSMO_GSUP_MSGT_PURGE_MS_RESULT = 0b00001110,
154
155 OSMO_GSUP_MSGT_INSERT_DATA_REQUEST = 0b00010000,
156 OSMO_GSUP_MSGT_INSERT_DATA_ERROR = 0b00010001,
157 OSMO_GSUP_MSGT_INSERT_DATA_RESULT = 0b00010010,
158
159 OSMO_GSUP_MSGT_DELETE_DATA_REQUEST = 0b00010100,
160 OSMO_GSUP_MSGT_DELETE_DATA_ERROR = 0b00010101,
161 OSMO_GSUP_MSGT_DELETE_DATA_RESULT = 0b00010110,
162
163 OSMO_GSUP_MSGT_LOCATION_CANCEL_REQUEST = 0b00011100,
164 OSMO_GSUP_MSGT_LOCATION_CANCEL_ERROR = 0b00011101,
165 OSMO_GSUP_MSGT_LOCATION_CANCEL_RESULT = 0b00011110,
Vadim Yanitskiy36c7b332018-03-31 05:23:09 +0700166
167 OSMO_GSUP_MSGT_PROC_SS_REQUEST = 0b00100000,
168 OSMO_GSUP_MSGT_PROC_SS_ERROR = 0b00100001,
169 OSMO_GSUP_MSGT_PROC_SS_RESULT = 0b00100010,
Vadim Yanitskiyc2628312018-09-25 23:03:13 +0700170
171 OSMO_GSUP_MSGT_MO_FORWARD_SM_REQUEST = 0b00100100,
172 OSMO_GSUP_MSGT_MO_FORWARD_SM_ERROR = 0b00100101,
173 OSMO_GSUP_MSGT_MO_FORWARD_SM_RESULT = 0b00100110,
174
175 OSMO_GSUP_MSGT_MT_FORWARD_SM_REQUEST = 0b00101000,
176 OSMO_GSUP_MSGT_MT_FORWARD_SM_ERROR = 0b00101001,
177 OSMO_GSUP_MSGT_MT_FORWARD_SM_RESULT = 0b00101010,
Vadim Yanitskiyf9ee8da2018-11-13 02:06:15 +0700178
179 OSMO_GSUP_MSGT_READY_FOR_SM_REQUEST = 0b00101100,
180 OSMO_GSUP_MSGT_READY_FOR_SM_ERROR = 0b00101101,
181 OSMO_GSUP_MSGT_READY_FOR_SM_RESULT = 0b00101110,
Oliver Smith10db2812018-12-14 16:14:34 +0100182
183 OSMO_GSUP_MSGT_CHECK_IMEI_REQUEST = 0b00110000,
184 OSMO_GSUP_MSGT_CHECK_IMEI_ERROR = 0b00110001,
185 OSMO_GSUP_MSGT_CHECK_IMEI_RESULT = 0b00110010,
Oliver Smithaffbb202019-02-01 11:35:10 +0100186
187 OSMO_GSUP_MSGT_E_PREPARE_HANDOVER_REQUEST = 0b00110100,
188 OSMO_GSUP_MSGT_E_PREPARE_HANDOVER_ERROR = 0b00110101,
189 OSMO_GSUP_MSGT_E_PREPARE_HANDOVER_RESULT = 0b00110110,
190
191 OSMO_GSUP_MSGT_E_PREPARE_SUBSEQUENT_HANDOVER_REQUEST = 0b00111000,
192 OSMO_GSUP_MSGT_E_PREPARE_SUBSEQUENT_HANDOVER_ERROR = 0b00111001,
193 OSMO_GSUP_MSGT_E_PREPARE_SUBSEQUENT_HANDOVER_RESULT = 0b00111010,
194
195 OSMO_GSUP_MSGT_E_SEND_END_SIGNAL_REQUEST = 0b00111100,
196 OSMO_GSUP_MSGT_E_SEND_END_SIGNAL_ERROR = 0b00111101,
197 OSMO_GSUP_MSGT_E_SEND_END_SIGNAL_RESULT = 0b00111110,
198
199 OSMO_GSUP_MSGT_E_PROCESS_ACCESS_SIGNALLING_REQUEST = 0b01000000,
200 OSMO_GSUP_MSGT_E_FORWARD_ACCESS_SIGNALLING_REQUEST = 0b01000100,
201
202 OSMO_GSUP_MSGT_E_CLOSE = 0b01000111,
203 OSMO_GSUP_MSGT_E_ABORT = 0b01001011,
204
Neels Hofmeyr249e0052019-11-20 21:28:47 +0100205 OSMO_GSUP_MSGT_ROUTING_ERROR = 0b01001110,
Alexander Couzens505f7052023-03-07 16:01:52 +0100206
207 OSMO_GSUP_MSGT_EPDG_TUNNEL_REQUEST = 0b01010000,
208 OSMO_GSUP_MSGT_EPDG_TUNNEL_ERROR = 0b01010001,
209 OSMO_GSUP_MSGT_EPDG_TUNNEL_RESULT = 0b01010010,
Harald Welte3b6fb082016-04-25 18:46:22 +0200210};
211
Neels Hofmeyr249e0052019-11-20 21:28:47 +0100212#define OSMO_GSUP_MSGT_E_ROUTING_ERROR OSMO_GSUP_MSGT_ROUTING_ERROR
213
Harald Welte3b6fb082016-04-25 18:46:22 +0200214#define OSMO_GSUP_IS_MSGT_REQUEST(msgt) (((msgt) & 0b00000011) == 0b00)
215#define OSMO_GSUP_IS_MSGT_ERROR(msgt) (((msgt) & 0b00000011) == 0b01)
Neels Hofmeyr15364232019-11-07 08:25:24 +0100216#define OSMO_GSUP_IS_MSGT_RESULT(msgt) (((msgt) & 0b00000011) == 0b10)
217#define OSMO_GSUP_TO_MSGT_REQUEST(msgt) (((msgt) & 0b11111100))
Harald Welte3b6fb082016-04-25 18:46:22 +0200218#define OSMO_GSUP_TO_MSGT_ERROR(msgt) (((msgt) & 0b11111100) | 0b01)
Neels Hofmeyr15364232019-11-07 08:25:24 +0100219#define OSMO_GSUP_TO_MSGT_RESULT(msgt) (((msgt) & 0b11111100) | 0b10)
Harald Welte3b6fb082016-04-25 18:46:22 +0200220
Neels Hofmeyr10f5fb42017-02-09 02:09:09 +0100221extern const struct value_string osmo_gsup_message_type_names[];
222static inline const char *
223osmo_gsup_message_type_name(enum osmo_gsup_message_type val)
224{ return get_value_string(osmo_gsup_message_type_names, val); }
225
Harald Welte3b6fb082016-04-25 18:46:22 +0200226enum osmo_gsup_cancel_type {
227 OSMO_GSUP_CANCEL_TYPE_UPDATE = 1, /* on wire: 0 */
228 OSMO_GSUP_CANCEL_TYPE_WITHDRAW = 2, /* on wire: 1 */
229};
230
Harald Welte48dc1a52016-05-05 18:46:42 +0200231enum osmo_gsup_cn_domain {
232 OSMO_GSUP_CN_DOMAIN_PS = 1,
233 OSMO_GSUP_CN_DOMAIN_CS = 2,
234};
235
Oliver Smith10db2812018-12-14 16:14:34 +0100236enum osmo_gsup_imei_result {
Oliver Smithd621a1e2019-01-08 16:22:30 +0100237 OSMO_GSUP_IMEI_RESULT_ACK = 1, /* on wire: 0 */
238 OSMO_GSUP_IMEI_RESULT_NACK = 2, /* on wire: 1 */
Oliver Smith10db2812018-12-14 16:14:34 +0100239};
240
Oliver Smithaffbb202019-02-01 11:35:10 +0100241/* 3GPP 29.002 AccessNetworkProtocolId */
242enum osmo_gsup_access_network_protocol {
243 OSMO_GSUP_ACCESS_NETWORK_PROTOCOL_TS3G_48006 = 1,
244 OSMO_GSUP_ACCESS_NETWORK_PROTOCOL_TS3G_25413 = 2,
245};
246
Vadim Yanitskiy72696042018-04-07 02:34:55 +0700247/*! TCAP-like session state */
248enum osmo_gsup_session_state {
249 /*! Undefined session state */
250 OSMO_GSUP_SESSION_STATE_NONE = 0x00,
251 /*! Initiation of a new session */
252 OSMO_GSUP_SESSION_STATE_BEGIN = 0x01,
253 /*! Communication of an existing session */
254 OSMO_GSUP_SESSION_STATE_CONTINUE = 0x02,
255 /*! Indication of the session end */
256 OSMO_GSUP_SESSION_STATE_END = 0x03,
257};
258
Harald Welte6a6a6092018-06-16 11:10:12 +0200259extern const struct value_string osmo_gsup_session_state_names[];
260static inline const char *
261osmo_gsup_session_state_name(enum osmo_gsup_session_state val)
262{ return get_value_string(osmo_gsup_session_state_names, val); }
263
Harald Welte3b6fb082016-04-25 18:46:22 +0200264/*! parsed/decoded PDP context information */
265struct osmo_gsup_pdp_info {
266 unsigned int context_id;
267 int have_info;
Pau Espin Pedrol68a04df2024-01-19 18:03:59 +0100268 /*! Type of PDP context, 3GPP TS 29.060, 7.7.27 */
269 union {
270 uint16_t pdp_type OSMO_DEPRECATED("use pdp_type_org and pdp_type_nr instead");
271 struct {
272#if OSMO_IS_LITTLE_ENDIAN
273 uint8_t pdp_type_nr; /* enum gsm48_pdp_type_nr */
274 uint8_t pdp_type_org; /* enum gsm48_pdp_type_org */
275#elif OSMO_IS_BIG_ENDIAN
276 uint8_t pdp_type_org; /* enum gsm48_pdp_type_org */
277 uint8_t pdp_type_nr; /* enum gsm48_pdp_type_nr */
278#endif
279 };
280 };
Pau Espin Pedrol74ee0242024-01-19 18:28:09 +0100281 struct osmo_sockaddr pdp_address[2];
Harald Welte3b6fb082016-04-25 18:46:22 +0200282 /*! APN information, still in encoded form. Can be NULL if no
283 * APN information included */
284 const uint8_t *apn_enc;
285 /*! length (in octets) of apn_enc */
286 size_t apn_enc_len;
287 /*! QoS information, still in encoded form. Can be NULL if no
288 * QoS information included */
289 const uint8_t *qos_enc;
290 /*! length (in octets) of qos_enc */
291 size_t qos_enc_len;
Holger Hans Peter Freythereb55c0d2017-07-07 16:53:30 +0200292 /*! PDP Charging Characteristics, still in encoded form. Can be NULL if no
293 * PDP Charging Characteristics */
294 const uint8_t *pdp_charg_enc;
295 /*! length (in octets) of pdp_charg_enc */
296 size_t pdp_charg_enc_len;
Harald Welte3b6fb082016-04-25 18:46:22 +0200297};
298
Neels Hofmeyr9838c902019-04-01 22:24:33 +0200299enum osmo_gsup_message_class {
300 OSMO_GSUP_MESSAGE_CLASS_UNSET = 0,
301 OSMO_GSUP_MESSAGE_CLASS_SUBSCRIBER_MANAGEMENT = 1,
302 OSMO_GSUP_MESSAGE_CLASS_SMS = 2,
303 OSMO_GSUP_MESSAGE_CLASS_USSD = 3,
304 OSMO_GSUP_MESSAGE_CLASS_INTER_MSC = 4,
Alexander Couzens505f7052023-03-07 16:01:52 +0100305 OSMO_GSUP_MESSAGE_CLASS_IPSEC_EPDG = 5,
Neels Hofmeyr9838c902019-04-01 22:24:33 +0200306 /* Keep this as last entry with a value of max(enum osmo_gsup_message_class) + 1.
307 * This value shall serve as the size for an array to aid de-muxing all known GSUP classes. */
308 OSMO_GSUP_MESSAGE_CLASS_ARRAYSIZE
309};
310
311extern const struct value_string osmo_gsup_message_class_names[];
312static inline const char *osmo_gsup_message_class_name(enum osmo_gsup_message_class val)
313{ return get_value_string(osmo_gsup_message_class_names, val); }
314
Oliver Smithaffbb202019-02-01 11:35:10 +0100315/*! AccessNetworkSignalInfo as in 3GPP TS 29.002. */
316struct osmo_gsup_an_apdu {
317 /* AccessNetworkProtocolId as in 3GPP TS 29.002. */
318 enum osmo_gsup_access_network_protocol access_network_proto;
319 const uint8_t *data;
320 size_t data_len;
321};
322
Harald Welte3b6fb082016-04-25 18:46:22 +0200323/*! parsed/decoded GSUP protocol message */
324struct osmo_gsup_message {
325 enum osmo_gsup_message_type message_type;
Neels Hofmeyr0ee798a2019-04-10 19:13:19 +0200326 char imsi[OSMO_IMSI_BUF_SIZE];
Harald Welte3b6fb082016-04-25 18:46:22 +0200327 enum gsm48_gmm_cause cause;
328 enum osmo_gsup_cancel_type cancel_type;
329 int pdp_info_compl;
330 int freeze_ptmsi;
331 struct osmo_auth_vector auth_vectors[OSMO_GSUP_MAX_NUM_AUTH_INFO];
332 size_t num_auth_vectors;
333 struct osmo_gsup_pdp_info pdp_infos[OSMO_GSUP_MAX_NUM_PDP_INFO];
334 size_t num_pdp_infos;
335 const uint8_t *msisdn_enc;
336 size_t msisdn_enc_len;
337 const uint8_t *hlr_enc;
338 size_t hlr_enc_len;
339 const uint8_t *auts;
Harald Welte766da862016-05-06 11:18:15 +0200340 const uint8_t *rand;
Harald Welte48dc1a52016-05-05 18:46:42 +0200341 enum osmo_gsup_cn_domain cn_domain;
Holger Hans Peter Freythereb55c0d2017-07-07 16:53:30 +0200342 const uint8_t *pdp_charg_enc;
343 size_t pdp_charg_enc_len;
Vadim Yanitskiy72696042018-04-07 02:34:55 +0700344
345 /*! Session state \ref osmo_gsup_session_state */
346 enum osmo_gsup_session_state session_state;
347 /*! Unique session identifier and origination flag.
Vadim Yanitskiy5a7b4652018-11-06 18:24:49 +0700348 * Encoded only when \ref session_state != 0x00 */
Vadim Yanitskiy72696042018-04-07 02:34:55 +0700349 uint32_t session_id;
Vadim Yanitskiy36c7b332018-03-31 05:23:09 +0700350
351 /*! ASN.1 encoded MAP payload for Supplementary Services */
352 uint8_t *ss_info;
353 size_t ss_info_len;
Vadim Yanitskiyc2628312018-09-25 23:03:13 +0700354
355 /*! SM-RP-MR (see 3GPP TS 29.002, 7.6.1.1), Message Reference.
356 * Please note that there is no SM-RP-MR in TCAP/MAP! SM-RP-MR
357 * is usually mapped to TCAP's InvokeID, but we don't need it. */
358 const uint8_t *sm_rp_mr;
359 /*! SM-RP-DA (see 3GPP TS 29.002, 7.6.8.1), Destination Address */
360 enum osmo_gsup_sms_sm_rp_oda_t sm_rp_da_type;
361 size_t sm_rp_da_len;
362 const uint8_t *sm_rp_da;
363 /*! SM-RP-OA (see 3GPP TS 29.002, 7.6.8.2), Originating Address */
364 enum osmo_gsup_sms_sm_rp_oda_t sm_rp_oa_type;
365 size_t sm_rp_oa_len;
366 const uint8_t *sm_rp_oa;
367 /*! SM-RP-UI (see 3GPP TS 29.002, 7.6.8.4), SMS TPDU */
368 const uint8_t *sm_rp_ui;
369 size_t sm_rp_ui_len;
370 /*! SM-RP-Cause value (1 oct.) as per GSM TS 04.11, section 8.2.5.4 */
371 const uint8_t *sm_rp_cause;
372 /*! SM-RP-MMS (More Messages to Send), section 7.6.8.7 */
373 const uint8_t *sm_rp_mms;
Vadim Yanitskiyf9ee8da2018-11-13 02:06:15 +0700374 /*! Alert reason (see 3GPP TS 29.002, 7.6.8.8) */
375 enum osmo_gsup_sms_sm_alert_rsn_t sm_alert_rsn;
Oliver Smith10db2812018-12-14 16:14:34 +0100376
377 const uint8_t *imei_enc;
378 size_t imei_enc_len;
379 enum osmo_gsup_imei_result imei_result;
Neels Hofmeyr9838c902019-04-01 22:24:33 +0200380
381 /*! Indicate the message class to trivially dispatch incoming GSUP messages to the right code paths.
Oliver Smithe0c5d702019-05-16 14:55:04 +0200382 * Inter-MSC messages are *required* to set a class = OSMO_GSUP_MESSAGE_CLASS_INTER_MSC. For older message
383 * classes, this may be omitted (for backwards compatibility only -- if in doubt, include it). */
Neels Hofmeyr9838c902019-04-01 22:24:33 +0200384 enum osmo_gsup_message_class message_class;
Oliver Smithaffbb202019-02-01 11:35:10 +0100385
386 /*! For messages routed via another GSUP entity (via HLR), the IPA name of the entity that sent this message. */
387 const uint8_t *source_name;
388 /*! Number of bytes in source_name. */
389 size_t source_name_len;
390 /*! For messages routed via another GSUP entity (via HLR), the IPA name of the entity that should ultimately
391 * receive this message. */
392 const uint8_t *destination_name;
393 /*! Number of bytes in destination_name. */
394 size_t destination_name_len;
395
396 /*! inter-MSC AN-APDU. */
397 struct osmo_gsup_an_apdu an_apdu;
398
399 uint8_t cause_rr; /*!< 0 is a valid cause */
400 bool cause_rr_set; /*!< whether cause_rr is set */
401
402 enum gsm0808_cause cause_bssap; /*!< 0 is a valid cause */
403 bool cause_bssap_set; /*!< whether cause_bssap is set */
404
405 /*! Session Management cause as of 3GPP TS 24.008 10.5.6.6 / Table 10.5.157. */
406 enum gsm48_gsm_cause cause_sm;
Neels Hofmeyr1b729ce2018-12-26 18:13:38 +0100407
408 enum osmo_rat_type current_rat_type;
409 enum osmo_rat_type supported_rat_types[8]; /*!< arbitrary choice */
410 size_t supported_rat_types_len;
Alexander Couzens3938dfb2024-02-22 16:28:09 +0100411
412 /*! PCO protocol option 3GPP TS 24.008 10.5.6.3 / Table 10.5.136. PCO contains Octet 3-ZA */
413 const uint8_t *pco;
414 /*! Number of bytes of the PCO. */
415 size_t pco_len;
416
Harald Welte3b6fb082016-04-25 18:46:22 +0200417};
418
419int osmo_gsup_decode(const uint8_t *data, size_t data_len,
420 struct osmo_gsup_message *gsup_msg);
Max80f4c4e2018-01-24 12:33:05 +0100421int osmo_gsup_encode(struct msgb *msg, const struct osmo_gsup_message *gsup_msg);
Oliver Smithd6ff9c82019-02-01 15:21:25 +0100422int osmo_gsup_get_err_msg_type(enum osmo_gsup_message_type type_in)
423 OSMO_DEPRECATED("Use OSMO_GSUP_TO_MSGT_ERROR() instead");
Harald Welte381a1aa2017-10-16 18:31:20 +0200424
Pau Espin Pedrol74ee0242024-01-19 18:28:09 +0100425#endif /* (!EMBEDDED) */
Harald Welte381a1aa2017-10-16 18:31:20 +0200426/*! @} */