]>
The Tcpdump Group git mirrors - libpcap/blob - testprogs/filtertest.c
b9e5737c2d611cd86ca5e576619319f549236dd8
2 * Copyright (c) 1988, 1989, 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 2000
3 * The Regents of the University of California. All rights reserved.
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that: (1) source code distributions
7 * retain the above copyright notice and this paragraph in its entirety, (2)
8 * distributions including binary code include the above copyright notice and
9 * this paragraph in its entirety in the documentation or other materials
10 * provided with the distribution, and (3) all advertising materials mentioning
11 * features or use of this software display the following acknowledgement:
12 * ``This product includes software developed by the University of California,
13 * Lawrence Berkeley Laboratory and its contributors.'' Neither the name of
14 * the University nor the names of its contributors may be used to endorse
15 * or promote products derived from this software without specific prior
17 * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR IMPLIED
18 * WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF
19 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
25 static const char copyright
[] _U_
=
26 "@(#) Copyright (c) 1988, 1989, 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 2000\n\
27 The Regents of the University of California. All rights reserved.\n";
51 #include <sys/socket.h>
52 #include <arpa/inet.h>
54 #include <sys/types.h>
57 #include "pcap/funcattrs.h"
61 * We have pcap_set_optimizer_debug() in libpcap; declare it (it's not declared
62 * by any libpcap header, because it's a special hack, only available if
63 * libpcap was configured to include it, and only intended for use by
64 * libpcap developers trying to debug the optimizer for filter expressions).
66 PCAP_API
void pcap_set_optimizer_debug(int);
69 static char *program_name
;
72 static void PCAP_NORETURN
usage(void);
73 static void PCAP_NORETURN
error(const char *, ...) PCAP_PRINTFLIKE(1, 2);
74 static void warn(const char *, ...) PCAP_PRINTFLIKE(1, 2);
77 * On Windows, we need to open the file in binary mode, so that
78 * we get all the bytes specified by the size we get from "fstat()".
79 * On UNIX, that's not necessary. O_BINARY is defined on Windows;
80 * we define it as 0 if it's not defined, so it does nothing.
87 read_infile(char *fname
)
89 register int i
, fd
, cc
;
93 fd
= open(fname
, O_RDONLY
|O_BINARY
);
95 error("can't open %s: %s", fname
, pcap_strerror(errno
));
97 if (fstat(fd
, &buf
) < 0)
98 error("can't stat %s: %s", fname
, pcap_strerror(errno
));
100 cp
= malloc((u_int
)buf
.st_size
+ 1);
102 error("malloc(%d) for %s: %s", (u_int
)buf
.st_size
+ 1,
103 fname
, pcap_strerror(errno
));
104 cc
= read(fd
, cp
, (u_int
)buf
.st_size
);
106 error("read %s: %s", fname
, pcap_strerror(errno
));
107 if (cc
!= buf
.st_size
)
108 error("short read %s (%d != %d)", fname
, cc
, (int)buf
.st_size
);
111 /* replace "# comment" with spaces */
112 for (i
= 0; i
< cc
; i
++) {
114 while (i
< cc
&& cp
[i
] != '\n')
123 error(const char *fmt
, ...)
127 (void)fprintf(stderr
, "%s: ", program_name
);
129 (void)vfprintf(stderr
, fmt
, ap
);
134 (void)fputc('\n', stderr
);
142 warn(const char *fmt
, ...)
146 (void)fprintf(stderr
, "%s: WARNING: ", program_name
);
148 (void)vfprintf(stderr
, fmt
, ap
);
153 (void)fputc('\n', stderr
);
158 * Copy arg vector into a new buffer, concatenating arguments with spaces.
161 copy_argv(register char **argv
)
164 register u_int len
= 0;
173 len
+= strlen(*p
++) + 1;
175 buf
= (char *)malloc(len
);
177 error("copy_argv: malloc");
181 while ((src
= *p
++) != NULL
) {
182 while ((*dst
++ = *src
++) != '\0')
192 main(int argc
, char **argv
)
203 bpf_u_int32 netmask
= PCAP_NETMASK_UNKNOWN
;
206 struct bpf_program fcode
;
209 if (pcap_wsockinit() != 0)
216 /* if optimizer debugging is enabled, output DOT graph
217 * `dflag=4' is equivalent to -dddd to follow -d/-dd/-ddd
218 * convention in tcpdump command line
226 if ((cp
= strrchr(argv
[0], '/')) != NULL
)
227 program_name
= cp
+ 1;
229 program_name
= argv
[0];
232 while ((op
= getopt(argc
, argv
, "dF:m:Os:")) != -1) {
250 switch (inet_pton(AF_INET
, optarg
, &addr
)) {
253 error("invalid netmask %s", optarg
);
257 error("invalid netmask %s: %s", optarg
,
258 pcap_strerror(errno
));
271 snaplen
= strtol(optarg
, &end
, 0);
272 if (optarg
== end
|| *end
!= '\0'
273 || snaplen
< 0 || snaplen
> 65535)
274 error("invalid snaplen %s", optarg
);
275 else if (snaplen
== 0)
286 if (optind
>= argc
) {
291 dlt
= pcap_datalink_name_to_val(argv
[optind
]);
293 dlt
= (int)strtol(argv
[optind
], &p
, 10);
294 if (p
== argv
[optind
] || *p
!= '\0')
295 error("invalid data link type %s", argv
[optind
]);
299 cmdbuf
= read_infile(infile
);
301 cmdbuf
= copy_argv(&argv
[optind
+1]);
304 pcap_set_optimizer_debug(dflag
);
307 pd
= pcap_open_dead(dlt
, snaplen
);
309 error("Can't open fake pcap_t");
311 if (pcap_compile(pd
, &fcode
, cmdbuf
, Oflag
, netmask
) < 0)
312 error("%s", pcap_geterr(pd
));
315 if (!bpf_validate(fcode
.bf_insns
, fcode
.bf_len
))
316 warn("Filter doesn't pass validation");
319 if (cmdbuf
!= NULL
) {
320 // replace line feed with space
321 for (cp
= cmdbuf
; *cp
!= '\0'; ++cp
) {
322 if (*cp
== '\r' || *cp
== '\n') {
326 // only show machine code if BDEBUG defined, since dflag > 3
327 printf("machine codes for filter: %s\n", cmdbuf
);
329 printf("machine codes for empty filter:\n");
332 bpf_dump(&fcode
, dflag
);
335 pcap_freecode (&fcode
);
343 (void)fprintf(stderr
, "%s, with %s\n", program_name
,
345 (void)fprintf(stderr
,
346 "Usage: %s [-dO] [ -F file ] [ -m netmask] [ -s snaplen ] dlt [ expression ]\n",