Skip to content

Commit e6c721a

Browse files
committed
Better error checking.
1 parent 37cb544 commit e6c721a

File tree

1 file changed

+43
-13
lines changed

1 file changed

+43
-13
lines changed

config.c

+43-13
Original file line numberDiff line numberDiff line change
@@ -79,8 +79,6 @@
7979

8080

8181

82-
//#include "tq.h"
83-
8482
/*
8583
* Conversions from various units to meters.
8684
* There is some disagreement about the exact values for some of these.
@@ -902,7 +900,7 @@ void config_init (char *fname, struct audio_s *p_audio_config,
902900

903901
p_misc_config->maxframe_extended = AX25_K_MAXFRAME_EXTENDED_DEFAULT; /* Max frames to send before ACK. mod 128 "Window" size. */
904902

905-
p_misc_config->maxv22 = AX25_N2_RETRY_DEFAULT / 2; /* Max SABME before falling back to SABM. */
903+
p_misc_config->maxv22 = AX25_N2_RETRY_DEFAULT / 3; /* Max SABME before falling back to SABM. */
906904
p_misc_config->v20_addrs = NULL; /* Go directly to v2.0 for stations listed. */
907905
p_misc_config->v20_count = 0;
908906
p_misc_config->noxid_addrs = NULL; /* Don't send XID to these stations. */
@@ -1592,7 +1590,9 @@ void config_init (char *fname, struct audio_s *p_audio_config,
15921590
/*
15931591
* FIX_BITS n [ APRS | AX25 | NONE ] [ PASSALL ]
15941592
*
1595-
* - Attempt to fix frames with bad FCS.
1593+
* - Attempt to fix frames with bad FCS.
1594+
* - n is maximum number of bits to attempt fixing.
1595+
* - Optional sanity check & allow everything even with bad FCS.
15961596
*/
15971597

15981598
else if (strcasecmp(t, "FIX_BITS") == 0) {
@@ -1614,16 +1614,10 @@ void config_init (char *fname, struct audio_s *p_audio_config,
16141614
line, n, p_audio_config->achan[channel].fix_bits);
16151615
}
16161616

1617-
if (p_audio_config->achan[channel].fix_bits > RETRY_INVERT_SINGLE) {
1617+
if (p_audio_config->achan[channel].fix_bits > DEFAULT_FIX_BITS) {
16181618
text_color_set(DW_COLOR_INFO);
16191619
dw_printf ("Line %d: Using a FIX_BITS value greater than %d is not recommended for normal operation.\n",
1620-
line, RETRY_INVERT_SINGLE);
1621-
}
1622-
1623-
if (p_audio_config->achan[channel].fix_bits >= RETRY_INVERT_TWO_SEP) {
1624-
text_color_set(DW_COLOR_INFO);
1625-
dw_printf ("Line %d: Using a FIX_BITS value of %d will waste a lot of CPU power and produce wrong results.\n",
1626-
line, RETRY_INVERT_TWO_SEP);
1620+
line, DEFAULT_FIX_BITS);
16271621
}
16281622

16291623
t = split(NULL,0);
@@ -2209,6 +2203,12 @@ void config_init (char *fname, struct audio_s *p_audio_config,
22092203
dw_printf ("Config file: Missing FROM-channel on line %d.\n", line);
22102204
continue;
22112205
}
2206+
if ( ! alldigits(t)) {
2207+
text_color_set(DW_COLOR_ERROR);
2208+
dw_printf ("Config file, line %d: '%s' is not allowed for FROM-channel. It must be a number.\n",
2209+
line, t);
2210+
continue;
2211+
}
22122212
from_chan = atoi(t);
22132213
if (from_chan < 0 || from_chan >= MAX_CHANS) {
22142214
text_color_set(DW_COLOR_ERROR);
@@ -2233,6 +2233,12 @@ void config_init (char *fname, struct audio_s *p_audio_config,
22332233
dw_printf ("Config file: Missing TO-channel on line %d.\n", line);
22342234
continue;
22352235
}
2236+
if ( ! alldigits(t)) {
2237+
text_color_set(DW_COLOR_ERROR);
2238+
dw_printf ("Config file, line %d: '%s' is not allowed for TO-channel. It must be a number.\n",
2239+
line, t);
2240+
continue;
2241+
}
22362242
to_chan = atoi(t);
22372243
if (to_chan < 0 || to_chan >= MAX_CHANS) {
22382244
text_color_set(DW_COLOR_ERROR);
@@ -2317,7 +2323,7 @@ void config_init (char *fname, struct audio_s *p_audio_config,
23172323
}
23182324

23192325
/*
2320-
* DEDUPE - Time to suppress digipeating of duplicate packets.
2326+
* DEDUPE - Time to suppress digipeating of duplicate APRS packets.
23212327
*/
23222328

23232329
else if (strcasecmp(t, "DEDUPE") == 0) {
@@ -2354,6 +2360,12 @@ void config_init (char *fname, struct audio_s *p_audio_config,
23542360
dw_printf ("Config file: Missing FROM-channel on line %d.\n", line);
23552361
continue;
23562362
}
2363+
if ( ! alldigits(t)) {
2364+
text_color_set(DW_COLOR_ERROR);
2365+
dw_printf ("Config file, line %d: '%s' is not allowed for FROM-channel. It must be a number.\n",
2366+
line, t);
2367+
continue;
2368+
}
23572369
from_chan = atoi(t);
23582370
if (from_chan < 0 || from_chan >= MAX_CHANS) {
23592371
text_color_set(DW_COLOR_ERROR);
@@ -2377,6 +2389,12 @@ void config_init (char *fname, struct audio_s *p_audio_config,
23772389
dw_printf ("Config file: Missing TO-channel on line %d.\n", line);
23782390
continue;
23792391
}
2392+
if ( ! alldigits(t)) {
2393+
text_color_set(DW_COLOR_ERROR);
2394+
dw_printf ("Config file, line %d: '%s' is not allowed for TO-channel. It must be a number.\n",
2395+
line, t);
2396+
continue;
2397+
}
23802398
to_chan = atoi(t);
23812399
if (to_chan < 0 || to_chan >= MAX_CHANS) {
23822400
text_color_set(DW_COLOR_ERROR);
@@ -2416,6 +2434,12 @@ void config_init (char *fname, struct audio_s *p_audio_config,
24162434
dw_printf ("Config file: Missing FROM-channel on line %d.\n", line);
24172435
continue;
24182436
}
2437+
if ( ! alldigits(t)) {
2438+
text_color_set(DW_COLOR_ERROR);
2439+
dw_printf ("Config file, line %d: '%s' is not allowed for FROM-channel. It must be a number.\n",
2440+
line, t);
2441+
continue;
2442+
}
24192443
from_chan = atoi(t);
24202444
if (from_chan < 0 || from_chan >= MAX_CHANS) {
24212445
text_color_set(DW_COLOR_ERROR);
@@ -2443,6 +2467,12 @@ void config_init (char *fname, struct audio_s *p_audio_config,
24432467
dw_printf ("Config file: Missing TO-channel on line %d.\n", line);
24442468
continue;
24452469
}
2470+
if ( ! alldigits(t)) {
2471+
text_color_set(DW_COLOR_ERROR);
2472+
dw_printf ("Config file, line %d: '%s' is not allowed for TO-channel. It must be a number.\n",
2473+
line, t);
2474+
continue;
2475+
}
24462476
to_chan = atoi(t);
24472477
if (to_chan < 0 || to_chan >= MAX_CHANS) {
24482478
text_color_set(DW_COLOR_ERROR);

0 commit comments

Comments
 (0)