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 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426
|
/********************************************************************
* APRX -- 2nd generation APRS-i-gate with *
* minimal requirement of esoteric facilities or *
* libraries of any kind beyond UNIX system libc. *
* *
* (c) Matti Aarnio - OH2MQK, 2007-2014 *
* *
********************************************************************/
/*
* Some parts of this code are copied from:
*
* aprsc
*
* (c) Heikki Hannikainen, OH7LZB <hessu@hes.iki.fi>
*
* This program is licensed under the BSD license, which can be found
* in the file LICENSE.
*
*/
/*
* A simple APRS parser from aprsc. Translated from Ham::APRS::FAP
* perl module (by OH2KKU).
*
* Only needs to get lat/lng out of the packet, other features would
* be unnecessary in this application, and slow down the parser.
* ... but lets still classify the packet, output filter needs that.
*
*/
#include "aprx.h"
#include <math.h>
#define DEBUG_LOG(...) if(debug)printf(__VA_ARGS__)
/*
* Check if the given character is a valid symbol table identifier
* or an overlay character. The set is different for compressed
* and uncompressed packets - the former has the overlaid number (0-9)
* replaced with n-j.
*/
static int valid_sym_table_compressed(char c)
{
return (c == '/' || c == '\\' || (c >= 0x41 && c <= 0x5A)
|| (c >= 0x61 && c <= 0x6A)); /* [\/\\A-Za-j] */
}
static int valid_sym_table_uncompressed(char c)
{
return (c == '/' || c == '\\' || (c >= 0x41 && c <= 0x5A)
|| (c >= 0x30 && c <= 0x39)); /* [\/\\A-Z0-9] */
}
/*
* Fill the pbuf_t structure with a parsed position and
* symbol table & code. Also does range checking for lat/lng
* and pre-calculates cosf(lat) for range filters.
*/
static int pbuf_fill_pos(struct pbuf_t *pb, const float lat, const float lng, const char sym_table, const char sym_code)
{
int bad = 0;
/* symbol table and code */
pb->symbol[0] = sym_table;
pb->symbol[1] = sym_code;
pb->symbol[2] = 0;
/* Is it perhaps a weather report ? */
if (sym_code == '_' && (sym_table == '/' || sym_table == '\\'))
pb->packettype |= T_WX;
if (sym_code == '@' && (sym_table == '/' || sym_table == '\\'))
pb->packettype |= T_WX; /* Hurricane */
bad |= (lat < -89.9 && -0.0001 <= lng && lng <= 0.0001);
bad |= (lat > 89.9 && -0.0001 <= lng && lng <= 0.0001);
if (-0.0001 <= lat && lat <= 0.0001) {
bad |= ( -0.0001 <= lng && lng <= 0.0001);
bad |= ( -90.01 <= lng && lng <= -89.99);
bad |= ( 89.99 <= lng && lng <= 90.01);
}
if (bad || lat < -90.0 || lat > 90.0 || lng < -180.0 || lng > 180.0) {
if (debug)
printf("\tposition out of range: lat %.3f lng %.3f", lat, lng);
return 0; /* out of range */
}
if (debug)
printf("\tposition ok: lat %.3f lng %.3f", lat, lng);
/* Pre-calculations for A/R/F/M-filter tests */
pb->lat = filter_lat2rad(lat); /* deg-to-radians */
pb->cos_lat = cosf(pb->lat); /* used in range filters */
pb->lng = filter_lon2rad(lng); /* deg-to-radians */
pb->flags |= F_HASPOS; /* the packet has positional data */
return 1;
}
/*
* Parse symbol from destination callsign
*/
static int get_symbol_from_dstcall_twochar(const char c1, const char c2, char *sym_table, char *sym_code)
{
//hlog(LOG_DEBUG, "\ttwochar %c %c", c1, c2);
if (c1 == 'B') {
if (c2 >= 'B' && c2 <= 'P') {
*sym_table = '/';
*sym_code = c2 - 'B' + '!';
return 1;
}
return 0;
}
if (c1 == 'P') {
if (c2 >= '0' && c2 <= '9') {
*sym_table = '/';
*sym_code = c2;
return 1;
}
if (c2 >= 'A' && c2 <= 'Z') {
*sym_table = '/';
*sym_code = c2;
return 1;
}
return 0;
}
if (c1 == 'M') {
if (c2 >= 'R' && c2 <= 'X') {
*sym_table = '/';
*sym_code = c2 - 'R' + ':';
return 1;
}
return 0;
}
if (c1 == 'H') {
if (c2 >= 'S' && c2 <= 'X') {
*sym_table = '/';
*sym_code = c2 - 'S' + '[';
return 1;
}
return 0;
}
if (c1 == 'L') {
if (c2 >= 'A' && c2 <= 'Z') {
*sym_table = '/';
*sym_code = c2 - 'A' + 'a';
return 1;
}
return 0;
}
if (c1 == 'J') {
if (c2 >= '1' && c2 <= '4') {
*sym_table = '/';
*sym_code = c2 - '1' + '{';
return 1;
}
return 0;
}
if (c1 == 'O') {
if (c2 >= 'B' && c2 <= 'P') {
*sym_table = '\\';
*sym_code = c2 - 'B' + '!';
return 1;
}
return 0;
}
if (c1 == 'A') {
if (c2 >= '0' && c2 <= '9') {
*sym_table = '\\';
*sym_code = c2;
return 1;
}
if (c2 >= 'A' && c2 <= 'Z') {
*sym_table = '\\';
*sym_code = c2;
return 1;
}
return 0;
}
if (c1 == 'N') {
if (c2 >= 'R' && c2 <= 'X') {
*sym_table = '\\';
*sym_code = c2 - 'R' + ':';
return 1;
}
return 0;
}
if (c1 == 'D') {
if (c2 >= 'S' && c2 <= 'X') {
*sym_table = '\\';
*sym_code = c2 - 'S' + '[';
return 1;
}
return 0;
}
if (c1 == 'S') {
if (c2 >= 'A' && c2 <= 'Z') {
*sym_table = '\\';
*sym_code = c2 - 'A' + 'a';
return 1;
}
return 0;
}
if (c1 == 'Q') {
if (c2 >= '1' && c2 <= '4') {
*sym_table = '\\';
*sym_code = c2 - '1' + '{';
return 1;
}
return 0;
}
return 0;
}
static int get_symbol_from_dstcall(struct pbuf_t *pb, char *sym_table, char *sym_code)
{
const char *d_start;
char type;
char overlay;
int sublength;
int numberid;
/* check that the destination call exists and is of the right size for symbol */
d_start = pb->srccall_end+1;
if (pb->dstcall_end_or_ssid - d_start < 5)
return 0; /* too short */
/* length of the parsed string */
sublength = pb->dstcall_end_or_ssid - d_start - 3;
if (sublength > 3)
sublength = 3;
#ifdef DEBUG_PARSE_APRS
if (debug)
printf("\tget_symbol_from_dstcall: %.*s (%d)", (int)(pb->dstcall_end_or_ssid - d_start), d_start, sublength);
#endif
if (strncmp(d_start, "GPS", 3) != 0 && strncmp(d_start, "SPC", 3) != 0 && strncmp(d_start, "SYM", 3) != 0)
return 0;
// hlog(LOG_DEBUG, "\ttesting %c %c %c", d_start[3], d_start[4], d_start[5]);
if (!isalnum(d_start[3]) || !isalnum(d_start[4]))
return 0;
if (sublength == 3 && !isalnum(d_start[5]))
return 0;
type = d_start[3];
if (sublength == 3) {
if (type == 'C' || type == 'E') {
if (!isdigit(d_start[4]))
return 0;
if (!isdigit(d_start[5]))
return 0;
numberid = (d_start[4] - 48) * 10 + (d_start[5] - 48);
*sym_code = numberid + 32;
if (type == 'C')
*sym_table = '/';
else
*sym_table = '\\';
#ifdef DEBUG_PARSE_APRS
if (debug)
printf("\tnumeric symbol id in dstcall: %.*s: table %c code %c",
(int)(pb->dstcall_end_or_ssid - d_start - 3), d_start + 3, *sym_table, *sym_code);
#endif
return 1;
} else {
/* secondary symbol table, with overlay
* Check first that we really are in the secondary symbol table
*/
overlay = d_start[5];
if ((type == 'O' || type == 'A' || type == 'N' ||
type == 'D' || type == 'S' || type == 'Q')
&& isalnum(overlay)) {
return get_symbol_from_dstcall_twochar(d_start[3], d_start[4], sym_table, sym_code);
}
return 0;
}
} else {
// primary or secondary table, no overlay
return get_symbol_from_dstcall_twochar(d_start[3], d_start[4], sym_table, sym_code);
}
return 0;
}
/*
* Parse NMEA position packets.
*/
static int parse_aprs_nmea(struct pbuf_t *pb, const char *body, const char *body_end)
{
float lat, lng;
const char *latp, *lngp;
int i, la, lo;
char lac, loc;
char sym_table, sym_code;
if (memcmp(body,"ULT",3) == 0) {
/* Ah.. "$ULT..." - that is, Ultimeter 2000 weather instrument */
pb->packettype |= T_WX;
return 1;
}
lat = lng = 0.0;
latp = lngp = NULL;
/* NMEA sentences to understand:
$GPGGA Global Positioning System Fix Data
$GPGLL Geographic Position, Latitude/Longitude Data
$GPRMC Remommended Minimum Specific GPS/Transit Data
$GPWPT Way Point Location ?? (bug in APRS specs ?)
$GPWPL Waypoint Load (not in APRS specs, but in NMEA specs)
$PNTS Seen on APRS-IS, private sentense based on NMEA..
$xxTLL Not seen on radio network, usually $RATLL - Target positions
reported by RAdar.
*/
if (memcmp(body, "GPGGA,", 6) == 0) {
/* GPGGA,175059,3347.4969,N,11805.7319,W,2,12,1.0,6.8,M,-32.1,M,,*7D
// v=1, looks fine
// GPGGA,000000,5132.038,N,11310.221,W,1,09,0.8,940.0,M,-17.7,,
// v=1, timestamp odd, coords look fine
// GPGGA,,,,,,0,00,,,,,,,*66
// v=0, invalid
// GPGGA,121230,4518.7931,N,07322.3202,W,2,08,1.0,40.0,M,-32.4,M,,*46
// v=2, looks valid ?
// GPGGA,193115.00,3302.50182,N,11651.22581,W,1,08,01.6,00465.90,M,-32.891,M,,*5F
// $GPGGA,hhmmss.dd,xxmm.dddd,<N|S>,yyymm.dddd,<E|W>,v,
// ss,d.d,h.h,M,g.g,M,a.a,xxxx*hh<CR><LF>
*/
latp = body+6; // over the keyword
while (latp < body_end && *latp != ',')
latp++; // scan over the timestamp
if (*latp == ',')
latp++; // .. and into latitude.
lngp = latp;
while (lngp < body_end && *lngp != ',')
lngp++;
if (*lngp == ',')
lngp++;
if (*lngp != ',')
lngp++;
if (*lngp == ',')
lngp++;
/* latp, and lngp point to start of latitude and longitude substrings
// respectively.
*/
} else if (memcmp(body, "GPGLL,", 6) == 0) {
/* $GPGLL,xxmm.dddd,<N|S>,yyymm.dddd,<E|W>,hhmmss.dd,S,M*hh<CR><LF> */
latp = body+6; // over the keyword
lngp = latp;
while (lngp < body_end && *lngp != ',') // over latitude
lngp++;
if (*lngp == ',')
lngp++; // and lat designator
if (*lngp != ',')
lngp++; // and lat designator
if (*lngp == ',')
lngp++;
/* latp, and lngp point to start of latitude and longitude substrings
// respectively
*/
} else if (memcmp(body, "GPRMC,", 6) == 0) {
/* $GPRMC,hhmmss.dd,S,xxmm.dddd,<N|S>,yyymm.dddd,<E|W>,s.s,h.h,ddmmyy,d.d, <E|W>,M*hh<CR><LF>
// ,S, = Status: 'A' = Valid, 'V' = Invalid
//
// GPRMC,175050,A,4117.8935,N,10535.0871,W,0.0,324.3,100208,10.0,E,A*3B
// GPRMC,000000,V,0000.0000,0,00000.0000,0,000,000,000000,,*01/It wasn't me :)
// invalid..
// GPRMC,000043,V,4411.7761,N,07927.0448,W,0.000,0.0,290697,10.7,W*57
// GPRMC,003803,A,3347.1727,N,11812.7184,W,000.0,000.0,140208,013.7,E*67
// GPRMC,050058,A,4609.1143,N,12258.8184,W,0.000,0.0,100208,18.0,E*5B
*/
latp = body+6; // over the keyword
while (latp < body_end && *latp != ',')
latp++; // scan over the timestamp
if (*latp == ',')
latp++; // .. and into VALIDITY
if (*latp != 'A' && *latp != 'V')
return 0; // INVALID !
if (*latp != ',')
latp++;
if (*latp == ',')
latp++;
/* now it points to latitude substring */
lngp = latp;
while (lngp < body_end && *lngp != ',')
lngp++;
if (*lngp == ',')
lngp++;
if (*lngp != ',')
lngp++;
if (*lngp == ',')
lngp++;
/* latp, and lngp point to start of latitude and longitude substrings
// respectively.
*/
} else if (memcmp(body, "GPWPL,", 6) == 0) {
/* $GPWPL,4610.586,N,00607.754,E,4*70
// $GPWPL,4610.452,N,00607.759,E,5*74
*/
latp = body+6;
} else if (memcmp(body, "PNTS,1,", 7) == 0) { /* PNTS version 1 */
/* $PNTS,1,0,11,01,2002,231932,3539.687,N,13944.480,E,0,000,5,Roppongi UID RELAY,000,1*35
// $PNTS,1,0,14,01,2007,131449,3535.182,N,13941.200,E,0,0.0,6,Oota-Ku KissUIDigi,000,1*1D
// $PNTS,1,0,17,02,2008,120824,3117.165,N,13036.481,E,49,059,1,Kagoshima,000,1*71
// $PNTS,1,0,17,02,2008,120948,3504.283,N,13657.933,E,00,000.0,6,,000,1*36
//
// From Alinco EJ-41U Terminal Node Controller manual:
//
// 5-4-7 $PNTS
// This is a private-sentence based on NMEA-0183. The data contains date,
// time, latitude, longitude, moving speed, direction, altitude plus a short
// message, group codes, and icon numbers. The EJ-41U does not analyze this
// format but can re-structure it.
// The data contains the following information:
// l $PNTS Starts the $PNTS sentence
// l version
// l the registered information. [0]=normal geographical location data.
// This is the only data EJ-41U can re-structure. [s]=Initial position
// for the course setting [E]=ending position for the course setting
// [1]=the course data between initial and ending [P]=the check point
// registration [A]=check data when the automatic position transmission
// is set OFF [R]=check data when the course data or check point data is
// received.
// l dd,mm,yyyy,hhmmss: Date and time indication.
// l Latitude in DMD followed by N or S
// l Longitude in DMD followed by E or W
// l Direction: Shown with the number 360 degrees divided by 64.
// 00 stands for true north, 16 for east. Speed in Km/h
// l One of 15 characters [0] to [9], [A] to [E].
// NTSMRK command determines this character when EJ-41U is used.
// l A short message up to 20 bites. Use NTSMSG command to determine this message.
// l A group code: 3 letters with a combination of [0] to [9], [A] to [Z].
// Use NTSGRP command to determine.
// l Status: [1] for usable information, [0] for non-usable information.
// l *hh<CR><LF> the check-sum and end of PNTS sentence.
*/
if (body+55 > body_end) {
DEBUG_LOG("body too short");
return 0; /* Too short.. */
}
latp = body+7; /* Over the keyword */
/* Accept any registered information code */
if (*latp++ == ',') return 0;
if (*latp++ != ',') return 0;
/* Scan over date+time info */
while (*latp != ',' && latp <= body_end) ++latp;
if (*latp == ',') ++latp;
while (*latp != ',' && latp <= body_end) ++latp;
if (*latp == ',') ++latp;
while (*latp != ',' && latp <= body_end) ++latp;
if (*latp == ',') ++latp;
while (*latp != ',' && latp <= body_end) ++latp;
if (*latp == ',') ++latp;
/* now it points to latitude substring */
lngp = latp;
while (lngp < body_end && *lngp != ',')
lngp++;
if (*lngp == ',')
lngp++;
if (*lngp != ',')
lngp++;
if (*lngp == ',')
lngp++;
/* latp, and lngp point to start of latitude and longitude substrings
// respectively.
*/
#if 1
} else if (memcmp(body, "GPGSA,", 6) == 0 ||
memcmp(body, "GPVTG,", 6) == 0 ||
memcmp(body, "GPGSV,", 6) == 0) {
/* Recognized but ignored */
return 1;
#endif
}
if (!latp || !lngp) {
if (debug)
fprintf(stderr, "Unknown NMEA: '%.11s' %.*s", pb->data, (int)(body_end - body), body);
return 0; /* Well.. Not NMEA frame */
}
// hlog(LOG_DEBUG, "NMEA parsing: %.*s", (int)(body_end - body), body);
// hlog(LOG_DEBUG, " lat=%.10s lng=%.10s", latp, lngp);
i = sscanf(latp, "%2d%f,%c,", &la, &lat, &lac);
if (i != 3)
return 0; // parse failure
i = sscanf(lngp, "%3d%f,%c,", &lo, &lng, &loc);
if (i != 3)
return 0; // parse failure
if (lac != 'N' && lac != 'S' && lac != 'n' && lac != 's')
return 0; // bad indicator value
if (loc != 'E' && loc != 'W' && loc != 'e' && loc != 'w')
return 0; // bad indicator value
// hlog(LOG_DEBUG, " lat: %c %2d %7.4f lng: %c %2d %7.4f",
// lac, la, lat, loc, lo, lng);
lat = (float)la + lat/60.0;
lng = (float)lo + lng/60.0;
if (lac == 'S' || lac == 's')
lat = -lat;
if (loc == 'W' || loc == 'w')
lng = -lng;
pb->packettype |= T_POSITION;
// Parse symbol from destination callsign
get_symbol_from_dstcall(pb, &sym_table, &sym_code);
#ifdef DEBUG_PARSE_APRS
if (debug) {
printf("\tget_symbol_from_dstcall: %.*s => %c%c",
(int)(pb->dstcall_end_or_ssid - pb->srccall_end-1), pb->srccall_end+1, sym_table, sym_code);
}
#endif
return pbuf_fill_pos(pb, lat, lng, sym_table, sym_code);
}
static int parse_aprs_telem(struct pbuf_t *pb, const char *body, const char *body_end)
{
// float lat = 0.0, lng = 0.0;
DEBUG_LOG("parse_aprs_telem");
//pbuf_fill_pos(pb, lat, lng, 0, 0);
return 1; // okay
}
/*
* Parse a MIC-E position packet
*
* APRS PROTOCOL REFERENCE 1.0.1 Chapter 10, page 42 (52 in PDF)
*
*/
static int parse_aprs_mice(struct pbuf_t *pb, const unsigned char *body, const unsigned char *body_end)
{
float lat = 0.0, lng = 0.0;
unsigned int lat_deg = 0, lat_min = 0, lat_min_frag = 0, lng_deg = 0, lng_min = 0, lng_min_frag = 0;
const char *d_start;
char dstcall[7];
char *p;
char sym_table, sym_code;
int posambiguity = 0;
int i;
DEBUG_LOG("parse_aprs_mice: %.*s", pb->packet_len-2, pb->data);
/* check packet length */
if (body_end - body < 8)
return 0;
/* check that the destination call exists and is of the right size for mic-e */
d_start = pb->srccall_end+1;
if (pb->dstcall_end_or_ssid - d_start != 6) {
DEBUG_LOG(".. bad destcall length! ");
return 0; /* eh...? */
}
/* validate destination call:
* A-K characters are not used in the last 3 characters
* and MNO are never used
*/
if (debug)printf(" destcall='%6.6s'",d_start);
for (i = 0; i < 3; i++)
if (!((d_start[i] >= '0' && d_start[i] <= '9')
|| (d_start[i] >= 'A' && d_start[i] <= 'L')
|| (d_start[i] >= 'P' && d_start[i] <= 'Z'))) {
DEBUG_LOG(".. bad destcall characters in posits 1..3");
return 0;
}
for (i = 3; i < 6; i++)
if (!((d_start[i] >= '0' && d_start[i] <= '9')
|| (d_start[i] == 'L')
|| (d_start[i] >= 'P' && d_start[i] <= 'Z'))) {
DEBUG_LOG(".. bad destcall characters in posits 4..6");
return 0;
}
DEBUG_LOG("\tpassed dstcall format check");
/* validate information field (longitude, course, speed and
* symbol table and code are checked). Not bullet proof..
*
* 0 1 23 4 5 6 7
* /^[\x26-\x7f][\x26-\x61][\x1c-\x7f]{2}[\x1c-\x7d][\x1c-\x7f][\x21-\x7b\x7d][\/\\A-Z0-9]/
*/
if (body[0] < 0x26 || body[0] > 0x7f) {
DEBUG_LOG("..bad infofield column 1");
return 0;
}
if (body[1] < 0x26 || body[1] > 0x61) {
DEBUG_LOG("..bad infofield column 2");
return 0;
}
if (body[2] < 0x1c || body[2] > 0x7f) {
DEBUG_LOG("..bad infofield column 3");
return 0;
}
if (body[3] < 0x1c || body[3] > 0x7f) {
DEBUG_LOG("..bad infofield column 4");
return 0;
}
if (body[4] < 0x1c || body[4] > 0x7d) {
DEBUG_LOG("..bad infofield column 5");
return 0;
}
if (body[5] < 0x1c || body[5] > 0x7f) {
DEBUG_LOG("..bad infofield column 6");
return 0;
}
if ((body[6] < 0x21 || body[6] > 0x7b)
&& body[6] != 0x7d) {
DEBUG_LOG("..bad infofield column 7");
return 0;
}
if (!valid_sym_table_uncompressed(body[7])) {
DEBUG_LOG("..bad symbol table entry on column 8");
return 0;
}
DEBUG_LOG("\tpassed info format check");
/* make a local copy, we're going to modify it */
strncpy(dstcall, d_start, 6);
dstcall[6] = 0;
/* First do the destination callsign
* (latitude, message bits, N/S and W/E indicators and long. offset)
*
* Translate the characters to get the latitude
*/
//fprintf(stderr, "\tuntranslated dstcall: %s\n", dstcall);
for (p = dstcall; *p; p++) {
if (*p >= 'A' && *p <= 'J')
*p -= 'A' - '0';
else if (*p >= 'P' && *p <= 'Y')
*p -= 'P' - '0';
else if (*p == 'K' || *p == 'L' || *p == 'Z')
*p = '_';
}
//fprintf(stderr, "\ttranslated dstcall: %s\n", dstcall);
// position ambiquity is going to get ignored now,
// it's not needed in this application.
if (dstcall[5] == '_') { dstcall[5] = '5'; posambiguity = 1; }
if (dstcall[4] == '_') { dstcall[4] = '5'; posambiguity = 2; }
if (dstcall[3] == '_') { dstcall[3] = '5'; posambiguity = 3; }
if (dstcall[2] == '_') { dstcall[2] = '3'; posambiguity = 4; }
if (dstcall[1] == '_' || dstcall[0] == '_') {
DEBUG_LOG("..bad pos-ambiguity on destcall");
return 0;
} // cannot use posamb here
// convert to degrees, minutes and decimal degrees,
// and then to a float lat
if (sscanf(dstcall, "%2u%2u%2u",
&lat_deg, &lat_min, &lat_min_frag) != 3) {
DEBUG_LOG("\tsscanf failed");
return 0;
}
lat = (float)lat_deg + (float)lat_min / 60.0 + (float)lat_min_frag / 6000.0;
// check the north/south direction and correct the latitude if necessary
if (d_start[3] <= 0x4c)
lat = 0 - lat;
/* Decode the longitude, the first three bytes of the body
* after the data type indicator. First longitude degrees,
* remember the longitude offset.
*/
lng_deg = body[0] - 28;
if (d_start[4] >= 0x50)
lng_deg += 100;
if (lng_deg >= 180 && lng_deg <= 189)
lng_deg -= 80;
else if (lng_deg >= 190 && lng_deg <= 199)
lng_deg -= 190;
/* Decode the longitude minutes */
lng_min = body[1] - 28;
if (lng_min >= 60)
lng_min -= 60;
/* ... and minute decimals */
lng_min_frag = body[2] - 28;
/* apply position ambiguity to longitude */
switch (posambiguity) {
case 0:
/* use everything */
lng = (float)lng_deg + (float)lng_min / 60.0
+ (float)lng_min_frag / 6000.0;
break;
case 1:
/* ignore last number of lng_min_frag */
lng = (float)lng_deg + (float)lng_min / 60.0
+ (float)(lng_min_frag - lng_min_frag % 10 + 5) / 6000.0;
break;
case 2:
/* ignore lng_min_frag */
lng = (float)lng_deg + ((float)lng_min + 0.5) / 60.0;
break;
case 3:
/* ignore lng_min_frag and last number of lng_min */
lng = (float)lng_deg + (float)(lng_min - lng_min % 10 + 5) / 60.0;
break;
case 4:
/* minute is unused -> add 0.5 degrees to longitude */
lng = (float)lng_deg + 0.5;
break;
default:
DEBUG_LOG(".. posambiguity code BUG!");
return 0;
}
/* check the longitude E/W sign */
if (d_start[5] >= 0x50)
lng = 0 - lng;
/* save the symbol table and code */
sym_code = body[6];
sym_table = body[7];
/* ok, we're done */
/*
fprintf(stderr, "\tlat %u %u.%u (%.4f) lng %u %u.%u (%.4f)\n",
lat_deg, lat_min, lat_min_frag, lat,
lng_deg, lng_min, lng_min_frag, lng);
fprintf(stderr, "\tsym '%c' '%c'\n", sym_table, sym_code);
*/
return pbuf_fill_pos(pb, lat, lng, sym_table, sym_code);
}
/*
* Parse a compressed APRS position packet
*
* APRS PROTOCOL REFERENCE 1.0.1 Chapter 9, page 36 (46 in PDF)
*
*/
static int parse_aprs_compressed(struct pbuf_t *pb, const char *body, const char *body_end)
{
char sym_table, sym_code;
int i;
int lat1, lat2, lat3, lat4;
int lng1, lng2, lng3, lng4;
float lat, lng;
DEBUG_LOG("parse_aprs_compressed");
/* A compressed position is always 13 characters long.
* Make sure we get at least 13 characters and that they are ok.
* Also check the allowed base-91 characters at the same time.
*/
if (body_end - body < 13) {
DEBUG_LOG("\ttoo short");
return 0; /* too short. */
}
sym_table = body[0]; /* has been validated before entering this function */
sym_code = body[9];
/* base-91 check */
for (i = 1; i <= 8; i++)
if (body[i] < 0x21 || body[i] > 0x7b)
return 0;
// fprintf(stderr, "\tpassed length and format checks, sym %c%c\n", sym_table, sym_code);
/* decode */
lat1 = (body[1] - 33);
lat2 = (body[2] - 33);
lat3 = (body[3] - 33);
lat4 = (body[4] - 33);
lat1 = ((((lat1 * 91) + lat2) * 91) + lat3) * 91 + lat4;
lng1 = (body[5] - 33);
lng2 = (body[6] - 33);
lng3 = (body[7] - 33);
lng4 = (body[8] - 33);
lng1 = ((((lng1 * 91) + lng2) * 91) + lng3) * 91 + lng4;
/* calculate latitude and longitude */
lat = 90.0F - ((float)(lat1) / 380926.0F);
lng = -180.0F + ((float)(lng1) / 190463.0F);
return pbuf_fill_pos(pb, lat, lng, sym_table, sym_code);
}
/*
* Parse an uncompressed "normal" APRS packet
*
* APRS PROTOCOL REFERENCE 1.0.1 Chapter 8, page 32 (42 in PDF)
*
*/
static int parse_aprs_uncompressed(struct pbuf_t *pb, const char *body, const char *body_end)
{
char posbuf[20];
unsigned int lat_deg = 0, lat_min = 0, lat_min_frag = 0, lng_deg = 0, lng_min = 0, lng_min_frag = 0;
float lat, lng;
char lat_hemi, lng_hemi;
char sym_table, sym_code;
int issouth = 0;
int iswest = 0;
DEBUG_LOG("parse_aprs_uncompressed");
if (body_end - body < 19) {
DEBUG_LOG("\ttoo short");
return 0;
}
/* make a local copy, so we can overwrite it at will. */
memcpy(posbuf, body, 19);
posbuf[19] = 0;
// fprintf(stderr, "\tposbuf: %s\n", posbuf);
// position ambiquity is going to get ignored now,
// it's not needed in this application.
/* lat */
if (posbuf[2] == ' ') posbuf[2] = '3';
if (posbuf[3] == ' ') posbuf[3] = '5';
if (posbuf[5] == ' ') posbuf[5] = '5';
if (posbuf[6] == ' ') posbuf[6] = '5';
/* lng */
if (posbuf[12] == ' ') posbuf[12] = '3';
if (posbuf[13] == ' ') posbuf[13] = '5';
if (posbuf[15] == ' ') posbuf[15] = '5';
if (posbuf[16] == ' ') posbuf[16] = '5';
// fprintf(stderr, "\tafter filling amb: %s\n", posbuf);
/* 3210.70N/13132.15E# */
if (sscanf(posbuf, "%2u%2u.%2u%c%c%3u%2u.%2u%c%c",
&lat_deg, &lat_min, &lat_min_frag, &lat_hemi, &sym_table,
&lng_deg, &lng_min, &lng_min_frag, &lng_hemi, &sym_code) != 10) {
DEBUG_LOG("\tsscanf failed");
return 0;
}
if (!valid_sym_table_uncompressed(sym_table))
sym_table = 0;
if (lat_hemi == 'S' || lat_hemi == 's')
issouth = 1;
else if (lat_hemi != 'N' && lat_hemi != 'n')
return 0; /* neither north or south? bail out... */
if (lng_hemi == 'W' || lng_hemi == 'w')
iswest = 1;
else if (lng_hemi != 'E' && lng_hemi != 'e')
return 0; /* neither west or east? bail out ... */
if (lat_deg > 89 || lng_deg > 179)
return 0; /* too large values for lat/lng degrees */
lat = (float)lat_deg + (float)lat_min / 60.0 + (float)lat_min_frag / 6000.0;
lng = (float)lng_deg + (float)lng_min / 60.0 + (float)lng_min_frag / 6000.0;
/* Finally apply south/west indicators */
if (issouth)
lat = 0.0 - lat;
if (iswest)
lng = 0.0 - lng;
// fprintf(stderr, "\tlat %u %u.%u %c (%.3f) lng %u %u.%u %c (%.3f)\n",
// lat_deg, lat_min, lat_min_frag, (int)lat_hemi, lat,
// lng_deg, lng_min, lng_min_frag, (int)lng_hemi, lng);
// fprintf(stderr, "\tsym '%c' '%c'\n", sym_table, sym_code);
return pbuf_fill_pos(pb, lat, lng, sym_table, sym_code);
}
/*
* Parse an APRS object
*
* APRS PROTOCOL REFERENCE 1.0.1 Chapter 11, page 58 (68 in PDF)
*
*/
static int parse_aprs_object(struct pbuf_t *pb, const char *body, const char *body_end)
{
int i;
int namelen = -1;
pb->packettype |= T_OBJECT;
DEBUG_LOG("parse_aprs_object");
/* check that the object name ends with either * or _ */
if (*(body + 9) != '*' && *(body + 9) != '_') {
DEBUG_LOG("\tinvalid object kill character");
return 0;
}
/* check that the timestamp ends with one of the valid timestamp type IDs */
char tz_end = body[16];
if (tz_end != 'z' && tz_end != 'h' && tz_end != '/') {
DEBUG_LOG("\tinvalid object timestamp character: '%c'", tz_end);
return 0;
}
/* check object's name - scan for non-printable characters and the last
* non-space character
*/
for (i = 0; i < 9; i++) {
if (body[i] < 0x20 || body[i] > 0x7e) {
DEBUG_LOG("\tobject name has unprintable characters");
return 0; // non-printable
}
if (body[i] != ' ')
namelen = i;
}
if (namelen < 0) {
DEBUG_LOG("\tobject has empty name");
return 0;
}
pb->srcname = body;
pb->srcname_len = namelen+1;
DEBUG_LOG("object name: '%.*s'\n", pb->srcname_len, pb->srcname);
/* Forward the location parsing onwards */
if (valid_sym_table_compressed(body[17]))
return parse_aprs_compressed(pb, body + 17, body_end);
if (body[17] >= '0' && body[17] <= '9')
return parse_aprs_uncompressed(pb, body + 17, body_end);
DEBUG_LOG("no valid position in object");
return 0;
}
/*
* Parse an APRS item
*
* APRS PROTOCOL REFERENCE 1.0.1 Chapter 11, page 59 (69 in PDF)
*
*/
static int parse_aprs_item(struct pbuf_t *pb, const char *body, const char *body_end)
{
int i;
pb->packettype |= T_ITEM;
DEBUG_LOG("parse_aprs_item");
/* check item's name - scan for non-printable characters and the
* ending character ! or _
*/
for (i = 0; i < 9 && body[i] != '!' && body[i] != '_'; i++) {
if (body[i] < 0x20 || body[i] > 0x7e) {
DEBUG_LOG("\titem name has unprintable characters");
return 0; /* non-printable */
}
}
if (body[i] != '!' && body[i] != '_') {
DEBUG_LOG("\titem name ends with neither ! or _");
return 0;
}
if (i < 3 || i > 9) {
DEBUG_LOG("\titem name has invalid length");
return 0;
}
pb->srcname = body;
pb->srcname_len = i;
//fprintf(stderr, "\titem name: '%.*s'\n", pb->srcname_len, pb->srcname);
/* Forward the location parsing onwards */
i++;
if (valid_sym_table_compressed(body[i]))
return parse_aprs_compressed(pb, body + i, body_end);
if (body[i] >= '0' && body[i] <= '9')
return parse_aprs_uncompressed(pb, body + i, body_end);
DEBUG_LOG("\tno valid position in item");
return 0;
}
#if 0
int parse_aprs_txgate(struct pbuf_t *pb, int look_inside_3rd_party, historydb_t *historydb)
{
int rc = parse_aprs(pb, look_inside_3rd_party, historydb);
if (pb->packettype & T_THIRDPARTY) {
// Tx-IGate needs to know from RF received frames, if there is
// source address that arrived from an Tx-IGate...
const char *body;
const char *body_end;
const char *pos_start;
const char *info_start = pb->info_start;
}
return rc;
}
#endif
/*
* Try to parse an APRS packet.
* Returns 1 if position was parsed successfully,
* 0 if parsing failed.
*
* Does also front-end part of the output filter's
* packet type classification job.
*
* TODO: Recognize TELEM packets in !/=@ packets too!
*
* Return 0 for parse failures, 1 for OK.
*/
int parse_aprs(struct pbuf_t*const pb, historydb_t*const historydb)
{
char packettype, poschar;
int paclen;
int rc;
const char *body;
const char *body_end;
const char *pos_start;
const char *info_start = pb->info_start;
int look_inside_3rd_party = 1; // Look there once..
pb->packettype = T_ALL;
pb->flags = 0;
if (!pb->info_start)
return 0;
if (pb->data[0] == 'C' && /* Perhaps CWOP ? */
pb->data[1] == 'W') {
const char *s = pb->data + 2;
const char *pe = pb->data + pb->packet_len;
for ( ; *s && s < pe ; ++s ) {
int c = *s;
if (c < '0' || c > '9')
break;
}
if (*s == '>')
pb->packettype |= T_CWOP;
}
/* the following parsing logic has been translated from Ham::APRS::FAP
* Perl module to C
*/
// ignore the CRLF in the end of the body
body_end = pb->data + pb->packet_len;
do {
// body is right after the packet type character
body = info_start + 1;
// length of the info field:
paclen = body_end - info_start;
if (paclen < 1) return 0; // consumed all, or empty packet
// Check the first character of the packet and
// determine the packet type
packettype = *info_start;
// Exit this loop unless it is 3rd-party frame
if (packettype != '}') break;
// Look for ':' character separating address block
// from 3rd-party body
info_start = memchr(body, ':', (int)(body_end - body));
if (info_start == NULL) {
// Not valid 3rd party frame!
return 0;
}
pb->packettype |= T_THIRDPARTY;
if (!look_inside_3rd_party)
return 1; // Correct 3rd-party, don't look further.
// Look once inside the 3rd party frame,
// this is used in aprx's tx-igate, which builds
// the 3rd-party frame before parsing message-to-be-tx:ed
// .. and doing content filters.
--look_inside_3rd_party;
pb->packettype = 0;
// Skip over the ':'
++info_start;
continue; // and loop..
} while (1);
switch (packettype) {
/* the following are obsolete mic-e types: 0x1c 0x1d
* case 0x1c:
* case 0x1d:
*/
case 0x27: /* ' */
case 0x60: /* ` */
/* could be mic-e, minimum body length 9 chars */
if (paclen >= 9) {
pb->packettype |= T_POSITION;
rc = parse_aprs_mice(pb,
(const unsigned char*)body,
(const unsigned char*)body_end);
DEBUG_LOG("\n");
return rc;
}
return 0; // bad
case '!':
if (*body == '!') { /* Ultimeter 2000 - "tnc2addr:!!" */
pb->packettype |= T_WX;
return 1; // Known Ultimeter format
}
case '=':
case '/':
case '@':
/* check that we won't run over right away */
if (body_end - body < 10)
return 0; // bad
/* Normal or compressed location packet, with or without
* timestamp, with or without messaging capability
*
* ! and / have messaging, / and @ have a prepended timestamp
*/
pb->packettype |= T_POSITION;
if (packettype == '/' || packettype == '@') {
/* With a prepended timestamp, jump over it. */
body += 7;
}
poschar = *body;
if (valid_sym_table_compressed(poschar)) { /* [\/\\A-Za-j] */
/* compressed position packet */
rc = 0;
if (body_end - body >= 13)
rc = parse_aprs_compressed(pb, body, body_end);
DEBUG_LOG("\n");
return rc;
} else if (poschar >= 0x30 && poschar <= 0x39) { /* [0-9] */
/* normal uncompressed position */
rc = 0;
if (body_end - body >= 19)
rc = parse_aprs_uncompressed(pb, body, body_end);
DEBUG_LOG("\n");
return rc;
}
return 0;
case '$':
if (body_end - body > 10) {
// Is it OK to declare it as position packet ?
rc = parse_aprs_nmea(pb, body, body_end);
DEBUG_LOG("\n");
return rc;
}
return 0;
case ':':
pb->packettype |= T_MESSAGE;
// quick and loose way to identify NWS and SKYWARN messages
// they do apparently originate from "WXSRV", but that is not
// guaranteed thing...
if (memcmp(body,"NWS-",4) == 0) // as seen on specification
pb->packettype |= T_NWS;
if (memcmp(body,"NWS_",4) == 0) // as seen on data
pb->packettype |= T_NWS;
if (memcmp(body,"SKY",3) == 0) // as seen on specification
pb->packettype |= T_NWS;
// Is it perhaps TELEMETRY related "message" ?
if ( body[9] == ':' &&
( memcmp( body+9, ":PARM.", 6 ) == 0 ||
memcmp( body+9, ":UNIT.", 6 ) == 0 ||
memcmp( body+9, ":EQNS.", 6 ) == 0 ||
memcmp( body+9, ":BITS.", 6 ) == 0 )) {
pb->packettype &= ~T_MESSAGE;
pb->packettype |= T_TELEMETRY;
// Fall through to recipient location lookup
}
// Or perhaps a DIRECTED QUERY ?
if (body[9] == ':' && body[10] == '?') {
pb->packettype &= ~T_MESSAGE;
pb->packettype |= T_QUERY;
// Fall through to recipient location lookup
}
// Now find out if the message RECIPIENT address is known
// to have some location data ? Because then we can treat
// them the same way in filters as we do those with real
// positions..
{
const char *p;
int i;
#ifndef DISABLE_IGATE
history_cell_t *history;
#endif
pb->dstname = body;
p = body;
for (i = 0; i < CALLSIGNLEN_MAX; ++i) {
// the recipient address is space padded
// to 9 chars, while our historydb is not.
if (*p == 0 || *p == ' ' || *p == ':')
break;
}
pb->dstname_len = p - body;
#ifndef DISABLE_IGATE
if (historydb != NULL) {
history = historydb_lookup( historydb, pb->dstname, i );
if (history != NULL) {
pb->lat = history->lat;
pb->lng = history->lon;
pb->cos_lat = history->coslat;
pb->flags |= F_HASPOS;
}
}
#endif
}
return 1;
case ';':
if (body_end - body > 29) {
rc = parse_aprs_object(pb, body, body_end);
DEBUG_LOG("\n");
return rc;
}
return 0; // too short
case '>':
pb->packettype |= T_STATUS;
return 1; // ok
case '<':
pb->packettype |= T_STATCAPA;
return 1; // ok
case '?':
pb->packettype |= T_QUERY;
return 1; // ok at igate/digi
case ')':
if (body_end - body > 18) {
rc = parse_aprs_item(pb, body, body_end);
DEBUG_LOG("\n");
return rc;
}
return 0; // too short
case 'T':
if (body_end - body > 18) {
pb->packettype |= T_TELEMETRY;
rc = parse_aprs_telem(pb, body, body_end);
DEBUG_LOG("\n");
return rc;
}
return 0; // too short
case '#': /* Peet Bros U-II Weather Station */
case '*': /* Peet Bros U-I Weather Station */
case '_': /* Weather report without position */
pb->packettype |= T_WX;
return 1; // good
case '{':
pb->packettype |= T_USERDEF;
return 1; // okay at digi?
// the packettype is never '}'
// case '}':
// pb->packettype |= T_THIRDPARTY;
// return 1; // 3rd-party is okay at digi
default:
break;
}
/* When all else fails, try to look for a !-position that can
* occur anywhere within the 40 first characters according
* to the spec. (X1J TNC digipeater bugs...)
*/
pos_start = memchr(body, '!', body_end - body);
if ((pos_start) && pos_start - body <= 39) {
poschar = *pos_start;
if (valid_sym_table_compressed(poschar)) { /* [\/\\A-Za-j] */
/* compressed position packet */
int rc = 0;
if (body_end - pos_start >= 13)
rc = parse_aprs_compressed(pb, pos_start, body_end);
DEBUG_LOG("\n");
return rc;
} else if (poschar >= 0x30 && poschar <= 0x39) { /* [0-9] */
/* normal uncompressed position */
int rc = 0;
if (body_end - pos_start >= 19)
rc = parse_aprs_uncompressed(pb, pos_start, body_end);
DEBUG_LOG("\n");
return rc;
}
}
return 0; // bad
}
/*
* Parse an aprs text message (optional, only done to messages addressed to
* SERVER
*/
int parse_aprs_message(const struct pbuf_t *pb, struct aprs_message_t * const am)
{
const char *p;
memset(am, 0, sizeof(*am));
if (!(pb->packettype & T_MESSAGE))
return -1;
if (pb->info_start[10] != ':')
return -2;
am->body = pb->info_start + 11;
/* -2 for the CRLF already in place */
am->body_len = pb->packet_len - 2 - (pb->info_start - pb->data);
/* search for { looking backwards from the end of the packet,
* it separates the msgid
*/
p = am->body + am->body_len - 1;
while (p > am->body && *p != '{')
p--;
if (*p == '{') {
am->msgid = p+1;
am->msgid_len = pb->packet_len - 2 - (am->msgid - pb->data);
am->body_len = p - am->body;
}
/* check if this is an ACK */
if ((!am->msgid_len) && am->body_len > 3
&& am->body[0] == 'a' && am->body[1] == 'c' && am->body[2] == 'k') {
am->is_ack = 1;
am->msgid = am->body + 3;
am->msgid_len = am->body_len - 3;
am->body_len = 0;
return 0;
}
/* check if this is an REJ */
if ((!am->msgid_len) && am->body_len > 3
&& am->body[0] == 'r' && am->body[1] == 'e' && am->body[2] == 'j') {
am->is_rej = 1;
am->msgid = am->body + 3;
am->msgid_len = am->body_len - 3;
am->body_len = 0;
return 0;
}
return 0;
}
|