else
rc = 1;
break;
- case CFG_LIMITS: /* FIXME */
- rc = 1;
+ case CFG_LIMITS:
+ if ( c->be->be_limits ) {
+ char buf[4096*3];
+ struct berval bv;
+ int i;
+
+ for ( i=0; c->be->be_limits[i]; i++ ) {
+ bv.bv_len = sprintf( buf, "{%d}", i );
+ bv.bv_val = buf+bv.bv_len;
+ limits_unparse( c->be->be_limits[i], &bv );
+ bv.bv_len += bv.bv_val - buf;
+ bv.bv_val = buf;
+ value_add_one( &c->rvalue_vals, &bv );
+ }
+ }
+ if ( !c->rvalue_vals ) rc = 1;
break;
case CFG_RO:
c->value_int = (c->be->be_restrictops & SLAP_RESTRICT_OP_WRITES) != 0;
char *next;
struct slap_limits_set *lim = &c->be->be_def_limit;
if (c->emit) {
- struct berval bv = BER_BVNULL;
+ char buf[8192];
+ struct berval bv;
+ bv.bv_val = buf;
+ bv.bv_len = 0;
limits_unparse_one( lim, SLAP_LIMIT_SIZE, &bv );
if ( !BER_BVISEMPTY( &bv ))
- ber_bvarray_add( &c->rvalue_vals, &bv );
+ value_add_one( &c->rvalue_vals, &bv );
else
rc = 1;
return rc;
char *next;
struct slap_limits_set *lim = &c->be->be_def_limit;
if (c->emit) {
- struct berval bv = BER_BVNULL;
+ char buf[8192];
+ struct berval bv;
+ bv.bv_val = buf;
+ bv.bv_len = 0;
limits_unparse_one( lim, SLAP_LIMIT_TIME, &bv );
if ( !BER_BVISEMPTY( &bv ))
- ber_bvarray_add( &c->rvalue_vals, &bv );
+ value_add_one( &c->rvalue_vals, &bv );
else
rc = 1;
return rc;
return 0;
}
+static const char *lmpats[] = {
+ "exact",
+ "exact",
+ "onelvel",
+ "subtree",
+ "children",
+ "regex",
+ "anonymous",
+ "users",
+ "*"
+};
+
+/* Caller must provide an adequately sized buffer in bv */
void
-limits_unparse_one( struct slap_limits_set *lim, int which, struct berval *bv )
+limits_unparse( struct slap_limits *lim, struct berval *bv )
{
- char buf[8192], *ptr;
+ struct berval btmp;
+ char *ptr;
+ int lm;
- ptr = buf;
- if ( which & SLAP_LIMIT_TIME ) {
- if ( lim->lms_t_soft != SLAPD_DEFAULT_TIMELIMIT ) {
- ptr = lutil_strcopy( ptr, " time.soft=" );
- if ( lim->lms_t_soft == -1 )
- ptr = lutil_strcopy( ptr, "unlimited" );
- else
- ptr += sprintf( ptr, "%d", lim->lms_t_soft );
- *ptr++ = ' ';
- }
- if ( lim->lms_t_hard ) {
- ptr = lutil_strcopy( ptr, " time.hard=" );
- if ( lim->lms_t_hard == -1 )
- ptr = lutil_strcopy( ptr, "unlimited" );
- else
- ptr += sprintf( ptr, "%d", lim->lms_t_hard );
- *ptr++ = ' ';
+ if ( !bv || !bv->bv_val ) return;
+
+ ptr = bv->bv_val;
+
+ if (( lim->lm_flags & SLAP_LIMITS_TYPE_MASK ) == SLAP_LIMITS_TYPE_GROUP ) {
+ ptr = lutil_strcopy( ptr, "group/" );
+ ptr = lutil_strcopy( ptr, lim->lm_group_oc->soc_cname.bv_val );
+ *ptr++ = '/';
+ ptr = lutil_strcopy( ptr, lim->lm_group_ad->ad_cname.bv_val );
+ } else {
+ lm = lim->lm_flags & SLAP_LIMITS_MASK;
+ switch( lm ) {
+ case SLAP_LIMITS_ANONYMOUS:
+ case SLAP_LIMITS_USERS:
+ case SLAP_LIMITS_ANY:
+ ptr = lutil_strcopy( ptr, lmpats[lm] );
+ break;
+ case SLAP_LIMITS_UNDEFINED:
+ case SLAP_LIMITS_EXACT:
+ case SLAP_LIMITS_ONE:
+ case SLAP_LIMITS_SUBTREE:
+ case SLAP_LIMITS_CHILDREN:
+ case SLAP_LIMITS_REGEX:
+ ptr = lutil_strcopy( ptr, "dn." );
+ ptr = lutil_strcopy( ptr, lmpats[lm] );
+ *ptr++ = '=';
+ *ptr++ = '"';
+ ptr = lutil_strcopy( ptr, lim->lm_pat.bv_val );
+ *ptr++ = '"';
+ break;
}
}
+ *ptr++ = ' ';
+ bv->bv_len = ptr - bv->bv_val;
+ btmp.bv_val = ptr;
+ btmp.bv_len = 0;
+ limits_unparse_one( &lim->lm_limits, SLAP_LIMIT_SIZE|SLAP_LIMIT_TIME, &btmp );
+ bv->bv_len += btmp.bv_len;
+}
+
+/* Caller must provide an adequately sized buffer in bv */
+void
+limits_unparse_one( struct slap_limits_set *lim, int which, struct berval *bv )
+{
+ char *ptr;
+
+ if ( !bv || !bv->bv_val ) return;
+
+ ptr = bv->bv_val;
+
if ( which & SLAP_LIMIT_SIZE ) {
if ( lim->lms_s_soft != SLAPD_DEFAULT_SIZELIMIT ) {
- ptr = lutil_strcopy( ptr, " size.soft=" );
+
+ /* If there's also a hard limit, fully qualify this one */
+ if ( lim->lms_s_hard )
+ ptr = lutil_strcopy( ptr, " size.soft=" );
+
+ /* If doing both size & time, qualify this */
+ else if ( which & SLAP_LIMIT_TIME )
+ ptr = lutil_strcopy( ptr, " size=" );
+
+ /* Otherwise if same as global limit, drop it */
+ else if ( lim != &frontendDB->be_def_limit &&
+ lim->lms_s_soft == frontendDB->be_def_limit.lms_s_soft )
+ return;
if ( lim->lms_s_soft == -1 )
ptr = lutil_strcopy( ptr, "unlimited" );
else
}
if ( lim->lms_s_hard ) {
ptr = lutil_strcopy( ptr, " size.hard=" );
- if ( lim->lms_s_soft == -1 )
+ if ( lim->lms_s_hard == -1 )
ptr = lutil_strcopy( ptr, "unlimited" );
else
ptr += sprintf( ptr, "%d", lim->lms_s_hard );
*ptr++ = ' ';
}
}
- if ( ptr != buf ) {
+ if ( which & SLAP_LIMIT_TIME ) {
+ if ( lim->lms_t_soft != SLAPD_DEFAULT_TIMELIMIT ) {
+
+ /* If there's also a hard limit, fully qualify this one */
+ if ( lim->lms_t_hard )
+ ptr = lutil_strcopy( ptr, " time.soft=" );
+
+ /* If doing both size & time, qualify this */
+ else if ( which & SLAP_LIMIT_SIZE )
+ ptr = lutil_strcopy( ptr, " time=" );
+
+ /* Otherwise, if same as global limit, drop it */
+ else if ( lim != &frontendDB->be_def_limit &&
+ lim->lms_t_soft == frontendDB->be_def_limit.lms_t_soft )
+ return;
+
+ if ( lim->lms_t_soft == -1 )
+ ptr = lutil_strcopy( ptr, "unlimited" );
+ else
+ ptr += sprintf( ptr, "%d", lim->lms_t_soft );
+ *ptr++ = ' ';
+ }
+ if ( lim->lms_t_hard ) {
+ ptr = lutil_strcopy( ptr, " time.hard=" );
+ if ( lim->lms_t_hard == -1 )
+ ptr = lutil_strcopy( ptr, "unlimited" );
+ else
+ ptr += sprintf( ptr, "%d", lim->lms_t_hard );
+ *ptr++ = ' ';
+ }
+ }
+ if ( ptr != bv->bv_val ) {
ptr--;
*ptr = '\0';
- bv->bv_len = ptr - buf - 1;
- ber_str2bv( buf+1, bv->bv_len, 1, bv );
+ bv->bv_len = ptr - bv->bv_val;
}
}