Uploaded image for project: 'JDK'
  1. JDK
  2. JDK-6353684

Unnecessary service name in getaddrinfo calls

XMLWordPrintable

    • b63
    • generic
    • generic

        In the native implementation of Inet6AddressImpl, both for Solaris/Linux and Windows there are calls to getaddrinfo() for name resolution (IPv6 equivalent of gethostbyname()) that are requesting unnecessary information. i.e. the calls pass the string "domain" as a second argument, which, in effect, will do the equivalent of getservbyname("domain") along with the host name resolution.
        While there is nothing inhenrently bogus about this, the extra information requested (port number for DNS) is not used.
        It is both a performance issue (albeit a minor one) and an extra potential breaking point (if the service name database, usually /etc/services, get corrupted the call may fail).

        I recommend replacing the "domain" litteral string by a NULL, which tells the function to only do host name resolution.

              jccollet Jean-Christophe Collet (Inactive)
              jccollet Jean-Christophe Collet (Inactive)
              Votes:
              0 Vote for this issue
              Watchers:
              0 Start watching this issue

                Created:
                Updated:
                Resolved:
                Imported:
                Indexed: