Blame inet/ether_hton.c

Packit 6c4009
/* Copyright (C) 1996-2018 Free Software Foundation, Inc.
Packit 6c4009
   This file is part of the GNU C Library.
Packit 6c4009
   Contributed by Ulrich Drepper <drepper@cygnus.com>, 1996.
Packit 6c4009
Packit 6c4009
   The GNU C Library is free software; you can redistribute it and/or
Packit 6c4009
   modify it under the terms of the GNU Lesser General Public
Packit 6c4009
   License as published by the Free Software Foundation; either
Packit 6c4009
   version 2.1 of the License, or (at your option) any later version.
Packit 6c4009
Packit 6c4009
   The GNU C Library is distributed in the hope that it will be useful,
Packit 6c4009
   but WITHOUT ANY WARRANTY; without even the implied warranty of
Packit 6c4009
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
Packit 6c4009
   Lesser General Public License for more details.
Packit 6c4009
Packit 6c4009
   You should have received a copy of the GNU Lesser General Public
Packit 6c4009
   License along with the GNU C Library; if not, see
Packit 6c4009
   <http://www.gnu.org/licenses/>.  */
Packit 6c4009
Packit 6c4009
#include <errno.h>
Packit 6c4009
#include <netinet/ether.h>
Packit 6c4009
#include <netinet/if_ether.h>
Packit 6c4009
#include <string.h>
Packit 6c4009
Packit 6c4009
#include "../nss/nsswitch.h"
Packit 6c4009
Packit 6c4009
/* Type of the lookup function we need here.  */
Packit 6c4009
typedef int (*lookup_function) (const char *, struct etherent *, char *, int,
Packit 6c4009
				int *);
Packit 6c4009
Packit 6c4009
int
Packit 6c4009
ether_hostton (const char *hostname, struct ether_addr *addr)
Packit 6c4009
{
Packit 6c4009
  static service_user *startp;
Packit 6c4009
  static lookup_function start_fct;
Packit 6c4009
  service_user *nip;
Packit 6c4009
  union
Packit 6c4009
  {
Packit 6c4009
    lookup_function f;
Packit 6c4009
    void *ptr;
Packit 6c4009
  } fct;
Packit 6c4009
  int no_more;
Packit 6c4009
  enum nss_status status = NSS_STATUS_UNAVAIL;
Packit 6c4009
  struct etherent etherent;
Packit 6c4009
Packit 6c4009
  if (startp == NULL)
Packit 6c4009
    {
Packit 6c4009
      no_more = __nss_ethers_lookup2 (&nip, "gethostton_r", NULL, &fct.ptr);
Packit 6c4009
      if (no_more)
Packit 6c4009
	startp = (service_user *) -1;
Packit 6c4009
      else
Packit 6c4009
	{
Packit 6c4009
	  startp = nip;
Packit 6c4009
	  start_fct = fct.f;
Packit 6c4009
	}
Packit 6c4009
    }
Packit 6c4009
  else
Packit 6c4009
    {
Packit 6c4009
      fct.f = start_fct;
Packit 6c4009
      no_more = (nip = startp) == (service_user *) -1;
Packit 6c4009
    }
Packit 6c4009
Packit 6c4009
  while (no_more == 0)
Packit 6c4009
    {
Packit 6c4009
      char buffer[1024];
Packit 6c4009
Packit 6c4009
      status = (*fct.f) (hostname, &etherent, buffer, sizeof buffer, &errno);
Packit 6c4009
Packit 6c4009
      no_more = __nss_next2 (&nip, "gethostton_r", NULL, &fct.ptr, status, 0);
Packit 6c4009
    }
Packit 6c4009
Packit 6c4009
  if (status == NSS_STATUS_SUCCESS)
Packit 6c4009
    memcpy (addr, etherent.e_addr.ether_addr_octet,
Packit 6c4009
	    sizeof (struct ether_addr));
Packit 6c4009
Packit 6c4009
  return status == NSS_STATUS_SUCCESS ? 0 : -1;
Packit 6c4009
}