blob: 4f1d0b16e3e03a575e780a5ecd2c9473dff45210 [file] [log] [blame]
Neels Hofmeyr17518fe2017-06-20 04:35:06 +02001/*! \file ipaccess.h */
2
Sylvain Munaut12ba7782014-06-16 10:13:40 +02003#pragma once
Harald Welte4185fa52011-05-22 21:57:15 +02004
5#include <stdint.h>
6
7#define IPA_TCP_PORT_OML 3002
8#define IPA_TCP_PORT_RSL 3003
9
10struct ipaccess_head {
11 uint16_t len; /* network byte order */
12 uint8_t proto;
13 uint8_t data[0];
14} __attribute__ ((packed));
15
16struct ipaccess_head_ext {
17 uint8_t proto;
18 uint8_t data[0];
19} __attribute__ ((packed));
20
21enum ipaccess_proto {
22 IPAC_PROTO_RSL = 0x00,
23 IPAC_PROTO_IPACCESS = 0xfe,
24 IPAC_PROTO_SCCP = 0xfd,
25 IPAC_PROTO_OML = 0xff,
26
27
28 /* OpenBSC extensions */
29 IPAC_PROTO_OSMO = 0xee,
30 IPAC_PROTO_MGCP_OLD = 0xfc,
31};
32
33enum ipaccess_proto_ext {
34 IPAC_PROTO_EXT_CTRL = 0x00,
35 IPAC_PROTO_EXT_MGCP = 0x01,
36 IPAC_PROTO_EXT_LAC = 0x02,
Holger Hans Peter Freyther59b31752011-07-23 09:59:24 +020037 IPAC_PROTO_EXT_SMSC = 0x03,
Harald Welte900e1802014-08-18 11:34:17 +020038 IPAC_PROTO_EXT_ORC = 0x04, /* OML Router Control */
Holger Hans Peter Freyther44480482014-12-14 19:01:14 +010039 IPAC_PROTO_EXT_GSUP = 0x05, /* GSUP GPRS extension */
Neels Hofmeyr5eeb17a2015-09-23 23:18:15 +020040 IPAC_PROTO_EXT_OAP = 0x06, /* Osmocom Authn Protocol */
Harald Welteb99ed7f2018-08-13 20:54:44 +020041 IPAC_PROTO_EXT_RSPRO = 0x07, /* Remote SIM protocol */
Harald Welte4185fa52011-05-22 21:57:15 +020042};
43
44enum ipaccess_msgtype {
Harald Welte158143f2020-09-18 16:10:02 +020045 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 */
Harald Welte4185fa52011-05-22 21:57:15 +020055
56 /* OpenBSC extension */
57 IPAC_MSGT_SCCP_OLD = 0xff,
58};
59
60enum ipaccess_id_tags {
Harald Welte158143f2020-09-18 16:10:02 +020061 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 */
Harald Welte4185fa52011-05-22 21:57:15 +020074};
75
76/*
77 * Firmware specific header
78 */
79struct 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
95struct sdp_header_entry {
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));