-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathaprsmon.c
359 lines (327 loc) · 8.79 KB
/
aprsmon.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
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
/* aprsmon: An incredible simulation of a non-KISS TNC with MONitor ON
* (for UI frames only) on a Linux AX.25 interface. Why? So it can
* be run under inetd and connected to by programs like javAPRS that
* want to see a TNC datastream.
* (e.g. FROM>TO,DIGI,DIGI...DIGI:text)
*
* Runs in two modes:
* 1. Just spits out received data to stdout.
* 2. Buffers up some number of minutes worth of received packets into
* a segment. #1 mode dumps contents of this segment before going "live."
*
* A socket opened in SOCK_PACKET mode returns frames that are exactly
* what a KISS TNC sends: a zero, indicating data, followed by the
* contents of the AX.25 packet. This program has to decode all that
* AX.25 junk all over again just to print it out in generic TNC MONitor
* format.
*
* This program is derived from AX.25 utils 2.0.12 listen(8) written by
* (according to the lsm):
*
* [email protected] (Jonathan Naylor)
* [email protected] (Tomi Manninen)
* [email protected] (Alan Cox)
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License, version 2 as
* published by the Free Software Foundation.
*
* 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, write to the Free Software
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*
* (See the file "COPYING" that is included with this source distribution.)
*
* portions Copyright (c) 1996,1997,1998,1999 Alan Crosswell
* Alan Crosswell, N2YGK
* 144 Washburn Road
* Briarcliff Manor, NY 10510, USA
*/
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <sys/socket.h>
#include <net/if.h>
#include <netinet/if_ether.h>
#include <netinet/in.h>
#include <sys/ioctl.h>
#include <sys/time.h>
#include <sys/utsname.h>
#include <unistd.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <ctype.h>
#include <time.h>
#include <signal.h>
#include <linux/ax25.h>
#include "netax25/axconfig.h"
#ifndef HAVE_LIBAX25_EXTENSIONS
#include "libax25ext.h"
#endif
#ifdef USE_SHM
#include "aprsshm.h"
#endif
#include "mic_e.h"
#define ALEN 6
#define AXLEN 7
/* SSID mask and various flags that are stuffed into the SSID byte */
#define SSID 0x1E
#define HDLCAEB 0x01
#define REPEATED 0x80
#define UI 0x03 /* unnumbered information (unproto) */
#define PID_NO_L3 0xF0 /* no level-3 (text) */
void dump(FILE *f,unsigned char *, int,time_t);
void fmt(const unsigned char *, int, unsigned char **, unsigned char **,time_t);
char *pax25(char *, const unsigned char *);
void cleanup(int);
int master = 0; /* data collector */
int keepfor = 30; /* minutes to keep collected data. */
int raw = 0; /* print raw data */
char *infofile = "/var/ax25/aprsmon.info";
#ifndef PACKAGE
#define PACKAGE "aprsmon"
#endif
#ifndef VERSION
#define VERSION "$Revision$"
#endif
char *title = "Live data from Linux";
int main(int argc, char **argv)
{
unsigned char buffer[1500];
int size;
int s;
char *port = NULL, *dev = NULL;
struct sockaddr sa;
struct ifreq ifr;
int proto = ETH_P_AX25;
time_t now;
#ifdef USE_SHM
#define OPTS "p:amk:i:t:rv"
#else
#define OPTS "p:at:rv"
#endif
while ((s = getopt(argc, argv, OPTS)) != -1) {
switch (s) {
#ifdef USE_SHM
case 'm':
master++;
break;
case 'i':
infofile = optarg; /* file name for passing seg/sem info */
break;
case 'k': /* keep for optarg minutes */
keepfor = atoi(optarg);
break;
#endif
case 'p': /* entry in axports */
port = optarg;
break;
case 'a': /* allows 'hearing' my transmitted packets */
proto = ETH_P_ALL;
break;
case 'r': /* raw data printing */
raw++;
break;
case 't':
title = optarg;
break;
case 'v':
printf("aprsmon: %s-%s\n",PACKAGE,VERSION);
exit(0);
case '?':
#ifdef USE_SHM
fprintf(stderr, "Usage: aprsmon [-ar] [-p port] [-m [-k minutes]] [-i infofile] [-t title]\n");
#else
fprintf(stderr, "Usage: aprsmon [-ar] [-p port] [-t title]\n");
#endif
return 1;
}
}
if (ax25_config_load_ports() == 0)
fprintf(stderr, "aprsmon: no AX.25 port data configured\n");
if (port != NULL) {
if ((dev = ax25_config_get_dev(port)) == NULL) {
fprintf(stderr, "aprsmon: invalid port name - %s\n", port);
return 1;
}
}
if ((s = socket(AF_PACKET, SOCK_PACKET, htons(proto))) == -1) {
perror("socket");
return 1;
}
signal(SIGHUP,cleanup);
signal(SIGINT,cleanup);
signal(SIGQUIT,cleanup);
signal(SIGPWR,cleanup);
signal(SIGPIPE,cleanup);
#ifdef USE_SHM
if (master) {
if (shm_master(keepfor,infofile))
return 1;
} else
#endif
{
struct utsname me;
uname(&me);
printf("aprsmon>JAVA:javaMSG :Linux APRS server (%s-%s by Alan Crosswell, N2YGK) on %s running %s %s\r\n",
PACKAGE, VERSION, me.nodename, me.sysname, me.release);
printf("# %s\r\n",title);
#ifdef USE_SHM
(void) shm_slave(stdout,infofile);
#endif
printf("# Live data follows:\r\n");
printf("aprsmon>JAVA:javaTITLE:%s\r\n",title);
fflush(stdout);
}
for (;;) {
int asize;
asize = sizeof(sa);
if ((size = recvfrom(s, buffer, sizeof(buffer), 0, &sa, &asize)) == -1) {
perror("recv");
return 1;
}
if (dev != NULL && strcmp(dev, sa.sa_data) != 0)
continue;
time(&now);
if (proto == ETH_P_ALL) { /* promiscuous mode? */
strcpy(ifr.ifr_name, sa.sa_data);
if (ioctl(s, SIOCGIFHWADDR, &ifr) < 0
|| ifr.ifr_hwaddr.sa_family != AF_AX25)
continue; /* not AX25 so ignore this packet */
}
#ifdef USE_SHM
if (master)
collect(buffer,size);
else
#endif
dump(stdout,buffer,size,now);
}
}
void
dump(FILE *f,
unsigned char *buf,
int len,
time_t now)
{
unsigned char *cp1,*cp2;
fmt(buf,len,&cp1,&cp2,now);
if (*cp1) {
fprintf(f,"%s\r\n",cp1);
}
if (*cp2) {
fprintf(f,"%s\r\n",cp2);
}
fflush(f);
}
void
fmt(const unsigned char *buf,
int len,unsigned char **cp1,
unsigned char **cp2,
time_t now)
{
static unsigned char buf1[1000],buf2[100];
char mic1[200],mic2[200];
int l1,l2;
char from[10],to[10],digis[100];
int i,hadlast,l;
char tmp[15];
*buf1 = *buf2 = '\0';
*cp1 = buf1;
*cp2 = buf2;
if ((buf[0] & 0xf) != 0) /* not a kiss data frame */
return;
++buf;
--len;
if (len < (AXLEN+ALEN+1)) /* too short */
return;
pax25(to,buf); /* to call */
pax25(from,&buf[AXLEN]); /* from call */
buf+=AXLEN; /* skip over the from call now... */
len-=AXLEN;
*digis = '\0';
if (!(buf[ALEN] & HDLCAEB)) { /* is there a digipeater path? */
for (l=0, buf+=AXLEN, len-=AXLEN, i = 0;
i < 6 && len >= 0;
i++, len-=AXLEN, buf+=AXLEN) {
int nextrept = buf[AXLEN+ALEN]&REPEATED;
if (buf[ALEN]&HDLCAEB)
nextrept = 0;
pax25(tmp,buf);
if (*tmp) {
sprintf(&digis[l],",%s%s",tmp,(buf[ALEN]&REPEATED&&!nextrept)?"*":"");
++hadlast;
l += strlen(&digis[l]);
}
if (buf[ALEN] & HDLCAEB)
break;
}
}
buf += AXLEN;
len -= AXLEN;
if (len <= 0)
return; /* no data after callsigns */
if (*buf++ == UI && *buf++ == PID_NO_L3) {
len -= 2;
} else {
return; /* must have UI text to be useful */
}
/* now check to see if it's a mic-e frame & rewrite it */
if (fmt_mic_e(to,buf,len,mic1,&l1,mic2,&l2,now)) {
/* it was a MIC-E */
mic1[l1] = mic2[l2] = '\0';
if (l1)
sprintf(buf1,"%s>%s%s:%s",from,"APRS",digis,mic1);
if (l2)
sprintf(buf2,"%s>%s%s:%s",from,"APRS",digis,mic2);
} else if (fmt_x1j4(to,buf,len,mic1,&l1,mic2,&l2,now)) {
/* it was an X1J4 digi */
mic1[l1] = mic2[l2] = '\0';
if (l1)
sprintf(buf1,"%s>%s%s:%s",from,to,digis,mic1);
} else {
/* not mic-e/x1j4, so just print the packet without editing */
sprintf(buf1,"%s>%s%s:",from,to,digis);
l = strlen(buf1);
for (i = 0; i < len; i++,l++) {
buf1[l] = (raw||isprint(buf[i]))?buf[i]:' '; /* keep it clean */
}
buf1[l] = '\0';
}
return;
}
char *pax25(char *buf, const unsigned char *data)
{
int i, ssid;
char *s;
char c;
s = buf;
for (i = 0; i < ALEN; i++) {
c = (data[i] >> 1) & 0x7F;
if (!isalnum(c) && c != ' ') {
strcpy(buf, "[invalid]");
return buf;
}
if (c != ' ') *s++ = c;
}
if ((ssid = (data[ALEN] & SSID)>>1) != 0)
sprintf(s, "-%d", ssid);
else
*s = '\0';
return(buf);
}
void
cleanup(sig)
int sig;
{
#ifdef USE_SHM
shm_cleanup(sig); /* clean up shared memory, etc. */
#endif
exit(0);
}