retrocl_po.c 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689
  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, int optype );
  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: error code
  138. * Description: Given a change, construct an entry which is to be added to the
  139. * changelog database.
  140. */
  141. static int
  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. Slapi_PBlock *newPb = NULL;
  156. changeNumber changenum;
  157. struct berval *vals[ 2 ];
  158. struct berval val;
  159. Slapi_Entry *e;
  160. char chnobuf[ 20 ];
  161. char *edn;
  162. int extensibleObject = 0;
  163. int err = 0;
  164. int ret = LDAP_SUCCESS;
  165. int i;
  166. if (!dn) {
  167. slapi_log_error( SLAPI_LOG_PLUGIN, RETROCL_PLUGIN_NAME, "write_replog_db: NULL dn\n");
  168. return ret;
  169. }
  170. PR_Lock(retrocl_internal_lock);
  171. changenum = retrocl_assign_changenumber();
  172. PR_ASSERT( changenum > 0UL );
  173. slapi_log_error( SLAPI_LOG_PLUGIN, RETROCL_PLUGIN_NAME,
  174. "write_replog_db: write change record %lu for dn: \"%s\"\n",
  175. changenum, dn );
  176. /* Construct the dn of this change record */
  177. edn = slapi_ch_smprintf( "%s=%lu,%s", attr_changenumber, changenum, RETROCL_CHANGELOG_DN);
  178. /*
  179. * Create the entry struct, and fill in fields common to all types
  180. * of change records.
  181. */
  182. vals[ 0 ] = &val;
  183. vals[ 1 ] = NULL;
  184. e = slapi_entry_alloc();
  185. slapi_entry_set_dn( e, slapi_ch_strdup( edn ));
  186. /* Set the objectclass attribute */
  187. val.bv_val = "top";
  188. val.bv_len = 3;
  189. slapi_entry_add_values( e, "objectclass", vals );
  190. val.bv_val = "changelogentry";
  191. val.bv_len = 14;
  192. slapi_entry_add_values( e, "objectclass", vals );
  193. for ( i=0; i<retrocl_nattributes; i++ ) {
  194. char* attributeName = retrocl_attributes[i];
  195. char* attributeAlias = retrocl_aliases[i];
  196. if ( attributeAlias == NULL ) {
  197. attributeAlias = attributeName;
  198. }
  199. if ( strcasecmp( attributeName, attr_nsuniqueid ) == 0 ) {
  200. Slapi_Entry *entry = NULL;
  201. const char *uniqueId = NULL;
  202. slapi_pblock_get( pb, SLAPI_ENTRY_POST_OP, &entry );
  203. if ( entry == NULL ) {
  204. slapi_pblock_get( pb, SLAPI_ENTRY_PRE_OP, &entry );
  205. }
  206. uniqueId = slapi_entry_get_uniqueid( entry );
  207. slapi_log_error( SLAPI_LOG_PLUGIN, RETROCL_PLUGIN_NAME,
  208. "write_replog_db: add %s: \"%s\"\n", attributeAlias, uniqueId );
  209. val.bv_val = (char *)uniqueId;
  210. val.bv_len = strlen( uniqueId );
  211. slapi_entry_add_values( e, attributeAlias, vals );
  212. extensibleObject = 1;
  213. } else if ( strcasecmp( attributeName, attr_isreplicated ) == 0 ) {
  214. int isReplicated = 0;
  215. char *attributeValue = NULL;
  216. slapi_pblock_get( pb, SLAPI_IS_REPLICATED_OPERATION, &isReplicated );
  217. attributeValue = isReplicated ? "TRUE" : "FALSE";
  218. slapi_log_error( SLAPI_LOG_PLUGIN, RETROCL_PLUGIN_NAME,
  219. "write_replog_db: add %s: \"%s\"\n", attributeAlias, attributeValue );
  220. val.bv_val = attributeValue;
  221. val.bv_len = strlen( attributeValue );
  222. slapi_entry_add_values( e, attributeAlias, vals );
  223. extensibleObject = 1;
  224. } else {
  225. Slapi_Entry *entry = NULL;
  226. Slapi_ValueSet *valueSet = NULL;
  227. int type_name_disposition = 0;
  228. char *actual_type_name = NULL;
  229. int flags = 0;
  230. int buffer_flags = 0;
  231. slapi_pblock_get( pb, SLAPI_ENTRY_POST_OP, &entry );
  232. if ( entry != NULL ) {
  233. slapi_vattr_values_get( entry, attributeName, &valueSet,
  234. &type_name_disposition, &actual_type_name, flags, &buffer_flags );
  235. }
  236. if ( valueSet == NULL ) {
  237. slapi_pblock_get( pb, SLAPI_ENTRY_PRE_OP, &entry );
  238. if ( entry != NULL ) {
  239. slapi_vattr_values_get( entry, attributeName, &valueSet,
  240. &type_name_disposition, &actual_type_name, flags, &buffer_flags );
  241. }
  242. }
  243. if ( valueSet == NULL ) continue;
  244. slapi_log_error( SLAPI_LOG_PLUGIN, RETROCL_PLUGIN_NAME,
  245. "write_replog_db: add %s\n", attributeAlias );
  246. slapi_entry_add_valueset( e, attributeAlias, valueSet );
  247. slapi_vattr_values_free( &valueSet, &actual_type_name, buffer_flags );
  248. extensibleObject = 1;
  249. }
  250. }
  251. if ( extensibleObject ) {
  252. val.bv_val = "extensibleObject";
  253. val.bv_len = 16;
  254. slapi_entry_add_values( e, "objectclass", vals );
  255. }
  256. /* Set the changeNumber attribute */
  257. sprintf( chnobuf, "%lu", changenum );
  258. val.bv_val = chnobuf;
  259. val.bv_len = strlen( chnobuf );
  260. slapi_entry_add_values( e, attr_changenumber, vals );
  261. /* Set the targetentrydn attribute */
  262. val.bv_val = dn;
  263. val.bv_len = strlen( dn );
  264. slapi_entry_add_values( e, attr_targetdn, vals );
  265. /* Set the changeTime attribute */
  266. val.bv_val = format_genTime (curtime);
  267. val.bv_len = strlen( val.bv_val );
  268. slapi_entry_add_values( e, attr_changetime, vals );
  269. slapi_ch_free( (void **)&val.bv_val );
  270. /*
  271. * Finish constructing the entry. How to do it depends on the type
  272. * of modification being logged.
  273. */
  274. switch ( optype ) {
  275. case OP_ADD:
  276. if ( entry2reple( e, log_e, OP_ADD ) != 0 ) {
  277. err = SLAPI_PLUGIN_FAILURE;
  278. }
  279. break;
  280. case OP_MODIFY:
  281. if ( mods2reple( e, log_m ) != 0 ) {
  282. err = SLAPI_PLUGIN_FAILURE;
  283. }
  284. break;
  285. case OP_MODRDN:
  286. if ( modrdn2reple( e, newrdn, flag, modrdn_mods, newsuperior ) != 0 ) {
  287. err = SLAPI_PLUGIN_FAILURE;
  288. }
  289. break;
  290. case OP_DELETE:
  291. if (log_e) {
  292. /* we have to log the full entry */
  293. if ( entry2reple( e, log_e, OP_DELETE ) != 0 ) {
  294. err = SLAPI_PLUGIN_FAILURE;
  295. }
  296. } else {
  297. /* Set the changetype attribute */
  298. val.bv_val = "delete";
  299. val.bv_len = 6;
  300. slapi_entry_add_values( e, attr_changetype, vals );
  301. }
  302. break;
  303. default:
  304. slapi_log_error( SLAPI_LOG_FATAL, RETROCL_PLUGIN_NAME,
  305. "replog: Unknown LDAP operation type %d.\n", optype );
  306. err = SLAPI_PLUGIN_FAILURE;
  307. }
  308. /* Call the repl backend to add this entry */
  309. if ( 0 == err ) {
  310. newPb = slapi_pblock_new ();
  311. slapi_add_entry_internal_set_pb( newPb, e, NULL /* controls */,
  312. g_plg_identity[PLUGIN_RETROCL],
  313. /* dont leave entry in cache if main oparation is aborted */
  314. SLAPI_OP_FLAG_NEVER_CACHE);
  315. slapi_add_internal_pb (newPb);
  316. slapi_pblock_get( newPb, SLAPI_PLUGIN_INTOP_RESULT, &ret );
  317. slapi_pblock_destroy(newPb);
  318. if ( 0 != ret ) {
  319. slapi_log_error( SLAPI_LOG_FATAL, RETROCL_PLUGIN_NAME,
  320. "replog: an error occured while adding change "
  321. "number %lu, dn = %s: %s. \n",
  322. changenum, edn, ldap_err2string( ret ));
  323. retrocl_release_changenumber();
  324. } else {
  325. /* Tell the change numbering system this one's committed to disk */
  326. retrocl_commit_changenumber();
  327. }
  328. } else {
  329. slapi_log_error( SLAPI_LOG_FATAL, RETROCL_PLUGIN_NAME,
  330. "An error occurred while constructing "
  331. "change record number %ld.\n", changenum );
  332. retrocl_release_changenumber();
  333. ret = err;
  334. }
  335. PR_Unlock(retrocl_internal_lock);
  336. if ( NULL != edn ) {
  337. slapi_ch_free((void **) &edn);
  338. }
  339. return ret;
  340. }
  341. /*
  342. * Function: entry2reple
  343. * Arguments: e - a partially-constructed Slapi_Entry structure
  344. * oe - the original entry (an entry being added by a client).
  345. * Returns: 0 on success.
  346. * Description: Given an Slapi_Entry struct, construct a changelog entry which will be
  347. * added to the replication database. It is assumed that e points
  348. * to an entry obtained from slapi_entry_alloc().
  349. */
  350. static int
  351. entry2reple( Slapi_Entry *e, Slapi_Entry *oe, int optype )
  352. {
  353. char *p, *estr;
  354. struct berval *vals[ 2 ];
  355. struct berval val;
  356. int len;
  357. vals[ 0 ] = &val;
  358. vals[ 1 ] = NULL;
  359. /* Set the changetype attribute */
  360. if ( optype == OP_ADD ) {
  361. val.bv_val = "add";
  362. val.bv_len = 3;
  363. } else if ( optype == OP_DELETE) {
  364. val.bv_val = "delete";
  365. val.bv_len = 6;
  366. } else {
  367. return (1);
  368. }
  369. slapi_entry_add_values( e, attr_changetype, vals );
  370. estr = slapi_entry2str( oe, &len );
  371. p = estr;
  372. /* Skip over the dn: line */
  373. while (( p = strchr( p, '\n' )) != NULL ) {
  374. p++;
  375. if ( !ldap_utf8isspace( p )) {
  376. break;
  377. }
  378. }
  379. val.bv_val = p;
  380. val.bv_len = len - ( p - estr ); /* length + terminating \0 */
  381. slapi_entry_add_values( e, attr_changes, vals );
  382. slapi_ch_free_string( &estr );
  383. return 0;
  384. }
  385. /*
  386. * Function: mods2reple
  387. * Arguments: e - a partially-constructed Slapi_Entry structure
  388. * ldm - an array of pointers to LDAPMod structures describing the
  389. * change applied.
  390. * Returns: 0 on success.
  391. * Description: Given a pointer to an LDAPMod struct and a dn, construct
  392. * a new entry which will be added to the replication database.
  393. * It is assumed that e points to an entry obtained from
  394. * slapi_entry_alloc().
  395. */
  396. static int
  397. mods2reple( Slapi_Entry *e, LDAPMod **ldm )
  398. {
  399. struct berval val;
  400. struct berval *vals[ 2 ];
  401. lenstr *l;
  402. vals[ 0 ] = &val;
  403. vals[ 1 ] = NULL;
  404. /* Set the changetype attribute */
  405. val.bv_val = "modify";
  406. val.bv_len = 6;
  407. slapi_entry_add_values( e, "changetype", vals );
  408. if (NULL != ldm) {
  409. l = make_changes_string( ldm, NULL );
  410. if ( NULL != l ) {
  411. val.bv_val = l->ls_buf;
  412. val.bv_len = l->ls_len + 1; /* string + terminating \0 */
  413. slapi_entry_add_values( e, attr_changes, vals );
  414. lenstr_free( &l );
  415. }
  416. }
  417. return 0;
  418. }
  419. /*
  420. * Function: modrdn2reple
  421. * Arguments: e - a partially-constructed Slapi_Entry structure
  422. * newrdn - the new relative distinguished name for the entry
  423. * deloldrdn - the "deleteoldrdn" flag provided by the client
  424. * ldm - any modifications applied as a side-effect of the modrdn
  425. * Returns: 0 on success
  426. * Description: Given a dn, a new rdn, and a deleteoldrdn flag, construct
  427. * a new entry which will be added to the replication database reflecting a
  428. * completed modrdn operation. The entry has the same form as above.
  429. * It is assumed that e points to an entry obtained from slapi_entry_alloc().
  430. */
  431. static int
  432. modrdn2reple(
  433. Slapi_Entry *e,
  434. const char *newrdn,
  435. int deloldrdn,
  436. LDAPMod **ldm,
  437. const char *newsuperior
  438. )
  439. {
  440. struct berval val;
  441. struct berval *vals[ 2 ];
  442. lenstr *l;
  443. static const char *lastmodattrs[] = {"modifiersname", "modifytimestamp",
  444. "creatorsname", "createtimestamp",
  445. NULL };
  446. vals[ 0 ] = &val;
  447. vals[ 1 ] = NULL;
  448. val.bv_val = "modrdn";
  449. val.bv_len = 6;
  450. slapi_entry_add_values( e, attr_changetype, vals );
  451. if (newrdn) {
  452. val.bv_val = (char *)newrdn; /* cast away const */
  453. val.bv_len = strlen( newrdn );
  454. slapi_entry_add_values( e, attr_newrdn, vals );
  455. }
  456. if ( deloldrdn == 0 ) {
  457. val.bv_val = "FALSE";
  458. val.bv_len = 5;
  459. } else {
  460. val.bv_val = "TRUE";
  461. val.bv_len = 4;
  462. }
  463. slapi_entry_add_values( e, attr_deleteoldrdn, vals );
  464. if (newsuperior) {
  465. val.bv_val = (char *)newsuperior; /* cast away const */
  466. val.bv_len = strlen(newsuperior);
  467. slapi_entry_add_values(e, attr_newsuperior,vals);
  468. }
  469. if (NULL != ldm) {
  470. l = make_changes_string( ldm, lastmodattrs );
  471. if ( NULL != l ) {
  472. if (l->ls_len) {
  473. val.bv_val = l->ls_buf;
  474. val.bv_len = l->ls_len;
  475. slapi_entry_add_values( e, attr_changes, vals );
  476. }
  477. lenstr_free( &l );
  478. }
  479. }
  480. return 0;
  481. }
  482. /*
  483. * Function: retrocl_postob
  484. *
  485. * Returns: 0 on success
  486. *
  487. * Arguments: pblock, optype (add, del, modify etc)
  488. *
  489. * Description: called from retrocl.c op-specific plugins.
  490. *
  491. * Please be aware that operation threads may be scheduled out between their
  492. * being performed inside of the LDBM database and the changelog plugin
  493. * running. For example, suppose MA and MB are two modify operations on the
  494. * same entry. MA may be performed on the LDBM database, and then block
  495. * before the changelog runs. MB then runs against the LDBM database and then
  496. * is written to the changelog. MA starts running. In the changelog, MB will
  497. * appear to have been performed before MA, but in the LDBM database the
  498. * opposite will have occured.
  499. *
  500. *
  501. */
  502. int retrocl_postob (Slapi_PBlock *pb, int optype)
  503. {
  504. char *dn;
  505. LDAPMod **log_m = NULL;
  506. int flag = 0;
  507. Slapi_Entry *te = NULL;
  508. Slapi_Operation *op = NULL;
  509. LDAPMod **modrdn_mods = NULL;
  510. char *newrdn = NULL;
  511. Slapi_DN *newsuperior = NULL;
  512. Slapi_Backend *be = NULL;
  513. time_t curtime;
  514. int rc = SLAPI_PLUGIN_SUCCESS;
  515. /*
  516. * Check to see if the change was made to the replication backend db.
  517. * If so, don't try to log it to the db (otherwise, we'd get in a loop).
  518. */
  519. (void)slapi_pblock_get( pb, SLAPI_BACKEND, &be );
  520. if (slapi_be_logchanges(be) == 0) {
  521. LDAPDebug0Args(LDAP_DEBUG_TRACE,"not applying change if not logging\n");
  522. return SLAPI_PLUGIN_SUCCESS;
  523. }
  524. if (retrocl_be_changelog == NULL || be == retrocl_be_changelog) {
  525. LDAPDebug0Args(LDAP_DEBUG_TRACE,"not applying change if no/cl be\n");
  526. return SLAPI_PLUGIN_SUCCESS;
  527. }
  528. slapi_pblock_get(pb, SLAPI_RESULT_CODE, &rc);
  529. if (rc != LDAP_SUCCESS) {
  530. LDAPDebug1Arg(LDAP_DEBUG_TRACE,"not applying change if op failed %d\n",rc);
  531. /* this could also mean that the changenumber is no longer correct
  532. * set a flag to check at next assignment
  533. */
  534. retrocl_set_check_changenumber();
  535. return SLAPI_PLUGIN_SUCCESS;
  536. }
  537. if (slapi_op_abandoned(pb)) {
  538. LDAPDebug0Args(LDAP_DEBUG_PLUGIN,"not applying change if op abandoned\n");
  539. return SLAPI_PLUGIN_SUCCESS;
  540. }
  541. curtime = current_time();
  542. (void)slapi_pblock_get( pb, SLAPI_ORIGINAL_TARGET_DN, &dn );
  543. /* change number could be retrieved from Operation extension stored in
  544. * the pblock, or else it needs to be made dynamically. */
  545. /* get the operation extension and retrieve the change number */
  546. slapi_pblock_get( pb, SLAPI_OPERATION, &op );
  547. if (op == NULL) {
  548. LDAPDebug0Args(LDAP_DEBUG_TRACE,"not applying change if no op\n");
  549. return SLAPI_PLUGIN_SUCCESS;
  550. }
  551. if (operation_is_flag_set(op, OP_FLAG_TOMBSTONE_ENTRY)){
  552. LDAPDebug0Args(LDAP_DEBUG_TRACE,"not applying change for nsTombstone entries\n");
  553. return SLAPI_PLUGIN_SUCCESS;
  554. }
  555. switch ( optype ) {
  556. case OP_MODIFY:
  557. (void)slapi_pblock_get( pb, SLAPI_MODIFY_MODS, &log_m );
  558. break;
  559. case OP_ADD:
  560. /*
  561. * For adds, we want the unnormalized dn, so we can preserve
  562. * spacing, case, when replicating it.
  563. */
  564. (void)slapi_pblock_get( pb, SLAPI_ADD_ENTRY, &te );
  565. if ( NULL != te ) {
  566. dn = slapi_entry_get_dn( te );
  567. }
  568. break;
  569. case OP_DELETE:
  570. if (retrocl_log_deleted)
  571. (void)slapi_pblock_get(pb, SLAPI_ENTRY_PRE_OP, &te);
  572. break;
  573. case OP_MODRDN:
  574. /* newrdn is used just for logging; no need to be normalized */
  575. (void)slapi_pblock_get( pb, SLAPI_MODRDN_NEWRDN, &newrdn );
  576. (void)slapi_pblock_get( pb, SLAPI_MODRDN_DELOLDRDN, &flag );
  577. (void)slapi_pblock_get( pb, SLAPI_MODIFY_MODS, &modrdn_mods );
  578. (void)slapi_pblock_get( pb, SLAPI_MODRDN_NEWSUPERIOR_SDN, &newsuperior );
  579. break;
  580. }
  581. /* check if we should log change to retro changelog, and
  582. * if so, do it here */
  583. if((rc = write_replog_db( pb, optype, dn, log_m, flag, curtime, te,
  584. newrdn, modrdn_mods, slapi_sdn_get_dn(newsuperior) )))
  585. {
  586. slapi_log_error(SLAPI_LOG_FATAL, "retrocl-plugin",
  587. "retrocl_postob: operation failure [%d]\n", rc);
  588. if(rc < 0){
  589. rc = LDAP_OPERATIONS_ERROR;
  590. }
  591. slapi_pblock_set(pb, SLAPI_RESULT_CODE, &rc);
  592. rc = SLAPI_PLUGIN_FAILURE;
  593. }
  594. return rc;
  595. }