blob: fbe0ca0f49f1269bb84bbce43fd124ad5be70d49 [file] [log] [blame]
Neels Hofmeyr17518fe2017-06-20 04:35:06 +02001/*! \file gsm23003.h */
2
Harald Weltebda26c02016-05-11 09:13:08 +02003#pragma once
Neels Hofmeyr17518fe2017-06-20 04:35:06 +02004
Harald Weltebda26c02016-05-11 09:13:08 +02005#include <stdint.h>
Neels Hofmeyr9cd1e742017-10-04 03:15:47 +02006#include <stdbool.h>
Harald Weltebda26c02016-05-11 09:13:08 +02007
8/* 23.003 Chapter 12.1 */
9struct osmo_plmn_id {
10 uint16_t mcc;
11 uint16_t mnc;
Neels Hofmeyrc4fce142018-02-20 13:47:08 +010012 bool mnc_3_digits; /*< ignored and implied true if mnc > 99, otherwise defines leading zeros. */
Harald Weltebda26c02016-05-11 09:13:08 +020013};
14
15/* 4.1 */
16struct osmo_location_area_id {
17 struct osmo_plmn_id plmn;
18 uint16_t lac;
19};
20
21/* 4.2 */
22struct osmo_routing_area_id {
23 struct osmo_location_area_id lac;
24 uint8_t rac;
25};
26
27/* 4.3.1 */
28struct osmo_cell_global_id {
29 struct osmo_location_area_id lai;
30 uint16_t cell_identity;
31};
32
Pau Espin Pedrolca33a712021-01-05 19:36:48 +010033struct osmo_cell_global_id_ps {
34 struct osmo_routing_area_id rai;
35 uint16_t cell_identity;
36};
37
Neels Hofmeyr3a504532019-02-10 22:28:27 +010038/*! Bitmask of items contained in a struct osmo_cell_global_id.
39 * See also gsm0808_cell_id_to_cgi().
40 */
41enum osmo_cgi_part {
42 OSMO_CGI_PART_PLMN = 1,
43 OSMO_CGI_PART_LAC = 2,
44 OSMO_CGI_PART_CI = 4,
Pau Espin Pedrolca33a712021-01-05 19:36:48 +010045 OSMO_CGI_PART_RAC = 8,
Neels Hofmeyr3a504532019-02-10 22:28:27 +010046};
47
Stefan Sperling11a4d9d2018-02-15 18:28:04 +010048/* Actually defined in 3GPP TS 48.008 3.2.2.27 Cell Identifier List,
49 * but conceptually belongs with the above structures. */
50struct osmo_lac_and_ci_id {
51 uint16_t lac;
52 uint16_t ci;
53};
54
Harald Weltebda26c02016-05-11 09:13:08 +020055/* 12.5 */
56struct osmo_service_area_id {
57 struct osmo_location_area_id lai;
58 uint16_t sac;
59};
60
61/* 12.6 */
62struct osmo_shared_network_area_id {
63 struct osmo_plmn_id plmn;
64 uint32_t snac;
65};
66
67/* 5.1 */
68enum osmo_gsn_addr_type {
69 GSN_ADDR_TYPE_IPV4 = 0,
70 GSN_ADDR_TYPE_IPV6 = 1,
71};
72
73/* 5.1 */
74struct osmo_gsn_address {
75 enum osmo_gsn_addr_type type;
76 uint8_t length;
77 uint8_t addr[16];
78};
79
80/* 19.4.2.3 */
81struct osmo_tracking_area_id {
82 struct osmo_plmn_id plmn;
83 uint16_t tac;
84};
85
86struct osmo_eutran_cell_global_id {
87 struct osmo_plmn_id plmn;
88 uint32_t eci; /* FIXME */
89};
90
91/* 2.8.1 */
92struct osmo_mme_id {
93 uint16_t group_id;
94 uint8_t code;
95};
96
97/* 2.8.1 */
98struct osmo_gummei {
99 struct osmo_plmn_id plmn;
100 struct osmo_mme_id mme;
101};
102
103/* 2.8.1 */
104struct osmo_guti {
105 struct osmo_gummei gummei;
106 uint32_t mtmsi;
107};
Neels Hofmeyr9cd1e742017-10-04 03:15:47 +0200108
109bool osmo_imsi_str_valid(const char *imsi);
110bool osmo_msisdn_str_valid(const char *msisdn);
Oliver Smith894be2d2019-01-11 13:13:37 +0100111bool osmo_imei_str_valid(const char *imei, bool with_15th_digit);
Neels Hofmeyrc4fce142018-02-20 13:47:08 +0100112
113const char *osmo_mcc_name(uint16_t mcc);
Harald Welte4a62eda2019-03-18 18:27:00 +0100114char *osmo_mcc_name_buf(char *buf, size_t buf_len, uint16_t mcc);
Harald Welte179f3572019-03-18 18:38:47 +0100115const char *osmo_mcc_name_c(const void *ctx, uint16_t mcc);
Neels Hofmeyrc4fce142018-02-20 13:47:08 +0100116const char *osmo_mnc_name(uint16_t mnc, bool mnc_3_digits);
Harald Welte4a62eda2019-03-18 18:27:00 +0100117char *osmo_mnc_name_buf(char *buf, size_t buf_len, uint16_t mnc, bool mnc_3_digits);
Harald Welte179f3572019-03-18 18:38:47 +0100118char *osmo_mnc_name_c(const void *ctx, uint16_t mnc, bool mnc_3_digits);
Neels Hofmeyrc4fce142018-02-20 13:47:08 +0100119const char *osmo_plmn_name(const struct osmo_plmn_id *plmn);
120const char *osmo_plmn_name2(const struct osmo_plmn_id *plmn);
Harald Welte4a62eda2019-03-18 18:27:00 +0100121char *osmo_plmn_name_buf(char *buf, size_t buf_len, const struct osmo_plmn_id *plmn);
Harald Welte179f3572019-03-18 18:38:47 +0100122char *osmo_plmn_name_c(const void *ctx, const struct osmo_plmn_id *plmn);
Neels Hofmeyrc4fce142018-02-20 13:47:08 +0100123const char *osmo_lai_name(const struct osmo_location_area_id *lai);
Harald Welte4a62eda2019-03-18 18:27:00 +0100124char *osmo_lai_name_buf(char *buf, size_t buf_len, const struct osmo_location_area_id *lai);
Harald Welte179f3572019-03-18 18:38:47 +0100125char *osmo_lai_name_c(const void *ctx, const struct osmo_location_area_id *lai);
Pau Espin Pedrolca33a712021-01-05 19:36:48 +0100126const char *osmo_rai_name2(const struct osmo_routing_area_id *rai);
127char *osmo_rai_name2_buf(char *buf, size_t buf_len, const struct osmo_routing_area_id *rai);
128char *osmo_rai_name2_c(const void *ctx, const struct osmo_routing_area_id *rai);
Neels Hofmeyr43496202018-03-22 14:04:30 +0100129const char *osmo_cgi_name(const struct osmo_cell_global_id *cgi);
130const char *osmo_cgi_name2(const struct osmo_cell_global_id *cgi);
Harald Welte4a62eda2019-03-18 18:27:00 +0100131char *osmo_cgi_name_buf(char *buf, size_t buf_len, const struct osmo_cell_global_id *cgi);
Harald Welte179f3572019-03-18 18:38:47 +0100132char *osmo_cgi_name_c(const void *ctx, const struct osmo_cell_global_id *cgi);
Pau Espin Pedrolca33a712021-01-05 19:36:48 +0100133const char *osmo_cgi_ps_name(const struct osmo_cell_global_id_ps *cgi_ps);
134const char *osmo_cgi_ps_name2(const struct osmo_cell_global_id_ps *cgi_ps);
135char *osmo_cgi_ps_name_buf(char *buf, size_t buf_len, const struct osmo_cell_global_id_ps *cgi_ps);
136char *osmo_cgi_ps_name_c(const void *ctx, const struct osmo_cell_global_id_ps *cgi_ps);
Harald Weltede1da352018-10-08 22:27:04 +0200137const char *osmo_gummei_name(const struct osmo_gummei *gummei);
Harald Welte4a62eda2019-03-18 18:27:00 +0100138char *osmo_gummei_name_buf(char *buf, size_t buf_len, const struct osmo_gummei *gummei);
Harald Welte179f3572019-03-18 18:38:47 +0100139char *osmo_gummei_name_c(const void *ctx, const struct osmo_gummei *gummei);
Neels Hofmeyrc4fce142018-02-20 13:47:08 +0100140
141void osmo_plmn_to_bcd(uint8_t *bcd_dst, const struct osmo_plmn_id *plmn);
142void osmo_plmn_from_bcd(const uint8_t *bcd_src, struct osmo_plmn_id *plmn);
Neels Hofmeyr721aa6d2018-02-20 21:38:00 +0100143
144int osmo_mnc_from_str(const char *mnc_str, uint16_t *mnc, bool *mnc_3_digits);
145
Neels Hofmeyr4d68fd02018-03-05 04:16:48 +0100146/* Convert string to MCC.
147 * \param mcc_str[in] String representation of an MCC, with or without leading zeros.
148 * \param mcc[out] MCC result buffer, or NULL.
149 * \returns zero on success, -EINVAL in case of surplus characters, negative errno in case of conversion
150 * errors. In case of error, do not modify the out-arguments.
151 */
152static inline int osmo_mcc_from_str(const char *mcc_str, uint16_t *mcc)
153{
154 return osmo_mnc_from_str(mcc_str, mcc, NULL);
155}
156
Neels Hofmeyr721aa6d2018-02-20 21:38:00 +0100157int osmo_mnc_cmp(uint16_t a_mnc, bool a_mnc_3_digits, uint16_t b_mnc, bool b_mnc_3_digits);
158int osmo_plmn_cmp(const struct osmo_plmn_id *a, const struct osmo_plmn_id *b);
Neels Hofmeyrd01ef752018-09-21 15:57:26 +0200159int osmo_lai_cmp(const struct osmo_location_area_id *a, const struct osmo_location_area_id *b);
160int osmo_cgi_cmp(const struct osmo_cell_global_id *a, const struct osmo_cell_global_id *b);
Harald Weltede1da352018-10-08 22:27:04 +0200161
162int osmo_gen_home_network_domain(char *out, const struct osmo_plmn_id *plmn);
163int osmo_parse_home_network_domain(struct osmo_plmn_id *out, const char *in);
164int osmo_gen_mme_domain(char *out, const struct osmo_gummei *gummei);
165int osmo_gen_mme_group_domain(char *out, uint16_t mmegi, const struct osmo_plmn_id *plmn);
166int osmo_parse_mme_domain(struct osmo_gummei *out, const char *in);