Skip to content

Commit 6e34b5f

Browse files
committed
Possible crash when CDIGIPEAT did not have optional alias.
1 parent c0e135a commit 6e34b5f

File tree

4 files changed

+93
-26
lines changed

4 files changed

+93
-26
lines changed

CHANGES.md

+16-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,21 @@
11

22
# Revision History #
33

4+
## Version 1.5 -- Development snapshot C -- September 2017 ##
5+
6+
This is a snapshot of ongoing development towards version of 1.5. Some features might be incomplete or broken or not documented properly.
7+
8+
### New Features: ###
9+
10+
- "kissutil" for troubleshooting a KISS TNC or interfacing to an application via files.
11+
12+
13+
### Bugs Fixed: ###
14+
15+
- Possible crash when CDIGIPEAT did not include the optional alias.
16+
17+
18+
419
## Version 1.5 -- Development snapshot B -- June 2017 ##
520

621
This is a snapshot of ongoing development towards version of 1.5. Some features might be incomplete or broken or not documented properly.
@@ -37,7 +52,7 @@ This is a snapshot of ongoing development towards version of 1.5. Some features
3752

3853
### Bugs Fixed: ###
3954

40-
- Little spelling errors in messages ????
55+
- Little typographical / spelling errors in messages.
4156

4257
----------
4358

cdigipeater.c

+48-15
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
//
22
// This file is part of Dire Wolf, an amateur radio packet TNC.
33
//
4-
// Copyright (C) 2016 John Langner, WB2OSZ
4+
// Copyright (C) 2016, 2017 John Langner, WB2OSZ
55
//
66
// This program is free software: you can redistribute it and/or modify
77
// it under the terms of the GNU General Public License as published by
@@ -59,7 +59,7 @@
5959

6060

6161
static packet_t cdigipeat_match (int from_chan, packet_t pp, char *mycall_rec, char *mycall_xmit,
62-
regex_t *alias, int to_chan, char *filter_str);
62+
int has_alias, regex_t *alias, int to_chan, char *cfilter_str);
6363

6464

