libosmogsm 1.9.0.196-9975
Osmocom GSM library
gsm23003.h
Go to the documentation of this file.
1
3#pragma once
4
5#include <stdint.h>
6#include <stdbool.h>
7
8/* 23.003 Chapter 12.1 */
10 uint16_t mcc;
11 uint16_t mnc;
12 bool mnc_3_digits; /*< ignored and implied true if mnc > 99, otherwise defines leading zeros. */
13};
14
15/* 4.1 */
18 uint16_t lac;
19};
20
21/* 4.2 */
24 uint8_t rac;
25};
26
27/* 4.3.1 */
30 uint16_t cell_identity;
31};
32
33/* 3GPP TS 48.018:
34 * 8c.1.4.1.1 GERAN BSS identification (RIM)
35 * sec 11.3.9 Cell Identifier */
38 uint16_t cell_identity;
39};
40
49};
50
51/* Actually defined in 3GPP TS 48.008 3.2.2.27 Cell Identifier List,
52 * but conceptually belongs with the above structures. */
54 uint16_t lac;
55 uint16_t ci;
56};
57
58/* 12.5 */
61 uint16_t sac;
62};
63
64/* 12.6 */
67 uint32_t snac;
68};
69
70/* 5.1 */
74};
75
76/* 5.1 */
79 uint8_t length;
80 uint8_t addr[16];
81};
82
83/* 19.4.2.3 */
86 uint16_t tac;
87};
88
91 uint32_t eci; /* FIXME */
92};
93
94/* 2.8.1 */
96 uint16_t group_id;
97 uint8_t code;
98};
99
100/* 2.8.1 */
104};
105
106/* 2.8.1 */
107struct osmo_guti {
109 uint32_t mtmsi;
110};
111
112bool osmo_imsi_str_valid(const char *imsi);
113bool osmo_msisdn_str_valid(const char *msisdn);
114bool osmo_imei_str_valid(const char *imei, bool with_15th_digit);
115
116const char *osmo_mcc_name(uint16_t mcc);
117char *osmo_mcc_name_buf(char *buf, size_t buf_len, uint16_t mcc);
118const char *osmo_mcc_name_c(const void *ctx, uint16_t mcc);
119const char *osmo_mnc_name(uint16_t mnc, bool mnc_3_digits);
120char *osmo_mnc_name_buf(char *buf, size_t buf_len, uint16_t mnc, bool mnc_3_digits);
121char *osmo_mnc_name_c(const void *ctx, uint16_t mnc, bool mnc_3_digits);
122const char *osmo_plmn_name(const struct osmo_plmn_id *plmn);
123const char *osmo_plmn_name2(const struct osmo_plmn_id *plmn);
124char *osmo_plmn_name_buf(char *buf, size_t buf_len, const struct osmo_plmn_id *plmn);
125char *osmo_plmn_name_c(const void *ctx, const struct osmo_plmn_id *plmn);
126const char *osmo_lai_name(const struct osmo_location_area_id *lai);
127char *osmo_lai_name_buf(char *buf, size_t buf_len, const struct osmo_location_area_id *lai);
128char *osmo_lai_name_c(const void *ctx, const struct osmo_location_area_id *lai);
129const char *osmo_rai_name2(const struct osmo_routing_area_id *rai);
130char *osmo_rai_name2_buf(char *buf, size_t buf_len, const struct osmo_routing_area_id *rai);
131char *osmo_rai_name2_c(const void *ctx, const struct osmo_routing_area_id *rai);
132const char *osmo_cgi_name(const struct osmo_cell_global_id *cgi);
133const char *osmo_cgi_name2(const struct osmo_cell_global_id *cgi);
134char *osmo_cgi_name_buf(char *buf, size_t buf_len, const struct osmo_cell_global_id *cgi);
135char *osmo_cgi_name_c(const void *ctx, const struct osmo_cell_global_id *cgi);
136const char *osmo_cgi_ps_name(const struct osmo_cell_global_id_ps *cgi_ps);
137const char *osmo_cgi_ps_name2(const struct osmo_cell_global_id_ps *cgi_ps);
138char *osmo_cgi_ps_name_buf(char *buf, size_t buf_len, const struct osmo_cell_global_id_ps *cgi_ps);
139char *osmo_cgi_ps_name_c(const void *ctx, const struct osmo_cell_global_id_ps *cgi_ps);
140const char *osmo_sai_name(const struct osmo_service_area_id *sai);
141const char *osmo_sai_name2(const struct osmo_service_area_id *sai);
142char *osmo_sai_name_buf(char *buf, size_t buf_len, const struct osmo_service_area_id *sai);
143char *osmo_sai_name_c(const void *ctx, const struct osmo_service_area_id *sai);
144const char *osmo_gummei_name(const struct osmo_gummei *gummei);
145char *osmo_gummei_name_buf(char *buf, size_t buf_len, const struct osmo_gummei *gummei);
146char *osmo_gummei_name_c(const void *ctx, const struct osmo_gummei *gummei);
147
148void osmo_plmn_to_bcd(uint8_t *bcd_dst, const struct osmo_plmn_id *plmn);
149void osmo_plmn_from_bcd(const uint8_t *bcd_src, struct osmo_plmn_id *plmn);
150
151int osmo_mnc_from_str(const char *mnc_str, uint16_t *mnc, bool *mnc_3_digits);
152
153/* Convert string to MCC.
154 * \param mcc_str[in] String representation of an MCC, with or without leading zeros.
155 * \param mcc[out] MCC result buffer, or NULL.
156 * \returns zero on success, -EINVAL in case of surplus characters, negative errno in case of conversion
157 * errors. In case of error, do not modify the out-arguments.
158 */
159static inline int osmo_mcc_from_str(const char *mcc_str, uint16_t *mcc)
160{
161 return osmo_mnc_from_str(mcc_str, mcc, NULL);
162}
163
164int osmo_mnc_cmp(uint16_t a_mnc, bool a_mnc_3_digits, uint16_t b_mnc, bool b_mnc_3_digits);
165int osmo_plmn_cmp(const struct osmo_plmn_id *a, const struct osmo_plmn_id *b);
166int osmo_lai_cmp(const struct osmo_location_area_id *a, const struct osmo_location_area_id *b);
167int osmo_rai_cmp(const struct osmo_routing_area_id *a, const struct osmo_routing_area_id *b);
168int osmo_cgi_cmp(const struct osmo_cell_global_id *a, const struct osmo_cell_global_id *b);
169int osmo_cgi_ps_cmp(const struct osmo_cell_global_id_ps *a, const struct osmo_cell_global_id_ps *b);
170
171int osmo_gen_home_network_domain(char *out, const struct osmo_plmn_id *plmn);
172int osmo_parse_home_network_domain(struct osmo_plmn_id *out, const char *in);
173int osmo_gen_mme_domain(char *out, const struct osmo_gummei *gummei);
174int osmo_gen_mme_group_domain(char *out, uint16_t mmegi, const struct osmo_plmn_id *plmn);
175int osmo_parse_mme_domain(struct osmo_gummei *out, const char *in);
char * osmo_sai_name_buf(char *buf, size_t buf_len, const struct osmo_service_area_id *sai)
Return MCC-MNC-LAC-SAC as string, in caller-provided output buffer.
Definition: gsm23003.c:377
char * osmo_cgi_name_c(const void *ctx, const struct osmo_cell_global_id *cgi)
Return MCC-MNC-LAC-CI as string, in a talloc-allocated output buffer.
Definition: gsm23003.c:321
char * osmo_cgi_name_buf(char *buf, size_t buf_len, const struct osmo_cell_global_id *cgi)
Return MCC-MNC-LAC-CI as string, in caller-provided output buffer.
Definition: gsm23003.c:289
const char * osmo_cgi_name2(const struct osmo_cell_global_id *cgi)
Same as osmo_cgi_name(), but uses a different static buffer.
Definition: gsm23003.c:310
int osmo_gen_home_network_domain(char *out, const struct osmo_plmn_id *plmn)
Generate TS 23.003 Section 19.2 Home Network Realm/Domain (text form)
Definition: gsm23003.c:663
const char * osmo_mcc_name(uint16_t mcc)
Return MCC string as standardized 3-digit with leading zeros.
Definition: gsm23003.c:104
const char * osmo_mnc_name(uint16_t mnc, bool mnc_3_digits)
Return MNC string as standardized 2- or 3-digit with leading zeros.
Definition: gsm23003.c:155
char * osmo_mcc_name_buf(char *buf, size_t buf_len, uint16_t mcc)
Return MCC string as standardized 3-digit with leading zeros.
Definition: gsm23003.c:94
const char * osmo_gummei_name(const struct osmo_gummei *gummei)
Return string representation of GUMMEI in static output buffer.
Definition: gsm23003.c:443
int osmo_rai_cmp(const struct osmo_routing_area_id *a, const struct osmo_routing_area_id *b)
Definition: gsm23003.c:613
int osmo_parse_home_network_domain(struct osmo_plmn_id *out, const char *in)
Parse a TS 23.003 Section 19.2 Home Network Realm/Domain (text form) into a osmo_plmn_id.
Definition: gsm23003.c:676
int osmo_cgi_ps_cmp(const struct osmo_cell_global_id_ps *a, const struct osmo_cell_global_id_ps *b)
Definition: gsm23003.c:647
char * osmo_mnc_name_c(const void *ctx, uint16_t mnc, bool mnc_3_digits)
Return MNC string as standardized 2- or 3-digit with leading zeros, into a talloc-allocated buffer.
Definition: gsm23003.c:142
const char * osmo_lai_name(const struct osmo_location_area_id *lai)
Return MCC-MNC-LAC as string, in a static buffer.
Definition: gsm23003.c:227
void osmo_plmn_to_bcd(uint8_t *bcd_dst, const struct osmo_plmn_id *plmn)
Definition: gsm23003.c:475
int osmo_parse_mme_domain(struct osmo_gummei *out, const char *in)
Parse a TS 23.003 Section 19.4.2.4 MME Domain (text form) into a osmo_gummei.
Definition: gsm23003.c:707
const char * osmo_mcc_name_c(const void *ctx, uint16_t mcc)
Return MCC string as standardized 3-digit with leading zeros, into a talloc-allocated buffer.
Definition: gsm23003.c:115
const char * osmo_sai_name(const struct osmo_service_area_id *sai)
Return MCC-MNC-LAC-SAC as string, in a static buffer.
Definition: gsm23003.c:387
int osmo_plmn_cmp(const struct osmo_plmn_id *a, const struct osmo_plmn_id *b)
Definition: gsm23003.c:580
char * osmo_lai_name_c(const void *ctx, const struct osmo_location_area_id *lai)
Return MCC-MNC-LAC as string, in a talloc-allocated output buffer.
Definition: gsm23003.c:238
int osmo_cgi_cmp(const struct osmo_cell_global_id *a, const struct osmo_cell_global_id *b)
Definition: gsm23003.c:630
char * osmo_rai_name2_buf(char *buf, size_t buf_len, const struct osmo_routing_area_id *rai)
Return MCC-MNC-LAC-RAC as string, in caller-provided output buffer.
Definition: gsm23003.c:252
const char * osmo_plmn_name(const struct osmo_plmn_id *plmn)
Return MCC-MNC string as standardized 3-digit-dash-2/3-digit with leading zeros.
Definition: gsm23003.c:179
bool osmo_imsi_str_valid(const char *imsi)
Determine whether the given IMSI is valid according to 3GPP TS 23.003.
Definition: gsm23003.c:56
const char * osmo_rai_name2(const struct osmo_routing_area_id *rai)
Return MCC-MNC-LAC-RAC as string, in a static buffer.
Definition: gsm23003.c:264
char * osmo_plmn_name_buf(char *buf, size_t buf_len, const struct osmo_plmn_id *plmn)
Return MCC-MNC string as standardized 3-digit-dash-2/3-digit with leading zeros.
Definition: gsm23003.c:167
int osmo_mnc_cmp(uint16_t a_mnc, bool a_mnc_3_digits, uint16_t b_mnc, bool b_mnc_3_digits)
Definition: gsm23003.c:564
osmo_cgi_part
Bitmask of items contained in a struct osmo_cell_global_id.
Definition: gsm23003.h:44
@ OSMO_CGI_PART_CI
Definition: gsm23003.h:47
@ OSMO_CGI_PART_RAC
Definition: gsm23003.h:48
@ OSMO_CGI_PART_LAC
Definition: gsm23003.h:46
@ OSMO_CGI_PART_PLMN
Definition: gsm23003.h:45
char * osmo_rai_name2_c(const void *ctx, const struct osmo_routing_area_id *rai)
Return MCC-MNC-LAC-RAC as string, in a talloc-allocated output buffer.
Definition: gsm23003.c:275
int osmo_lai_cmp(const struct osmo_location_area_id *a, const struct osmo_location_area_id *b)
Definition: gsm23003.c:596
const char * osmo_sai_name2(const struct osmo_service_area_id *sai)
Same as osmo_cgi_name(), but uses a different static buffer.
Definition: gsm23003.c:398
const char * osmo_cgi_ps_name(const struct osmo_cell_global_id_ps *cgi_ps)
Return MCC-MNC-LAC-RAC-CI as string, in a static buffer.
Definition: gsm23003.c:343
static int osmo_mcc_from_str(const char *mcc_str, uint16_t *mcc)
Definition: gsm23003.h:159
char * osmo_gummei_name_c(const void *ctx, const struct osmo_gummei *gummei)
Return string representation of GUMMEI in static output buffer.
Definition: gsm23003.c:455
char * osmo_sai_name_c(const void *ctx, const struct osmo_service_area_id *sai)
Return MCC-MNC-LAC-SAC as string, in a talloc-allocated output buffer.
Definition: gsm23003.c:409
char * osmo_cgi_ps_name_buf(char *buf, size_t buf_len, const struct osmo_cell_global_id_ps *cgi_ps)
Return MCC-MNC-LAC-RAC-CI as string, in caller-provided output buffer.
Definition: gsm23003.c:333
char * osmo_gummei_name_buf(char *buf, size_t buf_len, const struct osmo_gummei *gummei)
Return string representation of GUMMEI in caller-provided output buffer.
Definition: gsm23003.c:431
const char * osmo_cgi_ps_name2(const struct osmo_cell_global_id_ps *cgi_ps)
Same as osmo_cgi_ps_name(), but uses a different static buffer.
Definition: gsm23003.c:354
char * osmo_plmn_name_c(const void *ctx, const struct osmo_plmn_id *plmn)
Return MCC-MNC string as standardized 3-digit-dash-2/3-digit with leading zeros, into a dynamically-a...
Definition: gsm23003.c:202
bool osmo_imei_str_valid(const char *imei, bool with_15th_digit)
Determine whether the given IMEI is valid according to 3GPP TS 23.003, Section 6.2....
Definition: gsm23003.c:80
char * osmo_lai_name_buf(char *buf, size_t buf_len, const struct osmo_location_area_id *lai)
Return MCC-MNC-LAC as string, in caller-provided output buffer.
Definition: gsm23003.c:216
const char * osmo_plmn_name2(const struct osmo_plmn_id *plmn)
Same as osmo_plmn_name(), but returning in a different static buffer.
Definition: gsm23003.c:190
bool osmo_msisdn_str_valid(const char *msisdn)
Determine whether the given MSISDN is valid according to 3GPP TS 23.003.
Definition: gsm23003.c:66
osmo_gsn_addr_type
Definition: gsm23003.h:71
@ GSN_ADDR_TYPE_IPV6
Definition: gsm23003.h:73
@ GSN_ADDR_TYPE_IPV4
Definition: gsm23003.h:72
char * osmo_cgi_ps_name_c(const void *ctx, const struct osmo_cell_global_id_ps *cgi_ps)
Return MCC-MNC-LAC-RAC-CI as string, in a talloc-allocated output buffer.
Definition: gsm23003.c:365
void osmo_plmn_from_bcd(const uint8_t *bcd_src, struct osmo_plmn_id *plmn)
Definition: gsm23003.c:500
int osmo_gen_mme_domain(char *out, const struct osmo_gummei *gummei)
Generate TS 23.003 Section 19.4.2.4 MME Domain (text form)
Definition: gsm23003.c:693
int osmo_mnc_from_str(const char *mnc_str, uint16_t *mnc, bool *mnc_3_digits)
Definition: gsm23003.c:527
const char * osmo_cgi_name(const struct osmo_cell_global_id *cgi)
Return MCC-MNC-LAC-CI as string, in a static buffer.
Definition: gsm23003.c:299
int osmo_gen_mme_group_domain(char *out, uint16_t mmegi, const struct osmo_plmn_id *plmn)
Generate TS 23.003 Section 19.4.2.4 MME Group Domain (text form)
Definition: gsm23003.c:727
char * osmo_mnc_name_buf(char *buf, size_t buf_len, uint16_t mnc, bool mnc_3_digits)
Return MNC string as standardized 2- or 3-digit with leading zeros.
Definition: gsm23003.c:130
struct gsm48_loc_area_id lai
Definition: gsm_04_08.h:2
Definition: gsm23003.h:36
uint16_t cell_identity
Definition: gsm23003.h:38
struct osmo_routing_area_id rai
Definition: gsm23003.h:37
Definition: gsm23003.h:28
uint16_t cell_identity
Definition: gsm23003.h:30
struct osmo_location_area_id lai
Definition: gsm23003.h:29
Definition: gsm23003.h:89
uint32_t eci
Definition: gsm23003.h:91
struct osmo_plmn_id plmn
Definition: gsm23003.h:90
Definition: gsm23003.h:77
uint8_t length
Definition: gsm23003.h:79
uint8_t addr[16]
Definition: gsm23003.h:80
enum osmo_gsn_addr_type type
Definition: gsm23003.h:78
Definition: gsm23003.h:101
struct osmo_plmn_id plmn
Definition: gsm23003.h:102
struct osmo_mme_id mme
Definition: gsm23003.h:103
Definition: gsm23003.h:107
struct osmo_gummei gummei
Definition: gsm23003.h:108
uint32_t mtmsi
Definition: gsm23003.h:109
Definition: gsm23003.h:53
uint16_t lac
Definition: gsm23003.h:54
uint16_t ci
Definition: gsm23003.h:55
Definition: gsm23003.h:16
uint16_t lac
Definition: gsm23003.h:18
struct osmo_plmn_id plmn
Definition: gsm23003.h:17
Definition: gsm23003.h:95
uint8_t code
Definition: gsm23003.h:97
uint16_t group_id
Definition: gsm23003.h:96
Definition: gsm23003.h:9
uint16_t mcc
Definition: gsm23003.h:10
bool mnc_3_digits
Definition: gsm23003.h:12
uint16_t mnc
Definition: gsm23003.h:11
Definition: gsm23003.h:22
struct osmo_location_area_id lac
Definition: gsm23003.h:23
uint8_t rac
Definition: gsm23003.h:24
Definition: gsm23003.h:59
uint16_t sac
Definition: gsm23003.h:61
struct osmo_location_area_id lai
Definition: gsm23003.h:60
Definition: gsm23003.h:65
uint32_t snac
Definition: gsm23003.h:67
struct osmo_plmn_id plmn
Definition: gsm23003.h:66
Definition: gsm23003.h:84
struct osmo_plmn_id plmn
Definition: gsm23003.h:85
uint16_t tac
Definition: gsm23003.h:86