1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65
|
/** BEGIN COPYRIGHT BLOCK
* Copyright (C) 2001 Sun Microsystems, Inc. Used by permission.
* Copyright (C) 2005 Red Hat, Inc.
* All rights reserved.
*
* License: GPL (version 3 or any later version).
* See LICENSE for details.
* END COPYRIGHT BLOCK **/
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include "cb.h"
/*
** generic function to send back results
** Turn off acl eval on front-end when needed
*/
void
cb_set_acl_policy(Slapi_PBlock *pb)
{
Slapi_Backend *be;
cb_backend_instance *cb;
int noacl;
slapi_pblock_get(pb, SLAPI_BACKEND, &be);
cb = cb_get_instance(be);
/* disable acl checking if the local_acl flag is not set
or if the associated backend is disabled */
noacl = !(cb->local_acl) || cb->associated_be_is_disabled;
/* Be very conservative about acl evaluation */
slapi_pblock_set(pb, SLAPI_PLUGIN_DB_NO_ACL, &noacl);
}
int
cb_access_allowed(
Slapi_PBlock *pb,
Slapi_Entry *e, /* The Slapi_Entry */
char *attr, /* Attribute of the entry */
struct berval *val, /* value of attr. NOT USED */
int access, /* access rights */
char **errbuf __attribute__((unused)))
{
switch (access) {
case SLAPI_ACL_ADD:
case SLAPI_ACL_DELETE:
case SLAPI_ACL_COMPARE:
case SLAPI_ACL_WRITE:
case SLAPI_ACL_PROXY:
/* Keep in mind some entries are NOT */
/* available for acl evaluation */
return slapi_access_allowed(pb, e, attr, val, access);
default:
return LDAP_INSUFFICIENT_ACCESS;
}
}
|