blob: e035ebf0708e0d157ade99a0ac3565c90e323f1d [file] [log] [blame]
Neels Hofmeyr17518fe2017-06-20 04:35:06 +02001/*! \file gsm_08_16.h
2 * GPRS Networks Service (NS) messages on the Gb interface.
Harald Welte8648e492012-06-17 13:12:51 +08003 * 3GPP TS 08.16 version 8.0.1 Release 1999 / ETSI TS 101 299 V8.0.1 (2002-05)
4 * 3GPP TS 48.016 version 6.5.0 Release 6 / ETSI TS 148 016 V6.5.0 (2005-11) */
5
Neels Hofmeyr17518fe2017-06-20 04:35:06 +02006#pragma once
7
Harald Welte8648e492012-06-17 13:12:51 +08008#include <stdint.h>
Alexander Couzens6a161492020-07-12 13:45:50 +02009#include <arpa/inet.h>
Harald Welte8648e492012-06-17 13:12:51 +080010
11/*! \addtogroup libgb
12 * @{
Neels Hofmeyr17518fe2017-06-20 04:35:06 +020013 * \file gprs_ns.h */
Harald Welte8648e492012-06-17 13:12:51 +080014
Neels Hofmeyr87e45502017-06-20 00:17:59 +020015/*! Common header of GPRS NS */
Harald Welte8648e492012-06-17 13:12:51 +080016struct gprs_ns_hdr {
17 uint8_t pdu_type; /*!< NS PDU type */
18 uint8_t data[0]; /*!< variable-length payload */
19} __attribute__((packed));
20
Harald Welte17a642d2018-07-01 19:09:52 +020021
22/*! Section 10.3.2c List of IP4 Elements */
23struct gprs_ns_ie_ip4_elem {
24 uint32_t ip_addr;
25 uint16_t udp_port;
26 uint8_t sig_weight;
27 uint8_t data_weight;
28} __attribute__ ((packed));
29
Alexander Couzens6a161492020-07-12 13:45:50 +020030/*! Section 10.3.2d List of IP6 Elements */
31struct gprs_ns_ie_ip6_elem {
32 struct in6_addr ip_addr;
33 uint16_t udp_port;
34 uint8_t sig_weight;
35 uint8_t data_weight;
36} __attribute__ ((packed));
37
Max584f4b62017-05-04 11:59:52 +020038extern const struct value_string gprs_ns_pdu_strings[];
39
Neels Hofmeyr87e45502017-06-20 00:17:59 +020040/*! NS PDU Type (TS 08.16, Section 10.3.7, Table 14) */
Harald Welte8648e492012-06-17 13:12:51 +080041enum ns_pdu_type {
42 NS_PDUT_UNITDATA = 0x00,
43 NS_PDUT_RESET = 0x02,
44 NS_PDUT_RESET_ACK = 0x03,
45 NS_PDUT_BLOCK = 0x04,
46 NS_PDUT_BLOCK_ACK = 0x05,
47 NS_PDUT_UNBLOCK = 0x06,
48 NS_PDUT_UNBLOCK_ACK = 0x07,
49 NS_PDUT_STATUS = 0x08,
50 NS_PDUT_ALIVE = 0x0a,
51 NS_PDUT_ALIVE_ACK = 0x0b,
52 /* TS 48.016 Section 10.3.7, Table 10.3.7.1 */
53 SNS_PDUT_ACK = 0x0c,
54 SNS_PDUT_ADD = 0x0d,
55 SNS_PDUT_CHANGE_WEIGHT = 0x0e,
56 SNS_PDUT_CONFIG = 0x0f,
57 SNS_PDUT_CONFIG_ACK = 0x10,
58 SNS_PDUT_DELETE = 0x11,
59 SNS_PDUT_SIZE = 0x12,
60 SNS_PDUT_SIZE_ACK = 0x13,
61};
62
Neels Hofmeyr87e45502017-06-20 00:17:59 +020063/*! NS Control IE (TS 08.16, Section 10.3, Table 12) */
Harald Welte8648e492012-06-17 13:12:51 +080064enum ns_ctrl_ie {
65 NS_IE_CAUSE = 0x00,
66 NS_IE_VCI = 0x01,
67 NS_IE_PDU = 0x02,
68 NS_IE_BVCI = 0x03,
69 NS_IE_NSEI = 0x04,
70 /* TS 48.016 Section 10.3, Table 10.3.1 */
71 NS_IE_IPv4_LIST = 0x05,
72 NS_IE_IPv6_LIST = 0x06,
73 NS_IE_MAX_NR_NSVC = 0x07,
74 NS_IE_IPv4_EP_NR = 0x08,
75 NS_IE_IPv6_EP_NR = 0x09,
76 NS_IE_RESET_FLAG = 0x0a,
77 NS_IE_IP_ADDR = 0x0b,
Harald Welte047f3872018-07-01 21:04:45 +020078 NS_IE_TRANS_ID = 0xff, /* osmocom. Spec has this IE but without IEI! */
Harald Welte8648e492012-06-17 13:12:51 +080079};
80
Neels Hofmeyr87e45502017-06-20 00:17:59 +020081/*! NS Cause (TS 08.16, Section 10.3.2, Table 13) */
Harald Welte8648e492012-06-17 13:12:51 +080082enum ns_cause {
83 NS_CAUSE_TRANSIT_FAIL = 0x00,
84 NS_CAUSE_OM_INTERVENTION = 0x01,
85 NS_CAUSE_EQUIP_FAIL = 0x02,
86 NS_CAUSE_NSVC_BLOCKED = 0x03,
87 NS_CAUSE_NSVC_UNKNOWN = 0x04,
88 NS_CAUSE_BVCI_UNKNOWN = 0x05,
89 NS_CAUSE_SEM_INCORR_PDU = 0x08,
90 NS_CAUSE_PDU_INCOMP_PSTATE = 0x0a,
91 NS_CAUSE_PROTO_ERR_UNSPEC = 0x0b,
92 NS_CAUSE_INVAL_ESSENT_IE = 0x0c,
93 NS_CAUSE_MISSING_ESSENT_IE = 0x0d,
94 /* TS 48.016 Section 10.3.2, Table 10.3.2.1 */
95 NS_CAUSE_INVAL_NR_IPv4_EP = 0x0e,
96 NS_CAUSE_INVAL_NR_IPv6_EP = 0x0f,
97 NS_CAUSE_INVAL_NR_NS_VC = 0x10,
98 NS_CAUSE_INVAL_WEIGH = 0x11,
99 NS_CAUSE_UNKN_IP_EP = 0x12,
100 NS_CAUSE_UNKN_IP_ADDR = 0x13,
101 NS_CAUSE_UNKN_IP_TEST_FAILED = 0x14,
102};