]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - contrib/libpcap/nametoaddr.c
This commit was generated by cvs2svn to compensate for changes in r147013,
[FreeBSD/FreeBSD.git] / contrib / libpcap / nametoaddr.c
1 /*
2  * Copyright (c) 1990, 1991, 1992, 1993, 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: (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  * Name to id translation routines used by the scanner.
22  * These functions are not time critical.
23  *
24  * $FreeBSD$
25  */
26
27 #ifndef lint
28 static const char rcsid[] _U_ =
29     "@(#) $Header: /tcpdump/master/libpcap/nametoaddr.c,v 1.77 2005/03/27 22:26:25 guy Exp $ (LBL)";
30 #endif
31
32 #ifdef HAVE_CONFIG_H
33 #include "config.h"
34 #endif
35
36 #ifdef WIN32
37 #include <pcap-stdinc.h>
38
39 #else /* WIN32 */
40
41 #include <sys/param.h>
42 #include <sys/types.h>                          /* concession to AIX */
43 #include <sys/socket.h>
44 #include <sys/time.h>
45
46 #include <netinet/in.h>
47 #endif /* WIN32 */
48
49 /*
50  * XXX - why was this included even on UNIX?
51  */
52 #ifdef __MINGW32__
53 #include "IP6_misc.h"
54 #endif
55
56 #ifndef WIN32
57 #ifdef HAVE_ETHER_HOSTTON
58 /*
59  * XXX - do we need any of this if <netinet/if_ether.h> doesn't declare
60  * ether_hostton()?
61  */
62 #ifdef HAVE_NETINET_IF_ETHER_H
63 struct mbuf;            /* Squelch compiler warnings on some platforms for */
64 struct rtentry;         /* declarations in <net/if.h> */
65 #include <net/if.h>     /* for "struct ifnet" in "struct arpcom" on Solaris */
66 #include <netinet/if_ether.h>
67 #endif /* HAVE_NETINET_IF_ETHER_H */
68 #ifdef NETINET_ETHER_H_DECLARES_ETHER_HOSTTON
69 #include <netinet/ether.h>
70 #endif /* NETINET_ETHER_H_DECLARES_ETHER_HOSTTON */
71 #endif /* HAVE_ETHER_HOSTTON */
72 #include <arpa/inet.h>
73 #include <netdb.h>
74 #endif /* WIN32 */
75
76 #include <ctype.h>
77 #include <errno.h>
78 #include <stdlib.h>
79 #include <memory.h>
80 #include <stdio.h>
81
82 #include "pcap-int.h"
83
84 #include "gencode.h"
85 #include <pcap-namedb.h>
86
87 #ifdef HAVE_OS_PROTO_H
88 #include "os-proto.h"
89 #endif
90
91 #ifndef NTOHL
92 #define NTOHL(x) (x) = ntohl(x)
93 #define NTOHS(x) (x) = ntohs(x)
94 #endif
95
96 static inline int xdtoi(int);
97
98 /*
99  *  Convert host name to internet address.
100  *  Return 0 upon failure.
101  */
102 bpf_u_int32 **
103 pcap_nametoaddr(const char *name)
104 {
105 #ifndef h_addr
106         static bpf_u_int32 *hlist[2];
107 #endif
108         bpf_u_int32 **p;
109         struct hostent *hp;
110
111         if ((hp = gethostbyname(name)) != NULL) {
112 #ifndef h_addr
113                 hlist[0] = (bpf_u_int32 *)hp->h_addr;
114                 NTOHL(hp->h_addr);
115                 return hlist;
116 #else
117                 for (p = (bpf_u_int32 **)hp->h_addr_list; *p; ++p)
118                         NTOHL(**p);
119                 return (bpf_u_int32 **)hp->h_addr_list;
120 #endif
121         }
122         else
123                 return 0;
124 }
125
126 #ifdef INET6
127 struct addrinfo *
128 pcap_nametoaddrinfo(const char *name)
129 {
130         struct addrinfo hints, *res;
131         int error;
132
133         memset(&hints, 0, sizeof(hints));
134         hints.ai_family = PF_UNSPEC;
135         hints.ai_socktype = SOCK_STREAM;        /*not really*/
136         hints.ai_protocol = IPPROTO_TCP;        /*not really*/
137         error = getaddrinfo(name, NULL, &hints, &res);
138         if (error)
139                 return NULL;
140         else
141                 return res;
142 }
143 #endif /*INET6*/
144
145 /*
146  *  Convert net name to internet address.
147  *  Return 0 upon failure.
148  */
149 bpf_u_int32
150 pcap_nametonetaddr(const char *name)
151 {
152 #ifndef WIN32
153         struct netent *np;
154
155         if ((np = getnetbyname(name)) != NULL)
156                 return np->n_net;
157         else
158                 return 0;
159 #else
160         /*
161          * There's no "getnetbyname()" on Windows.
162          */
163         return 0;
164 #endif
165 }
166
167 /*
168  * Convert a port name to its port and protocol numbers.
169  * We assume only TCP or UDP.
170  * Return 0 upon failure.
171  */
172 int
173 pcap_nametoport(const char *name, int *port, int *proto)
174 {
175         struct servent *sp;
176         int tcp_port = -1;
177         int udp_port = -1;
178
179         /*
180          * We need to check /etc/services for ambiguous entries.
181          * If we find the ambiguous entry, and it has the
182          * same port number, change the proto to PROTO_UNDEF
183          * so both TCP and UDP will be checked.
184          */
185         sp = getservbyname(name, "tcp");
186         if (sp != NULL) tcp_port = ntohs(sp->s_port);
187         sp = getservbyname(name, "udp");
188         if (sp != NULL) udp_port = ntohs(sp->s_port);
189         if (tcp_port >= 0) {
190                 *port = tcp_port;
191                 *proto = IPPROTO_TCP;
192                 if (udp_port >= 0) {
193                         if (udp_port == tcp_port)
194                                 *proto = PROTO_UNDEF;
195 #ifdef notdef
196                         else
197                                 /* Can't handle ambiguous names that refer
198                                    to different port numbers. */
199                                 warning("ambiguous port %s in /etc/services",
200                                         name);
201 #endif
202                 }
203                 return 1;
204         }
205         if (udp_port >= 0) {
206                 *port = udp_port;
207                 *proto = IPPROTO_UDP;
208                 return 1;
209         }
210 #if defined(ultrix) || defined(__osf__)
211         /* Special hack in case NFS isn't in /etc/services */
212         if (strcmp(name, "nfs") == 0) {
213                 *port = 2049;
214                 *proto = PROTO_UNDEF;
215                 return 1;
216         }
217 #endif
218         return 0;
219 }
220
221 int
222 pcap_nametoproto(const char *str)
223 {
224         struct protoent *p;
225
226         p = getprotobyname(str);
227         if (p != 0)
228                 return p->p_proto;
229         else
230                 return PROTO_UNDEF;
231 }
232
233 #include "ethertype.h"
234
235 struct eproto {
236         char *s;
237         u_short p;
238 };
239
240 /* Static data base of ether protocol types. */
241 struct eproto eproto_db[] = {
242 #if 0
243         /* The FreeBSD elf linker generates a request to copy this array
244          * (including its size) when you link with -lpcap.  In order to
245          * not bump the major version number of this libpcap.so, we need
246          * to ensure that the array stays the same size.  Since PUP is
247          * likely never seen in real life any more, it's the first to
248          * be sacrificed (in favor of ip6).
249          */
250         { "pup", ETHERTYPE_PUP },
251 #endif
252         { "xns", ETHERTYPE_NS },
253         { "ip", ETHERTYPE_IP },
254 #ifdef INET6
255         { "ip6", ETHERTYPE_IPV6 },
256 #endif
257         { "arp", ETHERTYPE_ARP },
258         { "rarp", ETHERTYPE_REVARP },
259         { "sprite", ETHERTYPE_SPRITE },
260         { "mopdl", ETHERTYPE_MOPDL },
261         { "moprc", ETHERTYPE_MOPRC },
262         { "decnet", ETHERTYPE_DN },
263         { "lat", ETHERTYPE_LAT },
264         { "sca", ETHERTYPE_SCA },
265         { "lanbridge", ETHERTYPE_LANBRIDGE },
266         { "vexp", ETHERTYPE_VEXP },
267         { "vprod", ETHERTYPE_VPROD },
268         { "atalk", ETHERTYPE_ATALK },
269         { "atalkarp", ETHERTYPE_AARP },
270         { "loopback", ETHERTYPE_LOOPBACK },
271         { "decdts", ETHERTYPE_DECDTS },
272         { "decdns", ETHERTYPE_DECDNS },
273         { (char *)0, 0 }
274 };
275
276 int
277 pcap_nametoeproto(const char *s)
278 {
279         struct eproto *p = eproto_db;
280
281         while (p->s != 0) {
282                 if (strcmp(p->s, s) == 0)
283                         return p->p;
284                 p += 1;
285         }
286         return PROTO_UNDEF;
287 }
288
289 #include "llc.h"
290
291 /* Static data base of LLC values. */
292 static struct eproto llc_db[] = {
293         { "iso", LLCSAP_ISONS },
294         { "stp", LLCSAP_8021D },
295         { "ipx", LLCSAP_IPX },
296         { "netbeui", LLCSAP_NETBEUI },
297         { (char *)0, 0 }
298 };
299
300 int
301 pcap_nametollc(const char *s)
302 {
303         struct eproto *p = llc_db;
304
305         while (p->s != 0) {
306                 if (strcmp(p->s, s) == 0)
307                         return p->p;
308                 p += 1;
309         }
310         return PROTO_UNDEF;
311 }
312
313 /* Hex digit to integer. */
314 static inline int
315 xdtoi(c)
316         register int c;
317 {
318         if (isdigit(c))
319                 return c - '0';
320         else if (islower(c))
321                 return c - 'a' + 10;
322         else
323                 return c - 'A' + 10;
324 }
325
326 int
327 __pcap_atoin(const char *s, bpf_u_int32 *addr)
328 {
329         u_int n;
330         int len;
331
332         *addr = 0;
333         len = 0;
334         while (1) {
335                 n = 0;
336                 while (*s && *s != '.')
337                         n = n * 10 + *s++ - '0';
338                 *addr <<= 8;
339                 *addr |= n & 0xff;
340                 len += 8;
341                 if (*s == '\0')
342                         return len;
343                 ++s;
344         }
345         /* NOTREACHED */
346 }
347
348 int
349 __pcap_atodn(const char *s, bpf_u_int32 *addr)
350 {
351 #define AREASHIFT 10
352 #define AREAMASK 0176000
353 #define NODEMASK 01777
354
355         u_int node, area;
356
357         if (sscanf((char *)s, "%d.%d", &area, &node) != 2)
358                 bpf_error("malformed decnet address '%s'", s);
359
360         *addr = (area << AREASHIFT) & AREAMASK;
361         *addr |= (node & NODEMASK);
362
363         return(32);
364 }
365
366 /*
367  * Convert 's' which has the form "xx:xx:xx:xx:xx:xx" into a new
368  * ethernet address.  Assumes 's' is well formed.
369  */
370 u_char *
371 pcap_ether_aton(const char *s)
372 {
373         register u_char *ep, *e;
374         register u_int d;
375
376         e = ep = (u_char *)malloc(6);
377
378         while (*s) {
379                 if (*s == ':')
380                         s += 1;
381                 d = xdtoi(*s++);
382                 if (isxdigit((unsigned char)*s)) {
383                         d <<= 4;
384                         d |= xdtoi(*s++);
385                 }
386                 *ep++ = d;
387         }
388
389         return (e);
390 }
391
392 #ifndef HAVE_ETHER_HOSTTON
393 /* Roll our own */
394 u_char *
395 pcap_ether_hostton(const char *name)
396 {
397         register struct pcap_etherent *ep;
398         register u_char *ap;
399         static FILE *fp = NULL;
400         static int init = 0;
401
402         if (!init) {
403                 fp = fopen(PCAP_ETHERS_FILE, "r");
404                 ++init;
405                 if (fp == NULL)
406                         return (NULL);
407         } else if (fp == NULL)
408                 return (NULL);
409         else
410                 rewind(fp);
411
412         while ((ep = pcap_next_etherent(fp)) != NULL) {
413                 if (strcmp(ep->name, name) == 0) {
414                         ap = (u_char *)malloc(6);
415                         if (ap != NULL) {
416                                 memcpy(ap, ep->addr, 6);
417                                 return (ap);
418                         }
419                         break;
420                 }
421         }
422         return (NULL);
423 }
424 #else
425
426 #if !defined(HAVE_DECL_ETHER_HOSTTON) || !HAVE_DECL_ETHER_HOSTTON
427 extern int ether_hostton(const char *, struct ether_addr *);
428 #endif
429
430 /* Use the os supplied routines */
431 u_char *
432 pcap_ether_hostton(const char *name)
433 {
434         register u_char *ap;
435         u_char a[6];
436
437         ap = NULL;
438         if (ether_hostton((char *)name, (struct ether_addr *)a) == 0) {
439                 ap = (u_char *)malloc(6);
440                 if (ap != NULL)
441                         memcpy((char *)ap, (char *)a, 6);
442         }
443         return (ap);
444 }
445 #endif
446
447 u_short
448 __pcap_nametodnaddr(const char *name)
449 {
450 #ifdef  DECNETLIB
451         struct nodeent *getnodebyname();
452         struct nodeent *nep;
453         unsigned short res;
454
455         nep = getnodebyname(name);
456         if (nep == ((struct nodeent *)0))
457                 bpf_error("unknown decnet host name '%s'\n", name);
458
459         memcpy((char *)&res, (char *)nep->n_addr, sizeof(unsigned short));
460         return(res);
461 #else
462         bpf_error("decnet name support not included, '%s' cannot be translated\n",
463                 name);
464         return(0);
465 #endif
466 }