Skip to content

Commit 0f2b241

Browse files
committed
More error checking for messages.
1 parent 366e0ab commit 0f2b241

File tree

1 file changed

+35
-1
lines changed

1 file changed

+35
-1
lines changed

src/decode_aprs.c

+35-1
Original file line numberDiff line numberDiff line change
@@ -1554,7 +1554,8 @@ static void aprs_message (decode_aprs_t *A, unsigned char *info, int ilen, int q
15541554
if (p->colon != ':') {
15551555
if (! quiet) {
15561556
text_color_set(DW_COLOR_ERROR);
1557-
dw_printf("APRS Message must begin with : 9 character addressee :\n");
1557+
dw_printf("APRS Message must begin with ':' 9 character addressee ':'\n");
1558+
dw_printf("Spaces must be added to shorter addressee to make 9 characters.\n");
15581559
}
15591560
A->g_message_subtype = message_subtype_invalid;
15601561
return;
@@ -1569,6 +1570,38 @@ static void aprs_message (decode_aprs_t *A, unsigned char *info, int ilen, int q
15691570
addressee[i--] = '\0';
15701571
}
15711572

1573+
// Anytone AT-D878UV 2 plus would pad out station name to 6 characters
1574+
// before appending the SSID. e.g. "AE7MK -5 "
1575+
1576+
// Test cases. First is valid. Others should produce errors:
1577+
//
1578+
// cbeacon sendto=r0 delay=0:10 info=":AE7MK-5 :test0"
1579+
// cbeacon sendto=r0 delay=0:15 info=":AE7MK-5:test1"
1580+
// cbeacon sendto=r0 delay=0:20 info=":AE7MK -5 :test2"
1581+
// cbeacon sendto=r0 delay=0:25 info=":AE7 -5 :test3"
1582+
1583+
static regex_t bad_addressee_re; /* Probably bad addressee. */
1584+
static int first_time = 1;
1585+
1586+
if (first_time) {
1587+
char emsg[100];
1588+
int e = regcomp (&bad_addressee_re, "[A-Z0-9]+ +-[0-9]", REG_EXTENDED);
1589+
if (e) {
1590+
regerror (e, &bad_addressee_re, emsg, sizeof(emsg));
1591+
dw_printf("%s:%d: %s\n", __FILE__, __LINE__, emsg);
1592+
}
1593+
first_time = 0;
1594+
}
1595+
1596+
#define MAXMATCH_AT 2
1597+
regmatch_t match[MAXMATCH_AT];
1598+
1599+
if (regexec (&bad_addressee_re, addressee, MAXMATCH_AT, match, 0) == 0) {
1600+
text_color_set(DW_COLOR_ERROR);
1601+
dw_printf("Malformed addressee with space between station name and SSID.\n");
1602+
dw_printf("Please tell message sender this is invalid.\n");
1603+
}
1604+
15721605
strlcpy (A->g_addressee, addressee, sizeof(A->g_addressee));
15731606

15741607

@@ -4135,6 +4168,7 @@ static void process_comment (decode_aprs_t *A, char *pstart, int clen)
41354168

41364169
static regex_t base91_tel_re; /* Base 91 compressed telemetry data. */
41374170

4171+
41384172
int e;
41394173
char emsg[100];
41404174
#define MAXMATCH 4

0 commit comments

Comments
 (0)