-
Notifications
You must be signed in to change notification settings - Fork 9
/
ax25dump.c
186 lines (177 loc) · 3.91 KB
/
ax25dump.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
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
/* AX25 header tracing
* Copyright 1991 Phil Karn, KA9Q
*/
#include <stdio.h>
#include "global.h"
#include "mbuf.h"
#include "ax25.h"
#include "lapb.h"
#include "trace.h"
#include "socket.h"
static char *decode_type(uint16 type);
/* Dump an AX.25 packet header */
void
ax25_dump(fp,bpp,check)
FILE *fp;
struct mbuf **bpp;
int check; /* Not used */
{
char tmp[AXBUF];
char frmr[3];
int control,pid,seg;
uint16 type;
int unsegmented;
struct ax25 hdr;
uint8 *hp;
fprintf(fp,"AX25: ");
/* Extract the address header */
if(ntohax25(&hdr,bpp) < 0){
/* Something wrong with the header */
fprintf(fp," bad header!\n");
return;
}
fprintf(fp,"%s",pax25(tmp,hdr.source));
fprintf(fp,"->%s",pax25(tmp,hdr.dest));
if(hdr.ndigis > 0){
fprintf(fp," v");
for(hp = hdr.digis[0]; hp < &hdr.digis[hdr.ndigis][0];
hp += AXALEN){
/* Print digi string */
fprintf(fp," %s%s",pax25(tmp,hp),
(hp[ALEN] & REPEATED) ? "*":"");
}
}
if((control = PULLCHAR(bpp)) == -1)
return;
putc(' ',fp);
type = ftype(control);
fprintf(fp,"%s",decode_type(type));
/* Dump poll/final bit */
if(control & PF){
switch(hdr.cmdrsp){
case LAPB_COMMAND:
fprintf(fp,"(P)");
break;
case LAPB_RESPONSE:
fprintf(fp,"(F)");
break;
default:
fprintf(fp,"(P/F)");
break;
}
}
/* Dump sequence numbers */
if((type & 0x3) != U) /* I or S frame? */
fprintf(fp," NR=%d",(control>>5)&7);
if(type == I || type == UI){
if(type == I)
fprintf(fp," NS=%d",(control>>1)&7);
/* Decode I field */
if((pid = PULLCHAR(bpp)) != -1){ /* Get pid */
if(pid == PID_SEGMENT){
unsegmented = 0;
seg = PULLCHAR(bpp);
fprintf(fp,"%s remain %u",seg & SEG_FIRST ?
" First seg;" : "",seg & SEG_REM);
if(seg & SEG_FIRST)
pid = PULLCHAR(bpp);
} else
unsegmented = 1;
switch(pid){
case PID_SEGMENT:
putc('\n',fp);
break; /* Already displayed */
case PID_ARP:
fprintf(fp," pid=ARP\n");
arp_dump(fp,bpp);
break;
case PID_NETROM:
fprintf(fp," pid=NET/ROM\n");
/* Don't verify checksums unless unsegmented */
netrom_dump(fp,bpp,unsegmented);
break;
case PID_IP:
fprintf(fp," pid=IP\n");
/* Don't verify checksums unless unsegmented */
ip_dump(fp,bpp,unsegmented);
break;
case PID_X25:
fprintf(fp," pid=X.25\n");
break;
case PID_TEXNET:
fprintf(fp," pid=TEXNET\n");
break;
case PID_NO_L3:
fprintf(fp," pid=Text\n");
break;
default:
fprintf(fp," pid=0x%x\n",pid);
}
}
} else if(type == FRMR && pullup(bpp,frmr,3) == 3){
fprintf(fp,": %s",decode_type(ftype(frmr[0])));
fprintf(fp," Vr = %d Vs = %d",(frmr[1] >> 5) & MMASK,
(frmr[1] >> 1) & MMASK);
if(frmr[2] & W)
fprintf(fp," Invalid control field");
if(frmr[2] & X)
fprintf(fp," Illegal I-field");
if(frmr[2] & Y)
fprintf(fp," Too-long I-field");
if(frmr[2] & Z)
fprintf(fp," Invalid seq number");
putc('\n',fp);
} else
putc('\n',fp);
}
static char *
decode_type(type)
uint16 type;
{
switch(type){
case I:
return "I";
case SABM:
return "SABM";
case DISC:
return "DISC";
case DM:
return "DM";
case UA:
return "UA";
case RR:
return "RR";
case RNR:
return "RNR";
case REJ:
return "REJ";
case FRMR:
return "FRMR";
case UI:
return "UI";
default:
return "[invalid]";
}
}
/* Return 1 if this packet is directed to us, 0 otherwise. Note that
* this checks only the ultimate destination, not the digipeater field
*/
int
ax_forus(iface,bp)
struct iface *iface;
struct mbuf *bp;
{
struct mbuf *bpp;
uint8 dest[AXALEN];
/* Duplicate the destination address */
if(dup_p(&bpp,bp,0,AXALEN) != AXALEN){
free_p(&bpp);
return 0;
}
if(pullup(&bpp,dest,AXALEN) < AXALEN)
return 0;
if(addreq(dest,iface->hwaddr))
return 1;
else
return 0;
}