2001-07-28 19:24:22 +08:00
|
|
|
/* limits.c - routines to handle regex-based size and time limits */
|
2003-11-30 01:29:44 +08:00
|
|
|
/* $OpenLDAP$ */
|
2003-11-27 09:17:14 +08:00
|
|
|
/* This work is part of OpenLDAP Software <http://www.openldap.org/>.
|
|
|
|
*
|
2004-01-02 03:15:16 +08:00
|
|
|
* Copyright 1998-2004 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>.
|
2001-07-28 19:24:22 +08:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include "portable.h"
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
|
|
|
|
#include <ac/regex.h>
|
|
|
|
#include <ac/string.h>
|
|
|
|
|
|
|
|
#include "slap.h"
|
|
|
|
|
|
|
|
int
|
|
|
|
get_limits(
|
2004-02-19 00:40:36 +08:00
|
|
|
Operation *op,
|
2001-12-26 23:28:01 +08:00
|
|
|
struct berval *ndn,
|
2001-08-01 18:09:04 +08:00
|
|
|
struct slap_limits_set **limit
|
2001-07-28 19:24:22 +08:00
|
|
|
)
|
|
|
|
{
|
|
|
|
struct slap_limits **lm;
|
|
|
|
|
2004-02-19 00:40:36 +08:00
|
|
|
assert( op );
|
2001-08-01 18:09:04 +08:00
|
|
|
assert( limit );
|
2001-07-30 01:21:28 +08:00
|
|
|
|
2001-07-28 19:24:22 +08:00
|
|
|
/*
|
|
|
|
* default values
|
|
|
|
*/
|
2004-02-19 00:40:36 +08:00
|
|
|
*limit = &op->o_bd->be_def_limit;
|
2001-07-28 19:24:22 +08:00
|
|
|
|
2004-02-19 00:40:36 +08:00
|
|
|
if ( op->o_bd->be_limits == NULL ) {
|
2001-07-28 19:24:22 +08:00
|
|
|
return( 0 );
|
|
|
|
}
|
|
|
|
|
2004-02-19 00:40:36 +08:00
|
|
|
for ( lm = op->o_bd->be_limits; lm[0] != NULL; lm++ ) {
|
|
|
|
unsigned style = lm[0]->lm_flags & SLAP_LIMITS_MASK;
|
|
|
|
unsigned type = lm[0]->lm_flags & SLAP_LIMITS_TYPE_MASK;
|
|
|
|
|
|
|
|
switch ( style ) {
|
2001-07-28 19:24:22 +08:00
|
|
|
case SLAP_LIMITS_EXACT:
|
2001-12-26 23:28:01 +08:00
|
|
|
if ( ndn->bv_len == 0 ) {
|
2001-11-22 04:28:15 +08:00
|
|
|
break;
|
|
|
|
}
|
2004-02-19 00:40:36 +08:00
|
|
|
|
|
|
|
if ( type == SLAP_LIMITS_TYPE_GROUP ) {
|
|
|
|
int rc;
|
|
|
|
|
|
|
|
rc = backend_group( op, NULL,
|
|
|
|
&lm[0]->lm_pat, ndn,
|
|
|
|
lm[0]->lm_group_oc,
|
|
|
|
lm[0]->lm_group_ad );
|
|
|
|
if ( rc == 0 ) {
|
|
|
|
*limit = &lm[0]->lm_limits;
|
|
|
|
return( 0 );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( dn_match( &lm[0]->lm_pat, ndn ) ) {
|
2001-08-01 18:09:04 +08:00
|
|
|
*limit = &lm[0]->lm_limits;
|
2001-07-28 19:24:22 +08:00
|
|
|
return( 0 );
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
2001-12-01 22:17:14 +08:00
|
|
|
case SLAP_LIMITS_ONE:
|
|
|
|
case SLAP_LIMITS_SUBTREE:
|
|
|
|
case SLAP_LIMITS_CHILDREN: {
|
2001-12-09 10:34:45 +08:00
|
|
|
size_t d;
|
2001-12-01 22:17:14 +08:00
|
|
|
|
2001-12-26 23:28:01 +08:00
|
|
|
if ( ndn->bv_len == 0 ) {
|
2001-12-01 22:17:14 +08:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ndn shorter than dn_pat */
|
2004-02-19 00:40:36 +08:00
|
|
|
if ( ndn->bv_len < lm[0]->lm_pat.bv_len ) {
|
2001-12-01 22:17:14 +08:00
|
|
|
break;
|
|
|
|
}
|
2004-02-19 00:40:36 +08:00
|
|
|
d = ndn->bv_len - lm[0]->lm_pat.bv_len;
|
2001-12-01 22:17:14 +08:00
|
|
|
|
|
|
|
/* allow exact match for SUBTREE only */
|
|
|
|
if ( d == 0 ) {
|
2004-02-19 00:40:36 +08:00
|
|
|
if ( style != SLAP_LIMITS_SUBTREE ) {
|
2001-12-01 22:17:14 +08:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
/* check for unescaped rdn separator */
|
2002-01-22 16:30:32 +08:00
|
|
|
if ( !DN_SEPARATOR( ndn->bv_val[d-1] ) ) {
|
2001-12-01 22:17:14 +08:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* in case of (sub)match ... */
|
2004-02-19 00:40:36 +08:00
|
|
|
if ( lm[0]->lm_pat.bv_len == ( ndn->bv_len - d )
|
|
|
|
&& strcmp( lm[0]->lm_pat.bv_val,
|
|
|
|
&ndn->bv_val[d] ) == 0 )
|
|
|
|
{
|
2001-12-08 19:08:26 +08:00
|
|
|
/* check for exactly one rdn in case of ONE */
|
2004-02-19 00:40:36 +08:00
|
|
|
if ( style == SLAP_LIMITS_ONE ) {
|
2001-12-01 22:17:14 +08:00
|
|
|
/*
|
|
|
|
* if ndn is more that one rdn
|
|
|
|
* below dn_pat, continue
|
|
|
|
*/
|
2004-02-19 00:40:36 +08:00
|
|
|
if ( (size_t) dn_rdnlen( NULL, ndn )
|
|
|
|
!= d - 1 )
|
|
|
|
{
|
2001-12-01 22:17:14 +08:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
*limit = &lm[0]->lm_limits;
|
|
|
|
return( 0 );
|
|
|
|
}
|
|
|
|
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2001-07-28 19:24:22 +08:00
|
|
|
case SLAP_LIMITS_REGEX:
|
2001-12-26 23:28:01 +08:00
|
|
|
if ( ndn->bv_len == 0 ) {
|
2001-11-22 04:28:15 +08:00
|
|
|
break;
|
|
|
|
}
|
2004-02-19 00:40:36 +08:00
|
|
|
if ( regexec( &lm[0]->lm_regex, ndn->bv_val,
|
|
|
|
0, NULL, 0 ) == 0 )
|
2001-12-27 00:42:35 +08:00
|
|
|
{
|
2001-08-01 18:09:04 +08:00
|
|
|
*limit = &lm[0]->lm_limits;
|
2001-07-28 19:24:22 +08:00
|
|
|
return( 0 );
|
|
|
|
}
|
|
|
|
break;
|
2001-12-01 22:17:14 +08:00
|
|
|
|
2001-11-22 04:28:15 +08:00
|
|
|
case SLAP_LIMITS_ANONYMOUS:
|
2001-12-26 23:28:01 +08:00
|
|
|
if ( ndn->bv_len == 0 ) {
|
2001-11-22 04:28:15 +08:00
|
|
|
*limit = &lm[0]->lm_limits;
|
|
|
|
return( 0 );
|
|
|
|
}
|
|
|
|
break;
|
2001-12-01 22:17:14 +08:00
|
|
|
|
|
|
|
case SLAP_LIMITS_USERS:
|
2001-12-26 23:28:01 +08:00
|
|
|
if ( ndn->bv_len != 0 ) {
|
2001-12-01 22:17:14 +08:00
|
|
|
*limit = &lm[0]->lm_limits;
|
|
|
|
return( 0 );
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
2002-04-30 03:14:42 +08:00
|
|
|
case SLAP_LIMITS_ANY:
|
|
|
|
*limit = &lm[0]->lm_limits;
|
|
|
|
return( 0 );
|
|
|
|
|
2001-07-28 19:24:22 +08:00
|
|
|
default:
|
|
|
|
assert( 0 ); /* unreachable */
|
|
|
|
return( -1 );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return( 0 );
|
|
|
|
}
|
|
|
|
|
2001-12-27 00:42:35 +08:00
|
|
|
static int
|
2001-07-28 19:24:22 +08:00
|
|
|
add_limits(
|
2001-08-01 18:09:04 +08:00
|
|
|
Backend *be,
|
2004-02-19 00:40:36 +08:00
|
|
|
unsigned flags,
|
2001-08-01 18:09:04 +08:00
|
|
|
const char *pattern,
|
2004-02-19 00:40:36 +08:00
|
|
|
ObjectClass *group_oc,
|
|
|
|
AttributeDescription *group_ad,
|
2001-08-01 18:09:04 +08:00
|
|
|
struct slap_limits_set *limit
|
2001-07-28 19:24:22 +08:00
|
|
|
)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
struct slap_limits *lm;
|
2004-02-19 00:40:36 +08:00
|
|
|
unsigned type, style;
|
2001-07-28 19:24:22 +08:00
|
|
|
|
|
|
|
assert( be );
|
2001-08-01 18:09:04 +08:00
|
|
|
assert( limit );
|
2001-07-28 19:24:22 +08:00
|
|
|
|
2004-02-19 00:40:36 +08:00
|
|
|
type = flags & SLAP_LIMITS_TYPE_MASK;
|
|
|
|
style = flags & SLAP_LIMITS_MASK;
|
|
|
|
|
|
|
|
switch ( style ) {
|
2002-11-21 22:23:39 +08:00
|
|
|
case SLAP_LIMITS_ANONYMOUS:
|
|
|
|
case SLAP_LIMITS_USERS:
|
|
|
|
case SLAP_LIMITS_ANY:
|
|
|
|
for ( i = 0; be->be_limits && be->be_limits[ i ]; i++ ) {
|
2004-02-19 00:40:36 +08:00
|
|
|
if ( be->be_limits[ i ]->lm_flags == style ) {
|
2002-11-21 22:23:39 +08:00
|
|
|
return( -1 );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-07-28 19:24:22 +08:00
|
|
|
lm = ( struct slap_limits * )ch_calloc( sizeof( struct slap_limits ), 1 );
|
|
|
|
|
2004-02-19 00:40:36 +08:00
|
|
|
switch ( style ) {
|
|
|
|
case SLAP_LIMITS_UNDEFINED:
|
|
|
|
style = SLAP_LIMITS_EXACT;
|
|
|
|
/* continue to next cases */
|
2001-07-28 19:24:22 +08:00
|
|
|
case SLAP_LIMITS_EXACT:
|
2001-12-01 22:17:14 +08:00
|
|
|
case SLAP_LIMITS_ONE:
|
|
|
|
case SLAP_LIMITS_SUBTREE:
|
|
|
|
case SLAP_LIMITS_CHILDREN:
|
2004-02-19 00:40:36 +08:00
|
|
|
lm->lm_flags = style | type;
|
2001-12-27 15:13:13 +08:00
|
|
|
{
|
|
|
|
int rc;
|
|
|
|
struct berval bv;
|
|
|
|
bv.bv_val = (char *) pattern;
|
|
|
|
bv.bv_len = strlen( pattern );
|
|
|
|
|
2004-02-19 00:40:36 +08:00
|
|
|
rc = dnNormalize( 0, NULL, NULL, &bv, &lm->lm_pat, NULL );
|
2001-12-27 15:13:13 +08:00
|
|
|
if ( rc != LDAP_SUCCESS ) {
|
|
|
|
ch_free( lm );
|
|
|
|
return( -1 );
|
|
|
|
}
|
2001-07-28 19:24:22 +08:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case SLAP_LIMITS_REGEX:
|
2004-02-19 00:40:36 +08:00
|
|
|
lm->lm_flags = style | type;
|
|
|
|
ber_str2bv( pattern, 0, 1, &lm->lm_pat );
|
|
|
|
if ( regcomp( &lm->lm_regex, lm->lm_pat.bv_val,
|
2001-12-01 22:17:14 +08:00
|
|
|
REG_EXTENDED | REG_ICASE ) ) {
|
2004-02-19 00:40:36 +08:00
|
|
|
free( lm->lm_pat.bv_val );
|
2001-07-28 19:24:22 +08:00
|
|
|
ch_free( lm );
|
|
|
|
return( -1 );
|
|
|
|
}
|
|
|
|
break;
|
2001-12-01 22:17:14 +08:00
|
|
|
|
2001-11-22 04:28:15 +08:00
|
|
|
case SLAP_LIMITS_ANONYMOUS:
|
2001-12-01 22:17:14 +08:00
|
|
|
case SLAP_LIMITS_USERS:
|
2002-04-30 03:14:42 +08:00
|
|
|
case SLAP_LIMITS_ANY:
|
2004-02-19 00:40:36 +08:00
|
|
|
lm->lm_flags = style | type;
|
|
|
|
lm->lm_pat.bv_val = NULL;
|
|
|
|
lm->lm_pat.bv_len = 0;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
switch ( type ) {
|
|
|
|
case SLAP_LIMITS_TYPE_GROUP:
|
|
|
|
assert( group_oc );
|
|
|
|
assert( group_ad );
|
|
|
|
lm->lm_group_oc = group_oc;
|
|
|
|
lm->lm_group_ad = group_ad;
|
2001-11-22 04:28:15 +08:00
|
|
|
break;
|
2001-07-28 19:24:22 +08:00
|
|
|
}
|
|
|
|
|
2001-08-01 18:09:04 +08:00
|
|
|
lm->lm_limits = *limit;
|
2001-07-28 19:24:22 +08:00
|
|
|
|
2001-07-30 01:21:28 +08:00
|
|
|
i = 0;
|
|
|
|
if ( be->be_limits != NULL ) {
|
|
|
|
for ( ; be->be_limits[i]; i++ );
|
2001-07-28 19:24:22 +08:00
|
|
|
}
|
2001-07-30 01:21:28 +08:00
|
|
|
|
|
|
|
be->be_limits = ( struct slap_limits ** )ch_realloc( be->be_limits,
|
|
|
|
sizeof( struct slap_limits * ) * ( i + 2 ) );
|
2001-07-28 19:24:22 +08:00
|
|
|
be->be_limits[i] = lm;
|
2001-07-30 01:21:28 +08:00
|
|
|
be->be_limits[i+1] = NULL;
|
2001-07-28 19:24:22 +08:00
|
|
|
|
|
|
|
return( 0 );
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
parse_limits(
|
|
|
|
Backend *be,
|
|
|
|
const char *fname,
|
|
|
|
int lineno,
|
|
|
|
int argc,
|
|
|
|
char **argv
|
|
|
|
)
|
|
|
|
{
|
2004-02-19 00:40:36 +08:00
|
|
|
int flags = SLAP_LIMITS_UNDEFINED;
|
|
|
|
char *pattern;
|
|
|
|
struct slap_limits_set limit;
|
|
|
|
int i, rc = 0;
|
|
|
|
ObjectClass *group_oc = NULL;
|
|
|
|
AttributeDescription *group_ad = NULL;
|
2001-07-28 19:24:22 +08:00
|
|
|
|
|
|
|
assert( be );
|
|
|
|
|
|
|
|
if ( argc < 3 ) {
|
|
|
|
#ifdef NEW_LOGGING
|
2002-07-12 04:33:24 +08:00
|
|
|
LDAP_LOG( CONFIG, CRIT,
|
2001-07-28 19:24:22 +08:00
|
|
|
"%s : line %d: missing arg(s) in "
|
2002-07-12 04:33:24 +08:00
|
|
|
"\"limits <pattern> <limits>\" line.\n", fname, lineno, 0 );
|
2001-07-28 19:24:22 +08:00
|
|
|
#else
|
|
|
|
Debug( LDAP_DEBUG_ANY,
|
|
|
|
"%s : line %d: missing arg(s) in "
|
|
|
|
"\"limits <pattern> <limits>\" line.\n%s",
|
|
|
|
fname, lineno, "" );
|
|
|
|
#endif
|
|
|
|
return( -1 );
|
|
|
|
}
|
|
|
|
|
2001-08-01 18:09:04 +08:00
|
|
|
limit = be->be_def_limit;
|
2001-07-28 19:24:22 +08:00
|
|
|
|
|
|
|
/*
|
|
|
|
* syntax:
|
|
|
|
*
|
2001-08-01 18:09:04 +08:00
|
|
|
* "limits" <pattern> <limit> [ ... ]
|
2001-07-28 19:24:22 +08:00
|
|
|
*
|
|
|
|
*
|
|
|
|
* <pattern>:
|
|
|
|
*
|
2001-12-01 22:17:14 +08:00
|
|
|
* "anonymous"
|
|
|
|
* "users"
|
|
|
|
* [ "dn" [ "." { "exact" | "base" | "one" | "sub" | children"
|
|
|
|
* | "regex" | "anonymous" } ] "=" ] <dn pattern>
|
|
|
|
*
|
|
|
|
* Note:
|
|
|
|
* "exact" and "base" are the same (exact match);
|
|
|
|
* "one" means exactly one rdn below, NOT including the pattern
|
|
|
|
* "sub" means any rdn below, including the pattern
|
|
|
|
* "children" means any rdn below, NOT including the pattern
|
|
|
|
*
|
|
|
|
* "anonymous" may be deprecated in favour
|
|
|
|
* of the pattern = "anonymous" form
|
|
|
|
*
|
2001-07-28 19:24:22 +08:00
|
|
|
*
|
|
|
|
* <limit>:
|
|
|
|
*
|
2001-08-01 18:09:04 +08:00
|
|
|
* "time" [ "." { "soft" | "hard" } ] "=" <integer>
|
|
|
|
*
|
|
|
|
* "size" [ "." { "soft" | "hard" | "unchecked" } ] "=" <integer>
|
2001-07-28 19:24:22 +08:00
|
|
|
*/
|
|
|
|
|
|
|
|
pattern = argv[1];
|
2002-04-30 03:14:42 +08:00
|
|
|
if ( strcmp( pattern, "*" ) == 0) {
|
2004-02-19 00:40:36 +08:00
|
|
|
flags = SLAP_LIMITS_ANY;
|
2002-04-30 03:14:42 +08:00
|
|
|
|
|
|
|
} else if ( strcasecmp( pattern, "anonymous" ) == 0 ) {
|
2004-02-19 00:40:36 +08:00
|
|
|
flags = SLAP_LIMITS_ANONYMOUS;
|
2001-12-01 22:17:14 +08:00
|
|
|
|
|
|
|
} else if ( strcasecmp( pattern, "users" ) == 0 ) {
|
2004-02-19 00:40:36 +08:00
|
|
|
flags = SLAP_LIMITS_USERS;
|
2001-12-01 22:17:14 +08:00
|
|
|
|
2004-02-19 00:40:36 +08:00
|
|
|
} else if ( strncasecmp( pattern, "dn", sizeof( "dn" ) - 1 ) == 0 ) {
|
|
|
|
pattern += sizeof( "dn" ) - 1;
|
2001-07-28 19:24:22 +08:00
|
|
|
if ( pattern[0] == '.' ) {
|
|
|
|
pattern++;
|
2002-11-21 20:58:59 +08:00
|
|
|
if ( strncasecmp( pattern, "exact", sizeof( "exact" ) - 1 ) == 0 ) {
|
2004-02-19 00:40:36 +08:00
|
|
|
flags = SLAP_LIMITS_EXACT;
|
|
|
|
pattern += sizeof( "exact" ) - 1;
|
2001-12-01 22:17:14 +08:00
|
|
|
|
2004-02-19 00:40:36 +08:00
|
|
|
} else if ( strncasecmp( pattern, "base", sizeof( "base" ) - 1 ) == 0 ) {
|
|
|
|
flags = SLAP_LIMITS_BASE;
|
|
|
|
pattern += sizeof( "base" ) - 1;
|
2001-12-01 22:17:14 +08:00
|
|
|
|
2002-11-21 20:58:59 +08:00
|
|
|
} else if ( strncasecmp( pattern, "one", sizeof( "one" ) - 1 ) == 0 ) {
|
2004-02-19 00:40:36 +08:00
|
|
|
flags = SLAP_LIMITS_ONE;
|
|
|
|
pattern += sizeof( "one" ) - 1;
|
2001-12-01 22:17:14 +08:00
|
|
|
|
2002-11-21 20:58:59 +08:00
|
|
|
} else if ( strncasecmp( pattern, "subtree", sizeof( "subtree" ) - 1 ) == 0 ) {
|
2004-02-19 00:40:36 +08:00
|
|
|
flags = SLAP_LIMITS_SUBTREE;
|
|
|
|
pattern += sizeof( "subtree" ) - 1;
|
2001-12-01 22:17:14 +08:00
|
|
|
|
2002-11-21 20:58:59 +08:00
|
|
|
} else if ( strncasecmp( pattern, "children", sizeof( "children" ) - 1 ) == 0 ) {
|
2004-02-19 00:40:36 +08:00
|
|
|
flags = SLAP_LIMITS_CHILDREN;
|
|
|
|
pattern += sizeof( "children" ) - 1;
|
2001-12-01 22:17:14 +08:00
|
|
|
|
2002-11-21 20:58:59 +08:00
|
|
|
} else if ( strncasecmp( pattern, "regex", sizeof( "regex" ) - 1 ) == 0 ) {
|
2004-02-19 00:40:36 +08:00
|
|
|
flags = SLAP_LIMITS_REGEX;
|
|
|
|
pattern += sizeof( "regex" ) - 1;
|
2001-12-01 22:17:14 +08:00
|
|
|
|
|
|
|
/*
|
|
|
|
* this could be deprecated in favour
|
|
|
|
* of the pattern = "anonymous" form
|
|
|
|
*/
|
2002-11-21 20:58:59 +08:00
|
|
|
} else if ( strncasecmp( pattern, "anonymous", sizeof( "anonymous" ) - 1 ) == 0 ) {
|
2004-02-19 00:40:36 +08:00
|
|
|
flags = SLAP_LIMITS_ANONYMOUS;
|
2001-11-22 04:28:15 +08:00
|
|
|
pattern = NULL;
|
2001-07-28 19:24:22 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2001-12-01 22:17:14 +08:00
|
|
|
/* pre-check the data */
|
2004-02-19 00:40:36 +08:00
|
|
|
switch ( flags ) {
|
2001-12-01 22:17:14 +08:00
|
|
|
case SLAP_LIMITS_ANONYMOUS:
|
|
|
|
case SLAP_LIMITS_USERS:
|
|
|
|
|
|
|
|
/* no need for pattern */
|
|
|
|
pattern = NULL;
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
if ( pattern[0] != '=' ) {
|
2001-07-28 19:24:22 +08:00
|
|
|
#ifdef NEW_LOGGING
|
2002-07-12 04:33:24 +08:00
|
|
|
LDAP_LOG( CONFIG, CRIT,
|
2001-12-01 22:17:14 +08:00
|
|
|
"%s : line %d: missing '=' in "
|
|
|
|
"\"dn[.{exact|base|one|subtree"
|
2002-07-12 04:33:24 +08:00
|
|
|
"|children|regex|anonymous}]" "=<pattern>\" in "
|
|
|
|
"\"limits <pattern> <limits>\" line.\n", fname, lineno, 0 );
|
2001-07-28 19:24:22 +08:00
|
|
|
#else
|
2001-12-01 22:17:14 +08:00
|
|
|
Debug( LDAP_DEBUG_ANY,
|
|
|
|
"%s : line %d: missing '=' in "
|
|
|
|
"\"dn[.{exact|base|one|subtree"
|
|
|
|
"|children|regex|anonymous}]"
|
|
|
|
"=<pattern>\" in "
|
|
|
|
"\"limits <pattern> <limits>\" "
|
|
|
|
"line.\n%s",
|
|
|
|
fname, lineno, "" );
|
2001-07-28 19:24:22 +08:00
|
|
|
#endif
|
2001-12-01 22:17:14 +08:00
|
|
|
return( -1 );
|
|
|
|
}
|
2001-07-28 19:24:22 +08:00
|
|
|
|
2001-12-01 22:17:14 +08:00
|
|
|
/* skip '=' (required) */
|
|
|
|
pattern++;
|
2002-04-30 03:14:42 +08:00
|
|
|
|
|
|
|
/* trim obvious cases */
|
|
|
|
if ( strcmp( pattern, "*" ) == 0 ) {
|
2004-02-19 00:40:36 +08:00
|
|
|
flags = SLAP_LIMITS_ANY;
|
2002-04-30 03:14:42 +08:00
|
|
|
pattern = NULL;
|
|
|
|
|
2004-02-19 00:40:36 +08:00
|
|
|
} else if ( flags == SLAP_LIMITS_REGEX
|
2002-04-30 03:14:42 +08:00
|
|
|
&& strcmp( pattern, ".*" ) == 0 ) {
|
2004-02-19 00:40:36 +08:00
|
|
|
flags = SLAP_LIMITS_ANY;
|
2002-04-30 03:14:42 +08:00
|
|
|
pattern = NULL;
|
|
|
|
}
|
2001-12-01 22:17:14 +08:00
|
|
|
}
|
2004-02-19 00:40:36 +08:00
|
|
|
|
|
|
|
} else if (strncasecmp( pattern, "group", sizeof( "group" ) - 1 ) == 0 ) {
|
|
|
|
pattern += sizeof( "group" ) - 1;
|
|
|
|
|
|
|
|
if ( pattern[0] == '/' ) {
|
|
|
|
struct berval oc, ad;
|
|
|
|
|
|
|
|
oc.bv_val = pattern + 1;
|
|
|
|
|
|
|
|
ad.bv_val = strchr(pattern, '/');
|
|
|
|
if ( ad.bv_val != NULL ) {
|
|
|
|
const char *text = NULL;
|
|
|
|
int rc;
|
|
|
|
|
|
|
|
oc.bv_len = ad.bv_val - oc.bv_val;
|
|
|
|
|
|
|
|
ad.bv_val++;
|
|
|
|
ad.bv_len = strlen( ad.bv_val );
|
|
|
|
rc = slap_bv2ad( &ad, &group_ad, &text );
|
|
|
|
if ( rc != LDAP_SUCCESS ) {
|
|
|
|
goto no_ad;
|
|
|
|
}
|
|
|
|
|
|
|
|
pattern = ad.bv_val + ad.bv_len;
|
|
|
|
|
|
|
|
} else {
|
|
|
|
oc.bv_len = strlen( oc.bv_val );
|
|
|
|
|
|
|
|
pattern = oc.bv_val + oc.bv_len;
|
|
|
|
}
|
|
|
|
|
|
|
|
group_oc = oc_bvfind( &oc );
|
|
|
|
if ( group_oc == NULL ) {
|
|
|
|
goto no_oc;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( group_oc == NULL ) {
|
|
|
|
group_oc = oc_find( SLAPD_GROUP_CLASS );
|
|
|
|
if ( group_oc == NULL ) {
|
|
|
|
no_oc:;
|
|
|
|
return( -1 );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( group_ad == NULL ) {
|
|
|
|
const char *text = NULL;
|
|
|
|
int rc;
|
|
|
|
|
|
|
|
rc = slap_str2ad( SLAPD_GROUP_ATTR, &group_ad, &text );
|
|
|
|
|
|
|
|
if ( rc != LDAP_SUCCESS ) {
|
|
|
|
no_ad:;
|
|
|
|
return( -1 );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
flags = SLAP_LIMITS_TYPE_GROUP | SLAP_LIMITS_EXACT;
|
|
|
|
|
|
|
|
if ( pattern[0] != '=' ) {
|
|
|
|
#ifdef NEW_LOGGING
|
|
|
|
LDAP_LOG( CONFIG, CRIT,
|
|
|
|
"%s : line %d: missing '=' in "
|
|
|
|
"\"group[/objectClass[/attributeType]]"
|
|
|
|
"=<pattern>\" in "
|
|
|
|
"\"limits <pattern> <limits>\" line.\n",
|
|
|
|
fname, lineno, 0 );
|
|
|
|
#else
|
|
|
|
Debug( LDAP_DEBUG_ANY,
|
|
|
|
"%s : line %d: missing '=' in "
|
|
|
|
"\"group[/objectClass[/attributeType]]"
|
|
|
|
"=<pattern>\" in "
|
|
|
|
"\"limits <pattern> <limits>\" line.\n",
|
|
|
|
fname, lineno, 0 );
|
|
|
|
#endif
|
|
|
|
return( -1 );
|
|
|
|
}
|
|
|
|
|
|
|
|
/* skip '=' (required) */
|
|
|
|
pattern++;
|
2001-07-28 19:24:22 +08:00
|
|
|
}
|
|
|
|
|
2001-12-01 22:17:14 +08:00
|
|
|
/* get the limits */
|
2001-07-28 19:24:22 +08:00
|
|
|
for ( i = 2; i < argc; i++ ) {
|
2001-08-01 18:09:04 +08:00
|
|
|
if ( parse_limit( argv[i], &limit ) ) {
|
|
|
|
|
2001-07-28 19:24:22 +08:00
|
|
|
#ifdef NEW_LOGGING
|
2002-07-12 04:33:24 +08:00
|
|
|
LDAP_LOG( CONFIG, CRIT,
|
2004-02-19 00:40:36 +08:00
|
|
|
"%s : line %d: unknown limit values \"%s\" in "
|
2001-08-01 18:09:04 +08:00
|
|
|
"\"limits <pattern> <limits>\" line.\n",
|
2002-07-12 04:33:24 +08:00
|
|
|
fname, lineno, argv[i] );
|
2001-07-28 19:24:22 +08:00
|
|
|
#else
|
|
|
|
Debug( LDAP_DEBUG_ANY,
|
2004-02-19 00:40:36 +08:00
|
|
|
"%s : line %d: unknown limit values \"%s\" in "
|
2001-08-01 18:09:04 +08:00
|
|
|
"\"limits <pattern> <limits>\" line.\n",
|
2001-07-28 19:24:22 +08:00
|
|
|
fname, lineno, argv[i] );
|
|
|
|
#endif
|
2001-08-01 18:09:04 +08:00
|
|
|
|
|
|
|
return( 1 );
|
2001-07-28 19:24:22 +08:00
|
|
|
}
|
|
|
|
}
|
2001-08-01 18:09:04 +08:00
|
|
|
|
|
|
|
/*
|
|
|
|
* sanity checks ...
|
|
|
|
*/
|
2002-11-21 20:58:59 +08:00
|
|
|
if ( limit.lms_t_hard > 0 &&
|
|
|
|
( limit.lms_t_hard < limit.lms_t_soft
|
|
|
|
|| limit.lms_t_soft == -1 ) ) {
|
2001-08-01 18:09:04 +08:00
|
|
|
limit.lms_t_hard = limit.lms_t_soft;
|
|
|
|
}
|
|
|
|
|
2002-11-21 20:58:59 +08:00
|
|
|
if ( limit.lms_s_hard > 0 &&
|
|
|
|
( limit.lms_s_hard < limit.lms_s_soft
|
|
|
|
|| limit.lms_s_soft == -1 ) ) {
|
2001-08-01 18:09:04 +08:00
|
|
|
limit.lms_s_hard = limit.lms_s_soft;
|
|
|
|
}
|
2001-07-28 19:24:22 +08:00
|
|
|
|
2004-02-19 00:40:36 +08:00
|
|
|
rc = add_limits( be, flags, pattern, group_oc, group_ad, &limit );
|
2002-11-21 22:23:39 +08:00
|
|
|
if ( rc ) {
|
|
|
|
|
|
|
|
#ifdef NEW_LOGGING
|
|
|
|
LDAP_LOG( CONFIG, CRIT,
|
|
|
|
"%s : line %d: unable to add limit in "
|
|
|
|
"\"limits <pattern> <limits>\" line.\n",
|
|
|
|
fname, lineno, 0 );
|
|
|
|
#else
|
|
|
|
Debug( LDAP_DEBUG_ANY,
|
|
|
|
"%s : line %d: unable to add limit in "
|
|
|
|
"\"limits <pattern> <limits>\" line.\n",
|
|
|
|
fname, lineno, 0 );
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
return( rc );
|
2001-08-01 18:09:04 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
parse_limit(
|
|
|
|
const char *arg,
|
|
|
|
struct slap_limits_set *limit
|
|
|
|
)
|
|
|
|
{
|
|
|
|
assert( arg );
|
|
|
|
assert( limit );
|
|
|
|
|
2002-11-21 20:58:59 +08:00
|
|
|
if ( strncasecmp( arg, "time", sizeof( "time" ) - 1 ) == 0 ) {
|
2001-08-01 18:09:04 +08:00
|
|
|
arg += 4;
|
|
|
|
|
|
|
|
if ( arg[0] == '.' ) {
|
|
|
|
arg++;
|
2002-11-21 20:58:59 +08:00
|
|
|
if ( strncasecmp( arg, "soft", sizeof( "soft" ) - 1 ) == 0 ) {
|
2001-08-01 18:09:04 +08:00
|
|
|
arg += 4;
|
|
|
|
if ( arg[0] != '=' ) {
|
|
|
|
return( 1 );
|
|
|
|
}
|
|
|
|
arg++;
|
2002-11-21 20:58:59 +08:00
|
|
|
if ( strcasecmp( arg, "none" ) == 0 ) {
|
|
|
|
limit->lms_t_soft = -1;
|
|
|
|
} else {
|
|
|
|
char *next = NULL;
|
|
|
|
|
|
|
|
limit->lms_t_soft =
|
|
|
|
strtol( arg, &next, 10 );
|
|
|
|
if ( next == arg || limit->lms_t_soft < -1 ) {
|
|
|
|
return( 1 );
|
|
|
|
}
|
|
|
|
}
|
2001-08-01 18:09:04 +08:00
|
|
|
|
2002-11-21 20:58:59 +08:00
|
|
|
} else if ( strncasecmp( arg, "hard", sizeof( "hard" ) - 1 ) == 0 ) {
|
2001-08-01 18:09:04 +08:00
|
|
|
arg += 4;
|
|
|
|
if ( arg[0] != '=' ) {
|
|
|
|
return( 1 );
|
|
|
|
}
|
|
|
|
arg++;
|
2001-08-04 01:25:39 +08:00
|
|
|
if ( strcasecmp( arg, "soft" ) == 0 ) {
|
|
|
|
limit->lms_t_hard = 0;
|
|
|
|
} else if ( strcasecmp( arg, "none" ) == 0 ) {
|
|
|
|
limit->lms_t_hard = -1;
|
|
|
|
} else {
|
2002-11-21 20:58:59 +08:00
|
|
|
char *next = NULL;
|
|
|
|
|
|
|
|
limit->lms_t_hard =
|
|
|
|
strtol( arg, &next, 10 );
|
|
|
|
if ( next == arg || limit->lms_t_hard < -1 ) {
|
|
|
|
return( 1 );
|
|
|
|
}
|
2001-08-04 01:25:39 +08:00
|
|
|
}
|
2001-08-01 18:09:04 +08:00
|
|
|
|
|
|
|
} else {
|
|
|
|
return( 1 );
|
|
|
|
}
|
|
|
|
|
|
|
|
} else if ( arg[0] == '=' ) {
|
2002-08-23 16:50:34 +08:00
|
|
|
arg++;
|
2002-11-21 22:23:39 +08:00
|
|
|
if ( strcasecmp( arg, "none" ) == 0 ) {
|
|
|
|
limit->lms_t_soft = -1;
|
|
|
|
} else {
|
|
|
|
char *next = NULL;
|
|
|
|
|
|
|
|
limit->lms_t_soft = strtol( arg, &next, 10 );
|
|
|
|
if ( next == arg || limit->lms_t_soft < -1 ) {
|
|
|
|
return( 1 );
|
|
|
|
}
|
2002-11-21 20:58:59 +08:00
|
|
|
}
|
2001-08-01 18:09:04 +08:00
|
|
|
limit->lms_t_hard = 0;
|
|
|
|
|
|
|
|
} else {
|
|
|
|
return( 1 );
|
|
|
|
}
|
|
|
|
|
2002-11-21 20:58:59 +08:00
|
|
|
} else if ( strncasecmp( arg, "size", sizeof( "size" ) - 1 ) == 0 ) {
|
2001-08-01 18:09:04 +08:00
|
|
|
arg += 4;
|
|
|
|
|
|
|
|
if ( arg[0] == '.' ) {
|
|
|
|
arg++;
|
2002-11-21 20:58:59 +08:00
|
|
|
if ( strncasecmp( arg, "soft", sizeof( "soft" ) - 1 ) == 0 ) {
|
2001-08-01 18:09:04 +08:00
|
|
|
arg += 4;
|
|
|
|
if ( arg[0] != '=' ) {
|
|
|
|
return( 1 );
|
|
|
|
}
|
|
|
|
arg++;
|
2002-11-21 20:58:59 +08:00
|
|
|
if ( strcasecmp( arg, "none" ) == 0 ) {
|
|
|
|
limit->lms_s_soft = -1;
|
|
|
|
} else {
|
|
|
|
char *next = NULL;
|
|
|
|
|
|
|
|
limit->lms_s_soft =
|
|
|
|
strtol( arg, &next, 10 );
|
|
|
|
if ( next == arg || limit->lms_s_soft < -1 ) {
|
|
|
|
return( 1 );
|
|
|
|
}
|
|
|
|
}
|
2001-08-01 18:09:04 +08:00
|
|
|
|
2002-11-21 20:58:59 +08:00
|
|
|
} else if ( strncasecmp( arg, "hard", sizeof( "hard" ) - 1 ) == 0 ) {
|
2001-08-01 18:09:04 +08:00
|
|
|
arg += 4;
|
|
|
|
if ( arg[0] != '=' ) {
|
|
|
|
return( 1 );
|
|
|
|
}
|
|
|
|
arg++;
|
2001-08-04 01:25:39 +08:00
|
|
|
if ( strcasecmp( arg, "soft" ) == 0 ) {
|
|
|
|
limit->lms_s_hard = 0;
|
|
|
|
} else if ( strcasecmp( arg, "none" ) == 0 ) {
|
|
|
|
limit->lms_s_hard = -1;
|
|
|
|
} else {
|
2002-11-21 20:58:59 +08:00
|
|
|
char *next = NULL;
|
|
|
|
|
|
|
|
limit->lms_s_hard =
|
|
|
|
strtol( arg, &next, 10 );
|
|
|
|
if ( next == arg || limit->lms_s_hard < -1 ) {
|
|
|
|
return( 1 );
|
|
|
|
}
|
2001-08-04 01:25:39 +08:00
|
|
|
}
|
2001-08-01 18:09:04 +08:00
|
|
|
|
2002-11-21 20:58:59 +08:00
|
|
|
} else if ( strncasecmp( arg, "unchecked", sizeof( "unchecked" ) - 1 ) == 0 ) {
|
2001-08-01 18:09:04 +08:00
|
|
|
arg += 9;
|
|
|
|
if ( arg[0] != '=' ) {
|
|
|
|
return( 1 );
|
|
|
|
}
|
|
|
|
arg++;
|
2001-08-04 01:25:39 +08:00
|
|
|
if ( strcasecmp( arg, "none" ) == 0 ) {
|
|
|
|
limit->lms_s_unchecked = -1;
|
|
|
|
} else {
|
2002-11-21 20:58:59 +08:00
|
|
|
char *next = NULL;
|
|
|
|
|
|
|
|
limit->lms_s_unchecked =
|
|
|
|
strtol( arg, &next, 10 );
|
|
|
|
if ( next == arg || limit->lms_s_unchecked < -1 ) {
|
|
|
|
return( 1 );
|
|
|
|
}
|
2001-08-04 01:25:39 +08:00
|
|
|
}
|
2002-11-22 04:49:02 +08:00
|
|
|
|
|
|
|
} else if ( strncasecmp( arg, "pr", sizeof( "pr" ) - 1 ) == 0 ) {
|
|
|
|
arg += sizeof( "pr" ) - 1;
|
|
|
|
if ( arg[0] != '=' ) {
|
|
|
|
return( 1 );
|
|
|
|
}
|
|
|
|
arg++;
|
2002-11-22 04:57:00 +08:00
|
|
|
if ( strcasecmp( arg, "noEstimate" ) == 0 ) {
|
2002-11-22 04:49:02 +08:00
|
|
|
limit->lms_s_pr_hide = 1;
|
|
|
|
} else {
|
|
|
|
char *next = NULL;
|
|
|
|
|
|
|
|
limit->lms_s_pr =
|
|
|
|
strtol( arg, &next, 10 );
|
|
|
|
if ( next == arg || limit->lms_s_pr < -1 ) {
|
|
|
|
return( 1 );
|
|
|
|
}
|
|
|
|
}
|
2001-08-01 18:09:04 +08:00
|
|
|
|
|
|
|
} else {
|
|
|
|
return( 1 );
|
|
|
|
}
|
|
|
|
|
|
|
|
} else if ( arg[0] == '=' ) {
|
2002-08-23 16:50:34 +08:00
|
|
|
arg++;
|
2002-11-21 22:23:39 +08:00
|
|
|
if ( strcasecmp( arg, "none" ) == 0 ) {
|
|
|
|
limit->lms_s_soft = -1;
|
|
|
|
} else {
|
|
|
|
char *next = NULL;
|
|
|
|
|
|
|
|
limit->lms_s_soft = strtol( arg, &next, 10 );
|
|
|
|
if ( next == arg || limit->lms_s_soft < -1 ) {
|
|
|
|
return( 1 );
|
|
|
|
}
|
2002-11-21 20:58:59 +08:00
|
|
|
}
|
2001-08-01 18:09:04 +08:00
|
|
|
limit->lms_s_hard = 0;
|
|
|
|
|
|
|
|
} else {
|
|
|
|
return( 1 );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
2001-07-28 19:24:22 +08:00
|
|
|
}
|
|
|
|
|