2003-11-27 14:35:14 +08:00
|
|
|
/* $OpenLDAP$ */
|
|
|
|
/* This work is part of OpenLDAP Software <http://www.openldap.org/>.
|
|
|
|
*
|
2007-01-03 04:00:42 +08:00
|
|
|
* Copyright 1999-2007 The OpenLDAP Foundation.
|
2003-12-09 01:41:40 +08:00
|
|
|
* Portions Copyright 2001-2003 Pierangelo Masarati.
|
|
|
|
* Portions Copyright 1999-2003 Howard Chu.
|
2003-11-27 14:35:14 +08:00
|
|
|
* All rights reserved.
|
2001-05-12 08:51:28 +08:00
|
|
|
*
|
2003-11-27 14:35:14 +08:00
|
|
|
* 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>.
|
|
|
|
*/
|
|
|
|
/* ACKNOWLEDGEMENTS:
|
|
|
|
* This work was initially developed by the Howard Chu for inclusion
|
|
|
|
* in OpenLDAP Software and subsequently enhanced by Pierangelo
|
|
|
|
* Masarati.
|
|
|
|
*/
|
2001-05-12 08:51:28 +08:00
|
|
|
|
|
|
|
#include "portable.h"
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
|
|
|
|
#include <ac/string.h>
|
|
|
|
#include <ac/socket.h>
|
|
|
|
|
|
|
|
#include "slap.h"
|
2004-11-13 22:45:18 +08:00
|
|
|
#include "lutil.h"
|
2001-05-12 08:51:28 +08:00
|
|
|
#include "../back-ldap/back-ldap.h"
|
2003-03-07 03:44:41 +08:00
|
|
|
#undef ldap_debug /* silence a warning in ldap-int.h */
|
2003-02-05 02:49:58 +08:00
|
|
|
#include "../../../libraries/libldap/ldap-int.h"
|
2001-05-12 08:51:28 +08:00
|
|
|
#include "back-meta.h"
|
|
|
|
|
2005-05-05 07:57:55 +08:00
|
|
|
static int
|
2005-12-08 01:35:02 +08:00
|
|
|
meta_back_new_target(
|
2006-05-07 00:15:25 +08:00
|
|
|
metatarget_t **mtp )
|
2001-05-12 08:51:28 +08:00
|
|
|
{
|
2005-05-05 07:57:55 +08:00
|
|
|
char *rargv[ 3 ];
|
2006-05-07 00:15:25 +08:00
|
|
|
metatarget_t *mt;
|
2001-05-12 08:51:28 +08:00
|
|
|
|
2006-05-07 00:15:25 +08:00
|
|
|
*mtp = NULL;
|
|
|
|
|
|
|
|
mt = ch_calloc( sizeof( metatarget_t ), 1 );
|
2001-05-12 08:51:28 +08:00
|
|
|
|
2005-04-23 05:43:52 +08:00
|
|
|
mt->mt_rwmap.rwm_rw = rewrite_info_init( REWRITE_MODE_USE_DEFAULT );
|
|
|
|
if ( mt->mt_rwmap.rwm_rw == NULL ) {
|
2006-05-10 20:53:36 +08:00
|
|
|
ch_free( mt );
|
|
|
|
return -1;
|
2001-05-12 08:51:28 +08:00
|
|
|
}
|
|
|
|
|
2005-05-05 07:57:55 +08:00
|
|
|
/*
|
|
|
|
* the filter rewrite as a string must be disabled
|
|
|
|
* by default; it can be re-enabled by adding rules;
|
|
|
|
* this creates an empty rewriteContext
|
|
|
|
*/
|
|
|
|
rargv[ 0 ] = "rewriteContext";
|
|
|
|
rargv[ 1 ] = "searchFilter";
|
|
|
|
rargv[ 2 ] = NULL;
|
|
|
|
rewrite_parse( mt->mt_rwmap.rwm_rw, "<suffix massage>", 1, 2, rargv );
|
|
|
|
|
|
|
|
rargv[ 0 ] = "rewriteContext";
|
|
|
|
rargv[ 1 ] = "default";
|
|
|
|
rargv[ 2 ] = NULL;
|
|
|
|
rewrite_parse( mt->mt_rwmap.rwm_rw, "<suffix massage>", 1, 2, rargv );
|
2004-03-11 05:53:39 +08:00
|
|
|
|
2006-05-07 00:15:25 +08:00
|
|
|
ldap_pvt_thread_mutex_init( &mt->mt_uri_mutex );
|
|
|
|
|
2006-06-16 07:43:09 +08:00
|
|
|
mt->mt_idassert_mode = LDAP_BACK_IDASSERT_LEGACY;
|
|
|
|
mt->mt_idassert_authmethod = LDAP_AUTH_NONE;
|
|
|
|
mt->mt_idassert_tls = SB_TLS_DEFAULT;
|
|
|
|
|
|
|
|
/* by default, use proxyAuthz control on each operation */
|
|
|
|
mt->mt_idassert_flags = LDAP_BACK_AUTH_PRESCRIPTIVE;
|
|
|
|
|
2006-05-07 00:15:25 +08:00
|
|
|
*mtp = mt;
|
|
|
|
|
2005-05-05 07:57:55 +08:00
|
|
|
return 0;
|
2001-05-12 08:51:28 +08:00
|
|
|
}
|
|
|
|
|
2005-09-25 02:39:26 +08:00
|
|
|
static int
|
|
|
|
check_true_false( char *str )
|
|
|
|
{
|
|
|
|
if ( strcasecmp( str, "true" ) == 0 || strcasecmp( str, "yes" ) == 0 ) {
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( strcasecmp( str, "false" ) == 0 || strcasecmp( str, "no" ) == 0 ) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-05-12 08:51:28 +08:00
|
|
|
int
|
|
|
|
meta_back_db_config(
|
|
|
|
BackendDB *be,
|
|
|
|
const char *fname,
|
|
|
|
int lineno,
|
|
|
|
int argc,
|
|
|
|
char **argv
|
|
|
|
)
|
|
|
|
{
|
2005-04-23 05:43:52 +08:00
|
|
|
metainfo_t *mi = ( metainfo_t * )be->be_private;
|
2001-05-12 08:51:28 +08:00
|
|
|
|
2005-11-24 01:29:16 +08:00
|
|
|
assert( mi != NULL );
|
2001-05-12 08:51:28 +08:00
|
|
|
|
|
|
|
/* URI of server to query */
|
|
|
|
if ( strcasecmp( argv[ 0 ], "uri" ) == 0 ) {
|
2005-04-23 05:43:52 +08:00
|
|
|
int i = mi->mi_ntargets;
|
2001-06-03 16:55:17 +08:00
|
|
|
#if 0
|
2001-12-27 20:17:54 +08:00
|
|
|
int j;
|
2001-06-03 16:55:17 +08:00
|
|
|
#endif /* uncomment if uri MUST be a branch of suffix */
|
2003-02-05 02:49:58 +08:00
|
|
|
LDAPURLDesc *ludp, *tmpludp;
|
2001-12-29 18:30:23 +08:00
|
|
|
struct berval dn;
|
2001-12-27 20:17:54 +08:00
|
|
|
int rc;
|
2005-07-19 08:43:38 +08:00
|
|
|
int c;
|
2006-05-07 00:15:25 +08:00
|
|
|
|
|
|
|
metatarget_t *mt;
|
2001-05-12 08:51:28 +08:00
|
|
|
|
2005-10-15 20:33:04 +08:00
|
|
|
switch ( argc ) {
|
|
|
|
case 1:
|
2005-11-24 01:29:16 +08:00
|
|
|
Debug( LDAP_DEBUG_ANY,
|
2005-10-15 20:33:04 +08:00
|
|
|
"%s: line %d: missing URI "
|
|
|
|
"in \"uri <protocol>://<server>[:port]/<naming context>\" line\n",
|
2005-11-24 01:29:16 +08:00
|
|
|
fname, lineno, 0 );
|
2005-10-15 20:33:04 +08:00
|
|
|
return 1;
|
|
|
|
|
|
|
|
case 2:
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
2005-11-24 01:29:16 +08:00
|
|
|
Debug( LDAP_DEBUG_ANY,
|
2005-10-15 20:33:04 +08:00
|
|
|
"%s: line %d: too many args "
|
|
|
|
"in \"uri <protocol>://<server>[:port]/<naming context>\" line\n",
|
2005-11-24 01:29:16 +08:00
|
|
|
fname, lineno, 0 );
|
2001-05-12 08:51:28 +08:00
|
|
|
return 1;
|
|
|
|
}
|
2005-10-09 03:39:56 +08:00
|
|
|
|
|
|
|
if ( be->be_nsuffix == NULL ) {
|
2005-11-24 01:29:16 +08:00
|
|
|
Debug( LDAP_DEBUG_ANY,
|
2005-10-09 03:39:56 +08:00
|
|
|
"%s: line %d: the suffix must be defined before any target.\n",
|
2005-11-24 01:29:16 +08:00
|
|
|
fname, lineno, 0 );
|
2005-10-09 03:39:56 +08:00
|
|
|
return 1;
|
|
|
|
}
|
2001-05-12 08:51:28 +08:00
|
|
|
|
2005-04-23 05:43:52 +08:00
|
|
|
++mi->mi_ntargets;
|
2001-05-12 08:51:28 +08:00
|
|
|
|
2006-05-07 00:15:25 +08:00
|
|
|
mi->mi_targets = ( metatarget_t ** )ch_realloc( mi->mi_targets,
|
|
|
|
sizeof( metatarget_t * ) * mi->mi_ntargets );
|
2005-04-23 05:43:52 +08:00
|
|
|
if ( mi->mi_targets == NULL ) {
|
2005-11-24 01:29:16 +08:00
|
|
|
Debug( LDAP_DEBUG_ANY,
|
2001-05-12 08:51:28 +08:00
|
|
|
"%s: line %d: out of memory while storing server name"
|
|
|
|
" in \"uri <protocol>://<server>[:port]/<naming context>\" line\n",
|
2005-11-24 01:29:16 +08:00
|
|
|
fname, lineno, 0 );
|
2001-05-12 08:51:28 +08:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2005-12-08 01:35:02 +08:00
|
|
|
if ( meta_back_new_target( &mi->mi_targets[ i ] ) != 0 ) {
|
2005-11-24 01:29:16 +08:00
|
|
|
Debug( LDAP_DEBUG_ANY,
|
2001-05-12 08:51:28 +08:00
|
|
|
"%s: line %d: unable to init server"
|
|
|
|
" in \"uri <protocol>://<server>[:port]/<naming context>\" line\n",
|
2005-11-24 01:29:16 +08:00
|
|
|
fname, lineno, 0 );
|
2001-05-12 08:51:28 +08:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2006-05-07 00:15:25 +08:00
|
|
|
mt = mi->mi_targets[ i ];
|
|
|
|
|
|
|
|
mt->mt_rebind_f = mi->mi_rebind_f;
|
|
|
|
mt->mt_urllist_f = mi->mi_urllist_f;
|
|
|
|
mt->mt_urllist_p = mt;
|
|
|
|
|
|
|
|
mt->mt_nretries = mi->mi_nretries;
|
2006-05-28 03:54:27 +08:00
|
|
|
mt->mt_quarantine = mi->mi_quarantine;
|
2006-06-08 07:25:38 +08:00
|
|
|
if ( META_BACK_QUARANTINE( mi ) ) {
|
|
|
|
ldap_pvt_thread_mutex_init( &mt->mt_quarantine_mutex );
|
|
|
|
}
|
2006-05-07 00:15:25 +08:00
|
|
|
mt->mt_flags = mi->mi_flags;
|
|
|
|
mt->mt_version = mi->mi_version;
|
|
|
|
mt->mt_network_timeout = mi->mi_network_timeout;
|
|
|
|
mt->mt_bind_timeout = mi->mi_bind_timeout;
|
2006-09-04 16:26:09 +08:00
|
|
|
for ( c = 0; c < SLAP_OP_LAST; c++ ) {
|
2006-05-07 00:15:25 +08:00
|
|
|
mt->mt_timeout[ c ] = mi->mi_timeout[ c ];
|
2005-07-19 08:43:38 +08:00
|
|
|
}
|
|
|
|
|
2001-05-12 08:51:28 +08:00
|
|
|
/*
|
|
|
|
* uri MUST be legal!
|
|
|
|
*/
|
2006-05-07 00:15:25 +08:00
|
|
|
if ( ldap_url_parselist_ext( &ludp, argv[ 1 ], "\t",
|
|
|
|
LDAP_PVT_URL_PARSE_NONE ) != LDAP_SUCCESS )
|
|
|
|
{
|
2005-11-24 01:29:16 +08:00
|
|
|
Debug( LDAP_DEBUG_ANY,
|
2001-05-12 08:51:28 +08:00
|
|
|
"%s: line %d: unable to parse URI"
|
|
|
|
" in \"uri <protocol>://<server>[:port]/<naming context>\" line\n",
|
2005-11-24 01:29:16 +08:00
|
|
|
fname, lineno, 0 );
|
2001-05-12 08:51:28 +08:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* uri MUST have the <dn> part!
|
|
|
|
*/
|
2005-10-09 03:39:56 +08:00
|
|
|
if ( ludp->lud_dn == NULL ) {
|
2005-11-24 01:29:16 +08:00
|
|
|
Debug( LDAP_DEBUG_ANY,
|
2001-05-12 08:51:28 +08:00
|
|
|
"%s: line %d: missing <naming context> "
|
|
|
|
" in \"uri <protocol>://<server>[:port]/<naming context>\" line\n",
|
2005-11-24 01:29:16 +08:00
|
|
|
fname, lineno, 0 );
|
2001-05-12 08:51:28 +08:00
|
|
|
return 1;
|
2005-10-09 03:39:56 +08:00
|
|
|
|
|
|
|
} else if ( ludp->lud_dn[ 0 ] == '\0' ) {
|
|
|
|
int j = -1;
|
|
|
|
|
|
|
|
for ( j = 0; !BER_BVISNULL( &be->be_nsuffix[ j ] ); j++ ) {
|
|
|
|
if ( BER_BVISEMPTY( &be->be_nsuffix[ j ] ) ) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( BER_BVISNULL( &be->be_nsuffix[ j ] ) ) {
|
2005-11-24 01:29:16 +08:00
|
|
|
Debug( LDAP_DEBUG_ANY,
|
2005-10-09 03:39:56 +08:00
|
|
|
"%s: line %d: missing <naming context> "
|
|
|
|
" in \"uri <protocol>://<server>[:port]/<naming context>\" line\n",
|
2005-11-24 01:29:16 +08:00
|
|
|
fname, lineno, 0 );
|
2005-10-09 03:39:56 +08:00
|
|
|
return 1;
|
|
|
|
}
|
2001-05-12 08:51:28 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* copies and stores uri and suffix
|
|
|
|
*/
|
2005-08-17 16:34:49 +08:00
|
|
|
ber_str2bv( ludp->lud_dn, 0, 0, &dn );
|
2006-05-07 00:15:25 +08:00
|
|
|
rc = dnPrettyNormal( NULL, &dn, &mt->mt_psuffix,
|
|
|
|
&mt->mt_nsuffix, NULL );
|
2001-12-27 20:17:54 +08:00
|
|
|
if( rc != LDAP_SUCCESS ) {
|
2005-11-24 01:29:16 +08:00
|
|
|
Debug( LDAP_DEBUG_ANY, "%s: line %d: "
|
|
|
|
"target \"%s\" DN is invalid\n",
|
|
|
|
fname, lineno, argv[ 1 ] );
|
2001-12-27 20:17:54 +08:00
|
|
|
return( 1 );
|
|
|
|
}
|
|
|
|
|
2003-02-05 02:49:58 +08:00
|
|
|
ludp->lud_dn[ 0 ] = '\0';
|
|
|
|
|
2005-08-17 16:34:49 +08:00
|
|
|
switch ( ludp->lud_scope ) {
|
|
|
|
case LDAP_SCOPE_DEFAULT:
|
2006-05-07 00:15:25 +08:00
|
|
|
mt->mt_scope = LDAP_SCOPE_SUBTREE;
|
2005-08-17 16:34:49 +08:00
|
|
|
break;
|
|
|
|
|
|
|
|
case LDAP_SCOPE_SUBTREE:
|
|
|
|
case LDAP_SCOPE_SUBORDINATE:
|
2006-05-07 00:15:25 +08:00
|
|
|
mt->mt_scope = ludp->lud_scope;
|
2005-08-17 16:34:49 +08:00
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
2005-11-24 01:29:16 +08:00
|
|
|
Debug( LDAP_DEBUG_ANY, "%s: line %d: "
|
|
|
|
"invalid scope for target \"%s\"\n",
|
|
|
|
fname, lineno, argv[ 1 ] );
|
2005-08-17 16:34:49 +08:00
|
|
|
return( 1 );
|
|
|
|
}
|
|
|
|
|
2005-01-26 17:29:22 +08:00
|
|
|
/* check all, to apply the scope check on the first one */
|
|
|
|
for ( tmpludp = ludp; tmpludp; tmpludp = tmpludp->lud_next ) {
|
2003-02-05 02:49:58 +08:00
|
|
|
if ( tmpludp->lud_dn != NULL && tmpludp->lud_dn[ 0 ] != '\0' ) {
|
2005-11-24 01:29:16 +08:00
|
|
|
Debug( LDAP_DEBUG_ANY, "%s: line %d: "
|
|
|
|
"multiple URIs must have "
|
|
|
|
"no DN part\n",
|
|
|
|
fname, lineno, 0 );
|
2003-02-05 02:49:58 +08:00
|
|
|
return( 1 );
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-05-07 00:15:25 +08:00
|
|
|
mt->mt_uri = ldap_url_list2urls( ludp );
|
2003-02-05 02:49:58 +08:00
|
|
|
ldap_free_urllist( ludp );
|
2006-05-07 00:15:25 +08:00
|
|
|
if ( mt->mt_uri == NULL) {
|
2005-11-24 01:29:16 +08:00
|
|
|
Debug( LDAP_DEBUG_ANY, "%s: line %d: no memory?\n",
|
|
|
|
fname, lineno, 0 );
|
2003-02-05 02:49:58 +08:00
|
|
|
return( 1 );
|
|
|
|
}
|
2001-05-12 08:51:28 +08:00
|
|
|
|
|
|
|
/*
|
|
|
|
* uri MUST be a branch of suffix!
|
|
|
|
*/
|
|
|
|
#if 0 /* too strict a constraint */
|
2006-05-07 00:15:25 +08:00
|
|
|
if ( select_backend( &mt->mt_nsuffix, 0, 0 ) != be ) {
|
2005-11-24 01:29:16 +08:00
|
|
|
Debug( LDAP_DEBUG_ANY,
|
2001-05-12 08:51:28 +08:00
|
|
|
"%s: line %d: <naming context> of URI does not refer to current backend"
|
|
|
|
" in \"uri <protocol>://<server>[:port]/<naming context>\" line\n",
|
2005-11-24 01:29:16 +08:00
|
|
|
fname, lineno, 0 );
|
2001-05-12 08:51:28 +08:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
#else
|
|
|
|
/*
|
|
|
|
* uri MUST be a branch of a suffix!
|
|
|
|
*/
|
2006-05-07 00:15:25 +08:00
|
|
|
if ( select_backend( &mt->mt_nsuffix, 0, 0 ) == NULL ) {
|
2005-11-24 01:29:16 +08:00
|
|
|
Debug( LDAP_DEBUG_ANY,
|
2001-05-12 08:51:28 +08:00
|
|
|
"%s: line %d: <naming context> of URI does not resolve to a backend"
|
|
|
|
" in \"uri <protocol>://<server>[:port]/<naming context>\" line\n",
|
2005-11-24 01:29:16 +08:00
|
|
|
fname, lineno, 0 );
|
2001-05-12 08:51:28 +08:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2006-02-16 09:26:39 +08:00
|
|
|
/* subtree-exclude */
|
|
|
|
} else if ( strcasecmp( argv[ 0 ], "subtree-exclude" ) == 0 ) {
|
|
|
|
int i = mi->mi_ntargets - 1;
|
|
|
|
struct berval dn, ndn;
|
|
|
|
|
|
|
|
if ( i < 0 ) {
|
|
|
|
Debug( LDAP_DEBUG_ANY,
|
|
|
|
"%s: line %d: need \"uri\" directive first\n",
|
|
|
|
fname, lineno, 0 );
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
switch ( argc ) {
|
|
|
|
case 1:
|
|
|
|
Debug( LDAP_DEBUG_ANY,
|
|
|
|
"%s: line %d: missing DN in \"subtree-exclude <DN>\" line\n",
|
|
|
|
fname, lineno, 0 );
|
|
|
|
return 1;
|
|
|
|
|
|
|
|
case 2:
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
Debug( LDAP_DEBUG_ANY,
|
|
|
|
"%s: line %d: too many args in \"subtree-exclude <DN>\" line\n",
|
|
|
|
fname, lineno, 0 );
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
ber_str2bv( argv[ 1 ], 0, 0, &dn );
|
|
|
|
if ( dnNormalize( 0, NULL, NULL, &dn, &ndn, NULL )
|
|
|
|
!= LDAP_SUCCESS )
|
|
|
|
{
|
|
|
|
Debug( LDAP_DEBUG_ANY, "%s: line %d: "
|
|
|
|
"subtree-exclude DN=\"%s\" is invalid\n",
|
|
|
|
fname, lineno, argv[ 1 ] );
|
|
|
|
return( 1 );
|
|
|
|
}
|
|
|
|
|
2006-05-07 00:15:25 +08:00
|
|
|
if ( !dnIsSuffix( &ndn, &mi->mi_targets[ i ]->mt_nsuffix ) ) {
|
2006-02-16 09:26:39 +08:00
|
|
|
Debug( LDAP_DEBUG_ANY, "%s: line %d: "
|
|
|
|
"subtree-exclude DN=\"%s\" "
|
|
|
|
"must be subtree of target\n",
|
|
|
|
fname, lineno, argv[ 1 ] );
|
|
|
|
ber_memfree( ndn.bv_val );
|
|
|
|
return( 1 );
|
|
|
|
}
|
|
|
|
|
2006-05-07 00:15:25 +08:00
|
|
|
if ( mi->mi_targets[ i ]->mt_subtree_exclude != NULL ) {
|
2006-02-16 09:26:39 +08:00
|
|
|
int j;
|
|
|
|
|
2006-05-07 00:15:25 +08:00
|
|
|
for ( j = 0; !BER_BVISNULL( &mi->mi_targets[ i ]->mt_subtree_exclude[ j ] ); j++ )
|
2006-02-16 09:26:39 +08:00
|
|
|
{
|
2006-05-07 00:15:25 +08:00
|
|
|
if ( dnIsSuffix( &mi->mi_targets[ i ]->mt_subtree_exclude[ j ], &ndn ) ) {
|
2006-02-16 09:26:39 +08:00
|
|
|
Debug( LDAP_DEBUG_ANY, "%s: line %d: "
|
|
|
|
"subtree-exclude DN=\"%s\" "
|
|
|
|
"is suffix of another subtree-exclude\n",
|
|
|
|
fname, lineno, argv[ 1 ] );
|
2006-02-17 07:37:42 +08:00
|
|
|
/* reject, because it might be superior
|
|
|
|
* to more than one subtree-exclude */
|
|
|
|
ber_memfree( ndn.bv_val );
|
|
|
|
return( 1 );
|
2006-02-16 09:26:39 +08:00
|
|
|
|
2006-05-07 00:15:25 +08:00
|
|
|
} else if ( dnIsSuffix( &ndn, &mi->mi_targets[ i ]->mt_subtree_exclude[ j ] ) ) {
|
2006-02-16 09:26:39 +08:00
|
|
|
Debug( LDAP_DEBUG_ANY, "%s: line %d: "
|
|
|
|
"another subtree-exclude is suffix of "
|
|
|
|
"subtree-exclude DN=\"%s\"\n",
|
|
|
|
fname, lineno, argv[ 1 ] );
|
|
|
|
ber_memfree( ndn.bv_val );
|
|
|
|
return( 0 );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-05-07 00:15:25 +08:00
|
|
|
ber_bvarray_add( &mi->mi_targets[ i ]->mt_subtree_exclude, &ndn );
|
2006-02-16 09:26:39 +08:00
|
|
|
|
2001-05-12 08:51:28 +08:00
|
|
|
/* default target directive */
|
|
|
|
} else if ( strcasecmp( argv[ 0 ], "default-target" ) == 0 ) {
|
2005-04-23 05:43:52 +08:00
|
|
|
int i = mi->mi_ntargets - 1;
|
2001-05-12 08:51:28 +08:00
|
|
|
|
|
|
|
if ( argc == 1 ) {
|
|
|
|
if ( i < 0 ) {
|
2005-11-24 01:29:16 +08:00
|
|
|
Debug( LDAP_DEBUG_ANY,
|
2001-05-12 08:51:28 +08:00
|
|
|
"%s: line %d: \"default-target\" alone need be"
|
|
|
|
" inside a \"uri\" directive\n",
|
2005-11-24 01:29:16 +08:00
|
|
|
fname, lineno, 0 );
|
2001-05-12 08:51:28 +08:00
|
|
|
return 1;
|
|
|
|
}
|
2005-04-23 05:43:52 +08:00
|
|
|
mi->mi_defaulttarget = i;
|
2005-11-24 01:29:16 +08:00
|
|
|
|
2001-05-12 08:51:28 +08:00
|
|
|
} else {
|
|
|
|
if ( strcasecmp( argv[ 1 ], "none" ) == 0 ) {
|
|
|
|
if ( i >= 0 ) {
|
2005-11-24 01:29:16 +08:00
|
|
|
Debug( LDAP_DEBUG_ANY,
|
2001-05-12 08:51:28 +08:00
|
|
|
"%s: line %d: \"default-target none\""
|
|
|
|
" should go before uri definitions\n",
|
2005-11-24 01:29:16 +08:00
|
|
|
fname, lineno, 0 );
|
2001-05-12 08:51:28 +08:00
|
|
|
}
|
2005-04-23 05:43:52 +08:00
|
|
|
mi->mi_defaulttarget = META_DEFAULT_TARGET_NONE;
|
2005-04-16 10:25:41 +08:00
|
|
|
|
2001-05-12 08:51:28 +08:00
|
|
|
} else {
|
2005-11-24 01:29:16 +08:00
|
|
|
|
|
|
|
if ( lutil_atoi( &mi->mi_defaulttarget, argv[ 1 ] ) != 0
|
|
|
|
|| mi->mi_defaulttarget < 0
|
|
|
|
|| mi->mi_defaulttarget >= i - 1 )
|
|
|
|
{
|
|
|
|
Debug( LDAP_DEBUG_ANY,
|
2001-05-12 08:51:28 +08:00
|
|
|
"%s: line %d: illegal target number %d\n",
|
2005-11-24 01:29:16 +08:00
|
|
|
fname, lineno, mi->mi_defaulttarget );
|
2001-05-12 08:51:28 +08:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ttl of dn cache */
|
|
|
|
} else if ( strcasecmp( argv[ 0 ], "dncache-ttl" ) == 0 ) {
|
|
|
|
if ( argc != 2 ) {
|
2005-11-24 01:29:16 +08:00
|
|
|
Debug( LDAP_DEBUG_ANY,
|
2001-05-12 08:51:28 +08:00
|
|
|
"%s: line %d: missing ttl in \"dncache-ttl <ttl>\" line\n",
|
2005-11-24 01:29:16 +08:00
|
|
|
fname, lineno, 0 );
|
2001-05-12 08:51:28 +08:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( strcasecmp( argv[ 1 ], "forever" ) == 0 ) {
|
2005-04-23 05:43:52 +08:00
|
|
|
mi->mi_cache.ttl = META_DNCACHE_FOREVER;
|
2005-11-24 01:29:16 +08:00
|
|
|
|
2001-05-12 08:51:28 +08:00
|
|
|
} else if ( strcasecmp( argv[ 1 ], "disabled" ) == 0 ) {
|
2005-04-23 05:43:52 +08:00
|
|
|
mi->mi_cache.ttl = META_DNCACHE_DISABLED;
|
2005-11-24 01:29:16 +08:00
|
|
|
|
2001-05-12 08:51:28 +08:00
|
|
|
} else {
|
2005-11-24 01:29:16 +08:00
|
|
|
unsigned long t;
|
2005-11-22 20:13:07 +08:00
|
|
|
|
2005-11-24 01:29:16 +08:00
|
|
|
if ( lutil_parse_time( argv[ 1 ], &t ) != 0 ) {
|
|
|
|
Debug( LDAP_DEBUG_ANY,
|
2005-11-22 20:13:07 +08:00
|
|
|
"%s: line %d: unable to parse ttl \"%s\" in \"dncache-ttl <ttl>\" line\n",
|
|
|
|
fname, lineno, argv[ 1 ] );
|
|
|
|
return 1;
|
|
|
|
}
|
2005-11-24 01:29:16 +08:00
|
|
|
mi->mi_cache.ttl = (time_t)t;
|
2001-05-12 08:51:28 +08:00
|
|
|
}
|
|
|
|
|
2003-05-03 19:30:38 +08:00
|
|
|
/* network timeout when connecting to ldap servers */
|
|
|
|
} else if ( strcasecmp( argv[ 0 ], "network-timeout" ) == 0 ) {
|
2005-11-25 05:21:27 +08:00
|
|
|
unsigned long t;
|
2005-12-08 01:35:02 +08:00
|
|
|
time_t *tp = mi->mi_ntargets ?
|
2006-05-07 00:15:25 +08:00
|
|
|
&mi->mi_targets[ mi->mi_ntargets - 1 ]->mt_network_timeout
|
2005-12-08 01:35:02 +08:00
|
|
|
: &mi->mi_network_timeout;
|
2005-11-25 05:21:27 +08:00
|
|
|
|
2003-05-03 19:30:38 +08:00
|
|
|
if ( argc != 2 ) {
|
2005-11-24 01:29:16 +08:00
|
|
|
Debug( LDAP_DEBUG_ANY,
|
2003-05-03 19:30:38 +08:00
|
|
|
"%s: line %d: missing network timeout in \"network-timeout <seconds>\" line\n",
|
2005-11-24 01:29:16 +08:00
|
|
|
fname, lineno, 0 );
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2005-11-25 05:21:27 +08:00
|
|
|
if ( lutil_parse_time( argv[ 1 ], &t ) ) {
|
2005-11-24 01:29:16 +08:00
|
|
|
Debug( LDAP_DEBUG_ANY,
|
|
|
|
"%s: line %d: unable to parse timeout \"%s\" in \"network-timeout <seconds>\" line\n",
|
|
|
|
fname, lineno, argv[ 1 ] );
|
|
|
|
return 1;
|
|
|
|
|
2003-05-03 19:30:38 +08:00
|
|
|
}
|
|
|
|
|
2005-12-08 01:35:02 +08:00
|
|
|
*tp = (time_t)t;
|
|
|
|
|
|
|
|
/* idle timeout when connecting to ldap servers */
|
|
|
|
} else if ( strcasecmp( argv[ 0 ], "idle-timeout" ) == 0 ) {
|
|
|
|
unsigned long t;
|
|
|
|
|
|
|
|
switch ( argc ) {
|
|
|
|
case 1:
|
|
|
|
Debug( LDAP_DEBUG_ANY,
|
|
|
|
"%s: line %d: missing timeout value in \"idle-timeout <seconds>\" line\n",
|
|
|
|
fname, lineno, 0 );
|
|
|
|
return 1;
|
|
|
|
case 2:
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
Debug( LDAP_DEBUG_ANY,
|
|
|
|
"%s: line %d: extra cruft after timeout value in \"idle-timeout <seconds>\" line\n",
|
|
|
|
fname, lineno, 0 );
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( lutil_parse_time( argv[ 1 ], &t ) ) {
|
|
|
|
Debug( LDAP_DEBUG_ANY,
|
|
|
|
"%s: line %d: unable to parse timeout \"%s\" in \"idle-timeout <seconds>\" line\n",
|
|
|
|
fname, lineno, argv[ 1 ] );
|
|
|
|
return 1;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2006-04-02 02:56:39 +08:00
|
|
|
mi->mi_idle_timeout = (time_t)t;
|
2005-11-25 05:21:27 +08:00
|
|
|
|
2006-02-02 07:10:12 +08:00
|
|
|
/* conn ttl */
|
|
|
|
} else if ( strcasecmp( argv[ 0 ], "conn-ttl" ) == 0 ) {
|
|
|
|
unsigned long t;
|
|
|
|
|
|
|
|
switch ( argc ) {
|
|
|
|
case 1:
|
|
|
|
Debug( LDAP_DEBUG_ANY,
|
|
|
|
"%s: line %d: missing ttl value in \"conn-ttl <seconds>\" line\n",
|
|
|
|
fname, lineno, 0 );
|
|
|
|
return 1;
|
|
|
|
case 2:
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
Debug( LDAP_DEBUG_ANY,
|
|
|
|
"%s: line %d: extra cruft after ttl value in \"conn-ttl <seconds>\" line\n",
|
|
|
|
fname, lineno, 0 );
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( lutil_parse_time( argv[ 1 ], &t ) ) {
|
|
|
|
Debug( LDAP_DEBUG_ANY,
|
|
|
|
"%s: line %d: unable to parse ttl \"%s\" in \"conn-ttl <seconds>\" line\n",
|
|
|
|
fname, lineno, argv[ 1 ] );
|
|
|
|
return 1;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2006-04-02 02:56:39 +08:00
|
|
|
mi->mi_conn_ttl = (time_t)t;
|
2006-02-02 07:10:12 +08:00
|
|
|
|
2005-12-12 23:57:58 +08:00
|
|
|
/* bind timeout when connecting to ldap servers */
|
|
|
|
} else if ( strcasecmp( argv[ 0 ], "bind-timeout" ) == 0 ) {
|
|
|
|
unsigned long t;
|
|
|
|
struct timeval *tp = mi->mi_ntargets ?
|
2006-05-07 00:15:25 +08:00
|
|
|
&mi->mi_targets[ mi->mi_ntargets - 1 ]->mt_bind_timeout
|
2005-12-12 23:57:58 +08:00
|
|
|
: &mi->mi_bind_timeout;
|
|
|
|
|
|
|
|
switch ( argc ) {
|
|
|
|
case 1:
|
|
|
|
Debug( LDAP_DEBUG_ANY,
|
|
|
|
"%s: line %d: missing timeout value in \"bind-timeout <microseconds>\" line\n",
|
|
|
|
fname, lineno, 0 );
|
|
|
|
return 1;
|
|
|
|
case 2:
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
Debug( LDAP_DEBUG_ANY,
|
|
|
|
"%s: line %d: extra cruft after timeout value in \"bind-timeout <microseconds>\" line\n",
|
|
|
|
fname, lineno, 0 );
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( lutil_atoul( &t, argv[ 1 ] ) != 0 ) {
|
|
|
|
Debug( LDAP_DEBUG_ANY,
|
|
|
|
"%s: line %d: unable to parse timeout \"%s\" in \"bind-timeout <microseconds>\" line\n",
|
|
|
|
fname, lineno, argv[ 1 ] );
|
|
|
|
return 1;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
tp->tv_sec = t/1000000;
|
|
|
|
tp->tv_usec = t%1000000;
|
|
|
|
|
2001-05-12 08:51:28 +08:00
|
|
|
/* name to use for meta_back_group */
|
2005-01-23 02:48:03 +08:00
|
|
|
} else if ( strcasecmp( argv[ 0 ], "acl-authcDN" ) == 0
|
|
|
|
|| strcasecmp( argv[ 0 ], "binddn" ) == 0 )
|
|
|
|
{
|
2005-04-23 05:43:52 +08:00
|
|
|
int i = mi->mi_ntargets - 1;
|
2001-12-29 18:30:23 +08:00
|
|
|
struct berval dn;
|
2001-05-12 08:51:28 +08:00
|
|
|
|
|
|
|
if ( i < 0 ) {
|
2005-11-24 01:29:16 +08:00
|
|
|
Debug( LDAP_DEBUG_ANY,
|
2001-05-12 08:51:28 +08:00
|
|
|
"%s: line %d: need \"uri\" directive first\n",
|
2005-11-24 01:29:16 +08:00
|
|
|
fname, lineno, 0 );
|
2003-04-04 12:06:18 +08:00
|
|
|
return 1;
|
2001-05-12 08:51:28 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
if ( argc != 2 ) {
|
2005-11-24 01:29:16 +08:00
|
|
|
Debug( LDAP_DEBUG_ANY,
|
2001-05-12 08:51:28 +08:00
|
|
|
"%s: line %d: missing name in \"binddn <name>\" line\n",
|
2005-11-24 01:29:16 +08:00
|
|
|
fname, lineno, 0 );
|
2001-05-12 08:51:28 +08:00
|
|
|
return 1;
|
|
|
|
}
|
2001-12-27 20:17:54 +08:00
|
|
|
|
2005-01-23 02:48:03 +08:00
|
|
|
if ( strcasecmp( argv[ 0 ], "binddn" ) == 0 ) {
|
2005-11-24 01:29:16 +08:00
|
|
|
Debug( LDAP_DEBUG_ANY, "%s: line %d: "
|
2005-01-23 02:48:03 +08:00
|
|
|
"\"binddn\" statement is deprecated; "
|
|
|
|
"use \"acl-authcDN\" instead\n",
|
2005-11-24 01:29:16 +08:00
|
|
|
fname, lineno, 0 );
|
2005-01-23 02:48:03 +08:00
|
|
|
/* FIXME: some day we'll need to throw an error */
|
|
|
|
}
|
|
|
|
|
2006-02-16 09:26:39 +08:00
|
|
|
ber_str2bv( argv[ 1 ], 0, 0, &dn );
|
2006-05-07 00:15:25 +08:00
|
|
|
if ( dnNormalize( 0, NULL, NULL, &dn, &mi->mi_targets[ i ]->mt_binddn,
|
2003-04-30 02:28:14 +08:00
|
|
|
NULL ) != LDAP_SUCCESS )
|
|
|
|
{
|
2005-11-24 01:29:16 +08:00
|
|
|
Debug( LDAP_DEBUG_ANY, "%s: line %d: "
|
2001-12-27 20:17:54 +08:00
|
|
|
"bind DN '%s' is invalid\n",
|
|
|
|
fname, lineno, argv[ 1 ] );
|
|
|
|
return( 1 );
|
|
|
|
}
|
|
|
|
|
2001-05-12 08:51:28 +08:00
|
|
|
/* password to use for meta_back_group */
|
2005-01-23 02:48:03 +08:00
|
|
|
} else if ( strcasecmp( argv[ 0 ], "acl-passwd" ) == 0
|
|
|
|
|| strcasecmp( argv[ 0 ], "bindpw" ) == 0 )
|
|
|
|
{
|
2005-04-23 05:43:52 +08:00
|
|
|
int i = mi->mi_ntargets - 1;
|
2001-05-12 08:51:28 +08:00
|
|
|
|
|
|
|
if ( i < 0 ) {
|
2005-11-24 01:29:16 +08:00
|
|
|
Debug( LDAP_DEBUG_ANY,
|
2001-05-12 08:51:28 +08:00
|
|
|
"%s: line %d: need \"uri\" directive first\n",
|
2005-11-24 01:29:16 +08:00
|
|
|
fname, lineno, 0 );
|
2003-04-04 12:06:18 +08:00
|
|
|
return 1;
|
2001-05-12 08:51:28 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
if ( argc != 2 ) {
|
2005-11-24 01:29:16 +08:00
|
|
|
Debug( LDAP_DEBUG_ANY,
|
2001-05-12 08:51:28 +08:00
|
|
|
"%s: line %d: missing password in \"bindpw <password>\" line\n",
|
2005-11-24 01:29:16 +08:00
|
|
|
fname, lineno, 0 );
|
2001-05-12 08:51:28 +08:00
|
|
|
return 1;
|
|
|
|
}
|
2005-01-23 02:48:03 +08:00
|
|
|
|
|
|
|
if ( strcasecmp( argv[ 0 ], "bindpw" ) == 0 ) {
|
2005-11-24 01:29:16 +08:00
|
|
|
Debug( LDAP_DEBUG_ANY, "%s: line %d: "
|
2005-01-23 02:48:03 +08:00
|
|
|
"\"bindpw\" statement is deprecated; "
|
|
|
|
"use \"acl-passwd\" instead\n",
|
2005-11-24 01:29:16 +08:00
|
|
|
fname, lineno, 0 );
|
2005-01-23 02:48:03 +08:00
|
|
|
/* FIXME: some day we'll need to throw an error */
|
|
|
|
}
|
|
|
|
|
2006-05-07 00:15:25 +08:00
|
|
|
ber_str2bv( argv[ 1 ], 0L, 1, &mi->mi_targets[ i ]->mt_bindpw );
|
2001-05-20 01:02:39 +08:00
|
|
|
|
2003-02-06 06:04:20 +08:00
|
|
|
/* save bind creds for referral rebinds? */
|
2005-05-05 07:57:55 +08:00
|
|
|
} else if ( strcasecmp( argv[ 0 ], "rebind-as-user" ) == 0 ) {
|
2005-06-25 23:13:44 +08:00
|
|
|
if ( argc > 2 ) {
|
2005-11-24 01:29:16 +08:00
|
|
|
Debug( LDAP_DEBUG_ANY,
|
2005-06-25 23:13:44 +08:00
|
|
|
"%s: line %d: \"rebind-as-user {NO|yes}\" takes 1 argument.\n",
|
2005-11-24 01:29:16 +08:00
|
|
|
fname, lineno, 0 );
|
2003-02-06 06:04:20 +08:00
|
|
|
return( 1 );
|
|
|
|
}
|
2005-02-05 19:33:32 +08:00
|
|
|
|
2005-06-25 23:13:44 +08:00
|
|
|
if ( argc == 1 ) {
|
2005-11-24 01:29:16 +08:00
|
|
|
Debug( LDAP_DEBUG_ANY,
|
2005-09-25 02:39:26 +08:00
|
|
|
"%s: line %d: deprecated use of \"rebind-as-user {FALSE|true}\" with no arguments.\n",
|
2005-11-24 01:29:16 +08:00
|
|
|
fname, lineno, 0 );
|
2005-11-19 23:00:50 +08:00
|
|
|
mi->mi_flags |= LDAP_BACK_F_SAVECRED;
|
2005-06-25 23:13:44 +08:00
|
|
|
|
|
|
|
} else {
|
2005-09-25 02:39:26 +08:00
|
|
|
switch ( check_true_false( argv[ 1 ] ) ) {
|
|
|
|
case 0:
|
2005-11-19 23:00:50 +08:00
|
|
|
mi->mi_flags &= ~LDAP_BACK_F_SAVECRED;
|
2005-09-25 02:39:26 +08:00
|
|
|
break;
|
2005-06-25 23:13:44 +08:00
|
|
|
|
2005-09-25 02:39:26 +08:00
|
|
|
case 1:
|
2005-11-19 23:00:50 +08:00
|
|
|
mi->mi_flags |= LDAP_BACK_F_SAVECRED;
|
2005-09-25 02:39:26 +08:00
|
|
|
break;
|
2005-06-25 23:13:44 +08:00
|
|
|
|
2005-09-25 02:39:26 +08:00
|
|
|
default:
|
2005-11-24 01:29:16 +08:00
|
|
|
Debug( LDAP_DEBUG_ANY,
|
2005-09-25 02:39:26 +08:00
|
|
|
"%s: line %d: \"rebind-as-user {FALSE|true}\" unknown argument \"%s\".\n",
|
2005-06-25 23:13:44 +08:00
|
|
|
fname, lineno, argv[ 1 ] );
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
}
|
2005-02-05 19:33:32 +08:00
|
|
|
|
2005-05-05 07:57:55 +08:00
|
|
|
} else if ( strcasecmp( argv[ 0 ], "chase-referrals" ) == 0 ) {
|
|
|
|
unsigned *flagsp = mi->mi_ntargets ?
|
2006-05-07 00:15:25 +08:00
|
|
|
&mi->mi_targets[ mi->mi_ntargets - 1 ]->mt_flags
|
2005-11-19 23:00:50 +08:00
|
|
|
: &mi->mi_flags;
|
2005-05-05 07:57:55 +08:00
|
|
|
|
|
|
|
if ( argc != 2 ) {
|
2005-11-24 01:29:16 +08:00
|
|
|
Debug( LDAP_DEBUG_ANY,
|
2005-09-25 02:39:26 +08:00
|
|
|
"%s: line %d: \"chase-referrals {TRUE|false}\" needs 1 argument.\n",
|
2005-11-24 01:29:16 +08:00
|
|
|
fname, lineno, 0 );
|
2005-02-05 19:33:32 +08:00
|
|
|
return( 1 );
|
|
|
|
}
|
|
|
|
|
2005-05-05 07:57:55 +08:00
|
|
|
/* this is the default; we add it because the default might change... */
|
2005-09-25 02:39:26 +08:00
|
|
|
switch ( check_true_false( argv[ 1 ] ) ) {
|
|
|
|
case 1:
|
2005-05-05 07:57:55 +08:00
|
|
|
*flagsp |= LDAP_BACK_F_CHASE_REFERRALS;
|
2005-09-25 02:39:26 +08:00
|
|
|
break;
|
2005-05-05 07:57:55 +08:00
|
|
|
|
2005-09-25 02:39:26 +08:00
|
|
|
case 0:
|
2005-05-05 07:57:55 +08:00
|
|
|
*flagsp &= ~LDAP_BACK_F_CHASE_REFERRALS;
|
2005-09-25 02:39:26 +08:00
|
|
|
break;
|
2005-02-05 19:33:32 +08:00
|
|
|
|
2005-09-25 02:39:26 +08:00
|
|
|
default:
|
2005-11-24 01:29:16 +08:00
|
|
|
Debug( LDAP_DEBUG_ANY,
|
2005-09-25 02:39:26 +08:00
|
|
|
"%s: line %d: \"chase-referrals {TRUE|false}\": unknown argument \"%s\".\n",
|
2005-11-24 01:29:16 +08:00
|
|
|
fname, lineno, argv[ 1 ] );
|
2005-02-05 19:33:32 +08:00
|
|
|
return( 1 );
|
|
|
|
}
|
2005-05-05 07:57:55 +08:00
|
|
|
|
|
|
|
} else if ( strcasecmp( argv[ 0 ], "tls" ) == 0 ) {
|
|
|
|
unsigned *flagsp = mi->mi_ntargets ?
|
2006-05-07 00:15:25 +08:00
|
|
|
&mi->mi_targets[ mi->mi_ntargets - 1 ]->mt_flags
|
2005-11-19 23:00:50 +08:00
|
|
|
: &mi->mi_flags;
|
2005-02-05 19:33:32 +08:00
|
|
|
|
2005-05-05 07:57:55 +08:00
|
|
|
if ( argc != 2 ) {
|
2005-11-24 01:29:16 +08:00
|
|
|
Debug( LDAP_DEBUG_ANY,
|
2005-05-05 07:57:55 +08:00
|
|
|
"%s: line %d: \"tls <what>\" needs 1 argument.\n",
|
2005-11-24 01:29:16 +08:00
|
|
|
fname, lineno, 0 );
|
2005-05-05 07:57:55 +08:00
|
|
|
return( 1 );
|
|
|
|
}
|
2005-02-05 23:55:27 +08:00
|
|
|
|
2005-05-05 07:57:55 +08:00
|
|
|
/* start */
|
|
|
|
if ( strcasecmp( argv[ 1 ], "start" ) == 0 ) {
|
|
|
|
*flagsp |= ( LDAP_BACK_F_USE_TLS | LDAP_BACK_F_TLS_CRITICAL );
|
2005-02-05 23:55:27 +08:00
|
|
|
|
|
|
|
/* try start tls */
|
2005-05-05 07:57:55 +08:00
|
|
|
} else if ( strcasecmp( argv[ 1 ], "try-start" ) == 0 ) {
|
|
|
|
*flagsp &= ~LDAP_BACK_F_TLS_CRITICAL;
|
|
|
|
*flagsp |= LDAP_BACK_F_USE_TLS;
|
2005-02-05 23:55:27 +08:00
|
|
|
|
|
|
|
/* propagate start tls */
|
2005-05-05 07:57:55 +08:00
|
|
|
} else if ( strcasecmp( argv[ 1 ], "propagate" ) == 0 ) {
|
|
|
|
*flagsp |= ( LDAP_BACK_F_PROPAGATE_TLS | LDAP_BACK_F_TLS_CRITICAL );
|
2005-02-05 23:55:27 +08:00
|
|
|
|
|
|
|
/* try start tls */
|
2005-05-05 07:57:55 +08:00
|
|
|
} else if ( strcasecmp( argv[ 1 ], "try-propagate" ) == 0 ) {
|
|
|
|
*flagsp &= ~LDAP_BACK_F_TLS_CRITICAL;
|
|
|
|
*flagsp |= LDAP_BACK_F_PROPAGATE_TLS;
|
|
|
|
|
|
|
|
} else {
|
2005-11-24 01:29:16 +08:00
|
|
|
Debug( LDAP_DEBUG_ANY,
|
2005-05-05 07:57:55 +08:00
|
|
|
"%s: line %d: \"tls <what>\": unknown argument \"%s\".\n",
|
2005-11-24 01:29:16 +08:00
|
|
|
fname, lineno, argv[ 1 ] );
|
2005-05-05 07:57:55 +08:00
|
|
|
return( 1 );
|
2005-02-05 23:55:27 +08:00
|
|
|
}
|
2005-05-05 07:57:55 +08:00
|
|
|
|
|
|
|
} else if ( strcasecmp( argv[ 0 ], "t-f-support" ) == 0 ) {
|
|
|
|
unsigned *flagsp = mi->mi_ntargets ?
|
2006-05-07 00:15:25 +08:00
|
|
|
&mi->mi_targets[ mi->mi_ntargets - 1 ]->mt_flags
|
2005-11-19 23:00:50 +08:00
|
|
|
: &mi->mi_flags;
|
2005-05-05 07:57:55 +08:00
|
|
|
|
|
|
|
if ( argc != 2 ) {
|
2005-11-24 01:29:16 +08:00
|
|
|
Debug( LDAP_DEBUG_ANY,
|
2005-09-25 02:39:26 +08:00
|
|
|
"%s: line %d: \"t-f-support {FALSE|true|discover}\" needs 1 argument.\n",
|
2005-11-24 01:29:16 +08:00
|
|
|
fname, lineno, 0 );
|
2005-05-05 07:57:55 +08:00
|
|
|
return( 1 );
|
|
|
|
}
|
|
|
|
|
2005-09-25 02:39:26 +08:00
|
|
|
switch ( check_true_false( argv[ 1 ] ) ) {
|
|
|
|
case 0:
|
2006-05-20 22:29:01 +08:00
|
|
|
*flagsp &= ~LDAP_BACK_F_T_F_MASK2;
|
2005-09-25 02:39:26 +08:00
|
|
|
break;
|
2005-05-05 07:57:55 +08:00
|
|
|
|
2005-09-25 02:39:26 +08:00
|
|
|
case 1:
|
2006-05-20 22:29:01 +08:00
|
|
|
*flagsp |= LDAP_BACK_F_T_F;
|
2005-09-25 02:39:26 +08:00
|
|
|
break;
|
2005-05-05 07:57:55 +08:00
|
|
|
|
2005-09-25 02:39:26 +08:00
|
|
|
default:
|
|
|
|
if ( strcasecmp( argv[ 1 ], "discover" ) == 0 ) {
|
2006-05-20 22:29:01 +08:00
|
|
|
*flagsp |= LDAP_BACK_F_T_F_DISCOVER;
|
2005-05-05 07:57:55 +08:00
|
|
|
|
2005-09-25 02:39:26 +08:00
|
|
|
} else {
|
2005-11-24 01:29:16 +08:00
|
|
|
Debug( LDAP_DEBUG_ANY,
|
2005-05-05 07:57:55 +08:00
|
|
|
"%s: line %d: unknown value \"%s\" for \"t-f-support {no|yes|discover}\".\n",
|
2005-09-25 02:39:26 +08:00
|
|
|
fname, lineno, argv[ 1 ] );
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
break;
|
2005-05-05 07:57:55 +08:00
|
|
|
}
|
|
|
|
|
2005-06-25 23:13:44 +08:00
|
|
|
/* onerr? */
|
|
|
|
} else if ( strcasecmp( argv[ 0 ], "onerr" ) == 0 ) {
|
|
|
|
if ( argc != 2 ) {
|
2005-11-24 01:29:16 +08:00
|
|
|
Debug( LDAP_DEBUG_ANY,
|
2006-11-24 07:50:36 +08:00
|
|
|
"%s: line %d: \"onerr {CONTINUE|report|stop}\" takes 1 argument\n",
|
2005-11-24 01:29:16 +08:00
|
|
|
fname, lineno, 0 );
|
2005-06-25 23:13:44 +08:00
|
|
|
return( 1 );
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( strcasecmp( argv[ 1 ], "continue" ) == 0 ) {
|
2006-11-24 07:50:36 +08:00
|
|
|
mi->mi_flags &= ~META_BACK_F_ONERR_MASK;
|
2005-06-25 23:13:44 +08:00
|
|
|
|
|
|
|
} else if ( strcasecmp( argv[ 1 ], "stop" ) == 0 ) {
|
2005-11-19 23:00:50 +08:00
|
|
|
mi->mi_flags |= META_BACK_F_ONERR_STOP;
|
2005-06-25 23:13:44 +08:00
|
|
|
|
2006-11-24 07:50:36 +08:00
|
|
|
} else if ( strcasecmp( argv[ 1 ], "report" ) == 0 ) {
|
|
|
|
mi->mi_flags |= META_BACK_F_ONERR_REPORT;
|
|
|
|
|
2005-06-25 23:13:44 +08:00
|
|
|
} else {
|
2005-11-24 01:29:16 +08:00
|
|
|
Debug( LDAP_DEBUG_ANY,
|
2006-11-24 07:50:36 +08:00
|
|
|
"%s: line %d: \"onerr {CONTINUE|report|stop}\": invalid arg \"%s\".\n",
|
2005-06-25 23:13:44 +08:00
|
|
|
fname, lineno, argv[ 1 ] );
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2005-09-25 02:39:26 +08:00
|
|
|
/* bind-defer? */
|
2006-06-16 07:12:38 +08:00
|
|
|
} else if ( strcasecmp( argv[ 0 ], "pseudoroot-bind-defer" ) == 0
|
|
|
|
|| strcasecmp( argv[ 0 ], "root-bind-defer" ) == 0 )
|
|
|
|
{
|
2005-09-25 02:39:26 +08:00
|
|
|
if ( argc != 2 ) {
|
2005-11-24 01:29:16 +08:00
|
|
|
Debug( LDAP_DEBUG_ANY,
|
2006-06-16 07:12:38 +08:00
|
|
|
"%s: line %d: \"[pseudo]root-bind-defer {FALSE|true}\" takes 1 argument\n",
|
2005-11-24 01:29:16 +08:00
|
|
|
fname, lineno, 0 );
|
2005-09-25 02:39:26 +08:00
|
|
|
return( 1 );
|
|
|
|
}
|
|
|
|
|
|
|
|
switch ( check_true_false( argv[ 1 ] ) ) {
|
|
|
|
case 0:
|
2005-11-19 23:00:50 +08:00
|
|
|
mi->mi_flags &= ~META_BACK_F_DEFER_ROOTDN_BIND;
|
2005-09-25 02:39:26 +08:00
|
|
|
break;
|
|
|
|
|
|
|
|
case 1:
|
2005-11-19 23:00:50 +08:00
|
|
|
mi->mi_flags |= META_BACK_F_DEFER_ROOTDN_BIND;
|
2005-09-25 02:39:26 +08:00
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
2005-11-24 01:29:16 +08:00
|
|
|
Debug( LDAP_DEBUG_ANY,
|
2006-06-16 07:12:38 +08:00
|
|
|
"%s: line %d: \"[pseudo]root-bind-defer {FALSE|true}\": invalid arg \"%s\".\n",
|
2005-09-25 02:39:26 +08:00
|
|
|
fname, lineno, argv[ 1 ] );
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2006-05-15 02:10:23 +08:00
|
|
|
/* single-conn? */
|
|
|
|
} else if ( strcasecmp( argv[ 0 ], "single-conn" ) == 0 ) {
|
|
|
|
if ( argc != 2 ) {
|
|
|
|
Debug( LDAP_DEBUG_ANY,
|
|
|
|
"%s: line %d: \"single-conn {FALSE|true}\" takes 1 argument\n",
|
|
|
|
fname, lineno, 0 );
|
|
|
|
return( 1 );
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( mi->mi_ntargets > 0 ) {
|
|
|
|
Debug( LDAP_DEBUG_ANY,
|
|
|
|
"%s: line %d: \"single-conn\" must appear before target definitions\n",
|
|
|
|
fname, lineno, 0 );
|
|
|
|
return( 1 );
|
|
|
|
}
|
|
|
|
|
|
|
|
switch ( check_true_false( argv[ 1 ] ) ) {
|
|
|
|
case 0:
|
|
|
|
mi->mi_flags &= ~LDAP_BACK_F_SINGLECONN;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 1:
|
|
|
|
mi->mi_flags |= LDAP_BACK_F_SINGLECONN;
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
Debug( LDAP_DEBUG_ANY,
|
|
|
|
"%s: line %d: \"single-conn {FALSE|true}\": invalid arg \"%s\".\n",
|
|
|
|
fname, lineno, argv[ 1 ] );
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2006-12-18 07:52:23 +08:00
|
|
|
/* use-temporaries? */
|
|
|
|
} else if ( strcasecmp( argv[ 0 ], "use-temporary-conn" ) == 0 ) {
|
|
|
|
if ( argc != 2 ) {
|
|
|
|
Debug( LDAP_DEBUG_ANY,
|
|
|
|
"%s: line %d: \"use-temporary-conn {FALSE|true}\" takes 1 argument\n",
|
|
|
|
fname, lineno, 0 );
|
|
|
|
return( 1 );
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( mi->mi_ntargets > 0 ) {
|
|
|
|
Debug( LDAP_DEBUG_ANY,
|
|
|
|
"%s: line %d: \"use-temporary-conn\" must appear before target definitions\n",
|
|
|
|
fname, lineno, 0 );
|
|
|
|
return( 1 );
|
|
|
|
}
|
|
|
|
|
|
|
|
switch ( check_true_false( argv[ 1 ] ) ) {
|
|
|
|
case 0:
|
|
|
|
mi->mi_flags &= ~LDAP_BACK_F_USE_TEMPORARIES;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 1:
|
|
|
|
mi->mi_flags |= LDAP_BACK_F_USE_TEMPORARIES;
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
Debug( LDAP_DEBUG_ANY,
|
|
|
|
"%s: line %d: \"use-temporary-conn {FALSE|true}\": invalid arg \"%s\".\n",
|
|
|
|
fname, lineno, argv[ 1 ] );
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2006-12-25 02:23:36 +08:00
|
|
|
/* privileged connections pool max size ? */
|
|
|
|
} else if ( strcasecmp( argv[ 0 ], "conn-pool-max" ) == 0 ) {
|
|
|
|
if ( argc != 2 ) {
|
|
|
|
Debug( LDAP_DEBUG_ANY,
|
|
|
|
"%s: line %d: \"conn-pool-max <n>\" takes 1 argument\n",
|
|
|
|
fname, lineno, 0 );
|
|
|
|
return( 1 );
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( mi->mi_ntargets > 0 ) {
|
|
|
|
Debug( LDAP_DEBUG_ANY,
|
|
|
|
"%s: line %d: \"conn-pool-max\" must appear before target definitions\n",
|
|
|
|
fname, lineno, 0 );
|
|
|
|
return( 1 );
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( lutil_atoi( &mi->mi_conn_priv_max, argv[1] )
|
|
|
|
|| mi->mi_conn_priv_max < LDAP_BACK_CONN_PRIV_MIN
|
|
|
|
|| mi->mi_conn_priv_max > LDAP_BACK_CONN_PRIV_MAX )
|
|
|
|
{
|
|
|
|
Debug( LDAP_DEBUG_ANY,
|
|
|
|
"%s: line %d: \"conn-pool-max <n>\": invalid arg \"%s\".\n",
|
|
|
|
fname, lineno, argv[ 1 ] );
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2006-05-20 22:29:01 +08:00
|
|
|
} else if ( strcasecmp( argv[ 0 ], "cancel" ) == 0 ) {
|
|
|
|
unsigned flag = 0;
|
|
|
|
unsigned *flagsp = mi->mi_ntargets ?
|
|
|
|
&mi->mi_targets[ mi->mi_ntargets - 1 ]->mt_flags
|
|
|
|
: &mi->mi_flags;
|
|
|
|
|
|
|
|
if ( argc != 2 ) {
|
|
|
|
Debug( LDAP_DEBUG_ANY,
|
|
|
|
"%s: line %d: \"cancel {abandon|ignore|exop}\" takes 1 argument\n",
|
|
|
|
fname, lineno, 0 );
|
|
|
|
return( 1 );
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( strcasecmp( argv[ 1 ], "abandon" ) == 0 ) {
|
|
|
|
flag = LDAP_BACK_F_CANCEL_ABANDON;
|
|
|
|
|
|
|
|
} else if ( strcasecmp( argv[ 1 ], "ignore" ) == 0 ) {
|
|
|
|
flag = LDAP_BACK_F_CANCEL_IGNORE;
|
|
|
|
|
|
|
|
} else if ( strcasecmp( argv[ 1 ], "exop" ) == 0 ) {
|
|
|
|
flag = LDAP_BACK_F_CANCEL_EXOP;
|
|
|
|
|
|
|
|
} else if ( strcasecmp( argv[ 1 ], "exop-discover" ) == 0 ) {
|
|
|
|
flag = LDAP_BACK_F_CANCEL_EXOP_DISCOVER;
|
|
|
|
|
|
|
|
} else {
|
|
|
|
Debug( LDAP_DEBUG_ANY,
|
|
|
|
"%s: line %d: \"cancel {abandon|ignore|exop[-discover]}\": unknown mode \"%s\" \n",
|
|
|
|
fname, lineno, argv[ 1 ] );
|
|
|
|
return( 1 );
|
|
|
|
}
|
|
|
|
|
|
|
|
*flagsp &= ~LDAP_BACK_F_CANCEL_MASK2;
|
|
|
|
*flagsp |= flag;
|
|
|
|
|
2005-07-19 08:43:38 +08:00
|
|
|
} else if ( strcasecmp( argv[ 0 ], "timeout" ) == 0 ) {
|
2005-11-24 01:29:16 +08:00
|
|
|
char *sep;
|
2005-07-19 08:43:38 +08:00
|
|
|
time_t *tv = mi->mi_ntargets ?
|
2006-05-07 00:15:25 +08:00
|
|
|
mi->mi_targets[ mi->mi_ntargets - 1 ]->mt_timeout
|
2005-07-20 02:03:06 +08:00
|
|
|
: mi->mi_timeout;
|
2005-07-19 08:43:38 +08:00
|
|
|
int c;
|
|
|
|
|
|
|
|
if ( argc < 2 ) {
|
2005-11-24 01:29:16 +08:00
|
|
|
Debug( LDAP_DEBUG_ANY,
|
2006-09-04 16:26:09 +08:00
|
|
|
"%s: line %d: \"timeout [{add|bind|delete|modify|modrdn}=]<val> [...]\" takes at least 1 argument\n",
|
2005-11-24 01:29:16 +08:00
|
|
|
fname, lineno, 0 );
|
2005-07-19 08:43:38 +08:00
|
|
|
return( 1 );
|
|
|
|
}
|
|
|
|
|
|
|
|
for ( c = 1; c < argc; c++ ) {
|
2005-11-24 01:29:16 +08:00
|
|
|
time_t *t = NULL;
|
|
|
|
unsigned long val;
|
2005-07-19 08:43:38 +08:00
|
|
|
|
|
|
|
sep = strchr( argv[ c ], '=' );
|
|
|
|
if ( sep != NULL ) {
|
|
|
|
size_t len = sep - argv[ c ];
|
|
|
|
|
2006-09-04 16:26:09 +08:00
|
|
|
if ( strncasecmp( argv[ c ], "bind", len ) == 0 ) {
|
|
|
|
t = &tv[ SLAP_OP_BIND ];
|
|
|
|
/* unbind makes little sense */
|
|
|
|
} else if ( strncasecmp( argv[ c ], "add", len ) == 0 ) {
|
|
|
|
t = &tv[ SLAP_OP_ADD ];
|
2005-07-19 08:43:38 +08:00
|
|
|
} else if ( strncasecmp( argv[ c ], "delete", len ) == 0 ) {
|
2006-09-04 16:26:09 +08:00
|
|
|
t = &tv[ SLAP_OP_DELETE ];
|
2005-07-19 08:43:38 +08:00
|
|
|
} else if ( strncasecmp( argv[ c ], "modrdn", len ) == 0 ) {
|
2006-09-04 16:26:09 +08:00
|
|
|
t = &tv[ SLAP_OP_MODRDN ];
|
|
|
|
} else if ( strncasecmp( argv[ c ], "modify", len ) == 0 ) {
|
|
|
|
t = &tv[ SLAP_OP_MODIFY ];
|
|
|
|
} else if ( strncasecmp( argv[ c ], "compare", len ) == 0 ) {
|
|
|
|
t = &tv[ SLAP_OP_COMPARE ];
|
|
|
|
#if 0 /* uses timelimit instead */
|
|
|
|
} else if ( strncasecmp( argv[ c ], "search", len ) == 0 ) {
|
|
|
|
t = &tv[ SLAP_OP_SEARCH ];
|
|
|
|
#endif
|
|
|
|
/* abandon makes little sense */
|
|
|
|
#if 0 /* not implemented yet */
|
|
|
|
} else if ( strncasecmp( argv[ c ], "extended", len ) == 0 ) {
|
|
|
|
t = &tv[ SLAP_OP_EXTENDED ];
|
|
|
|
#endif
|
2005-07-19 08:43:38 +08:00
|
|
|
} else {
|
2005-11-24 01:29:16 +08:00
|
|
|
char buf[ SLAP_TEXT_BUFLEN ];
|
|
|
|
snprintf( buf, sizeof( buf ),
|
2006-09-04 16:26:09 +08:00
|
|
|
"unknown/unhandled operation \"%s\" for timeout #%d",
|
|
|
|
argv[ c ], c - 1 );
|
2005-11-24 01:29:16 +08:00
|
|
|
Debug( LDAP_DEBUG_ANY,
|
|
|
|
"%s: line %d: %s.\n",
|
|
|
|
fname, lineno, buf );
|
2005-07-19 08:43:38 +08:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
sep++;
|
|
|
|
|
|
|
|
} else {
|
|
|
|
sep = argv[ c ];
|
|
|
|
}
|
|
|
|
|
2005-11-24 01:29:16 +08:00
|
|
|
if ( lutil_parse_time( sep, &val ) != 0 ) {
|
|
|
|
Debug( LDAP_DEBUG_ANY,
|
2005-07-19 08:43:38 +08:00
|
|
|
"%s: line %d: unable to parse value \"%s\" for timeout.\n",
|
|
|
|
fname, lineno, sep );
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( t ) {
|
2005-11-24 01:29:16 +08:00
|
|
|
*t = (time_t)val;
|
2005-07-19 08:43:38 +08:00
|
|
|
|
|
|
|
} else {
|
|
|
|
int i;
|
|
|
|
|
2006-09-04 16:26:09 +08:00
|
|
|
for ( i = 0; i < SLAP_OP_LAST; i++ ) {
|
2005-11-24 01:29:16 +08:00
|
|
|
tv[ i ] = (time_t)val;
|
2005-07-19 08:43:38 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2001-05-20 01:02:39 +08:00
|
|
|
/* name to use as pseudo-root dn */
|
|
|
|
} else if ( strcasecmp( argv[ 0 ], "pseudorootdn" ) == 0 ) {
|
2005-04-23 05:43:52 +08:00
|
|
|
int i = mi->mi_ntargets - 1;
|
2001-05-20 01:02:39 +08:00
|
|
|
|
|
|
|
if ( i < 0 ) {
|
2005-11-24 01:29:16 +08:00
|
|
|
Debug( LDAP_DEBUG_ANY,
|
2001-05-20 01:02:39 +08:00
|
|
|
"%s: line %d: need \"uri\" directive first\n",
|
2005-11-24 01:29:16 +08:00
|
|
|
fname, lineno, 0 );
|
2003-04-04 12:06:18 +08:00
|
|
|
return 1;
|
2001-05-20 01:02:39 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
if ( argc != 2 ) {
|
2005-11-24 01:29:16 +08:00
|
|
|
Debug( LDAP_DEBUG_ANY,
|
2001-05-20 01:02:39 +08:00
|
|
|
"%s: line %d: missing name in \"pseudorootdn <name>\" line\n",
|
2005-11-24 01:29:16 +08:00
|
|
|
fname, lineno, 0 );
|
2001-05-20 01:02:39 +08:00
|
|
|
return 1;
|
|
|
|
}
|
2001-12-27 20:17:54 +08:00
|
|
|
|
2006-06-16 07:12:38 +08:00
|
|
|
/*
|
|
|
|
* exact replacement:
|
|
|
|
*
|
|
|
|
|
|
|
|
idassert-bind bindmethod=simple
|
|
|
|
binddn=<pseudorootdn>
|
|
|
|
credentials=<pseudorootpw>
|
|
|
|
mode=none
|
|
|
|
flags=non-prescriptive
|
|
|
|
idassert-authzFrom "dn:<rootdn>"
|
|
|
|
|
|
|
|
* so that only when authc'd as <rootdn> the proxying occurs
|
|
|
|
* rebinding as the <pseudorootdn> without proxyAuthz.
|
|
|
|
*/
|
|
|
|
|
|
|
|
Debug( LDAP_DEBUG_ANY,
|
|
|
|
"%s: line %d: \"pseudorootdn\", \"pseudorootpw\" are no longer supported; "
|
|
|
|
"use \"idassert-bind\" and \"idassert-authzFrom\" instead.\n",
|
|
|
|
fname, lineno, 0 );
|
|
|
|
|
2003-04-30 02:28:14 +08:00
|
|
|
{
|
2006-06-16 07:12:38 +08:00
|
|
|
char binddn[ SLAP_TEXT_BUFLEN ];
|
|
|
|
char *cargv[] = {
|
|
|
|
"idassert-bind",
|
|
|
|
"bindmethod=simple",
|
|
|
|
NULL,
|
|
|
|
"mode=none",
|
|
|
|
"flags=non-prescriptive",
|
|
|
|
NULL
|
|
|
|
};
|
|
|
|
int cargc = 5;
|
|
|
|
int rc;
|
|
|
|
|
|
|
|
if ( BER_BVISNULL( &be->be_rootndn ) ) {
|
|
|
|
Debug( LDAP_DEBUG_ANY, "%s: line %d: \"pseudorootpw\": \"rootdn\" must be defined first.\n",
|
|
|
|
fname, lineno, 0 );
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( snprintf( binddn, sizeof( binddn ), "binddn=%s", argv[ 1 ] ) >= sizeof( binddn ) ) {
|
|
|
|
Debug( LDAP_DEBUG_ANY, "%s: line %d: \"pseudorootdn\" too long.\n",
|
|
|
|
fname, lineno, 0 );
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
cargv[ 2 ] = binddn;
|
|
|
|
|
|
|
|
rc = slap_idassert_parse_cf( fname, lineno, cargc, cargv, &mi->mi_targets[ mi->mi_ntargets - 1 ]->mt_idassert );
|
|
|
|
if ( rc == 0 ) {
|
|
|
|
struct berval bv;
|
|
|
|
|
|
|
|
if ( mi->mi_targets[ mi->mi_ntargets - 1 ]->mt_idassert_authz != NULL ) {
|
|
|
|
Debug( LDAP_DEBUG_ANY, "%s: line %d: \"idassert-authzFrom\" already defined (discarded).\n",
|
|
|
|
fname, lineno, 0 );
|
|
|
|
ber_bvarray_free( mi->mi_targets[ mi->mi_ntargets - 1 ]->mt_idassert_authz );
|
|
|
|
mi->mi_targets[ mi->mi_ntargets - 1 ]->mt_idassert_authz = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
assert( !BER_BVISNULL( &mi->mi_targets[ mi->mi_ntargets - 1 ]->mt_idassert_authcDN ) );
|
|
|
|
|
|
|
|
bv.bv_len = STRLENOF( "dn:" ) + be->be_rootndn.bv_len;
|
|
|
|
bv.bv_val = ber_memalloc( bv.bv_len + 1 );
|
|
|
|
AC_MEMCPY( bv.bv_val, "dn:", STRLENOF( "dn:" ) );
|
|
|
|
AC_MEMCPY( &bv.bv_val[ STRLENOF( "dn:" ) ], be->be_rootndn.bv_val, be->be_rootndn.bv_len + 1 );
|
|
|
|
|
|
|
|
ber_bvarray_add( &mi->mi_targets[ mi->mi_ntargets - 1 ]->mt_idassert_authz, &bv );
|
|
|
|
}
|
|
|
|
|
|
|
|
return rc;
|
2001-12-27 20:17:54 +08:00
|
|
|
}
|
|
|
|
|
2001-05-20 01:02:39 +08:00
|
|
|
/* password to use as pseudo-root */
|
|
|
|
} else if ( strcasecmp( argv[ 0 ], "pseudorootpw" ) == 0 ) {
|
2005-04-23 05:43:52 +08:00
|
|
|
int i = mi->mi_ntargets - 1;
|
2001-05-20 01:02:39 +08:00
|
|
|
|
|
|
|
if ( i < 0 ) {
|
2005-11-24 01:29:16 +08:00
|
|
|
Debug( LDAP_DEBUG_ANY,
|
2001-05-20 01:02:39 +08:00
|
|
|
"%s: line %d: need \"uri\" directive first\n",
|
2005-11-24 01:29:16 +08:00
|
|
|
fname, lineno, 0 );
|
2003-04-04 12:06:18 +08:00
|
|
|
return 1;
|
2001-05-20 01:02:39 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
if ( argc != 2 ) {
|
2005-11-24 01:29:16 +08:00
|
|
|
Debug( LDAP_DEBUG_ANY,
|
2001-05-20 01:02:39 +08:00
|
|
|
"%s: line %d: missing password in \"pseudorootpw <password>\" line\n",
|
2005-11-24 01:29:16 +08:00
|
|
|
fname, lineno, 0 );
|
2001-05-20 01:02:39 +08:00
|
|
|
return 1;
|
|
|
|
}
|
2006-06-16 07:12:38 +08:00
|
|
|
|
|
|
|
Debug( LDAP_DEBUG_ANY,
|
|
|
|
"%s: line %d: \"pseudorootdn\", \"pseudorootpw\" are no longer supported; "
|
|
|
|
"use \"idassert-bind\" and \"idassert-authzFrom\" instead.\n",
|
|
|
|
fname, lineno, 0 );
|
|
|
|
|
|
|
|
if ( BER_BVISNULL( &mi->mi_targets[ i ]->mt_idassert_authcDN ) ) {
|
|
|
|
Debug( LDAP_DEBUG_ANY, "%s: line %d: \"pseudorootpw\": \"pseudorootdn\" must be defined first.\n",
|
|
|
|
fname, lineno, 0 );
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( !BER_BVISNULL( &mi->mi_targets[ i ]->mt_idassert_passwd ) ) {
|
|
|
|
memset( mi->mi_targets[ i ]->mt_idassert_passwd.bv_val, 0,
|
|
|
|
mi->mi_targets[ i ]->mt_idassert_passwd.bv_len );
|
|
|
|
ber_memfree( mi->mi_targets[ i ]->mt_idassert_passwd.bv_val );
|
|
|
|
}
|
|
|
|
ber_str2bv( argv[ 1 ], 0, 1, &mi->mi_targets[ i ]->mt_idassert_passwd );
|
|
|
|
|
|
|
|
/* idassert-bind */
|
|
|
|
} else if ( strcasecmp( argv[ 0 ], "idassert-bind" ) == 0 ) {
|
|
|
|
if ( mi->mi_ntargets == 0 ) {
|
|
|
|
Debug( LDAP_DEBUG_ANY,
|
|
|
|
"%s: line %d: \"idassert-bind\" "
|
|
|
|
"must appear inside a target specification.\n",
|
|
|
|
fname, lineno, 0 );
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return slap_idassert_parse_cf( fname, lineno, argc, argv, &mi->mi_targets[ mi->mi_ntargets - 1 ]->mt_idassert );
|
|
|
|
|
|
|
|
/* idassert-authzFrom */
|
|
|
|
} else if ( strcasecmp( argv[ 0 ], "idassert-authzFrom" ) == 0 ) {
|
|
|
|
if ( mi->mi_ntargets == 0 ) {
|
|
|
|
Debug( LDAP_DEBUG_ANY,
|
|
|
|
"%s: line %d: \"idassert-bind\" "
|
|
|
|
"must appear inside a target specification.\n",
|
|
|
|
fname, lineno, 0 );
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
switch ( argc ) {
|
|
|
|
case 2:
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 1:
|
|
|
|
Debug( LDAP_DEBUG_ANY,
|
|
|
|
"%s: line %d: missing <id> in \"idassert-authzFrom <id>\".\n",
|
|
|
|
fname, lineno, 0 );
|
|
|
|
return 1;
|
|
|
|
|
|
|
|
default:
|
|
|
|
Debug( LDAP_DEBUG_ANY,
|
|
|
|
"%s: line %d: extra cruft after <id> in \"idassert-authzFrom <id>\".\n",
|
|
|
|
fname, lineno, 0 );
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return slap_idassert_authzfrom_parse_cf( fname, lineno, argv[ 1 ], &mi->mi_targets[ mi->mi_ntargets - 1 ]->mt_idassert );
|
2006-05-28 03:54:27 +08:00
|
|
|
|
|
|
|
/* quarantine */
|
|
|
|
} else if ( strcasecmp( argv[ 0 ], "quarantine" ) == 0 ) {
|
|
|
|
char buf[ SLAP_TEXT_BUFLEN ] = { '\0' };
|
|
|
|
slap_retry_info_t *ri = mi->mi_ntargets ?
|
|
|
|
&mi->mi_targets[ mi->mi_ntargets - 1 ]->mt_quarantine
|
|
|
|
: &mi->mi_quarantine;
|
|
|
|
|
2006-06-08 07:25:38 +08:00
|
|
|
if ( ( mi->mi_ntargets == 0 && META_BACK_QUARANTINE( mi ) )
|
|
|
|
|| ( mi->mi_ntargets > 0 && META_BACK_TGT_QUARANTINE( mi->mi_targets[ mi->mi_ntargets - 1 ] ) ) )
|
|
|
|
{
|
2006-05-28 03:54:27 +08:00
|
|
|
Debug( LDAP_DEBUG_ANY,
|
|
|
|
"%s: line %d: quarantine already defined.\n",
|
|
|
|
fname, lineno, 0 );
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
switch ( argc ) {
|
|
|
|
case 2:
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 1:
|
|
|
|
Debug( LDAP_DEBUG_ANY,
|
|
|
|
"%s: line %d: missing arg in \"quarantine <pattern list>\".\n",
|
|
|
|
fname, lineno, 0 );
|
|
|
|
return 1;
|
|
|
|
|
|
|
|
default:
|
|
|
|
Debug( LDAP_DEBUG_ANY,
|
|
|
|
"%s: line %d: extra cruft after \"quarantine <pattern list>\".\n",
|
|
|
|
fname, lineno, 0 );
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( ri != &mi->mi_quarantine ) {
|
|
|
|
ri->ri_interval = NULL;
|
|
|
|
ri->ri_num = NULL;
|
|
|
|
}
|
|
|
|
|
2006-06-08 07:25:38 +08:00
|
|
|
if ( mi->mi_ntargets > 0 && !META_BACK_QUARANTINE( mi ) ) {
|
|
|
|
ldap_pvt_thread_mutex_init( &mi->mi_targets[ mi->mi_ntargets - 1 ]->mt_quarantine_mutex );
|
|
|
|
}
|
|
|
|
|
2006-05-28 03:54:27 +08:00
|
|
|
if ( slap_retry_info_parse( argv[ 1 ], ri, buf, sizeof( buf ) ) ) {
|
|
|
|
Debug( LDAP_DEBUG_ANY,
|
|
|
|
"%s line %d: %s.\n",
|
|
|
|
fname, lineno, buf );
|
|
|
|
return 1;
|
|
|
|
}
|
2001-05-12 08:51:28 +08:00
|
|
|
|
|
|
|
/* dn massaging */
|
|
|
|
} else if ( strcasecmp( argv[ 0 ], "suffixmassage" ) == 0 ) {
|
2001-12-27 20:17:54 +08:00
|
|
|
BackendDB *tmp_be;
|
2005-08-08 00:45:13 +08:00
|
|
|
int i = mi->mi_ntargets - 1, rc;
|
2002-05-01 19:41:57 +08:00
|
|
|
struct berval dn, nvnc, pvnc, nrnc, prnc;
|
2001-05-12 08:51:28 +08:00
|
|
|
|
|
|
|
if ( i < 0 ) {
|
2005-11-24 01:29:16 +08:00
|
|
|
Debug( LDAP_DEBUG_ANY,
|
2001-05-12 08:51:28 +08:00
|
|
|
"%s: line %d: need \"uri\" directive first\n",
|
2005-11-24 01:29:16 +08:00
|
|
|
fname, lineno, 0 );
|
2001-05-12 08:51:28 +08:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* syntax:
|
|
|
|
*
|
|
|
|
* suffixmassage <suffix> <massaged suffix>
|
|
|
|
*
|
|
|
|
* the <suffix> field must be defined as a valid suffix
|
|
|
|
* (or suffixAlias?) for the current database;
|
|
|
|
* the <massaged suffix> shouldn't have already been
|
|
|
|
* defined as a valid suffix or suffixAlias for the
|
|
|
|
* current server
|
|
|
|
*/
|
|
|
|
if ( argc != 3 ) {
|
2005-11-24 01:29:16 +08:00
|
|
|
Debug( LDAP_DEBUG_ANY,
|
2001-05-12 08:51:28 +08:00
|
|
|
"%s: line %d: syntax is \"suffixMassage <suffix> <massaged suffix>\"\n",
|
2005-11-24 01:29:16 +08:00
|
|
|
fname, lineno, 0 );
|
2001-05-12 08:51:28 +08:00
|
|
|
return 1;
|
|
|
|
}
|
2001-12-27 20:17:54 +08:00
|
|
|
|
2005-08-08 00:45:13 +08:00
|
|
|
ber_str2bv( argv[ 1 ], 0, 0, &dn );
|
2003-04-11 12:22:37 +08:00
|
|
|
if ( dnPrettyNormal( NULL, &dn, &pvnc, &nvnc, NULL ) != LDAP_SUCCESS ) {
|
2005-11-24 01:29:16 +08:00
|
|
|
Debug( LDAP_DEBUG_ANY, "%s: line %d: "
|
2001-12-27 20:17:54 +08:00
|
|
|
"suffix '%s' is invalid\n",
|
|
|
|
fname, lineno, argv[ 1 ] );
|
|
|
|
return 1;
|
|
|
|
}
|
2001-05-12 08:51:28 +08:00
|
|
|
|
2002-05-01 19:41:57 +08:00
|
|
|
tmp_be = select_backend( &nvnc, 0, 0 );
|
2001-05-12 08:51:28 +08:00
|
|
|
if ( tmp_be != NULL && tmp_be != be ) {
|
2005-11-24 01:29:16 +08:00
|
|
|
Debug( LDAP_DEBUG_ANY,
|
2001-05-12 08:51:28 +08:00
|
|
|
"%s: line %d: suffix already in use by another backend in"
|
|
|
|
" \"suffixMassage <suffix> <massaged suffix>\"\n",
|
2005-11-24 01:29:16 +08:00
|
|
|
fname, lineno, 0 );
|
2002-05-01 19:41:57 +08:00
|
|
|
free( pvnc.bv_val );
|
|
|
|
free( nvnc.bv_val );
|
2001-05-12 08:51:28 +08:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2005-08-08 00:45:13 +08:00
|
|
|
ber_str2bv( argv[ 2 ], 0, 0, &dn );
|
2003-04-11 12:22:37 +08:00
|
|
|
if ( dnPrettyNormal( NULL, &dn, &prnc, &nrnc, NULL ) != LDAP_SUCCESS ) {
|
2005-11-24 01:29:16 +08:00
|
|
|
Debug( LDAP_DEBUG_ANY, "%s: line %d: "
|
|
|
|
"massaged suffix '%s' is invalid\n",
|
|
|
|
fname, lineno, argv[ 2 ] );
|
2002-05-01 19:41:57 +08:00
|
|
|
free( pvnc.bv_val );
|
|
|
|
free( nvnc.bv_val );
|
2001-12-27 20:17:54 +08:00
|
|
|
return 1;
|
|
|
|
}
|
2002-05-01 19:41:57 +08:00
|
|
|
|
|
|
|
#if 0
|
|
|
|
tmp_be = select_backend( &nrnc, 0, 0 );
|
2001-05-12 08:51:28 +08:00
|
|
|
if ( tmp_be != NULL ) {
|
2005-11-24 01:29:16 +08:00
|
|
|
Debug( LDAP_DEBUG_ANY,
|
2001-05-12 08:51:28 +08:00
|
|
|
"%s: line %d: massaged suffix already in use by another backend in"
|
|
|
|
" \"suffixMassage <suffix> <massaged suffix>\"\n",
|
2005-11-24 01:29:16 +08:00
|
|
|
fname, lineno, 0 );
|
2002-05-01 19:41:57 +08:00
|
|
|
free( pvnc.bv_val );
|
|
|
|
free( nvnc.bv_val );
|
|
|
|
free( prnc.bv_val );
|
|
|
|
free( nrnc.bv_val );
|
2001-05-12 08:51:28 +08:00
|
|
|
return 1;
|
|
|
|
}
|
2002-05-01 19:41:57 +08:00
|
|
|
#endif
|
2001-05-12 08:51:28 +08:00
|
|
|
|
|
|
|
/*
|
|
|
|
* The suffix massaging is emulated by means of the
|
|
|
|
* rewrite capabilities
|
|
|
|
* FIXME: no extra rewrite capabilities should be added
|
|
|
|
* to the database
|
|
|
|
*/
|
2006-05-07 00:15:25 +08:00
|
|
|
rc = suffix_massage_config( mi->mi_targets[ i ]->mt_rwmap.rwm_rw,
|
2002-05-01 19:41:57 +08:00
|
|
|
&pvnc, &nvnc, &prnc, &nrnc );
|
2005-08-08 00:45:13 +08:00
|
|
|
|
|
|
|
free( pvnc.bv_val );
|
|
|
|
free( nvnc.bv_val );
|
|
|
|
free( prnc.bv_val );
|
|
|
|
free( nrnc.bv_val );
|
|
|
|
|
|
|
|
return rc;
|
2001-05-12 08:51:28 +08:00
|
|
|
|
|
|
|
/* rewrite stuff ... */
|
|
|
|
} else if ( strncasecmp( argv[ 0 ], "rewrite", 7 ) == 0 ) {
|
2005-04-23 05:43:52 +08:00
|
|
|
int i = mi->mi_ntargets - 1;
|
2001-05-12 08:51:28 +08:00
|
|
|
|
|
|
|
if ( i < 0 ) {
|
2005-11-24 01:29:16 +08:00
|
|
|
Debug( LDAP_DEBUG_ANY, "%s: line %d: \"rewrite\" "
|
2005-04-16 10:25:41 +08:00
|
|
|
"statement outside target definition.\n",
|
2005-11-24 01:29:16 +08:00
|
|
|
fname, lineno, 0 );
|
2005-04-16 10:25:41 +08:00
|
|
|
return 1;
|
2001-05-12 08:51:28 +08:00
|
|
|
}
|
|
|
|
|
2006-05-07 00:15:25 +08:00
|
|
|
return rewrite_parse( mi->mi_targets[ i ]->mt_rwmap.rwm_rw,
|
2005-01-08 17:20:54 +08:00
|
|
|
fname, lineno, argc, argv );
|
2001-05-12 08:51:28 +08:00
|
|
|
|
|
|
|
/* objectclass/attribute mapping */
|
|
|
|
} else if ( strcasecmp( argv[ 0 ], "map" ) == 0 ) {
|
2005-04-23 05:43:52 +08:00
|
|
|
int i = mi->mi_ntargets - 1;
|
2001-05-12 08:51:28 +08:00
|
|
|
|
2003-04-04 12:06:18 +08:00
|
|
|
if ( i < 0 ) {
|
2005-11-24 01:29:16 +08:00
|
|
|
Debug( LDAP_DEBUG_ANY,
|
2003-04-04 12:06:18 +08:00
|
|
|
"%s: line %d: need \"uri\" directive first\n",
|
2005-11-24 01:29:16 +08:00
|
|
|
fname, lineno, 0 );
|
2003-04-04 12:06:18 +08:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2006-05-07 00:15:25 +08:00
|
|
|
return ldap_back_map_config( &mi->mi_targets[ i ]->mt_rwmap.rwm_oc,
|
|
|
|
&mi->mi_targets[ i ]->mt_rwmap.rwm_at,
|
2003-03-01 19:08:53 +08:00
|
|
|
fname, lineno, argc, argv );
|
2005-04-26 02:56:56 +08:00
|
|
|
|
|
|
|
} else if ( strcasecmp( argv[ 0 ], "nretries" ) == 0 ) {
|
|
|
|
int i = mi->mi_ntargets - 1;
|
|
|
|
int nretries = META_RETRY_UNDEFINED;
|
|
|
|
|
|
|
|
if ( argc != 2 ) {
|
2005-11-24 01:29:16 +08:00
|
|
|
Debug( LDAP_DEBUG_ANY,
|
2005-04-26 02:56:56 +08:00
|
|
|
"%s: line %d: need value in \"nretries <value>\"\n",
|
2005-11-24 01:29:16 +08:00
|
|
|
fname, lineno, 0 );
|
2005-04-26 02:56:56 +08:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( strcasecmp( argv[ 1 ], "forever" ) == 0 ) {
|
|
|
|
nretries = META_RETRY_FOREVER;
|
|
|
|
|
|
|
|
} else if ( strcasecmp( argv[ 1 ], "never" ) == 0 ) {
|
|
|
|
nretries = META_RETRY_NEVER;
|
|
|
|
|
|
|
|
} else {
|
2005-11-24 01:29:16 +08:00
|
|
|
if ( lutil_atoi( &nretries, argv[ 1 ] ) != 0 ) {
|
|
|
|
Debug( LDAP_DEBUG_ANY,
|
2005-04-26 02:56:56 +08:00
|
|
|
"%s: line %d: unable to parse value \"%s\" in \"nretries <value>\"\n",
|
|
|
|
fname, lineno, argv[ 1 ] );
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( i < 0 ) {
|
|
|
|
mi->mi_nretries = nretries;
|
|
|
|
|
|
|
|
} else {
|
2006-05-07 00:15:25 +08:00
|
|
|
mi->mi_targets[ i ]->mt_nretries = nretries;
|
2005-04-26 02:56:56 +08:00
|
|
|
}
|
|
|
|
|
2006-04-14 00:20:00 +08:00
|
|
|
} else if ( strcasecmp( argv[ 0 ], "protocol-version" ) == 0 ) {
|
|
|
|
int *version = mi->mi_ntargets ?
|
2006-05-07 00:15:25 +08:00
|
|
|
&mi->mi_targets[ mi->mi_ntargets - 1 ]->mt_version
|
2006-04-14 00:20:00 +08:00
|
|
|
: &mi->mi_version;
|
|
|
|
|
|
|
|
if ( argc != 2 ) {
|
|
|
|
Debug( LDAP_DEBUG_ANY,
|
|
|
|
"%s: line %d: need value in \"protocol-version <version>\"\n",
|
|
|
|
fname, lineno, 0 );
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2006-04-14 06:23:03 +08:00
|
|
|
if ( lutil_atoi( version, argv[ 1 ] ) != 0 ) {
|
2006-04-14 00:20:00 +08:00
|
|
|
Debug( LDAP_DEBUG_ANY,
|
|
|
|
"%s: line %d: unable to parse version \"%s\" in \"protocol-version <version>\"\n",
|
|
|
|
fname, lineno, argv[ 1 ] );
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2006-05-06 18:42:29 +08:00
|
|
|
if ( *version != 0 && ( *version < LDAP_VERSION_MIN || *version > LDAP_VERSION_MAX ) ) {
|
2006-04-14 00:20:00 +08:00
|
|
|
Debug( LDAP_DEBUG_ANY,
|
|
|
|
"%s: line %d: unsupported version \"%s\" in \"protocol-version <version>\"\n",
|
|
|
|
fname, lineno, argv[ 1 ] );
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2001-05-12 08:51:28 +08:00
|
|
|
/* anything else */
|
|
|
|
} else {
|
2003-12-07 15:07:00 +08:00
|
|
|
return SLAP_CONF_UNKNOWN;
|
2001-05-12 08:51:28 +08:00
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2004-11-13 22:45:18 +08:00
|
|
|
int
|
|
|
|
ldap_back_map_config(
|
|
|
|
struct ldapmap *oc_map,
|
|
|
|
struct ldapmap *at_map,
|
|
|
|
const char *fname,
|
|
|
|
int lineno,
|
|
|
|
int argc,
|
|
|
|
char **argv )
|
|
|
|
{
|
|
|
|
struct ldapmap *map;
|
|
|
|
struct ldapmapping *mapping;
|
|
|
|
char *src, *dst;
|
|
|
|
int is_oc = 0;
|
|
|
|
|
|
|
|
if ( argc < 3 || argc > 4 ) {
|
2005-11-24 01:29:16 +08:00
|
|
|
Debug( LDAP_DEBUG_ANY,
|
2004-11-13 22:45:18 +08:00
|
|
|
"%s: line %d: syntax is \"map {objectclass | attribute} [<local> | *] {<foreign> | *}\"\n",
|
2005-11-24 01:29:16 +08:00
|
|
|
fname, lineno, 0 );
|
2004-11-13 22:45:18 +08:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2005-05-05 07:57:55 +08:00
|
|
|
if ( strcasecmp( argv[ 1 ], "objectclass" ) == 0 ) {
|
2004-11-13 22:45:18 +08:00
|
|
|
map = oc_map;
|
|
|
|
is_oc = 1;
|
|
|
|
|
2005-05-05 07:57:55 +08:00
|
|
|
} else if ( strcasecmp( argv[ 1 ], "attribute" ) == 0 ) {
|
2004-11-13 22:45:18 +08:00
|
|
|
map = at_map;
|
|
|
|
|
|
|
|
} else {
|
2005-11-24 01:29:16 +08:00
|
|
|
Debug( LDAP_DEBUG_ANY, "%s: line %d: syntax is "
|
2004-11-13 22:45:18 +08:00
|
|
|
"\"map {objectclass | attribute} [<local> | *] "
|
|
|
|
"{<foreign> | *}\"\n",
|
2005-11-24 01:29:16 +08:00
|
|
|
fname, lineno, 0 );
|
2004-11-13 22:45:18 +08:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2005-05-05 07:57:55 +08:00
|
|
|
if ( strcmp( argv[ 2 ], "*" ) == 0 ) {
|
|
|
|
if ( argc < 4 || strcmp( argv[ 3 ], "*" ) == 0 ) {
|
2004-11-13 22:45:18 +08:00
|
|
|
map->drop_missing = ( argc < 4 );
|
2006-12-18 07:52:23 +08:00
|
|
|
goto success_return;
|
2004-11-13 22:45:18 +08:00
|
|
|
}
|
2005-05-05 07:57:55 +08:00
|
|
|
src = dst = argv[ 3 ];
|
2004-11-13 22:45:18 +08:00
|
|
|
|
|
|
|
} else if ( argc < 4 ) {
|
|
|
|
src = "";
|
2005-05-05 07:57:55 +08:00
|
|
|
dst = argv[ 2 ];
|
2004-11-13 22:45:18 +08:00
|
|
|
|
|
|
|
} else {
|
2005-05-05 07:57:55 +08:00
|
|
|
src = argv[ 2 ];
|
|
|
|
dst = ( strcmp( argv[ 3 ], "*" ) == 0 ? src : argv[ 3 ] );
|
2004-11-13 22:45:18 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
if ( ( map == at_map )
|
2006-12-18 07:52:23 +08:00
|
|
|
&& ( strcasecmp( src, "objectclass" ) == 0
|
2004-11-13 22:45:18 +08:00
|
|
|
|| strcasecmp( dst, "objectclass" ) == 0 ) )
|
|
|
|
{
|
2005-11-24 01:29:16 +08:00
|
|
|
Debug( LDAP_DEBUG_ANY,
|
2004-11-13 22:45:18 +08:00
|
|
|
"%s: line %d: objectclass attribute cannot be mapped\n",
|
2005-11-24 01:29:16 +08:00
|
|
|
fname, lineno, 0 );
|
2004-11-13 22:45:18 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
mapping = (struct ldapmapping *)ch_calloc( 2,
|
|
|
|
sizeof(struct ldapmapping) );
|
|
|
|
if ( mapping == NULL ) {
|
2005-11-24 01:29:16 +08:00
|
|
|
Debug( LDAP_DEBUG_ANY,
|
2004-11-13 22:45:18 +08:00
|
|
|
"%s: line %d: out of memory\n",
|
2005-11-24 01:29:16 +08:00
|
|
|
fname, lineno, 0 );
|
2004-11-13 22:45:18 +08:00
|
|
|
return 1;
|
|
|
|
}
|
2005-11-03 23:20:33 +08:00
|
|
|
ber_str2bv( src, 0, 1, &mapping[ 0 ].src );
|
|
|
|
ber_str2bv( dst, 0, 1, &mapping[ 0 ].dst );
|
|
|
|
mapping[ 1 ].src = mapping[ 0 ].dst;
|
|
|
|
mapping[ 1 ].dst = mapping[ 0 ].src;
|
2004-11-13 22:45:18 +08:00
|
|
|
|
|
|
|
/*
|
|
|
|
* schema check
|
|
|
|
*/
|
|
|
|
if ( is_oc ) {
|
2005-05-05 07:57:55 +08:00
|
|
|
if ( src[ 0 ] != '\0' ) {
|
2005-11-03 23:20:33 +08:00
|
|
|
if ( oc_bvfind( &mapping[ 0 ].src ) == NULL ) {
|
2005-11-24 01:29:16 +08:00
|
|
|
Debug( LDAP_DEBUG_ANY,
|
2004-11-13 22:45:18 +08:00
|
|
|
"%s: line %d: warning, source objectClass '%s' "
|
|
|
|
"should be defined in schema\n",
|
|
|
|
fname, lineno, src );
|
|
|
|
|
|
|
|
/*
|
|
|
|
* FIXME: this should become an err
|
|
|
|
*/
|
|
|
|
goto error_return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-11-03 23:20:33 +08:00
|
|
|
if ( oc_bvfind( &mapping[ 0 ].dst ) == NULL ) {
|
2005-11-24 01:29:16 +08:00
|
|
|
Debug( LDAP_DEBUG_ANY,
|
2004-11-13 22:45:18 +08:00
|
|
|
"%s: line %d: warning, destination objectClass '%s' "
|
|
|
|
"is not defined in schema\n",
|
|
|
|
fname, lineno, dst );
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
int rc;
|
|
|
|
const char *text = NULL;
|
|
|
|
AttributeDescription *ad = NULL;
|
|
|
|
|
2005-05-05 07:57:55 +08:00
|
|
|
if ( src[ 0 ] != '\0' ) {
|
2005-11-03 23:20:33 +08:00
|
|
|
rc = slap_bv2ad( &mapping[ 0 ].src, &ad, &text );
|
2004-11-13 22:45:18 +08:00
|
|
|
if ( rc != LDAP_SUCCESS ) {
|
2005-11-24 01:29:16 +08:00
|
|
|
Debug( LDAP_DEBUG_ANY,
|
2004-11-13 22:45:18 +08:00
|
|
|
"%s: line %d: warning, source attributeType '%s' "
|
|
|
|
"should be defined in schema\n",
|
|
|
|
fname, lineno, src );
|
|
|
|
|
|
|
|
/*
|
|
|
|
* FIXME: this should become an err
|
|
|
|
*/
|
2005-08-26 05:14:26 +08:00
|
|
|
/*
|
|
|
|
* we create a fake "proxied" ad
|
|
|
|
* and add it here.
|
|
|
|
*/
|
|
|
|
|
2005-11-03 23:20:33 +08:00
|
|
|
rc = slap_bv2undef_ad( &mapping[ 0 ].src,
|
2005-08-26 05:14:26 +08:00
|
|
|
&ad, &text, SLAP_AD_PROXIED );
|
|
|
|
if ( rc != LDAP_SUCCESS ) {
|
2005-11-24 01:29:16 +08:00
|
|
|
char buf[ SLAP_TEXT_BUFLEN ];
|
|
|
|
|
|
|
|
snprintf( buf, sizeof( buf ),
|
|
|
|
"source attributeType \"%s\": %d (%s)",
|
|
|
|
src, rc, text ? text : "" );
|
|
|
|
Debug( LDAP_DEBUG_ANY,
|
|
|
|
"%s: line %d: %s\n",
|
|
|
|
fname, lineno, buf );
|
2005-08-26 05:14:26 +08:00
|
|
|
goto error_return;
|
|
|
|
}
|
2004-11-13 22:45:18 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
ad = NULL;
|
|
|
|
}
|
|
|
|
|
2005-11-03 23:20:33 +08:00
|
|
|
rc = slap_bv2ad( &mapping[ 0 ].dst, &ad, &text );
|
2004-11-13 22:45:18 +08:00
|
|
|
if ( rc != LDAP_SUCCESS ) {
|
2005-11-24 01:29:16 +08:00
|
|
|
Debug( LDAP_DEBUG_ANY,
|
2004-11-13 22:45:18 +08:00
|
|
|
"%s: line %d: warning, destination attributeType '%s' "
|
|
|
|
"is not defined in schema\n",
|
|
|
|
fname, lineno, dst );
|
2005-08-26 05:14:26 +08:00
|
|
|
|
|
|
|
/*
|
|
|
|
* we create a fake "proxied" ad
|
|
|
|
* and add it here.
|
|
|
|
*/
|
|
|
|
|
2005-11-03 23:20:33 +08:00
|
|
|
rc = slap_bv2undef_ad( &mapping[ 0 ].dst,
|
2005-08-26 05:14:26 +08:00
|
|
|
&ad, &text, SLAP_AD_PROXIED );
|
|
|
|
if ( rc != LDAP_SUCCESS ) {
|
2005-11-24 01:29:16 +08:00
|
|
|
char buf[ SLAP_TEXT_BUFLEN ];
|
|
|
|
|
|
|
|
snprintf( buf, sizeof( buf ),
|
|
|
|
"source attributeType \"%s\": %d (%s)\n",
|
|
|
|
dst, rc, text ? text : "" );
|
|
|
|
Debug( LDAP_DEBUG_ANY,
|
|
|
|
"%s: line %d: %s\n",
|
|
|
|
fname, lineno, buf );
|
2005-08-26 05:14:26 +08:00
|
|
|
return 1;
|
|
|
|
}
|
2004-11-13 22:45:18 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-11-03 23:20:33 +08:00
|
|
|
if ( (src[ 0 ] != '\0' && avl_find( map->map, (caddr_t)&mapping[ 0 ], mapping_cmp ) != NULL)
|
2005-05-05 07:57:55 +08:00
|
|
|
|| avl_find( map->remap, (caddr_t)&mapping[ 1 ], mapping_cmp ) != NULL)
|
2004-11-13 22:45:18 +08:00
|
|
|
{
|
2005-11-24 01:29:16 +08:00
|
|
|
Debug( LDAP_DEBUG_ANY,
|
2006-01-24 12:40:01 +08:00
|
|
|
"%s: line %d: duplicate mapping found.\n",
|
2005-11-24 01:29:16 +08:00
|
|
|
fname, lineno, 0 );
|
2004-11-13 22:45:18 +08:00
|
|
|
goto error_return;
|
|
|
|
}
|
|
|
|
|
2005-05-05 07:57:55 +08:00
|
|
|
if ( src[ 0 ] != '\0' ) {
|
2005-11-03 23:20:33 +08:00
|
|
|
avl_insert( &map->map, (caddr_t)&mapping[ 0 ],
|
2004-11-13 22:45:18 +08:00
|
|
|
mapping_cmp, mapping_dup );
|
|
|
|
}
|
2005-05-05 07:57:55 +08:00
|
|
|
avl_insert( &map->remap, (caddr_t)&mapping[ 1 ],
|
2004-11-13 22:45:18 +08:00
|
|
|
mapping_cmp, mapping_dup );
|
|
|
|
|
2006-12-18 07:52:23 +08:00
|
|
|
success_return:;
|
|
|
|
if ( !is_oc && map->map == NULL ) {
|
|
|
|
/* only init if required */
|
|
|
|
ldap_back_map_init( map, &mapping );
|
|
|
|
}
|
|
|
|
|
2004-11-13 22:45:18 +08:00
|
|
|
return 0;
|
|
|
|
|
|
|
|
error_return:;
|
|
|
|
if ( mapping ) {
|
2005-11-03 23:20:33 +08:00
|
|
|
ch_free( mapping[ 0 ].src.bv_val );
|
|
|
|
ch_free( mapping[ 0 ].dst.bv_val );
|
2004-11-13 22:45:18 +08:00
|
|
|
ch_free( mapping );
|
|
|
|
}
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
#ifdef ENABLE_REWRITE
|
|
|
|
static char *
|
|
|
|
suffix_massage_regexize( const char *s )
|
|
|
|
{
|
|
|
|
char *res, *ptr;
|
|
|
|
const char *p, *r;
|
|
|
|
int i;
|
|
|
|
|
2005-10-09 03:39:56 +08:00
|
|
|
if ( s[ 0 ] == '\0' ) {
|
|
|
|
return ch_strdup( "^(.+)$" );
|
|
|
|
}
|
|
|
|
|
2004-11-13 22:45:18 +08:00
|
|
|
for ( i = 0, p = s;
|
|
|
|
( r = strchr( p, ',' ) ) != NULL;
|
|
|
|
p = r + 1, i++ )
|
|
|
|
;
|
|
|
|
|
2005-04-26 18:02:19 +08:00
|
|
|
res = ch_calloc( sizeof( char ),
|
|
|
|
strlen( s )
|
2005-10-09 03:39:56 +08:00
|
|
|
+ STRLENOF( "((.+),)?" )
|
|
|
|
+ STRLENOF( "[ ]?" ) * i
|
|
|
|
+ STRLENOF( "$" ) + 1 );
|
2004-11-13 22:45:18 +08:00
|
|
|
|
2005-10-09 03:39:56 +08:00
|
|
|
ptr = lutil_strcopy( res, "((.+),)?" );
|
2004-11-13 22:45:18 +08:00
|
|
|
for ( i = 0, p = s;
|
|
|
|
( r = strchr( p, ',' ) ) != NULL;
|
|
|
|
p = r + 1 , i++ ) {
|
|
|
|
ptr = lutil_strncopy( ptr, p, r - p + 1 );
|
|
|
|
ptr = lutil_strcopy( ptr, "[ ]?" );
|
|
|
|
|
|
|
|
if ( r[ 1 ] == ' ' ) {
|
|
|
|
r++;
|
|
|
|
}
|
|
|
|
}
|
2005-10-09 03:39:56 +08:00
|
|
|
ptr = lutil_strcopy( ptr, p );
|
|
|
|
ptr[ 0 ] = '$';
|
|
|
|
ptr++;
|
|
|
|
ptr[ 0 ] = '\0';
|
2004-11-13 22:45:18 +08:00
|
|
|
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
|
|
|
static char *
|
2005-10-09 03:39:56 +08:00
|
|
|
suffix_massage_patternize( const char *s, const char *p )
|
2004-11-13 22:45:18 +08:00
|
|
|
{
|
|
|
|
ber_len_t len;
|
2005-10-09 03:39:56 +08:00
|
|
|
char *res, *ptr;
|
|
|
|
|
|
|
|
len = strlen( p );
|
2004-11-13 22:45:18 +08:00
|
|
|
|
2005-10-09 03:39:56 +08:00
|
|
|
if ( s[ 0 ] == '\0' ) {
|
|
|
|
len++;
|
|
|
|
}
|
2004-11-13 22:45:18 +08:00
|
|
|
|
2005-04-26 18:02:19 +08:00
|
|
|
res = ch_calloc( sizeof( char ), len + STRLENOF( "%1" ) + 1 );
|
2004-11-13 22:45:18 +08:00
|
|
|
if ( res == NULL ) {
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2005-10-09 03:39:56 +08:00
|
|
|
ptr = lutil_strcopy( res, ( p[ 0 ] == '\0' ? "%2" : "%1" ) );
|
|
|
|
if ( s[ 0 ] == '\0' ) {
|
|
|
|
ptr[ 0 ] = ',';
|
|
|
|
ptr++;
|
|
|
|
}
|
|
|
|
lutil_strcopy( ptr, p );
|
2004-11-13 22:45:18 +08:00
|
|
|
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
suffix_massage_config(
|
|
|
|
struct rewrite_info *info,
|
|
|
|
struct berval *pvnc,
|
|
|
|
struct berval *nvnc,
|
|
|
|
struct berval *prnc,
|
|
|
|
struct berval *nrnc
|
|
|
|
)
|
|
|
|
{
|
|
|
|
char *rargv[ 5 ];
|
|
|
|
int line = 0;
|
|
|
|
|
|
|
|
rargv[ 0 ] = "rewriteEngine";
|
|
|
|
rargv[ 1 ] = "on";
|
|
|
|
rargv[ 2 ] = NULL;
|
|
|
|
rewrite_parse( info, "<suffix massage>", ++line, 2, rargv );
|
|
|
|
|
|
|
|
rargv[ 0 ] = "rewriteContext";
|
|
|
|
rargv[ 1 ] = "default";
|
|
|
|
rargv[ 2 ] = NULL;
|
|
|
|
rewrite_parse( info, "<suffix massage>", ++line, 2, rargv );
|
|
|
|
|
|
|
|
rargv[ 0 ] = "rewriteRule";
|
|
|
|
rargv[ 1 ] = suffix_massage_regexize( pvnc->bv_val );
|
2005-10-09 03:39:56 +08:00
|
|
|
rargv[ 2 ] = suffix_massage_patternize( pvnc->bv_val, prnc->bv_val );
|
2004-11-13 22:45:18 +08:00
|
|
|
rargv[ 3 ] = ":";
|
|
|
|
rargv[ 4 ] = NULL;
|
|
|
|
rewrite_parse( info, "<suffix massage>", ++line, 4, rargv );
|
|
|
|
ch_free( rargv[ 1 ] );
|
|
|
|
ch_free( rargv[ 2 ] );
|
2005-10-09 03:39:56 +08:00
|
|
|
|
|
|
|
if ( BER_BVISEMPTY( pvnc ) ) {
|
|
|
|
rargv[ 0 ] = "rewriteRule";
|
|
|
|
rargv[ 1 ] = "^$";
|
|
|
|
rargv[ 2 ] = prnc->bv_val;
|
|
|
|
rargv[ 3 ] = ":";
|
|
|
|
rargv[ 4 ] = NULL;
|
|
|
|
rewrite_parse( info, "<suffix massage>", ++line, 4, rargv );
|
|
|
|
}
|
2004-11-13 22:45:18 +08:00
|
|
|
|
|
|
|
rargv[ 0 ] = "rewriteContext";
|
2004-12-31 01:45:07 +08:00
|
|
|
rargv[ 1 ] = "searchEntryDN";
|
2004-11-13 22:45:18 +08:00
|
|
|
rargv[ 2 ] = NULL;
|
|
|
|
rewrite_parse( info, "<suffix massage>", ++line, 2, rargv );
|
2004-12-31 01:45:07 +08:00
|
|
|
|
2004-11-13 22:45:18 +08:00
|
|
|
rargv[ 0 ] = "rewriteRule";
|
|
|
|
rargv[ 1 ] = suffix_massage_regexize( prnc->bv_val );
|
2005-10-09 03:39:56 +08:00
|
|
|
rargv[ 2 ] = suffix_massage_patternize( prnc->bv_val, pvnc->bv_val );
|
2004-11-13 22:45:18 +08:00
|
|
|
rargv[ 3 ] = ":";
|
|
|
|
rargv[ 4 ] = NULL;
|
|
|
|
rewrite_parse( info, "<suffix massage>", ++line, 4, rargv );
|
|
|
|
ch_free( rargv[ 1 ] );
|
|
|
|
ch_free( rargv[ 2 ] );
|
|
|
|
|
2005-10-09 03:39:56 +08:00
|
|
|
if ( BER_BVISEMPTY( prnc ) ) {
|
|
|
|
rargv[ 0 ] = "rewriteRule";
|
|
|
|
rargv[ 1 ] = "^$";
|
|
|
|
rargv[ 2 ] = pvnc->bv_val;
|
|
|
|
rargv[ 3 ] = ":";
|
|
|
|
rargv[ 4 ] = NULL;
|
|
|
|
rewrite_parse( info, "<suffix massage>", ++line, 4, rargv );
|
|
|
|
}
|
|
|
|
|
2004-12-31 01:45:07 +08:00
|
|
|
/* backward compatibility */
|
|
|
|
rargv[ 0 ] = "rewriteContext";
|
|
|
|
rargv[ 1 ] = "searchResult";
|
|
|
|
rargv[ 2 ] = "alias";
|
|
|
|
rargv[ 3 ] = "searchEntryDN";
|
|
|
|
rargv[ 4 ] = NULL;
|
|
|
|
rewrite_parse( info, "<suffix massage>", ++line, 4, rargv );
|
|
|
|
|
2004-11-13 22:45:18 +08:00
|
|
|
rargv[ 0 ] = "rewriteContext";
|
|
|
|
rargv[ 1 ] = "matchedDN";
|
|
|
|
rargv[ 2 ] = "alias";
|
2004-12-31 01:45:07 +08:00
|
|
|
rargv[ 3 ] = "searchEntryDN";
|
2004-11-13 22:45:18 +08:00
|
|
|
rargv[ 4 ] = NULL;
|
|
|
|
rewrite_parse( info, "<suffix massage>", ++line, 4, rargv );
|
|
|
|
|
|
|
|
rargv[ 0 ] = "rewriteContext";
|
|
|
|
rargv[ 1 ] = "searchAttrDN";
|
|
|
|
rargv[ 2 ] = "alias";
|
2004-12-31 01:45:07 +08:00
|
|
|
rargv[ 3 ] = "searchEntryDN";
|
2004-11-13 22:45:18 +08:00
|
|
|
rargv[ 4 ] = NULL;
|
|
|
|
rewrite_parse( info, "<suffix massage>", ++line, 4, rargv );
|
|
|
|
|
2004-12-31 01:45:07 +08:00
|
|
|
/* NOTE: this corresponds to #undef'ining RWM_REFERRAL_REWRITE;
|
|
|
|
* see servers/slapd/overlays/rwm.h for details */
|
|
|
|
rargv[ 0 ] = "rewriteContext";
|
|
|
|
rargv[ 1 ] = "referralAttrDN";
|
|
|
|
rargv[ 2 ] = NULL;
|
|
|
|
rewrite_parse( info, "<suffix massage>", ++line, 2, rargv );
|
|
|
|
|
|
|
|
rargv[ 0 ] = "rewriteContext";
|
|
|
|
rargv[ 1 ] = "referralDN";
|
|
|
|
rargv[ 2 ] = NULL;
|
|
|
|
rewrite_parse( info, "<suffix massage>", ++line, 2, rargv );
|
|
|
|
|
2004-11-13 22:45:18 +08:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
#endif /* ENABLE_REWRITE */
|
|
|
|
|