X-Git-Url: https://git.sur5r.net/?a=blobdiff_plain;f=servers%2Fslapd%2Foverlays%2Faccesslog.c;h=6b9c729c5ed363167d8bed3dab0cc1a6e58fdcfc;hb=0c1ebd178cafd8add90e6561ff798a2df4e6db67;hp=e708794047a16926ab09703dd36a095b6380e969;hpb=83734af7cb3d6293fe6d8303a0bf4d484fe7b41e;p=openldap diff --git a/servers/slapd/overlays/accesslog.c b/servers/slapd/overlays/accesslog.c index e708794047..6b9c729c5e 100644 --- a/servers/slapd/overlays/accesslog.c +++ b/servers/slapd/overlays/accesslog.c @@ -2,7 +2,7 @@ /* $OpenLDAP$ */ /* This work is part of OpenLDAP Software . * - * Copyright 2005-2015 The OpenLDAP Foundation. + * Copyright 2005-2017 The OpenLDAP Foundation. * Portions copyright 2004-2005 Symas Corporation. * All rights reserved. * @@ -578,7 +578,7 @@ log_age_unparse( int age, struct berval *agebv, size_t size ) agebv->bv_len = ptr - agebv->bv_val; } -static slap_callback nullsc = { NULL, NULL, NULL, NULL }; +static slap_callback nullsc; #define PURGE_INCREMENT 100 @@ -637,7 +637,7 @@ accesslog_purge( void *ctx, void *arg ) OperationBuffer opbuf; Operation *op; SlapReply rs = {REP_RESULT}; - slap_callback cb = { NULL, log_old_lookup, NULL, NULL }; + slap_callback cb = { NULL, log_old_lookup, NULL, NULL, NULL }; Filter f; AttributeAssertion ava = ATTRIBUTEASSERTION_INIT; purge_data pd = {0}; @@ -701,6 +701,7 @@ accesslog_purge( void *ctx, void *arg ) } ch_free( pd.ndn[i].bv_val ); ch_free( pd.dn[i].bv_val ); + ldap_pvt_thread_pool_pausecheck( &connection_pool ); } ch_free( pd.ndn ); ch_free( pd.dn ); @@ -1457,7 +1458,7 @@ static int accesslog_response(Operation *op, SlapReply *rs) { Modifications *m; struct berval *b, uuid = BER_BVNULL; int i; - int logop, do_graduate = 0; + int logop; slap_verbmasks *lo; Entry *e = NULL, *old = NULL, *e_uuid = NULL; char timebuf[LDAP_LUTIL_GENTIME_BUFSIZE+8]; @@ -1514,6 +1515,11 @@ static int accesslog_response(Operation *op, SlapReply *rs) { break; } } +#ifdef RMUTEX_DEBUG + Debug( LDAP_DEBUG_SYNC, + "accesslog_response: unlocking rmutex for tid %x\n", + op->o_tid, 0, 0 ); +#endif ldap_pvt_thread_rmutex_unlock( &li->li_op_rmutex, op->o_tid ); } @@ -1585,7 +1591,7 @@ static int accesslog_response(Operation *op, SlapReply *rs) { case LOG_EN_MODRDN: case LOG_EN_MODIFY: - /* count all the mods */ + /* count all the mods + attributes (ITS#6545) */ i = 0; for ( m = op->orm_modlist; m; m = m->sml_next ) { if ( m->sml_values ) { @@ -1595,6 +1601,9 @@ static int accesslog_response(Operation *op, SlapReply *rs) { { i++; } + if ( m->sml_next && m->sml_desc == m->sml_next->sml_desc ) { + i++; + } } vals = ch_malloc( (i+1) * sizeof( struct berval )); i = 0; @@ -1665,6 +1674,12 @@ static int accesslog_response(Operation *op, SlapReply *rs) { *ptr = '\0'; i++; } + /* ITS#6545: when the same attribute is edited multiple times, + * record the transition */ + if ( m->sml_next && m->sml_desc == m->sml_next->sml_desc ) { + ber_str2bv( ":", STRLENOF(":"), 1, &vals[i] ); + i++; + } } if ( i > 0 ) { @@ -1857,7 +1872,6 @@ static int accesslog_response(Operation *op, SlapReply *rs) { slap_get_commit_csn( op, &maxcsn, &foundit ); if ( !BER_BVISEMPTY( &maxcsn ) ) { slap_queue_csn( &op2, &op->o_csn ); - do_graduate = 1; } else { attr_merge_normalize_one( e, slap_schema.si_ad_entryCSN, &op->o_csn, op->o_tmpmemctx ); @@ -1867,9 +1881,6 @@ static int accesslog_response(Operation *op, SlapReply *rs) { op2.o_bd->be_add( &op2, &rs2 ); if ( e == op2.ora_e ) entry_free( e ); e = NULL; - if ( do_graduate ) { - slap_graduate_commit_csn( &op2 ); - } done: if ( lo->mask & LOG_OP_WRITES ) @@ -1928,7 +1939,7 @@ accesslog_mod_cleanup( Operation *op, SlapReply *rs ) op->o_tmpfree( sc, op->o_tmpmemctx ); - if ( on ) { + if ( on && rs->sr_err != LDAP_SUCCESS ) { BackendInfo *bi = op->o_bd->bd_info; op->o_bd->bd_info = (BackendInfo *)on; accesslog_response( op, rs ); @@ -1958,6 +1969,10 @@ accesslog_op_mod( Operation *op, SlapReply *rs ) return SLAP_CB_CONTINUE; /* give this a unique timestamp */ op->o_tincr++; + if ( op->o_tincr >= 1000000 ) { + op->o_tincr -= 1000000; + op->o_time++; + } } logop = accesslog_op2logop( op ); @@ -1975,15 +1990,23 @@ accesslog_op_mod( Operation *op, SlapReply *rs ) } if ( doit ) { - slap_callback *cb = op->o_tmpalloc( sizeof( slap_callback ), op->o_tmpmemctx ), *cb2; + slap_callback *cb = op->o_tmpcalloc( 1, sizeof( slap_callback ), op->o_tmpmemctx ); cb->sc_cleanup = accesslog_mod_cleanup; - cb->sc_response = NULL; cb->sc_private = on; - cb->sc_next = NULL; - for ( cb2 = op->o_callback; cb2->sc_next; cb2 = cb2->sc_next ); - cb2->sc_next = cb; + cb->sc_next = op->o_callback; + op->o_callback = cb; +#ifdef RMUTEX_DEBUG + Debug( LDAP_DEBUG_SYNC, + "accesslog_op_mod: locking rmutex for tid %x\n", + op->o_tid, 0, 0 ); +#endif ldap_pvt_thread_rmutex_lock( &li->li_op_rmutex, op->o_tid ); +#ifdef RMUTEX_DEBUG + Debug( LDAP_DEBUG_STATS, + "accesslog_op_mod: locked rmutex for tid %x\n", + op->o_tid, 0, 0 ); +#endif if ( li->li_oldf && ( op->o_tag == LDAP_REQ_DELETE || op->o_tag == LDAP_REQ_MODIFY || ( op->o_tag == LDAP_REQ_MODRDN && li->li_oldattrs ))) @@ -2271,6 +2294,7 @@ accesslog_db_root( db = *li->li_db; op->o_bd = &db; + op->o_tag = LDAP_REQ_ADD; op->ora_e = e; op->o_req_dn = e->e_name; op->o_req_ndn = e->e_nname;