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 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257
|
/** 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
/* cache.c - routines to maintain an in-core cache of entries */
#include "back-ldbm.h"
#ifdef DEBUG
#define LDAP_CACHE_DEBUG
/* #define LDAP_CACHE_DEBUG_LRU * causes slowdown */
/* #define CACHE_DEBUG * causes slowdown */
#endif
/* don't let hash be smaller than this # of slots */
#define MINHASHSIZE 1024
/*
* the cache has three entry points (ways to find things):
*
* by entry e.g., if you already have an entry from the cache
* and want to delete it. (really by entry ptr)
* by dn e.g., when looking for the base object of a search
* by id e.g., for search candidates
* by uniqueid
*
* these correspond to three different avl trees that are maintained.
* those avl trees are being destroyed as we speak.
*/
#ifdef LDAP_CACHE_DEBUG
#define ASSERT(_x) \
do { \
if (!(_x)) { \
slapi_log_err(SLAPI_LOG_ERR, "cache", "BAD CACHE ASSERTION at %s/%d: %s\n", \
__FILE__, __LINE__, #_x); \
*(char *)0L = 23; \
} \
} while (0)
#define LOG(...) slapi_log_err(SLAPI_LOG_CACHE, (char *)__func__, __VA_ARGS__)
//# define LOG(_a, _x1, _x2, _x3) slapi_log_err(SLAPI_LOG_CACHE, _a, _x1, _x2, _x3)
#else
#define ASSERT(_x) ;
//#define LOG(_a, _x1, _x2, _x3) ;
#define LOG(...)
#endif
typedef enum {
ENTRY_CACHE,
DN_CACHE,
} CacheType;
#define LRU_DETACH(cache, e) lru_detach((cache), (void *)(e))
#define CACHE_LRU_HEAD(cache, type) ((type)((cache)->c_lruhead))
#define CACHE_LRU_TAIL(cache, type) ((type)((cache)->c_lrutail))
#define BACK_LRU_NEXT(entry, type) ((type)((entry)->ep_lrunext))
#define BACK_LRU_PREV(entry, type) ((type)((entry)->ep_lruprev))
/* static functions */
static void entrycache_clear_int(struct cache *cache);
static void entrycache_set_max_size(struct cache *cache, uint64_t bytes);
static int entrycache_remove_int(struct cache *cache, struct backentry *e);
static void entrycache_return(struct cache *cache, struct backentry **bep, PRBool locked);
static int entrycache_replace(struct cache *cache, struct backentry *olde, struct backentry *newe);
static int entrycache_add_int(struct cache *cache, struct backentry *e, int state, struct backentry **alt);
static struct backentry *entrycache_flush(struct cache *cache);
#ifdef LDAP_CACHE_DEBUG_LRU
static void entry_lru_verify(struct cache *cache, struct backentry *e, int in);
#endif
static int dn_same_id(const void *bdn, const void *k);
static void dncache_clear_int(struct cache *cache);
static void dncache_set_max_size(struct cache *cache, uint64_t bytes);
static int dncache_remove_int(struct cache *cache, struct backdn *dn);
static void dncache_return(struct cache *cache, struct backdn **bdn);
static int dncache_replace(struct cache *cache, struct backdn *olddn, struct backdn *newdn);
static int dncache_add_int(struct cache *cache, struct backdn *bdn, int state, struct backdn **alt);
static struct backdn *dncache_flush(struct cache *cache);
static int cache_is_in_cache_nolock(void *ptr);
#ifdef LDAP_CACHE_DEBUG_LRU
static void dn_lru_verify(struct cache *cache, struct backdn *dn, int in);
#endif
/***** tiny hashtable implementation *****/
#define HASH_VALUE(_key, _keylen) \
((ht->hashfn == NULL) ? (*(unsigned int *)(_key)) : ((*ht->hashfn)(_key, _keylen)))
#define HASH_NEXT(ht, entry) (*(void **)((char *)(entry) + (ht)->offset))
static int
entry_same_id(const void *e, const void *k)
{
return (((struct backentry *)e)->ep_id == *(ID *)k);
}
static unsigned long
dn_hash(const void *key, size_t keylen)
{
unsigned char *x = (unsigned char *)key;
ssize_t i;
unsigned long val = 0;
for (i = keylen - 1; i >= 0; i--)
val += ((val << 5) + (*x++)) & 0xffffffff;
return val;
}
#ifdef UUIDCACHE_ON
static unsigned long
uuid_hash(const void *key, size_t keylen)
{
unsigned char *x = (unsigned char *)key;
size_t i;
unsigned long val = 0;
for (i = 0; i < keylen; i++, x++) {
char c = (*x <= '9' ? (*x - '0') : (*x - 'A' + 10));
val = ((val << 4) ^ (val >> 28) ^ c) & 0xffffffff;
}
return val;
}
static int
entry_same_uuid(const void *e, const void *k)
{
struct backentry *be = (struct backentry *)e;
const char *uuid = slapi_entry_get_uniqueid(be->ep_entry);
return (strcmp(uuid, (char *)k) == 0);
}
#endif
static int
entry_same_dn(const void *e, const void *k)
{
struct backentry *be = (struct backentry *)e;
const char *ndn = slapi_sdn_get_ndn(backentry_get_sdn(be));
return (strcmp(ndn, (char *)k) == 0);
}
Hashtable *
new_hash(u_long size, u_long offset, HashFn hfn, HashTestFn tfn)
{
static u_long prime[] = {3, 5, 7, 11, 13, 17, 19};
Hashtable *ht;
int ok = 0;
size_t i = 0;
if (size < MINHASHSIZE)
size = MINHASHSIZE;
/* move up to nearest relative prime (it's a statistical thing) */
size |= 1;
do {
ok = 1;
for (i = 0; i < (sizeof(prime) / sizeof(prime[0])); i++)
if (!(size % prime[i]))
ok = 0;
if (!ok)
size += 2;
} while (!ok);
ht = (Hashtable *)slapi_ch_calloc(1, sizeof(Hashtable) + size * sizeof(void *));
if (!ht)
return NULL;
ht->size = size;
ht->offset = offset;
ht->hashfn = hfn;
ht->testfn = tfn;
/* calloc zeroes out the slots automagically */
return ht;
}
/* adds an entry to the hash -- returns 1 on success, 0 if the key was
* already there (filled into 'alt' if 'alt' is not NULL)
*/
int
add_hash(Hashtable *ht, void *key, uint32_t keylen, void *entry, void **alt)
{
struct backcommon *back_entry = (struct backcommon *)entry;
u_long val, slot;
void *e;
val = HASH_VALUE(key, keylen);
slot = (val % ht->size);
/* first, check if this key is already in the table */
e = ht->slot[slot];
while (e) {
if ((*ht->testfn)(e, key)) {
/* ack! already in! */
if (alt)
*alt = e;
return 0;
}
e = HASH_NEXT(ht, e);
}
/* ok, it's not already there, so add it */
back_entry->ep_create_time = slapi_current_rel_time_hr();
HASH_NEXT(ht, entry) = ht->slot[slot];
ht->slot[slot] = entry;
return 1;
}
/* returns 1 if the item was found, and puts a ptr to it in 'entry' */
int
find_hash(Hashtable *ht, const void *key, uint32_t keylen, void **entry)
{
u_long val, slot;
void *e;
val = HASH_VALUE(key, keylen);
slot = (val % ht->size);
e = ht->slot[slot];
while (e) {
if ((*ht->testfn)(e, key)) {
*entry = e;
return 1;
}
e = HASH_NEXT(ht, e);
}
/* no go */
*entry = NULL;
return 0;
}
/* returns 1 if the item was found and removed */
int
remove_hash(Hashtable *ht, const void *key, uint32_t keylen)
{
u_long val, slot;
void *e, *laste = NULL;
val = HASH_VALUE(key, keylen);
slot = (val % ht->size);
e = ht->slot[slot];
while (e) {
if ((*ht->testfn)(e, key)) {
/* remove this one */
if (laste)
HASH_NEXT(ht, laste) = HASH_NEXT(ht, e);
else
ht->slot[slot] = HASH_NEXT(ht, e);
HASH_NEXT(ht, e) = NULL;
return 1;
}
laste = e;
e = HASH_NEXT(ht, e);
}
/* nope */
return 0;
}
#ifdef LDAP_CACHE_DEBUG
void
dump_hash(Hashtable *ht)
{
u_long i;
void *e;
char ep_id[16];
char ep_ids[80];
char *p;
int ids_size = 80;
p = ep_ids;
for (i = 0; i < ht->size; i++) {
int len;
e = ht->slot[i];
if (NULL == e) {
continue;
}
do {
PR_snprintf(ep_id, 16, "%u-%u", ((struct backcommon *)e)->ep_id, ((struct backcommon *)e)->ep_refcnt);
len = strlen(ep_id);
if (ids_size < len + 1) {
slapi_log_err(SLAPI_LOG_DEBUG, "dump_hash", "%s\n", ep_ids);
p = ep_ids;
ids_size = 80;
}
PR_snprintf(p, ids_size, "%s:", ep_id);
p += len + 1;
ids_size -= len + 1;
} while ((e = HASH_NEXT(ht, e)));
}
if (p != ep_ids) {
slapi_log_err(SLAPI_LOG_DEBUG, "dump_hash", "%s\n", ep_ids);
}
}
#endif
/* hashtable distribution stats --
* slots: # of slots in the hashtable
* total_entries: # of entries in the hashtable
* max_entries_per_slot: highest number of chained entries in a single slot
* slot_stats: if X is the number of entries in a given slot, then
* slot_stats[X] will hold the number of slots that held X entries
*/
static void
hash_stats(Hashtable *ht, u_long *slots, int *total_entries, int *max_entries_per_slot, int **slot_stats)
{
#define MAX_SLOT_STATS 50
u_long i;
int x;
void *e;
*slot_stats = (int *)slapi_ch_malloc(MAX_SLOT_STATS * sizeof(int));
for (i = 0; i < MAX_SLOT_STATS; i++)
(*slot_stats)[i] = 0;
*slots = ht->size;
*max_entries_per_slot = 0;
*total_entries = 0;
for (i = 0; i < ht->size; i++) {
e = ht->slot[i];
x = 0;
while (e) {
x++;
(*total_entries)++;
e = HASH_NEXT(ht, e);
}
if (x < MAX_SLOT_STATS)
(*slot_stats)[x]++;
if (x > *max_entries_per_slot)
*max_entries_per_slot = x;
}
}
/***** add/remove entries to/from the LRU list *****/
#ifdef LDAP_CACHE_DEBUG_LRU
static void
lru_verify(struct cache *cache, void *ptr, int in)
{
struct backcommon *e;
if (NULL == ptr) {
LOG("=> lru_verify\n<= lru_verify (null entry)\n");
return;
}
e = (struct backcommon *)ptr;
if (CACHE_TYPE_ENTRY == e->ep_type) {
entry_lru_verify(cache, (struct backentry *)e, in);
} else {
dn_lru_verify(cache, (struct backdn *)e, in);
}
}
/* for debugging -- painstakingly verify the lru list is ok -- if 'in' is
* true, then entry 'e' should be in the list right now; otherwise, it
* should NOT be in the list.
*/
static void
entry_lru_verify(struct cache *cache, struct backentry *e, int in)
{
int is_in = 0;
int count = 0;
struct backentry *ep;
ep = CACHE_LRU_HEAD(cache, struct backentry *);
while (ep) {
count++;
if (ep == e) {
is_in = 1;
}
if (ep->ep_lruprev) {
ASSERT(BACK_LRU_NEXT(BACK_LRU_PREV(ep, struct backentry *), struct backentry *) == ep);
} else {
ASSERT(ep == CACHE_LRU_HEAD(cache, struct backentry *));
}
if (ep->ep_lrunext) {
ASSERT(BACK_LRU_PREV(BACK_LRU_NEXT(ep, struct backentry *), struct backentry *) == ep);
} else {
ASSERT(ep == CACHE_LRU_TAIL(cache, struct backentry *));
}
ep = BACK_LRU_NEXT(ep, struct backentry *);
}
ASSERT(is_in == in);
}
#endif
/* assume lock is held */
static void
lru_detach(struct cache *cache, void *ptr)
{
struct backcommon *e;
if (NULL == ptr) {
LOG("=> lru_detach\n<= lru_detach (null entry)\n");
return;
}
e = (struct backcommon *)ptr;
#ifdef LDAP_CACHE_DEBUG_LRU
lru_verify(cache, e, 1);
#endif
if (e->ep_lruprev) {
e->ep_lruprev->ep_lrunext = NULL;
cache->c_lrutail = e->ep_lruprev;
} else {
cache->c_lruhead = NULL;
cache->c_lrutail = NULL;
}
#ifdef LDAP_CACHE_DEBUG_LRU
lru_verify(cache, e, 0);
#endif
}
/* assume lock is held */
static void
lru_delete(struct cache *cache, void *ptr)
{
struct backcommon *e;
if (NULL == ptr) {
LOG("=> lru_delete\n<= lru_delete (null entry)\n");
return;
}
e = (struct backcommon *)ptr;
#ifdef LDAP_CACHE_DEBUG_LRU
lru_verify(cache, e, 1);
#endif
if (e->ep_lruprev)
e->ep_lruprev->ep_lrunext = e->ep_lrunext;
else
cache->c_lruhead = e->ep_lrunext;
if (e->ep_lrunext)
e->ep_lrunext->ep_lruprev = e->ep_lruprev;
else
cache->c_lrutail = e->ep_lruprev;
#ifdef LDAP_CACHE_DEBUG_LRU
e->ep_lrunext = e->ep_lruprev = NULL;
lru_verify(cache, e, 0);
#endif
}
/* assume lock is held */
static void
lru_add(struct cache *cache, void *ptr)
{
struct backcommon *e;
if (NULL == ptr) {
LOG("=> lru_add\n<= lru_add (null entry)\n");
return;
}
e = (struct backcommon *)ptr;
#ifdef LDAP_CACHE_DEBUG_LRU
lru_verify(cache, e, 0);
#endif
e->ep_lruprev = NULL;
e->ep_lrunext = cache->c_lruhead;
cache->c_lruhead = e;
if (e->ep_lrunext)
e->ep_lrunext->ep_lruprev = e;
if (!cache->c_lrutail)
cache->c_lrutail = e;
#ifdef LDAP_CACHE_DEBUG_LRU
lru_verify(cache, e, 1);
#endif
}
/***** cache overhead *****/
static void
cache_make_hashes(struct cache *cache, int type)
{
u_long hashsize = (cache->c_maxentries > 0) ? cache->c_maxentries : (cache->c_maxsize / 512);
if (CACHE_TYPE_ENTRY == type) {
cache->c_dntable = new_hash(hashsize,
HASHLOC(struct backentry, ep_dn_link),
dn_hash, entry_same_dn);
cache->c_idtable = new_hash(hashsize,
HASHLOC(struct backentry, ep_id_link),
NULL, entry_same_id);
#ifdef UUIDCACHE_ON
cache->c_uuidtable = new_hash(hashsize,
HASHLOC(struct backentry, ep_uuid_link),
uuid_hash, entry_same_uuid);
#endif
} else if (CACHE_TYPE_DN == type) {
cache->c_dntable = NULL;
cache->c_idtable = new_hash(hashsize,
HASHLOC(struct backdn, dn_id_link),
NULL, dn_same_id);
#ifdef UUIDCACHE_ON
cache->c_uuidtable = NULL;
#endif
}
}
/*
* Helper function for flush_hash() to calculate if the entry should be
* removed from the cache.
*/
static int32_t
flush_remove_entry(struct timespec *entry_time, struct timespec *start_time)
{
struct timespec diff;
slapi_timespec_diff(entry_time, start_time, &diff);
if (diff.tv_sec >= 0) {
return 1;
} else {
return 0;
}
}
/*
* Flush all the cache entries that were added after the "start time"
* This is called when a backend transaction plugin fails, and we need
* to remove all the possible invalid entries in the cache. We need
* to check both the ID and DN hashtables when checking the entry cache.
*
* If the ref count is 0, we can straight up remove it from the cache, but
* if the ref count is greater than 1, then the entry is currently in use.
* In the later case we set the entry state to ENTRY_STATE_INVALID, and
* when the owning thread cache_returns() the cache entry is automatically
* removed so another thread can not use/lock the invalid cache entry.
*/
static void
flush_hash(struct cache *cache, struct timespec *start_time, int32_t type)
{
Hashtable *ht = cache->c_idtable; /* start with the ID table as it's in both ENTRY and DN caches */
void *e, *laste = NULL;
cache_lock(cache);
for (size_t i = 0; i < ht->size; i++) {
e = ht->slot[i];
while (e) {
struct backcommon *entry = (struct backcommon *)e;
uint64_t remove_it = 0;
if (flush_remove_entry(&entry->ep_create_time, start_time)) {
/* Mark the entry to be removed */
slapi_log_err(SLAPI_LOG_CACHE, "flush_hash", "[%s] Removing entry id (%d)\n",
type ? "DN CACHE" : "ENTRY CACHE", entry->ep_id);
remove_it = 1;
}
laste = e;
e = HASH_NEXT(ht, e);
if (remove_it) {
/* since we have the cache lock we know we can trust refcnt */
entry->ep_state |= ENTRY_STATE_INVALID;
if (entry->ep_refcnt == 0) {
entry->ep_refcnt++;
lru_delete(cache, laste);
if (type == ENTRY_CACHE) {
entrycache_remove_int(cache, laste);
entrycache_return(cache, (struct backentry **)&laste, PR_TRUE);
} else {
dncache_remove_int(cache, laste);
dncache_return(cache, (struct backdn **)&laste);
}
} else {
/* Entry flagged for removal */
slapi_log_err(SLAPI_LOG_CACHE, "flush_hash",
"[%s] Flagging entry to be removed later: id (%d) refcnt: %d\n",
type ? "DN CACHE" : "ENTRY CACHE", entry->ep_id, entry->ep_refcnt);
}
}
}
}
if (type == ENTRY_CACHE) {
/* Also check the DN hashtable */
ht = cache->c_dntable;
for (size_t i = 0; i < ht->size; i++) {
e = ht->slot[i];
while (e) {
struct backcommon *entry = (struct backcommon *)e;
uint64_t remove_it = 0;
if (flush_remove_entry(&entry->ep_create_time, start_time)) {
/* Mark the entry to be removed */
slapi_log_err(SLAPI_LOG_CACHE, "flush_hash", "[ENTRY CACHE] Removing entry id (%d)\n",
entry->ep_id);
remove_it = 1;
}
laste = e;
e = HASH_NEXT(ht, e);
if (remove_it) {
/* since we have the cache lock we know we can trust refcnt */
entry->ep_state |= ENTRY_STATE_INVALID;
if (entry->ep_refcnt == 0) {
entry->ep_refcnt++;
lru_delete(cache, laste);
entrycache_remove_int(cache, laste);
entrycache_return(cache, (struct backentry **)&laste, PR_TRUE);
} else {
/* Entry flagged for removal */
slapi_log_err(SLAPI_LOG_CACHE, "flush_hash",
"[ENTRY CACHE] Flagging entry to be removed later: id (%d) refcnt: %d\n",
entry->ep_id, entry->ep_refcnt);
}
}
}
}
}
cache_unlock(cache);
}
void
revert_cache(ldbm_instance *inst, struct timespec *start_time)
{
if (inst == NULL) {
return;
}
flush_hash(&inst->inst_cache, start_time, ENTRY_CACHE);
flush_hash(&inst->inst_dncache, start_time, DN_CACHE);
}
/* initialize the cache */
int
cache_init(struct cache *cache, uint64_t maxsize, int64_t maxentries, int type)
{
slapi_log_err(SLAPI_LOG_TRACE, "cache_init", "-->\n");
cache->c_maxsize = maxsize;
/* coverity[missing_lock] */
cache->c_maxentries = maxentries;
cache->c_curentries = 0;
if (config_get_slapi_counters()) {
if (cache->c_cursize) {
slapi_counter_destroy(&cache->c_cursize);
}
cache->c_cursize = slapi_counter_new();
if (cache->c_hits) {
slapi_counter_destroy(&cache->c_hits);
}
cache->c_hits = slapi_counter_new();
if (cache->c_tries) {
slapi_counter_destroy(&cache->c_tries);
}
cache->c_tries = slapi_counter_new();
} else {
slapi_log_err(SLAPI_LOG_NOTICE,
"cache_init", "slapi counter is not available.\n");
cache->c_cursize = NULL;
cache->c_hits = NULL;
cache->c_tries = NULL;
}
cache->c_lruhead = cache->c_lrutail = NULL;
cache_make_hashes(cache, type);
if (((cache->c_mutex = PR_NewMonitor()) == NULL) ||
((cache->c_emutexalloc_mutex = PR_NewLock()) == NULL)) {
slapi_log_err(SLAPI_LOG_ERR, "cache_init", "PR_NewMonitor failed\n");
return 0;
}
slapi_log_err(SLAPI_LOG_TRACE, "cache_init", "<--\n");
return 1;
}
#define CACHE_FULL(cache) \
((slapi_counter_get_value((cache)->c_cursize) > (cache)->c_maxsize) || \
(((cache)->c_maxentries > 0) && \
((cache)->c_curentries > (cache)->c_maxentries)))
/* clear out the cache to make room for new entries
* you must be holding cache->c_mutex !!
* return a pointer on the list of entries that get kicked out
* of the cache.
* These entries should be freed outside of the cache->c_mutex
*/
static struct backentry *
entrycache_flush(struct cache *cache)
{
struct backentry *e = NULL;
LOG("=> entrycache_flush\n");
/* all entries on the LRU list are guaranteed to have a refcnt = 0
* (iow, nobody's using them), so just delete from the tail down
* until the cache is a managable size again.
* (cache->c_mutex is locked when we enter this)
*/
while ((cache->c_lrutail != NULL) && CACHE_FULL(cache)) {
if (e == NULL) {
e = CACHE_LRU_TAIL(cache, struct backentry *);
} else {
e = BACK_LRU_PREV(e, struct backentry *);
}
ASSERT(e->ep_refcnt == 0);
e->ep_refcnt++;
if (entrycache_remove_int(cache, e) < 0) {
slapi_log_err(SLAPI_LOG_ERR,
"entrycache_flush", "Unable to delete entry\n");
break;
}
if (e == CACHE_LRU_HEAD(cache, struct backentry *)) {
break;
}
}
if (e)
LRU_DETACH(cache, e);
LOG("<= entrycache_flush (down to %lu entries, %lu bytes)\n",
cache->c_curentries, slapi_counter_get_value(cache->c_cursize));
return e;
}
/* remove everything from the cache */
static void
entrycache_clear_int(struct cache *cache)
{
struct backentry *eflush = NULL;
struct backentry *eflushtemp = NULL;
size_t size = cache->c_maxsize;
cache->c_maxsize = 0;
eflush = entrycache_flush(cache);
while (eflush) {
eflushtemp = BACK_LRU_NEXT(eflush, struct backentry *);
backentry_free(&eflush);
eflush = eflushtemp;
}
cache->c_maxsize = size;
if (cache->c_curentries > 0) {
slapi_log_err(SLAPI_LOG_CACHE,
"entrycache_clear_int", "There are still %" PRIu64 " entries "
"in the entry cache.\n",
cache->c_curentries);
#ifdef LDAP_CACHE_DEBUG
slapi_log_err(SLAPI_LOG_DEBUG, "entrycache_clear_int", "ID(s) in entry cache:\n");
dump_hash(cache->c_idtable);
#endif
}
}
void
cache_clear(struct cache *cache, int type)
{
cache_lock(cache);
if (CACHE_TYPE_ENTRY == type) {
entrycache_clear_int(cache);
} else if (CACHE_TYPE_DN == type) {
dncache_clear_int(cache);
}
cache_unlock(cache);
}
static void
erase_cache(struct cache *cache, int type)
{
if (CACHE_TYPE_ENTRY == type) {
entrycache_clear_int(cache);
} else if (CACHE_TYPE_DN == type) {
dncache_clear_int(cache);
}
slapi_ch_free((void **)&cache->c_dntable);
slapi_ch_free((void **)&cache->c_idtable);
#ifdef UUIDCACHE_ON
slapi_ch_free((void **)&cache->c_uuidtable);
#endif
}
/* to be used on shutdown or when destroying a backend instance */
void
cache_destroy_please(struct cache *cache, int type)
{
erase_cache(cache, type);
slapi_counter_destroy(&cache->c_cursize);
slapi_counter_destroy(&cache->c_hits);
slapi_counter_destroy(&cache->c_tries);
PR_DestroyMonitor(cache->c_mutex);
PR_DestroyLock(cache->c_emutexalloc_mutex);
}
void
cache_set_max_size(struct cache *cache, uint64_t bytes, int type)
{
if (CACHE_TYPE_ENTRY == type) {
entrycache_set_max_size(cache, bytes);
} else if (CACHE_TYPE_DN == type) {
dncache_set_max_size(cache, bytes);
}
}
static void
entrycache_set_max_size(struct cache *cache, uint64_t bytes)
{
struct backentry *eflush = NULL;
struct backentry *eflushtemp = NULL;
if (bytes < MINCACHESIZE) {
/* During startup, this value can be 0 to indicate an autotune is about
* to happen. In that case, suppress this warning.
*/
if (bytes > 0) {
slapi_log_err(SLAPI_LOG_WARNING, "entrycache_set_max_size", "Minimum cache size is %" PRIu64 " -- rounding up\n", MINCACHESIZE);
}
bytes = MINCACHESIZE;
}
cache_lock(cache);
cache->c_maxsize = bytes;
LOG("entry cache size set to %" PRIu64 "\n", bytes);
/* check for full cache, and clear out if necessary */
if (CACHE_FULL(cache)) {
eflush = entrycache_flush(cache);
}
while (eflush) {
eflushtemp = BACK_LRU_NEXT(eflush, struct backentry *);
backentry_free(&eflush);
eflush = eflushtemp;
}
if (cache->c_curentries < 50) {
/* there's hardly anything left in the cache -- clear it out and
* resize the hashtables for efficiency.
*/
erase_cache(cache, CACHE_TYPE_ENTRY);
cache_make_hashes(cache, CACHE_TYPE_ENTRY);
}
cache_unlock(cache);
/* This may already have been called by one of the functions in
* ldbm_instance_config
*/
slapi_pal_meminfo *mi = spal_meminfo_get();
if (util_is_cachesize_sane(mi, &bytes) != UTIL_CACHESIZE_VALID) {
slapi_log_err(SLAPI_LOG_WARNING, "entrycache_set_max_size", "Cachesize (%" PRIu64 ") may use more than the available physical memory.\n", bytes);
}
spal_meminfo_destroy(mi);
}
void
cache_set_max_entries(struct cache *cache, int64_t entries)
{
struct backentry *eflush = NULL;
struct backentry *eflushtemp = NULL;
/* this is a dumb remnant of pre-5.0 servers, where the cache size
* was given in # entries instead of memory footprint. hopefully,
* we can eventually drop this.
*/
cache_lock(cache);
cache->c_maxentries = entries;
if (entries >= 0) {
LOG("entry cache entry-limit set to %lu\n", entries);
} else {
LOG("entry cache entry-limit turned off\n");
}
/* check for full cache, and clear out if necessary */
if (CACHE_FULL(cache))
eflush = entrycache_flush(cache);
cache_unlock(cache);
while (eflush) {
eflushtemp = BACK_LRU_NEXT(eflush, struct backentry *);
backentry_free(&eflush);
eflush = eflushtemp;
}
}
uint64_t
cache_get_max_size(struct cache *cache)
{
uint64_t n = 0;
cache_lock(cache);
n = cache->c_maxsize;
cache_unlock(cache);
return n;
}
int64_t
cache_get_max_entries(struct cache *cache)
{
int64_t n;
cache_lock(cache);
n = cache->c_maxentries;
cache_unlock(cache);
return n;
}
/* determine the general size of a cache entry */
static size_t
cache_entry_size(struct backentry *e)
{
size_t size = 0;
if (e->ep_entry)
size += slapi_entry_size(e->ep_entry);
if (e->ep_vlventry)
size += slapi_entry_size(e->ep_vlventry);
/* cannot size ep_mutexp (PRLock) */
size += sizeof(struct backentry);
return size;
}
/* the monitor code wants to be able to safely fetch the cache stats --
* if it ever wants to pull out more info, we might want to change all
* these u_long *'s to a struct
*/
void
cache_get_stats(struct cache *cache, PRUint64 *hits, PRUint64 *tries, uint64_t *nentries, int64_t *maxentries, uint64_t *size, uint64_t *maxsize)
{
cache_lock(cache);
if (hits)
*hits = slapi_counter_get_value(cache->c_hits);
if (tries)
*tries = slapi_counter_get_value(cache->c_tries);
if (nentries)
*nentries = cache->c_curentries;
if (maxentries)
*maxentries = cache->c_maxentries;
if (size)
*size = slapi_counter_get_value(cache->c_cursize);
if (maxsize)
*maxsize = cache->c_maxsize;
cache_unlock(cache);
}
void
cache_debug_hash(struct cache *cache, char **out)
{
u_long slots;
int total_entries, max_entries_per_slot, *slot_stats;
int i, j;
Hashtable *ht = NULL;
const char *name = "unknown";
cache_lock(cache);
*out = (char *)slapi_ch_malloc(1024);
**out = 0;
for (i = 0; i < 3; i++) {
if (i > 0)
sprintf(*out + strlen(*out), "; ");
switch (i) {
case 0:
ht = cache->c_dntable;
name = "dn";
break;
case 1:
ht = cache->c_idtable;
name = "id";
break;
#ifdef UUIDCACHE_ON
case 2:
default:
ht = cache->c_uuidtable;
name = "uuid";
break;
#endif
}
if (NULL == ht) {
continue;
}
hash_stats(ht, &slots, &total_entries, &max_entries_per_slot,
&slot_stats);
sprintf(*out + strlen(*out), "%s hash: %lu slots, %d items (%d max "
"items per slot) -- ",
name, slots, total_entries,
max_entries_per_slot);
for (j = 0; j <= max_entries_per_slot; j++)
sprintf(*out + strlen(*out), "%d[%d] ", j, slot_stats[j]);
slapi_ch_free((void **)&slot_stats);
}
cache_unlock(cache);
}
/***** general-purpose cache stuff *****/
/* remove an entry from the cache */
/* you must be holding c_mutex !! */
static int
entrycache_remove_int(struct cache *cache, struct backentry *e)
{
int ret = 1; /* assume not in cache */
const char *ndn;
#ifdef UUIDCACHE_ON
const char *uuid;
#endif
LOG("=> entrycache_remove_int (%s) (%u) (%u)\n", backentry_get_ndn(e), e->ep_id, e->ep_refcnt);
if (e->ep_state & ENTRY_STATE_NOTINCACHE) {
return ret;
}
/* remove from all hashtables -- this function may be called from places
* where the entry isn't in all the tables yet, so we don't care if any
* of these return errors.
*/
ndn = slapi_sdn_get_ndn(backentry_get_sdn(e));
if (remove_hash(cache->c_dntable, (void *)ndn, strlen(ndn))) {
ret = 0;
} else {
LOG("remove %s from dn hash failed\n", ndn);
}
/* if entry was added tentatively, it will be in the dntable
but not in the idtable - we cannot just remove it from
the idtable - in the case of modrdn, this will remove
the _real_ entry from the idtable, leading to a cache
imbalance
*/
if (!(e->ep_state & ENTRY_STATE_CREATING)) {
if (remove_hash(cache->c_idtable, &(e->ep_id), sizeof(ID))) {
ret = 0;
} else {
LOG("remove %s (%d) from id hash failed\n", ndn, e->ep_id);
}
}
#ifdef UUIDCACHE_ON
uuid = slapi_entry_get_uniqueid(e->ep_entry);
if (remove_hash(cache->c_uuidtable, (void *)uuid, strlen(uuid))) {
ret = 0;
} else {
LOG("remove %d from uuid hash failed\n", uuid);
}
#endif
if (ret == 0) {
/* won't be on the LRU list since it has a refcount on it */
/* adjust cache size */
slapi_counter_subtract(cache->c_cursize, e->ep_size);
cache->c_curentries--;
LOG("<= entrycache_remove_int (size %lu): cache now %lu entries, "
"%lu bytes\n",
e->ep_size, cache->c_curentries,
slapi_counter_get_value(cache->c_cursize));
}
/* mark for deletion (will be erased when refcount drops to zero) */
e->ep_state |= ENTRY_STATE_DELETED;
#if 0
if (slapi_is_loglevel_set(SLAPI_LOG_CACHE)) {
dump_hash(cache->c_idtable);
}
#endif
LOG("<= entrycache_remove_int: %d\n", ret);
return ret;
}
/* remove an entry/a dn from the cache.
* you must have a refcount on e (iow, fetched via cache_find_*). the
* entry is removed from the cache, but NOT freed! you are responsible
* for freeing the entry yourself when done with it, preferrably via
* cache_return (called AFTER cache_remove). some code still does this
* via backentry_free, which is okay, as long as you know you're the only
* thread holding a reference to the deleted entry.
* returns: 0 on success
* 1 if the entry wasn't in the cache at all (not even partially)
*/
int
cache_remove(struct cache *cache, void *ptr)
{
int ret = 0;
struct backcommon *e;
if (NULL == ptr) {
LOG("=> lru_remove\n<= lru_remove (null entry)\n");
return ret;
}
e = (struct backcommon *)ptr;
cache_lock(cache);
if (CACHE_TYPE_ENTRY == e->ep_type) {
ASSERT(e->ep_refcnt > 0);
ret = entrycache_remove_int(cache, (struct backentry *)e);
} else if (CACHE_TYPE_DN == e->ep_type) {
ret = dncache_remove_int(cache, (struct backdn *)e);
}
cache_unlock(cache);
return ret;
}
/* replace an entry in the cache.
* returns: 0 on success
* 1 if the entry wasn't in the cache
*/
int
cache_replace(struct cache *cache, void *oldptr, void *newptr)
{
struct backcommon *olde;
if (NULL == oldptr || NULL == newptr) {
LOG("=> lru_replace\n<= lru_replace (null entry)\n");
return 0;
}
olde = (struct backcommon *)oldptr;
if (CACHE_TYPE_ENTRY == olde->ep_type) {
return entrycache_replace(cache, (struct backentry *)oldptr,
(struct backentry *)newptr);
} else if (CACHE_TYPE_DN == olde->ep_type) {
return dncache_replace(cache, (struct backdn *)oldptr,
(struct backdn *)newptr);
}
return 0;
}
static int
entrycache_replace(struct cache *cache, struct backentry *olde, struct backentry *newe)
{
int found = 0;
int found_in_dn = 0;
int found_in_id = 0;
#ifdef UUIDCACHE_ON
int found_in_uuid = 0;
#endif
const char *oldndn;
const char *newndn;
#ifdef UUIDCACHE_ON
const char *olduuid;
const char *newuuid;
#endif
size_t entry_size = 0;
struct backentry *alte = NULL;
Slapi_Attr *attr = NULL;
LOG("=> entrycache_replace (%s) -> (%s)\n", backentry_get_ndn(olde),
backentry_get_ndn(newe));
/* remove from all hashtables -- this function may be called from places
* where the entry isn't in all the tables yet, so we don't care if any
* of these return errors.
*/
oldndn = slapi_sdn_get_ndn(backentry_get_sdn(olde));
#ifdef UUIDCACHE_ON
olduuid = slapi_entry_get_uniqueid(olde->ep_entry);
newuuid = slapi_entry_get_uniqueid(newe->ep_entry);
#endif
newndn = slapi_sdn_get_ndn(backentry_get_sdn(newe));
entry_size = cache_entry_size(newe);
/* Might have added/removed a referral */
if (slapi_entry_attr_find(newe->ep_entry, "ref", &attr) && attr) {
slapi_entry_set_flag(newe->ep_entry, SLAPI_ENTRY_FLAG_REFERRAL);
} else {
slapi_entry_clear_flag(newe->ep_entry, SLAPI_ENTRY_FLAG_REFERRAL);
}
cache_lock(cache);
/*
* First, remove the old entry from all the hashtables.
* If the old entry is in cache but not in at least one of the
* cache tables, operation error
*/
if ((olde->ep_state & ENTRY_STATE_NOTINCACHE) == 0) {
found_in_dn = remove_hash(cache->c_dntable, (void *)oldndn, strlen(oldndn));
found_in_id = remove_hash(cache->c_idtable, &(olde->ep_id), sizeof(ID));
#ifdef UUIDCACHE_ON
found_in_uuid = remove_hash(cache->c_uuidtable, (void *)olduuid, strlen(olduuid));
#endif
found = found_in_dn && found_in_id;
#ifdef UUIDCACHE_ON
found = found && found_in_uuid;
#endif
}
/* If fails, we have to make sure the both entires are removed from the cache,
* otherwise, we have no idea what's left in the cache or not... */
if (cache_is_in_cache_nolock(newe)) {
/* if we're doing a modrdn or turning an entry to a tombstone,
* the new entry can be in the dn table already, so we need to remove that too.
*/
if (remove_hash(cache->c_dntable, (void *)newndn, strlen(newndn))) {
slapi_counter_subtract(cache->c_cursize, newe->ep_size);
cache->c_curentries--;
newe->ep_refcnt--;
LOG("entry cache replace remove entry size %lu\n", newe->ep_size);
}
}
/*
* The old entry could have been "removed" between the add and this replace,
* The entry is NOT freed, but NOT in the dn hash.
* which could happen since the entry is not necessarily locked.
* This is ok.
*/
olde->ep_state = ENTRY_STATE_DELETED; /* olde is removed from the cache, so set DELETED here. */
if (!found) {
if (olde->ep_state & ENTRY_STATE_DELETED) {
LOG("entry cache replace (%s): cache index tables out of sync - found dn [%d] id [%d]; but the entry is alreay deleted.\n",
oldndn, found_in_dn, found_in_id);
} else {
#ifdef UUIDCACHE_ON
LOG("entry cache replace: cache index tables out of sync - found dn [%d] id [%d] uuid [%d]\n",
found_in_dn, found_in_id, found_in_uuid);
#else
LOG("entry cache replace (%s): cache index tables out of sync - found dn [%d] id [%d]\n",
oldndn, found_in_dn, found_in_id);
#endif
cache_unlock(cache);
return 1;
}
}
/* now, add the new entry to the hashtables */
/* (probably don't need such extensive error handling, once this has been
* tested enough that we believe it works.)
*/
if (!add_hash(cache->c_dntable, (void *)newndn, strlen(newndn), newe, (void **)&alte)) {
LOG("entry cache replace (%s): can't add to dn table (returned %s)\n",
newndn, alte ? slapi_entry_get_dn(alte->ep_entry) : "none");
cache_unlock(cache);
return 1;
}
if (!add_hash(cache->c_idtable, &(newe->ep_id), sizeof(ID), newe, (void **)&alte)) {
LOG("entry cache replace (%s): can't add to id table (returned %s)\n",
newndn, alte ? slapi_entry_get_dn(alte->ep_entry) : "none");
if (remove_hash(cache->c_dntable, (void *)newndn, strlen(newndn)) == 0) {
LOG("entry cache replace: failed to remove dn table\n");
}
cache_unlock(cache);
return 1;
}
#ifdef UUIDCACHE_ON
if (newuuid && !add_hash(cache->c_uuidtable, (void *)newuuid, strlen(newuuid), newe, NULL)) {
LOG("entry cache replace: can't add uuid\n", 0, 0, 0);
if (remove_hash(cache->c_dntable, (void *)newndn, strlen(newndn)) == 0) {
LOG("entry cache replace: failed to remove dn table(uuid cache)\n");
}
if (remove_hash(cache->c_idtable, &(newe->ep_id), sizeof(ID)) == 0) {
LOG("entry cache replace: failed to remove id table(uuid cache)\n");
}
cache_unlock(cache);
return 1;
}
#endif
/* adjust cache meta info */
newe->ep_refcnt++;
newe->ep_size = entry_size;
if (newe->ep_size > olde->ep_size) {
slapi_counter_add(cache->c_cursize, newe->ep_size - olde->ep_size);
} else if (newe->ep_size < olde->ep_size) {
slapi_counter_subtract(cache->c_cursize, olde->ep_size - newe->ep_size);
}
newe->ep_state = 0;
cache_unlock(cache);
LOG("<= entrycache_replace OK, cache size now %lu cache count now %ld\n",
slapi_counter_get_value(cache->c_cursize), cache->c_curentries);
return 0;
}
/* call this when you're done with an entry that was fetched via one of
* the cache_find_* calls.
*/
void
cache_return(struct cache *cache, void **ptr)
{
struct backcommon *bep;
if (NULL == ptr || NULL == *ptr) {
LOG("=> cache_return\n<= cache_return (null entry)\n");
return;
}
bep = *(struct backcommon **)ptr;
if (CACHE_TYPE_ENTRY == bep->ep_type) {
entrycache_return(cache, (struct backentry **)ptr, PR_FALSE);
} else if (CACHE_TYPE_DN == bep->ep_type) {
dncache_return(cache, (struct backdn **)ptr);
}
}
static void
entrycache_return(struct cache *cache, struct backentry **bep, PRBool locked)
{
struct backentry *eflush = NULL;
struct backentry *eflushtemp = NULL;
struct backentry *e;
e = *bep;
if (!e) {
slapi_log_err(SLAPI_LOG_ERR, "entrycache_return", "Backentry is NULL\n");
return;
}
LOG("entrycache_return - (%s) entry count: %d, entry in cache:%ld\n",
backentry_get_ndn(e), e->ep_refcnt, cache->c_curentries);
if (locked == PR_FALSE) {
cache_lock(cache);
}
if (e->ep_state & ENTRY_STATE_NOTINCACHE) {
backentry_free(bep);
} else {
ASSERT(e->ep_refcnt > 0);
if (!--e->ep_refcnt) {
if (e->ep_state & (ENTRY_STATE_DELETED | ENTRY_STATE_INVALID)) {
const char *ndn = slapi_sdn_get_ndn(backentry_get_sdn(e));
if (ndn) {
/*
* State is "deleted" and there are no more references,
* so we need to remove the entry from the DN cache because
* we don't/can't always call cache_remove().
*/
if (remove_hash(cache->c_dntable, (void *)ndn, strlen(ndn)) == 0) {
LOG("entrycache_return -Failed to remove %s from dn table\n", ndn);
}
}
if (e->ep_state & ENTRY_STATE_INVALID) {
/* Remove it from the hash table before we free the back entry */
slapi_log_err(SLAPI_LOG_CACHE, "entrycache_return",
"Finally flushing invalid entry: %d (%s)\n",
e->ep_id, backentry_get_ndn(e));
entrycache_remove_int(cache, e);
}
backentry_free(bep);
} else {
lru_add(cache, e);
/* the cache might be overfull... */
if (CACHE_FULL(cache))
eflush = entrycache_flush(cache);
}
}
}
if (locked == PR_FALSE) {
cache_unlock(cache);
}
while (eflush) {
eflushtemp = BACK_LRU_NEXT(eflush, struct backentry *);
backentry_free(&eflush);
eflush = eflushtemp;
}
LOG("entrycache_return - returning.\n");
}
/* lookup entry by DN (assume cache lock is held) */
struct backentry *
cache_find_dn(struct cache *cache, const char *dn, unsigned long ndnlen)
{
struct backentry *e;
LOG("=> cache_find_dn - (%s)\n", dn);
/*entry normalized by caller (dn2entry.c) */
cache_lock(cache);
if (find_hash(cache->c_dntable, (void *)dn, ndnlen, (void **)&e)) {
/* need to check entry state */
if (e->ep_state != 0) {
/* entry is deleted or not fully created yet */
cache_unlock(cache);
LOG("<= cache_find_dn (NOT FOUND)\n");
return NULL;
}
if (e->ep_refcnt == 0)
lru_delete(cache, (void *)e);
e->ep_refcnt++;
cache_unlock(cache);
slapi_counter_increment(cache->c_hits);
} else {
cache_unlock(cache);
}
slapi_counter_increment(cache->c_tries);
LOG("<= cache_find_dn - (%sFOUND)\n", e ? "" : "NOT ");
return e;
}
/* lookup an entry in the cache by its id# (you must return it later) */
struct backentry *
cache_find_id(struct cache *cache, ID id)
{
struct backentry *e;
LOG("=> cache_find_id (%lu)\n", (u_long)id);
cache_lock(cache);
if (find_hash(cache->c_idtable, &id, sizeof(ID), (void **)&e)) {
/* need to check entry state */
if (e->ep_state != 0) {
/* entry is deleted or not fully created yet */
cache_unlock(cache);
LOG("<= cache_find_id (NOT FOUND)\n");
return NULL;
}
if (e->ep_refcnt == 0)
lru_delete(cache, (void *)e);
e->ep_refcnt++;
cache_unlock(cache);
slapi_counter_increment(cache->c_hits);
} else {
cache_unlock(cache);
}
slapi_counter_increment(cache->c_tries);
LOG("<= cache_find_id (%sFOUND)\n", e ? "" : "NOT ");
return e;
}
#ifdef UUIDCACHE_ON
/* lookup an entry in the cache by it's uuid (you must return it later) */
struct backentry *
cache_find_uuid(struct cache *cache, const char *uuid)
{
struct backentry *e;
LOG("=> cache_find_uuid (%s)\n", uuid);
cache_lock(cache);
if (find_hash(cache->c_uuidtable, uuid, strlen(uuid), (void **)&e)) {
/* need to check entry state */
if (e->ep_state != 0) {
/* entry is deleted or not fully created yet */
cache_unlock(cache);
LOG("<= cache_find_uuid (NOT FOUND)\n");
return NULL;
}
if (e->ep_refcnt == 0)
lru_delete(cache, (void *)e);
e->ep_refcnt++;
cache_unlock(cache);
slapi_counter_increment(cache->c_hits);
} else {
cache_unlock(cache);
}
slapi_counter_increment(cache->c_tries);
LOG("<= cache_find_uuid (%sFOUND)\n", e ? "" : "NOT ");
return e;
}
#endif
/* add an entry to the cache */
static int
entrycache_add_int(struct cache *cache, struct backentry *e, int state, struct backentry **alt)
{
struct backentry *eflush = NULL;
struct backentry *eflushtemp = NULL;
const char *ndn = slapi_sdn_get_ndn(backentry_get_sdn(e));
#ifdef UUIDCACHE_ON
const char *uuid = slapi_entry_get_uniqueid(e->ep_entry);
#endif
struct backentry *my_alt;
size_t entry_size = 0;
int already_in = 0;
Slapi_Attr *attr = NULL;
LOG("=> entrycache_add_int( \"%s\", %ld )\n", backentry_get_ndn(e),
(long int)e->ep_id);
if (e->ep_size == 0) {
/*
* This entry has not yet been assigned its size, as it's not in
* the cache yet. Calculate it outside of the cache lock
*/
entry_size = cache_entry_size(e);
} else {
entry_size = e->ep_size;
}
/* Check for referrals now so we don't have to do it for every base
* search in the future */
if (slapi_entry_attr_find(e->ep_entry, "ref", &attr) && attr) {
slapi_entry_set_flag(e->ep_entry, SLAPI_ENTRY_FLAG_REFERRAL);
} else {
slapi_entry_clear_flag(e->ep_entry, SLAPI_ENTRY_FLAG_REFERRAL);
}
cache_lock(cache);
if (!add_hash(cache->c_dntable, (void *)ndn, strlen(ndn), e,
(void **)&my_alt)) {
LOG("entry \"%s\" already in dn cache\n", ndn);
/* add_hash filled in 'my_alt' if necessary */
if (my_alt == e) {
if ((e->ep_state & ENTRY_STATE_CREATING) && (state == 0)) {
/* attempting to "add" an entry that's already in the cache,
* and the old entry was a placeholder and the new one isn't?
* sounds like a confirmation of a previous add!
*/
LOG("confirming a previous add\n");
already_in = 1;
} else {
/* the entry already in the cache and either one of these:
* 1) ep_state: CREATING && state: CREATING
* ==> keep protecting the entry; increase the refcnt
* 2) ep_state: 0 && state: CREATING
* ==> change the state to CREATING (protect it);
* increase the refcnt
* 3) ep_state: 0 && state: 0
* ==> increase the refcnt
*/
if (e->ep_refcnt == 0)
lru_delete(cache, (void *)e);
e->ep_refcnt++;
e->ep_state = state; /* might be CREATING */
/* returning 1 (entry already existed), but don't set to alt
* to prevent that the caller accidentally thinks the existing
* entry is not the same one the caller has and releases it.
*/
cache_unlock(cache);
return 1;
}
} else {
if (my_alt->ep_state & ENTRY_STATE_CREATING) {
LOG("the entry %s is reserved (ep_state: 0x%x, state: 0x%x)\n", ndn, e->ep_state, state);
e->ep_state |= ENTRY_STATE_NOTINCACHE;
cache_unlock(cache);
return -1;
} else if (state != 0) {
LOG("the entry %s already exists. cannot reserve it. (ep_state: 0x%x, state: 0x%x)\n",
ndn, e->ep_state, state);
e->ep_state |= ENTRY_STATE_NOTINCACHE;
cache_unlock(cache);
return -1;
} else {
if (alt) {
*alt = my_alt;
if ((*alt)->ep_refcnt == 0)
lru_delete(cache, (void *)*alt);
(*alt)->ep_refcnt++;
LOG("the entry %s already exists. returning existing entry %s (state: 0x%x)\n",
ndn, backentry_get_ndn(my_alt), state);
cache_unlock(cache);
return 1;
} else {
LOG("the entry %s already exists. Not returning existing entry %s (state: 0x%x)\n",
ndn, backentry_get_ndn(my_alt), state);
cache_unlock(cache);
return -1;
}
}
}
}
/* creating an entry with ENTRY_STATE_CREATING just creates a stub
* which is only stored in the dn table (basically, reserving the dn) --
* doing an add later with state==0 will "confirm" the add
*/
if (state == 0) {
/* neither of these should fail, or something is very wrong. */
if (!add_hash(cache->c_idtable, &(e->ep_id), sizeof(ID), e, NULL)) {
LOG("entry %s already in id cache!\n", ndn);
if (already_in) {
/* there's a bug in the implementatin of 'modify' and 'modrdn'
* that i'm working around here. basically they do a
* tentative add of the new (modified) entry, which places
* the new entry in the cache, indexed only by dn.
*
* later they call id2entry_add() on the new entry, which
* "adds" the new entry to the cache. unfortunately, that
* add will fail, since the old entry is still in the cache,
* and both the old and new entries have the same ID and UUID.
*
* i catch that here, and just return 0 for success, without
* messing with either entry. a later cache_replace() will
* remove the old entry and add the new one, and all will be
* fine (i think).
*/
LOG("<= entrycache_add_int (ignoring)\n");
cache_unlock(cache);
return 0;
}
if (remove_hash(cache->c_dntable, (void *)ndn, strlen(ndn)) == 0) {
LOG("entrycache_add_int: failed to remove %s from dn table\n", ndn);
}
e->ep_state |= ENTRY_STATE_NOTINCACHE;
cache_unlock(cache);
LOG("entrycache_add_int: failed to add %s to cache (ep_state: %x, already_in: %d)\n",
ndn, e->ep_state, already_in);
return -1;
}
#ifdef UUIDCACHE_ON
if (uuid) {
/* (only insert entries with a uuid) */
if (!add_hash(cache->c_uuidtable, (void *)uuid, strlen(uuid), e,
NULL)) {
LOG("entry %s already in uuid cache!\n", backentry_get_ndn(e),
0, 0);
if (remove_hash(cache->c_dntable, (void *)ndn, strlen(ndn)) == 0) {
LOG("entrycache_add_int: failed to remove dn table(uuid cache)\n");
}
if (remove_hash(cache->c_idtable, &(e->ep_id), sizeof(ID)) == 0) {
LOG("entrycache_add_int: failed to remove id table(uuid cache)\n";
}
e->ep_state |= ENTRY_STATE_NOTINCACHE;
cache_unlock(cache);
return -1;
}
}
#endif
}
e->ep_state = state;
if (!already_in) {
e->ep_refcnt = 1;
e->ep_size = entry_size;
slapi_counter_add(cache->c_cursize, e->ep_size);
cache->c_curentries++;
/* don't add to lru since refcnt = 1 */
LOG("added entry of size %lu -> total now %lu out of max %lu\n",
e->ep_size, slapi_counter_get_value(cache->c_cursize), cache->c_maxsize);
if (cache->c_maxentries > 0) {
LOG(" total entries %ld out of %ld\n",
cache->c_curentries, cache->c_maxentries);
}
/* check for full cache, and clear out if necessary */
if (CACHE_FULL(cache))
eflush = entrycache_flush(cache);
}
cache_unlock(cache);
while (eflush) {
eflushtemp = BACK_LRU_NEXT(eflush, struct backentry *);
backentry_free(&eflush);
eflush = eflushtemp;
}
LOG("<= entrycache_add_int OK\n");
return 0;
}
/* create an entry in the cache, and increase its refcount (you must
* return it when you're done).
* returns: 0 entry has been created & locked
* 1 entry already existed
* -1 something bad happened
*
* if 'alt' is not NULL, and the entry is found to already exist in the
* cache, a refcounted pointer to that entry will be placed in 'alt'.
* (this means code which suffered from race conditions between multiple
* entry modifiers can now work.)
*/
int
cache_add(struct cache *cache, void *ptr, void **alt)
{
struct backcommon *e;
if (NULL == ptr) {
LOG("=> cache_add\n<= cache_add (null entry)\n");
return 0;
}
e = (struct backcommon *)ptr;
if (CACHE_TYPE_ENTRY == e->ep_type) {
return entrycache_add_int(cache, (struct backentry *)e,
0, (struct backentry **)alt);
} else if (CACHE_TYPE_DN == e->ep_type) {
return dncache_add_int(cache, (struct backdn *)e,
0, (struct backdn **)alt);
}
return 0;
}
/* same as above, but add it tentatively: nobody else can use this entry
* from the cache until you later call cache_add.
*/
int
cache_add_tentative(struct cache *cache, struct backentry *e, struct backentry **alt)
{
return entrycache_add_int(cache, e, ENTRY_STATE_CREATING, alt);
}
void
cache_lock(struct cache *cache)
{
PR_EnterMonitor(cache->c_mutex);
}
void
cache_unlock(struct cache *cache)
{
PR_ExitMonitor(cache->c_mutex);
}
/* locks an entry so that it can be modified (you should have gotten the
* entry via cache_find_*).
* returns 0 on success,
* returns 1 if the entry lock could not be created
* returns 2 (RETRY_CACHE_LOCK) if the entry is scheduled for deletion.
*/
int
cache_lock_entry(struct cache *cache, struct backentry *e)
{
LOG("=> cache_lock_entry (%s)\n", backentry_get_ndn(e));
if (!e->ep_mutexp) {
/* make sure only one thread does this */
PR_Lock(cache->c_emutexalloc_mutex);
if (!e->ep_mutexp) {
e->ep_mutexp = PR_NewMonitor();
if (!e->ep_mutexp) {
PR_Unlock(cache->c_emutexalloc_mutex);
LOG("<= cache_lock_entry (DELETED)\n");
slapi_log_err(SLAPI_LOG_ERR,
"cache_lock_entry", "Failed to create a lock for %s\n",
backentry_get_ndn(e));
LOG("<= cache_lock_entry (FAILED)\n");
return 1;
}
}
PR_Unlock(cache->c_emutexalloc_mutex);
}
/* wait on entry lock (done w/o holding the cache lock) */
PR_EnterMonitor(e->ep_mutexp);
/* make sure entry hasn't been deleted now */
cache_lock(cache);
if (e->ep_state & (ENTRY_STATE_DELETED | ENTRY_STATE_NOTINCACHE | ENTRY_STATE_INVALID)) {
cache_unlock(cache);
PR_ExitMonitor(e->ep_mutexp);
LOG("<= cache_lock_entry (DELETED)\n");
return RETRY_CACHE_LOCK;
}
cache_unlock(cache);
LOG("<= cache_lock_entry (FOUND)\n");
return 0;
}
/* the opposite of above */
void
cache_unlock_entry(struct cache *cache __attribute__((unused)), struct backentry *e)
{
LOG("=> cache_unlock_entry\n");
if (PR_ExitMonitor(e->ep_mutexp)) {
LOG("=> cache_unlock_entry - monitor was not entered!!!\n");
}
}
/* DN cache */
/* remove everything from the cache */
static void
dncache_clear_int(struct cache *cache)
{
struct backdn *dnflush = NULL;
struct backdn *dnflushtemp = NULL;
size_t size = cache->c_maxsize;
if (!entryrdn_get_switch()) {
return;
}
cache->c_maxsize = 0;
dnflush = dncache_flush(cache);
while (dnflush) {
dnflushtemp = BACK_LRU_NEXT(dnflush, struct backdn *);
backdn_free(&dnflush);
dnflush = dnflushtemp;
}
cache->c_maxsize = size;
if (cache->c_curentries > 0) {
slapi_log_err(SLAPI_LOG_WARNING,
"dncache_clear_int", "There are still %" PRIu64 " dn's "
"in the dn cache. :/\n",
cache->c_curentries);
}
}
static int
dn_same_id(const void *bdn, const void *k)
{
return (((struct backdn *)bdn)->ep_id == *(ID *)k);
}
static void
dncache_set_max_size(struct cache *cache, uint64_t bytes)
{
struct backdn *dnflush = NULL;
struct backdn *dnflushtemp = NULL;
if (!entryrdn_get_switch()) {
return;
}
if (bytes < MINCACHESIZE) {
bytes = MINCACHESIZE;
slapi_log_err(SLAPI_LOG_WARNING,
"dncache_set_max_size", "Minimum cache size is %" PRIu64 " -- rounding up\n",
MINCACHESIZE);
}
cache_lock(cache);
cache->c_maxsize = bytes;
LOG("entry cache size set to %" PRIu64 "\n", bytes);
/* check for full cache, and clear out if necessary */
if (CACHE_FULL(cache)) {
dnflush = dncache_flush(cache);
}
while (dnflush) {
dnflushtemp = BACK_LRU_NEXT(dnflush, struct backdn *);
backdn_free(&dnflush);
dnflush = dnflushtemp;
}
if (cache->c_curentries < 50) {
/* there's hardly anything left in the cache -- clear it out and
* resize the hashtables for efficiency.
*/
erase_cache(cache, CACHE_TYPE_DN);
cache_make_hashes(cache, CACHE_TYPE_DN);
}
cache_unlock(cache);
/* This may already have been called by one of the functions in
* ldbm_instance_config
*/
slapi_pal_meminfo *mi = spal_meminfo_get();
if (util_is_cachesize_sane(mi, &bytes) != UTIL_CACHESIZE_VALID) {
slapi_log_err(SLAPI_LOG_WARNING, "dncache_set_max_size", "Cachesize (%" PRIu64 ") may use more than the available physical memory.\n", bytes);
}
spal_meminfo_destroy(mi);
}
/* remove a dn from the cache */
/* you must be holding c_mutex !! */
static int
dncache_remove_int(struct cache *cache, struct backdn *bdn)
{
int ret = 1; /* assume not in cache */
if (!entryrdn_get_switch()) {
return 0;
}
LOG("=> dncache_remove_int (%s)\n", slapi_sdn_get_dn(bdn->dn_sdn));
if (bdn->ep_state & ENTRY_STATE_NOTINCACHE) {
return ret;
}
/* remove from id hashtable */
if (remove_hash(cache->c_idtable, &(bdn->ep_id), sizeof(ID))) {
ret = 0;
} else {
LOG("remove %d from id hash failed\n", bdn->ep_id);
}
if (ret == 0) {
/* won't be on the LRU list since it has a refcount on it */
/* adjust cache size */
slapi_counter_subtract(cache->c_cursize, bdn->ep_size);
cache->c_curentries--;
LOG("<= dncache_remove_int (size %lu): cache now %lu dn's, %lu bytes\n",
bdn->ep_size, cache->c_curentries,
slapi_counter_get_value(cache->c_cursize));
}
/* mark for deletion (will be erased when refcount drops to zero) */
bdn->ep_state |= ENTRY_STATE_DELETED;
LOG("<= dncache_remove_int: %d\n", ret);
return ret;
}
static void
dncache_return(struct cache *cache, struct backdn **bdn)
{
struct backdn *dnflush = NULL;
struct backdn *dnflushtemp = NULL;
if (!entryrdn_get_switch()) {
return;
}
LOG("=> dncache_return (%s) reference count: %d, dn in cache:%ld\n",
slapi_sdn_get_dn((*bdn)->dn_sdn), (*bdn)->ep_refcnt, cache->c_curentries);
cache_lock(cache);
if ((*bdn)->ep_state & ENTRY_STATE_NOTINCACHE) {
backdn_free(bdn);
} else {
ASSERT((*bdn)->ep_refcnt > 0);
if (!--(*bdn)->ep_refcnt) {
if ((*bdn)->ep_state & (ENTRY_STATE_DELETED | ENTRY_STATE_INVALID)) {
if ((*bdn)->ep_state & ENTRY_STATE_INVALID) {
/* Remove it from the hash table before we free the back dn */
slapi_log_err(SLAPI_LOG_CACHE, "dncache_return",
"Finally flushing invalid entry: %d (%s)\n",
(*bdn)->ep_id, slapi_sdn_get_dn((*bdn)->dn_sdn));
dncache_remove_int(cache, (*bdn));
}
backdn_free(bdn);
} else {
lru_add(cache, (void *)*bdn);
/* the cache might be overfull... */
if (CACHE_FULL(cache)) {
dnflush = dncache_flush(cache);
}
}
}
}
cache_unlock(cache);
while (dnflush) {
dnflushtemp = BACK_LRU_NEXT(dnflush, struct backdn *);
backdn_free(&dnflush);
dnflush = dnflushtemp;
}
}
/* lookup a dn in the cache by its id# (you must return it later) */
struct backdn *
dncache_find_id(struct cache *cache, ID id)
{
struct backdn *bdn = NULL;
if (!entryrdn_get_switch()) {
return bdn;
}
LOG("=> dncache_find_id (%lu)\n", (u_long)id);
cache_lock(cache);
if (find_hash(cache->c_idtable, &id, sizeof(ID), (void **)&bdn)) {
/* need to check entry state */
if (bdn->ep_state != 0) {
/* entry is deleted or not fully created yet */
cache_unlock(cache);
LOG("<= dncache_find_id (NOT FOUND)\n");
return NULL;
}
if (bdn->ep_refcnt == 0)
lru_delete(cache, (void *)bdn);
bdn->ep_refcnt++;
cache_unlock(cache);
slapi_counter_increment(cache->c_hits);
} else {
cache_unlock(cache);
}
slapi_counter_increment(cache->c_tries);
LOG("<= cache_find_id (%sFOUND)\n", bdn ? "" : "NOT ");
return bdn;
}
/* add a dn to the cache */
static int
dncache_add_int(struct cache *cache, struct backdn *bdn, int state, struct backdn **alt)
{
struct backdn *dnflush = NULL;
struct backdn *dnflushtemp = NULL;
struct backdn *my_alt;
int already_in = 0;
if (!entryrdn_get_switch()) {
return 0;
}
LOG("=> dncache_add_int( \"%s\", %ld )\n", slapi_sdn_get_dn(bdn->dn_sdn),
(long int)bdn->ep_id);
cache_lock(cache);
if (!add_hash(cache->c_idtable, &(bdn->ep_id), sizeof(ID), bdn,
(void **)&my_alt)) {
LOG("entry %s already in id cache!\n", slapi_sdn_get_dn(bdn->dn_sdn));
if (my_alt == bdn) {
if ((bdn->ep_state & ENTRY_STATE_CREATING) && (state == 0)) {
/* attempting to "add" a dn that's already in the cache,
* and the old entry was a placeholder and the new one isn't?
* sounds like a confirmation of a previous add!
*/
LOG("confirming a previous add\n");
already_in = 1;
} else {
/* the entry already in the cache and either one of these:
* 1) ep_state: CREATING && state: CREATING
* ==> keep protecting the entry; increase the refcnt
* 2) ep_state: 0 && state: CREATING
* ==> change the state to CREATING (protect it);
* increase the refcnt
* 3) ep_state: 0 && state: 0
* ==> increase the refcnt
*/
if (bdn->ep_refcnt == 0)
lru_delete(cache, (void *)bdn);
bdn->ep_refcnt++;
bdn->ep_state = state; /* might be CREATING */
/* returning 1 (entry already existed), but don't set to alt
* to prevent that the caller accidentally thinks the existing
* entry is not the same one the caller has and releases it.
*/
cache_unlock(cache);
return 1;
}
} else {
if (my_alt->ep_state & ENTRY_STATE_CREATING) {
LOG("the entry is reserved\n");
bdn->ep_state |= ENTRY_STATE_NOTINCACHE;
cache_unlock(cache);
return -1;
} else if (state != 0) {
LOG("the entry already exists. cannot reserve it.\n");
bdn->ep_state |= ENTRY_STATE_NOTINCACHE;
cache_unlock(cache);
return -1;
} else {
if (alt) {
*alt = my_alt;
if ((*alt)->ep_refcnt == 0)
lru_delete(cache, (void *)*alt);
(*alt)->ep_refcnt++;
}
cache_unlock(cache);
return 1;
}
}
}
bdn->ep_state = state;
if (!already_in) {
bdn->ep_refcnt = 1;
if (0 == bdn->ep_size) {
bdn->ep_size = slapi_sdn_get_size(bdn->dn_sdn);
}
slapi_counter_add(cache->c_cursize, bdn->ep_size);
cache->c_curentries++;
/* don't add to lru since refcnt = 1 */
LOG("added entry of size %lu -> total now %lu out of max %lu\n",
bdn->ep_size, slapi_counter_get_value(cache->c_cursize),
cache->c_maxsize);
if (cache->c_maxentries > 0) {
LOG(" total entries %ld out of %ld\n",
cache->c_curentries, cache->c_maxentries);
}
/* check for full cache, and clear out if necessary */
if (CACHE_FULL(cache)) {
dnflush = dncache_flush(cache);
}
}
cache_unlock(cache);
while (dnflush) {
dnflushtemp = BACK_LRU_NEXT(dnflush, struct backdn *);
backdn_free(&dnflush);
dnflush = dnflushtemp;
}
LOG("<= dncache_add_int OK\n");
return 0;
}
static int
dncache_replace(struct cache *cache, struct backdn *olddn, struct backdn *newdn)
{
int found;
if (!entryrdn_get_switch()) {
return 0;
}
LOG("(%s) -> (%s)\n",
slapi_sdn_get_dn(olddn->dn_sdn), slapi_sdn_get_dn(newdn->dn_sdn));
/* remove from all hashtable -- this function may be called from places
* where the entry isn't in all the table yet, so we don't care if any
* of these return errors.
*/
cache_lock(cache);
/*
* First, remove the old entry from the hashtable.
* If the old entry is in cache but not in at least one of the
* cache tables, operation error
*/
if ((olddn->ep_state & ENTRY_STATE_NOTINCACHE) == 0) {
found = remove_hash(cache->c_idtable, &(olddn->ep_id), sizeof(ID));
if (!found) {
LOG("cache index tables out of sync\n");
cache_unlock(cache);
return 1;
}
}
/* now, add the new entry to the hashtables */
/* (probably don't need such extensive error handling, once this has been
* tested enough that we believe it works.)
*/
if (!add_hash(cache->c_idtable, &(newdn->ep_id), sizeof(ID), newdn, NULL)) {
LOG("dn cache replace: can't add id\n");
cache_unlock(cache);
return 1;
}
/* adjust cache meta info */
newdn->ep_refcnt = 1;
if (0 == newdn->ep_size) {
newdn->ep_size = slapi_sdn_get_size(newdn->dn_sdn);
}
if (newdn->ep_size > olddn->ep_size) {
slapi_counter_add(cache->c_cursize, newdn->ep_size - olddn->ep_size);
} else if (newdn->ep_size < olddn->ep_size) {
slapi_counter_subtract(cache->c_cursize, olddn->ep_size - newdn->ep_size);
}
olddn->ep_state = ENTRY_STATE_DELETED;
newdn->ep_state = 0;
cache_unlock(cache);
LOG("<-- OK, cache size now %lu cache count now %ld\n",
slapi_counter_get_value(cache->c_cursize), cache->c_curentries);
return 0;
}
static struct backdn *
dncache_flush(struct cache *cache)
{
struct backdn *dn = NULL;
if (!entryrdn_get_switch()) {
return dn;
}
LOG("->\n");
/* all entries on the LRU list are guaranteed to have a refcnt = 0
* (iow, nobody's using them), so just delete from the tail down
* until the cache is a managable size again.
* (cache->c_mutex is locked when we enter this)
*/
while ((cache->c_lrutail != NULL) && CACHE_FULL(cache)) {
if (dn == NULL) {
dn = CACHE_LRU_TAIL(cache, struct backdn *);
} else {
dn = BACK_LRU_PREV(dn, struct backdn *);
}
ASSERT(dn->ep_refcnt == 0);
dn->ep_refcnt++;
if (dncache_remove_int(cache, dn) < 0) {
slapi_log_err(SLAPI_LOG_ERR, "dncache_flush", "Unable to delete entry\n");
break;
}
if (dn == CACHE_LRU_HEAD(cache, struct backdn *)) {
break;
}
}
if (dn)
LRU_DETACH(cache, dn);
LOG("(down to %lu dns, %lu bytes)\n", cache->c_curentries,
slapi_counter_get_value(cache->c_cursize));
return dn;
}
#ifdef LDAP_CACHE_DEBUG_LRU
/* for debugging -- painstakingly verify the lru list is ok -- if 'in' is
* true, then dn 'dn' should be in the list right now; otherwise, it
* should NOT be in the list.
*/
static void
dn_lru_verify(struct cache *cache, struct backdn *dn, int in)
{
int is_in = 0;
int count = 0;
struct backdn *dnp;
dnp = CACHE_LRU_HEAD(cache, struct backdn *);
while (dnp) {
count++;
if (dnp == dn) {
is_in = 1;
}
if (dnp->ep_lruprev) {
ASSERT(BACK_LRU_NEXT(BACK_LRU_PREV(dnp, struct backdn *), struct backdn *) == dnp);
} else {
ASSERT(dnp == CACHE_LRU_HEAD(cache, struct backdn *));
}
if (dnp->ep_lrunext) {
ASSERT(BACK_LRU_PREV(BACK_LRU_NEXT(dnp, struct backdn *), struct backdn *) == dnp);
} else {
ASSERT(dnp == CACHE_LRU_TAIL(cache, struct backdn *));
}
dnp = BACK_LRU_NEXT(dnp, struct backdn *);
}
ASSERT(is_in == in);
}
#endif
#ifdef CACHE_DEBUG
void
check_entry_cache(struct cache *cache, struct backentry *e)
{
Slapi_DN *sdn = slapi_entry_get_sdn(e->ep_entry);
struct backentry *debug_e = cache_find_dn(cache,
slapi_sdn_get_dn(sdn),
slapi_sdn_get_ndn_len(sdn));
in_cache = cache_is_in_cache(cache, (void *)e);
if (in_cache) {
if (debug_e) { /* e is in cache */
CACHE_RETURN(cache, &debug_e);
if ((e != debug_e) && !(e->ep_state & ENTRY_STATE_DELETED)) {
slapi_log_err(SLAPI_LOG_DEBUG, "check_entry_cache",
"entry 0x%p is not in dn cache but 0x%p having the same dn %s is "
"although in_cache flag is set!!!\n",
e, debug_e, slapi_sdn_get_dn(sdn));
}
} else if (!(e->ep_state & ENTRY_STATE_DELETED)) {
slapi_log_err(SLAPI_LOG_DEBUG, "check_entry_cache",
"%s (id %d) is not in dn cache although in_cache flag is set!!!\n",
slapi_sdn_get_dn(sdn), e->ep_id);
}
debug_e = cache_find_id(cache, e->ep_id);
if (debug_e) { /* e is in cache */
CACHE_RETURN(cache, &debug_e);
if ((e != debug_e) && !(e->ep_state & ENTRY_STATE_DELETED)) {
slapi_log_err(SLAPI_LOG_DEBUG, "check_entry_cache",
"entry 0x%p is not in id cache but 0x%p having the same id %d is "
"although in_cache flag is set!!!\n",
e, debug_e, e->ep_id);
}
} else {
slapi_log_err(SLAPI_LOG_CACHE, "check_entry_cache",
"%s (id %d) is not in id cache although in_cache flag is set!!!\n",
slapi_sdn_get_dn(sdn), e->ep_id);
}
} else {
if (debug_e) { /* e is in cache */
CACHE_RETURN(cache, &debug_e);
if (e == debug_e) {
slapi_log_err(SLAPI_LOG_DEBUG, "check_entry_cache",
"%s (id %d) is in dn cache although in_cache flag is not set!!!\n",
slapi_sdn_get_dn(sdn), e->ep_id);
}
}
debug_e = cache_find_id(cache, e->ep_id);
if (debug_e) { /* e is in cache: bad */
CACHE_RETURN(cache, &debug_e);
if (e == debug_e) {
slapi_log_err(SLAPI_LOG_CACHE, "check_entry_cache",
"%s (id %d) is in id cache although in_cache flag is not set!!!\n",
slapi_sdn_get_dn(sdn), e->ep_id);
}
}
}
}
#endif
int
cache_has_otherref(struct cache *cache, void *ptr)
{
struct backcommon *bep;
int hasref = 0;
if (NULL == ptr) {
return hasref;
}
bep = (struct backcommon *)ptr;
cache_lock(cache);
hasref = bep->ep_refcnt;
cache_unlock(cache);
return (hasref > 1) ? 1 : 0;
}
static int
cache_is_in_cache_nolock(void *ptr)
{
struct backcommon *bep;
int in_cache = 0;
if (NULL == ptr) {
return in_cache;
}
bep = (struct backcommon *)ptr;
in_cache = (bep->ep_state & (ENTRY_STATE_DELETED | ENTRY_STATE_NOTINCACHE)) ? 0 : 1;
return in_cache;
}
int
cache_is_in_cache(struct cache *cache, void *ptr)
{
int ret;
cache_lock(cache);
ret = cache_is_in_cache_nolock(ptr);
cache_unlock(cache);
return ret;
}
|