pcap-pf.c
上传用户:tjescc
上传日期:2021-02-23
资源大小:419k
文件大小:9k
源码类别:

Telnet服务器

开发平台:

Unix_Linux

  1. /*
  2.  * Copyright (c) 1990, 1991, 1992, 1993, 1994, 1995, 1996
  3.  * The Regents of the University of California.  All rights reserved.
  4.  *
  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
  16.  * written permission.
  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.
  20.  *
  21.  * packet filter subroutines for tcpdump
  22.  * Extraction/creation by Jeffrey Mogul, DECWRL
  23.  */
  24. #ifndef lint
  25. static const char rcsid[] =
  26.     "@(#) $Header: /usr/local/cvs/nessus-libraries/libpcap-nessus/pcap-pf.c,v 1.3 2003/02/06 20:28:09 renaud Exp $ (LBL)";
  27. #endif
  28. #include <sys/types.h>
  29. #include <sys/time.h>
  30. #include <sys/timeb.h>
  31. #include <sys/socket.h>
  32. #include <sys/file.h>
  33. #include <sys/ioctl.h>
  34. #include <net/pfilt.h>
  35. #if __STDC__
  36. struct mbuf;
  37. struct rtentry;
  38. #endif
  39. #include <net/if.h>
  40. #include <netinet/in.h>
  41. #include <netinet/in_systm.h>
  42. #include <netinet/ip.h>
  43. #include <netinet/if_ether.h>
  44. #include <netinet/ip_var.h>
  45. #include <netinet/udp.h>
  46. #include <netinet/udp_var.h>
  47. #include <netinet/tcp.h>
  48. #include <netinet/tcpip.h>
  49. #include <ctype.h>
  50. #include <errno.h>
  51. #include <netdb.h>
  52. #include <stdio.h>
  53. #include <stdlib.h>
  54. #include <string.h>
  55. #include <unistd.h>
  56. #include "pcap-int.h"
  57. #include "gnuc.h"
  58. #ifdef HAVE_OS_PROTO_H
  59. #include "os-proto.h"
  60. #endif
  61. /*
  62.  * BUFSPACE is the size in bytes of the packet read buffer.  Most tcpdump
  63.  * applications aren't going to need more than 200 bytes of packet header
  64.  * and the read shouldn't return more packets than packetfilter's internal
  65.  * queue limit (bounded at 256).
  66.  */
  67. #define BUFSPACE (200 * 256)
  68. int
  69. pcap_read(pcap_t *pc, int cnt, pcap_handler callback, u_char *user)
  70. {
  71. register u_char *p, *bp;
  72. struct bpf_insn *fcode;
  73. register int cc, n, buflen, inc;
  74. register struct enstamp *sp;
  75. #ifdef LBL_ALIGN
  76. struct enstamp stamp;
  77. #endif
  78. #ifdef PCAP_FDDIPAD
  79. register int pad;
  80. #endif
  81. fcode = pc->md.use_bpf ? NULL : pc->fcode.bf_insns;
  82.  again:
  83. cc = pc->cc;
  84. if (cc == 0) {
  85. cc = read(pc->fd, (char *)pc->buffer + pc->offset, pc->bufsize);
  86. if (cc < 0) {
  87. if (errno == EWOULDBLOCK)
  88. return (0);
  89. if (errno == EINVAL &&
  90.     lseek(pc->fd, 0L, SEEK_CUR) + pc->bufsize < 0) {
  91. /*
  92.  * Due to a kernel bug, after 2^31 bytes,
  93.  * the kernel file offset overflows and
  94.  * read fails with EINVAL. The lseek()
  95.  * to 0 will fix things.
  96.  */
  97. (void)lseek(pc->fd, 0L, SEEK_SET);
  98. goto again;
  99. }
  100. sprintf(pc->errbuf, "pf read: %s",
  101. pcap_strerror(errno));
  102. return (-1);
  103. }
  104. bp = pc->buffer + pc->offset;
  105. } else
  106. bp = pc->bp;
  107. /*
  108.  * Loop through each packet.
  109.  */
  110. n = 0;
  111. #ifdef PCAP_FDDIPAD
  112. if (pc->linktype == DLT_FDDI)
  113. pad = pcap_fddipad;
  114. else
  115. pad = 0;
  116. #endif
  117. while (cc > 0) {
  118. if (cc < sizeof(*sp)) {
  119. sprintf(pc->errbuf, "pf short read (%d)", cc);
  120. return (-1);
  121. }
  122. #ifdef LBL_ALIGN
  123. if ((long)bp & 3) {
  124. sp = &stamp;
  125. memcpy((char *)sp, (char *)bp, sizeof(*sp));
  126. } else
  127. #endif
  128. sp = (struct enstamp *)bp;
  129. if (sp->ens_stamplen != sizeof(*sp)) {
  130. sprintf(pc->errbuf, "pf short stamplen (%d)",
  131.     sp->ens_stamplen);
  132. return (-1);
  133. }
  134. p = bp + sp->ens_stamplen;
  135. buflen = sp->ens_count;
  136. if (buflen > pc->snapshot)
  137. buflen = pc->snapshot;
  138. /* Calculate inc before possible pad update */
  139. inc = ENALIGN(buflen + sp->ens_stamplen);
  140. cc -= inc;
  141. bp += inc;
  142. #ifdef PCAP_FDDIPAD
  143. p += pad;
  144. buflen -= pad;
  145. #endif
  146. pc->md.TotPkts++;
  147. pc->md.TotDrops += sp->ens_dropped;
  148. pc->md.TotMissed = sp->ens_ifoverflows;
  149. if (pc->md.OrigMissed < 0)
  150. pc->md.OrigMissed = pc->md.TotMissed;
  151. /*
  152.  * Short-circuit evaluation: if using BPF filter
  153.  * in kernel, no need to do it now.
  154.  */
  155. if (fcode == NULL ||
  156.     bpf_filter(fcode, p, sp->ens_count, buflen)) {
  157. struct pcap_pkthdr h;
  158. pc->md.TotAccepted++;
  159. h.ts = sp->ens_tstamp;
  160. #ifdef PCAP_FDDIPAD
  161. h.len = sp->ens_count - pad;
  162. #else
  163. h.len = sp->ens_count;
  164. #endif
  165. h.caplen = buflen;
  166. (*callback)(user, &h, p);
  167. if (++n >= cnt && cnt > 0) {
  168. pc->cc = cc;
  169. pc->bp = bp;
  170. return (n);
  171. }
  172. }
  173. }
  174. pc->cc = 0;
  175. return (n);
  176. }
  177. int
  178. pcap_stats(pcap_t *p, struct pcap_stat *ps)
  179. {
  180. ps->ps_recv = p->md.TotAccepted;
  181. ps->ps_drop = p->md.TotDrops;
  182. ps->ps_ifdrop = p->md.TotMissed - p->md.OrigMissed;
  183. return (0);
  184. }
  185. pcap_t *
  186. pcap_open_live(char *device, int snaplen, int promisc, int to_ms, char *ebuf)
  187. {
  188. pcap_t *p;
  189. short enmode;
  190. int backlog = -1; /* request the most */
  191. struct enfilter Filter;
  192. struct endevp devparams;
  193. p = (pcap_t *)malloc(sizeof(*p));
  194. if (p == NULL) {
  195. sprintf(ebuf, "pcap_open_live: %s", pcap_strerror(errno));
  196. return (0);
  197. }
  198. bzero((char *)p, sizeof(*p));
  199. p->fd = pfopen(device, O_RDONLY);
  200. if (p->fd < 0) {
  201. sprintf(ebuf, "pf open: %s: %sn
  202. your system may not be properly configured; see "man packetfilter(4)"n",
  203. device, pcap_strerror(errno));
  204. goto bad;
  205. }
  206. p->md.OrigMissed = -1;
  207. enmode = ENTSTAMP|ENBATCH|ENNONEXCL;
  208. if (promisc)
  209. enmode |= ENPROMISC;
  210. if (ioctl(p->fd, EIOCMBIS, (caddr_t)&enmode) < 0) {
  211. sprintf(ebuf, "EIOCMBIS: %s", pcap_strerror(errno));
  212. goto bad;
  213. }
  214. #ifdef ENCOPYALL
  215. /* Try to set COPYALL mode so that we see packets to ourself */
  216. enmode = ENCOPYALL;
  217. (void)ioctl(p->fd, EIOCMBIS, (caddr_t)&enmode);/* OK if this fails */
  218. #endif
  219. /* set the backlog */
  220. if (ioctl(p->fd, EIOCSETW, (caddr_t)&backlog) < 0) {
  221. sprintf(ebuf, "EIOCSETW: %s", pcap_strerror(errno));
  222. goto bad;
  223. }
  224. /* discover interface type */
  225. if (ioctl(p->fd, EIOCDEVP, (caddr_t)&devparams) < 0) {
  226. sprintf(ebuf, "EIOCDEVP: %s", pcap_strerror(errno));
  227. goto bad;
  228. }
  229. /* HACK: to compile prior to Ultrix 4.2 */
  230. #ifndef ENDT_FDDI
  231. #define ENDT_FDDI 4
  232. #endif
  233. switch (devparams.end_dev_type) {
  234. case ENDT_10MB:
  235. p->linktype = DLT_EN10MB;
  236. p->offset = 2;
  237. break;
  238. case ENDT_FDDI:
  239. p->linktype = DLT_FDDI;
  240. break;
  241. default:
  242. /*
  243.  * XXX
  244.  * Currently, the Ultrix packet filter supports only
  245.  * Ethernet and FDDI.  Eventually, support for SLIP and PPP
  246.  * (and possibly others: T1?) should be added.
  247.  */
  248. #ifdef notdef
  249. warning(
  250.    "Packet filter data-link type %d unknown, assuming Ethernet",
  251.     devparams.end_dev_type);
  252. #endif
  253. p->linktype = DLT_EN10MB;
  254. p->offset = 2;
  255. break;
  256. }
  257. /* set truncation */
  258. #ifdef PCAP_FDDIPAD
  259. if (p->linktype == DLT_FDDI)
  260. /* packetfilter includes the padding in the snapshot */
  261. snaplen += pcap_fddipad;
  262. #endif
  263. if (ioctl(p->fd, EIOCTRUNCATE, (caddr_t)&snaplen) < 0) {
  264. sprintf(ebuf, "EIOCTRUNCATE: %s", pcap_strerror(errno));
  265. goto bad;
  266. }
  267. p->snapshot = snaplen;
  268. /* accept all packets */
  269. bzero((char *)&Filter, sizeof(Filter));
  270. Filter.enf_Priority = 37; /* anything > 2 */
  271. Filter.enf_FilterLen = 0; /* means "always true" */
  272. if (ioctl(p->fd, EIOCSETF, (caddr_t)&Filter) < 0) {
  273. sprintf(ebuf, "EIOCSETF: %s", pcap_strerror(errno));
  274. goto bad;
  275. }
  276. if (to_ms != 0) {
  277. struct timeval timeout;
  278. timeout.tv_sec = to_ms / 1000;
  279. timeout.tv_usec = (to_ms * 1000) % 1000000;
  280. if (ioctl(p->fd, EIOCSRTIMEOUT, (caddr_t)&timeout) < 0) {
  281. sprintf(ebuf, "EIOCSRTIMEOUT: %s",
  282. pcap_strerror(errno));
  283. goto bad;
  284. }
  285. }
  286. p->bufsize = BUFSPACE;
  287. p->buffer = (u_char*)malloc(p->bufsize + p->offset);
  288. return (p);
  289.  bad:
  290. free(p);
  291. return (NULL);
  292. }
  293. int
  294. pcap_setfilter(pcap_t *p, struct bpf_program *fp)
  295. {
  296. /*
  297.  * See if BIOCSETF works.  If it does, the kernel supports
  298.  * BPF-style filters, and we do not need to do post-filtering.
  299.  */
  300. p->md.use_bpf = (ioctl(p->fd, BIOCSETF, (caddr_t)fp) >= 0);
  301. if (p->md.use_bpf) {
  302. struct bpf_version bv;
  303. if (ioctl(p->fd, BIOCVERSION, (caddr_t)&bv) < 0) {
  304. sprintf(p->errbuf, "BIOCVERSION: %s",
  305. pcap_strerror(errno));
  306. return (-1);
  307. }
  308. else if (bv.bv_major != BPF_MAJOR_VERSION ||
  309.  bv.bv_minor < BPF_MINOR_VERSION) {
  310. fprintf(stderr,
  311. "requires bpf language %d.%d or higher; kernel is %d.%d",
  312. BPF_MAJOR_VERSION, BPF_MINOR_VERSION,
  313.       bv.bv_major, bv.bv_minor);
  314. /* don't give up, just be inefficient */
  315. p->md.use_bpf = 0;
  316. }
  317. } else
  318. p->fcode = *fp;
  319. /*XXX this goes in tcpdump*/
  320. if (p->md.use_bpf)
  321. fprintf(stderr, "tcpdump: Using kernel BPF filtern");
  322. else
  323. fprintf(stderr, "tcpdump: Filtering in user processn");
  324. return (0);
  325. }