forked from jpr5/ngrep
-
Notifications
You must be signed in to change notification settings - Fork 0
/
configure.in
553 lines (440 loc) · 13.9 KB
/
configure.in
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
dnl
dnl Copyright (c) 2017 Jordan Ritter <jpr5@darkridge.com>
dnl
dnl Please refer to the LICENSE file for more information.
dnl
dnl NOTE: configure.in requires autoconf 2.57 or more recent.
AC_INIT(ngrep.c)
AC_MSG_RESULT
AC_MSG_RESULT(Configuring System ...)
AC_MSG_RESULT
AC_CANONICAL_SYSTEM
AC_PROG_CC
AC_HEADER_STDC
AC_PREFIX_DEFAULT(/usr/local)
if test -n "`which tcpdump 2> /dev/null`"; then
AC_PREFIX_PROGRAM(tcpdump)
fi
EXTRA_DEFINES=""
EXTRA_INCLUDES=""
EXTRA_LDFLAGS=""
EXTRA_OBJS=""
EXTRA_LIBS=""
dnl
dnl Define the arguments that we accept. Parse them first.
dnl
dnl
dnl Allow user to specify alternate ``nobody'' user.
dnl
AC_ARG_WITH(dropprivs-user,
[ --with-dropprivs-user[=user] use different user for dropprivs],
[
DROPPRIVS_USER="$withval"
],
[
DROPPRIVS_USER="nobody"
])
dnl
dnl Enable or disable the drop privileges logic.
dnl
AC_ARG_ENABLE(dropprivs,
[ --disable-dropprivs disable privilege dropping logic],
[
use_dropprivs="$enableval"
],
[
use_dropprivs="yes"
])
if test $use_dropprivs = yes; then
USE_DROPPRIVS="1"
else
USE_DROPPRIVS="0"
fi
dnl
dnl IPv6 (and ICMPv6) support
dnl
AC_ARG_ENABLE(ipv6,
[ --enable-ipv6 enable IPv6 (and ICMPv6) support],
[
use_ipv6="$enableval"
],
[
use_ipv6="no"
])
if test $use_ipv6 = yes; then
USE_IPv6="1"
else
USE_IPv6="0"
fi
dnl
dnl PCAP BPF filter expression lexer bugfix
dnl
dnl Typically ngrep is invoked with a (optional) search string plus a BPF
dnl filter. However, ngrep doesn't semantically understand BPF filter terms
dnl itself, so it assumes the first non-option parameter is the search string,
dnl and attempts to compile the remainder as the BPF filter expression. If the
dnl compilation fails, it probably means that no search string was specified, so
dnl it restarts the BPF filter expression lexer and attempts to compile the
dnl entire non-option parameter string as the expression. If that fails, then
dnl the specified BPF filter expression is definitely bogus and ngrep errors
dnl out.
dnl
dnl I favored this approach because it made invocation simpler & more fluid. In
dnl order to make it work however, I had to solve for a bug in older versions of
dnl libpcap where the library would segfault if the BPF filter compilation
dnl function was invoked more than once. The workaround turned out to be a
dnl simple invocation of the lexer's restart function in between compilation
dnl invocations, however that function wasn't normally exposed in the header
dnl since it was an internal built-in of whatever grammar lexer libpcap had
dnl compiled with (bison/yacc/etc).
dnl
dnl The default behavior has long been to restart the lexer (keeping invocation
dnl simpler) and provide a compile-time option to disable the mechanism, if
dnl anyone cared to. Based on a more recent bug report however[1], it seems
dnl that the newer libpcap breaks when the lexer restart function is called.
dnl So, given the choice between old platforms working by default (always call
dnl restart/allow disablement at compile-time) vs. newer platforms working by
dnl default (never call restart/allow enablement at compile-time), the default
dnl behavior now is to do the latter.
dnl
dnl For versions of libpcap that require restart function invocation in between
dnl multiple lexer passes, allow them to enable it here.
dnl
dnl [1] https://github.com/jpr5/ngrep/issues/2
dnl
AC_ARG_ENABLE(pcap-restart,
[ --enable-pcap-restart enable BPF lexer restart bugfix for older versions of PCAP (default off)],
[
use_pcap_restart="$enableval"
],
[
use_pcap_restart="no"
])
if test $use_pcap_restart = yes; then
USE_PCAP_RESTART="1"
else
USE_PCAP_RESTART="0"
fi
dnl
dnl Configure the regular expression library.
dnl
REGEX_DIR=''
REGEX_OBJS=''
AC_ARG_ENABLE(pcre,
[ --enable-pcre use PCRE instead of GNU regex (default GNU)],
[ use_pcre="$enableval" ],
[ use_pcre="no" ])
if test $use_pcre = yes; then
USE_PCRE="1"
EXTRA_LIBS="$EXTRA_LIBS -lpcre"
else
USE_PCRE="0"
AC_MSG_RESULT
AC_MSG_RESULT(Configuring GNU Regular Expression library ...)
AC_MSG_RESULT
REGEX_DIR='regex-0.12'
REGEX_OBJS="$REGEX_DIR/regex.o"
( cd $REGEX_DIR && ./configure )
EXTRA_INCLUDES="$EXTRA_INCLUDES -I$REGEX_DIR"
fi
AC_SUBST(REGEX_DIR)
AC_SUBST(REGEX_OBJS)
dnl
dnl tcpkill/libnet support (from Debian patch)
dnl
AC_ARG_ENABLE(tcpkill,
[ --enable-tcpkill enable connection killing support (default off)],
[
AC_CHECK_LIB(net, libnet_init,,echo !!! error: tcpkill feature enabled but no libnet found; exit)
use_tcpkill="$enableval"
],
[ use_tcpkill="no" ])
if test $use_tcpkill = yes; then
USE_TCPKILL="1"
EXTRA_OBJS="$EXTRA_OBJS tcpkill.o"
EXTRA_DEFINES="$EXTRA_DEFINES $(libnet-config --defines)"
EXTRA_LIBS="$EXTRA_LIBS $(libnet-config --libs)"
else
USE_TCPKILL="0"
fi
AC_ARG_ENABLE(vlan-hack,
[ --disable-vlan-hack disable automatic inclusion of VLAN frames (default on)],
[use_vlan_hack="$enableval"],
[use_vlan_hack="yes"])
if test $use_vlan_hack = yes; then
USE_VLAN_HACK="1"
else
USE_VLAN_HACK="0"
fi
AC_ARG_WITH(pcap-includes,
[ --with-pcap-includes=dir specify the pcap include directory],
[PCAP_DIR=$withval],
[
PCAP_DIR="`eval echo -n ${includedir}` \
/usr/include /usr/include/pcap \
/usr/local/include /usr/local/include/pcap \
/opt/local/include /opt/local/include/pcap \
/usr/share/include /usr/share/include/pcap"
])
AC_MSG_RESULT
AC_MSG_RESULT(Configuring Network Grep ...)
AC_MSG_RESULT
dnl
dnl OS-specific options
dnl
STRIPFLAG="-s"
case "$target_os" in
*linux*)
AC_SUBST(OS, LINUX)
;;
*bsd*)
AC_SUBST(OS, BSD)
;;
*solaris*)
AC_SUBST(OS, SOLARIS)
AC_CHECK_LIB(socket, socket,,
[AC_MSG_ERROR(no socket in -lsocket)])
AC_CHECK_LIB(nsl, gethostbyname,,
[AC_MSG_ERROR(no gethostbyname in -lnsl)])
EXTRA_LIBS="$EXTRA_LIBS -lnsl -lsocket"
;;
*osf*)
AC_SUBST(OS, OSF1)
EXTRA_DEFINES="$EXTRA_DEFINES -D__STDC__=2"
;;
*hpux11*)
AC_SUBST(OS, BSD)
;;
*aix*)
AC_SUBST(OS, AIX)
;;
*darwin*)
AC_SUBST(OS, MACOSX)
STRIPFLAG=""
;;
*)
AC_SUBST(OS, UNKNOWN_OS)
AC_MSG_WARN(
Your OS ($target_os) is not supported yet.
Try playing with the build host and target options.
)
sleep 3
;;
esac
AC_SUBST(STRIPFLAG)
EXTRA_DEFINES="$EXTRA_DEFINES -D_BSD_SOURCE=1 -D__FAVOR_BSD=1"
dnl
dnl Quick Background:
dnl
dnl A long time ago, the libpcap team decided to change the functionality split
dnl and installation location of their header files. Consequently, installing
dnl the prior version's headers, followed by the newer version's, would result
dnl in two sets of different but similarly-named headers. This broke a lot of
dnl packages, since most developers just included <pcap.h> in their programs.
dnl Many (including ngrep) addressed the problem by detecting this condition and
dnl alerting the user to fix it manually. Eventually the libpcap team decided
dnl to add back in the top-level pcap.h, presumably to rectify the hassle.
dnl
dnl On modern Linux distros, checking for this condition likely doesn't matter
dnl anymore. However, ngrep targets a much broader range of (older) OSes, so
dnl it's still a possibility. The re-addition of a top-level pcap.h confounds
dnl the old header presence check, so I've updated it to search for the version,
dnl PCAP_VERSION_MAJOR. Maybe I'll delete it in another 5 years. ;-)
dnl
AC_MSG_CHECKING(for a complete set of pcap headers)
pcap_base=""
for dir in $PCAP_DIR ; do
if test -d $dir -a -r "$dir/pcap.h"; then
AC_EGREP_HEADER([PCAP_VERSION_MAJOR], [$dir/pcap.h], [found=$dir], [found=""])
if test -n "$found" -a "$found" != "$pcap_base"; then
AC_MSG_RESULT
AC_MSG_RESULT
AC_MSG_RESULT(more than one set found in:)
AC_MSG_RESULT( $pcap_base)
AC_MSG_RESULT( $found)
AC_MSG_RESULT
AC_MSG_ERROR(please wipe out all unused pcap installations)
else
pcap_base="$dir"
fi
fi
done
if test -z "$pcap_base" ; then
AC_MSG_RESULT(no)
AC_MSG_ERROR(could not find a complete set of pcap headers)
else
AC_MSG_RESULT(found $pcap_base)
EXTRA_INCLUDES="$EXTRA_INCLUDES -I$pcap_base"
dnl Best-effort; newer ld warns on missing dirs.
DIR="`dirname $pcap_base`/lib"
if test -d $DIR; then
EXTRA_LDFLAGS="$EXTRA_LDFLAGS -L$DIR"
fi
fi
dnl
dnl Check for a working PCAP library we can link against..
dnl
AC_CHECK_LIB(pcap, pcap_open_live,,[AC_MSG_ERROR(a viable pcap lib is required)])
dnl
dnl And the PCAP restart function.
dnl
if test "$USE_PCAP_RESTART" = "1"; then
PCAP_RESTART_FUNC="unused"
for func in pcap_restart pcap_yyrestart yyrestart; do
AC_CHECK_LIB(pcap, $func, found="$func")
if test -n "$found"; then
USE_PCAP_RESTART="1"
PCAP_RESTART_FUNC="$found"
break
fi
done
if test "$PCAP_RESTART_FUNC" = "unused"; then
AC_MSG_ERROR(BPF lexer restart fix requested, but no restart function found)
fi
fi
dnl
dnl Next figure out which bpf header file to look at.
dnl
AC_MSG_CHECKING(for BPF include path)
BPF=`/usr/bin/perl -ne '/include\s+<(.*bpf\.h)>/ && print "$1\n"' $pcap_base/pcap.h`
AC_MSG_RESULT($BPF)
dnl
dnl Check for DLT_* types that might not have existed in older
dnl libpcap's
dnl
present=""
AC_MSG_CHECKING(for DLT_LINUX_SLL in $BPF)
AC_EGREP_CPP(yes,
[
#include <$BPF>
#ifdef DLT_LINUX_SLL
yes
#endif
],
[HAVE_DLT_LINUX_SLL="1" && AC_MSG_RESULT(yes)], [HAVE_DLT_LINUX_SLL="0" && AC_MSG_RESULT(no)])
present=""
AC_MSG_CHECKING(for DLT_LOOP in $BPF)
AC_EGREP_CPP(yes,
[
#include <$BPF>
#ifdef DLT_LOOP
yes
#endif
],
[HAVE_DLT_LOOP="1" && AC_MSG_RESULT(yes)], [HAVE_DLT_LOOP="0" && AC_MSG_RESULT(no)])
present=""
AC_MSG_CHECKING(for DLT_IEEE802_11 in $BPF)
AC_EGREP_CPP(yes,
[
#include <$BPF>
#ifdef DLT_IEEE802_11
yes
#endif
],
[HAVE_DLT_IEEE802_11="1" && AC_MSG_RESULT(yes)], [HAVE_DLT_IEEE802_11="0" && AC_MSG_RESULT(no)])
present=""
AC_MSG_CHECKING(for DLT_IEEE802_11_RADIO in $BPF)
AC_EGREP_CPP(yes,
[
#include <$BPF>
#ifdef DLT_IEEE802_11_RADIO
yes
#endif
],
[HAVE_DLT_IEEE802_11_RADIO="1" && AC_MSG_RESULT(yes)], [HAVE_DLT_IEEE802_11_RADIO="0" && AC_MSG_RESULT(no)])
present=""
AC_MSG_CHECKING(for DLT_RAW in $BPF)
AC_EGREP_CPP(yes,
[
#include <$BPF>
#ifdef DLT_RAW
yes
#endif
],
[HAVE_DLT_RAW="1" && AC_MSG_RESULT(yes)], [HAVE_DLT_RAW="0" && AC_MSG_RESULT(no)])
present=""
AC_MSG_CHECKING(for DLT_PFLOG in $BPF)
AC_EGREP_CPP(yes,
[
#include <$BPF>
#ifdef DLT_PFLOG
yes
#endif
],
[HAVE_DLT_PFLOG="1" && AC_MSG_RESULT(yes)], [HAVE_DLT_PFLOG="0" && AC_MSG_RESULT(no)])
present=""
AC_MSG_CHECKING(for DLT_IPNET in $BPF)
AC_EGREP_CPP(yes,
[
#include <$BPF>
#ifdef DLT_IPNET
yes
#endif
],
[HAVE_DLT_IPNET="1" && AC_MSG_RESULT(yes)], [HAVE_DLT_IPNET="0" && AC_MSG_RESULT(no)])
dnl
dnl Now that we're past the OS-specific stuff, which could have
dnl modified our USE_* and other defines, define them all now.
dnl
AC_DEFINE_UNQUOTED(USE_PCAP_RESTART, $USE_PCAP_RESTART, [whether to call the BPF lexer restart function between multiple BPF filter compilation attempts (default no)])
AC_DEFINE_UNQUOTED(PCAP_RESTART_FUNC, $PCAP_RESTART_FUNC, [routine used for restarting the BPF lexer])
AC_DEFINE_UNQUOTED(USE_PCRE, $USE_PCRE, [whether to use PCRE (default GNU Regex)])
AC_DEFINE_UNQUOTED(USE_IPv6, $USE_IPv6, [whether to use IPv6 (default off)])
AC_DEFINE_UNQUOTED(USE_TCPKILL, $USE_TCPKILL, [whether to enable tcpkill functionality (default off)])
AC_DEFINE_UNQUOTED(USE_VLAN_HACK, $USE_VLAN_HACK, [whether to automatically include VLAN frames (default on)])
AC_DEFINE_UNQUOTED(USE_DROPPRIVS, $USE_DROPPRIVS, [whether to use privileges dropping (default yes)])
AC_DEFINE_UNQUOTED(DROPPRIVS_USER, "$DROPPRIVS_USER", [pseudo-user for running ngrep (default "nobody")])
AC_DEFINE_UNQUOTED(HAVE_DLT_RAW, $HAVE_DLT_RAW, [presence of DLT_RAW in bpf.h])
AC_DEFINE_UNQUOTED(HAVE_DLT_PFLOG, $HAVE_DLT_PFLOG, [presence of DLT_PFLOG in $BPF])
AC_DEFINE_UNQUOTED(HAVE_DLT_IEEE802_11, $HAVE_DLT_IEEE802_11, [presence of DLT_IEEE802_11 in bpf.h])
AC_DEFINE_UNQUOTED(HAVE_DLT_IEEE802_11_RADIO, $HAVE_DLT_IEEE802_11_RADIO, [presence of DLT_IEEE802_11_RADIO in bpf.h])
AC_DEFINE_UNQUOTED(HAVE_DLT_LOOP, $HAVE_DLT_LOOP, [presence of DLT_LOOP in bpf.h])
AC_DEFINE_UNQUOTED(HAVE_DLT_LINUX_SLL, $HAVE_DLT_LINUX_SLL, [presence of DLT_LINUX_SLL in bpf.h])
AC_DEFINE_UNQUOTED(HAVE_DLT_IPNET, $HAVE_DLT_IPNET, [presence of DLT_IPNET in bpf.h])
dnl
dnl Merge our global tack-ons with autoconf's.
dnl
AC_SUBST(EXTRA_DEFINES)
AC_SUBST(EXTRA_INCLUDES)
AC_SUBST(EXTRA_LDFLAGS)
AC_SUBST(EXTRA_OBJS)
AC_SUBST(EXTRA_LIBS)
dnl
dnl Emit configuration messages about any flags specified.
dnl
AC_MSG_RESULT
if test "$USE_PCAP_RESTART" = "1"; then
AC_MSG_RESULT([CONFIG: BPF filter lexer restart enabled (using $PCAP_RESTART_FUNC)])
fi
if test "$USE_IPv6" = "1"; then
AC_MSG_RESULT(CONFIG: IPv6 support enabled)
else
AC_MSG_RESULT(CONFIG: IPv6 support disabled)
fi
if test "$USE_DROPPRIVS" = "1"; then
AC_MSG_RESULT([CONFIG: privilege dropping enabled (using $DROPPRIVS_USER)])
else
AC_MSG_RESULT(CONFIG: privilege dropping DISABLED)
fi
if test "$USE_PCRE" = "1"; then
AC_MSG_RESULT(CONFIG: using PCRE regex library)
else
AC_MSG_RESULT(CONFIG: using GNU regex library)
fi
if test "$USE_TCPKILL" = "1"; then
AC_MSG_RESULT(CONFIG: tcpkill feature enabled)
else
AC_MSG_RESULT(CONFIG: tcpkill feature disabled)
fi
if test "$USE_VLAN_HACK" = "1"; then
AC_MSG_RESULT(CONFIG: automatically including VLAN frames)
else
AC_MSG_RESULT(CONFIG: NOT automatically including VLAN frames)
fi
dnl
dnl And we're done. ALL YOUR BASE. Don't forget.
dnl
AC_MSG_RESULT
AC_CONFIG_HEADERS(config.h)
AC_CONFIG_FILES(Makefile)
AC_OUTPUT