]>
The Tcpdump Group git mirrors - libpcap/blob - nametoaddr.c
c69c36dddbbd5629cca12d1a9c1b723abe5da070
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
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.
30 #include <sys/types.h>
31 #include <netdnet/dnetdb.h>
40 * To quote the MSDN page for getaddrinfo() at
42 * https://msdn.microsoft.com/en-us/library/windows/desktop/ms738520(v=vs.85).aspx
44 * "Support for getaddrinfo on Windows 2000 and older versions
45 * The getaddrinfo function was added to the Ws2_32.dll on Windows XP and
46 * later. To execute an application that uses this function on earlier
47 * versions of Windows, then you need to include the Ws2tcpip.h and
48 * Wspiapi.h files. When the Wspiapi.h include file is added, the
49 * getaddrinfo function is defined to the WspiapiGetAddrInfo inline
50 * function in the Wspiapi.h file. At runtime, the WspiapiGetAddrInfo
51 * function is implemented in such a way that if the Ws2_32.dll or the
52 * Wship6.dll (the file containing getaddrinfo in the IPv6 Technology
53 * Preview for Windows 2000) does not include getaddrinfo, then a
54 * version of getaddrinfo is implemented inline based on code in the
55 * Wspiapi.h header file. This inline code will be used on older Windows
56 * platforms that do not natively support the getaddrinfo function."
58 * We use getaddrinfo(), so we include Wspiapi.h here.
63 #include <sys/param.h>
64 #include <sys/types.h>
65 #include <sys/socket.h>
68 #include <netinet/in.h>
70 #ifdef HAVE_ETHER_HOSTTON
71 #if defined(NET_ETHERNET_H_DECLARES_ETHER_HOSTTON)
73 * OK, just include <net/ethernet.h>.
75 #include <net/ethernet.h>
76 #elif defined(NETINET_ETHER_H_DECLARES_ETHER_HOSTTON)
78 * OK, just include <netinet/ether.h>
80 #include <netinet/ether.h>
81 #elif defined(SYS_ETHERNET_H_DECLARES_ETHER_HOSTTON)
83 * OK, just include <sys/ethernet.h>
85 #include <sys/ethernet.h>
86 #elif defined(ARPA_INET_H_DECLARES_ETHER_HOSTTON)
88 * OK, just include <arpa/inet.h>
90 #include <arpa/inet.h>
91 #elif defined(NETINET_IF_ETHER_H_DECLARES_ETHER_HOSTTON)
93 * OK, include <netinet/if_ether.h>, after all the other stuff we
94 * need to include or define for its benefit.
96 #define NEED_NETINET_IF_ETHER_H
99 * We'll have to declare it ourselves.
100 * If <netinet/if_ether.h> defines struct ether_addr, include
101 * it. Otherwise, define it ourselves.
103 #ifdef HAVE_STRUCT_ETHER_ADDR
104 #define NEED_NETINET_IF_ETHER_H
105 #else /* HAVE_STRUCT_ETHER_ADDR */
107 unsigned char ether_addr_octet
[6];
109 #endif /* HAVE_STRUCT_ETHER_ADDR */
110 #endif /* what declares ether_hostton() */
112 #ifdef NEED_NETINET_IF_ETHER_H
113 #include <net/if.h> /* Needed on some platforms */
114 #include <netinet/in.h> /* Needed on some platforms */
115 #include <netinet/if_ether.h>
116 #endif /* NEED_NETINET_IF_ETHER_H */
118 #ifndef HAVE_DECL_ETHER_HOSTTON
120 * No header declares it, so declare it ourselves.
122 extern int ether_hostton(const char *, struct ether_addr
*);
123 #endif /* !defined(HAVE_DECL_ETHER_HOSTTON) */
124 #endif /* HAVE_ETHER_HOSTTON */
126 #include <arpa/inet.h>
136 #include "pcap-int.h"
139 #include <pcap/namedb.h>
140 #include "nametoaddr.h"
142 #ifdef HAVE_OS_PROTO_H
143 #include "os-proto.h"
147 #define NTOHL(x) (x) = ntohl(x)
148 #define NTOHS(x) (x) = ntohs(x)
151 static inline int xdtoi(int);
154 * Convert host name to internet address.
155 * Return 0 upon failure.
156 * XXX - not thread-safe; don't use it inside libpcap.
159 pcap_nametoaddr(const char *name
)
162 static bpf_u_int32
*hlist
[2];
167 if ((hp
= gethostbyname(name
)) != NULL
) {
169 hlist
[0] = (bpf_u_int32
*)hp
->h_addr
;
173 for (p
= (bpf_u_int32
**)hp
->h_addr_list
; *p
; ++p
)
175 return (bpf_u_int32
**)hp
->h_addr_list
;
183 pcap_nametoaddrinfo(const char *name
)
185 struct addrinfo hints
, *res
;
188 memset(&hints
, 0, sizeof(hints
));
189 hints
.ai_family
= PF_UNSPEC
;
190 hints
.ai_socktype
= SOCK_STREAM
; /*not really*/
191 hints
.ai_protocol
= IPPROTO_TCP
; /*not really*/
192 error
= getaddrinfo(name
, NULL
, &hints
, &res
);
200 * Convert net name to internet address.
201 * Return 0 upon failure.
202 * XXX - not guaranteed to be thread-safe! See below for platforms
203 * on which it is thread-safe and on which it isn't.
206 pcap_nametonetaddr(const char *name
)
210 * There's no "getnetbyname()" on Windows.
212 * XXX - I guess we could use the BSD code to read
213 * C:\Windows\System32\drivers\etc/networks, assuming
214 * that's its home on all the versions of Windows
215 * we use, but that file probably just has the loopback
216 * network on 127/24 on 99 44/100% of Windows machines.
218 * (Heck, these days it probably just has that on 99 44/100%
219 * of *UN*X* machines.)
227 #if defined(HAVE_LINUX_GETNETBYNAME_R)
229 * We have Linux's reentrant getnetbyname_r().
231 struct netent result_buf
;
232 char buf
[1024]; /* arbitrary size */
236 err
= getnetbyname_r(name
, &result_buf
, buf
, sizeof buf
, &np
,
240 * XXX - dynamically allocate the buffer, and make it
241 * bigger if we get ERANGE back?
245 #elif defined(HAVE_SOLARIS_IRIX_GETNETBYNAME_R)
247 * We have Solaris's and IRIX's reentrant getnetbyname_r().
249 struct netent result_buf
;
250 char buf
[1024]; /* arbitrary size */
252 np
= getnetbyname_r(name
, &result_buf
, buf
, (int)sizeof buf
);
253 #elif defined(HAVE_AIX_GETNETBYNAME_R)
255 * We have AIX's reentrant getnetbyname_r().
257 struct netent result_buf
;
258 struct netent_data net_data
;
260 if (getnetbyname_r(name
, &result_buf
, &net_data
) == -1)
266 * We don't have any getnetbyname_r(); either we have a
267 * getnetbyname() that uses thread-specific data, in which
268 * case we're thread-safe (sufficiently recent FreeBSD,
269 * sufficiently recent Darwin-based OS, sufficiently recent
270 * HP-UX, sufficiently recent Tru64 UNIX), or we have the
271 * traditional getnetbyname() (everything else, including
272 * current NetBSD and OpenBSD), in which case we're not
275 np
= getnetbyname(name
);
285 * Convert a port name to its port and protocol numbers.
286 * We assume only TCP or UDP.
287 * Return 0 upon failure.
290 pcap_nametoport(const char *name
, int *port
, int *proto
)
292 struct addrinfo hints
, *res
, *ai
;
294 struct sockaddr_in
*in4
;
296 struct sockaddr_in6
*in6
;
302 * We check for both TCP and UDP in case there are
305 memset(&hints
, 0, sizeof(hints
));
306 hints
.ai_family
= PF_UNSPEC
;
307 hints
.ai_socktype
= SOCK_STREAM
;
308 hints
.ai_protocol
= IPPROTO_TCP
;
309 error
= getaddrinfo(NULL
, name
, &hints
, &res
);
311 if (error
!= EAI_NONAME
) {
313 * This is a real error, not just "there's
314 * no such service name".
315 * XXX - this doesn't return an error string.
321 * OK, we found it. Did it find anything?
323 for (ai
= res
; ai
!= NULL
; ai
= ai
->ai_next
) {
325 * Does it have an address?
327 if (ai
->ai_addr
!= NULL
) {
329 * Yes. Get a port number; we're done.
331 if (ai
->ai_addr
->sa_family
== AF_INET
) {
332 in4
= (struct sockaddr_in
*)ai
->ai_addr
;
333 tcp_port
= ntohs(in4
->sin_port
);
337 if (ai
->ai_addr
->sa_family
== AF_INET6
) {
338 in6
= (struct sockaddr_in6
*)ai
->ai_addr
;
339 tcp_port
= ntohs(in6
->sin6_port
);
348 memset(&hints
, 0, sizeof(hints
));
349 hints
.ai_family
= PF_UNSPEC
;
350 hints
.ai_socktype
= SOCK_DGRAM
;
351 hints
.ai_protocol
= IPPROTO_UDP
;
352 error
= getaddrinfo(NULL
, name
, &hints
, &res
);
354 if (error
!= EAI_NONAME
) {
356 * This is a real error, not just "there's
357 * no such service name".
358 * XXX - this doesn't return an error string.
364 * OK, we found it. Did it find anything?
366 for (ai
= res
; ai
!= NULL
; ai
= ai
->ai_next
) {
368 * Does it have an address?
370 if (ai
->ai_addr
!= NULL
) {
372 * Yes. Get a port number; we're done.
374 if (ai
->ai_addr
->sa_family
== AF_INET
) {
375 in4
= (struct sockaddr_in
*)ai
->ai_addr
;
376 udp_port
= ntohs(in4
->sin_port
);
380 if (ai
->ai_addr
->sa_family
== AF_INET6
) {
381 in6
= (struct sockaddr_in6
*)ai
->ai_addr
;
382 udp_port
= ntohs(in6
->sin6_port
);
392 * We need to check /etc/services for ambiguous entries.
393 * If we find an ambiguous entry, and it has the
394 * same port number, change the proto to PROTO_UNDEF
395 * so both TCP and UDP will be checked.
399 *proto
= IPPROTO_TCP
;
401 if (udp_port
== tcp_port
)
402 *proto
= PROTO_UNDEF
;
405 /* Can't handle ambiguous names that refer
406 to different port numbers. */
407 warning("ambiguous port %s in /etc/services",
415 *proto
= IPPROTO_UDP
;
418 #if defined(ultrix) || defined(__osf__)
419 /* Special hack in case NFS isn't in /etc/services */
420 if (strcmp(name
, "nfs") == 0) {
422 *proto
= PROTO_UNDEF
;
430 * Convert a string in the form PPP-PPP, where correspond to ports, to
431 * a starting and ending port in a port range.
432 * Return 0 on failure.
435 pcap_nametoportrange(const char *name
, int *port1
, int *port2
, int *proto
)
441 if (sscanf(name
, "%d-%d", &p1
, &p2
) != 2) {
442 if ((cpy
= strdup(name
)) == NULL
)
445 if ((off
= strchr(cpy
, '-')) == NULL
) {
452 if (pcap_nametoport(cpy
, port1
, proto
) == 0) {
458 if (pcap_nametoport(off
+ 1, port2
, proto
) == 0) {
464 if (*proto
!= save_proto
)
465 *proto
= PROTO_UNDEF
;
469 *proto
= PROTO_UNDEF
;
476 * XXX - not guaranteed to be thread-safe! See below for platforms
477 * on which it is thread-safe and on which it isn't.
480 pcap_nametoproto(const char *str
)
483 #if defined(HAVE_LINUX_GETNETBYNAME_R)
485 * We have Linux's reentrant getprotobyname_r().
487 struct protoent result_buf
;
488 char buf
[1024]; /* arbitrary size */
491 err
= getprotobyname_r(str
, &result_buf
, buf
, sizeof buf
, &p
);
494 * XXX - dynamically allocate the buffer, and make it
495 * bigger if we get ERANGE back?
499 #elif defined(HAVE_SOLARIS_IRIX_GETNETBYNAME_R)
501 * We have Solaris's and IRIX's reentrant getprotobyname_r().
503 struct protoent result_buf
;
504 char buf
[1024]; /* arbitrary size */
506 p
= getprotobyname_r(str
, &result_buf
, buf
, (int)sizeof buf
);
507 #elif defined(HAVE_AIX_GETNETBYNAME_R)
509 * We have AIX's reentrant getprotobyname_r().
511 struct protoent result_buf
;
512 struct protoent_data proto_data
;
514 if (getprotobyname_r(str
, &result_buf
, &proto_data
) == -1)
520 * We don't have any getprotobyname_r(); either we have a
521 * getprotobyname() that uses thread-specific data, in which
522 * case we're thread-safe (sufficiently recent FreeBSD,
523 * sufficiently recent Darwin-based OS, sufficiently recent
524 * HP-UX, sufficiently recent Tru64 UNIX, Windows), or we have
525 * the traditional getprotobyname() (everything else, including
526 * current NetBSD and OpenBSD), in which case we're not
529 p
= getprotobyname(str
);
537 #include "ethertype.h"
545 * Static data base of ether protocol types.
546 * tcpdump used to import this, and it's declared as an export on
547 * Debian, at least, so make it a public symbol, even though we
548 * don't officially export it by declaring it in a header file.
549 * (Programs *should* do this themselves, as tcpdump now does.)
551 PCAP_API_DEF
struct eproto eproto_db
[] = {
552 { "pup", ETHERTYPE_PUP
},
553 { "xns", ETHERTYPE_NS
},
554 { "ip", ETHERTYPE_IP
},
556 { "ip6", ETHERTYPE_IPV6
},
558 { "arp", ETHERTYPE_ARP
},
559 { "rarp", ETHERTYPE_REVARP
},
560 { "sprite", ETHERTYPE_SPRITE
},
561 { "mopdl", ETHERTYPE_MOPDL
},
562 { "moprc", ETHERTYPE_MOPRC
},
563 { "decnet", ETHERTYPE_DN
},
564 { "lat", ETHERTYPE_LAT
},
565 { "sca", ETHERTYPE_SCA
},
566 { "lanbridge", ETHERTYPE_LANBRIDGE
},
567 { "vexp", ETHERTYPE_VEXP
},
568 { "vprod", ETHERTYPE_VPROD
},
569 { "atalk", ETHERTYPE_ATALK
},
570 { "atalkarp", ETHERTYPE_AARP
},
571 { "loopback", ETHERTYPE_LOOPBACK
},
572 { "decdts", ETHERTYPE_DECDTS
},
573 { "decdns", ETHERTYPE_DECDNS
},
578 pcap_nametoeproto(const char *s
)
580 struct eproto
*p
= eproto_db
;
583 if (strcmp(p
->s
, s
) == 0)
592 /* Static data base of LLC values. */
593 static struct eproto llc_db
[] = {
594 { "iso", LLCSAP_ISONS
},
595 { "stp", LLCSAP_8021D
},
596 { "ipx", LLCSAP_IPX
},
597 { "netbeui", LLCSAP_NETBEUI
},
602 pcap_nametollc(const char *s
)
604 struct eproto
*p
= llc_db
;
607 if (strcmp(p
->s
, s
) == 0)
614 /* Hex digit to integer. */
628 __pcap_atoin(const char *s
, bpf_u_int32
*addr
)
637 while (*s
&& *s
!= '.')
638 n
= n
* 10 + *s
++ - '0';
650 __pcap_atodn(const char *s
, bpf_u_int32
*addr
)
653 #define AREAMASK 0176000
654 #define NODEMASK 01777
658 if (sscanf(s
, "%d.%d", &area
, &node
) != 2)
661 *addr
= (area
<< AREASHIFT
) & AREAMASK
;
662 *addr
|= (node
& NODEMASK
);
668 * Convert 's', which can have the one of the forms:
670 * "xx:xx:xx:xx:xx:xx"
671 * "xx.xx.xx.xx.xx.xx"
672 * "xx-xx-xx-xx-xx-xx"
676 * (or various mixes of ':', '.', and '-') into a new
677 * ethernet address. Assumes 's' is well formed.
680 pcap_ether_aton(const char *s
)
682 register u_char
*ep
, *e
;
685 e
= ep
= (u_char
*)malloc(6);
690 if (*s
== ':' || *s
== '.' || *s
== '-')
693 if (isxdigit((unsigned char)*s
)) {
703 #ifndef HAVE_ETHER_HOSTTON
706 * XXX - not thread-safe, because pcap_next_etherent() isn't thread-
707 * safe! Needs a mutex or a thread-safe pcap_next_etherent().
710 pcap_ether_hostton(const char *name
)
712 register struct pcap_etherent
*ep
;
714 static FILE *fp
= NULL
;
718 fp
= fopen(PCAP_ETHERS_FILE
, "r");
722 } else if (fp
== NULL
)
727 while ((ep
= pcap_next_etherent(fp
)) != NULL
) {
728 if (strcmp(ep
->name
, name
) == 0) {
729 ap
= (u_char
*)malloc(6);
731 memcpy(ap
, ep
->addr
, 6);
741 * Use the OS-supplied routine.
742 * This *should* be thread-safe; the API doesn't have a static buffer.
745 pcap_ether_hostton(const char *name
)
751 if (ether_hostton(name
, (struct ether_addr
*)a
) == 0) {
752 ap
= (u_char
*)malloc(6);
754 memcpy((char *)ap
, (char *)a
, 6);
761 * XXX - not guaranteed to be thread-safe!
764 __pcap_nametodnaddr(const char *name
, u_short
*res
)
767 struct nodeent
*getnodebyname();
770 nep
= getnodebyname(name
);
771 if (nep
== ((struct nodeent
*)0))
774 memcpy((char *)res
, (char *)nep
->n_addr
, sizeof(unsigned short));