6565
/*
@@ -149,9 +149,10 @@ void cdigipeater (int from_chan, packet_t pp)
149149
packet_t result;
150150

151151
result = cdigipeat_match (from_chan, pp, save_audio_config_p->achan[from_chan].mycall,
152-
save_audio_config_p->achan[to_chan].mycall,
153-
&save_cdigi_config_p->alias[from_chan][to_chan], to_chan,
154-
save_cdigi_config_p->filter_str[from_chan][to_chan]);
152+
save_audio_config_p->achan[to_chan].mycall,
153+
save_cdigi_config_p->has_alias[from_chan][to_chan],
154+
&(save_cdigi_config_p->alias[from_chan][to_chan]), to_chan,
155+
save_cdigi_config_p->cfilter_str[from_chan][to_chan]);
155156
if (result != NULL) {
156157
tq_append (to_chan, TQ_PRIO_0_HI, result);
157158
cdigi_count[from_chan][to_chan]++;
@@ -171,9 +172,10 @@ void cdigipeater (int from_chan, packet_t pp)
171172
packet_t result;
172173

173174
result = cdigipeat_match (from_chan, pp, save_audio_config_p->achan[from_chan].mycall,
174-
save_audio_config_p->achan[to_chan].mycall,
175-
&save_cdigi_config_p->alias[from_chan][to_chan], to_chan,
176-
save_cdigi_config_p->filter_str[from_chan][to_chan]);
175+
save_audio_config_p->achan[to_chan].mycall,
176+
save_cdigi_config_p->has_alias[from_chan][to_chan],
177+
&(save_cdigi_config_p->alias[from_chan][to_chan]), to_chan,
178+
save_cdigi_config_p->cfilter_str[from_chan][to_chan]);
177179
if (result != NULL) {
178180
tq_append (to_chan, TQ_PRIO_0_HI, result);
179181
cdigi_count[from_chan][to_chan]++;
@@ -203,12 +205,15 @@ void cdigipeater (int from_chan, packet_t pp)
203205
* packet is to be transmitted. Could be the same as
204206
* mycall_rec or different.
205207
*
206-
* alias - Compiled pattern for my station aliases.
207-
* Could be NULL if no aliases.
208+
* has_alias - True if we have an alias.
209+
*
210+
* alias - Optional compiled pattern for my station aliases.
211+
* Do NOT attempt to use this if 'has_alias' is false.
208212
*
209213
* to_chan - Channel number that we are transmitting to.
210214
*
211-
* filter_str - Filter expression string or NULL.
215+
* cfilter_str - Filter expression string for the from/to channel pair or NULL.
216+
* Note that only a subset of the APRS filters are applicable here.
212217
*
213218
* Returns: Packet object for transmission or NULL.
214219
* The original packet is not modified. The caller is responsible for freeing it.
@@ -227,20 +232,38 @@ void cdigipeater (int from_chan, packet_t pp)
227232

228233

229234
static packet_t cdigipeat_match (int from_chan, packet_t pp, char *mycall_rec, char *mycall_xmit,
230-
regex_t *alias, int to_chan, char *filter_str)
235+
int has_alias, regex_t *alias, int to_chan, char *cfilter_str)
231236
{
232237
int r;
233238
char repeater[AX25_MAX_ADDR_LEN];
234239
int err;
235240
char err_msg[100];
236241

242+
#if DEBUG
243+
text_color_set(DW_COLOR_DEBUG);
244+
dw_printf ("cdigipeat_match (from_chan=%d, pp=%p, mycall_rec=%s, mycall_xmit=%s, has_alias=%d, alias=%p, to_chan=%d, cfilter_str=%s\n",
245+
from_chan, pp, mycall_rec, mycall_xmit, has_alias, alias, to_chan, cfilter_str);
246+
#endif
247+
237248
/*
238249
* First check if filtering has been configured.
250+
* Note that we have three different config file filter commands:
251+
*
252+
* FILTER - APRS digipeating and IGate client side.
253+
* Originally this was the only one.
254+
* Should we change it to AFILTER to make it clearer?
255+
* CFILTER - Similar for connected moded digipeater.
256+
* IGFILTER - APRS-IS (IGate) server side - completely diffeent.
257+
* Confusing with similar name but much different idea.
258+
* Maybe this should be renamed to SUBSCRIBE or something like that.
259+
*
260+
* Logically this should come later, after an address/alias match.
261+
* But here we only have to do it once.
239262
*/
240263

