retrocl_po.c 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652
  1. /** BEGIN COPYRIGHT BLOCK
  2. * This Program is free software; you can redistribute it and/or modify it under
  3. * the terms of the GNU General Public License as published by the Free Software
  4. * Foundation; version 2 of the License.
  5. *
  6. * This Program is distributed in the hope that it will be useful, but WITHOUT
  7. * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
  8. * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
  9. *
  10. * You should have received a copy of the GNU General Public License along with
  11. * this Program; if not, write to the Free Software Foundation, Inc., 59 Temple
  12. * Place, Suite 330, Boston, MA 02111-1307 USA.
  13. *
  14. * In addition, as a special exception, Red Hat, Inc. gives You the additional
  15. * right to link the code of this Program with code not covered under the GNU
  16. * General Public License ("Non-GPL Code") and to distribute linked combinations
  17. * including the two, subject to the limitations in this paragraph. Non-GPL Code
  18. * permitted under this exception must only link to the code of this Program
  19. * through those well defined interfaces identified in the file named EXCEPTION
  20. * found in the source code files (the "Approved Interfaces"). The files of
  21. * Non-GPL Code may instantiate templates or use macros or inline functions from
  22. * the Approved Interfaces without causing the resulting work to be covered by
  23. * the GNU General Public License. Only Red Hat, Inc. may make changes or
  24. * additions to the list of Approved Interfaces. You must obey the GNU General
  25. * Public License in all respects for all of the Program code and other code used
  26. * in conjunction with the Program except the Non-GPL Code covered by this
  27. * exception. If you modify this file, you may extend this exception to your
  28. * version of the file, but you are not obligated to do so. If you do not wish to
  29. * provide this exception without modification, you must delete this exception
  30. * statement from your version and license this file solely under the GPL without
  31. * exception.
  32. *
  33. *
  34. * Copyright (C) 2001 Sun Microsystems, Inc. Used by permission.
  35. * Copyright (C) 2005 Red Hat, Inc.
  36. * All rights reserved.
  37. * END COPYRIGHT BLOCK **/
  38. #ifdef HAVE_CONFIG_H
  39. # include <config.h>
  40. #endif
  41. #include "retrocl.h"
  42. static int
  43. entry2reple( Slapi_Entry *e, Slapi_Entry *oe );
  44. static int
  45. mods2reple( Slapi_Entry *e, LDAPMod **ldm );
  46. static int
  47. modrdn2reple( Slapi_Entry *e, const char *newrdn, int deloldrdn,
  48. LDAPMod **ldm, const char *newsup );
  49. /******************************/
  50. const char *attr_changenumber = "changenumber";
  51. const char *attr_targetdn = "targetdn";
  52. const char *attr_changetype = "changetype";
  53. const char *attr_newrdn = "newrdn";
  54. const char *attr_deleteoldrdn = "deleteoldrdn";
  55. const char *attr_changes = "changes";
  56. const char *attr_newsuperior = "newsuperior";
  57. const char *attr_changetime = "changetime";
  58. const char *attr_objectclass = "objectclass";
  59. const char *attr_nsuniqueid = "nsuniqueid";
  60. const char *attr_isreplicated = "isreplicated";
  61. /*
  62. * Function: make_changes_string
  63. *
  64. * Returns:
  65. *
  66. * Arguments:
  67. *
  68. * Description:
  69. * loop through the LDAPMod struct and construct the changes attribute/
  70. *
  71. */
  72. static lenstr *make_changes_string(LDAPMod **ldm, const char **includeattrs)
  73. {
  74. lenstr *l;
  75. int i, j, len;
  76. int skip;
  77. l = lenstr_new();
  78. for ( i = 0; ldm[ i ] != NULL; i++ ) {
  79. /* If a list of explicit attributes was given, only add those */
  80. if ( NULL != includeattrs ) {
  81. skip = 1;
  82. for ( j = 0; includeattrs[ j ] != NULL; j++ ) {
  83. if ( strcasecmp( includeattrs[ j ], ldm[ i ]->mod_type ) == 0 ) {
  84. skip = 0;
  85. break;
  86. }
  87. }
  88. if ( skip ) {
  89. continue;
  90. }
  91. }
  92. switch ( ldm[ i ]->mod_op & ~LDAP_MOD_BVALUES ) {
  93. case LDAP_MOD_ADD:
  94. addlenstr( l, "add: " );
  95. addlenstr( l, ldm[ i ]->mod_type );
  96. addlenstr( l, "\n" );
  97. break;
  98. case LDAP_MOD_DELETE:
  99. addlenstr( l, "delete: " );
  100. addlenstr( l, ldm[ i ]->mod_type );
  101. addlenstr( l, "\n" );
  102. break;
  103. case LDAP_MOD_REPLACE:
  104. addlenstr( l, "replace: " );
  105. addlenstr( l, ldm[ i ]->mod_type );
  106. addlenstr( l, "\n" );
  107. break;
  108. }
  109. for ( j = 0; ldm[ i ]->mod_bvalues != NULL &&
  110. ldm[ i ]->mod_bvalues[ j ] != NULL; j++ ) {
  111. char *buf = NULL;
  112. char *bufp = NULL;
  113. len = strlen( ldm[ i ]->mod_type );
  114. len = LDIF_SIZE_NEEDED( len,
  115. ldm[ i ]->mod_bvalues[ j ]->bv_len ) + 1;
  116. buf = slapi_ch_malloc( len );
  117. bufp = buf;
  118. slapi_ldif_put_type_and_value_with_options( &bufp, ldm[ i ]->mod_type,
  119. ldm[ i ]->mod_bvalues[ j ]->bv_val,
  120. ldm[ i ]->mod_bvalues[ j ]->bv_len, 0 );
  121. *bufp = '\0';
  122. addlenstr( l, buf );
  123. slapi_ch_free_string( &buf );
  124. }
  125. addlenstr( l, "-\n" );
  126. }
  127. return l;
  128. }
  129. /*
  130. * Function: write_replog_db
  131. * Arguments: be - backend to which this change is being applied
  132. * optype - type of LDAP operation being logged
  133. * dn - distinguished name of entry being changed
  134. * log_m - pointer to the actual change operation on a modify
  135. * flag - only used by modrdn operations - value of deleteoldrdn
  136. * curtime - the current time
  137. * Returns: nothing
  138. * Description: Given a change, construct an entry which is to be added to the
  139. * changelog database.
  140. */
  141. static void
  142. write_replog_db(
  143. Slapi_PBlock *pb,
  144. int optype,
  145. char *dn,
  146. LDAPMod **log_m,
  147. int flag,
  148. time_t curtime,
  149. Slapi_Entry *log_e,
  150. const char *newrdn,
  151. LDAPMod **modrdn_mods,
  152. const char *newsuperior
  153. )
  154. {
  155. char *edn;
  156. struct berval *vals[ 2 ];
  157. struct berval val;
  158. Slapi_Entry *e;
  159. char chnobuf[ 20 ];
  160. int err;
  161. Slapi_PBlock *newPb = NULL;
  162. changeNumber changenum;
  163. int i;
  164. int extensibleObject = 0;
  165. PR_Lock(retrocl_internal_lock);
  166. changenum = retrocl_assign_changenumber();
  167. PR_ASSERT( changenum > 0UL );
  168. slapi_log_error( SLAPI_LOG_PLUGIN, RETROCL_PLUGIN_NAME,
  169. "write_replog_db: write change record %lu for dn: \"%s\"\n",
  170. changenum, ( dn == NULL ) ? "NULL" : dn );
  171. /* Construct the dn of this change record */
  172. edn = slapi_ch_smprintf( "%s=%lu,%s", attr_changenumber, changenum, RETROCL_CHANGELOG_DN);
  173. /*
  174. * Create the entry struct, and fill in fields common to all types
  175. * of change records.
  176. */
  177. vals[ 0 ] = &val;
  178. vals[ 1 ] = NULL;
  179. e = slapi_entry_alloc();
  180. slapi_entry_set_dn( e, slapi_ch_strdup( edn ));
  181. /* Set the objectclass attribute */
  182. val.bv_val = "top";
  183. val.bv_len = 3;
  184. slapi_entry_add_values( e, "objectclass", vals );
  185. val.bv_val = "changelogentry";
  186. val.bv_len = 14;
  187. slapi_entry_add_values( e, "objectclass", vals );
  188. for ( i=0; i<retrocl_nattributes; i++ ) {
  189. char* attributeName = retrocl_attributes[i];
  190. char* attributeAlias = retrocl_aliases[i];
  191. if ( attributeAlias == NULL ) {
  192. attributeAlias = attributeName;
  193. }
  194. if ( strcasecmp( attributeName, attr_nsuniqueid ) == 0 ) {
  195. Slapi_Entry *entry = NULL;
  196. char *uniqueId = NULL;
  197. slapi_pblock_get( pb, SLAPI_ENTRY_POST_OP, &entry );
  198. if ( entry == NULL ) {
  199. slapi_pblock_get( pb, SLAPI_ENTRY_PRE_OP, &entry );
  200. }
  201. uniqueId = slapi_entry_get_uniqueid( entry );
  202. slapi_log_error( SLAPI_LOG_PLUGIN, RETROCL_PLUGIN_NAME,
  203. "write_replog_db: add %s: \"%s\"\n", attributeAlias, uniqueId );
  204. val.bv_val = uniqueId;
  205. val.bv_len = strlen( uniqueId );
  206. slapi_entry_add_values( e, attributeAlias, vals );
  207. extensibleObject = 1;
  208. } else if ( strcasecmp( attributeName, attr_isreplicated ) == 0 ) {
  209. int isReplicated = 0;
  210. char *attributeValue = NULL;
  211. slapi_pblock_get( pb, SLAPI_IS_REPLICATED_OPERATION, &isReplicated );
  212. attributeValue = isReplicated ? "TRUE" : "FALSE";
  213. slapi_log_error( SLAPI_LOG_PLUGIN, RETROCL_PLUGIN_NAME,
  214. "write_replog_db: add %s: \"%s\"\n", attributeAlias, attributeValue );
  215. val.bv_val = attributeValue;
  216. val.bv_len = strlen( attributeValue );
  217. slapi_entry_add_values( e, attributeAlias, vals );
  218. extensibleObject = 1;
  219. } else {
  220. Slapi_Entry *entry = NULL;
  221. Slapi_ValueSet *valueSet = NULL;
  222. int type_name_disposition = 0;
  223. char *actual_type_name = NULL;
  224. int flags = 0;
  225. int buffer_flags = 0;
  226. slapi_pblock_get( pb, SLAPI_ENTRY_POST_OP, &entry );
  227. if ( entry != NULL ) {
  228. slapi_vattr_values_get( entry, attributeName, &valueSet,
  229. &type_name_disposition, &actual_type_name, flags, &buffer_flags );
  230. }
  231. if ( valueSet == NULL ) {
  232. slapi_pblock_get( pb, SLAPI_ENTRY_PRE_OP, &entry );
  233. if ( entry != NULL ) {
  234. slapi_vattr_values_get( entry, attributeName, &valueSet,
  235. &type_name_disposition, &actual_type_name, flags, &buffer_flags );
  236. }
  237. }
  238. if ( valueSet == NULL ) continue;
  239. slapi_log_error( SLAPI_LOG_PLUGIN, RETROCL_PLUGIN_NAME,
  240. "write_replog_db: add %s\n", attributeAlias );
  241. slapi_entry_add_valueset( e, attributeAlias, valueSet );
  242. slapi_vattr_values_free( &valueSet, &actual_type_name, buffer_flags );
  243. extensibleObject = 1;
  244. }
  245. }
  246. if ( extensibleObject ) {
  247. val.bv_val = "extensibleObject";
  248. val.bv_len = 16;
  249. slapi_entry_add_values( e, "objectclass", vals );
  250. }
  251. /* Set the changeNumber attribute */
  252. sprintf( chnobuf, "%lu", changenum );
  253. val.bv_val = chnobuf;
  254. val.bv_len = strlen( chnobuf );
  255. slapi_entry_add_values( e, attr_changenumber, vals );
  256. /* Set the targetentrydn attribute */
  257. val.bv_val = dn;
  258. val.bv_len = strlen( dn );
  259. slapi_entry_add_values( e, attr_targetdn, vals );
  260. /* Set the changeTime attribute */
  261. val.bv_val = format_genTime (curtime);
  262. val.bv_len = strlen( val.bv_val );
  263. slapi_entry_add_values( e, attr_changetime, vals );
  264. slapi_ch_free( (void **)&val.bv_val );
  265. /*
  266. * Finish constructing the entry. How to do it depends on the type
  267. * of modification being logged.
  268. */
  269. err = 0;
  270. switch ( optype ) {
  271. case OP_ADD:
  272. if ( entry2reple( e, log_e ) != 0 ) {
  273. err = 1;
  274. }
  275. break;
  276. case OP_MODIFY:
  277. if ( mods2reple( e, log_m ) != 0 ) {
  278. err = 1;
  279. }
  280. break;
  281. case OP_MODRDN:
  282. if ( modrdn2reple( e, newrdn, flag, modrdn_mods, newsuperior ) != 0 ) {
  283. err = 1;
  284. }
  285. break;
  286. case OP_DELETE:
  287. /* Set the changetype attribute */
  288. val.bv_val = "delete";
  289. val.bv_len = 6;
  290. slapi_entry_add_values( e, attr_changetype, vals );
  291. break;
  292. default:
  293. slapi_log_error( SLAPI_LOG_FATAL, RETROCL_PLUGIN_NAME, "replog: Unknown LDAP operation type "
  294. "%d.\n", optype );
  295. err = 1;
  296. }
  297. /* Call the repl backend to add this entry */
  298. if ( 0 == err ) {
  299. int rc;
  300. newPb = slapi_pblock_new ();
  301. slapi_add_entry_internal_set_pb( newPb, e, NULL /* controls */,
  302. g_plg_identity[PLUGIN_RETROCL],
  303. 0 /* actions */ );
  304. slapi_add_internal_pb (newPb);
  305. slapi_pblock_get( newPb, SLAPI_PLUGIN_INTOP_RESULT, &rc );
  306. slapi_pblock_destroy(newPb);
  307. if ( 0 != rc ) {
  308. slapi_log_error( SLAPI_LOG_FATAL, RETROCL_PLUGIN_NAME,
  309. "replog: an error occured while adding change "
  310. "number %lu, dn = %s: %s. \n",
  311. changenum, edn, ldap_err2string( rc ));
  312. retrocl_release_changenumber();
  313. } else {
  314. /* Tell the change numbering system this one's committed to disk */
  315. retrocl_commit_changenumber( );
  316. }
  317. } else {
  318. slapi_log_error( SLAPI_LOG_FATAL, RETROCL_PLUGIN_NAME,
  319. "An error occurred while constructing "
  320. "change record number %ld.\n", changenum );
  321. retrocl_release_changenumber();
  322. }
  323. PR_Unlock(retrocl_internal_lock);
  324. if ( NULL != edn ) {
  325. slapi_ch_free((void **) &edn);
  326. }
  327. }
  328. /*
  329. * Function: entry2reple
  330. * Arguments: e - a partially-constructed Slapi_Entry structure
  331. * oe - the original entry (an entry being added by a client).
  332. * Returns: 0 on success.
  333. * Description: Given an Slapi_Entry struct, construct a changelog entry which will be
  334. * added to the replication database. It is assumed that e points
  335. * to an entry obtained from slapi_entry_alloc().
  336. */
  337. static int
  338. entry2reple( Slapi_Entry *e, Slapi_Entry *oe )
  339. {
  340. char *p, *estr;
  341. struct berval *vals[ 2 ];
  342. struct berval val;
  343. int len;
  344. vals[ 0 ] = &val;
  345. vals[ 1 ] = NULL;
  346. /* Set the changetype attribute */
  347. val.bv_val = "add";
  348. val.bv_len = 3;
  349. slapi_entry_add_values( e, attr_changetype, vals );
  350. estr = slapi_entry2str( oe, &len );
  351. p = estr;
  352. /* Skip over the dn: line */
  353. while (( p = strchr( p, '\n' )) != NULL ) {
  354. p++;
  355. if ( !ldap_utf8isspace( p )) {
  356. break;
  357. }
  358. }
  359. val.bv_val = p;
  360. val.bv_len = len - ( p - estr ); /* length + terminating \0 */
  361. slapi_entry_add_values( e, attr_changes, vals );
  362. slapi_ch_free_string( &estr );
  363. return 0;
  364. }
  365. /*
  366. * Function: mods2reple
  367. * Arguments: e - a partially-constructed Slapi_Entry structure
  368. * ldm - an array of pointers to LDAPMod structures describing the
  369. * change applied.
  370. * Returns: 0 on success.
  371. * Description: Given a pointer to an LDAPMod struct and a dn, construct
  372. * a new entry which will be added to the replication database.
  373. * It is assumed that e points to an entry obtained from
  374. * slapi_entry_alloc().
  375. */
  376. static int
  377. mods2reple( Slapi_Entry *e, LDAPMod **ldm )
  378. {
  379. struct berval val;
  380. struct berval *vals[ 2 ];
  381. lenstr *l;
  382. vals[ 0 ] = &val;
  383. vals[ 1 ] = NULL;
  384. /* Set the changetype attribute */
  385. val.bv_val = "modify";
  386. val.bv_len = 6;
  387. slapi_entry_add_values( e, "changetype", vals );
  388. if (NULL != ldm) {
  389. l = make_changes_string( ldm, NULL );
  390. if ( NULL != l ) {
  391. val.bv_val = l->ls_buf;
  392. val.bv_len = l->ls_len + 1; /* string + terminating \0 */
  393. slapi_entry_add_values( e, attr_changes, vals );
  394. lenstr_free( &l );
  395. }
  396. }
  397. return 0;
  398. }
  399. /*
  400. * Function: modrdn2reple
  401. * Arguments: e - a partially-constructed Slapi_Entry structure
  402. * newrdn - the new relative distinguished name for the entry
  403. * deloldrdn - the "deleteoldrdn" flag provided by the client
  404. * ldm - any modifications applied as a side-effect of the modrdn
  405. * Returns: 0 on success
  406. * Description: Given a dn, a new rdn, and a deleteoldrdn flag, construct
  407. * a new entry which will be added to the replication database reflecting a
  408. * completed modrdn operation. The entry has the same form as above.
  409. * It is assumed that e points to an entry obtained from slapi_entry_alloc().
  410. */
  411. static int
  412. modrdn2reple(
  413. Slapi_Entry *e,
  414. const char *newrdn,
  415. int deloldrdn,
  416. LDAPMod **ldm,
  417. const char *newsuperior
  418. )
  419. {
  420. struct berval val;
  421. struct berval *vals[ 2 ];
  422. lenstr *l;
  423. static const char *lastmodattrs[] = {"modifiersname", "modifytimestamp",
  424. "creatorsname", "createtimestamp",
  425. NULL };
  426. vals[ 0 ] = &val;
  427. vals[ 1 ] = NULL;
  428. val.bv_val = "modrdn";
  429. val.bv_len = 6;
  430. slapi_entry_add_values( e, attr_changetype, vals );
  431. if (newrdn) {
  432. val.bv_val = (char *)newrdn; /* cast away const */
  433. val.bv_len = strlen( newrdn );
  434. slapi_entry_add_values( e, attr_newrdn, vals );
  435. }
  436. if ( deloldrdn == 0 ) {
  437. val.bv_val = "FALSE";
  438. val.bv_len = 5;
  439. } else {
  440. val.bv_val = "TRUE";
  441. val.bv_len = 4;
  442. }
  443. slapi_entry_add_values( e, attr_deleteoldrdn, vals );
  444. if (newsuperior) {
  445. val.bv_val = (char *)newsuperior; /* cast away const */
  446. val.bv_len = strlen(newsuperior);
  447. slapi_entry_add_values(e, attr_newsuperior,vals);
  448. }
  449. if (NULL != ldm) {
  450. l = make_changes_string( ldm, lastmodattrs );
  451. if ( NULL != l ) {
  452. val.bv_val = l->ls_buf;
  453. val.bv_len = l->ls_len + 1; /* string + terminating \0 */
  454. slapi_entry_add_values( e, attr_changes, vals );
  455. lenstr_free( &l );
  456. }
  457. }
  458. return 0;
  459. }
  460. /*
  461. * Function: retrocl_postob
  462. *
  463. * Returns: 0 on success
  464. *
  465. * Arguments: pblock, optype (add, del, modify etc)
  466. *
  467. * Description: called from retrocl.c op-specific plugins.
  468. *
  469. * Please be aware that operation threads may be scheduled out between their
  470. * being performed inside of the LDBM database and the changelog plugin
  471. * running. For example, suppose MA and MB are two modify operations on the
  472. * same entry. MA may be performed on the LDBM database, and then block
  473. * before the changelog runs. MB then runs against the LDBM database and then
  474. * is written to the changelog. MA starts running. In the changelog, MB will
  475. * appear to have been performed before MA, but in the LDBM database the
  476. * opposite will have occured.
  477. *
  478. *
  479. */
  480. int retrocl_postob (Slapi_PBlock *pb,int optype)
  481. {
  482. char *dn;
  483. LDAPMod **log_m = NULL;
  484. int flag = 0;
  485. Slapi_Entry *te = NULL;
  486. Slapi_Operation *op = NULL;
  487. LDAPMod **modrdn_mods = NULL;
  488. char *newrdn = NULL;
  489. char *newsuperior = NULL;
  490. Slapi_Backend *be = NULL;
  491. time_t curtime;
  492. int rc;
  493. /*
  494. * Check to see if the change was made to the replication backend db.
  495. * If so, don't try to log it to the db (otherwise, we'd get in a loop).
  496. */
  497. (void)slapi_pblock_get( pb, SLAPI_BACKEND, &be );
  498. if (slapi_be_logchanges(be) == 0) {
  499. LDAPDebug0Args(LDAP_DEBUG_TRACE,"not applying change if not logging\n");
  500. return 0;
  501. }
  502. if (retrocl_be_changelog == NULL || be == retrocl_be_changelog) {
  503. LDAPDebug0Args(LDAP_DEBUG_TRACE,"not applying change if no/cl be\n");
  504. return 0;
  505. }
  506. slapi_pblock_get(pb, SLAPI_RESULT_CODE, &rc);
  507. if (rc != LDAP_SUCCESS) {
  508. LDAPDebug1Arg(LDAP_DEBUG_TRACE,"not applying change if op failed %d\n",rc);
  509. return 0;
  510. }
  511. if (slapi_op_abandoned(pb)) {
  512. LDAPDebug0Args(LDAP_DEBUG_PLUGIN,"not applying change if op abandoned\n");
  513. return 0;
  514. }
  515. curtime = current_time();
  516. (void)slapi_pblock_get( pb, SLAPI_ORIGINAL_TARGET_DN, &dn );
  517. /* change number could be retrieved from Operation extension stored in
  518. * the pblock, or else it needs to be made dynamically. */
  519. /* get the operation extension and retrieve the change number */
  520. slapi_pblock_get( pb, SLAPI_OPERATION, &op );
  521. if (op == NULL) {
  522. LDAPDebug0Args(LDAP_DEBUG_TRACE,"not applying change if no op\n");
  523. return 0;
  524. }
  525. if (operation_is_flag_set(op, OP_FLAG_TOMBSTONE_ENTRY)){
  526. LDAPDebug0Args(LDAP_DEBUG_TRACE,"not applying change for nsTombstone entries\n");
  527. return 0;
  528. }
  529. switch ( optype ) {
  530. case OP_MODIFY:
  531. (void)slapi_pblock_get( pb, SLAPI_MODIFY_MODS, &log_m );
  532. break;
  533. case OP_ADD:
  534. /*
  535. * For adds, we want the unnormalized dn, so we can preserve
  536. * spacing, case, when replicating it.
  537. */
  538. (void)slapi_pblock_get( pb, SLAPI_ADD_ENTRY, &te );
  539. if ( NULL != te ) {
  540. dn = slapi_entry_get_dn( te );
  541. }
  542. break;
  543. case OP_DELETE:
  544. break;
  545. case OP_MODRDN:
  546. (void)slapi_pblock_get( pb, SLAPI_MODRDN_NEWRDN, &newrdn );
  547. (void)slapi_pblock_get( pb, SLAPI_MODRDN_DELOLDRDN, &flag );
  548. (void)slapi_pblock_get( pb, SLAPI_MODIFY_MODS, &modrdn_mods );
  549. (void)slapi_pblock_get( pb, SLAPI_MODRDN_NEWSUPERIOR, &newsuperior);
  550. break;
  551. }
  552. /* check if we should log change to retro changelog, and
  553. * if so, do it here */
  554. write_replog_db( pb, optype, dn, log_m, flag, curtime, te,
  555. newrdn, modrdn_mods, newsuperior );
  556. return 0;
  557. }