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 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554
|
/* **************************************************************** *
* *
* Aprx -- 2nd generation APRS I-gate and digi with *
* minimal requirement of esoteric facilities or *
* libraries of any kind beyond UNIX system libc. *
* *
* (c) Matti Aarnio - OH2MQK, 2007-2014 *
* *
* IGATE: Pass packets in between RF network and APRS-IS *
* *
* **************************************************************** */
#include "aprx.h"
const char *tnc2_verify_callsign_format(const char *t, int starok, int strictax25, const char *e)
{
const char *s = t;
for (; *s && s < e; ++s) {
/* Valid station-id charset is: [A-Z0-9] */
int c = *s;
if (!(('A' <= c && c <= 'Z') || ('0' <= c && c <= '9'))) {
/* Not A-Z, 0-9 */
break;
}
}
/* Now *s can be any of: '>,*-:' */
if (*s == '-') {
/* Minus and digits.. */
++s;
if (strictax25) {
if ('1' <= *s && *s <= '9')
++s;
if ('0' <= *s && *s <= '9')
++s;
} else {
// Up to 2 of any alphanumeric
if (('0' <= *s && *s <= '9') ||
('a' <= *s && *s <= 'z') ||
('A' <= *s && *s <= 'Z'))
++s;
if (('0' <= *s && *s <= '9') ||
('a' <= *s && *s <= 'z') ||
('A' <= *s && *s <= 'Z'))
++s;
}
}
if (*s == '*' /* && starok */ ) /* Star is present at way too many
SRC and DEST addresses, it is not
limited to VIA fields :-( */
++s;
if (s > e) {
if (debug)
printf("callsign scanner ran over end of buffer");
return NULL; /* Over the end-of-buffer */
}
if (s == t) {
if (debug)
printf("%s callsign format verify got bad character: '%c' in string: '%.20s'\n", strictax25 ? "Strict":"Lenient", *s, t);
return NULL; /* Too short ? */
}
if (*s != '>' && *s != ',' && *s != ':' && *s != 0) {
/* Terminates badly.. */
if (debug)
printf("%s callsign format verify got bad character: '%c' in string: '%.20s'\n", strictax25 ? "Strict":"Lenient", *s, t);
return NULL;
}
return s;
}
#ifndef DISABLE_IGATE
/*
* igate start -- make TX-igate allocations and inits
*/
void igate_start()
{
// Always relay all traffic from RF to APRSIS, other
// direction is handled per transmitter interface...
// enable_aprsis_rx_dupecheck();
}
static const char *tnc2_forbidden_source_stationid(const char *t, const int strictax25,const char *e)
{
const char *s;
s = tnc2_verify_callsign_format(t, 0, strictax25, e);
if (!s)
return NULL;
if (memcmp("WIDE", t, 4) == 0 || /* just plain wrong setting */
memcmp("RELAY", t, 5) == 0 || /* just plain wrong setting */
memcmp("TRACE", t, 5) == 0 || /* just plain wrong setting */
memcmp("TCPIP", t, 5) == 0 || /* just plain wrong setting */
memcmp("TCPXX", t, 5) == 0 || /* just plain wrong setting */
memcmp("N0CALL", t, 6) == 0 || /* TNC default setting */
memcmp("NOCALL", t, 6) == 0) /* TNC default setting */
return NULL;
return s;
}
static const char *tnc2_forbidden_destination_stationid(const char *t, const int strictax25, const char *e)
{
const char *s;
s = tnc2_verify_callsign_format(t, 0, strictax25, e);
if (!s)
return NULL;
if (memcmp("TCPIP", t, 5) == 0 || /* just plain wrong */
memcmp("TCPXX", t, 5) == 0 || /* Forbidden to gate */
memcmp("NOGATE", t, 5) == 0 || /* Forbidden to gate */
memcmp("RFONLY", t, 5) == 0 || /* Forbidden to gate */
memcmp("N0CALL", t, 6) == 0 || /* TNC default setting */
memcmp("NOCALL", t, 6) == 0) /* TNC default setting */
return NULL;
return s;
}
static const char *tnc2_forbidden_via_stationid(const char *t, const int strictax25, const char *e)
{
const char *s;
s = tnc2_verify_callsign_format(t, 1, strictax25, e);
if (!s)
return NULL;
if (memcmp("RFONLY", t, 6) == 0 ||
memcmp("NOGATE", t, 6) == 0 ||
memcmp("TCPIP", t, 5) == 0 ||
memcmp("TCPXX", t, 5) == 0)
return NULL;
return s;
}
void verblog(const char *portname, int istx, const char *tnc2buf, int tnc2len) {
if (verbout) {
printf("%ld\t%-9s ", (long) tick.tv_sec, portname);
printf("%s \t", istx ? "T":"R");
fwrite(tnc2buf, tnc2len, 1, stdout);
printf("\n");
}
}
/*
* The tnc2_rxgate() is actual RX I-gate filter function, and processes
* prepated TNC2 format text presentation of the packet.
* It does presume that the record is in a buffer that can be written on!
*/
void igate_to_aprsis(const char *portname, const int tncid, const char *tnc2buf, int tnc2addrlen, int tnc2len, const int discard0, const int strictax25_)
{
const char *tp, *t, *t0;
const char *s;
const char *ae;
const char *e;
int discard = discard0;
int strictax25 = strictax25_; // Callsigns per strict AX25 (not 3rd-party)
tp = tnc2buf; // 3rd-party recursion moves tp
ae = tp + tnc2addrlen; // 3rd-party recursion moves ae
e = tp + tnc2len; // stays the same all the time
redo_frame_filter:;
t = tp;
t0 = NULL;
/* t == beginning of the TNC2 format packet */
/*
* If any of following matches, discard the packet!
* next if ($axpath =~ m/^WIDE/io); # Begins with = is sourced by..
* next if ($axpath =~ m/^RELAY/io);
* next if ($axpath =~ m/^TRACE/io);
*/
s = tnc2_forbidden_source_stationid(t, strictax25, e);
if (s)
t = (char *) s;
else {
/* Forbidden in source fields.. */
if (debug)
printf("TNC2 forbidden source stationid: '%.20s'\n", t);
goto discard;
}
/* SOURCE>DESTIN,VIA,VIA:payload */
if (*t == '>') {
++t;
} else {
if (debug)
printf("TNC2 bad address format, expected '>', got: '%.20s'\n", t);
goto discard;
}
s = tnc2_forbidden_destination_stationid(t, strictax25, e);
if (s)
t = (char *) s;
else {
if (debug)
printf("TNC2 forbidden (by REGEX) destination stationid: '%.20s'\n", t);
goto discard;
}
while (*t && t < ae) {
if (*t == ',') {
++t;
} else {
if (debug)
printf("TNC2 via address syntax bug, wanted ',' or ':', got: '%.20s'\n", t);
goto discard;
}
/*
* next if ($axpath =~ m/RFONLY/io); # Has any of these in via fields..
* next if ($axpath =~ m/TCPIP/io);
* next if ($axpath =~ m/TCPXX/io);
* next if ($axpath =~ m/NOGATE/io); # .. drop it.
*/
s = tnc2_forbidden_via_stationid(t, strictax25, e);
if (!s) {
/* Forbidden in via fields.. */
if (debug)
printf("TNC2 forbidden VIA stationid, got: '%.20s'\n", t);
goto discard;
} else
t = (char *) s;
}
/* Now we have processed the address, this should be ABORT time if
the current character is not ':' ! */
if (*t == ':') {
/* Don't zero! */
++t;
} else {
if (debug)
printf("TNC2 address parsing did not find ':': '%.20s'\n",t);
goto discard;
}
t0 = t; // Start of payload
/* Now 't' points to data.. */
/*
if (tnc2_forbidden_data(t)) {
if (debug)
printf("Forbidden data in TNC2 packet - REGEX match");
goto discard;
}
*/
/* Will not relay messages that begin with '?' char: */
if (*t == '?') {
if (debug)
printf("Will not relay packets where payload begins with '?'\n");
goto discard;
}
/* Messages begining with '}' char are 3rd-party frames.. */
if (*t == '}') {
/* DEBUG OUTPUT TO STDOUT ! */
verblog(portname, 0, tp, tnc2len);
strictax25 = 0;
/* Copy the 3rd-party message content into begining of the buffer... */
++t; /* Skip the '}' */
tp = t;
tnc2len = e - t; /* New length */
// end pointer (e) does not change
// Address end must be searched again
ae = memchr(tp, ':', tnc2len);
if (ae == NULL) {
// Bad 3rd-party frame
goto discard;
}
tnc2addrlen = (int)(ae - tp);
/* .. and redo the filtering. */
goto redo_frame_filter;
}
/* At this point, the packet is good for I-gating. The receiving I-gate
* must not perform duplicate filtering, since the APRS-IS server
* may well use those duplicates for something, such as propagation
* analysis or smarter message routing. The APRS-IS server will do
* duplicate filtering just fine.
*
* The receiving I-gate should also not validate or limit the APRS packet
* format/contents either, because that would impose limits on
* future packet formats, experiments and improvements. The
* packet's sender and recipient should agree on the format only.
*/
/* _NO_ ending CRLF, the APRSIS subsystem adds it. */
discard = aprsis_queue(tp, tnc2addrlen, qTYPE_IGATED, portname, t0, e - t0); /* Send it.. */
/* DEBUG OUTPUT TO STDOUT ! */
verblog(portname, 0, tp, tnc2len);
if (0) {
discard:;
discard = -1;
}
if (discard) {
erlang_add(portname, ERLANG_DROP, tnc2len, 1);
rflog(portname, 'd', discard, tp, tnc2len);
} else {
rflog(portname, 'R', discard, tp, tnc2len);
}
}
/* ---------------------------------------------------------- */
/*
* Study APRS-IS received message's address header part
* to determine if it is not to be relayed back to RF..
*/
static int forbidden_to_gate_addr(const char *s)
{
if (memcmp(s, "TCPXX", 5) == 0)
return 1; /* Forbidden to be relayed */
if (memcmp(s, "NOGATE", 6) == 0)
return 1; /* Forbidden to be relayed */
if (memcmp(s, "RFONLY", 6) == 0)
return 1; /* Forbidden to be relayed */
if (memcmp(s, "qAX", 3) == 0)
return 1;
return 0; /* Found nothing forbidden */
}
/*
* For APRSIS -> Aprx -> RF gatewaying.
* Have to convert incoming TNC2 format messge to AX.25..
*
* See: http://www.aprs-is.net/IGateDetails.aspx
*
* ----------------------------------------------------------------
*
* Gate message packets and associated posits to RF if
*
* 1. the receiving station has been heard within range within
* a predefined time period (range defined as digi hops,
* distance, or both).
* 2. the sending station has not been heard via RF within
* a predefined time period (packets gated from the Internet
* by other stations are excluded from this test).
* 3. the sending station does not have TCPXX, NOGATE, or RFONLY
* in the header.
* 4. the receiving station has not been heard via the Internet
* within a predefined time period.
*
* A station is said to be heard via the Internet if packets from
* the station contain TCPIP* or TCPXX* in the header or if gated
* (3rd-party) packets are seen on RF gated by the station and
* containing TCPIP or TCPXX in the 3rd-party header (in other
* words, the station is seen on RF as being an IGate).
*
* Gate all packets to RF based on criteria set by the sysop (such
* as callsign, object name, etc.).
*
* ----------------------------------------------------------------
*
* TODO:
* a) APRS-IS relayed third-party frames are ignored.
*
* 3) The message path does not have TCPXX, NOGATE, RFONLY
* in it.
*
* Following steps are done in interface_receive_3rdparty()
*
* 1) The receiving station has been heard recently
* within defined range limits, and more recently
* than since given interval T1. (Range as digi-hops [N1]
* or coordinates, or both.)
*
* 2) The sending station has not been heard via RF
* within timer interval T2. (Third-party relayed
* frames are not analyzed for this.)
*
* 4) the receiving station has not been heard via the Internet
* within a predefined time period.
* A station is said to be heard via the Internet if packets
* from the station contain TCPIP* or TCPXX* in the header or
* if gated (3rd-party) packets are seen on RF gated by the
* station and containing TCPIP or TCPXX in the 3rd-party
* header (in other words, the station is seen on RF as being
* an IGate).
*
* 5) Gate all packets to RF based on criteria set by the sysop
* (such as callsign, object name, etc.).
*
* c) Drop everything else.
*
* Paths
*
* IGates should use the 3rd-party format on RF of
* IGATECALL>APRS,GATEPATH}FROMCALL>TOCALL,TCPIP,IGATECALL*:original packet data
* where GATEPATH is the path that the gated packet is to follow
* on RF. This format will allow IGates to prevent gating the packet
* back to APRS-IS.
*
* q constructs should never appear on RF.
* The I construct should never appear on RF.
* Except for within gated packets, TCPIP and TCPXX should not be
* used on RF.
*/
static void pick_heads(char *ax25, int headlen,
char *heads[20], int *headscount)
{
char *p = ax25;
char *e = ax25 + headlen;
char *p0 = p;
// if (debug)printf(" head parse: ");
while (p <= e) {
p0 = p;
while (p <= e) {
const char c = *p;
if (c != '>' && c != ',' && c != ':') {
++p;
continue;
}
*p++ = 0;
if (*headscount >= 19)
continue; /* too many head parts.. */
heads[*headscount] = p0;
*headscount += 1;
// if (debug) printf(" %-9s", p0);
break;
}
}
heads[*headscount] = NULL;
// if (debug)printf("\n");
}
static void aprsis_commentframe(const char *tnc2buf, int tnc2len) {
// TODO .. #TICK -> #TOCK ??
}
void igate_from_aprsis(const char *ax25, int ax25len)
{
// const char *p = ax25;
int colonidx;
int i;
const char *b;
// const char *e = p + ax25len; /* string end pointer */
// char axbuf[3000]; /* enough and then some more.. */
// char axbuf2[1000]; /* enough and then some more.. */
char *heads[20];
char *headsbuf;
int headscount = 0;
// char *s;
if (ax25[0] == '#') { // Comment line, timer tick, something such...
aprsis_commentframe(ax25, ax25len);
return;
}
if (ax25len > 520) {
/* Way too large a frame... */
if (debug)printf("APRSIS dataframe length is too large! (%d)\n",ax25len);
return;
}
b = memchr(ax25, ':', ax25len);
if (b == NULL) {
if (debug)printf("APRSIS dataframe does not have ':' in it\n");
return; // Huh? No double-colon on line, it is not proper packet line
}
colonidx = b-ax25;
if (colonidx+3 >= ax25len) {
/* Not really any data there.. */
if (debug)printf("APRSIS dataframe too short to contain anything\n");
return;
}
rflog("APRSIS",'R',0,ax25, ax25len);
headsbuf = alloca(colonidx+1);
memcpy(headsbuf, ax25, colonidx+1);
headscount = 0;
pick_heads(headsbuf, colonidx, heads, &headscount);
if (headscount < 4) {
// Less than 3 header fields coming from APRS-IS ?
if (debug)
printf("Not relayable packet! [1]\n");
return;
}
if (memcmp(heads[1],"RXTLM-",6)==0) {
if (debug)
printf("Not relayable packet! [2]\n");
return;
}
for (i = 0; i < headscount; ++i) {
/* 3) */
if (forbidden_to_gate_addr(heads[i])) {
if (debug)
printf("Not relayable packet! [3]: %s\n", heads[i]);
return;
}
}
++b; /* Skip the ':' */
/* a) */
/* Check for forbidden things that cause dropping the packet */
if (*b == '}') { /* Third-party packet from APRS-IS */
if (debug)
printf("Not relayable packet! [5]\n");
return; /* drop it */
}
// Following logic steps are done in interface_receive_3rdparty!
// FIXME: 1) - verify receiving station has been heard recently on radio
// FIXME: 2) - sending station has not been heard recently on radio
// FIXME: 4) - the receiving station has not been heard via the Internet within a predefined time period.
// FIXME: f) - ??
if (debug) printf(".. igate from aprsis\n");
interface_receive_3rdparty( &aprsis_interface,
heads, headscount, "TCPIP",
b, ax25len - (b-ax25) );
}
#endif
|