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 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996
|
/** 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
/* search.c - ldbm backend search function */
/* view with ts=4 */
#include <ldap.h>
#include "back-ldbm.h"
#include "vlv_srch.h"
/*
* Used for ldap_result passed to ldbm_back_search_cleanup.
* If (ldap_result == LDBM_SRCH_DEFAULT_RESULT) || (ldap_result == LDAP_SUCCESS),
* don't call slapi_send_ldap_result.
* Note: openldap result codes could be negative values. OL (-1) is LDAP_SERVER_DOWN.
* Thus, it's safe to borrow the value here.
*/
#define LDBM_SRCH_DEFAULT_RESULT (-1)
/* prototypes */
static int build_candidate_list(Slapi_PBlock *pb, backend *be, struct backentry *e, const char *base, int scope, int *lookup_returned_allidsp, IDList **candidates);
static IDList *base_candidates(Slapi_PBlock *pb, struct backentry *e);
static IDList *onelevel_candidates(Slapi_PBlock *pb, backend *be, const char *base, Slapi_Filter *filter, int *lookup_returned_allidsp, int *err);
static back_search_result_set *new_search_result_set(IDList *idl, int vlv, int lookthroughlimit);
static void delete_search_result_set(Slapi_PBlock *pb, back_search_result_set **sr);
static int can_skip_filter_test(Slapi_PBlock *pb, struct slapi_filter *f, int scope, IDList *idl);
/* This is for performance testing, allows us to disable ACL checking altogether */
#if defined(DISABLE_ACL_CHECK)
#define ACL_CHECK_FLAG 0
#else
#define ACL_CHECK_FLAG 1
#endif
#define ISLEGACY(be) (be ? (be->be_instance_info ? (((ldbm_instance *)be->be_instance_info)->inst_li ? (((ldbm_instance *)be->be_instance_info)->inst_li->li_legacy_errcode) : 0) : 0) : 0)
int
compute_lookthrough_limit(Slapi_PBlock *pb, struct ldbminfo *li)
{
Slapi_Connection *conn = NULL;
int limit;
Slapi_Operation *op;
int isroot = 0;
slapi_pblock_get(pb, SLAPI_REQUESTOR_ISROOT, &isroot);
slapi_pblock_get(pb, SLAPI_CONNECTION, &conn);
slapi_pblock_get(pb, SLAPI_OPERATION, &op);
if (isroot) {
limit = -1;
} else {
if (op_is_pagedresults(op)) {
if (slapi_reslimit_get_integer_limit(conn,
li->li_reslimit_pagedlookthrough_handle, &limit) != SLAPI_RESLIMIT_STATUS_SUCCESS)
{
PR_Lock(li->li_config_mutex);
if (li->li_pagedlookthroughlimit) {
limit = li->li_pagedlookthroughlimit;
} else {
/* No paged search lookthroughlimit, so use dbi_db_t lookthroughlimit.
* First check if we have a "resource limit" that applies to this
* connection, otherwise use the global dbi_db_t lookthroughlimit
*/
if (slapi_reslimit_get_integer_limit(conn,
li->li_reslimit_lookthrough_handle, &limit) != SLAPI_RESLIMIT_STATUS_SUCCESS)
{
/* Default to global dbi_db_t lookthroughlimit */
limit = li->li_lookthroughlimit;
}
}
/* else set above */
PR_Unlock(li->li_config_mutex);
}
} else {
/* Regular search */
if (slapi_reslimit_get_integer_limit(conn,
li->li_reslimit_lookthrough_handle, &limit) != SLAPI_RESLIMIT_STATUS_SUCCESS)
{
/*
* no limit associated with binder/connection or some other error
* occurred. use the default.
*/
PR_Lock(li->li_config_mutex);
limit = li->li_lookthroughlimit;
PR_Unlock(li->li_config_mutex);
}
}
}
return (limit);
}
int
compute_allids_limit(Slapi_PBlock *pb, struct ldbminfo *li)
{
Slapi_Connection *conn = NULL;
int limit;
Slapi_Operation *op;
slapi_pblock_get(pb, SLAPI_CONNECTION, &conn);
slapi_pblock_get(pb, SLAPI_OPERATION, &op);
if (slapi_reslimit_get_integer_limit(conn,
li->li_reslimit_allids_handle, &limit) != SLAPI_RESLIMIT_STATUS_SUCCESS) {
PR_Lock(li->li_config_mutex);
limit = li->li_allidsthreshold;
PR_Unlock(li->li_config_mutex);
}
if (op_is_pagedresults(op)) {
if (slapi_reslimit_get_integer_limit(conn,
li->li_reslimit_pagedallids_handle, &limit) != SLAPI_RESLIMIT_STATUS_SUCCESS) {
PR_Lock(li->li_config_mutex);
if (li->li_pagedallidsthreshold) {
limit = li->li_pagedallidsthreshold;
}
PR_Unlock(li->li_config_mutex);
}
}
return (limit);
}
/* don't free the berval, just clean it */
static void
berval_done(struct berval *val)
{
slapi_ch_free_string(&val->bv_val);
}
/*
* We call this function as we exit ldbm_back_search
*/
static int
ldbm_back_search_cleanup(Slapi_PBlock *pb,
struct ldbminfo *li __attribute__((unused)),
sort_spec_thing *sort_control,
int ldap_result,
char *ldap_result_description,
int function_result,
struct vlv_request *vlv_request_control,
struct backentry *e,
IDList *candidates)
{
int estimate = 0; /* estimated search result count */
backend *be;
ldbm_instance *inst;
back_search_result_set *sr = NULL;
int free_candidates = 1;
slapi_pblock_get(pb, SLAPI_BACKEND, &be);
inst = (ldbm_instance *)be->be_instance_info;
/*
* In case SLAPI_BE_FLAG_DONT_BYPASS_FILTERTEST is set,
* clean it up for the following sessions.
*/
slapi_be_unset_flag(be, SLAPI_BE_FLAG_DONT_BYPASS_FILTERTEST);
CACHE_RETURN(&inst->inst_cache, &e); /* NULL e is handled correctly */
if (inst->inst_ref_count) {
slapi_counter_decrement(inst->inst_ref_count);
}
if (sort_control != NULL) {
sort_spec_free(sort_control);
}
if ((ldap_result != LDBM_SRCH_DEFAULT_RESULT) && (ldap_result != LDAP_SUCCESS)) {
slapi_send_ldap_result(pb, ldap_result, NULL, ldap_result_description, 0, NULL);
}
/* code to free the result set if we don't need it */
/* We get it and check to see if the structure was ever used */
slapi_pblock_get(pb, SLAPI_SEARCH_RESULT_SET, &sr);
if (sr) {
if (function_result) { /* failed case */
slapi_pblock_set(pb, SLAPI_SEARCH_RESULT_SET_SIZE_ESTIMATE, &estimate);
slapi_pblock_set(pb, SLAPI_SEARCH_RESULT_ENTRY, NULL);
if (sr->sr_candidates == candidates) {
free_candidates = 0;
}
delete_search_result_set(pb, &sr);
} else if (sr->sr_candidates == candidates) { /* succeeded case */
free_candidates = 0;
}
}
if (free_candidates) {
idl_free(&candidates);
}
if (vlv_request_control) {
berval_done(&vlv_request_control->value);
}
return function_result;
}
static int
ldbm_search_compile_filter(Slapi_Filter *f, void *arg __attribute__((unused)))
{
int rc = SLAPI_FILTER_SCAN_CONTINUE;
if (f->f_choice == LDAP_FILTER_SUBSTRINGS) {
char pat[BUFSIZ];
char *p, *end, *bigpat = NULL;
size_t size = 0;
Slapi_Regex *re = NULL;
char *re_result = NULL;
int i = 0;
PR_ASSERT(NULL == f->f_un.f_un_sub.sf_private);
/*
* construct a regular expression corresponding to the filter
*/
pat[0] = '\0';
p = pat;
end = pat + sizeof(pat) - 2; /* leave room for null */
if (f->f_sub_initial != NULL) {
size = strlen(f->f_sub_initial) + 1; /* add 1 for "^" */
}
while (f->f_sub_any && f->f_sub_any[i]) {
size += strlen(f->f_sub_any[i++]) + 2; /* add 2 for ".*" */
}
if (f->f_sub_final != NULL) {
size += strlen(f->f_sub_final) + 3; /* add 3 for ".*" and "$" */
}
size *= 2; /* doubled in case all filter chars need escaping (regex special chars) */
size++; /* add 1 for null */
if (p + size > end) {
bigpat = slapi_ch_malloc(size);
p = bigpat;
}
if (f->f_sub_initial != NULL) {
*p++ = '^';
p = filter_strcpy_special_ext(p, f->f_sub_initial, FILTER_STRCPY_ESCAPE_RECHARS);
}
for (i = 0; f->f_sub_any && f->f_sub_any[i]; i++) {
/* ".*" + value */
*p++ = '.';
*p++ = '*';
p = filter_strcpy_special_ext(p, f->f_sub_any[i], FILTER_STRCPY_ESCAPE_RECHARS);
}
if (f->f_sub_final != NULL) {
/* ".*" + value */
*p++ = '.';
*p++ = '*';
p = filter_strcpy_special_ext(p, f->f_sub_final, FILTER_STRCPY_ESCAPE_RECHARS);
strcat(p, "$");
}
/* compile the regex */
p = bigpat ? bigpat : pat;
re = slapi_re_comp(p, &re_result);
if (NULL == re) {
slapi_log_err(SLAPI_LOG_ERR, "ldbm_search_compile_filter", "re_comp (%s) failed (%s): %s\n",
pat, p, re_result ? re_result : "unknown");
slapi_ch_free_string(&re_result);
rc = SLAPI_FILTER_SCAN_ERROR;
} else {
char ebuf[BUFSIZ];
slapi_log_err(SLAPI_LOG_TRACE, "ldbm_search_compile_filter", "re_comp (%s)\n",
escape_string(p, ebuf));
f->f_un.f_un_sub.sf_private = (void *)re;
}
} else if (f->f_choice == LDAP_FILTER_EQUALITY) {
/* store the flags in the ava_private - should be ok - points
to itself - no dangling references */
f->f_un.f_un_ava.ava_private = &f->f_flags;
}
return rc;
}
static int
ldbm_search_free_compiled_filter(Slapi_Filter *f, void *arg __attribute__((unused)))
{
int rc = SLAPI_FILTER_SCAN_CONTINUE;
if ((f->f_choice == LDAP_FILTER_SUBSTRINGS) &&
(f->f_un.f_un_sub.sf_private)) {
slapi_re_free((Slapi_Regex *)f->f_un.f_un_sub.sf_private);
f->f_un.f_un_sub.sf_private = NULL;
} else if (f->f_choice == LDAP_FILTER_EQUALITY) {
/* clear the flags in the ava_private */
f->f_un.f_un_ava.ava_private = NULL;
}
return rc;
}
/*
* Return values from ldbm_back_search are:
*
* 0: Success. A result set is in the pblock. No results have been
* sent to the client.
* 1: Success. The result has already been sent to the client.
* -1: An error occurred, and results have been sent to the client.
* -2: Disk Full. Abandon ship!
*/
int
ldbm_back_search(Slapi_PBlock *pb)
{
/* Search stuff */
backend *be;
ldbm_instance *inst;
struct ldbminfo *li;
struct backentry *e;
IDList *candidates = NULL;
const char *base;
Slapi_DN *basesdn = NULL;
int scope;
LDAPControl **controls = NULL;
Slapi_Operation *operation;
entry_address *addr;
int estimate = 0; /* estimated search result set size */
/* SORT control stuff */
int sort = 0;
int vlv = 0;
struct berval *sort_spec = NULL;
int is_sorting_critical = 0;
int is_sorting_critical_orig = 0;
sort_spec_thing *sort_control = NULL;
/* VLV control stuff */
int virtual_list_view = 0;
struct berval *vlv_spec = NULL;
int is_vlv_critical = 0;
struct vlv_request vlv_request_control;
back_search_result_set *sr = NULL;
/* Fix for bugid #394184, SD, 20 Jul 00 */
int tmp_err = LDBM_SRCH_DEFAULT_RESULT;
char *tmp_desc = NULL;
/* end Fix for defect #394184 */
int lookup_returned_allids = 0;
int backend_count = 1;
static int print_once = 1;
back_txn txn = {NULL};
int rc = 0;
slapi_pblock_get(pb, SLAPI_BACKEND, &be);
slapi_pblock_get(pb, SLAPI_OPERATION, &operation);
slapi_pblock_get(pb, SLAPI_PLUGIN_PRIVATE, &li);
slapi_pblock_get(pb, SLAPI_SEARCH_TARGET_SDN, &basesdn);
slapi_pblock_get(pb, SLAPI_TARGET_ADDRESS, &addr);
slapi_pblock_get(pb, SLAPI_SEARCH_SCOPE, &scope);
slapi_pblock_get(pb, SLAPI_REQCONTROLS, &controls);
slapi_pblock_get(pb, SLAPI_BACKEND_COUNT, &backend_count);
slapi_pblock_get(pb, SLAPI_TXN, &txn.back_txn_txn);
if (!txn.back_txn_txn) {
dblayer_txn_init(li, &txn);
slapi_pblock_set(pb, SLAPI_TXN, txn.back_txn_txn);
}
if (NULL == basesdn) {
slapi_send_ldap_result(pb, LDAP_INVALID_DN_SYNTAX, NULL,
"Null target DN", 0, NULL);
return (-1);
}
inst = (ldbm_instance *)be->be_instance_info;
if (inst && inst->inst_ref_count) {
slapi_counter_increment(inst->inst_ref_count);
} else {
slapi_log_err(SLAPI_LOG_ERR,
"ldbm_back_search", "Instance \"%s\" does not exist.\n",
inst ? inst->inst_name : "null instance");
return (-1);
}
base = slapi_sdn_get_dn(basesdn);
/* Initialize the result set structure here because we need to use it during search processing */
/* Beware that if we exit this routine sideways, we might leak this structure */
sr = new_search_result_set(NULL, 0,
compute_lookthrough_limit(pb, li));
slapi_pblock_set(pb, SLAPI_SEARCH_RESULT_SET, sr);
slapi_pblock_set(pb, SLAPI_SEARCH_RESULT_SET_SIZE_ESTIMATE, &estimate);
/* clear this out so we can free it later */
memset(&vlv_request_control, 0, sizeof(vlv_request_control));
if (NULL != controls) {
/* Are we being asked to sort the results ? */
sort = slapi_control_present(controls, LDAP_CONTROL_SORTREQUEST, &sort_spec, &is_sorting_critical_orig);
if (sort) {
rc = parse_sort_spec(sort_spec, &sort_control);
if (rc) {
/* Badly formed SORT control */
if (is_sorting_critical_orig) {
/* RFC 4511 4.1.11 the server must not process the operation
* and return LDAP_UNAVAILABLE_CRITICAL_EXTENSION
*/
return ldbm_back_search_cleanup(pb, li, sort_control,
LDAP_UNAVAILABLE_CRITICAL_EXTENSION, "Sort Control",
SLAPI_FAIL_GENERAL, NULL, NULL, candidates);
} else {
PRUint64 conn_id;
int op_id;
/* Just ignore the control */
sort = 0;
slapi_pblock_get(pb, SLAPI_CONN_ID, &conn_id);
slapi_pblock_get(pb, SLAPI_OPERATION_ID, &op_id);
slapi_log_err(SLAPI_LOG_WARNING,
"ldbm_back_search", "Sort control ignored for conn=%" PRIu64 " op=%d\n",
conn_id, op_id);
}
} else {
/* set this operation includes the server side sorting */
operation->o_flags |= OP_FLAG_SERVER_SIDE_SORTING;
}
}
is_sorting_critical = is_sorting_critical_orig;
/* Are we to provide a virtual view of the list? */
if ((vlv = slapi_control_present(controls, LDAP_CONTROL_VLVREQUEST, &vlv_spec, &is_vlv_critical))) {
if (sort) {
rc = vlv_parse_request_control(be, vlv_spec, &vlv_request_control);
if (rc != LDAP_SUCCESS) {
/* Badly formed VLV control */
if (is_vlv_critical) {
/* RFC 4511 4.1.11 the server must not process the operation
* and return LDAP_UNAVAILABLE_CRITICAL_EXTENSION
*/
return ldbm_back_search_cleanup(pb, li, sort_control,
LDAP_UNAVAILABLE_CRITICAL_EXTENSION, "VLV Control", SLAPI_FAIL_GENERAL,
&vlv_request_control, NULL, candidates);
} else {
PRUint64 conn_id;
int op_id;
/* Just ignore the control */
virtual_list_view = 0;
slapi_pblock_get(pb, SLAPI_CONN_ID, &conn_id);
slapi_pblock_get(pb, SLAPI_OPERATION_ID, &op_id);
slapi_log_err(SLAPI_LOG_WARNING,
"ldbm_back_search", "VLV control ignored for conn=%" PRIu64 " op=%d\n",
conn_id, op_id);
}
} else {
{
/* Access Control Check to see if the client is allowed to use the VLV Control. */
Slapi_Entry *feature;
char dn[128];
char *dummyAttr = "dummy#attr";
char *dummyAttrs[2] = {NULL, NULL};
dummyAttrs[0] = dummyAttr;
/* This dn is normalized. */
PR_snprintf(dn, sizeof(dn), "dn: oid=%s,cn=features,cn=config", LDAP_CONTROL_VLVREQUEST);
feature = slapi_str2entry(dn, 0);
rc = plugin_call_acl_plugin(pb, feature, dummyAttrs, NULL, SLAPI_ACL_READ, ACLPLUGIN_ACCESS_DEFAULT, NULL);
slapi_entry_free(feature);
if (rc != LDAP_SUCCESS) {
/* Client isn't allowed to do this. */
return ldbm_back_search_cleanup(pb, li, sort_control,
rc, "VLV Control", SLAPI_FAIL_GENERAL,
&vlv_request_control, NULL, candidates);
}
}
/*
* Sorting must always be critical for VLV; Force it be so.
*/
is_sorting_critical = 1;
virtual_list_view = 1;
}
} else {
/* Can't have a VLV control without a SORT control */
return ldbm_back_search_cleanup(pb, li, sort_control,
LDAP_SORT_CONTROL_MISSING, "VLV Control",
SLAPI_FAIL_GENERAL, &vlv_request_control, NULL, candidates);
}
}
}
if ((virtual_list_view || sort) && backend_count > 0) {
char *ctrlstr = NULL;
struct vlv_response vlv_response = {0};
if (virtual_list_view) {
if (sort) {
ctrlstr = "The VLV and sort controls cannot be processed";
} else {
ctrlstr = "The VLV control cannot be processed";
}
} else {
if (sort) {
ctrlstr = "The sort control cannot be processed";
}
}
PR_ASSERT(NULL != ctrlstr);
if (print_once) {
slapi_log_err(SLAPI_LOG_WARNING,
"ldbm_back_search", "%s "
"When more than one backend is involved. "
"VLV indexes that will never be used should be removed.\n",
ctrlstr);
print_once = 0;
}
/* 402380: mapping tree must refuse VLV and SORT control
* when several backends are impacted by a search */
if (0 != is_vlv_critical) {
vlv_response.result = LDAP_UNWILLING_TO_PERFORM;
vlv_make_response_control(pb, &vlv_response);
if (sort) {
sort_make_sort_response_control(pb, LDAP_UNWILLING_TO_PERFORM, NULL);
}
if (ISLEGACY(be)) {
return ldbm_back_search_cleanup(pb, li, sort_control,
LDAP_UNWILLING_TO_PERFORM, ctrlstr,
SLAPI_FAIL_GENERAL, &vlv_request_control, NULL, candidates);
} else {
return ldbm_back_search_cleanup(pb, li, sort_control,
LDAP_VIRTUAL_LIST_VIEW_ERROR, ctrlstr,
SLAPI_FAIL_GENERAL, &vlv_request_control, NULL, candidates);
}
} else {
if (0 != is_sorting_critical_orig) {
if (virtual_list_view) {
vlv_response.result = LDAP_UNWILLING_TO_PERFORM;
vlv_make_response_control(pb, &vlv_response);
}
sort_make_sort_response_control(pb, LDAP_UNWILLING_TO_PERFORM, NULL);
return ldbm_back_search_cleanup(pb, li, sort_control,
LDAP_UNAVAILABLE_CRITICAL_EXTENSION, ctrlstr,
SLAPI_FAIL_GENERAL, &vlv_request_control, NULL, candidates);
} else /* vlv and sorting are not critical, so ignore the control */
{
if (virtual_list_view) {
vlv_response.result = LDAP_UNWILLING_TO_PERFORM;
vlv_make_response_control(pb, &vlv_response);
}
if (sort) {
sort_make_sort_response_control(pb, LDAP_UNWILLING_TO_PERFORM, NULL);
}
sort = 0;
virtual_list_view = 0;
}
}
}
/*
* Get the base object for the search.
* The entry "" will never be contained in the database,
* so treat it as a special case.
*/
if (*base == '\0') {
e = NULL;
} else {
if ((e = find_entry(pb, be, addr, &txn, NULL)) == NULL) {
/* error or referral sent by find_entry */
return ldbm_back_search_cleanup(pb, li, sort_control,
LDBM_SRCH_DEFAULT_RESULT, NULL, 1, &vlv_request_control, NULL, candidates);
}
}
/* We have the base search entry and a callback to "cache_return" it.
* Keep it into the operation to avoid additional cache fetch/return
*/
if (e && be->be_entry_release) {
operation_set_target_entry(operation, (void *) e);
operation_set_target_entry_id(operation, e->ep_id);
}
/*
* If this is a persistent search then the client is only
* interested in entries that change, so we skip building
* a candidate list.
*/
if (operation_is_flag_set(operation, OP_FLAG_PS_CHANGESONLY)) {
candidates = NULL;
} else {
struct timespec expire_time = {0};
int lookthrough_limit = 0;
struct vlv_response vlv_response_control;
int abandoned = 0;
int vlv_rc;
/*
* Build a list of IDs for this entry and scope
*/
vlv_response_control.result = LDAP_SUCCESS;
if ((NULL != controls) && (sort) && (vlv)) {
/* This candidate list is for vlv, no need for sort only. */
switch (vlv_search_build_candidate_list(pb, basesdn, &vlv_rc,
sort_control,
&vlv_request_control,
&candidates, &vlv_response_control)) {
case VLV_ACCESS_DENIED:
return ldbm_back_search_cleanup(pb, li, sort_control,
vlv_rc, "VLV Control",
SLAPI_FAIL_GENERAL,
&vlv_request_control, e, candidates);
case VLV_BLD_LIST_FAILED:
return ldbm_back_search_cleanup(pb, li, sort_control,
vlv_response_control.result,
NULL, SLAPI_FAIL_GENERAL,
&vlv_request_control, e, candidates);
case LDAP_SUCCESS:
/* Log to the access log the particulars of this sort request */
/* Log message looks like this: SORT <key list useful for input
* to ldapsearch> <#candidates> | <unsortable> */
sort_log_access(pb, sort_control, NULL);
/* Since a pre-computed index was found for the VLV Search then
* the candidate list now contains exactly what should be
* returned.
* There's no need to sort or trim the candidate list.
*
* However, the client will be expecting a Sort Response control
*/
if (LDAP_SUCCESS !=
sort_make_sort_response_control(pb, 0, NULL)) {
return ldbm_back_search_cleanup(pb, li, sort_control,
LDAP_OPERATIONS_ERROR,
"Sort Response Control",
SLAPI_FAIL_GENERAL,
&vlv_request_control, e, candidates);
}
}
}
if (candidates == NULL) {
int rc = build_candidate_list(pb, be, e, base, scope,
&lookup_returned_allids, &candidates);
if (rc) {
/* Error result sent by build_candidate_list */
return ldbm_back_search_cleanup(pb, li, sort_control,
LDBM_SRCH_DEFAULT_RESULT, NULL, rc,
&vlv_request_control, e, candidates);
}
/*
* If we're sorting then we must check what administrative
* limits should be imposed. Work out at what time to give
* up, and how many entries we should sift through.
*/
if (sort && (NULL != candidates)) {
int tlimit = 0;
slapi_pblock_get(pb, SLAPI_SEARCH_TIMELIMIT, &tlimit);
slapi_operation_time_expiry(operation, (time_t)tlimit, &expire_time);
lookthrough_limit = compute_lookthrough_limit(pb, li);
}
/*
* If we're presenting a virtual list view, then apply the
* search filter before sorting.
*/
if (virtual_list_view && candidates) {
IDList *idl = NULL;
Slapi_Filter *filter = NULL;
slapi_pblock_get(pb, SLAPI_SEARCH_FILTER, &filter);
rc = LDAP_OPERATIONS_ERROR;
if (filter) {
rc = vlv_filter_candidates(be, pb, candidates, basesdn,
scope, filter, &idl,
lookthrough_limit, &expire_time);
}
switch (rc) {
case LDAP_SUCCESS: /* Everything OK */
case LDAP_TIMELIMIT_EXCEEDED: /* Timeout */
case LDAP_ADMINLIMIT_EXCEEDED: /* Admin limit exceeded */
vlv_response_control.result = rc;
idl_free(&candidates);
candidates = idl;
break;
case LDAP_UNWILLING_TO_PERFORM: /* Too hard */
default:
return ldbm_back_search_cleanup(pb, li, sort_control,
rc, NULL, -1,
&vlv_request_control, e, candidates);
}
if (is_vlv_critical && rc) {
idl_free(&candidates);
candidates = idl_alloc(0);
tmp_err = rc;
tmp_desc = "VLV Response Control";
goto vlv_bail;
}
}
/*
* Client wants the server to sort the results.
*/
if (sort) {
if (NULL == candidates) {
/* Even if candidates is NULL, we have to return a sort
* response control with the LDAP_SUCCESS return code. */
if (LDAP_SUCCESS !=
sort_make_sort_response_control(pb, LDAP_SUCCESS, NULL)) {
return ldbm_back_search_cleanup(pb, li, sort_control,
LDAP_PROTOCOL_ERROR,
"Sort Response Control", -1,
&vlv_request_control, e, candidates);
}
} else {
/* Before we haste off to sort the candidates, we need to
* prepare some information for the purpose of imposing the
* administrative limits.
* We figure out the time when the time limit will be up.
* We can't use the size limit because we might be sorting
* a candidate list larger than the result set.
* But, we can use the lookthrough limit---we count each
* time we access an entry as one look and act accordingly.
*/
char *sort_error_type = NULL;
int sort_return_value = 0;
/* Don't log internal operations */
if (!operation_is_flag_set(operation, OP_FLAG_INTERNAL)) {
/* Log to the access log the particulars of this
* sort request */
/* Log message looks like this: SORT <key list useful for
* input to ldapsearch> <#candidates> | <unsortable> */
sort_log_access(pb, sort_control, candidates);
}
sort_return_value = sort_candidates(be, lookthrough_limit,
&expire_time, pb, candidates,
sort_control,
&sort_error_type);
/* Fix for bugid # 394184, SD, 20 Jul 00 */
/* replace the hard coded return value by the appropriate
* LDAP error code */
switch (sort_return_value) {
case LDAP_SUCCESS:
/*
* we don't want to override an error from vlv
* vlv_response_control.result= LDAP_SUCCESS;
*/
break;
case LDAP_PROTOCOL_ERROR: /* A protocol error */
return ldbm_back_search_cleanup(pb, li, sort_control,
LDAP_PROTOCOL_ERROR,
"Sort Control", -1,
&vlv_request_control, e, candidates);
case LDAP_UNWILLING_TO_PERFORM: /* Too hard */
case LDAP_OPERATIONS_ERROR: /* Operation error */
case LDAP_TIMELIMIT_EXCEEDED: /* Timeout */
case LDAP_ADMINLIMIT_EXCEEDED: /* Admin limit exceeded */
if (!vlv_response_control.result) {
vlv_response_control.result = sort_return_value;
}
break;
case LDAP_OTHER: /* Abandoned */
abandoned = 1; /* So that we don't return a result code */
is_sorting_critical = 1; /* In order to have the results
discarded */
break;
default: /* Should never get here */
break;
}
/* End fix for bug # 394184 */
/*
* If the sort control was marked as critical, and there was
* an error in sorting, don't return any entries, and return
* unavailableCriticalExtension in the searchResultDone message.
*/
/* Fix for bugid #394184, SD, 05 Jul 00 */
/* we were not actually returning unavailableCriticalExtension;
now fixed (hopefully !) */
if (is_sorting_critical && sort_return_value) {
idl_free(&candidates);
candidates = idl_alloc(0);
tmp_err = sort_return_value;
tmp_desc = "Sort Response Control";
}
/* end Fix for bugid #394184 */
/* Generate the control returned to the client to indicate
* sort result */
if (LDAP_SUCCESS != sort_make_sort_response_control(pb,
sort_return_value, sort_error_type)) {
return ldbm_back_search_cleanup(pb, li, sort_control,
(abandoned ? LDBM_SRCH_DEFAULT_RESULT : LDAP_PROTOCOL_ERROR),
"Sort Response Control", -1,
&vlv_request_control, e, candidates);
}
}
}
/*
* If we're presenting a virtual list view, then the candidate list
* must be trimmed down to just the range of entries requested.
*/
if (virtual_list_view) {
if (candidates && (candidates->b_nids > 0) &&
!vlv_response_control.result) {
IDList *idl = NULL;
back_txn txn = {NULL};
slapi_pblock_get(pb, SLAPI_TXN, &txn.back_txn_txn);
vlv_response_control.result =
vlv_trim_candidates_txn(be, candidates, sort_control,
&vlv_request_control, &idl, &vlv_response_control, &txn);
if (vlv_response_control.result == 0) {
idl_free(&candidates);
candidates = idl;
} else {
return ldbm_back_search_cleanup(pb, li, sort_control,
vlv_response_control.result,
NULL, -1,
&vlv_request_control, e, candidates);
}
} else {
vlv_response_control.targetPosition = 0;
vlv_response_control.contentCount = 0;
/* vlv_response_control.result = LDAP_SUCCESS; Don't override */
}
}
}
vlv_bail:
if (virtual_list_view) {
if (LDAP_SUCCESS !=
vlv_make_response_control(pb, &vlv_response_control)) {
return ldbm_back_search_cleanup(pb, li, sort_control,
(abandoned ? LDBM_SRCH_DEFAULT_RESULT : LDAP_PROTOCOL_ERROR),
"VLV Response Control", -1,
&vlv_request_control, e, candidates);
}
/* Log the VLV operation */
vlv_print_access_log(pb, &vlv_request_control, &vlv_response_control);
}
}
/*
* if the candidate list is an allids list, arrange for access log
* to record that fact.
*/
if (NULL != candidates && ALLIDS(candidates)) {
unsigned int opnote;
int ri = 0;
int rii = 0;
int pr_idx = -1;
Connection *pb_conn = NULL;
Operation *pb_op = NULL;
struct slapdplugin *plugin = NULL;
struct slapi_componentid *cid = NULL;
char *filter_str;
char *plugin_dn;
char *base_dn;
int32_t internal_op = operation_is_flag_set(operation, OP_FLAG_INTERNAL);
uint64_t connid;
int32_t op_id;
int32_t op_internal_id;
int32_t op_nested_count;
/*
* Return error if require index is set
*/
PR_Lock(inst->inst_config_mutex);
ri = inst->require_index;
rii = inst->require_internalop_index;
PR_Unlock(inst->inst_config_mutex);
if ((internal_op && rii) || (!internal_op && ri)) {
idl_free(&candidates);
candidates = idl_alloc(0);
tmp_err = LDAP_UNWILLING_TO_PERFORM;
tmp_desc = "Search is not indexed";
}
/*
* When an search is fully unindexed we need to log the
* details as these kinds of searches can cause issues with bdb db
* locks being exhausted. This will help expose what indexing is
* missing.
*/
slapi_pblock_get(pb, SLAPI_OPERATION, &pb_op);
slapi_pblock_get(pb, SLAPI_SEARCH_STRFILTER, &filter_str);
slapi_pblock_get(pb, SLAPI_TARGET_DN, &base_dn);
if (internal_op) {
/* Get the plugin that triggered this internal search */
slapi_pblock_get(pb, SLAPI_PLUGIN_IDENTITY, &cid);
if (cid) {
plugin = (struct slapdplugin *)cid->sci_plugin;
} else {
slapi_pblock_get(pb, SLAPI_PLUGIN, &plugin);
}
plugin_dn = plugin_get_dn(plugin);
get_internal_conn_op(&connid, &op_id, &op_internal_id, &op_nested_count);
slapi_log_err(SLAPI_LOG_NOTICE, "ldbm_back_search",
"Internal unindexed search: source (%s) search base=\"%s\" scope=%d filter=\"%s\" conn=%" PRIu64 " op=%d (internal op=%d count=%d)\n",
plugin_dn, base_dn, scope, filter_str, connid, op_id, op_internal_id, op_nested_count);
slapi_ch_free_string(&plugin_dn);
} else {
slapi_log_err(SLAPI_LOG_NOTICE, "ldbm_back_search",
"Unindexed search: search base=\"%s\" scope=%d filter=\"%s\" conn=%" PRIu64 " op=%d\n",
base_dn, scope, filter_str, pb_op->o_connid, pb_op->o_opid);
}
opnote = slapi_pblock_get_operation_notes(pb);
opnote |= SLAPI_OP_NOTE_FULL_UNINDEXED; /* the full filter leads to an unindexed search */
opnote &= ~SLAPI_OP_NOTE_UNINDEXED; /* this note is useless because FULL_UNINDEXED includes UNINDEXED */
slapi_pblock_set_operation_notes(pb, opnote);
slapi_pblock_get(pb, SLAPI_PAGED_RESULTS_INDEX, &pr_idx);
slapi_pblock_get(pb, SLAPI_CONNECTION, &pb_conn);
pagedresults_set_unindexed(pb_conn, pb_op, pr_idx);
}
sr->sr_candidates = candidates;
sr->sr_virtuallistview = virtual_list_view;
/* Set the estimated search result count for simple paged results */
if (sr->sr_candidates && !ALLIDS(sr->sr_candidates)) {
estimate = IDL_NIDS(sr->sr_candidates);
}
slapi_pblock_set(pb, SLAPI_SEARCH_RESULT_SET_SIZE_ESTIMATE, &estimate);
/* check to see if we can skip the filter test */
if (li->li_filter_bypass && NULL != candidates && !virtual_list_view && !lookup_returned_allids) {
Slapi_Filter *filter = NULL;
slapi_pblock_get(pb, SLAPI_SEARCH_FILTER, &filter);
if (NULL == filter) {
tmp_err = LDAP_OPERATIONS_ERROR;
tmp_desc = "Filter is not set";
goto bail;
}
if (can_skip_filter_test(pb, filter, scope, candidates) == 0) {
sr->sr_flags |= SR_FLAG_MUST_APPLY_FILTER_TEST;
}
}
/* if we need to perform the filter test, pre-digest the filter to
speed up the filter test */
if ((sr->sr_flags & SR_FLAG_MUST_APPLY_FILTER_TEST) ||
li->li_filter_bypass_check) {
int rc = 0, filt_errs = 0;
Slapi_Filter *filter = NULL;
Slapi_Filter *filter_intent = NULL;
slapi_log_err(SLAPI_LOG_FILTER, "ldbm_back_search", "Applying Filter Test\n");
slapi_pblock_get(pb, SLAPI_SEARCH_FILTER, &filter);
slapi_pblock_get(pb, SLAPI_SEARCH_FILTER_INTENDED, &filter_intent);
if (NULL == filter) {
tmp_err = LDAP_OPERATIONS_ERROR;
tmp_desc = "Filter is not set";
goto bail;
}
slapi_filter_free(sr->sr_norm_filter, 1);
sr->sr_norm_filter = slapi_filter_dup(filter);
/* step 1 - normalize all of the values used in the search filter */
slapi_filter_normalize(sr->sr_norm_filter, PR_TRUE /* normalize values too */);
/* step 2 - pre-compile the substr regex and the equality flags */
rc = slapi_filter_apply(sr->sr_norm_filter, ldbm_search_compile_filter,
NULL, &filt_errs);
if (rc == SLAPI_FILTER_SCAN_NOMORE && filter_intent) {
slapi_filter_free(sr->sr_norm_filter_intent, 1);
sr->sr_norm_filter_intent = slapi_filter_dup(filter_intent);
slapi_filter_normalize(sr->sr_norm_filter_intent, PR_TRUE /* normalize values too */);
rc = slapi_filter_apply(sr->sr_norm_filter_intent, ldbm_search_compile_filter,
NULL, &filt_errs);
}
if (rc != SLAPI_FILTER_SCAN_NOMORE) {
slapi_log_err(SLAPI_LOG_ERR,
"ldbm_back_search", "Could not pre-compile the search filter - error %d %d\n",
rc, filt_errs);
if (rc == SLAPI_FILTER_SCAN_ERROR) {
tmp_err = LDAP_OPERATIONS_ERROR;
tmp_desc = "Could not compile regex for filter matching";
}
}
} else {
slapi_log_err(SLAPI_LOG_FILTER, "ldbm_back_search", "Skipped Filter Test\n");
}
bail:
/* Fix for bugid #394184, SD, 05 Jul 00 */
/* tmp_err == LDBM_SRCH_DEFAULT_RESULT: no error */
return ldbm_back_search_cleanup(pb, li, sort_control, tmp_err, tmp_desc,
(tmp_err == LDBM_SRCH_DEFAULT_RESULT ? 0 : LDBM_SRCH_DEFAULT_RESULT),
&vlv_request_control, NULL, candidates);
/* end Fix for bugid #394184 */
}
/*
* Build a candidate list for this backentry and scope.
* Could be a BASE, ONELEVEL, or SUBTREE search.
*
* Returns:
* 0 - success
* <0 - fail
*
*/
static int
build_candidate_list(Slapi_PBlock *pb, backend *be, struct backentry *e, const char *base, int scope, int *lookup_returned_allidsp, IDList **candidates)
{
struct ldbminfo *li = (struct ldbminfo *)be->be_database->plg_private;
int managedsait = 0;
Slapi_Filter *filter = NULL;
Slapi_Filter *filter_exec = NULL;
int err = 0;
int r = 0;
char logbuf[1024] = {0};
slapi_pblock_get(pb, SLAPI_SEARCH_FILTER, &filter);
if (NULL == filter) {
slapi_send_ldap_result(pb, LDAP_PROTOCOL_ERROR, NULL, "No filter", 0, NULL);
r = SLAPI_FAIL_GENERAL;
goto bail;
}
slapi_pblock_get(pb, SLAPI_MANAGEDSAIT, &managedsait);
switch (scope) {
case LDAP_SCOPE_BASE:
*candidates = base_candidates(pb, e);
break;
case LDAP_SCOPE_ONELEVEL:
/* Now optimise the filter for use */
slapi_filter_optimise(filter);
/* modify the filter to be: (&(|(originalfilter)(objectclass=referral))(parentid=idofbase)) */
filter_exec = create_onelevel_filter(filter, e, managedsait);
slapi_log_err(SLAPI_LOG_FILTER, "ldbm_back_search", "Optimised ONE filter to - %s\n",
slapi_filter_to_string(filter_exec, logbuf, sizeof(logbuf)));
*candidates = onelevel_candidates(pb, be, base, filter_exec, lookup_returned_allidsp, &err);
slapi_pblock_set(pb, SLAPI_SEARCH_FILTER, filter_exec);
slapi_pblock_set(pb, SLAPI_SEARCH_FILTER_INTENDED, filter);
break;
case LDAP_SCOPE_SUBTREE:
/* Now optimise the filter for use */
slapi_filter_optimise(filter);
/* make (|(originalfilter)(objectclass=referral)) */
filter_exec = create_subtree_filter(filter, managedsait);
slapi_log_err(SLAPI_LOG_FILTER, "ldbm_back_search", "Optimised SUB filter to - %s\n",
slapi_filter_to_string(filter_exec, logbuf, sizeof(logbuf)));
*candidates = subtree_candidates(pb, be, base, e, filter_exec, lookup_returned_allidsp, &err);
slapi_pblock_set(pb, SLAPI_SEARCH_FILTER, filter_exec);
slapi_pblock_set(pb, SLAPI_SEARCH_FILTER_INTENDED, filter);
break;
default:
slapi_send_ldap_result(pb, LDAP_PROTOCOL_ERROR, NULL, "Bad scope", 0, NULL);
r = SLAPI_FAIL_GENERAL;
}
if (0 != err && DBI_RC_NOTFOUND != err) {
slapi_log_err(SLAPI_LOG_ERR, "build_candidate_list", "Database error %d\n", err);
slapi_send_ldap_result(pb, LDAP_OPERATIONS_ERROR, NULL, NULL,
0, NULL);
if (LDBM_OS_ERR_IS_DISKFULL(err))
r = return_on_disk_full(li);
else
r = SLAPI_FAIL_GENERAL;
}
bail:
/*
* If requested, set a flag to indicate whether the indexed
* lookup returned an ALLIDs block. Note that this is taken care of
* above already for subtree searches.
*/
if (NULL != lookup_returned_allidsp) {
if (0 == err || DBI_RC_NOTFOUND == err) {
if (!(*lookup_returned_allidsp) && LDAP_SCOPE_SUBTREE != scope) {
*lookup_returned_allidsp =
(NULL != *candidates && ALLIDS(*candidates));
}
} else {
*lookup_returned_allidsp = 0;
}
}
slapi_log_err(SLAPI_LOG_TRACE, "build_candidate_list", "Candidate list has %lu ids\n",
*candidates ? (*candidates)->b_nids : 0L);
return r;
}
/*
* Build a candidate list for a BASE scope search.
*/
static IDList *
base_candidates(Slapi_PBlock *pb __attribute__((unused)), struct backentry *e)
{
IDList *idl = idl_alloc(1);
idl_append(idl, NULL == e ? 0 : e->ep_id);
return (idl);
}
/*
* Modify the filter to include entries of the referral objectclass
*
* make (|(originalfilter)(objectclass=referral))
*
* "focref, forr" are temporary filters which the caller must free
* non-recursively when done with the returned filter.
*/
static Slapi_Filter *
create_referral_filter(Slapi_Filter *filter)
{
char *buf = slapi_ch_strdup("objectclass=referral");
Slapi_Filter *focref = slapi_str2filter(buf);
Slapi_Filter *forr = slapi_filter_join(LDAP_FILTER_OR, filter, focref);
slapi_ch_free((void **)&buf);
return forr;
}
/*
* Modify the filter to be a one level search.
*
* (&(parentid=idofbase)(|(originalfilter)(objectclass=referral)))
*
* "fid2kids, focref, fand, forr" are temporary filters which the
* caller must free'd non-recursively when done with the returned filter.
*
* This function is exported for the VLV code to use.
*/
Slapi_Filter *
create_onelevel_filter(Slapi_Filter *filter, const struct backentry *baseEntry, int managedsait)
{
Slapi_Filter *ftop = filter;
char buf[40];
if (!managedsait) {
ftop = create_referral_filter(filter);
}
sprintf(buf, "parentid=%lu", (u_long)(baseEntry != NULL ? baseEntry->ep_id : 0));
Slapi_Filter *fid2kids = slapi_str2filter(buf);
Slapi_Filter *fand = slapi_filter_join(LDAP_FILTER_AND, ftop, fid2kids);
return fand;
}
/*
* Build a candidate list for a ONELEVEL scope search.
*/
static IDList *
onelevel_candidates(
Slapi_PBlock *pb,
backend *be,
const char *base,
Slapi_Filter *filter,
int *lookup_returned_allidsp,
int *err)
{
IDList *candidates;
candidates = filter_candidates(pb, be, base, filter, NULL, 0, err);
*lookup_returned_allidsp = slapi_be_is_flag_set(be, SLAPI_BE_FLAG_DONT_BYPASS_FILTERTEST);
return (candidates);
}
/*
* We need to modify the filter to be something like this:
*
* (|(originalfilter)(objectclass=referral))
*
* the "objectclass=referral" part is used to select referrals to return.
* it is only included if the managedsait service control is not set.
*
* This function is exported for the VLV code to use.
*/
Slapi_Filter *
create_subtree_filter(Slapi_Filter *filter, int managedsait)
{
Slapi_Filter *ftop = filter;
if (!managedsait) {
ftop = create_referral_filter(filter);
}
return ftop;
}
/*
* Build a candidate list for a SUBTREE scope search.
*/
IDList *
subtree_candidates(
Slapi_PBlock *pb,
backend *be,
const char *base,
const struct backentry *e,
Slapi_Filter *filter,
int *allids_before_scopingp,
int *err)
{
IDList *candidates;
PRBool has_tombstone_filter;
int isroot = 0;
struct ldbminfo *li = (struct ldbminfo *)be->be_database->plg_private;
int allidslimit = compute_allids_limit(pb, li);
Operation *op = NULL;
PRBool is_bulk_import = PR_FALSE;
/* Fetch a candidate list for the original filter */
candidates = filter_candidates_ext(pb, be, base, filter, NULL, 0, err, allidslimit);
/* set 'allids before scoping' flag */
if (NULL != allids_before_scopingp) {
*allids_before_scopingp = (NULL != candidates && ALLIDS(candidates));
}
has_tombstone_filter = (filter->f_flags & SLAPI_FILTER_TOMBSTONE);
slapi_pblock_get(pb, SLAPI_REQUESTOR_ISROOT, &isroot);
/* Check if it is for bulk import. */
slapi_pblock_get(pb, SLAPI_OPERATION, &op);
if (op && entryrdn_get_switch() && operation_is_flag_set(op, OP_FLAG_INTERNAL) &&
operation_is_flag_set(op, OP_FLAG_BULK_IMPORT)) {
is_bulk_import = PR_TRUE;
}
/*
* Apply the DN components if the candidate list is greater than
* our threshold, and if the filter is not "(objectclass=nstombstone)",
* since tombstone entries are not indexed in the ancestorid index.
* Note: they are indexed in the entryrdn index.
*/
if (candidates != NULL && (idl_length(candidates) > FILTER_TEST_THRESHOLD) && e) {
IDList *tmp = candidates, *descendants = NULL;
back_txn txn = {NULL};
slapi_pblock_get(pb, SLAPI_TXN, &txn.back_txn_txn);
if (entryrdn_get_noancestorid()) {
/* subtree-rename: on && no ancestorid */
*err = entryrdn_get_subordinates(be,
slapi_entry_get_sdn_const(e->ep_entry),
e->ep_id, &descendants, &txn, 0);
idl_insert(&descendants, e->ep_id);
candidates = idl_intersection(be, candidates, descendants);
idl_free(&tmp);
idl_free(&descendants);
} else if (!has_tombstone_filter && !is_bulk_import) {
*err = ldbm_ancestorid_read_ext(be, &txn, e->ep_id, &descendants, allidslimit);
idl_insert(&descendants, e->ep_id);
candidates = idl_intersection(be, candidates, descendants);
idl_free(&tmp);
idl_free(&descendants);
} /* else == has_tombstone_filter OR is_bulk_import: do nothing */
}
return (candidates);
}
static int grok_filter(struct slapi_filter *f);
/* Helper function for can_skip_filter_test() */
static int
grok_filter_not_subtype(struct slapi_filter *f)
{
/* If we haven't determined that we can't skip the filter test already,
* do one last check for attribute subtypes. We don't need to worry
* about any complex filters here since grok_filter() will have already
* assumed that we can't skip the filter test in those cases. */
int rc = 1;
char *type = NULL;
char *basetype = NULL;
/* We don't need to free type since that's taken
* care of when the filter is free'd later. We
* do need to free basetype when we are done. */
slapi_filter_get_attribute_type(f, &type);
basetype = slapi_attr_basetype(type, NULL, 0);
/* Is the filter using an attribute subtype? */
if (strcasecmp(type, basetype) != 0) {
/* If so, we can't optimize since attribute subtypes
* are simply indexed under their basetype attribute.
* The basetype index has no knowledge of the subtype
* itself. In the future, we should add support for
* indexing the subtypes so we can optimize this type
* of search. */
rc = 0;
}
slapi_ch_free_string(&basetype);
return rc;
}
static int
grok_filter(struct slapi_filter *f)
{
switch (f->f_choice) {
case LDAP_FILTER_EQUALITY:
/* If there's an ID list and an equality filter, we can skip the filter test */
return grok_filter_not_subtype(f);
case LDAP_FILTER_SUBSTRINGS:
return 0;
case LDAP_FILTER_GE:
return grok_filter_not_subtype(f);
case LDAP_FILTER_LE:
return grok_filter_not_subtype(f);
case LDAP_FILTER_PRESENT:
/* If there's an ID list, and a presence filter, we can skip the filter test */
return grok_filter_not_subtype(f);
case LDAP_FILTER_APPROX:
return 0;
case LDAP_FILTER_EXTENDED:
return 0;
case LDAP_FILTER_AND:
/* Unless we check to see whether the presence and equality branches
* of the search filter were all indexed, we get things wrong here,
* so let's punt for now
*/
if (f->f_and->f_next == NULL) {
/* there is only one AND component,
* if it is a simple filter, we can skip it
*/
return grok_filter(f->f_and);
} else {
return 0;
}
case LDAP_FILTER_OR:
return 0;
case LDAP_FILTER_NOT:
return 0;
default:
return 0;
}
}
/* Routine which says whether or not the indices produced a "correct" answer */
static int
can_skip_filter_test(
Slapi_PBlock *pb __attribute__((unused)),
struct slapi_filter *f,
int scope,
IDList *idl)
{
int rc = 0;
/* Is the ID list ALLIDS ? */
if (ALLIDS(idl)) {
/* If so, then can't optimize */
return rc;
}
/* Is this a base scope search? */
if (scope == LDAP_SCOPE_BASE) {
/*
* If so, then we can't optimize. Why not? Because we only consult
* the entrydn/entryrdn index in producing our 1 candidate, and that
* means we have not used the filter to produce the candidate list.
*/
return rc;
}
/* Grok the filter and tell me if it has only equality components in it */
rc = grok_filter(f);
return rc;
}
/* The reference on the target_entry (base search) is stored in the operation
* This is to prevent additional cache find/return that require cache lock.
*
* The target entry is acquired during be->be_search (when building the candidate list).
* and is returned once the operation completes (or fail).
*
* The others entries sent back to the client have been acquired/returned during send_results_ext.
* If the target entry is sent back to the client it is not returned (refcnt--) during the send_results_ext.
*
* This function returns(refcnt-- in the entry cache) the entry unless it is
* the target_entry (base search). target_entry will be return once the operation
* completes
*/
static void
non_target_cache_return(Slapi_Operation *op, struct cache *cache, struct backentry **e)
{
if (e && (*e != operation_get_target_entry(op))) {
CACHE_RETURN(cache, e);
}
}
/*
* Return the next entry in the result set. The entry is returned
* in the pblock.
* Returns 0 normally. If -1 is returned, it means that some
* exceptional condition, e.g. timelimit exceeded has occurred,
* and this routine has sent a result to the client. If zero
* is returned and no entry is available in the PBlock, then
* we've iterated through all the entries.
*/
int
ldbm_back_next_search_entry(Slapi_PBlock *pb)
{
backend *be;
ldbm_instance *inst;
struct ldbminfo *li;
int scope;
int managedsait;
Slapi_Attr *attr;
Slapi_Filter *filter;
Slapi_Filter *filter_intent;
back_search_result_set *sr;
ID id;
struct backentry *e;
int nentries;
struct timespec expire_time;
int tlimit, llimit, slimit, isroot;
struct berval **urls = NULL;
int err;
Slapi_DN *basesdn = NULL;
char *target_uniqueid;
int rc = 0;
int estimate = 0; /* estimated search result count */
back_txn txn = {NULL};
int pr_idx = -1;
Slapi_Connection *conn;
Slapi_Operation *op;
int reverse_list = 0;
slapi_pblock_get(pb, SLAPI_SEARCH_TARGET_SDN, &basesdn);
if (NULL == basesdn) {
slapi_send_ldap_result(pb, LDAP_INVALID_DN_SYNTAX, NULL,
"Null target DN", 0, NULL);
return (-1);
}
slapi_pblock_get(pb, SLAPI_SEARCH_RESULT_SET, &sr);
if (NULL == sr) {
goto bail;
}
slapi_pblock_get(pb, SLAPI_BACKEND, &be);
slapi_pblock_get(pb, SLAPI_PLUGIN_PRIVATE, &li);
slapi_pblock_get(pb, SLAPI_SEARCH_SCOPE, &scope);
slapi_pblock_get(pb, SLAPI_MANAGEDSAIT, &managedsait);
slapi_pblock_get(pb, SLAPI_SEARCH_FILTER, &filter);
slapi_pblock_get(pb, SLAPI_SEARCH_FILTER_INTENDED, &filter_intent);
slapi_pblock_get(pb, SLAPI_NENTRIES, &nentries);
slapi_pblock_get(pb, SLAPI_SEARCH_SIZELIMIT, &slimit);
slapi_pblock_get(pb, SLAPI_SEARCH_TIMELIMIT, &tlimit);
slapi_pblock_get(pb, SLAPI_REQUESTOR_ISROOT, &isroot);
slapi_pblock_get(pb, SLAPI_SEARCH_REFERRALS, &urls);
slapi_pblock_get(pb, SLAPI_TARGET_UNIQUEID, &target_uniqueid);
slapi_pblock_get(pb, SLAPI_TXN, &txn.back_txn_txn);
slapi_pblock_get(pb, SLAPI_CONNECTION, &conn);
slapi_pblock_get(pb, SLAPI_OPERATION, &op);
if ((reverse_list = operation_is_flag_set(op, OP_FLAG_REVERSE_CANDIDATE_ORDER))) {
/*
* Start at the end of the list and work our way forward. Since a single
* search can enter this function multiple times, we need to keep track
* of our state, and only initialize sr_current once.
*/
if (!op->o_reverse_search_state && sr->sr_candidates) {
sr->sr_current = sr->sr_candidates->b_nids;
op->o_reverse_search_state = REV_STARTED;
}
}
if (!txn.back_txn_txn) {
dblayer_txn_init(li, &txn);
slapi_pblock_set(pb, SLAPI_TXN, txn.back_txn_txn);
}
if (sr->sr_norm_filter) {
filter = sr->sr_norm_filter;
}
if (sr->sr_norm_filter_intent) {
int val = 1;
slapi_pblock_set(pb, SLAPI_PLUGIN_SYNTAX_FILTER_NORMALIZED, &val);
filter_intent = sr->sr_norm_filter_intent;
}
if (op_is_pagedresults(op)) {
int myslimit;
/* On Simple Paged Results search, sizelimit is appied for each page. */
slapi_pblock_get(pb, SLAPI_PAGED_RESULTS_INDEX, &pr_idx);
myslimit = pagedresults_get_sizelimit(conn, op, pr_idx);
if (myslimit >= 0) {
slimit = myslimit;
}
} else if (sr->sr_current_sizelimit >= 0) {
/*
* sr_current_sizelimit contains the current sizelimit.
* In case of paged results, getting one page is one operation,
* while the results on each page are from same back_search_result_set.
* To maintain sizelimit beyond operations, back_search_result_set
* holds the current sizelimit value.
* (The current sizelimit is valid inside an operation, as well.)
*/
slimit = sr->sr_current_sizelimit;
}
inst = (ldbm_instance *)be->be_instance_info;
/* Return to the cache the entry we handed out last time */
/* If we are using the extension, the front end will tell
* us when to do this so we don't do it now */
if (sr->sr_entry) {
non_target_cache_return(op, &inst->inst_cache, &(sr->sr_entry));
sr->sr_entry = NULL;
}
if (sr->sr_vlventry != NULL) {
/* This empty entry was handed out last time because the ACL check failed on a VLV Search.
* The empty entry has a pointer to the cache entry dn... make sure we don't free the dn
* which belongs to the cache entry. */
slapi_entry_free(sr->sr_vlventry);
sr->sr_vlventry = NULL;
}
slapi_operation_time_expiry(op, (time_t)tlimit, &expire_time);
llimit = sr->sr_lookthroughlimit;
/* Find the next candidate entry and return it. */
while (1) {
if (li->li_dblock_monitoring &&
slapi_atomic_load_32((int32_t *)&(li->li_dblock_threshold_reached), __ATOMIC_RELAXED)) {
slapi_log_err(SLAPI_LOG_CRIT, "ldbm_back_next_search_entry",
"DB locks threshold is reached (nsslapd-db-locks-monitoring-threshold "
"under cn=bdb,cn=config,cn=ldbm database,cn=plugins,cn=config). "
"Please, increase nsslapd-db-locks according to your needs.\n");
slapi_pblock_set(pb, SLAPI_SEARCH_RESULT_ENTRY, NULL);
delete_search_result_set(pb, &sr);
rc = SLAPI_FAIL_GENERAL;
slapi_send_ldap_result(pb, LDAP_UNWILLING_TO_PERFORM, NULL, "DB locks threshold is reached (nsslapd-db-locks-monitoring-threshold)", 0, NULL);
goto bail;
}
/* check for abandon */
if (slapi_op_abandoned(pb) || (NULL == sr)) {
slapi_pblock_set(pb, SLAPI_SEARCH_RESULT_SET_SIZE_ESTIMATE, &estimate);
slapi_pblock_set(pb, SLAPI_SEARCH_RESULT_ENTRY, NULL);
delete_search_result_set(pb, &sr);
rc = SLAPI_FAIL_GENERAL;
goto bail;
}
/*
* Check time limit, Check this only every few iters to prevent smashing the clock api?
*/
if (slapi_timespec_expire_check(&expire_time) == TIMER_EXPIRED) {
slapi_log_err(SLAPI_LOG_TRACE, "ldbm_back_next_search_entry", "LDAP_TIMELIMIT_EXCEEDED\n");
slapi_pblock_set(pb, SLAPI_SEARCH_RESULT_SET_SIZE_ESTIMATE, &estimate);
slapi_pblock_set(pb, SLAPI_SEARCH_RESULT_ENTRY, NULL);
delete_search_result_set(pb, &sr);
rc = SLAPI_FAIL_GENERAL;
slapi_send_ldap_result(pb, LDAP_TIMELIMIT_EXCEEDED, NULL, NULL, nentries, urls);
goto bail;
}
/* check lookthrough limit */
if (llimit != -1 && sr->sr_lookthroughcount >= llimit) {
slapi_pblock_set(pb, SLAPI_SEARCH_RESULT_SET_SIZE_ESTIMATE, &estimate);
slapi_pblock_set(pb, SLAPI_SEARCH_RESULT_ENTRY, NULL);
delete_search_result_set(pb, &sr);
rc = SLAPI_FAIL_GENERAL;
slapi_send_ldap_result(pb, LDAP_ADMINLIMIT_EXCEEDED, NULL, NULL, nentries, urls);
goto bail;
}
/*
* Get the entry ID
*/
if (reverse_list) {
/*
* This is probably a tombstone reaping, we need to process in the candidate
* list in reserve order, or else we can orphan tombstone entries by removing
* it's parent tombstone entry first.
*/
id = idl_iterator_dereference_decrement(&(sr->sr_current), sr->sr_candidates);
if ((sr->sr_current == 0) && op->o_reverse_search_state != LAST_REV_ENTRY) {
/*
* We hit the last entry and we need to process it, but the decrement
* function will keep returning the last entry. So we need to mark that
* we have hit the last entry so we know to stop on the next pass.
*/
op->o_reverse_search_state = LAST_REV_ENTRY;
} else if (op->o_reverse_search_state == LAST_REV_ENTRY) {
/* we're done */
id = NOID;
}
} else {
/* Process the candidate list in the normal order. */
id = idl_iterator_dereference_increment(&(sr->sr_current), sr->sr_candidates);
}
if (id == NOID) {
/* No more entries */
/* destroy back_search_result_set */
slapi_pblock_set(pb, SLAPI_SEARCH_RESULT_SET_SIZE_ESTIMATE, &estimate);
slapi_pblock_set(pb, SLAPI_SEARCH_RESULT_ENTRY, NULL);
delete_search_result_set(pb, &sr);
op->o_reverse_search_state = 0;
rc = 0;
goto bail;
}
++sr->sr_lookthroughcount; /* checked above */
/* Make sure the backend is available */
if (be->be_state != BE_STATE_STARTED) {
slapi_send_ldap_result(pb, LDAP_UNWILLING_TO_PERFORM, NULL,
"Backend is stopped", 0, NULL);
slapi_pblock_set(pb, SLAPI_SEARCH_RESULT_ENTRY, NULL);
delete_search_result_set(pb, &sr);
rc = SLAPI_FAIL_GENERAL;
goto bail;
}
/* get the entry */
e = operation_get_target_entry(op);
if ((e == NULL) || (id != operation_get_target_entry_id(op))) {
/* if the entry is not the target_entry (base search)
* we need to fetch it from the entry cache (it was not
* referenced in the operation) */
e = id2entry(be, id, &txn, &err);
}
if (e == NULL) {
if (err != 0 && err != DBI_RC_NOTFOUND) {
slapi_log_err(SLAPI_LOG_ERR, "ldbm_back_next_search_entry",
"next_search_entry db err %d\n", err);
if (LDBM_OS_ERR_IS_DISKFULL(err)) {
/* disk full in the middle of returning search results
* is gonna be traumatic. unavoidable. */
slapi_send_ldap_result(pb, LDAP_OPERATIONS_ERROR, NULL, NULL, 0, NULL);
rc = return_on_disk_full(li);
goto bail;
}
}
slapi_log_err(SLAPI_LOG_ARGS, "ldbm_back_next_search_entry", "candidate %lu not found\n",
(u_long)id);
if (err == DBI_RC_NOTFOUND) {
/* Since we didn't really look at this entry, we should
* decrement the lookthrough counter (it was just incremented).
* If we didn't do this, it would be possible to go over the
* lookthrough limit when there are fewer entries in the database
* than the lookthrough limit. This could happen on an ALLIDS
* search after adding a bunch of entries and then deleting them. */
--sr->sr_lookthroughcount;
}
continue;
}
e->ep_vlventry = NULL;
sr->sr_entry = e;
/*
* If it's a referral, return it without checking the
* filter explicitly here since it's only a candidate anyway. Do
* check the scope though.
*/
if (!managedsait && slapi_entry_attr_find(e->ep_entry, "ref", &attr) == 0) {
Slapi_Value **refs = attr_get_present_values(attr);
if (refs == NULL || refs[0] == NULL) {
slapi_log_err(SLAPI_LOG_ERR, "ldbm_back_next_search_entry", "null ref in (%s)\n",
backentry_get_ndn(e));
} else if (slapi_sdn_scope_test(backentry_get_sdn(e), basesdn, scope)) {
slapi_pblock_set(pb, SLAPI_SEARCH_RESULT_ENTRY, e->ep_entry);
rc = 0;
goto bail;
}
} else {
/*
* As per slapi_filter_test:
* 0 filter matched
* -1 filter did not match
* >0 an ldap error code
*/
int filter_test = -1;
int is_bulk_import = operation_is_flag_set(op, OP_FLAG_BULK_IMPORT);
if (is_bulk_import) {
/* If it is from bulk import, no need to check. */
filter_test = 0;
slimit = -1; /* no sizelimit applied */
} else {
/* ugaston - we don't want to mistake this filter failure with the one below due to ACL,
* because whereas the former should be read as 'no entry must be returned', the latter
* might still lead to return an empty entry. */
if (slapi_entry_flag_is_set(e->ep_entry, SLAPI_ENTRY_FLAG_LDAPSUBENTRY)) {
/* If the entry is an LDAP subentry and RFC 3672 Subentries control is present
* and its value is set to false OR filter don't filter subentries
*/
if (!operation_is_flag_set(op, OP_FLAG_SUBENTRIES_TRUE) &&
(operation_is_flag_set(op, OP_FLAG_SUBENTRIES_FALSE) ||
!filter_flag_is_set(filter, SLAPI_FILTER_LDAPSUBENTRY)))
{
filter_test = -1;
} else {
filter_test = 0;
}
} else {
/* If the entry is a normal LDAP entry and RFC 3672 Subentries control
* is present and its value is set to true OR the entry is a TombStone and
* filter don't filter Tombstone don't return the entry.
* We make a special case to allow a non-root user
* to search for the RUV entry using a filter of:
*
* "(&(objectclass=nstombstone)(nsuniqueid=ffffffff-ffffffff-ffffffff-ffffffff))"
*
* For this RUV case, we let the ACL check apply.
*/
if (operation_is_flag_set(op, OP_FLAG_SUBENTRIES_TRUE) ||
(slapi_entry_flag_is_set(e->ep_entry, SLAPI_ENTRY_FLAG_TOMBSTONE) &&
((!isroot && !filter_flag_is_set(filter, SLAPI_FILTER_RUV)) ||
!filter_flag_is_set(filter, SLAPI_FILTER_TOMBSTONE))))
{
filter_test = -1;
} else {
filter_test = 0;
}
}
/* If any of the ... "logic" above failed, leave the failure in place. */
if (filter_test == 0) {
filter_test = -1;
if (0 == (sr->sr_flags & SR_FLAG_MUST_APPLY_FILTER_TEST)) {
/* BYPASS - it's a regular entry, check if it passes the ACL check */
/*
* Since we do access control checking in the filter test we need to check access now
* This checks access to the filter as INTENDED by the user - not the query that
* we have messed with internally - remember, our internal changes are secure!
*/
slapi_log_err(SLAPI_LOG_FILTER, "ldbm_back_next_search_entry",
"Bypassing filter test for %s\n", slapi_entry_get_dn_const(e->ep_entry));
if (ACL_CHECK_FLAG) {
filter_test = slapi_vattr_filter_test(pb, e->ep_entry, filter_intent, ACL_CHECK_FLAG);
} else {
filter_test = 0;
}
/* If we don't check this, we could stomp the filter_test aci denied result. */
if (filter_test == 0 && li->li_filter_bypass_check) {
slapi_log_err(SLAPI_LOG_FILTER, "ldbm_back_next_search_entry", "Checking bypass\n");
filter_test = slapi_vattr_filter_test(pb, e->ep_entry, filter, 0);
if (filter_test != 0) {
/* Oops ! This means that we thought we could bypass the filter test, but noooo... */
slapi_log_err(SLAPI_LOG_ERR, "ldbm_back_next_search_entry",
"Filter bypass ERROR on entry %s\n", backentry_get_ndn(e));
}
}
} else {
/* MUST APPLY - This occurs when we have a partial candidate set */
/*
* Remember, MUST_APPLY is set during a shortcut condition from the IDL backend,
* which means we can NOT ignore it! When it's 0, we assume that IDL fully resolved
* which means we then check the ACL only, we have a decision about if we do the
* test based on the configuration.
*/
/*
* IMPORTANT - there is a large and important difference between "filter as intended"
* and filter as executed. The filter as executed is what we optimised to, and this
* can importantly include items like parentid in a one level search. The filter as
* intended however is what the user ASKED for. We shouldn't penalise the user because
* we mucked with their filter, so we check the ACI with the "filter as intended", but
* we need to STILL apply the filter test with "as executed" in case of a test threshold
* shortcut (lest we accidentally prevent the user seeing what they wanted ....)
*/
slapi_log_err(SLAPI_LOG_FILTER, "ldbm_back_next_search_entry",
"Applying filter test to %s\n", slapi_entry_get_dn_const(e->ep_entry));
filter_test = slapi_vattr_filter_test(pb, e->ep_entry, filter_intent, ACL_CHECK_FLAG);
slapi_log_err(SLAPI_LOG_FILTER, "ldbm_back_next_search_entry",
"Applying filter test intermediate value %d \n", filter_test);
if (filter_test == 0) {
filter_test = slapi_vattr_filter_test(pb, e->ep_entry, filter, 0);
}
}
}
}
slapi_log_err(SLAPI_LOG_FILTER, "ldbm_back_next_search_entry",
"filter test value %d %s \n", filter_test, slapi_entry_get_dn_const(e->ep_entry));
if ((filter_test == 0) || (sr->sr_virtuallistview && (filter_test != -1)))
/* ugaston - if filter failed due to subentries or tombstones (filter_test=-1),
* just forget about it, since we don't want to return anything at all. */
{
if (is_bulk_import ||
slapi_uniqueIDCompareString(target_uniqueid, e->ep_entry->e_uniqueid) ||
slapi_sdn_scope_test_ext(backentry_get_sdn(e), basesdn, scope, e->ep_entry->e_flags)) {
/* check size limit */
if (slimit >= 0) {
if (--slimit < 0) {
non_target_cache_return(op, &inst->inst_cache, &e);
slapi_pblock_set(pb, SLAPI_SEARCH_RESULT_SET_SIZE_ESTIMATE, &estimate);
delete_search_result_set(pb, &sr);
slapi_send_ldap_result(pb, LDAP_SIZELIMIT_EXCEEDED, NULL, NULL, nentries, urls);
rc = SLAPI_FAIL_GENERAL;
goto bail;
}
slapi_pblock_set(pb, SLAPI_SEARCH_SIZELIMIT, &slimit);
if (op_is_pagedresults(op)) {
/*
* On Simple Paged Results search,
* sizelimit is appied to each page.
*/
pagedresults_set_sizelimit(conn, op, slimit, pr_idx);
}
sr->sr_current_sizelimit = slimit;
}
if ((filter_test != 0) && sr->sr_virtuallistview) {
/* Slapi Filter Test failed.
* Must be that the ACL check failed.
* Send back an empty entry.
*/
sr->sr_vlventry = slapi_entry_alloc();
slapi_entry_init(sr->sr_vlventry, slapi_ch_strdup(slapi_entry_get_dn_const(e->ep_entry)), NULL);
e->ep_vlventry = sr->sr_vlventry;
slapi_pblock_set(pb, SLAPI_SEARCH_RESULT_ENTRY, sr->sr_vlventry);
} else {
slapi_pblock_set(pb, SLAPI_SEARCH_RESULT_ENTRY, e->ep_entry);
}
rc = 0;
goto bail;
} else {
non_target_cache_return(op, &inst->inst_cache, &(sr->sr_entry));
sr->sr_entry = NULL;
}
} else {
/* Failed the filter test, and this isn't a VLV Search */
non_target_cache_return(op, &inst->inst_cache, &(sr->sr_entry));
sr->sr_entry = NULL;
if (LDAP_UNWILLING_TO_PERFORM == filter_test) {
/* Need to catch this error to detect the vattr loop */
slapi_send_ldap_result(pb, filter_test, NULL,
"Failed the filter test", 0, NULL);
rc = SLAPI_FAIL_GENERAL;
goto bail;
} else if (LDAP_TIMELIMIT_EXCEEDED == filter_test) {
slapi_send_ldap_result(pb, LDAP_TIMELIMIT_EXCEEDED, NULL, NULL, nentries, urls);
rc = SLAPI_FAIL_GENERAL;
goto bail;
}
}
}
}
/* check for the final abandon */
if (slapi_op_abandoned(pb)) {
slapi_pblock_set(pb, SLAPI_SEARCH_RESULT_SET_SIZE_ESTIMATE, &estimate);
slapi_pblock_set(pb, SLAPI_SEARCH_RESULT_ENTRY, NULL);
delete_search_result_set(pb, &sr);
rc = SLAPI_FAIL_GENERAL;
}
bail:
if (rc && op) {
op->o_reverse_search_state = 0;
}
return rc;
}
/*
* Move back the current position in the search result set by one.
* Paged Results needs to read ahead one entry to catch the end of the search
* result set at the last entry not to show the prompt when there is no more
* entries.
*/
void
ldbm_back_prev_search_results(Slapi_PBlock *pb)
{
backend *be;
ldbm_instance *inst;
back_search_result_set *sr;
slapi_pblock_get(pb, SLAPI_BACKEND, &be);
if (!be) {
slapi_log_err(SLAPI_LOG_ERR,
"ldbm_back_prev_search_results", "no backend\n");
return;
}
inst = (ldbm_instance *)be->be_instance_info;
if (!inst) {
slapi_log_err(SLAPI_LOG_ERR,
"ldbm_back_prev_search_results", "no backend instance\n");
return;
}
slapi_pblock_get(pb, SLAPI_SEARCH_RESULT_SET, &sr);
if (sr) {
if (sr->sr_entry) {
/* The last entry should be returned to cache */
slapi_log_err(SLAPI_LOG_BACKLDBM,
"ldbm_back_prev_search_results", "returning: %s\n",
slapi_entry_get_dn_const(sr->sr_entry->ep_entry));
CACHE_RETURN(&inst->inst_cache, &(sr->sr_entry));
sr->sr_entry = NULL;
}
idl_iterator_decrement(&(sr->sr_current));
--sr->sr_lookthroughcount;
}
return;
}
static back_search_result_set *
new_search_result_set(IDList *idl, int vlv, int lookthroughlimit)
{
back_search_result_set *p = (back_search_result_set *)slapi_ch_calloc(1, sizeof(back_search_result_set));
p->sr_candidates = idl;
p->sr_current = idl_iterator_init(idl);
p->sr_lookthroughlimit = lookthroughlimit;
p->sr_virtuallistview = vlv;
p->sr_current_sizelimit = -1;
return p;
}
static void
delete_search_result_set(Slapi_PBlock *pb, back_search_result_set **sr)
{
int rc = 0, filt_errs = 0;
if (NULL == sr || NULL == *sr) {
return;
}
if (pb) {
Operation *pb_op = NULL;
slapi_pblock_get(pb, SLAPI_OPERATION, &pb_op);
if (op_is_pagedresults(pb_op)) {
/* If the op is pagedresults, let the module clean up sr. */
return;
}
pagedresults_set_search_result_pb(pb, NULL, 0);
slapi_pblock_set(pb, SLAPI_SEARCH_RESULT_SET, NULL);
}
if (NULL != (*sr)->sr_candidates) {
idl_free(&((*sr)->sr_candidates));
}
rc = slapi_filter_apply((*sr)->sr_norm_filter, ldbm_search_free_compiled_filter,
NULL, &filt_errs);
if (rc != SLAPI_FILTER_SCAN_NOMORE) {
slapi_log_err(SLAPI_LOG_ERR, "delete_search_result_set",
"Could not free the pre-compiled regexes in the search filter - error %d %d\n",
rc, filt_errs);
}
rc = slapi_filter_apply((*sr)->sr_norm_filter_intent, ldbm_search_free_compiled_filter, NULL, &filt_errs);
if (rc != SLAPI_FILTER_SCAN_NOMORE) {
slapi_log_err(SLAPI_LOG_ERR, "delete_search_result_set",
"Could not free the pre-compiled regexes in the intent search filter - error %d %d\n",
rc, filt_errs);
}
slapi_filter_free((*sr)->sr_norm_filter, 1);
slapi_filter_free((*sr)->sr_norm_filter_intent, 1);
memset(*sr, 0, sizeof(back_search_result_set));
slapi_ch_free((void **)sr);
return;
}
/*
* This function is called from pagedresults free/cleanup functions.
*/
void
ldbm_back_search_results_release(void **sr)
{
/* passing NULL pb forces to delete the search result set */
delete_search_result_set(NULL, (back_search_result_set **)sr);
}
int
ldbm_back_entry_release(Slapi_PBlock *pb, void *backend_info_ptr)
{
backend *be;
ldbm_instance *inst;
if (backend_info_ptr == NULL) {
return 1;
}
slapi_pblock_get(pb, SLAPI_BACKEND, &be);
inst = (ldbm_instance *)be->be_instance_info;
if (((struct backentry *)backend_info_ptr)->ep_vlventry != NULL) {
/* This entry was created during a vlv search whose acl check failed.
* It needs to be freed here */
slapi_entry_free(((struct backentry *)backend_info_ptr)->ep_vlventry);
((struct backentry *)backend_info_ptr)->ep_vlventry = NULL;
}
CACHE_RETURN(&inst->inst_cache, (struct backentry **)&backend_info_ptr);
return 0;
}
|