Skip to content

Commit 74ac481

Browse files
committed
New client side packet filter to select "messages" only to stations that have been heard nearby recently. This is now the default if no IS to RF filter is specified.
Expanded debug options so you can understand what is going on with packet filtering. Added new document Successful-APRS-IGate-Operation.pdf with IGate background, configuration, and troubleshooting tips.
1 parent 3516de7 commit 74ac481

23 files changed

+1564
-141
lines changed

CHANGES.md

+30
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,36 @@
22
# Revision History #
33

44

5+
----------
6+
7+
## Version 1.4 -- Development snapshot G -- January 2017 ##
8+
9+
This is a snapshot at some semi-stable point in the development of the next version. It is not well tested. New features might be incomplete, poorly documented, and subject to change.
10+
11+
12+
### New Features: ###
13+
14+
- New client side packet filter to select "messages" only to stations that have been heard nearby recently. This is now the default if no IS to RF filter is specified.
15+
16+
- Expanded debug options so you can understand what is going on with packet filtering.
17+
18+
- Added new document ***Successful-APRS-IGate-Operation.pdf*** with IGate background, configuration, and troubleshooting tips.
19+
20+
21+
----------
22+
23+
## Version 1.4 -- Development snapshot F -- December 2016 ##
24+
25+
This is a snapshot at some semi-stable point in the development of the next version. It is not well tested. New features might be incomplete, poorly documented, and subject to change.
26+
27+
28+
### Bugs Fixed: ###
29+
30+
- -p command line option caused segmentation fault with glibc >= 2.24.
31+
32+
33+
34+
535

636
----------
737

Makefile.linux

+53-3
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,25 @@ all : $(APPS) direwolf.desktop direwolf.conf
1313

1414
CC := gcc
1515

16+
# Just for fun, let's see how clang compares to gcc. First install like this:
17+
# sudo apt-get update
18+
# apt-cache search clang
19+
# sudo apt-get install clang-3.5
20+
#
21+
# CC := clang-3.5
22+
1623
# _XOPEN_SOURCE=600 and _DEFAULT_SOURCE=1 are needed for glibc >= 2.24.
1724
# Explanation here: https://github.com/wb2osz/direwolf/issues/62
1825

1926
# There are a few source files where it had been necessary to define __USE_XOPEN2KXSI,
2027
# __USE_XOPEN, or _POSIX_C_SOURCE. Doesn't seem to be needed after adding this.
2128

22-
CFLAGS := -O3 -pthread -Igeotranz -D_XOPEN_SOURCE=600 -D_DEFAULT_SOURCE=1
29+
CFLAGS := -O3 -pthread -Igeotranz -D_XOPEN_SOURCE=600 -D_DEFAULT_SOURCE=1 -Wall
30+
31+
# That was fine for a recent Ubuntu and Raspbian Jessie.
32+
# However, Raspbian wheezy was then missing declaration for strsep and definition of fd_set.
33+
34+
CFLAGS += -D_BSD_SOURCE
2335

2436
LDFLAGS := -lm -lpthread -lrt
2537

@@ -113,7 +125,26 @@ endif
113125
# One article said it was added with gcc 4.2 but I haven't verified that.
114126
#
115127

116-
# Add -ffastmath in only if compiler version recognizes it.
128+
# ---------- How does clang compare? - Ubuntu x86_64 ----------
129+
#
130+
# I keep hearing a lot about "clang." Let's see how it compares with gcc.
131+
# Simply use different compiler and keep all options the same.
132+
#
133+
# test case: atest 02_Track_2.wav
134+
#
135+
# gcc 4.8.4: 988 packets decoded in 40.503 seconds. 38.3 x realtime
136+
# 988 packets decoded in 40.403 seconds. 38.4 x realtime
137+
#
138+
# clang 3.8.0-2: 988 packets decoded in 77.454 seconds. 20.0 x realtime
139+
# 988 packets decoded in 77.232 seconds. 20.1 x realtime
140+
#
141+
# I'm not impressed. Almost twice as long. Maybe we need to try some other compiler options.
142+
# -march=native did not help.
143+
# Makefile.macosx, which uses clang, has these:
144+
# -fvectorize -fslp-vectorize -fslp-vectorize-aggressive
145+
# Those did not help.
146+
#
147+
117148

118149
useffast := $(shell gcc --help -v 2>/dev/null | grep ffast-math)
119150
ifneq ($(useffast),)
@@ -146,7 +177,7 @@ endif
146177
#
147178

148179
#
149-
# ---------- ARM - Raspberry Pi 2 ----------
180+
# ---------- ARM - Raspberry Pi 2 ----------
150181
#
151182
# Besides the higher clock speed, the Raspberry Pi 2 has the NEON instruction set
152183
# which which should make things considerably faster.
@@ -200,10 +231,27 @@ endif
200231
# cause compatibility issues for those with older computers.
201232
#
202233

