openldap/servers/slapd/repl.c

225 lines
4.6 KiB
C
Raw Normal View History

1998-08-09 08:43:13 +08:00
/* repl.c - log modifications for replication purposes */
/* $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>
#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
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 );
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
)
{
struct berval dn, *ndn = NULL;
int rc;
dn.bv_val = (char *) suffix;
dn.bv_len = strlen( dn.bv_val );
rc = dnNormalize( NULL, &dn, &ndn );
if( rc != LDAP_SUCCESS ) {
return 2;
}
if ( select_backend( ndn, 0, 0 ) != be ) {
ber_bvfree( ndn );
return 1;
2001-10-25 23:15:34 +08:00
}
ber_bvecadd( &be->be_replica[nr]->ri_nsuffix, ndn );
return 0;
2001-10-25 23:15:34 +08:00
}
1998-08-09 08:43:13 +08:00
void
replog(
Backend *be,
Operation *op,
2001-12-25 12:09:09 +08:00
struct berval *dn,
struct berval *ndn,
void *change
1998-08-09 08:43:13 +08:00
)
{
Modifications *ml;
1998-08-09 08:43:13 +08:00
Entry *e;
struct slap_replog_moddn *moddn;
char *tmp;
1998-08-09 08:43:13 +08:00
FILE *fp, *lfp;
int len, i;
/* undef NO_LOG_WHEN_NO_REPLICAS */
#ifdef NO_LOG_WHEN_NO_REPLICAS
int count = 0;
#endif
1998-08-09 08:43:13 +08:00
if ( be->be_replogfile == NULL && replogfile == NULL ) {
return;
}
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 ) {
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++ ) {
/* check if dn's suffix matches legal suffixes, if any */
if ( be->be_replica[i]->ri_nsuffix != NULL ) {
int j;
for ( j = 0; be->be_replica[i]->ri_nsuffix[j]; j++ ) {
2001-12-25 12:09:09 +08:00
if ( dnIsSuffix( ndn, be->be_replica[i]->ri_nsuffix[j] ) ) {
break;
}
}
if ( !be->be_replica[i]->ri_nsuffix[j] ) {
/* do not add "replica:" line */
continue;
}
}
fprintf( fp, "replica: %s\n", be->be_replica[i]->ri_host );
#ifdef NO_LOG_WHEN_NO_REPLICAS
++count;
#endif
1998-08-09 08:43:13 +08:00
}
#ifdef NO_LOG_WHEN_NO_REPLICAS
if ( count == 0 ) {
/* if no replicas matched, drop the log
* (should we log it anyway?) */
lock_fclose( fp, lfp );
ldap_pvt_thread_mutex_unlock( &replog_mutex );
return;
}
#endif
fprintf( fp, "time: %ld\n", (long) slap_get_time() );
2001-12-25 12:09:09 +08:00
fprintf( fp, "dn: %s\n", dn->bv_val );
1998-08-09 08:43:13 +08:00
switch ( op->o_tag ) {
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" );
ml = change;
for ( ; ml != NULL; ml = ml->sml_next ) {
char *type;
2002-01-02 19:00:36 +08:00
struct berval *bv;
type = ml->sml_desc->ad_cname.bv_val;
switch ( ml->sml_op ) {
1998-08-09 08:43:13 +08:00
case LDAP_MOD_ADD:
fprintf( fp, "add: %s\n", type );
1998-08-09 08:43:13 +08:00
break;
case LDAP_MOD_DELETE:
fprintf( fp, "delete: %s\n", type );
1998-08-09 08:43:13 +08:00
break;
case LDAP_MOD_REPLACE:
fprintf( fp, "replace: %s\n", type );
1998-08-09 08:43:13 +08:00
break;
}
2002-01-02 19:00:36 +08:00
for ( bv = ml->sml_bvalues; bv && bv->bv_val; bv++ )
2001-12-25 12:09:09 +08:00
{
1998-08-09 08:43:13 +08:00
char *buf, *bufp;
len = ml->sml_desc->ad_cname.bv_len;
1998-08-09 08:43:13 +08:00
len = LDIF_SIZE_NEEDED( len,
2002-01-02 19:00:36 +08:00
bv->bv_len ) + 1;
buf = (char *) ch_malloc( len );
1998-08-09 08:43:13 +08:00
bufp = buf;
2001-12-25 12:09:09 +08:00
ldif_sput( &bufp, LDIF_PUT_VALUE, type,
2002-01-02 19:00:36 +08:00
bv->bv_val, bv->bv_len );
1998-08-09 08:43:13 +08:00
*bufp = '\0';
fputs( buf, fp );
free( buf );
}
fprintf( fp, "-\n" );
}
break;
case LDAP_REQ_ADD:
e = change;
fprintf( fp, "changetype: add\n" );
ldap_pvt_thread_mutex_lock( &entry2str_mutex );
tmp = entry2str( e, &len );
1998-08-09 08:43:13 +08:00
while ( (tmp = strchr( tmp, '\n' )) != NULL ) {
tmp++;
if ( ! isspace( (unsigned char) *tmp ) )
1998-08-09 08:43:13 +08:00
break;
}
fprintf( fp, "%s", tmp );
ldap_pvt_thread_mutex_unlock( &entry2str_mutex );
1998-08-09 08:43:13 +08:00
break;
case LDAP_REQ_DELETE:
fprintf( fp, "changetype: delete\n" );
break;
case LDAP_REQ_MODRDN:
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 );
fprintf( fp, "deleteoldrdn: %d\n", moddn->deloldrdn ? 1 : 0 );
if( moddn->newsup != NULL ) {
fprintf( fp, "newsuperior: %s\n", moddn->newsup->bv_val );
}
1998-08-09 08:43:13 +08:00
}
fprintf( fp, "\n" );
lock_fclose( fp, lfp );
ldap_pvt_thread_mutex_unlock( &replog_mutex );
1998-08-09 08:43:13 +08:00
}