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

Telnet服务器

开发平台:

Unix_Linux

  1. /*
  2.  * Copyright (c) 1993, 1994, 1995, 1996, 1997
  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. #ifndef lint
  22. static const char rcsid[] =
  23.     "@(#) $Header: /usr/local/cvs/nessus-libraries/libpcap-nessus/pcap-snoop.c,v 1.3 2003/02/06 20:28:09 renaud Exp $ (LBL)";
  24. #endif
  25. #include <sys/param.h>
  26. #include <sys/file.h>
  27. #include <sys/ioctl.h>
  28. #include <sys/socket.h>
  29. #include <sys/time.h>
  30. #include <net/raw.h>
  31. #include <net/if.h>
  32. #include <netinet/in.h>
  33. #include <netinet/in_systm.h>
  34. #include <netinet/ip.h>
  35. #include <netinet/if_ether.h>
  36. #include <netinet/ip_var.h>
  37. #include <netinet/udp.h>
  38. #include <netinet/udp_var.h>
  39. #include <netinet/tcp.h>
  40. #include <netinet/tcpip.h>
  41. #include <errno.h>
  42. #include <stdio.h>
  43. #include <stdlib.h>
  44. #include <string.h>
  45. #include <unistd.h>
  46. #include "pcap-int.h"
  47. #include "gnuc.h"
  48. #ifdef HAVE_OS_PROTO_H
  49. #include "os-proto.h"
  50. #endif
  51. int
  52. pcap_read(pcap_t *p, int cnt, pcap_handler callback, u_char *user)
  53. {
  54. int cc;
  55. register struct snoopheader *sh;
  56. register int datalen;
  57. register int caplen;
  58. register u_char *cp;
  59. again:
  60. cc = read(p->fd, (char *)p->buffer, p->bufsize);
  61. if (cc < 0) {
  62. /* Don't choke when we get ptraced */
  63. switch (errno) {
  64. case EINTR:
  65. goto again;
  66. case EWOULDBLOCK:
  67. return (0); /* XXX */
  68. }
  69. sprintf(p->errbuf, "read: %s", pcap_strerror(errno));
  70. return (-1);
  71. }
  72. sh = (struct snoopheader *)p->buffer;
  73. datalen = sh->snoop_packetlen;
  74. caplen = (datalen < p->snapshot) ? datalen : p->snapshot;
  75. cp = (u_char *)(sh + 1) + p->offset; /* XXX */
  76. if (p->fcode.bf_insns == NULL ||
  77.     bpf_filter(p->fcode.bf_insns, cp, datalen, caplen)) {
  78. struct pcap_pkthdr h;
  79. ++p->md.stat.ps_recv;
  80. h.ts = sh->snoop_timestamp;
  81. h.len = datalen;
  82. h.caplen = caplen;
  83. (*callback)(user, &h, cp);
  84. return (1);
  85. }
  86. return (0);
  87. }
  88. int
  89. pcap_stats(pcap_t *p, struct pcap_stat *ps)
  90. {
  91. register struct rawstats *rs;
  92. struct rawstats rawstats;
  93. rs = &rawstats;
  94. bzero((char *)rs, sizeof(*rs));
  95. if (ioctl(p->fd, SIOCRAWSTATS, (char *)rs) < 0) {
  96. sprintf(p->errbuf, "SIOCRAWSTATS: %s", pcap_strerror(errno));
  97. return (-1);
  98. }
  99. p->md.stat.ps_drop =
  100.     rs->rs_snoop.ss_ifdrops + rs->rs_snoop.ss_sbdrops +
  101.     rs->rs_drain.ds_ifdrops + rs->rs_drain.ds_sbdrops;
  102. *ps = p->md.stat;
  103. return (0);
  104. }
  105. /* XXX can't disable promiscuous */
  106. pcap_t *
  107. pcap_open_live(char *device, int snaplen, int promisc, int to_ms, char *ebuf)
  108. {
  109. int fd;
  110. struct sockaddr_raw sr;
  111. struct snoopfilter sf;
  112. u_int v;
  113. pcap_t *p;
  114. p = (pcap_t *)malloc(sizeof(*p));
  115. if (p == NULL) {
  116. sprintf(ebuf, "malloc: %s", pcap_strerror(errno));
  117. return (NULL);
  118. }
  119. bzero((char *)p, sizeof(*p));
  120. fd = socket(PF_RAW, SOCK_RAW, RAWPROTO_SNOOP);
  121. if (fd < 0) {
  122. sprintf(ebuf, "snoop socket: %s", pcap_strerror(errno));
  123. goto bad;
  124. }
  125. p->fd = fd;
  126. bzero((char *)&sr, sizeof(sr));
  127. sr.sr_family = AF_RAW;
  128. (void)strncpy(sr.sr_ifname, device, sizeof(sr.sr_ifname));
  129. if (bind(fd, (struct sockaddr *)&sr, sizeof(sr))) {
  130. sprintf(ebuf, "snoop bind: %s", pcap_strerror(errno));
  131. goto bad;
  132. }
  133. bzero((char *)&sf, sizeof(sf));
  134. if (ioctl(fd, SIOCADDSNOOP, &sf) < 0) {
  135. sprintf(ebuf, "SIOCADDSNOOP: %s", pcap_strerror(errno));
  136. goto bad;
  137. }
  138. v = 64 * 1024;
  139. (void)setsockopt(fd, SOL_SOCKET, SO_RCVBUF, (char *)&v, sizeof(v));
  140. if (ioctl(fd, SIOCSNOOPLEN, &snaplen) < 0) {
  141. sprintf(ebuf, "SIOCSNOOPLEN: %s", pcap_strerror(errno));
  142. goto bad;
  143. }
  144. p->snapshot = snaplen;
  145. v = 1;
  146. if (ioctl(fd, SIOCSNOOPING, &v) < 0) {
  147. sprintf(ebuf, "SIOCSNOOPING: %s", pcap_strerror(errno));
  148. goto bad;
  149. }
  150. /*
  151.  * XXX hack - map device name to link layer type
  152.  */
  153. if (strncmp("et", device, 2) == 0 || /* Challenge 10 Mbit */
  154.     strncmp("ec", device, 2) == 0 || /* Indigo/Indy 10 Mbit,
  155.    O2 10/100 */
  156.     strncmp("ef", device, 2) == 0 || /* O200/2000 10/100 Mbit */
  157.     strncmp("gfe", device, 3) == 0 || /* GIO 100 Mbit */
  158.     strncmp("fxp", device, 3) == 0 || /* Challenge VME Enet */
  159.     strncmp("ep", device, 2) == 0 || /* Challenge 8x10 Mbit EPLEX */
  160.     strncmp("vfe", device, 3) == 0 || /* Challenge VME 100Mbit */
  161.     strncmp("fa", device, 2) == 0 ||
  162.     strncmp("qaa", device, 3) == 0) {
  163. p->linktype = DLT_EN10MB;
  164. p->offset = RAW_HDRPAD(sizeof(struct ether_header));
  165. } else if (strncmp("ipg", device, 3) == 0 ||
  166.    strncmp("rns", device, 3) == 0 || /* O2/200/2000 FDDI */
  167.    strncmp("xpi", device, 3) == 0) {
  168. p->linktype = DLT_FDDI;
  169. p->offset = 3; /* XXX yeah? */
  170. } else if (strncmp("ppp", device, 3) == 0) {
  171. p->linktype = DLT_RAW;
  172. } else if (strncmp("lo", device, 2) == 0) {
  173. p->linktype = DLT_NULL;
  174. } else {
  175. sprintf(ebuf, "snoop: unknown physical layer type");
  176. goto bad;
  177. }
  178. p->bufsize = 4096; /* XXX */
  179. p->buffer = (u_char *)malloc(p->bufsize);
  180. if (p->buffer == NULL) {
  181. sprintf(ebuf, "malloc: %s", pcap_strerror(errno));
  182. goto bad;
  183. }
  184. return (p);
  185.  bad:
  186. (void)close(fd);
  187. free(p);
  188. return (NULL);
  189. }
  190. int
  191. pcap_setfilter(pcap_t *p, struct bpf_program *fp)
  192. {
  193. p->fcode = *fp;
  194. return (0);
  195. }