234+
# ---------- How does clang compare? - ARM - Raspberry Pi 2 ----------
235+
#
236+
# I keep hearing a lot about "clang." Let's see how it compares with gcc.
237+
# Simply use different compiler and keep all options the same.
238+
#
239+
# test case: atest 02_Track_2.wav
240+
#
241+
# gcc 4.9.2-10: 988 packets decoded in 353.025 seconds. 4.4 x realtime
242+
# 988 packets decoded in 352.752 seconds. 4.4 x realtime
243+
#
244+
# clang 3.5.0-10: 988 packets decoded in 825.879 seconds. 1.9 x realtime
245+
# 988 packets decoded in 831.469 seconds. 1.9 x realtime
246+
#
247+
# There might be a different set of options which produce faster code
248+
# but the initial test doesn't look good. About 2.3 times as slow.
203249

204250
# If you want to use OSS (for FreeBSD, OpenBSD) instead of
205251
# ALSA (for Linux), comment out (or remove) the two lines below.
206252

253+
# TODO: Can we automate this somehow?
254+
207255
CFLAGS += -DUSE_ALSA
208256
LDFLAGS += -lasound
209257

@@ -220,6 +268,8 @@ endif
220268

221269

222270
# Uncomment following lines to enable hamlib support.
271+
# TODO: automate this too. See if hamlib has been installed.
272+
223273
#CFLAGS += -DUSE_HAMLIB
224274
#LDFLAGS += -lhamlib
225275

Makefile.macosx

+6
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,12 @@ CC := $(DARWIN_CC) -m32 $(SYS_LIBS) $(SYS_MIN)
7777

7878
CFLAGS := -Os -pthread -Igeotranz -D_XOPEN_SOURCE=600 -D_DEFAULT_SOURCE=1 $(EXTRA_CFLAGS)
7979

80+
# That was fine for a recent Ubuntu and Raspbian Jessie.
81+
# However, Raspbian wheezy was then missing declaration for strsep and definition of fd_set.
82+
83+
CFLAGS += -D_BSD_SOURCE
84+
85+
8086
# $(info $$CC is [${CC}])
8187

8288
#

Makefile.win

+43-10
Original file line numberDiff line numberDiff line change
@@ -26,19 +26,30 @@ all : direwolf decode_aprs text2tt tt2text ll2utm utm2ll aclients log2gpx gen_pa
2626
# -Ofast was added in gcc 4.6 which was the MinGW version back in 2012.
2727

2828
CC := gcc
29-
CFLAGS := -Wall -Ofast -march=pentium3 -msse -Iregex -Iutm -Igeotranz -mthreads -DUSE_REGEX_STATIC
30-
#CFLAGS := -Wall -march=pentium3 -msse -Iregex -Iutm -Igeotranz -mthreads -DUSE_REGEX_STATIC
29+
CFLAGS := -Ofast -march=pentium3 -msse -Iregex -Iutm -Igeotranz -mthreads -DUSE_REGEX_STATIC -Wall -Wlogical-op
3130
AR := ar
3231

3332
CFLAGS += -g
3433

35-
# For version 1.4, we upgrade from 4.6.2 to 4.9.3.
34+
# For version 1.4, we upgrade from gcc 4.6.2 to 4.9.3.
3635

3736
# gcc 4.8 adds these. Try them just for fun.
3837
# No, it needs libasan which is not on Windows.
3938
#CFLAGS += -fsanitize=address -fno-omit-frame-pointer
4039

40+
# Helpful for the demodulators. Overkill for non-hot spots.
41+
#CFLAGS += -Wdouble-promotion
4142

43+
# Don't have the patience for this right now.
44+
#CFLAGS += -Wextra
45+
46+
# Continue working on these.
47+
CFLAGS += -Wsign-compare
48+
CFLAGS += -Wuninitialized
49+
CFLAGS += -Wold-style-declaration
50+
# CFLAGS += -fdelete-null-pointer-checks -Wnull-dereference ---not recognized
51+
#CFLAGS += -Wold-style-definition
52+
#-Wmissing-prototypes
4253

4354
#
4455
# Let's see impact of various optimization levels.
@@ -178,7 +189,7 @@ log2gpx : log2gpx.c textcolor.o misc.a
178189

179190
# Test application to generate sound.
180191

181-
gen_packets : gen_packets.o ax25_pad.o hdlc_send.o fcs_calc.o gen_tone.o morse.o textcolor.o dsp.o misc.a regex.a
192+
gen_packets : gen_packets.o ax25_pad.o hdlc_send.o fcs_calc.o gen_tone.o morse.o dtmf.o textcolor.o dsp.o misc.a regex.a
182193
$(CC) $(CFLAGS) -o $@ $^
183194

