Blame nis/nss-nisplus.c

Packit Service 82fcde
/* Copyright (C) 1997-2018 Free Software Foundation, Inc.
Packit Service 82fcde
   This file is part of the GNU C Library.
Packit Service 82fcde
   Contributed by Thorsten Kukuk <kukuk@uni-paderborn.de>, 1997.
Packit Service 82fcde
Packit Service 82fcde
   The GNU C Library is free software; you can redistribute it and/or
Packit Service 82fcde
   modify it under the terms of the GNU Lesser General Public
Packit Service 82fcde
   License as published by the Free Software Foundation; either
Packit Service 82fcde
   version 2.1 of the License, or (at your option) any later version.
Packit Service 82fcde
Packit Service 82fcde
   The GNU C Library is distributed in the hope that it will be useful,
Packit Service 82fcde
   but WITHOUT ANY WARRANTY; without even the implied warranty of
Packit Service 82fcde
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
Packit Service 82fcde
   Lesser General Public License for more details.
Packit Service 82fcde
Packit Service 82fcde
   You should have received a copy of the GNU Lesser General Public
Packit Service 82fcde
   License along with the GNU C Library; if not, see
Packit Service 82fcde
   <http://www.gnu.org/licenses/>.  */
Packit Service 82fcde
Packit Service 82fcde
#include <rpcsvc/nis.h>
Packit Service 82fcde
Packit Service 82fcde
#include "nss-nisplus.h"
Packit Service 82fcde
#include "nsswitch.h"
Packit Service 82fcde
Packit Service 82fcde
Packit Service 82fcde
/* Convert NIS+ error number to NSS error number.  */
Packit Service 82fcde
const enum nss_status __niserr2nss_tab[] =
Packit Service 82fcde
{
Packit Service 82fcde
  [NIS_SUCCESS] = NSS_STATUS_SUCCESS,
Packit Service 82fcde
  [NIS_S_SUCCESS] = NSS_STATUS_SUCCESS,
Packit Service 82fcde
  [NIS_NOTFOUND] = NSS_STATUS_NOTFOUND,
Packit Service 82fcde
  [NIS_S_NOTFOUND] = NSS_STATUS_NOTFOUND,
Packit Service 82fcde
  [NIS_CACHEEXPIRED] = NSS_STATUS_UNAVAIL,
Packit Service 82fcde
  [NIS_NAMEUNREACHABLE] = NSS_STATUS_UNAVAIL,
Packit Service 82fcde
  [NIS_UNKNOWNOBJ] = NSS_STATUS_NOTFOUND,
Packit Service 82fcde
  [NIS_TRYAGAIN] = NSS_STATUS_TRYAGAIN,
Packit Service 82fcde
  [NIS_SYSTEMERROR] = NSS_STATUS_UNAVAIL,
Packit Service 82fcde
  [NIS_CHAINBROKEN] = NSS_STATUS_UNAVAIL,
Packit Service 82fcde
  [NIS_PERMISSION] = NSS_STATUS_UNAVAIL,
Packit Service 82fcde
  [NIS_NOTOWNER] = NSS_STATUS_UNAVAIL,
Packit Service 82fcde
  [NIS_NOT_ME] = NSS_STATUS_UNAVAIL,
Packit Service 82fcde
  [NIS_NOMEMORY] = NSS_STATUS_TRYAGAIN,
Packit Service 82fcde
  [NIS_NAMEEXISTS] = NSS_STATUS_UNAVAIL,
Packit Service 82fcde
  [NIS_NOTMASTER] = NSS_STATUS_UNAVAIL,
Packit Service 82fcde
  [NIS_INVALIDOBJ] = NSS_STATUS_UNAVAIL,
Packit Service 82fcde
  [NIS_BADNAME] = NSS_STATUS_UNAVAIL,
Packit Service 82fcde
  [NIS_NOCALLBACK] = NSS_STATUS_UNAVAIL,
Packit Service 82fcde
  [NIS_CBRESULTS] = NSS_STATUS_UNAVAIL,
Packit Service 82fcde
  [NIS_NOSUCHNAME] = NSS_STATUS_NOTFOUND,
Packit Service 82fcde
  [NIS_NOTUNIQUE] = NSS_STATUS_UNAVAIL,
Packit Service 82fcde
  [NIS_IBMODERROR] = NSS_STATUS_UNAVAIL,
Packit Service 82fcde
  [NIS_NOSUCHTABLE] = NSS_STATUS_UNAVAIL,
Packit Service 82fcde
  [NIS_TYPEMISMATCH] = NSS_STATUS_UNAVAIL,
Packit Service 82fcde
  [NIS_LINKNAMEERROR] = NSS_STATUS_UNAVAIL,
Packit Service 82fcde
  [NIS_PARTIAL] = NSS_STATUS_NOTFOUND,
Packit Service 82fcde
  [NIS_TOOMANYATTRS] = NSS_STATUS_UNAVAIL,
Packit Service 82fcde
  [NIS_RPCERROR] = NSS_STATUS_UNAVAIL,
Packit Service 82fcde
  [NIS_BADATTRIBUTE] = NSS_STATUS_UNAVAIL,
Packit Service 82fcde
  [NIS_NOTSEARCHABLE] = NSS_STATUS_UNAVAIL,
Packit Service 82fcde
  [NIS_CBERROR] = NSS_STATUS_UNAVAIL,
Packit Service 82fcde
  [NIS_FOREIGNNS] = NSS_STATUS_UNAVAIL,
Packit Service 82fcde
  [NIS_BADOBJECT] = NSS_STATUS_UNAVAIL,
Packit Service 82fcde
  [NIS_NOTSAMEOBJ] = NSS_STATUS_UNAVAIL,
Packit Service 82fcde
  [NIS_MODFAIL] = NSS_STATUS_UNAVAIL,
Packit Service 82fcde
  [NIS_BADREQUEST] = NSS_STATUS_UNAVAIL,
Packit Service 82fcde
  [NIS_NOTEMPTY] = NSS_STATUS_UNAVAIL,
Packit Service 82fcde
  [NIS_COLDSTART_ERR] = NSS_STATUS_UNAVAIL,
Packit Service 82fcde
  [NIS_RESYNC] = NSS_STATUS_UNAVAIL,
Packit Service 82fcde
  [NIS_FAIL] = NSS_STATUS_UNAVAIL,
Packit Service 82fcde
  [NIS_UNAVAIL] = NSS_STATUS_UNAVAIL,
Packit Service 82fcde
  [NIS_RES2BIG] = NSS_STATUS_UNAVAIL,
Packit Service 82fcde
  [NIS_SRVAUTH] = NSS_STATUS_UNAVAIL,
Packit Service 82fcde
  [NIS_CLNTAUTH] = NSS_STATUS_UNAVAIL,
Packit Service 82fcde
  [NIS_NOFILESPACE] = NSS_STATUS_UNAVAIL,
Packit Service 82fcde
  [NIS_NOPROC] = NSS_STATUS_UNAVAIL,
Packit Service 82fcde
  [NIS_DUMPLATER] = NSS_STATUS_UNAVAIL
Packit Service 82fcde
};
Packit Service 82fcde
const unsigned int __niserr2nss_count = (sizeof (__niserr2nss_tab)
Packit Service 82fcde
					 / sizeof (__niserr2nss_tab[0]));