241-
if (filter_str != NULL) {
264+
if (cfilter_str != NULL) {
242265

243-
if (pfilter(from_chan, to_chan, filter_str, pp, 0) != 1) {
266+
if (pfilter(from_chan, to_chan, cfilter_str, pp, 0) != 1) {
244267
return(NULL);
245268
}
246269
}
@@ -286,7 +309,11 @@ static packet_t cdigipeat_match (int from_chan, packet_t pp, char *mycall_rec, c
286309
/*
287310
* If we have an alias match, substitute MYCALL.
288311
*/
289-
if (alias != NULL) {
312+
if (has_alias) {
313+
#if DEBUG
314+
text_color_set(DW_COLOR_DEBUG);
315+
dw_printf ("Checking %s for alias match.\n", repeater);
316+
#endif
290317
err = regexec(alias,repeater,0,NULL,0);
291318
if (err == 0) {
292319
packet_t result;
@@ -304,6 +331,12 @@ static packet_t cdigipeat_match (int from_chan, packet_t pp, char *mycall_rec, c
304331
dw_printf ("%s\n", err_msg);
305332
}
306333
}
334+
else {
335+
#if DEBUG
336+
text_color_set(DW_COLOR_DEBUG);
337+
dw_printf ("No alias was specified.\n");
338+
#endif
339+
}
307340

308341
/*
309342
* Don't repeat it if we get here.

cdigipeater.h

+9-6
Original file line numberDiff line numberDiff line change
@@ -23,15 +23,18 @@ struct cdigi_config_s {
2323
/*
2424
* Rules for each of the [from_chan][to_chan] combinations.
2525
*/
26-
26+
int enabled[MAX_CHANS][MAX_CHANS]; // Is it enabled for from/to pair?
27+
28+
int has_alias[MAX_CHANS][MAX_CHANS]; // If there was no alias in the config file,
29+
// the structure below will not be set up
30+
// properly and an attempt to use it could
31+
// result in a crash. (fixed v1.5)
32+
// Not needed for [APRS] DIGIPEAT because
33+
// the alias is mandatory there.
2734
regex_t alias[MAX_CHANS][MAX_CHANS];
2835

29-
int enabled[MAX_CHANS][MAX_CHANS];
30-
31-
char *filter_str[MAX_CHANS+1][MAX_CHANS+1];
36+
char *cfilter_str[MAX_CHANS][MAX_CHANS];
3237
// NULL or optional Packet Filter strings such as "t/m".
33-
// Notice the size of arrays is one larger than normal.
34-
// That extra position is for the IGate.
3538
};
3639

3740
/*

config.c

+20-4
Original file line numberDiff line numberDiff line change
@@ -798,9 +798,9 @@ void config_init (char *fname, struct audio_s *p_audio_config,
798798
p_audio_config->achan[0].valid = 1;
799799

800800

801-
memset (p_digi_config, 0, sizeof(struct digi_config_s));
801+
memset (p_digi_config, 0, sizeof(struct digi_config_s)); // APRS digipeater
802802
p_digi_config->dedupe_time = DEFAULT_DEDUPE;
803-
memset (p_cdigi_config, 0, sizeof(struct cdigi_config_s));
803+
memset (p_cdigi_config, 0, sizeof(struct cdigi_config_s)); // Connected mode digipeater
804804

805805
memset (p_tt_config, 0, sizeof(struct tt_config_s));
806806
p_tt_config->gateway_enabled = 0;
@@ -2276,7 +2276,10 @@ void config_init (char *fname, struct audio_s *p_audio_config,
22762276
t = split(NULL,0);
22772277
if (t != NULL) {
22782278
e = regcomp (&(p_cdigi_config->alias[from_chan][to_chan]), t, REG_EXTENDED|REG_NOSUB);
2279-
if (e != 0) {
2279+
if (e == 0) {
2280+
p_cdigi_config->has_alias[from_chan][to_chan] = 1;
2281+
}
2282+
else {
22802283
regerror (e, &(p_cdigi_config->alias[from_chan][to_chan]), message, sizeof(message));
22812284
text_color_set(DW_COLOR_ERROR);
22822285
dw_printf ("Config file: Invalid alias matching pattern on line %d:\n%s\n",
@@ -2303,6 +2306,19 @@ void config_init (char *fname, struct audio_s *p_audio_config,
23032306
* FILTER from-chan to-chan filter_specification_expression
23042307
* FILTER from-chan IG filter_specification_expression
23052308
* FILTER IG to-chan filter_specification_expression
2309+
*
2310+
*
2311+
* Note that we have three different config file filter commands:
2312+
*
2313+
* FILTER - Originally for APRS digipeating but later enhanced
2314+
* to include IGate client side. Maybe it should be
2315+
* renamed AFILTER to make it clearer after adding CFILTER.
2316+
*
2317+
* CFILTER - Similar for connected moded digipeater.
2318+
*
2319+
* IGFILTER - APRS-IS (IGate) server side - completely diffeent.
2320+
* I'm not happy with this name because IG sounds like IGate
2321+
* which is really the client side. More comments later.
23062322
*/
23072323

23082324
else if (strcasecmp(t, "FILTER") == 0) {
@@ -2442,7 +2458,7 @@ void config_init (char *fname, struct audio_s *p_audio_config,
24422458
t = " "; /* Empty means permit nothing. */
24432459
}
24442460

2445-
p_cdigi_config->filter_str[from_chan][to_chan] = strdup(t);
2461+
p_cdigi_config->cfilter_str[from_chan][to_chan] = strdup(t);
24462462

24472463
//TODO1.2: Do a test run to see errors now instead of waiting.
24482464

0 commit comments

Comments
 (0)