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
|
/** BEGIN COPYRIGHT BLOCK
* Copyright (C) 2001 Sun Microsystems, Inc. Used by permission.
* Copyright (C) 2005 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
/*
* replutil.c - various utility functions common to all replication methods.
*/
#include <nspr.h>
#include <stdio.h>
#include <string.h>
#include <sys/types.h>
#include <errno.h>
#include <sys/file.h>
#include <sys/socket.h>
#include <unistd.h>
#include <fcntl.h>
#ifdef OS_solaris
#include <dlfcn.h> /* needed for dlopen and dlsym */
#endif /* solaris: dlopen */
#include <time.h>
#ifdef LINUX
#include <errno.h> /* weird use of errno */
#endif
#include "slapi-plugin.h"
#include "repl5.h"
typedef int (*open_fn)(const char *path, int flags, ...);
/* this is set during replication plugin initialization from the plugin entry */
static char *replpluginpath = NULL;
static PRBool is_chain_on_update_setup(const Slapi_DN *replroot);
/*
* All standard changeLogEntry attributes (initialized in get_cleattrs)
*/
static char *cleattrs[10] = {NULL, NULL, NULL, NULL, NULL, NULL,
NULL, NULL, NULL};
/*
* Function: get_cleattrs
*
* Returns: an array of pointers to attribute names.
*
* Arguments: None.
*
* Description: Initializes, if necessary, and returns an array of char *s
* with attribute names used for retrieving changeLogEntry
* entries from the directory.
*/
char **
get_cleattrs()
{
if (cleattrs[0] == NULL) {
cleattrs[0] = type_objectclass;
cleattrs[1] = repl_changenumber;
cleattrs[2] = repl_targetdn;
cleattrs[3] = repl_changetype;
cleattrs[4] = repl_newrdn;
cleattrs[5] = repl_deleteoldrdn;
cleattrs[6] = repl_changes;
cleattrs[7] = repl_newsuperior;
cleattrs[8] = repl_changetime;
cleattrs[9] = NULL;
}
return cleattrs;
}
/*
* Function: add_bval2mods
*
* Description: same as add_val2mods, but sticks in a bval instead.
* val can be null.
*/
void
add_bval2mods(LDAPMod **mod, char *type, char *val, int mod_op)
{
*mod = (LDAPMod *)slapi_ch_calloc(1, sizeof(LDAPMod));
memset(*mod, 0, sizeof(LDAPMod));
(*mod)->mod_op = mod_op | LDAP_MOD_BVALUES;
(*mod)->mod_type = slapi_ch_strdup(type);
if (val != NULL) {
(*mod)->mod_bvalues = (struct berval **)slapi_ch_calloc(2, sizeof(struct berval *));
(*mod)->mod_bvalues[0] = (struct berval *)slapi_ch_malloc(sizeof(struct berval));
(*mod)->mod_bvalues[1] = NULL;
(*mod)->mod_bvalues[0]->bv_len = strlen(val);
(*mod)->mod_bvalues[0]->bv_val = slapi_ch_strdup(val);
} else {
(*mod)->mod_bvalues = NULL;
}
}
char *
copy_berval(struct berval *from)
{
char *s = slapi_ch_malloc(from->bv_len + 1);
memcpy(s, from->bv_val, from->bv_len);
s[from->bv_len] = '\0';
return s;
}
/*
* Function: entry_print
* Arguments: e - entry to print
* Returns: nothing
* Description: Prints the contents of an Slapi_Entry struct. Used for debugging.
*/
void
entry_print(Slapi_Entry *e)
{
int sz;
char *p;
printf("Slapi_Entry dump:\n");
if (e == NULL) {
printf("Slapi_Entry is NULL\n");
return;
}
if ((p = slapi_entry2str(e, &sz)) == NULL) {
printf("slapi_entry2str returned NULL\n");
return;
}
puts(p);
fflush(stdout);
slapi_ch_free_string(&p);
return;
}
/* NSPR supports large file, but, according to dboreham, it does not work.
The backed has its own functions to deal with large files. I thought
about making them slapi function, but I don't think it makes sense because
server should only export function which have to do with its operation
and copying files is not one of them. So, instead, I made a copy of it in the
replication module. I will switch it to NSPR once that stuff works.
*/
int
copyfile(char *source, char *destination, int overwrite __attribute__((unused)), int mode)
{
#ifdef DB_USE_64LFS
#define OPEN_FUNCTION dblayer_open_large
#else
#define OPEN_FUNCTION open
#endif
int source_fd = -1;
int dest_fd = -1;
char *buffer = NULL;
int return_value = -1;
int bytes_to_write = 0;
/* allocate the buffer */
buffer = slapi_ch_malloc(64 * 1024);
if (NULL == buffer) {
slapi_log_err(SLAPI_LOG_ERR, repl_plugin_name, "copyfile - Memory allocation failed\n");
goto error;
}
/* Open source file */
source_fd = OPEN_FUNCTION(source, O_RDONLY, 0);
if (-1 == source_fd) {
slapi_log_err(SLAPI_LOG_ERR, repl_plugin_name,
"copyfile - Failed to open source file %s\n", source);
goto error;
}
/* Open destination file */
dest_fd = OPEN_FUNCTION(destination, O_CREAT | O_WRONLY, mode);
if (-1 == dest_fd) {
slapi_log_err(SLAPI_LOG_ERR, repl_plugin_name,
"copyfile - Failed to open destination file %s\n", destination);
goto error;
}
/* Loop round reading data and writing it */
while (1) {
return_value = read(source_fd, buffer, 64 * 1024);
if (return_value <= 0) {
/* means error or EOF */
break;
}
bytes_to_write = return_value;
return_value = write(dest_fd, buffer, bytes_to_write);
if (return_value != bytes_to_write) {
/* means error */
slapi_log_err(SLAPI_LOG_ERR, repl_plugin_name,
"copyfile - Failed to write to destination file %s\n", destination);
return_value = -1;
break;
}
}
error:
if (source_fd != -1) {
close(source_fd);
}
if (dest_fd != -1) {
close(dest_fd);
}
slapi_ch_free_string(&buffer);
return return_value;
}
const char *
changeType2Str(int type)
{
switch (type) {
case T_ADDCT:
return T_ADDCTSTR;
case T_MODIFYCT:
return T_MODIFYCTSTR;
case T_MODRDNCT:
return T_MODRDNCTSTR;
case T_DELETECT:
return T_DELETECTSTR;
default:
return NULL;
}
}
int
str2ChangeType(const char *str)
{
if (strcasecmp(str, T_ADDCTSTR) == 0)
return T_ADDCT;
if (strcasecmp(str, T_MODIFYCTSTR) == 0)
return T_MODIFYCT;
if (strcasecmp(str, T_MODRDNCTSTR) == 0)
return T_MODRDNCT;
if (strcasecmp(str, T_DELETECTSTR) == 0)
return T_DELETECT;
return -1;
}
lenstr *
make_changes_string(LDAPMod **ldm, char **includeattrs)
{
lenstr *l;
int i, j, len;
int skip;
/* loop through the LDAPMod struct and construct the changes attribute */
l = lenstr_new();
for (i = 0; ldm[i] != NULL; i++) {
/* If a list of explicit attributes was given, only add those */
if (NULL != includeattrs) {
skip = 1;
for (j = 0; includeattrs[j] != NULL; j++) {
if (strcasecmp(includeattrs[j], ldm[i]->mod_type) == 0) {
skip = 0;
break;
}
}
if (skip) {
continue;
}
}
switch (ldm[i]->mod_op & ~LDAP_MOD_BVALUES) {
case LDAP_MOD_ADD:
addlenstr(l, "add: ");
addlenstr(l, ldm[i]->mod_type);
addlenstr(l, "\n");
break;
case LDAP_MOD_DELETE:
addlenstr(l, "delete: ");
addlenstr(l, ldm[i]->mod_type);
addlenstr(l, "\n");
break;
case LDAP_MOD_REPLACE:
addlenstr(l, "replace: ");
addlenstr(l, ldm[i]->mod_type);
addlenstr(l, "\n");
break;
}
for (j = 0; ldm[i]->mod_bvalues != NULL &&
ldm[i]->mod_bvalues[j] != NULL;
j++) {
char *buf = NULL;
char *bufp = NULL;
len = strlen(ldm[i]->mod_type);
len = LDIF_SIZE_NEEDED(len,
ldm[i]->mod_bvalues[j]->bv_len) +
1;
buf = slapi_ch_malloc(len);
bufp = buf;
slapi_ldif_put_type_and_value_with_options(&bufp, ldm[i]->mod_type,
ldm[i]->mod_bvalues[j]->bv_val,
ldm[i]->mod_bvalues[j]->bv_len, 0);
*bufp = '\0';
addlenstr(l, buf);
slapi_ch_free_string(&buf);
}
addlenstr(l, "-\n");
}
return l;
}
/* note that the string get modified by ldif_parse*** functions */
Slapi_Mods *
parse_changes_string(char *str)
{
int rc;
Slapi_Mods *mods;
Slapi_Mod mod;
char *line, *next;
struct berval type, value;
struct berval bv_null = {0, NULL};
int freeval = 0;
/* allocate mods array */
mods = slapi_mods_new();
if (mods == NULL)
return NULL;
slapi_mods_init(mods, 16); /* JCMREPL - ONREPL : 16 bigger than needed? */
/* parse mods */
next = str;
line = ldif_getline(&next);
while (line) {
slapi_mod_init(&mod, 0);
while (line) {
if (strcasecmp(line, "-") == 0) {
if (slapi_mod_isvalid(&mod)) {
slapi_mods_add_smod(mods, &mod);
} else {
/* need to cleanup */
slapi_mod_done(&mod);
}
line = ldif_getline(&next);
break;
}
type = bv_null;
value = bv_null;
rc = slapi_ldif_parse_line(line, &type, &value, &freeval);
if (rc != 0) {
/* ONREPL - log warning */
slapi_log_err(SLAPI_LOG_REPL, repl_plugin_name,
"Failed to parse the ldif line.\n");
continue;
}
if (strncasecmp(type.bv_val, "add", type.bv_len) == 0) {
slapi_mod_set_operation(&mod, LDAP_MOD_ADD | LDAP_MOD_BVALUES);
} else if (strncasecmp(type.bv_val, "delete", type.bv_len) == 0) {
slapi_mod_set_operation(&mod, LDAP_MOD_DELETE | LDAP_MOD_BVALUES);
} else if (strncasecmp(type.bv_val, "replace", type.bv_len) == 0) {
slapi_mod_set_operation(&mod, LDAP_MOD_REPLACE | LDAP_MOD_BVALUES);
} else /* attr: value pair */
{
/* adding first value */
if (slapi_mod_get_type(&mod) == NULL) {
slapi_mod_set_type(&mod, type.bv_val);
}
slapi_mod_add_value(&mod, &value);
}
if (freeval) {
slapi_ch_free_string(&value.bv_val);
}
line = ldif_getline(&next);
}
}
return mods;
}
static void *g_plg_identity[PLUGIN_MAX];
void *
repl_get_plugin_identity(int pluginID)
{
PR_ASSERT(pluginID < PLUGIN_MAX);
return g_plg_identity[pluginID];
}
void
repl_set_plugin_identity(int pluginID, void *identity)
{
PR_ASSERT(pluginID < PLUGIN_MAX);
g_plg_identity[pluginID] = identity;
}
/* this function validates operation parameters */
PRBool
IsValidOperation(const slapi_operation_parameters *op)
{
if (op == NULL) {
slapi_log_err(SLAPI_LOG_ERR, repl_plugin_name,
"IsValidOperation - NULL operation\n");
return PR_FALSE;
}
if (op->csn == NULL) {
slapi_log_err(SLAPI_LOG_ERR, repl_plugin_name,
"IsValidOperation - NULL operation CSN\n");
return PR_FALSE;
}
if (op->target_address.uniqueid == NULL) {
slapi_log_err(SLAPI_LOG_ERR, repl_plugin_name,
"IsValidOperation - NULL entry uniqueid\n");
return PR_FALSE;
}
if (op->target_address.sdn == NULL) {
slapi_log_err(SLAPI_LOG_ERR, repl_plugin_name,
"IsValidOperation - NULL entry DN\n");
return PR_FALSE;
}
switch (op->operation_type) {
case SLAPI_OPERATION_ADD:
if (op->p.p_add.target_entry == NULL) {
slapi_log_err(SLAPI_LOG_ERR, repl_plugin_name,
"IsValidOperation - NULL entry for add operation\n");
return PR_FALSE;
} else
break;
case SLAPI_OPERATION_MODIFY:
if (op->p.p_modify.modify_mods == NULL ||
op->p.p_modify.modify_mods[0] == NULL) {
slapi_log_err(SLAPI_LOG_ERR, repl_plugin_name,
"IsValidOperation - NULL mods for modify operation\n");
return PR_FALSE;
} else
break;
case SLAPI_OPERATION_MODRDN:
if (op->p.p_modrdn.modrdn_mods == NULL ||
op->p.p_modrdn.modrdn_mods[0] == NULL) {
slapi_log_err(SLAPI_LOG_ERR, repl_plugin_name,
"IsValidOperation - NULL mods for modrdn operation\n");
return PR_FALSE;
}
if (op->p.p_modrdn.modrdn_newrdn == NULL) {
slapi_log_err(SLAPI_LOG_ERR, repl_plugin_name,
"IsValidOperation - NULL new rdn for modrdn operation\n");
return PR_FALSE;
} else
break;
case SLAPI_OPERATION_DELETE:
break;
default:
return PR_FALSE;
}
return PR_TRUE;
}
const char *
map_repl_root_to_dbid(Slapi_DN *repl_root)
{
const char *return_ptr;
PR_ASSERT(NULL != repl_root);
if (NULL != repl_root) {
/* XXXggood get per-database ID here, when code available */
}
return_ptr = get_server_dataversion(); /* XXXggood temporary hack until we have per-database instance dbids */
return return_ptr;
}
PRBool
is_ruv_tombstone_entry(Slapi_Entry *e)
{
char *dn;
char *match;
PR_ASSERT(e);
dn = slapi_entry_get_dn(e);
PR_ASSERT(dn);
/* tombstone has rdn: nsuniqueid=ffffffff-ffffffff-ffffffff-ffffffff */
match = strstr(dn, RUV_STORAGE_ENTRY_UNIQUEID);
return (match != NULL);
}
LDAPControl *
create_managedsait_control()
{
LDAPControl *control;
control = (LDAPControl *)slapi_ch_malloc(sizeof(LDAPControl));
control->ldctl_oid = slapi_ch_strdup(LDAP_CONTROL_MANAGEDSAIT);
control->ldctl_value.bv_val = NULL;
control->ldctl_value.bv_len = 0;
control->ldctl_iscritical = '\0';
return control;
}
LDAPControl *
create_backend_control(Slapi_DN *sdn)
{
LDAPControl *control = NULL;
const char *be_name = slapi_mtn_get_backend_name(sdn);
if (NULL != be_name) {
control = (LDAPControl *)slapi_ch_malloc(sizeof(LDAPControl));
control->ldctl_oid = slapi_ch_strdup("2.16.840.1.113730.3.4.14");
control->ldctl_value.bv_val = slapi_ch_strdup(be_name);
control->ldctl_value.bv_len = strlen(be_name);
control->ldctl_iscritical = 1;
}
return control;
}
/*
* HREF_CHAR_ACCEPTABLE was copied from slapd/referral.c
* which was copied from libldap/tmplout.c.
*/
/* Note: an identical function is in ../../slapd/referral.c */
#define HREF_CHAR_ACCEPTABLE(c) ((c >= '-' && c <= '9') || \
(c >= '@' && c <= 'Z') || \
(c == '_') || \
(c >= 'a' && c <= 'z'))
/*
* Function: strcat_escaped
*
* Returns: nothing
*
* Description: Appends string s2 to s1, URL-escaping (%HH) unsafe
* characters in s2 as appropriate. This function was
* copied from slapd/referral.c.
* which was copied from libldap/tmplout.c.
* added const qualifier
*
* Author: MCS
*/
/*
* append s2 to s1, URL-escaping (%HH) unsafe characters
*/
/* Note: an identical function is in ../../slapd/referral.c */
static void
strcat_escaped(char *s1, const char *s2)
{
char *p, *q;
char *hexdig = "0123456789ABCDEF";
p = s1 + strlen(s1);
for (q = (char *)s2; *q != '\0'; ++q) {
if (HREF_CHAR_ACCEPTABLE(*q)) {
*p++ = *q;
} else {
*p++ = '%';
*p++ = hexdig[0x0F & ((*(unsigned char *)q) >> 4)];
*p++ = hexdig[0x0F & *q];
}
}
*p = '\0';
}
/*
This function appends the replication root to the purl referrals found
in the given ruv and the other given referrals, merges the lists, and sets the
referrals in the mapping tree node corresponding to the given sdn, which is the
repl_root
This function also sets the mapping tree state (e.g. disabled, backend, referral,
referral on update) - the mapping tree has very specific rules about how states
can be set in the presence of referrals - specifically:
1) the nsslapd-referral attribute must be set before changing the state to referral
or referral on update
2) the state must be set to backend or disabled before removing referrals
*/
void
repl_set_mtn_state_and_referrals(
const Slapi_DN *repl_root_sdn,
const char *mtn_state,
const RUV *ruv,
char **ruv_referrals,
char **other_referrals)
{
int rc = 0;
int ii = 0;
char **referrals_to_set = NULL;
PRBool chain_on_update = is_chain_on_update_setup(repl_root_sdn);
if (NULL == mtn_state) {
slapi_log_err(SLAPI_LOG_ERR, repl_plugin_name,
"repl_set_mtn_state_and_referrals - Cannot set NULL state.\n");
return;
}
/* Fix for blackflag bug 601440: We want the new behaviour of DS,
** going forward, to now be that if the nsds5replicareferral attrib
** has values, it should be the only values in nsslapd-referral (as
** opposed to older behaviour of concatenating with RUV-based
** referrals). -jay@netscape.com
*/
if (other_referrals) {
/* use the referrals passed in, instead of RUV-based referrals */
charray_merge(&referrals_to_set, other_referrals, 1);
/* Do copies. referrals is freed at the end */
} else {
/* use the referrals from the RUV */
ruv_referrals = (ruv ? ruv_get_referrals(ruv) : ruv_referrals);
if (ruv_referrals) {
charray_merge(&referrals_to_set, ruv_referrals, 1);
if (ruv) /* free referrals from ruv_get_referrals() */
charray_free(ruv_referrals);
}
}
/* next, add the repl root dn to each referral if not present */
for (ii = 0; referrals_to_set && referrals_to_set[ii]; ++ii) {
LDAPURLDesc *lud = NULL;
(void)slapi_ldap_url_parse(referrals_to_set[ii], &lud, 0, NULL);
/* see if the dn is already in the referral URL */
if (!lud || !lud->lud_dn) {
/* add the dn */
int len = strlen(referrals_to_set[ii]);
const char *cdn = slapi_sdn_get_dn(repl_root_sdn);
char *tmpref = NULL;
int need_slash = 0;
if (referrals_to_set[ii][len - 1] != '/') {
len++; /* add another one for the slash */
need_slash = 1;
}
len += (strlen(cdn) * 3) + 2; /* 3 for %HH possible per char */
tmpref = slapi_ch_malloc(len);
sprintf(tmpref, "%s%s", referrals_to_set[ii], (need_slash ? "/" : ""));
strcat_escaped(tmpref, cdn);
slapi_ch_free((void **)&referrals_to_set[ii]);
referrals_to_set[ii] = tmpref;
}
if (lud)
ldap_free_urldesc(lud);
}
if (!referrals_to_set) { /* deleting referrals */
/* Set state before */
if (!chain_on_update) {
slapi_mtn_set_state(repl_root_sdn, (char *)mtn_state);
}
/* We should delete referral only if we want to set the
replica database in backend state mode */
/* if chain on update mode, go ahead and set the referrals anyway */
if (strcasecmp(mtn_state, STATE_BACKEND) == 0 || chain_on_update) {
rc = slapi_mtn_set_referral(repl_root_sdn, referrals_to_set);
if (rc == LDAP_NO_SUCH_ATTRIBUTE) {
/* we will get no such attribute (16) if we try to set the referrals to NULL if
there are no referrals - not an error */
rc = LDAP_SUCCESS;
}
}
} else { /* Replacing */
rc = slapi_mtn_set_referral(repl_root_sdn, referrals_to_set);
if (rc == LDAP_SUCCESS && !chain_on_update) {
slapi_mtn_set_state(repl_root_sdn, (char *)mtn_state);
}
}
if (rc != LDAP_SUCCESS && rc != LDAP_TYPE_OR_VALUE_EXISTS) {
slapi_log_err(SLAPI_LOG_ERR, repl_plugin_name, "repl_set_mtn_state_and_referrals - "
"Could not set referrals for replica %s: %d\n",
slapi_sdn_get_dn(repl_root_sdn), rc);
}
charray_free(referrals_to_set);
return;
}
/*
* This function allows to use a local backend in conjunction with
* a chaining backend
* The local ldbm backend is the replication consumer database
* (e.g. on a hub or consumer) - it is read-only except for supplier updates
* The chaining backend points to the supplier(s)
* This distribution logic forwards the update request to the chaining
* backend, and sends the search request to the local ldbm database
*
* To be able to use it one must define one ldbm backend and one chaining
* backend in the mapping tree node - the ldbm backend will usually
* already be there
*
*/
int
repl_chain_on_update(Slapi_PBlock *pb, Slapi_DN *target_dn __attribute__((unused)), char **mtn_be_names, int be_count, Slapi_DN *node_dn __attribute__((unused)), int *mtn_be_states, int root_mode)
{
char *requestor_dn;
unsigned long op_type;
Slapi_Operation *op;
int repl_op = 0;
int local_backend = -1; /* index of local backend */
int chaining_backend = -1; /* index of chain backend */
#ifdef DEBUG_CHAIN_ON_UPDATE
int is_internal = 0;
#endif
PRBool local_online = PR_FALSE; /* true if the local db is online */
int ii;
int opid;
#ifdef DEBUG_CHAIN_ON_UPDATE
PRUint64 connid = 0;
#endif
slapi_pblock_get(pb, SLAPI_OPERATION, &op);
#ifdef DEBUG_CHAIN_ON_UPDATE
if (operation_is_flag_set(op, OP_FLAG_INTERNAL)) {
is_internal = 1;
} else {
slapi_pblock_get(pb, SLAPI_CONN_ID, &connid);
}
#endif
slapi_pblock_get(pb, SLAPI_OPERATION_ID, &opid);
/* first, we have to decide which backend is the local backend
* and which is the chaining one
* also find out if any are not online (e.g. during import)
*/
for (ii = 0; ii < be_count; ++ii) {
Slapi_Backend *be = slapi_be_select_by_instance_name(mtn_be_names[ii]);
if (be) {
if (slapi_be_is_flag_set(be, SLAPI_BE_FLAG_REMOTE_DATA)) {
chaining_backend = ii;
} else {
local_backend = ii;
if (mtn_be_states[ii] == SLAPI_BE_STATE_ON) {
local_online = PR_TRUE;
}
}
#ifdef DEBUG_CHAIN_ON_UPDATE
if (is_internal) {
slapi_log_err(SLAPI_LOG_REPL, repl_plugin_name, "repl_chain_on_update - conn=-1 op=%d be "
"%s is the %s backend and is %s\n",
opid,
mtn_be_names[ii], (chaining_backend == ii) ? "chaining" : "local",
(mtn_be_states[ii] == SLAPI_BE_STATE_ON) ? "online" : "offline");
} else {
slapi_log_err(SLAPI_LOG_REPL, repl_plugin_name, "repl_chain_on_update - conn=%" PRIu64 " op=%d be "
"%s is the %s backend and is %s\n",
connid, opid,
mtn_be_names[ii], (chaining_backend == ii) ? "chaining" : "local",
(mtn_be_states[ii] == SLAPI_BE_STATE_ON) ? "online" : "offline");
}
#endif
} else {
/* A chaining backend will not be found during import. We will just return the
* local backend in this case, which seems like the right thing to do to allow
* offline replication initialization. */
#ifdef DEBUG_CHAIN_ON_UPDATE
if (is_internal) {
slapi_log_err(SLAPI_LOG_REPL, repl_plugin_name, "repl_chain_on_update - conn=-1 op=%d be "
"%s not found. Assuming it is the chaining backend and we are doing an import.\n",
opid, mtn_be_names[ii]);
} else {
slapi_log_err(SLAPI_LOG_REPL, repl_plugin_name, "repl_chain_on_update - conn=%" PRIu64 " op=%d be "
"%s not found. Assuming it is the chaining backend and we are doing an import.\n",
connid, opid, mtn_be_names[ii]);
}
#endif
}
}
/* if no chaining backends are defined, just use the local one */
if (chaining_backend == -1) {
return local_backend;
}
/* All internal operations go to the local backend */
if (operation_is_flag_set(op, OP_FLAG_INTERNAL)) {
return local_backend;
}
/* Check the operation type
* read-only operation will go to the local backend if online
*/
op_type = slapi_op_get_type(op);
if (local_online &&
((op_type == SLAPI_OPERATION_SEARCH) ||
(op_type == SLAPI_OPERATION_UNBIND) ||
(op_type == SLAPI_OPERATION_COMPARE))) {
#ifdef DEBUG_CHAIN_ON_UPDATE
if (is_internal) {
slapi_log_err(SLAPI_LOG_REPL, repl_plugin_name, "repl_chain_on_update - conn=-1 op=%d op is "
"%d: using local backend\n",
opid, op_type);
} else {
slapi_log_err(SLAPI_LOG_REPL, repl_plugin_name, "repl_chain_on_update - conn=%" PRIu64 " op=%d op is "
"%d: using local backend\n",
connid, opid, op_type);
}
#endif
return local_backend;
}
/* if the operation is done by directory manager
* use local database even for updates because it is an administrative
* operation
* remarks : one could also use an update DN in the same way
* to let update operation go to the local backend when they are done
* by specific administrator user but let all the other user
* go to the read-write replica
* also - I don't think it is possible to chain directory manager
*/
slapi_pblock_get(pb, SLAPI_REQUESTOR_DN, &requestor_dn);
if (slapi_dn_isroot(requestor_dn)) {
#ifdef DEBUG_CHAIN_ON_UPDATE
if (is_internal) {
slapi_log_err(SLAPI_LOG_REPL, repl_plugin_name, "repl_chain_on_update - conn=-1 op=%d requestor "
"is root - using local backend\n",
opid);
} else {
slapi_log_err(SLAPI_LOG_REPL, repl_plugin_name, "repl_chain_on_update - conn=%" PRIu64 " op=%d requestor "
"is root: using local backend\n",
connid, opid);
}
#endif
if (root_mode == CHAIN_ROOT_UPDATE_LOCAL)
return local_backend;
else if (root_mode == CHAIN_ROOT_UPDATE_REJECT)
return (SLAPI_BE_NO_BACKEND);
else if (root_mode == CHAIN_ROOT_UPDATE_REFERRAL)
return (SLAPI_BE_REMOTE_BACKEND);
}
/* if the operation is a replicated operation
* use local database even for updates to avoid infinite loops
*/
slapi_pblock_get(pb, SLAPI_IS_REPLICATED_OPERATION, &repl_op);
if (repl_op) {
#ifdef DEBUG_CHAIN_ON_UPDATE
if (is_internal) {
slapi_log_err(SLAPI_LOG_REPL, repl_plugin_name, "repl_chain_on_update - conn=-1 op=%d op is "
"replicated: using local backend\n",
opid);
} else {
slapi_log_err(SLAPI_LOG_REPL, repl_plugin_name, "repl_chain_on_update - conn=%" PRIu64 " op=%d op is "
"replicated: using local backend\n",
connid, opid);
}
#endif
return local_backend;
}
/* if using global password policy, chain the bind request so that the
supplier can update and replicate the password policy op attrs */
if (op_type == SLAPI_OPERATION_BIND) {
extern int config_get_pw_is_global_policy(void);
if (!config_get_pw_is_global_policy()) {
#ifdef DEBUG_CHAIN_ON_UPDATE
if (is_internal) {
slapi_log_err(SLAPI_LOG_REPL, repl_plugin_name, "repl_chain_on_update - conn=-1 op=%d using "
"local backend for local password policy\n",
opid);
} else {
slapi_log_err(SLAPI_LOG_REPL, repl_plugin_name, "repl_chain_on_update - conn=%" PRIu64 " op=%d using "
"local backend for local password policy\n",
connid, opid);
}
#endif
return local_backend;
}
}
/* all other cases :
* or any normal non replicated client operation while local is disabled (import) :
* use the chaining backend
*/
#ifdef DEBUG_CHAIN_ON_UPDATE
if (is_internal) {
slapi_log_err(SLAPI_LOG_REPL, repl_plugin_name, "repl_chain_on_update - conn=-1 op=%d using "
"chaining backend\n",
opid);
} else {
slapi_log_err(SLAPI_LOG_REPL, repl_plugin_name, "repl_chain_on_update: conn=%" PRIu64 " op=%d using "
"chaining backend\n",
connid, opid);
}
#endif
return chaining_backend;
}
int
repl_enable_chain_on_update(Slapi_DN *suffix)
{
/* Submit a Modify operation to add the distribution function to the mapping tree
node for the given suffix */
slapi_mods smods;
int operation_result;
Slapi_PBlock *pb = slapi_pblock_new();
Slapi_DN *mtnnodesdn;
slapi_mods_init(&smods, 2);
/* need path and file name of the replication plugin here */
slapi_mods_add_string(&smods, LDAP_MOD_ADD, "nsslapd-distribution-plugin", replpluginpath);
slapi_mods_add_string(&smods, LDAP_MOD_ADD, "nsslapd-distribution-funct", "repl_chain_on_update");
/* need DN of mapping tree node here */
mtnnodesdn = slapi_get_mapping_tree_node_configsdn(suffix);
slapi_modify_internal_set_pb_ext(
pb,
mtnnodesdn,
slapi_mods_get_ldapmods_byref(&smods), /* JCM cast */
NULL, /*Controls*/
NULL, /*uniqueid*/
repl_get_plugin_identity(PLUGIN_MULTISUPPLIER_REPLICATION),
0);
slapi_modify_internal_pb(pb);
slapi_pblock_get(pb, SLAPI_PLUGIN_INTOP_RESULT, &operation_result);
slapi_sdn_free(&mtnnodesdn);
slapi_pblock_destroy(pb);
switch (operation_result) {
case LDAP_SUCCESS:
/* OK, everything is fine. */
break;
default:
PR_ASSERT(0); /* JCMREPL FOR DEBUGGING */
}
slapi_mods_done(&smods);
return operation_result;
}
int
repl_disable_chain_on_update(Slapi_DN *suffix)
{
/* Submit a Modify operation to remove the distribution function from the mapping tree
node for the given suffix */
slapi_mods smods;
int operation_result;
Slapi_PBlock *pb = slapi_pblock_new();
Slapi_DN *mtnnodesdn;
slapi_mods_init(&smods, 2);
slapi_mods_add_modbvps(&smods, LDAP_MOD_DELETE, "nsslapd-distribution-plugin", NULL);
slapi_mods_add_modbvps(&smods, LDAP_MOD_DELETE, "nsslapd-distribution-funct", NULL);
/* need DN of mapping tree node here */
mtnnodesdn = slapi_get_mapping_tree_node_configsdn(suffix);
slapi_modify_internal_set_pb_ext(
pb,
mtnnodesdn,
slapi_mods_get_ldapmods_byref(&smods), /* JCM cast */
NULL, /*Controls*/
NULL, /*uniqueid*/
repl_get_plugin_identity(PLUGIN_MULTISUPPLIER_REPLICATION),
0);
slapi_modify_internal_pb(pb);
slapi_pblock_get(pb, SLAPI_PLUGIN_INTOP_RESULT, &operation_result);
slapi_sdn_free(&mtnnodesdn);
slapi_pblock_destroy(pb);
switch (operation_result) {
case LDAP_SUCCESS:
/* OK, everything is fine. */
break;
default:
PR_ASSERT(0); /* JCMREPL FOR DEBUGGING */
}
slapi_mods_done(&smods);
return operation_result;
}
static PRBool
is_chain_on_update_setup(const Slapi_DN *replroot)
{
/* Do an internal search of the mapping tree node to see if chain on update is setup
for this replica
- has two backends
- has a distribution function
- has a distribution plugin
- one of the backends is a ldbm database
- one of the backends is a chaining database
*/
static char *attrs[] = {"nsslapd-backend",
"nsslapd-distribution-plugin", "nsslapd-distribution-funct",
NULL};
int operation_result;
Slapi_PBlock *pb = slapi_pblock_new();
char *mtnnodedn = slapi_get_mapping_tree_node_configdn(replroot);
PRBool retval = PR_FALSE;
slapi_search_internal_set_pb(
pb,
mtnnodedn,
LDAP_SCOPE_BASE,
"objectclass=*",
attrs, /*attrs*/
0, /*attrsonly*/
NULL, /*Controls*/
NULL, /*uniqueid*/
repl_get_plugin_identity(PLUGIN_MULTISUPPLIER_REPLICATION),
0);
slapi_search_internal_pb(pb);
slapi_pblock_get(pb, SLAPI_PLUGIN_INTOP_RESULT, &operation_result);
switch (operation_result) {
case LDAP_SUCCESS: {
Slapi_Entry **entries = NULL;
slapi_pblock_get(pb, SLAPI_PLUGIN_INTOP_SEARCH_ENTRIES, &entries);
if (entries != NULL && entries[0] != NULL) {
Slapi_Entry *e = entries[0];
char **backends = slapi_entry_attr_get_charray(e, "nsslapd-backend");
const char *plg = slapi_entry_attr_get_ref(e, "nsslapd-distribution-plugin");
const char *func = slapi_entry_attr_get_ref(e, "nsslapd-distribution-funct");
if (backends && backends[0] && backends[1] && plg && func) {
/* all the necessary attrs are present - check to see if we
have one chaining backend */
Slapi_Backend *be0 = slapi_be_select_by_instance_name(backends[0]);
Slapi_Backend *be1 = slapi_be_select_by_instance_name(backends[1]);
PRBool foundchain0 = slapi_be_is_flag_set(be0, SLAPI_BE_FLAG_REMOTE_DATA);
PRBool foundchain1 = slapi_be_is_flag_set(be1, SLAPI_BE_FLAG_REMOTE_DATA);
retval = (foundchain0 || foundchain1) &&
!(foundchain0 && foundchain1); /* 1 (but not both) backend is chaining */
}
slapi_ch_array_free(backends);
} else /* could not find mapping tree entry - assume not set up */
{
}
} break;
default: /* search error - assume not set up */
break;
}
slapi_ch_free_string(&mtnnodedn);
slapi_free_search_results_internal(pb);
slapi_pblock_destroy(pb);
return retval;
}
void
repl_set_repl_plugin_path(const char *path)
{
replpluginpath = slapi_ch_strdup(path);
}
int
repl_config_valid_num(const char *config_attr, char *config_attr_value, int64_t min, int64_t max,
int *returncode, char *errortext, int64_t *retval)
{
int rc = 0;
char *endp = NULL;
int64_t val;
errno = 0;
val = strtol(config_attr_value, &endp, 10);
if (*endp != '\0' || val < min || val > max || errno == ERANGE) {
*returncode = LDAP_UNWILLING_TO_PERFORM;
if (errortext){
PR_snprintf(errortext, SLAPI_DSE_RETURNTEXT_SIZE,
"Attribute %s value (%s) is invalid, must be a number between %" PRId64 " and %" PRId64 ".",
config_attr, config_attr_value, min, max);
slapi_log_err(SLAPI_LOG_ERR, repl_plugin_name, "repl_config_valid_num - %s\n",
errortext);
}
rc = -1;
} else {
*retval = val;
}
return rc;
}
|