2004-04-17 16:17:43 +08:00
|
|
|
/* unique.c - attribute uniqueness module */
|
|
|
|
/* $OpenLDAP$ */
|
|
|
|
/* This work is part of OpenLDAP Software <http://www.openldap.org/>.
|
|
|
|
*
|
2007-01-03 04:00:42 +08:00
|
|
|
* Copyright 2004-2007 The OpenLDAP Foundation.
|
2007-03-22 16:22:53 +08:00
|
|
|
* Portions Copyright 2004,2006-2007 Symas Corporation.
|
2004-04-17 16:17:43 +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>.
|
|
|
|
*/
|
2007-03-22 16:22:53 +08:00
|
|
|
/* ACKNOWLEDGEMENTS:
|
|
|
|
* This work was initially developed by Symas Corporation for
|
|
|
|
* inclusion in OpenLDAP Software, with subsequent enhancements by
|
|
|
|
* Matthew Backes at Symas Corporation. This work was sponsored by
|
|
|
|
* Hewlett-Packard.
|
2004-04-17 16:17:43 +08:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include "portable.h"
|
|
|
|
|
|
|
|
#ifdef SLAPD_OVER_UNIQUE
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
|
|
|
|
#include <ac/string.h>
|
|
|
|
#include <ac/socket.h>
|
|
|
|
|
|
|
|
#include "slap.h"
|
2006-04-27 10:12:34 +08:00
|
|
|
#include "config.h"
|
2004-04-17 16:17:43 +08:00
|
|
|
|
2007-03-22 16:22:53 +08:00
|
|
|
#define UNIQUE_DEFAULT_URI ("ldap:///??sub")
|
|
|
|
|
2004-04-17 16:17:43 +08:00
|
|
|
static slap_overinst unique;
|
|
|
|
|
|
|
|
typedef struct unique_attrs_s {
|
2007-03-22 16:22:53 +08:00
|
|
|
struct unique_attrs_s *next; /* list of attrs */
|
2004-04-17 16:17:43 +08:00
|
|
|
AttributeDescription *attr;
|
|
|
|
} unique_attrs;
|
|
|
|
|
2007-03-22 16:22:53 +08:00
|
|
|
typedef struct unique_domain_uri_s {
|
|
|
|
struct unique_domain_uri_s *next;
|
|
|
|
struct berval *dn;
|
|
|
|
struct berval *ndn;
|
|
|
|
struct berval *filter;
|
|
|
|
struct unique_attrs_s *attrs;
|
|
|
|
int scope;
|
|
|
|
} unique_domain_uri;
|
|
|
|
|
|
|
|
typedef struct unique_domain_s {
|
|
|
|
struct unique_domain_s *next;
|
|
|
|
struct berval *domain_spec;
|
|
|
|
struct unique_domain_uri_s *uri;
|
|
|
|
char ignore; /* polarity of attributes */
|
|
|
|
char strict; /* null considered unique too */
|
|
|
|
} unique_domain;
|
|
|
|
|
2004-04-17 16:17:43 +08:00
|
|
|
typedef struct unique_data_s {
|
2007-03-22 16:22:53 +08:00
|
|
|
struct unique_domain_s *domains;
|
|
|
|
struct unique_domain_s *legacy;
|
|
|
|
char legacy_strict_set;
|
2004-04-17 16:17:43 +08:00
|
|
|
} unique_data;
|
|
|
|
|
|
|
|
typedef struct unique_counter_s {
|
2005-03-14 07:18:49 +08:00
|
|
|
struct berval *ndn;
|
2004-04-17 16:17:43 +08:00
|
|
|
int count;
|
|
|
|
} unique_counter;
|
|
|
|
|
2006-04-27 10:12:34 +08:00
|
|
|
enum {
|
|
|
|
UNIQUE_BASE = 1,
|
|
|
|
UNIQUE_IGNORE,
|
|
|
|
UNIQUE_ATTR,
|
2007-03-22 16:22:53 +08:00
|
|
|
UNIQUE_STRICT,
|
|
|
|
UNIQUE_URI
|
2006-04-27 10:12:34 +08:00
|
|
|
};
|
|
|
|
|
2007-03-22 16:22:53 +08:00
|
|
|
static ConfigDriver unique_cf_base;
|
|
|
|
static ConfigDriver unique_cf_attrs;
|
|
|
|
static ConfigDriver unique_cf_strict;
|
|
|
|
static ConfigDriver unique_cf_uri;
|
2006-04-27 10:12:34 +08:00
|
|
|
|
|
|
|
static ConfigTable uniquecfg[] = {
|
|
|
|
{ "unique_base", "basedn", 2, 2, 0, ARG_DN|ARG_MAGIC|UNIQUE_BASE,
|
2007-03-22 16:22:53 +08:00
|
|
|
unique_cf_base, "( OLcfgOvAt:10.1 NAME 'olcUniqueBase' "
|
2006-04-27 10:12:34 +08:00
|
|
|
"DESC 'Subtree for uniqueness searches' "
|
2007-03-22 16:22:53 +08:00
|
|
|
"EQUALITY distinguishedNameMatch "
|
2006-04-27 10:12:34 +08:00
|
|
|
"SYNTAX OMsDN SINGLE-VALUE )", NULL, NULL },
|
|
|
|
{ "unique_ignore", "attribute...", 2, 0, 0, ARG_MAGIC|UNIQUE_IGNORE,
|
2007-03-22 16:22:53 +08:00
|
|
|
unique_cf_attrs, "( OLcfgOvAt:10.2 NAME 'olcUniqueIgnore' "
|
2006-04-27 10:12:34 +08:00
|
|
|
"DESC 'Attributes for which uniqueness shall not be enforced' "
|
2007-03-22 16:22:53 +08:00
|
|
|
"EQUALITY caseIgnoreMatch "
|
|
|
|
"ORDERING caseIgnoreOrderingMatch "
|
|
|
|
"SUBSTR caseIgnoreSubstringsMatch "
|
2006-04-27 10:12:34 +08:00
|
|
|
"SYNTAX OMsDirectoryString )", NULL, NULL },
|
|
|
|
{ "unique_attributes", "attribute...", 2, 0, 0, ARG_MAGIC|UNIQUE_ATTR,
|
2007-03-22 16:22:53 +08:00
|
|
|
unique_cf_attrs, "( OLcfgOvAt:10.3 NAME 'olcUniqueAttribute' "
|
2006-04-27 10:12:34 +08:00
|
|
|
"DESC 'Attributes for which uniqueness shall be enforced' "
|
2006-11-12 10:15:49 +08:00
|
|
|
"EQUALITY caseIgnoreMatch "
|
2007-03-22 16:22:53 +08:00
|
|
|
"ORDERING caseIgnoreOrderingMatch "
|
|
|
|
"SUBSTR caseIgnoreSubstringsMatch "
|
2006-04-27 10:12:34 +08:00
|
|
|
"SYNTAX OMsDirectoryString )", NULL, NULL },
|
2007-03-22 16:22:53 +08:00
|
|
|
{ "unique_strict", "on|off", 1, 2, 0, ARG_MAGIC|UNIQUE_STRICT,
|
|
|
|
unique_cf_strict, "( OLcfgOvAt:10.4 NAME 'olcUniqueStrict' "
|
2006-04-27 10:12:34 +08:00
|
|
|
"DESC 'Enforce uniqueness of null values' "
|
2007-03-22 16:22:53 +08:00
|
|
|
"EQUALITY booleanMatch "
|
2006-04-27 10:12:34 +08:00
|
|
|
"SYNTAX OMsBoolean SINGLE-VALUE )", NULL, NULL },
|
2007-03-22 16:22:53 +08:00
|
|
|
{ "unique_uri", "ldapuri", 2, 3, 0, ARG_MAGIC|UNIQUE_URI,
|
|
|
|
unique_cf_uri, "( OLcfgOvAt:10.5 NAME 'olcUniqueURI' "
|
|
|
|
"DESC 'List of keywords and LDAP URIs for a uniqueness domain' "
|
|
|
|
"EQUALITY caseExactMatch "
|
|
|
|
"ORDERING caseExactOrderingMatch "
|
|
|
|
"SUBSTR caseExactSubstringsMatch "
|
|
|
|
"SYNTAX OMsDirectoryString )", NULL, NULL },
|
2006-04-27 10:12:34 +08:00
|
|
|
{ NULL, NULL, 0, 0, 0, ARG_IGNORED }
|
|
|
|
};
|
|
|
|
|
|
|
|
static ConfigOCs uniqueocs[] = {
|
|
|
|
{ "( OLcfgOvOc:10.1 "
|
|
|
|
"NAME 'olcUniqueConfig' "
|
|
|
|
"DESC 'Attribute value uniqueness configuration' "
|
|
|
|
"SUP olcOverlayConfig "
|
|
|
|
"MAY ( olcUniqueBase $ olcUniqueIgnore $ "
|
2007-03-22 16:22:53 +08:00
|
|
|
"olcUniqueAttribute $ olcUniqueStrict $ "
|
|
|
|
"olcUniqueURI ) )",
|
2006-04-27 10:12:34 +08:00
|
|
|
Cft_Overlay, uniquecfg },
|
|
|
|
{ NULL, 0, NULL }
|
|
|
|
};
|
|
|
|
|
2007-03-22 16:22:53 +08:00
|
|
|
static void
|
|
|
|
unique_free_domain_uri ( unique_domain_uri *uri )
|
|
|
|
{
|
|
|
|
unique_domain_uri *next_uri = NULL;
|
|
|
|
unique_attrs *attr, *next_attr = NULL;
|
|
|
|
|
|
|
|
while ( uri ) {
|
|
|
|
next_uri = uri->next;
|
|
|
|
ber_bvfree ( uri->dn );
|
|
|
|
ber_bvfree ( uri->ndn );
|
|
|
|
ber_bvfree ( uri->filter );
|
|
|
|
attr = uri->attrs;
|
|
|
|
while ( attr ) {
|
|
|
|
next_attr = attr->next;
|
|
|
|
ch_free (attr);
|
|
|
|
attr = next_attr;
|
|
|
|
}
|
|
|
|
ch_free ( uri );
|
|
|
|
uri = next_uri;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* free an entire stack of domains */
|
|
|
|
static void
|
|
|
|
unique_free_domain ( unique_domain *domain )
|
|
|
|
{
|
|
|
|
unique_domain *next_domain = NULL;
|
|
|
|
|
|
|
|
while ( domain ) {
|
|
|
|
next_domain = domain->next;
|
|
|
|
ber_bvfree ( domain->domain_spec );
|
|
|
|
unique_free_domain_uri ( domain->uri );
|
|
|
|
ch_free ( domain );
|
|
|
|
domain = next_domain;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-04-27 10:12:34 +08:00
|
|
|
static int
|
2007-03-22 16:22:53 +08:00
|
|
|
unique_new_domain_uri ( unique_domain_uri **urip,
|
|
|
|
const LDAPURLDesc *url_desc,
|
|
|
|
ConfigArgs *c )
|
2006-04-27 10:12:34 +08:00
|
|
|
{
|
2007-03-22 16:22:53 +08:00
|
|
|
int i, rc = LDAP_SUCCESS;
|
|
|
|
unique_domain_uri *uri;
|
|
|
|
struct berval bv = {0, NULL};
|
2006-04-27 10:12:34 +08:00
|
|
|
BackendDB *be = (BackendDB *)c->be;
|
2007-03-22 16:22:53 +08:00
|
|
|
char ** attr_str;
|
|
|
|
AttributeDescription * ad;
|
|
|
|
const char * text;
|
|
|
|
|
|
|
|
uri = ch_calloc ( 1, sizeof ( unique_domain_uri ) );
|
|
|
|
|
|
|
|
if ( url_desc->lud_dn && url_desc->lud_dn[0] ) {
|
|
|
|
ber_str2bv( url_desc->lud_dn, 0, 1, &bv );
|
|
|
|
rc = dnPrettyNormal( NULL,
|
|
|
|
&bv,
|
|
|
|
uri->dn,
|
|
|
|
uri->ndn,
|
|
|
|
NULL );
|
|
|
|
if ( rc != LDAP_SUCCESS ) {
|
|
|
|
snprintf( c->msg, sizeof( c->msg ),
|
|
|
|
"<%s> invalid DN %d (%s)",
|
|
|
|
url_desc->lud_dn, rc, ldap_err2string( rc ));
|
|
|
|
rc = ARG_BAD_CONF;
|
|
|
|
goto exit;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( !dnIsSuffix ( uri->ndn, &be->be_nsuffix[0] ) ) {
|
|
|
|
sprintf ( c->msg,
|
|
|
|
"dn <%s> is not a suffix of backend base dn <%s>",
|
|
|
|
uri->dn->bv_val,
|
|
|
|
be->be_nsuffix[0].bv_val );
|
|
|
|
rc = ARG_BAD_CONF;
|
|
|
|
goto exit;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
attr_str = url_desc->lud_attrs;
|
|
|
|
if ( attr_str ) {
|
|
|
|
for ( i=0; attr_str[i]; ++i ) {
|
|
|
|
unique_attrs * attr;
|
|
|
|
ad = NULL;
|
|
|
|
if ( slap_str2ad ( attr_str[i], &ad, &text )
|
|
|
|
== LDAP_SUCCESS) {
|
|
|
|
attr = ch_calloc ( 1,
|
|
|
|
sizeof ( unique_attrs ) );
|
|
|
|
attr->attr = ad;
|
|
|
|
attr->next = uri->attrs;
|
|
|
|
uri->attrs = attr;
|
|
|
|
} else {
|
|
|
|
snprintf( c->msg, sizeof( c->msg ),
|
|
|
|
"unique: attribute: %s: %s",
|
|
|
|
attr_str[i], text );
|
|
|
|
rc = ARG_BAD_CONF;
|
|
|
|
goto exit;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
uri->scope = url_desc->lud_scope;
|
|
|
|
if ( !uri->scope ) {
|
|
|
|
snprintf( c->msg, sizeof( c->msg ),
|
|
|
|
"unique: uri with base scope will always be unique");
|
|
|
|
rc = ARG_BAD_CONF;
|
|
|
|
goto exit;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (url_desc->lud_filter) {
|
|
|
|
Filter * f;
|
|
|
|
uri->filter = ber_str2bv( url_desc->lud_filter, 0, 1, NULL);
|
|
|
|
f = str2filter( uri->filter->bv_val );
|
|
|
|
if ( !f ) {
|
|
|
|
snprintf( c->msg, sizeof( c->msg ),
|
|
|
|
"unique: bad filter");
|
|
|
|
rc = ARG_BAD_CONF;
|
|
|
|
goto exit;
|
|
|
|
}
|
|
|
|
filter_free( f );
|
|
|
|
}
|
|
|
|
exit:
|
|
|
|
if ( bv.bv_val ) ber_memfree ( bv.bv_val );
|
|
|
|
uri->next = *urip;
|
|
|
|
*urip = uri;
|
|
|
|
if ( rc ) {
|
|
|
|
Debug ( LDAP_DEBUG_CONFIG|LDAP_DEBUG_NONE,
|
|
|
|
"%s: %s\n", c->log, c->msg, 0 );
|
|
|
|
unique_free_domain_uri ( uri );
|
|
|
|
*urip = NULL;
|
|
|
|
}
|
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
unique_new_domain_uri_basic ( unique_domain_uri **urip,
|
|
|
|
ConfigArgs *c )
|
|
|
|
{
|
|
|
|
LDAPURLDesc *url_desc = NULL;
|
|
|
|
int rc;
|
|
|
|
|
|
|
|
rc = ldap_url_parse ( UNIQUE_DEFAULT_URI, &url_desc );
|
|
|
|
if ( rc ) return rc;
|
|
|
|
rc = unique_new_domain_uri ( urip, url_desc, c );
|
|
|
|
ldap_free_urldesc ( url_desc );
|
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* if *domain is non-null, it's pushed down the stack.
|
|
|
|
* note that the entire stack is freed if there is an error,
|
|
|
|
* so build added domains in a separate stack before adding them
|
|
|
|
*
|
|
|
|
* domain_specs look like
|
|
|
|
*
|
|
|
|
* [strict ][ignore ]uri[[ uri]...]
|
|
|
|
* e.g. "ldap:///ou=foo,o=bar?uid?sub ldap:///ou=baz,o=bar?uid?sub"
|
|
|
|
* "strict ldap:///ou=accounts,o=bar?uid,uidNumber?one"
|
|
|
|
* etc
|
|
|
|
*
|
|
|
|
* so finally strictness is per-domain
|
|
|
|
* but so is ignore-state, and that would be better as a per-url thing
|
|
|
|
*/
|
|
|
|
static int
|
|
|
|
unique_new_domain ( unique_domain **domainp,
|
|
|
|
char *domain_spec,
|
|
|
|
ConfigArgs *c )
|
|
|
|
{
|
|
|
|
char *uri_start;
|
|
|
|
int rc = LDAP_SUCCESS;
|
|
|
|
int uri_err = 0;
|
|
|
|
unique_domain * domain;
|
|
|
|
LDAPURLDesc *url_desc, *url_descs = NULL;
|
|
|
|
|
|
|
|
Debug(LDAP_DEBUG_TRACE, "==> unique_new_domain <%s>\n",
|
|
|
|
domain_spec, 0, 0);
|
|
|
|
|
|
|
|
domain = ch_calloc ( 1, sizeof (unique_domain) );
|
|
|
|
domain->domain_spec = ber_str2bv( domain_spec, 0, 1, NULL );
|
|
|
|
|
|
|
|
uri_start = domain_spec;
|
|
|
|
if ( strncasecmp ( uri_start, "ignore ",
|
|
|
|
STRLENOF( "ignore " ) ) == 0 ) {
|
|
|
|
domain->ignore = 1;
|
|
|
|
uri_start += STRLENOF( "ignore " );
|
|
|
|
}
|
|
|
|
if ( strncasecmp ( uri_start, "strict ",
|
|
|
|
STRLENOF( "strict " ) ) == 0 ) {
|
|
|
|
domain->strict = 1;
|
|
|
|
uri_start += STRLENOF( "strict " );
|
|
|
|
if ( !domain->ignore
|
|
|
|
&& strncasecmp ( uri_start, "ignore ",
|
|
|
|
STRLENOF( "ignore " ) ) == 0 ) {
|
|
|
|
domain->ignore = 1;
|
|
|
|
uri_start += STRLENOF( "ignore " );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
rc = ldap_url_parselist_ext ( &url_descs, uri_start, " ", 0 );
|
|
|
|
if ( rc ) {
|
|
|
|
snprintf( c->msg, sizeof( c->msg ),
|
|
|
|
"<%s> invalid ldap urilist",
|
|
|
|
uri_start );
|
|
|
|
rc = ARG_BAD_CONF;
|
|
|
|
goto exit;
|
|
|
|
}
|
|
|
|
|
|
|
|
for ( url_desc = url_descs;
|
|
|
|
url_desc;
|
|
|
|
url_desc = url_descs->lud_next ) {
|
|
|
|
rc = unique_new_domain_uri ( &domain->uri,
|
|
|
|
url_desc,
|
|
|
|
c );
|
|
|
|
if ( rc ) {
|
|
|
|
rc = ARG_BAD_CONF;
|
|
|
|
uri_err = 1;
|
|
|
|
goto exit;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
exit:
|
|
|
|
if ( url_descs ) ldap_free_urldesc ( url_descs );
|
|
|
|
domain->next = *domainp;
|
|
|
|
*domainp = domain;
|
|
|
|
if ( rc ) {
|
|
|
|
Debug ( LDAP_DEBUG_CONFIG|LDAP_DEBUG_NONE,
|
|
|
|
"%s: %s\n", c->log, c->msg, 0 );
|
|
|
|
unique_free_domain ( domain );
|
|
|
|
*domainp = NULL;
|
|
|
|
}
|
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
unique_cf_base( ConfigArgs *c )
|
|
|
|
{
|
|
|
|
BackendDB *be = (BackendDB *)c->be;
|
|
|
|
slap_overinst *on = (slap_overinst *)c->bi;
|
|
|
|
unique_data *private = (unique_data *) on->on_bi.bi_private;
|
|
|
|
unique_domain *domains = private->domains;
|
|
|
|
unique_domain *legacy = private->legacy;
|
2006-04-27 10:12:34 +08:00
|
|
|
int rc = ARG_BAD_CONF;
|
|
|
|
|
|
|
|
switch ( c->op ) {
|
|
|
|
case SLAP_CONFIG_EMIT:
|
2007-03-22 16:22:53 +08:00
|
|
|
rc = 0;
|
|
|
|
if ( legacy && legacy->uri && legacy->uri->dn ) {
|
|
|
|
rc = value_add_one ( &c->rvalue_vals,
|
|
|
|
legacy->uri->dn );
|
|
|
|
if ( rc ) return rc;
|
|
|
|
rc = value_add_one ( &c->rvalue_nvals,
|
|
|
|
legacy->uri->ndn );
|
|
|
|
if ( rc ) return rc;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case LDAP_MOD_DELETE:
|
|
|
|
assert ( legacy && legacy->uri && legacy->uri->dn );
|
|
|
|
rc = 0;
|
|
|
|
ber_bvfree ( legacy->uri->dn );
|
|
|
|
ber_bvfree ( legacy->uri->ndn );
|
|
|
|
legacy->uri->dn = NULL;
|
|
|
|
legacy->uri->ndn = NULL;
|
|
|
|
if ( !legacy->uri->attrs
|
|
|
|
&& !legacy->uri->dn ) {
|
|
|
|
unique_free_domain_uri ( legacy->uri );
|
|
|
|
legacy->uri = NULL;
|
|
|
|
}
|
|
|
|
if ( !legacy->uri && !private->legacy_strict_set ) {
|
|
|
|
unique_free_domain ( legacy );
|
|
|
|
private->legacy = legacy = NULL;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case LDAP_MOD_ADD:
|
|
|
|
case SLAP_CONFIG_ADD:
|
|
|
|
if ( domains ) {
|
|
|
|
sprintf ( c->msg,
|
|
|
|
"cannot set legacy attrs when URIs are present" );
|
|
|
|
Debug ( LDAP_DEBUG_CONFIG, "unique config: %s\n",
|
|
|
|
c->msg, NULL, NULL );
|
|
|
|
rc = ARG_BAD_CONF;
|
2006-04-27 10:12:34 +08:00
|
|
|
break;
|
2007-03-22 16:22:53 +08:00
|
|
|
}
|
|
|
|
if ( !dnIsSuffix ( &c->value_ndn,
|
|
|
|
&be->be_nsuffix[0] ) ) {
|
|
|
|
sprintf ( c->msg,
|
|
|
|
"dn is not a suffix of backend base" );
|
|
|
|
Debug ( LDAP_DEBUG_CONFIG, "unique config: %s\n",
|
|
|
|
c->msg, NULL, NULL );
|
|
|
|
rc = ARG_BAD_CONF;
|
2006-04-27 10:12:34 +08:00
|
|
|
break;
|
|
|
|
}
|
2007-03-22 16:22:53 +08:00
|
|
|
if ( !legacy ) {
|
|
|
|
unique_new_domain ( &private->legacy,
|
|
|
|
UNIQUE_DEFAULT_URI,
|
|
|
|
c );
|
|
|
|
legacy = private->legacy;
|
|
|
|
}
|
|
|
|
if ( !legacy->uri )
|
|
|
|
unique_new_domain_uri_basic ( &legacy->uri, c );
|
|
|
|
ber_bvfree ( legacy->uri->dn );
|
|
|
|
ber_bvfree ( legacy->uri->ndn );
|
|
|
|
legacy->uri->dn = ber_bvdup ( &c->value_dn );
|
|
|
|
legacy->uri->ndn = ber_bvdup ( &c->value_ndn );
|
|
|
|
rc = 0;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
abort();
|
|
|
|
}
|
|
|
|
|
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
unique_cf_attrs( ConfigArgs *c )
|
|
|
|
{
|
|
|
|
slap_overinst *on = (slap_overinst *)c->bi;
|
|
|
|
unique_data *private = (unique_data *) on->on_bi.bi_private;
|
|
|
|
unique_domain *domains = private->domains;
|
|
|
|
unique_domain *legacy = private->legacy;
|
|
|
|
unique_attrs *new_attrs = NULL;
|
|
|
|
unique_attrs *attr, *next_attr, *reverse_attrs;
|
|
|
|
unique_attrs **attrp;
|
|
|
|
int rc = ARG_BAD_CONF;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
switch ( c->op ) {
|
|
|
|
case SLAP_CONFIG_EMIT:
|
|
|
|
if ( legacy
|
|
|
|
&& (c->type == UNIQUE_IGNORE) == legacy->ignore
|
|
|
|
&& legacy->uri )
|
|
|
|
for ( attr = legacy->uri->attrs;
|
|
|
|
attr;
|
|
|
|
attr = attr->next )
|
|
|
|
value_add_one( &c->rvalue_vals,
|
|
|
|
&attr->attr->ad_cname );
|
|
|
|
rc = 0;
|
2006-04-27 10:12:34 +08:00
|
|
|
break;
|
|
|
|
case LDAP_MOD_DELETE:
|
2007-03-22 16:22:53 +08:00
|
|
|
if ( legacy
|
|
|
|
&& (c->type == UNIQUE_IGNORE) == legacy->ignore
|
|
|
|
&& legacy->uri
|
|
|
|
&& legacy->uri->attrs) {
|
|
|
|
if ( c->valx < 0 ) { /* delete all */
|
|
|
|
for ( attr = legacy->uri->attrs;
|
|
|
|
attr;
|
|
|
|
attr = next_attr ) {
|
|
|
|
next_attr = attr->next;
|
|
|
|
ch_free ( attr );
|
|
|
|
}
|
|
|
|
legacy->uri->attrs = NULL;
|
|
|
|
} else { /* delete by index */
|
|
|
|
attrp = &legacy->uri->attrs;
|
|
|
|
for ( i=0; i < c->valx; ++i )
|
|
|
|
attrp = &(*attrp)->next;
|
|
|
|
attr = *attrp;
|
|
|
|
*attrp = attr->next;
|
|
|
|
ch_free (attr);
|
|
|
|
}
|
|
|
|
if ( !legacy->uri->attrs
|
|
|
|
&& !legacy->uri->dn ) {
|
|
|
|
unique_free_domain_uri ( legacy->uri );
|
|
|
|
legacy->uri = NULL;
|
|
|
|
}
|
|
|
|
if ( !legacy->uri && !private->legacy_strict_set ) {
|
|
|
|
unique_free_domain ( legacy );
|
|
|
|
private->legacy = legacy = NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
rc = 0;
|
|
|
|
break;
|
|
|
|
case LDAP_MOD_ADD:
|
|
|
|
case SLAP_CONFIG_ADD:
|
|
|
|
if ( domains ) {
|
|
|
|
sprintf ( c->msg,
|
|
|
|
"cannot set legacy attrs when URIs are present" );
|
|
|
|
Debug ( LDAP_DEBUG_CONFIG, "unique config: %s\n",
|
|
|
|
c->msg, NULL, NULL );
|
|
|
|
rc = ARG_BAD_CONF;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if ( legacy
|
|
|
|
&& legacy->uri
|
|
|
|
&& legacy->uri->attrs
|
|
|
|
&& (c->type == UNIQUE_IGNORE) != legacy->ignore ) {
|
|
|
|
sprintf ( c->msg,
|
|
|
|
"cannot set both attrs and ignore-attrs" );
|
|
|
|
Debug ( LDAP_DEBUG_CONFIG, "unique config: %s\n",
|
|
|
|
c->msg, NULL, NULL );
|
|
|
|
rc = ARG_BAD_CONF;
|
2006-04-27 10:12:34 +08:00
|
|
|
break;
|
2007-03-22 16:22:53 +08:00
|
|
|
}
|
|
|
|
if ( !legacy ) {
|
|
|
|
unique_new_domain ( &private->legacy,
|
|
|
|
UNIQUE_DEFAULT_URI,
|
|
|
|
c );
|
|
|
|
legacy = private->legacy;
|
|
|
|
}
|
|
|
|
if ( !legacy->uri )
|
|
|
|
unique_new_domain_uri_basic ( &legacy->uri, c );
|
|
|
|
rc = 0;
|
|
|
|
for ( i=1; c->argv[i]; ++i ) {
|
|
|
|
AttributeDescription * ad = NULL;
|
|
|
|
const char * text;
|
|
|
|
if ( slap_str2ad ( c->argv[i], &ad, &text )
|
|
|
|
== LDAP_SUCCESS) {
|
|
|
|
|
|
|
|
attr = ch_calloc ( 1,
|
|
|
|
sizeof ( unique_attrs ) );
|
|
|
|
attr->attr = ad;
|
|
|
|
attr->next = new_attrs;
|
|
|
|
new_attrs = attr;
|
|
|
|
} else {
|
|
|
|
snprintf( c->msg, sizeof( c->msg ),
|
|
|
|
"unique: attribute: %s: %s",
|
|
|
|
c->argv[i], text );
|
|
|
|
for ( attr = new_attrs;
|
|
|
|
attr;
|
|
|
|
attr=next_attr ) {
|
|
|
|
next_attr = attr->next;
|
|
|
|
ch_free ( attr );
|
2006-04-27 10:12:34 +08:00
|
|
|
}
|
2007-03-22 16:22:53 +08:00
|
|
|
rc = ARG_BAD_CONF;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if ( rc ) break;
|
|
|
|
|
|
|
|
/* (nconc legacy->uri->attrs (nreverse new_attrs)) */
|
|
|
|
reverse_attrs = NULL;
|
|
|
|
for ( attr = new_attrs;
|
|
|
|
attr;
|
|
|
|
attr = next_attr ) {
|
|
|
|
next_attr = attr->next;
|
|
|
|
attr->next = reverse_attrs;
|
|
|
|
reverse_attrs = attr;
|
|
|
|
}
|
|
|
|
for ( attrp = &legacy->uri->attrs;
|
|
|
|
*attrp;
|
|
|
|
attrp = &(*attrp)->next ) ;
|
|
|
|
*attrp = reverse_attrs;
|
2006-04-27 10:12:34 +08:00
|
|
|
|
2007-03-22 16:22:53 +08:00
|
|
|
legacy->ignore = ( c->type == UNIQUE_IGNORE );
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
abort();
|
|
|
|
}
|
2006-04-27 10:12:34 +08:00
|
|
|
|
2007-03-22 16:22:53 +08:00
|
|
|
if ( rc ) {
|
|
|
|
Debug ( LDAP_DEBUG_CONFIG|LDAP_DEBUG_NONE,
|
|
|
|
"%s: %s\n", c->log, c->msg, 0 );
|
|
|
|
}
|
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
unique_cf_strict( ConfigArgs *c )
|
|
|
|
{
|
|
|
|
slap_overinst *on = (slap_overinst *)c->bi;
|
|
|
|
unique_data *private = (unique_data *) on->on_bi.bi_private;
|
|
|
|
unique_domain *domains = private->domains;
|
|
|
|
unique_domain *legacy = private->legacy;
|
|
|
|
int rc = ARG_BAD_CONF;
|
2006-04-27 10:12:34 +08:00
|
|
|
|
2007-03-22 16:22:53 +08:00
|
|
|
switch ( c->op ) {
|
|
|
|
case SLAP_CONFIG_EMIT:
|
|
|
|
/* We process the boolean manually instead of using
|
|
|
|
* ARG_ON_OFF so that we can three-state it;
|
|
|
|
* olcUniqueStrict is either TRUE, FALSE, or missing,
|
|
|
|
* and missing is necessary to add olcUniqueURIs...
|
|
|
|
*/
|
|
|
|
if ( private->legacy_strict_set ) {
|
|
|
|
struct berval bv;
|
|
|
|
bv.bv_val = legacy->strict ? "TRUE" : "FALSE";
|
|
|
|
bv.bv_len = legacy->strict ?
|
|
|
|
STRLENOF("TRUE") :
|
|
|
|
STRLENOF("FALSE");
|
|
|
|
value_add_one ( &c->rvalue_vals, &bv );
|
|
|
|
}
|
|
|
|
rc = 0;
|
|
|
|
break;
|
|
|
|
case LDAP_MOD_DELETE:
|
|
|
|
if ( legacy ) {
|
|
|
|
legacy->strict = 0;
|
|
|
|
if ( ! legacy->uri ) {
|
|
|
|
unique_free_domain ( legacy );
|
|
|
|
private->legacy = NULL;
|
2006-04-27 10:12:34 +08:00
|
|
|
}
|
|
|
|
}
|
2007-03-22 16:22:53 +08:00
|
|
|
private->legacy_strict_set = 0;
|
|
|
|
rc = 0;
|
2006-04-27 10:12:34 +08:00
|
|
|
break;
|
|
|
|
case LDAP_MOD_ADD:
|
2007-03-22 16:22:53 +08:00
|
|
|
case SLAP_CONFIG_ADD:
|
|
|
|
if ( domains ) {
|
|
|
|
sprintf ( c->msg,
|
|
|
|
"cannot set legacy attrs when URIs are present" );
|
|
|
|
Debug ( LDAP_DEBUG_CONFIG, "unique config: %s\n",
|
|
|
|
c->msg, NULL, NULL );
|
|
|
|
rc = ARG_BAD_CONF;
|
2006-04-27 10:12:34 +08:00
|
|
|
break;
|
2007-03-22 16:22:53 +08:00
|
|
|
}
|
|
|
|
if ( ! legacy ) {
|
|
|
|
unique_new_domain ( &private->legacy,
|
|
|
|
UNIQUE_DEFAULT_URI,
|
|
|
|
c );
|
|
|
|
legacy = private->legacy;
|
|
|
|
}
|
|
|
|
/* ... not using ARG_ON_OFF makes this necessary too */
|
|
|
|
assert ( c->argc == 2 );
|
|
|
|
legacy->strict = (strcasecmp ( c->argv[1], "TRUE" ) == 0);
|
|
|
|
private->legacy_strict_set = 1;
|
|
|
|
rc = 0;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
abort();
|
|
|
|
}
|
|
|
|
|
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
unique_cf_uri( ConfigArgs *c )
|
|
|
|
{
|
|
|
|
slap_overinst *on = (slap_overinst *)c->bi;
|
|
|
|
unique_data *private = (unique_data *) on->on_bi.bi_private;
|
|
|
|
unique_domain *domains = private->domains;
|
|
|
|
unique_domain *legacy = private->legacy;
|
|
|
|
unique_domain *domain = NULL, **domainp = NULL;
|
|
|
|
int rc = ARG_BAD_CONF;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
switch ( c->op ) {
|
|
|
|
case SLAP_CONFIG_EMIT:
|
|
|
|
for ( domain = domains;
|
|
|
|
domain;
|
|
|
|
domain = domain->next ) {
|
|
|
|
rc = value_add_one ( &c->rvalue_vals,
|
|
|
|
domain->domain_spec );
|
|
|
|
if ( rc ) break;
|
|
|
|
rc = value_add_one ( &c->rvalue_nvals,
|
|
|
|
domain->domain_spec );
|
|
|
|
if ( rc ) break;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case LDAP_MOD_DELETE:
|
|
|
|
if ( c->valx < 0 ) { /* delete them all! */
|
|
|
|
unique_free_domain ( domains );
|
|
|
|
private->domains = NULL;
|
|
|
|
} else { /* delete just one */
|
|
|
|
domainp = &private->domains;
|
|
|
|
for ( i=0; i < c->valx && *domainp; ++i )
|
|
|
|
domainp = &(*domainp)->next;
|
|
|
|
|
|
|
|
/* If *domainp is null, we walked off the end
|
|
|
|
* of the list. This happens when back-config
|
|
|
|
* and the overlay are out-of-sync, like when
|
|
|
|
* rejecting changes before ITS#4752 gets
|
|
|
|
* fixed.
|
|
|
|
*
|
|
|
|
* This should never happen, but will appear
|
|
|
|
* if you backport this version of
|
|
|
|
* slapo-unique without the config-undo fixes
|
|
|
|
*
|
|
|
|
* test024 Will hit this case in such a
|
|
|
|
* situation.
|
|
|
|
*/
|
|
|
|
assert (*domainp);
|
|
|
|
|
|
|
|
domain = *domainp;
|
|
|
|
*domainp = domain->next;
|
|
|
|
domain->next = NULL;
|
|
|
|
unique_free_domain ( domain );
|
|
|
|
}
|
|
|
|
rc = 0;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case SLAP_CONFIG_ADD: /* fallthrough */
|
|
|
|
case LDAP_MOD_ADD:
|
|
|
|
if ( legacy ) {
|
|
|
|
sprintf ( c->msg,
|
|
|
|
"cannot set Uri when legacy attrs are present" );
|
|
|
|
Debug ( LDAP_DEBUG_CONFIG, "unique config: %s\n",
|
|
|
|
c->msg, NULL, NULL );
|
|
|
|
rc = ARG_BAD_CONF;
|
2006-04-27 10:12:34 +08:00
|
|
|
break;
|
|
|
|
}
|
2007-03-22 16:22:53 +08:00
|
|
|
rc = 0;
|
|
|
|
if ( c->line ) rc = unique_new_domain ( &domain, c->line, c );
|
|
|
|
else rc = unique_new_domain ( &domain, c->argv[1], c );
|
|
|
|
if ( rc ) break;
|
|
|
|
assert ( domain->next == NULL );
|
|
|
|
for ( domainp = &private->domains;
|
|
|
|
*domainp;
|
|
|
|
domainp = &(*domainp)->next ) ;
|
|
|
|
*domainp = domain;
|
|
|
|
|
2006-04-27 10:12:34 +08:00
|
|
|
break;
|
2007-03-22 16:22:53 +08:00
|
|
|
|
2006-04-27 10:12:34 +08:00
|
|
|
default:
|
|
|
|
abort ();
|
|
|
|
}
|
|
|
|
|
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
|
2004-04-17 16:17:43 +08:00
|
|
|
/*
|
|
|
|
** allocate new unique_data;
|
|
|
|
** initialize, copy basedn;
|
|
|
|
** store in on_bi.bi_private;
|
|
|
|
**
|
|
|
|
*/
|
|
|
|
|
2007-03-22 16:22:53 +08:00
|
|
|
static int
|
|
|
|
unique_db_init(
|
2004-04-17 16:17:43 +08:00
|
|
|
BackendDB *be
|
|
|
|
)
|
|
|
|
{
|
|
|
|
slap_overinst *on = (slap_overinst *)be->bd_info;
|
2007-03-22 16:22:53 +08:00
|
|
|
unique_data **privatep = (unique_data **) &on->on_bi.bi_private;
|
2004-04-17 16:17:43 +08:00
|
|
|
|
2007-03-22 16:22:53 +08:00
|
|
|
Debug(LDAP_DEBUG_TRACE, "==> unique_db_init\n", 0, 0, 0);
|
|
|
|
|
|
|
|
*privatep = ch_calloc ( 1, sizeof ( unique_data ) );
|
2004-04-17 16:17:43 +08:00
|
|
|
|
2004-06-12 23:08:59 +08:00
|
|
|
return 0;
|
2004-04-17 16:17:43 +08:00
|
|
|
}
|
|
|
|
|
2007-03-22 16:22:53 +08:00
|
|
|
static int
|
|
|
|
unique_db_destroy(
|
2006-04-27 10:12:34 +08:00
|
|
|
BackendDB *be
|
2004-04-17 16:17:43 +08:00
|
|
|
)
|
|
|
|
{
|
2006-04-27 10:12:34 +08:00
|
|
|
slap_overinst *on = (slap_overinst *)be->bd_info;
|
2007-03-22 16:22:53 +08:00
|
|
|
unique_data **privatep = (unique_data **) &on->on_bi.bi_private;
|
|
|
|
unique_data *private = *privatep;
|
|
|
|
|
|
|
|
Debug(LDAP_DEBUG_TRACE, "==> unique_db_destroy\n", 0, 0, 0);
|
|
|
|
|
|
|
|
if ( private ) {
|
|
|
|
unique_domain *domains = private->domains;
|
|
|
|
unique_domain *legacy = private->legacy;
|
2004-04-17 16:17:43 +08:00
|
|
|
|
2007-03-22 16:22:53 +08:00
|
|
|
unique_free_domain ( domains );
|
|
|
|
unique_free_domain ( legacy );
|
|
|
|
ch_free ( private );
|
|
|
|
*privatep = NULL;
|
2004-04-17 16:17:43 +08:00
|
|
|
}
|
2007-03-22 16:22:53 +08:00
|
|
|
|
2006-04-27 10:12:34 +08:00
|
|
|
return 0;
|
2004-04-17 16:17:43 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
unique_open(
|
|
|
|
BackendDB *be
|
|
|
|
)
|
|
|
|
{
|
|
|
|
Debug(LDAP_DEBUG_TRACE, "unique_open: overlay initialized\n", 0, 0, 0);
|
|
|
|
|
2007-03-22 16:22:53 +08:00
|
|
|
return 0;
|
2004-04-17 16:17:43 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
2007-03-22 16:22:53 +08:00
|
|
|
** Leave unique_data but wipe out config
|
2004-04-17 16:17:43 +08:00
|
|
|
**
|
|
|
|
*/
|
|
|
|
|
|
|
|
static int
|
|
|
|
unique_close(
|
|
|
|
BackendDB *be
|
|
|
|
)
|
|
|
|
{
|
|
|
|
slap_overinst *on = (slap_overinst *) be->bd_info;
|
2007-03-22 16:22:53 +08:00
|
|
|
unique_data **privatep = (unique_data **) &on->on_bi.bi_private;
|
|
|
|
unique_data *private = *privatep;
|
2004-04-17 16:17:43 +08:00
|
|
|
|
|
|
|
Debug(LDAP_DEBUG_TRACE, "==> unique_close\n", 0, 0, 0);
|
|
|
|
|
2007-03-22 16:22:53 +08:00
|
|
|
if ( private ) {
|
|
|
|
unique_domain *domains = private->domains;
|
|
|
|
unique_domain *legacy = private->legacy;
|
2004-04-17 16:17:43 +08:00
|
|
|
|
2007-03-22 16:22:53 +08:00
|
|
|
unique_free_domain ( domains );
|
|
|
|
unique_free_domain ( legacy );
|
|
|
|
memset ( private, 0, sizeof ( unique_data ) );
|
2004-04-17 16:17:43 +08:00
|
|
|
}
|
|
|
|
|
2007-03-22 16:22:53 +08:00
|
|
|
return ( 0 );
|
2004-04-17 16:17:43 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
** search callback
|
|
|
|
** if this is a REP_SEARCH, count++;
|
|
|
|
**
|
|
|
|
*/
|
|
|
|
|
|
|
|
static int count_attr_cb(
|
|
|
|
Operation *op,
|
|
|
|
SlapReply *rs
|
|
|
|
)
|
|
|
|
{
|
2005-03-14 07:18:49 +08:00
|
|
|
unique_counter *uc;
|
|
|
|
|
2004-04-17 16:17:43 +08:00
|
|
|
/* because you never know */
|
|
|
|
if(!op || !rs) return(0);
|
|
|
|
|
|
|
|
/* Only search entries are interesting */
|
|
|
|
if(rs->sr_type != REP_SEARCH) return(0);
|
|
|
|
|
2005-03-14 07:18:49 +08:00
|
|
|
uc = op->o_callback->sc_private;
|
|
|
|
|
|
|
|
/* Ignore the current entry */
|
|
|
|
if ( dn_match( uc->ndn, &rs->sr_entry->e_nname )) return(0);
|
|
|
|
|
2004-04-17 16:17:43 +08:00
|
|
|
Debug(LDAP_DEBUG_TRACE, "==> count_attr_cb <%s>\n",
|
|
|
|
rs->sr_entry ? rs->sr_entry->e_name.bv_val : "UNKNOWN_DN", 0, 0);
|
|
|
|
|
2005-03-14 07:18:49 +08:00
|
|
|
uc->count++;
|
2004-04-17 16:17:43 +08:00
|
|
|
|
|
|
|
return(0);
|
|
|
|
}
|
|
|
|
|
2007-03-22 16:22:53 +08:00
|
|
|
/* count the length of one attribute ad
|
|
|
|
* (and all of its values b)
|
|
|
|
* in the proposed filter
|
|
|
|
*/
|
|
|
|
static int
|
|
|
|
count_filter_len(
|
|
|
|
unique_domain *domain,
|
|
|
|
unique_domain_uri *uri,
|
2004-11-04 10:59:34 +08:00
|
|
|
AttributeDescription *ad,
|
2007-03-22 16:22:53 +08:00
|
|
|
BerVarray b
|
2004-11-04 10:59:34 +08:00
|
|
|
)
|
|
|
|
{
|
2007-03-22 16:22:53 +08:00
|
|
|
unique_attrs *attr;
|
2004-11-04 10:59:34 +08:00
|
|
|
int i;
|
2007-03-22 16:22:53 +08:00
|
|
|
int ks = 0;
|
2004-04-17 16:17:43 +08:00
|
|
|
|
2005-11-25 09:13:24 +08:00
|
|
|
while ( !is_at_operational( ad->ad_type ) ) {
|
2007-03-22 16:22:53 +08:00
|
|
|
if ( uri->attrs ) {
|
|
|
|
for ( attr = uri->attrs; attr; attr = attr->next ) {
|
|
|
|
if ( ad == attr->attr ) {
|
2005-11-25 09:13:24 +08:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2007-03-22 16:22:53 +08:00
|
|
|
if ( ( domain->ignore && attr )
|
|
|
|
|| (!domain->ignore && !attr )) {
|
2005-11-25 09:13:24 +08:00
|
|
|
break;
|
|
|
|
}
|
2004-11-04 10:59:34 +08:00
|
|
|
}
|
2005-11-25 09:13:24 +08:00
|
|
|
if ( b && b[0].bv_val ) {
|
|
|
|
for (i = 0; b[i].bv_val; i++ ) {
|
|
|
|
/* note: make room for filter escaping... */
|
|
|
|
ks += ( 3 * b[i].bv_len ) + ad->ad_cname.bv_len + STRLENOF( "(=)" );
|
|
|
|
}
|
2007-03-22 16:22:53 +08:00
|
|
|
} else if ( domain->strict ) {
|
2004-11-04 11:10:03 +08:00
|
|
|
ks += ad->ad_cname.bv_len + STRLENOF( "(=*)" ); /* (attr=*) */
|
2005-11-25 09:13:24 +08:00
|
|
|
}
|
2004-11-04 10:59:34 +08:00
|
|
|
break;
|
|
|
|
}
|
2007-03-22 16:22:53 +08:00
|
|
|
|
2004-11-04 10:59:34 +08:00
|
|
|
return ks;
|
|
|
|
}
|
|
|
|
|
2007-03-22 16:22:53 +08:00
|
|
|
static char *
|
|
|
|
build_filter(
|
|
|
|
unique_domain *domain,
|
|
|
|
unique_domain_uri *uri,
|
2004-11-04 10:59:34 +08:00
|
|
|
AttributeDescription *ad,
|
|
|
|
BerVarray b,
|
2005-11-25 18:41:33 +08:00
|
|
|
char *kp,
|
|
|
|
void *ctx
|
2004-11-04 10:59:34 +08:00
|
|
|
)
|
|
|
|
{
|
2007-03-22 16:22:53 +08:00
|
|
|
unique_attrs *attr;
|
2004-11-04 10:59:34 +08:00
|
|
|
int i;
|
|
|
|
|
2005-11-25 09:13:24 +08:00
|
|
|
while ( !is_at_operational( ad->ad_type ) ) {
|
2007-03-22 16:22:53 +08:00
|
|
|
if ( uri->attrs ) {
|
|
|
|
for ( attr = uri->attrs; attr; attr = attr->next ) {
|
|
|
|
if ( ad == attr->attr ) {
|
2005-11-25 09:13:24 +08:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2007-03-22 16:22:53 +08:00
|
|
|
if ( ( domain->ignore && attr )
|
|
|
|
|| (!domain->ignore && !attr )) {
|
2005-11-25 09:13:24 +08:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if ( b && b[0].bv_val ) {
|
|
|
|
for ( i = 0; b[i].bv_val; i++ ) {
|
|
|
|
struct berval bv;
|
|
|
|
|
2005-11-25 18:41:33 +08:00
|
|
|
ldap_bv2escaped_filter_value_x( &b[i], &bv, 1, ctx );
|
2005-11-25 09:13:24 +08:00
|
|
|
kp += sprintf( kp, "(%s=%s)", ad->ad_cname.bv_val, bv.bv_val );
|
2005-11-25 18:41:33 +08:00
|
|
|
if ( bv.bv_val != b[i].bv_val ) {
|
|
|
|
ber_memfree_x( bv.bv_val, ctx );
|
|
|
|
}
|
2005-11-25 09:13:24 +08:00
|
|
|
}
|
2007-03-22 16:22:53 +08:00
|
|
|
} else if ( domain->strict ) {
|
2005-11-25 09:13:24 +08:00
|
|
|
kp += sprintf( kp, "(%s=*)", ad->ad_cname.bv_val );
|
2004-11-04 10:59:34 +08:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return kp;
|
|
|
|
}
|
|
|
|
|
2007-03-22 16:22:53 +08:00
|
|
|
static int
|
|
|
|
unique_search(
|
2004-04-17 16:17:43 +08:00
|
|
|
Operation *op,
|
2004-11-04 10:59:34 +08:00
|
|
|
Operation *nop,
|
2007-03-22 16:22:53 +08:00
|
|
|
struct berval * dn,
|
|
|
|
int scope,
|
2004-11-04 10:59:34 +08:00
|
|
|
SlapReply *rs,
|
|
|
|
char *key
|
2004-04-17 16:17:43 +08:00
|
|
|
)
|
|
|
|
{
|
2004-11-04 10:59:34 +08:00
|
|
|
slap_overinst *on = (slap_overinst *) op->o_bd->bd_info;
|
2004-04-17 16:17:43 +08:00
|
|
|
SlapReply nrs = { REP_RESULT };
|
|
|
|
slap_callback cb = { NULL, NULL, NULL, NULL }; /* XXX */
|
2005-03-14 07:18:49 +08:00
|
|
|
unique_counter uq = { NULL, 0 };
|
2004-11-04 10:59:34 +08:00
|
|
|
int rc;
|
|
|
|
|
2007-03-22 16:22:53 +08:00
|
|
|
Debug(LDAP_DEBUG_TRACE, "==> unique_search %s\n", key, 0, 0);
|
|
|
|
|
2004-11-04 10:59:34 +08:00
|
|
|
nop->ors_filter = str2filter_x(nop, key);
|
|
|
|
ber_str2bv(key, 0, 0, &nop->ors_filterstr);
|
|
|
|
|
|
|
|
cb.sc_response = (slap_response*)count_attr_cb;
|
|
|
|
cb.sc_private = &uq;
|
|
|
|
nop->o_callback = &cb;
|
|
|
|
nop->o_tag = LDAP_REQ_SEARCH;
|
2007-03-22 16:22:53 +08:00
|
|
|
nop->ors_scope = scope;
|
2004-11-04 10:59:34 +08:00
|
|
|
nop->ors_deref = LDAP_DEREF_NEVER;
|
2005-02-01 23:11:33 +08:00
|
|
|
nop->ors_limit = NULL;
|
2004-11-04 10:59:34 +08:00
|
|
|
nop->ors_slimit = SLAP_NO_LIMIT;
|
|
|
|
nop->ors_tlimit = SLAP_NO_LIMIT;
|
|
|
|
nop->ors_attrs = slap_anlist_no_attrs;
|
|
|
|
nop->ors_attrsonly = 1;
|
|
|
|
|
2005-03-14 07:18:49 +08:00
|
|
|
uq.ndn = &op->o_req_ndn;
|
|
|
|
|
2007-03-22 16:22:53 +08:00
|
|
|
nop->o_req_ndn = *dn;
|
2004-11-04 10:59:34 +08:00
|
|
|
nop->o_ndn = op->o_bd->be_rootndn;
|
|
|
|
|
2005-10-05 14:18:56 +08:00
|
|
|
nop->o_bd = on->on_info->oi_origdb;
|
2004-11-04 10:59:34 +08:00
|
|
|
rc = nop->o_bd->be_search(nop, &nrs);
|
|
|
|
filter_free_x(nop, nop->ors_filter);
|
2005-12-20 07:53:25 +08:00
|
|
|
op->o_tmpfree( key, op->o_tmpmemctx );
|
2004-11-04 10:59:34 +08:00
|
|
|
|
|
|
|
if(rc != LDAP_SUCCESS && rc != LDAP_NO_SUCH_OBJECT) {
|
|
|
|
op->o_bd->bd_info = (BackendInfo *) on->on_info;
|
|
|
|
send_ldap_error(op, rs, rc, "unique_search failed");
|
|
|
|
return(rs->sr_err);
|
|
|
|
}
|
|
|
|
|
|
|
|
Debug(LDAP_DEBUG_TRACE, "=> unique_search found %d records\n", uq.count, 0, 0);
|
|
|
|
|
|
|
|
if(uq.count) {
|
|
|
|
op->o_bd->bd_info = (BackendInfo *) on->on_info;
|
|
|
|
send_ldap_error(op, rs, LDAP_CONSTRAINT_VIOLATION,
|
|
|
|
"some attributes not unique");
|
|
|
|
return(rs->sr_err);
|
|
|
|
}
|
|
|
|
|
|
|
|
return(SLAP_CB_CONTINUE);
|
|
|
|
}
|
|
|
|
|
2007-03-22 16:22:53 +08:00
|
|
|
static int
|
|
|
|
unique_add(
|
2004-11-04 10:59:34 +08:00
|
|
|
Operation *op,
|
|
|
|
SlapReply *rs
|
|
|
|
)
|
|
|
|
{
|
2004-04-17 16:17:43 +08:00
|
|
|
slap_overinst *on = (slap_overinst *) op->o_bd->bd_info;
|
2007-03-22 16:22:53 +08:00
|
|
|
unique_data *private = (unique_data *) on->on_bi.bi_private;
|
|
|
|
unique_domain *domains = private->domains;
|
|
|
|
unique_domain *legacy = private->legacy;
|
|
|
|
unique_domain *domain;
|
2004-11-04 10:59:34 +08:00
|
|
|
Operation nop = *op;
|
2004-04-17 16:17:43 +08:00
|
|
|
Attribute *a;
|
2004-06-12 23:08:59 +08:00
|
|
|
char *key, *kp;
|
2007-03-22 16:22:53 +08:00
|
|
|
int rc = SLAP_CB_CONTINUE;
|
|
|
|
|
|
|
|
Debug(LDAP_DEBUG_TRACE, "==> unique_add <%s>\n",
|
|
|
|
op->o_req_dn.bv_val, 0, 0);
|
|
|
|
|
|
|
|
for ( domain = legacy ? legacy : domains;
|
|
|
|
domain;
|
|
|
|
domain = domain->next ) {
|
|
|
|
unique_domain_uri *uri;
|
|
|
|
int ks = 0;
|
|
|
|
|
|
|
|
for ( uri = domain->uri;
|
|
|
|
uri;
|
|
|
|
uri = uri->next ) {
|
|
|
|
|
|
|
|
if ( uri->ndn
|
|
|
|
&& !dnIsSuffix( &op->o_req_ndn, uri->ndn ))
|
|
|
|
continue;
|
|
|
|
|
|
|
|
if(!(a = op->ora_e->e_attrs)) {
|
|
|
|
op->o_bd->bd_info = (BackendInfo *) on->on_info;
|
|
|
|
send_ldap_error(op, rs, LDAP_INVALID_SYNTAX,
|
|
|
|
"unique_add() got null op.ora_e.e_attrs");
|
|
|
|
rc = rs->sr_err;
|
|
|
|
break;
|
2004-04-17 16:17:43 +08:00
|
|
|
|
2007-03-22 16:22:53 +08:00
|
|
|
} else {
|
|
|
|
for(; a; a = a->a_next) {
|
|
|
|
ks += count_filter_len ( domain,
|
|
|
|
uri,
|
|
|
|
a->a_desc,
|
|
|
|
a->a_vals);
|
|
|
|
}
|
|
|
|
}
|
2004-04-17 16:17:43 +08:00
|
|
|
|
2007-03-22 16:22:53 +08:00
|
|
|
/* skip this domain-uri if it isn't involved */
|
|
|
|
if ( !ks ) continue;
|
|
|
|
|
|
|
|
if ( uri->filter && uri->filter->bv_len )
|
|
|
|
ks += uri->filter->bv_len + STRLENOF ("(&)");
|
|
|
|
kp = key = op->o_tmpalloc(ks, op->o_tmpmemctx);
|
|
|
|
|
|
|
|
if ( uri->filter && uri->filter->bv_len )
|
|
|
|
kp += sprintf (kp, "(&%s", uri->filter->bv_val);
|
|
|
|
kp += sprintf(kp, "(|");
|
|
|
|
|
|
|
|
for(a = op->ora_e->e_attrs; a; a = a->a_next)
|
|
|
|
kp = build_filter(domain,
|
|
|
|
uri,
|
|
|
|
a->a_desc,
|
|
|
|
a->a_vals,
|
|
|
|
kp,
|
|
|
|
op->o_tmpmemctx);
|
|
|
|
|
|
|
|
kp += sprintf(kp, ")");
|
|
|
|
if ( uri->filter && uri->filter->bv_len )
|
|
|
|
kp += sprintf (kp, ")");
|
|
|
|
|
|
|
|
rc = unique_search ( op,
|
|
|
|
&nop,
|
|
|
|
uri->ndn ?
|
|
|
|
uri->ndn :
|
|
|
|
&op->o_bd->be_nsuffix[0],
|
|
|
|
uri->scope,
|
|
|
|
rs,
|
|
|
|
key);
|
|
|
|
|
|
|
|
if ( rc != SLAP_CB_CONTINUE ) break;
|
|
|
|
}
|
|
|
|
if ( rc != SLAP_CB_CONTINUE ) break;
|
2004-04-17 16:17:43 +08:00
|
|
|
}
|
|
|
|
|
2007-03-22 16:22:53 +08:00
|
|
|
return rc;
|
2004-04-17 16:17:43 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-03-22 16:22:53 +08:00
|
|
|
static int
|
|
|
|
unique_modify(
|
2004-04-17 16:17:43 +08:00
|
|
|
Operation *op,
|
|
|
|
SlapReply *rs
|
|
|
|
)
|
|
|
|
{
|
|
|
|
slap_overinst *on = (slap_overinst *) op->o_bd->bd_info;
|
2007-03-22 16:22:53 +08:00
|
|
|
unique_data *private = (unique_data *) on->on_bi.bi_private;
|
|
|
|
unique_domain *domains = private->domains;
|
|
|
|
unique_domain *legacy = private->legacy;
|
|
|
|
unique_domain *domain;
|
2004-11-04 10:59:34 +08:00
|
|
|
Operation nop = *op;
|
2004-04-17 16:17:43 +08:00
|
|
|
Modifications *m;
|
2004-06-12 23:08:59 +08:00
|
|
|
char *key, *kp;
|
2007-03-22 16:22:53 +08:00
|
|
|
int rc = SLAP_CB_CONTINUE;
|
|
|
|
|
|
|
|
Debug(LDAP_DEBUG_TRACE, "==> unique_modify <%s>\n",
|
|
|
|
op->o_req_dn.bv_val, 0, 0);
|
|
|
|
|
|
|
|
for ( domain = legacy ? legacy : domains;
|
|
|
|
domain;
|
|
|
|
domain = domain->next ) {
|
|
|
|
unique_domain_uri *uri;
|
|
|
|
int ks = 0;
|
|
|
|
|
|
|
|
for ( uri = domain->uri;
|
|
|
|
uri;
|
|
|
|
uri = uri->next ) {
|
|
|
|
|
|
|
|
if ( uri->ndn
|
|
|
|
&& !dnIsSuffix( &op->o_req_ndn, uri->ndn ))
|
|
|
|
continue;
|
|
|
|
|
|
|
|
if ( !(m = op->orm_modlist) ) {
|
|
|
|
op->o_bd->bd_info = (BackendInfo *) on->on_info;
|
|
|
|
send_ldap_error(op, rs, LDAP_INVALID_SYNTAX,
|
|
|
|
"unique_modify() got null op.orm_modlist");
|
|
|
|
rc = rs->sr_err;
|
|
|
|
break;
|
2004-04-17 16:17:43 +08:00
|
|
|
|
2007-03-22 16:22:53 +08:00
|
|
|
} else
|
|
|
|
for ( ; m; m = m->sml_next)
|
|
|
|
if ( (m->sml_op & LDAP_MOD_OP)
|
|
|
|
!= LDAP_MOD_DELETE )
|
|
|
|
ks += count_filter_len
|
|
|
|
( domain,
|
|
|
|
uri,
|
|
|
|
m->sml_desc,
|
|
|
|
m->sml_values);
|
|
|
|
|
|
|
|
/* skip this domain-uri if it isn't involved */
|
|
|
|
if ( !ks ) continue;
|
|
|
|
|
|
|
|
if ( uri->filter && uri->filter->bv_len )
|
|
|
|
ks += uri->filter->bv_len;
|
|
|
|
key = op->o_tmpalloc(ks, op->o_tmpmemctx);
|
|
|
|
|
|
|
|
if ( uri->filter && uri->filter->bv_len )
|
|
|
|
kp += sprintf ("(&(%s)", uri->filter->bv_val);
|
|
|
|
kp = key + sprintf(key, "(|");
|
|
|
|
|
|
|
|
for(m = op->orm_modlist; m; m = m->sml_next)
|
|
|
|
if ( (m->sml_op & LDAP_MOD_OP)
|
|
|
|
!= LDAP_MOD_DELETE )
|
|
|
|
kp = build_filter ( domain,
|
|
|
|
uri,
|
|
|
|
m->sml_desc,
|
|
|
|
m->sml_values,
|
|
|
|
kp,
|
|
|
|
op->o_tmpmemctx );
|
|
|
|
|
|
|
|
kp += sprintf (kp, ")");
|
|
|
|
if ( uri->filter && uri->filter->bv_len )
|
|
|
|
kp += sprintf (kp, ")");
|
|
|
|
|
|
|
|
rc = unique_search ( op,
|
|
|
|
&nop,
|
|
|
|
uri->ndn ?
|
|
|
|
uri->ndn :
|
|
|
|
&op->o_bd->be_nsuffix[0],
|
|
|
|
uri->scope,
|
|
|
|
rs,
|
|
|
|
key);
|
|
|
|
|
|
|
|
if ( rc != SLAP_CB_CONTINUE ) break;
|
|
|
|
}
|
|
|
|
if ( rc != SLAP_CB_CONTINUE ) break;
|
2004-04-17 16:17:43 +08:00
|
|
|
}
|
|
|
|
|
2007-03-22 16:22:53 +08:00
|
|
|
return rc;
|
2004-04-17 16:17:43 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-03-22 16:22:53 +08:00
|
|
|
static int
|
|
|
|
unique_modrdn(
|
2004-04-17 16:17:43 +08:00
|
|
|
Operation *op,
|
|
|
|
SlapReply *rs
|
|
|
|
)
|
|
|
|
{
|
|
|
|
slap_overinst *on = (slap_overinst *) op->o_bd->bd_info;
|
2007-03-22 16:22:53 +08:00
|
|
|
unique_data *private = (unique_data *) on->on_bi.bi_private;
|
|
|
|
unique_domain *domains = private->domains;
|
|
|
|
unique_domain *legacy = private->legacy;
|
|
|
|
unique_domain *domain;
|
2004-11-04 10:59:34 +08:00
|
|
|
Operation nop = *op;
|
2004-06-12 23:08:59 +08:00
|
|
|
char *key, *kp;
|
2004-04-17 16:17:43 +08:00
|
|
|
LDAPRDN newrdn;
|
2004-11-04 10:59:34 +08:00
|
|
|
struct berval bv[2];
|
2007-03-22 16:22:53 +08:00
|
|
|
int rc = SLAP_CB_CONTINUE;
|
2004-04-17 16:17:43 +08:00
|
|
|
|
|
|
|
Debug(LDAP_DEBUG_TRACE, "==> unique_modrdn <%s> <%s>\n",
|
|
|
|
op->o_req_dn.bv_val, op->orr_newrdn.bv_val, 0);
|
|
|
|
|
2007-03-22 16:22:53 +08:00
|
|
|
for ( domain = legacy ? legacy : domains;
|
|
|
|
domain;
|
|
|
|
domain = domain->next ) {
|
|
|
|
unique_domain_uri *uri;
|
|
|
|
int ks = 0;
|
|
|
|
|
|
|
|
for ( uri = domain->uri;
|
|
|
|
uri;
|
|
|
|
uri = uri->next ) {
|
|
|
|
int i;
|
|
|
|
|
|
|
|
if ( uri->ndn
|
|
|
|
&& !dnIsSuffix( &op->o_req_ndn, uri->ndn )
|
|
|
|
&& (!op->orr_nnewSup
|
|
|
|
|| !dnIsSuffix( op->orr_nnewSup, uri->ndn )))
|
|
|
|
continue;
|
|
|
|
|
|
|
|
if ( ldap_bv2rdn_x ( &op->oq_modrdn.rs_newrdn,
|
|
|
|
&newrdn,
|
|
|
|
(char **)&rs->sr_text,
|
|
|
|
LDAP_DN_FORMAT_LDAP,
|
|
|
|
op->o_tmpmemctx ) ) {
|
|
|
|
op->o_bd->bd_info = (BackendInfo *) on->on_info;
|
|
|
|
send_ldap_error(op, rs, LDAP_INVALID_SYNTAX,
|
|
|
|
"unknown type(s) used in RDN");
|
|
|
|
rc = rs->sr_err;
|
|
|
|
break;
|
|
|
|
}
|
2004-04-17 16:17:43 +08:00
|
|
|
|
2007-03-22 16:22:53 +08:00
|
|
|
rc = SLAP_CB_CONTINUE;
|
|
|
|
for ( i=0; newrdn[i]; i++) {
|
|
|
|
AttributeDescription *ad = NULL;
|
|
|
|
if ( slap_bv2ad( &newrdn[i]->la_attr, &ad, &rs->sr_text )) {
|
|
|
|
ldap_rdnfree_x( newrdn, op->o_tmpmemctx );
|
|
|
|
rs->sr_err = LDAP_INVALID_SYNTAX;
|
|
|
|
send_ldap_result( op, rs );
|
|
|
|
rc = rs->sr_err;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
newrdn[i]->la_private = ad;
|
|
|
|
}
|
|
|
|
if ( rc != SLAP_CB_CONTINUE ) break;
|
2004-11-04 10:59:34 +08:00
|
|
|
|
2007-03-22 16:22:53 +08:00
|
|
|
bv[1].bv_val = NULL;
|
|
|
|
bv[1].bv_len = 0;
|
2004-04-17 16:17:43 +08:00
|
|
|
|
2007-03-22 16:22:53 +08:00
|
|
|
for ( i=0; newrdn[i]; i++ ) {
|
|
|
|
bv[0] = newrdn[i]->la_value;
|
|
|
|
ks += count_filter_len ( domain,
|
|
|
|
uri,
|
|
|
|
newrdn[i]->la_private,
|
|
|
|
bv);
|
|
|
|
}
|
2005-12-20 07:53:25 +08:00
|
|
|
|
2007-03-22 16:22:53 +08:00
|
|
|
/* skip this domain if it isn't involved */
|
|
|
|
if ( !ks ) continue;
|
|
|
|
|
|
|
|
if ( uri->filter && uri->filter->bv_len )
|
|
|
|
ks += uri->filter->bv_len;
|
|
|
|
key = op->o_tmpalloc(ks, op->o_tmpmemctx);
|
|
|
|
|
|
|
|
if ( uri->filter && uri->filter->bv_len )
|
|
|
|
kp += sprintf ("(&(%s)", uri->filter->bv_val);
|
|
|
|
kp = key + sprintf(key, "(|");
|
|
|
|
|
|
|
|
for ( i=0; newrdn[i]; i++) {
|
|
|
|
bv[0] = newrdn[i]->la_value;
|
|
|
|
kp = build_filter ( domain,
|
|
|
|
uri,
|
|
|
|
newrdn[i]->la_private,
|
|
|
|
bv,
|
|
|
|
kp,
|
|
|
|
op->o_tmpmemctx);
|
|
|
|
}
|
2004-04-17 16:17:43 +08:00
|
|
|
|
2007-03-22 16:22:53 +08:00
|
|
|
kp += sprintf(kp, ")");
|
|
|
|
if ( uri->filter && uri->filter->bv_len )
|
|
|
|
kp += sprintf (kp, ")");
|
2004-04-17 16:17:43 +08:00
|
|
|
|
2007-03-22 16:22:53 +08:00
|
|
|
rc = unique_search ( op,
|
|
|
|
&nop,
|
|
|
|
uri->ndn ?
|
|
|
|
uri->ndn :
|
|
|
|
&op->o_bd->be_nsuffix[0],
|
|
|
|
uri->scope,
|
|
|
|
rs,
|
|
|
|
key);
|
2004-04-17 16:17:43 +08:00
|
|
|
|
2007-03-22 16:22:53 +08:00
|
|
|
if ( rc != SLAP_CB_CONTINUE ) break;
|
|
|
|
}
|
|
|
|
if ( rc != SLAP_CB_CONTINUE ) break;
|
|
|
|
}
|
2004-04-17 16:17:43 +08:00
|
|
|
|
2007-03-22 16:22:53 +08:00
|
|
|
return rc;
|
2004-04-17 16:17:43 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
** init_module is last so the symbols resolve "for free" --
|
|
|
|
** it expects to be called automagically during dynamic module initialization
|
|
|
|
*/
|
|
|
|
|
2007-03-22 16:22:53 +08:00
|
|
|
int
|
|
|
|
unique_initialize()
|
|
|
|
{
|
2006-04-27 10:12:34 +08:00
|
|
|
int rc;
|
2004-04-17 16:17:43 +08:00
|
|
|
|
|
|
|
/* statically declared just after the #includes at top */
|
2007-03-22 16:22:53 +08:00
|
|
|
memset (&unique, 0, sizeof(unique));
|
|
|
|
|
2004-04-17 16:17:43 +08:00
|
|
|
unique.on_bi.bi_type = "unique";
|
|
|
|
unique.on_bi.bi_db_init = unique_db_init;
|
2006-04-27 10:12:34 +08:00
|
|
|
unique.on_bi.bi_db_destroy = unique_db_destroy;
|
2004-04-17 16:17:43 +08:00
|
|
|
unique.on_bi.bi_db_open = unique_open;
|
|
|
|
unique.on_bi.bi_db_close = unique_close;
|
|
|
|
unique.on_bi.bi_op_add = unique_add;
|
|
|
|
unique.on_bi.bi_op_modify = unique_modify;
|
|
|
|
unique.on_bi.bi_op_modrdn = unique_modrdn;
|
|
|
|
|
2006-04-27 10:12:34 +08:00
|
|
|
unique.on_bi.bi_cf_ocs = uniqueocs;
|
|
|
|
rc = config_register_schema( uniquecfg, uniqueocs );
|
|
|
|
if ( rc ) return rc;
|
|
|
|
|
2004-04-17 16:17:43 +08:00
|
|
|
return(overlay_register(&unique));
|
|
|
|
}
|
|
|
|
|
|
|
|
#if SLAPD_OVER_UNIQUE == SLAPD_MOD_DYNAMIC && defined(PIC)
|
|
|
|
int init_module(int argc, char *argv[]) {
|
2005-11-25 20:43:43 +08:00
|
|
|
return unique_initialize();
|
2004-04-17 16:17:43 +08:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif /* SLAPD_OVER_UNIQUE */
|