libosmogsm  1.5.2
Osmocom GSM library
ipaccess.h
Go to the documentation of this file.
1 
3 #pragma once
4 
5 #include <stdint.h>
6 
7 #define IPA_TCP_PORT_OML 3002
8 #define IPA_TCP_PORT_RSL 3003
9 
10 struct ipaccess_head {
11  uint16_t len; /* network byte order */
12  uint8_t proto;
13  uint8_t data[0];
14 } __attribute__ ((packed));
15 
17  uint8_t proto;
18  uint8_t data[0];
19 } __attribute__ ((packed));
20 
26 
27 
28  /* OpenBSC extensions */
31 };
32 
38  IPAC_PROTO_EXT_ORC = 0x04, /* OML Router Control */
39  IPAC_PROTO_EXT_GSUP = 0x05, /* GSUP GPRS extension */
40  IPAC_PROTO_EXT_OAP = 0x06, /* Osmocom Authn Protocol */
41  IPAC_PROTO_EXT_RSPRO = 0x07, /* Remote SIM protocol */
42 };
43 
45  IPAC_MSGT_PING = 0x00, /* Heartbeet */
46  IPAC_MSGT_PONG = 0x01, /* Heartbeat Ack */
47  IPAC_MSGT_ID_GET = 0x04, /* Identity Request */
48  IPAC_MSGT_ID_RESP = 0x05, /* Identity */
49  IPAC_MSGT_ID_ACK = 0x06, /* Identity Ack */
50  IPAC_MSGT_ID_NACK = 0x07, /* Identity Nack */
51  IPAC_MSGT_PROXY = 0x08, /* Proxy */
52  IPAC_MSGT_PROXY_ACK = 0x09, /* Proxy Ack */
53  IPAC_MSGT_PROXY_NACK = 0x0a, /* Proxy Nack */
54  IPAC_MSGT_SSL_INFO = 0x0b, /* SSL Info */
55 
56  /* OpenBSC extension */
58 };
59 
61  IPAC_IDTAG_SERNR = 0x00, /* Unit Serial Number */
62  IPAC_IDTAG_UNITNAME = 0x01, /* Unit Name */
63  IPAC_IDTAG_LOCATION1 = 0x02, /* Unit Location */
64  IPAC_IDTAG_LOCATION2 = 0x03, /* Unit Type */
65  IPAC_IDTAG_EQUIPVERS = 0x04, /* Hardware Version */
66  IPAC_IDTAG_SWVERSION = 0x05, /* Software Version */
67  IPAC_IDTAG_IPADDR = 0x06, /* IP Address */
68  IPAC_IDTAG_MACADDR = 0x07, /* Ethernet Address */
69  IPAC_IDTAG_UNIT = 0x08, /* Unit ID */
70  IPAC_IDTAG_USERNAME = 0x09, /* User Name */
71  IPAC_IDTAG_PASSWORD = 0x0a, /* Password */
72  IPAC_IDTAG_ACCESS_CLASS = 0x0b, /* Access Class */
73  IPAC_IDTG_APP_PROTO_VER = 0x0c, /* Application Protocol Version */
74 };
75 
76 /*
77  * Firmware specific header
78  */
79 struct sdp_firmware {
80  char magic[4];
81  char more_magic[2];
82  uint16_t more_more_magic;
83  uint32_t header_length;
84  uint32_t file_length;
85  char sw_part[20];
86  char text1[64];
87  char time[12];
88  char date[14];
89  char text2[10];
90  char version[20];
91  uint16_t table_offset;
92  /* stuff i don't know */
93 } __attribute__((packed));
94 
96  uint16_t something1;
97  char text1[64];
98  char time[12];
99  char date[14];
100  char text2[10];
101  char version[20];
102  uint32_t length;
103  uint32_t addr1;
104  uint32_t addr2;
105  uint32_t start;
106 } __attribute__((packed));
ipaccess_msgtype
Definition: ipaccess.h:44
@ IPAC_MSGT_ID_GET
Definition: ipaccess.h:47
@ IPAC_MSGT_ID_ACK
Definition: ipaccess.h:49
@ IPAC_MSGT_SCCP_OLD
Definition: ipaccess.h:57
@ IPAC_MSGT_PROXY
Definition: ipaccess.h:51
@ IPAC_MSGT_SSL_INFO
Definition: ipaccess.h:54
@ IPAC_MSGT_PONG
Definition: ipaccess.h:46
@ IPAC_MSGT_ID_NACK
Definition: ipaccess.h:50
@ IPAC_MSGT_ID_RESP
Definition: ipaccess.h:48
@ IPAC_MSGT_PROXY_NACK
Definition: ipaccess.h:53
@ IPAC_MSGT_PROXY_ACK
Definition: ipaccess.h:52
@ IPAC_MSGT_PING
Definition: ipaccess.h:45
ipaccess_proto_ext
Definition: ipaccess.h:33
@ IPAC_PROTO_EXT_GSUP
Definition: ipaccess.h:39
@ IPAC_PROTO_EXT_CTRL
Definition: ipaccess.h:34
@ IPAC_PROTO_EXT_ORC
Definition: ipaccess.h:38
@ IPAC_PROTO_EXT_LAC
Definition: ipaccess.h:36
@ IPAC_PROTO_EXT_OAP
Definition: ipaccess.h:40
@ IPAC_PROTO_EXT_RSPRO
Definition: ipaccess.h:41
@ IPAC_PROTO_EXT_SMSC
Definition: ipaccess.h:37
@ IPAC_PROTO_EXT_MGCP
Definition: ipaccess.h:35
ipaccess_id_tags
Definition: ipaccess.h:60
@ IPAC_IDTAG_PASSWORD
Definition: ipaccess.h:71
@ IPAC_IDTAG_USERNAME
Definition: ipaccess.h:70
@ IPAC_IDTG_APP_PROTO_VER
Definition: ipaccess.h:73
@ IPAC_IDTAG_EQUIPVERS
Definition: ipaccess.h:65
@ IPAC_IDTAG_MACADDR
Definition: ipaccess.h:68
@ IPAC_IDTAG_ACCESS_CLASS
Definition: ipaccess.h:72
@ IPAC_IDTAG_UNIT
Definition: ipaccess.h:69
@ IPAC_IDTAG_UNITNAME
Definition: ipaccess.h:62
@ IPAC_IDTAG_SWVERSION
Definition: ipaccess.h:66
@ IPAC_IDTAG_LOCATION2
Definition: ipaccess.h:64
@ IPAC_IDTAG_LOCATION1
Definition: ipaccess.h:63
@ IPAC_IDTAG_SERNR
Definition: ipaccess.h:61
@ IPAC_IDTAG_IPADDR
Definition: ipaccess.h:67
ipaccess_proto
Definition: ipaccess.h:21
@ IPAC_PROTO_RSL
Definition: ipaccess.h:22
@ IPAC_PROTO_IPACCESS
Definition: ipaccess.h:23
@ IPAC_PROTO_SCCP
Definition: ipaccess.h:24
@ IPAC_PROTO_OML
Definition: ipaccess.h:25
@ IPAC_PROTO_OSMO
Definition: ipaccess.h:29
@ IPAC_PROTO_MGCP_OLD
Definition: ipaccess.h:30
enum ipaccess_proto __attribute__
Definition: ipaccess.h:16
uint8_t proto
Definition: ipaccess.h:17
uint8_t data[0]
Definition: ipaccess.h:18
Definition: ipaccess.h:10
uint8_t data[0]
Definition: ipaccess.h:13
uint8_t proto
Definition: ipaccess.h:12
uint16_t len
Definition: ipaccess.h:11
Definition: ipaccess.h:79
char time[12]
Definition: ipaccess.h:87
char date[14]
Definition: ipaccess.h:88
uint32_t file_length
Definition: ipaccess.h:84
char text2[10]
Definition: ipaccess.h:89
char text1[64]
Definition: ipaccess.h:86
uint32_t header_length
Definition: ipaccess.h:83
uint16_t more_more_magic
Definition: ipaccess.h:82
uint16_t table_offset
Definition: ipaccess.h:91
char magic[4]
Definition: ipaccess.h:80
char sw_part[20]
Definition: ipaccess.h:85
char more_magic[2]
Definition: ipaccess.h:81
char version[20]
Definition: ipaccess.h:90
Definition: ipaccess.h:95
uint16_t something1
Definition: ipaccess.h:96
uint32_t addr2
Definition: ipaccess.h:104
uint32_t addr1
Definition: ipaccess.h:103
uint32_t start
Definition: ipaccess.h:105
uint32_t length
Definition: ipaccess.h:102
char date[14]
Definition: ipaccess.h:99
char text1[64]
Definition: ipaccess.h:97
char text2[10]
Definition: ipaccess.h:100
char version[20]
Definition: ipaccess.h:101
char time[12]
Definition: ipaccess.h:98