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
|
/*
* BPF program compilation tool
*
* Generates decimal output, similar to `tcpdump -ddd ...`.
* Unlike tcpdump, will generate for any given link layer type.
*
* Written by Willem de Bruijn (willemb@google.com)
* Copyright Google, Inc. 2013
* Licensed under the GNU General Public License version 2 (GPLv2)
*/
#include <pcap.h>
#include <stdio.h>
int main(int argc, char **argv)
{
struct bpf_program program;
struct bpf_insn *ins;
int i, dlt = DLT_RAW;
pcap_t *pcap;
if (argc < 2 || argc > 3) {
fprintf(stderr, "Usage: %s [link] '<program>'\n\n"
" link is a pcap linklayer type:\n"
" one of EN10MB, RAW, SLIP, ...\n\n"
"Examples: %s RAW 'tcp and greater 100'\n"
" %s EN10MB 'ip proto 47'\n'",
argv[0], argv[0], argv[0]);
return 1;
}
if (argc == 3) {
dlt = pcap_datalink_name_to_val(argv[1]);
if (dlt == -1) {
fprintf(stderr, "Unknown datalinktype: %s\n", argv[1]);
return 1;
}
}
pcap = pcap_open_dead(dlt, 65535);
if (!pcap) {
fprintf(stderr, "Memory allocation failure\n");
return 1;
}
if (pcap_compile(pcap, &program, argv[argc - 1], 1,
PCAP_NETMASK_UNKNOWN)) {
fprintf(stderr, "Compilation error\n");
pcap_close(pcap);
return 1;
}
printf("%d,", program.bf_len);
ins = program.bf_insns;
for (i = 0; i < program.bf_len-1; ++ins, ++i)
printf("%u %u %u %u,", ins->code, ins->jt, ins->jf, ins->k);
printf("%u %u %u %u\n", ins->code, ins->jt, ins->jf, ins->k);
pcap_freecode(&program);
pcap_close(pcap);
return 0;
}
|