2000-02-15 04:57:34 +08:00
|
|
|
/* aclparse.c - routines to parse and check acl's */
|
1999-09-09 03:06:24 +08:00
|
|
|
/* $OpenLDAP$ */
|
2003-11-27 09:17:14 +08:00
|
|
|
/* This work is part of OpenLDAP Software <http://www.openldap.org/>.
|
|
|
|
*
|
2005-01-02 04:49:32 +08:00
|
|
|
* Copyright 1998-2005 The OpenLDAP Foundation.
|
2003-11-27 09:17:14 +08:00
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted only as authorized by the OpenLDAP
|
|
|
|
* Public License.
|
|
|
|
*
|
|
|
|
* A copy of this license is available in the file LICENSE in the
|
|
|
|
* top-level directory of the distribution or, alternatively, at
|
|
|
|
* <http://www.OpenLDAP.org/license.html>.
|
|
|
|
*/
|
|
|
|
/* Portions Copyright (c) 1995 Regents of the University of Michigan.
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms are permitted
|
|
|
|
* provided that this notice is preserved and that due credit is given
|
|
|
|
* to the University of Michigan at Ann Arbor. The name of the University
|
|
|
|
* may not be used to endorse or promote products derived from this
|
|
|
|
* software without specific prior written permission. This software
|
|
|
|
* is provided ``as is'' without express or implied warranty.
|
1999-08-07 07:07:46 +08:00
|
|
|
*/
|
1998-08-09 08:43:13 +08:00
|
|
|
|
1998-10-25 09:41:42 +08:00
|
|
|
#include "portable.h"
|
1998-08-09 08:43:13 +08:00
|
|
|
|
|
|
|
#include <stdio.h>
|
1998-10-25 09:41:42 +08:00
|
|
|
|
|
|
|
#include <ac/ctype.h>
|
|
|
|
#include <ac/regex.h>
|
|
|
|
#include <ac/socket.h>
|
|
|
|
#include <ac/string.h>
|
|
|
|
#include <ac/unistd.h>
|
1998-08-21 14:33:42 +08:00
|
|
|
|
1998-08-09 08:43:13 +08:00
|
|
|
#include "slap.h"
|
2002-04-02 16:18:30 +08:00
|
|
|
#include "lber_pvt.h"
|
2002-08-06 10:36:34 +08:00
|
|
|
#include "lutil.h"
|
1998-08-09 08:43:13 +08:00
|
|
|
|
2005-05-10 08:51:28 +08:00
|
|
|
static const char style_base[] = "base";
|
2005-07-04 14:25:02 +08:00
|
|
|
char *style_strings[] = {
|
2004-03-09 02:49:12 +08:00
|
|
|
"regex",
|
2004-03-10 00:33:05 +08:00
|
|
|
"expand",
|
2005-05-10 08:51:28 +08:00
|
|
|
"exact",
|
2004-03-09 02:49:12 +08:00
|
|
|
"one",
|
|
|
|
"subtree",
|
|
|
|
"children",
|
2005-04-01 02:10:11 +08:00
|
|
|
"level",
|
2004-03-09 02:49:12 +08:00
|
|
|
"attrof",
|
2005-04-01 02:10:11 +08:00
|
|
|
"anonymous",
|
|
|
|
"users",
|
|
|
|
"self",
|
2004-03-09 02:49:12 +08:00
|
|
|
"ip",
|
|
|
|
"path",
|
|
|
|
NULL
|
|
|
|
};
|
2003-12-16 18:56:21 +08:00
|
|
|
|
Protoized, moved extern definitions to .h files, fixed related bugs.
Most function and variable definitions are now preceded by its extern
definition, for error checking. Retyped a number of functions, usually
to return void. Fixed a number of printf format errors.
API changes (in ldap/include):
Added avl_dup_ok, avl_prefixapply, removed ber_fatten (probably typo
for ber_flatten), retyped ldap_sort_strcasecmp, grew lutil.h.
A number of `extern' declarations are left (some added by protoize), to
be cleaned away later. Mostly strdup(), strcasecmp(), mktemp(), optind,
optarg, errno.
1998-11-16 06:40:11 +08:00
|
|
|
static void split(char *line, int splitchar, char **left, char **right);
|
1999-07-20 03:40:33 +08:00
|
|
|
static void access_append(Access **l, Access *a);
|
1999-09-04 05:06:33 +08:00
|
|
|
static void acl_usage(void) LDAP_GCCATTR((noreturn));
|
1999-10-22 01:53:56 +08:00
|
|
|
|
2002-04-16 04:44:05 +08:00
|
|
|
static void acl_regex_normalized_dn(const char *src, struct berval *pat);
|
2001-11-12 19:29:40 +08:00
|
|
|
|
1998-08-09 08:43:13 +08:00
|
|
|
#ifdef LDAP_DEBUG
|
1999-10-22 01:53:56 +08:00
|
|
|
static void print_acl(Backend *be, AccessControl *a);
|
1998-08-09 08:43:13 +08:00
|
|
|
#endif
|
|
|
|
|
2005-01-08 13:26:18 +08:00
|
|
|
static int check_scope( BackendDB *be, AccessControl *a );
|
2004-04-21 03:16:21 +08:00
|
|
|
|
2004-11-20 09:27:03 +08:00
|
|
|
#ifdef SLAP_DYNACL
|
|
|
|
static int
|
|
|
|
slap_dynacl_config( const char *fname, int lineno, Access *b, const char *name, slap_style_t sty, const char *right )
|
|
|
|
{
|
|
|
|
slap_dynacl_t *da, *tmp;
|
|
|
|
int rc = 0;
|
|
|
|
|
|
|
|
for ( da = b->a_dynacl; da; da = da->da_next ) {
|
|
|
|
if ( strcasecmp( da->da_name, name ) == 0 ) {
|
|
|
|
fprintf( stderr,
|
|
|
|
"%s: line %d: dynacl \"%s\" already specified.\n",
|
|
|
|
fname, lineno, name );
|
|
|
|
acl_usage();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
da = slap_dynacl_get( name );
|
|
|
|
if ( da == NULL ) {
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
tmp = ch_malloc( sizeof( slap_dynacl_t ) );
|
|
|
|
*tmp = *da;
|
|
|
|
|
|
|
|
if ( tmp->da_parse ) {
|
|
|
|
rc = ( *tmp->da_parse )( fname, lineno, sty, right, &tmp->da_private );
|
|
|
|
if ( rc ) {
|
|
|
|
ch_free( tmp );
|
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
tmp->da_next = b->a_dynacl;
|
|
|
|
b->a_dynacl = tmp;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
#endif /* SLAP_DYNACL */
|
|
|
|
|
2002-04-16 04:44:05 +08:00
|
|
|
static void
|
1999-08-21 03:00:44 +08:00
|
|
|
regtest(const char *fname, int lineno, char *pat) {
|
1998-08-21 14:33:42 +08:00
|
|
|
int e;
|
|
|
|
regex_t re;
|
|
|
|
|
|
|
|
char buf[512];
|
Protoized, moved extern definitions to .h files, fixed related bugs.
Most function and variable definitions are now preceded by its extern
definition, for error checking. Retyped a number of functions, usually
to return void. Fixed a number of printf format errors.
API changes (in ldap/include):
Added avl_dup_ok, avl_prefixapply, removed ber_fatten (probably typo
for ber_flatten), retyped ldap_sort_strcasecmp, grew lutil.h.
A number of `extern' declarations are left (some added by protoize), to
be cleaned away later. Mostly strdup(), strcasecmp(), mktemp(), optind,
optarg, errno.
1998-11-16 06:40:11 +08:00
|
|
|
unsigned size;
|
1998-08-21 14:33:42 +08:00
|
|
|
|
|
|
|
char *sp;
|
|
|
|
char *dp;
|
|
|
|
int flag;
|
|
|
|
|
|
|
|
sp = pat;
|
|
|
|
dp = buf;
|
|
|
|
size = 0;
|
|
|
|
buf[0] = '\0';
|
|
|
|
|
|
|
|
for (size = 0, flag = 0; (size < sizeof(buf)) && *sp; sp++) {
|
|
|
|
if (flag) {
|
|
|
|
if (*sp == '$'|| (*sp >= '0' && *sp <= '9')) {
|
|
|
|
*dp++ = *sp;
|
|
|
|
size++;
|
|
|
|
}
|
|
|
|
flag = 0;
|
|
|
|
|
|
|
|
} else {
|
|
|
|
if (*sp == '$') {
|
|
|
|
flag = 1;
|
|
|
|
} else {
|
|
|
|
*dp++ = *sp;
|
|
|
|
size++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
*dp = '\0';
|
2004-10-07 06:03:33 +08:00
|
|
|
if ( size >= (sizeof(buf) - 1) ) {
|
1998-08-21 14:33:42 +08:00
|
|
|
fprintf( stderr,
|
|
|
|
"%s: line %d: regular expression \"%s\" too large\n",
|
1999-08-29 08:26:44 +08:00
|
|
|
fname, lineno, pat );
|
1998-08-21 14:33:42 +08:00
|
|
|
acl_usage();
|
|
|
|
}
|
|
|
|
|
|
|
|
if ((e = regcomp(&re, buf, REG_EXTENDED|REG_ICASE))) {
|
|
|
|
char error[512];
|
|
|
|
regerror(e, &re, error, sizeof(error));
|
|
|
|
fprintf( stderr,
|
|
|
|
"%s: line %d: regular expression \"%s\" bad because of %s\n",
|
|
|
|
fname, lineno, pat, error );
|
|
|
|
acl_usage();
|
|
|
|
}
|
|
|
|
regfree(&re);
|
|
|
|
}
|
|
|
|
|
2004-04-21 03:16:21 +08:00
|
|
|
/*
|
|
|
|
* Experimental
|
|
|
|
*
|
|
|
|
* Check if the pattern of an ACL, if any, matches the scope
|
|
|
|
* of the backend it is defined within.
|
|
|
|
*/
|
|
|
|
#define ACL_SCOPE_UNKNOWN (-2)
|
|
|
|
#define ACL_SCOPE_ERR (-1)
|
|
|
|
#define ACL_SCOPE_OK (0)
|
|
|
|
#define ACL_SCOPE_PARTIAL (1)
|
|
|
|
#define ACL_SCOPE_WARN (2)
|
|
|
|
|
|
|
|
static int
|
|
|
|
check_scope( BackendDB *be, AccessControl *a )
|
|
|
|
{
|
|
|
|
int patlen;
|
|
|
|
struct berval dn;
|
|
|
|
|
2004-06-28 14:42:00 +08:00
|
|
|
dn = be->be_nsuffix[0];
|
2004-04-21 03:16:21 +08:00
|
|
|
|
2005-01-12 08:53:50 +08:00
|
|
|
if ( BER_BVISEMPTY( &dn ) ) {
|
|
|
|
return ACL_SCOPE_OK;
|
|
|
|
}
|
|
|
|
|
2004-11-16 06:15:28 +08:00
|
|
|
if ( !BER_BVISEMPTY( &a->acl_dn_pat ) ||
|
|
|
|
a->acl_dn_style != ACL_STYLE_REGEX )
|
|
|
|
{
|
2004-04-21 03:16:21 +08:00
|
|
|
slap_style_t style = a->acl_dn_style;
|
|
|
|
|
|
|
|
if ( style == ACL_STYLE_REGEX ) {
|
2004-12-01 06:50:07 +08:00
|
|
|
char dnbuf[SLAP_LDAPDN_MAXLEN + 2];
|
|
|
|
char rebuf[SLAP_LDAPDN_MAXLEN + 1];
|
|
|
|
ber_len_t rebuflen;
|
|
|
|
regex_t re;
|
|
|
|
int rc;
|
2004-04-21 03:16:21 +08:00
|
|
|
|
2004-12-01 06:50:07 +08:00
|
|
|
/* add trailing '$' to database suffix to form
|
|
|
|
* a simple trial regex pattern "<suffix>$" */
|
2004-06-28 14:42:00 +08:00
|
|
|
AC_MEMCPY( dnbuf, be->be_nsuffix[0].bv_val,
|
|
|
|
be->be_nsuffix[0].bv_len );
|
|
|
|
dnbuf[be->be_nsuffix[0].bv_len] = '$';
|
|
|
|
dnbuf[be->be_nsuffix[0].bv_len + 1] = '\0';
|
2004-04-21 03:16:21 +08:00
|
|
|
|
|
|
|
if ( regcomp( &re, dnbuf, REG_EXTENDED|REG_ICASE ) ) {
|
|
|
|
return ACL_SCOPE_WARN;
|
|
|
|
}
|
|
|
|
|
2004-12-01 06:50:07 +08:00
|
|
|
/* remove trailing ')$', if any, from original
|
|
|
|
* regex pattern */
|
|
|
|
rebuflen = a->acl_dn_pat.bv_len;
|
|
|
|
AC_MEMCPY( rebuf, a->acl_dn_pat.bv_val, rebuflen + 1 );
|
|
|
|
if ( rebuf[rebuflen - 1] == '$' ) {
|
|
|
|
rebuf[--rebuflen] = '\0';
|
|
|
|
}
|
|
|
|
while ( rebuflen > be->be_nsuffix[0].bv_len && rebuf[rebuflen - 1] == ')' ) {
|
|
|
|
rebuf[--rebuflen] = '\0';
|
|
|
|
}
|
|
|
|
if ( rebuflen == be->be_nsuffix[0].bv_len ) {
|
|
|
|
rc = ACL_SCOPE_WARN;
|
|
|
|
goto regex_done;
|
2004-04-21 03:16:21 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/* not a clear indication of scoping error, though */
|
|
|
|
rc = regexec( &re, rebuf, 0, NULL, 0 )
|
|
|
|
? ACL_SCOPE_WARN : ACL_SCOPE_OK;
|
|
|
|
|
2004-12-01 06:50:07 +08:00
|
|
|
regex_done:;
|
2004-04-21 03:16:21 +08:00
|
|
|
regfree( &re );
|
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
|
|
|
|
patlen = a->acl_dn_pat.bv_len;
|
|
|
|
/* If backend suffix is longer than pattern,
|
|
|
|
* it is a potential mismatch (in the sense
|
|
|
|
* that a superior naming context could
|
|
|
|
* match */
|
|
|
|
if ( dn.bv_len > patlen ) {
|
|
|
|
/* base is blatantly wrong */
|
2004-06-28 14:42:00 +08:00
|
|
|
if ( style == ACL_STYLE_BASE ) return ACL_SCOPE_ERR;
|
2004-04-21 03:16:21 +08:00
|
|
|
|
2004-12-01 06:50:07 +08:00
|
|
|
/* a style of one can be wrong if there is
|
|
|
|
* more than one level between the suffix
|
2004-04-21 03:16:21 +08:00
|
|
|
* and the pattern */
|
|
|
|
if ( style == ACL_STYLE_ONE ) {
|
|
|
|
int rdnlen = -1, sep = 0;
|
|
|
|
|
|
|
|
if ( patlen > 0 ) {
|
2004-06-28 14:42:00 +08:00
|
|
|
if ( !DN_SEPARATOR( dn.bv_val[dn.bv_len - patlen - 1] )) {
|
2004-04-21 03:16:21 +08:00
|
|
|
return ACL_SCOPE_ERR;
|
2004-06-28 14:42:00 +08:00
|
|
|
}
|
2004-04-21 03:16:21 +08:00
|
|
|
sep = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
rdnlen = dn_rdnlen( NULL, &dn );
|
|
|
|
if ( rdnlen != dn.bv_len - patlen - sep )
|
|
|
|
return ACL_SCOPE_ERR;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* if the trailing part doesn't match,
|
|
|
|
* then it's an error */
|
2004-06-28 14:42:00 +08:00
|
|
|
if ( strcmp( a->acl_dn_pat.bv_val,
|
|
|
|
&dn.bv_val[dn.bv_len - patlen] ) != 0 )
|
|
|
|
{
|
2004-04-21 03:16:21 +08:00
|
|
|
return ACL_SCOPE_ERR;
|
|
|
|
}
|
|
|
|
|
|
|
|
return ACL_SCOPE_PARTIAL;
|
|
|
|
}
|
|
|
|
|
|
|
|
switch ( style ) {
|
|
|
|
case ACL_STYLE_BASE:
|
|
|
|
case ACL_STYLE_ONE:
|
|
|
|
case ACL_STYLE_CHILDREN:
|
|
|
|
case ACL_STYLE_SUBTREE:
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
assert( 0 );
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2004-06-28 14:42:00 +08:00
|
|
|
if ( dn.bv_len < patlen &&
|
2004-11-16 06:15:28 +08:00
|
|
|
!DN_SEPARATOR( a->acl_dn_pat.bv_val[patlen - dn.bv_len - 1] ))
|
|
|
|
{
|
2004-04-21 03:16:21 +08:00
|
|
|
return ACL_SCOPE_ERR;
|
|
|
|
}
|
|
|
|
|
2004-06-28 14:42:00 +08:00
|
|
|
if ( strcmp( &a->acl_dn_pat.bv_val[patlen - dn.bv_len], dn.bv_val )
|
|
|
|
!= 0 )
|
|
|
|
{
|
2004-04-21 03:16:21 +08:00
|
|
|
return ACL_SCOPE_ERR;
|
|
|
|
}
|
|
|
|
|
|
|
|
return ACL_SCOPE_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
return ACL_SCOPE_UNKNOWN;
|
|
|
|
}
|
|
|
|
|
1998-08-09 08:43:13 +08:00
|
|
|
void
|
|
|
|
parse_acl(
|
|
|
|
Backend *be,
|
1999-08-21 03:00:44 +08:00
|
|
|
const char *fname,
|
1998-08-09 08:43:13 +08:00
|
|
|
int lineno,
|
|
|
|
int argc,
|
2005-04-20 00:39:48 +08:00
|
|
|
char **argv,
|
|
|
|
int pos )
|
1998-08-09 08:43:13 +08:00
|
|
|
{
|
|
|
|
int i;
|
2004-06-18 17:11:53 +08:00
|
|
|
char *left, *right, *style, *next;
|
2001-12-26 12:17:49 +08:00
|
|
|
struct berval bv;
|
1999-07-20 03:40:33 +08:00
|
|
|
AccessControl *a;
|
|
|
|
Access *b;
|
2000-02-15 04:57:34 +08:00
|
|
|
int rc;
|
2000-05-22 11:46:57 +08:00
|
|
|
const char *text;
|
1998-08-09 08:43:13 +08:00
|
|
|
|
|
|
|
a = NULL;
|
|
|
|
for ( i = 1; i < argc; i++ ) {
|
|
|
|
/* to clause - select which entries are protected */
|
|
|
|
if ( strcasecmp( argv[i], "to" ) == 0 ) {
|
|
|
|
if ( a != NULL ) {
|
2003-05-30 13:24:39 +08:00
|
|
|
fprintf( stderr, "%s: line %d: "
|
|
|
|
"only one to clause allowed in access line\n",
|
1998-08-09 08:43:13 +08:00
|
|
|
fname, lineno );
|
|
|
|
acl_usage();
|
|
|
|
}
|
1999-07-20 03:40:33 +08:00
|
|
|
a = (AccessControl *) ch_calloc( 1, sizeof(AccessControl) );
|
1998-08-09 08:43:13 +08:00
|
|
|
for ( ++i; i < argc; i++ ) {
|
|
|
|
if ( strcasecmp( argv[i], "by" ) == 0 ) {
|
|
|
|
i--;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
1999-04-02 11:45:33 +08:00
|
|
|
if ( strcasecmp( argv[i], "*" ) == 0 ) {
|
2004-11-16 06:15:28 +08:00
|
|
|
if ( !BER_BVISEMPTY( &a->acl_dn_pat ) ||
|
|
|
|
a->acl_dn_style != ACL_STYLE_REGEX )
|
2002-07-11 09:45:22 +08:00
|
|
|
{
|
1999-10-26 11:19:41 +08:00
|
|
|
fprintf( stderr,
|
|
|
|
"%s: line %d: dn pattern"
|
|
|
|
" already specified in to clause.\n",
|
|
|
|
fname, lineno );
|
|
|
|
acl_usage();
|
|
|
|
}
|
|
|
|
|
2004-11-16 06:15:28 +08:00
|
|
|
ber_str2bv( "*", STRLENOF( "*" ), 1, &a->acl_dn_pat );
|
1998-08-09 08:43:13 +08:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
split( argv[i], '=', &left, &right );
|
2000-06-12 09:35:15 +08:00
|
|
|
split( left, '.', &left, &style );
|
|
|
|
|
2001-09-01 13:01:31 +08:00
|
|
|
if ( right == NULL ) {
|
2003-05-30 13:24:39 +08:00
|
|
|
fprintf( stderr, "%s: line %d: "
|
|
|
|
"missing \"=\" in \"%s\" in to clause\n",
|
2000-06-12 09:35:15 +08:00
|
|
|
fname, lineno, left );
|
|
|
|
acl_usage();
|
|
|
|
}
|
1999-10-26 11:19:41 +08:00
|
|
|
|
|
|
|
if ( strcasecmp( left, "dn" ) == 0 ) {
|
2004-11-16 06:15:28 +08:00
|
|
|
if ( !BER_BVISEMPTY( &a->acl_dn_pat ) ||
|
|
|
|
a->acl_dn_style != ACL_STYLE_REGEX )
|
2002-07-11 09:45:22 +08:00
|
|
|
{
|
1999-10-26 11:19:41 +08:00
|
|
|
fprintf( stderr,
|
|
|
|
"%s: line %d: dn pattern"
|
|
|
|
" already specified in to clause.\n",
|
|
|
|
fname, lineno );
|
|
|
|
acl_usage();
|
|
|
|
}
|
|
|
|
|
2003-05-30 13:24:39 +08:00
|
|
|
if ( style == NULL || *style == '\0' ||
|
2004-06-28 14:42:00 +08:00
|
|
|
strcasecmp( style, "baseObject" ) == 0 ||
|
|
|
|
strcasecmp( style, "base" ) == 0 ||
|
|
|
|
strcasecmp( style, "exact" ) == 0 )
|
2003-05-30 13:24:39 +08:00
|
|
|
{
|
|
|
|
a->acl_dn_style = ACL_STYLE_BASE;
|
|
|
|
ber_str2bv( right, 0, 1, &a->acl_dn_pat );
|
|
|
|
|
2004-06-28 14:42:00 +08:00
|
|
|
} else if ( strcasecmp( style, "oneLevel" ) == 0 ||
|
|
|
|
strcasecmp( style, "one" ) == 0 )
|
|
|
|
{
|
2003-05-30 13:24:39 +08:00
|
|
|
a->acl_dn_style = ACL_STYLE_ONE;
|
|
|
|
ber_str2bv( right, 0, 1, &a->acl_dn_pat );
|
|
|
|
|
2004-06-28 14:42:00 +08:00
|
|
|
} else if ( strcasecmp( style, "subtree" ) == 0 ||
|
|
|
|
strcasecmp( style, "sub" ) == 0 )
|
2000-06-12 09:35:15 +08:00
|
|
|
{
|
2003-09-10 10:33:36 +08:00
|
|
|
if( *right == '\0' ) {
|
2004-11-16 06:15:28 +08:00
|
|
|
ber_str2bv( "*", STRLENOF( "*" ), 1, &a->acl_dn_pat );
|
2003-09-10 10:33:36 +08:00
|
|
|
|
|
|
|
} else {
|
|
|
|
a->acl_dn_style = ACL_STYLE_SUBTREE;
|
|
|
|
ber_str2bv( right, 0, 1, &a->acl_dn_pat );
|
|
|
|
}
|
2003-05-30 13:24:39 +08:00
|
|
|
|
|
|
|
} else if ( strcasecmp( style, "children" ) == 0 ) {
|
|
|
|
a->acl_dn_style = ACL_STYLE_CHILDREN;
|
|
|
|
ber_str2bv( right, 0, 1, &a->acl_dn_pat );
|
|
|
|
|
|
|
|
} else if ( strcasecmp( style, "regex" ) == 0 ) {
|
2000-06-12 09:35:15 +08:00
|
|
|
a->acl_dn_style = ACL_STYLE_REGEX;
|
2002-02-09 02:32:12 +08:00
|
|
|
|
|
|
|
if ( *right == '\0' ) {
|
|
|
|
/* empty regex should match empty DN */
|
|
|
|
a->acl_dn_style = ACL_STYLE_BASE;
|
|
|
|
ber_str2bv( right, 0, 1, &a->acl_dn_pat );
|
|
|
|
|
|
|
|
} else if ( strcmp(right, "*") == 0
|
2000-06-12 09:35:15 +08:00
|
|
|
|| strcmp(right, ".*") == 0
|
|
|
|
|| strcmp(right, ".*$") == 0
|
|
|
|
|| strcmp(right, "^.*") == 0
|
2002-04-16 04:44:05 +08:00
|
|
|
|| strcmp(right, "^.*$") == 0
|
2000-06-12 09:35:15 +08:00
|
|
|
|| strcmp(right, ".*$$") == 0
|
|
|
|
|| strcmp(right, "^.*$$") == 0 )
|
|
|
|
{
|
2004-11-16 06:15:28 +08:00
|
|
|
ber_str2bv( "*", STRLENOF("*"), 1, &a->acl_dn_pat );
|
1999-10-26 11:19:41 +08:00
|
|
|
|
2000-06-12 09:35:15 +08:00
|
|
|
} else {
|
2002-04-16 04:44:05 +08:00
|
|
|
acl_regex_normalized_dn( right, &a->acl_dn_pat );
|
2000-06-12 09:35:15 +08:00
|
|
|
}
|
2003-05-30 13:24:39 +08:00
|
|
|
|
2000-06-12 09:35:15 +08:00
|
|
|
} else {
|
2003-05-30 13:24:39 +08:00
|
|
|
fprintf( stderr, "%s: line %d: "
|
|
|
|
"unknown dn style \"%s\" in to clause\n",
|
2000-06-12 09:35:15 +08:00
|
|
|
fname, lineno, style );
|
|
|
|
acl_usage();
|
1999-10-26 11:19:41 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
1998-08-09 08:43:13 +08:00
|
|
|
if ( strcasecmp( left, "filter" ) == 0 ) {
|
2002-07-24 02:35:12 +08:00
|
|
|
if ( (a->acl_filter = str2filter( right )) == NULL ) {
|
1998-08-09 08:43:13 +08:00
|
|
|
fprintf( stderr,
|
|
|
|
"%s: line %d: bad filter \"%s\" in to clause\n",
|
|
|
|
fname, lineno, right );
|
|
|
|
acl_usage();
|
|
|
|
}
|
1999-07-22 04:54:23 +08:00
|
|
|
|
2005-05-03 20:13:16 +08:00
|
|
|
} else if ( strcasecmp( left, "attr" ) == 0 /* TOLERATED */
|
|
|
|
|| strcasecmp( left, "attrs" ) == 0 ) /* DOCUMENTED */
|
|
|
|
{
|
2001-12-31 19:35:52 +08:00
|
|
|
a->acl_attrs = str2anlist( a->acl_attrs,
|
2001-12-26 16:17:44 +08:00
|
|
|
right, "," );
|
2002-01-10 17:54:14 +08:00
|
|
|
if ( a->acl_attrs == NULL ) {
|
|
|
|
fprintf( stderr,
|
|
|
|
"%s: line %d: unknown attr \"%s\" in to clause\n",
|
|
|
|
fname, lineno, right );
|
|
|
|
acl_usage();
|
|
|
|
}
|
2003-05-30 13:24:39 +08:00
|
|
|
|
2003-09-20 11:23:10 +08:00
|
|
|
} else if ( strncasecmp( left, "val", 3 ) == 0 ) {
|
2005-07-05 20:00:14 +08:00
|
|
|
char *mr;
|
|
|
|
|
2004-11-16 06:15:28 +08:00
|
|
|
if ( !BER_BVISEMPTY( &a->acl_attrval ) ) {
|
2003-09-20 11:23:10 +08:00
|
|
|
fprintf( stderr,
|
|
|
|
"%s: line %d: attr val already specified in to clause.\n",
|
|
|
|
fname, lineno );
|
|
|
|
acl_usage();
|
|
|
|
}
|
2004-11-16 06:15:28 +08:00
|
|
|
if ( a->acl_attrs == NULL || !BER_BVISEMPTY( &a->acl_attrs[1].an_name ) )
|
|
|
|
{
|
2003-09-20 11:23:10 +08:00
|
|
|
fprintf( stderr,
|
|
|
|
"%s: line %d: attr val requires a single attribute.\n",
|
|
|
|
fname, lineno );
|
|
|
|
acl_usage();
|
|
|
|
}
|
2005-07-05 20:00:14 +08:00
|
|
|
|
2003-09-20 11:23:10 +08:00
|
|
|
ber_str2bv( right, 0, 1, &a->acl_attrval );
|
2005-05-03 20:13:16 +08:00
|
|
|
a->acl_attrval_style = ACL_STYLE_BASE;
|
2005-07-05 20:00:14 +08:00
|
|
|
|
|
|
|
mr = strchr( left, '/' );
|
|
|
|
if ( mr != NULL ) {
|
|
|
|
mr[ 0 ] = '\0';
|
|
|
|
mr++;
|
|
|
|
|
|
|
|
a->acl_attrval_mr = mr_find( mr );
|
|
|
|
if ( a->acl_attrval_mr == NULL ) {
|
|
|
|
fprintf( stderr, "%s: line %d: "
|
|
|
|
"invalid matching rule \"%s\".\n",
|
|
|
|
fname, lineno, mr );
|
|
|
|
acl_usage();
|
|
|
|
}
|
|
|
|
|
|
|
|
if( !mr_usable_with_at( a->acl_attrval_mr, a->acl_attrs[ 0 ].an_desc->ad_type ) )
|
|
|
|
{
|
|
|
|
fprintf( stderr, "%s: line %d: "
|
|
|
|
"matching rule \"%s\" use "
|
|
|
|
"with attr \"%s\" not appropriate.\n",
|
|
|
|
fname, lineno, mr,
|
|
|
|
a->acl_attrs[ 0 ].an_name.bv_val );
|
|
|
|
acl_usage();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-05-03 20:13:16 +08:00
|
|
|
if ( style != NULL ) {
|
|
|
|
if ( strcasecmp( style, "regex" ) == 0 ) {
|
|
|
|
int e = regcomp( &a->acl_attrval_re, a->acl_attrval.bv_val,
|
|
|
|
REG_EXTENDED | REG_ICASE | REG_NOSUB );
|
|
|
|
if ( e ) {
|
|
|
|
char buf[512];
|
|
|
|
regerror( e, &a->acl_attrval_re, buf, sizeof(buf) );
|
|
|
|
fprintf( stderr, "%s: line %d: "
|
|
|
|
"regular expression \"%s\" bad because of %s\n",
|
|
|
|
fname, lineno, right, buf );
|
|
|
|
acl_usage();
|
|
|
|
}
|
|
|
|
a->acl_attrval_style = ACL_STYLE_REGEX;
|
2003-12-16 08:49:10 +08:00
|
|
|
|
2005-05-03 20:13:16 +08:00
|
|
|
} else {
|
|
|
|
/* FIXME: if the attribute has DN syntax, we might
|
|
|
|
* allow one, subtree and children styles as well */
|
2005-05-06 05:47:40 +08:00
|
|
|
if ( !strcasecmp( style, "base" ) ||
|
|
|
|
!strcasecmp( style, "exact" ) ) {
|
2003-12-16 08:49:10 +08:00
|
|
|
a->acl_attrval_style = ACL_STYLE_BASE;
|
2005-05-03 20:13:16 +08:00
|
|
|
|
|
|
|
} else if ( a->acl_attrs[0].an_desc->ad_type->
|
|
|
|
sat_syntax == slap_schema.si_syn_distinguishedName )
|
2004-06-28 14:42:00 +08:00
|
|
|
{
|
2005-07-05 20:00:14 +08:00
|
|
|
struct berval bv;
|
|
|
|
|
2005-05-03 20:13:16 +08:00
|
|
|
if ( !strcasecmp( style, "baseObject" ) ||
|
|
|
|
!strcasecmp( style, "base" ) )
|
|
|
|
{
|
|
|
|
a->acl_attrval_style = ACL_STYLE_BASE;
|
|
|
|
} else if ( !strcasecmp( style, "onelevel" ) ||
|
|
|
|
!strcasecmp( style, "one" ) )
|
|
|
|
{
|
|
|
|
a->acl_attrval_style = ACL_STYLE_ONE;
|
|
|
|
} else if ( !strcasecmp( style, "subtree" ) ||
|
|
|
|
!strcasecmp( style, "sub" ) )
|
|
|
|
{
|
|
|
|
a->acl_attrval_style = ACL_STYLE_SUBTREE;
|
|
|
|
} else if ( !strcasecmp( style, "children" ) ) {
|
|
|
|
a->acl_attrval_style = ACL_STYLE_CHILDREN;
|
|
|
|
} else {
|
|
|
|
fprintf( stderr,
|
|
|
|
"%s: line %d: unknown val.<style> \"%s\" "
|
|
|
|
"for attributeType \"%s\" with DN syntax; "
|
|
|
|
"using \"base\"\n",
|
|
|
|
fname, lineno, style,
|
|
|
|
a->acl_attrs[0].an_desc->ad_cname.bv_val );
|
|
|
|
a->acl_attrval_style = ACL_STYLE_BASE;
|
|
|
|
}
|
|
|
|
|
2005-07-05 20:00:14 +08:00
|
|
|
bv = a->acl_attrval;
|
|
|
|
rc = dnNormalize( 0, NULL, NULL, &bv, &a->acl_attrval, NULL );
|
|
|
|
if ( rc != LDAP_SUCCESS ) {
|
|
|
|
fprintf( stderr,
|
|
|
|
"%s: line %d: unable to normalize DN \"%s\" "
|
|
|
|
"for attributeType \"%s\" (%d).\n",
|
|
|
|
fname, lineno, bv.bv_val,
|
|
|
|
a->acl_attrs[0].an_desc->ad_cname.bv_val, rc );
|
|
|
|
acl_usage();
|
|
|
|
}
|
|
|
|
ber_memfree( bv.bv_val );
|
|
|
|
|
2003-12-16 08:49:10 +08:00
|
|
|
} else {
|
|
|
|
fprintf( stderr,
|
2003-12-16 18:56:21 +08:00
|
|
|
"%s: line %d: unknown val.<style> \"%s\" "
|
2005-05-03 20:13:16 +08:00
|
|
|
"for attributeType \"%s\"; using \"exact\"\n",
|
2003-12-16 18:56:21 +08:00
|
|
|
fname, lineno, style,
|
|
|
|
a->acl_attrs[0].an_desc->ad_cname.bv_val );
|
2003-12-16 08:49:10 +08:00
|
|
|
a->acl_attrval_style = ACL_STYLE_BASE;
|
|
|
|
}
|
|
|
|
}
|
2003-09-20 11:23:10 +08:00
|
|
|
}
|
2005-07-05 20:00:14 +08:00
|
|
|
|
|
|
|
/* Check for appropriate matching rule */
|
|
|
|
if ( a->acl_attrval_style != ACL_STYLE_REGEX ) {
|
|
|
|
if ( a->acl_attrval_mr == NULL ) {
|
|
|
|
a->acl_attrval_mr = a->acl_attrs[ 0 ].an_desc->ad_type->sat_equality;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( a->acl_attrval_mr == NULL ) {
|
|
|
|
fprintf( stderr, "%s: line %d: "
|
|
|
|
"attr \"%s\" must have an EQUALITY matching rule.\n",
|
|
|
|
fname, lineno, a->acl_attrs[ 0 ].an_name.bv_val );
|
|
|
|
acl_usage();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
1998-08-09 08:43:13 +08:00
|
|
|
} else {
|
|
|
|
fprintf( stderr,
|
1998-08-21 14:33:42 +08:00
|
|
|
"%s: line %d: expecting <what> got \"%s\"\n",
|
1998-08-09 08:43:13 +08:00
|
|
|
fname, lineno, left );
|
|
|
|
acl_usage();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2004-10-07 06:03:33 +08:00
|
|
|
if ( !BER_BVISNULL( &a->acl_dn_pat ) &&
|
|
|
|
ber_bvccmp( &a->acl_dn_pat, '*' ) )
|
2002-02-09 02:32:12 +08:00
|
|
|
{
|
2001-12-24 23:43:27 +08:00
|
|
|
free( a->acl_dn_pat.bv_val );
|
2004-10-07 06:03:33 +08:00
|
|
|
BER_BVZERO( &a->acl_dn_pat );
|
2005-05-24 04:29:01 +08:00
|
|
|
a->acl_dn_style = ACL_STYLE_REGEX;
|
1999-10-26 11:19:41 +08:00
|
|
|
}
|
|
|
|
|
2004-11-16 06:15:28 +08:00
|
|
|
if ( !BER_BVISEMPTY( &a->acl_dn_pat ) ||
|
|
|
|
a->acl_dn_style != ACL_STYLE_REGEX )
|
2002-07-11 09:45:22 +08:00
|
|
|
{
|
2002-02-09 02:32:12 +08:00
|
|
|
if ( a->acl_dn_style != ACL_STYLE_REGEX ) {
|
2001-12-29 12:48:00 +08:00
|
|
|
struct berval bv;
|
2003-04-30 02:28:14 +08:00
|
|
|
rc = dnNormalize( 0, NULL, NULL, &a->acl_dn_pat, &bv, NULL);
|
2002-04-16 04:44:05 +08:00
|
|
|
if ( rc != LDAP_SUCCESS ) {
|
|
|
|
fprintf( stderr,
|
2003-05-30 13:24:39 +08:00
|
|
|
"%s: line %d: bad DN \"%s\" in to DN clause\n",
|
2002-04-16 04:44:05 +08:00
|
|
|
fname, lineno, a->acl_dn_pat.bv_val );
|
|
|
|
acl_usage();
|
|
|
|
}
|
2001-12-24 23:43:27 +08:00
|
|
|
free( a->acl_dn_pat.bv_val );
|
2001-12-29 12:48:00 +08:00
|
|
|
a->acl_dn_pat = bv;
|
2004-11-16 06:15:28 +08:00
|
|
|
|
2000-06-12 09:35:15 +08:00
|
|
|
} else {
|
2001-12-24 23:43:27 +08:00
|
|
|
int e = regcomp( &a->acl_dn_re, a->acl_dn_pat.bv_val,
|
2002-02-09 02:32:12 +08:00
|
|
|
REG_EXTENDED | REG_ICASE );
|
2000-06-12 09:35:15 +08:00
|
|
|
if ( e ) {
|
|
|
|
char buf[512];
|
|
|
|
regerror( e, &a->acl_dn_re, buf, sizeof(buf) );
|
2002-02-09 02:32:12 +08:00
|
|
|
fprintf( stderr, "%s: line %d: "
|
|
|
|
"regular expression \"%s\" bad because of %s\n",
|
|
|
|
fname, lineno, right, buf );
|
2000-06-12 09:35:15 +08:00
|
|
|
acl_usage();
|
|
|
|
}
|
1999-08-22 11:30:45 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
1998-08-09 08:43:13 +08:00
|
|
|
/* by clause - select who has what access to entries */
|
|
|
|
} else if ( strcasecmp( argv[i], "by" ) == 0 ) {
|
|
|
|
if ( a == NULL ) {
|
2003-05-30 13:24:39 +08:00
|
|
|
fprintf( stderr, "%s: line %d: "
|
|
|
|
"to clause required before by clause in access line\n",
|
1998-08-09 08:43:13 +08:00
|
|
|
fname, lineno );
|
|
|
|
acl_usage();
|
|
|
|
}
|
1999-10-22 01:53:56 +08:00
|
|
|
|
1998-08-09 08:43:13 +08:00
|
|
|
/*
|
|
|
|
* by clause consists of <who> and <access>
|
|
|
|
*/
|
|
|
|
|
1999-07-20 03:40:33 +08:00
|
|
|
b = (Access *) ch_calloc( 1, sizeof(Access) );
|
1998-08-09 08:43:13 +08:00
|
|
|
|
2000-08-26 09:14:05 +08:00
|
|
|
ACL_INVALIDATE( b->a_access_mask );
|
1999-10-22 01:53:56 +08:00
|
|
|
|
1998-08-09 08:43:13 +08:00
|
|
|
if ( ++i == argc ) {
|
|
|
|
fprintf( stderr,
|
|
|
|
"%s: line %d: premature eol: expecting <who>\n",
|
|
|
|
fname, lineno );
|
|
|
|
acl_usage();
|
|
|
|
}
|
|
|
|
|
|
|
|
/* get <who> */
|
1999-07-22 04:54:23 +08:00
|
|
|
for ( ; i < argc; i++ ) {
|
2005-04-03 09:59:03 +08:00
|
|
|
slap_style_t sty = ACL_STYLE_REGEX;
|
|
|
|
char *style_modifier = NULL;
|
|
|
|
char *style_level = NULL;
|
|
|
|
int level = 0;
|
|
|
|
int expand = 0;
|
|
|
|
slap_dn_access *bdn = &b->a_dn;
|
|
|
|
int is_realdn = 0;
|
2000-06-12 09:35:15 +08:00
|
|
|
|
1999-07-22 04:54:23 +08:00
|
|
|
split( argv[i], '=', &left, &right );
|
2000-06-12 09:35:15 +08:00
|
|
|
split( left, '.', &left, &style );
|
2002-04-03 23:42:19 +08:00
|
|
|
if ( style ) {
|
2005-04-01 02:10:11 +08:00
|
|
|
split( style, ',', &style, &style_modifier );
|
|
|
|
|
|
|
|
if ( strncasecmp( style, "level", STRLENOF( "level" ) ) == 0 ) {
|
|
|
|
split( style, '{', &style, &style_level );
|
|
|
|
if ( style_level != NULL ) {
|
|
|
|
char *p = strchr( style_level, '}' );
|
|
|
|
if ( p == NULL ) {
|
|
|
|
fprintf( stderr,
|
|
|
|
"%s: line %d: premature eol: "
|
|
|
|
"expecting closing '}' in \"level{n}\"\n",
|
|
|
|
fname, lineno );
|
|
|
|
acl_usage();
|
|
|
|
} else if ( p == style_level ) {
|
|
|
|
fprintf( stderr,
|
|
|
|
"%s: line %d: empty level "
|
|
|
|
"in \"level{n}\"\n",
|
|
|
|
fname, lineno );
|
|
|
|
acl_usage();
|
|
|
|
}
|
|
|
|
p[0] = '\0';
|
|
|
|
}
|
|
|
|
}
|
2002-04-03 23:42:19 +08:00
|
|
|
}
|
2003-05-30 13:24:39 +08:00
|
|
|
|
|
|
|
if ( style == NULL || *style == '\0' ||
|
|
|
|
strcasecmp( style, "exact" ) == 0 ||
|
2004-06-28 14:42:00 +08:00
|
|
|
strcasecmp( style, "baseObject" ) == 0 ||
|
2003-05-30 13:24:39 +08:00
|
|
|
strcasecmp( style, "base" ) == 0 )
|
2000-06-12 09:35:15 +08:00
|
|
|
{
|
|
|
|
sty = ACL_STYLE_BASE;
|
2003-05-30 13:24:39 +08:00
|
|
|
|
2003-12-20 23:18:21 +08:00
|
|
|
} else if ( strcasecmp( style, "onelevel" ) == 0 ||
|
2004-06-28 14:42:00 +08:00
|
|
|
strcasecmp( style, "one" ) == 0 )
|
|
|
|
{
|
2000-06-12 09:35:15 +08:00
|
|
|
sty = ACL_STYLE_ONE;
|
2003-05-30 13:24:39 +08:00
|
|
|
|
|
|
|
} else if ( strcasecmp( style, "subtree" ) == 0 ||
|
|
|
|
strcasecmp( style, "sub" ) == 0 )
|
|
|
|
{
|
2000-06-12 09:35:15 +08:00
|
|
|
sty = ACL_STYLE_SUBTREE;
|
2003-05-30 13:24:39 +08:00
|
|
|
|
2000-06-12 09:35:15 +08:00
|
|
|
} else if ( strcasecmp( style, "children" ) == 0 ) {
|
|
|
|
sty = ACL_STYLE_CHILDREN;
|
2003-05-30 13:24:39 +08:00
|
|
|
|
2005-04-01 02:10:11 +08:00
|
|
|
} else if ( strcasecmp( style, "level" ) == 0 )
|
|
|
|
{
|
|
|
|
char *next;
|
|
|
|
|
|
|
|
level = strtol( style_level, &next, 10 );
|
|
|
|
if ( next[0] != '\0' ) {
|
|
|
|
fprintf( stderr,
|
|
|
|
"%s: line %d: unable to parse level "
|
|
|
|
"in \"level{n}\"\n",
|
|
|
|
fname, lineno );
|
|
|
|
acl_usage();
|
|
|
|
}
|
|
|
|
|
|
|
|
sty = ACL_STYLE_LEVEL;
|
|
|
|
|
2003-05-30 13:24:39 +08:00
|
|
|
} else if ( strcasecmp( style, "regex" ) == 0 ) {
|
|
|
|
sty = ACL_STYLE_REGEX;
|
|
|
|
|
2004-03-10 00:33:05 +08:00
|
|
|
} else if ( strcasecmp( style, "expand" ) == 0 ) {
|
|
|
|
sty = ACL_STYLE_EXPAND;
|
|
|
|
|
2004-03-09 02:49:12 +08:00
|
|
|
} else if ( strcasecmp( style, "ip" ) == 0 ) {
|
|
|
|
sty = ACL_STYLE_IP;
|
|
|
|
|
|
|
|
} else if ( strcasecmp( style, "path" ) == 0 ) {
|
|
|
|
sty = ACL_STYLE_PATH;
|
|
|
|
#ifndef LDAP_PF_LOCAL
|
|
|
|
fprintf( stderr, "%s: line %d: "
|
|
|
|
"path style modifier is useless without local\n",
|
|
|
|
fname, lineno );
|
|
|
|
#endif /* LDAP_PF_LOCAL */
|
|
|
|
|
2000-06-12 09:35:15 +08:00
|
|
|
} else {
|
|
|
|
fprintf( stderr,
|
|
|
|
"%s: line %d: unknown style \"%s\" in by clause\n",
|
|
|
|
fname, lineno, style );
|
|
|
|
acl_usage();
|
|
|
|
}
|
1999-07-22 04:54:23 +08:00
|
|
|
|
2003-05-30 13:24:39 +08:00
|
|
|
if ( style_modifier &&
|
|
|
|
strcasecmp( style_modifier, "expand" ) == 0 )
|
|
|
|
{
|
2004-03-10 00:33:05 +08:00
|
|
|
switch ( sty ) {
|
|
|
|
case ACL_STYLE_REGEX:
|
|
|
|
fprintf( stderr, "%s: line %d: "
|
|
|
|
"\"regex\" style implies "
|
2005-05-07 00:42:03 +08:00
|
|
|
"\"expand\" modifier"
|
|
|
|
SLAPD_CONF_UNKNOWN_IGNORED ".\n",
|
2004-03-10 00:33:05 +08:00
|
|
|
fname, lineno );
|
2005-05-07 00:42:03 +08:00
|
|
|
#ifdef SLAPD_CONF_UNKNOWN_BAILOUT
|
|
|
|
acl_usage();
|
|
|
|
#endif /* SLAPD_CONF_UNKNOWN_BAILOUT */
|
2004-03-10 00:33:05 +08:00
|
|
|
break;
|
|
|
|
|
|
|
|
case ACL_STYLE_EXPAND:
|
2004-10-08 01:05:48 +08:00
|
|
|
#if 0
|
|
|
|
/* FIXME: now it's legal... */
|
2004-03-10 00:33:05 +08:00
|
|
|
fprintf( stderr, "%s: line %d: "
|
|
|
|
"\"expand\" style used "
|
|
|
|
"in conjunction with "
|
2005-05-07 00:42:03 +08:00
|
|
|
"\"expand\" modifier"
|
|
|
|
SLAPD_CONF_UNKNOWN_IGNORED ".\n",
|
2004-03-10 00:33:05 +08:00
|
|
|
fname, lineno );
|
2005-05-07 00:42:03 +08:00
|
|
|
#ifdef SLAPD_CONF_UNKNOWN_BAILOUT
|
|
|
|
acl_usage();
|
|
|
|
#endif /* SLAPD_CONF_UNKNOWN_BAILOUT */
|
2004-10-08 01:05:48 +08:00
|
|
|
#endif
|
2004-03-10 00:33:05 +08:00
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
2004-03-10 03:44:14 +08:00
|
|
|
/* we'll see later if it's pertinent */
|
2004-03-10 00:33:05 +08:00
|
|
|
expand = 1;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2004-03-10 03:44:14 +08:00
|
|
|
/* expand in <who> needs regex in <what> */
|
2004-03-10 00:33:05 +08:00
|
|
|
if ( ( sty == ACL_STYLE_EXPAND || expand )
|
2004-03-10 03:44:14 +08:00
|
|
|
&& a->acl_dn_style != ACL_STYLE_REGEX )
|
2004-03-10 00:33:05 +08:00
|
|
|
{
|
|
|
|
fprintf( stderr, "%s: line %d: "
|
|
|
|
"\"expand\" style or modifier used "
|
|
|
|
"in conjunction with "
|
|
|
|
"a non-regex <what> clause\n",
|
|
|
|
fname, lineno );
|
2002-04-03 23:42:19 +08:00
|
|
|
}
|
|
|
|
|
2005-04-03 09:59:03 +08:00
|
|
|
if ( strncasecmp( left, "real", STRLENOF( "real" ) ) == 0 ) {
|
|
|
|
is_realdn = 1;
|
|
|
|
bdn = &b->a_realdn;
|
|
|
|
left += STRLENOF( "real" );
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( strcasecmp( left, "*" ) == 0 ) {
|
|
|
|
if ( is_realdn ) {
|
|
|
|
acl_usage();
|
|
|
|
}
|
|
|
|
|
2004-11-16 06:15:28 +08:00
|
|
|
ber_str2bv( "*", STRLENOF( "*" ), 1, &bv );
|
2003-05-30 13:24:39 +08:00
|
|
|
sty = ACL_STYLE_REGEX;
|
1999-10-26 11:19:41 +08:00
|
|
|
|
2005-04-03 09:59:03 +08:00
|
|
|
} else if ( strcasecmp( left, "anonymous" ) == 0 ) {
|
2004-10-07 06:03:33 +08:00
|
|
|
ber_str2bv("anonymous", STRLENOF( "anonymous" ), 1, &bv);
|
2004-11-16 06:15:28 +08:00
|
|
|
sty = ACL_STYLE_ANONYMOUS;
|
|
|
|
|
2005-04-03 09:59:03 +08:00
|
|
|
} else if ( strcasecmp( left, "users" ) == 0 ) {
|
2004-11-16 06:15:28 +08:00
|
|
|
ber_str2bv("users", STRLENOF( "users" ), 1, &bv);
|
|
|
|
sty = ACL_STYLE_USERS;
|
1999-10-26 11:19:41 +08:00
|
|
|
|
2005-04-03 09:59:03 +08:00
|
|
|
} else if ( strcasecmp( left, "self" ) == 0 ) {
|
2004-10-07 06:03:33 +08:00
|
|
|
ber_str2bv("self", STRLENOF( "self" ), 1, &bv);
|
2004-11-16 06:15:28 +08:00
|
|
|
sty = ACL_STYLE_SELF;
|
1999-10-26 11:19:41 +08:00
|
|
|
|
1999-07-22 04:54:23 +08:00
|
|
|
} else if ( strcasecmp( left, "dn" ) == 0 ) {
|
2000-06-12 09:35:15 +08:00
|
|
|
if ( sty == ACL_STYLE_REGEX ) {
|
2005-04-03 09:59:03 +08:00
|
|
|
bdn->a_style = ACL_STYLE_REGEX;
|
2004-11-16 06:15:28 +08:00
|
|
|
if ( right == NULL ) {
|
2000-06-12 09:35:15 +08:00
|
|
|
/* no '=' */
|
2001-12-26 21:47:10 +08:00
|
|
|
ber_str2bv("users",
|
2004-10-07 06:03:33 +08:00
|
|
|
STRLENOF( "users" ),
|
2001-12-26 21:47:10 +08:00
|
|
|
1, &bv);
|
2005-04-03 09:59:03 +08:00
|
|
|
bdn->a_style = ACL_STYLE_USERS;
|
2004-11-16 06:15:28 +08:00
|
|
|
|
2000-06-12 09:35:15 +08:00
|
|
|
} else if (*right == '\0' ) {
|
|
|
|
/* dn="" */
|
2001-12-26 21:47:10 +08:00
|
|
|
ber_str2bv("anonymous",
|
2004-10-07 06:03:33 +08:00
|
|
|
STRLENOF( "anonymous" ),
|
2001-12-26 21:47:10 +08:00
|
|
|
1, &bv);
|
2005-04-03 09:59:03 +08:00
|
|
|
bdn->a_style = ACL_STYLE_ANONYMOUS;
|
2004-11-16 06:15:28 +08:00
|
|
|
|
2000-06-12 09:35:15 +08:00
|
|
|
} else if ( strcmp( right, "*" ) == 0 ) {
|
|
|
|
/* dn=* */
|
|
|
|
/* any or users? users for now */
|
2001-12-26 21:47:10 +08:00
|
|
|
ber_str2bv("users",
|
2004-10-07 06:03:33 +08:00
|
|
|
STRLENOF( "users" ),
|
2001-12-26 21:47:10 +08:00
|
|
|
1, &bv);
|
2005-04-03 09:59:03 +08:00
|
|
|
bdn->a_style = ACL_STYLE_USERS;
|
2004-11-16 06:15:28 +08:00
|
|
|
|
2000-06-12 09:35:15 +08:00
|
|
|
} else if ( strcmp( right, ".+" ) == 0
|
|
|
|
|| strcmp( right, "^.+" ) == 0
|
|
|
|
|| strcmp( right, ".+$" ) == 0
|
|
|
|
|| strcmp( right, "^.+$" ) == 0
|
|
|
|
|| strcmp( right, ".+$$" ) == 0
|
|
|
|
|| strcmp( right, "^.+$$" ) == 0 )
|
|
|
|
{
|
2001-12-26 21:47:10 +08:00
|
|
|
ber_str2bv("users",
|
2004-10-07 06:03:33 +08:00
|
|
|
STRLENOF( "users" ),
|
2001-12-26 21:47:10 +08:00
|
|
|
1, &bv);
|
2005-04-03 09:59:03 +08:00
|
|
|
bdn->a_style = ACL_STYLE_USERS;
|
2004-11-16 06:15:28 +08:00
|
|
|
|
2000-06-12 09:35:15 +08:00
|
|
|
} else if ( strcmp( right, ".*" ) == 0
|
|
|
|
|| strcmp( right, "^.*" ) == 0
|
|
|
|
|| strcmp( right, ".*$" ) == 0
|
|
|
|
|| strcmp( right, "^.*$" ) == 0
|
|
|
|
|| strcmp( right, ".*$$" ) == 0
|
|
|
|
|| strcmp( right, "^.*$$" ) == 0 )
|
|
|
|
{
|
2001-12-26 21:47:10 +08:00
|
|
|
ber_str2bv("*",
|
2004-10-07 06:03:33 +08:00
|
|
|
STRLENOF( "*" ),
|
2001-12-26 21:47:10 +08:00
|
|
|
1, &bv);
|
2000-06-12 09:35:15 +08:00
|
|
|
|
|
|
|
} else {
|
2002-04-16 04:44:05 +08:00
|
|
|
acl_regex_normalized_dn( right, &bv );
|
2002-04-02 16:18:30 +08:00
|
|
|
if ( !ber_bvccmp( &bv, '*' ) ) {
|
2004-11-16 06:15:28 +08:00
|
|
|
regtest( fname, lineno, bv.bv_val );
|
2002-04-02 16:18:30 +08:00
|
|
|
}
|
2000-06-12 09:35:15 +08:00
|
|
|
}
|
2004-11-16 06:15:28 +08:00
|
|
|
|
2000-06-12 09:35:15 +08:00
|
|
|
} else if ( right == NULL || *right == '\0' ) {
|
2003-05-30 13:24:39 +08:00
|
|
|
fprintf( stderr, "%s: line %d: "
|
|
|
|
"missing \"=\" in (or value after) \"%s\" "
|
|
|
|
"in by clause\n",
|
2000-06-12 09:35:15 +08:00
|
|
|
fname, lineno, left );
|
|
|
|
acl_usage();
|
1999-10-26 11:19:41 +08:00
|
|
|
|
|
|
|
} else {
|
2001-12-26 21:47:10 +08:00
|
|
|
ber_str2bv( right, 0, 1, &bv );
|
1999-10-26 11:19:41 +08:00
|
|
|
}
|
|
|
|
|
1999-07-22 05:08:05 +08:00
|
|
|
} else {
|
2004-11-16 06:15:28 +08:00
|
|
|
BER_BVZERO( &bv );
|
1999-07-22 04:54:23 +08:00
|
|
|
}
|
|
|
|
|
2004-11-16 06:15:28 +08:00
|
|
|
if ( !BER_BVISNULL( &bv ) ) {
|
2005-04-03 09:59:03 +08:00
|
|
|
if ( !BER_BVISEMPTY( &bdn->a_pat ) ) {
|
1999-07-22 04:54:23 +08:00
|
|
|
fprintf( stderr,
|
|
|
|
"%s: line %d: dn pattern already specified.\n",
|
|
|
|
fname, lineno );
|
|
|
|
acl_usage();
|
|
|
|
}
|
|
|
|
|
2004-11-16 06:15:28 +08:00
|
|
|
if ( sty != ACL_STYLE_REGEX &&
|
|
|
|
sty != ACL_STYLE_ANONYMOUS &&
|
|
|
|
sty != ACL_STYLE_USERS &&
|
|
|
|
sty != ACL_STYLE_SELF &&
|
|
|
|
expand == 0 )
|
|
|
|
{
|
2003-05-30 13:24:39 +08:00
|
|
|
rc = dnNormalize(0, NULL, NULL,
|
2005-04-03 09:59:03 +08:00
|
|
|
&bv, &bdn->a_pat, NULL);
|
2002-04-16 04:44:05 +08:00
|
|
|
if ( rc != LDAP_SUCCESS ) {
|
|
|
|
fprintf( stderr,
|
2003-05-30 13:24:39 +08:00
|
|
|
"%s: line %d: bad DN \"%s\" in by DN clause\n",
|
2002-04-16 04:44:05 +08:00
|
|
|
fname, lineno, bv.bv_val );
|
|
|
|
acl_usage();
|
|
|
|
}
|
2004-11-16 06:15:28 +08:00
|
|
|
free( bv.bv_val );
|
|
|
|
|
2001-12-26 12:17:49 +08:00
|
|
|
} else {
|
2005-04-03 09:59:03 +08:00
|
|
|
bdn->a_pat = bv;
|
2001-12-26 12:17:49 +08:00
|
|
|
}
|
2005-04-03 09:59:03 +08:00
|
|
|
bdn->a_style = sty;
|
2005-05-07 00:42:03 +08:00
|
|
|
if ( expand ) {
|
|
|
|
char *exp;
|
|
|
|
int gotit = 0;
|
|
|
|
|
|
|
|
for ( exp = strchr( bdn->a_pat.bv_val, '$' );
|
|
|
|
exp && exp - bdn->a_pat.bv_val < bdn->a_pat.bv_len;
|
|
|
|
exp = strchr( exp, '$' ) )
|
|
|
|
{
|
|
|
|
if ( isdigit( exp[ 1 ] ) ) {
|
|
|
|
gotit = 1;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( gotit == 1 ) {
|
|
|
|
bdn->a_expand = expand;
|
|
|
|
|
|
|
|
} else {
|
|
|
|
fprintf( stderr,
|
|
|
|
"%s: line %d: \"expand\" used "
|
|
|
|
"with no expansions in \"pattern\""
|
|
|
|
SLAPD_CONF_UNKNOWN_IGNORED ".\n",
|
|
|
|
fname, lineno );
|
|
|
|
#ifdef SLAPD_CONF_UNKNOWN_BAILOUT
|
|
|
|
acl_usage();
|
|
|
|
#endif /* SLAPD_CONF_UNKNOWN_BAILOUT */
|
|
|
|
}
|
|
|
|
}
|
2005-04-01 02:10:11 +08:00
|
|
|
if ( sty == ACL_STYLE_SELF ) {
|
2005-04-03 09:59:03 +08:00
|
|
|
bdn->a_self_level = level;
|
2005-04-01 02:10:11 +08:00
|
|
|
|
|
|
|
} else {
|
|
|
|
if ( level < 0 ) {
|
|
|
|
fprintf( stderr,
|
|
|
|
"%s: line %d: bad negative level \"%d\" "
|
|
|
|
"in by DN clause\n",
|
|
|
|
fname, lineno, level );
|
|
|
|
acl_usage();
|
|
|
|
} else if ( level == 1 ) {
|
|
|
|
fprintf( stderr,
|
|
|
|
"%s: line %d: \"onelevel\" should be used "
|
|
|
|
"instead of \"level{1}\" in by DN clause\n",
|
2005-07-17 19:55:34 +08:00
|
|
|
fname, lineno );
|
2005-04-01 02:10:11 +08:00
|
|
|
} else if ( level == 0 && sty == ACL_STYLE_LEVEL ) {
|
|
|
|
fprintf( stderr,
|
|
|
|
"%s: line %d: \"base\" should be used "
|
|
|
|
"instead of \"level{0}\" in by DN clause\n",
|
2005-07-17 19:55:34 +08:00
|
|
|
fname, lineno );
|
2005-04-01 02:10:11 +08:00
|
|
|
}
|
|
|
|
|
2005-04-03 09:59:03 +08:00
|
|
|
bdn->a_level = level;
|
2005-04-01 02:10:11 +08:00
|
|
|
}
|
1999-07-22 04:54:23 +08:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( strcasecmp( left, "dnattr" ) == 0 ) {
|
2004-06-28 14:42:00 +08:00
|
|
|
if ( right == NULL || right[0] == '\0' ) {
|
|
|
|
fprintf( stderr, "%s: line %d: "
|
|
|
|
"missing \"=\" in (or value after) \"%s\" "
|
|
|
|
"in by clause\n",
|
2001-10-29 16:14:12 +08:00
|
|
|
fname, lineno, left );
|
|
|
|
acl_usage();
|
|
|
|
}
|
|
|
|
|
2005-04-03 09:59:03 +08:00
|
|
|
if( bdn->a_at != NULL ) {
|
1999-07-22 04:54:23 +08:00
|
|
|
fprintf( stderr,
|
2000-01-29 04:01:00 +08:00
|
|
|
"%s: line %d: dnattr already specified.\n",
|
1999-07-22 04:54:23 +08:00
|
|
|
fname, lineno );
|
|
|
|
acl_usage();
|
1999-07-05 14:26:26 +08:00
|
|
|
}
|
1999-07-22 04:54:23 +08:00
|
|
|
|
2005-04-03 09:59:03 +08:00
|
|
|
rc = slap_str2ad( right, &bdn->a_at, &text );
|
2000-01-29 04:01:00 +08:00
|
|
|
|
2000-02-15 04:57:34 +08:00
|
|
|
if( rc != LDAP_SUCCESS ) {
|
2000-01-29 04:01:00 +08:00
|
|
|
fprintf( stderr,
|
2000-02-15 04:57:34 +08:00
|
|
|
"%s: line %d: dnattr \"%s\": %s\n",
|
|
|
|
fname, lineno, right, text );
|
2000-01-29 04:01:00 +08:00
|
|
|
acl_usage();
|
|
|
|
}
|
|
|
|
|
2000-05-28 03:33:08 +08:00
|
|
|
|
2005-04-03 09:59:03 +08:00
|
|
|
if( !is_at_syntax( bdn->a_at->ad_type,
|
2001-03-15 12:48:29 +08:00
|
|
|
SLAPD_DN_SYNTAX ) &&
|
2005-04-03 09:59:03 +08:00
|
|
|
!is_at_syntax( bdn->a_at->ad_type,
|
2001-03-15 12:48:29 +08:00
|
|
|
SLAPD_NAMEUID_SYNTAX ))
|
2000-01-29 04:01:00 +08:00
|
|
|
{
|
|
|
|
fprintf( stderr,
|
2000-05-29 02:58:09 +08:00
|
|
|
"%s: line %d: dnattr \"%s\": "
|
|
|
|
"inappropriate syntax: %s\n",
|
2000-05-28 03:33:08 +08:00
|
|
|
fname, lineno, right,
|
2005-04-03 09:59:03 +08:00
|
|
|
bdn->a_at->ad_type->sat_syntax_oid );
|
2000-01-29 04:01:00 +08:00
|
|
|
acl_usage();
|
|
|
|
}
|
2000-05-28 03:33:08 +08:00
|
|
|
|
2005-04-03 09:59:03 +08:00
|
|
|
if( bdn->a_at->ad_type->sat_equality == NULL ) {
|
2002-11-26 02:37:04 +08:00
|
|
|
fprintf( stderr,
|
|
|
|
"%s: line %d: dnattr \"%s\": "
|
|
|
|
"inappropriate matching (no EQUALITY)\n",
|
|
|
|
fname, lineno, right );
|
|
|
|
acl_usage();
|
|
|
|
}
|
|
|
|
|
1999-07-22 04:54:23 +08:00
|
|
|
continue;
|
1999-07-05 14:26:26 +08:00
|
|
|
}
|
1998-10-27 10:07:12 +08:00
|
|
|
|
2004-10-07 06:03:33 +08:00
|
|
|
if ( strncasecmp( left, "group", STRLENOF( "group" ) ) == 0 ) {
|
1999-07-22 04:54:23 +08:00
|
|
|
char *name = NULL;
|
|
|
|
char *value = NULL;
|
1998-10-27 10:07:12 +08:00
|
|
|
|
2004-03-10 00:33:05 +08:00
|
|
|
switch ( sty ) {
|
|
|
|
case ACL_STYLE_REGEX:
|
2004-03-10 03:44:14 +08:00
|
|
|
/* legacy, tolerated */
|
2004-03-10 00:33:05 +08:00
|
|
|
fprintf( stderr, "%s: line %d: "
|
|
|
|
"deprecated group style \"regex\"; "
|
|
|
|
"use \"expand\" instead\n",
|
2005-07-17 19:55:34 +08:00
|
|
|
fname, lineno );
|
2004-03-10 00:33:05 +08:00
|
|
|
sty = ACL_STYLE_EXPAND;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case ACL_STYLE_BASE:
|
2004-03-10 03:44:14 +08:00
|
|
|
/* legal, traditional */
|
|
|
|
case ACL_STYLE_EXPAND:
|
|
|
|
/* legal, substring expansion; supersedes regex */
|
2004-03-10 00:33:05 +08:00
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
2004-03-10 03:44:14 +08:00
|
|
|
/* unknown */
|
2003-05-30 13:24:39 +08:00
|
|
|
fprintf( stderr, "%s: line %d: "
|
|
|
|
"inappropriate style \"%s\" in by clause\n",
|
2004-03-10 00:33:05 +08:00
|
|
|
fname, lineno, style );
|
2002-04-03 23:42:19 +08:00
|
|
|
acl_usage();
|
|
|
|
}
|
|
|
|
|
2004-06-28 14:42:00 +08:00
|
|
|
if ( right == NULL || right[0] == '\0' ) {
|
2003-05-30 13:24:39 +08:00
|
|
|
fprintf( stderr, "%s: line %d: "
|
|
|
|
"missing \"=\" in (or value after) \"%s\" "
|
|
|
|
"in by clause\n",
|
2001-10-29 16:14:12 +08:00
|
|
|
fname, lineno, left );
|
|
|
|
acl_usage();
|
|
|
|
}
|
|
|
|
|
2004-11-16 06:15:28 +08:00
|
|
|
if ( !BER_BVISEMPTY( &b->a_group_pat ) ) {
|
1999-07-22 04:54:23 +08:00
|
|
|
fprintf( stderr,
|
|
|
|
"%s: line %d: group pattern already specified.\n",
|
|
|
|
fname, lineno );
|
|
|
|
acl_usage();
|
|
|
|
}
|
|
|
|
|
2003-05-30 13:24:39 +08:00
|
|
|
/* format of string is
|
|
|
|
"group/objectClassValue/groupAttrName" */
|
2004-11-16 06:15:28 +08:00
|
|
|
if ( ( value = strchr(left, '/') ) != NULL ) {
|
1999-07-22 04:54:23 +08:00
|
|
|
*value++ = '\0';
|
2004-11-16 06:15:28 +08:00
|
|
|
if ( *value && ( name = strchr( value, '/' ) ) != NULL ) {
|
1999-07-22 04:54:23 +08:00
|
|
|
*name++ = '\0';
|
|
|
|
}
|
|
|
|
}
|
1998-10-27 10:07:12 +08:00
|
|
|
|
2000-06-12 09:35:15 +08:00
|
|
|
b->a_group_style = sty;
|
2004-11-16 06:15:28 +08:00
|
|
|
if ( sty == ACL_STYLE_EXPAND ) {
|
2002-04-16 04:44:05 +08:00
|
|
|
acl_regex_normalized_dn( right, &bv );
|
2002-04-02 16:18:30 +08:00
|
|
|
if ( !ber_bvccmp( &bv, '*' ) ) {
|
2004-11-16 06:15:28 +08:00
|
|
|
regtest( fname, lineno, bv.bv_val );
|
2002-04-02 16:18:30 +08:00
|
|
|
}
|
2001-12-26 12:17:49 +08:00
|
|
|
b->a_group_pat = bv;
|
2004-11-16 06:15:28 +08:00
|
|
|
|
2000-06-12 09:35:15 +08:00
|
|
|
} else {
|
2001-12-26 21:47:10 +08:00
|
|
|
ber_str2bv( right, 0, 0, &bv );
|
2003-05-30 13:24:39 +08:00
|
|
|
rc = dnNormalize( 0, NULL, NULL, &bv,
|
|
|
|
&b->a_group_pat, NULL );
|
2002-04-16 04:44:05 +08:00
|
|
|
if ( rc != LDAP_SUCCESS ) {
|
|
|
|
fprintf( stderr,
|
|
|
|
"%s: line %d: bad DN \"%s\"\n",
|
|
|
|
fname, lineno, right );
|
|
|
|
acl_usage();
|
|
|
|
}
|
2000-06-12 09:35:15 +08:00
|
|
|
}
|
1998-10-27 10:07:12 +08:00
|
|
|
|
2004-11-16 06:15:28 +08:00
|
|
|
if ( value && *value ) {
|
2000-05-29 00:36:34 +08:00
|
|
|
b->a_group_oc = oc_find( value );
|
2000-05-29 02:58:09 +08:00
|
|
|
*--value = '/';
|
|
|
|
|
2004-11-16 06:15:28 +08:00
|
|
|
if ( b->a_group_oc == NULL ) {
|
2000-05-29 00:36:34 +08:00
|
|
|
fprintf( stderr,
|
2000-05-29 02:58:09 +08:00
|
|
|
"%s: line %d: group objectclass "
|
|
|
|
"\"%s\" unknown\n",
|
2000-05-29 00:36:34 +08:00
|
|
|
fname, lineno, value );
|
|
|
|
acl_usage();
|
|
|
|
}
|
2004-11-16 06:15:28 +08:00
|
|
|
|
2000-05-29 02:58:09 +08:00
|
|
|
} else {
|
2000-05-29 06:17:34 +08:00
|
|
|
b->a_group_oc = oc_find(SLAPD_GROUP_CLASS);
|
2000-05-29 00:36:34 +08:00
|
|
|
|
2000-05-29 02:58:09 +08:00
|
|
|
if( b->a_group_oc == NULL ) {
|
2000-05-29 00:36:34 +08:00
|
|
|
fprintf( stderr,
|
2000-05-29 02:58:09 +08:00
|
|
|
"%s: line %d: group default objectclass "
|
|
|
|
"\"%s\" unknown\n",
|
2000-05-29 06:17:34 +08:00
|
|
|
fname, lineno, SLAPD_GROUP_CLASS );
|
2000-05-29 00:36:34 +08:00
|
|
|
acl_usage();
|
|
|
|
}
|
2000-01-15 11:48:37 +08:00
|
|
|
}
|
1999-07-22 04:54:23 +08:00
|
|
|
|
2004-11-16 06:15:28 +08:00
|
|
|
if ( is_object_subclass( slap_schema.si_oc_referral,
|
|
|
|
b->a_group_oc ) )
|
2000-05-29 02:58:09 +08:00
|
|
|
{
|
|
|
|
fprintf( stderr,
|
|
|
|
"%s: line %d: group objectclass \"%s\" "
|
|
|
|
"is subclass of referral\n",
|
|
|
|
fname, lineno, value );
|
|
|
|
acl_usage();
|
|
|
|
}
|
|
|
|
|
2004-11-16 06:15:28 +08:00
|
|
|
if ( is_object_subclass( slap_schema.si_oc_alias,
|
|
|
|
b->a_group_oc ) )
|
2000-05-29 02:58:09 +08:00
|
|
|
{
|
|
|
|
fprintf( stderr,
|
|
|
|
"%s: line %d: group objectclass \"%s\" "
|
|
|
|
"is subclass of alias\n",
|
|
|
|
fname, lineno, value );
|
|
|
|
acl_usage();
|
|
|
|
}
|
2000-05-29 00:36:34 +08:00
|
|
|
|
2004-11-16 06:15:28 +08:00
|
|
|
if ( name && *name ) {
|
2000-07-25 10:16:59 +08:00
|
|
|
rc = slap_str2ad( name, &b->a_group_at, &text );
|
2000-02-15 04:57:34 +08:00
|
|
|
|
|
|
|
if( rc != LDAP_SUCCESS ) {
|
|
|
|
fprintf( stderr,
|
|
|
|
"%s: line %d: group \"%s\": %s\n",
|
|
|
|
fname, lineno, right, text );
|
|
|
|
acl_usage();
|
|
|
|
}
|
2000-01-15 11:48:37 +08:00
|
|
|
*--name = '/';
|
2004-11-16 06:15:28 +08:00
|
|
|
|
2000-01-15 11:48:37 +08:00
|
|
|
} else {
|
2000-05-29 06:17:34 +08:00
|
|
|
rc = slap_str2ad( SLAPD_GROUP_ATTR, &b->a_group_at, &text );
|
2000-05-29 02:58:09 +08:00
|
|
|
|
2004-11-16 06:15:28 +08:00
|
|
|
if ( rc != LDAP_SUCCESS ) {
|
2000-05-29 02:58:09 +08:00
|
|
|
fprintf( stderr,
|
|
|
|
"%s: line %d: group \"%s\": %s\n",
|
2000-05-29 06:17:34 +08:00
|
|
|
fname, lineno, SLAPD_GROUP_ATTR, text );
|
2000-05-29 02:58:09 +08:00
|
|
|
acl_usage();
|
|
|
|
}
|
2000-01-29 04:01:00 +08:00
|
|
|
}
|
|
|
|
|
2004-11-16 06:15:28 +08:00
|
|
|
if ( !is_at_syntax( b->a_group_at->ad_type,
|
2000-10-10 03:09:22 +08:00
|
|
|
SLAPD_DN_SYNTAX ) &&
|
2004-11-16 06:15:28 +08:00
|
|
|
!is_at_syntax( b->a_group_at->ad_type,
|
2003-09-20 16:16:04 +08:00
|
|
|
SLAPD_NAMEUID_SYNTAX ) &&
|
2004-11-16 06:15:28 +08:00
|
|
|
!is_at_subtype( b->a_group_at->ad_type, slap_schema.si_ad_labeledURI->ad_type ) )
|
2000-05-29 02:58:09 +08:00
|
|
|
{
|
2000-01-29 04:01:00 +08:00
|
|
|
fprintf( stderr,
|
2000-05-29 02:58:09 +08:00
|
|
|
"%s: line %d: group \"%s\": inappropriate syntax: %s\n",
|
|
|
|
fname, lineno, right,
|
|
|
|
b->a_group_at->ad_type->sat_syntax_oid );
|
2000-01-29 04:01:00 +08:00
|
|
|
acl_usage();
|
|
|
|
}
|
2000-05-29 00:36:34 +08:00
|
|
|
|
|
|
|
|
|
|
|
{
|
|
|
|
int rc;
|
2002-01-02 19:00:36 +08:00
|
|
|
struct berval vals[2];
|
2000-05-29 00:36:34 +08:00
|
|
|
|
2004-11-16 06:15:28 +08:00
|
|
|
ber_str2bv( b->a_group_oc->soc_oid, 0, 0, &vals[0] );
|
|
|
|
BER_BVZERO( &vals[1] );
|
2000-05-29 00:36:34 +08:00
|
|
|
|
2003-05-30 13:24:39 +08:00
|
|
|
rc = oc_check_allowed( b->a_group_at->ad_type,
|
|
|
|
vals, NULL );
|
2000-05-29 00:36:34 +08:00
|
|
|
|
|
|
|
if( rc != 0 ) {
|
2003-05-30 13:24:39 +08:00
|
|
|
fprintf( stderr, "%s: line %d: "
|
|
|
|
"group: \"%s\" not allowed by \"%s\"\n",
|
2000-05-29 00:36:34 +08:00
|
|
|
fname, lineno,
|
2001-10-22 21:23:05 +08:00
|
|
|
b->a_group_at->ad_cname.bv_val,
|
2000-05-29 00:36:34 +08:00
|
|
|
b->a_group_oc->soc_oid );
|
|
|
|
acl_usage();
|
|
|
|
}
|
|
|
|
}
|
1999-07-22 04:54:23 +08:00
|
|
|
continue;
|
1999-07-05 14:26:26 +08:00
|
|
|
}
|
1998-10-27 10:07:12 +08:00
|
|
|
|
1999-07-22 04:54:23 +08:00
|
|
|
if ( strcasecmp( left, "peername" ) == 0 ) {
|
2004-11-16 06:15:28 +08:00
|
|
|
switch ( sty ) {
|
2004-03-09 02:49:12 +08:00
|
|
|
case ACL_STYLE_REGEX:
|
|
|
|
case ACL_STYLE_BASE:
|
2004-03-10 03:44:14 +08:00
|
|
|
/* legal, traditional */
|
|
|
|
case ACL_STYLE_EXPAND:
|
|
|
|
/* cheap replacement to regex for simple expansion */
|
2004-03-09 02:49:12 +08:00
|
|
|
case ACL_STYLE_IP:
|
|
|
|
case ACL_STYLE_PATH:
|
2004-03-10 03:44:14 +08:00
|
|
|
/* legal, peername specific */
|
2004-03-09 02:49:12 +08:00
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
2003-05-30 13:24:39 +08:00
|
|
|
fprintf( stderr, "%s: line %d: "
|
|
|
|
"inappropriate style \"%s\" in by clause\n",
|
2002-04-03 23:42:19 +08:00
|
|
|
fname, lineno, style );
|
|
|
|
acl_usage();
|
|
|
|
}
|
|
|
|
|
2004-06-28 14:42:00 +08:00
|
|
|
if ( right == NULL || right[0] == '\0' ) {
|
2003-05-30 13:24:39 +08:00
|
|
|
fprintf( stderr, "%s: line %d: "
|
|
|
|
"missing \"=\" in (or value after) \"%s\" "
|
|
|
|
"in by clause\n",
|
2001-10-29 16:14:12 +08:00
|
|
|
fname, lineno, left );
|
|
|
|
acl_usage();
|
|
|
|
}
|
|
|
|
|
2004-12-03 16:41:06 +08:00
|
|
|
if ( !BER_BVISEMPTY( &b->a_peername_pat ) ) {
|
2003-05-30 13:24:39 +08:00
|
|
|
fprintf( stderr, "%s: line %d: "
|
|
|
|
"peername pattern already specified.\n",
|
1999-07-22 04:54:23 +08:00
|
|
|
fname, lineno );
|
|
|
|
acl_usage();
|
|
|
|
}
|
1998-08-21 14:33:42 +08:00
|
|
|
|
2000-06-12 09:35:15 +08:00
|
|
|
b->a_peername_style = sty;
|
2004-11-16 06:15:28 +08:00
|
|
|
if ( sty == ACL_STYLE_REGEX ) {
|
2002-04-16 04:44:05 +08:00
|
|
|
acl_regex_normalized_dn( right, &bv );
|
2002-04-02 16:18:30 +08:00
|
|
|
if ( !ber_bvccmp( &bv, '*' ) ) {
|
2004-11-16 06:15:28 +08:00
|
|
|
regtest( fname, lineno, bv.bv_val );
|
2002-04-02 16:18:30 +08:00
|
|
|
}
|
2002-01-28 19:41:07 +08:00
|
|
|
b->a_peername_pat = bv;
|
2004-03-09 02:49:12 +08:00
|
|
|
|
2001-11-12 19:29:40 +08:00
|
|
|
} else {
|
2002-01-28 19:41:07 +08:00
|
|
|
ber_str2bv( right, 0, 1, &b->a_peername_pat );
|
2004-03-09 02:49:12 +08:00
|
|
|
|
|
|
|
if ( sty == ACL_STYLE_IP ) {
|
|
|
|
char *addr = NULL,
|
|
|
|
*mask = NULL,
|
|
|
|
*port = NULL;
|
|
|
|
|
|
|
|
split( right, '{', &addr, &port );
|
|
|
|
split( addr, '%', &addr, &mask );
|
|
|
|
|
|
|
|
b->a_peername_addr = inet_addr( addr );
|
2004-11-16 06:15:28 +08:00
|
|
|
if ( b->a_peername_addr == (unsigned long)(-1) ) {
|
2004-03-09 02:49:12 +08:00
|
|
|
/* illegal address */
|
|
|
|
fprintf( stderr, "%s: line %d: "
|
|
|
|
"illegal peername address \"%s\".\n",
|
|
|
|
fname, lineno, addr );
|
|
|
|
acl_usage();
|
|
|
|
}
|
|
|
|
|
|
|
|
b->a_peername_mask = (unsigned long)(-1);
|
|
|
|
if ( mask != NULL ) {
|
|
|
|
b->a_peername_mask = inet_addr( mask );
|
2004-06-28 14:42:00 +08:00
|
|
|
if ( b->a_peername_mask ==
|
2004-11-16 06:15:28 +08:00
|
|
|
(unsigned long)(-1) )
|
2004-06-28 14:42:00 +08:00
|
|
|
{
|
2004-03-09 02:49:12 +08:00
|
|
|
/* illegal mask */
|
|
|
|
fprintf( stderr, "%s: line %d: "
|
2004-06-28 14:42:00 +08:00
|
|
|
"illegal peername address mask "
|
|
|
|
"\"%s\".\n",
|
2004-03-09 02:49:12 +08:00
|
|
|
fname, lineno, mask );
|
|
|
|
acl_usage();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
b->a_peername_port = -1;
|
|
|
|
if ( port ) {
|
|
|
|
char *end = NULL;
|
|
|
|
|
|
|
|
b->a_peername_port = strtol( port, &end, 10 );
|
2004-06-28 14:42:00 +08:00
|
|
|
if ( end[0] != '}' ) {
|
2004-03-09 02:49:12 +08:00
|
|
|
/* illegal port */
|
|
|
|
fprintf( stderr, "%s: line %d: "
|
2004-06-28 14:42:00 +08:00
|
|
|
"illegal peername port specification "
|
|
|
|
"\"{%s}\".\n",
|
2004-03-09 02:49:12 +08:00
|
|
|
fname, lineno, port );
|
|
|
|
acl_usage();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2000-06-12 09:35:15 +08:00
|
|
|
}
|
1999-07-22 04:54:23 +08:00
|
|
|
continue;
|
1998-08-09 08:43:13 +08:00
|
|
|
}
|
|
|
|
|
1999-07-22 04:54:23 +08:00
|
|
|
if ( strcasecmp( left, "sockname" ) == 0 ) {
|
2004-11-16 06:15:28 +08:00
|
|
|
switch ( sty ) {
|
2004-03-10 03:44:14 +08:00
|
|
|
case ACL_STYLE_REGEX:
|
|
|
|
case ACL_STYLE_BASE:
|
|
|
|
/* legal, traditional */
|
|
|
|
case ACL_STYLE_EXPAND:
|
|
|
|
/* cheap replacement to regex for simple expansion */
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
/* unknown */
|
2003-05-30 13:24:39 +08:00
|
|
|
fprintf( stderr, "%s: line %d: "
|
|
|
|
"inappropriate style \"%s\" in by clause\n",
|
2002-04-03 23:42:19 +08:00
|
|
|
fname, lineno, style );
|
|
|
|
acl_usage();
|
|
|
|
}
|
|
|
|
|
2004-06-28 14:42:00 +08:00
|
|
|
if ( right == NULL || right[0] == '\0' ) {
|
2003-05-30 13:24:39 +08:00
|
|
|
fprintf( stderr, "%s: line %d: "
|
|
|
|
"missing \"=\" in (or value after) \"%s\" "
|
|
|
|
"in by clause\n",
|
2001-10-29 16:14:12 +08:00
|
|
|
fname, lineno, left );
|
|
|
|
acl_usage();
|
|
|
|
}
|
|
|
|
|
2004-11-16 06:15:28 +08:00
|
|
|
if ( !BER_BVISNULL( &b->a_sockname_pat ) ) {
|
2003-05-30 13:24:39 +08:00
|
|
|
fprintf( stderr, "%s: line %d: "
|
|
|
|
"sockname pattern already specified.\n",
|
1999-07-22 04:54:23 +08:00
|
|
|
fname, lineno );
|
|
|
|
acl_usage();
|
|
|
|
}
|
1998-08-09 08:43:13 +08:00
|
|
|
|
2000-06-12 09:35:15 +08:00
|
|
|
b->a_sockname_style = sty;
|
2004-11-16 06:15:28 +08:00
|
|
|
if ( sty == ACL_STYLE_REGEX ) {
|
2002-04-16 04:44:05 +08:00
|
|
|
acl_regex_normalized_dn( right, &bv );
|
2002-04-02 16:18:30 +08:00
|
|
|
if ( !ber_bvccmp( &bv, '*' ) ) {
|
2004-11-16 06:15:28 +08:00
|
|
|
regtest( fname, lineno, bv.bv_val );
|
2002-04-02 16:18:30 +08:00
|
|
|
}
|
2002-01-28 19:41:07 +08:00
|
|
|
b->a_sockname_pat = bv;
|
2004-11-16 06:15:28 +08:00
|
|
|
|
2001-11-12 19:29:40 +08:00
|
|
|
} else {
|
2002-01-28 19:41:07 +08:00
|
|
|
ber_str2bv( right, 0, 1, &b->a_sockname_pat );
|
2000-06-12 09:35:15 +08:00
|
|
|
}
|
1999-07-22 04:54:23 +08:00
|
|
|
continue;
|
|
|
|
}
|
1998-08-09 08:43:13 +08:00
|
|
|
|
1999-07-22 04:54:23 +08:00
|
|
|
if ( strcasecmp( left, "domain" ) == 0 ) {
|
2002-04-03 23:42:19 +08:00
|
|
|
switch ( sty ) {
|
|
|
|
case ACL_STYLE_REGEX:
|
|
|
|
case ACL_STYLE_BASE:
|
|
|
|
case ACL_STYLE_SUBTREE:
|
2004-03-10 03:44:14 +08:00
|
|
|
/* legal, traditional */
|
|
|
|
break;
|
|
|
|
|
|
|
|
case ACL_STYLE_EXPAND:
|
|
|
|
/* tolerated: means exact,expand */
|
|
|
|
if ( expand ) {
|
|
|
|
fprintf( stderr,
|
|
|
|
"%s: line %d: "
|
2004-10-07 06:20:30 +08:00
|
|
|
"\"expand\" modifier "
|
|
|
|
"with \"expand\" style\n",
|
2004-03-10 03:44:14 +08:00
|
|
|
fname, lineno );
|
|
|
|
}
|
|
|
|
sty = ACL_STYLE_BASE;
|
|
|
|
expand = 1;
|
2002-04-03 23:42:19 +08:00
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
2004-03-10 03:44:14 +08:00
|
|
|
/* unknown */
|
2004-06-28 14:42:00 +08:00
|
|
|
fprintf( stderr, "%s: line %d: "
|
|
|
|
"inappropriate style \"%s\" in by clause\n",
|
2002-04-03 23:42:19 +08:00
|
|
|
fname, lineno, style );
|
|
|
|
acl_usage();
|
|
|
|
}
|
|
|
|
|
2004-06-28 14:42:00 +08:00
|
|
|
if ( right == NULL || right[0] == '\0' ) {
|
|
|
|
fprintf( stderr, "%s: line %d: "
|
|
|
|
"missing \"=\" in (or value after) \"%s\" "
|
|
|
|
"in by clause\n",
|
2001-10-29 16:14:12 +08:00
|
|
|
fname, lineno, left );
|
|
|
|
acl_usage();
|
|
|
|
}
|
|
|
|
|
2004-11-16 06:15:28 +08:00
|
|
|
if ( !BER_BVISEMPTY( &b->a_domain_pat ) ) {
|
1999-07-22 04:54:23 +08:00
|
|
|
fprintf( stderr,
|
|
|
|
"%s: line %d: domain pattern already specified.\n",
|
|
|
|
fname, lineno );
|
|
|
|
acl_usage();
|
|
|
|
}
|
|
|
|
|
2000-06-12 09:35:15 +08:00
|
|
|
b->a_domain_style = sty;
|
2002-04-03 23:42:19 +08:00
|
|
|
b->a_domain_expand = expand;
|
2004-11-16 06:15:28 +08:00
|
|
|
if ( sty == ACL_STYLE_REGEX ) {
|
2002-04-16 04:44:05 +08:00
|
|
|
acl_regex_normalized_dn( right, &bv );
|
2002-04-02 16:18:30 +08:00
|
|
|
if ( !ber_bvccmp( &bv, '*' ) ) {
|
2004-11-16 06:15:28 +08:00
|
|
|
regtest( fname, lineno, bv.bv_val );
|
2002-04-02 16:18:30 +08:00
|
|
|
}
|
2002-01-28 19:41:07 +08:00
|
|
|
b->a_domain_pat = bv;
|
2004-11-16 06:15:28 +08:00
|
|
|
|
2001-11-12 19:29:40 +08:00
|
|
|
} else {
|
2002-01-28 19:41:07 +08:00
|
|
|
ber_str2bv( right, 0, 1, &b->a_domain_pat );
|
2000-06-12 09:35:15 +08:00
|
|
|
}
|
1999-07-22 04:54:23 +08:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
1999-07-22 08:50:11 +08:00
|
|
|
if ( strcasecmp( left, "sockurl" ) == 0 ) {
|
2004-11-16 06:15:28 +08:00
|
|
|
switch ( sty ) {
|
2004-03-10 03:44:14 +08:00
|
|
|
case ACL_STYLE_REGEX:
|
|
|
|
case ACL_STYLE_BASE:
|
|
|
|
/* legal, traditional */
|
|
|
|
case ACL_STYLE_EXPAND:
|
|
|
|
/* cheap replacement to regex for simple expansion */
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
/* unknown */
|
|
|
|
fprintf( stderr, "%s: line %d: "
|
|
|
|
"inappropriate style \"%s\" in by clause\n",
|
2002-04-03 23:42:19 +08:00
|
|
|
fname, lineno, style );
|
|
|
|
acl_usage();
|
|
|
|
}
|
|
|
|
|
2004-06-28 14:42:00 +08:00
|
|
|
if ( right == NULL || right[0] == '\0' ) {
|
|
|
|
fprintf( stderr, "%s: line %d: "
|
|
|
|
"missing \"=\" in (or value after) \"%s\" "
|
|
|
|
"in by clause\n",
|
2001-10-29 16:14:12 +08:00
|
|
|
fname, lineno, left );
|
|
|
|
acl_usage();
|
|
|
|
}
|
|
|
|
|
2004-11-16 06:15:28 +08:00
|
|
|
if ( !BER_BVISEMPTY( &b->a_sockurl_pat ) ) {
|
1999-07-22 04:54:23 +08:00
|
|
|
fprintf( stderr,
|
1999-07-22 08:50:11 +08:00
|
|
|
"%s: line %d: sockurl pattern already specified.\n",
|
1999-07-22 04:54:23 +08:00
|
|
|
fname, lineno );
|
|
|
|
acl_usage();
|
|
|
|
}
|
|
|
|
|
2000-06-12 09:35:15 +08:00
|
|
|
b->a_sockurl_style = sty;
|
2004-11-16 06:15:28 +08:00
|
|
|
if ( sty == ACL_STYLE_REGEX ) {
|
2002-04-16 04:44:05 +08:00
|
|
|
acl_regex_normalized_dn( right, &bv );
|
2002-04-02 16:18:30 +08:00
|
|
|
if ( !ber_bvccmp( &bv, '*' ) ) {
|
2004-11-16 06:15:28 +08:00
|
|
|
regtest( fname, lineno, bv.bv_val );
|
2002-04-02 16:18:30 +08:00
|
|
|
}
|
2002-01-28 19:41:07 +08:00
|
|
|
b->a_sockurl_pat = bv;
|
2004-11-16 06:15:28 +08:00
|
|
|
|
2001-11-12 19:29:40 +08:00
|
|
|
} else {
|
2002-01-28 19:41:07 +08:00
|
|
|
ber_str2bv( right, 0, 1, &b->a_sockurl_pat );
|
2000-06-12 09:35:15 +08:00
|
|
|
}
|
1999-07-22 04:54:23 +08:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2000-06-30 05:41:54 +08:00
|
|
|
if ( strcasecmp( left, "set" ) == 0 ) {
|
2004-10-08 01:05:48 +08:00
|
|
|
switch ( sty ) {
|
|
|
|
/* deprecated */
|
|
|
|
case ACL_STYLE_REGEX:
|
|
|
|
fprintf( stderr, "%s: line %d: "
|
|
|
|
"deprecated set style "
|
|
|
|
"\"regex\" in <by> clause; "
|
|
|
|
"use \"expand\" instead\n",
|
|
|
|
fname, lineno );
|
|
|
|
sty = ACL_STYLE_EXPAND;
|
|
|
|
/* FALLTHRU */
|
|
|
|
|
|
|
|
case ACL_STYLE_BASE:
|
|
|
|
case ACL_STYLE_EXPAND:
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
2004-06-28 14:42:00 +08:00
|
|
|
fprintf( stderr, "%s: line %d: "
|
|
|
|
"inappropriate style \"%s\" in by clause\n",
|
2004-10-08 01:05:48 +08:00
|
|
|
fname, lineno, style );
|
2002-04-03 23:42:19 +08:00
|
|
|
acl_usage();
|
|
|
|
}
|
|
|
|
|
2004-11-16 06:15:28 +08:00
|
|
|
if ( !BER_BVISEMPTY( &b->a_set_pat ) ) {
|
2000-06-30 05:41:54 +08:00
|
|
|
fprintf( stderr,
|
|
|
|
"%s: line %d: set attribute already specified.\n",
|
|
|
|
fname, lineno );
|
|
|
|
acl_usage();
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( right == NULL || *right == '\0' ) {
|
|
|
|
fprintf( stderr,
|
|
|
|
"%s: line %d: no set is defined\n",
|
|
|
|
fname, lineno );
|
|
|
|
acl_usage();
|
|
|
|
}
|
|
|
|
|
|
|
|
b->a_set_style = sty;
|
2001-12-26 21:47:10 +08:00
|
|
|
ber_str2bv( right, 0, 1, &b->a_set_pat );
|
2000-06-30 05:41:54 +08:00
|
|
|
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2004-11-20 09:27:03 +08:00
|
|
|
#ifdef SLAP_DYNACL
|
|
|
|
{
|
|
|
|
char *name = NULL;
|
|
|
|
|
|
|
|
if ( strcasecmp( left, "aci" ) == 0 ) {
|
|
|
|
name = "aci";
|
|
|
|
|
|
|
|
} else if ( strncasecmp( left, "dynacl/", STRLENOF( "dynacl/" ) ) == 0 ) {
|
|
|
|
name = &left[ STRLENOF( "dynacl/" ) ];
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( name ) {
|
|
|
|
if ( slap_dynacl_config( fname, lineno, b, name, sty, right ) ) {
|
|
|
|
fprintf( stderr, "%s: line %d: "
|
|
|
|
"unable to configure dynacl \"%s\"\n",
|
|
|
|
fname, lineno, name );
|
|
|
|
acl_usage();
|
|
|
|
}
|
|
|
|
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#else /* ! SLAP_DYNACL */
|
|
|
|
|
1999-08-21 06:42:04 +08:00
|
|
|
#ifdef SLAPD_ACI_ENABLED
|
|
|
|
if ( strcasecmp( left, "aci" ) == 0 ) {
|
2002-04-03 23:42:19 +08:00
|
|
|
if (sty != ACL_STYLE_REGEX && sty != ACL_STYLE_BASE) {
|
2004-06-28 14:42:00 +08:00
|
|
|
fprintf( stderr, "%s: line %d: "
|
|
|
|
"inappropriate style \"%s\" in by clause\n",
|
2002-04-03 23:42:19 +08:00
|
|
|
fname, lineno, style );
|
|
|
|
acl_usage();
|
|
|
|
}
|
|
|
|
|
1999-08-21 06:42:04 +08:00
|
|
|
if( b->a_aci_at != NULL ) {
|
|
|
|
fprintf( stderr,
|
|
|
|
"%s: line %d: aci attribute already specified.\n",
|
|
|
|
fname, lineno );
|
|
|
|
acl_usage();
|
|
|
|
}
|
|
|
|
|
2000-01-29 15:00:39 +08:00
|
|
|
if ( right != NULL && *right != '\0' ) {
|
2000-02-15 04:57:34 +08:00
|
|
|
rc = slap_str2ad( right, &b->a_aci_at, &text );
|
|
|
|
|
|
|
|
if( rc != LDAP_SUCCESS ) {
|
|
|
|
fprintf( stderr,
|
|
|
|
"%s: line %d: aci \"%s\": %s\n",
|
|
|
|
fname, lineno, right, text );
|
|
|
|
acl_usage();
|
|
|
|
}
|
2000-05-28 03:33:08 +08:00
|
|
|
|
2000-05-29 06:17:34 +08:00
|
|
|
} else {
|
2002-01-13 13:00:59 +08:00
|
|
|
b->a_aci_at = slap_schema.si_ad_aci;
|
2000-01-29 04:01:00 +08:00
|
|
|
}
|
|
|
|
|
2000-05-29 06:17:34 +08:00
|
|
|
if( !is_at_syntax( b->a_aci_at->ad_type,
|
|
|
|
SLAPD_ACI_SYNTAX) )
|
|
|
|
{
|
2004-06-28 14:42:00 +08:00
|
|
|
fprintf( stderr, "%s: line %d: "
|
|
|
|
"aci \"%s\": inappropriate syntax: %s\n",
|
2000-05-29 06:17:34 +08:00
|
|
|
fname, lineno, right,
|
|
|
|
b->a_aci_at->ad_type->sat_syntax_oid );
|
2000-01-29 04:01:00 +08:00
|
|
|
acl_usage();
|
|
|
|
}
|
|
|
|
|
1999-08-21 06:42:04 +08:00
|
|
|
continue;
|
|
|
|
}
|
2000-01-29 04:01:00 +08:00
|
|
|
#endif /* SLAPD_ACI_ENABLED */
|
2004-11-20 09:27:03 +08:00
|
|
|
#endif /* ! SLAP_DYNACL */
|
1999-08-21 06:42:04 +08:00
|
|
|
|
2000-08-29 02:38:48 +08:00
|
|
|
if ( strcasecmp( left, "ssf" ) == 0 ) {
|
2004-11-16 06:15:28 +08:00
|
|
|
if ( sty != ACL_STYLE_REGEX && sty != ACL_STYLE_BASE ) {
|
2004-06-28 14:42:00 +08:00
|
|
|
fprintf( stderr, "%s: line %d: "
|
|
|
|
"inappropriate style \"%s\" in by clause\n",
|
2002-04-03 23:42:19 +08:00
|
|
|
fname, lineno, style );
|
|
|
|
acl_usage();
|
|
|
|
}
|
|
|
|
|
2004-11-16 06:15:28 +08:00
|
|
|
if ( b->a_authz.sai_ssf ) {
|
2000-08-29 02:38:48 +08:00
|
|
|
fprintf( stderr,
|
|
|
|
"%s: line %d: ssf attribute already specified.\n",
|
|
|
|
fname, lineno );
|
|
|
|
acl_usage();
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( right == NULL || *right == '\0' ) {
|
|
|
|
fprintf( stderr,
|
|
|
|
"%s: line %d: no ssf is defined\n",
|
|
|
|
fname, lineno );
|
|
|
|
acl_usage();
|
|
|
|
}
|
|
|
|
|
2004-06-19 03:12:00 +08:00
|
|
|
b->a_authz.sai_ssf = strtol( right, &next, 10 );
|
2004-06-18 17:11:53 +08:00
|
|
|
if ( next == NULL || next[0] != '\0' ) {
|
|
|
|
fprintf( stderr,
|
|
|
|
"%s: line %d: unable to parse ssf value (%s)\n",
|
|
|
|
fname, lineno, right );
|
|
|
|
acl_usage();
|
|
|
|
}
|
2000-08-29 02:38:48 +08:00
|
|
|
|
2004-11-16 06:15:28 +08:00
|
|
|
if ( !b->a_authz.sai_ssf ) {
|
2000-08-29 02:38:48 +08:00
|
|
|
fprintf( stderr,
|
|
|
|
"%s: line %d: invalid ssf value (%s)\n",
|
|
|
|
fname, lineno, right );
|
|
|
|
acl_usage();
|
|
|
|
}
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( strcasecmp( left, "transport_ssf" ) == 0 ) {
|
2004-11-16 06:15:28 +08:00
|
|
|
if ( sty != ACL_STYLE_REGEX && sty != ACL_STYLE_BASE ) {
|
2004-06-28 14:42:00 +08:00
|
|
|
fprintf( stderr, "%s: line %d: "
|
|
|
|
"inappropriate style \"%s\" in by clause\n",
|
2004-11-16 06:15:28 +08:00
|
|
|
fname, lineno, style );
|
2002-04-03 23:42:19 +08:00
|
|
|
acl_usage();
|
|
|
|
}
|
|
|
|
|
2004-11-16 06:15:28 +08:00
|
|
|
if ( b->a_authz.sai_transport_ssf ) {
|
2004-06-28 14:42:00 +08:00
|
|
|
fprintf( stderr, "%s: line %d: "
|
|
|
|
"transport_ssf attribute already specified.\n",
|
2000-08-29 02:38:48 +08:00
|
|
|
fname, lineno );
|
|
|
|
acl_usage();
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( right == NULL || *right == '\0' ) {
|
|
|
|
fprintf( stderr,
|
|
|
|
"%s: line %d: no transport_ssf is defined\n",
|
|
|
|
fname, lineno );
|
|
|
|
acl_usage();
|
|
|
|
}
|
|
|
|
|
2004-06-18 17:11:53 +08:00
|
|
|
b->a_authz.sai_transport_ssf = strtol( right, &next, 10 );
|
|
|
|
if ( next == NULL || next[0] != '\0' ) {
|
2004-06-28 14:42:00 +08:00
|
|
|
fprintf( stderr, "%s: line %d: "
|
|
|
|
"unable to parse transport_ssf value (%s)\n",
|
2004-06-18 17:11:53 +08:00
|
|
|
fname, lineno, right );
|
|
|
|
acl_usage();
|
|
|
|
}
|
2000-08-29 02:38:48 +08:00
|
|
|
|
2004-11-16 06:15:28 +08:00
|
|
|
if ( !b->a_authz.sai_transport_ssf ) {
|
2000-08-29 02:38:48 +08:00
|
|
|
fprintf( stderr,
|
|
|
|
"%s: line %d: invalid transport_ssf value (%s)\n",
|
|
|
|
fname, lineno, right );
|
|
|
|
acl_usage();
|
|
|
|
}
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( strcasecmp( left, "tls_ssf" ) == 0 ) {
|
2004-11-16 06:15:28 +08:00
|
|
|
if ( sty != ACL_STYLE_REGEX && sty != ACL_STYLE_BASE ) {
|
2004-06-28 14:42:00 +08:00
|
|
|
fprintf( stderr, "%s: line %d: "
|
|
|
|
"inappropriate style \"%s\" in by clause\n",
|
2004-11-16 06:15:28 +08:00
|
|
|
fname, lineno, style );
|
2002-04-03 23:42:19 +08:00
|
|
|
acl_usage();
|
|
|
|
}
|
|
|
|
|
2004-11-16 06:15:28 +08:00
|
|
|
if ( b->a_authz.sai_tls_ssf ) {
|
2004-06-28 14:42:00 +08:00
|
|
|
fprintf( stderr, "%s: line %d: "
|
|
|
|
"tls_ssf attribute already specified.\n",
|
2000-08-29 02:38:48 +08:00
|
|
|
fname, lineno );
|
|
|
|
acl_usage();
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( right == NULL || *right == '\0' ) {
|
|
|
|
fprintf( stderr,
|
|
|
|
"%s: line %d: no tls_ssf is defined\n",
|
|
|
|
fname, lineno );
|
|
|
|
acl_usage();
|
|
|
|
}
|
|
|
|
|
2004-06-18 17:11:53 +08:00
|
|
|
b->a_authz.sai_tls_ssf = strtol( right, &next, 10 );
|
|
|
|
if ( next == NULL || next[0] != '\0' ) {
|
2004-06-28 14:42:00 +08:00
|
|
|
fprintf( stderr, "%s: line %d: "
|
|
|
|
"unable to parse tls_ssf value (%s)\n",
|
2004-06-18 17:11:53 +08:00
|
|
|
fname, lineno, right );
|
|
|
|
acl_usage();
|
|
|
|
}
|
2000-08-29 02:38:48 +08:00
|
|
|
|
2004-11-16 06:15:28 +08:00
|
|
|
if ( !b->a_authz.sai_tls_ssf ) {
|
2000-08-29 02:38:48 +08:00
|
|
|
fprintf( stderr,
|
|
|
|
"%s: line %d: invalid tls_ssf value (%s)\n",
|
|
|
|
fname, lineno, right );
|
|
|
|
acl_usage();
|
|
|
|
}
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( strcasecmp( left, "sasl_ssf" ) == 0 ) {
|
2004-11-16 06:15:28 +08:00
|
|
|
if ( sty != ACL_STYLE_REGEX && sty != ACL_STYLE_BASE ) {
|
2004-06-28 14:42:00 +08:00
|
|
|
fprintf( stderr, "%s: line %d: "
|
|
|
|
"inappropriate style \"%s\" in by clause\n",
|
2004-11-16 06:15:28 +08:00
|
|
|
fname, lineno, style );
|
2002-04-03 23:42:19 +08:00
|
|
|
acl_usage();
|
|
|
|
}
|
|
|
|
|
2004-11-16 06:15:28 +08:00
|
|
|
if ( b->a_authz.sai_sasl_ssf ) {
|
2004-06-28 14:42:00 +08:00
|
|
|
fprintf( stderr, "%s: line %d: "
|
|
|
|
"sasl_ssf attribute already specified.\n",
|
2000-08-29 02:38:48 +08:00
|
|
|
fname, lineno );
|
|
|
|
acl_usage();
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( right == NULL || *right == '\0' ) {
|
|
|
|
fprintf( stderr,
|
|
|
|
"%s: line %d: no sasl_ssf is defined\n",
|
|
|
|
fname, lineno );
|
|
|
|
acl_usage();
|
|
|
|
}
|
|
|
|
|
2004-06-18 17:11:53 +08:00
|
|
|
b->a_authz.sai_sasl_ssf = strtol( right, &next, 10 );
|
|
|
|
if ( next == NULL || next[0] != '\0' ) {
|
2004-06-28 14:42:00 +08:00
|
|
|
fprintf( stderr, "%s: line %d: "
|
|
|
|
"unable to parse sasl_ssf value (%s)\n",
|
2004-06-18 17:11:53 +08:00
|
|
|
fname, lineno, right );
|
|
|
|
acl_usage();
|
|
|
|
}
|
2000-08-29 02:38:48 +08:00
|
|
|
|
2004-11-16 06:15:28 +08:00
|
|
|
if ( !b->a_authz.sai_sasl_ssf ) {
|
2000-08-29 02:38:48 +08:00
|
|
|
fprintf( stderr,
|
|
|
|
"%s: line %d: invalid sasl_ssf value (%s)\n",
|
|
|
|
fname, lineno, right );
|
|
|
|
acl_usage();
|
|
|
|
}
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2004-11-16 06:15:28 +08:00
|
|
|
if ( right != NULL ) {
|
1999-10-22 01:53:56 +08:00
|
|
|
/* unsplit */
|
|
|
|
right[-1] = '=';
|
1999-07-22 04:54:23 +08:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
1999-10-22 01:53:56 +08:00
|
|
|
|
2004-11-16 06:15:28 +08:00
|
|
|
if ( i == argc || ( strcasecmp( left, "stop" ) == 0 ) ) {
|
1999-10-22 01:53:56 +08:00
|
|
|
/* out of arguments or plain stop */
|
|
|
|
|
2004-11-16 06:15:28 +08:00
|
|
|
ACL_PRIV_ASSIGN( b->a_access_mask, ACL_PRIV_ADDITIVE );
|
1999-10-22 01:53:56 +08:00
|
|
|
b->a_type = ACL_STOP;
|
|
|
|
|
|
|
|
access_append( &a->acl_access, b );
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2004-11-16 06:15:28 +08:00
|
|
|
if ( strcasecmp( left, "continue" ) == 0 ) {
|
1999-10-22 01:53:56 +08:00
|
|
|
/* plain continue */
|
|
|
|
|
2004-11-16 06:15:28 +08:00
|
|
|
ACL_PRIV_ASSIGN( b->a_access_mask, ACL_PRIV_ADDITIVE );
|
1999-10-22 01:53:56 +08:00
|
|
|
b->a_type = ACL_CONTINUE;
|
|
|
|
|
|
|
|
access_append( &a->acl_access, b );
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2004-11-16 06:15:28 +08:00
|
|
|
if ( strcasecmp( left, "break" ) == 0 ) {
|
1999-10-22 01:53:56 +08:00
|
|
|
/* plain continue */
|
|
|
|
|
2000-08-26 09:14:05 +08:00
|
|
|
ACL_PRIV_ASSIGN(b->a_access_mask, ACL_PRIV_ADDITIVE);
|
1999-10-22 01:53:56 +08:00
|
|
|
b->a_type = ACL_BREAK;
|
|
|
|
|
|
|
|
access_append( &a->acl_access, b );
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( strcasecmp( left, "by" ) == 0 ) {
|
|
|
|
/* we've gone too far */
|
|
|
|
--i;
|
2004-11-16 06:15:28 +08:00
|
|
|
ACL_PRIV_ASSIGN( b->a_access_mask, ACL_PRIV_ADDITIVE );
|
1999-10-22 01:53:56 +08:00
|
|
|
b->a_type = ACL_STOP;
|
|
|
|
|
|
|
|
access_append( &a->acl_access, b );
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* get <access> */
|
2005-04-03 09:59:03 +08:00
|
|
|
if ( strncasecmp( left, "self", STRLENOF( "self" ) ) == 0 ) {
|
1999-10-22 01:53:56 +08:00
|
|
|
b->a_dn_self = 1;
|
2005-04-03 09:59:03 +08:00
|
|
|
ACL_PRIV_ASSIGN( b->a_access_mask, str2accessmask( &left[ STRLENOF( "self" ) ] ) );
|
|
|
|
|
|
|
|
} else if ( strncasecmp( left, "realself", STRLENOF( "realself" ) ) == 0 ) {
|
|
|
|
b->a_realdn_self = 1;
|
|
|
|
ACL_PRIV_ASSIGN( b->a_access_mask, str2accessmask( &left[ STRLENOF( "realself" ) ] ) );
|
1999-10-22 01:53:56 +08:00
|
|
|
|
|
|
|
} else {
|
2000-08-26 09:14:05 +08:00
|
|
|
ACL_PRIV_ASSIGN( b->a_access_mask, str2accessmask( left ) );
|
1999-10-22 01:53:56 +08:00
|
|
|
}
|
|
|
|
|
2004-11-16 06:15:28 +08:00
|
|
|
if ( ACL_IS_INVALID( b->a_access_mask ) ) {
|
1999-10-22 01:53:56 +08:00
|
|
|
fprintf( stderr,
|
|
|
|
"%s: line %d: expecting <access> got \"%s\"\n",
|
|
|
|
fname, lineno, left );
|
|
|
|
acl_usage();
|
|
|
|
}
|
|
|
|
|
|
|
|
b->a_type = ACL_STOP;
|
|
|
|
|
2004-11-16 06:15:28 +08:00
|
|
|
if ( ++i == argc ) {
|
1999-10-22 01:53:56 +08:00
|
|
|
/* out of arguments or plain stop */
|
|
|
|
access_append( &a->acl_access, b );
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2004-11-16 06:15:28 +08:00
|
|
|
if ( strcasecmp( argv[i], "continue" ) == 0 ) {
|
1999-10-22 01:53:56 +08:00
|
|
|
/* plain continue */
|
|
|
|
b->a_type = ACL_CONTINUE;
|
|
|
|
|
2004-11-16 06:15:28 +08:00
|
|
|
} else if ( strcasecmp( argv[i], "break" ) == 0 ) {
|
1999-10-22 01:53:56 +08:00
|
|
|
/* plain continue */
|
|
|
|
b->a_type = ACL_BREAK;
|
|
|
|
|
|
|
|
} else if ( strcasecmp( argv[i], "stop" ) != 0 ) {
|
|
|
|
/* gone to far */
|
|
|
|
i--;
|
|
|
|
}
|
|
|
|
|
|
|
|
access_append( &a->acl_access, b );
|
|
|
|
|
1998-08-09 08:43:13 +08:00
|
|
|
} else {
|
|
|
|
fprintf( stderr,
|
2004-11-16 06:15:28 +08:00
|
|
|
"%s: line %d: expecting \"to\" "
|
|
|
|
"or \"by\" got \"%s\"\n",
|
|
|
|
fname, lineno, argv[i] );
|
1998-08-09 08:43:13 +08:00
|
|
|
acl_usage();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* if we have no real access clause, complain and do nothing */
|
|
|
|
if ( a == NULL ) {
|
2004-06-28 14:42:00 +08:00
|
|
|
fprintf( stderr, "%s: line %d: "
|
|
|
|
"warning: no access clause(s) specified in access line\n",
|
|
|
|
fname, lineno );
|
1998-08-09 08:43:13 +08:00
|
|
|
|
|
|
|
} else {
|
1998-11-05 13:03:12 +08:00
|
|
|
#ifdef LDAP_DEBUG
|
2004-11-16 06:15:28 +08:00
|
|
|
if ( ldap_debug & LDAP_DEBUG_ACL ) {
|
|
|
|
print_acl( be, a );
|
|
|
|
}
|
1998-11-05 13:03:12 +08:00
|
|
|
#endif
|
1998-08-09 08:43:13 +08:00
|
|
|
|
|
|
|
if ( a->acl_access == NULL ) {
|
2004-06-28 14:42:00 +08:00
|
|
|
fprintf( stderr, "%s: line %d: "
|
|
|
|
"warning: no by clause(s) specified in access line\n",
|
2004-11-16 06:15:28 +08:00
|
|
|
fname, lineno );
|
1998-08-09 08:43:13 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
if ( be != NULL ) {
|
2004-12-01 06:50:07 +08:00
|
|
|
if ( !BER_BVISNULL( &be->be_nsuffix[ 1 ] ) ) {
|
|
|
|
fprintf( stderr, "%s: line %d: warning: "
|
|
|
|
"scope checking only applies to single-valued "
|
|
|
|
"suffix databases\n",
|
|
|
|
fname, lineno );
|
|
|
|
/* go ahead, since checking is not authoritative */
|
|
|
|
}
|
|
|
|
|
2004-04-21 03:16:21 +08:00
|
|
|
switch ( check_scope( be, a ) ) {
|
|
|
|
case ACL_SCOPE_UNKNOWN:
|
|
|
|
fprintf( stderr, "%s: line %d: warning: "
|
2004-06-28 14:42:00 +08:00
|
|
|
"cannot assess the validity of the ACL scope within "
|
|
|
|
"backend naming context\n",
|
|
|
|
fname, lineno );
|
2004-04-21 03:16:21 +08:00
|
|
|
break;
|
|
|
|
|
|
|
|
case ACL_SCOPE_WARN:
|
|
|
|
fprintf( stderr, "%s: line %d: warning: "
|
2004-06-28 14:42:00 +08:00
|
|
|
"ACL could be out of scope within backend naming context\n",
|
|
|
|
fname, lineno );
|
2004-04-21 03:16:21 +08:00
|
|
|
break;
|
|
|
|
|
|
|
|
case ACL_SCOPE_PARTIAL:
|
|
|
|
fprintf( stderr, "%s: line %d: warning: "
|
2004-06-28 14:42:00 +08:00
|
|
|
"ACL appears to be partially out of scope within "
|
|
|
|
"backend naming context\n",
|
|
|
|
fname, lineno );
|
2004-04-21 03:16:21 +08:00
|
|
|
break;
|
|
|
|
|
|
|
|
case ACL_SCOPE_ERR:
|
|
|
|
fprintf( stderr, "%s: line %d: warning: "
|
2004-06-28 14:42:00 +08:00
|
|
|
"ACL appears to be out of scope within "
|
|
|
|
"backend naming context\n",
|
|
|
|
fname, lineno );
|
2004-04-21 03:16:21 +08:00
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
2005-04-20 00:39:48 +08:00
|
|
|
acl_append( &be->be_acl, a, pos );
|
2004-11-16 06:15:28 +08:00
|
|
|
|
1998-08-09 08:43:13 +08:00
|
|
|
} else {
|
2005-04-20 00:39:48 +08:00
|
|
|
acl_append( &frontendDB->be_acl, a, pos );
|
1998-08-09 08:43:13 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
char *
|
2005-02-22 20:02:34 +08:00
|
|
|
accessmask2str( slap_mask_t mask, char *buf, int debug )
|
1998-08-09 08:43:13 +08:00
|
|
|
{
|
2004-11-16 06:15:28 +08:00
|
|
|
int none = 1;
|
|
|
|
char *ptr = buf;
|
1998-08-09 08:43:13 +08:00
|
|
|
|
1999-10-22 07:19:22 +08:00
|
|
|
assert( buf != NULL );
|
|
|
|
|
1999-10-22 01:53:56 +08:00
|
|
|
if ( ACL_IS_INVALID( mask ) ) {
|
|
|
|
return "invalid";
|
1998-08-09 08:43:13 +08:00
|
|
|
}
|
|
|
|
|
1999-10-22 01:53:56 +08:00
|
|
|
buf[0] = '\0';
|
|
|
|
|
|
|
|
if ( ACL_IS_LEVEL( mask ) ) {
|
|
|
|
if ( ACL_LVL_IS_NONE(mask) ) {
|
2002-07-27 08:24:02 +08:00
|
|
|
ptr = lutil_strcopy( ptr, "none" );
|
1999-10-22 01:53:56 +08:00
|
|
|
|
2005-01-08 13:26:18 +08:00
|
|
|
} else if ( ACL_LVL_IS_DISCLOSE(mask) ) {
|
|
|
|
ptr = lutil_strcopy( ptr, "disclose" );
|
|
|
|
|
1999-10-22 01:53:56 +08:00
|
|
|
} else if ( ACL_LVL_IS_AUTH(mask) ) {
|
2002-07-27 08:24:02 +08:00
|
|
|
ptr = lutil_strcopy( ptr, "auth" );
|
1999-10-22 01:53:56 +08:00
|
|
|
|
|
|
|
} else if ( ACL_LVL_IS_COMPARE(mask) ) {
|
2002-07-27 08:24:02 +08:00
|
|
|
ptr = lutil_strcopy( ptr, "compare" );
|
1999-10-22 01:53:56 +08:00
|
|
|
|
|
|
|
} else if ( ACL_LVL_IS_SEARCH(mask) ) {
|
2002-07-27 08:24:02 +08:00
|
|
|
ptr = lutil_strcopy( ptr, "search" );
|
1999-10-22 01:53:56 +08:00
|
|
|
|
|
|
|
} else if ( ACL_LVL_IS_READ(mask) ) {
|
2002-07-27 08:24:02 +08:00
|
|
|
ptr = lutil_strcopy( ptr, "read" );
|
1999-10-22 01:53:56 +08:00
|
|
|
|
|
|
|
} else if ( ACL_LVL_IS_WRITE(mask) ) {
|
2002-07-27 08:24:02 +08:00
|
|
|
ptr = lutil_strcopy( ptr, "write" );
|
2005-01-08 13:26:18 +08:00
|
|
|
|
2005-04-08 08:18:24 +08:00
|
|
|
} else if ( ACL_LVL_IS_WADD(mask) ) {
|
|
|
|
ptr = lutil_strcopy( ptr, "add" );
|
|
|
|
|
|
|
|
} else if ( ACL_LVL_IS_WDEL(mask) ) {
|
|
|
|
ptr = lutil_strcopy( ptr, "delete" );
|
|
|
|
|
2005-01-08 13:26:18 +08:00
|
|
|
} else if ( ACL_LVL_IS_MANAGE(mask) ) {
|
|
|
|
ptr = lutil_strcopy( ptr, "manage" );
|
|
|
|
|
1999-10-22 01:53:56 +08:00
|
|
|
} else {
|
2002-07-27 08:24:02 +08:00
|
|
|
ptr = lutil_strcopy( ptr, "unknown" );
|
1999-10-22 01:53:56 +08:00
|
|
|
}
|
|
|
|
|
2005-02-22 20:02:34 +08:00
|
|
|
if ( !debug ) {
|
|
|
|
*ptr = '\0';
|
|
|
|
return buf;
|
|
|
|
}
|
2001-12-27 00:25:18 +08:00
|
|
|
*ptr++ = '(';
|
1999-10-22 01:53:56 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
if( ACL_IS_ADDITIVE( mask ) ) {
|
2001-12-27 00:25:18 +08:00
|
|
|
*ptr++ = '+';
|
1999-10-22 01:53:56 +08:00
|
|
|
|
|
|
|
} else if( ACL_IS_SUBTRACTIVE( mask ) ) {
|
2001-12-27 00:25:18 +08:00
|
|
|
*ptr++ = '-';
|
1999-07-16 10:45:46 +08:00
|
|
|
|
1998-08-09 08:43:13 +08:00
|
|
|
} else {
|
2001-12-27 00:25:18 +08:00
|
|
|
*ptr++ = '=';
|
1998-08-09 08:43:13 +08:00
|
|
|
}
|
|
|
|
|
2005-01-08 13:26:18 +08:00
|
|
|
if ( ACL_PRIV_ISSET(mask, ACL_PRIV_MANAGE) ) {
|
|
|
|
none = 0;
|
|
|
|
*ptr++ = 'm';
|
|
|
|
}
|
|
|
|
|
1999-10-22 01:53:56 +08:00
|
|
|
if ( ACL_PRIV_ISSET(mask, ACL_PRIV_WRITE) ) {
|
|
|
|
none = 0;
|
2001-12-27 00:25:18 +08:00
|
|
|
*ptr++ = 'w';
|
1999-10-22 01:53:56 +08:00
|
|
|
|
2005-04-13 07:10:48 +08:00
|
|
|
} else if ( ACL_PRIV_ISSET(mask, ACL_PRIV_WADD) ) {
|
2005-04-08 08:18:24 +08:00
|
|
|
none = 0;
|
|
|
|
*ptr++ = 'a';
|
|
|
|
|
2005-04-13 07:10:48 +08:00
|
|
|
} else if ( ACL_PRIV_ISSET(mask, ACL_PRIV_WDEL) ) {
|
2005-04-08 08:18:24 +08:00
|
|
|
none = 0;
|
|
|
|
*ptr++ = 'z';
|
|
|
|
}
|
|
|
|
|
1999-10-22 01:53:56 +08:00
|
|
|
if ( ACL_PRIV_ISSET(mask, ACL_PRIV_READ) ) {
|
|
|
|
none = 0;
|
2001-12-27 00:25:18 +08:00
|
|
|
*ptr++ = 'r';
|
1999-10-22 01:53:56 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
if ( ACL_PRIV_ISSET(mask, ACL_PRIV_SEARCH) ) {
|
|
|
|
none = 0;
|
2001-12-27 00:25:18 +08:00
|
|
|
*ptr++ = 's';
|
1999-10-22 01:53:56 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
if ( ACL_PRIV_ISSET(mask, ACL_PRIV_COMPARE) ) {
|
|
|
|
none = 0;
|
2001-12-27 00:25:18 +08:00
|
|
|
*ptr++ = 'c';
|
1999-10-22 01:53:56 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
if ( ACL_PRIV_ISSET(mask, ACL_PRIV_AUTH) ) {
|
|
|
|
none = 0;
|
2001-12-27 00:25:18 +08:00
|
|
|
*ptr++ = 'x';
|
1999-10-22 01:53:56 +08:00
|
|
|
}
|
|
|
|
|
2005-01-08 13:26:18 +08:00
|
|
|
if ( ACL_PRIV_ISSET(mask, ACL_PRIV_DISCLOSE) ) {
|
|
|
|
none = 0;
|
|
|
|
*ptr++ = 'd';
|
|
|
|
}
|
|
|
|
|
1999-10-22 01:53:56 +08:00
|
|
|
if ( none && ACL_PRIV_ISSET(mask, ACL_PRIV_NONE) ) {
|
1999-10-22 02:44:26 +08:00
|
|
|
none = 0;
|
2005-04-08 08:18:24 +08:00
|
|
|
*ptr++ = '0';
|
1999-10-22 01:53:56 +08:00
|
|
|
}
|
|
|
|
|
1999-10-22 02:44:26 +08:00
|
|
|
if ( none ) {
|
2005-02-22 20:02:34 +08:00
|
|
|
ptr = buf;
|
1999-10-22 02:44:26 +08:00
|
|
|
}
|
|
|
|
|
1999-10-22 01:53:56 +08:00
|
|
|
if ( ACL_IS_LEVEL( mask ) ) {
|
2001-12-29 18:30:23 +08:00
|
|
|
*ptr++ = ')';
|
|
|
|
}
|
|
|
|
|
|
|
|
*ptr = '\0';
|
|
|
|
|
1999-10-22 01:53:56 +08:00
|
|
|
return buf;
|
1998-08-09 08:43:13 +08:00
|
|
|
}
|
|
|
|
|
2000-08-26 09:14:05 +08:00
|
|
|
slap_mask_t
|
1999-10-22 01:53:56 +08:00
|
|
|
str2accessmask( const char *str )
|
1998-08-09 08:43:13 +08:00
|
|
|
{
|
2000-08-26 09:14:05 +08:00
|
|
|
slap_mask_t mask;
|
1999-10-22 01:53:56 +08:00
|
|
|
|
2000-06-21 01:05:15 +08:00
|
|
|
if( !ASCII_ALPHA(str[0]) ) {
|
1999-10-22 01:53:56 +08:00
|
|
|
int i;
|
|
|
|
|
|
|
|
if ( str[0] == '=' ) {
|
|
|
|
ACL_INIT(mask);
|
|
|
|
|
|
|
|
} else if( str[0] == '+' ) {
|
|
|
|
ACL_PRIV_ASSIGN(mask, ACL_PRIV_ADDITIVE);
|
|
|
|
|
|
|
|
} else if( str[0] == '-' ) {
|
|
|
|
ACL_PRIV_ASSIGN(mask, ACL_PRIV_SUBSTRACTIVE);
|
1998-08-09 08:43:13 +08:00
|
|
|
|
1999-10-22 01:53:56 +08:00
|
|
|
} else {
|
|
|
|
ACL_INVALIDATE(mask);
|
|
|
|
return mask;
|
|
|
|
}
|
|
|
|
|
|
|
|
for( i=1; str[i] != '\0'; i++ ) {
|
2005-01-08 13:26:18 +08:00
|
|
|
if( TOLOWER((unsigned char) str[i]) == 'm' ) {
|
|
|
|
ACL_PRIV_SET(mask, ACL_PRIV_MANAGE);
|
|
|
|
|
|
|
|
} else if( TOLOWER((unsigned char) str[i]) == 'w' ) {
|
1999-10-22 01:53:56 +08:00
|
|
|
ACL_PRIV_SET(mask, ACL_PRIV_WRITE);
|
|
|
|
|
2005-04-08 08:18:24 +08:00
|
|
|
} else if( TOLOWER((unsigned char) str[i]) == 'a' ) {
|
|
|
|
ACL_PRIV_SET(mask, ACL_PRIV_WADD);
|
|
|
|
|
|
|
|
} else if( TOLOWER((unsigned char) str[i]) == 'z' ) {
|
|
|
|
ACL_PRIV_SET(mask, ACL_PRIV_WDEL);
|
|
|
|
|
2002-04-16 04:42:42 +08:00
|
|
|
} else if( TOLOWER((unsigned char) str[i]) == 'r' ) {
|
1999-10-22 01:53:56 +08:00
|
|
|
ACL_PRIV_SET(mask, ACL_PRIV_READ);
|
|
|
|
|
2002-04-16 04:42:42 +08:00
|
|
|
} else if( TOLOWER((unsigned char) str[i]) == 's' ) {
|
1999-10-22 01:53:56 +08:00
|
|
|
ACL_PRIV_SET(mask, ACL_PRIV_SEARCH);
|
|
|
|
|
2002-04-16 04:42:42 +08:00
|
|
|
} else if( TOLOWER((unsigned char) str[i]) == 'c' ) {
|
1999-10-22 01:53:56 +08:00
|
|
|
ACL_PRIV_SET(mask, ACL_PRIV_COMPARE);
|
|
|
|
|
2002-04-16 04:42:42 +08:00
|
|
|
} else if( TOLOWER((unsigned char) str[i]) == 'x' ) {
|
1999-10-22 01:53:56 +08:00
|
|
|
ACL_PRIV_SET(mask, ACL_PRIV_AUTH);
|
|
|
|
|
2005-01-08 13:26:18 +08:00
|
|
|
} else if( TOLOWER((unsigned char) str[i]) == 'd' ) {
|
|
|
|
ACL_PRIV_SET(mask, ACL_PRIV_DISCLOSE);
|
|
|
|
|
1999-10-22 02:44:26 +08:00
|
|
|
} else if( str[i] != '0' ) {
|
1999-10-22 01:53:56 +08:00
|
|
|
ACL_INVALIDATE(mask);
|
|
|
|
return mask;
|
|
|
|
}
|
|
|
|
}
|
1999-07-05 02:46:24 +08:00
|
|
|
|
1999-10-22 01:53:56 +08:00
|
|
|
return mask;
|
1998-08-09 08:43:13 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
if ( strcasecmp( str, "none" ) == 0 ) {
|
1999-10-22 01:53:56 +08:00
|
|
|
ACL_LVL_ASSIGN_NONE(mask);
|
|
|
|
|
2005-01-08 13:26:18 +08:00
|
|
|
} else if ( strcasecmp( str, "disclose" ) == 0 ) {
|
|
|
|
ACL_LVL_ASSIGN_DISCLOSE(mask);
|
|
|
|
|
1999-07-05 02:46:24 +08:00
|
|
|
} else if ( strcasecmp( str, "auth" ) == 0 ) {
|
1999-10-22 01:53:56 +08:00
|
|
|
ACL_LVL_ASSIGN_AUTH(mask);
|
|
|
|
|
1998-08-09 08:43:13 +08:00
|
|
|
} else if ( strcasecmp( str, "compare" ) == 0 ) {
|
1999-10-22 01:53:56 +08:00
|
|
|
ACL_LVL_ASSIGN_COMPARE(mask);
|
|
|
|
|
1998-08-09 08:43:13 +08:00
|
|
|
} else if ( strcasecmp( str, "search" ) == 0 ) {
|
1999-10-22 01:53:56 +08:00
|
|
|
ACL_LVL_ASSIGN_SEARCH(mask);
|
|
|
|
|
1998-08-09 08:43:13 +08:00
|
|
|
} else if ( strcasecmp( str, "read" ) == 0 ) {
|
1999-10-22 01:53:56 +08:00
|
|
|
ACL_LVL_ASSIGN_READ(mask);
|
|
|
|
|
2005-04-08 08:18:24 +08:00
|
|
|
} else if ( strcasecmp( str, "add" ) == 0 ) {
|
|
|
|
ACL_LVL_ASSIGN_WADD(mask);
|
|
|
|
|
|
|
|
} else if ( strcasecmp( str, "delete" ) == 0 ) {
|
|
|
|
ACL_LVL_ASSIGN_WDEL(mask);
|
|
|
|
|
1998-08-09 08:43:13 +08:00
|
|
|
} else if ( strcasecmp( str, "write" ) == 0 ) {
|
1999-10-22 01:53:56 +08:00
|
|
|
ACL_LVL_ASSIGN_WRITE(mask);
|
|
|
|
|
2005-01-08 13:26:18 +08:00
|
|
|
} else if ( strcasecmp( str, "manage" ) == 0 ) {
|
|
|
|
ACL_LVL_ASSIGN_MANAGE(mask);
|
|
|
|
|
1998-08-09 08:43:13 +08:00
|
|
|
} else {
|
1999-10-22 01:53:56 +08:00
|
|
|
ACL_INVALIDATE( mask );
|
1998-08-09 08:43:13 +08:00
|
|
|
}
|
|
|
|
|
1999-10-22 01:53:56 +08:00
|
|
|
return mask;
|
1998-08-09 08:43:13 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
Protoized, moved extern definitions to .h files, fixed related bugs.
Most function and variable definitions are now preceded by its extern
definition, for error checking. Retyped a number of functions, usually
to return void. Fixed a number of printf format errors.
API changes (in ldap/include):
Added avl_dup_ok, avl_prefixapply, removed ber_fatten (probably typo
for ber_flatten), retyped ldap_sort_strcasecmp, grew lutil.h.
A number of `extern' declarations are left (some added by protoize), to
be cleaned away later. Mostly strdup(), strcasecmp(), mktemp(), optind,
optarg, errno.
1998-11-16 06:40:11 +08:00
|
|
|
acl_usage( void )
|
1998-08-09 08:43:13 +08:00
|
|
|
{
|
2004-07-18 08:47:35 +08:00
|
|
|
fprintf( stderr, "%s%s%s\n",
|
1999-10-22 01:53:56 +08:00
|
|
|
"<access clause> ::= access to <what> "
|
2001-10-29 16:14:12 +08:00
|
|
|
"[ by <who> <access> [ <control> ] ]+ \n"
|
2003-05-30 13:24:39 +08:00
|
|
|
"<what> ::= * | [dn[.<dnstyle>]=<DN>] [filter=<filter>] [attrs=<attrlist>]\n"
|
2005-07-05 20:00:14 +08:00
|
|
|
"<attrlist> ::= <attr> [val[/matchingRule][.<attrstyle>]=<value>] | <attr> , <attrlist>\n"
|
2004-07-18 08:47:35 +08:00
|
|
|
"<attr> ::= <attrname> | entry | children\n",
|
2004-11-16 06:57:03 +08:00
|
|
|
"<who> ::= [ * | anonymous | users | self | dn[.<dnstyle>]=<DN> ]\n"
|
2005-04-04 20:24:50 +08:00
|
|
|
"\t[ realanonymous | realusers | realself | realdn[.<dnstyle>]=<DN> ]\n"
|
1999-07-22 08:50:11 +08:00
|
|
|
"\t[dnattr=<attrname>]\n"
|
2005-04-04 20:24:50 +08:00
|
|
|
"\t[realdnattr=<attrname>]\n"
|
2003-05-30 13:24:39 +08:00
|
|
|
"\t[group[/<objectclass>[/<attrname>]][.<style>]=<group>]\n"
|
2004-07-18 08:47:35 +08:00
|
|
|
"\t[peername[.<peernamestyle>]=<peer>] [sockname[.<style>]=<name>]\n"
|
2004-03-09 02:49:12 +08:00
|
|
|
"\t[domain[.<domainstyle>]=<domain>] [sockurl[.<style>]=<url>]\n"
|
1999-08-21 06:42:04 +08:00
|
|
|
#ifdef SLAPD_ACI_ENABLED
|
2005-04-04 20:24:50 +08:00
|
|
|
"\t[aci=[<attrname>]]\n"
|
1999-08-21 06:42:04 +08:00
|
|
|
#endif
|
2005-04-04 20:24:50 +08:00
|
|
|
#ifdef SLAP_DYNACL
|
|
|
|
"\t[dynacl/<name>[.<dynstyle>][=<pattern>]]\n"
|
|
|
|
#endif /* SLAP_DYNACL */
|
2004-07-18 08:47:35 +08:00
|
|
|
"\t[ssf=<n>] [transport_ssf=<n>] [tls_ssf=<n>] [sasl_ssf=<n>]\n",
|
2005-01-12 22:25:08 +08:00
|
|
|
"<style> ::= exact | regex | base(Object)\n"
|
2004-06-28 14:42:00 +08:00
|
|
|
"<dnstyle> ::= base(Object) | one(level) | sub(tree) | children | "
|
|
|
|
"exact | regex\n"
|
2005-01-12 22:25:08 +08:00
|
|
|
"<attrstyle> ::= exact | regex | base(Object) | one(level) | "
|
|
|
|
"sub(tree) | children\n"
|
2004-06-28 14:42:00 +08:00
|
|
|
"<peernamestyle> ::= exact | regex | ip | path\n"
|
|
|
|
"<domainstyle> ::= exact | regex | base(Object) | sub(tree)\n"
|
2005-04-04 20:24:50 +08:00
|
|
|
"<access> ::= [[real]self]{<level>|<priv>}\n"
|
2005-04-08 08:18:24 +08:00
|
|
|
"<level> ::= none|disclose|auth|compare|search|read|{write|add|delete}|manage\n"
|
|
|
|
"<priv> ::= {=|+|-}{0|d|x|c|s|r|{w|a|z}|m}+\n"
|
1999-10-22 01:53:56 +08:00
|
|
|
"<control> ::= [ stop | continue | break ]\n"
|
2003-05-30 13:24:39 +08:00
|
|
|
);
|
1999-08-04 02:14:24 +08:00
|
|
|
exit( EXIT_FAILURE );
|
1998-08-09 08:43:13 +08:00
|
|
|
}
|
|
|
|
|
2001-11-12 19:29:40 +08:00
|
|
|
/*
|
2002-04-16 04:44:05 +08:00
|
|
|
* Set pattern to a "normalized" DN from src.
|
2001-11-12 19:29:40 +08:00
|
|
|
* At present it simply eats the (optional) space after
|
|
|
|
* a RDN separator (,)
|
|
|
|
* Eventually will evolve in a more complete normalization
|
|
|
|
*/
|
2001-12-26 12:17:49 +08:00
|
|
|
static void
|
2001-11-12 19:29:40 +08:00
|
|
|
acl_regex_normalized_dn(
|
2002-04-16 04:44:05 +08:00
|
|
|
const char *src,
|
2004-06-28 14:42:00 +08:00
|
|
|
struct berval *pattern )
|
2001-11-12 19:29:40 +08:00
|
|
|
{
|
|
|
|
char *str, *p;
|
2002-04-16 04:44:05 +08:00
|
|
|
ber_len_t len;
|
2001-11-12 19:29:40 +08:00
|
|
|
|
2002-04-16 04:44:05 +08:00
|
|
|
str = ch_strdup( src );
|
|
|
|
len = strlen( src );
|
2001-11-12 19:29:40 +08:00
|
|
|
|
2004-06-28 14:42:00 +08:00
|
|
|
for ( p = str; p && p[0]; p++ ) {
|
2001-11-12 19:29:40 +08:00
|
|
|
/* escape */
|
2004-06-28 14:42:00 +08:00
|
|
|
if ( p[0] == '\\' && p[1] ) {
|
2001-12-29 02:18:16 +08:00
|
|
|
/*
|
|
|
|
* if escaping a hex pair we should
|
|
|
|
* increment p twice; however, in that
|
|
|
|
* case the second hex number does
|
|
|
|
* no harm
|
|
|
|
*/
|
2001-11-12 19:29:40 +08:00
|
|
|
p++;
|
|
|
|
}
|
|
|
|
|
2004-06-28 14:42:00 +08:00
|
|
|
if ( p[0] == ',' && p[1] == ' ' ) {
|
|
|
|
char *q;
|
2001-11-12 19:29:40 +08:00
|
|
|
|
2004-06-28 14:42:00 +08:00
|
|
|
/*
|
|
|
|
* too much space should be an error if we are pedantic
|
|
|
|
*/
|
|
|
|
for ( q = &p[2]; q[0] == ' '; q++ ) {
|
|
|
|
/* DO NOTHING */ ;
|
2001-11-12 19:29:40 +08:00
|
|
|
}
|
2004-06-28 14:42:00 +08:00
|
|
|
AC_MEMCPY( p+1, q, len-(q-str)+1);
|
2001-11-12 19:29:40 +08:00
|
|
|
}
|
|
|
|
}
|
2001-12-26 12:17:49 +08:00
|
|
|
pattern->bv_val = str;
|
2004-11-16 06:15:28 +08:00
|
|
|
pattern->bv_len = p - str;
|
2001-11-12 19:29:40 +08:00
|
|
|
|
2001-12-26 12:17:49 +08:00
|
|
|
return;
|
2001-11-12 19:29:40 +08:00
|
|
|
}
|
|
|
|
|
1998-08-09 08:43:13 +08:00
|
|
|
static void
|
|
|
|
split(
|
|
|
|
char *line,
|
|
|
|
int splitchar,
|
|
|
|
char **left,
|
2004-06-28 14:42:00 +08:00
|
|
|
char **right )
|
1998-08-09 08:43:13 +08:00
|
|
|
{
|
|
|
|
*left = line;
|
|
|
|
if ( (*right = strchr( line, splitchar )) != NULL ) {
|
|
|
|
*((*right)++) = '\0';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
1999-07-20 03:40:33 +08:00
|
|
|
access_append( Access **l, Access *a )
|
1998-08-09 08:43:13 +08:00
|
|
|
{
|
2004-06-28 14:42:00 +08:00
|
|
|
for ( ; *l != NULL; l = &(*l)->a_next ) {
|
|
|
|
; /* Empty */
|
|
|
|
}
|
1998-08-09 08:43:13 +08:00
|
|
|
|
|
|
|
*l = a;
|
|
|
|
}
|
|
|
|
|
1999-10-22 01:53:56 +08:00
|
|
|
void
|
2005-04-20 00:39:48 +08:00
|
|
|
acl_append( AccessControl **l, AccessControl *a, int pos )
|
1998-08-09 08:43:13 +08:00
|
|
|
{
|
2005-04-20 00:39:48 +08:00
|
|
|
int i;
|
|
|
|
|
|
|
|
for (i=0 ; i != pos && *l != NULL; l = &(*l)->acl_next, i++ ) {
|
2004-06-28 14:42:00 +08:00
|
|
|
; /* Empty */
|
|
|
|
}
|
2005-04-20 00:39:48 +08:00
|
|
|
if ( *l && a )
|
|
|
|
a->acl_next = *l;
|
1998-08-09 08:43:13 +08:00
|
|
|
*l = a;
|
|
|
|
}
|
|
|
|
|
2001-12-15 20:41:53 +08:00
|
|
|
static void
|
|
|
|
access_free( Access *a )
|
|
|
|
{
|
2004-11-16 06:15:28 +08:00
|
|
|
if ( !BER_BVISNULL( &a->a_dn_pat ) ) {
|
|
|
|
free( a->a_dn_pat.bv_val );
|
|
|
|
}
|
2005-04-03 09:59:03 +08:00
|
|
|
if ( !BER_BVISNULL( &a->a_realdn_pat ) ) {
|
|
|
|
free( a->a_realdn_pat.bv_val );
|
|
|
|
}
|
2004-11-16 06:15:28 +08:00
|
|
|
if ( !BER_BVISNULL( &a->a_peername_pat ) ) {
|
|
|
|
free( a->a_peername_pat.bv_val );
|
|
|
|
}
|
|
|
|
if ( !BER_BVISNULL( &a->a_sockname_pat ) ) {
|
|
|
|
free( a->a_sockname_pat.bv_val );
|
|
|
|
}
|
|
|
|
if ( !BER_BVISNULL( &a->a_domain_pat ) ) {
|
|
|
|
free( a->a_domain_pat.bv_val );
|
|
|
|
}
|
|
|
|
if ( !BER_BVISNULL( &a->a_sockurl_pat ) ) {
|
|
|
|
free( a->a_sockurl_pat.bv_val );
|
|
|
|
}
|
|
|
|
if ( !BER_BVISNULL( &a->a_set_pat ) ) {
|
|
|
|
free( a->a_set_pat.bv_val );
|
|
|
|
}
|
|
|
|
if ( !BER_BVISNULL( &a->a_group_pat ) ) {
|
|
|
|
free( a->a_group_pat.bv_val );
|
|
|
|
}
|
2001-12-15 20:41:53 +08:00
|
|
|
free( a );
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
acl_free( AccessControl *a )
|
|
|
|
{
|
|
|
|
Access *n;
|
2001-12-31 19:35:52 +08:00
|
|
|
AttributeName *an;
|
2001-12-15 20:41:53 +08:00
|
|
|
|
2004-11-16 06:15:28 +08:00
|
|
|
if ( a->acl_filter ) {
|
|
|
|
filter_free( a->acl_filter );
|
|
|
|
}
|
|
|
|
if ( !BER_BVISNULL( &a->acl_dn_pat ) ) {
|
|
|
|
free ( a->acl_dn_pat.bv_val );
|
|
|
|
}
|
2002-01-03 13:38:26 +08:00
|
|
|
if ( a->acl_attrs ) {
|
2004-11-16 06:15:28 +08:00
|
|
|
for ( an = a->acl_attrs; !BER_BVISNULL( &an->an_name ); an++ ) {
|
2002-01-03 13:38:26 +08:00
|
|
|
free( an->an_name.bv_val );
|
|
|
|
}
|
2001-12-31 19:35:52 +08:00
|
|
|
free( a->acl_attrs );
|
|
|
|
}
|
2004-11-16 06:15:28 +08:00
|
|
|
for ( ; a->acl_access; a->acl_access = n ) {
|
2001-12-15 20:41:53 +08:00
|
|
|
n = a->acl_access->a_next;
|
|
|
|
access_free( a->acl_access );
|
|
|
|
}
|
|
|
|
free( a );
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Because backend_startup uses acl_append to tack on the global_acl to
|
|
|
|
* the end of each backend's acl, we cannot just take one argument and
|
|
|
|
* merrily free our way to the end of the list. backend_destroy calls us
|
|
|
|
* with the be_acl in arg1, and global_acl in arg2 to give us a stopping
|
|
|
|
* point. config_destroy calls us with global_acl in arg1 and NULL in
|
|
|
|
* arg2, so we then proceed to polish off the global_acl.
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
acl_destroy( AccessControl *a, AccessControl *end )
|
|
|
|
{
|
|
|
|
AccessControl *n;
|
|
|
|
|
|
|
|
for (; a && a!= end; a=n) {
|
|
|
|
n = a->acl_next;
|
|
|
|
acl_free( a );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
1999-11-11 04:28:42 +08:00
|
|
|
char *
|
|
|
|
access2str( slap_access_t access )
|
|
|
|
{
|
|
|
|
if ( access == ACL_NONE ) {
|
|
|
|
return "none";
|
|
|
|
|
2005-01-08 13:26:18 +08:00
|
|
|
} else if ( access == ACL_DISCLOSE ) {
|
|
|
|
return "disclose";
|
|
|
|
|
1999-11-11 04:28:42 +08:00
|
|
|
} else if ( access == ACL_AUTH ) {
|
|
|
|
return "auth";
|
|
|
|
|
|
|
|
} else if ( access == ACL_COMPARE ) {
|
|
|
|
return "compare";
|
|
|
|
|
|
|
|
} else if ( access == ACL_SEARCH ) {
|
|
|
|
return "search";
|
|
|
|
|
|
|
|
} else if ( access == ACL_READ ) {
|
|
|
|
return "read";
|
|
|
|
|
|
|
|
} else if ( access == ACL_WRITE ) {
|
|
|
|
return "write";
|
2005-01-08 13:26:18 +08:00
|
|
|
|
2005-04-08 08:18:24 +08:00
|
|
|
} else if ( access == ACL_WADD ) {
|
|
|
|
return "add";
|
|
|
|
|
|
|
|
} else if ( access == ACL_WDEL ) {
|
|
|
|
return "delete";
|
|
|
|
|
2005-01-08 13:26:18 +08:00
|
|
|
} else if ( access == ACL_MANAGE ) {
|
|
|
|
return "manage";
|
|
|
|
|
1999-11-11 04:28:42 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
return "unknown";
|
|
|
|
}
|
|
|
|
|
|
|
|
slap_access_t
|
|
|
|
str2access( const char *str )
|
|
|
|
{
|
|
|
|
if ( strcasecmp( str, "none" ) == 0 ) {
|
|
|
|
return ACL_NONE;
|
|
|
|
|
2005-01-08 13:26:18 +08:00
|
|
|
} else if ( strcasecmp( str, "disclose" ) == 0 ) {
|
2005-04-10 01:00:40 +08:00
|
|
|
#ifndef SLAP_ACL_HONOR_DISCLOSE
|
|
|
|
fprintf( stderr, "str2access: warning, "
|
|
|
|
"\"disclose\" privilege disabled.\n" );
|
|
|
|
#endif /* SLAP_ACL_HONOR_DISCLOSE */
|
2005-01-08 13:26:18 +08:00
|
|
|
return ACL_DISCLOSE;
|
|
|
|
|
1999-11-11 04:28:42 +08:00
|
|
|
} else if ( strcasecmp( str, "auth" ) == 0 ) {
|
|
|
|
return ACL_AUTH;
|
|
|
|
|
|
|
|
} else if ( strcasecmp( str, "compare" ) == 0 ) {
|
|
|
|
return ACL_COMPARE;
|
|
|
|
|
|
|
|
} else if ( strcasecmp( str, "search" ) == 0 ) {
|
|
|
|
return ACL_SEARCH;
|
|
|
|
|
|
|
|
} else if ( strcasecmp( str, "read" ) == 0 ) {
|
|
|
|
return ACL_READ;
|
|
|
|
|
|
|
|
} else if ( strcasecmp( str, "write" ) == 0 ) {
|
|
|
|
return ACL_WRITE;
|
2005-01-08 13:26:18 +08:00
|
|
|
|
2005-04-08 08:18:24 +08:00
|
|
|
} else if ( strcasecmp( str, "add" ) == 0 ) {
|
|
|
|
return ACL_WADD;
|
|
|
|
|
|
|
|
} else if ( strcasecmp( str, "delete" ) == 0 ) {
|
|
|
|
return ACL_WDEL;
|
|
|
|
|
2005-01-08 13:26:18 +08:00
|
|
|
} else if ( strcasecmp( str, "manage" ) == 0 ) {
|
|
|
|
return ACL_MANAGE;
|
1999-11-11 04:28:42 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
return( ACL_INVALID_ACCESS );
|
|
|
|
}
|
|
|
|
|
2005-02-22 20:02:34 +08:00
|
|
|
#define ACLBUF_MAXLEN 8192
|
1998-08-09 08:43:13 +08:00
|
|
|
|
2005-02-22 20:02:34 +08:00
|
|
|
static char aclbuf[ACLBUF_MAXLEN];
|
|
|
|
|
2005-04-03 09:59:03 +08:00
|
|
|
static char *
|
|
|
|
dnaccess2text( slap_dn_access *bdn, char *ptr, int is_realdn )
|
|
|
|
{
|
|
|
|
*ptr++ = ' ';
|
|
|
|
|
|
|
|
if ( is_realdn ) {
|
|
|
|
ptr = lutil_strcopy( ptr, "real" );
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( ber_bvccmp( &bdn->a_pat, '*' ) ||
|
|
|
|
bdn->a_style == ACL_STYLE_ANONYMOUS ||
|
|
|
|
bdn->a_style == ACL_STYLE_USERS ||
|
|
|
|
bdn->a_style == ACL_STYLE_SELF )
|
|
|
|
{
|
|
|
|
if ( is_realdn ) {
|
|
|
|
assert( ! ber_bvccmp( &bdn->a_pat, '*' ) );
|
|
|
|
}
|
|
|
|
|
|
|
|
ptr = lutil_strcopy( ptr, bdn->a_pat.bv_val );
|
|
|
|
if ( bdn->a_style == ACL_STYLE_SELF && bdn->a_self_level != 0 ) {
|
|
|
|
int n = sprintf( ptr, ".level{%d}", bdn->a_self_level );
|
|
|
|
if ( n > 0 ) {
|
|
|
|
ptr += n;
|
|
|
|
} /* else ? */
|
|
|
|
}
|
|
|
|
|
|
|
|
} else {
|
|
|
|
ptr = lutil_strcopy( ptr, "dn." );
|
2005-05-10 08:51:28 +08:00
|
|
|
if ( bdn->a_style == ACL_STYLE_BASE )
|
|
|
|
ptr = lutil_strcopy( ptr, style_base );
|
|
|
|
else
|
|
|
|
ptr = lutil_strcopy( ptr, style_strings[bdn->a_style] );
|
2005-04-03 09:59:03 +08:00
|
|
|
if ( bdn->a_style == ACL_STYLE_LEVEL ) {
|
|
|
|
int n = sprintf( ptr, "{%d}", bdn->a_level );
|
|
|
|
if ( n > 0 ) {
|
|
|
|
ptr += n;
|
|
|
|
} /* else ? */
|
|
|
|
}
|
|
|
|
if ( bdn->a_expand ) {
|
|
|
|
ptr = lutil_strcopy( ptr, ",expand" );
|
|
|
|
}
|
|
|
|
*ptr++ = '=';
|
|
|
|
*ptr++ = '"';
|
|
|
|
ptr = lutil_strcopy( ptr, bdn->a_pat.bv_val );
|
|
|
|
*ptr++ = '"';
|
|
|
|
}
|
|
|
|
return ptr;
|
|
|
|
}
|
|
|
|
|
2005-02-22 20:02:34 +08:00
|
|
|
static char *
|
|
|
|
access2text( Access *b, char *ptr )
|
1998-08-09 08:43:13 +08:00
|
|
|
{
|
1999-10-22 07:19:22 +08:00
|
|
|
char maskbuf[ACCESSMASK_MAXLEN];
|
|
|
|
|
2005-02-22 20:02:34 +08:00
|
|
|
ptr = lutil_strcopy( ptr, "\tby" );
|
1998-12-05 03:29:17 +08:00
|
|
|
|
2004-11-16 06:15:28 +08:00
|
|
|
if ( !BER_BVISEMPTY( &b->a_dn_pat ) ) {
|
2005-04-03 09:59:03 +08:00
|
|
|
ptr = dnaccess2text( &b->a_dn, ptr, 0 );
|
1999-07-22 04:54:23 +08:00
|
|
|
}
|
2005-04-21 15:15:02 +08:00
|
|
|
if ( b->a_dn_at ) {
|
|
|
|
ptr = lutil_strcopy( ptr, " dnattr=" );
|
|
|
|
ptr = lutil_strcopy( ptr, b->a_dn_at->ad_cname.bv_val );
|
|
|
|
}
|
1999-07-22 04:54:23 +08:00
|
|
|
|
2005-04-03 09:59:03 +08:00
|
|
|
if ( !BER_BVISEMPTY( &b->a_realdn_pat ) ) {
|
|
|
|
ptr = dnaccess2text( &b->a_realdn, ptr, 1 );
|
1999-07-22 04:54:23 +08:00
|
|
|
}
|
2005-04-21 15:15:02 +08:00
|
|
|
if ( b->a_realdn_at ) {
|
|
|
|
ptr = lutil_strcopy( ptr, " realdnattr=" );
|
|
|
|
ptr = lutil_strcopy( ptr, b->a_realdn_at->ad_cname.bv_val );
|
|
|
|
}
|
1999-07-22 04:54:23 +08:00
|
|
|
|
2004-11-16 06:15:28 +08:00
|
|
|
if ( !BER_BVISEMPTY( &b->a_group_pat ) ) {
|
2005-02-22 20:02:34 +08:00
|
|
|
ptr = lutil_strcopy( ptr, " group/" );
|
|
|
|
ptr = lutil_strcopy( ptr, b->a_group_oc ?
|
|
|
|
b->a_group_oc->soc_cname.bv_val : "groupOfNames" );
|
|
|
|
*ptr++ = '/';
|
|
|
|
ptr = lutil_strcopy( ptr, b->a_group_at ?
|
|
|
|
b->a_group_at->ad_cname.bv_val : "member" );
|
|
|
|
*ptr++ = '.';
|
|
|
|
ptr = lutil_strcopy( ptr, style_strings[b->a_group_style] );
|
|
|
|
*ptr++ = '=';
|
|
|
|
*ptr++ = '"';
|
|
|
|
ptr = lutil_strcopy( ptr, b->a_group_pat.bv_val );
|
|
|
|
*ptr++ = '"';
|
2004-11-16 06:15:28 +08:00
|
|
|
}
|
1999-07-22 04:54:23 +08:00
|
|
|
|
2004-11-16 06:15:28 +08:00
|
|
|
if ( !BER_BVISEMPTY( &b->a_peername_pat ) ) {
|
2005-05-10 08:32:43 +08:00
|
|
|
ptr = lutil_strcopy( ptr, " peername" );
|
|
|
|
*ptr++ = '.';
|
|
|
|
ptr = lutil_strcopy( ptr, style_strings[b->a_peername_style] );
|
|
|
|
*ptr++ = '=';
|
|
|
|
*ptr++ = '"';
|
2005-02-22 20:02:34 +08:00
|
|
|
ptr = lutil_strcopy( ptr, b->a_peername_pat.bv_val );
|
|
|
|
*ptr++ = '"';
|
1999-07-22 04:54:23 +08:00
|
|
|
}
|
1999-10-22 01:53:56 +08:00
|
|
|
|
2004-11-16 06:15:28 +08:00
|
|
|
if ( !BER_BVISEMPTY( &b->a_sockname_pat ) ) {
|
2005-05-10 08:32:43 +08:00
|
|
|
ptr = lutil_strcopy( ptr, " sockname" );
|
|
|
|
*ptr++ = '.';
|
|
|
|
ptr = lutil_strcopy( ptr, style_strings[b->a_sockname_style] );
|
|
|
|
*ptr++ = '=';
|
|
|
|
*ptr++ = '"';
|
2005-02-22 20:02:34 +08:00
|
|
|
ptr = lutil_strcopy( ptr, b->a_sockname_pat.bv_val );
|
|
|
|
*ptr++ = '"';
|
1999-07-22 04:54:23 +08:00
|
|
|
}
|
|
|
|
|
2004-11-16 06:15:28 +08:00
|
|
|
if ( !BER_BVISEMPTY( &b->a_domain_pat ) ) {
|
2005-05-10 08:32:43 +08:00
|
|
|
ptr = lutil_strcopy( ptr, " domain" );
|
|
|
|
*ptr++ = '.';
|
|
|
|
ptr = lutil_strcopy( ptr, style_strings[b->a_domain_style] );
|
|
|
|
if ( b->a_domain_expand ) {
|
|
|
|
ptr = lutil_strcopy( ptr, ",expand" );
|
|
|
|
}
|
|
|
|
*ptr++ = '=';
|
2005-02-22 20:02:34 +08:00
|
|
|
ptr = lutil_strcopy( ptr, b->a_domain_pat.bv_val );
|
1999-07-22 04:54:23 +08:00
|
|
|
}
|
|
|
|
|
2004-11-16 06:15:28 +08:00
|
|
|
if ( !BER_BVISEMPTY( &b->a_sockurl_pat ) ) {
|
2005-05-10 08:32:43 +08:00
|
|
|
ptr = lutil_strcopy( ptr, " sockurl" );
|
|
|
|
*ptr++ = '.';
|
|
|
|
ptr = lutil_strcopy( ptr, style_strings[b->a_sockurl_style] );
|
|
|
|
*ptr++ = '=';
|
|
|
|
*ptr++ = '"';
|
2005-02-22 20:02:34 +08:00
|
|
|
ptr = lutil_strcopy( ptr, b->a_sockurl_pat.bv_val );
|
|
|
|
*ptr++ = '"';
|
1999-07-22 04:54:23 +08:00
|
|
|
}
|
|
|
|
|
2004-11-16 06:15:28 +08:00
|
|
|
if ( !BER_BVISEMPTY( &b->a_set_pat ) ) {
|
2005-05-10 08:32:43 +08:00
|
|
|
ptr = lutil_strcopy( ptr, " set" );
|
|
|
|
*ptr++ = '.';
|
|
|
|
ptr = lutil_strcopy( ptr, style_strings[b->a_set_style] );
|
|
|
|
*ptr++ = '=';
|
|
|
|
*ptr++ = '"';
|
2005-02-22 20:02:34 +08:00
|
|
|
ptr = lutil_strcopy( ptr, b->a_set_pat.bv_val );
|
|
|
|
*ptr++ = '"';
|
2004-03-08 19:09:49 +08:00
|
|
|
}
|
|
|
|
|
2004-11-20 09:27:03 +08:00
|
|
|
#ifdef SLAP_DYNACL
|
|
|
|
if ( b->a_dynacl ) {
|
|
|
|
slap_dynacl_t *da;
|
|
|
|
|
|
|
|
for ( da = b->a_dynacl; da; da = da->da_next ) {
|
2005-02-22 20:02:34 +08:00
|
|
|
if ( da->da_unparse ) {
|
|
|
|
struct berval bv;
|
|
|
|
(void)( *da->da_unparse )( da->da_private, &bv );
|
|
|
|
ptr = lutil_strcopy( ptr, bv.bv_val );
|
|
|
|
ch_free( bv.bv_val );
|
2004-11-20 09:27:03 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#else /* ! SLAP_DYNACL */
|
1999-08-21 06:42:04 +08:00
|
|
|
#ifdef SLAPD_ACI_ENABLED
|
|
|
|
if ( b->a_aci_at != NULL ) {
|
2005-02-22 20:02:34 +08:00
|
|
|
ptr = lutil_strcopy( ptr, " aci=" );
|
|
|
|
ptr = lutil_strcopy( ptr, b->a_aci_at->ad_cname.bv_val );
|
1999-08-21 06:42:04 +08:00
|
|
|
}
|
|
|
|
#endif
|
2004-11-20 09:27:03 +08:00
|
|
|
#endif /* SLAP_DYNACL */
|
1999-08-21 06:42:04 +08:00
|
|
|
|
2000-08-29 02:38:48 +08:00
|
|
|
/* Security Strength Factors */
|
|
|
|
if ( b->a_authz.sai_ssf ) {
|
2005-02-22 20:02:34 +08:00
|
|
|
ptr += sprintf( ptr, " ssf=%u",
|
2000-08-29 02:38:48 +08:00
|
|
|
b->a_authz.sai_ssf );
|
|
|
|
}
|
|
|
|
if ( b->a_authz.sai_transport_ssf ) {
|
2005-02-22 20:02:34 +08:00
|
|
|
ptr += sprintf( ptr, " transport_ssf=%u",
|
2000-08-29 02:38:48 +08:00
|
|
|
b->a_authz.sai_transport_ssf );
|
|
|
|
}
|
|
|
|
if ( b->a_authz.sai_tls_ssf ) {
|
2005-02-22 20:02:34 +08:00
|
|
|
ptr += sprintf( ptr, " tls_ssf=%u",
|
2000-08-29 02:38:48 +08:00
|
|
|
b->a_authz.sai_tls_ssf );
|
|
|
|
}
|
|
|
|
if ( b->a_authz.sai_sasl_ssf ) {
|
2005-02-22 20:02:34 +08:00
|
|
|
ptr += sprintf( ptr, " sasl_ssf=%u",
|
2000-08-29 02:38:48 +08:00
|
|
|
b->a_authz.sai_sasl_ssf );
|
|
|
|
}
|
|
|
|
|
2005-02-22 20:02:34 +08:00
|
|
|
*ptr++ = ' ';
|
2005-04-03 09:59:03 +08:00
|
|
|
if ( b->a_dn_self ) {
|
|
|
|
ptr = lutil_strcopy( ptr, "self" );
|
|
|
|
} else if ( b->a_realdn_self ) {
|
|
|
|
ptr = lutil_strcopy( ptr, "realself" );
|
|
|
|
}
|
2005-02-22 20:02:34 +08:00
|
|
|
ptr = lutil_strcopy( ptr, accessmask2str( b->a_access_mask, maskbuf, 0 ));
|
|
|
|
if ( !maskbuf[0] ) ptr--;
|
1999-10-22 01:53:56 +08:00
|
|
|
|
1999-10-22 02:44:26 +08:00
|
|
|
if( b->a_type == ACL_BREAK ) {
|
2005-02-22 20:02:34 +08:00
|
|
|
ptr = lutil_strcopy( ptr, " break" );
|
1999-10-22 02:44:26 +08:00
|
|
|
|
|
|
|
} else if( b->a_type == ACL_CONTINUE ) {
|
2005-02-22 20:02:34 +08:00
|
|
|
ptr = lutil_strcopy( ptr, " continue" );
|
1999-10-22 02:44:26 +08:00
|
|
|
|
|
|
|
} else if( b->a_type != ACL_STOP ) {
|
2005-02-22 20:02:34 +08:00
|
|
|
ptr = lutil_strcopy( ptr, " unknown-control" );
|
|
|
|
} else {
|
|
|
|
if ( !maskbuf[0] ) ptr = lutil_strcopy( ptr, " stop" );
|
1999-10-22 02:44:26 +08:00
|
|
|
}
|
2005-02-22 20:02:34 +08:00
|
|
|
*ptr++ = '\n';
|
1999-10-22 02:44:26 +08:00
|
|
|
|
2005-02-22 20:02:34 +08:00
|
|
|
return ptr;
|
1998-08-09 08:43:13 +08:00
|
|
|
}
|
|
|
|
|
2005-02-22 20:02:34 +08:00
|
|
|
void
|
|
|
|
acl_unparse( AccessControl *a, struct berval *bv )
|
1998-08-09 08:43:13 +08:00
|
|
|
{
|
2005-04-12 05:35:34 +08:00
|
|
|
Access *b;
|
|
|
|
char *ptr;
|
|
|
|
int to = 0;
|
1998-08-09 08:43:13 +08:00
|
|
|
|
2005-02-22 20:02:34 +08:00
|
|
|
bv->bv_val = aclbuf;
|
|
|
|
bv->bv_len = 0;
|
1999-10-22 01:53:56 +08:00
|
|
|
|
2005-02-22 20:02:34 +08:00
|
|
|
ptr = bv->bv_val;
|
|
|
|
|
2005-03-02 07:17:54 +08:00
|
|
|
ptr = lutil_strcopy( ptr, "to" );
|
2005-02-22 20:02:34 +08:00
|
|
|
if ( !BER_BVISNULL( &a->acl_dn_pat ) ) {
|
1999-10-22 01:53:56 +08:00
|
|
|
to++;
|
2005-02-22 20:02:34 +08:00
|
|
|
ptr = lutil_strcopy( ptr, " dn." );
|
2005-05-10 08:51:28 +08:00
|
|
|
if ( a->acl_dn_style == ACL_STYLE_BASE )
|
|
|
|
ptr = lutil_strcopy( ptr, style_base );
|
|
|
|
else
|
|
|
|
ptr = lutil_strcopy( ptr, style_strings[a->acl_dn_style] );
|
2005-02-22 20:02:34 +08:00
|
|
|
*ptr++ = '=';
|
|
|
|
*ptr++ = '"';
|
|
|
|
ptr = lutil_strcopy( ptr, a->acl_dn_pat.bv_val );
|
|
|
|
ptr = lutil_strcopy( ptr, "\"\n" );
|
1998-08-09 08:43:13 +08:00
|
|
|
}
|
1999-10-22 01:53:56 +08:00
|
|
|
|
1998-08-09 08:43:13 +08:00
|
|
|
if ( a->acl_filter != NULL ) {
|
2004-11-16 06:15:28 +08:00
|
|
|
struct berval bv = BER_BVNULL;
|
|
|
|
|
1999-10-22 01:53:56 +08:00
|
|
|
to++;
|
2002-03-11 01:41:14 +08:00
|
|
|
filter2bv( a->acl_filter, &bv );
|
2005-02-22 20:02:34 +08:00
|
|
|
ptr = lutil_strcopy( ptr, " filter=\"" );
|
|
|
|
ptr = lutil_strcopy( ptr, bv.bv_val );
|
|
|
|
*ptr++ = '"';
|
|
|
|
*ptr++ = '\n';
|
2002-03-11 01:41:14 +08:00
|
|
|
ch_free( bv.bv_val );
|
1998-08-09 08:43:13 +08:00
|
|
|
}
|
1999-10-22 01:53:56 +08:00
|
|
|
|
1998-08-09 08:43:13 +08:00
|
|
|
if ( a->acl_attrs != NULL ) {
|
2001-12-31 19:35:52 +08:00
|
|
|
int first = 1;
|
|
|
|
AttributeName *an;
|
1999-10-22 01:53:56 +08:00
|
|
|
to++;
|
1998-08-09 08:43:13 +08:00
|
|
|
|
2005-02-22 20:02:34 +08:00
|
|
|
ptr = lutil_strcopy( ptr, " attrs=" );
|
2004-11-16 06:15:28 +08:00
|
|
|
for ( an = a->acl_attrs; an && !BER_BVISNULL( &an->an_name ); an++ ) {
|
2005-02-22 20:02:34 +08:00
|
|
|
if ( ! first ) *ptr++ = ',';
|
2003-12-16 08:49:10 +08:00
|
|
|
if (an->an_oc) {
|
2005-02-22 20:02:34 +08:00
|
|
|
*ptr++ = an->an_oc_exclude ? '!' : '@';
|
|
|
|
ptr = lutil_strcopy( ptr, an->an_oc->soc_cname.bv_val );
|
2004-12-03 16:41:06 +08:00
|
|
|
|
|
|
|
} else {
|
2005-02-22 20:02:34 +08:00
|
|
|
ptr = lutil_strcopy( ptr, an->an_name.bv_val );
|
2003-12-16 08:49:10 +08:00
|
|
|
}
|
1998-08-09 08:43:13 +08:00
|
|
|
first = 0;
|
|
|
|
}
|
2005-02-22 20:02:34 +08:00
|
|
|
*ptr++ = '\n';
|
1998-08-09 08:43:13 +08:00
|
|
|
}
|
1999-10-22 01:53:56 +08:00
|
|
|
|
2004-11-16 06:15:28 +08:00
|
|
|
if ( !BER_BVISEMPTY( &a->acl_attrval ) ) {
|
2003-09-20 11:23:10 +08:00
|
|
|
to++;
|
2005-02-22 20:02:34 +08:00
|
|
|
ptr = lutil_strcopy( ptr, " val." );
|
2005-05-10 08:51:28 +08:00
|
|
|
if ( a->acl_attrval_style == ACL_STYLE_BASE &&
|
|
|
|
a->acl_attrs[0].an_desc->ad_type->sat_syntax ==
|
|
|
|
slap_schema.si_syn_distinguishedName )
|
|
|
|
ptr = lutil_strcopy( ptr, style_base );
|
|
|
|
else
|
|
|
|
ptr = lutil_strcopy( ptr, style_strings[a->acl_attrval_style] );
|
2005-02-22 20:02:34 +08:00
|
|
|
*ptr++ = '=';
|
|
|
|
*ptr++ = '"';
|
|
|
|
ptr = lutil_strcopy( ptr, a->acl_attrval.bv_val );
|
|
|
|
*ptr++ = '"';
|
|
|
|
*ptr++ = '\n';
|
2003-09-20 11:23:10 +08:00
|
|
|
}
|
|
|
|
|
2005-02-22 20:02:34 +08:00
|
|
|
if( !to ) {
|
|
|
|
ptr = lutil_strcopy( ptr, " *\n" );
|
|
|
|
}
|
1999-10-22 01:53:56 +08:00
|
|
|
|
1998-08-09 08:43:13 +08:00
|
|
|
for ( b = a->acl_access; b != NULL; b = b->a_next ) {
|
2005-02-22 20:02:34 +08:00
|
|
|
ptr = access2text( b, ptr );
|
1998-08-09 08:43:13 +08:00
|
|
|
}
|
2005-02-22 20:02:34 +08:00
|
|
|
*ptr = '\0';
|
|
|
|
bv->bv_len = ptr - bv->bv_val;
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef LDAP_DEBUG
|
|
|
|
|
|
|
|
static void
|
|
|
|
print_acl( Backend *be, AccessControl *a )
|
|
|
|
{
|
|
|
|
struct berval bv;
|
1999-10-22 01:53:56 +08:00
|
|
|
|
2005-02-22 20:02:34 +08:00
|
|
|
acl_unparse( a, &bv );
|
2005-03-02 07:17:54 +08:00
|
|
|
fprintf( stderr, "%s ACL: access %s\n",
|
2005-02-22 20:02:34 +08:00
|
|
|
be == NULL ? "Global" : "Backend", bv.bv_val );
|
1998-08-09 08:43:13 +08:00
|
|
|
}
|
1998-08-21 14:33:42 +08:00
|
|
|
#endif /* LDAP_DEBUG */
|