source: rtems-libbsd/freebsd/contrib/tcpdump/bpf_dump.c @ 084d4db

4.11
Last change on this file since 084d4db was 8440506, checked in by Chris Johns <chrisj@…>, on 06/15/15 at 07:42:23

Add tcpdump and libpcap.

  • Update the file builder generator to handle generator specific cflags and includes. The tcpdump and libpcap have localised headers and need specific headers paths to see them. There are also module specific flags and these need to be passed to the lex and yacc generators.
  • Add the tcpdump support.
  • Property mode set to 100644
File size: 2.1 KB
Line 
1#include <machine/rtems-bsd-user-space.h>
2
3/*
4 * Copyright (c) 1992, 1993, 1994, 1995, 1996
5 *      The Regents of the University of California.  All rights reserved.
6 *
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that: (1) source code distributions
9 * retain the above copyright notice and this paragraph in its entirety, (2)
10 * distributions including binary code include the above copyright notice and
11 * this paragraph in its entirety in the documentation or other materials
12 * provided with the distribution, and (3) all advertising materials mentioning
13 * features or use of this software display the following acknowledgement:
14 * ``This product includes software developed by the University of California,
15 * Lawrence Berkeley Laboratory and its contributors.'' Neither the name of
16 * the University nor the names of its contributors may be used to endorse
17 * or promote products derived from this software without specific prior
18 * written permission.
19 * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR IMPLIED
20 * WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF
21 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
22 */
23#ifndef lint
24static const char rcsid[] _U_ =
25    "@(#) $Header: /tcpdump/master/tcpdump/bpf_dump.c,v 1.17 2008-02-14 20:53:49 guy Exp $ (LBL)";
26#endif
27
28#ifdef HAVE_CONFIG_H
29#include "config.h"
30#endif
31
32#include <tcpdump-stdinc.h>
33
34#include <pcap.h>
35#include <stdio.h>
36
37#include "interface.h"
38
39void
40bpf_dump(const struct bpf_program *p, int option)
41{
42        struct bpf_insn *insn;
43        int i;
44        int n = p->bf_len;
45
46        insn = p->bf_insns;
47        if (option > 2) {
48                printf("%d\n", n);
49                for (i = 0; i < n; ++insn, ++i) {
50                        printf("%u %u %u %u\n", insn->code,
51                               insn->jt, insn->jf, insn->k);
52                }
53                return ;
54        }
55        if (option > 1) {
56                for (i = 0; i < n; ++insn, ++i)
57                        printf("{ 0x%x, %d, %d, 0x%08x },\n",
58                               insn->code, insn->jt, insn->jf, insn->k);
59                return;
60        }
61        for (i = 0; i < n; ++insn, ++i) {
62#ifdef BDEBUG
63                extern int bids[];
64                printf(bids[i] > 0 ? "[%02d]" : " -- ", bids[i] - 1);
65#endif
66                puts(bpf_image(insn, i));
67        }
68}
Note: See TracBrowser for help on using the repository browser.