| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239 |
- /** BEGIN COPYRIGHT BLOCK
- * This Program is free software; you can redistribute it and/or modify it under
- * the terms of the GNU General Public License as published by the Free Software
- * Foundation; version 2 of the License.
- *
- * This Program is distributed in the hope that it will be useful, but WITHOUT
- * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
- * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License along with
- * this Program; if not, write to the Free Software Foundation, Inc., 59 Temple
- * Place, Suite 330, Boston, MA 02111-1307 USA.
- *
- * In addition, as a special exception, Red Hat, Inc. gives You the additional
- * right to link the code of this Program with code not covered under the GNU
- * General Public License ("Non-GPL Code") and to distribute linked combinations
- * including the two, subject to the limitations in this paragraph. Non-GPL Code
- * permitted under this exception must only link to the code of this Program
- * through those well defined interfaces identified in the file named EXCEPTION
- * found in the source code files (the "Approved Interfaces"). The files of
- * Non-GPL Code may instantiate templates or use macros or inline functions from
- * the Approved Interfaces without causing the resulting work to be covered by
- * the GNU General Public License. Only Red Hat, Inc. may make changes or
- * additions to the list of Approved Interfaces. You must obey the GNU General
- * Public License in all respects for all of the Program code and other code used
- * in conjunction with the Program except the Non-GPL Code covered by this
- * exception. If you modify this file, you may extend this exception to your
- * version of the file, but you are not obligated to do so. If you do not wish to
- * provide this exception without modification, you must delete this exception
- * statement from your version and license this file solely under the GPL without
- * exception.
- *
- *
- * Copyright (C) 2001 Sun Microsystems, Inc. Used by permission.
- * Copyright (C) 2005 Red Hat, Inc.
- * All rights reserved.
- * END COPYRIGHT BLOCK **/
- #ifdef HAVE_CONFIG_H
- # include <config.h>
- #endif
- #include <ldaputil/errors.h>
- #include <ldaputil/certmap.h>
- NSAPI_PUBLIC char *ldapu_err2string(int err)
- {
- char *rv;
- switch(err) {
- /* Error codes defined in certmap.h */
- case LDAPU_SUCCESS:
- rv = "success";
- break;
- case LDAPU_FAILED:
- rv = "ldap search didn't find an ldap entry";
- break;
- case LDAPU_CERT_MAP_FUNCTION_FAILED:
- rv = "Cert mapping function failed";
- break;
- case LDAPU_CERT_SEARCH_FUNCTION_FAILED:
- rv = "Cert search function failed";
- break;
- case LDAPU_CERT_VERIFY_FUNCTION_FAILED:
- rv = "Cert verify function failed";
- break;
- case LDAPU_CERT_MAP_INITFN_FAILED:
- rv = "Certmap InitFn function failed";
- break;
- /* Error codes returned by ldapdb.c */
- case LDAPU_ERR_URL_INVALID_PREFIX:
- rv = "invalid local ldap database url prefix -- must be ldapdb://";
- break;
- case LDAPU_ERR_URL_NO_BASEDN:
- rv = "base dn is missing in ldapdb url";
- break;
- case LDAPU_ERR_OUT_OF_MEMORY:
- rv = "out of memory";
- break;
- case LDAPU_ERR_LDAP_INIT_FAILED:
- rv = "Couldn't initialize connection to the ldap directory server";
- break;
- case LDAPU_ERR_LCACHE_INIT_FAILED:
- rv = "Couldn't initialize connection to the local ldap directory";
- break;
- case LDAPU_ERR_LDAP_SET_OPTION_FAILED:
- rv = "ldap_set_option failed for local ldap database";
- break;
- case LDAPU_ERR_NO_DEFAULT_CERTDB:
- rv = "default cert database not initialized when using LDAP over SSL";
- break;
- /* Errors returned by ldapauth.c */
- case LDAPU_ERR_CIRCULAR_GROUPS:
- rv = "Circular groups were detected during group membership check";
- break;
- case LDAPU_ERR_INVALID_STRING:
- rv = "Invalid string";
- break;
- case LDAPU_ERR_INVALID_STRING_INDEX:
- rv = "Invalid string index";
- break;
- case LDAPU_ERR_MISSING_ATTR_VAL:
- rv = "Missing attribute value from the search result";
- break;
- /* Errors returned by dbconf.c */
- case LDAPU_ERR_CANNOT_OPEN_FILE:
- rv = "cannot open the config file";
- break;
- case LDAPU_ERR_DBNAME_IS_MISSING:
- rv = "database name is missing";
- break;
- case LDAPU_ERR_PROP_IS_MISSING:
- rv = "database property is missing";
- break;
- case LDAPU_ERR_DIRECTIVE_IS_MISSING:
- rv = "illegal directive in the config file";
- break;
- case LDAPU_ERR_NOT_PROPVAL:
- rv = "internal error - LDAPU_ERR_NOT_PROPVAL";
- break;
- /* Error codes returned by certmap.c */
- case LDAPU_ERR_NO_ISSUERDN_IN_CERT:
- rv = "cannot extract issuer DN from the cert";
- break;
- case LDAPU_ERR_NO_ISSUERDN_IN_CONFIG_FILE:
- rv = "issuer DN missing for non-default certmap";
- break;
- case LDAPU_ERR_CERTMAP_INFO_MISSING:
- rv = "cert to ldap entry mapping information is missing";
- break;
- case LDAPU_ERR_MALFORMED_SUBJECT_DN:
- rv = "Found malformed subject DN in the certificate";
- break;
- case LDAPU_ERR_MAPPED_ENTRY_NOT_FOUND:
- rv = "Certificate couldn't be mapped to an ldap entry";
- break;
- case LDAPU_ERR_UNABLE_TO_LOAD_PLUGIN:
- rv = "Unable to load certmap plugin library";
- break;
- case LDAPU_ERR_MISSING_INIT_FN_IN_CONFIG:
- rv = "InitFn must be provided when using certmap plugin library";
- break;
- case LDAPU_ERR_MISSING_INIT_FN_IN_LIB:
- rv = "Could not find InitFn in the certmap plugin library";
- break;
- case LDAPU_ERR_CERT_VERIFY_FAILED:
- rv = "Could not matching certificate in User's LDAP entry";
- break;
- case LDAPU_ERR_CERT_VERIFY_NO_CERTS:
- rv = "User's LDAP entry doesn't have any certificates to compare";
- break;
- case LDAPU_ERR_MISSING_LIBNAME:
- rv = "Library name is missing in the config file";
- break;
- case LDAPU_ERR_MISSING_INIT_FN_NAME:
- rv = "Init function name is missing in the config file";
- break;
- case LDAPU_ERR_WRONG_ARGS:
- rv = "ldaputil API function called with wrong arguments";
- break;
- case LDAPU_ERR_RENAME_FILE_FAILED:
- rv = "Renaming of file failed";
- break;
- case LDAPU_ERR_MISSING_VERIFYCERT_VAL:
- rv = "VerifyCert property value must be on or off";
- break;
- case LDAPU_ERR_CANAME_IS_MISSING:
- rv = "Cert issuer name is missing";
- break;
- case LDAPU_ERR_CAPROP_IS_MISSING:
- rv = "property name is missing";
- break;
- case LDAPU_ERR_UNKNOWN_CERT_ATTR:
- rv = "unknown cert attribute";
- break;
- case LDAPU_ERR_EMPTY_LDAP_RESULT:
- rv = "ldap search returned empty result";
- break;
- case LDAPU_ERR_MULTIPLE_MATCHES:
- rv = "ldap search returned multiple matches when one expected";
- break;
- case LDAPU_ERR_MISSING_RES_ENTRY:
- rv = "Could not extract entry from the ldap search result";
- break;
- case LDAPU_ERR_MISSING_UID_ATTR:
- rv = "ldap entry is missing the 'uid' attribute value";
- break;
- case LDAPU_ERR_INVALID_ARGUMENT:
- rv = "invalid argument passed to the certmap API function";
- break;
- case LDAPU_ERR_INVALID_SUFFIX:
- rv = "invalid LDAP directory suffix";
- break;
- /* Error codes returned by cert.c */
- case LDAPU_ERR_EXTRACT_SUBJECTDN_FAILED:
- rv = "Couldn't extract the subject DN from the certificate";
- break;
- case LDAPU_ERR_EXTRACT_ISSUERDN_FAILED:
- rv = "Couldn't extract the issuer DN from the certificate";
- break;
- case LDAPU_ERR_EXTRACT_DERCERT_FAILED:
- rv = "Couldn't extract the original DER encoding from the certificate";
- break;
- case LDAPU_ERR_NOT_IMPLEMENTED:
- rv = "function not implemented yet";
- break;
- case LDAPU_ERR_INTERNAL:
- rv = "ldaputil internal error";
- break;
- default:
- if (err > 0) {
- /* LDAP errors are +ve */
- rv = ldap_err2string(err);
- }
- else {
- rv = "internal error - unknown error code";
- }
- break;
- }
- return rv;
- }
|