184195

@@ -219,7 +230,7 @@ utm.o : geotranz/utm.c
219230
# functions supplied by the gnu C library.
220231
# For the native WIN32 version, we need to use our own copy.
221232
# These were copied from http://gnuwin32.sourceforge.net/packages/regex.htm
222-
#
233+
# Consider upgrading from https://www.gnu.org/software/libc/sources.html
223234

224235
regex.a : regex.o
225236
ar -cr $@ $^
@@ -228,7 +239,8 @@ regex.o : regex/regex.c
228239
$(CC) $(CFLAGS) -Dbool=int -Dtrue=1 -Dfalse=0 -c -o $@ $^
229240

230241

231-
# There are several string functios found in Linux
242+
243+
# There are several string functions found in Linux
232244
# but not on Windows. Need to provide our own copy.
233245

234246
misc.a : strsep.o strtok_r.o strcasestr.o strlcpy.o strlcat.o
@@ -256,7 +268,7 @@ strlcat.o : misc/strlcat.c
256268
# Combine some unit tests into a single regression sanity check.
257269

258270

259-
check : dtest ttest tttexttest pftest tlmtest lltest enctest kisstest pad2test xidtest check-modem1200 check-modem300 check-modem9600 check-modem19200 check-modem2400 check-modem4800
271+
check : dtest ttest tttexttest pftest tlmtest lltest enctest kisstest pad2test xidtest dtmftest check-modem1200 check-modem300 check-modem9600 check-modem19200 check-modem2400 check-modem4800
260272

261273
# Can we encode and decode at popular data rates?
262274
# Verify that single bit fixup increases the count.
@@ -273,7 +285,15 @@ check-modem300 : gen_packets atest
273285
atest -B300 -F1 -L71 -G75 test3.wav
274286
rm test3.wav
275287

288+
#FIXME: test full amplitude.
289+
276290
check-modem9600 : gen_packets atest
291+
gen_packets -B9600 -a 170 -o test96.wav
292+
sleep 1
293+
atest -B9600 -F0 -L4 -G4 test96.wav
294+
sleep 1
295+
rm test96.wav
296+
sleep 1
277297
gen_packets -B9600 -n 100 -o test96.wav
278298
sleep 1
279299
atest -B9600 -F0 -L50 -G54 test96.wav
@@ -282,6 +302,12 @@ check-modem9600 : gen_packets atest
282302
rm test96.wav
283303

284304
check-modem19200 : gen_packets atest
305+
gen_packets -r 96000 -B19200 -a 170 -o test19.wav
306+
sleep 1
307+
atest -B19200 -F0 -L4 test19.wav
308+
sleep 1
309+
rm test19.wav
310+
sleep 1
285311
gen_packets -r 96000 -B19200 -n 100 -o test19.wav
286312
sleep 1
287313
atest -B19200 -F0 -L55 -G59 test19.wav
@@ -333,8 +359,8 @@ atest9 : atest.c demod.c dsp.c demod_afsk.c demod_psk.c demod_9600.c hdlc_rec.c
333359
# Unit test for inner digipeater algorithm
334360

335361
.PHONY: dtest
336-
dtest : digipeater.c dedupe.c \
337-
pfilter.o ax25_pad.o fcs_calc.o tq.o textcolor.o \
362+
dtest : digipeater.c dedupe.c pfilter.c \
363+
ax25_pad.o fcs_calc.o tq.o textcolor.o \
338364
decode_aprs.o dwgpsnmea.o dwgps.o serial_port.o latlong.o telemetry.o symbols.o tt_text.o misc.a regex.a
339365
$(CC) $(CFLAGS) -DDIGITEST -o $@ $^
340366
./dtest
@@ -417,6 +443,13 @@ xidtest : xid.c textcolor.o misc.a
417443
./xidtest
418444
rm xidtest.exe
419445

446+
# Unit Test for DTMF encode/decode.
447+
448+
.PHONY: dtmftest
449+
dtmftest : dtmf.c textcolor.o
450+
$(CC) $(CFLAGS) -DDTMF_TEST -o $@ $^
451+
./dtmftest
452+
rm dtmftest.exe
420453

421454

