X-Git-Url: https://git.sur5r.net/?a=blobdiff_plain;ds=sidebyside;f=servers%2Fslapd%2Flimits.c;h=2cddf4166b969d7e337e16ea521b56a2fed63345;hb=2c94c7915a52f8df4323c8193ec424df568f0fc1;hp=c7070504d4ba4770cbde43d334b48d57c2ed1464;hpb=d6a37432bd4349fca19e93272e9baf32a8bdf065;p=openldap diff --git a/servers/slapd/limits.c b/servers/slapd/limits.c index c7070504d4..2cddf4166b 100644 --- a/servers/slapd/limits.c +++ b/servers/slapd/limits.c @@ -1,6 +1,6 @@ /* limits.c - routines to handle regex-based size and time limits */ /* - * Copyright 1998-2000 The OpenLDAP Foundation, All Rights Reserved. + * Copyright 1998-2002 The OpenLDAP Foundation, All Rights Reserved. * COPYING RESTRICTIONS APPLY, see COPYRIGHT file */ @@ -40,7 +40,7 @@ get_limits( if ( ndn->bv_len == 0 ) { break; } - if ( strcmp( lm[0]->lm_dn_pat->bv_val, ndn->bv_val ) == 0 ) { + if ( dn_match( &lm[0]->lm_dn_pat, ndn ) ) { *limit = &lm[0]->lm_limits; return( 0 ); } @@ -55,7 +55,7 @@ get_limits( break; } - d = ndn->bv_len - lm[0]->lm_dn_pat->bv_len; + d = ndn->bv_len - lm[0]->lm_dn_pat.bv_len; /* ndn shorter than dn_pat */ if ( d < 0 ) { break; @@ -76,7 +76,8 @@ get_limits( } /* in case of (sub)match ... */ - if ( strcmp( lm[0]->lm_dn_pat->bv_val, &ndn->bv_val[d] ) == 0 ) { + if ( lm[0]->lm_dn_pat.bv_len == ( ndn->bv_len - d ) + && strcmp( lm[0]->lm_dn_pat.bv_val, &ndn->bv_val[d] ) == 0 ) { /* check for exactly one rdn in case of ONE */ if ( lm[0]->lm_type == SLAP_LIMITS_ONE ) { /* @@ -157,9 +158,8 @@ add_limits( struct berval bv; bv.bv_val = (char *) pattern; bv.bv_len = strlen( pattern ); - lm->lm_dn_pat = NULL; - rc = dnNormalize( NULL, &bv, &lm->lm_dn_pat ); + rc = dnNormalize2( NULL, &bv, &lm->lm_dn_pat ); if ( rc != LDAP_SUCCESS ) { ch_free( lm ); return( -1 ); @@ -170,10 +170,10 @@ add_limits( case SLAP_LIMITS_REGEX: case SLAP_LIMITS_UNDEFINED: lm->lm_type = SLAP_LIMITS_REGEX; - lm->lm_dn_pat = ber_bvstrdup( pattern ); - if ( regcomp( &lm->lm_dn_regex, lm->lm_dn_pat->bv_val, + ber_str2bv( pattern, 0, 1, &lm->lm_dn_pat ); + if ( regcomp( &lm->lm_dn_regex, lm->lm_dn_pat.bv_val, REG_EXTENDED | REG_ICASE ) ) { - ber_bvfree( lm->lm_dn_pat ); + free( lm->lm_dn_pat.bv_val ); ch_free( lm ); return( -1 ); } @@ -182,7 +182,8 @@ add_limits( case SLAP_LIMITS_ANONYMOUS: case SLAP_LIMITS_USERS: lm->lm_type = type; - lm->lm_dn_pat = NULL; + lm->lm_dn_pat.bv_val = NULL; + lm->lm_dn_pat.bv_len = 0; break; }