Skip to content
Snippets Groups Projects
repl.c 11 KiB
Newer Older
  • Learn to ignore specific revisions
  • Kurt Zeilenga's avatar
    Kurt Zeilenga committed
    /* repl.c - log modifications for replication purposes */
    
    Kurt Zeilenga's avatar
    Kurt Zeilenga committed
    /* This work is part of OpenLDAP Software <http://www.openldap.org/>.
     *
    
    Kurt Zeilenga's avatar
    Kurt Zeilenga committed
     * Copyright 1998-2005 The OpenLDAP Foundation.
    
    Kurt Zeilenga's avatar
    Kurt Zeilenga committed
     * 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>.
     */
    /* Portions Copyright (c) 1995 Regents of the University of Michigan.
     * All rights reserved.
     *
     * Redistribution and use in source and binary forms are permitted
     * provided that this notice is preserved and that due credit is given
     * to the University of Michigan at Ann Arbor. The name of the University
     * may not be used to endorse or promote products derived from this
     * software without specific prior written permission. This software
     * is provided ``as is'' without express or implied warranty.
    
    Kurt Zeilenga's avatar
    Kurt Zeilenga committed
     */
    
    Kurt Zeilenga's avatar
    Kurt Zeilenga committed
    
    
    #include "portable.h"
    
    
    Kurt Zeilenga's avatar
    Kurt Zeilenga committed
    #include <stdio.h>
    
    
    #include <ac/string.h>
    
    #include <ac/socket.h>
    
    
    Ben Collins's avatar
    Ben Collins committed
    #ifdef HAVE_SYS_FILE_H
    
    Kurt Zeilenga's avatar
    Kurt Zeilenga committed
    #include <sys/file.h>
    
    Ben Collins's avatar
    Ben Collins committed
    #endif
    
    
    #include "slap.h"
    
    Kurt Zeilenga's avatar
    Kurt Zeilenga committed
    #include "ldif.h"
    
    Kurt Zeilenga's avatar
    Kurt Zeilenga committed
    
    
    Pierangelo Masarati's avatar
     
    Pierangelo Masarati committed
    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 ]->ri_nsuffix = NULL;
    	be->be_replica[ i ]->ri_attrs = NULL;
    
    Pierangelo Masarati's avatar
     
    Pierangelo Masarati committed
    	be->be_replica[ i + 1 ] = NULL;
    
    	return( i );
    }
    
    Kurt Zeilenga's avatar
    Kurt Zeilenga committed
    
    
    Pierangelo Masarati's avatar
    Pierangelo Masarati committed
    int
    add_replica_suffix(
        Backend     *be,
        int		nr,
        const char  *suffix
    )
    {
    
    	int rc;
    
    	dn.bv_val = (char *) suffix;
    	dn.bv_len = strlen( dn.bv_val );
    
    
    Kurt Zeilenga's avatar
    Kurt Zeilenga committed
    	rc = dnNormalize( 0, NULL, NULL, &dn, &ndn, NULL );
    
    	if( rc != LDAP_SUCCESS ) {
    		return 2;
    	}
    
    
    	if ( select_backend( &ndn, 0, 0 ) != be ) {
    		free( ndn.bv_val );
    
    	ber_bvarray_add( &be->be_replica[nr]->ri_nsuffix, &ndn );
    
    int
    add_replica_attrs(
    	Backend	*be,
    	int	nr,
    
    	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;
    
    	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, FILE *fp, long now);
    
    Kurt Zeilenga's avatar
    Kurt Zeilenga committed
    void
    
    Kurt Zeilenga's avatar
    Kurt Zeilenga committed
    {
    
    	Modifications	*ml = NULL;
    	Attribute	*a = NULL;
    
    Kurt Zeilenga's avatar
    Kurt Zeilenga committed
    	FILE	*fp, *lfp;
    
    /* undef NO_LOG_WHEN_NO_REPLICAS */
    #ifdef NO_LOG_WHEN_NO_REPLICAS
    	int     count = 0;
    #endif
    
    	long now = slap_get_time();
    
    	char	*replogfile;
    
    Kurt Zeilenga's avatar
    Kurt Zeilenga committed
    
    
    	replogfile = op->o_bd->be_replogfile ? op->o_bd->be_replogfile :
    		frontendDB->be_replogfile;
    	if ( !replogfile ) {
    
    Kurt Zeilenga's avatar
    Kurt Zeilenga committed
    		return;
    	}
    
    
    	ldap_pvt_thread_mutex_lock( &replog_mutex );
    
    	if ( (fp = lock_fopen( replogfile, "a", &lfp )) == NULL ) {
    
    		ldap_pvt_thread_mutex_unlock( &replog_mutex );
    
    Kurt Zeilenga's avatar
    Kurt Zeilenga committed
    		return;
    	}
    
    
    	for ( i = 0; op->o_bd->be_replica != NULL && op->o_bd->be_replica[i] != NULL; i++ ) {
    
    Pierangelo Masarati's avatar
     
    Pierangelo Masarati committed
    		/* check if dn's suffix matches legal suffixes, if any */
    
    		if ( op->o_bd->be_replica[i]->ri_nsuffix != NULL ) {
    
    Pierangelo Masarati's avatar
     
    Pierangelo Masarati committed
    			int j;
    
    
    			for ( j = 0; op->o_bd->be_replica[i]->ri_nsuffix[j].bv_val; j++ ) {
    				if ( dnIsSuffix( &op->o_req_ndn, &op->o_bd->be_replica[i]->ri_nsuffix[j] ) ) {
    
    Pierangelo Masarati's avatar
     
    Pierangelo Masarati committed
    					break;
    				}
    			}
    
    
    			if ( !op->o_bd->be_replica[i]->ri_nsuffix[j].bv_val ) {
    
    Pierangelo Masarati's avatar
     
    Pierangelo Masarati committed
    				/* do not add "replica:" line */
    				continue;
    			}
    		}
    
    		/* See if we only want a subset of attributes */
    
    		if ( op->o_bd->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;
    		}
    
    Pierangelo Masarati's avatar
     
    Pierangelo Masarati committed
    
    
    		fprintf( fp, "replica: %s\n", op->o_bd->be_replica[i]->ri_host );
    
    Pierangelo Masarati's avatar
     
    Pierangelo Masarati committed
    		++count;
    
    Kurt Zeilenga's avatar
    Kurt Zeilenga committed
    	}
    
    Pierangelo Masarati's avatar
     
    Pierangelo Masarati committed
    
    
    	if ( count == 0 && subsets == 0 ) {
    
    Pierangelo Masarati's avatar
     
    Pierangelo Masarati committed
    		/* if no replicas matched, drop the log 
    		 * (should we log it anyway?) */
    		lock_fclose( fp, lfp );
    
    		ldap_pvt_thread_mutex_unlock( &replog_mutex );
    
    Pierangelo Masarati's avatar
     
    Pierangelo Masarati committed
    
    		return;
    	}
    
    Pierangelo Masarati's avatar
     
    Pierangelo Masarati committed
    
    
    	replog1( NULL, op, fp, now );
    
    Howard Chu's avatar
    Howard Chu committed
    		for ( i = subsets - 1; op->o_bd->be_replica[i] != NULL; i++ ) {
    
    
    			/* If no attrs, we already did this above */
    
    			if ( op->o_bd->be_replica[i]->ri_attrs == NULL ) {
    
    				continue;
    			}
    
    			/* check if dn's suffix matches legal suffixes, if any */
    
    			if ( op->o_bd->be_replica[i]->ri_nsuffix != NULL ) {
    
    				for ( j = 0; op->o_bd->be_replica[i]->ri_nsuffix[j].bv_val; j++ ) {
    					if ( dnIsSuffix( &op->o_req_ndn, &op->o_bd->be_replica[i]->ri_nsuffix[j] ) ) {
    
    				if ( !op->o_bd->be_replica[i]->ri_nsuffix[j].bv_val ) {
    
    Howard Chu's avatar
    Howard Chu committed
    					/* no matching suffix found, skip it */
    
    					continue;
    				}
    			}
    			switch( op->o_tag ) {
    			case LDAP_REQ_EXTENDED:
    				/* quick hack for extended operations */
    
    Howard Chu's avatar
    Howard Chu committed
    				/* assume change parameter is a Modifications* */
    
    				/* fall thru */
    			case LDAP_REQ_MODIFY:
    			case LDAP_REQ_ADD:
    				break;
    			default:
    				/* Other operations were logged in the first pass */
    				continue;
    			}
    
    			replog1( op->o_bd->be_replica[i], op, fp, now );
    
    	ldap_pvt_thread_mutex_unlock( &replog_mutex );
    
    Howard Chu's avatar
    Howard Chu committed
    static void
    rephdr(
    	struct slap_replica_info *ri,
    	Operation *op,
    
    	FILE *fp,
    	long now
    
    Howard Chu's avatar
    Howard Chu committed
    )
    {
    	if ( ri ) {
    		fprintf( fp, "replica: %s\n", ri->ri_host );
    	}
    
    	fprintf( fp, "time: %ld\n", now );
    
    Howard Chu's avatar
    Howard Chu committed
    	fprintf( fp, "dn: %s\n", op->o_req_dn.bv_val );
    }
    
    Howard Chu's avatar
    Howard Chu committed
    	struct slap_replica_info *ri,
    	Operation *op,
    
    	FILE	*fp,
    	long	now
    
    Howard Chu's avatar
    Howard Chu committed
    	int		dohdr = 1, ocs = -1;
    
    Howard Chu's avatar
    Howard Chu committed
    	struct berval vals[2];
    
    Howard Chu's avatar
    Howard Chu committed
    
    
    Howard Chu's avatar
    Howard Chu committed
    	vals[1].bv_val = NULL;
    	vals[1].bv_len = 0;
    
    Kurt Zeilenga's avatar
    Kurt Zeilenga committed
    	switch ( op->o_tag ) {
    
    	case LDAP_REQ_EXTENDED:
    		/* quick hack for extended operations */
    
    Howard Chu's avatar
    Howard Chu committed
    		/* assume change parameter is a Modifications* */
    
    Kurt Zeilenga's avatar
    Kurt Zeilenga committed
    	case LDAP_REQ_MODIFY:
    
    Howard Chu's avatar
    Howard Chu committed
    		for ( ml = op->orm_modlist; ml != NULL; ml = ml->sml_next ) {
    			char *did, *type = ml->sml_desc->ad_cname.bv_val;
    			switch ( ml->sml_op ) {
    			case LDAP_MOD_ADD:
    				did = "add"; break;
    
    			case LDAP_MOD_DELETE:
    				did = "delete"; break;
    
    			case LDAP_MOD_REPLACE:
    				did = "replace"; break;
    
    			case LDAP_MOD_INCREMENT:
    				did = "increment"; break;
    			}
    
    			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 ) )
    				{
    
    				/* If this is objectClass, see if the value is included
    				 * in any subset, otherwise drop it.
    				 */
    
    Howard Chu's avatar
    Howard Chu committed
    				if ( ocs && ml->sml_desc == slap_schema.si_ad_objectClass
    
    Kurt Zeilenga's avatar
    Kurt Zeilenga committed
    					&& ml->sml_values )
    				{
    
    Howard Chu's avatar
    Howard Chu committed
    					int i, first = 1;
    
    					if ( ocs == -1 ) ocs = 0;
    
    
    Kurt Zeilenga's avatar
    Kurt Zeilenga committed
    					for ( i=0; ml->sml_values[i].bv_val; i++ ) {
    
    Howard Chu's avatar
    Howard Chu committed
    						int match = 0;
    						for ( an = ri->ri_attrs; an->an_name.bv_val; an++ ) {
    							if ( an->an_oc ) {
    								ocs = 1;
    
    								match |= an->an_oc_exclude;
    
    Kurt Zeilenga's avatar
    Kurt Zeilenga committed
    								if ( ml->sml_values[i].bv_len == an->an_name.bv_len
    									&& !strcasecmp(ml->sml_values[i].bv_val,
    
    										an->an_name.bv_val ) ) {
    
    									match = !an->an_oc_exclude;
    
    Howard Chu's avatar
    Howard Chu committed
    						}
    
    Howard Chu's avatar
    Howard Chu committed
    						/* Objectclasses need no special treatment, drop into
    						 * regular processing
    						 */
    						if ( !ocs ) break;
    
    						match ^= ri->ri_exclude;
    						/* Found a match, log it */
    						if ( match ) {
    							if ( dohdr ) {
    
    								rephdr( ri, op, fp, now );
    
    Howard Chu's avatar
    Howard Chu committed
    								fprintf( fp, "changetype: modify\n" );
    								dohdr = 0;
    
    Howard Chu's avatar
    Howard Chu committed
    							if ( first ) {
    								fprintf( fp, "%s: %s\n", did, type );
    								first = 0;
    							}
    							vals[0] = an->an_name;
    							print_vals( fp, &ml->sml_desc->ad_cname, vals );
    							ocs = 2;
    
    Howard Chu's avatar
    Howard Chu committed
    
    
    Howard Chu's avatar
    Howard Chu committed
    					/* Explicit objectclasses have been handled already */
    					if ( ocs ) {
    						if ( ocs == 2 ) {
    							fprintf( fp, "-\n" );
    						}
    						continue;
    					}
    
    Howard Chu's avatar
    Howard Chu committed
    			if ( dohdr ) {
    
    				rephdr( ri, op, fp, now );
    
    				fprintf( fp, "changetype: modify\n" );
    
    Howard Chu's avatar
    Howard Chu committed
    				dohdr = 0;
    
    Kurt Zeilenga's avatar
    Kurt Zeilenga committed
    			}
    
    Howard Chu's avatar
    Howard Chu committed
    			fprintf( fp, "%s: %s\n", did, type );
    
    Kurt Zeilenga's avatar
    Kurt Zeilenga committed
    			if ( ml->sml_values ) {
    				print_vals( fp, &ml->sml_desc->ad_cname, ml->sml_values );
    
    Kurt Zeilenga's avatar
    Kurt Zeilenga committed
    			fprintf( fp, "-\n" );
    		}
    		break;
    
    	case LDAP_REQ_ADD:
    
    Howard Chu's avatar
    Howard Chu committed
    		for ( a = op->ora_e->e_attrs ; a != NULL; a=a->a_next ) {
    
    			if ( ri && ri->ri_attrs ) {
    
    				int is_in = ad_inlist( a->a_desc, ri->ri_attrs );
    				if ( ( !is_in && !ri->ri_exclude ) || ( is_in && ri->ri_exclude ) ) {
    
    				/* If the list includes objectClass names,
    				 * only include those classes in the
    				 * objectClass attribute
    				 */
    
    Howard Chu's avatar
    Howard Chu committed
    				if ( ocs && a->a_desc == slap_schema.si_ad_objectClass ) {
    					int i;
    
    					if ( ocs == -1 ) ocs = 0;
    
    
    					for ( i=0; a->a_vals[i].bv_val; i++ ) {
    						int match = 0;
    						for ( an = ri->ri_attrs; an->an_name.bv_val; an++ ) {
    							if ( an->an_oc ) {
    								ocs = 1;
    
    								match |= an->an_oc_exclude;
    
    								if ( a->a_vals[i].bv_len == an->an_name.bv_len
    									&& !strcasecmp(a->a_vals[i].bv_val,
    										an->an_name.bv_val ) ) {
    
    									match = !an->an_oc_exclude;
    
    Howard Chu's avatar
    Howard Chu committed
    						if ( !ocs ) break;
    
    
    						match ^= ri->ri_exclude;
    
    Howard Chu's avatar
    Howard Chu committed
    						if ( match ) {
    
    Howard Chu's avatar
    Howard Chu committed
    							if ( dohdr ) {
    
    								rephdr( ri, op, fp, now );
    
    Howard Chu's avatar
    Howard Chu committed
    								fprintf( fp, "changetype: add\n" );
    								dohdr = 0;
    							}
    
    							vals[0] = an->an_name;
    							print_vals( fp, &a->a_desc->ad_cname, vals );
    						}
    
    Howard Chu's avatar
    Howard Chu committed
    			if ( dohdr ) {
    
    				rephdr( ri, op, fp, now );
    
    Howard Chu's avatar
    Howard Chu committed
    				fprintf( fp, "changetype: add\n" );
    				dohdr = 0;
    			}
    
    			print_vals( fp, &a->a_desc->ad_cname, a->a_vals );
    
    Kurt Zeilenga's avatar
    Kurt Zeilenga committed
    		}
    		break;
    
    	case LDAP_REQ_DELETE:
    
    		rephdr( ri, op, fp, now );
    
    Kurt Zeilenga's avatar
    Kurt Zeilenga committed
    		fprintf( fp, "changetype: delete\n" );
    		break;
    
    	case LDAP_REQ_MODRDN:
    
    		rephdr( ri, op, fp, now );
    
    Kurt Zeilenga's avatar
    Kurt Zeilenga committed
    		fprintf( fp, "changetype: modrdn\n" );
    
    Howard Chu's avatar
    Howard Chu committed
    		fprintf( fp, "newrdn: %s\n", op->orr_newrdn.bv_val );
    		fprintf( fp, "deleteoldrdn: %d\n", op->orr_deleteoldrdn ? 1 : 0 );
    		if( op->orr_newSup != NULL ) {
    			fprintf( fp, "newsuperior: %s\n", op->orr_newSup->bv_val );
    
    Kurt Zeilenga's avatar
    Kurt Zeilenga committed
    	}
    	fprintf( fp, "\n" );
    
    Kurt Zeilenga's avatar
    Kurt Zeilenga committed
    
    
    static void
    print_vals(
    	FILE *fp,
    	struct berval *type,
    	struct berval *bv )
    {
    
    Kurt Zeilenga's avatar
    Kurt Zeilenga committed
    	ber_len_t i, len;
    
    	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 );
    
    	for ( ; bv && bv->bv_val; bv++ ) {
    
    		bufp = buf;
    		ldif_sput( &bufp, LDIF_PUT_VALUE, type->bv_val,
    				    bv->bv_val, bv->bv_len );
    		*bufp = '\0';
    
    		fputs( buf, fp );
    
    	}
    
    	free( buf );
    
    Kurt Zeilenga's avatar
    Kurt Zeilenga committed
    }