Blame sunrpc/publickey.c

Packit 6c4009
/* Get public or secret key from key server.
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 <rpc/netdb.h>
Packit 6c4009
#include <rpc/auth_des.h>
Packit 6c4009
#include <shlib-compat.h>
Packit 6c4009
Packit 6c4009
#include "nsswitch.h"
Packit 6c4009
Packit 6c4009
Packit 6c4009
/* Type of the lookup function for the public key.  */
Packit 6c4009
typedef int (*public_function) (const char *, char *, int *);
Packit 6c4009
Packit 6c4009
/* Type of the lookup function for the secret key.  */
Packit 6c4009
typedef int (*secret_function) (const char *, char *, const char *, int *);
Packit 6c4009
Packit 6c4009
int
Packit 6c4009
getpublickey (const char *name, char *key)
Packit 6c4009
{
Packit 6c4009
  static service_user *startp;
Packit 6c4009
  static public_function start_fct;
Packit 6c4009
  service_user *nip;
Packit 6c4009
  union
Packit 6c4009
  {
Packit 6c4009
    public_function f;
Packit 6c4009
    void *ptr;
Packit 6c4009
  } fct;
Packit 6c4009
  enum nss_status status = NSS_STATUS_UNAVAIL;
Packit 6c4009
  int no_more;
Packit 6c4009
Packit 6c4009
  if (startp == NULL)
Packit 6c4009
    {
Packit 6c4009
      no_more = __nss_publickey_lookup2 (&nip, "getpublickey", 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)
Packit 6c4009
    {
Packit 6c4009
      status = (*fct.f) (name, key, &errno);
Packit 6c4009
Packit 6c4009
      no_more = __nss_next2 (&nip, "getpublickey", NULL, &fct.ptr, status, 0);
Packit 6c4009
    }
Packit 6c4009
Packit 6c4009
  return status == NSS_STATUS_SUCCESS;
Packit 6c4009
}
Packit 6c4009
libc_hidden_nolink_sunrpc (getpublickey, GLIBC_2_0)
Packit 6c4009
Packit 6c4009
Packit 6c4009
int
Packit 6c4009
getsecretkey (const char *name, char *key, const char *passwd)
Packit 6c4009
{
Packit 6c4009
  static service_user *startp;
Packit 6c4009
  static secret_function start_fct;
Packit 6c4009
  service_user *nip;
Packit 6c4009
  union
Packit 6c4009
  {
Packit 6c4009
    secret_function f;
Packit 6c4009
    void *ptr;
Packit 6c4009
  } fct;
Packit 6c4009
  enum nss_status status = NSS_STATUS_UNAVAIL;
Packit 6c4009
  int no_more;
Packit 6c4009
Packit 6c4009
  if (startp == NULL)
Packit 6c4009
    {
Packit 6c4009
      no_more = __nss_publickey_lookup2 (&nip, "getsecretkey", 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)
Packit 6c4009
    {
Packit 6c4009
      status = (*fct.f) (name, key, passwd, &errno);
Packit 6c4009
Packit 6c4009
      no_more = __nss_next2 (&nip, "getsecretkey", NULL, &fct.ptr, status, 0);
Packit 6c4009
    }
Packit 6c4009
Packit 6c4009
  return status == NSS_STATUS_SUCCESS;
Packit 6c4009
}
Packit 6c4009
libc_hidden_nolink_sunrpc (getsecretkey, GLIBC_2_0)