3 * (C)opyright 1995-1998 Darren Reed. (from tcplog)
5 * See the IPFILTER.LICENCE file for details on licencing.
12 #include <sys/timeb.h>
13 #include <sys/socket.h>
15 #include <sys/ioctl.h>
17 #include <sys/fcntlcom.h>
19 #if (__FreeBSD_version >= 300000)
20 # include <sys/dirent.h>
27 #include <netinet/in.h>
28 #include <netinet/in_systm.h>
29 #include <netinet/ip.h>
30 #include <netinet/ip_var.h>
31 #include <netinet/udp.h>
32 #include <netinet/udp_var.h>
33 #include <netinet/tcp.h>
50 static const char sccsid
[] = "@(#)sbpf.c 1.3 8/25/95 (C)1995 Darren Reed";
51 static const char rcsid
[] = "@(#)$Id: sbpf.c,v 2.5.4.1 2006/03/21 16:32:58 darrenr Exp $";
55 * the code herein is dervied from libpcap.
57 static u_char
*buf
= NULL
;
58 static int bufsize
= 0, timeout
= 1;
61 int initdevice(device
, tout
)
65 struct bpf_version bv
;
69 char *bpfname
= _PATH_BPF
;
72 if ((fd
= open(bpfname
, O_RDWR
)) < 0)
74 fprintf(stderr
, "no bpf devices available as /dev/bpfxx\n");
81 for (i
= 0; i
< 16; i
++)
83 (void) sprintf(bpfname
, "/dev/bpf%d", i
);
84 if ((fd
= open(bpfname
, O_RDWR
)) >= 0)
89 fprintf(stderr
, "no bpf devices available as /dev/bpfxx\n");
94 if (ioctl(fd
, BIOCVERSION
, (caddr_t
)&bv
) < 0)
96 perror("BIOCVERSION");
99 if (bv
.bv_major
!= BPF_MAJOR_VERSION
||
100 bv
.bv_minor
< BPF_MINOR_VERSION
)
102 fprintf(stderr
, "kernel bpf (v%d.%d) filter out of date:\n",
103 bv
.bv_major
, bv
.bv_minor
);
104 fprintf(stderr
, "current version: %d.%d\n",
105 BPF_MAJOR_VERSION
, BPF_MINOR_VERSION
);
109 (void) strncpy(ifr
.ifr_name
, device
, sizeof(ifr
.ifr_name
));
110 if (ioctl(fd
, BIOCSETIF
, &ifr
) == -1)
112 fprintf(stderr
, "%s(%d):", ifr
.ifr_name
, fd
);
117 * get kernel buffer size
119 if (ioctl(fd
, BIOCGBLEN
, &bufsize
) == -1)
124 buf
= (u_char
*)malloc(bufsize
);
131 if (ioctl(fd
, BIOCSRTIMEOUT
, (caddr_t
)&to
) == -1)
133 perror("BIOCSRTIMEOUT");
137 (void) ioctl(fd
, BIOCFLUSH
, 0);
143 * output an IP packet onto a fd opened for /dev/bpf
145 int sendip(fd
, pkt
, len
)
149 if (write(fd
, pkt
, len
) == -1)