libosmogsm 1.9.0.196-9975
Osmocom GSM library
gsm_04_08.h
Go to the documentation of this file.
4#pragma once
6#include <stdint.h>
7#include <stdbool.h>
13
14struct gsm_lchan;
15
16/* Chapter 10.5.1.5 */
18#if OSMO_IS_LITTLE_ENDIAN
19 uint8_t pwr_lev:3,
20 a5_1:1,
21 es_ind:1,
22 rev_lev:2,
23 spare:1;
24#elif OSMO_IS_BIG_ENDIAN
25/* auto-generated from the little endian part above (libosmocore/contrib/struct_endianness.py) */
26 uint8_t spare:1, rev_lev:2, es_ind:1, a5_1:1, pwr_lev:3;
27#endif
28} __attribute__ ((packed));
29
30/* Chapter 10.5.1.6 */
32#if OSMO_IS_LITTLE_ENDIAN
33 uint8_t pwr_lev:3,
34 a5_1:1,
35 es_ind:1,
36 rev_lev:2,
37 spare:1;
38 uint8_t fc:1,
39 vgcs:1,
40 vbs:1,
41 sm_cap:1,
42 ss_scr:2,
43 ps_cap:1,
44 spare2:1;
45 uint8_t a5_2:1,
46 a5_3:1,
47 cmsp:1,
48 solsa:1,
49 spare3:1,
50 lcsva_cap:1,
51 spare4:1,
52 cm3:1;
53#elif OSMO_IS_BIG_ENDIAN
54/* auto-generated from the little endian part above (libosmocore/contrib/struct_endianness.py) */
55 uint8_t spare:1, rev_lev:2, es_ind:1, a5_1:1, pwr_lev:3;
56 uint8_t spare2:1, ps_cap:1, ss_scr:2, sm_cap:1, vbs:1, vgcs:1, fc:1;
57 uint8_t cm3:1, spare4:1, lcsva_cap:1, spare3:1, solsa:1, cmsp:1, a5_3:1, a5_2:1;
58#endif
59} __attribute__ ((packed));
60
61/* Chapter 10.5.1.7 */
63 uint8_t a5_bits;
67
68 struct {
69 bool present;
72
73 struct {
74 bool present;
75 uint8_t mslot_class;
77
80
81 struct {
82 bool present;
83 uint8_t sms_value;
84 uint8_t sm_value;
86
87 struct {
88 bool present;
89 uint8_t method;
91
92 struct {
93 bool present;
94 uint8_t mslot_class;
96
97 struct {
98 bool present;
99 bool mod_cap;
100
101 struct {
102 bool present;
103 uint8_t value;
105
106 struct {
107 bool present;
108 uint8_t value;
110
112
113 struct {
114 bool present;
115 uint8_t value;
118
119 struct {
120 bool present;
121 uint8_t value;
123
124 struct {
125 bool present;
126 uint8_t value;
128
132
133 struct {
134 bool present;
135 uint8_t mslot_class;
137 struct {
138 bool present;
139 uint8_t mslot_class;
142
143 struct {
144 bool present;
145 uint8_t value;
147
148 struct {
149 bool present;
150 uint8_t value;
152
155
156 struct {
157 bool present;
158 uint8_t mslot_class;
159 struct {
160 bool present;
161 uint8_t mslot_class;
164
165 struct {
166 bool present;
167 uint8_t value;
169
173
174 struct {
175 bool present;
176 uint8_t value;
177 uint8_t assoc_radio_cap;
179
182
183 struct {
184 bool present;
185 uint8_t mslot_class;
187 struct {
188 bool present;
189 uint8_t mslot_class;
192
194
195 struct {
196 bool present;
197 uint8_t value;
199
200 struct {
201 bool present;
202 uint8_t value;
204
212
213 uint8_t vamos_level;
215
217
220
229
236 uint8_t classmark3[14]; /* if cm3 gets extended by spec, it will be truncated */
237};
238
240bool osmo_gsm48_classmark1_is_r99(const struct gsm48_classmark1 *cm1);
241bool osmo_gsm48_classmark2_is_r99(const struct gsm48_classmark2 *cm2, uint8_t cm2_len);
242int osmo_gsm48_classmark_supports_a5(const struct osmo_gsm48_classmark *cm, uint8_t a5);
243const char *osmo_gsm48_classmark_a5_name(const struct osmo_gsm48_classmark *cm);
244char *osmo_gsm48_classmark_a5_name_buf(char *buf, size_t buf_len, const struct osmo_gsm48_classmark *cm);
245char *osmo_gsm48_classmark_a5_name_c(const void *ctx, const struct osmo_gsm48_classmark *cm);
247int8_t osmo_gsm48_rfpowercap2powerclass(enum gsm_band band, uint8_t rf_power_cap);
248/* Chapter 10.5.2.1b.3 */
250#if OSMO_IS_LITTLE_ENDIAN
251 uint8_t w1_hi:2,
252 f0:1,
253 form_id:5;
254 uint8_t w1_lo;
255 uint8_t w2_hi;
256 uint8_t w3_hi:7,
257 w2_lo:1;
258 uint8_t w4_hi:6,
259 w3_lo:2;
260 uint8_t w5_hi:6,
261 w4_lo:2;
262 uint8_t w6_hi:6,
263 w5_lo:2;
264 uint8_t w7_hi:6,
265 w6_lo:2;
266 uint8_t w8_hi:6,
267 w7_lo:2;
268 uint8_t w9:7,
269 w8_lo:1;
270 uint8_t w11_hi:1,
271 w10:7;
272 uint8_t w12_hi:2,
273 w11_lo:6;
274 uint8_t w13_hi:3,
275 w12_lo:5;
276 uint8_t w14_hi:4,
277 w13_lo:4;
278 uint8_t w15_hi:5,
279 w14_lo:3;
280 uint8_t w16:6,
281 w15_lo:2;
282#elif OSMO_IS_BIG_ENDIAN
283/* auto-generated from the little endian part above (libosmocore/contrib/struct_endianness.py) */
284 uint8_t form_id:5, f0:1, w1_hi:2;
285 uint8_t w1_lo;
286 uint8_t w2_hi;
287 uint8_t w2_lo:1, w3_hi:7;
288 uint8_t w3_lo:2, w4_hi:6;
289 uint8_t w4_lo:2, w5_hi:6;
290 uint8_t w5_lo:2, w6_hi:6;
291 uint8_t w6_lo:2, w7_hi:6;
292 uint8_t w7_lo:2, w8_hi:6;
293 uint8_t w8_lo:1, w9:7;
294 uint8_t w10:7, w11_hi:1;
295 uint8_t w11_lo:6, w12_hi:2;
296 uint8_t w12_lo:5, w13_hi:3;
297 uint8_t w13_lo:4, w14_hi:4;
298 uint8_t w14_lo:3, w15_hi:5;
299 uint8_t w15_lo:2, w16:6;
300#endif
301} __attribute__ ((packed));
302
303/* Chapter 10.5.2.1b.4 */
305#if OSMO_IS_LITTLE_ENDIAN
306 uint8_t orig_arfcn_hi:1,
307 form_id:7;
308 uint8_t orig_arfcn_mid;
309 uint8_t w1_hi:7,
310 orig_arfcn_lo:1;
311 uint8_t w2_hi:6,
312 w1_lo:2;
313 uint8_t w3_hi:6,
314 w2_lo:2;
315 uint8_t w4_hi:6,
316 w3_lo:2;
317 uint8_t w5:7,
318 w4_lo:1;
319 uint8_t w7_hi:1,
320 w6:7;
321 uint8_t w8_hi:2,
322 w7_lo:6;
323 uint8_t w9_hi:4,
324 w8_lo:4;
325 uint8_t w10:6,
326 w9_lo:2;
327 uint8_t w12_hi:2,
328 w11:6;
329 uint8_t w13_hi:4,
330 w12_lo:4;
331 uint8_t w14:6,
332 w13_lo:2;
333 uint8_t w16_hi:2,
334 w15:6;
335 uint8_t w17:5,
336 w16_lo:3;
337#elif OSMO_IS_BIG_ENDIAN
338/* auto-generated from the little endian part above (libosmocore/contrib/struct_endianness.py) */
339 uint8_t form_id:7, orig_arfcn_hi:1;
340 uint8_t orig_arfcn_mid;
341 uint8_t orig_arfcn_lo:1, w1_hi:7;
342 uint8_t w1_lo:2, w2_hi:6;
343 uint8_t w2_lo:2, w3_hi:6;
344 uint8_t w3_lo:2, w4_hi:6;
345 uint8_t w4_lo:1, w5:7;
346 uint8_t w6:7, w7_hi:1;
347 uint8_t w7_lo:6, w8_hi:2;
348 uint8_t w8_lo:4, w9_hi:4;
349 uint8_t w9_lo:2, w10:6;
350 uint8_t w11:6, w12_hi:2;
351 uint8_t w12_lo:4, w13_hi:4;
352 uint8_t w13_lo:2, w14:6;
353 uint8_t w15:6, w16_hi:2;
354 uint8_t w16_lo:3, w17:5;
355#endif
356} __attribute__ ((packed));
357
358/* Chapter 10.5.2.1b.5 */
360#if OSMO_IS_LITTLE_ENDIAN
361 uint8_t orig_arfcn_hi:1,
362 form_id:7;
363 uint8_t orig_arfcn_mid;
364 uint8_t w1_hi:7,
365 orig_arfcn_lo:1;
366 uint8_t w2:7,
367 w1_lo:1;
368 uint8_t w4_hi:1,
369 w3:7;
370 uint8_t w5_hi:3,
371 w4_lo:5;
372 uint8_t w6_hi:5,
373 w5_lo:3;
374 uint8_t w8_hi:1,
375 w7:6,
376 w6_lo:1;
377 uint8_t w9_hi:4,
378 w8_lo:4;
379 uint8_t w11_hi:2,
380 w10:5,
381 w9_lo:1;
382 uint8_t w12:5,
383 w11_lo:3;
384 uint8_t w14_hi:3,
385 w13:5;
386 uint8_t w16_hi:1,
387 w15:5,
388 w14_lo:2;
389 uint8_t w18_hi:1,
390 w17:4,
391 w16_lo:3;
392 uint8_t w20_hi:1,
393 w19:4,
394 w18_lo:3;
395 uint8_t spare:1,
396 w21:4,
397 w20_lo:3;
398#elif OSMO_IS_BIG_ENDIAN
399/* auto-generated from the little endian part above (libosmocore/contrib/struct_endianness.py) */
400 uint8_t form_id:7, orig_arfcn_hi:1;
401 uint8_t orig_arfcn_mid;
402 uint8_t orig_arfcn_lo:1, w1_hi:7;
403 uint8_t w1_lo:1, w2:7;
404 uint8_t w3:7, w4_hi:1;
405 uint8_t w4_lo:5, w5_hi:3;
406 uint8_t w5_lo:3, w6_hi:5;
407 uint8_t w6_lo:1, w7:6, w8_hi:1;
408 uint8_t w8_lo:4, w9_hi:4;
409 uint8_t w9_lo:1, w10:5, w11_hi:2;
410 uint8_t w11_lo:3, w12:5;
411 uint8_t w13:5, w14_hi:3;
412 uint8_t w14_lo:2, w15:5, w16_hi:1;
413 uint8_t w16_lo:3, w17:4, w18_hi:1;
414 uint8_t w18_lo:3, w19:4, w20_hi:1;
415 uint8_t w20_lo:3, w21:4, spare:1;
416#endif
417} __attribute__ ((packed));
418
419/* Chapter 10.5.2.1b.6 */
421#if OSMO_IS_LITTLE_ENDIAN
422 uint8_t orig_arfcn_hi:1,
423 form_id:7;
424 uint8_t orig_arfcn_mid;
425 uint8_t w1:7,
426 orig_arfcn_lo:1;
427 uint8_t w3_hi:2,
428 w2:6;
429 uint8_t w4_hi:4,
430 w3_lo:4;
431 uint8_t w6_hi:2,
432 w5:5,
433 w4_lo:1;
434 uint8_t w7:5,
435 w6_lo:3;
436 uint8_t w9:4,
437 w8:4;
438 uint8_t w11:4,
439 w10:4;
440 uint8_t w13:4,
441 w12:4;
442 uint8_t w15:4,
443 w14:4;
444 uint8_t w18_hi:2,
445 w17:3,
446 w16:3;
447 uint8_t w21_hi:1,
448 w20:3,
449 w19:3,
450 w18_lo:1;
451 uint8_t w23:3,
452 w22:3,
453 w21_lo:2;
454 uint8_t w26_hi:2,
455 w25:3,
456 w24:3;
457 uint8_t spare:1,
458 w28:3,
459 w27:3,
460 w26_lo:1;
461#elif OSMO_IS_BIG_ENDIAN
462/* auto-generated from the little endian part above (libosmocore/contrib/struct_endianness.py) */
463 uint8_t form_id:7, orig_arfcn_hi:1;
464 uint8_t orig_arfcn_mid;
465 uint8_t orig_arfcn_lo:1, w1:7;
466 uint8_t w2:6, w3_hi:2;
467 uint8_t w3_lo:4, w4_hi:4;
468 uint8_t w4_lo:1, w5:5, w6_hi:2;
469 uint8_t w6_lo:3, w7:5;
470 uint8_t w8:4, w9:4;
471 uint8_t w10:4, w11:4;
472 uint8_t w12:4, w13:4;
473 uint8_t w14:4, w15:4;
474 uint8_t w16:3, w17:3, w18_hi:2;
475 uint8_t w18_lo:1, w19:3, w20:3, w21_hi:1;
476 uint8_t w21_lo:2, w22:3, w23:3;
477 uint8_t w24:3, w25:3, w26_hi:2;
478 uint8_t w26_lo:1, w27:3, w28:3, spare:1;
479#endif
480} __attribute__ ((packed));
481
482/* Chapter 10.5.2.1b.7 */
484#if OSMO_IS_LITTLE_ENDIAN
485 uint8_t orig_arfcn_hi:1,
486 form_id:7;
487 uint8_t orig_arfcn_mid;
488 uint8_t rrfcn1_7:7,
489 orig_arfcn_lo:1;
490 uint8_t rrfcn8_111[13];
491#elif OSMO_IS_BIG_ENDIAN
492/* auto-generated from the little endian part above (libosmocore/contrib/struct_endianness.py) */
493 uint8_t form_id:7, orig_arfcn_hi:1;
494 uint8_t orig_arfcn_mid;
495 uint8_t orig_arfcn_lo:1, rrfcn1_7:7;
496 uint8_t rrfcn8_111[13];
497#endif
498} __attribute__ ((packed));
499
500/* Chapter 10.5.2.5 */
502 uint8_t chan_nr;
503 union {
504 struct {
505#if OSMO_IS_LITTLE_ENDIAN
506 uint8_t maio_high:4,
507 h:1,
508 tsc:3;
509 uint8_t hsn:6,
510 maio_low:2;
511#elif OSMO_IS_BIG_ENDIAN
512/* auto-generated from the little endian part above (libosmocore/contrib/struct_endianness.py) */
513 uint8_t tsc:3, h:1, maio_high:4;
514 uint8_t maio_low:2, hsn:6;
515#endif
516 } __attribute__ ((packed)) h1;
517 struct {
518#if OSMO_IS_LITTLE_ENDIAN
519 uint8_t arfcn_high:2,
520 spare:2,
521 h:1,
522 tsc:3;
523 uint8_t arfcn_low;
524#elif OSMO_IS_BIG_ENDIAN
525/* auto-generated from the little endian part above (libosmocore/contrib/struct_endianness.py) */
526 uint8_t tsc:3, h:1, spare:2, arfcn_high:2;
527 uint8_t arfcn_low;
528#endif
529 } __attribute__ ((packed)) h0;
530 } __attribute__ ((packed));
531} __attribute__ ((packed));
532
533/* Chapter 10.5.2.20 */
535#if OSMO_IS_LITTLE_ENDIAN
536 uint8_t rxlev_full:6,
537 dtx_used:1,
538 ba_used:1;
539 uint8_t rxlev_sub:6,
540 meas_valid:1,
541 spare:1;
542 uint8_t no_nc_n_hi:1,
543 rxqual_sub:3,
544 rxqual_full:3,
545 spare2:1;
546 uint8_t rxlev_nc1:6,
547 no_nc_n_lo:2;
548 uint8_t bsic_nc1_hi:3,
549 bcch_f_nc1:5;
550 uint8_t rxlev_nc2_hi:5,
551 bsic_nc1_lo:3;
552 uint8_t bsic_nc2_hi:2,
553 bcch_f_nc2:5,
554 rxlev_nc2_lo:1;
555 uint8_t rxlev_nc3_hi:4,
556 bsic_nc2_lo:4;
557 uint8_t bsic_nc3_hi:1,
558 bcch_f_nc3:5,
559 rxlev_nc3_lo:2;
560 uint8_t rxlev_nc4_hi:3,
561 bsic_nc3_lo:5;
562 uint8_t bcch_f_nc4:5,
563 rxlev_nc4_lo:3;
564 uint8_t rxlev_nc5_hi:2,
565 bsic_nc4:6;
566 uint8_t bcch_f_nc5_hi:4,
567 rxlev_nc5_lo:4;
568 uint8_t rxlev_nc6_hi:1,
569 bsic_nc5:6,
570 bcch_f_nc5_lo:1;
571 uint8_t bcch_f_nc6_hi:3,
572 rxlev_nc6_lo:5;
573 uint8_t bsic_nc6:6,
574 bcch_f_nc6_lo:2;
575#elif OSMO_IS_BIG_ENDIAN
576/* auto-generated from the little endian part above (libosmocore/contrib/struct_endianness.py) */
577 uint8_t ba_used:1, dtx_used:1, rxlev_full:6;
578 uint8_t spare:1, meas_valid:1, rxlev_sub:6;
579 uint8_t spare2:1, rxqual_full:3, rxqual_sub:3, no_nc_n_hi:1;
580 uint8_t no_nc_n_lo:2, rxlev_nc1:6;
581 uint8_t bcch_f_nc1:5, bsic_nc1_hi:3;
582 uint8_t bsic_nc1_lo:3, rxlev_nc2_hi:5;
583 uint8_t rxlev_nc2_lo:1, bcch_f_nc2:5, bsic_nc2_hi:2;
584 uint8_t bsic_nc2_lo:4, rxlev_nc3_hi:4;
585 uint8_t rxlev_nc3_lo:2, bcch_f_nc3:5, bsic_nc3_hi:1;
586 uint8_t bsic_nc3_lo:5, rxlev_nc4_hi:3;
587 uint8_t rxlev_nc4_lo:3, bcch_f_nc4:5;
588 uint8_t bsic_nc4:6, rxlev_nc5_hi:2;
589 uint8_t rxlev_nc5_lo:4, bcch_f_nc5_hi:4;
590 uint8_t bcch_f_nc5_lo:1, bsic_nc5:6, rxlev_nc6_hi:1;
591 uint8_t rxlev_nc6_lo:5, bcch_f_nc6_hi:3;
592 uint8_t bcch_f_nc6_lo:2, bsic_nc6:6;
593#endif
594} __attribute__ ((packed));
595
597static inline bool gsm48_meas_res_is_valid(const struct gsm48_meas_res *mr)
598{
599 return (mr->meas_valid == 0); /* 0 means valid */
600}
601
602/* Chapter 10.5.2.21aa */
604#if OSMO_IS_LITTLE_ENDIAN
605 uint8_t smod : 2,
606 spare: 1,
607 icmi : 1,
608 nscb : 1,
609 ver : 3;
610 uint8_t m4_75 : 1,
611 m5_15 : 1,
612 m5_90 : 1,
613 m6_70 : 1,
614 m7_40 : 1,
615 m7_95 : 1,
616 m10_2 : 1,
617 m12_2 : 1;
618#elif OSMO_IS_BIG_ENDIAN
619/* auto-generated from the little endian part above (libosmocore/contrib/struct_endianness.py) */
620 uint8_t ver:3, nscb:1, icmi:1, spare:1, smod:2;
621 uint8_t m12_2:1, m10_2:1, m7_95:1, m7_40:1, m6_70:1, m5_90:1, m5_15:1, m4_75:1;
622#endif
623} __attribute__((packed));
624
625/* Chapter 10.5.2.28(a) */
627#if OSMO_IS_LITTLE_ENDIAN
628 uint8_t power_level:5,
629 spare:2,
630 atc:1;
631#elif OSMO_IS_BIG_ENDIAN
632/* auto-generated from the little endian part above (libosmocore/contrib/struct_endianness.py) */
633 uint8_t atc:1, spare:2, power_level:5;
634#endif
635} __attribute__((packed));
636
637/* Chapter 10.5.2.29 */
639#if OSMO_IS_LITTLE_ENDIAN
640 uint8_t re :1,
641 cell_bar :1,
642 tx_integer :4,
643 max_trans :2;
644 uint8_t t2; /* ACC 8-15 barred flags */
645 uint8_t t3; /* ACC 0-7 barred flags */
646#elif OSMO_IS_BIG_ENDIAN
647/* auto-generated from the little endian part above (libosmocore/contrib/struct_endianness.py) */
648 uint8_t max_trans:2, tx_integer:4, cell_bar:1, re:1;
649 uint8_t t2;
650 uint8_t t3;
651#endif
652} __attribute__ ((packed));
653
654/*
655 * Mark an Access Control Class as barred.
656 * \param[in] rach_control A Rach Control Information Element.
657 * \param[in] acc Access Control Class number (0 - 15) which shall be barred.
658 */
659static inline void gsm48_barr_acc(struct gsm48_rach_control *rach_control, unsigned int acc)
660{
661 OSMO_ASSERT(acc <= 15);
662 if (acc >= 8)
663 rach_control->t2 |= (1 << (acc - 8));
664 else
665 rach_control->t3 |= (1 << (acc));
666}
667
668/*
669 * Mark an Access Control Class as allowed.
670 * \param[in] rach_control A Rach Control Information Element.
671 * \param[in] acc Access Control Class number (0 - 15) which shall be allowed.
672 */
673static inline void gsm48_allow_acc(struct gsm48_rach_control *rach_control, unsigned int acc)
674{
675 OSMO_ASSERT(acc <= 15);
676 if (acc >= 8)
677 rach_control->t2 &= ~(1 << (acc - 8));
678 else
679 rach_control->t3 &= ~(1 << (acc));
680}
681
682/*
683 * Indicate whether an Access Control Class is barred.
684 * \param[in] rach_control A Rach Control Information Element.
685 * \param[in] acc Access Control Class number (0 - 15).
686 * \returns true if the Access Control class is barred, false otherwise
687 */
688static inline bool gsm48_acc_is_barred(struct gsm48_rach_control *rach_control, unsigned int acc)
689{
690 OSMO_ASSERT(acc <= 15);
691 if (acc >= 8)
692 return (rach_control->t2 & (1 << (acc - 8))) != 0;
693 return (rach_control->t3 & (1 << (acc))) != 0;
694}
695
696/* Chapter 10.5.2.30 */
698#if OSMO_IS_LITTLE_ENDIAN
699 uint8_t ra;
700 uint8_t t3_high:3,
701 t1:5;
702 uint8_t t2:5,
703 t3_low:3;
704#elif OSMO_IS_BIG_ENDIAN
705/* auto-generated from the little endian part above (libosmocore/contrib/struct_endianness.py) */
706 uint8_t ra;
707 uint8_t t1:5, t3_high:3;
708 uint8_t t3_low:3, t2:5;
709#endif
710} __attribute__ ((packed));
711
712/* Chapter 10.5.2.38 */
714#if OSMO_IS_LITTLE_ENDIAN
715 uint8_t t3_high:3,
716 t1:5;
717 uint8_t t2:5,
718 t3_low:3;
719#elif OSMO_IS_BIG_ENDIAN
720/* auto-generated from the little endian part above (libosmocore/contrib/struct_endianness.py) */
721 uint8_t t1:5, t3_high:3;
722 uint8_t t3_low:3, t2:5;
723#endif
724} __attribute__ ((packed));
725
726/* Chapter 10.5.2.39 */
728#if OSMO_IS_LITTLE_ENDIAN
729 uint8_t si:2,
730 rot:1,
731 nci:1,
732 sync_ie:4;
733#elif OSMO_IS_BIG_ENDIAN
734/* auto-generated from the little endian part above (libosmocore/contrib/struct_endianness.py) */
735 uint8_t sync_ie:4, nci:1, rot:1, si:2;
736#endif
737} __attribute__((packed));
738
739/*
740 * Chapter 9.1.5/9.1.6
741 *
742 * For 9.1.6 the chan_desc has the meaning of 10.5.2.5a
743 */
746 uint8_t mode;
747} __attribute__ ((packed));
748
765
766 /* ECSD: 43.5 kbit/s (DL) + 14.5 kbit/s (UL) */
768 /* ECSD: 29.0 kbit/s (DL) + 14.5 kbit/s (UL) */
770 /* ECSD: 43.5 kbit/s (DL) + 29.0 kbit/s (UL) */
772 /* ECSD: 14.5 kbit/s (DL) + 43.5 kbit/s (UL) */
774 /* ECSD: 14.5 kbit/s (DL) + 29.0 kbit/s (UL) */
776 /* ECSD: 29.0 kbit/s (DL) + 43.5 kbit/s (UL) */
778
793
802};
803
804extern const struct value_string gsm48_chan_mode_names[];
805static inline const char *gsm48_chan_mode_name(enum gsm48_chan_mode val)
807
808/* Chapter 9.1.2 */
810 /* Semantic is from 10.5.2.5a */
813 uint8_t data[0];
814} __attribute__((packed));
815
816/* Chapter 9.1.13 */
818 /* Semantic is from 10.5.2.5a */
821 uint8_t mob_alloc[0];
822} __attribute__((packed));
823
824/* Chapter 9.1.13b GPRS suspension request */
826 uint32_t tlli;
827 uint8_t ra_id[6];
828 uint8_t cause;
829 uint8_t options[0];
830} __attribute__ ((packed));
831
832/* Chapter 10.5.2.2 */
834#if OSMO_IS_LITTLE_ENDIAN
835 uint8_t bcc:3,
836 ncc:3,
837 arfcn_hi:2;
838 uint8_t arfcn_lo;
839#elif OSMO_IS_BIG_ENDIAN
840/* auto-generated from the little endian part above (libosmocore/contrib/struct_endianness.py) */
841 uint8_t arfcn_hi:2, ncc:3, bcc:3;
842 uint8_t arfcn_lo;
843#endif
844} __attribute__((packed));
845
846/* Chapter 9.1.15 */
850 uint8_t ho_ref;
852 uint8_t data[0];
853} __attribute__((packed));
854
855/* Chapter 9.1.18 */
857 uint8_t l2_plen;
858 uint8_t proto_discr;
859 uint8_t msg_type;
860 uint8_t page_mode;
865 uint8_t mob_alloc[0];
866} __attribute__ ((packed));
867
868/* Chapter 9.1.25 */
870#if OSMO_IS_LITTLE_ENDIAN
871 uint8_t spare:4,
872 key_seq:4;
873 union {
874 uint32_t classmark2; /* Backward compatibility */
875 struct {
876 uint8_t cm2_len;
877 struct gsm48_classmark2 cm2;
878 };
879 };
880 uint8_t mi_len;
881 uint8_t mi[0];
882#elif OSMO_IS_BIG_ENDIAN
883/* auto-generated from the little endian part above (libosmocore/contrib/struct_endianness.py) */
884 uint8_t key_seq:4, spare:4;
885 union {
886 uint32_t classmark2;
887 struct {
888 uint8_t cm2_len;
889 struct gsm48_classmark2 cm2;
890 };
891 };
892 uint8_t mi_len;
893 uint8_t mi[0];
894#endif
895} __attribute__ ((packed));
896
897/* Chapter 10.5.1.3 */
899 uint8_t digits[3]; /* BCD! */
900 uint16_t lac;
901} __attribute__ ((packed));
902
903/* Section 9.2.2 */
905#if OSMO_IS_LITTLE_ENDIAN
906 uint8_t key_seq:4,
907 spare:4;
908 uint8_t rand[16];
909#elif OSMO_IS_BIG_ENDIAN
910/* auto-generated from the little endian part above (libosmocore/contrib/struct_endianness.py) */
911 uint8_t spare:4, key_seq:4;
912 uint8_t rand[16];
913#endif
914} __attribute__ ((packed));
915
916/* Section 9.2.3 */
918 uint8_t sres[4];
919} __attribute__ ((packed));
920
921/* Section 9.2.15 */
923#if OSMO_IS_LITTLE_ENDIAN
924 uint8_t type:4,
925 key_seq:4;
926 struct gsm48_loc_area_id lai;
928 uint8_t mi_len;
929 uint8_t mi[0];
930#elif OSMO_IS_BIG_ENDIAN
931/* auto-generated from the little endian part above (libosmocore/contrib/struct_endianness.py) */
932 uint8_t key_seq:4, type:4;
933 struct gsm48_loc_area_id lai;
935 uint8_t mi_len;
936 uint8_t mi[0];
937#endif
938} __attribute__ ((packed));
939
940/* Section 10.1 */
941struct gsm48_hdr {
942 uint8_t proto_discr;
943 uint8_t msg_type;
944 uint8_t data[0];
945} __attribute__ ((packed));
946
947/* Short header */
949#if OSMO_IS_LITTLE_ENDIAN
950 uint8_t l2_header:2, /* < short layer 2 header : bit(2) > See 3GPP TS 44.006 §6.4a */
951 msg_type:5, /* < message type : bit(5) > See 3GPP TS 44.018 Table 10.4.2 */
952 rr_short_pd:1; /* < RR short PD : bit > See 3GPP TS 24.007 §11.3.2 */
953 uint8_t data[0];
954#elif OSMO_IS_BIG_ENDIAN
955/* auto-generated from the little endian part above (libosmocore/contrib/struct_endianness.py) */
956 uint8_t rr_short_pd:1, msg_type:5, l2_header:2;
957 uint8_t data[0];
958#endif
959} __attribute__ ((packed));
960
961/* Section 9.1.3x System information Type header */
963#if OSMO_IS_LITTLE_ENDIAN
964 uint8_t l2_plen;
965 uint8_t rr_protocol_discriminator :4,
966 skip_indicator:4;
967 uint8_t system_information;
968#elif OSMO_IS_BIG_ENDIAN
969/* auto-generated from the little endian part above (libosmocore/contrib/struct_endianness.py) */
970 uint8_t l2_plen;
971 uint8_t skip_indicator:4, rr_protocol_discriminator:4;
972 uint8_t system_information;
973#endif
974} __attribute__ ((packed));
975
976/* Section 10.5.2.4 Cell Selection Parameters */
978#if OSMO_IS_LITTLE_ENDIAN
979 uint8_t ms_txpwr_max_ccch:5, /* GSM 05.08 MS-TXPWR-MAX-CCCH */
980 cell_resel_hyst:3; /* GSM 05.08 CELL-RESELECT-HYSTERESIS */
981 uint8_t rxlev_acc_min:6, /* GSM 05.08 RXLEV-ACCESS-MIN */
982 neci:1,
983 acs:1;
984#elif OSMO_IS_BIG_ENDIAN
985/* auto-generated from the little endian part above (libosmocore/contrib/struct_endianness.py) */
986 uint8_t cell_resel_hyst:3, ms_txpwr_max_ccch:5;
987 uint8_t acs:1, neci:1, rxlev_acc_min:6;
988#endif
989} __attribute__ ((packed));
990
991/* 3GPP TS 44.018 Section 10.5.2.11 Control Channel Description */
993#if OSMO_IS_LITTLE_ENDIAN
994 uint8_t ccch_conf :3,
995 bs_ag_blks_res :3,
996 att :1,
997 mscr :1;
998 uint8_t bs_pa_mfrms : 3,
999 spare_1 :2,
1000 cbq3 :2,
1001 spare_2 :1;
1002 uint8_t t3212;
1003#elif OSMO_IS_BIG_ENDIAN
1004/* auto-generated from the little endian part above (libosmocore/contrib/struct_endianness.py) */
1005 uint8_t mscr:1, att:1, bs_ag_blks_res:3, ccch_conf:3;
1006 uint8_t spare_2:1, cbq3:2, spare_1:2, bs_pa_mfrms:3;
1007 uint8_t t3212;
1008#endif
1009} __attribute__ ((packed));
1010
1016
1017/* Cell Options for SI6, SACCH (10.5.2.3a.2) or SI3, BCCH (Table 10.5.2.3.1),
1018 3GPP TS 44.018 */
1020#if OSMO_IS_LITTLE_ENDIAN
1021 uint8_t radio_link_timeout:4,
1022 dtx:2,
1023 pwrc:1,
1024 /* either DN-IND or top bit of DTX IND */
1025 d:1;
1026#elif OSMO_IS_BIG_ENDIAN
1027/* auto-generated from the little endian part above (libosmocore/contrib/struct_endianness.py) */
1028 uint8_t d:1, pwrc:1, dtx:2, radio_link_timeout:4;
1029#endif
1030} __attribute__ ((packed));
1031
1032/* Section 9.2.9 CM service request */
1034#if OSMO_IS_LITTLE_ENDIAN
1035 uint8_t cm_service_type : 4,
1036 cipher_key_seq : 4;
1037 union {
1038 uint32_t classmark; /* Backward compatibility */
1039 struct {
1040 uint8_t cm2_len;
1041 struct gsm48_classmark2 classmark2;
1042 };
1043 };
1044 uint8_t mi_len;
1045 uint8_t mi[0];
1046 /* optional priority level */
1047#elif OSMO_IS_BIG_ENDIAN
1048/* auto-generated from the little endian part above (libosmocore/contrib/struct_endianness.py) */
1049 uint8_t cipher_key_seq:4, cm_service_type:4;
1050 union {
1051 uint32_t classmark;
1052 struct {
1053 uint8_t cm2_len;
1054 struct gsm48_classmark2 classmark2;
1055 };
1056 };
1057 uint8_t mi_len;
1058 uint8_t mi[0];
1059#endif
1060} __attribute__ ((packed));
1061
1062/* Section 9.1.31 System information Type 1 */
1067 uint8_t rest_octets[0]; /* NCH position on the CCCH */
1068} __attribute__ ((packed));
1069
1070/* Section 9.1.32 System information Type 2 */
1076} __attribute__ ((packed));
1077
1078/* Section 9.1.33 System information Type 2bis */
1083 uint8_t rest_octets[0];
1084} __attribute__ ((packed));
1085
1086/* Section 9.1.34 System information Type 2ter */
1090 uint8_t rest_octets[0];
1091} __attribute__ ((packed));
1092
1093/* Section 9.1.34a System information Type 2quater */
1096 uint8_t rest_octets[0];
1097} __attribute__ ((packed));
1098
1099/* Section 9.1.35 System information Type 3 */
1108 uint8_t rest_octets[0];
1109} __attribute__ ((packed));
1110
1111/* Section 9.1.36 System information Type 4 */
1117 /* optional CBCH conditional CBCH... followed by
1118 mandantory SI 4 Reset Octets
1119 */
1120 uint8_t data[0];
1121} __attribute__ ((packed));
1122
1123/* Section 9.1.37 System information Type 5 */
1125#if OSMO_IS_LITTLE_ENDIAN
1126 uint8_t rr_protocol_discriminator :4,
1127 skip_indicator:4;
1128 uint8_t system_information;
1129 uint8_t bcch_frequency_list[16];
1130#elif OSMO_IS_BIG_ENDIAN
1131/* auto-generated from the little endian part above (libosmocore/contrib/struct_endianness.py) */
1132 uint8_t skip_indicator:4, rr_protocol_discriminator:4;
1133 uint8_t system_information;
1134 uint8_t bcch_frequency_list[16];
1135#endif
1136} __attribute__ ((packed));
1137
1138/* Section 9.1.38 System information Type 5bis */
1140#if OSMO_IS_LITTLE_ENDIAN
1141 uint8_t rr_protocol_discriminator :4,
1142 skip_indicator:4;
1143 uint8_t system_information;
1144 uint8_t bcch_frequency_list[16];
1145#elif OSMO_IS_BIG_ENDIAN
1146/* auto-generated from the little endian part above (libosmocore/contrib/struct_endianness.py) */
1147 uint8_t skip_indicator:4, rr_protocol_discriminator:4;
1148 uint8_t system_information;
1149 uint8_t bcch_frequency_list[16];
1150#endif
1151} __attribute__ ((packed));
1152
1153/* Section 9.1.39 System information Type 5ter */
1155#if OSMO_IS_LITTLE_ENDIAN
1156 uint8_t rr_protocol_discriminator :4,
1157 skip_indicator:4;
1158 uint8_t system_information;
1159 uint8_t bcch_frequency_list[16];
1160#elif OSMO_IS_BIG_ENDIAN
1161/* auto-generated from the little endian part above (libosmocore/contrib/struct_endianness.py) */
1162 uint8_t skip_indicator:4, rr_protocol_discriminator:4;
1163 uint8_t system_information;
1164 uint8_t bcch_frequency_list[16];
1165#endif
1166} __attribute__ ((packed));
1167
1168/* Section 9.1.40 System information Type 6 */
1170#if OSMO_IS_LITTLE_ENDIAN
1171 uint8_t rr_protocol_discriminator :4,
1172 skip_indicator:4;
1173 uint8_t system_information;
1174 uint16_t cell_identity;
1175 struct gsm48_loc_area_id lai;
1177 uint8_t ncc_permitted;
1178 uint8_t rest_octets[0];
1179#elif OSMO_IS_BIG_ENDIAN
1180/* auto-generated from the little endian part above (libosmocore/contrib/struct_endianness.py) */
1181 uint8_t skip_indicator:4, rr_protocol_discriminator:4;
1182 uint8_t system_information;
1183 uint16_t cell_identity;
1184 struct gsm48_loc_area_id lai;
1186 uint8_t ncc_permitted;
1187 uint8_t rest_octets[0];
1188#endif
1189} __attribute__ ((packed));
1190
1191/* Section 9.1.50 System Information type 10 (ASCI) */
1193#if OSMO_IS_LITTLE_ENDIAN
1194 uint8_t l2_header:2, /* < short layer 2 header : bit(2) > See 3GPP TS 44.006 §6.4a */
1195 msg_type:5, /* < message type : bit(5) > See 3GPP TS 44.018 Table 10.4.2 */
1196 rr_short_pd:1; /* < RR short PD : bit > See 3GPP TS 24.007 §11.3.2 */
1197 uint8_t rest_octets[0]; /* < SI10 Rest Octets : bit(160) > See 3GPP TS 44.018 §10.5.2.44 */
1198#elif OSMO_IS_BIG_ENDIAN
1199/* auto-generated from the little endian part above (libosmocore/contrib/struct_endianness.py) */
1200 uint8_t rr_short_pd:1, msg_type:5, l2_header:2;
1201 uint8_t rest_octets[0];
1202#endif
1203} __attribute__ ((packed));
1204
1205/* TS 44.018 Section 9.1.49 */
1209 uint8_t ta;
1210} __attribute__ ((packed));
1211
1212/* Section 9.1.43a System Information type 13 */
1215 uint8_t rest_octets[0];
1216} __attribute__ ((packed));
1217
1218/* Section 9.2.12 IMSI Detach Indication */
1221 uint8_t mi_len;
1222 uint8_t mi[0];
1223} __attribute__ ((packed));
1224
1225/* Section 9.1.1 */
1227 /* Semantic is from 10.5.2.5 */
1229 uint8_t data[0];
1230} __attribute__((packed));
1231
1232/* Section 9.1.3 */
1234 uint8_t rr_cause;
1235} __attribute__((packed));
1236
1237/* Section 9.1.4 */
1239 uint8_t rr_cause;
1240} __attribute__((packed));
1241
1242/* Section 9.1.3 */
1244 uint8_t rr_cause;
1245 uint8_t data[0];
1246} __attribute__((packed));
1247
1248/* Section 9.1.4 */
1250 uint8_t rr_cause;
1251} __attribute__((packed));
1252
1253/* Section 9.1.7 */
1255 uint8_t rr_cause;
1256 uint8_t data[0];
1257} __attribute__((packed));
1258
1259/* Section 9.1.9 */
1261#if OSMO_IS_LITTLE_ENDIAN
1262 uint8_t sc:1,
1263 alg_id:3,
1264 cr:1,
1265 spare:3;
1266#elif OSMO_IS_BIG_ENDIAN
1267/* auto-generated from the little endian part above (libosmocore/contrib/struct_endianness.py) */
1268 uint8_t spare:3, cr:1, alg_id:3, sc:1;
1269#endif
1270} __attribute__((packed));
1271
1272/* Section 9.1.11 */
1274 uint8_t cm2_len;
1276 uint8_t data[0];
1277} __attribute__((packed));
1278
1279/* Section 9.1.19 */
1281 uint8_t l2_plen;
1283 uint8_t msg_type;
1284 uint8_t page_mode;
1292 uint8_t mob_alloc[0];
1293} __attribute__ ((packed));
1294
1295/* Section 9.1.20 */
1297 uint8_t l2_plen;
1299 uint8_t msg_type;
1300 uint8_t page_mode;
1302 uint8_t wait_ind1;
1304 uint8_t wait_ind2;
1306 uint8_t wait_ind3;
1308 uint8_t wait_ind4;
1309 uint8_t rest[0];
1310} __attribute__ ((packed));
1311
1312/* Section 9.1.21b */
1314 uint8_t l2_plen;
1316 uint8_t msg_type;
1317 uint8_t data[0];
1318} __attribute__((packed));
1319
1320/* Section 9.1.22 */
1322#if OSMO_IS_LITTLE_ENDIAN
1323 uint8_t l2_plen;
1324 uint8_t proto_discr;
1325 uint8_t msg_type;
1326 uint8_t pag_mode:2,
1327 spare:2,
1328 cneed1:2,
1329 cneed2:2;
1330 uint8_t data[0];
1331#elif OSMO_IS_BIG_ENDIAN
1332/* auto-generated from the little endian part above (libosmocore/contrib/struct_endianness.py) */
1333 uint8_t l2_plen;
1334 uint8_t proto_discr;
1335 uint8_t msg_type;
1336 uint8_t cneed2:2, cneed1:2, spare:2, pag_mode:2;
1337 uint8_t data[0];
1338#endif
1339} __attribute__((packed));
1340
1341/* Section 9.1.23 */
1343#if OSMO_IS_LITTLE_ENDIAN
1344 uint8_t l2_plen;
1345 uint8_t proto_discr;
1346 uint8_t msg_type;
1347 uint8_t pag_mode:2,
1348 spare:2,
1349 cneed1:2,
1350 cneed2:2;
1351 uint32_t tmsi1;
1352 uint32_t tmsi2;
1353 uint8_t data[0];
1354#elif OSMO_IS_BIG_ENDIAN
1355/* auto-generated from the little endian part above (libosmocore/contrib/struct_endianness.py) */
1356 uint8_t l2_plen;
1357 uint8_t proto_discr;
1358 uint8_t msg_type;
1359 uint8_t cneed2:2, cneed1:2, spare:2, pag_mode:2;
1360 uint32_t tmsi1;
1361 uint32_t tmsi2;
1362 uint8_t data[0];
1363#endif
1364} __attribute__((packed));
1365
1366/* Section 9.1.24 */
1368#if OSMO_IS_LITTLE_ENDIAN
1369 uint8_t l2_plen;
1370 uint8_t proto_discr;
1371 uint8_t msg_type;
1372 uint8_t pag_mode:2,
1373 spare:2,
1374 cneed1:2,
1375 cneed2:2;
1376 uint32_t tmsi1;
1377 uint32_t tmsi2;
1378 uint32_t tmsi3;
1379 uint32_t tmsi4;
1380 uint8_t cneed3:2,
1381 cneed4:2,
1382 spare2:4;
1383 uint8_t rest[0];
1384#elif OSMO_IS_BIG_ENDIAN
1385/* auto-generated from the little endian part above (libosmocore/contrib/struct_endianness.py) */
1386 uint8_t l2_plen;
1387 uint8_t proto_discr;
1388 uint8_t msg_type;
1389 uint8_t cneed2:2, cneed1:2, spare:2, pag_mode:2;
1390 uint32_t tmsi1;
1391 uint32_t tmsi2;
1392 uint32_t tmsi3;
1393 uint32_t tmsi4;
1394 uint8_t spare2:4, cneed4:2, cneed3:2;
1395 uint8_t rest[0];
1396#endif
1397} __attribute__((packed));
1398
1399/* Section 9.1.25 */
1401#if OSMO_IS_LITTLE_ENDIAN
1402 uint8_t key_seq:3,
1403 spare:5;
1404 uint8_t cm2_len;
1405 struct gsm48_classmark2 cm2;
1406 uint8_t data[0];
1407#elif OSMO_IS_BIG_ENDIAN
1408/* auto-generated from the little endian part above (libosmocore/contrib/struct_endianness.py) */
1409 uint8_t spare:5, key_seq:3;
1410 uint8_t cm2_len;
1411 struct gsm48_classmark2 cm2;
1412 uint8_t data[0];
1413#endif
1414} __attribute__((packed));
1415
1416/* Section 9.1.29 */
1418 uint8_t rr_cause;
1419} __attribute__((packed));
1420
1421/* Section 9.1.44 */
1423 uint8_t cm2_len;
1425 uint8_t data[0];
1426} __attribute__((packed));
1427
1428/* Section 9.1.48 */
1430 uint8_t rr_cause;
1431} __attribute__((packed));
1432
1433/* Section 10.2 + GSM 04.07 12.2.3.1.1 + 3GPP TS 24.007 11.2.3.1.1 */
1434#define GSM48_PDISC_GROUP_CC 0x00
1435#define GSM48_PDISC_BCAST_CC 0x01
1436#define GSM48_PDISC_PDSS1 0x02 /* 04.07 only */
1437#define GSM48_PDISC_CC 0x03
1438#define GSM48_PDISC_PDSS2 0x04 /* 04.07 only */
1439#define GSM48_PDISC_GTTP 0x04 /* 24.007 only */
1440#define GSM48_PDISC_MM 0x05
1441#define GSM48_PDISC_RR 0x06
1442#define GSM48_PDISC_MM_GPRS 0x08
1443#define GSM48_PDISC_SMS 0x09
1444#define GSM48_PDISC_SM_GPRS 0x0a
1445#define GSM48_PDISC_NC_SS 0x0b
1446#define GSM48_PDISC_LOC 0x0c
1447#define GSM48_PDISC_EXTEND 0x0e
1448#define GSM48_PDISC_TEST 0x0f /* as per 11.10, 04.14 */
1449#define GSM48_PDISC_MASK 0x0f
1450
1451/* Section 11.3.2.1 3GPP TS 24.007: Short PDISC */
1452#define GSM48_PDISC_SH_RR 0
1453
1454extern const struct value_string gsm48_pdisc_names[];
1455static inline const char *gsm48_pdisc_name(uint8_t val)
1456{ return get_value_string(gsm48_pdisc_names, val); }
1457
1458bool gsm48_hdr_gmm_cipherable(const struct gsm48_hdr *hdr);
1459
1460static inline uint8_t gsm48_hdr_pdisc(const struct gsm48_hdr *hdr)
1461{
1462 /*
1463 * 3GPP TS 24.007 version 12.0.0 Release 12,
1464 * 11.2.3.1.1 Protocol discriminator
1465 */
1466 uint8_t pdisc = hdr->proto_discr & GSM48_PDISC_MASK;
1467 if (pdisc == GSM48_PDISC_EXTEND)
1468 return hdr->proto_discr;
1469 return pdisc;
1470}
1471
1472static inline uint8_t gsm48_hdr_trans_id(const struct gsm48_hdr *hdr)
1473{
1474 /*
1475 * 3GPP TS 24.007 version 12.0.0 Release 12,
1476 * 11.2.3.1.3 Transaction identifier
1477 */
1478 return (hdr->proto_discr & 0xf0) >> 4;
1479}
1480
1481#define GSM48_TA_INVALID 220
1482
1488static inline bool gsm48_ta_is_valid(uint8_t ta)
1489{
1490 return (ta < 64);
1491}
1492
1493static inline uint8_t gsm48_hdr_trans_id_flip_ti(const struct gsm48_hdr *hdr)
1494{
1495 return gsm48_hdr_trans_id(hdr) ^ 0x08;
1496}
1497
1498static inline uint8_t gsm48_hdr_trans_id_no_ti(const struct gsm48_hdr *hdr)
1499{
1500 return gsm48_hdr_trans_id(hdr) & 0x07;
1501}
1502
1503static inline uint8_t gsm48_hdr_msg_type_r98(const struct gsm48_hdr *hdr)
1504{
1505 /*
1506 * 3GPP TS 24.007 version 12.0.0 Release 12,
1507 * 11.2.3.2.1 Message type octet (when accessing Release 98 and older
1508 * networks only)
1509 */
1510 switch (gsm48_hdr_pdisc(hdr)) {
1511 case GSM48_PDISC_MM:
1512 case GSM48_PDISC_CC:
1513 case GSM48_PDISC_NC_SS:
1516 case GSM48_PDISC_LOC:
1517 return hdr->msg_type & 0x3f;
1518 default:
1519 return hdr->msg_type;
1520 }
1521}
1522
1523static inline uint8_t gsm48_hdr_msg_type_r99(const struct gsm48_hdr *hdr)
1524{
1525 /*
1526 * 3GPP TS 24.007 version 12.0.0 Release 12,
1527 * 11.2.3.2.2 Message type octet (when accessing Release 99 and newer
1528 * networks)
1529 */
1530 switch (gsm48_hdr_pdisc(hdr)) {
1531 case GSM48_PDISC_MM:
1532 case GSM48_PDISC_CC:
1533 case GSM48_PDISC_NC_SS:
1534 return hdr->msg_type & 0x3f;
1537 case GSM48_PDISC_LOC:
1538 return hdr->msg_type & 0x3f;
1539 default:
1540 return hdr->msg_type;
1541 }
1542}
1543
1544void gsm48_set_dtx(struct gsm48_cell_options *op, enum gsm48_dtx_mode full,
1545 enum gsm48_dtx_mode half, bool is_bcch);
1546
1547#define gsm48_hdr_msg_type gsm48_hdr_msg_type_r99
1548
1549/* Section 10.4 */
1550#define GSM48_MT_RR_INIT_REQ 0x3c
1551#define GSM48_MT_RR_ADD_ASS 0x3b
1552#define GSM48_MT_RR_IMM_ASS 0x3f
1553#define GSM48_MT_RR_IMM_ASS_EXT 0x39
1554#define GSM48_MT_RR_IMM_ASS_REJ 0x3a
1555#define GSM48_MT_RR_DTM_ASS_FAIL 0x48
1556#define GSM48_MT_RR_DTM_REJECT 0x49
1557#define GSM48_MT_RR_DTM_REQUEST 0x4A
1558#define GSM48_MT_RR_PACKET_ASS 0x4B
1559
1560#define GSM48_MT_RR_CIPH_M_CMD 0x35
1561#define GSM48_MT_RR_CIPH_M_COMPL 0x32
1562
1563#define GSM48_MT_RR_CFG_CHG_CMD 0x30
1564#define GSM48_MT_RR_CFG_CHG_ACK 0x31
1565#define GSM48_MT_RR_CFG_CHG_REJ 0x33
1566
1567#define GSM48_MT_RR_ASS_CMD 0x2e
1568#define GSM48_MT_RR_ASS_COMPL 0x29
1569#define GSM48_MT_RR_ASS_FAIL 0x2f
1570#define GSM48_MT_RR_HANDO_CMD 0x2b
1571#define GSM48_MT_RR_HANDO_COMPL 0x2c
1572#define GSM48_MT_RR_HANDO_FAIL 0x28
1573#define GSM48_MT_RR_HANDO_INFO 0x2d
1574#define GSM48_MT_RR_HANDO_INFO 0x2d
1575#define GSM48_MT_RR_DTM_ASS_CMD 0x4c
1576
1577#define GSM48_MT_RR_CELL_CHG_ORDER 0x08
1578#define GSM48_MT_RR_PDCH_ASS_CMD 0x23
1579
1580#define GSM48_MT_RR_CHAN_REL 0x0d
1581#define GSM48_MT_RR_PART_REL 0x0a
1582#define GSM48_MT_RR_PART_REL_COMP 0x0f
1583
1584#define GSM48_MT_RR_PAG_REQ_1 0x21
1585#define GSM48_MT_RR_PAG_REQ_2 0x22
1586#define GSM48_MT_RR_PAG_REQ_3 0x24
1587#define GSM48_MT_RR_PAG_RESP 0x27
1588#define GSM48_MT_RR_NOTIF_NCH 0x20
1589#define GSM48_MT_RR_NOTIF_FACCH 0x25 /* (Reserved) */
1590#define GSM48_MT_RR_NOTIF_RESP 0x26
1591#define GSM48_MT_RR_PACKET_NOTIF 0x4e
1592#define GSM48_MT_RR_UTRAN_CLSM_CHG 0x60
1593#define GSM48_MT_RR_CDMA2K_CLSM_CHG 0x62
1594#define GSM48_MT_RR_IS_TO_UTRAN_HANDO 0x63
1595#define GSM48_MT_RR_IS_TO_CDMA2K_HANDO 0x64
1596
1597#define GSM48_MT_RR_SYSINFO_8 0x18
1598#define GSM48_MT_RR_SYSINFO_1 0x19
1599#define GSM48_MT_RR_SYSINFO_2 0x1a
1600#define GSM48_MT_RR_SYSINFO_3 0x1b
1601#define GSM48_MT_RR_SYSINFO_4 0x1c
1602#define GSM48_MT_RR_SYSINFO_5 0x1d
1603#define GSM48_MT_RR_SYSINFO_6 0x1e
1604#define GSM48_MT_RR_SYSINFO_7 0x1f
1605
1606#define GSM48_MT_RR_SYSINFO_2bis 0x02
1607#define GSM48_MT_RR_SYSINFO_2ter 0x03
1608#define GSM48_MT_RR_SYSINFO_2quater 0x07
1609#define GSM48_MT_RR_SYSINFO_5bis 0x05
1610#define GSM48_MT_RR_SYSINFO_5ter 0x06
1611#define GSM48_MT_RR_SYSINFO_9 0x04
1612#define GSM48_MT_RR_SYSINFO_13 0x00
1613
1614#define GSM48_MT_RR_SYSINFO_16 0x3d
1615#define GSM48_MT_RR_SYSINFO_17 0x3e
1616
1617#define GSM48_MT_RR_SYSINFO_18 0x40
1618#define GSM48_MT_RR_SYSINFO_19 0x41
1619#define GSM48_MT_RR_SYSINFO_20 0x42
1620
1621#define GSM48_MT_RR_CHAN_MODE_MODIF 0x10
1622#define GSM48_MT_RR_STATUS 0x12
1623#define GSM48_MT_RR_CHAN_MODE_MODIF_ACK 0x17
1624#define GSM48_MT_RR_FREQ_REDEF 0x14
1625#define GSM48_MT_RR_MEAS_REP 0x15
1626#define GSM48_MT_RR_CLSM_CHG 0x16
1627#define GSM48_MT_RR_CLSM_ENQ 0x13
1628#define GSM48_MT_RR_EXT_MEAS_REP 0x36
1629#define GSM48_MT_RR_EXT_MEAS_REP_ORD 0x37
1630#define GSM48_MT_RR_GPRS_SUSP_REQ 0x34
1631#define GSM48_MT_RR_DTM_INFO 0x4d
1632
1633#define GSM48_MT_RR_VGCS_UPL_GRANT 0x09
1634#define GSM48_MT_RR_UPLINK_RELEASE 0x0e
1635#define GSM48_MT_RR_UPLINK_FREE 0x0c
1636#define GSM48_MT_RR_UPLINK_BUSY 0x2a
1637#define GSM48_MT_RR_TALKER_IND 0x11
1638
1639#define GSM48_MT_RR_APP_INFO 0x38
1640
1641/* 3GPP TS 44.018 Table 10.4.2 */
1642#define GSM48_MT_RR_SH_SI10 0x0
1643#define GSM48_MT_RR_SH_FACCH 0x1
1644#define GSM48_MT_RR_SH_UL_FREE 0x2
1645#define GSM48_MT_RR_SH_MEAS_REP 0x4
1646#define GSM48_MT_RR_SH_MEAS_INFO 0x5
1647#define GSM48_MT_RR_SH_VGCS_RECON 0x6
1648#define GSM48_MT_RR_SH_VGCS_RECON2 0x7
1649#define GSM48_MT_RR_SH_VGCS_INFO 0x8
1650#define GSM48_MT_RR_SH_VGCS_SMS 0x9
1651#define GSM48_MT_RR_SH_SI10bis 0xA
1652#define GSM48_MT_RR_SH_SI10ter 0xB
1653#define GSM48_MT_RR_SH_VGCS_NEIGH 0xC
1654#define GSM48_MT_RR_SH_APP_DATA 0xD
1655
1656/* Table 10.2/3GPP TS 04.08 */
1657#define GSM48_MT_MM_IMSI_DETACH_IND 0x01
1658#define GSM48_MT_MM_LOC_UPD_ACCEPT 0x02
1659#define GSM48_MT_MM_LOC_UPD_REJECT 0x04
1660#define GSM48_MT_MM_LOC_UPD_REQUEST 0x08
1661
1662#define GSM48_MT_MM_AUTH_REJ 0x11
1663#define GSM48_MT_MM_AUTH_REQ 0x12
1664#define GSM48_MT_MM_AUTH_RESP 0x14
1665#define GSM48_MT_MM_AUTH_FAIL 0x1c
1666#define GSM48_MT_MM_ID_REQ 0x18
1667#define GSM48_MT_MM_ID_RESP 0x19
1668#define GSM48_MT_MM_TMSI_REALL_CMD 0x1a
1669#define GSM48_MT_MM_TMSI_REALL_COMPL 0x1b
1670
1671#define GSM48_MT_MM_CM_SERV_ACC 0x21
1672#define GSM48_MT_MM_CM_SERV_REJ 0x22
1673#define GSM48_MT_MM_CM_SERV_ABORT 0x23
1674#define GSM48_MT_MM_CM_SERV_REQ 0x24
1675#define GSM48_MT_MM_CM_SERV_PROMPT 0x25
1676#define GSM48_MT_MM_CM_REEST_REQ 0x28
1677#define GSM48_MT_MM_ABORT 0x29
1678
1679#define GSM48_MT_MM_NULL 0x30
1680#define GSM48_MT_MM_STATUS 0x31
1681#define GSM48_MT_MM_INFO 0x32
1682
1683/* Table 10.3/3GPP TS 04.08 */
1684#define GSM48_MT_CC_ALERTING 0x01
1685#define GSM48_MT_CC_CALL_CONF 0x08
1686#define GSM48_MT_CC_CALL_PROC 0x02
1687#define GSM48_MT_CC_CONNECT 0x07
1688#define GSM48_MT_CC_CONNECT_ACK 0x0f
1689#define GSM48_MT_CC_EMERG_SETUP 0x0e
1690#define GSM48_MT_CC_PROGRESS 0x03
1691#define GSM48_MT_CC_ESTAB 0x04
1692#define GSM48_MT_CC_ESTAB_CONF 0x06
1693#define GSM48_MT_CC_RECALL 0x0b
1694#define GSM48_MT_CC_START_CC 0x09
1695#define GSM48_MT_CC_SETUP 0x05
1696
1697#define GSM48_MT_CC_MODIFY 0x17
1698#define GSM48_MT_CC_MODIFY_COMPL 0x1f
1699#define GSM48_MT_CC_MODIFY_REJECT 0x13
1700#define GSM48_MT_CC_USER_INFO 0x10
1701#define GSM48_MT_CC_HOLD 0x18
1702#define GSM48_MT_CC_HOLD_ACK 0x19
1703#define GSM48_MT_CC_HOLD_REJ 0x1a
1704#define GSM48_MT_CC_RETR 0x1c
1705#define GSM48_MT_CC_RETR_ACK 0x1d
1706#define GSM48_MT_CC_RETR_REJ 0x1e
1707
1708#define GSM48_MT_CC_DISCONNECT 0x25
1709#define GSM48_MT_CC_RELEASE 0x2d
1710#define GSM48_MT_CC_RELEASE_COMPL 0x2a
1711
1712#define GSM48_MT_CC_CONG_CTRL 0x39
1713#define GSM48_MT_CC_NOTIFY 0x3e
1714#define GSM48_MT_CC_STATUS 0x3d
1715#define GSM48_MT_CC_STATUS_ENQ 0x34
1716#define GSM48_MT_CC_START_DTMF 0x35
1717#define GSM48_MT_CC_STOP_DTMF 0x31
1718#define GSM48_MT_CC_STOP_DTMF_ACK 0x32
1719#define GSM48_MT_CC_START_DTMF_ACK 0x36
1720#define GSM48_MT_CC_START_DTMF_REJ 0x37
1721#define GSM48_MT_CC_FACILITY 0x3a
1722
1723extern const struct value_string gsm48_rr_msgtype_names[];
1724extern const struct value_string gsm48_mm_msgtype_names[];
1725extern const struct value_string gsm48_cc_msgtype_names[];
1726const char *gsm48_pdisc_msgtype_name(uint8_t pdisc, uint8_t msg_type);
1727char *gsm48_pdisc_msgtype_name_buf(char *buf, size_t buf_len, uint8_t pdisc, uint8_t msg_type);
1728char *gsm48_pdisc_msgtype_name_c(const void *ctx, uint8_t pdisc, uint8_t msg_type);
1729
1730/* FIXME: Table 10.4 / 10.4a (GPRS) */
1731
1732/* Section 10.5.3.3 CM service type */
1743
1744extern const struct value_string osmo_cm_service_type_names[];
1745static inline const char *osmo_cm_service_type_name(enum osmo_cm_service_type val)
1747
1748/* Section 10.5.2.26, Table 10.5.64 */
1749#define GSM48_PM_MASK 0x03
1750#define GSM48_PM_NORMAL 0x00
1751#define GSM48_PM_EXTENDED 0x01
1752#define GSM48_PM_REORG 0x02
1753#define GSM48_PM_SAME 0x03
1754
1755/* Chapter 10.5.3.5 / Table 10.5.93 */
1756#define GSM48_LUPD_NORMAL 0x0
1757#define GSM48_LUPD_PERIODIC 0x1
1758#define GSM48_LUPD_IMSI_ATT 0x2
1759#define GSM48_LUPD_RESERVED 0x3
1760
1761extern const struct value_string osmo_lu_type_names[];
1762static inline const char *osmo_lu_type_name(uint8_t lu_type)
1763{ return get_value_string(osmo_lu_type_names, lu_type); }
1764
1765/* Table 10.5.4 */
1766#define GSM_MI_TYPE_MASK 0x07
1767#define GSM_MI_TYPE_NONE 0x00
1768#define GSM_MI_TYPE_IMSI 0x01
1769#define GSM_MI_TYPE_IMEI 0x02
1770#define GSM_MI_TYPE_IMEISV 0x03
1771#define GSM_MI_TYPE_TMSI 0x04
1772#define GSM_MI_ODD 0x08
1773
1774#define GSM48_IE_MOBILE_ID 0x17 /* 10.5.1.4 */
1775#define GSM48_IE_NAME_LONG 0x43 /* 10.5.3.5a */
1776#define GSM48_IE_NAME_SHORT 0x45 /* 10.5.3.5a */
1777#define GSM48_IE_UTC 0x46 /* 10.5.3.8 */
1778#define GSM48_IE_NET_TIME_TZ 0x47 /* 10.5.3.9 */
1779#define GSM48_IE_LSA_IDENT 0x48 /* 10.5.3.11 */
1780#define GSM48_IE_NET_DST 0x49 /* 10.5.3.12 [24.008] */
1781
1782#define GSM48_IE_BEARER_CAP 0x04 /* 10.5.4.5 */
1783#define GSM48_IE_CAUSE 0x08 /* 10.5.4.11 */
1784#define GSM48_IE_CC_CAP 0x15 /* 10.5.4.5a */
1785#define GSM48_IE_ALERT 0x19 /* 10.5.4.26 */
1786#define GSM48_IE_FACILITY 0x1c /* 10.5.4.15 */
1787#define GSM48_IE_PROGR_IND 0x1e /* 10.5.4.21 */
1788#define GSM48_IE_AUX_STATUS 0x24 /* 10.5.4.4 */
1789#define GSM48_IE_NOTIFY 0x27 /* 10.5.4.20 */
1790#define GSM48_IE_KPD_FACILITY 0x2c /* 10.5.4.17 */
1791#define GSM48_IE_SIGNAL 0x34 /* 10.5.4.23 */
1792#define GSM48_IE_CONN_BCD 0x4c /* 10.5.4.13 */
1793#define GSM48_IE_CONN_SUB 0x4d /* 10.5.4.14 */
1794#define GSM48_IE_CALLING_BCD 0x5c /* 10.5.4.9 */
1795#define GSM48_IE_CALLING_SUB 0x5d /* 10.5.4.10 */
1796#define GSM48_IE_CALLED_BCD 0x5e /* 10.5.4.7 */
1797#define GSM48_IE_CALLED_SUB 0x6d /* 10.5.4.8 */
1798#define GSM48_IE_REDIR_BCD 0x74 /* 10.5.4.21a */
1799#define GSM48_IE_REDIR_SUB 0x75 /* 10.5.4.21b */
1800#define GSM48_IE_LOWL_COMPAT 0x7c /* 10.5.4.18 */
1801#define GSM48_IE_HIGHL_COMPAT 0x7d /* 10.5.4.16 */
1802#define GSM48_IE_USER_USER 0x7e /* 10.5.4.25 */
1803#define GSM48_IE_SS_VERS 0x7f /* 10.5.4.24 */
1804#define GSM48_IE_MORE_DATA 0xa0 /* 10.5.4.19 */
1805#define GSM48_IE_CLIR_SUPP 0xa1 /* 10.5.4.11a */
1806#define GSM48_IE_CLIR_INVOC 0xa2 /* 10.5.4.11b */
1807#define GSM48_IE_REV_C_SETUP 0xa3 /* 10.5.4.22a */
1808#define GSM48_IE_REPEAT_CIR 0xd1 /* 10.5.4.22 */
1809#define GSM48_IE_REPEAT_SEQ 0xd3 /* 10.5.4.22 */
1810
1811/* Section 10.5.4.11 / Table 10.5.122 */
1812#define GSM48_CAUSE_CS_GSM 0x60
1813
1814/* Section 9.1.2 / Table 9.3 */
1815/* RR elements */
1816#define GSM48_IE_VGCS_TARGET 0x01
1817//#define GSM48_IE_VGCS_T_MODE_I 0x01
1818#define GSM48_IE_FRQSHORT_AFTER 0x02
1819#define GSM48_IE_MUL_RATE_CFG 0x03 /* 10.5.2.21aa */
1820#define GSM48_IE_FREQ_L_AFTER 0x05
1821#define GSM48_IE_GROUP_CIP_SEQ_HO 0x08 /* HO = Half Octet Tag */
1822#define GSM48_IE_CIP_MODE_SET_HO 0x09 /* HO = Half Octet Tag */
1823#define GSM48_IE_GPRS_RESUMPT_HO 0xc0 /* HO = Half Octet Tag */
1824#define GSM48_IE_SYNC_IND_HO 0x0d /* HO = Half Octet Tag */
1825#define GSM48_IE_MSLOT_DESC 0x10
1826#define GSM48_IE_CHANMODE_2 0x11
1827#define GSM48_IE_FRQSHORT_BEFORE 0x12
1828//#define GSM48_IE_FRQSHORT_BEFOR 0x12
1829#define GSM48_IE_CHANMODE_3 0x13
1830#define GSM48_IE_CHANMODE_4 0x14
1831#define GSM48_IE_CHANMODE_5 0x15
1832#define GSM48_IE_CHANMODE_6 0x16
1833#define GSM48_IE_CHANMODE_7 0x17
1834#define GSM48_IE_CHANMODE_8 0x18
1835#define GSM48_IE_CHANDESC_2 0x64
1836#define GSM48_IE_MA_AFTER 0x72
1837#define GSM48_IE_START_TIME 0x7c
1838#define GSM48_IE_FREQ_L_BEFORE 0x19
1839//#define GSM48_IE_FRQLIST_BEFORE 0x19
1840#define GSM48_IE_CH_DESC_1_BEFORE 0x1c
1841//#define GSM48_IE_CHDES_1_BEFORE 0x1c
1842#define GSM48_IE_CH_DESC_2_BEFORE 0x1d
1843//#define GSM48_IE_CHDES_2_BEFORE 0x1d
1844#define GSM48_IE_F_CH_SEQ_BEFORE 0x1e
1845//#define GSM48_IE_FRQSEQ_BEFORE 0x1e
1846#define GSM48_IE_CLASSMARK3 0x20
1847#define GSM48_IE_MA_BEFORE 0x21
1848#define GSM48_IE_RR_PACKET_UL 0x22
1849#define GSM48_IE_RR_PACKET_DL 0x23
1850#define GSM48_IE_CELL_CH_DESC 0x62
1851#define GSM48_IE_CHANMODE_1 0x63
1852#define GSM48_IE_CHDES_2_AFTER 0x64
1853#define GSM48_IE_MODE_SEC_CH 0x66
1854#define GSM48_IE_F_CH_SEQ_AFTER 0x69
1855#define GSM48_IE_EXTENDED_TSC_SET 0x6d
1856#define GSM48_IE_MA_AFTER 0x72
1857#define GSM48_IE_BA_RANGE 0x73
1858#define GSM48_IE_GROUP_CHDES 0x74
1859#define GSM48_IE_BA_LIST_PREF 0x75
1860#define GSM48_IE_MOB_OVSERV_DIF 0x77
1861#define GSM48_IE_CELL_SEL_IND_AFTER_REL 0x77 /* 44.018 Section 9.1.7 */
1862#define GSM48_IE_REALTIME_DIFF 0x7b
1863#define GSM48_IE_START_TIME 0x7c
1864#define GSM48_IE_INDIVIDUAL_PRIORITIES 0x7c /* 44.018 Section 9.1.7 */
1865#define GSM48_IE_TIMING_ADVANCE 0x7d
1866#define GSM48_IE_GROUP_CIP_SEQ 0x80 /* DEPRECATED, use GSM48_IE_GROUP_CIP_SEQ_HO instead */
1867#define GSM48_IE_CIP_MODE_SET 0x90 /* DEPRECATED, use GSM48_IE_CIP_MODE_SET_HO instead */
1868#define GSM48_IE_GPRS_RESUMPT 0xc0 /* DEPRECATED, use GSM48_IE_GPRS_RESUMPT_HO instead */
1869#define GSM48_IE_SYNC_IND 0xd0 /* DEPRECATED, use GSM48_IE_SYNC_IND_HO instead */
1870/* System Information 4 (types are equal IEs above) */
1871#define GSM48_IE_CBCH_CHAN_DESC 0x64
1872#define GSM48_IE_CBCH_MOB_AL 0x72
1873
1874/* Additional MM elements */
1875#define GSM48_IE_PRIORITY_LEV_HO 0x08 /* HO = Half Octet Tag */
1876#define GSM48_IE_LOCATION_AREA 0x13
1877#define GSM48_IE_AUTN 0x20
1878#define GSM48_IE_AUTH_RES_EXT 0x21
1879#define GSM48_IE_AUTS 0x22
1880#define GSM48_IE_PRIORITY_LEV 0x80 /* DEPRECATED, use GSM48_IE_PRIORITY_LEV_HO instead */
1881#define GSM48_IE_FOLLOW_ON_PROC 0xa1
1882#define GSM48_IE_CTS_PERMISSION 0xa2
1883
1884/* Section 10.5.4.21 / Table 10.5.127 */
1885
1894};
1895
1896/* Section 10.5.4.23 / Table 10.5.130 */
1909};
1910
1911/* Section 10.5.4.11 / Table 10.5.122 */
1917};
1918
1926 /* not defined */
1929};
1930
1931/* 3GPP TS 44.018 10.5.2.31 RR Cause / Table 10.5.70 */
1953};
1954
1955/* Section 10.5.4.11 CC Cause / Table 10.5.123 */
2006};
2007
2008extern const struct value_string gsm48_cc_cause_names[];
2009static inline const char *gsm48_cc_cause_name(enum gsm48_cc_cause val)
2010{ return get_value_string(gsm48_cc_cause_names, val); }
2011
2012/* Annex G, GSM specific cause values for mobility management */
2037
2038 /* according to G.6 Additional cause codes for GMM */
2045};
2046
2047extern const struct value_string gsm48_reject_value_names[];
2048static inline const char *gsm48_reject_value_name(enum gsm48_reject_value val)
2050
2071};
2072
2073/* Chapter 11.3 */
2074#define GSM48_T301 180, 0
2075#define GSM48_T303 30, 0
2076#define GSM48_T305 30, 0
2077#define GSM48_T306 30, 0
2078#define GSM48_T308 10, 0 /* no spec default */
2079#define GSM48_T310 30, 0 /* no spec default */
2080#define GSM48_T313 30, 0 /* no spec default */
2081#define GSM48_T323 30, 0
2082#define GSM48_T331 30, 0 /* no spec default */
2083#define GSM48_T333 30, 0 /* no spec default */
2084#define GSM48_T334 25, 0 /* min 15s */
2085#define GSM48_T338 30, 0 /* no spec default */
2086#define GSM48_T303_MS 30, 0
2087#define GSM48_T305_MS 30, 0
2088#define GSM48_T308_MS 30, 0
2089#define GSM48_T310_MS 30, 0
2090#define GSM48_T313_MS 30, 0
2091#define GSM48_T323_MS 30, 0
2092#define GSM48_T332_MS 30, 0
2093#define GSM48_T335_MS 30, 0
2094
2095/* Chapter 5.1.2.2 */
2096#define GSM_CSTATE_NULL 0
2097#define GSM_CSTATE_INITIATED 1
2098#define GSM_CSTATE_MM_CONNECTION_PEND 2 /* see 10.5.4.6 */
2099#define GSM_CSTATE_MO_CALL_PROC 3
2100#define GSM_CSTATE_CALL_DELIVERED 4
2101#define GSM_CSTATE_CALL_PRESENT 6
2102#define GSM_CSTATE_CALL_RECEIVED 7
2103#define GSM_CSTATE_CONNECT_REQUEST 8
2104#define GSM_CSTATE_MO_TERM_CALL_CONF 9
2105#define GSM_CSTATE_ACTIVE 10
2106#define GSM_CSTATE_DISCONNECT_REQ 12
2107#define GSM_CSTATE_DISCONNECT_IND 12
2108#define GSM_CSTATE_RELEASE_REQ 19
2109#define GSM_CSTATE_MO_ORIG_MODIFY 26
2110#define GSM_CSTATE_MO_TERM_MODIFY 27
2111#define GSM_CSTATE_CONNECT_IND 28
2112
2113#define SBIT(a) (1 << a)
2114#define ALL_STATES 0xffffffff
2115
2116/* Table 10.5.3/3GPP TS 04.08: Location Area Identification information element */
2117#define GSM_LAC_RESERVED_DETACHED 0x0
2118#define GSM_LAC_RESERVED_ALL_BTS 0xfffe
2119
2120/* GSM 04.08 Bearer Capability: Information Transfer Capability */
2128};
2129
2130/* GSM 04.08 Bearer Capability: Transfer Mode */
2134};
2135
2136/* GSM 04.08 Bearer Capability: Coding Standard */
2139};
2140
2141/* GSM 04.08 Bearer Capability: Radio Channel Requirements */
2146};
2147
2148/* GSM 04.08 Bearer Capability: Rate Adaption */
2154};
2155
2156/* GSM 04.08 Bearer Capability: Signalling access protocol */
2164};
2165
2166/* GSM 04.08 Bearer Capability: User Rate */
2175};
2176
2177/* GSM 04.08 Bearer Capability: Parity */
2184};
2185
2186/* GSM 04.08 Bearer Capability: Intermediate Rate */
2190};
2191
2192/* GSM 04.08 Bearer Capability: Transparency */
2198};
2199
2200/* GSM 04.08 Bearer Capability: Modem Type */
2211};
2212
2217};
2218
2233};
2234
2248};
2249
2250#define GSM48_TMSI_LEN 5
2251#define GSM48_MID_TMSI_LEN (GSM48_TMSI_LEN + 2)
2252#define GSM48_MI_SIZE 32
2253
2254/* 3GPP TS 24.008 § 10.5.5.15 Routing area identification */
2256 uint8_t digits[3]; /* MCC + MNC BCD digits */
2257 uint16_t lac; /* Location Area Code */
2258 uint8_t rac; /* Routing Area Code */
2259} __attribute__ ((packed));
2260
2261#define GSM48_CELL_CHAN_DESC_SIZE 16
2262
2263#define GSM_MACBLOCK_LEN 23
2264#define GSM_MACBLOCK_PADDING 0x2b
2265
2266/* Table 10.5.118 / 3GPP TS 24.008 Section 10.5.4.7 */
2273 /* reserved */
2274};
2275
2276/* Table 10.5.118 / 3GPP TS 24.008 Section 10.5.4.7 */
2285 /* reserved */
2286};
char * osmo_gsm48_classmark_a5_name_buf(char *buf, size_t buf_len, const struct osmo_gsm48_classmark *cm)
Return a string representation of A5 cipher algorithms indicated by Classmark 1, 2 and 3.
Definition: gsm48.c:1919
const struct value_string gsm48_rr_msgtype_names[]
TS 04.08 RR Message Type names.
Definition: gsm48.c:1522
void gsm48_set_dtx(struct gsm48_cell_options *op, enum gsm48_dtx_mode full, enum gsm48_dtx_mode half, bool is_bcch)
Set DTX mode in Cell Options IE (3GPP TS 44.018)
Definition: gsm48.c:1206
bool osmo_gsm48_classmark2_is_r99(const struct gsm48_classmark2 *cm2, uint8_t cm2_len)
Definition: gsm48.c:1897
const struct value_string gsm48_reject_value_names[]
Definition: gsm48.c:1820
const char * gsm48_pdisc_msgtype_name(uint8_t pdisc, uint8_t msg_type)
Compose a string naming the message type for given protocol, in a static buffer.
Definition: gsm48.c:1798
int8_t osmo_gsm48_rfpowercap2powerclass(enum gsm_band band, uint8_t rf_power_cap)
Decode power class from Classmark1/2 RF power capability field.
Definition: gsm48.c:2046
void osmo_gsm48_classmark_update(struct osmo_gsm48_classmark *dst, const struct osmo_gsm48_classmark *src)
Overwrite dst with the Classmark information present in src.
Definition: gsm48.c:1978
char * osmo_gsm48_classmark_a5_name_c(const void *ctx, const struct osmo_gsm48_classmark *cm)
Return a string representation of A5 cipher algorithms indicated by Classmark 1, 2 and 3.
Definition: gsm48.c:1963
bool osmo_gsm48_classmark1_is_r99(const struct gsm48_classmark1 *cm1)
Definition: gsm48.c:1892
const struct value_string gsm48_pdisc_names[]
TS 04.08 Protocol Descriptor names.
Definition: gsm48.c:1503
const struct value_string gsm48_mm_msgtype_names[]
TS 04.08 MM Message Type names.
Definition: gsm48.c:1615
char * gsm48_pdisc_msgtype_name_buf(char *buf, size_t buf_len, uint8_t pdisc, uint8_t msg_type)
Compose a string naming the message type for given protocol, in a caller-provided buffer.
Definition: gsm48.c:1758
const struct value_string osmo_lu_type_names[]
Definition: gsm48.c:1873
int osmo_gsm48_classmark_supports_a5(const struct osmo_gsm48_classmark *cm, uint8_t a5)
Determine if the given Classmark (1/2/3) value permits a given A5/n cipher.
Definition: gsm48.c:2003
static int32_t smod(int32_t n, int32_t m)
Definition: gsm48_ie.c:871
bool gsm48_hdr_gmm_cipherable(const struct gsm48_hdr *hdr)
Checks is particular message is cipherable in A/Gb mode according to 3GPP TS 24.008 § 4....
Definition: gsm48.c:1092
char * gsm48_pdisc_msgtype_name_c(const void *ctx, uint8_t pdisc, uint8_t msg_type)
Compose a string naming the message type for given protocol, in a dynamically-allocated buffer.
Definition: gsm48.c:1812
const struct value_string gsm48_cc_msgtype_names[]
TS 04.08 CC Message Type names.
Definition: gsm48.c:1645
const struct value_string osmo_cm_service_type_names[]
Definition: gsm48.c:1881
const struct value_string gsm48_cc_cause_names[]
TS 04.08 10.5..4.11 Call Control Cause Values.
Definition: gsm48.c:1688
const struct value_string gsm48_chan_mode_names[]
Definition: gsm48.c:447
bool osmo_gsm48_classmark_is_r99(const struct osmo_gsm48_classmark *cm)
Return true if any of Classmark 1 or Classmark 2 are present and indicate R99 capability.
Definition: gsm48.c:1908
const char * osmo_gsm48_classmark_a5_name(const struct osmo_gsm48_classmark *cm)
Return a string representation of A5 cipher algorithms indicated by Classmark 1, 2 and 3.
Definition: gsm48.c:1951
#define OSMO_ASSERT(exp)
const char * get_value_string(const struct value_string *vs, uint32_t val)
uint8_t rest_octets[0]
Definition: gsm_04_08.h:3
static const char * osmo_cm_service_type_name(enum osmo_cm_service_type val)
Definition: gsm_04_08.h:1745
uint8_t ncc_permitted
Definition: gsm_04_08.h:2
static const char * gsm48_pdisc_name(uint8_t val)
Definition: gsm_04_08.h:1455
gsm48_bcap_user_rate
Definition: gsm_04_08.h:2167
@ GSM48_BCAP_UR_4800
Definition: gsm_04_08.h:2171
@ GSM48_BCAP_UR_300
Definition: gsm_04_08.h:2168
@ GSM48_BCAP_UR_1200_75
Definition: gsm_04_08.h:2174
@ GSM48_BCAP_UR_9600
Definition: gsm_04_08.h:2172
@ GSM48_BCAP_UR_2400
Definition: gsm_04_08.h:2170
@ GSM48_BCAP_UR_1200
Definition: gsm_04_08.h:2169
@ GSM48_BCAP_UR_12000
Definition: gsm_04_08.h:2173
#define GSM48_PDISC_MASK
Definition: gsm_04_08.h:1449
#define GSM48_PDISC_EXTEND
Definition: gsm_04_08.h:1447
gsm48_numbering_plan
Definition: gsm_04_08.h:2277
@ GSM48_NPI_TELEX_F69
Definition: gsm_04_08.h:2281
@ GSM48_NPI_DATA_X121
Definition: gsm_04_08.h:2280
@ GSM48_NPI_CTS
Definition: gsm_04_08.h:2284
@ GSM48_NPI_PRIVATE
Definition: gsm_04_08.h:2283
@ GSM48_NPI_NATIONAL
Definition: gsm_04_08.h:2282
@ GSM48_NPI_ISDN_E164
Definition: gsm_04_08.h:2279
@ GSM48_NPI_UNKNOWN
Definition: gsm_04_08.h:2278
#define GSM48_PDISC_LOC
Definition: gsm_04_08.h:1446
gsm48_type_of_number
Definition: gsm_04_08.h:2267
@ GSM48_TON_UNKNOWN
Definition: gsm_04_08.h:2268
@ GSM48_TON_INTERNATIONAL
Definition: gsm_04_08.h:2269
@ GSM48_TON_NET_SPEC
Definition: gsm_04_08.h:2271
@ GSM48_TON_SHORT_CODE
Definition: gsm_04_08.h:2272
@ GSM48_TON_NATIONAL
Definition: gsm_04_08.h:2270
struct gsm48_hdr hdr
Definition: gsm_04_08.h:0
osmo_cm_service_type
Definition: gsm_04_08.h:1733
@ GSM48_CMSERV_MAX_VAL
Definition: gsm_04_08.h:1741
@ GSM48_CMSERV_MO_CALL_PACKET
Definition: gsm_04_08.h:1734
@ GSM48_CMSERV_VBS
Definition: gsm_04_08.h:1739
@ GSM48_CMSERV_SUP_SERV
Definition: gsm_04_08.h:1737
@ GSM48_CMSERV_VGCS
Definition: gsm_04_08.h:1738
@ GSM48_CMSERV_SMS
Definition: gsm_04_08.h:1736
@ GSM48_CMSERV_EMERGENCY
Definition: gsm_04_08.h:1735
@ GSM48_CMSERV_LOC_SERV
Definition: gsm_04_08.h:1740
gsm48_signal_val
Definition: gsm_04_08.h:1897
@ GSM48_SIGNAL_CALL_WAIT
Definition: gsm_04_08.h:1905
@ GSM48_SIGNAL_INTERCEPT
Definition: gsm_04_08.h:1900
@ GSM48_SIGNAL_RINGBACK
Definition: gsm_04_08.h:1899
@ GSM48_SIGNAL_DIALTONE
Definition: gsm_04_08.h:1898
@ GSM48_SIGNAL_OFF_HOOK
Definition: gsm_04_08.h:1906
@ GSM48_SIGNAL_OFF
Definition: gsm_04_08.h:1907
@ GSM48_SIGNAL_NET_CONG
Definition: gsm_04_08.h:1901
@ GSM48_SIGNAL_CONFIRM
Definition: gsm_04_08.h:1903
@ GSM48_SIGNAL_ANSWER
Definition: gsm_04_08.h:1904
@ GSM48_SIGNAL_ALERT_OFF
Definition: gsm_04_08.h:1908
@ GSM48_SIGNAL_BUSY
Definition: gsm_04_08.h:1902
gsm48_chan_mode
10.5.2.6 Channel Mode value
Definition: gsm_04_08.h:750
@ GSM48_CMODE_DATA_6k0
CSD: 6.0 kbit/s radio interface rate, 4.8 kbit/s services (TCH/{F,H}4.8)
Definition: gsm_04_08.h:790
@ GSM48_CMODE_SPEECH_V3_VAMOS
Same as GSM48_CMODE_SPEECH_AMR, in VAMOS mode.
Definition: gsm_04_08.h:799
@ GSM48_CMODE_DATA_14k5_29k0
Definition: gsm_04_08.h:775
@ GSM48_CMODE_DATA_29k0_43k5
Definition: gsm_04_08.h:777
@ GSM48_CMODE_SPEECH_V5_VAMOS
Speech: GSM48_CMODE_SPEECH_V5, in VAMOS mode.
Definition: gsm_04_08.h:801
@ GSM48_CMODE_SPEECH_V1
Speech: FR (TCH/FS) or HR (TCH/HS)
Definition: gsm_04_08.h:754
@ GSM48_CMODE_DATA_3k6
CSD: 3.6 kbit/s radio interface rate, 2.4 kbit/s and less services (TCH/{F,H}2.4)
Definition: gsm_04_08.h:792
@ GSM48_CMODE_SPEECH_V6
Speech: OHR AMR (O-TCH/AHS)
Definition: gsm_04_08.h:764
@ GSM48_CMODE_SPEECH_V1_VAMOS
Same as GSM48_CMODE_SPEECH_V1, in VAMOS mode.
Definition: gsm_04_08.h:795
@ GSM48_CMODE_SIGN
Signalling only (TCH/F or TCH/H)
Definition: gsm_04_08.h:752
@ GSM48_CMODE_DATA_32k0
ECSD: 32.0 kbit/s radio interface rate, 32.0 kbit/s services (E-TCH/F32.0)
Definition: gsm_04_08.h:782
@ GSM48_CMODE_SPEECH_V2_VAMOS
Same as GSM48_CMODE_SPEECH_EFR, in VAMOS mode.
Definition: gsm_04_08.h:797
@ GSM48_CMODE_DATA_29k0
ECSD: 29.0 kbit/s radio interface rate, 28.8 kbit/s services (E-TCH/F28.8)
Definition: gsm_04_08.h:784
@ GSM48_CMODE_SPEECH_V5
Speech: FR AMR-WB (TCH/WFS)
Definition: gsm_04_08.h:762
@ GSM48_CMODE_DATA_12k0
CSD: 12.0 kbit/s radio interface rate, 9.6 kbit/s services (TCH/F9.6)
Definition: gsm_04_08.h:788
@ GSM48_CMODE_DATA_14k5_43k5
Definition: gsm_04_08.h:773
@ GSM48_CMODE_SPEECH_AMR
Speech: AMR (TCH/AFS or TCH/AHS)
Definition: gsm_04_08.h:758
@ GSM48_CMODE_DATA_43k5_14k5
Definition: gsm_04_08.h:767
@ GSM48_CMODE_SPEECH_V4
Speech: OFR AMR-WB (O-TCH/WFS) or OHR AMR-WB (O-TCH/WHS)
Definition: gsm_04_08.h:760
@ GSM48_CMODE_DATA_43k5_29k0
Definition: gsm_04_08.h:771
@ GSM48_CMODE_DATA_29k0_14k5
Definition: gsm_04_08.h:769
@ GSM48_CMODE_DATA_43k5
ECSD: 43.5 kbit/s radio interface rate, 43.2 kbit/s services (E-TCH/F43.2)
Definition: gsm_04_08.h:780
@ GSM48_CMODE_SPEECH_EFR
Speech: EFR (TCH/EFS)
Definition: gsm_04_08.h:756
@ GSM48_CMODE_DATA_14k5
CSD: 14.5 kbit/s radio interface rate, 14.4 kbit/s services (TCH/F14.4)
Definition: gsm_04_08.h:786
uint8_t cm2_len
Definition: gsm_04_08.h:0
static uint8_t gsm48_hdr_msg_type_r98(const struct gsm48_hdr *hdr)
Definition: gsm_04_08.h:1503
gsm48_bcap_parity
Definition: gsm_04_08.h:2178
@ GSM48_BCAP_PAR_NONE
Definition: gsm_04_08.h:2181
@ GSM48_BCAP_PAR_ODD
Definition: gsm_04_08.h:2179
@ GSM48_BCAP_PAR_ZERO
Definition: gsm_04_08.h:2182
@ GSM48_BCAP_PAR_ONE
Definition: gsm_04_08.h:2183
@ GSM48_BCAP_PAR_EVEN
Definition: gsm_04_08.h:2180
chreq_type
Definition: gsm_04_08.h:2051
@ CHREQ_T_DATA_CALL_TCH_H
Definition: gsm_04_08.h:2059
@ CHREQ_T_PAG_R_TCH_F
Definition: gsm_04_08.h:2063
@ CHREQ_T_CALL_REEST_TCH_H
Definition: gsm_04_08.h:2054
@ CHREQ_T_CALL_REEST_TCH_H_DBL
Definition: gsm_04_08.h:2055
@ CHREQ_T_PAG_R_ANY_NECI0
Definition: gsm_04_08.h:2061
@ CHREQ_T_PAG_R_TCH_FH
Definition: gsm_04_08.h:2064
@ CHREQ_T_LMU
Definition: gsm_04_08.h:2065
@ CHREQ_T_EMERG_CALL
Definition: gsm_04_08.h:2052
@ CHREQ_T_PDCH_ONE_PHASE
Definition: gsm_04_08.h:2068
@ CHREQ_T_SDCCH
Definition: gsm_04_08.h:2056
@ CHREQ_T_PDCH_TWO_PHASE
Definition: gsm_04_08.h:2069
@ CHREQ_T_VOICE_CALL_TCH_H
Definition: gsm_04_08.h:2058
@ CHREQ_T_PAG_R_ANY_NECI1
Definition: gsm_04_08.h:2062
@ CHREQ_T_TCH_F
Definition: gsm_04_08.h:2057
@ CHREQ_T_CALL_REEST_TCH_F
Definition: gsm_04_08.h:2053
@ CHREQ_T_RESERVED_IGNORE
Definition: gsm_04_08.h:2067
@ CHREQ_T_RESERVED_SDCCH
Definition: gsm_04_08.h:2066
@ _NUM_CHREQ_T
Definition: gsm_04_08.h:2070
@ CHREQ_T_LOCATION_UPD
Definition: gsm_04_08.h:2060
static void gsm48_barr_acc(struct gsm48_rach_control *rach_control, unsigned int acc)
Definition: gsm_04_08.h:659
gsm48_cc_cause
Definition: gsm_04_08.h:1956
@ GSM48_CC_CAUSE_SEMANTIC_INCORR
Definition: gsm_04_08.h:1996
@ GSM48_CC_CAUSE_FACILITY_REJ
Definition: gsm_04_08.h:1971
@ GSM48_CC_CAUSE_SERV_OPT_UNAVAIL
Definition: gsm_04_08.h:1986
@ GSM48_CC_CAUSE_SWITCH_CONG
Definition: gsm_04_08.h:1977
@ GSM48_CC_CAUSE_INCOMPAT_DEST
Definition: gsm_04_08.h:1994
@ GSM48_CC_CAUSE_ACC_INF_DISCARD
Definition: gsm_04_08.h:1978
@ GSM48_CC_CAUSE_INTERWORKING
Definition: gsm_04_08.h:2005
@ GSM48_CC_CAUSE_MSGTYPE_NOTEXIST
Definition: gsm_04_08.h:1998
@ GSM48_CC_CAUSE_UNASSIGNED_NR
Definition: gsm_04_08.h:1957
@ GSM48_CC_CAUSE_QOS_UNAVAIL
Definition: gsm_04_08.h:1981
@ GSM48_CC_CAUSE_REQ_FAC_NOTIMPL
Definition: gsm_04_08.h:1989
@ GSM48_CC_CAUSE_MSGTYPE_INCOMPAT
Definition: gsm_04_08.h:1999
@ GSM48_CC_CAUSE_REQ_CHAN_UNAVAIL
Definition: gsm_04_08.h:1979
@ GSM48_CC_CAUSE_NORMAL_UNSPEC
Definition: gsm_04_08.h:1973
@ GSM48_CC_CAUSE_CHAN_UNACCEPT
Definition: gsm_04_08.h:1959
@ GSM48_CC_CAUSE_NONSE_USER_CLR
Definition: gsm_04_08.h:1968
@ GSM48_CC_CAUSE_INVAL_MAND_INF
Definition: gsm_04_08.h:1997
@ GSM48_CC_CAUSE_USER_ALERTING_NA
Definition: gsm_04_08.h:1964
@ GSM48_CC_CAUSE_MSG_INCOMP_STATE
Definition: gsm_04_08.h:2002
@ GSM48_CC_CAUSE_USER_NOTRESPOND
Definition: gsm_04_08.h:1963
@ GSM48_CC_CAUSE_RESTR_BCAP_AVAIL
Definition: gsm_04_08.h:1990
@ GSM48_CC_CAUSE_CALL_REJECTED
Definition: gsm_04_08.h:1965
@ GSM48_CC_CAUSE_INC_BARRED_CUG
Definition: gsm_04_08.h:1983
@ GSM48_CC_CAUSE_RESP_STATUS_INQ
Definition: gsm_04_08.h:1972
@ GSM48_CC_CAUSE_USER_NOT_IN_CUG
Definition: gsm_04_08.h:1993
@ GSM48_CC_CAUSE_INVAL_TRANS_ID
Definition: gsm_04_08.h:1992
@ GSM48_CC_CAUSE_NORM_CALL_CLEAR
Definition: gsm_04_08.h:1961
@ GSM48_CC_CAUSE_INV_NR_FORMAT
Definition: gsm_04_08.h:1970
@ GSM48_CC_CAUSE_BEARER_CA_UNAVAIL
Definition: gsm_04_08.h:1985
@ GSM48_CC_CAUSE_BEARERSERV_UNIMPL
Definition: gsm_04_08.h:1987
@ GSM48_CC_CAUSE_COND_IE_ERR
Definition: gsm_04_08.h:2001
@ GSM48_CC_CAUSE_USER_BUSY
Definition: gsm_04_08.h:1962
@ GSM48_CC_CAUSE_DEST_OOO
Definition: gsm_04_08.h:1969
@ GSM48_CC_CAUSE_RESOURCE_UNAVAIL
Definition: gsm_04_08.h:1980
@ GSM48_CC_CAUSE_PRE_EMPTION
Definition: gsm_04_08.h:1967
@ GSM48_CC_CAUSE_TEMP_FAILURE
Definition: gsm_04_08.h:1976
@ GSM48_CC_CAUSE_REQ_FAC_NOT_SUBSC
Definition: gsm_04_08.h:1982
@ GSM48_CC_CAUSE_NUMBER_CHANGED
Definition: gsm_04_08.h:1966
@ GSM48_CC_CAUSE_NETWORK_OOO
Definition: gsm_04_08.h:1975
@ GSM48_CC_CAUSE_SERV_OPT_UNIMPL
Definition: gsm_04_08.h:1991
@ GSM48_CC_CAUSE_NO_ROUTE
Definition: gsm_04_08.h:1958
@ GSM48_CC_CAUSE_IE_NOTEXIST
Definition: gsm_04_08.h:2000
@ GSM48_CC_CAUSE_BEARER_CAP_UNAUTH
Definition: gsm_04_08.h:1984
@ GSM48_CC_CAUSE_ACM_GE_ACM_MAX
Definition: gsm_04_08.h:1988
@ GSM48_CC_CAUSE_OP_DET_BARRING
Definition: gsm_04_08.h:1960
@ GSM48_CC_CAUSE_INVAL_TRANS_NET
Definition: gsm_04_08.h:1995
@ GSM48_CC_CAUSE_PROTO_ERR
Definition: gsm_04_08.h:2004
@ GSM48_CC_CAUSE_NO_CIRCUIT_CHAN
Definition: gsm_04_08.h:1974
@ GSM48_CC_CAUSE_RECOVERY_TIMER
Definition: gsm_04_08.h:2003
#define GSM48_PDISC_MM
Definition: gsm_04_08.h:1440
static uint8_t gsm48_hdr_msg_type_r99(const struct gsm48_hdr *hdr)
Definition: gsm_04_08.h:1523
gsm48_bcap_itcap
Definition: gsm_04_08.h:2121
@ GSM48_BCAP_ITCAP_OTHER
Definition: gsm_04_08.h:2126
@ GSM48_BCAP_ITCAP_3k1_AUDIO
Definition: gsm_04_08.h:2124
@ GSM48_BCAP_ITCAP_FAX_G3
Definition: gsm_04_08.h:2125
@ GSM48_BCAP_ITCAP_SPEECH
Definition: gsm_04_08.h:2122
@ GSM48_BCAP_ITCAP_UNR_DIG_INF
Definition: gsm_04_08.h:2123
@ GSM48_BCAP_ITCAP_RESERVED
Definition: gsm_04_08.h:2127
uint8_t mi_len
Definition: gsm_04_08.h:1
static const char * gsm48_cc_cause_name(enum gsm48_cc_cause val)
Definition: gsm_04_08.h:2009
gsm48_bcap_interm_rate
Definition: gsm_04_08.h:2187
@ GSM48_BCAP_IR_8k
Definition: gsm_04_08.h:2188
@ GSM48_BCAP_IR_16k
Definition: gsm_04_08.h:2189
static void gsm48_allow_acc(struct gsm48_rach_control *rach_control, unsigned int acc)
Definition: gsm_04_08.h:673
gsm48_progress_desc
Definition: gsm_04_08.h:1886
@ GSM48_PROGR_NOT_E2E
Definition: gsm_04_08.h:1887
@ GSM48_PROGR_CALL_E2E
Definition: gsm_04_08.h:1892
@ GSM48_PROGR_ORIG_NOT_PLMN
Definition: gsm_04_08.h:1889
@ GSM48_PROGR_IN_BAND_AVAIL
Definition: gsm_04_08.h:1891
@ GSM48_PROGR_DEST_NOT_PLMN
Definition: gsm_04_08.h:1888
@ GSM48_PROGR_QUEUEING
Definition: gsm_04_08.h:1893
@ GSM48_PROGR_RETURNED
Definition: gsm_04_08.h:1890
static bool gsm48_meas_res_is_valid(const struct gsm48_meas_res *mr)
Check if the given mr contains valid measurement results.
Definition: gsm_04_08.h:597
gsm48_bcap_transp
Definition: gsm_04_08.h:2193
@ GSM48_BCAP_TR_RLP_PREF
Definition: gsm_04_08.h:2197
@ GSM48_BCAP_TR_TRANSP
Definition: gsm_04_08.h:2194
@ GSM48_BCAP_TR_RLP
Definition: gsm_04_08.h:2195
@ GSM48_BCAP_TR_TR_PREF
Definition: gsm_04_08.h:2196
static uint8_t gsm48_hdr_pdisc(const struct gsm48_hdr *hdr)
Definition: gsm_04_08.h:1460
gsm48_rr_cause
Definition: gsm_04_08.h:1932
@ GSM48_RR_CAUSE_HNDOVER_IMP
Definition: gsm_04_08.h:1940
@ GSM48_RR_CAUSE_COND_IE_ERROR
Definition: gsm_04_08.h:1950
@ GSM48_RR_CAUSE_CALL_CLEARED
Definition: gsm_04_08.h:1945
@ GSM48_RR_CAUSE_ABNORMAL_UNACCT
Definition: gsm_04_08.h:1935
@ GSM48_RR_CAUSE_MSG_TYPE_N
Definition: gsm_04_08.h:1948
@ GSM48_RR_CAUSE_PROT_ERROR_UNSPC
Definition: gsm_04_08.h:1952
@ GSM48_RR_CAUSE_ABNORMAL_UNSPEC
Definition: gsm_04_08.h:1934
@ GSM48_RR_CAUSE_NORMAL
Definition: gsm_04_08.h:1933
@ GSM48_RR_CAUSE_INVALID_MAND_INF
Definition: gsm_04_08.h:1947
@ GSM48_RR_CAUSE_FREQ_NOT_IMPL
Definition: gsm_04_08.h:1942
@ GSM48_RR_CAUSE_ABNORMAL_TIMER
Definition: gsm_04_08.h:1936
@ GSM48_RR_CAUSE_PREMPTIVE_REL
Definition: gsm_04_08.h:1938
@ GSM48_RR_CAUSE_CHAN_MODE_UNACCT
Definition: gsm_04_08.h:1941
@ GSM48_RR_CAUSE_SEMANT_INCORR
Definition: gsm_04_08.h:1946
@ GSM48_RR_CAUSE_MSG_TYPE_N_COMPAT
Definition: gsm_04_08.h:1949
@ GSM48_RR_CAUSE_UTRAN_CFG_UNK
Definition: gsm_04_08.h:1939
@ GSM48_RR_CAUSE_NO_CELL_ALLOC_A
Definition: gsm_04_08.h:1951
@ GSM48_RR_CAUSE_LEAVE_GROUP_CA
Definition: gsm_04_08.h:1943
@ GSM48_RR_CAUSE_ABNORMAL_NOACT
Definition: gsm_04_08.h:1937
@ GSM48_RR_CAUSE_LOW_LEVEL_FAIL
Definition: gsm_04_08.h:1944
gsm48_bcap_rrq
Definition: gsm_04_08.h:2142
@ GSM48_BCAP_RRQ_DUAL_HR
Definition: gsm_04_08.h:2144
@ GSM48_BCAP_RRQ_FR_ONLY
Definition: gsm_04_08.h:2143
@ GSM48_BCAP_RRQ_DUAL_FR
Definition: gsm_04_08.h:2145
struct gsm48_classmark1 classmark1
Definition: gsm_04_08.h:0
gsm48_bcap_sig_access
Definition: gsm_04_08.h:2157
@ GSM48_BCAP_SA_X28_DP_UN
Definition: gsm_04_08.h:2161
@ GSM48_BCAP_SA_X21
Definition: gsm_04_08.h:2159
@ GSM48_BCAP_SA_I440_I450
Definition: gsm_04_08.h:2158
@ GSM48_BCAP_SA_X32
Definition: gsm_04_08.h:2163
@ GSM48_BCAP_SA_X28_NDP
Definition: gsm_04_08.h:2162
@ GSM48_BCAP_SA_X28_DP_IN
Definition: gsm_04_08.h:2160
gsm48_bcap_fixed_net_user_rate
Table 10.5.112/3GPP TS 24.008: Fixed network user rate (octet 6d)
Definition: gsm_04_08.h:2220
@ GSM48_BCAP_FNUR_BT_33600
33.6 kbit/s bit transparent
Definition: gsm_04_08.h:2230
@ GSM48_BCAP_FNUR_X1_V110_9600
9.6 kbit/s (according to ITU-T Rec.
Definition: gsm_04_08.h:2222
@ GSM48_BCAP_FNUR_V34_31200
31.2 kbit/s (according to ITU-T Rec.
Definition: gsm_04_08.h:2232
@ GSM48_BCAP_FNUR_I460_32000
32.0 kbit/s (according to ITU-T Rec.
Definition: gsm_04_08.h:2231
@ GSM48_BCAP_FNUR_X1_V110_28800
28.8 kbit/s (according to ITU-T Rec.
Definition: gsm_04_08.h:2225
@ GSM48_BCAP_FNUR_BT_64000
64.0 kbit/s bit transparent
Definition: gsm_04_08.h:2229
@ GSM48_BCAP_FNUR_NONE
FNUR not applicable / No meaning associated.
Definition: gsm_04_08.h:2221
@ GSM48_BCAP_FNUR_X1_V110_14400
14.4 kbit/s (according to ITU-T Rec.
Definition: gsm_04_08.h:2223
@ GSM48_BCAP_FNUR_X1_V110_19200
19.2 kbit/s (according to ITU-T Rec.
Definition: gsm_04_08.h:2224
@ GSM48_BCAP_FNUR_X1_V110_56000
56.0 kbit/s (according to ITU-T Rec.
Definition: gsm_04_08.h:2228
@ GSM48_BCAP_FNUR_X1_V110_48000
48.0 kbit/s (according to ITU-T Rec.
Definition: gsm_04_08.h:2227
@ GSM48_BCAP_FNUR_X1_V110_38400
38.4 kbit/s (according to ITU-T Rec.
Definition: gsm_04_08.h:2226
#define GSM48_PDISC_GROUP_CC
Definition: gsm_04_08.h:1434
uint8_t bcch_frequency_list[16]
Definition: gsm_04_08.h:1
#define GSM48_PDISC_BCAST_CC
Definition: gsm_04_08.h:1435
uint8_t rest[0]
Definition: gsm_04_08.h:12
gsm48_bcap_speech_ver
GSM 04.08 Bearer Capability: Speech Version Indication (See also 3GPP TS 24.008, Table 10....
Definition: gsm_04_08.h:2238
@ GSM48_BCAP_SV_AMR_OH
GSM HR V6 (OHR AMR)
Definition: gsm_04_08.h:2247
@ GSM48_BCAP_SV_AMR_FW
GSM FR V5 (FR AMR-WB)
Definition: gsm_04_08.h:2246
@ GSM48_BCAP_SV_HR
GSM HR V1 (GSM HR)
Definition: gsm_04_08.h:2240
@ GSM48_BCAP_SV_AMR_OHW
GSM HR V4 (OHR AMR-WB)
Definition: gsm_04_08.h:2245
@ GSM48_BCAP_SV_AMR_H
GSM HR V3 (HR_AMR)
Definition: gsm_04_08.h:2243
@ GSM48_BCAP_SV_AMR_OFW
GSM FR V4 (OFR AMR-WB)
Definition: gsm_04_08.h:2244
@ GSM48_BCAP_SV_AMR_F
GSM FR V3 (FR AMR)
Definition: gsm_04_08.h:2242
@ GSM48_BCAP_SV_FR
GSM FR V1 (GSM FR)
Definition: gsm_04_08.h:2239
@ GSM48_BCAP_SV_EFR
GSM FR V2 (GSM EFR)
Definition: gsm_04_08.h:2241
static uint8_t gsm48_hdr_trans_id_flip_ti(const struct gsm48_hdr *hdr)
Definition: gsm_04_08.h:1493
gsm48_dtx_mode
Definition: gsm_04_08.h:1011
@ GSM48_DTX_SHALL_NOT_BE_USED
Definition: gsm_04_08.h:1014
@ GSM48_DTX_MAY_BE_USED
Definition: gsm_04_08.h:1012
@ GSM48_DTX_SHALL_BE_USED
Definition: gsm_04_08.h:1013
struct gsm48_classmark3 __attribute__
struct gsm48_loc_area_id lai
Definition: gsm_04_08.h:2
gsm48_bcap_modem_type
Definition: gsm_04_08.h:2201
@ GSM48_BCAP_MT_V26ter
Definition: gsm_04_08.h:2207
@ GSM48_BCAP_MT_V23
Definition: gsm_04_08.h:2206
@ GSM48_BCAP_MT_V21
Definition: gsm_04_08.h:2203
@ GSM48_BCAP_MT_V22
Definition: gsm_04_08.h:2204
@ GSM48_BCAP_MT_V32
Definition: gsm_04_08.h:2208
@ GSM48_BCAP_MT_V22bis
Definition: gsm_04_08.h:2205
@ GSM48_BCAP_MT_AUTO_1
Definition: gsm_04_08.h:2210
@ GSM48_BCAP_MT_NONE
Definition: gsm_04_08.h:2202
@ GSM48_BCAP_MT_UNDEF
Definition: gsm_04_08.h:2209
static const char * gsm48_reject_value_name(enum gsm48_reject_value val)
Definition: gsm_04_08.h:2048
static uint8_t gsm48_hdr_trans_id(const struct gsm48_hdr *hdr)
Definition: gsm_04_08.h:1472
struct gsm48_cell_options cell_options
Definition: gsm_04_08.h:4
struct gsm48_rach_control rach_control
Definition: gsm_04_08.h:2
static bool gsm48_ta_is_valid(uint8_t ta)
Check if TA is valid according to 3GPP TS 44.018 § 10.5.2.40.
Definition: gsm_04_08.h:1488
uint8_t ta
Definition: gsm_04_08.h:2
static const char * osmo_lu_type_name(uint8_t lu_type)
Definition: gsm_04_08.h:1762
struct gsm48_classmark2 cm2
Definition: gsm_04_08.h:1
uint16_t cell_identity
Definition: gsm_04_08.h:1
gsm48_cause_loc
Definition: gsm_04_08.h:1919
@ GSM48_CAUSE_LOC_PRN_S_LU
Definition: gsm_04_08.h:1921
@ GSM48_CAUSE_LOC_PRN_S_RU
Definition: gsm_04_08.h:1925
@ GSM48_CAUSE_LOC_INN_NET
Definition: gsm_04_08.h:1927
@ GSM48_CAUSE_LOC_TRANS_NET
Definition: gsm_04_08.h:1923
@ GSM48_CAUSE_LOC_PUN_S_RU
Definition: gsm_04_08.h:1924
@ GSM48_CAUSE_LOC_PUN_S_LU
Definition: gsm_04_08.h:1922
@ GSM48_CAUSE_LOC_USER
Definition: gsm_04_08.h:1920
@ GSM48_CAUSE_LOC_NET_BEYOND
Definition: gsm_04_08.h:1928
uint8_t data[0]
Definition: gsm_04_08.h:3
gsm48_reject_value
Definition: gsm_04_08.h:2013
@ GSM48_REJECT_SRV_OPT_TMP_OUT_OF_ORDER
Definition: gsm_04_08.h:2027
@ GSM48_REJECT_INVALID_MANDANTORY_INF
Definition: gsm_04_08.h:2030
@ GSM48_REJECT_NETWORK_FAILURE
Definition: gsm_04_08.h:2022
@ GSM48_REJECT_GPRS_NOT_ALLOWED
Definition: gsm_04_08.h:2039
@ GSM48_REJECT_MSC_TMP_NOT_REACHABLE
Definition: gsm_04_08.h:2044
@ GSM48_REJECT_MSG_TYPE_NOT_COMPATIBLE
Definition: gsm_04_08.h:2032
@ GSM48_REJECT_IMSI_UNKNOWN_IN_VLR
Definition: gsm_04_08.h:2016
@ GSM48_REJECT_CONGESTION
Definition: gsm_04_08.h:2024
@ GSM48_REJECT_MSG_TYPE_NOT_IMPLEMENTED
Definition: gsm_04_08.h:2031
@ GSM48_REJECT_CALL_CAN_NOT_BE_IDENTIFIED
Definition: gsm_04_08.h:2028
@ GSM48_REJECT_ROAMING_NOT_ALLOWED
Definition: gsm_04_08.h:2021
@ GSM48_REJECT_SRV_OPT_NOT_SUPPORTED
Definition: gsm_04_08.h:2025
@ GSM48_REJECT_SERVICES_NOT_ALLOWED
Definition: gsm_04_08.h:2040
@ GSM48_REJECT_MSG_NOT_COMPATIBLE
Definition: gsm_04_08.h:2035
@ GSM48_REJECT_PLMN_NOT_ALLOWED
Definition: gsm_04_08.h:2019
@ GSM48_REJECT_ILLEGAL_ME
Definition: gsm_04_08.h:2018
@ GSM48_REJECT_INCORRECT_MESSAGE
Definition: gsm_04_08.h:2029
@ GSM48_REJECT_IMEI_NOT_ACCEPTED
Definition: gsm_04_08.h:2017
@ GSM48_REJECT_MS_IDENTITY_NOT_DERVIVABLE
Definition: gsm_04_08.h:2041
@ GSM48_REJECT_IMSI_UNKNOWN_IN_HLR
Definition: gsm_04_08.h:2014
@ GSM48_REJECT_INF_ELEME_NOT_IMPLEMENTED
Definition: gsm_04_08.h:2033
@ GSM48_REJECT_CONDTIONAL_IE_ERROR
Definition: gsm_04_08.h:2034
@ GSM48_REJECT_IMPLICITLY_DETACHED
Definition: gsm_04_08.h:2042
@ GSM48_REJECT_LOC_NOT_ALLOWED
Definition: gsm_04_08.h:2020
@ GSM48_REJECT_SYNCH_FAILURE
Definition: gsm_04_08.h:2023
@ GSM48_REJECT_PROTOCOL_ERROR
Definition: gsm_04_08.h:2036
@ GSM48_REJECT_RQD_SRV_OPT_NOT_SUPPORTED
Definition: gsm_04_08.h:2026
@ GSM48_REJECT_ILLEGAL_MS
Definition: gsm_04_08.h:2015
@ GSM48_REJECT_GPRS_NOT_ALLOWED_IN_PLMN
Definition: gsm_04_08.h:2043
#define GSM48_PDISC_NC_SS
Definition: gsm_04_08.h:1445
gsm48_cause_coding
Definition: gsm_04_08.h:1912
@ GSM48_CAUSE_CODING_RESERVED
Definition: gsm_04_08.h:1914
@ GSM48_CAUSE_CODING_NATIONAL
Definition: gsm_04_08.h:1915
@ GSM48_CAUSE_CODING_GSM
Definition: gsm_04_08.h:1916
@ GSM48_CAUSE_CODING_CCITT_Q931
Definition: gsm_04_08.h:1913
static const char * gsm48_chan_mode_name(enum gsm48_chan_mode val)
Definition: gsm_04_08.h:805
gsm48_bcap_coding
Definition: gsm_04_08.h:2137
@ GSM48_BCAP_CODING_GSM_STD
Definition: gsm_04_08.h:2138
uint8_t mi[0]
Definition: gsm_04_08.h:2
uint8_t l2_plen
Definition: gsm_04_08.h:0
gsm48_bcap_other_modem_type
Table 10.5.112/3GPP TS 24.008: Other modem type (octet 6d)
Definition: gsm_04_08.h:2214
@ GSM48_BCAP_OTHER_MT_V34
According to ITU-T Rec.
Definition: gsm_04_08.h:2216
@ GSM48_BCAP_OTHER_MT_NONE
No other modem type specified.
Definition: gsm_04_08.h:2215
static uint8_t gsm48_hdr_trans_id_no_ti(const struct gsm48_hdr *hdr)
Definition: gsm_04_08.h:1498
#define GSM48_PDISC_CC
Definition: gsm_04_08.h:1437
gsm48_bcap_ra
Definition: gsm_04_08.h:2149
@ GSM48_BCAP_RA_NONE
Definition: gsm_04_08.h:2150
@ GSM48_BCAP_RA_V110_X30
Definition: gsm_04_08.h:2151
@ GSM48_BCAP_RA_OTHER
Definition: gsm_04_08.h:2153
@ GSM48_BCAP_RA_X31
Definition: gsm_04_08.h:2152
static bool gsm48_acc_is_barred(struct gsm48_rach_control *rach_control, unsigned int acc)
Definition: gsm_04_08.h:688
uint8_t proto_discr
Definition: gsm_04_08.h:1
gsm48_bcap_tmod
Definition: gsm_04_08.h:2131
@ GSM48_BCAP_TMOD_PACKET
Definition: gsm_04_08.h:2133
@ GSM48_BCAP_TMOD_CIRCUIT
Definition: gsm_04_08.h:2132
uint8_t msg_type
Definition: gsm_04_08.h:2
uint8_t type
Definition: gsm_04_08_gprs.h:7
struct gad_raw_head h
type = GAD_TYPE_ELL_POINT
Definition: gsm_23_032.h:0
GSM utility functions, e.g.
gsm_band
Definition: gsm_utils.h:49
Definition: gsm_04_08.h:1206
struct gsm48_req_ref req_ref
Definition: gsm_04_08.h:1208
struct gsm48_hdr hdr
Definition: gsm_04_08.h:1207
uint8_t ta
Definition: gsm_04_08.h:1209
Definition: gsm_04_08.h:1226
uint8_t data[0]
Definition: gsm_04_08.h:1229
struct gsm48_chan_desc chan_desc
Definition: gsm_04_08.h:1228
Definition: gsm_04_08.h:809
uint8_t power_command
Definition: gsm_04_08.h:812
uint8_t data[0]
Definition: gsm_04_08.h:813
struct gsm48_chan_desc chan_desc
Definition: gsm_04_08.h:811
Definition: gsm_04_08.h:1233
uint8_t rr_cause
Definition: gsm_04_08.h:1234
Definition: gsm_04_08.h:1238
uint8_t rr_cause
Definition: gsm_04_08.h:1239
Definition: gsm_04_08.h:904
Definition: gsm_04_08.h:917
uint8_t sres[4]
Definition: gsm_04_08.h:918
Definition: gsm_04_08.h:833
Definition: gsm_04_08.h:1019
Definition: gsm_04_08.h:977
Definition: gsm_04_08.h:501
uint8_t chan_nr
Definition: gsm_04_08.h:502
union gsm48_chan_desc::@61 __attribute__((packed))
Definition: gsm_04_08.h:744
uint8_t mode
Definition: gsm_04_08.h:746
struct gsm48_chan_desc chan_desc
Definition: gsm_04_08.h:745
Definition: gsm_04_08.h:1254
uint8_t rr_cause
Definition: gsm_04_08.h:1255
uint8_t data[0]
Definition: gsm_04_08.h:1256
Definition: gsm_04_08.h:1260
Definition: gsm_04_08.h:17
Definition: gsm_04_08.h:31
Definition: gsm_04_08.h:62
uint8_t vamos_level
Definition: gsm_04_08.h:213
bool geran_net_sharing
Definition: gsm_04_08.h:221
bool extended_earfcn_val_range
Definition: gsm_04_08.h:227
bool utra_mult_band_ind_supp
Definition: gsm_04_08.h:224
uint8_t sms_value
Definition: gsm_04_08.h:83
bool umts_1_28_mcps_tdd_rat_cap
Definition: gsm_04_08.h:153
struct gsm48_classmark3::@49 gsm_750_assoc_radio_cap
struct gsm48_classmark3::@40 ms_meas_cap
uint8_t assoc_radio_cap_2
Definition: gsm_04_08.h:66
uint8_t cs_ps_srvcc_geran_utra
Definition: gsm_04_08.h:218
struct gsm48_classmark3::@44 gsm_400_bands_supp
bool mod_cap
Definition: gsm_04_08.h:99
uint8_t cs_ps_srvcc_geran_eutra
Definition: gsm_04_08.h:219
uint8_t sm_value
Definition: gsm_04_08.h:84
bool dtm_enhancements_cap
Definition: gsm_04_08.h:181
uint8_t mult_band_supp
Definition: gsm_04_08.h:64
bool e_utra_fdd_supp
Definition: gsm_04_08.h:207
bool ciphering_mode_setting_cap
Definition: gsm_04_08.h:205
bool single_slot_dtm
Definition: gsm_04_08.h:136
bool e_utra_mult_band_ind_supp
Definition: gsm_04_08.h:225
struct gsm48_classmark3::@53 dtm_gprs_high_multislot_cap
bool offset_required
Definition: gsm_04_08.h:186
bool geran_feature_package
Definition: gsm_04_08.h:154
bool extended_meas_cap
Definition: gsm_04_08.h:79
uint8_t tighter_capability
Definition: gsm_04_08.h:214
bool e_utra_tdd_supp
Definition: gsm_04_08.h:208
bool cdma200_rat_cap
Definition: gsm_04_08.h:131
struct gsm48_classmark3::@48 single_band_supp
uint8_t dl_advanced_rx_perf
Definition: gsm_04_08.h:180
bool er_band_support
Definition: gsm_04_08.h:223
bool umts_tdd_rat_cap
Definition: gsm_04_08.h:130
struct gsm48_classmark3::@47 dtm_gprs_multislot_cap
uint8_t mslot_class
Definition: gsm_04_08.h:75
bool present
Definition: gsm_04_08.h:69
struct gsm48_classmark3::@42 ecsd_multislot_cap
struct gsm48_classmark3::@39 hscsd_mult_slot_cap
bool prio_resel_supp
Definition: gsm_04_08.h:210
uint8_t assoc_radio_cap_1
Definition: gsm_04_08.h:65
struct gsm48_classmark3::@41 ms_pos_method_cap
struct gsm48_classmark3::@53::@60 dtm_egprs_high_multislot_cap
uint8_t r_gsm_assoc_radio_cap
Definition: gsm_04_08.h:70
struct gsm48_classmark3::@55 t_gsm_810_assoc_radio_cap
bool extended_tsc_set_cap_supp
Definition: gsm_04_08.h:226
bool utra_csg_cells_rep
Definition: gsm_04_08.h:211
struct gsm48_classmark3::@50 extended_dtm_gprs_multislot_cap
struct gsm48_classmark3::@43::@57 rf_pwr_cap_2
uint8_t a5_bits
Definition: gsm_04_08.h:63
struct gsm48_classmark3::@43::@56 rf_pwr_cap_1
uint8_t psk8_multislot_power_prof
Definition: gsm_04_08.h:172
struct gsm48_classmark3::@51 high_multislot_cap
struct gsm48_classmark3::@43 psk8_struct
bool e_utra_wb_rsrq_meas_supp
Definition: gsm_04_08.h:222
bool ucs2_treatment
Definition: gsm_04_08.h:78
bool umts_fdd_rat_cap
Definition: gsm_04_08.h:129
bool add_pos_cap
Definition: gsm_04_08.h:206
bool sel_ciph_dl_sacch
Definition: gsm_04_08.h:216
bool e_utra_meas_rep_supp
Definition: gsm_04_08.h:209
struct gsm48_classmark3::@54 gsm_710_assoc_radio_cap
struct gsm48_classmark3::@45 gsm_850_assoc_radio_cap
uint8_t gmsk_multislot_power_prof
Definition: gsm_04_08.h:171
struct gsm48_classmark3::@46 gsm_1900_assoc_radio_cap
uint8_t value
Definition: gsm_04_08.h:103
bool geran_feature_package_2
Definition: gsm_04_08.h:170
struct gsm48_classmark3::@50::@59 extended_dtm_egprs_multislot_cap
uint8_t assoc_radio_cap
Definition: gsm_04_08.h:116
struct gsm48_classmark3::@47::@58 dtm_egprs_multislot_cap
bool repeated_acch_capability
Definition: gsm_04_08.h:193
uint8_t method
Definition: gsm_04_08.h:89
struct gsm48_classmark3::@52 t_gsm_400_bands_supp
struct gsm48_classmark3::@38 r_support
Definition: gsm_04_08.h:1273
uint8_t cm2_len
Definition: gsm_04_08.h:1274
struct gsm48_classmark2 cm2
Definition: gsm_04_08.h:1275
uint8_t data[0]
Definition: gsm_04_08.h:1276
Definition: gsm_04_08.h:992
Definition: gsm_04_08.h:817
uint8_t mob_alloc[0]
Definition: gsm_04_08.h:821
struct gsm48_chan_desc chan_desc
Definition: gsm_04_08.h:819
uint8_t mob_alloc_len
Definition: gsm_04_08.h:820
Definition: gsm_04_08.h:825
uint8_t cause
Definition: gsm_04_08.h:828
uint32_t tlli
Definition: gsm_04_08.h:826
uint8_t ra_id[6]
Definition: gsm_04_08.h:827
uint8_t options[0]
Definition: gsm_04_08.h:829
Definition: gsm_04_08.h:948
Definition: gsm_04_08.h:941
uint8_t proto_discr
Definition: gsm_04_08.h:942
uint8_t msg_type
Definition: gsm_04_08.h:943
uint8_t data[0]
Definition: gsm_04_08.h:944
Definition: gsm_04_08.h:847
uint8_t ho_ref
Definition: gsm_04_08.h:850
uint8_t data[0]
Definition: gsm_04_08.h:852
struct gsm48_chan_desc chan_desc
Definition: gsm_04_08.h:849
struct gsm48_cell_desc cell_desc
Definition: gsm_04_08.h:848
uint8_t power_command
Definition: gsm_04_08.h:851
Definition: gsm_04_08.h:1243
uint8_t data[0]
Definition: gsm_04_08.h:1245
uint8_t rr_cause
Definition: gsm_04_08.h:1244
Definition: gsm_04_08.h:1249
uint8_t rr_cause
Definition: gsm_04_08.h:1250
Definition: gsm_04_08.h:1280
uint8_t proto_discr
Definition: gsm_04_08.h:1282
struct gsm48_req_ref req_ref1
Definition: gsm_04_08.h:1286
uint8_t timing_advance2
Definition: gsm_04_08.h:1290
uint8_t l2_plen
Definition: gsm_04_08.h:1281
uint8_t page_mode
Definition: gsm_04_08.h:1284
struct gsm48_chan_desc chan_desc2
Definition: gsm_04_08.h:1288
uint8_t mob_alloc_len
Definition: gsm_04_08.h:1291
uint8_t msg_type
Definition: gsm_04_08.h:1283
struct gsm48_chan_desc chan_desc1
Definition: gsm_04_08.h:1285
uint8_t mob_alloc[0]
Definition: gsm_04_08.h:1292
uint8_t timing_advance1
Definition: gsm_04_08.h:1287
struct gsm48_req_ref req_ref2
Definition: gsm_04_08.h:1289
Definition: gsm_04_08.h:1296
uint8_t page_mode
Definition: gsm_04_08.h:1300
uint8_t wait_ind4
Definition: gsm_04_08.h:1308
uint8_t msg_type
Definition: gsm_04_08.h:1299
uint8_t wait_ind1
Definition: gsm_04_08.h:1302
struct gsm48_req_ref req_ref3
Definition: gsm_04_08.h:1305
struct gsm48_req_ref req_ref2
Definition: gsm_04_08.h:1303
struct gsm48_req_ref req_ref1
Definition: gsm_04_08.h:1301
struct gsm48_req_ref req_ref4
Definition: gsm_04_08.h:1307
uint8_t wait_ind3
Definition: gsm_04_08.h:1306
uint8_t proto_discr
Definition: gsm_04_08.h:1298
uint8_t wait_ind2
Definition: gsm_04_08.h:1304
uint8_t rest[0]
Definition: gsm_04_08.h:1309
uint8_t l2_plen
Definition: gsm_04_08.h:1297
Definition: gsm_04_08.h:856
uint8_t mob_alloc[0]
Definition: gsm_04_08.h:865
uint8_t mob_alloc_len
Definition: gsm_04_08.h:864
struct gsm48_chan_desc chan_desc
Definition: gsm_04_08.h:861
uint8_t timing_advance
Definition: gsm_04_08.h:863
uint8_t proto_discr
Definition: gsm_04_08.h:858
uint8_t msg_type
Definition: gsm_04_08.h:859
struct gsm48_req_ref req_ref
Definition: gsm_04_08.h:862
uint8_t l2_plen
Definition: gsm_04_08.h:857
uint8_t page_mode
Definition: gsm_04_08.h:860
Definition: gsm_04_08.h:1219
struct gsm48_classmark1 classmark1
Definition: gsm_04_08.h:1220
uint8_t mi_len
Definition: gsm_04_08.h:1221
uint8_t mi[0]
Definition: gsm_04_08.h:1222
Definition: gsm_04_08.h:898
uint16_t lac
Definition: gsm_04_08.h:900
uint8_t digits[3]
Definition: gsm_04_08.h:899
Definition: gsm_04_08.h:922
Definition: gsm_04_08.h:534
Definition: gsm_04_08.h:603
Definition: gsm_04_08.h:1313
uint8_t msg_type
Definition: gsm_04_08.h:1316
uint8_t proto_discr
Definition: gsm_04_08.h:1315
uint8_t data[0]
Definition: gsm_04_08.h:1317
uint8_t l2_plen
Definition: gsm_04_08.h:1314
Definition: gsm_04_08.h:869
Definition: gsm_04_08.h:1400
Definition: gsm_04_08.h:1321
Definition: gsm_04_08.h:1342
Definition: gsm_04_08.h:1367
Definition: gsm_04_08.h:626
Definition: gsm_04_08.h:2255
uint8_t rac
Definition: gsm_04_08.h:2258
uint8_t digits[3]
Definition: gsm_04_08.h:2256
uint16_t lac
Definition: gsm_04_08.h:2257
Definition: gsm_04_08.h:638
Definition: gsm_04_08.h:249
Definition: gsm_04_08.h:420
Definition: gsm_04_08.h:359
Definition: gsm_04_08.h:304
Definition: gsm_04_08.h:697
Definition: gsm_04_08.h:1417
uint8_t rr_cause
Definition: gsm_04_08.h:1418
Definition: gsm_04_08.h:1033
Definition: gsm_04_08.h:713
Definition: gsm_04_08.h:727
Definition: gsm_04_08.h:1192
Definition: gsm_04_08.h:1213
uint8_t rest_octets[0]
Definition: gsm_04_08.h:1215
struct gsm48_system_information_type_header header
Definition: gsm_04_08.h:1214
Definition: gsm_04_08.h:1063
struct gsm48_system_information_type_header header
Definition: gsm_04_08.h:1064
struct gsm48_rach_control rach_control
Definition: gsm_04_08.h:1066
uint8_t rest_octets[0]
Definition: gsm_04_08.h:1067
uint8_t cell_channel_description[16]
Definition: gsm_04_08.h:1065
Definition: gsm_04_08.h:1071
struct gsm48_system_information_type_header header
Definition: gsm_04_08.h:1072
struct gsm48_rach_control rach_control
Definition: gsm_04_08.h:1075
uint8_t ncc_permitted
Definition: gsm_04_08.h:1074
uint8_t bcch_frequency_list[16]
Definition: gsm_04_08.h:1073
Definition: gsm_04_08.h:1079
struct gsm48_system_information_type_header header
Definition: gsm_04_08.h:1080
uint8_t bcch_frequency_list[16]
Definition: gsm_04_08.h:1081
uint8_t rest_octets[0]
Definition: gsm_04_08.h:1083
struct gsm48_rach_control rach_control
Definition: gsm_04_08.h:1082
Definition: gsm_04_08.h:1094
uint8_t rest_octets[0]
Definition: gsm_04_08.h:1096
struct gsm48_system_information_type_header header
Definition: gsm_04_08.h:1095
Definition: gsm_04_08.h:1087
uint8_t rest_octets[0]
Definition: gsm_04_08.h:1090
struct gsm48_system_information_type_header header
Definition: gsm_04_08.h:1088
uint8_t ext_bcch_frequency_list[16]
Definition: gsm_04_08.h:1089
Definition: gsm_04_08.h:1100
uint8_t rest_octets[0]
Definition: gsm_04_08.h:1108
struct gsm48_control_channel_descr control_channel_desc
Definition: gsm_04_08.h:1104
struct gsm48_loc_area_id lai
Definition: gsm_04_08.h:1103
struct gsm48_cell_sel_par cell_sel_par
Definition: gsm_04_08.h:1106
struct gsm48_cell_options cell_options
Definition: gsm_04_08.h:1105
uint16_t cell_identity
Definition: gsm_04_08.h:1102
struct gsm48_rach_control rach_control
Definition: gsm_04_08.h:1107
struct gsm48_system_information_type_header header
Definition: gsm_04_08.h:1101
Definition: gsm_04_08.h:1112
uint8_t data[0]
Definition: gsm_04_08.h:1120
struct gsm48_loc_area_id lai
Definition: gsm_04_08.h:1114
struct gsm48_cell_sel_par cell_sel_par
Definition: gsm_04_08.h:1115
struct gsm48_system_information_type_header header
Definition: gsm_04_08.h:1113
struct gsm48_rach_control rach_control
Definition: gsm_04_08.h:1116
Definition: gsm_04_08.h:1124
Definition: gsm_04_08.h:1139
Definition: gsm_04_08.h:1154
Definition: gsm_04_08.h:1169
Definition: gsm_04_08.h:962
Definition: gsm_04_08.h:1422
uint8_t cm2_len
Definition: gsm_04_08.h:1423
struct gsm48_classmark2 cm2
Definition: gsm_04_08.h:1424
uint8_t data[0]
Definition: gsm_04_08.h:1425
Definition: gsm_04_08.h:483
Definition: gsm_04_08.h:230
struct gsm48_classmark1 classmark1
Definition: gsm_04_08.h:232
uint8_t classmark3_len
Definition: gsm_04_08.h:235
bool classmark1_set
Definition: gsm_04_08.h:231
uint8_t classmark2_len
Definition: gsm_04_08.h:233
struct gsm48_classmark2 classmark2
Definition: gsm_04_08.h:234
uint8_t classmark3[14]
Definition: gsm_04_08.h:236