1998-08-09 08:43:13 +08:00
|
|
|
/* repl.c - log modifications for replication purposes */
|
1999-09-09 03:06:24 +08:00
|
|
|
/* $OpenLDAP$ */
|
1999-08-07 07:07:46 +08:00
|
|
|
/*
|
2002-01-05 05:17:25 +08:00
|
|
|
* Copyright 1998-2002 The OpenLDAP Foundation, All Rights Reserved.
|
1999-08-07 07:07:46 +08:00
|
|
|
* COPYING RESTRICTIONS APPLY, see COPYRIGHT file
|
|
|
|
*/
|
1998-08-09 08:43:13 +08:00
|
|
|
|
1998-10-25 09:41:42 +08:00
|
|
|
#include "portable.h"
|
|
|
|
|
1998-08-09 08:43:13 +08:00
|
|
|
#include <stdio.h>
|
1998-10-25 09:41:42 +08:00
|
|
|
|
|
|
|
#include <ac/string.h>
|
Protoized, moved extern definitions to .h files, fixed related bugs.
Most function and variable definitions are now preceded by its extern
definition, for error checking. Retyped a number of functions, usually
to return void. Fixed a number of printf format errors.
API changes (in ldap/include):
Added avl_dup_ok, avl_prefixapply, removed ber_fatten (probably typo
for ber_flatten), retyped ldap_sort_strcasecmp, grew lutil.h.
A number of `extern' declarations are left (some added by protoize), to
be cleaned away later. Mostly strdup(), strcasecmp(), mktemp(), optind,
optarg, errno.
1998-11-16 06:40:11 +08:00
|
|
|
#include <ac/ctype.h>
|
1998-10-25 09:41:42 +08:00
|
|
|
#include <ac/socket.h>
|
|
|
|
|
1999-03-13 09:07:15 +08:00
|
|
|
#ifdef HAVE_SYS_FILE_H
|
1998-08-09 08:43:13 +08:00
|
|
|
#include <sys/file.h>
|
1999-03-13 09:07:15 +08:00
|
|
|
#endif
|
1998-10-25 09:41:42 +08:00
|
|
|
|
|
|
|
#include "slap.h"
|
2001-09-25 08:03:24 +08:00
|
|
|
#include "ldif.h"
|
1998-08-09 08:43:13 +08:00
|
|
|
|
2001-07-21 22:15:23 +08:00
|
|
|
int
|
|
|
|
add_replica_info(
|
|
|
|
Backend *be,
|
|
|
|
const char *host
|
|
|
|
)
|
|
|
|
{
|
|
|
|
int i = 0;
|
|
|
|
|
|
|
|
assert( be );
|
|
|
|
assert( host );
|
|
|
|
|
|
|
|
if ( be->be_replica != NULL ) {
|
|
|
|
for ( ; be->be_replica[ i ] != NULL; i++ );
|
|
|
|
}
|
|
|
|
|
|
|
|
be->be_replica = ch_realloc( be->be_replica,
|
|
|
|
sizeof( struct slap_replica_info * )*( i + 2 ) );
|
|
|
|
|
|
|
|
be->be_replica[ i ]
|
|
|
|
= ch_calloc( sizeof( struct slap_replica_info ), 1 );
|
|
|
|
be->be_replica[ i ]->ri_host = ch_strdup( host );
|
2002-03-30 16:52:20 +08:00
|
|
|
be->be_replica[ i ]->ri_nsuffix = NULL;
|
|
|
|
be->be_replica[ i ]->ri_attrs = NULL;
|
2001-07-21 22:15:23 +08:00
|
|
|
be->be_replica[ i + 1 ] = NULL;
|
|
|
|
|
|
|
|
return( i );
|
|
|
|
}
|
1998-08-09 08:43:13 +08:00
|
|
|
|
2001-10-25 23:15:34 +08:00
|
|
|
int
|
|
|
|
add_replica_suffix(
|
|
|
|
Backend *be,
|
|
|
|
int nr,
|
|
|
|
const char *suffix
|
|
|
|
)
|
|
|
|
{
|
2002-05-02 02:50:14 +08:00
|
|
|
struct berval dn, ndn;
|
2001-12-25 10:30:01 +08:00
|
|
|
int rc;
|
|
|
|
|
|
|
|
dn.bv_val = (char *) suffix;
|
|
|
|
dn.bv_len = strlen( dn.bv_val );
|
|
|
|
|
2002-05-02 02:50:14 +08:00
|
|
|
rc = dnNormalize2( NULL, &dn, &ndn );
|
2001-12-25 10:30:01 +08:00
|
|
|
if( rc != LDAP_SUCCESS ) {
|
|
|
|
return 2;
|
|
|
|
}
|
|
|
|
|
2002-05-02 02:50:14 +08:00
|
|
|
if ( select_backend( &ndn, 0, 0 ) != be ) {
|
|
|
|
free( ndn.bv_val );
|
2001-12-25 10:30:01 +08:00
|
|
|
return 1;
|
2001-10-25 23:15:34 +08:00
|
|
|
}
|
|
|
|
|
2002-05-02 02:50:14 +08:00
|
|
|
ber_bvarray_add( &be->be_replica[nr]->ri_nsuffix, &ndn );
|
2001-12-25 10:30:01 +08:00
|
|
|
return 0;
|
2001-10-25 23:15:34 +08:00
|
|
|
}
|
|
|
|
|
2002-02-08 14:44:33 +08:00
|
|
|
int
|
|
|
|
add_replica_attrs(
|
|
|
|
Backend *be,
|
|
|
|
int nr,
|
2002-03-30 16:52:20 +08:00
|
|
|
char *attrs,
|
|
|
|
int exclude
|
2002-02-08 14:44:33 +08:00
|
|
|
)
|
|
|
|
{
|
2002-03-30 16:52:20 +08:00
|
|
|
if ( be->be_replica[nr]->ri_attrs != NULL ) {
|
|
|
|
if ( be->be_replica[nr]->ri_exclude != exclude ) {
|
|
|
|
fprintf( stderr, "attr selective replication directive '%s' conflicts with previous one (discarded)\n", attrs );
|
|
|
|
ch_free( be->be_replica[nr]->ri_attrs );
|
|
|
|
be->be_replica[nr]->ri_attrs = NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
be->be_replica[nr]->ri_exclude = exclude;
|
2002-02-08 14:44:33 +08:00
|
|
|
be->be_replica[nr]->ri_attrs = str2anlist( be->be_replica[nr]->ri_attrs,
|
|
|
|
attrs, "," );
|
|
|
|
return ( be->be_replica[nr]->ri_attrs == NULL );
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
print_vals( FILE *fp, struct berval *type, struct berval *bv );
|
|
|
|
static void
|
|
|
|
replog1( struct slap_replica_info *ri, Operation *op, void *change, FILE *fp, void *first);
|
|
|
|
|
1998-08-09 08:43:13 +08:00
|
|
|
void
|
|
|
|
replog(
|
|
|
|
Backend *be,
|
1999-07-30 05:25:39 +08:00
|
|
|
Operation *op,
|
2001-12-25 12:09:09 +08:00
|
|
|
struct berval *dn,
|
|
|
|
struct berval *ndn,
|
1999-07-30 05:25:39 +08:00
|
|
|
void *change
|
1998-08-09 08:43:13 +08:00
|
|
|
)
|
|
|
|
{
|
2002-02-08 14:44:33 +08:00
|
|
|
Modifications *ml = NULL;
|
|
|
|
Attribute *a = NULL;
|
1998-08-09 08:43:13 +08:00
|
|
|
Entry *e;
|
|
|
|
FILE *fp, *lfp;
|
2002-02-08 14:44:33 +08:00
|
|
|
int i;
|
2001-09-19 17:09:51 +08:00
|
|
|
/* undef NO_LOG_WHEN_NO_REPLICAS */
|
|
|
|
#ifdef NO_LOG_WHEN_NO_REPLICAS
|
|
|
|
int count = 0;
|
|
|
|
#endif
|
2002-02-08 14:44:33 +08:00
|
|
|
int subsets = 0;
|
|
|
|
long now = slap_get_time();
|
1998-08-09 08:43:13 +08:00
|
|
|
|
|
|
|
if ( be->be_replogfile == NULL && replogfile == NULL ) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
1999-01-28 12:34:55 +08:00
|
|
|
ldap_pvt_thread_mutex_lock( &replog_mutex );
|
1998-08-09 08:43:13 +08:00
|
|
|
if ( (fp = lock_fopen( be->be_replogfile ? be->be_replogfile :
|
|
|
|
replogfile, "a", &lfp )) == NULL ) {
|
1999-01-28 12:34:55 +08:00
|
|
|
ldap_pvt_thread_mutex_unlock( &replog_mutex );
|
1998-08-09 08:43:13 +08:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2001-12-25 12:09:09 +08:00
|
|
|
for ( i = 0; be->be_replica != NULL && be->be_replica[i] != NULL; i++ ) {
|
2001-07-21 22:15:23 +08:00
|
|
|
/* check if dn's suffix matches legal suffixes, if any */
|
|
|
|
if ( be->be_replica[i]->ri_nsuffix != NULL ) {
|
|
|
|
int j;
|
|
|
|
|
2002-05-02 02:50:14 +08:00
|
|
|
for ( j = 0; be->be_replica[i]->ri_nsuffix[j].bv_val; j++ ) {
|
|
|
|
if ( dnIsSuffix( ndn, &be->be_replica[i]->ri_nsuffix[j] ) ) {
|
2001-07-21 22:15:23 +08:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2002-05-02 02:50:14 +08:00
|
|
|
if ( !be->be_replica[i]->ri_nsuffix[j].bv_val ) {
|
2001-07-21 22:15:23 +08:00
|
|
|
/* do not add "replica:" line */
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
}
|
2002-02-08 14:44:33 +08:00
|
|
|
/* See if we only want a subset of attributes */
|
|
|
|
if ( be->be_replica[i]->ri_attrs != NULL &&
|
|
|
|
( op->o_tag == LDAP_REQ_MODIFY || op->o_tag == LDAP_REQ_ADD || op->o_tag == LDAP_REQ_EXTENDED ) ) {
|
|
|
|
if ( !subsets ) {
|
|
|
|
subsets = i + 1;
|
|
|
|
}
|
|
|
|
/* Do attribute subsets by themselves in a second pass */
|
|
|
|
continue;
|
|
|
|
}
|
2001-07-21 22:15:23 +08:00
|
|
|
|
|
|
|
fprintf( fp, "replica: %s\n", be->be_replica[i]->ri_host );
|
2001-09-19 17:09:51 +08:00
|
|
|
#ifdef NO_LOG_WHEN_NO_REPLICAS
|
2001-07-21 22:15:23 +08:00
|
|
|
++count;
|
2001-09-19 17:09:51 +08:00
|
|
|
#endif
|
1998-08-09 08:43:13 +08:00
|
|
|
}
|
2001-07-21 22:15:23 +08:00
|
|
|
|
2001-09-19 17:09:51 +08:00
|
|
|
#ifdef NO_LOG_WHEN_NO_REPLICAS
|
2002-02-08 14:44:33 +08:00
|
|
|
if ( count == 0 && subsets == 0 ) {
|
2001-07-21 22:15:23 +08:00
|
|
|
/* if no replicas matched, drop the log
|
|
|
|
* (should we log it anyway?) */
|
|
|
|
lock_fclose( fp, lfp );
|
|
|
|
ldap_pvt_thread_mutex_unlock( &replog_mutex );
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
2001-09-19 17:09:51 +08:00
|
|
|
#endif
|
2001-07-21 22:15:23 +08:00
|
|
|
|
2002-02-08 14:44:33 +08:00
|
|
|
fprintf( fp, "time: %ld\n", now );
|
2001-12-25 12:09:09 +08:00
|
|
|
fprintf( fp, "dn: %s\n", dn->bv_val );
|
1998-08-09 08:43:13 +08:00
|
|
|
|
2002-02-08 14:44:33 +08:00
|
|
|
replog1( NULL, op, change, fp, NULL );
|
|
|
|
|
|
|
|
if ( subsets > 0 ) {
|
|
|
|
void *first;
|
|
|
|
for ( i = subsets - 1; be->be_replica != NULL && be->be_replica[i] != NULL; i++ ) {
|
|
|
|
|
|
|
|
/* If no attrs, we already did this above */
|
|
|
|
if ( be->be_replica[i]->ri_attrs == NULL ) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* check if dn's suffix matches legal suffixes, if any */
|
|
|
|
if ( be->be_replica[i]->ri_nsuffix != NULL ) {
|
|
|
|
int j;
|
|
|
|
|
2002-05-02 02:50:14 +08:00
|
|
|
for ( j = 0; be->be_replica[i]->ri_nsuffix[j].bv_val; j++ ) {
|
|
|
|
if ( dnIsSuffix( ndn, &be->be_replica[i]->ri_nsuffix[j] ) ) {
|
2002-02-08 14:44:33 +08:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2002-05-02 02:50:14 +08:00
|
|
|
if ( !be->be_replica[i]->ri_nsuffix[j].bv_val ) {
|
2002-02-08 14:44:33 +08:00
|
|
|
/* do not add "replica:" line */
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
subsets = 0;
|
|
|
|
first = NULL;
|
|
|
|
switch( op->o_tag ) {
|
|
|
|
case LDAP_REQ_EXTENDED:
|
|
|
|
/* quick hack for extended operations */
|
|
|
|
/* assume change parameter is a Modfications* */
|
|
|
|
/* fall thru */
|
|
|
|
case LDAP_REQ_MODIFY:
|
|
|
|
for ( ml = change; ml != NULL; ml = ml->sml_next ) {
|
2002-03-30 16:52:20 +08:00
|
|
|
int is_in, exclude;
|
|
|
|
|
|
|
|
is_in = ad_inlist( ml->sml_desc, be->be_replica[i]->ri_attrs );
|
|
|
|
exclude = be->be_replica[i]->ri_exclude;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* there might be a more clever way to do this test,
|
|
|
|
* but this way, at least, is comprehensible :)
|
|
|
|
*/
|
|
|
|
if ( ( is_in && !exclude ) || ( !is_in && exclude ) ) {
|
2002-02-08 14:44:33 +08:00
|
|
|
subsets = 1;
|
|
|
|
first = ml;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if ( !subsets ) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case LDAP_REQ_ADD:
|
|
|
|
e = change;
|
|
|
|
for ( a = e->e_attrs; a != NULL; a = a->a_next ) {
|
2002-03-30 16:52:20 +08:00
|
|
|
int is_in, exclude;
|
|
|
|
|
|
|
|
is_in = ad_inlist( a->a_desc, be->be_replica[i]->ri_attrs );
|
|
|
|
exclude = be->be_replica[i]->ri_exclude;
|
|
|
|
|
|
|
|
if ( ( is_in && !exclude ) || ( !is_in && exclude ) ) {
|
2002-02-08 14:44:33 +08:00
|
|
|
subsets = 1;
|
|
|
|
first = a;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if ( !subsets ) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
/* Other operations were logged in the first pass */
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
fprintf( fp, "replica: %s\n", be->be_replica[i]->ri_host );
|
|
|
|
fprintf( fp, "time: %ld\n", now );
|
|
|
|
fprintf( fp, "dn: %s\n", dn->bv_val );
|
|
|
|
replog1( be->be_replica[i], op, change, fp, first );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
lock_fclose( fp, lfp );
|
|
|
|
ldap_pvt_thread_mutex_unlock( &replog_mutex );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
replog1(
|
|
|
|
struct slap_replica_info *ri,
|
|
|
|
Operation *op,
|
|
|
|
void *change,
|
|
|
|
FILE *fp,
|
|
|
|
void *first
|
|
|
|
)
|
|
|
|
{
|
|
|
|
Modifications *ml;
|
|
|
|
Attribute *a;
|
|
|
|
Entry *e;
|
|
|
|
struct slap_replog_moddn *moddn;
|
|
|
|
|
1999-07-30 05:25:39 +08:00
|
|
|
switch ( op->o_tag ) {
|
2001-07-14 09:26:02 +08:00
|
|
|
case LDAP_REQ_EXTENDED:
|
|
|
|
/* quick hack for extended operations */
|
|
|
|
/* assume change parameter is a Modfications* */
|
|
|
|
/* fall thru */
|
|
|
|
|
1998-08-09 08:43:13 +08:00
|
|
|
case LDAP_REQ_MODIFY:
|
|
|
|
fprintf( fp, "changetype: modify\n" );
|
2002-02-08 14:44:33 +08:00
|
|
|
ml = first ? first : change;
|
2000-02-16 02:57:07 +08:00
|
|
|
for ( ; ml != NULL; ml = ml->sml_next ) {
|
2000-05-22 06:46:51 +08:00
|
|
|
char *type;
|
2002-03-30 16:52:20 +08:00
|
|
|
if ( ri && ri->ri_attrs ) {
|
|
|
|
int is_in = ad_inlist( ml->sml_desc, ri->ri_attrs );
|
|
|
|
|
|
|
|
if ( ( !is_in && !ri->ri_exclude ) || ( is_in && ri->ri_exclude ) ) {
|
|
|
|
continue;
|
|
|
|
}
|
2002-02-08 14:44:33 +08:00
|
|
|
}
|
2001-10-22 21:23:05 +08:00
|
|
|
type = ml->sml_desc->ad_cname.bv_val;
|
2000-02-16 02:57:07 +08:00
|
|
|
switch ( ml->sml_op ) {
|
1998-08-09 08:43:13 +08:00
|
|
|
case LDAP_MOD_ADD:
|
2000-05-22 06:46:51 +08:00
|
|
|
fprintf( fp, "add: %s\n", type );
|
1998-08-09 08:43:13 +08:00
|
|
|
break;
|
|
|
|
|
|
|
|
case LDAP_MOD_DELETE:
|
2000-05-22 06:46:51 +08:00
|
|
|
fprintf( fp, "delete: %s\n", type );
|
1998-08-09 08:43:13 +08:00
|
|
|
break;
|
|
|
|
|
|
|
|
case LDAP_MOD_REPLACE:
|
2000-05-22 06:46:51 +08:00
|
|
|
fprintf( fp, "replace: %s\n", type );
|
1998-08-09 08:43:13 +08:00
|
|
|
break;
|
|
|
|
}
|
2002-02-08 14:54:04 +08:00
|
|
|
if ( ml->sml_bvalues )
|
|
|
|
print_vals( fp, &ml->sml_desc->ad_cname, ml->sml_bvalues );
|
1998-08-09 08:43:13 +08:00
|
|
|
fprintf( fp, "-\n" );
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LDAP_REQ_ADD:
|
|
|
|
e = change;
|
|
|
|
fprintf( fp, "changetype: add\n" );
|
2002-02-08 14:44:33 +08:00
|
|
|
a = first ? first : e->e_attrs;
|
|
|
|
for ( ; a != NULL; a=a->a_next ) {
|
2002-02-15 23:21:13 +08:00
|
|
|
if ( ri && ri->ri_attrs ) {
|
2002-03-30 16:52:20 +08:00
|
|
|
int is_in = ad_inlist( a->a_desc, ri->ri_attrs );
|
|
|
|
if ( ( !is_in && !ri->ri_exclude ) || ( is_in && ri->ri_exclude ) ) {
|
2002-02-15 23:21:13 +08:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
/* If the list includes objectClass names,
|
|
|
|
* only include those classes in the
|
|
|
|
* objectClass attribute
|
|
|
|
*/
|
|
|
|
if ( a->a_desc == slap_schema.si_ad_objectClass ) {
|
|
|
|
int ocs = 0;
|
|
|
|
AttributeName *an;
|
|
|
|
struct berval vals[2];
|
|
|
|
vals[1].bv_val = NULL;
|
|
|
|
vals[1].bv_len = 0;
|
|
|
|
for ( an = ri->ri_attrs; an->an_name.bv_val; an++ ) {
|
|
|
|
if ( an->an_oc ) {
|
|
|
|
int i;
|
|
|
|
for ( i=0; a->a_vals[i].bv_val; i++ ) {
|
|
|
|
if ( a->a_vals[i].bv_len == an->an_name.bv_len
|
|
|
|
&& !strcasecmp(a->a_vals[i].bv_val,
|
|
|
|
an->an_name.bv_val ) ) {
|
|
|
|
ocs = 1;
|
|
|
|
vals[0] = an->an_name;
|
|
|
|
print_vals( fp, &a->a_desc->ad_cname, vals );
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if ( ocs ) continue;
|
|
|
|
}
|
2002-02-08 14:44:33 +08:00
|
|
|
}
|
|
|
|
print_vals( fp, &a->a_desc->ad_cname, a->a_vals );
|
1998-08-09 08:43:13 +08:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LDAP_REQ_DELETE:
|
|
|
|
fprintf( fp, "changetype: delete\n" );
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LDAP_REQ_MODRDN:
|
1999-07-30 05:25:39 +08:00
|
|
|
moddn = change;
|
1998-08-09 08:43:13 +08:00
|
|
|
fprintf( fp, "changetype: modrdn\n" );
|
2001-12-25 11:47:35 +08:00
|
|
|
fprintf( fp, "newrdn: %s\n", moddn->newrdn->bv_val );
|
1999-07-30 05:25:39 +08:00
|
|
|
fprintf( fp, "deleteoldrdn: %d\n", moddn->deloldrdn ? 1 : 0 );
|
|
|
|
if( moddn->newsup != NULL ) {
|
2001-12-25 08:05:26 +08:00
|
|
|
fprintf( fp, "newsuperior: %s\n", moddn->newsup->bv_val );
|
1999-07-30 05:25:39 +08:00
|
|
|
}
|
1998-08-09 08:43:13 +08:00
|
|
|
}
|
|
|
|
fprintf( fp, "\n" );
|
2002-02-08 14:44:33 +08:00
|
|
|
}
|
1998-08-09 08:43:13 +08:00
|
|
|
|
2002-02-08 14:44:33 +08:00
|
|
|
static void
|
|
|
|
print_vals(
|
|
|
|
FILE *fp,
|
|
|
|
struct berval *type,
|
|
|
|
struct berval *bv )
|
|
|
|
{
|
2002-03-24 10:17:21 +08:00
|
|
|
ber_len_t i, len;
|
2002-02-08 14:44:33 +08:00
|
|
|
char *buf, *bufp;
|
|
|
|
|
2002-02-08 14:54:04 +08:00
|
|
|
for ( i = 0, len = 0; bv && bv[i].bv_val; i++ ) {
|
|
|
|
if ( bv[i].bv_len > len )
|
|
|
|
len = bv[i].bv_len;
|
|
|
|
}
|
|
|
|
|
|
|
|
len = LDIF_SIZE_NEEDED( type->bv_len, len ) + 1;
|
|
|
|
buf = (char *) ch_malloc( len );
|
2002-02-08 14:44:33 +08:00
|
|
|
|
2002-02-08 14:54:04 +08:00
|
|
|
for ( ; bv && bv->bv_val; bv++ ) {
|
2002-02-08 14:44:33 +08:00
|
|
|
bufp = buf;
|
|
|
|
ldif_sput( &bufp, LDIF_PUT_VALUE, type->bv_val,
|
|
|
|
bv->bv_val, bv->bv_len );
|
|
|
|
*bufp = '\0';
|
|
|
|
|
|
|
|
fputs( buf, fp );
|
|
|
|
|
|
|
|
}
|
2002-02-08 14:54:04 +08:00
|
|
|
free( buf );
|
1998-08-09 08:43:13 +08:00
|
|
|
}
|