123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283 |
- /** 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
- /*
- * Description (aclerror.c)
- *
- * This module provides error-handling facilities for ACL-related
- * errors.
- */
- #include "base/systems.h"
- #include "public/nsapi.h"
- #include "prprf.h"
- #include "prlog.h"
- #include "libaccess/nserror.h"
- #include "libaccess/nsautherr.h"
- #include "libaccess/aclerror.h"
- #include <libaccess/dbtlibaccess.h>
- #include <libaccess/aclerror.h>
- #define aclerrnomem XP_GetAdminStr(DBT_AclerrfmtAclerrnomem)
- #define aclerropen XP_GetAdminStr(DBT_AclerrfmtAclerropen)
- #define aclerrdupsym1 XP_GetAdminStr(DBT_AclerrfmtAclerrdupsym1)
- #define aclerrdupsym3 XP_GetAdminStr(DBT_AclerrfmtAclerrdupsym3)
- #define aclerrsyntax XP_GetAdminStr(DBT_AclerrfmtAclerrsyntax)
- #define aclerrundef XP_GetAdminStr(DBT_AclerrfmtAclerrundef)
- #define aclaclundef XP_GetAdminStr(DBT_AclerrfmtAclaclundef)
- #define aclerradb XP_GetAdminStr(DBT_AclerrfmtAclerradb)
- #define aclerrparse1 XP_GetAdminStr(DBT_AclerrfmtAclerrparse1)
- #define aclerrparse2 XP_GetAdminStr(DBT_AclerrfmtAclerrparse2)
- #define aclerrparse3 XP_GetAdminStr(DBT_AclerrfmtAclerrparse3)
- #define aclerrnorlm XP_GetAdminStr(DBT_AclerrfmtAclerrnorlm)
- #define unknownerr XP_GetAdminStr(DBT_AclerrfmtUnknownerr)
- #define aclerrinternal XP_GetAdminStr(DBT_AclerrfmtAclerrinternal)
- #define aclerrinval XP_GetAdminStr(DBT_AclerrfmtAclerrinval)
- #define aclerrfail XP_GetAdminStr(DBT_AclerrfmtAclerrfail)
- #define aclerrio XP_GetAdminStr(DBT_AclerrfmtAclerrio)
- char * NSAuth_Program = "NSAUTH";
- char * ACL_Program = "NSACL"; /* ACL facility name */
- /*
- * Description (aclErrorFmt)
- *
- * This function formats an ACL error message into a buffer provided
- * by the caller. The ACL error information is passed in an error
- * list structure. The caller can indicate how many error frames
- * should be processed. A newline is inserted between messages for
- * different error frames. The error frames on the error list are
- * all freed, regardless of the maximum depth for traceback.
- *
- * Arguments:
- *
- * errp - error frame list pointer
- * msgbuf - pointer to error message buffer
- * maxlen - maximum length of generated message
- * maxdepth - maximum depth for traceback
- */
- void aclErrorFmt(NSErr_t * errp, char * msgbuf, int maxlen, int maxdepth)
- {
- NSEFrame_t * efp; /* error frame pointer */
- int len = 0; /* length of error message text */
- int depth = 0; /* current depth */
- msgbuf[0] = 0;
- while ((efp = errp->err_first) != 0) {
- /* Stop if the message buffer is full */
- if (maxlen <= 0) break;
- if (depth > 0) {
- /* Put a newline & tab between error frame messages */
- *msgbuf++ = '\n';
- if (--maxlen <= 0) break;
- *msgbuf++ = '\t';
- if (--maxlen <= 0) break;
- }
- if (!strcmp(efp->ef_program, ACL_Program)) {
- /* Identify the facility generating the error and the id number */
- len = PR_snprintf(msgbuf, maxlen,
- "[%s%d] ", efp->ef_program, efp->ef_errorid);
- msgbuf += len;
- maxlen -= len;
- if (maxlen <= 0) break;
- len = 0;
- switch (efp->ef_retcode) {
- case ACLERRFAIL:
- case ACLERRNOMEM:
- case ACLERRINTERNAL:
- case ACLERRINVAL:
- switch (efp->ef_errc) {
- case 3:
- PR_snprintf(msgbuf, maxlen, efp->ef_errv[0], efp->ef_errv[1], efp->ef_errv[2]);
- break;
- case 2:
- PR_snprintf(msgbuf, maxlen, efp->ef_errv[0], efp->ef_errv[1]);
- break;
- case 1:
- strncpy(msgbuf, efp->ef_errv[0], maxlen);
- break;
- default:
- PR_ASSERT(0); /* don't break -- continue into case 0 */
- case 0:
- switch (efp->ef_retcode) {
- case ACLERRFAIL:
- strncpy(msgbuf, XP_GetAdminStr(DBT_AclerrfmtAclerrfail), maxlen);
- break;
- case ACLERRNOMEM:
- strncpy(msgbuf, aclerrnomem, maxlen);
- break;
- case ACLERRINTERNAL:
- strncpy(msgbuf, aclerrinternal, maxlen);
- break;
- case ACLERRINVAL:
- strncpy(msgbuf, aclerrinval, maxlen);
- break;
- }
- break;
- }
- msgbuf[maxlen-1] = '\0';
- len = strlen(msgbuf);
- break;
- case ACLERROPEN:
- /* File open error: filename, system_errmsg */
- if (efp->ef_errc == 2) {
- len = PR_snprintf(msgbuf, maxlen, aclerropen,
- efp->ef_errv[0], efp->ef_errv[1]);
- }
- break;
- case ACLERRDUPSYM:
- /* Duplicate symbol */
- if (efp->ef_errc == 1) {
- /* Duplicate symbol: filename, line#, symbol */
- len = PR_snprintf(msgbuf, maxlen, aclerrdupsym1,
- efp->ef_errv[0]);
- }
- else if (efp->ef_errc == 3) {
- /* Duplicate symbol: symbol */
- len = PR_snprintf(msgbuf, maxlen, aclerrdupsym3,
- efp->ef_errv[0], efp->ef_errv[1],
- efp->ef_errv[2]);
- }
- break;
- case ACLERRSYNTAX:
- if (efp->ef_errc == 2) {
- /* Syntax error: filename, line# */
- len = PR_snprintf(msgbuf, maxlen, aclerrsyntax,
- efp->ef_errv[0], efp->ef_errv[1]);
- }
- break;
- case ACLERRUNDEF:
- if (efp->ef_errorid == ACLERR3800) {
- /* Undefined symbol: acl, method/database name */
- len = PR_snprintf(msgbuf, maxlen, aclaclundef,
- efp->ef_errv[0], efp->ef_errv[1],
- efp->ef_errv[2]);
- }
- else if (efp->ef_errc == 3) {
- /* Undefined symbol: filename, line#, symbol */
- len = PR_snprintf(msgbuf, maxlen, aclerrundef,
- efp->ef_errv[0], efp->ef_errv[1],
- efp->ef_errv[2]);
- }
- break;
- case ACLERRADB:
- if (efp->ef_errc == 2) {
- /* Authentication database error: DB name, symbol */
- len = PR_snprintf(msgbuf, maxlen, aclerradb,
- efp->ef_errv[0], efp->ef_errv[1]);
- }
- break;
- case ACLERRPARSE:
- if (efp->ef_errc == 2) {
- /* Parse error: filename, line# */
- len = PR_snprintf(msgbuf, maxlen, aclerrparse2,
- efp->ef_errv[0], efp->ef_errv[1]);
- }
- else if (efp->ef_errc == 3) {
- /* Parse error: filename, line#, token */
- len = PR_snprintf(msgbuf, maxlen, aclerrparse3,
- efp->ef_errv[0], efp->ef_errv[1],
- efp->ef_errv[2]);
- }
- else if (efp->ef_errc == 1) {
- /* Parse error: line or pointer */
- len = PR_snprintf(msgbuf, maxlen, aclerrparse1,
- efp->ef_errv[0]);
- }
- break;
- case ACLERRNORLM:
- if (efp->ef_errc == 1) {
- /* No realm: name */
- len = PR_snprintf(msgbuf, maxlen, aclerrnorlm,
- efp->ef_errv[0]);
- }
- break;
- case ACLERRIO:
- if (efp->ef_errc == 2) {
- len = PR_snprintf(msgbuf, maxlen, aclerrio,
- efp->ef_errv[0], efp->ef_errv[1]);
- }
- break;
- default:
- len = PR_snprintf(msgbuf, maxlen, unknownerr, efp->ef_retcode);
- break;
- }
- }
- else if (!strcmp(efp->ef_program, NSAuth_Program)) {
- nsadbErrorFmt(errp, msgbuf, maxlen, maxdepth - depth);
- }
- else {
- len = PR_snprintf(msgbuf, maxlen, unknownerr, efp->ef_retcode);
- }
- msgbuf += len;
- maxlen -= len;
- /* Free this frame */
- nserrFFree(errp, efp);
- if (++depth >= maxdepth) break;
- }
- /* Free any remaining error frames */
- nserrDispose(errp);
- }
|