OpenCores
URL https://opencores.org/ocsvn/openrisc_me/openrisc_me/trunk

Subversion Repositories openrisc_me

[/] [openrisc/] [trunk/] [gnu-src/] [newlib-1.17.0/] [newlib/] [libc/] [sys/] [linux/] [net/] [digits_dots.c] - Diff between revs 148 and 158

Only display areas with differences | Details | Blame | View Log

Rev 148 Rev 158
/* Copyright (C) 1997, 1999, 2000, 2001, 2004 Free Software Foundation, Inc.
/* Copyright (C) 1997, 1999, 2000, 2001, 2004 Free Software Foundation, Inc.
   This file is part of the GNU C Library.
   This file is part of the GNU C Library.
   Contributed by H.J. Lu <hjl@gnu.ai.mit.edu>, 1997.
   Contributed by H.J. Lu <hjl@gnu.ai.mit.edu>, 1997.
 
 
   The GNU C Library is free software; you can redistribute it and/or
   The GNU C Library is free software; you can redistribute it and/or
   modify it under the terms of the GNU Lesser General Public
   modify it under the terms of the GNU Lesser General Public
   License as published by the Free Software Foundation; either
   License as published by the Free Software Foundation; either
   version 2.1 of the License, or (at your option) any later version.
   version 2.1 of the License, or (at your option) any later version.
 
 
   The GNU C Library is distributed in the hope that it will be useful,
   The GNU C Library is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
   but WITHOUT ANY WARRANTY; without even the implied warranty of
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
   Lesser General Public License for more details.
   Lesser General Public License for more details.
 
 
   You should have received a copy of the GNU Lesser General Public
   You should have received a copy of the GNU Lesser General Public
   License along with the GNU C Library; if not, write to the Free
   License along with the GNU C Library; if not, write to the Free
   Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
   Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
   02111-1307 USA.  */
   02111-1307 USA.  */
 
 
