blob: 890bff321cc92a7c06869bfa5423f75ab83721ef [file] [log] [blame]
Neels Hofmeyr17518fe2017-06-20 04:35:06 +02001/*! \file gsup.h
2 * Osmocom Generic Subscriber Update Protocol message encoder/decoder. */
3/*
4 * (C) 2014 by sysmocom s.f.m.c. GmbH, Author: Jacob Erlbeck
Harald Welte3b6fb082016-04-25 18:46:22 +02005 * (C) 2016 by Harald Welte <laforge@gnumonks.org>
6 * All Rights Reserved
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * 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
11 * (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
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program. If not, see <http://www.gnu.org/licenses/>.
20 *
21 */
22#pragma once
23
24#include <stdint.h>
25#include <osmocom/core/msgb.h>
26#include <osmocom/gsm/protocol/gsm_23_003.h>
27#include <osmocom/gsm/protocol/gsm_04_08_gprs.h>
28#include <osmocom/crypt/auth.h>
29
30/*! Maximum nubmer of PDP inside \ref osmo_gsup_message */
31#define OSMO_GSUP_MAX_NUM_PDP_INFO 10 /* GSM 09.02 limits this to 50 */
32/*! Maximum number of auth info inside \ref osmo_gsup_message */
33#define OSMO_GSUP_MAX_NUM_AUTH_INFO 5
34/*! Maximum number of octets encoding MSISDN in BCD format */
35#define OSMO_GSUP_MAX_MSISDN_LEN 9
36
37#define OSMO_GSUP_PDP_TYPE_SIZE 2
38
39/*! Information Element Identifiers for GSUP IEs */
40enum osmo_gsup_iei {
41 OSMO_GSUP_IMSI_IE = 0x01,
42 OSMO_GSUP_CAUSE_IE = 0x02,
43 OSMO_GSUP_AUTH_TUPLE_IE = 0x03,
44 OSMO_GSUP_PDP_INFO_COMPL_IE = 0x04,
45 OSMO_GSUP_PDP_INFO_IE = 0x05,
46 OSMO_GSUP_CANCEL_TYPE_IE = 0x06,
47 OSMO_GSUP_FREEZE_PTMSI_IE = 0x07,
48 OSMO_GSUP_MSISDN_IE = 0x08,
49 OSMO_GSUP_HLR_NUMBER_IE = 0x09,
50 OSMO_GSUP_PDP_CONTEXT_ID_IE = 0x10,
51 OSMO_GSUP_PDP_TYPE_IE = 0x11,
52 OSMO_GSUP_ACCESS_POINT_NAME_IE = 0x12,
53 OSMO_GSUP_PDP_QOS_IE = 0x13,
Holger Hans Peter Freythereb55c0d2017-07-07 16:53:30 +020054 OSMO_GSUP_CHARG_CHAR_IE = 0x14,
Harald Welte3b6fb082016-04-25 18:46:22 +020055 OSMO_GSUP_RAND_IE = 0x20,
56 OSMO_GSUP_SRES_IE = 0x21,
57 OSMO_GSUP_KC_IE = 0x22,
58 /* 3G support */
59 OSMO_GSUP_IK_IE = 0x23,
60 OSMO_GSUP_CK_IE = 0x24,
61 OSMO_GSUP_AUTN_IE = 0x25,
62 OSMO_GSUP_AUTS_IE = 0x26,
63 OSMO_GSUP_RES_IE = 0x27,
Harald Welte48dc1a52016-05-05 18:46:42 +020064 OSMO_GSUP_CN_DOMAIN_IE = 0x28,
Harald Welte3b6fb082016-04-25 18:46:22 +020065};
66
67/*! GSUP message type */
68enum osmo_gsup_message_type {
69 OSMO_GSUP_MSGT_UPDATE_LOCATION_REQUEST = 0b00000100,
70 OSMO_GSUP_MSGT_UPDATE_LOCATION_ERROR = 0b00000101,
71 OSMO_GSUP_MSGT_UPDATE_LOCATION_RESULT = 0b00000110,
72
73 OSMO_GSUP_MSGT_SEND_AUTH_INFO_REQUEST = 0b00001000,
74 OSMO_GSUP_MSGT_SEND_AUTH_INFO_ERROR = 0b00001001,
75 OSMO_GSUP_MSGT_SEND_AUTH_INFO_RESULT = 0b00001010,
76
Harald Weltede960cb2016-06-16 22:57:09 +020077 OSMO_GSUP_MSGT_AUTH_FAIL_REPORT = 0b00001011,
78
Harald Welte3b6fb082016-04-25 18:46:22 +020079 OSMO_GSUP_MSGT_PURGE_MS_REQUEST = 0b00001100,
80 OSMO_GSUP_MSGT_PURGE_MS_ERROR = 0b00001101,
81 OSMO_GSUP_MSGT_PURGE_MS_RESULT = 0b00001110,
82
83 OSMO_GSUP_MSGT_INSERT_DATA_REQUEST = 0b00010000,
84 OSMO_GSUP_MSGT_INSERT_DATA_ERROR = 0b00010001,
85 OSMO_GSUP_MSGT_INSERT_DATA_RESULT = 0b00010010,
86
87 OSMO_GSUP_MSGT_DELETE_DATA_REQUEST = 0b00010100,
88 OSMO_GSUP_MSGT_DELETE_DATA_ERROR = 0b00010101,
89 OSMO_GSUP_MSGT_DELETE_DATA_RESULT = 0b00010110,
90
91 OSMO_GSUP_MSGT_LOCATION_CANCEL_REQUEST = 0b00011100,
92 OSMO_GSUP_MSGT_LOCATION_CANCEL_ERROR = 0b00011101,
93 OSMO_GSUP_MSGT_LOCATION_CANCEL_RESULT = 0b00011110,
94};
95
96#define OSMO_GSUP_IS_MSGT_REQUEST(msgt) (((msgt) & 0b00000011) == 0b00)
97#define OSMO_GSUP_IS_MSGT_ERROR(msgt) (((msgt) & 0b00000011) == 0b01)
98#define OSMO_GSUP_TO_MSGT_ERROR(msgt) (((msgt) & 0b11111100) | 0b01)
99
Neels Hofmeyr10f5fb42017-02-09 02:09:09 +0100100extern const struct value_string osmo_gsup_message_type_names[];
101static inline const char *
102osmo_gsup_message_type_name(enum osmo_gsup_message_type val)
103{ return get_value_string(osmo_gsup_message_type_names, val); }
104
Harald Welte3b6fb082016-04-25 18:46:22 +0200105enum osmo_gsup_cancel_type {
106 OSMO_GSUP_CANCEL_TYPE_UPDATE = 1, /* on wire: 0 */
107 OSMO_GSUP_CANCEL_TYPE_WITHDRAW = 2, /* on wire: 1 */
108};
109
Harald Welte48dc1a52016-05-05 18:46:42 +0200110enum osmo_gsup_cn_domain {
111 OSMO_GSUP_CN_DOMAIN_PS = 1,
112 OSMO_GSUP_CN_DOMAIN_CS = 2,
113};
114
Harald Welte3b6fb082016-04-25 18:46:22 +0200115/*! parsed/decoded PDP context information */
116struct osmo_gsup_pdp_info {
117 unsigned int context_id;
118 int have_info;
119 /*! Type of PDP context */
120 uint16_t pdp_type;
121 /*! APN information, still in encoded form. Can be NULL if no
122 * APN information included */
123 const uint8_t *apn_enc;
124 /*! length (in octets) of apn_enc */
125 size_t apn_enc_len;
126 /*! QoS information, still in encoded form. Can be NULL if no
127 * QoS information included */
128 const uint8_t *qos_enc;
129 /*! length (in octets) of qos_enc */
130 size_t qos_enc_len;
Holger Hans Peter Freythereb55c0d2017-07-07 16:53:30 +0200131 /*! PDP Charging Characteristics, still in encoded form. Can be NULL if no
132 * PDP Charging Characteristics */
133 const uint8_t *pdp_charg_enc;
134 /*! length (in octets) of pdp_charg_enc */
135 size_t pdp_charg_enc_len;
Harald Welte3b6fb082016-04-25 18:46:22 +0200136};
137
138/*! parsed/decoded GSUP protocol message */
139struct osmo_gsup_message {
140 enum osmo_gsup_message_type message_type;
141 char imsi[GSM23003_IMSI_MAX_DIGITS+2];
142 enum gsm48_gmm_cause cause;
143 enum osmo_gsup_cancel_type cancel_type;
144 int pdp_info_compl;
145 int freeze_ptmsi;
146 struct osmo_auth_vector auth_vectors[OSMO_GSUP_MAX_NUM_AUTH_INFO];
147 size_t num_auth_vectors;
148 struct osmo_gsup_pdp_info pdp_infos[OSMO_GSUP_MAX_NUM_PDP_INFO];
149 size_t num_pdp_infos;
150 const uint8_t *msisdn_enc;
151 size_t msisdn_enc_len;
152 const uint8_t *hlr_enc;
153 size_t hlr_enc_len;
154 const uint8_t *auts;
Harald Welte766da862016-05-06 11:18:15 +0200155 const uint8_t *rand;
Harald Welte48dc1a52016-05-05 18:46:42 +0200156 enum osmo_gsup_cn_domain cn_domain;
Holger Hans Peter Freythereb55c0d2017-07-07 16:53:30 +0200157 const uint8_t *pdp_charg_enc;
158 size_t pdp_charg_enc_len;
Harald Welte3b6fb082016-04-25 18:46:22 +0200159};
160
161int osmo_gsup_decode(const uint8_t *data, size_t data_len,
162 struct osmo_gsup_message *gsup_msg);
163void osmo_gsup_encode(struct msgb *msg, const struct osmo_gsup_message *gsup_msg);