Correct math and limerick.
[dragonfly.git] / contrib / libpcap / nametoaddr.c
blobc0e86f43ab3b0bda18b104a75f09ae6bca915c4a
1 /*
2 * Copyright (c) 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998
3 * The Regents of the University of California. All rights reserved.
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.
21 * Name to id translation routines used by the scanner.
22 * These functions are not time critical.
25 #ifndef lint
26 static const char rcsid[] _U_ =
27 "@(#) $Header: /tcpdump/master/libpcap/nametoaddr.c,v 1.83 2008-02-06 10:21:30 guy Exp $ (LBL)";
28 #endif
30 #ifdef HAVE_CONFIG_H
31 #include "config.h"
32 #endif
34 #ifdef DECNETLIB
35 #include <sys/types.h>
36 #include <netdnet/dnetdb.h>
37 #endif
39 #ifdef WIN32
40 #include <pcap-stdinc.h>
42 #else /* WIN32 */
44 #include <sys/param.h>
45 #include <sys/types.h> /* concession to AIX */
46 #include <sys/socket.h>
47 #include <sys/time.h>
49 #include <netinet/in.h>
50 #endif /* WIN32 */
52 #ifndef WIN32
53 #ifdef HAVE_ETHER_HOSTTON
55 * XXX - do we need any of this if <netinet/if_ether.h> doesn't declare
56 * ether_hostton()?
58 #ifdef HAVE_NETINET_IF_ETHER_H
59 struct mbuf; /* Squelch compiler warnings on some platforms for */
60 struct rtentry; /* declarations in <net/if.h> */
61 #include <net/if.h> /* for "struct ifnet" in "struct arpcom" on Solaris */
62 #include <netinet/if_ether.h>
63 #endif /* HAVE_NETINET_IF_ETHER_H */
64 #ifdef NETINET_ETHER_H_DECLARES_ETHER_HOSTTON
65 #include <netinet/ether.h>
66 #endif /* NETINET_ETHER_H_DECLARES_ETHER_HOSTTON */
67 #endif /* HAVE_ETHER_HOSTTON */
68 #include <arpa/inet.h>
69 #include <netdb.h>
70 #endif /* WIN32 */
72 #include <ctype.h>
73 #include <errno.h>
74 #include <stdlib.h>
75 #include <string.h>
76 #include <stdio.h>
78 #include "pcap-int.h"
80 #include "gencode.h"
81 #include <pcap/namedb.h>
83 #ifdef HAVE_OS_PROTO_H
84 #include "os-proto.h"
85 #endif
87 #ifndef NTOHL
88 #define NTOHL(x) (x) = ntohl(x)
89 #define NTOHS(x) (x) = ntohs(x)
90 #endif
92 static inline int xdtoi(int);
95 * Convert host name to internet address.
96 * Return 0 upon failure.
98 bpf_u_int32 **
99 pcap_nametoaddr(const char *name)
101 #ifndef h_addr
102 static bpf_u_int32 *hlist[2];
103 #endif
104 bpf_u_int32 **p;
105 struct hostent *hp;
107 if ((hp = gethostbyname(name)) != NULL) {
108 #ifndef h_addr
109 hlist[0] = (bpf_u_int32 *)hp->h_addr;
110 NTOHL(hp->h_addr);
111 return hlist;
112 #else
113 for (p = (bpf_u_int32 **)hp->h_addr_list; *p; ++p)
114 NTOHL(**p);
115 return (bpf_u_int32 **)hp->h_addr_list;
116 #endif
118 else
119 return 0;
122 #ifdef INET6
123 struct addrinfo *
124 pcap_nametoaddrinfo(const char *name)
126 struct addrinfo hints, *res;
127 int error;
129 memset(&hints, 0, sizeof(hints));
130 hints.ai_family = PF_UNSPEC;
131 hints.ai_socktype = SOCK_STREAM; /*not really*/
132 hints.ai_protocol = IPPROTO_TCP; /*not really*/
133 error = getaddrinfo(name, NULL, &hints, &res);
134 if (error)
135 return NULL;
136 else
137 return res;
139 #endif /*INET6*/
142 * Convert net name to internet address.
143 * Return 0 upon failure.
145 bpf_u_int32
146 pcap_nametonetaddr(const char *name)
148 #ifndef WIN32
149 struct netent *np;
151 if ((np = getnetbyname(name)) != NULL)
152 return np->n_net;
153 else
154 return 0;
155 #else
157 * There's no "getnetbyname()" on Windows.
159 return 0;
160 #endif
164 * Convert a port name to its port and protocol numbers.
165 * We assume only TCP or UDP.
166 * Return 0 upon failure.
169 pcap_nametoport(const char *name, int *port, int *proto)
171 struct servent *sp;
172 int tcp_port = -1;
173 int udp_port = -1;
176 * We need to check /etc/services for ambiguous entries.
177 * If we find the ambiguous entry, and it has the
178 * same port number, change the proto to PROTO_UNDEF
179 * so both TCP and UDP will be checked.
181 sp = getservbyname(name, "tcp");
182 if (sp != NULL) tcp_port = ntohs(sp->s_port);
183 sp = getservbyname(name, "udp");
184 if (sp != NULL) udp_port = ntohs(sp->s_port);
185 if (tcp_port >= 0) {
186 *port = tcp_port;
187 *proto = IPPROTO_TCP;
188 if (udp_port >= 0) {
189 if (udp_port == tcp_port)
190 *proto = PROTO_UNDEF;
191 #ifdef notdef
192 else
193 /* Can't handle ambiguous names that refer
194 to different port numbers. */
195 warning("ambiguous port %s in /etc/services",
196 name);
197 #endif
199 return 1;
201 if (udp_port >= 0) {
202 *port = udp_port;
203 *proto = IPPROTO_UDP;
204 return 1;
206 #if defined(ultrix) || defined(__osf__)
207 /* Special hack in case NFS isn't in /etc/services */
208 if (strcmp(name, "nfs") == 0) {
209 *port = 2049;
210 *proto = PROTO_UNDEF;
211 return 1;
213 #endif
214 return 0;
218 * Convert a string in the form PPP-PPP, where correspond to ports, to
219 * a starting and ending port in a port range.
220 * Return 0 on failure.
223 pcap_nametoportrange(const char *name, int *port1, int *port2, int *proto)
225 u_int p1, p2;
226 char *off, *cpy;
227 int save_proto;
229 if (sscanf(name, "%d-%d", &p1, &p2) != 2) {
230 if ((cpy = strdup(name)) == NULL)
231 return 0;
233 if ((off = strchr(cpy, '-')) == NULL) {
234 free(cpy);
235 return 0;
238 *off = '\0';
240 if (pcap_nametoport(cpy, port1, proto) == 0) {
241 free(cpy);
242 return 0;
244 save_proto = *proto;
246 if (pcap_nametoport(off + 1, port2, proto) == 0) {
247 free(cpy);
248 return 0;
250 free(cpy);
252 if (*proto != save_proto)
253 *proto = PROTO_UNDEF;
254 } else {
255 *port1 = p1;
256 *port2 = p2;
257 *proto = PROTO_UNDEF;
260 return 1;
264 pcap_nametoproto(const char *str)
266 struct protoent *p;
268 p = getprotobyname(str);
269 if (p != 0)
270 return p->p_proto;
271 else
272 return PROTO_UNDEF;
275 #include "ethertype.h"
277 struct eproto {
278 const char *s;
279 u_short p;
282 /* Static data base of ether protocol types. */
283 struct eproto eproto_db[] = {
284 { "pup", ETHERTYPE_PUP },
285 { "xns", ETHERTYPE_NS },
286 { "ip", ETHERTYPE_IP },
287 #ifdef INET6
288 { "ip6", ETHERTYPE_IPV6 },
289 #endif
290 { "arp", ETHERTYPE_ARP },
291 { "rarp", ETHERTYPE_REVARP },
292 { "sprite", ETHERTYPE_SPRITE },
293 { "mopdl", ETHERTYPE_MOPDL },
294 { "moprc", ETHERTYPE_MOPRC },
295 { "decnet", ETHERTYPE_DN },
296 { "lat", ETHERTYPE_LAT },
297 { "sca", ETHERTYPE_SCA },
298 { "lanbridge", ETHERTYPE_LANBRIDGE },
299 { "vexp", ETHERTYPE_VEXP },
300 { "vprod", ETHERTYPE_VPROD },
301 { "atalk", ETHERTYPE_ATALK },
302 { "atalkarp", ETHERTYPE_AARP },
303 { "loopback", ETHERTYPE_LOOPBACK },
304 { "decdts", ETHERTYPE_DECDTS },
305 { "decdns", ETHERTYPE_DECDNS },
306 { (char *)0, 0 }
310 pcap_nametoeproto(const char *s)
312 struct eproto *p = eproto_db;
314 while (p->s != 0) {
315 if (strcmp(p->s, s) == 0)
316 return p->p;
317 p += 1;
319 return PROTO_UNDEF;
322 #include "llc.h"
324 /* Static data base of LLC values. */
325 static struct eproto llc_db[] = {
326 { "iso", LLCSAP_ISONS },
327 { "stp", LLCSAP_8021D },
328 { "ipx", LLCSAP_IPX },
329 { "netbeui", LLCSAP_NETBEUI },
330 { (char *)0, 0 }
334 pcap_nametollc(const char *s)
336 struct eproto *p = llc_db;
338 while (p->s != 0) {
339 if (strcmp(p->s, s) == 0)
340 return p->p;
341 p += 1;
343 return PROTO_UNDEF;
346 /* Hex digit to integer. */
347 static inline int
348 xdtoi(c)
349 register int c;
351 if (isdigit(c))
352 return c - '0';
353 else if (islower(c))
354 return c - 'a' + 10;
355 else
356 return c - 'A' + 10;
360 __pcap_atoin(const char *s, bpf_u_int32 *addr)
362 u_int n;
363 int len;
365 *addr = 0;
366 len = 0;
367 while (1) {
368 n = 0;
369 while (*s && *s != '.')
370 n = n * 10 + *s++ - '0';
371 *addr <<= 8;
372 *addr |= n & 0xff;
373 len += 8;
374 if (*s == '\0')
375 return len;
376 ++s;
378 /* NOTREACHED */
382 __pcap_atodn(const char *s, bpf_u_int32 *addr)
384 #define AREASHIFT 10
385 #define AREAMASK 0176000
386 #define NODEMASK 01777
388 u_int node, area;
390 if (sscanf(s, "%d.%d", &area, &node) != 2)
391 bpf_error("malformed decnet address '%s'", s);
393 *addr = (area << AREASHIFT) & AREAMASK;
394 *addr |= (node & NODEMASK);
396 return(32);
400 * Convert 's', which can have the one of the forms:
402 * "xx:xx:xx:xx:xx:xx"
403 * "xx.xx.xx.xx.xx.xx"
404 * "xx-xx-xx-xx-xx-xx"
405 * "xxxx.xxxx.xxxx"
406 * "xxxxxxxxxxxx"
408 * (or various mixes of ':', '.', and '-') into a new
409 * ethernet address. Assumes 's' is well formed.
411 u_char *
412 pcap_ether_aton(const char *s)
414 register u_char *ep, *e;
415 register u_int d;
417 e = ep = (u_char *)malloc(6);
419 while (*s) {
420 if (*s == ':' || *s == '.' || *s == '-')
421 s += 1;
422 d = xdtoi(*s++);
423 if (isxdigit((unsigned char)*s)) {
424 d <<= 4;
425 d |= xdtoi(*s++);
427 *ep++ = d;
430 return (e);
433 #ifndef HAVE_ETHER_HOSTTON
434 /* Roll our own */
435 u_char *
436 pcap_ether_hostton(const char *name)
438 register struct pcap_etherent *ep;
439 register u_char *ap;
440 static FILE *fp = NULL;
441 static int init = 0;
443 if (!init) {
444 fp = fopen(PCAP_ETHERS_FILE, "r");
445 ++init;
446 if (fp == NULL)
447 return (NULL);
448 } else if (fp == NULL)
449 return (NULL);
450 else
451 rewind(fp);
453 while ((ep = pcap_next_etherent(fp)) != NULL) {
454 if (strcmp(ep->name, name) == 0) {
455 ap = (u_char *)malloc(6);
456 if (ap != NULL) {
457 memcpy(ap, ep->addr, 6);
458 return (ap);
460 break;
463 return (NULL);
465 #else
467 #if !defined(HAVE_DECL_ETHER_HOSTTON) || !HAVE_DECL_ETHER_HOSTTON
468 #ifndef HAVE_STRUCT_ETHER_ADDR
469 struct ether_addr {
470 unsigned char ether_addr_octet[6];
472 #endif
473 extern int ether_hostton(const char *, struct ether_addr *);
474 #endif
476 /* Use the os supplied routines */
477 u_char *
478 pcap_ether_hostton(const char *name)
480 register u_char *ap;
481 u_char a[6];
483 ap = NULL;
484 if (ether_hostton(name, (struct ether_addr *)a) == 0) {
485 ap = (u_char *)malloc(6);
486 if (ap != NULL)
487 memcpy((char *)ap, (char *)a, 6);
489 return (ap);
491 #endif
493 u_short
494 __pcap_nametodnaddr(const char *name)
496 #ifdef DECNETLIB
497 struct nodeent *getnodebyname();
498 struct nodeent *nep;
499 unsigned short res;
501 nep = getnodebyname(name);
502 if (nep == ((struct nodeent *)0))
503 bpf_error("unknown decnet host name '%s'\n", name);
505 memcpy((char *)&res, (char *)nep->n_addr, sizeof(unsigned short));
506 return(res);
507 #else
508 bpf_error("decnet name support not included, '%s' cannot be translated\n",
509 name);
510 return(0);
511 #endif