blob: 119f093db5ae4b2ac6cb3f7137422062c14d84e2 [file] [log] [blame]
Harald Welte52b1f982008-12-23 20:25:15 +00001#ifndef _GSM_DATA_H
2#define _GSM_DATA_H
3
Harald Weltef142c972011-05-24 13:25:38 +02004#include <stdint.h>
Maxddee01f2016-05-24 14:23:27 +02005#include <regex.h>
6#include <sys/types.h>
Maxe6052c42016-06-30 10:25:49 +02007#include <stdbool.h>
Harald Weltef142c972011-05-24 13:25:38 +02008
9#include <osmocom/core/timer.h>
Alexander Couzens20423ea2016-07-12 15:42:02 +020010#include <osmocom/core/rate_ctr.h>
Harald Welte6be350c2011-05-25 13:10:08 +020011#include <osmocom/core/select.h>
Alexander Couzens20423ea2016-07-12 15:42:02 +020012#include <osmocom/core/stats.h>
Alexander Couzensefa7b972019-04-27 23:45:37 +020013#include <osmocom/core/stat_item.h>
Max43b01b02017-09-15 11:22:30 +020014#include <osmocom/gsm/gsm48.h>
Harald Welte121e9a42016-04-20 13:13:19 +020015#include <osmocom/crypt/auth.h>
Alexander Couzens2c5e4612021-11-05 02:00:17 +010016#include <osmocom/crypt/utran_cipher.h>
Harald Weltef142c972011-05-24 13:25:38 +020017
Neels Hofmeyr6c8afe12017-09-04 01:03:58 +020018#include <osmocom/mgcp_client/mgcp_client.h>
Pau Espin Pedrolb44cf2d2022-10-17 18:09:15 +020019#include <osmocom/mgcp_client/mgcp_client_pool.h>
Harald Welteb96be392011-05-25 12:33:33 +020020
Neels Hofmeyr79921222018-11-30 01:46:51 +010021#include <osmocom/msc/msc_common.h>
Neels Hofmeyrc4628a32018-12-07 14:47:34 +010022#include <osmocom/msc/neighbor_ident.h>
Harald Welted302bb12022-05-17 13:31:14 +020023#include <osmocom/msc/sms_queue.h>
Neels Hofmeyr79921222018-11-30 01:46:51 +010024
Harald Welted35038d2018-01-25 00:07:33 +010025#include "gsm_data_shared.h"
Pau Espin Pedrol4faff9e2019-05-06 19:29:11 +020026#include "osmux.h"
Harald Welted35038d2018-01-25 00:07:33 +010027
Holger Hans Peter Freytherd7b22c62013-04-29 09:11:02 +020028/** annotations for msgb ownership */
29#define __uses
30
Holger Hans Peter Freyther694c82d2011-10-26 18:37:09 +020031struct mncc_sock_state;
Harald Welte2483f1b2016-06-19 18:06:02 +020032struct vlr_instance;
33struct vlr_subscr;
Neels Hofmeyrc4628a32018-12-07 14:47:34 +010034struct gsup_client_mux;
Holger Hans Peter Freyther694c82d2011-10-26 18:37:09 +020035
Keith Whyte1587ffb2020-08-28 13:36:58 +020036#define SMS_DEFAULT_DB_FILE_PATH "sms.db"
Neels Hofmeyr0e5d8072017-01-10 00:49:56 +010037#define tmsi_from_string(str) strtoul(str, NULL, 10)
38
Alexander Couzensb847a212016-08-02 11:34:11 +020039enum {
Alexander Couzens20423ea2016-07-12 15:42:02 +020040 MSC_CTR_LOC_UPDATE_TYPE_ATTACH,
41 MSC_CTR_LOC_UPDATE_TYPE_NORMAL,
42 MSC_CTR_LOC_UPDATE_TYPE_PERIODIC,
43 MSC_CTR_LOC_UPDATE_TYPE_DETACH,
Neels Hofmeyr36891a72016-05-09 13:18:03 +020044 MSC_CTR_LOC_UPDATE_FAILED,
45 MSC_CTR_LOC_UPDATE_COMPLETED,
Neels Hofmeyre3d3dc62018-03-31 00:02:14 +020046 MSC_CTR_CM_SERVICE_REQUEST_REJECTED,
47 MSC_CTR_CM_SERVICE_REQUEST_ACCEPTED,
48 MSC_CTR_PAGING_RESP_REJECTED,
49 MSC_CTR_PAGING_RESP_ACCEPTED,
Neels Hofmeyrae98b972021-07-27 03:46:49 +020050 MSC_CTR_CM_RE_ESTABLISH_REQ_REJECTED,
51 MSC_CTR_CM_RE_ESTABLISH_REQ_ACCEPTED,
Alexander Couzens20423ea2016-07-12 15:42:02 +020052 MSC_CTR_SMS_SUBMITTED,
53 MSC_CTR_SMS_NO_RECEIVER,
54 MSC_CTR_SMS_DELIVERED,
55 MSC_CTR_SMS_RP_ERR_MEM,
56 MSC_CTR_SMS_RP_ERR_OTHER,
Alexander Couzensaa386d22016-08-21 20:16:33 +020057 MSC_CTR_SMS_DELIVER_UNKNOWN_ERROR,
Alexander Couzens20423ea2016-07-12 15:42:02 +020058 MSC_CTR_CALL_MO_SETUP,
59 MSC_CTR_CALL_MO_CONNECT_ACK,
60 MSC_CTR_CALL_MT_SETUP,
61 MSC_CTR_CALL_MT_CONNECT,
Alexander Couzens92f552f2016-08-23 07:32:27 +020062 MSC_CTR_CALL_ACTIVE,
63 MSC_CTR_CALL_COMPLETE,
64 MSC_CTR_CALL_INCOMPLETE,
Vadim Yanitskiy8e25cc52018-06-23 03:32:20 +070065 MSC_CTR_NC_SS_MO_REQUESTS,
66 MSC_CTR_NC_SS_MO_ESTABLISHED,
67 MSC_CTR_NC_SS_MT_REQUESTS,
68 MSC_CTR_NC_SS_MT_ESTABLISHED,
Max366390d2018-11-02 16:01:03 +010069 MSC_CTR_BSSMAP_CIPHER_MODE_REJECT,
70 MSC_CTR_BSSMAP_CIPHER_MODE_COMPLETE,
Alexander Couzens20423ea2016-07-12 15:42:02 +020071};
72
73static const struct rate_ctr_desc msc_ctr_description[] = {
Vadim Yanitskiybc7dabd2019-11-23 01:37:51 +070074 [MSC_CTR_LOC_UPDATE_TYPE_ATTACH] = {"loc_update_type:attach", "Received Location Update (IMSI Attach) requests."},
75 [MSC_CTR_LOC_UPDATE_TYPE_NORMAL] = {"loc_update_type:normal", "Received Location Update (LAC change) requests."},
76 [MSC_CTR_LOC_UPDATE_TYPE_PERIODIC] = {"loc_update_type:periodic", "Received (periodic) Location Update requests."},
77 [MSC_CTR_LOC_UPDATE_TYPE_DETACH] = {"loc_update_type:detach", "Received IMSI Detach indications."},
78 [MSC_CTR_LOC_UPDATE_FAILED] = {"loc_update_resp:failed", "Rejected Location Update requests."},
79 [MSC_CTR_LOC_UPDATE_COMPLETED] = {"loc_update_resp:completed", "Successful Location Update procedures."},
Vadim Yanitskiyc6b088b2019-12-01 23:15:49 +070080 [MSC_CTR_CM_SERVICE_REQUEST_REJECTED] = {"cm_service_request:rejected", "Rejected CM Service Requests."},
81 [MSC_CTR_CM_SERVICE_REQUEST_ACCEPTED] = {"cm_service_request:accepted", "Accepted CM Service Requests."},
82 [MSC_CTR_PAGING_RESP_REJECTED] = {"paging_resp:rejected", "Rejected Paging Responses."},
83 [MSC_CTR_PAGING_RESP_ACCEPTED] = {"paging_resp:accepted", "Accepted Paging Responses."},
Neels Hofmeyrae98b972021-07-27 03:46:49 +020084 [MSC_CTR_CM_RE_ESTABLISH_REQ_REJECTED] = {"cm_re_establish_request:rejected", "Rejected CM Re-Establishing Requests."},
85 [MSC_CTR_CM_RE_ESTABLISH_REQ_ACCEPTED] = {"cm_re_establish_request:accepted", "Accepted CM Re-Establishing Requests."},
Vadim Yanitskiy1ce842d2019-11-23 01:24:08 +070086 [MSC_CTR_SMS_SUBMITTED] = {"sms:submitted", "Total MO SMS received from the MS."},
87 [MSC_CTR_SMS_NO_RECEIVER] = {"sms:no_receiver", "Failed MO SMS delivery attempts (no receiver found)."},
88 [MSC_CTR_SMS_DELIVER_UNKNOWN_ERROR] = {"sms:deliver_unknown_error", "Failed MO SMS delivery attempts (other reason)."},
89 /* FIXME: "sms:delivered" should actually count number of _successfully_ delivered MT SMS.
90 * The current description reflects its current (errorneous) behaviour. */
91 [MSC_CTR_SMS_DELIVERED] = {"sms:delivered", "Total MT SMS delivery attempts."},
92 [MSC_CTR_SMS_RP_ERR_MEM] = {"sms:rp_err_mem", "Failed MT SMS delivery attempts (no memory)."},
93 [MSC_CTR_SMS_RP_ERR_OTHER] = {"sms:rp_err_other", "Failed MT SMS delivery attempts (other reason)."},
Vadim Yanitskiy14480522019-12-01 23:12:38 +070094 [MSC_CTR_CALL_MO_SETUP] = {"call:mo_setup", "Received MO SETUP messages (MO call establishment)."},
95 [MSC_CTR_CALL_MO_CONNECT_ACK] = {"call:mo_connect_ack", "Received MO CONNECT messages (MO call establishment)."},
96 [MSC_CTR_CALL_MT_SETUP] = {"call:mt_setup", "Sent MT SETUP messages (MT call establishment)."},
97 [MSC_CTR_CALL_MT_CONNECT] = {"call:mt_connect", "Sent MT CONNECT messages (MT call establishment)."},
98 [MSC_CTR_CALL_ACTIVE] = {"call:active", "Calls that ever reached the active state."},
99 [MSC_CTR_CALL_COMPLETE] = {"call:complete", "Calls terminated by DISCONNECT message after reaching the active state."},
100 [MSC_CTR_CALL_INCOMPLETE] = {"call:incomplete", "Calls terminated by any other reason after reaching the active state."},
Vadim Yanitskiy8e25cc52018-06-23 03:32:20 +0700101 [MSC_CTR_NC_SS_MO_REQUESTS] = {"nc_ss:mo_requests", "Received MS-initiated call independent SS/USSD requests."},
102 [MSC_CTR_NC_SS_MO_ESTABLISHED] = {"nc_ss:mo_established", "Established MS-initiated call independent SS/USSD sessions."},
103 [MSC_CTR_NC_SS_MT_REQUESTS] = {"nc_ss:mt_requests", "Received network-initiated call independent SS/USSD requests."},
104 [MSC_CTR_NC_SS_MT_ESTABLISHED] = {"nc_ss:mt_established", "Established network-initiated call independent SS/USSD sessions."},
Max366390d2018-11-02 16:01:03 +0100105 [MSC_CTR_BSSMAP_CIPHER_MODE_REJECT] = {"bssmap:cipher_mode_reject", "Number of CIPHER MODE REJECT messages processed by BSSMAP layer"},
106 [MSC_CTR_BSSMAP_CIPHER_MODE_COMPLETE] = {"bssmap:cipher_mode_complete", "Number of CIPHER MODE COMPLETE messages processed by BSSMAP layer"},
Alexander Couzensb847a212016-08-02 11:34:11 +0200107};
108
Alexander Couzensefa7b972019-04-27 23:45:37 +0200109enum {
110 MSC_STAT_ACTIVE_CALLS,
111 MSC_STAT_ACTIVE_NC_SS,
112};
113
Alexander Couzens20423ea2016-07-12 15:42:02 +0200114static const struct rate_ctr_group_desc msc_ctrg_desc = {
115 "msc",
116 "mobile switching center",
117 OSMO_STATS_CLASS_GLOBAL,
118 ARRAY_SIZE(msc_ctr_description),
119 msc_ctr_description,
Harald Welte24ff6ee2009-12-22 00:41:05 +0100120};
121
Alexander Couzensefa7b972019-04-27 23:45:37 +0200122static const struct osmo_stat_item_desc msc_stat_item_description[] = {
123 [MSC_STAT_ACTIVE_CALLS] = { "msc.active_calls", "Currently active calls " , OSMO_STAT_ITEM_NO_UNIT, 4, 0},
124 [MSC_STAT_ACTIVE_NC_SS] = { "msc.active_nc_ss", "Currently active SS/USSD sessions", OSMO_STAT_ITEM_NO_UNIT, 4, 0},
125};
126
127static const struct osmo_stat_item_group_desc msc_statg_desc = {
128 "net",
129 "network statistics",
130 OSMO_STATS_CLASS_GLOBAL,
131 ARRAY_SIZE(msc_stat_item_description),
132 msc_stat_item_description,
133};
134
Neels Hofmeyr2ff5bcd2017-12-15 03:02:27 +0100135#define MSC_PAGING_RESPONSE_TIMER_DEFAULT 10
Harald Welteb84ddfc2009-12-01 17:36:54 +0530136
Neels Hofmeyr73983952016-05-10 13:29:33 +0200137struct gsm_tz {
138 int override; /* if 0, use system's time zone instead. */
139 int hr; /* hour */
140 int mn; /* minute */
141 int dst; /* daylight savings */
142};
143
Harald Welte52b1f982008-12-23 20:25:15 +0000144struct gsm_network {
Neels Hofmeyre2f24d52017-05-08 15:12:20 +0200145 /* TODO MSCSPLIT the gsm_network struct is basically a kitchen sink for
146 * global settings and variables, "madly" mixing BSC and MSC stuff. Split
147 * this in e.g. struct osmo_bsc and struct osmo_msc, with the things
148 * these have in common, like country and network code, put in yet
149 * separate structs and placed as members in osmo_bsc and osmo_msc. */
150
Neels Hofmeyr379d5792018-02-22 04:04:54 +0100151 struct osmo_plmn_id plmn;
152
Harald Weltec6ba9c22008-12-30 18:01:02 +0000153 char *name_long;
154 char *name_short;
Neels Hofmeyr379d5792018-02-22 04:04:54 +0100155
Harald Welte7b222aa2017-12-23 19:30:32 +0100156 /* bit-mask of permitted encryption algorithms. LSB=A5/0, MSB=A5/7 */
157 uint8_t a5_encryption_mask;
Harald Welte2483f1b2016-06-19 18:06:02 +0200158 bool authentication_required;
Harald Welte648b6ce2009-12-14 09:00:24 +0100159 int send_mm_info;
Harald Welte52b1f982008-12-23 20:25:15 +0000160
Harald Welte505a94a2021-02-06 17:12:20 +0100161 /* bit-mask of permitted encryption algorithms. LSB=UEA0, MSB=UEA7 */
162 uint8_t uea_encryption_mask;
Neels Hofmeyr4dfb2ba2019-08-13 16:00:37 +0200163
Alexander Couzensb847a212016-08-02 11:34:11 +0200164 struct rate_ctr_group *msc_ctrs;
Alexander Couzensefa7b972019-04-27 23:45:37 +0200165 struct osmo_stat_item_group *statg;
Harald Welte24ff6ee2009-12-22 00:41:05 +0100166
Harald Welte4bfdfe72009-06-10 23:11:52 +0800167 /* layer 4 */
Neels Hofmeyr80447eb2018-12-05 01:11:28 +0100168 char *mncc_sock_path;
Holger Hans Peter Freyther694c82d2011-10-26 18:37:09 +0200169 struct mncc_sock_state *mncc_state;
Neels Hofmeyr402006d2016-05-11 14:28:25 +0200170 mncc_recv_cb_t mncc_recv;
Harald Welte4bfdfe72009-06-10 23:11:52 +0800171 struct llist_head upqueue;
Neels Hofmeyrc4628a32018-12-07 14:47:34 +0100172 struct osmo_tdef *mncc_tdefs;
Neels Hofmeyr84da6b12016-05-20 21:59:55 +0200173 /*
Neels Hofmeyrc036b792018-11-29 22:37:51 +0100174 * TODO: Move the trans_list into the RAN connection and
Neels Hofmeyr84da6b12016-05-20 21:59:55 +0200175 * create a pending list for MT transactions. These exist before
Neels Hofmeyrc036b792018-11-29 22:37:51 +0100176 * we have a RAN connection.
Neels Hofmeyr84da6b12016-05-20 21:59:55 +0200177 */
Harald Welte4bfdfe72009-06-10 23:11:52 +0800178 struct llist_head trans_list;
179
Harald Welteeab84a12009-12-13 10:53:12 +0100180 /* Radio Resource Location Protocol (TS 04.31) */
181 struct {
182 enum rrlp_mode mode;
183 } rrlp;
Holger Hans Peter Freyther5a3a61d2010-09-06 09:25:48 +0800184
Holger Hans Peter Freyther11b28f92010-12-24 13:48:27 +0100185 struct gsm_sms_queue *sms_queue;
Daniel Willmann6fc4a982011-07-22 17:55:42 +0200186
Vadim Yanitskiyf40e46f2018-11-20 06:20:53 +0700187 /* The "SMS over GSUP" kill-switch that basically breaks internal
188 * SMS routing (i.e. SQLite DB and SMPP), and enables forwarding
189 * of short messages over GSUP towards ESME (through VLR and HLR).
190 * Please see OS#3587 for details. This is a temporary solution,
191 * so it should be removed as soon as we move the SMS processing
192 * logic to an external process (OsmoSMSC?). REMOVE ME! */
193 bool sms_over_gsup;
194
Daniel Willmann6fc4a982011-07-22 17:55:42 +0200195 /* control interface */
196 struct ctrl_handle *ctrl;
Neels Hofmeyr5f0c71b2016-07-23 20:15:28 +0200197
Neels Hofmeyr73983952016-05-10 13:29:33 +0200198 /* if override is nonzero, this timezone data is used for all MM
199 * contexts. */
200 /* TODO: in OsmoNITB, tz-override used to be BTS-specific. To enable
201 * BTS|RNC specific timezone overrides for multi-tz networks in
Neels Hofmeyrfe291de2017-02-23 21:06:12 +0100202 * OsmoMSC, this should be tied to the location area code (LAC). */
Neels Hofmeyr73983952016-05-10 13:29:33 +0200203 struct gsm_tz tz;
Neels Hofmeyr6d804b12017-02-18 22:20:46 +0100204
Harald Welte2483f1b2016-06-19 18:06:02 +0200205 /* MSC: GSUP server address of the HLR */
206 const char *gsup_server_addr_str;
207 uint16_t gsup_server_port;
Neels Hofmeyrc4628a32018-12-07 14:47:34 +0100208 struct gsup_client_mux *gcm;
Harald Welte2483f1b2016-06-19 18:06:02 +0200209
210 struct vlr_instance *vlr;
Neels Hofmeyre2f24d52017-05-08 15:12:20 +0200211
Philipp Maier9ca7b312018-10-10 17:00:49 +0200212 /* Global MNCC guard timer value */
213 int mncc_guard_timeout;
Vadim Yanitskiy64623e12018-11-28 23:05:51 +0700214 /* Global guard timer value for NCSS sessions */
215 int ncss_guard_timeout;
Philipp Maier9ca7b312018-10-10 17:00:49 +0200216
Neels Hofmeyr84da6b12016-05-20 21:59:55 +0200217 struct {
Neels Hofmeyrc4628a32018-12-07 14:47:34 +0100218 struct osmo_tdef *tdefs;
Pau Espin Pedrol9e3bab92023-06-13 19:57:57 +0200219 struct mgcp_client_conf *conf;
Pau Espin Pedrolb44cf2d2022-10-17 18:09:15 +0200220 /* MGW pool, also includes the single MGCP client as fallback if no
221 * pool is configured. */
222 struct mgcp_client_pool *mgw_pool;
Neels Hofmeyr6c8afe12017-09-04 01:03:58 +0200223 } mgw;
Neels Hofmeyr84da6b12016-05-20 21:59:55 +0200224
225 struct {
Philipp Maierfbf66102017-04-09 12:32:51 +0200226 /* CS7 instance id number (set via VTY) */
227 uint32_t cs7_instance;
Neels Hofmeyrc4628a32018-12-07 14:47:34 +0100228 enum nsap_addr_enc rab_assign_addr_enc;
229
230 struct sccp_ran_inst *sri;
Neels Hofmeyr84da6b12016-05-20 21:59:55 +0200231 } iu;
Philipp Maierfbf66102017-04-09 12:32:51 +0200232
233 struct {
234 /* CS7 instance id number (set via VTY) */
235 uint32_t cs7_instance;
Neels Hofmeyrc4628a32018-12-07 14:47:34 +0100236
237 struct sccp_ran_inst *sri;
Philipp Maierfbf66102017-04-09 12:32:51 +0200238 } a;
Harald Welte69c54a82018-02-09 20:41:14 +0100239
240 struct {
241 /* MSISDN to which to route MO emergency calls */
242 char *route_to_msisdn;
243 } emergency;
Stefan Sperlingafa030d2018-12-06 12:06:59 +0100244
245 /* This is transmitted as IPA Serial Number tag, which is used for GSUP routing (e.g. in OsmoHLR).
246 * For inter-MSC handover, the remote MSC's neighbor configuration requires to match this name.
247 * If no name is set, the IPA Serial Number will be the same as the Unit Name,
248 * and will be of the form 'MSC-00-00-00-00-00-00' */
249 char *msc_ipa_name;
Neels Hofmeyrc4628a32018-12-07 14:47:34 +0100250
Neels Hofmeyrac6ccd92021-02-18 14:15:31 +0100251 /* A list of neighbor BSCs. This list is defined statically via VTY and does not
252 * necessarily correspond to BSCs attached to the A interface at a given moment. */
Neels Hofmeyrc4628a32018-12-07 14:47:34 +0100253 struct llist_head neighbor_ident_list;
254
255 struct {
256 uint64_t range_start;
257 uint64_t range_end;
258 uint64_t next;
259 } handover_number;
Pau Espin Pedrol4faff9e2019-05-06 19:29:11 +0200260
261 /* Whether we want to use Osmux against BSCs. Controlled via VTY */
262 enum osmux_usage use_osmux;
Keith Whyte991bb422019-08-08 15:43:40 +0200263
264 /* Whether to use call waiting on the network */
265 bool call_waiting;
Keith Whytea1a70be2021-05-16 02:59:52 +0200266
267 /* Whether to use lcls on the network */
268 bool lcls_permitted;
269
Harald Welted302bb12022-05-17 13:31:14 +0200270 /* SMS queue config parameters */
271 struct sms_queue_config *sms_queue_cfg;
Andreas Eversbergcd605f32023-06-21 15:03:37 +0200272
273 /* ASCI feature support */
274 struct {
Andreas Eversbergcd8bd452023-07-11 14:16:24 +0200275 bool enable;
Andreas Eversbergcd605f32023-06-21 15:03:37 +0200276 struct llist_head gcr_lists;
277 } asci;
Harald Welte52b1f982008-12-23 20:25:15 +0000278};
279
Max366a3402022-08-01 23:01:24 +0700280struct smpp_esme;
Harald Welted4bdee72012-11-08 19:44:08 +0100281
282enum gsm_sms_source_id {
283 SMS_SOURCE_UNKNOWN = 0,
284 SMS_SOURCE_MS, /* received from MS */
285 SMS_SOURCE_VTY, /* received from VTY */
286 SMS_SOURCE_SMPP, /* received via SMPP */
287};
288
Harald Welte7e310b12009-03-30 20:56:32 +0000289#define SMS_TEXT_SIZE 256
Harald Weltee07b6a72012-11-23 19:02:37 +0100290
291struct gsm_sms_addr {
292 uint8_t ton;
293 uint8_t npi;
294 char addr[21+1];
295};
296
Harald Welte7e310b12009-03-30 20:56:32 +0000297struct gsm_sms {
Harald Welted409be72009-11-07 00:06:19 +0900298 unsigned long long id;
Harald Welte2483f1b2016-06-19 18:06:02 +0200299 struct vlr_subscr *receiver;
Harald Weltec0de14d2012-11-23 23:35:01 +0100300 struct gsm_sms_addr src, dst;
Harald Welted4bdee72012-11-08 19:44:08 +0100301 enum gsm_sms_source_id source;
302
303 struct {
Pablo Neira Ayuso93ffbd02017-05-04 18:44:22 +0200304 uint8_t transaction_id;
305 uint32_t msg_ref;
306 } gsm411;
307
308 struct {
Max366a3402022-08-01 23:01:24 +0700309 struct smpp_esme *esme;
Harald Welted4bdee72012-11-08 19:44:08 +0100310 uint32_t sequence_nr;
311 int transaction_mode;
312 char msg_id[16];
313 } smpp;
Harald Welte7e310b12009-03-30 20:56:32 +0000314
Harald Welteb9c758b2009-07-05 14:02:46 +0200315 unsigned long validity_minutes;
Keithc601adc2017-08-16 22:45:07 +0200316 time_t created;
Pablo Neira Ayusoadae8592017-08-07 14:01:30 +0100317 bool is_report;
Holger Hans Peter Freytherc42ad8b2011-04-18 17:04:00 +0200318 uint8_t reply_path_req;
319 uint8_t status_rep_req;
320 uint8_t ud_hdr_ind;
321 uint8_t protocol_id;
322 uint8_t data_coding_scheme;
323 uint8_t msg_ref;
Holger Hans Peter Freytherc42ad8b2011-04-18 17:04:00 +0200324 uint8_t user_data_len;
325 uint8_t user_data[SMS_TEXT_SIZE];
Harald Weltef3efc592009-07-27 20:11:35 +0200326
Harald Welte7e310b12009-03-30 20:56:32 +0000327 char text[SMS_TEXT_SIZE];
328};
329
Holger Hans Peter Freytherf8c42192013-01-09 17:03:27 +0100330/* control interface handling */
331int bsc_base_ctrl_cmds_install(void);
Harald Welte2483f1b2016-06-19 18:06:02 +0200332int msc_ctrl_cmds_install(struct gsm_network *net);
Holger Hans Peter Freytherf8c42192013-01-09 17:03:27 +0100333
Harald Welte6be350c2011-05-25 13:10:08 +0200334#endif /* _GSM_DATA_H */