blob: 0f5d54f2a4fa2736d258df1debf72d674b4721b3 [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 Welte4185fa52011-05-22 21:57:15 +020041};
42
43enum ipaccess_msgtype {
44 IPAC_MSGT_PING = 0x00,
45 IPAC_MSGT_PONG = 0x01,
46 IPAC_MSGT_ID_GET = 0x04,
47 IPAC_MSGT_ID_RESP = 0x05,
48 IPAC_MSGT_ID_ACK = 0x06,
49
50 /* OpenBSC extension */
51 IPAC_MSGT_SCCP_OLD = 0xff,
52};
53
54enum ipaccess_id_tags {
55 IPAC_IDTAG_SERNR = 0x00,
56 IPAC_IDTAG_UNITNAME = 0x01,
57 IPAC_IDTAG_LOCATION1 = 0x02,
58 IPAC_IDTAG_LOCATION2 = 0x03,
59 IPAC_IDTAG_EQUIPVERS = 0x04,
60 IPAC_IDTAG_SWVERSION = 0x05,
61 IPAC_IDTAG_IPADDR = 0x06,
62 IPAC_IDTAG_MACADDR = 0x07,
63 IPAC_IDTAG_UNIT = 0x08,
64};
65
66/*
67 * Firmware specific header
68 */
69struct sdp_firmware {
70 char magic[4];
71 char more_magic[2];
72 uint16_t more_more_magic;
73 uint32_t header_length;
74 uint32_t file_length;
75 char sw_part[20];
76 char text1[64];
77 char time[12];
78 char date[14];
79 char text2[10];
80 char version[20];
81 uint16_t table_offset;
82 /* stuff i don't know */
83} __attribute__((packed));
84
85struct sdp_header_entry {
86 uint16_t something1;
87 char text1[64];
88 char time[12];
89 char date[14];
90 char text2[10];
91 char version[20];
92 uint32_t length;
93 uint32_t addr1;
94 uint32_t addr2;
95 uint32_t start;
96} __attribute__((packed));