]> The Tcpdump Group git mirrors - tcpdump/blobdiff - addrtoname.c
change make check to work with POSIX shell
[tcpdump] / addrtoname.c
index 6975b7134e23c39e91eef115885b63dc6e8e1ac3..15e57411f52c6be2c1bee49af3d254014c5bd35d 100644 (file)
@@ -120,7 +120,7 @@ win32_gethostbyaddr(const char *addr, int len, int type)
                    hname, sizeof(hname), NULL, 0, 0)) {
                        return NULL;
                } else {
-                       strcpy(host.h_name, hname);
+                       strlcpy(host.h_name, hname, NI_MAXHOST);
                        return &host;
                }
                break;
@@ -145,13 +145,23 @@ struct enamemem {
        u_short e_addr2;
        const char *e_name;
        u_char *e_nsap;                 /* used only for nsaptable[] */
-#define e_bs e_nsap                    /* for bytestringtable */
        struct enamemem *e_nxt;
 };
 
 static struct enamemem enametable[HASHNAMESIZE];
 static struct enamemem nsaptable[HASHNAMESIZE];
-static struct enamemem bytestringtable[HASHNAMESIZE];
+
+struct bsnamemem {
+       u_short bs_addr0;
+       u_short bs_addr1;
+       u_short bs_addr2;
+       const char *bs_name;
+       u_char *bs_bytes;
+       unsigned int bs_nbytes;
+       struct bsnamemem *bs_nxt;
+};
+
+static struct bsnamemem bytestringtable[HASHNAMESIZE];
 
 struct protoidmem {
        uint32_t p_oui;
@@ -321,7 +331,7 @@ getname6(netdissect_options *ndo, const u_char *ap)
        return (p->name);
 }
 
-static const char hex[] = "0123456789abcdef";
+static const char hex[16] = "0123456789abcdef";
 
 
 /* Find the hash node that corresponds the ether address 'ep' */
@@ -359,11 +369,11 @@ lookup_emem(netdissect_options *ndo, const u_char *ep)
  * with length 'nlen'
  */
 
