1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331
|
/** BEGIN COPYRIGHT BLOCK
* Copyright (C) 2001 Sun Microsystems, Inc. Used by permission.
* Copyright (C) 2022 Red Hat, Inc.
* All rights reserved.
*
* License: GPL (version 3 or any later version).
* See LICENSE for details.
* END COPYRIGHT BLOCK **/
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
/* repl5_replica_config.c - replica configuration over ldap */
#include <ctype.h> /* for isdigit() */
#include "repl5.h"
#include "cl5_api.h"
#include "cl5.h"
#include "slap.h"
/* CONFIG_BASE: no need to optimize */
#define CONFIG_BASE "cn=mapping tree,cn=config"
#define CONFIG_FILTER "(objectclass=nsDS5Replica)"
#define TASK_ATTR "nsds5Task"
#define CL2LDIF_TASK "CL2LDIF"
#define LDIF2CL_TASK "LDIF2CL"
#define REPLICA_RDN "cn=replica"
int slapi_log_urp = SLAPI_LOG_REPL;
/* Forward Declartions */
static int replica_config_add(Slapi_PBlock *pb, Slapi_Entry *e, Slapi_Entry *entryAfter, int *returncode, char *returntext, void *arg);
static int replica_config_modify(Slapi_PBlock *pb, Slapi_Entry *e, Slapi_Entry *entryAfter, int *returncode, char *returntext, void *arg);
static int replica_config_post_modify(Slapi_PBlock *pb, Slapi_Entry *e, Slapi_Entry *entryAfter, int *returncode, char *returntext, void *arg);
static int replica_config_delete(Slapi_PBlock *pb, Slapi_Entry *e, Slapi_Entry *entryAfter, int *returncode, char *returntext, void *arg);
static int replica_config_search(Slapi_PBlock *pb, Slapi_Entry *e, Slapi_Entry *entryAfter, int *returncode, char *returntext, void *arg);
static int replica_csngen_test_task(Slapi_PBlock *pb, Slapi_Entry *e, Slapi_Entry *eAfter, int *returncode, char *returntext, void *arg);
static int replica_config_change_type_and_id(Replica *r, const char *new_type, const char *new_id, char *returntext, int apply_mods);
static int replica_config_change_updatedn(Replica *r, const LDAPMod *mod, char *returntext, int apply_mods);
static int replica_config_change_updatedngroup(Replica *r, const LDAPMod *mod, char *returntext, int apply_mods);
static int replica_config_change_flags(Replica *r, const char *new_flags, char *returntext, int apply_mods);
static int replica_execute_task(Replica *r, const char *task_name, char *returntext, int apply_mods);
static int replica_execute_cl2ldif_task(Replica *r, char *returntext);
static int replica_execute_ldif2cl_task(Replica *r, char *returntext);
static int replica_cleanup_task(Object *r, const char *task_name, char *returntext, int apply_mods);
static int replica_task_done(Replica *replica);
static multisupplier_mtnode_extension *_replica_config_get_mtnode_ext(const Slapi_Entry *e);
/*
* Note: internal add/modify/delete operations should not be run while
* s_configLock is held. E.g., slapi_modify_internal_pb via replica_task_done
* in replica_config_post_modify.
*/
static PRLock *s_configLock;
static int
dont_allow_that(Slapi_PBlock *pb __attribute__((unused)),
Slapi_Entry *entryBefore __attribute__((unused)),
Slapi_Entry *e __attribute__((unused)),
int *returncode,
char *returntext __attribute__((unused)),
void *arg __attribute__((unused)))
{
*returncode = LDAP_UNWILLING_TO_PERFORM;
return SLAPI_DSE_CALLBACK_ERROR;
}
int
replica_config_init()
{
int rc = 0;
s_configLock = PR_NewLock();
if (s_configLock == NULL) {
slapi_log_err(SLAPI_LOG_ERR, repl_plugin_name, "replica_config_init - "
"Failed to create configuration lock; NSPR error - %d\n",
PR_GetError());
return -1;
}
/* config DSE must be initialized before we get here */
slapi_config_register_callback(SLAPI_OPERATION_ADD, DSE_FLAG_PREOP, CONFIG_BASE, LDAP_SCOPE_SUBTREE,
CONFIG_FILTER, replica_config_add, NULL);
slapi_config_register_callback(SLAPI_OPERATION_MODIFY, DSE_FLAG_PREOP, CONFIG_BASE, LDAP_SCOPE_SUBTREE,
CONFIG_FILTER, replica_config_modify, NULL);
slapi_config_register_callback(SLAPI_OPERATION_MODRDN, DSE_FLAG_PREOP, CONFIG_BASE, LDAP_SCOPE_SUBTREE,
CONFIG_FILTER, dont_allow_that, NULL);
slapi_config_register_callback(SLAPI_OPERATION_DELETE, DSE_FLAG_PREOP, CONFIG_BASE, LDAP_SCOPE_SUBTREE,
CONFIG_FILTER, replica_config_delete, NULL);
slapi_config_register_callback(SLAPI_OPERATION_SEARCH, DSE_FLAG_PREOP, CONFIG_BASE, LDAP_SCOPE_SUBTREE,
CONFIG_FILTER, replica_config_search, NULL);
slapi_config_register_callback(SLAPI_OPERATION_MODIFY, DSE_FLAG_POSTOP,
CONFIG_BASE, LDAP_SCOPE_SUBTREE,
CONFIG_FILTER, replica_config_post_modify,
NULL);
/* register the csngen_test task
*
* To start the test, create a task
* dn: cn=run the test,cn=csngen_test,cn=tasks,cn=config
* objectclass: top
* objectclass: extensibleobject
* cn: run the test
* ttl: 300
*/
slapi_task_register_handler("csngen_test", replica_csngen_test_task);
/* Init all the cleanallruv stuff */
rc = cleanallruv_init();
return rc;
}
void
replica_config_destroy()
{
if (s_configLock) {
PR_DestroyLock(s_configLock);
s_configLock = NULL;
}
/* config DSE must be initialized before we get here */
slapi_config_remove_callback(SLAPI_OPERATION_ADD, DSE_FLAG_PREOP, CONFIG_BASE, LDAP_SCOPE_SUBTREE,
CONFIG_FILTER, replica_config_add);
slapi_config_remove_callback(SLAPI_OPERATION_MODIFY, DSE_FLAG_PREOP, CONFIG_BASE, LDAP_SCOPE_SUBTREE,
CONFIG_FILTER, replica_config_modify);
slapi_config_remove_callback(SLAPI_OPERATION_MODRDN, DSE_FLAG_PREOP, CONFIG_BASE, LDAP_SCOPE_SUBTREE,
CONFIG_FILTER, dont_allow_that);
slapi_config_remove_callback(SLAPI_OPERATION_DELETE, DSE_FLAG_PREOP, CONFIG_BASE, LDAP_SCOPE_SUBTREE,
CONFIG_FILTER, replica_config_delete);
slapi_config_remove_callback(SLAPI_OPERATION_SEARCH, DSE_FLAG_PREOP, CONFIG_BASE, LDAP_SCOPE_SUBTREE,
CONFIG_FILTER, replica_config_search);
slapi_config_remove_callback(SLAPI_OPERATION_MODIFY, DSE_FLAG_PREOP,
CONFIG_BASE, LDAP_SCOPE_SUBTREE,
CONFIG_FILTER, replica_config_post_modify);
}
#define MSG_NOREPLICARDN "no replica rdn\n"
#define MSG_NOREPLICANORMRDN "no replica normalized rdn\n"
#define MSG_CNREPLICA "replica rdn %s should be %s\n"
#define MSG_ALREADYCONFIGURED "replica already configured for %s\n"
static int
replica_config_add(Slapi_PBlock *pb __attribute__((unused)),
Slapi_Entry *e,
Slapi_Entry *entryAfter __attribute__((unused)),
int *returncode,
char *errorbuf,
void *arg __attribute__((unused)))
{
Replica *r = NULL;
multisupplier_mtnode_extension *mtnode_ext;
char *replica_root = (char *)slapi_entry_attr_get_ref(e, attr_replicaRoot);
char *errortext = NULL;
Slapi_RDN *replicardn;
if (errorbuf != NULL) {
errortext = errorbuf;
}
*returncode = LDAP_SUCCESS;
/* check rdn is "cn=replica" */
replicardn = slapi_rdn_new_sdn(slapi_entry_get_sdn(e));
if (replicardn) {
const char *nrdn = slapi_rdn_get_nrdn(replicardn);
if (nrdn == NULL) {
if (errortext != NULL) {
strcpy(errortext, MSG_NOREPLICANORMRDN);
}
slapi_log_err(SLAPI_LOG_ERR, repl_plugin_name, "replica_config_add - "MSG_NOREPLICANORMRDN);
slapi_rdn_free(&replicardn);
*returncode = LDAP_UNWILLING_TO_PERFORM;
return SLAPI_DSE_CALLBACK_ERROR;
} else {
if (strcmp(nrdn,REPLICA_RDN)!=0) {
if (errortext != NULL) {
PR_snprintf(errortext, SLAPI_DSE_RETURNTEXT_SIZE,MSG_CNREPLICA, nrdn, REPLICA_RDN);
}
slapi_log_err(SLAPI_LOG_ERR, repl_plugin_name,"replica_config_add - "MSG_CNREPLICA, nrdn, REPLICA_RDN);
slapi_rdn_free(&replicardn);
*returncode = LDAP_UNWILLING_TO_PERFORM;
return SLAPI_DSE_CALLBACK_ERROR;
}
slapi_rdn_free(&replicardn);
}
} else {
if (errortext != NULL) {
strcpy(errortext, MSG_NOREPLICARDN);
}
slapi_log_err(SLAPI_LOG_ERR, repl_plugin_name, "replica_config_add - "MSG_NOREPLICARDN);
*returncode = LDAP_UNWILLING_TO_PERFORM;
return SLAPI_DSE_CALLBACK_ERROR;
}
PR_Lock(s_configLock);
/* add the dn to the dn hash so we can tell this replica is being configured */
replica_add_by_dn(replica_root);
mtnode_ext = _replica_config_get_mtnode_ext(e);
PR_ASSERT(mtnode_ext);
if (mtnode_ext->replica) {
if ( errortext != NULL ) {
PR_snprintf(errortext, SLAPI_DSE_RETURNTEXT_SIZE, MSG_ALREADYCONFIGURED, replica_root);
}
slapi_log_err(SLAPI_LOG_ERR, repl_plugin_name, "replica_config_add - "MSG_ALREADYCONFIGURED, replica_root);
*returncode = LDAP_UNWILLING_TO_PERFORM;
goto done;
}
/* create replica object */
*returncode = replica_new_from_entry(e, errortext, PR_TRUE /* is a newly added entry */, &r);
if (r == NULL) {
goto done;
}
/* Set the mapping tree node state, and the referrals from the RUV */
consumer5_set_mapping_tree_state_for_replica(r, NULL);
/* ONREPL if replica is added as writable we need to execute protocol that
introduces new writable replica to the topology */
mtnode_ext->replica = object_new(r, replica_destroy); /* Refcnt is 1 */
/* add replica object to the hash */
*returncode = replica_add_by_name(replica_get_name(r), r); /* Increments object refcnt */
/* delete the dn from the dn hash - done with configuration */
replica_delete_by_dn(replica_root);
done:
PR_Unlock(s_configLock);
if (*returncode != LDAP_SUCCESS) {
if (mtnode_ext->replica)
object_release(mtnode_ext->replica);
return SLAPI_DSE_CALLBACK_ERROR;
} else
return SLAPI_DSE_CALLBACK_OK;
}
static int
replica_config_modify(Slapi_PBlock *pb,
Slapi_Entry *entryBefore __attribute__((unused)),
Slapi_Entry *e,
int *returncode,
char *returntext,
void *arg __attribute__((unused)))
{
int rc = 0;
LDAPMod **mods;
int i, apply_mods;
multisupplier_mtnode_extension *mtnode_ext;
Replica *r = NULL;
char *replica_root = NULL;
char buf[SLAPI_DSE_RETURNTEXT_SIZE];
char *errortext = returntext ? returntext : buf;
char *config_attr, *config_attr_value;
Slapi_Operation *op;
void *identity;
if (returntext) {
returntext[0] = '\0';
}
*returncode = LDAP_SUCCESS;
/* just let internal operations originated from replication plugin to go through */
slapi_pblock_get(pb, SLAPI_OPERATION, &op);
slapi_pblock_get(pb, SLAPI_PLUGIN_IDENTITY, &identity);
if (operation_is_flag_set(op, OP_FLAG_INTERNAL) &&
(identity == repl_get_plugin_identity(PLUGIN_MULTISUPPLIER_REPLICATION))) {
*returncode = LDAP_SUCCESS;
return SLAPI_DSE_CALLBACK_OK;
}
replica_root = (char *)slapi_entry_attr_get_ref(e, attr_replicaRoot);
PR_Lock(s_configLock);
mtnode_ext = _replica_config_get_mtnode_ext(e);
PR_ASSERT(mtnode_ext);
if (mtnode_ext->replica == NULL) {
PR_snprintf(errortext, SLAPI_DSE_RETURNTEXT_SIZE, "Replica does not exist for %s", replica_root);
slapi_log_err(SLAPI_LOG_ERR, repl_plugin_name, "replica_config_modify - %s\n",
errortext);
*returncode = LDAP_OPERATIONS_ERROR;
goto done;
}
r = object_get_data(mtnode_ext->replica);
PR_ASSERT(r);
slapi_pblock_get(pb, SLAPI_MODIFY_MODS, &mods);
for (apply_mods = 0; apply_mods <= 1; apply_mods++) {
/* we only allow the replica ID and type to be modified together e.g.
if converting a read only replica to a supplier or vice versa -
we will need to change both the replica ID and the type at the same
time - we must disallow changing the replica ID if the type is not
being changed and vice versa
*/
char *new_repl_id = NULL;
char *new_repl_type = NULL;
if (*returncode != LDAP_SUCCESS)
break;
for (i = 0; mods && (mods[i] && (LDAP_SUCCESS == rc)); i++) {
if (*returncode != LDAP_SUCCESS)
break;
config_attr = (char *)mods[i]->mod_type;
PR_ASSERT(config_attr);
/* disallow modifications or removal of replica root,
replica name and replica state attributes */
if (strcasecmp(config_attr, attr_replicaRoot) == 0 ||
strcasecmp(config_attr, attr_replicaName) == 0 ||
strcasecmp(config_attr, attr_state) == 0) {
*returncode = LDAP_UNWILLING_TO_PERFORM;
PR_snprintf(errortext, SLAPI_DSE_RETURNTEXT_SIZE, "Modification of %s attribute is not allowed",
config_attr);
slapi_log_err(SLAPI_LOG_ERR, repl_plugin_name, "replica_config_modify - %s\n",
errortext);
}
/* this is a request to delete an attribute */
else if ((mods[i]->mod_op & LDAP_MOD_DELETE) || mods[i]->mod_bvalues == NULL || mods[i]->mod_bvalues[0]->bv_val == NULL) {
/*
* Where possible/allowed return replica config settings to their
* default values.
*/
if (strcasecmp(config_attr, attr_replicaBindDn) == 0) {
*returncode = replica_config_change_updatedn(r, mods[i], errortext, apply_mods);
} else if (strcasecmp(config_attr, attr_replicaBindDnGroup) == 0) {
*returncode = replica_config_change_updatedngroup(r, mods[i], errortext, apply_mods);
} else if (strcasecmp(config_attr, attr_replicaBindDnGroupCheckInterval) == 0) {
replica_set_groupdn_checkinterval(r, -1);
} else if (strcasecmp(config_attr, attr_replicaReferral) == 0) {
if (apply_mods) {
replica_set_referrals(r, NULL);
consumer5_set_mapping_tree_state_for_replica(r, NULL);
}
} else if (strcasecmp(config_attr, type_replicaCleanRUV) == 0 ||
strcasecmp(config_attr, type_replicaAbortCleanRUV) == 0) {
/*
* Nothing to do in this case, allow it, and continue.
*/
continue;
} else if (strcasecmp(config_attr, type_replicaProtocolTimeout) == 0) {
if (apply_mods)
replica_set_protocol_timeout(r, DEFAULT_PROTOCOL_TIMEOUT);
} else if (strcasecmp(config_attr, type_replicaBackoffMin) == 0) {
if (apply_mods)
replica_set_backoff_min(r, PROTOCOL_BACKOFF_MINIMUM);
} else if (strcasecmp(config_attr, type_replicaBackoffMax) == 0) {
if (apply_mods)
replica_set_backoff_max(r, PROTOCOL_BACKOFF_MAXIMUM);
} else if (strcasecmp(config_attr, type_replicaKeepAliveUpdateInterval) == 0) {
if (apply_mods)
replica_set_keepalive_update_interval(r, DEFAULT_REPLICA_KEEPALIVE_UPDATE_INTERVAL);
} else if (strcasecmp(config_attr, type_replicaPrecisePurge) == 0) {
if (apply_mods)
replica_set_precise_purging(r, 0);
} else if (strcasecmp(config_attr, type_replicaReleaseTimeout) == 0) {
if (apply_mods)
replica_set_release_timeout(r, 0);
} else {
*returncode = LDAP_UNWILLING_TO_PERFORM;
PR_snprintf(errortext, SLAPI_DSE_RETURNTEXT_SIZE, "Deletion of %s attribute is not allowed", config_attr);
slapi_log_err(SLAPI_LOG_ERR, repl_plugin_name, "replica_config_modify - %s\n", errortext);
}
} else /* modify an attribute */
{
config_attr_value = (char *)mods[i]->mod_bvalues[0]->bv_val;
if (NULL == config_attr_value) {
*returncode = LDAP_UNWILLING_TO_PERFORM;
PR_snprintf(errortext, SLAPI_DSE_RETURNTEXT_SIZE, "Attribute %s value is NULL.\n",
config_attr);
slapi_log_err(SLAPI_LOG_ERR, repl_plugin_name, "replica_config_modify - %s\n",
errortext);
break;
}
if (strcasecmp(config_attr, attr_replicaBindDn) == 0) {
*returncode = replica_config_change_updatedn(r, mods[i], errortext, apply_mods);
} else if (strcasecmp(config_attr, attr_replicaBindDnGroup) == 0) {
*returncode = replica_config_change_updatedngroup(r, mods[i], errortext, apply_mods);
} else if (strcasecmp(config_attr, attr_replicaBindDnGroupCheckInterval) == 0) {
int64_t interval = 0;
if (repl_config_valid_num(config_attr, config_attr_value, -1, INT_MAX, returncode, errortext, &interval) == 0) {
replica_set_groupdn_checkinterval(r, interval);
} else {
break;
}
} else if (strcasecmp(config_attr, type_replicaKeepAliveUpdateInterval) == 0) {
int64_t interval = DEFAULT_REPLICA_KEEPALIVE_UPDATE_INTERVAL;
if (repl_config_valid_num(config_attr, config_attr_value, REPLICA_KEEPALIVE_UPDATE_INTERVAL_MIN,
INT_MAX, returncode, errortext, &interval) == 0)
{
replica_set_keepalive_update_interval(r, interval);
} else {
break;
}
} else if (strcasecmp(config_attr, attr_replicaType) == 0) {
int64_t rtype;
slapi_ch_free_string(&new_repl_type);
if (repl_config_valid_num(config_attr, config_attr_value, 1, 3, returncode, errortext, &rtype) == 0) {
new_repl_type = slapi_ch_strdup(config_attr_value);
} else {
break;
}
} else if (strcasecmp(config_attr, attr_replicaId) == 0) {
int64_t rid = 0;
if (repl_config_valid_num(config_attr, config_attr_value, 1, MAX_REPLICA_ID, returncode, errortext, &rid) == 0) {
slapi_ch_free_string(&new_repl_id);
new_repl_id = slapi_ch_strdup(config_attr_value);
} else {
break;
}
} else if (strcasecmp(config_attr, attr_flags) == 0) {
int64_t rflags = 0;
if (repl_config_valid_num(config_attr, config_attr_value, 0, 1, returncode, errortext, &rflags) == 0) {
*returncode = replica_config_change_flags(r, config_attr_value, errortext, apply_mods);
} else {
break;
}
} else if (strcasecmp(config_attr, TASK_ATTR) == 0) {
*returncode = replica_execute_task(r, config_attr_value, errortext, apply_mods);
} else if (strcasecmp(config_attr, attr_replicaReferral) == 0) {
if (apply_mods) {
Slapi_Mod smod;
Slapi_ValueSet *vs = slapi_valueset_new();
slapi_mod_init_byref(&smod, mods[i]);
slapi_valueset_set_from_smod(vs, &smod);
replica_set_referrals(r, vs);
slapi_mod_done(&smod);
slapi_valueset_free(vs);
consumer5_set_mapping_tree_state_for_replica(r, NULL);
}
} else if (strcasecmp(config_attr, type_replicaPurgeDelay) == 0) {
if (apply_mods && config_attr_value[0]) {
int64_t delay = 0;
if (repl_config_valid_num(config_attr, config_attr_value, -1, INT_MAX, returncode, errortext, &delay) == 0) {
replica_set_purge_delay(r, delay);
} else {
break;
}
}
} else if (strcasecmp(config_attr, type_replicaTombstonePurgeInterval) == 0) {
if (apply_mods && config_attr_value[0]) {
int64_t interval;
if (repl_config_valid_num(config_attr, config_attr_value, -1, INT_MAX, returncode, errortext, &interval) == 0) {
replica_set_tombstone_reap_interval(r, interval);
} else {
break;
}
}
}
/* ignore modifiers attributes added by the server */
else if (slapi_attr_is_last_mod(config_attr)) {
*returncode = LDAP_SUCCESS;
} else if (strcasecmp(config_attr, type_replicaProtocolTimeout) == 0) {
if (apply_mods) {
int64_t ptimeout = 0;
if (repl_config_valid_num(config_attr, config_attr_value, 1, INT_MAX, returncode, errortext, &ptimeout) == 0) {
replica_set_protocol_timeout(r, ptimeout);
} else {
break;
}
}
} else if (strcasecmp(config_attr, type_replicaBackoffMin) == 0) {
if (apply_mods) {
int64_t val = 0;
int64_t max;
if (repl_config_valid_num(config_attr, config_attr_value, 1, INT_MAX, returncode, errortext, &val) == 0) {
max = replica_get_backoff_max(r);
if (val > max){
*returncode = LDAP_UNWILLING_TO_PERFORM;
PR_snprintf(errortext, SLAPI_DSE_RETURNTEXT_SIZE,
"Attribute %s value (%s) is invalid, must be a number less than the max backoff time (%d).\n",
config_attr, config_attr_value, (int)max);
slapi_log_err(SLAPI_LOG_ERR, repl_plugin_name, "replica_config_modify - %s\n", errortext);
break;
}
replica_set_backoff_min(r, val);
} else {
break;
}
}
} else if (strcasecmp(config_attr, type_replicaBackoffMax) == 0) {
if (apply_mods) {
int64_t val = 0;
int64_t min;
if (repl_config_valid_num(config_attr, config_attr_value, 1, INT_MAX, returncode, errortext, &val) == 0) {
min = replica_get_backoff_min(r);
if (val < min) {
*returncode = LDAP_UNWILLING_TO_PERFORM;
PR_snprintf(errortext, SLAPI_DSE_RETURNTEXT_SIZE,
"Attribute %s value (%s) is invalid, must be a number more than the min backoff time (%d).\n",
config_attr, config_attr_value, (int)min);
slapi_log_err(SLAPI_LOG_ERR, repl_plugin_name, "replica_config_modify - %s\n", errortext);
break;
}
replica_set_backoff_max(r, val);
} else {
break;
}
}
} else if (strcasecmp(config_attr, type_replicaPrecisePurge) == 0) {
if (apply_mods) {
if (config_attr_value[0]) {
uint64_t on_off = 0;
if (strcasecmp(config_attr_value, "on") == 0) {
on_off = 1;
} else if (strcasecmp(config_attr_value, "off") == 0) {
on_off = 0;
} else {
/* Invalid value */
*returncode = LDAP_UNWILLING_TO_PERFORM;
PR_snprintf(errortext, SLAPI_DSE_RETURNTEXT_SIZE,
"Invalid value for %s: %s Value should be \"on\" or \"off\"\n",
type_replicaPrecisePurge, config_attr_value);
slapi_log_err(SLAPI_LOG_ERR, repl_plugin_name,
"replica_config_modify - %s:\n", errortext);
break;
}
replica_set_precise_purging(r, on_off);
} else {
replica_set_precise_purging(r, 0);
}
}
} else if (strcasecmp(config_attr, type_replicaReleaseTimeout) == 0) {
if (apply_mods) {
int64_t val;
if (repl_config_valid_num(config_attr, config_attr_value, 0, INT_MAX, returncode, errortext, &val) == 0) {
replica_set_release_timeout(r, val);
} else {
break;
}
}
} else {
*returncode = LDAP_UNWILLING_TO_PERFORM;
PR_snprintf(errortext, SLAPI_DSE_RETURNTEXT_SIZE,
"Modification of attribute %s is not allowed in replica entry", config_attr);
slapi_log_err(SLAPI_LOG_ERR, repl_plugin_name, "replica_config_modify - %s\n", errortext);
}
}
}
if (new_repl_id || new_repl_type) {
*returncode = replica_config_change_type_and_id(r, new_repl_type, new_repl_id, errortext, apply_mods);
PR_Unlock(s_configLock);
replica_update_state(0, (void *)replica_get_name(r));
PR_Lock(s_configLock);
slapi_ch_free_string(&new_repl_id);
slapi_ch_free_string(&new_repl_type);
agmtlist_notify_all(pb);
}
}
done:
PR_Unlock(s_configLock);
if (*returncode != LDAP_SUCCESS) {
return SLAPI_DSE_CALLBACK_ERROR;
} else {
return SLAPI_DSE_CALLBACK_OK;
}
}
static int
replica_config_post_modify(Slapi_PBlock *pb,
Slapi_Entry *entryBefore __attribute__((unused)),
Slapi_Entry *e,
int *returncode,
char *returntext,
void *arg __attribute__((unused)))
{
int rc = 0;
LDAPMod **mods;
int i, apply_mods;
multisupplier_mtnode_extension *mtnode_ext;
char *replica_root = NULL;
char buf[SLAPI_DSE_RETURNTEXT_SIZE];
char *errortext = returntext ? returntext : buf;
char *config_attr, *config_attr_value;
Slapi_Operation *op;
void *identity;
int flag_need_cleanup = 0;
if (returntext) {
returntext[0] = '\0';
}
*returncode = LDAP_SUCCESS;
/* just let internal operations originated from replication plugin to go through */
slapi_pblock_get(pb, SLAPI_OPERATION, &op);
slapi_pblock_get(pb, SLAPI_PLUGIN_IDENTITY, &identity);
if (operation_is_flag_set(op, OP_FLAG_INTERNAL) &&
(identity == repl_get_plugin_identity(PLUGIN_MULTISUPPLIER_REPLICATION))) {
*returncode = LDAP_SUCCESS;
return SLAPI_DSE_CALLBACK_OK;
}
replica_root = (char *)slapi_entry_attr_get_ref(e, attr_replicaRoot);
PR_Lock(s_configLock);
mtnode_ext = _replica_config_get_mtnode_ext(e);
PR_ASSERT(mtnode_ext);
if (mtnode_ext->replica == NULL) {
PR_snprintf(errortext, SLAPI_DSE_RETURNTEXT_SIZE,
"Replica does not exist for %s", replica_root);
slapi_log_err(SLAPI_LOG_ERR, repl_plugin_name,
"replica_config_post_modify - %s\n",
errortext);
*returncode = LDAP_OPERATIONS_ERROR;
goto done;
}
PR_ASSERT(object_get_data(mtnode_ext->replica) != NULL);
slapi_pblock_get(pb, SLAPI_MODIFY_MODS, &mods);
for (apply_mods = 0; apply_mods <= 1; apply_mods++) {
/* we only allow the replica ID and type to be modified together e.g.
if converting a read only replica to a supplier or vice versa -
we will need to change both the replica ID and the type at the same
time - we must disallow changing the replica ID if the type is not
being changed and vice versa
*/
if (*returncode != LDAP_SUCCESS)
break;
for (i = 0; mods && (mods[i] && (LDAP_SUCCESS == rc)); i++) {
if (*returncode != LDAP_SUCCESS)
break;
config_attr = (char *)mods[i]->mod_type;
PR_ASSERT(config_attr);
/* disallow modifications or removal of replica root,
replica name and replica state attributes */
if (strcasecmp(config_attr, attr_replicaRoot) == 0 ||
strcasecmp(config_attr, attr_replicaName) == 0 ||
strcasecmp(config_attr, attr_state) == 0) {
*returncode = LDAP_UNWILLING_TO_PERFORM;
PR_snprintf(errortext, SLAPI_DSE_RETURNTEXT_SIZE,
"Modification of %s attribute is not allowed",
config_attr);
slapi_log_err(SLAPI_LOG_ERR, repl_plugin_name,
"replica_config_post_modify - %s\n",
errortext);
}
/* this is a request to delete an attribute */
else if ((mods[i]->mod_op & LDAP_MOD_DELETE) ||
mods[i]->mod_bvalues == NULL ||
mods[i]->mod_bvalues[0]->bv_val == NULL) {
;
} else /* modify an attribute */
{
config_attr_value = (char *)mods[i]->mod_bvalues[0]->bv_val;
if (strcasecmp(config_attr, TASK_ATTR) == 0) {
flag_need_cleanup = 1;
}
}
}
}
done:
PR_Unlock(s_configLock);
/* Call replica_cleanup_task after s_configLock is reliesed */
if (flag_need_cleanup) {
*returncode = replica_cleanup_task(mtnode_ext->replica,
config_attr_value,
errortext, apply_mods);
}
if (*returncode != LDAP_SUCCESS) {
return SLAPI_DSE_CALLBACK_ERROR;
} else {
return SLAPI_DSE_CALLBACK_OK;
}
}
static int
replica_config_delete(Slapi_PBlock *pb __attribute__((unused)),
Slapi_Entry *e,
Slapi_Entry *entryAfter __attribute__((unused)),
int *returncode,
char *returntext __attribute__((unused)),
void *arg __attribute__((unused)))
{
multisupplier_mtnode_extension *mtnode_ext;
Replica *r;
int rc;
Slapi_Backend *be;
PR_Lock(s_configLock);
mtnode_ext = _replica_config_get_mtnode_ext(e);
PR_ASSERT(mtnode_ext);
if (mtnode_ext->replica) {
/* remove object from the hash */
Object *r_obj = mtnode_ext->replica;
back_info_config_entry config_entry = {0};
r = (Replica *)object_get_data(mtnode_ext->replica);
/* retrieves changelog DN and keep it in config_entry.ce */
be = slapi_be_select(replica_get_root(r));
config_entry.dn = "cn=changelog";
rc = slapi_back_ctrl_info(be, BACK_INFO_CLDB_GET_CONFIG, (void *)&config_entry);
if (rc !=0 || config_entry.ce == NULL) {
slapi_log_err(SLAPI_LOG_ERR, repl_plugin_name_cl,
"replica_config_delete - failed to read config for changelog\n");
PR_Unlock(s_configLock);
*returncode = LDAP_OPERATIONS_ERROR;
return SLAPI_DSE_CALLBACK_ERROR;
}
mtnode_ext->replica = NULL; /* moving it before deleting the CL because
* deletion can take some time giving the opportunity
* to an operation to start while CL is deleted
*/
PR_ASSERT(r);
/* The changelog for this replica is no longer valid, so we should remove it. */
slapi_log_err(SLAPI_LOG_WARNING, repl_plugin_name, "replica_config_delete - "
"The changelog for replica %s is no longer valid since "
"the replica config is being deleted. Removing the changelog.\n",
slapi_sdn_get_dn(replica_get_root(r)));
/* As we are removing a replica, all references to it need to be cleared
* There are many of them:
* - all replicas are stored in a hash table (s_hash): replicat_delete_by_name
* - callbacks have been registered with the replica as argument: changelog5_register_config_callbacks
* - replica is stored in mapping tree extension mtnode_ext: object_release
*/
cldb_RemoveReplicaDB(r);
replica_delete_by_name(replica_get_name(r));
changelog5_remove_config_callbacks(slapi_entry_get_dn_const(config_entry.ce));
slapi_entry_free(config_entry.ce);
object_release(r_obj);
}
PR_Unlock(s_configLock);
*returncode = LDAP_SUCCESS;
return SLAPI_DSE_CALLBACK_OK;
}
static void
replica_config_search_last_modified(Slapi_PBlock *pb __attribute__((unused)), Slapi_Entry *e, Replica *replica)
{
Object *ruv_obj = NULL;
RUV *ruv = NULL;
Slapi_Value **values;
if (replica == NULL)
return;
ruv_obj = replica_get_ruv(replica);
ruv = object_get_data(ruv_obj);
if ((values = ruv_last_modified_to_valuearray(ruv)) != NULL) {
slapi_entry_add_values_sv(e, type_ruvElementUpdatetime, values);
valuearray_free(&values);
}
object_release(ruv_obj);
}
static void
replica_config_search_ruv(Slapi_PBlock *pb __attribute__((unused)), Slapi_Entry *e, Replica *replica)
{
Object *ruv_obj = NULL;
RUV *ruv = NULL;
Slapi_Value **values;
if (replica == NULL)
return;
ruv_obj = replica_get_ruv(replica);
ruv = object_get_data(ruv_obj);
if ((values = ruv_to_valuearray(ruv)) != NULL) {
slapi_entry_add_values_sv(e, type_ruvElement, values);
valuearray_free(&values);
}
object_release(ruv_obj);
/* now add all the repl agmts maxcsnsruv */
add_agmt_maxcsns(e, replica);
}
/* Returns PR_TRUE if 'attr' is present in the search requested attributes
* else it returns PR_FALSE
*/
static PRBool
search_requested_attr(Slapi_PBlock *pb, const char *attr)
{
char **attrs = NULL;
int i;
slapi_pblock_get(pb, SLAPI_SEARCH_ATTRS, &attrs);
if ((attr == NULL) || (attrs == NULL))
return PR_FALSE;
for (i = 0; attrs[i] != NULL; i++) {
if (strcasecmp(attrs[i], attr) == 0) {
return PR_TRUE;
}
}
return PR_FALSE;
}
static int
replica_config_search(Slapi_PBlock *pb,
Slapi_Entry *e,
Slapi_Entry *entryAfter __attribute__((unused)),
int *returncode __attribute__((unused)),
char *returntext __attribute__((unused)),
void *arg __attribute__((unused)))
{
multisupplier_mtnode_extension *mtnode_ext;
int changeCount = 0;
PRBool reapActive = PR_FALSE;
char val[64];
/* add attribute that contains number of entries in the changelog for this replica */
PR_Lock(s_configLock);
mtnode_ext = _replica_config_get_mtnode_ext(e);
PR_ASSERT(mtnode_ext);
if (mtnode_ext->replica) {
Replica *replica = (Replica *)object_get_data(mtnode_ext->replica);
if (cldb_is_open(replica)) {
changeCount = cl5GetOperationCount(replica);
}
if (replica) {
reapActive = replica_get_tombstone_reap_active(replica);
}
/* Check if the in memory ruv is requested */
if (search_requested_attr(pb, type_ruvElement)) {
replica_config_search_ruv(pb, e, replica);
}
/* Check if the last update time is requested */
if (search_requested_attr(pb, type_ruvElementUpdatetime)) {
replica_config_search_last_modified(pb, e, replica);
}
}
sprintf(val, "%d", changeCount);
slapi_entry_add_string(e, type_replicaChangeCount, val);
slapi_entry_attr_set_int(e, "nsds5replicaReapActive", (int)reapActive);
PR_Unlock(s_configLock);
return SLAPI_DSE_CALLBACK_OK;
}
static int
replica_config_change_type_and_id(Replica *r, const char *new_type, const char *new_id, char *returntext, int apply_mods)
{
int type = REPLICA_TYPE_READONLY; /* by default - replica is read-only */
ReplicaType oldtype;
ReplicaId rid;
ReplicaId oldrid;
PR_ASSERT(r);
oldtype = replica_get_type(r);
oldrid = replica_get_rid(r);
if (new_type == NULL) {
if (oldtype) {
type = oldtype;
}
} else {
type = atoi(new_type);
if (type <= REPLICA_TYPE_UNKNOWN || type >= REPLICA_TYPE_END) {
PR_snprintf(returntext, SLAPI_DSE_RETURNTEXT_SIZE, "invalid replica type %d", type);
return LDAP_OPERATIONS_ERROR;
}
/* disallow changing type to itself just to permit a replica ID change */
if (oldtype == type) {
PR_snprintf(returntext, SLAPI_DSE_RETURNTEXT_SIZE, "replica type is already %d - not changing", type);
return LDAP_OPERATIONS_ERROR;
}
}
if (type == REPLICA_TYPE_READONLY) {
rid = READ_ONLY_REPLICA_ID; /* default rid for read only */
} else if (!new_id) {
PR_snprintf(returntext, SLAPI_DSE_RETURNTEXT_SIZE, "a replica ID is required when changing replica type to read-write");
return LDAP_UNWILLING_TO_PERFORM;
} else {
int temprid = atoi(new_id);
if (temprid <= 0 || temprid >= READ_ONLY_REPLICA_ID) {
PR_snprintf(returntext, SLAPI_DSE_RETURNTEXT_SIZE,
"attribute %s must have a value greater than 0 "
"and less than %d",
attr_replicaId, READ_ONLY_REPLICA_ID);
return LDAP_UNWILLING_TO_PERFORM;
} else {
rid = (ReplicaId)temprid;
}
}
/* error if old rid == new rid */
if (oldrid == rid) {
PR_snprintf(returntext, SLAPI_DSE_RETURNTEXT_SIZE, "replica ID is already %d - not changing", rid);
return LDAP_OPERATIONS_ERROR;
}
if (apply_mods) {
Object *ruv_obj, *gen_obj;
RUV *ruv;
CSNGen *gen;
ruv_obj = replica_get_ruv(r);
if (ruv_obj) {
/* we need to rewrite the repl_csngen with the new rid */
ruv = object_get_data(ruv_obj);
gen_obj = replica_get_csngen(r);
if (gen_obj) {
const char *purl = multisupplier_get_local_purl();
gen = (CSNGen *)object_get_data(gen_obj);
csngen_rewrite_rid(gen, rid);
if (purl && type == REPLICA_TYPE_UPDATABLE) {
ruv_add_replica(ruv, rid, purl);
ruv_move_local_supplier_to_first(ruv, rid);
replica_reset_csn_pl(r);
}
ruv_delete_replica(ruv, oldrid);
cl5CleanRUV(oldrid, r);
replica_set_csn_assigned(r);
}
object_release(ruv_obj);
}
replica_set_type(r, type);
replica_set_rid(r, rid);
/* Set the mapping tree node, and the list of referrals */
consumer5_set_mapping_tree_state_for_replica(r, NULL);
}
return LDAP_SUCCESS;
}
static int
replica_config_change_updatedn(Replica *r, const LDAPMod *mod, char *returntext __attribute__((unused)), int apply_mods)
{
PR_ASSERT(r);
if (apply_mods) {
Slapi_Mod smod;
Slapi_ValueSet *vs = slapi_valueset_new();
slapi_mod_init_byref(&smod, (LDAPMod *)mod); /* cast away const */
slapi_valueset_set_from_smod(vs, &smod);
replica_set_updatedn(r, vs, mod->mod_op);
slapi_mod_done(&smod);
slapi_valueset_free(vs);
}
return LDAP_SUCCESS;
}
static int
replica_config_change_updatedngroup(Replica *r, const LDAPMod *mod, char *returntext __attribute__((unused)), int apply_mods)
{
PR_ASSERT(r);
if (apply_mods) {
Slapi_Mod smod;
Slapi_ValueSet *vs = slapi_valueset_new();
slapi_mod_init_byref(&smod, (LDAPMod *)mod); /* cast away const */
slapi_valueset_set_from_smod(vs, &smod);
replica_set_groupdn(r, vs, mod->mod_op);
slapi_mod_done(&smod);
slapi_valueset_free(vs);
}
return LDAP_SUCCESS;
}
static int
replica_config_change_flags(Replica *r, const char *new_flags, char *returntext __attribute__((unused)), int apply_mods)
{
PR_ASSERT(r);
if (apply_mods) {
uint32_t flags;
flags = atol(new_flags);
if (replica_is_flag_set(r, REPLICA_LOG_CHANGES) && !(flags & REPLICA_LOG_CHANGES)) {
/* the replica no longer maintains a changelog, reset */
int32_t write_ruv = 1;
cldb_UnSetReplicaDB(r, (void *)&write_ruv);
} else if (!replica_is_flag_set(r, REPLICA_LOG_CHANGES) && (flags & REPLICA_LOG_CHANGES)) {
/* the replica starts to maintains a changelog, set */
cldb_SetReplicaDB(r, NULL);
}
replica_replace_flags(r, flags);
}
return LDAP_SUCCESS;
}
static int
replica_execute_task(Replica *r, const char *task_name, char *returntext, int apply_mods)
{
if (strcasecmp(task_name, CL2LDIF_TASK) == 0) {
if (apply_mods) {
return replica_execute_cl2ldif_task(r, returntext);
} else
return LDAP_SUCCESS;
} else if (strcasecmp(task_name, LDIF2CL_TASK) == 0) {
if (apply_mods) {
return replica_execute_ldif2cl_task(r, returntext);
} else
return LDAP_SUCCESS;
} else if (strncasecmp(task_name, CLEANRUV, CLEANRUVLEN) == 0) {
int temprid = atoi(&(task_name[CLEANRUVLEN]));
if (temprid <= 0 || temprid >= READ_ONLY_REPLICA_ID) {
PR_snprintf(returntext, SLAPI_DSE_RETURNTEXT_SIZE, "Invalid replica id (%d) for task - %s", temprid, task_name);
slapi_log_err(SLAPI_LOG_ERR, repl_plugin_name, "replica_execute_task - %s\n", returntext);
return LDAP_OPERATIONS_ERROR;
}
if (apply_mods) {
return replica_execute_cleanruv_task(r, (ReplicaId)temprid, returntext);
} else
return LDAP_SUCCESS;
} else if (strncasecmp(task_name, CLEANALLRUV, CLEANALLRUVLEN) == 0) {
int temprid = atoi(&(task_name[CLEANALLRUVLEN]));
if (temprid <= 0 || temprid >= READ_ONLY_REPLICA_ID) {
PR_snprintf(returntext, SLAPI_DSE_RETURNTEXT_SIZE, "Invalid replica id (%d) for task - (%s)", temprid, task_name);
slapi_log_err(SLAPI_LOG_ERR, repl_plugin_name, "replica_execute_task - %s\n", returntext);
return LDAP_OPERATIONS_ERROR;
}
if (apply_mods) {
Slapi_Task *empty_task = NULL;
return replica_execute_cleanall_ruv_task(r, (ReplicaId)temprid, empty_task, "no", PR_TRUE, returntext);
} else
return LDAP_SUCCESS;
} else {
PR_snprintf(returntext, SLAPI_DSE_RETURNTEXT_SIZE, "Unsupported replica task - %s", task_name);
slapi_log_err(SLAPI_LOG_ERR, repl_plugin_name,
"replica_execute_task - %s\n", returntext);
return LDAP_OPERATIONS_ERROR;
}
}
static int
replica_cleanup_task(Object *r, const char *task_name __attribute__((unused)), char *returntext __attribute__((unused)), int apply_mods)
{
int rc = LDAP_SUCCESS;
if (apply_mods) {
Replica *replica = (Replica *)object_get_data(r);
if (NULL == replica) {
rc = LDAP_OPERATIONS_ERROR;
} else {
rc = replica_task_done(replica);
}
}
return rc;
}
static int
replica_task_done(Replica *replica)
{
int rc = LDAP_OPERATIONS_ERROR;
char *replica_dn = NULL;
Slapi_DN *replica_sdn = NULL;
Slapi_PBlock *pb = NULL;
LDAPMod *mods[2];
LDAPMod mod;
if (NULL == replica) {
return rc;
}
/* dn: cn=replica,cn=dc\3Dexample\2Cdc\3Dcom,cn=mapping tree,cn=config */
replica_dn = slapi_ch_smprintf("%s,cn=\"%s\",%s",
REPLICA_RDN,
slapi_sdn_get_dn(replica_get_root(replica)),
CONFIG_BASE);
if (NULL == replica_dn) {
return rc;
}
replica_sdn = slapi_sdn_new_dn_passin(replica_dn);
pb = slapi_pblock_new();
mods[0] = &mod;
mods[1] = NULL;
mod.mod_op = LDAP_MOD_DELETE | LDAP_MOD_BVALUES;
mod.mod_type = (char *)TASK_ATTR;
mod.mod_bvalues = NULL;
slapi_modify_internal_set_pb_ext(pb, replica_sdn, mods, NULL /* controls */,
NULL /* uniqueid */,
repl_get_plugin_identity(PLUGIN_MULTISUPPLIER_REPLICATION),
0 /* flags */);
slapi_modify_internal_pb(pb);
slapi_pblock_get(pb, SLAPI_PLUGIN_INTOP_RESULT, &rc);
if ((rc != LDAP_SUCCESS) && (rc != LDAP_NO_SUCH_ATTRIBUTE)) {
slapi_log_err(SLAPI_LOG_ERR, repl_plugin_name,
"replica_task_done - "
"Failed to remove (%s) attribute from (%s) entry; "
"LDAP error - %d\n",
TASK_ATTR, replica_dn, rc);
}
slapi_pblock_destroy(pb);
slapi_sdn_free(&replica_sdn);
return rc;
}
static int
replica_execute_cl2ldif_task(Replica *replica, char *returntext)
{
int rc;
char fName[MAXPATHLEN];
char *clDir = NULL;
if (NULL == replica) {
rc = LDAP_OPERATIONS_ERROR;
goto bail;
}
if (!cldb_is_open(replica)) {
PR_snprintf(returntext, SLAPI_DSE_RETURNTEXT_SIZE, "Changelog is not open");
slapi_log_err(SLAPI_LOG_ERR, repl_plugin_name,
"replica_execute_cl2ldif_task - %s\n", returntext);
rc = LDAP_OPERATIONS_ERROR;
goto bail;
}
/* file is stored in the changelog directory and is named
<replica name>.ldif */
Slapi_Backend *be = slapi_be_select(replica_get_root(replica));
clDir = cl5GetLdifDir(be);
if (NULL == clDir) {
rc = LDAP_OPERATIONS_ERROR;
goto bail;
}
PR_snprintf(fName, MAXPATHLEN, "%s/%s_cl.ldif", clDir, replica_get_name(replica));
slapi_log_err(SLAPI_LOG_INFO, repl_plugin_name,
"replica_execute_cl2ldif_task - Beginning changelog export of replica \"%s\"\n",
replica_get_name(replica));
rc = cl5ExportLDIF(fName, replica);
if (rc == CL5_SUCCESS) {
slapi_log_err(SLAPI_LOG_INFO, repl_plugin_name,
"replica_execute_cl2ldif_task - Finished changelog export of replica \"%s\"\n",
replica_get_name(replica));
rc = LDAP_SUCCESS;
} else {
PR_snprintf(returntext, SLAPI_DSE_RETURNTEXT_SIZE,
"Failed changelog export replica %s; "
"changelog error - %d",
replica_get_name(replica), rc);
slapi_log_err(SLAPI_LOG_ERR, repl_plugin_name,
"replica_execute_cl2ldif_task - %s\n", returntext);
rc = LDAP_OPERATIONS_ERROR;
}
bail:
slapi_ch_free_string(&clDir);
return rc;
}
static int
replica_execute_ldif2cl_task(Replica *replica, char *returntext)
{
int rc = CL5_SUCCESS;
char fName[MAXPATHLEN];
char *clDir = NULL;
if (NULL == replica) {
rc = LDAP_OPERATIONS_ERROR;
goto bail;
}
if (!cldb_is_open(replica)) {
PR_snprintf(returntext, SLAPI_DSE_RETURNTEXT_SIZE, "changelog is not open");
slapi_log_err(SLAPI_LOG_ERR, repl_plugin_name,
"replica_execute_ldif2cl_task - %s\n", returntext);
rc = LDAP_OPERATIONS_ERROR;
goto bail;
}
/* file is stored in the changelog directory and is named
<replica name>.ldif */
Slapi_Backend *be = slapi_be_select(replica_get_root(replica));
clDir = cl5GetLdifDir(be);
if (NULL == clDir) {
rc = LDAP_OPERATIONS_ERROR;
goto bail;
}
PR_snprintf(fName, MAXPATHLEN, "%s/%s_cl.ldif", clDir, replica_get_name(replica));
slapi_log_err(SLAPI_LOG_INFO, repl_plugin_name,
"replica_execute_ldif2cl_task - Beginning changelog import of replica \"%s\". "
"All replication updates will be rejected until the import is complete.\n",
replica_get_name(replica));
rc = cl5ImportLDIF(clDir, fName, replica);
if (CL5_SUCCESS == rc) {
slapi_log_err(SLAPI_LOG_INFO, repl_plugin_name,
"replica_execute_ldif2cl_task - Finished changelog import of replica \"%s\"\n",
replica_get_name(replica));
} else {
PR_snprintf(returntext, SLAPI_DSE_RETURNTEXT_SIZE,
"Failed changelog import replica %s; dir: %s file: %s - changelog error: %d",
replica_get_name(replica), clDir, fName, rc);
slapi_log_err(SLAPI_LOG_ERR, repl_plugin_name,
"replica_execute_ldif2cl_task - %s\n", returntext);
rc = LDAP_OPERATIONS_ERROR;
}
bail:
slapi_ch_free_string(&clDir);
/* if cl5ImportLDIF returned an error, report it first. */
return rc;
}
static multisupplier_mtnode_extension *
_replica_config_get_mtnode_ext(const Slapi_Entry *e)
{
const char *replica_root;
Slapi_DN *sdn = NULL;
mapping_tree_node *mtnode;
multisupplier_mtnode_extension *ext = NULL;
/* retirve root of the tree for which replica is configured */
replica_root = slapi_entry_attr_get_charptr(e, attr_replicaRoot);
if (replica_root == NULL) {
slapi_log_err(SLAPI_LOG_ERR, repl_plugin_name, "_replica_config_get_mtnode_ext - "
"Configuration entry %s missing %s attribute\n",
slapi_entry_get_dn((Slapi_Entry *)e),
attr_replicaRoot);
return NULL;
}
sdn = slapi_sdn_new_dn_passin(replica_root);
/* locate mapping tree node for the specified subtree */
mtnode = slapi_get_mapping_tree_node_by_dn(sdn);
if (mtnode == NULL) {
slapi_log_err(SLAPI_LOG_ERR, repl_plugin_name, "_replica_config_get_mtnode_ext - "
"Failed to locate mapping tree node for dn %s\n",
slapi_sdn_get_dn(sdn));
} else {
/* check if replica object already exists for the specified subtree */
ext = (multisupplier_mtnode_extension *)repl_con_get_ext(REPL_CON_EXT_MTNODE, mtnode);
}
slapi_sdn_free(&sdn);
return ext;
}
/* This thread runs the tests of csn generator.
* It will log a set of csn generated while simulating local and remote time skews
* All csn should increase
*/
void
replica_csngen_test_thread(void *arg)
{
csngen_test_data *data = (csngen_test_data *)arg;
int rc = 0;
if (data->task) {
slapi_task_inc_refcount(data->task);
slapi_log_err(SLAPI_LOG_INFO, repl_plugin_name, "replica_csngen_test_thread --> refcount incremented.\n");
}
/* defined in csngen.c */
csngen_test();
if (data->task) {
slapi_task_finish(data->task, rc);
slapi_task_dec_refcount(data->task);
slapi_log_err(SLAPI_LOG_INFO, repl_plugin_name, "replica_csngen_test_thread <-- refcount incremented.\n");
}
}
/* It spawn a thread running the test of a csn generator */
static int
replica_csngen_test_task(Slapi_PBlock *pb __attribute__((unused)),
Slapi_Entry *e,
Slapi_Entry *eAfter __attribute__((unused)),
int *returncode,
char *returntext,
void *arg __attribute__((unused)))
{
Slapi_Task *task = NULL;
csngen_test_data *data;
PRThread *thread = NULL;
int rc = SLAPI_DSE_CALLBACK_OK;
/* allocate new task now */
task = slapi_new_task(slapi_entry_get_ndn(e));
data = (csngen_test_data *)slapi_ch_calloc(1, sizeof(csngen_test_data));
data->task = task;
thread = PR_CreateThread(PR_USER_THREAD, replica_csngen_test_thread,
(void *)data, PR_PRIORITY_NORMAL, PR_GLOBAL_THREAD,
PR_UNJOINABLE_THREAD, SLAPD_DEFAULT_THREAD_STACKSIZE);
if (thread == NULL) {
*returncode = LDAP_OPERATIONS_ERROR;
rc = SLAPI_DSE_CALLBACK_ERROR;
}
if (rc != SLAPI_DSE_CALLBACK_OK) {
slapi_task_finish(task, rc);
}
return rc;
}
|