2003-12-06 17:53:41 +08:00
|
|
|
/* rwmconf.c - rewrite/map configuration file routines */
|
|
|
|
/* $OpenLDAP$ */
|
|
|
|
/* This work is part of OpenLDAP Software <http://www.openldap.org/>.
|
|
|
|
*
|
2010-04-14 06:17:29 +08:00
|
|
|
* Copyright 1999-2010 The OpenLDAP Foundation.
|
2003-12-09 01:41:40 +08:00
|
|
|
* Portions Copyright 1999-2003 Howard Chu.
|
|
|
|
* Portions Copyright 2000-2003 Pierangelo Masarati.
|
2003-12-06 17:53:41 +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>.
|
|
|
|
*/
|
|
|
|
/* ACKNOWLEDGEMENTS:
|
|
|
|
* This work was initially developed by the Howard Chu for inclusion
|
|
|
|
* in OpenLDAP Software and subsequently enhanced by Pierangelo
|
|
|
|
* Masarati.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "portable.h"
|
|
|
|
|
2003-12-10 07:50:10 +08:00
|
|
|
#ifdef SLAPD_OVER_RWM
|
|
|
|
|
2003-12-06 17:53:41 +08:00
|
|
|
#include <stdio.h>
|
|
|
|
|
|
|
|
#include <ac/string.h>
|
|
|
|
#include <ac/socket.h>
|
|
|
|
|
|
|
|
#include "slap.h"
|
|
|
|
#include "rwm.h"
|
|
|
|
#include "lutil.h"
|
|
|
|
|
|
|
|
int
|
|
|
|
rwm_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;
|
2007-01-04 05:35:18 +08:00
|
|
|
int rc = 0;
|
2003-12-06 17:53:41 +08:00
|
|
|
|
|
|
|
if ( argc < 3 || argc > 4 ) {
|
2010-06-02 08:18:32 +08:00
|
|
|
Debug( LDAP_DEBUG_ANY,
|
2003-12-06 17:53:41 +08:00
|
|
|
"%s: line %d: syntax is \"map {objectclass | attribute} [<local> | *] {<foreign> | *}\"\n",
|
2010-06-02 08:18:32 +08:00
|
|
|
fname, lineno, 0 );
|
2003-12-06 17:53:41 +08:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( strcasecmp( argv[1], "objectclass" ) == 0 ) {
|
|
|
|
map = oc_map;
|
|
|
|
is_oc = 1;
|
|
|
|
|
|
|
|
} else if ( strcasecmp( argv[1], "attribute" ) == 0 ) {
|
|
|
|
map = at_map;
|
|
|
|
|
|
|
|
} else {
|
2010-06-02 08:18:32 +08:00
|
|
|
Debug( LDAP_DEBUG_ANY, "%s: line %d: syntax is "
|
2003-12-06 17:53:41 +08:00
|
|
|
"\"map {objectclass | attribute} [<local> | *] "
|
|
|
|
"{<foreign> | *}\"\n",
|
2010-06-02 08:18:32 +08:00
|
|
|
fname, lineno, 0 );
|
2003-12-06 17:53:41 +08:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2008-08-09 18:49:20 +08:00
|
|
|
if ( !is_oc && map->map == NULL ) {
|
|
|
|
/* only init if required */
|
|
|
|
if ( rwm_map_init( map, &mapping ) != LDAP_SUCCESS ) {
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2003-12-06 17:53:41 +08:00
|
|
|
if ( strcmp( argv[2], "*" ) == 0 ) {
|
|
|
|
if ( argc < 4 || strcmp( argv[3], "*" ) == 0 ) {
|
|
|
|
map->drop_missing = ( argc < 4 );
|
2007-01-04 05:35:18 +08:00
|
|
|
goto success_return;
|
2003-12-06 17:53:41 +08:00
|
|
|
}
|
|
|
|
src = dst = argv[3];
|
|
|
|
|
|
|
|
} else if ( argc < 4 ) {
|
|
|
|
src = "";
|
|
|
|
dst = argv[2];
|
|
|
|
|
|
|
|
} else {
|
|
|
|
src = argv[2];
|
|
|
|
dst = ( strcmp( argv[3], "*" ) == 0 ? src : argv[3] );
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( ( map == at_map )
|
|
|
|
&& ( strcasecmp( src, "objectclass" ) == 0
|
|
|
|
|| strcasecmp( dst, "objectclass" ) == 0 ) )
|
|
|
|
{
|
2010-06-02 08:18:32 +08:00
|
|
|
Debug( LDAP_DEBUG_ANY,
|
2003-12-06 17:53:41 +08:00
|
|
|
"%s: line %d: objectclass attribute cannot be mapped\n",
|
2010-06-02 08:18:32 +08:00
|
|
|
fname, lineno, 0 );
|
2004-03-09 15:06:20 +08:00
|
|
|
return 1;
|
2003-12-06 17:53:41 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
mapping = (struct ldapmapping *)ch_calloc( 2,
|
|
|
|
sizeof(struct ldapmapping) );
|
|
|
|
if ( mapping == NULL ) {
|
2010-06-02 08:18:32 +08:00
|
|
|
Debug( LDAP_DEBUG_ANY,
|
2003-12-06 17:53:41 +08:00
|
|
|
"%s: line %d: out of memory\n",
|
2010-06-02 08:18:32 +08:00
|
|
|
fname, lineno, 0 );
|
2003-12-06 17:53:41 +08:00
|
|
|
return 1;
|
|
|
|
}
|
2004-03-09 15:06:20 +08:00
|
|
|
ber_str2bv( src, 0, 1, &mapping[0].m_src );
|
|
|
|
ber_str2bv( dst, 0, 1, &mapping[0].m_dst );
|
|
|
|
mapping[1].m_src = mapping[0].m_dst;
|
|
|
|
mapping[1].m_dst = mapping[0].m_src;
|
|
|
|
|
|
|
|
mapping[0].m_flags = RWMMAP_F_NONE;
|
|
|
|
mapping[1].m_flags = RWMMAP_F_NONE;
|
2003-12-06 17:53:41 +08:00
|
|
|
|
|
|
|
/*
|
|
|
|
* schema check
|
|
|
|
*/
|
|
|
|
if ( is_oc ) {
|
|
|
|
if ( src[0] != '\0' ) {
|
2004-03-09 15:06:20 +08:00
|
|
|
mapping[0].m_src_oc = oc_bvfind( &mapping[0].m_src );
|
|
|
|
if ( mapping[0].m_src_oc == NULL ) {
|
2010-06-02 08:18:32 +08:00
|
|
|
Debug( LDAP_DEBUG_ANY,
|
2003-12-06 17:53:41 +08:00
|
|
|
"%s: line %d: warning, source objectClass '%s' "
|
|
|
|
"should be defined in schema\n",
|
|
|
|
fname, lineno, src );
|
|
|
|
|
|
|
|
/*
|
|
|
|
* FIXME: this should become an err
|
|
|
|
*/
|
2004-03-09 15:06:20 +08:00
|
|
|
mapping[0].m_src_oc = ch_malloc( sizeof( ObjectClass ) );
|
|
|
|
memset( mapping[0].m_src_oc, 0, sizeof( ObjectClass ) );
|
|
|
|
mapping[0].m_src_oc->soc_cname = mapping[0].m_src;
|
|
|
|
mapping[0].m_flags |= RWMMAP_F_FREE_SRC;
|
2003-12-06 17:53:41 +08:00
|
|
|
}
|
2004-03-09 15:06:20 +08:00
|
|
|
mapping[1].m_dst_oc = mapping[0].m_src_oc;
|
2003-12-06 17:53:41 +08:00
|
|
|
}
|
|
|
|
|
2004-03-09 15:06:20 +08:00
|
|
|
mapping[0].m_dst_oc = oc_bvfind( &mapping[0].m_dst );
|
|
|
|
if ( mapping[0].m_dst_oc == NULL ) {
|
2010-06-02 08:18:32 +08:00
|
|
|
Debug( LDAP_DEBUG_ANY,
|
2003-12-06 17:53:41 +08:00
|
|
|
"%s: line %d: warning, destination objectClass '%s' "
|
|
|
|
"is not defined in schema\n",
|
|
|
|
fname, lineno, dst );
|
2004-03-09 15:06:20 +08:00
|
|
|
|
2004-12-02 05:47:13 +08:00
|
|
|
mapping[0].m_dst_oc = oc_bvfind_undef( &mapping[0].m_dst );
|
|
|
|
if ( mapping[0].m_dst_oc == NULL ) {
|
2010-06-02 08:18:32 +08:00
|
|
|
Debug( LDAP_DEBUG_ANY, "%s: line %d: unable to mimic destination objectClass '%s'\n",
|
2004-12-02 05:47:13 +08:00
|
|
|
fname, lineno, dst );
|
2005-11-03 21:34:43 +08:00
|
|
|
goto error_return;
|
2004-12-02 05:47:13 +08:00
|
|
|
}
|
2003-12-06 17:53:41 +08:00
|
|
|
}
|
2004-03-09 15:06:20 +08:00
|
|
|
mapping[1].m_src_oc = mapping[0].m_dst_oc;
|
|
|
|
|
|
|
|
mapping[0].m_flags |= RWMMAP_F_IS_OC;
|
|
|
|
mapping[1].m_flags |= RWMMAP_F_IS_OC;
|
|
|
|
|
2003-12-06 17:53:41 +08:00
|
|
|
} else {
|
|
|
|
int rc;
|
|
|
|
const char *text = NULL;
|
|
|
|
|
|
|
|
if ( src[0] != '\0' ) {
|
2004-03-09 15:06:20 +08:00
|
|
|
rc = slap_bv2ad( &mapping[0].m_src,
|
|
|
|
&mapping[0].m_src_ad, &text );
|
2003-12-06 17:53:41 +08:00
|
|
|
if ( rc != LDAP_SUCCESS ) {
|
2010-06-02 08:18:32 +08:00
|
|
|
Debug( LDAP_DEBUG_ANY,
|
2003-12-06 17:53:41 +08:00
|
|
|
"%s: line %d: warning, source attributeType '%s' "
|
|
|
|
"should be defined in schema\n",
|
|
|
|
fname, lineno, src );
|
|
|
|
|
|
|
|
/*
|
2005-08-26 05:14:26 +08:00
|
|
|
* we create a fake "proxied" ad
|
2004-03-09 15:06:20 +08:00
|
|
|
* and add it here.
|
2003-12-06 17:53:41 +08:00
|
|
|
*/
|
|
|
|
|
2004-07-12 06:57:51 +08:00
|
|
|
rc = slap_bv2undef_ad( &mapping[0].m_src,
|
2005-08-26 05:14:26 +08:00
|
|
|
&mapping[0].m_src_ad, &text,
|
|
|
|
SLAP_AD_PROXIED );
|
2004-07-12 06:57:51 +08:00
|
|
|
if ( rc != LDAP_SUCCESS ) {
|
2010-06-02 08:18:32 +08:00
|
|
|
char prefix[1024];
|
|
|
|
snprintf( prefix, sizeof(prefix),
|
|
|
|
"%s: line %d: source attributeType '%s': %d",
|
|
|
|
fname, lineno, src, rc );
|
|
|
|
Debug( LDAP_DEBUG_ANY, "%s (%s)\n",
|
|
|
|
prefix, text ? text : "null", 0 );
|
2005-11-03 21:34:43 +08:00
|
|
|
goto error_return;
|
2004-07-12 06:57:51 +08:00
|
|
|
}
|
|
|
|
|
2004-03-09 15:06:20 +08:00
|
|
|
}
|
|
|
|
mapping[1].m_dst_ad = mapping[0].m_src_ad;
|
2003-12-06 17:53:41 +08:00
|
|
|
}
|
|
|
|
|
2004-03-09 15:06:20 +08:00
|
|
|
rc = slap_bv2ad( &mapping[0].m_dst, &mapping[0].m_dst_ad, &text );
|
2003-12-06 17:53:41 +08:00
|
|
|
if ( rc != LDAP_SUCCESS ) {
|
2010-06-02 08:18:32 +08:00
|
|
|
Debug( LDAP_DEBUG_ANY,
|
2003-12-06 17:53:41 +08:00
|
|
|
"%s: line %d: warning, destination attributeType '%s' "
|
|
|
|
"is not defined in schema\n",
|
|
|
|
fname, lineno, dst );
|
2004-03-09 15:06:20 +08:00
|
|
|
|
2004-07-12 06:57:51 +08:00
|
|
|
rc = slap_bv2undef_ad( &mapping[0].m_dst,
|
2005-08-26 05:14:26 +08:00
|
|
|
&mapping[0].m_dst_ad, &text,
|
|
|
|
SLAP_AD_PROXIED );
|
2004-07-12 06:57:51 +08:00
|
|
|
if ( rc != LDAP_SUCCESS ) {
|
2010-06-02 08:18:32 +08:00
|
|
|
char prefix[1024];
|
|
|
|
snprintf( prefix, sizeof(prefix),
|
|
|
|
"%s: line %d: destination attributeType '%s': %d",
|
|
|
|
fname, lineno, dst, rc );
|
|
|
|
Debug( LDAP_DEBUG_ANY, "%s (%s)\n",
|
|
|
|
prefix, text ? text : "null", 0 );
|
2005-11-03 21:34:43 +08:00
|
|
|
goto error_return;
|
2004-07-12 06:57:51 +08:00
|
|
|
}
|
2003-12-06 17:53:41 +08:00
|
|
|
}
|
2004-03-09 15:06:20 +08:00
|
|
|
mapping[1].m_src_ad = mapping[0].m_dst_ad;
|
2003-12-06 17:53:41 +08:00
|
|
|
}
|
|
|
|
|
2004-07-12 06:57:51 +08:00
|
|
|
if ( ( src[0] != '\0' && avl_find( map->map, (caddr_t)mapping, rwm_mapping_cmp ) != NULL)
|
2003-12-14 19:13:25 +08:00
|
|
|
|| avl_find( map->remap, (caddr_t)&mapping[1], rwm_mapping_cmp ) != NULL)
|
2003-12-06 17:53:41 +08:00
|
|
|
{
|
2010-06-02 08:18:32 +08:00
|
|
|
Debug( LDAP_DEBUG_ANY,
|
2006-01-24 12:40:01 +08:00
|
|
|
"%s: line %d: duplicate mapping found.\n",
|
2010-06-02 08:18:32 +08:00
|
|
|
fname, lineno, 0 );
|
2003-12-06 17:53:41 +08:00
|
|
|
/* FIXME: free stuff */
|
|
|
|
goto error_return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( src[0] != '\0' ) {
|
2004-03-09 15:06:20 +08:00
|
|
|
avl_insert( &map->map, (caddr_t)&mapping[0],
|
2003-12-14 19:13:25 +08:00
|
|
|
rwm_mapping_cmp, rwm_mapping_dup );
|
2003-12-06 17:53:41 +08:00
|
|
|
}
|
|
|
|
avl_insert( &map->remap, (caddr_t)&mapping[1],
|
2003-12-14 19:13:25 +08:00
|
|
|
rwm_mapping_cmp, rwm_mapping_dup );
|
2003-12-06 17:53:41 +08:00
|
|
|
|
2007-01-04 05:35:18 +08:00
|
|
|
success_return:;
|
|
|
|
return rc;
|
2003-12-06 17:53:41 +08:00
|
|
|
|
|
|
|
error_return:;
|
|
|
|
if ( mapping ) {
|
2004-03-10 04:21:10 +08:00
|
|
|
rwm_mapping_free( mapping );
|
2003-12-06 17:53:41 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
static char *
|
2003-12-10 08:15:02 +08:00
|
|
|
rwm_suffix_massage_regexize( const char *s )
|
2003-12-06 17:53:41 +08:00
|
|
|
{
|
|
|
|
char *res, *ptr;
|
|
|
|
const char *p, *r;
|
|
|
|
int i;
|
|
|
|
|
2005-10-08 18:56:10 +08:00
|
|
|
if ( s[0] == '\0' ) {
|
2005-10-09 02:54:03 +08:00
|
|
|
return ch_strdup( "^(.+)$" );
|
2005-10-08 18:56:10 +08:00
|
|
|
}
|
|
|
|
|
2003-12-06 17:53:41 +08:00
|
|
|
for ( i = 0, p = s;
|
|
|
|
( r = strchr( p, ',' ) ) != NULL;
|
|
|
|
p = r + 1, i++ )
|
|
|
|
;
|
|
|
|
|
2004-07-26 07:16:40 +08:00
|
|
|
res = ch_calloc( sizeof( char ), strlen( s )
|
|
|
|
+ STRLENOF( "((.+),)?" )
|
|
|
|
+ STRLENOF( "[ ]?" ) * i
|
|
|
|
+ STRLENOF( "$" ) + 1 );
|
2003-12-06 17:53:41 +08:00
|
|
|
|
2004-07-26 07:16:40 +08:00
|
|
|
ptr = lutil_strcopy( res, "((.+),)?" );
|
2003-12-06 17:53:41 +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++;
|
|
|
|
}
|
|
|
|
}
|
2004-07-26 07:16:40 +08:00
|
|
|
ptr = lutil_strcopy( ptr, p );
|
|
|
|
ptr[0] = '$';
|
|
|
|
ptr[1] = '\0';
|
2003-12-06 17:53:41 +08:00
|
|
|
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
|
|
|
static char *
|
2005-10-08 18:56:10 +08:00
|
|
|
rwm_suffix_massage_patternize( const char *s, const char *p )
|
2003-12-06 17:53:41 +08:00
|
|
|
{
|
|
|
|
ber_len_t len;
|
2005-10-08 18:56:10 +08:00
|
|
|
char *res, *ptr;
|
2003-12-06 17:53:41 +08:00
|
|
|
|
2005-10-08 18:56:10 +08:00
|
|
|
len = strlen( p );
|
|
|
|
|
|
|
|
if ( s[ 0 ] == '\0' ) {
|
|
|
|
len++;
|
|
|
|
}
|
2003-12-06 17:53:41 +08:00
|
|
|
|
2004-07-13 06:33:44 +08:00
|
|
|
res = ch_calloc( sizeof( char ), len + STRLENOF( "%1" ) + 1 );
|
2003-12-06 17:53:41 +08:00
|
|
|
if ( res == NULL ) {
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2005-10-08 18:56:10 +08:00
|
|
|
ptr = lutil_strcopy( res, ( p[0] == '\0' ? "%2" : "%1" ) );
|
|
|
|
if ( s[ 0 ] == '\0' ) {
|
|
|
|
ptr[ 0 ] = ',';
|
|
|
|
ptr++;
|
|
|
|
}
|
|
|
|
lutil_strcopy( ptr, p );
|
2003-12-06 17:53:41 +08:00
|
|
|
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
2003-12-10 08:15:02 +08:00
|
|
|
rwm_suffix_massage_config(
|
2003-12-06 17:53:41 +08:00
|
|
|
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";
|
2003-12-10 08:15:02 +08:00
|
|
|
rargv[ 1 ] = rwm_suffix_massage_regexize( pvnc->bv_val );
|
2005-10-08 18:56:10 +08:00
|
|
|
rargv[ 2 ] = rwm_suffix_massage_patternize( pvnc->bv_val, prnc->bv_val );
|
2003-12-06 17:53:41 +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-08 18:56:10 +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 );
|
|
|
|
}
|
|
|
|
|
2003-12-06 17:53:41 +08:00
|
|
|
rargv[ 0 ] = "rewriteContext";
|
2004-07-20 08:46:20 +08:00
|
|
|
rargv[ 1 ] = "searchEntryDN";
|
2003-12-06 17:53:41 +08:00
|
|
|
rargv[ 2 ] = NULL;
|
|
|
|
rewrite_parse( info, "<suffix massage>", ++line, 2, rargv );
|
|
|
|
|
|
|
|
rargv[ 0 ] = "rewriteRule";
|
2003-12-10 08:15:02 +08:00
|
|
|
rargv[ 1 ] = rwm_suffix_massage_regexize( prnc->bv_val );
|
2005-10-08 18:56:10 +08:00
|
|
|
rargv[ 2 ] = rwm_suffix_massage_patternize( prnc->bv_val, pvnc->bv_val );
|
2003-12-06 17:53:41 +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-08 18:56:10 +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 );
|
|
|
|
}
|
|
|
|
|
2003-12-06 17:53:41 +08:00
|
|
|
rargv[ 0 ] = "rewriteContext";
|
|
|
|
rargv[ 1 ] = "matchedDN";
|
|
|
|
rargv[ 2 ] = "alias";
|
2004-07-20 08:46:20 +08:00
|
|
|
rargv[ 3 ] = "searchEntryDN";
|
2003-12-06 17:53:41 +08:00
|
|
|
rargv[ 4 ] = NULL;
|
|
|
|
rewrite_parse( info, "<suffix massage>", ++line, 4, rargv );
|
|
|
|
|
2004-11-13 20:15:40 +08:00
|
|
|
#ifdef RWM_REFERRAL_REWRITE
|
|
|
|
/* FIXME: we don't want this on by default, do we? */
|
2004-07-26 07:16:40 +08:00
|
|
|
rargv[ 0 ] = "rewriteContext";
|
|
|
|
rargv[ 1 ] = "referralDN";
|
|
|
|
rargv[ 2 ] = "alias";
|
|
|
|
rargv[ 3 ] = "searchEntryDN";
|
|
|
|
rargv[ 4 ] = NULL;
|
|
|
|
rewrite_parse( info, "<suffix massage>", ++line, 4, rargv );
|
2004-11-13 20:15:40 +08:00
|
|
|
#else /* ! RWM_REFERRAL_REWRITE */
|
|
|
|
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 );
|
|
|
|
#endif /* ! RWM_REFERRAL_REWRITE */
|
2004-07-26 07:16:40 +08:00
|
|
|
|
2003-12-06 17:53:41 +08:00
|
|
|
rargv[ 0 ] = "rewriteContext";
|
|
|
|
rargv[ 1 ] = "searchAttrDN";
|
|
|
|
rargv[ 2 ] = "alias";
|
2004-07-20 08:46:20 +08:00
|
|
|
rargv[ 3 ] = "searchEntryDN";
|
2003-12-06 17:53:41 +08:00
|
|
|
rargv[ 4 ] = NULL;
|
|
|
|
rewrite_parse( info, "<suffix massage>", ++line, 4, rargv );
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
2003-12-10 07:50:10 +08:00
|
|
|
|
|
|
|
#endif /* SLAPD_OVER_RWM */
|