blob: a7fa820801a3b9eff39f75e4754969c550ed1717 [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>
43#include <osmocom/gsm/protocol/gsm_23_003.h>
44#include <osmocom/gsm/protocol/gsm_04_08_gprs.h>
45#include <osmocom/crypt/auth.h>
46
Neels Hofmeyrb970e102017-07-21 15:55:28 +020047#define OSMO_GSUP_PORT 4222
48
Harald Welte3b6fb082016-04-25 18:46:22 +020049/*! Maximum nubmer of PDP inside \ref osmo_gsup_message */
50#define OSMO_GSUP_MAX_NUM_PDP_INFO 10 /* GSM 09.02 limits this to 50 */
51/*! Maximum number of auth info inside \ref osmo_gsup_message */
52#define OSMO_GSUP_MAX_NUM_AUTH_INFO 5
53/*! Maximum number of octets encoding MSISDN in BCD format */
54#define OSMO_GSUP_MAX_MSISDN_LEN 9
Stefan Sperlingdda1d452018-05-03 11:50:32 +020055#define OSMO_GSUP_MAX_CALLED_PARTY_BCD_LEN 43 /* TS 24.008 10.5.4.7 */
Harald Welte3b6fb082016-04-25 18:46:22 +020056
57#define OSMO_GSUP_PDP_TYPE_SIZE 2
58
59/*! Information Element Identifiers for GSUP IEs */
60enum osmo_gsup_iei {
61 OSMO_GSUP_IMSI_IE = 0x01,
62 OSMO_GSUP_CAUSE_IE = 0x02,
63 OSMO_GSUP_AUTH_TUPLE_IE = 0x03,
64 OSMO_GSUP_PDP_INFO_COMPL_IE = 0x04,
65 OSMO_GSUP_PDP_INFO_IE = 0x05,
66 OSMO_GSUP_CANCEL_TYPE_IE = 0x06,
67 OSMO_GSUP_FREEZE_PTMSI_IE = 0x07,
68 OSMO_GSUP_MSISDN_IE = 0x08,
69 OSMO_GSUP_HLR_NUMBER_IE = 0x09,
70 OSMO_GSUP_PDP_CONTEXT_ID_IE = 0x10,
71 OSMO_GSUP_PDP_TYPE_IE = 0x11,
72 OSMO_GSUP_ACCESS_POINT_NAME_IE = 0x12,
73 OSMO_GSUP_PDP_QOS_IE = 0x13,
Holger Hans Peter Freythereb55c0d2017-07-07 16:53:30 +020074 OSMO_GSUP_CHARG_CHAR_IE = 0x14,
Harald Welte3b6fb082016-04-25 18:46:22 +020075 OSMO_GSUP_RAND_IE = 0x20,
76 OSMO_GSUP_SRES_IE = 0x21,
77 OSMO_GSUP_KC_IE = 0x22,
78 /* 3G support */
79 OSMO_GSUP_IK_IE = 0x23,
80 OSMO_GSUP_CK_IE = 0x24,
81 OSMO_GSUP_AUTN_IE = 0x25,
82 OSMO_GSUP_AUTS_IE = 0x26,
83 OSMO_GSUP_RES_IE = 0x27,
Harald Welte48dc1a52016-05-05 18:46:42 +020084 OSMO_GSUP_CN_DOMAIN_IE = 0x28,
Harald Welte3b6fb082016-04-25 18:46:22 +020085};
86
87/*! GSUP message type */
88enum osmo_gsup_message_type {
89 OSMO_GSUP_MSGT_UPDATE_LOCATION_REQUEST = 0b00000100,
90 OSMO_GSUP_MSGT_UPDATE_LOCATION_ERROR = 0b00000101,
91 OSMO_GSUP_MSGT_UPDATE_LOCATION_RESULT = 0b00000110,
92
93 OSMO_GSUP_MSGT_SEND_AUTH_INFO_REQUEST = 0b00001000,
94 OSMO_GSUP_MSGT_SEND_AUTH_INFO_ERROR = 0b00001001,
95 OSMO_GSUP_MSGT_SEND_AUTH_INFO_RESULT = 0b00001010,
96
Harald Weltede960cb2016-06-16 22:57:09 +020097 OSMO_GSUP_MSGT_AUTH_FAIL_REPORT = 0b00001011,
98
Harald Welte3b6fb082016-04-25 18:46:22 +020099 OSMO_GSUP_MSGT_PURGE_MS_REQUEST = 0b00001100,
100 OSMO_GSUP_MSGT_PURGE_MS_ERROR = 0b00001101,
101 OSMO_GSUP_MSGT_PURGE_MS_RESULT = 0b00001110,
102
103 OSMO_GSUP_MSGT_INSERT_DATA_REQUEST = 0b00010000,
104 OSMO_GSUP_MSGT_INSERT_DATA_ERROR = 0b00010001,
105 OSMO_GSUP_MSGT_INSERT_DATA_RESULT = 0b00010010,
106
107 OSMO_GSUP_MSGT_DELETE_DATA_REQUEST = 0b00010100,
108 OSMO_GSUP_MSGT_DELETE_DATA_ERROR = 0b00010101,
109 OSMO_GSUP_MSGT_DELETE_DATA_RESULT = 0b00010110,
110
111 OSMO_GSUP_MSGT_LOCATION_CANCEL_REQUEST = 0b00011100,
112 OSMO_GSUP_MSGT_LOCATION_CANCEL_ERROR = 0b00011101,
113 OSMO_GSUP_MSGT_LOCATION_CANCEL_RESULT = 0b00011110,
114};
115
116#define OSMO_GSUP_IS_MSGT_REQUEST(msgt) (((msgt) & 0b00000011) == 0b00)
117#define OSMO_GSUP_IS_MSGT_ERROR(msgt) (((msgt) & 0b00000011) == 0b01)
118#define OSMO_GSUP_TO_MSGT_ERROR(msgt) (((msgt) & 0b11111100) | 0b01)
119
Neels Hofmeyr10f5fb42017-02-09 02:09:09 +0100120extern const struct value_string osmo_gsup_message_type_names[];
121static inline const char *
122osmo_gsup_message_type_name(enum osmo_gsup_message_type val)
123{ return get_value_string(osmo_gsup_message_type_names, val); }
124
Harald Welte3b6fb082016-04-25 18:46:22 +0200125enum osmo_gsup_cancel_type {
126 OSMO_GSUP_CANCEL_TYPE_UPDATE = 1, /* on wire: 0 */
127 OSMO_GSUP_CANCEL_TYPE_WITHDRAW = 2, /* on wire: 1 */
128};
129
Harald Welte48dc1a52016-05-05 18:46:42 +0200130enum osmo_gsup_cn_domain {
131 OSMO_GSUP_CN_DOMAIN_PS = 1,
132 OSMO_GSUP_CN_DOMAIN_CS = 2,
133};
134
Harald Welte3b6fb082016-04-25 18:46:22 +0200135/*! parsed/decoded PDP context information */
136struct osmo_gsup_pdp_info {
137 unsigned int context_id;
138 int have_info;
139 /*! Type of PDP context */
140 uint16_t pdp_type;
141 /*! APN information, still in encoded form. Can be NULL if no
142 * APN information included */
143 const uint8_t *apn_enc;
144 /*! length (in octets) of apn_enc */
145 size_t apn_enc_len;
146 /*! QoS information, still in encoded form. Can be NULL if no
147 * QoS information included */
148 const uint8_t *qos_enc;
149 /*! length (in octets) of qos_enc */
150 size_t qos_enc_len;
Holger Hans Peter Freythereb55c0d2017-07-07 16:53:30 +0200151 /*! PDP Charging Characteristics, still in encoded form. Can be NULL if no
152 * PDP Charging Characteristics */
153 const uint8_t *pdp_charg_enc;
154 /*! length (in octets) of pdp_charg_enc */
155 size_t pdp_charg_enc_len;
Harald Welte3b6fb082016-04-25 18:46:22 +0200156};
157
158/*! parsed/decoded GSUP protocol message */
159struct osmo_gsup_message {
160 enum osmo_gsup_message_type message_type;
161 char imsi[GSM23003_IMSI_MAX_DIGITS+2];
162 enum gsm48_gmm_cause cause;
163 enum osmo_gsup_cancel_type cancel_type;
164 int pdp_info_compl;
165 int freeze_ptmsi;
166 struct osmo_auth_vector auth_vectors[OSMO_GSUP_MAX_NUM_AUTH_INFO];
167 size_t num_auth_vectors;
168 struct osmo_gsup_pdp_info pdp_infos[OSMO_GSUP_MAX_NUM_PDP_INFO];
169 size_t num_pdp_infos;
170 const uint8_t *msisdn_enc;
171 size_t msisdn_enc_len;
172 const uint8_t *hlr_enc;
173 size_t hlr_enc_len;
174 const uint8_t *auts;
Harald Welte766da862016-05-06 11:18:15 +0200175 const uint8_t *rand;
Harald Welte48dc1a52016-05-05 18:46:42 +0200176 enum osmo_gsup_cn_domain cn_domain;
Holger Hans Peter Freythereb55c0d2017-07-07 16:53:30 +0200177 const uint8_t *pdp_charg_enc;
178 size_t pdp_charg_enc_len;
Harald Welte3b6fb082016-04-25 18:46:22 +0200179};
180
181int osmo_gsup_decode(const uint8_t *data, size_t data_len,
182 struct osmo_gsup_message *gsup_msg);
Max80f4c4e2018-01-24 12:33:05 +0100183int osmo_gsup_encode(struct msgb *msg, const struct osmo_gsup_message *gsup_msg);
Harald Welte381a1aa2017-10-16 18:31:20 +0200184
185/*! @} */