422455
# ------------------------------ Other manual testing & experimenting -------------------------------
@@ -529,7 +562,7 @@ walk96 : walk96.c dwgps.o dwgpsnmea.o kiss_frame.o \
529562
xmit.o hdlc_send.o gen_tone.o ptt.o tq.o \
530563
hdlc_rec.o hdlc_rec2.o rrbb.o dsp.o audio_win.o \
531564
multi_modem.o demod.o demod_afsk.o demod_psk.c demod_9600.o rdq.o \
532-
server.o morse.o audio_stats.o dtime_now.o dlq.o \
565+
server.o morse.o dtmf.o audio_stats.o dtime_now.o dlq.o \
533566
regex.a misc.a
534567
$(CC) $(CFLAGS) -DWALK96 -o $@ $^ -lwinmm -lws2_32
535568

ax25_pad.c

+58
Original file line numberDiff line numberDiff line change
@@ -1820,6 +1820,64 @@ void ax25_format_addrs (packet_t this_p, char *result)
18201820
}
18211821

18221822

1823+
/*------------------------------------------------------------------
1824+
*
1825+
* Function: ax25_format_via_path
1826+
*
1827+
* Purpose: Format via path addresses suitable for printing.
1828+
*
1829+
* Inputs: Current packet.
1830+
*
1831+
* result_size - Number of bytes available for result.
1832+
* We can have up to 8 addresses x 9 characters
1833+
* plus 7 commas, possible *, and nul = 81 minimum.
1834+
*
1835+
* Outputs: result - Digipeater field addresses combined into a single string of the form:
1836+
*
1837+
* "repeater, repeater ..."
1838+
*
1839+
* An asterisk is displayed after the last digipeater
1840+
* with the "H" bit set. e.g. If we hear RPT2,
1841+
*
1842+
* RPT1,RPT2*,RPT3
1843+
*
1844+
* No asterisk means the source is being heard directly.
1845+
*
1846+
*------------------------------------------------------------------*/
1847+
1848+
void ax25_format_via_path (packet_t this_p, char *result, size_t result_size)
1849+
{
1850+
int i;
1851+
int heard;
1852+
char stemp[AX25_MAX_ADDR_LEN];
1853+
1854+
assert (this_p->magic1 == MAGIC);
1855+
assert (this_p->magic2 == MAGIC);
1856+
*result = '\0';
1857+
1858+
/* Don't get upset if no addresses. */
1859+
/* This will allow packets that do not comply to AX.25 format. */
1860+
1861+
if (this_p->num_addr == 0) {
1862+
return;
1863+
}
1864+
1865+
heard = ax25_get_heard(this_p);
1866+
1867+
for (i=(int)AX25_REPEATER_1; i<this_p->num_addr; i++) {
1868+
if (i > (int)AX25_REPEATER_1) {
1869+
strlcat (result, ",", result_size);
1870+
}
1871+
ax25_get_addr_with_ssid (this_p, i, stemp);
1872+
strlcat (result, stemp, result_size);
1873+
if (i == heard) {
1874+
strlcat (result, "*", result_size);
1875+
}
1876+
}
1877+
1878+
} /* end ax25_format_via_path */
1879+
1880+
18231881
/*------------------------------------------------------------------
18241882
*
18251883
* Function: ax25_pack

ax25_pad.h

+1
Original file line numberDiff line numberDiff line change
@@ -410,6 +410,7 @@ extern double ax25_get_release_time (packet_t this_p);
410410
extern void ax25_set_modulo (packet_t this_p, int modulo);
411411

412412
extern void ax25_format_addrs (packet_t pp, char *);
413+
extern void ax25_format_via_path (packet_t this_p, char *result, size_t result_size);
413414

414415
extern int ax25_pack (packet_t pp, unsigned char result[AX25_MAX_PACKET_LEN]);
415416

beacon.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -954,7 +954,7 @@ static void beacon_send (int j, dwgps_info_t *gpsinfo)
954954

955955
case SENDTO_RECV:
956956

957-
/* Simulated reception. */
957+
/* Simulated reception from radio. */
958958

959959
memset (&alevel, 0xff, sizeof(alevel));
960960
dlq_rec_frame (g_misc_config_p->beacon[j].sendto_chan, 0, 0, pp, alevel, 0, "");

cdigipeater.c

-8
Original file line numberDiff line numberDiff line change
@@ -241,14 +241,6 @@ static packet_t cdigipeat_match (int from_chan, packet_t pp, char *mycall_rec, c
241241
if (filter_str != NULL) {
242242

243243
if (pfilter(from_chan, to_chan, filter_str, pp, 0) != 1) {
244-
245-
// Take out debug message?
246-
// Actually it turns out to be useful.
247-
// Maybe add a quiet option to suppress it.
248-
//#if DEBUG
249-
text_color_set(DW_COLOR_INFO);
250-
dw_printf ("Packet was rejected for digipeating from channel %d to %d by cfilter: %s\n", from_chan, to_chan, filter_str);
251-
//#endif
252244
return(NULL);
253245
}
254246
}

0 commit comments

Comments
 (0)