-static inline struct enamemem *
+static inline struct bsnamemem *
 lookup_bytestring(netdissect_options *ndo, register const u_char *bs,
                  const unsigned int nlen)
 {
-       struct enamemem *tp;
+       struct bsnamemem *tp;
        register u_int i, j, k;
 
        if (nlen >= 6) {
@@ -378,26 +388,28 @@ lookup_bytestring(netdissect_options *ndo, register const u_char *bs,
                i = j = k = 0;
 
        tp = &bytestringtable[(i ^ j) & (HASHNAMESIZE-1)];
-       while (tp->e_nxt)
-               if (tp->e_addr0 == i &&
-                   tp->e_addr1 == j &&
-                   tp->e_addr2 == k &&
-                   memcmp((const char *)bs, (const char *)(tp->e_bs), nlen) == 0)
+       while (tp->bs_nxt)
+               if (nlen == tp->bs_nbytes &&
+                   tp->bs_addr0 == i &&
+                   tp->bs_addr1 == j &&
+                   tp->bs_addr2 == k &&
+                   memcmp((const char *)bs, (const char *)(tp->bs_bytes), nlen) == 0)
                        return tp;
                else
-                       tp = tp->e_nxt;
+                       tp = tp->bs_nxt;
 
-       tp->e_addr0 = i;
-       tp->e_addr1 = j;
-       tp->e_addr2 = k;
+       tp->bs_addr0 = i;
+       tp->bs_addr1 = j;
+       tp->bs_addr2 = k;
 
-       tp->e_bs = (u_char *) calloc(1, nlen + 1);
-       if (tp->e_bs == NULL)
+       tp->bs_bytes = (u_char *) calloc(1, nlen);
+       if (tp->bs_bytes == NULL)
                (*ndo->ndo_error)(ndo, "lookup_bytestring: calloc");
 
-       memcpy(tp->e_bs, bs, nlen);
-       tp->e_nxt = (struct enamemem *)calloc(1, sizeof(*tp));
-       if (tp->e_nxt == NULL)
+       memcpy(tp->bs_bytes, bs, nlen);
+       tp->bs_nbytes = nlen;
+       tp->bs_nxt = (struct bsnamemem *)calloc(1, sizeof(*tp));
+       if (tp->bs_nxt == NULL)
                (*ndo->ndo_error)(ndo, "lookup_bytestring: calloc");
 
        return tp;
@@ -424,11 +436,11 @@ lookup_nsap(netdissect_options *ndo, register const u_char *nsap,
 
        tp = &nsaptable[(i ^ j) & (HASHNAMESIZE-1)];
        while (tp->e_nxt)
-               if (tp->e_addr0 == i &&
+               if (nsap_length == tp->e_nsap[0] &&
+                   tp->e_addr0 == i &&
                    tp->e_addr1 == j &&
                    tp->e_addr2 == k &&
-                   tp->e_nsap[0] == nsap_length &&
-                   memcmp((const char *)&(nsap[1]),
+                   memcmp((const char *)nsap,
                        (char *)&(tp->e_nsap[1]), nsap_length) == 0)
                        return tp;
                else
@@ -528,12 +540,12 @@ le64addr_string(netdissect_options *ndo, const u_char *ep)
        const unsigned int len = 8;
        register u_int i;
        register char *cp;
-       register struct enamemem *tp;
+       register struct bsnamemem *tp;
        char buf[BUFSIZE];
 
        tp = lookup_bytestring(ndo, ep, len);
-       if (tp->e_name)
-               return (tp->e_name);
+       if (tp->bs_name)
+               return (tp->bs_name);
 
        cp = buf;
        for (i = len; i > 0 ; --i) {
@@ -545,11 +557,11 @@ le64addr_string(netdissect_options *ndo, const u_char *ep)
 
        *cp = '\0';
 
-       tp->e_name = strdup(buf);
-       if (tp->e_name == NULL)
+       tp->bs_name = strdup(buf);
+       if (tp->bs_name == NULL)
                (*ndo->ndo_error)(ndo, "le64addr_string: strdup(buf)");
 
-       return (tp->e_name);
+       return (tp->bs_name);
 }
 
 const char *
@@ -558,7 +570,7 @@ linkaddr_string(netdissect_options *ndo, const u_char *ep,
 {
        register u_int i;
        register char *cp;
-       register struct enamemem *tp;
+       register struct bsnamemem *tp;
 
        if (len == 0)
                return ("<empty>");
@@ -570,11 +582,11 @@ linkaddr_string(netdissect_options *ndo, const u_char *ep,
                return (q922_string(ndo, ep, len));
 
        tp = lookup_bytestring(ndo, ep, len);
-       if (tp->e_name)
-               return (tp->e_name);
+       if (tp->bs_name)
+               return (tp->bs_name);
 
-       tp->e_name = cp = (char *)malloc(len*3);
-       if (tp->e_name == NULL)
+       tp->bs_name = cp = (char *)malloc(len*3);
+       if (tp->bs_name == NULL)
                (*ndo->ndo_error)(ndo, "linkaddr_string: malloc");
        *cp++ = hex[*ep >> 4];
        *cp++ = hex[*ep++ & 0xf];
@@ -584,7 +596,7 @@ linkaddr_string(netdissect_options *ndo, const u_char *ep,
                *cp++ = hex[*ep++ & 0xf];
        }
        *cp = '\0';
-       return (tp->e_name);
+       return (tp->bs_name);
 }
 
 const char *
@@ -1214,10 +1226,7 @@ dnaddr_string(netdissect_options *ndo, u_short dnaddr)
 
        tp->addr = dnaddr;
        tp->nxt = newhnamemem(ndo);
-       if (ndo->ndo_nflag)
-               tp->name = dnnum_string(ndo, dnaddr);
-       else
-               tp->name = dnname_string(ndo, dnaddr);
+       tp->name = dnnum_string(ndo, dnaddr);
 
        return(tp->name);
 }