2 * Copyright (c) 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997
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 * Internet, ethernet, port, and protocol string to address
22 * and address to string conversion routines
25 static const char rcsid[] _U_ =
26 "@(#) $Header: /tcpdump/master/tcpdump/addrtoname.c,v 1.119 2007-08-08 14:06:34 hannes Exp $ (LBL)";
33 #include <tcpdump-stdinc.h>
35 #ifdef USE_ETHER_NTOHOST
36 #ifdef HAVE_NETINET_IF_ETHER_H
37 struct mbuf; /* Squelch compiler warnings on some platforms for */
38 struct rtentry; /* declarations in <net/if.h> */
39 #include <net/if.h> /* for "struct ifnet" in "struct arpcom" on Solaris */
40 #include <netinet/if_ether.h>
41 #endif /* HAVE_NETINET_IF_ETHER_H */
42 #ifdef NETINET_ETHER_H_DECLARES_ETHER_NTOHOST
43 #include <netinet/ether.h>
44 #endif /* NETINET_ETHER_H_DECLARES_ETHER_NTOHOST */
46 #if !defined(HAVE_DECL_ETHER_NTOHOST) || !HAVE_DECL_ETHER_NTOHOST
47 #ifndef HAVE_STRUCT_ETHER_ADDR
49 unsigned char ether_addr_octet[6];
52 extern int ether_ntohost(char *, const struct ether_addr *);
55 #endif /* USE_ETHER_NTOHOST */
58 #include <pcap-namedb.h>
64 #include "interface.h"
65 #include "addrtoname.h"
67 #include "setsignal.h"
71 #ifndef ETHER_ADDR_LEN
72 #define ETHER_ADDR_LEN 6
76 * hash tables for whatever-to-name translations
78 * XXX there has to be error checks against strdup(3) failure
81 #define HASHNAMESIZE 4096
89 static struct hnamemem hnametable[HASHNAMESIZE];
90 static struct hnamemem tporttable[HASHNAMESIZE];
91 static struct hnamemem uporttable[HASHNAMESIZE];
92 static struct hnamemem eprototable[HASHNAMESIZE];
93 static struct hnamemem dnaddrtable[HASHNAMESIZE];
94 static struct hnamemem ipxsaptable[HASHNAMESIZE];
96 #if defined(INET6) && defined(WIN32)
98 * fake gethostbyaddr for Win2k/XP
99 * gethostbyaddr() returns incorrect value when AF_INET6 is passed
102 * h_name in struct hostent is only valid.
104 static struct hostent *
105 win32_gethostbyaddr(const char *addr, int len, int type)
107 static struct hostent host;
108 static char hostbuf[NI_MAXHOST];
109 char hname[NI_MAXHOST];
110 struct sockaddr_in6 addr6;
112 host.h_name = hostbuf;
115 return gethostbyaddr(addr, len, type);
118 memset(&addr6, 0, sizeof(addr6));
119 addr6.sin6_family = AF_INET6;
120 memcpy(&addr6.sin6_addr, addr, len);
121 if (getnameinfo((struct sockaddr *)&addr6, sizeof(addr6),
122 hname, sizeof(hname), NULL, 0, 0)) {
125 strcpy(host.h_name, hname);
133 #define gethostbyaddr win32_gethostbyaddr
134 #endif /* INET6 & WIN32 */
138 struct in6_addr addr;
140 struct h6namemem *nxt;
143 static struct h6namemem h6nametable[HASHNAMESIZE];
151 u_char *e_nsap; /* used only for nsaptable[] */
152 #define e_bs e_nsap /* for bytestringtable */
153 struct enamemem *e_nxt;
156 static struct enamemem enametable[HASHNAMESIZE];
157 static struct enamemem nsaptable[HASHNAMESIZE];
158 static struct enamemem bytestringtable[HASHNAMESIZE];
164 struct protoidmem *p_nxt;
167 static struct protoidmem protoidtable[HASHNAMESIZE];
170 * A faster replacement for inet_ntoa().
173 intoa(u_int32_t addr)
178 static char buf[sizeof(".xxx.xxx.xxx.xxx")];
181 cp = buf + sizeof(buf);
187 *--cp = byte % 10 + '0';
190 *--cp = byte % 10 + '0';
202 static u_int32_t f_netmask;
203 static u_int32_t f_localnet;
206 * Return a name for the IP address pointed to by ap. This address
207 * is assumed to be in network byte order.
209 * NOTE: ap is *NOT* necessarily part of the packet data (not even if
210 * this is being called with the "ipaddr_string()" macro), so you
211 * *CANNOT* use the TCHECK{2}/TTEST{2} macros on it. Furthermore,
212 * even in cases where it *is* part of the packet data, the caller
213 * would still have to check for a null return value, even if it's
214 * just printing the return value with "%s" - not all versions of
215 * printf print "(null)" with "%s" and a null pointer, some of them
216 * don't check for a null pointer and crash in that case.
218 * The callers of this routine should, before handing this routine
219 * a pointer to packet data, be sure that the data is present in
220 * the packet buffer. They should probably do those checks anyway,
221 * as other data at that layer might not be IP addresses, and it
222 * also needs to check whether they're present in the packet buffer.
225 getname(const u_char *ap)
227 register struct hostent *hp;
229 static struct hnamemem *p; /* static for longjmp() */
231 memcpy(&addr, ap, sizeof(addr));
232 p = &hnametable[addr & (HASHNAMESIZE-1)];
233 for (; p->nxt; p = p->nxt) {
238 p->nxt = newhnamemem();
241 * Print names unless:
243 * (2) Address is foreign and -f was given. (If -f was not
244 * given, f_netmask and f_localnet are 0 and the test
248 (addr & f_netmask) == f_localnet) {
249 hp = gethostbyaddr((char *)&addr, 4, AF_INET);
253 p->name = strdup(hp->h_name);
255 /* Remove domain qualifications */
256 dotp = strchr(p->name, '.');
263 p->name = strdup(intoa(addr));
269 * Return a name for the IP6 address pointed to by ap. This address
270 * is assumed to be in network byte order.
273 getname6(const u_char *ap)
275 register struct hostent *hp;
276 struct in6_addr addr;
277 static struct h6namemem *p; /* static for longjmp() */
278 register const char *cp;
279 char ntop_buf[INET6_ADDRSTRLEN];
281 memcpy(&addr, ap, sizeof(addr));
282 p = &h6nametable[*(u_int16_t *)&addr.s6_addr[14] & (HASHNAMESIZE-1)];
283 for (; p->nxt; p = p->nxt) {
284 if (memcmp(&p->addr, &addr, sizeof(addr)) == 0)
288 p->nxt = newh6namemem();
291 * Do not print names if -n was given.
294 hp = gethostbyaddr((char *)&addr, sizeof(addr), AF_INET6);
298 p->name = strdup(hp->h_name);
300 /* Remove domain qualifications */
301 dotp = strchr(p->name, '.');
308 cp = inet_ntop(AF_INET6, &addr, ntop_buf, sizeof(ntop_buf));
309 p->name = strdup(cp);
314 static const char hex[] = "0123456789abcdef";
317 /* Find the hash node that corresponds the ether address 'ep' */
319 static inline struct enamemem *
320 lookup_emem(const u_char *ep)
322 register u_int i, j, k;
325 k = (ep[0] << 8) | ep[1];
326 j = (ep[2] << 8) | ep[3];
327 i = (ep[4] << 8) | ep[5];
329 tp = &enametable[(i ^ j) & (HASHNAMESIZE-1)];
331 if (tp->e_addr0 == i &&
340 tp->e_nxt = (struct enamemem *)calloc(1, sizeof(*tp));
341 if (tp->e_nxt == NULL)
342 error("lookup_emem: calloc");
348 * Find the hash node that corresponds to the bytestring 'bs'
352 static inline struct enamemem *
353 lookup_bytestring(register const u_char *bs, const unsigned int nlen)
356 register u_int i, j, k;
359 k = (bs[0] << 8) | bs[1];
360 j = (bs[2] << 8) | bs[3];
361 i = (bs[4] << 8) | bs[5];
362 } else if (nlen >= 4) {
363 k = (bs[0] << 8) | bs[1];
364 j = (bs[2] << 8) | bs[3];
369 tp = &bytestringtable[(i ^ j) & (HASHNAMESIZE-1)];
371 if (tp->e_addr0 == i &&
374 memcmp((const char *)bs, (const char *)(tp->e_bs), nlen) == 0)
383 tp->e_bs = (u_char *) calloc(1, nlen + 1);
384 memcpy(tp->e_bs, bs, nlen);
385 tp->e_nxt = (struct enamemem *)calloc(1, sizeof(*tp));
386 if (tp->e_nxt == NULL)
387 error("lookup_bytestring: calloc");
392 /* Find the hash node that corresponds the NSAP 'nsap' */
394 static inline struct enamemem *
395 lookup_nsap(register const u_char *nsap)
397 register u_int i, j, k;
398 unsigned int nlen = *nsap;
400 const u_char *ensap = nsap + nlen - 6;
403 k = (ensap[0] << 8) | ensap[1];
404 j = (ensap[2] << 8) | ensap[3];
405 i = (ensap[4] << 8) | ensap[5];
410 tp = &nsaptable[(i ^ j) & (HASHNAMESIZE-1)];
412 if (tp->e_addr0 == i &&
415 tp->e_nsap[0] == nlen &&
416 memcmp((const char *)&(nsap[1]),
417 (char *)&(tp->e_nsap[1]), nlen) == 0)
424 tp->e_nsap = (u_char *)malloc(nlen + 1);
425 if (tp->e_nsap == NULL)
426 error("lookup_nsap: malloc");
427 memcpy((char *)tp->e_nsap, (const char *)nsap, nlen + 1);
428 tp->e_nxt = (struct enamemem *)calloc(1, sizeof(*tp));
429 if (tp->e_nxt == NULL)
430 error("lookup_nsap: calloc");
435 /* Find the hash node that corresponds the protoid 'pi'. */
437 static inline struct protoidmem *
438 lookup_protoid(const u_char *pi)
441 struct protoidmem *tp;
443 /* 5 octets won't be aligned */
444 i = (((pi[0] << 8) + pi[1]) << 8) + pi[2];
445 j = (pi[3] << 8) + pi[4];
446 /* XXX should be endian-insensitive, but do big-endian testing XXX */
448 tp = &protoidtable[(i ^ j) & (HASHNAMESIZE-1)];
450 if (tp->p_oui == i && tp->p_proto == j)
456 tp->p_nxt = (struct protoidmem *)calloc(1, sizeof(*tp));
457 if (tp->p_nxt == NULL)
458 error("lookup_protoid: calloc");
464 etheraddr_string(register const u_char *ep)
468 register struct enamemem *tp;
472 tp = lookup_emem(ep);
475 #ifdef USE_ETHER_NTOHOST
480 * We don't cast it to "const struct ether_addr *"
481 * because some systems fail to declare the second
482 * argument as a "const" pointer, even though they
483 * don't modify what it points to.
485 if (ether_ntohost(buf2, (struct ether_addr *)ep) == 0) {
486 tp->e_name = strdup(buf2);
492 oui = EXTRACT_24BITS(ep);
493 *cp++ = hex[*ep >> 4 ];
494 *cp++ = hex[*ep++ & 0xf];
495 for (i = 5; --i >= 0;) {
497 *cp++ = hex[*ep >> 4 ];
498 *cp++ = hex[*ep++ & 0xf];
502 snprintf(cp, BUFSIZE - (2 + 5*3), " (oui %s)",
503 tok2str(oui_values, "Unknown", oui));
506 tp->e_name = strdup(buf);
511 linkaddr_string(const u_char *ep, const unsigned int type, const unsigned int len)
515 register struct enamemem *tp;
520 if (type == LINKADDR_ETHER && len == ETHER_ADDR_LEN)
521 return (etheraddr_string(ep));
523 if (type == LINKADDR_FRELAY)
524 return (q922_string(ep));
526 tp = lookup_bytestring(ep, len);
530 tp->e_name = cp = (char *)malloc(len*3);
531 if (tp->e_name == NULL)
532 error("linkaddr_string: malloc");
533 *cp++ = hex[*ep >> 4];
534 *cp++ = hex[*ep++ & 0xf];
535 for (i = len-1; i > 0 ; --i) {
537 *cp++ = hex[*ep >> 4];
538 *cp++ = hex[*ep++ & 0xf];
545 etherproto_string(u_short port)
548 register struct hnamemem *tp;
549 register u_int32_t i = port;
550 char buf[sizeof("0000")];
552 for (tp = &eprototable[i & (HASHNAMESIZE-1)]; tp->nxt; tp = tp->nxt)
557 tp->nxt = newhnamemem();
561 *cp++ = hex[port >> 12 & 0xf];
562 *cp++ = hex[port >> 8 & 0xf];
563 *cp++ = hex[port >> 4 & 0xf];
564 *cp++ = hex[port & 0xf];
566 tp->name = strdup(buf);
571 protoid_string(register const u_char *pi)
575 register struct protoidmem *tp;
576 char buf[sizeof("00:00:00:00:00")];
578 tp = lookup_protoid(pi);
583 if ((j = *pi >> 4) != 0)
585 *cp++ = hex[*pi++ & 0xf];
586 for (i = 4; (int)--i >= 0;) {
588 if ((j = *pi >> 4) != 0)
590 *cp++ = hex[*pi++ & 0xf];
593 tp->p_name = strdup(buf);
597 #define ISONSAP_MAX_LENGTH 20
599 isonsap_string(const u_char *nsap, register u_int nsap_length)
601 register u_int nsap_idx;
603 register struct enamemem *tp;
605 if (nsap_length < 1 || nsap_length > ISONSAP_MAX_LENGTH)
606 return ("isonsap_string: illegal length");
608 tp = lookup_nsap(nsap);
612 tp->e_name = cp = (char *)malloc(sizeof("xx.xxxx.xxxx.xxxx.xxxx.xxxx.xxxx.xxxx.xxxx.xxxx.xx"));
614 error("isonsap_string: malloc");
616 for (nsap_idx = 0; nsap_idx < nsap_length; nsap_idx++) {
617 *cp++ = hex[*nsap >> 4];
618 *cp++ = hex[*nsap++ & 0xf];
619 if (((nsap_idx & 1) == 0) &&
620 (nsap_idx + 1 < nsap_length)) {
629 tcpport_string(u_short port)
631 register struct hnamemem *tp;
632 register u_int32_t i = port;
633 char buf[sizeof("00000")];
635 for (tp = &tporttable[i & (HASHNAMESIZE-1)]; tp->nxt; tp = tp->nxt)
640 tp->nxt = newhnamemem();
642 (void)snprintf(buf, sizeof(buf), "%u", i);
643 tp->name = strdup(buf);
648 udpport_string(register u_short port)
650 register struct hnamemem *tp;
651 register u_int32_t i = port;
652 char buf[sizeof("00000")];
654 for (tp = &uporttable[i & (HASHNAMESIZE-1)]; tp->nxt; tp = tp->nxt)
659 tp->nxt = newhnamemem();
661 (void)snprintf(buf, sizeof(buf), "%u", i);
662 tp->name = strdup(buf);
667 ipxsap_string(u_short port)
670 register struct hnamemem *tp;
671 register u_int32_t i = port;
672 char buf[sizeof("0000")];
674 for (tp = &ipxsaptable[i & (HASHNAMESIZE-1)]; tp->nxt; tp = tp->nxt)
679 tp->nxt = newhnamemem();
683 *cp++ = hex[port >> 12 & 0xf];
684 *cp++ = hex[port >> 8 & 0xf];
685 *cp++ = hex[port >> 4 & 0xf];
686 *cp++ = hex[port & 0xf];
688 tp->name = strdup(buf);
696 register struct hnamemem *table;
698 char buf[sizeof("0000000000")];
700 while ((sv = getservent()) != NULL) {
701 int port = ntohs(sv->s_port);
702 i = port & (HASHNAMESIZE-1);
703 if (strcmp(sv->s_proto, "tcp") == 0)
704 table = &tporttable[i];
705 else if (strcmp(sv->s_proto, "udp") == 0)
706 table = &uporttable[i];
713 (void)snprintf(buf, sizeof(buf), "%d", port);
714 table->name = strdup(buf);
716 table->name = strdup(sv->s_name);
718 table->nxt = newhnamemem();
723 /* in libpcap.a (nametoaddr.c) */
724 #if defined(WIN32) && !defined(USE_STATIC_LIBPCAP)
725 __declspec(dllimport)
729 const struct eproto {
735 init_eprotoarray(void)
738 register struct hnamemem *table;
740 for (i = 0; eproto_db[i].s; i++) {
741 int j = htons(eproto_db[i].p) & (HASHNAMESIZE-1);
742 table = &eprototable[j];
745 table->name = eproto_db[i].s;
746 table->addr = htons(eproto_db[i].p);
747 table->nxt = newhnamemem();
751 static const struct protoidlist {
752 const u_char protoid[5];
755 {{ 0x00, 0x00, 0x0c, 0x01, 0x07 }, "CiscoMLS" },
756 {{ 0x00, 0x00, 0x0c, 0x20, 0x00 }, "CiscoCDP" },
757 {{ 0x00, 0x00, 0x0c, 0x20, 0x01 }, "CiscoCGMP" },
758 {{ 0x00, 0x00, 0x0c, 0x20, 0x03 }, "CiscoVTP" },
759 {{ 0x00, 0xe0, 0x2b, 0x00, 0xbb }, "ExtremeEDP" },
760 {{ 0x00, 0x00, 0x00, 0x00, 0x00 }, NULL }
764 * SNAP proto IDs with org code 0:0:0 are actually encapsulated Ethernet
768 init_protoidarray(void)
771 register struct protoidmem *tp;
772 const struct protoidlist *pl;
778 for (i = 0; eproto_db[i].s; i++) {
779 u_short etype = htons(eproto_db[i].p);
781 memcpy((char *)&protoid[3], (char *)&etype, 2);
782 tp = lookup_protoid(protoid);
783 tp->p_name = strdup(eproto_db[i].s);
785 /* Hardwire some SNAP proto ID names */
786 for (pl = protoidlist; pl->name != NULL; ++pl) {
787 tp = lookup_protoid(pl->protoid);
788 /* Don't override existing name */
789 if (tp->p_name != NULL)
792 tp->p_name = pl->name;
796 static const struct etherlist {
797 const u_char addr[6];
800 {{ 0xff, 0xff, 0xff, 0xff, 0xff, 0xff }, "Broadcast" },
801 {{ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 }, NULL }
805 * Initialize the ethers hash table. We take two different approaches
806 * depending on whether or not the system provides the ethers name
807 * service. If it does, we just wire in a few names at startup,
808 * and etheraddr_string() fills in the table on demand. If it doesn't,
809 * then we suck in the entire /etc/ethers file at startup. The idea
810 * is that parsing the local file will be fast, but spinning through
811 * all the ethers entries via NIS & next_etherent might be very slow.
813 * XXX pcap_next_etherent doesn't belong in the pcap interface, but
814 * since the pcap module already does name-to-address translation,
815 * it's already does most of the work for the ethernet address-to-name
816 * translation, so we just pcap_next_etherent as a convenience.
819 init_etherarray(void)
821 register const struct etherlist *el;
822 register struct enamemem *tp;
823 #ifdef USE_ETHER_NTOHOST
826 register struct pcap_etherent *ep;
829 /* Suck in entire ethers file */
830 fp = fopen(PCAP_ETHERS_FILE, "r");
832 while ((ep = pcap_next_etherent(fp)) != NULL) {
833 tp = lookup_emem(ep->addr);
834 tp->e_name = strdup(ep->name);
840 /* Hardwire some ethernet names */
841 for (el = etherlist; el->name != NULL; ++el) {
842 tp = lookup_emem(el->addr);
843 /* Don't override existing name */
844 if (tp->e_name != NULL)
847 #ifdef USE_ETHER_NTOHOST
849 * Use YP/NIS version of name if available.
851 * We don't cast it to "const struct ether_addr *"
852 * because some systems don't modify the Ethernet
853 * address but fail to declare the second argument
854 * as a "const" pointer.
856 if (ether_ntohost(name, (struct ether_addr *)el->addr) == 0) {
857 tp->e_name = strdup(name);
861 tp->e_name = el->name;
865 static const struct tok ipxsap_db[] = {
866 { 0x0000, "Unknown" },
868 { 0x0002, "User Group" },
869 { 0x0003, "PrintQueue" },
870 { 0x0004, "FileServer" },
871 { 0x0005, "JobServer" },
872 { 0x0006, "Gateway" },
873 { 0x0007, "PrintServer" },
874 { 0x0008, "ArchiveQueue" },
875 { 0x0009, "ArchiveServer" },
876 { 0x000a, "JobQueue" },
877 { 0x000b, "Administration" },
878 { 0x000F, "Novell TI-RPC" },
879 { 0x0017, "Diagnostics" },
880 { 0x0020, "NetBIOS" },
881 { 0x0021, "NAS SNA Gateway" },
882 { 0x0023, "NACS AsyncGateway" },
883 { 0x0024, "RemoteBridge/RoutingService" },
884 { 0x0026, "BridgeServer" },
885 { 0x0027, "TCP/IP Gateway" },
886 { 0x0028, "Point-to-point X.25 BridgeServer" },
887 { 0x0029, "3270 Gateway" },
888 { 0x002a, "CHI Corp" },
889 { 0x002c, "PC Chalkboard" },
890 { 0x002d, "TimeSynchServer" },
891 { 0x002e, "ARCserve5.0/PalindromeBackup" },
892 { 0x0045, "DI3270 Gateway" },
893 { 0x0047, "AdvertisingPrintServer" },
894 { 0x004a, "NetBlazerModems" },
895 { 0x004b, "BtrieveVAP" },
896 { 0x004c, "NetwareSQL" },
897 { 0x004d, "XtreeNetwork" },
898 { 0x0050, "BtrieveVAP4.11" },
899 { 0x0052, "QuickLink" },
900 { 0x0053, "PrintQueueUser" },
901 { 0x0058, "Multipoint X.25 Router" },
902 { 0x0060, "STLB/NLM" },
903 { 0x0064, "ARCserve" },
904 { 0x0066, "ARCserve3.0" },
905 { 0x0072, "WAN CopyUtility" },
906 { 0x007a, "TES-NetwareVMS" },
907 { 0x0092, "WATCOM Debugger/EmeraldTapeBackupServer" },
908 { 0x0095, "DDA OBGYN" },
909 { 0x0098, "NetwareAccessServer" },
910 { 0x009a, "Netware for VMS II/NamedPipeServer" },
911 { 0x009b, "NetwareAccessServer" },
912 { 0x009e, "PortableNetwareServer/SunLinkNVT" },
913 { 0x00a1, "PowerchuteAPC UPS" },
914 { 0x00aa, "LAWserve" },
915 { 0x00ac, "CompaqIDA StatusMonitor" },
916 { 0x0100, "PIPE STAIL" },
917 { 0x0102, "LAN ProtectBindery" },
918 { 0x0103, "OracleDataBaseServer" },
919 { 0x0107, "Netware386/RSPX RemoteConsole" },
920 { 0x010f, "NovellSNA Gateway" },
921 { 0x0111, "TestServer" },
922 { 0x0112, "HP PrintServer" },
923 { 0x0114, "CSA MUX" },
924 { 0x0115, "CSA LCA" },
925 { 0x0116, "CSA CM" },
926 { 0x0117, "CSA SMA" },
927 { 0x0118, "CSA DBA" },
928 { 0x0119, "CSA NMA" },
929 { 0x011a, "CSA SSA" },
930 { 0x011b, "CSA STATUS" },
931 { 0x011e, "CSA APPC" },
932 { 0x0126, "SNA TEST SSA Profile" },
933 { 0x012a, "CSA TRACE" },
934 { 0x012b, "NetwareSAA" },
935 { 0x012e, "IKARUS VirusScan" },
936 { 0x0130, "CommunicationsExecutive" },
937 { 0x0133, "NNS DomainServer/NetwareNamingServicesDomain" },
938 { 0x0135, "NetwareNamingServicesProfile" },
939 { 0x0137, "Netware386 PrintQueue/NNS PrintQueue" },
940 { 0x0141, "LAN SpoolServer" },
941 { 0x0152, "IRMALAN Gateway" },
942 { 0x0154, "NamedPipeServer" },
943 { 0x0166, "NetWareManagement" },
944 { 0x0168, "Intel PICKIT CommServer/Intel CAS TalkServer" },
945 { 0x0173, "Compaq" },
946 { 0x0174, "Compaq SNMP Agent" },
947 { 0x0175, "Compaq" },
948 { 0x0180, "XTreeServer/XTreeTools" },
949 { 0x018A, "NASI ServicesBroadcastServer" },
950 { 0x01b0, "GARP Gateway" },
951 { 0x01b1, "Binfview" },
952 { 0x01bf, "IntelLanDeskManager" },
954 { 0x01cb, "ShivaNetModem/E" },
955 { 0x01cc, "ShivaLanRover/E" },
956 { 0x01cd, "ShivaLanRover/T" },
957 { 0x01ce, "ShivaUniversal" },
958 { 0x01d8, "CastelleFAXPressServer" },
959 { 0x01da, "CastelleLANPressPrintServer" },
960 { 0x01dc, "CastelleFAX/Xerox7033 FaxServer/ExcelLanFax" },
961 { 0x01f0, "LEGATO" },
962 { 0x01f5, "LEGATO" },
963 { 0x0233, "NMS Agent/NetwareManagementAgent" },
964 { 0x0237, "NMS IPX Discovery/LANternReadWriteChannel" },
965 { 0x0238, "NMS IP Discovery/LANternTrapAlarmChannel" },
966 { 0x023a, "LANtern" },
967 { 0x023c, "MAVERICK" },
968 { 0x023f, "NovellSMDR" },
969 { 0x024e, "NetwareConnect" },
970 { 0x024f, "NASI ServerBroadcast Cisco" },
971 { 0x026a, "NMS ServiceConsole" },
972 { 0x026b, "TimeSynchronizationServer Netware 4.x" },
973 { 0x0278, "DirectoryServer Netware 4.x" },
974 { 0x027b, "NetwareManagementAgent" },
975 { 0x0280, "Novell File and Printer Sharing Service for PC" },
976 { 0x0304, "NovellSAA Gateway" },
977 { 0x0308, "COM/VERMED" },
978 { 0x030a, "GalacticommWorldgroupServer" },
979 { 0x030c, "IntelNetport2/HP JetDirect/HP Quicksilver" },
980 { 0x0320, "AttachmateGateway" },
981 { 0x0327, "MicrosoftDiagnostiocs" },
982 { 0x0328, "WATCOM SQL Server" },
983 { 0x0335, "MultiTechSystems MultisynchCommServer" },
984 { 0x0343, "Xylogics RemoteAccessServer/LANModem" },
985 { 0x0355, "ArcadaBackupExec" },
986 { 0x0358, "MSLCD1" },
987 { 0x0361, "NETINELO" },
988 { 0x037e, "Powerchute UPS Monitoring" },
989 { 0x037f, "ViruSafeNotify" },
990 { 0x0386, "HP Bridge" },
991 { 0x0387, "HP Hub" },
992 { 0x0394, "NetWare SAA Gateway" },
993 { 0x039b, "LotusNotes" },
994 { 0x03b7, "CertusAntiVirus" },
995 { 0x03c4, "ARCserve4.0" },
996 { 0x03c7, "LANspool3.5" },
997 { 0x03d7, "LexmarkPrinterServer" },
998 { 0x03d8, "LexmarkXLE PrinterServer" },
999 { 0x03dd, "BanyanENS NetwareClient" },
1000 { 0x03de, "GuptaSequelBaseServer/NetWareSQL" },
1001 { 0x03e1, "UnivelUnixware" },
1002 { 0x03e4, "UnivelUnixware" },
1003 { 0x03fc, "IntelNetport" },
1004 { 0x03fd, "PrintServerQueue" },
1005 { 0x040A, "ipnServer" },
1006 { 0x040D, "LVERRMAN" },
1007 { 0x040E, "LVLIC" },
1008 { 0x0414, "NET Silicon (DPI)/Kyocera" },
1009 { 0x0429, "SiteLockVirus" },
1010 { 0x0432, "UFHELPR???" },
1011 { 0x0433, "Synoptics281xAdvancedSNMPAgent" },
1012 { 0x0444, "MicrosoftNT SNA Server" },
1013 { 0x0448, "Oracle" },
1014 { 0x044c, "ARCserve5.01" },
1015 { 0x0457, "CanonGP55" },
1016 { 0x045a, "QMS Printers" },
1017 { 0x045b, "DellSCSI Array" },
1018 { 0x0491, "NetBlazerModems" },
1019 { 0x04ac, "OnTimeScheduler" },
1020 { 0x04b0, "CD-Net" },
1021 { 0x0513, "EmulexNQA" },
1022 { 0x0520, "SiteLockChecks" },
1023 { 0x0529, "SiteLockChecks" },
1024 { 0x052d, "CitrixOS2 AppServer" },
1025 { 0x0535, "Tektronix" },
1026 { 0x0536, "Milan" },
1027 { 0x055d, "Attachmate SNA gateway" },
1028 { 0x056b, "IBM8235 ModemServer" },
1029 { 0x056c, "ShivaLanRover/E PLUS" },
1030 { 0x056d, "ShivaLanRover/T PLUS" },
1031 { 0x0580, "McAfeeNetShield" },
1032 { 0x05B8, "NLM to workstation communication (Revelation Software)" },
1033 { 0x05BA, "CompatibleSystemsRouters" },
1034 { 0x05BE, "CheyenneHierarchicalStorageManager" },
1035 { 0x0606, "JCWatermarkImaging" },
1036 { 0x060c, "AXISNetworkPrinter" },
1037 { 0x0610, "AdaptecSCSIManagement" },
1038 { 0x0621, "IBM AntiVirus" },
1039 { 0x0640, "Windows95 RemoteRegistryService" },
1040 { 0x064e, "MicrosoftIIS" },
1041 { 0x067b, "Microsoft Win95/98 File and Print Sharing for NetWare" },
1042 { 0x067c, "Microsoft Win95/98 File and Print Sharing for NetWare" },
1043 { 0x076C, "Xerox" },
1044 { 0x079b, "ShivaLanRover/E 115" },
1045 { 0x079c, "ShivaLanRover/T 115" },
1046 { 0x07B4, "CubixWorldDesk" },
1047 { 0x07c2, "Quarterdeck IWare Connect V2.x NLM" },
1048 { 0x07c1, "Quarterdeck IWare Connect V3.x NLM" },
1049 { 0x0810, "ELAN License Server Demo" },
1050 { 0x0824, "ShivaLanRoverAccessSwitch/E" },
1051 { 0x086a, "ISSC Collector" },
1052 { 0x087f, "ISSC DAS AgentAIX" },
1053 { 0x0880, "Intel Netport PRO" },
1054 { 0x0881, "Intel Netport PRO" },
1055 { 0x0b29, "SiteLock" },
1056 { 0x0c29, "SiteLockApplications" },
1057 { 0x0c2c, "LicensingServer" },
1058 { 0x2101, "PerformanceTechnologyInstantInternet" },
1059 { 0x2380, "LAI SiteLock" },
1060 { 0x238c, "MeetingMaker" },
1061 { 0x4808, "SiteLockServer/SiteLockMetering" },
1062 { 0x5555, "SiteLockUser" },
1063 { 0x6312, "Tapeware" },
1064 { 0x6f00, "RabbitGateway" },
1065 { 0x7703, "MODEM" },
1066 { 0x8002, "NetPortPrinters" },
1067 { 0x8008, "WordPerfectNetworkVersion" },
1068 { 0x85BE, "Cisco EIGRP" },
1069 { 0x8888, "WordPerfectNetworkVersion/QuickNetworkManagement" },
1070 { 0x9000, "McAfeeNetShield" },
1071 { 0x9604, "CSA-NT_MON" },
1072 { 0xb6a8, "OceanIsleReachoutRemoteControl" },
1073 { 0xf11f, "SiteLockMetering" },
1074 { 0xf1ff, "SiteLock" },
1075 { 0xf503, "Microsoft SQL Server" },
1076 { 0xF905, "IBM TimeAndPlace" },
1077 { 0xfbfb, "TopCallIII FaxServer" },
1078 { 0xffff, "AnyService/Wildcard" },
1083 init_ipxsaparray(void)
1086 register struct hnamemem *table;
1088 for (i = 0; ipxsap_db[i].s != NULL; i++) {
1089 int j = htons(ipxsap_db[i].v) & (HASHNAMESIZE-1);
1090 table = &ipxsaptable[j];
1093 table->name = ipxsap_db[i].s;
1094 table->addr = htons(ipxsap_db[i].v);
1095 table->nxt = newhnamemem();
1100 * Initialize the address to name translation machinery. We map all
1101 * non-local IP addresses to numeric addresses if fflag is true (i.e.,
1102 * to prevent blocking on the nameserver). localnet is the IP address
1103 * of the local network. mask is its subnet mask.
1106 init_addrtoname(u_int32_t localnet, u_int32_t mask)
1109 f_localnet = localnet;
1114 * Simplest way to suppress names.
1121 init_protoidarray();
1126 dnaddr_string(u_short dnaddr)
1128 register struct hnamemem *tp;
1130 for (tp = &dnaddrtable[dnaddr & (HASHNAMESIZE-1)]; tp->nxt != 0;
1132 if (tp->addr == dnaddr)
1136 tp->nxt = newhnamemem();
1138 tp->name = dnnum_string(dnaddr);
1140 tp->name = dnname_string(dnaddr);
1145 /* Return a zero'ed hnamemem struct and cuts down on calloc() overhead */
1149 register struct hnamemem *p;
1150 static struct hnamemem *ptr = NULL;
1151 static u_int num = 0;
1155 ptr = (struct hnamemem *)calloc(num, sizeof (*ptr));
1157 error("newhnamemem: calloc");
1165 /* Return a zero'ed h6namemem struct and cuts down on calloc() overhead */
1169 register struct h6namemem *p;
1170 static struct h6namemem *ptr = NULL;
1171 static u_int num = 0;
1175 ptr = (struct h6namemem *)calloc(num, sizeof (*ptr));
1177 error("newh6namemem: calloc");