forked from szpajder/dumpvdl2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
esis.c
171 lines (160 loc) · 4.73 KB
/
esis.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
/*
* dumpvdl2 - a VDL Mode 2 message decoder and protocol analyzer
*
* Copyright (c) 2017 Tomasz Lemiech <szpajder@gmail.com>
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include <stdio.h>
#include <stdint.h>
#include <stdlib.h>
#include <string.h>
#include "esis.h"
#include "dumpvdl2.h"
#include "tlv.h"
const dict atn_traffic_types[] = {
{ 1, "ATS" },
{ 2, "AOC" },
{ 4, "ATN Administrative" },
{ 8, "General Comms" },
{ 16, "ATN System Mgmt" },
{ 0, NULL }
};
const dict atsc_traffic_classes[] = {
{ 1, "A" },
{ 2, "B" },
{ 4, "C" },
{ 8, "D" },
{ 16, "E" },
{ 32, "F" },
{ 64, "G" },
{ 128, "H" },
{ 0, NULL }
};
static char *fmt_subnet_caps(uint8_t *data, uint16_t len) {
if(len < 1) return strdup("<empty>");
char *tr_types = NULL, *tr_classes = NULL;
if((data[0] & 0x1f) == 0x1f)
tr_types = strdup("all");
else
tr_types = fmt_bitfield(data[0], atn_traffic_types);
if(data[0] & 1 && len > 1) { /* ATS traffic allowed - next octet is present and contains ATSC classes */
if(data[1] == 0xff)
tr_classes = strdup("all");
else
tr_classes = fmt_bitfield(data[1], atsc_traffic_classes);
}
char *buf = XCALLOC(512, sizeof(char));
sprintf(buf, "Permitted traffic: %s%s", tr_types, tr_classes ? " (supported ATSC classes: " : "");
if(tr_classes) {
strcat(buf, tr_classes);
strcat(buf, ")");
XFREE(tr_classes);
}
XFREE(tr_types);
return buf;
}
static const dict esis_pdu_types[] = {
{ ESIS_PDU_TYPE_ESH, "ES Hello" },
{ ESIS_PDU_TYPE_ISH, "IS Hello" },
{ 0, NULL }
};
static const tlv_dict esis_option_names[] = {
{ 0xc5, &fmt_hexstring, "Security" },
{ 0xcf, &fmt_hexstring, "Priority" },
/* QoS Maintenance not used in ATN (ICAO 9705 Table 5.8-2) */
{ 0x81, &fmt_subnet_caps, "Mobile Subnetwork Capabilities" },
{ 0x88, &fmt_hexstring, "ATN Data Link Capabilities" },
{ 0, NULL }
};
static int parse_octet_string(uint8_t *buf, uint32_t len, uint8_t **dst, uint8_t *dstlen) {
if(len == 0) {
debug_print("%s", "empty buffer\n");
return -1;
}
uint8_t buflen = *buf++; len--;
if(len < buflen) {
debug_print("buffer truncated: len %u < expected %u\n", len, buflen);
return -1;
}
*dst = buf;
*dstlen = buflen;
return 1 + buflen; // total number of consumed octets
}
esis_pdu_t *parse_esis_pdu(uint8_t *buf, uint32_t len, uint32_t *msg_type) {
static esis_pdu_t *pdu;
if(len < ESIS_HDR_LEN) {
debug_print("Too short (len %u < min len %u)\n", len, ESIS_HDR_LEN);
return NULL;
}
if(pdu == NULL) {
pdu = XCALLOC(1, sizeof(esis_pdu_t));
} else {
tlv_list_free(pdu->options);
memset(pdu, 0, sizeof(esis_pdu_t));
}
esis_hdr_t *hdr = (esis_hdr_t *)buf;
if(hdr->version != 1) {
debug_print("Unsupported PDU version %u\n", hdr->version);
return NULL;
}
pdu->holdtime = ((uint16_t)hdr->holdtime[0] << 8) | ((uint16_t)hdr->holdtime[1]);
debug_print("pid: %02x len: %u type: %u holdtime: %u\n",
hdr->pid, hdr->len, hdr->type, pdu->holdtime);
if(len < hdr->len) {
debug_print("Too short (len %u < PDU len %u)\n", len, hdr->len);
return NULL;
}
buf += ESIS_HDR_LEN; len -= ESIS_HDR_LEN;
debug_print("skipping %u hdr octets, len is now %u\n", ESIS_HDR_LEN, len);
int ret = parse_octet_string(buf, len, &pdu->net_addr, &pdu->net_addr_len);
if(ret < 0)
return NULL;
buf += ret; len -= ret;
switch(hdr->type) {
case ESIS_PDU_TYPE_ESH:
case ESIS_PDU_TYPE_ISH:
if(len > 0) {
pdu->options = tlv_deserialize(buf, len, 1);
if(pdu->options == NULL)
return NULL;
}
break;
default:
debug_print("Unknown PDU type 0x%02x\n", hdr->type);
return NULL;
}
pdu->hdr = hdr;
*msg_type |= MSGFLT_ESIS;
return pdu;
}
void output_esis(esis_pdu_t *pdu) {
esis_hdr_t *hdr = pdu->hdr;
char *pdu_name = (char *)dict_search(esis_pdu_types, hdr->type);
fprintf(outf, "ES-IS %s: Hold Time: %u sec\n", pdu_name, pdu->holdtime);
char *str = fmt_hexstring_with_ascii(pdu->net_addr, pdu->net_addr_len);
switch(hdr->type) {
case ESIS_PDU_TYPE_ESH:
fprintf(outf, " SA : %s\n", str);
break;
case ESIS_PDU_TYPE_ISH:
fprintf(outf, " NET: %s\n", str);
break;
}
XFREE(str);
if(pdu->options != NULL) {
fprintf(outf, " Options:\n");
output_tlv(outf, pdu->options, esis_option_names);
}
}