| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220 |
- /** 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
- #ifndef ACL_LAS_HEADER
- #define ACL_LAS_HEADER
- #ifndef NOINTNSACL
- #define INTNSACL
- #endif /* !NOINTNSACL */
- /* #include <prhash.h> */
- #include <plhash.h>
- #include <prclist.h>
- #include <base/plist.h>
- #include <libaccess/nserror.h>
- #include <libaccess/acl.h>
- #ifndef PUBLIC_NSACL_ACLDEF_H
- #include "public/nsacl/acldef.h"
- #endif /* !PUBLIC_NSACL_ACLDEF_H */
- #define ACL_MAX_METHOD 32
- #define ACL_MAX_DBTYPE 32
- struct ACLAttrGetter {
- PRCList list; /* must be first */
- ACLMethod_t method;
- ACLDbType_t dbtype;
- ACLAttrGetterFn_t fn;
- void *arg;
- };
- NSPR_BEGIN_EXTERN_C
- NSAPI_PUBLIC extern int
- ACL_LasRegister(NSErr_t *errp, char *attr_name, LASEvalFunc_t
- eval_func, LASFlushFunc_t flush_func);
- NSAPI_PUBLIC extern int
- ACL_LasFindEval(NSErr_t *errp, char *attr_name, LASEvalFunc_t
- *eval_funcp);
- NSAPI_PUBLIC extern int
- ACL_LasFindFlush(NSErr_t *errp, char *attr_name, LASFlushFunc_t
- *flush_funcp);
- extern void
- ACL_LasHashInit(void);
- extern void
- ACL_LasHashDestroy(void);
- /*
- * Revised, normalized method/dbtype registration routines
- */
- NSAPI_PUBLIC extern int
- ACL_MethodRegister(NSErr_t *errp, const char *name, ACLMethod_t *t);
- NSAPI_PUBLIC extern int
- ACL_MethodIsEqual(NSErr_t *errp, const ACLMethod_t t1, const ACLMethod_t t2);
- NSAPI_PUBLIC extern int
- ACL_MethodNameIsEqual(NSErr_t *errp, const ACLMethod_t t, const char *name);
- NSAPI_PUBLIC extern int
- ACL_MethodFind(NSErr_t *errp, const char *name, ACLMethod_t *t);
- NSAPI_PUBLIC extern ACLMethod_t
- ACL_MethodGetDefault(NSErr_t *errp);
- NSAPI_PUBLIC extern int
- ACL_MethodSetDefault(NSErr_t *errp, const ACLMethod_t t);
- NSAPI_PUBLIC extern int
- ACL_AuthInfoGetMethod(NSErr_t *errp, PList_t auth_info, ACLMethod_t *t);
- NSAPI_PUBLIC extern int
- ACL_AuthInfoSetMethod(NSErr_t *errp, PList_t auth_info, ACLMethod_t t);
- NSAPI_PUBLIC extern int
- ACL_DbTypeRegister(NSErr_t *errp, const char *name, DbParseFn_t func, ACLDbType_t *t);
- NSAPI_PUBLIC extern int
- ACL_DbTypeIsEqual(NSErr_t *errp, const ACLDbType_t t1, const ACLDbType_t t2);
- NSAPI_PUBLIC extern int
- ACL_DbTypeNameIsEqual(NSErr_t *errp, const ACLDbType_t t, const char *name);
- NSAPI_PUBLIC extern int
- ACL_DbTypeFind(NSErr_t *errp, const char *name, ACLDbType_t *t);
- NSAPI_PUBLIC extern ACLDbType_t
- ACL_DbTypeGetDefault(NSErr_t *errp);
- NSAPI_PUBLIC extern const char *
- ACL_DatabaseGetDefault(NSErr_t *errp);
- NSAPI_PUBLIC extern int
- ACL_DatabaseSetDefault(NSErr_t *errp, const char *dbname);
- NSAPI_PUBLIC extern int
- ACL_AuthInfoGetDbType(NSErr_t *errp, PList_t auth_info, ACLDbType_t *t);
- NSAPI_PUBLIC extern int
- ACL_DbTypeIsRegistered(NSErr_t *errp, const ACLDbType_t dbtype);
- NSAPI_PUBLIC extern int
- ACL_AttrGetterRegister(NSErr_t *errp, const char *attr,
- ACLAttrGetterFn_t fn, ACLMethod_t m,
- ACLDbType_t d, int position, void *arg);
- extern ACLDbType_t ACL_DbTypeLdap;
- NSAPI_PUBLIC extern int
- ACL_DbTypeSetDefault(NSErr_t *errp, ACLDbType_t t);
- NSAPI_PUBLIC extern DbParseFn_t
- ACL_DbTypeParseFn(NSErr_t *errp, const ACLDbType_t dbtype);
- NSAPI_PUBLIC extern int
- ACL_AttrGetterFind(NSErr_t *errp, const char *attr,
- ACLAttrGetterList_t *getters);
- NSAPI_PUBLIC extern ACLAttrGetter_t *
- ACL_AttrGetterFirst(ACLAttrGetterList_t *getters);
- NSAPI_PUBLIC extern ACLAttrGetter_t *
- ACL_AttrGetterNext(ACLAttrGetterList_t *getters,
- ACLAttrGetter_t *last);
- /* typedef PRHashTable AttrGetterTable_t; */
- typedef PLHashTable AttrGetterTable_t;
- typedef struct {
- char *method;
- char *authtype;
- char *dbtype;
- AttrGetterTable_t *attrGetters;
- } MethodInfo_t;
- NSAPI_PUBLIC int ACL_ModuleRegister (NSErr_t *errp, const char *moduleName, AclModuleInitFunc func);
- NSAPI_PUBLIC int ACL_GetAttribute(NSErr_t *errp, const char *attr, void **val, PList_t subject, PList_t resource, PList_t auth_info, PList_t global_auth);
- NSAPI_PUBLIC int ACL_DatabaseRegister(NSErr_t *errp, ACLDbType_t dbtype, const char *dbname, const char *url, PList_t plist);
- NSAPI_PUBLIC int ACL_RegisterDbFromACL(NSErr_t *errp, const char *url, ACLDbType_t *dbtype);
- NSAPI_PUBLIC int ACL_DatabaseFind(NSErr_t *errp, const char *dbname,
- ACLDbType_t *dbtype, void **db);
- NSAPI_PUBLIC int ACL_LDAPDatabaseHandle (NSErr_t *errp,
- const char *dbname, LDAP **ld,
- char **basedn);
- NSAPI_PUBLIC int ACL_AuthInfoGetDbname (PList_t auth_info, char **dbname);
- NSAPI_PUBLIC int ACL_AuthInfoSetDbname (NSErr_t *errp, PList_t auth_info,
- const char *dbname);
- NSAPI_PUBLIC int ACL_CacheFlushRegister(AclCacheFlushFunc_t func);
- NSAPI_PUBLIC int ACL_SetDefaultResult (NSErr_t *errp,
- ACLEvalHandle_t *acleval,
- int result);
- NSAPI_PUBLIC int ACL_GetDefaultResult (ACLEvalHandle_t *acleval);
- struct program_groups {
- char *type;
- char **groups;
- char **programs;
- };
- extern int LASTimeOfDayEval(NSErr_t *errp, char *attribute, CmpOp_t comparator,
- char *pattern, ACLCachable_t *cachable, void **las_cookie,
- PList_t subject, PList_t resource, PList_t auth_info,
- PList_t global_auth);
- extern int LASDayOfWeekEval(NSErr_t *errp, char *attribute, CmpOp_t comparator,
- char *pattern, ACLCachable_t *cachable, void **las_cookie,
- PList_t subject, PList_t resource, PList_t auth_info,
- PList_t global_auth);
- extern int LASIpEval(NSErr_t *errp, char *attribute, CmpOp_t comparator,
- char *pattern, ACLCachable_t *cachable, void **las_cookie,
- PList_t subject, PList_t resource, PList_t auth_info,
- PList_t global_auth);
- extern int LASDnsEval(NSErr_t *errp, char *attribute, CmpOp_t comparator,
- char *pattern, ACLCachable_t *cachable, void **las_cookie,
- PList_t subject, PList_t resource, PList_t auth_info,
- PList_t global_auth);
- extern int LASGroupEval(NSErr_t *errp, char *attribute, CmpOp_t comparator,
- char *pattern, ACLCachable_t *cachable, void **las_cookie,
- PList_t subject, PList_t resource, PList_t auth_info,
- PList_t global_auth);
- extern int LASUserEval(NSErr_t *errp, char *attribute, CmpOp_t comparator,
- char *pattern, ACLCachable_t *cachable, void **las_cookie,
- PList_t subject, PList_t resource, PList_t auth_info,
- PList_t global_auth);
- extern int LASProgramEval(NSErr_t *errp, char *attribute, CmpOp_t comparator,
- char *pattern, ACLCachable_t *cachable, void **las_cookie,
- PList_t subject, PList_t resource, PList_t auth_info,
- PList_t global_auth);
- extern void LASTimeOfDayFlush(void **cookie);
- extern void LASDayOfWeekFlush(void **cookie);
- extern void LASIpFlush(void **cookie);
- extern void LASDnsFlush(void **cookie);
- NSPR_END_EXTERN_C
- #endif /* ACL_LAS_HEADER */
|