#include <assert.h>
#include <assert.h>
#include <errno.h>
#include <errno.h>
#include <string.h>
#include <string.h>
#include <stdlib.h>
#include <stdlib.h>
#include <ctype.h>
#include <ctype.h>
#include <wctype.h>
#include <wctype.h>
#include <resolv.h>
#include <resolv.h>
#include <netdb.h>
#include <netdb.h>
#include <arpa/inet.h>
#include <arpa/inet.h>
#include "nsswitch.h"
#include "nsswitch.h"
 
 
#ifdef USE_NSCD
#ifdef USE_NSCD
# define inet_aton __inet_aton
# define inet_aton __inet_aton
# include <nscd/nscd_proto.h>
# include <nscd/nscd_proto.h>
#endif
#endif
 
 
int
int
__nss_hostname_digits_dots (const char *name, struct hostent *resbuf,
__nss_hostname_digits_dots (const char *name, struct hostent *resbuf,
                            char **buffer, size_t *buffer_size,
                            char **buffer, size_t *buffer_size,
                            size_t buflen, struct hostent **result,
                            size_t buflen, struct hostent **result,
                            enum nss_status *status, int af, int *h_errnop)
                            enum nss_status *status, int af, int *h_errnop)
{
{
  int save;
  int save;
 
 
  /* We have to test for the use of IPv6 which can only be done by
  /* We have to test for the use of IPv6 which can only be done by
     examining `_res'.  */
     examining `_res'.  */
  if (__res_maybe_init (&_res, 0) == -1)
  if (__res_maybe_init (&_res, 0) == -1)
    {
    {
      if (h_errnop)
      if (h_errnop)
        *h_errnop = NETDB_INTERNAL;
        *h_errnop = NETDB_INTERNAL;
      *result = NULL;
      *result = NULL;
      return -1;
      return -1;
    }
    }
 
 
  /*
  /*
   * disallow names consisting only of digits/dots, unless
   * disallow names consisting only of digits/dots, unless
   * they end in a dot.
   * they end in a dot.
   */
   */
  if (isdigit (name[0]) || isxdigit (name[0]) || name[0] == ':')
  if (isdigit (name[0]) || isxdigit (name[0]) || name[0] == ':')
    {
    {
      const char *cp;
      const char *cp;
      char *hostname;
      char *hostname;
      typedef unsigned char host_addr_t[16];
      typedef unsigned char host_addr_t[16];
      host_addr_t *host_addr;
      host_addr_t *host_addr;
      typedef char *host_addr_list_t[2];
      typedef char *host_addr_list_t[2];
      host_addr_list_t *h_addr_ptrs;
      host_addr_list_t *h_addr_ptrs;
      char **h_alias_ptr;
      char **h_alias_ptr;
      size_t size_needed;
      size_t size_needed;
      int addr_size;
      int addr_size;
 
 
      switch (af)
      switch (af)
        {
        {
        case AF_INET:
        case AF_INET:
          addr_size = INADDRSZ;
          addr_size = INADDRSZ;
          break;
          break;
 
 
        case AF_INET6:
        case AF_INET6:
          addr_size = IN6ADDRSZ;
          addr_size = IN6ADDRSZ;
          break;
          break;
 
 
        default:
        default:
          af = (_res.options & RES_USE_INET6) ? AF_INET6 : AF_INET;
          af = (_res.options & RES_USE_INET6) ? AF_INET6 : AF_INET;
          addr_size = af == AF_INET6 ? IN6ADDRSZ : INADDRSZ;
          addr_size = af == AF_INET6 ? IN6ADDRSZ : INADDRSZ;
          break;
          break;
        }
        }
 
 
      size_needed = (sizeof (*host_addr)
      size_needed = (sizeof (*host_addr)
                     + sizeof (*h_addr_ptrs) + strlen (name) + 1);
                     + sizeof (*h_addr_ptrs) + strlen (name) + 1);
 
 
      if (buffer_size == NULL)
      if (buffer_size == NULL)
        {
        {
          if (buflen < size_needed)
          if (buflen < size_needed)
            {
            {
              if (h_errnop != NULL)
              if (h_errnop != NULL)
                *h_errnop = TRY_AGAIN;
                *h_errnop = TRY_AGAIN;
              __set_errno (ERANGE);
              __set_errno (ERANGE);
              goto done;
              goto done;
            }
            }
        }
        }
      else if (buffer_size != NULL && *buffer_size < size_needed)
      else if (buffer_size != NULL && *buffer_size < size_needed)
        {
        {
          char *new_buf;
          char *new_buf;
          *buffer_size = size_needed;
          *buffer_size = size_needed;
          new_buf = (char *) realloc (*buffer, *buffer_size);
          new_buf = (char *) realloc (*buffer, *buffer_size);
 
 
          if (new_buf == NULL)
          if (new_buf == NULL)
            {
            {
              save = errno;
              save = errno;
              free (*buffer);
              free (*buffer);
              *buffer = NULL;
              *buffer = NULL;
              *buffer_size = 0;
              *buffer_size = 0;
              __set_errno (save);
              __set_errno (save);
              if (h_errnop != NULL)
              if (h_errnop != NULL)
                *h_errnop = TRY_AGAIN;
                *h_errnop = TRY_AGAIN;
              *result = NULL;
              *result = NULL;
              goto done;
              goto done;
            }
            }
          *buffer = new_buf;
          *buffer = new_buf;
        }
        }
 
 
      memset (*buffer, '\0', size_needed);
      memset (*buffer, '\0', size_needed);
 
 
      host_addr = (host_addr_t *) *buffer;
      host_addr = (host_addr_t *) *buffer;
      h_addr_ptrs = (host_addr_list_t *)
      h_addr_ptrs = (host_addr_list_t *)
        ((char *) host_addr + sizeof (*host_addr));
        ((char *) host_addr + sizeof (*host_addr));
      h_alias_ptr = (char **) ((char *) h_addr_ptrs + sizeof (*h_addr_ptrs));
      h_alias_ptr = (char **) ((char *) h_addr_ptrs + sizeof (*h_addr_ptrs));
      hostname = (char *) h_alias_ptr + sizeof (*h_alias_ptr);
      hostname = (char *) h_alias_ptr + sizeof (*h_alias_ptr);
 
 
      if (isdigit (name[0]))
      if (isdigit (name[0]))
        {
        {
          for (cp = name;; ++cp)
          for (cp = name;; ++cp)
            {
            {
              if (*cp == '\0')
              if (*cp == '\0')
                {
                {
                  int ok;
                  int ok;
 
 
                  if (*--cp == '.')
                  if (*--cp == '.')
                    break;
                    break;
 
 
                  /* All-numeric, no dot at the end. Fake up a hostent as if
                  /* All-numeric, no dot at the end. Fake up a hostent as if
                     we'd actually done a lookup.  What if someone types
                     we'd actually done a lookup.  What if someone types
                     255.255.255.255?  The test below will succeed
                     255.255.255.255?  The test below will succeed
                     spuriously... ???  */
                     spuriously... ???  */
                  if (af == AF_INET)
                  if (af == AF_INET)
                    ok = __inet_aton (name, (struct in_addr *) host_addr);
                    ok = __inet_aton (name, (struct in_addr *) host_addr);
                  else
                  else
                    {
                    {
                      assert (af == AF_INET6);
                      assert (af == AF_INET6);
                      ok = inet_pton (af, name, host_addr) > 0;
                      ok = inet_pton (af, name, host_addr) > 0;
                    }
                    }
                  if (! ok)
                  if (! ok)
                    {
                    {
                      *h_errnop = HOST_NOT_FOUND;
                      *h_errnop = HOST_NOT_FOUND;
                      if (buffer_size)
                      if (buffer_size)
                        *result = NULL;
                        *result = NULL;
                      goto done;
                      goto done;
                    }
                    }
 
 
                  resbuf->h_name = strcpy (hostname, name);
                  resbuf->h_name = strcpy (hostname, name);
                  h_alias_ptr[0] = NULL;
                  h_alias_ptr[0] = NULL;
                  resbuf->h_aliases = h_alias_ptr;
                  resbuf->h_aliases = h_alias_ptr;
                  (*h_addr_ptrs)[0] = (char *) host_addr;
                  (*h_addr_ptrs)[0] = (char *) host_addr;
                  (*h_addr_ptrs)[1] = NULL;
                  (*h_addr_ptrs)[1] = NULL;
                  resbuf->h_addr_list = *h_addr_ptrs;
                  resbuf->h_addr_list = *h_addr_ptrs;
                  if (af == AF_INET && (_res.options & RES_USE_INET6))
                  if (af == AF_INET && (_res.options & RES_USE_INET6))
                    {
                    {
                      /* We need to change the IP v4 address into the
                      /* We need to change the IP v4 address into the
                         IP v6 address.  */
                         IP v6 address.  */
                      char tmp[INADDRSZ];
                      char tmp[INADDRSZ];
                      char *p = (char *) host_addr;
                      char *p = (char *) host_addr;
                      int i;
                      int i;
 
 
                      /* Save a copy of the IP v4 address. */
                      /* Save a copy of the IP v4 address. */
                      memcpy (tmp, host_addr, INADDRSZ);
                      memcpy (tmp, host_addr, INADDRSZ);
                      /* Mark this ipv6 addr as a mapped ipv4. */
                      /* Mark this ipv6 addr as a mapped ipv4. */
                      for (i = 0; i < 10; i++)
                      for (i = 0; i < 10; i++)
                        *p++ = 0x00;
                        *p++ = 0x00;
                      *p++ = 0xff;
                      *p++ = 0xff;
                      *p++ = 0xff;
                      *p++ = 0xff;
                      /* Copy the IP v4 address. */
                      /* Copy the IP v4 address. */
                      memcpy (p, tmp, INADDRSZ);
                      memcpy (p, tmp, INADDRSZ);
                      resbuf->h_addrtype = AF_INET6;
                      resbuf->h_addrtype = AF_INET6;
                      resbuf->h_length = IN6ADDRSZ;
                      resbuf->h_length = IN6ADDRSZ;
                    }
                    }
                  else
                  else
                    {
                    {
                      resbuf->h_addrtype = af;
                      resbuf->h_addrtype = af;
                      resbuf->h_length = addr_size;
                      resbuf->h_length = addr_size;
                    }
                    }
                  if (h_errnop != NULL)
                  if (h_errnop != NULL)
                    *h_errnop = NETDB_SUCCESS;
                    *h_errnop = NETDB_SUCCESS;
                  if (buffer_size == NULL)
                  if (buffer_size == NULL)
                    *status = NSS_STATUS_SUCCESS;
                    *status = NSS_STATUS_SUCCESS;
                  else
                  else
                   *result = resbuf;
                   *result = resbuf;
                  goto done;
                  goto done;
                }
                }
 
 
              if (!isdigit (*cp) && *cp != '.')
              if (!isdigit (*cp) && *cp != '.')
                break;
                break;
            }
            }
        }
        }
 
 
      if ((isxdigit (name[0]) && strchr (name, ':') != NULL) || name[0] == ':')
      if ((isxdigit (name[0]) && strchr (name, ':') != NULL) || name[0] == ':')
        {
        {
          const char *cp;
          const char *cp;
          char *hostname;
          char *hostname;
          typedef unsigned char host_addr_t[16];
          typedef unsigned char host_addr_t[16];
          host_addr_t *host_addr;
          host_addr_t *host_addr;
          typedef char *host_addr_list_t[2];
          typedef char *host_addr_list_t[2];
          host_addr_list_t *h_addr_ptrs;
          host_addr_list_t *h_addr_ptrs;
          size_t size_needed;
          size_t size_needed;
          int addr_size;
          int addr_size;
 
 
          switch (af)
          switch (af)
            {
            {
            default:
            default:
              af = (_res.options & RES_USE_INET6) ? AF_INET6 : AF_INET;
              af = (_res.options & RES_USE_INET6) ? AF_INET6 : AF_INET;
              if (af == AF_INET6)
              if (af == AF_INET6)
                {
                {
                  addr_size = IN6ADDRSZ;
                  addr_size = IN6ADDRSZ;
                  break;
                  break;
                }
                }
              /* FALLTHROUGH */
              /* FALLTHROUGH */
 
 
            case AF_INET:
            case AF_INET:
              /* This is not possible.  We cannot represent an IPv6 address
              /* This is not possible.  We cannot represent an IPv6 address
                 in an `struct in_addr' variable.  */
                 in an `struct in_addr' variable.  */
              *h_errnop = HOST_NOT_FOUND;
              *h_errnop = HOST_NOT_FOUND;
              *result = NULL;
              *result = NULL;
              goto done;
              goto done;
 
 
            case AF_INET6:
            case AF_INET6:
              addr_size = IN6ADDRSZ;
              addr_size = IN6ADDRSZ;
              break;
              break;
            }
            }
 
 
          size_needed = (sizeof (*host_addr)
          size_needed = (sizeof (*host_addr)
                         + sizeof (*h_addr_ptrs) + strlen (name) + 1);
                         + sizeof (*h_addr_ptrs) + strlen (name) + 1);
 
 
          if (buffer_size == NULL && buflen < size_needed)
          if (buffer_size == NULL && buflen < size_needed)
            {
            {
              if (h_errnop != NULL)
              if (h_errnop != NULL)
                *h_errnop = TRY_AGAIN;
                *h_errnop = TRY_AGAIN;
              __set_errno (ERANGE);
              __set_errno (ERANGE);
              goto done;
              goto done;
            }
            }
          else if (buffer_size != NULL && *buffer_size < size_needed)
          else if (buffer_size != NULL && *buffer_size < size_needed)
            {
            {
              char *new_buf;
              char *new_buf;
              *buffer_size = size_needed;
              *buffer_size = size_needed;
              new_buf = realloc (*buffer, *buffer_size);
              new_buf = realloc (*buffer, *buffer_size);
 
 
              if (new_buf == NULL)
              if (new_buf == NULL)
                {
                {
                  save = errno;
                  save = errno;
                  free (*buffer);
                  free (*buffer);
                  __set_errno (save);
                  __set_errno (save);
                  *buffer = NULL;
                  *buffer = NULL;
                  *buffer_size = 0;
                  *buffer_size = 0;
                  *result = NULL;
                  *result = NULL;
                  goto done;
                  goto done;
                }
                }
              *buffer = new_buf;
              *buffer = new_buf;
            }
            }
 
 
          memset (*buffer, '\0', size_needed);
          memset (*buffer, '\0', size_needed);
 
 
          host_addr = (host_addr_t *) *buffer;
          host_addr = (host_addr_t *) *buffer;
          h_addr_ptrs = (host_addr_list_t *)
          h_addr_ptrs = (host_addr_list_t *)
            ((char *) host_addr + sizeof (*host_addr));
            ((char *) host_addr + sizeof (*host_addr));
          hostname = (char *) h_addr_ptrs + sizeof (*h_addr_ptrs);
          hostname = (char *) h_addr_ptrs + sizeof (*h_addr_ptrs);
 
 
          for (cp = name;; ++cp)
          for (cp = name;; ++cp)
            {
            {
              if (!*cp)
              if (!*cp)
                {
                {
                  if (*--cp == '.')
                  if (*--cp == '.')
                    break;
                    break;
 
 
                  /* All-IPv6-legal, no dot at the end. Fake up a
                  /* All-IPv6-legal, no dot at the end. Fake up a
                     hostent as if we'd actually done a lookup.  */
                     hostent as if we'd actually done a lookup.  */
                  if (inet_pton (AF_INET6, name, host_addr) <= 0)
                  if (inet_pton (AF_INET6, name, host_addr) <= 0)
                    {
                    {
                      *h_errnop = HOST_NOT_FOUND;
                      *h_errnop = HOST_NOT_FOUND;
                      if (buffer_size)
                      if (buffer_size)
                        *result = NULL;
                        *result = NULL;
                      goto done;
                      goto done;
                    }
                    }
 
 
                  resbuf->h_name = strcpy (hostname, name);
                  resbuf->h_name = strcpy (hostname, name);
                  h_alias_ptr[0] = NULL;
                  h_alias_ptr[0] = NULL;
                  resbuf->h_aliases = h_alias_ptr;
                  resbuf->h_aliases = h_alias_ptr;
                  (*h_addr_ptrs)[0] = (char *) host_addr;
                  (*h_addr_ptrs)[0] = (char *) host_addr;
                  (*h_addr_ptrs)[1] = (char *) 0;
                  (*h_addr_ptrs)[1] = (char *) 0;
                  resbuf->h_addr_list = *h_addr_ptrs;
                  resbuf->h_addr_list = *h_addr_ptrs;
                  resbuf->h_addrtype = AF_INET6;
                  resbuf->h_addrtype = AF_INET6;
                  resbuf->h_length = addr_size;
                  resbuf->h_length = addr_size;
                  *h_errnop = NETDB_SUCCESS;
                  *h_errnop = NETDB_SUCCESS;
                  if (buffer_size == NULL)
                  if (buffer_size == NULL)
                    *status = NSS_STATUS_SUCCESS;
                    *status = NSS_STATUS_SUCCESS;
                  else
                  else
                    *result = resbuf;
                    *result = resbuf;
                  goto done;
                  goto done;
                }
                }
 
 
              if (!isxdigit (*cp) && *cp != ':' && *cp != '.')
              if (!isxdigit (*cp) && *cp != ':' && *cp != '.')
                break;
                break;
            }
            }
        }
        }
    }
    }
 
 
  return 0;
  return 0;
 
 
done:
done:
  return 1;
  return 1;
}
}
libc_hidden_def (__nss_hostname_digits_dots)
libc_hidden_def (__nss_hostname_digits_dots)
 
 

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.