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

Telnet服务器

开发平台:

Unix_Linux

  1. /*
  2.  * Copyright (c) 1994, 1995, 1996, 1997, 1998
  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 the following conditions
  7.  * are met:
  8.  * 1. Redistributions of source code must retain the above copyright
  9.  *    notice, this list of conditions and the following disclaimer.
  10.  * 2. Redistributions in binary form must reproduce the above copyright
  11.  *    notice, this list of conditions and the following disclaimer in the
  12.  *    documentation and/or other materials provided with the distribution.
  13.  * 3. All advertising materials mentioning features or use of this software
  14.  *    must display the following acknowledgement:
  15.  * This product includes software developed by the Computer Systems
  16.  * Engineering Group at Lawrence Berkeley Laboratory.
  17.  * 4. Neither the name of the University nor of the Laboratory may be used
  18.  *    to endorse or promote products derived from this software without
  19.  *    specific prior written permission.
  20.  *
  21.  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
  22.  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  23.  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  24.  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
  25.  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  26.  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
  27.  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  28.  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  29.  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  30.  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  31.  * SUCH DAMAGE.
  32.  */
  33. #include "../include/config.h" 
  34. #ifndef lint
  35. static const char rcsid[] =
  36.     "@(#) $Header: /usr/local/cvs/nessus-libraries/libpcap-nessus/inet.c,v 1.4 2003/02/06 20:28:08 renaud Exp $ (LBL)";
  37. #endif
  38. #include <sys/param.h>
  39. #include <sys/file.h>
  40. #include <sys/ioctl.h>
  41. #include <sys/socket.h>
  42. #ifdef HAVE_SYS_SOCKIO_H
  43. #include <sys/sockio.h>
  44. #endif
  45. #include <sys/time.h> /* concession to AIX */
  46. #if __STDC__
  47. struct mbuf;
  48. struct rtentry;
  49. #endif
  50. #include <net/if.h>
  51. #include <netinet/in.h>
  52. #include <ctype.h>
  53. #include <errno.h>
  54. #include <memory.h>
  55. #include <stdio.h>
  56. #include <stdlib.h>
  57. #include <string.h>
  58. #include <unistd.h>
  59. #include "pcap-int.h"
  60. #include "gnuc.h"
  61. #ifdef HAVE_OS_PROTO_H
  62. #include "os-proto.h"
  63. #endif
  64. /* Not all systems have IFF_LOOPBACK */
  65. #ifdef IFF_LOOPBACK
  66. #define ISLOOPBACK(p) ((p)->ifr_flags & IFF_LOOPBACK)
  67. #else
  68. #define ISLOOPBACK(p) ((p)->ifr_name[0] == 'l' && (p)->ifr_name[1] == 'o' && 
  69.     (isdigit((p)->ifr_name[2]) || (p)->ifr_name[2] == ''))
  70. #endif
  71. /*
  72.  * Return the name of a network interface attached to the system, or NULL
  73.  * if none can be found.  The interface must be configured up; the
  74.  * lowest unit number is preferred; loopback is ignored.
  75.  */
  76. char *
  77. pcap_lookupdev(errbuf)
  78. register char *errbuf;
  79. {
  80. register int fd, minunit, n;
  81. register char *cp;
  82. register struct ifreq *ifrp, *ifend, *ifnext, *mp;
  83. struct ifconf ifc;
  84. struct ifreq ibuf[16], ifr;
  85. static char device[sizeof(ifrp->ifr_name) + 1];
  86. fd = socket(AF_INET, SOCK_DGRAM, 0);
  87. if (fd < 0) {
  88. (void)sprintf(errbuf, "socket: %s", pcap_strerror(errno));
  89. return (NULL);
  90. }
  91. ifc.ifc_len = sizeof ibuf;
  92. ifc.ifc_buf = (caddr_t)ibuf;
  93. memset((char *)ibuf, 0, sizeof(ibuf));
  94. if (ioctl(fd, SIOCGIFCONF, (char *)&ifc) < 0 ||
  95.     ifc.ifc_len < sizeof(struct ifreq)) {
  96. (void)sprintf(errbuf, "SIOCGIFCONF: %s", pcap_strerror(errno));
  97. (void)close(fd);
  98. return (NULL);
  99. }
  100. ifrp = ibuf;
  101. ifend = (struct ifreq *)((char *)ibuf + ifc.ifc_len);
  102. mp = NULL;
  103. minunit = 666;
  104. for (; ifrp < ifend; ifrp = ifnext) {
  105. #ifdef HAVE_SOCKADDR_SA_LEN
  106. n = ifrp->ifr_addr.sa_len + sizeof(ifrp->ifr_name);
  107. if (n < sizeof(*ifrp))
  108. ifnext = ifrp + 1;
  109. else
  110. ifnext = (struct ifreq *)((char *)ifrp + n);
  111. if (ifrp->ifr_addr.sa_family != AF_INET)
  112. continue;
  113. #else
  114. ifnext = ifrp + 1;
  115. #endif
  116. /*
  117.  * Need a template to preserve address info that is
  118.  * used below to locate the next entry.  (Otherwise,
  119.  * SIOCGIFFLAGS stomps over it because the requests
  120.  * are returned in a union.)
  121.  */
  122. strncpy(ifr.ifr_name, ifrp->ifr_name, sizeof(ifr.ifr_name));
  123. if (ioctl(fd, SIOCGIFFLAGS, (char *)&ifr) < 0) {
  124. if (errno == ENXIO)
  125. continue;
  126. (void)sprintf(errbuf, "SIOCGIFFLAGS: %.*s: %s",
  127.     (int)sizeof(ifr.ifr_name), ifr.ifr_name,
  128.     pcap_strerror(errno));
  129. (void)close(fd);
  130. return (NULL);
  131. }
  132. /* Must be up and not the loopback */
  133. if ((ifr.ifr_flags & IFF_UP) == 0 || ISLOOPBACK(&ifr))
  134. continue;
  135. for (cp = ifrp->ifr_name; !isdigit(*cp); ++cp)
  136. continue;
  137. n = atoi(cp);
  138. if (n < minunit) {
  139. minunit = n;
  140. mp = ifrp;
  141. }
  142. }
  143. (void)close(fd);
  144. if (mp == NULL) {
  145. (void)strcpy(errbuf, "no suitable device found");
  146. return (NULL);
  147. }
  148. (void)strncpy(device, mp->ifr_name, sizeof(device) - 1);
  149. device[sizeof(device) - 1] = '';
  150. return (device);
  151. }
  152. int
  153. pcap_lookupnet(device, netp, maskp, errbuf)
  154. register char *device;
  155. register bpf_u_int32 *netp, *maskp;
  156. register char *errbuf;
  157. {
  158. register int fd;
  159. register struct sockaddr_in *sin;
  160. struct ifreq ifr;
  161. fd = socket(AF_INET, SOCK_DGRAM, 0);
  162. if (fd < 0) {
  163. (void)sprintf(errbuf, "socket: %s", pcap_strerror(errno));
  164. return (-1);
  165. }
  166. memset(&ifr, 0, sizeof(ifr));
  167. #ifdef linux
  168. /* XXX Work around Linux kernel bug */
  169. ifr.ifr_addr.sa_family = AF_INET;
  170. #endif
  171. (void)strncpy(ifr.ifr_name, device, sizeof(ifr.ifr_name));
  172. if (ioctl(fd, SIOCGIFADDR, (char *)&ifr) < 0) {
  173. (void)sprintf(errbuf, "SIOCGIFADDR: %s: %s",
  174.     device, pcap_strerror(errno));
  175. (void)close(fd);
  176. return (-1);
  177. }
  178. sin = (struct sockaddr_in *)&ifr.ifr_addr;
  179. *netp = sin->sin_addr.s_addr;
  180. if (ioctl(fd, SIOCGIFNETMASK, (char *)&ifr) < 0) {
  181. (void)sprintf(errbuf, "SIOCGIFNETMASK: %s: %s",
  182.     device, pcap_strerror(errno));
  183. (void)close(fd);
  184. return (-1);
  185. }
  186. (void)close(fd);
  187. *maskp = sin->sin_addr.s_addr;
  188. if (*maskp == 0) {
  189. if (IN_CLASSA(*netp))
  190. *maskp = IN_CLASSA_NET;
  191. else if (IN_CLASSB(*netp))
  192. *maskp = IN_CLASSB_NET;
  193. else if (IN_CLASSC(*netp))
  194. *maskp = IN_CLASSC_NET;
  195. else {
  196. (void)sprintf(errbuf, "inet class for 0x%x unknown",
  197.     *netp);
  198. return (-1);
  199. }
  200. }
  201. *netp &= *maskp;
  202. return (0);
  203. }