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 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387
|
/*-
* See the file LICENSE for redistribution information.
*
* Copyright (c) 1999-2002
* Sleepycat Software. All rights reserved.
*
* $Id: bt_verify.c,v 1.1.1.1 2003/11/20 22:13:06 toshok Exp $
*/
#include "db_config.h"
#ifndef lint
static const char revid[] = "$Id: bt_verify.c,v 1.1.1.1 2003/11/20 22:13:06 toshok Exp $";
#endif /* not lint */
#ifndef NO_SYSTEM_INCLUDES
#include <sys/types.h>
#include <string.h>
#endif
#include "db_int.h"
#include "dbinc/db_page.h"
#include "dbinc/db_verify.h"
#include "dbinc/btree.h"
static int __bam_safe_getdata __P((DB *, PAGE *, u_int32_t, int, DBT *, int *));
static int __bam_vrfy_inp __P((DB *, VRFY_DBINFO *, PAGE *, db_pgno_t,
db_indx_t *, u_int32_t));
static int __bam_vrfy_treeorder __P((DB *, db_pgno_t, PAGE *, BINTERNAL *,
BINTERNAL *, int (*)(DB *, const DBT *, const DBT *), u_int32_t));
static int __ram_vrfy_inp __P((DB *, VRFY_DBINFO *, PAGE *, db_pgno_t,
db_indx_t *, u_int32_t));
#define OKFLAGS (DB_AGGRESSIVE | DB_NOORDERCHK | DB_SALVAGE)
/*
* __bam_vrfy_meta --
* Verify the btree-specific part of a metadata page.
*
* PUBLIC: int __bam_vrfy_meta __P((DB *, VRFY_DBINFO *, BTMETA *,
* PUBLIC: db_pgno_t, u_int32_t));
*/
int
__bam_vrfy_meta(dbp, vdp, meta, pgno, flags)
DB *dbp;
VRFY_DBINFO *vdp;
BTMETA *meta;
db_pgno_t pgno;
u_int32_t flags;
{
VRFY_PAGEINFO *pip;
int isbad, t_ret, ret;
db_indx_t ovflsize;
if ((ret = __db_vrfy_getpageinfo(vdp, pgno, &pip)) != 0)
return (ret);
isbad = 0;
/*
* If VRFY_INCOMPLETE is not set, then we didn't come through
* __db_vrfy_pagezero and didn't incompletely
* check this page--we haven't checked it at all.
* Thus we need to call __db_vrfy_meta and check the common fields.
*
* If VRFY_INCOMPLETE is set, we've already done all the same work
* in __db_vrfy_pagezero, so skip the check.
*/
if (!F_ISSET(pip, VRFY_INCOMPLETE) &&
(ret = __db_vrfy_meta(dbp, vdp, &meta->dbmeta, pgno, flags)) != 0) {
if (ret == DB_VERIFY_BAD)
isbad = 1;
else
goto err;
}
/* bt_minkey: must be >= 2; must produce sensible ovflsize */
/* avoid division by zero */
ovflsize = meta->minkey > 0 ?
B_MINKEY_TO_OVFLSIZE(dbp, meta->minkey, dbp->pgsize) : 0;
if (meta->minkey < 2 ||
ovflsize > B_MINKEY_TO_OVFLSIZE(dbp, DEFMINKEYPAGE, dbp->pgsize)) {
pip->bt_minkey = 0;
isbad = 1;
EPRINT((dbp->dbenv,
"Page %lu: nonsensical bt_minkey value %lu on metadata page",
(u_long)pgno, (u_long)meta->minkey));
} else
pip->bt_minkey = meta->minkey;
/* bt_maxkey: no constraints (XXX: right?) */
pip->bt_maxkey = meta->maxkey;
/* re_len: no constraints on this (may be zero or huge--we make rope) */
pip->re_len = meta->re_len;
/*
* The root must not be current page or 0 and it must be within
* database. If this metadata page is the master meta data page
* of the file, then the root page had better be page 1.
*/
pip->root = 0;
if (meta->root == PGNO_INVALID ||
meta->root == pgno || !IS_VALID_PGNO(meta->root) ||
(pgno == PGNO_BASE_MD && meta->root != 1)) {
isbad = 1;
EPRINT((dbp->dbenv,
"Page %lu: nonsensical root page %lu on metadata page",
(u_long)pgno, (u_long)meta->root));
} else
pip->root = meta->root;
/* Flags. */
if (F_ISSET(&meta->dbmeta, BTM_RENUMBER))
F_SET(pip, VRFY_IS_RRECNO);
if (F_ISSET(&meta->dbmeta, BTM_SUBDB)) {
/*
* If this is a master db meta page, it had better not have
* duplicates.
*/
if (F_ISSET(&meta->dbmeta, BTM_DUP) && pgno == PGNO_BASE_MD) {
isbad = 1;
EPRINT((dbp->dbenv,
"Page %lu: Btree metadata page has both duplicates and multiple databases",
(u_long)pgno));
}
F_SET(pip, VRFY_HAS_SUBDBS);
}
if (F_ISSET(&meta->dbmeta, BTM_DUP))
F_SET(pip, VRFY_HAS_DUPS);
if (F_ISSET(&meta->dbmeta, BTM_DUPSORT))
F_SET(pip, VRFY_HAS_DUPSORT);
if (F_ISSET(&meta->dbmeta, BTM_RECNUM))
F_SET(pip, VRFY_HAS_RECNUMS);
if (F_ISSET(pip, VRFY_HAS_RECNUMS) && F_ISSET(pip, VRFY_HAS_DUPS)) {
EPRINT((dbp->dbenv,
"Page %lu: Btree metadata page illegally has both recnums and dups",
(u_long)pgno));
isbad = 1;
}
if (F_ISSET(&meta->dbmeta, BTM_RECNO)) {
F_SET(pip, VRFY_IS_RECNO);
dbp->type = DB_RECNO;
} else if (F_ISSET(pip, VRFY_IS_RRECNO)) {
isbad = 1;
EPRINT((dbp->dbenv,
"Page %lu: metadata page has renumber flag set but is not recno",
(u_long)pgno));
}
if (F_ISSET(pip, VRFY_IS_RECNO) && F_ISSET(pip, VRFY_HAS_DUPS)) {
EPRINT((dbp->dbenv,
"Page %lu: recno metadata page specifies duplicates",
(u_long)pgno));
isbad = 1;
}
if (F_ISSET(&meta->dbmeta, BTM_FIXEDLEN))
F_SET(pip, VRFY_IS_FIXEDLEN);
else if (pip->re_len > 0) {
/*
* It's wrong to have an re_len if it's not a fixed-length
* database
*/
isbad = 1;
EPRINT((dbp->dbenv,
"Page %lu: re_len of %lu in non-fixed-length database",
(u_long)pgno, (u_long)pip->re_len));
}
/*
* We do not check that the rest of the page is 0, because it may
* not be and may still be correct.
*/
err: if ((t_ret =
__db_vrfy_putpageinfo(dbp->dbenv, vdp, pip)) != 0 && ret == 0)
ret = t_ret;
return ((ret == 0 && isbad == 1) ? DB_VERIFY_BAD : ret);
}
/*
* __ram_vrfy_leaf --
* Verify a recno leaf page.
*
* PUBLIC: int __ram_vrfy_leaf __P((DB *, VRFY_DBINFO *, PAGE *, db_pgno_t,
* PUBLIC: u_int32_t));
*/
int
__ram_vrfy_leaf(dbp, vdp, h, pgno, flags)
DB *dbp;
VRFY_DBINFO *vdp;
PAGE *h;
db_pgno_t pgno;
u_int32_t flags;
{
BKEYDATA *bk;
VRFY_PAGEINFO *pip;
db_indx_t i;
int ret, t_ret, isbad;
u_int32_t re_len_guess, len;
isbad = 0;
if ((ret = __db_vrfy_getpageinfo(vdp, pgno, &pip)) != 0)
return (ret);
if ((ret = __db_fchk(dbp->dbenv,
"__ram_vrfy_leaf", flags, OKFLAGS)) != 0)
goto err;
if (TYPE(h) != P_LRECNO) {
/* We should not have been called. */
TYPE_ERR_PRINT(dbp->dbenv, "__ram_vrfy_leaf", pgno, TYPE(h));
DB_ASSERT(0);
ret = EINVAL;
goto err;
}
/*
* Verify (and, if relevant, save off) page fields common to
* all PAGEs.
*/
if ((ret = __db_vrfy_datapage(dbp, vdp, h, pgno, flags)) != 0) {
if (ret == DB_VERIFY_BAD)
isbad = 1;
else
goto err;
}
/*
* Verify inp[]. Return immediately if it returns DB_VERIFY_BAD;
* further checks are dangerous.
*/
if ((ret = __bam_vrfy_inp(dbp,
vdp, h, pgno, &pip->entries, flags)) != 0)
goto err;
if (F_ISSET(pip, VRFY_HAS_DUPS)) {
EPRINT((dbp->dbenv,
"Page %lu: Recno database has dups", (u_long)pgno));
ret = DB_VERIFY_BAD;
goto err;
}
/*
* Walk through inp and see if the lengths of all the records are the
* same--if so, this may be a fixed-length database, and we want to
* save off this value. We know inp to be safe if we've gotten this
* far.
*/
re_len_guess = 0;
for (i = 0; i < NUM_ENT(h); i++) {
bk = GET_BKEYDATA(dbp, h, i);
/* KEYEMPTY. Go on. */
if (B_DISSET(bk->type))
continue;
if (bk->type == B_OVERFLOW)
len = ((BOVERFLOW *)bk)->tlen;
else if (bk->type == B_KEYDATA)
len = bk->len;
else {
isbad = 1;
EPRINT((dbp->dbenv,
"Page %lu: nonsensical type for item %lu",
(u_long)pgno, (u_long)i));
continue;
}
if (re_len_guess == 0)
re_len_guess = len;
/*
* Is this item's len the same as the last one's? If not,
* reset to 0 and break--we don't have a single re_len.
* Otherwise, go on to the next item.
*/
if (re_len_guess != len) {
re_len_guess = 0;
break;
}
}
pip->re_len = re_len_guess;
/* Save off record count. */
pip->rec_cnt = NUM_ENT(h);
err: if ((t_ret =
__db_vrfy_putpageinfo(dbp->dbenv, vdp, pip)) != 0 && ret == 0)
ret = t_ret;
return ((ret == 0 && isbad == 1) ? DB_VERIFY_BAD : ret);
}
/*
* __bam_vrfy --
* Verify a btree leaf or internal page.
*
* PUBLIC: int __bam_vrfy __P((DB *, VRFY_DBINFO *, PAGE *, db_pgno_t,
* PUBLIC: u_int32_t));
*/
int
__bam_vrfy(dbp, vdp, h, pgno, flags)
DB *dbp;
VRFY_DBINFO *vdp;
PAGE *h;
db_pgno_t pgno;
u_int32_t flags;
{
VRFY_PAGEINFO *pip;
int ret, t_ret, isbad;
isbad = 0;
if ((ret = __db_vrfy_getpageinfo(vdp, pgno, &pip)) != 0)
return (ret);
switch (TYPE(h)) {
case P_IBTREE:
case P_IRECNO:
case P_LBTREE:
case P_LDUP:
break;
default:
TYPE_ERR_PRINT(dbp->dbenv, "__bam_vrfy", pgno, TYPE(h));
DB_ASSERT(0);
ret = EINVAL;
goto err;
}
/*
* Verify (and, if relevant, save off) page fields common to
* all PAGEs.
*/
if ((ret = __db_vrfy_datapage(dbp, vdp, h, pgno, flags)) != 0) {
if (ret == DB_VERIFY_BAD)
isbad = 1;
else
goto err;
}
/*
* The record count is, on internal pages, stored in an overloaded
* next_pgno field. Save it off; we'll verify it when we check
* overall database structure. We could overload the field
* in VRFY_PAGEINFO, too, but this seems gross, and space
* is not at such a premium.
*/
pip->rec_cnt = RE_NREC(h);
/*
* Verify inp[].
*/
if (TYPE(h) == P_IRECNO) {
if ((ret = __ram_vrfy_inp(dbp,
vdp, h, pgno, &pip->entries, flags)) != 0)
goto err;
} else if ((ret = __bam_vrfy_inp(dbp,
vdp, h, pgno, &pip->entries, flags)) != 0) {
if (ret == DB_VERIFY_BAD)
isbad = 1;
else
goto err;
EPRINT((dbp->dbenv,
"Page %lu: item order check unsafe: skipping",
(u_long)pgno));
} else if (!LF_ISSET(DB_NOORDERCHK) && (ret =
__bam_vrfy_itemorder(dbp, vdp, h, pgno, 0, 0, 0, flags)) != 0) {
/*
* We know that the elements of inp are reasonable.
*
* Check that elements fall in the proper order.
*/
if (ret == DB_VERIFY_BAD)
isbad = 1;
else
goto err;
}
err: if ((t_ret =
__db_vrfy_putpageinfo(dbp->dbenv, vdp, pip)) != 0 && ret == 0)
ret = t_ret;
return ((ret == 0 && isbad == 1) ? DB_VERIFY_BAD : ret);
}
/*
* __ram_vrfy_inp --
* Verify that all entries in a P_IRECNO inp[] array are reasonable,
* and count them. Note that P_LRECNO uses __bam_vrfy_inp;
* P_IRECNOs are a special, and simpler, case, since they have
* RINTERNALs rather than BKEYDATA/BINTERNALs.
*/
static int
__ram_vrfy_inp(dbp, vdp, h, pgno, nentriesp, flags)
DB *dbp;
VRFY_DBINFO *vdp;
PAGE *h;
db_pgno_t pgno;
db_indx_t *nentriesp;
u_int32_t flags;
{
RINTERNAL *ri;
VRFY_CHILDINFO child;
VRFY_PAGEINFO *pip;
int ret, t_ret, isbad;
u_int32_t himark, i, offset, nentries;
db_indx_t *inp;
u_int8_t *pagelayout, *p;
isbad = 0;
memset(&child, 0, sizeof(VRFY_CHILDINFO));
nentries = 0;
pagelayout = NULL;
if ((ret = __db_vrfy_getpageinfo(vdp, pgno, &pip)) != 0)
return (ret);
if (TYPE(h) != P_IRECNO) {
TYPE_ERR_PRINT(dbp->dbenv, "__ram_vrfy_inp", pgno, TYPE(h));
DB_ASSERT(0);
ret = EINVAL;
goto err;
}
himark = dbp->pgsize;
if ((ret =
__os_malloc(dbp->dbenv, dbp->pgsize, &pagelayout)) != 0)
goto err;
memset(pagelayout, 0, dbp->pgsize);
inp = P_INP(dbp, h);
for (i = 0; i < NUM_ENT(h); i++) {
if ((u_int8_t *)inp + i >= (u_int8_t *)h + himark) {
EPRINT((dbp->dbenv,
"Page %lu: entries listing %lu overlaps data",
(u_long)pgno, (u_long)i));
ret = DB_VERIFY_BAD;
goto err;
}
offset = inp[i];
/*
* Check that the item offset is reasonable: it points
* somewhere after the inp array and before the end of the
* page.
*/
if (offset <= (u_int32_t)((u_int8_t *)inp + i -
(u_int8_t *)h) ||
offset > (u_int32_t)(dbp->pgsize - RINTERNAL_SIZE)) {
isbad = 1;
EPRINT((dbp->dbenv,
"Page %lu: bad offset %lu at index %lu",
(u_long)pgno, (u_long)offset, (u_long)i));
continue;
}
/* Update the high-water mark (what HOFFSET should be) */
if (offset < himark)
himark = offset;
nentries++;
/* Make sure this RINTERNAL is not multiply referenced. */
ri = GET_RINTERNAL(dbp, h, i);
if (pagelayout[offset] == 0) {
pagelayout[offset] = 1;
child.pgno = ri->pgno;
child.type = V_RECNO;
child.nrecs = ri->nrecs;
if ((ret = __db_vrfy_childput(vdp, pgno, &child)) != 0)
goto err;
} else {
EPRINT((dbp->dbenv,
"Page %lu: RINTERNAL structure at offset %lu referenced twice",
(u_long)pgno, (u_long)offset));
isbad = 1;
}
}
for (p = pagelayout + himark;
p < pagelayout + dbp->pgsize;
p += RINTERNAL_SIZE)
if (*p != 1) {
EPRINT((dbp->dbenv,
"Page %lu: gap between items at offset %lu",
(u_long)pgno, (u_long)(p - pagelayout)));
isbad = 1;
}
if ((db_indx_t)himark != HOFFSET(h)) {
EPRINT((dbp->dbenv,
"Page %lu: bad HOFFSET %lu, appears to be %lu",
(u_long)pgno, (u_long)(HOFFSET(h)), (u_long)himark));
isbad = 1;
}
*nentriesp = nentries;
err: if ((t_ret =
__db_vrfy_putpageinfo(dbp->dbenv, vdp, pip)) != 0 && ret == 0)
ret = t_ret;
if (pagelayout != NULL)
__os_free(dbp->dbenv, pagelayout);
return ((ret == 0 && isbad == 1) ? DB_VERIFY_BAD : ret);
}
/*
* __bam_vrfy_inp --
* Verify that all entries in inp[] array are reasonable;
* count them.
*/
static int
__bam_vrfy_inp(dbp, vdp, h, pgno, nentriesp, flags)
DB *dbp;
VRFY_DBINFO *vdp;
PAGE *h;
db_pgno_t pgno;
db_indx_t *nentriesp;
u_int32_t flags;
{
BKEYDATA *bk;
BOVERFLOW *bo;
VRFY_CHILDINFO child;
VRFY_PAGEINFO *pip;
int isbad, initem, isdupitem, ret, t_ret;
u_int32_t himark, offset; /* These would be db_indx_ts but for algnmt.*/
u_int32_t i, endoff, nentries;
u_int8_t *pagelayout;
isbad = isdupitem = 0;
nentries = 0;
memset(&child, 0, sizeof(VRFY_CHILDINFO));
if ((ret = __db_vrfy_getpageinfo(vdp, pgno, &pip)) != 0)
return (ret);
switch (TYPE(h)) {
case P_IBTREE:
case P_LBTREE:
case P_LDUP:
case P_LRECNO:
break;
default:
/*
* In the salvager, we might call this from a page which
* we merely suspect is a btree page. Otherwise, it
* shouldn't get called--if it is, that's a verifier bug.
*/
if (LF_ISSET(DB_SALVAGE))
break;
TYPE_ERR_PRINT(dbp->dbenv, "__bam_vrfy_inp", pgno, TYPE(h));
DB_ASSERT(0);
ret = EINVAL;
goto err;
}
/*
* Loop through inp[], the array of items, until we either
* run out of entries or collide with the data. Keep track
* of h_offset in himark.
*
* For each element in inp[i], make sure it references a region
* that starts after the end of the inp array (as defined by
* NUM_ENT(h)), ends before the beginning of the page, doesn't
* overlap any other regions, and doesn't have a gap between
* it and the region immediately after it.
*/
himark = dbp->pgsize;
if ((ret = __os_malloc(dbp->dbenv, dbp->pgsize, &pagelayout)) != 0)
goto err;
memset(pagelayout, 0, dbp->pgsize);
for (i = 0; i < NUM_ENT(h); i++) {
switch (ret = __db_vrfy_inpitem(dbp,
h, pgno, i, 1, flags, &himark, &offset)) {
case 0:
break;
case DB_VERIFY_BAD:
isbad = 1;
continue;
case DB_VERIFY_FATAL:
isbad = 1;
goto err;
default:
DB_ASSERT(ret != 0);
break;
}
/*
* We now have a plausible beginning for the item, and we know
* its length is safe.
*
* Mark the beginning and end in pagelayout so we can make sure
* items have no overlaps or gaps.
*/
bk = GET_BKEYDATA(dbp, h, i);
#define ITEM_BEGIN 1
#define ITEM_END 2
if (pagelayout[offset] == 0)
pagelayout[offset] = ITEM_BEGIN;
else if (pagelayout[offset] == ITEM_BEGIN) {
/*
* Having two inp entries that point at the same patch
* of page is legal if and only if the page is
* a btree leaf and they're onpage duplicate keys--
* that is, if (i % P_INDX) == 0.
*/
if ((i % P_INDX == 0) && (TYPE(h) == P_LBTREE)) {
/* Flag for later. */
F_SET(pip, VRFY_HAS_DUPS);
/* Bump up nentries so we don't undercount. */
nentries++;
/*
* We'll check to make sure the end is
* equal, too.
*/
isdupitem = 1;
} else {
isbad = 1;
EPRINT((dbp->dbenv,
"Page %lu: duplicated item %lu",
(u_long)pgno, (u_long)i));
}
}
/*
* Mark the end. Its location varies with the page type
* and the item type.
*
* If the end already has a sign other than 0, do nothing--
* it's an overlap that we'll catch later.
*/
switch(B_TYPE(bk->type)) {
case B_KEYDATA:
if (TYPE(h) == P_IBTREE)
/* It's a BINTERNAL. */
endoff = offset + BINTERNAL_SIZE(bk->len) - 1;
else
endoff = offset + BKEYDATA_SIZE(bk->len) - 1;
break;
case B_DUPLICATE:
/*
* Flag that we have dups; we'll check whether
* that's okay during the structure check.
*/
F_SET(pip, VRFY_HAS_DUPS);
/* FALLTHROUGH */
case B_OVERFLOW:
/*
* Overflow entries on internal pages are stored
* as the _data_ of a BINTERNAL; overflow entries
* on leaf pages are stored as the entire entry.
*/
endoff = offset +
((TYPE(h) == P_IBTREE) ?
BINTERNAL_SIZE(BOVERFLOW_SIZE) :
BOVERFLOW_SIZE) - 1;
break;
default:
/*
* We'll complain later; for now, just mark
* a minimum.
*/
endoff = offset + BKEYDATA_SIZE(0) - 1;
break;
}
/*
* If this is an onpage duplicate key we've seen before,
* the end had better coincide too.
*/
if (isdupitem && pagelayout[endoff] != ITEM_END) {
EPRINT((dbp->dbenv,
"Page %lu: duplicated item %lu",
(u_long)pgno, (u_long)i));
isbad = 1;
} else if (pagelayout[endoff] == 0)
pagelayout[endoff] = ITEM_END;
isdupitem = 0;
/*
* There should be no deleted items in a quiescent tree,
* except in recno.
*/
if (B_DISSET(bk->type) && TYPE(h) != P_LRECNO) {
isbad = 1;
EPRINT((dbp->dbenv,
"Page %lu: item %lu marked deleted",
(u_long)pgno, (u_long)i));
}
/*
* Check the type and such of bk--make sure it's reasonable
* for the pagetype.
*/
switch (B_TYPE(bk->type)) {
case B_KEYDATA:
/*
* This is a normal, non-overflow BKEYDATA or BINTERNAL.
* The only thing to check is the len, and that's
* already been done.
*/
break;
case B_DUPLICATE:
if (TYPE(h) == P_IBTREE) {
isbad = 1;
EPRINT((dbp->dbenv,
"Page %lu: duplicate page referenced by internal btree page at item %lu",
(u_long)pgno, (u_long)i));
break;
} else if (TYPE(h) == P_LRECNO) {
isbad = 1;
EPRINT((dbp->dbenv,
"Page %lu: duplicate page referenced by recno page at item %lu",
(u_long)pgno, (u_long)i));
break;
}
/* FALLTHROUGH */
case B_OVERFLOW:
bo = (TYPE(h) == P_IBTREE) ?
(BOVERFLOW *)(((BINTERNAL *)bk)->data) :
(BOVERFLOW *)bk;
if (B_TYPE(bk->type) == B_OVERFLOW)
/* Make sure tlen is reasonable. */
if (bo->tlen > dbp->pgsize * vdp->last_pgno) {
isbad = 1;
EPRINT((dbp->dbenv,
"Page %lu: impossible tlen %lu, item %lu",
(u_long)pgno,
(u_long)bo->tlen, (u_long)i));
/* Don't save as a child. */
break;
}
if (!IS_VALID_PGNO(bo->pgno) || bo->pgno == pgno ||
bo->pgno == PGNO_INVALID) {
isbad = 1;
EPRINT((dbp->dbenv,
"Page %lu: offpage item %lu has bad pgno %lu",
(u_long)pgno, (u_long)i, (u_long)bo->pgno));
/* Don't save as a child. */
break;
}
child.pgno = bo->pgno;
child.type = (B_TYPE(bk->type) == B_OVERFLOW ?
V_OVERFLOW : V_DUPLICATE);
child.tlen = bo->tlen;
if ((ret = __db_vrfy_childput(vdp, pgno, &child)) != 0)
goto err;
break;
default:
isbad = 1;
EPRINT((dbp->dbenv,
"Page %lu: item %lu of invalid type %lu",
(u_long)pgno, (u_long)i));
break;
}
}
/*
* Now, loop through and make sure the items are contiguous and
* non-overlapping.
*/
initem = 0;
for (i = himark; i < dbp->pgsize; i++)
if (initem == 0)
switch (pagelayout[i]) {
case 0:
/* May be just for alignment. */
if (i != ALIGN(i, sizeof(u_int32_t)))
continue;
isbad = 1;
EPRINT((dbp->dbenv,
"Page %lu: gap between items at offset %lu",
(u_long)pgno, (u_long)i));
/* Find the end of the gap */
for ( ; pagelayout[i + 1] == 0 &&
(size_t)(i + 1) < dbp->pgsize; i++)
;
break;
case ITEM_BEGIN:
/* We've found an item. Check its alignment. */
if (i != ALIGN(i, sizeof(u_int32_t))) {
isbad = 1;
EPRINT((dbp->dbenv,
"Page %lu: offset %lu unaligned",
(u_long)pgno, (u_long)i));
}
initem = 1;
nentries++;
break;
case ITEM_END:
/*
* We've hit the end of an item even though
* we don't think we're in one; must
* be an overlap.
*/
isbad = 1;
EPRINT((dbp->dbenv,
"Page %lu: overlapping items at offset %lu",
(u_long)pgno, (u_long)i));
break;
default:
/* Should be impossible. */
DB_ASSERT(0);
ret = EINVAL;
goto err;
}
else
switch (pagelayout[i]) {
case 0:
/* In the middle of an item somewhere. Okay. */
break;
case ITEM_END:
/* End of an item; switch to out-of-item mode.*/
initem = 0;
break;
case ITEM_BEGIN:
/*
* Hit a second item beginning without an
* end. Overlap.
*/
isbad = 1;
EPRINT((dbp->dbenv,
"Page %lu: overlapping items at offset %lu",
(u_long)pgno, (u_long)i));
break;
}
(void)__os_free(dbp->dbenv, pagelayout);
/* Verify HOFFSET. */
if ((db_indx_t)himark != HOFFSET(h)) {
EPRINT((dbp->dbenv,
"Page %lu: bad HOFFSET %lu, appears to be %lu",
(u_long)pgno, (u_long)HOFFSET(h), (u_long)himark));
isbad = 1;
}
err: if (nentriesp != NULL)
*nentriesp = nentries;
if ((t_ret =
__db_vrfy_putpageinfo(dbp->dbenv, vdp, pip)) != 0 && ret == 0)
ret = t_ret;
return ((isbad == 1 && ret == 0) ? DB_VERIFY_BAD : ret);
}
/*
* __bam_vrfy_itemorder --
* Make sure the items on a page sort correctly.
*
* Assumes that NUM_ENT(h) and inp[0]..inp[NUM_ENT(h) - 1] are
* reasonable; be sure that __bam_vrfy_inp has been called first.
*
* If ovflok is set, it also assumes that overflow page chains
* hanging off the current page have been sanity-checked, and so we
* can use __bam_cmp to verify their ordering. If it is not set,
* and we run into an overflow page, carp and return DB_VERIFY_BAD;
* we shouldn't be called if any exist.
*
* PUBLIC: int __bam_vrfy_itemorder __P((DB *, VRFY_DBINFO *, PAGE *,
* PUBLIC: db_pgno_t, u_int32_t, int, int, u_int32_t));
*/
int
__bam_vrfy_itemorder(dbp, vdp, h, pgno, nentries, ovflok, hasdups, flags)
DB *dbp;
VRFY_DBINFO *vdp;
PAGE *h;
db_pgno_t pgno;
u_int32_t nentries;
int ovflok, hasdups;
u_int32_t flags;
{
DBT dbta, dbtb, dup_1, dup_2, *p1, *p2, *tmp;
BTREE *bt;
BINTERNAL *bi;
BKEYDATA *bk;
BOVERFLOW *bo;
VRFY_PAGEINFO *pip;
db_indx_t i;
int cmp, freedup_1, freedup_2, isbad, ret, t_ret;
int (*dupfunc) __P((DB *, const DBT *, const DBT *));
int (*func) __P((DB *, const DBT *, const DBT *));
void *buf1, *buf2, *tmpbuf;
/*
* We need to work in the ORDERCHKONLY environment where we might
* not have a pip, but we also may need to work in contexts where
* NUM_ENT isn't safe.
*/
if (vdp != NULL) {
if ((ret = __db_vrfy_getpageinfo(vdp, pgno, &pip)) != 0)
return (ret);
nentries = pip->entries;
} else
pip = NULL;
ret = isbad = 0;
bo = NULL; /* Shut up compiler. */
memset(&dbta, 0, sizeof(DBT));
F_SET(&dbta, DB_DBT_REALLOC);
memset(&dbtb, 0, sizeof(DBT));
F_SET(&dbtb, DB_DBT_REALLOC);
buf1 = buf2 = NULL;
DB_ASSERT(!LF_ISSET(DB_NOORDERCHK));
dupfunc = (dbp->dup_compare == NULL) ? __bam_defcmp : dbp->dup_compare;
if (TYPE(h) == P_LDUP)
func = dupfunc;
else {
func = __bam_defcmp;
if (dbp->bt_internal != NULL) {
bt = (BTREE *)dbp->bt_internal;
if (bt->bt_compare != NULL)
func = bt->bt_compare;
}
}
/*
* We alternate our use of dbta and dbtb so that we can walk
* through the page key-by-key without copying a dbt twice.
* p1 is always the dbt for index i - 1, and p2 for index i.
*/
p1 = &dbta;
p2 = &dbtb;
/*
* Loop through the entries. nentries ought to contain the
* actual count, and so is a safe way to terminate the loop; whether
* we inc. by one or two depends on whether we're a leaf page--
* on a leaf page, we care only about keys. On internal pages
* and LDUP pages, we want to check the order of all entries.
*
* Note that on IBTREE pages, we start with item 1, since item
* 0 doesn't get looked at by __bam_cmp.
*/
for (i = (TYPE(h) == P_IBTREE) ? 1 : 0; i < nentries;
i += (TYPE(h) == P_LBTREE) ? P_INDX : O_INDX) {
/*
* Put key i-1, now in p2, into p1, by swapping DBTs and bufs.
*/
tmp = p1;
p1 = p2;
p2 = tmp;
tmpbuf = buf1;
buf1 = buf2;
buf2 = tmpbuf;
/*
* Get key i into p2.
*/
switch (TYPE(h)) {
case P_IBTREE:
bi = GET_BINTERNAL(dbp, h, i);
if (B_TYPE(bi->type) == B_OVERFLOW) {
bo = (BOVERFLOW *)(bi->data);
goto overflow;
} else {
p2->data = bi->data;
p2->size = bi->len;
}
/*
* The leftmost key on an internal page must be
* len 0, since it's just a placeholder and
* automatically sorts less than all keys.
*
* XXX
* This criterion does not currently hold!
* See todo list item #1686. Meanwhile, it's harmless
* to just not check for it.
*/
#if 0
if (i == 0 && bi->len != 0) {
isbad = 1;
EPRINT((dbp->dbenv,
"Page %lu: lowest key on internal page of nonzero length",
(u_long)pgno));
}
#endif
break;
case P_LBTREE:
case P_LDUP:
bk = GET_BKEYDATA(dbp, h, i);
if (B_TYPE(bk->type) == B_OVERFLOW) {
bo = (BOVERFLOW *)bk;
goto overflow;
} else {
p2->data = bk->data;
p2->size = bk->len;
}
break;
default:
/*
* This means our caller screwed up and sent us
* an inappropriate page.
*/
TYPE_ERR_PRINT(dbp->dbenv,
"__bam_vrfy_itemorder", pgno, TYPE(h))
DB_ASSERT(0);
ret = EINVAL;
goto err;
}
if (0) {
/*
* If ovflok != 1, we can't safely go chasing
* overflow pages with the normal routines now;
* they might be unsafe or nonexistent. Mark this
* page as incomplete and return.
*
* Note that we don't need to worry about freeing
* buffers, since they can't have been allocated
* if overflow items are unsafe.
*/
overflow: if (!ovflok) {
F_SET(pip, VRFY_INCOMPLETE);
goto err;
}
/*
* Overflow items are safe to chase. Do so.
* Fetch the overflow item into p2->data,
* NULLing it or reallocing it as appropriate.
*
* (We set p2->data to buf2 before the call
* so we're sure to realloc if we can and if p2
* was just pointing at a non-overflow item.)
*/
p2->data = buf2;
if ((ret = __db_goff(dbp,
p2, bo->tlen, bo->pgno, NULL, NULL)) != 0) {
isbad = 1;
EPRINT((dbp->dbenv,
"Page %lu: error %lu in fetching overflow item %lu",
(u_long)pgno, (u_long)ret, (u_long)i));
}
/* In case it got realloc'ed and thus changed. */
buf2 = p2->data;
}
/* Compare with the last key. */
if (p1->data != NULL && p2->data != NULL) {
cmp = func(dbp, p1, p2);
/* comparison succeeded */
if (cmp > 0) {
isbad = 1;
EPRINT((dbp->dbenv,
"Page %lu: out-of-order key at entry %lu",
(u_long)pgno, (u_long)i));
/* proceed */
} else if (cmp == 0) {
/*
* If they compared equally, this
* had better be a (sub)database with dups.
* Mark it so we can check during the
* structure check.
*/
if (pip != NULL)
F_SET(pip, VRFY_HAS_DUPS);
else if (hasdups == 0) {
isbad = 1;
EPRINT((dbp->dbenv,
"Page %lu: database with no duplicates has duplicated keys",
(u_long)pgno));
}
/*
* If we're a btree leaf, check to see
* if the data items of these on-page dups are
* in sorted order. If not, flag this, so
* that we can make sure during the
* structure checks that the DUPSORT flag
* is unset.
*
* At this point i points to a duplicate key.
* Compare the datum before it (same key)
* to the datum after it, i.e. i-1 to i+1.
*/
if (TYPE(h) == P_LBTREE) {
/*
* Unsafe; continue and we'll pick
* up the bogus nentries later.
*/
if (i + 1 >= (db_indx_t)nentries)
continue;
/*
* We don't bother with clever memory
* management with on-page dups,
* as it's only really a big win
* in the overflow case, and overflow
* dups are probably (?) rare.
*/
if (((ret = __bam_safe_getdata(dbp,
h, i - 1, ovflok, &dup_1,
&freedup_1)) != 0) ||
((ret = __bam_safe_getdata(dbp,
h, i + 1, ovflok, &dup_2,
&freedup_2)) != 0))
goto err;
/*
* If either of the data are NULL,
* it's because they're overflows and
* it's not safe to chase them now.
* Mark an incomplete and return.
*/
if (dup_1.data == NULL ||
dup_2.data == NULL) {
DB_ASSERT(!ovflok);
F_SET(pip, VRFY_INCOMPLETE);
goto err;
}
/*
* If the dups are out of order,
* flag this. It's not an error
* until we do the structure check
* and see whether DUPSORT is set.
*/
if (dupfunc(dbp, &dup_1, &dup_2) > 0)
F_SET(pip, VRFY_DUPS_UNSORTED);
if (freedup_1)
__os_ufree(dbp->dbenv,
dup_1.data);
if (freedup_2)
__os_ufree(dbp->dbenv,
dup_2.data);
}
}
}
}
err: if (pip != NULL && ((t_ret =
__db_vrfy_putpageinfo(dbp->dbenv, vdp, pip)) != 0) && ret == 0)
ret = t_ret;
if (buf1 != NULL)
__os_ufree(dbp->dbenv, buf1);
if (buf2 != NULL)
__os_ufree(dbp->dbenv, buf2);
return ((ret == 0 && isbad == 1) ? DB_VERIFY_BAD : ret);
}
/*
* __bam_vrfy_structure --
* Verify the tree structure of a btree database (including the master
* database containing subdbs).
*
* PUBLIC: int __bam_vrfy_structure __P((DB *, VRFY_DBINFO *, db_pgno_t,
* PUBLIC: u_int32_t));
*/
int
__bam_vrfy_structure(dbp, vdp, meta_pgno, flags)
DB *dbp;
VRFY_DBINFO *vdp;
db_pgno_t meta_pgno;
u_int32_t flags;
{
DB *pgset;
VRFY_PAGEINFO *mip, *rip;
db_pgno_t root, p;
int t_ret, ret;
u_int32_t nrecs, level, relen, stflags;
mip = rip = 0;
pgset = vdp->pgset;
if ((ret = __db_vrfy_getpageinfo(vdp, meta_pgno, &mip)) != 0)
return (ret);
if ((ret = __db_vrfy_pgset_get(pgset, meta_pgno, (int *)&p)) != 0)
goto err;
if (p != 0) {
EPRINT((dbp->dbenv,
"Page %lu: btree metadata page observed twice",
(u_long)meta_pgno));
ret = DB_VERIFY_BAD;
goto err;
}
if ((ret = __db_vrfy_pgset_inc(pgset, meta_pgno)) != 0)
goto err;
root = mip->root;
if (root == 0) {
EPRINT((dbp->dbenv,
"Page %lu: btree metadata page has no root",
(u_long)meta_pgno));
ret = DB_VERIFY_BAD;
goto err;
}
if ((ret = __db_vrfy_getpageinfo(vdp, root, &rip)) != 0)
goto err;
switch (rip->type) {
case P_IBTREE:
case P_LBTREE:
stflags = flags | ST_TOPLEVEL;
if (F_ISSET(mip, VRFY_HAS_DUPS))
stflags |= ST_DUPOK;
if (F_ISSET(mip, VRFY_HAS_DUPSORT))
stflags |= ST_DUPSORT;
if (F_ISSET(mip, VRFY_HAS_RECNUMS))
stflags |= ST_RECNUM;
ret = __bam_vrfy_subtree(dbp,
vdp, root, NULL, NULL, stflags, NULL, NULL, NULL);
break;
case P_IRECNO:
case P_LRECNO:
stflags = flags | ST_RECNUM | ST_IS_RECNO | ST_TOPLEVEL;
if (mip->re_len > 0)
stflags |= ST_RELEN;
if ((ret = __bam_vrfy_subtree(dbp, vdp,
root, NULL, NULL, stflags, &level, &nrecs, &relen)) != 0)
goto err;
/*
* Even if mip->re_len > 0, re_len may come back zero if the
* tree is empty. It should be okay to just skip the check in
* this case, as if there are any non-deleted keys at all,
* that should never happen.
*/
if (mip->re_len > 0 && relen > 0 && mip->re_len != relen) {
EPRINT((dbp->dbenv,
"Page %lu: recno database has bad re_len %lu",
(u_long)meta_pgno, (u_long)relen));
ret = DB_VERIFY_BAD;
goto err;
}
ret = 0;
break;
case P_LDUP:
EPRINT((dbp->dbenv,
"Page %lu: duplicate tree referenced from metadata page",
(u_long)meta_pgno));
ret = DB_VERIFY_BAD;
break;
default:
EPRINT((dbp->dbenv,
"Page %lu: btree root of incorrect type %lu on metadata page",
(u_long)meta_pgno, (u_long)rip->type));
ret = DB_VERIFY_BAD;
break;
}
err: if (mip != NULL && ((t_ret =
__db_vrfy_putpageinfo(dbp->dbenv, vdp, mip)) != 0) && ret == 0)
ret = t_ret;
if (rip != NULL && ((t_ret =
__db_vrfy_putpageinfo(dbp->dbenv, vdp, rip)) != 0) && ret == 0)
ret = t_ret;
return (ret);
}
/*
* __bam_vrfy_subtree--
* Verify a subtree (or entire) btree with specified root.
*
* Note that this is public because it must be called to verify
* offpage dup trees, including from hash.
*
* PUBLIC: int __bam_vrfy_subtree __P((DB *, VRFY_DBINFO *, db_pgno_t, void *,
* PUBLIC: void *, u_int32_t, u_int32_t *, u_int32_t *, u_int32_t *));
*/
int
__bam_vrfy_subtree(dbp,
vdp, pgno, l, r, flags, levelp, nrecsp, relenp)
DB *dbp;
VRFY_DBINFO *vdp;
db_pgno_t pgno;
void *l, *r;
u_int32_t flags, *levelp, *nrecsp, *relenp;
{
BINTERNAL *li, *ri, *lp, *rp;
DB *pgset;
DB_MPOOLFILE *mpf;
DBC *cc;
PAGE *h;
VRFY_CHILDINFO *child;
VRFY_PAGEINFO *pip;
db_indx_t i;
db_pgno_t next_pgno, prev_pgno;
db_recno_t child_nrecs, nrecs;
u_int32_t child_level, child_relen, level, relen, stflags;
u_int8_t leaf_type;
int (*func) __P((DB *, const DBT *, const DBT *));
int isbad, p, ret, t_ret, toplevel;
mpf = dbp->mpf;
ret = isbad = 0;
nrecs = 0;
h = NULL;
relen = 0;
leaf_type = P_INVALID;
next_pgno = prev_pgno = PGNO_INVALID;
rp = (BINTERNAL *)r;
lp = (BINTERNAL *)l;
/* Provide feedback on our progress to the application. */
if (!LF_ISSET(DB_SALVAGE))
__db_vrfy_struct_feedback(dbp, vdp);
if ((ret = __db_vrfy_getpageinfo(vdp, pgno, &pip)) != 0)
return (ret);
cc = NULL;
level = pip->bt_level;
toplevel = LF_ISSET(ST_TOPLEVEL) ? 1 : 0;
LF_CLR(ST_TOPLEVEL);
/*
* If this is the root, initialize the vdp's prev- and next-pgno
* accounting.
*
* For each leaf page we hit, we'll want to make sure that
* vdp->prev_pgno is the same as pip->prev_pgno and vdp->next_pgno is
* our page number. Then, we'll set vdp->next_pgno to pip->next_pgno
* and vdp->prev_pgno to our page number, and the next leaf page in
* line should be able to do the same verification.
*/
if (toplevel) {
/*
* Cache the values stored in the vdp so that if we're an
* auxiliary tree such as an off-page duplicate set, our
* caller's leaf page chain doesn't get lost.
*/
prev_pgno = vdp->prev_pgno;
next_pgno = vdp->next_pgno;
leaf_type = vdp->leaf_type;
vdp->next_pgno = vdp->prev_pgno = PGNO_INVALID;
vdp->leaf_type = P_INVALID;
}
/*
* We are recursively descending a btree, starting from the root
* and working our way out to the leaves.
*
* There are four cases we need to deal with:
* 1. pgno is a recno leaf page. Any children are overflows.
* 2. pgno is a duplicate leaf page. Any children
* are overflow pages; traverse them, and then return
* level and nrecs.
* 3. pgno is an ordinary leaf page. Check whether dups are
* allowed, and if so, traverse any off-page dups or
* overflows. Then return nrecs and level.
* 4. pgno is a recno internal page. Recursively check any
* child pages, making sure their levels are one lower
* and their nrecs sum to ours.
* 5. pgno is a btree internal page. Same as #4, plus we
* must verify that for each pair of BINTERNAL entries
* N and N+1, the leftmost item on N's child sorts
* greater than N, and the rightmost item on N's child
* sorts less than N+1.
*
* Furthermore, in any sorted page type (P_LDUP, P_LBTREE, P_IBTREE),
* we need to verify the internal sort order is correct if,
* due to overflow items, we were not able to do so earlier.
*/
switch (pip->type) {
case P_LRECNO:
case P_LDUP:
case P_LBTREE:
/*
* Cases 1, 2 and 3.
*
* We're some sort of leaf page; verify
* that our linked list of leaves is consistent.
*/
if (vdp->leaf_type == P_INVALID) {
/*
* First leaf page. Set the type that all its
* successors should be, and verify that our prev_pgno
* is PGNO_INVALID.
*/
vdp->leaf_type = pip->type;
if (pip->prev_pgno != PGNO_INVALID)
goto bad_prev;
} else {
/*
* Successor leaf page. Check our type, the previous
* page's next_pgno, and our prev_pgno.
*/
if (pip->type != vdp->leaf_type) {
EPRINT((dbp->dbenv,
"Page %lu: unexpected page type %lu found in leaf chain (expected %lu)",
(u_long)pip->pgno, (u_long)pip->type,
(u_long)vdp->leaf_type));
isbad = 1;
}
if (pip->pgno != vdp->next_pgno) {
EPRINT((dbp->dbenv,
"Page %lu: incorrect next_pgno %lu found in leaf chain (should be %lu)",
(u_long)vdp->prev_pgno,
(u_long)vdp->next_pgno, (u_long)pip->pgno));
isbad = 1;
}
if (pip->prev_pgno != vdp->prev_pgno) {
bad_prev: EPRINT((dbp->dbenv,
"Page %lu: incorrect prev_pgno %lu found in leaf chain (should be %lu)",
(u_long)pip->pgno, (u_long)pip->prev_pgno,
(u_long)vdp->prev_pgno));
isbad = 1;
}
}
vdp->prev_pgno = pip->pgno;
vdp->next_pgno = pip->next_pgno;
/*
* Overflow pages are common to all three leaf types;
* traverse the child list, looking for overflows.
*/
if ((ret = __db_vrfy_childcursor(vdp, &cc)) != 0)
goto err;
for (ret = __db_vrfy_ccset(cc, pgno, &child); ret == 0;
ret = __db_vrfy_ccnext(cc, &child))
if (child->type == V_OVERFLOW &&
(ret = __db_vrfy_ovfl_structure(dbp, vdp,
child->pgno, child->tlen,
flags | ST_OVFL_LEAF)) != 0) {
if (ret == DB_VERIFY_BAD)
isbad = 1;
else
goto done;
}
if ((ret = __db_vrfy_ccclose(cc)) != 0)
goto err;
cc = NULL;
/* Case 1 */
if (pip->type == P_LRECNO) {
if (!LF_ISSET(ST_IS_RECNO) &&
!(LF_ISSET(ST_DUPOK) && !LF_ISSET(ST_DUPSORT))) {
isbad = 1;
EPRINT((dbp->dbenv,
"Page %lu: recno leaf page non-recno tree",
(u_long)pgno));
goto done;
}
goto leaf;
} else if (LF_ISSET(ST_IS_RECNO)) {
/*
* It's a non-recno leaf. Had better not be a recno
* subtree.
*/
isbad = 1;
EPRINT((dbp->dbenv,
"Page %lu: non-recno leaf page in recno tree",
(u_long)pgno));
goto done;
}
/* Case 2--no more work. */
if (pip->type == P_LDUP)
goto leaf;
/* Case 3 */
/* Check if we have any dups. */
if (F_ISSET(pip, VRFY_HAS_DUPS)) {
/* If dups aren't allowed in this btree, trouble. */
if (!LF_ISSET(ST_DUPOK)) {
isbad = 1;
EPRINT((dbp->dbenv,
"Page %lu: duplicates in non-dup btree",
(u_long)pgno));
} else {
/*
* We correctly have dups. If any are off-page,
* traverse those btrees recursively.
*/
if ((ret =
__db_vrfy_childcursor(vdp, &cc)) != 0)
goto err;
for (ret = __db_vrfy_ccset(cc, pgno, &child);
ret == 0;
ret = __db_vrfy_ccnext(cc, &child)) {
stflags = flags | ST_RECNUM | ST_DUPSET;
/* Skip any overflow entries. */
if (child->type == V_DUPLICATE) {
if ((ret = __db_vrfy_duptype(
dbp, vdp, child->pgno,
stflags)) != 0) {
isbad = 1;
/* Next child. */
continue;
}
if ((ret = __bam_vrfy_subtree(
dbp, vdp, child->pgno, NULL,
NULL, stflags | ST_TOPLEVEL,
NULL, NULL, NULL)) != 0) {
if (ret !=
DB_VERIFY_BAD)
goto err;
else
isbad = 1;
}
}
}
if ((ret = __db_vrfy_ccclose(cc)) != 0)
goto err;
cc = NULL;
/*
* If VRFY_DUPS_UNSORTED is set,
* ST_DUPSORT had better not be.
*/
if (F_ISSET(pip, VRFY_DUPS_UNSORTED) &&
LF_ISSET(ST_DUPSORT)) {
EPRINT((dbp->dbenv,
"Page %lu: unsorted duplicate set in sorted-dup database",
(u_long)pgno));
isbad = 1;
}
}
}
goto leaf;
case P_IBTREE:
case P_IRECNO:
/* We handle these below. */
break;
default:
/*
* If a P_IBTREE or P_IRECNO contains a reference to an
* invalid page, we'll wind up here; handle it gracefully.
* Note that the code at the "done" label assumes that the
* current page is a btree/recno one of some sort; this
* is not the case here, so we goto err.
*
* If the page is entirely zeroed, its pip->type will be a lie
* (we assumed it was a hash page, as they're allowed to be
* zeroed); handle this case specially.
*/
if (F_ISSET(pip, VRFY_IS_ALLZEROES))
ZEROPG_ERR_PRINT(dbp->dbenv,
pgno, "btree or recno page");
else
EPRINT((dbp->dbenv,
"Page %lu: btree or recno page is of inappropriate type %lu",
(u_long)pgno, (u_long)pip->type));
ret = DB_VERIFY_BAD;
goto err;
}
/*
* Cases 4 & 5: This is a btree or recno internal page. For each child,
* recurse, keeping a running count of nrecs and making sure the level
* is always reasonable.
*/
if ((ret = __db_vrfy_childcursor(vdp, &cc)) != 0)
goto err;
for (ret = __db_vrfy_ccset(cc, pgno, &child); ret == 0;
ret = __db_vrfy_ccnext(cc, &child))
if (child->type == V_RECNO) {
if (pip->type != P_IRECNO) {
TYPE_ERR_PRINT(dbp->dbenv, "__bam_vrfy_subtree",
pgno, pip->type);
DB_ASSERT(0);
ret = EINVAL;
goto err;
}
if ((ret = __bam_vrfy_subtree(dbp, vdp, child->pgno,
NULL, NULL, flags, &child_level, &child_nrecs,
&child_relen)) != 0) {
if (ret != DB_VERIFY_BAD)
goto done;
else
isbad = 1;
}
if (LF_ISSET(ST_RELEN)) {
if (relen == 0)
relen = child_relen;
/*
* child_relen may be zero if the child subtree
* is empty.
*/
else if (child_relen > 0 &&
relen != child_relen) {
isbad = 1;
EPRINT((dbp->dbenv,
"Page %lu: recno page returned bad re_len %lu",
(u_long)child->pgno,
(u_long)child_relen));
}
if (relenp)
*relenp = relen;
}
if (LF_ISSET(ST_RECNUM))
nrecs += child_nrecs;
if (level != child_level + 1) {
isbad = 1;
EPRINT((dbp->dbenv, "Page %lu: recno level incorrect: got %lu, expected %lu",
(u_long)child->pgno, (u_long)child_level,
(u_long)(level - 1)));
}
} else if (child->type == V_OVERFLOW &&
(ret = __db_vrfy_ovfl_structure(dbp, vdp,
child->pgno, child->tlen, flags)) != 0) {
if (ret == DB_VERIFY_BAD)
isbad = 1;
else
goto done;
}
if ((ret = __db_vrfy_ccclose(cc)) != 0)
goto err;
cc = NULL;
/* We're done with case 4. */
if (pip->type == P_IRECNO)
goto done;
/*
* Case 5. Btree internal pages.
* As described above, we need to iterate through all the
* items on the page and make sure that our children sort appropriately
* with respect to them.
*
* For each entry, li will be the "left-hand" key for the entry
* itself, which must sort lower than all entries on its child;
* ri will be the key to its right, which must sort greater.
*/
if (h == NULL && (ret = mpf->get(mpf, &pgno, 0, &h)) != 0)
goto err;
for (i = 0; i < pip->entries; i += O_INDX) {
li = GET_BINTERNAL(dbp, h, i);
ri = (i + O_INDX < pip->entries) ?
GET_BINTERNAL(dbp, h, i + O_INDX) : NULL;
/*
* The leftmost key is forcibly sorted less than all entries,
* so don't bother passing it.
*/
if ((ret = __bam_vrfy_subtree(dbp, vdp, li->pgno,
i == 0 ? NULL : li, ri, flags, &child_level,
&child_nrecs, NULL)) != 0) {
if (ret != DB_VERIFY_BAD)
goto done;
else
isbad = 1;
}
if (LF_ISSET(ST_RECNUM)) {
/*
* Keep a running tally on the actual record count so
* we can return it to our parent (if we have one) or
* compare it to the NRECS field if we're a root page.
*/
nrecs += child_nrecs;
/*
* Make sure the actual record count of the child
* is equal to the value in the BINTERNAL structure.
*/
if (li->nrecs != child_nrecs) {
isbad = 1;
EPRINT((dbp->dbenv,
"Page %lu: item %lu has incorrect record count of %lu, should be %lu",
(u_long)pgno, (u_long)i, (u_long)li->nrecs,
(u_long)child_nrecs));
}
}
if (level != child_level + 1) {
isbad = 1;
EPRINT((dbp->dbenv,
"Page %lu: Btree level incorrect: got %lu, expected %lu",
(u_long)li->pgno,
(u_long)child_level, (u_long)(level - 1)));
}
}
if (0) {
leaf: level = LEAFLEVEL;
if (LF_ISSET(ST_RECNUM))
nrecs = pip->rec_cnt;
/* XXX
* We should verify that the record count on a leaf page
* is the sum of the number of keys and the number of
* records in its off-page dups. This requires looking
* at the page again, however, and it may all be changing
* soon, so for now we don't bother.
*/
if (LF_ISSET(ST_RELEN) && relenp)
*relenp = pip->re_len;
}
done: if (F_ISSET(pip, VRFY_INCOMPLETE) && isbad == 0 && ret == 0) {
/*
* During the page-by-page pass, item order verification was
* not finished due to the presence of overflow items. If
* isbad == 0, though, it's now safe to do so, as we've
* traversed any child overflow pages. Do it.
*/
if (h == NULL && (ret = mpf->get(mpf, &pgno, 0, &h)) != 0)
goto err;
if ((ret = __bam_vrfy_itemorder(dbp,
vdp, h, pgno, 0, 1, 0, flags)) != 0)
goto err;
F_CLR(pip, VRFY_INCOMPLETE);
}
/*
* It's possible to get to this point with a page that has no
* items, but without having detected any sort of failure yet.
* Having zero items is legal if it's a leaf--it may be the
* root page in an empty tree, or the tree may have been
* modified with the DB_REVSPLITOFF flag set (there's no way
* to tell from what's on disk). For an internal page,
* though, having no items is a problem (all internal pages
* must have children).
*/
if (isbad == 0 && ret == 0) {
if (h == NULL && (ret = mpf->get(mpf, &pgno, 0, &h)) != 0)
goto err;
if (NUM_ENT(h) == 0 && ISINTERNAL(h)) {
EPRINT((dbp->dbenv,
"Page %lu: internal page is empty and should not be",
(u_long)pgno));
isbad = 1;
goto err;
}
}
/*
* Our parent has sent us BINTERNAL pointers to parent records
* so that we can verify our place with respect to them. If it's
* appropriate--we have a default sort function--verify this.
*/
if (isbad == 0 && ret == 0 && !LF_ISSET(DB_NOORDERCHK) && lp != NULL) {
if (h == NULL && (ret = mpf->get(mpf, &pgno, 0, &h)) != 0)
goto err;
/*
* __bam_vrfy_treeorder needs to know what comparison function
* to use. If ST_DUPSET is set, we're in a duplicate tree
* and we use the duplicate comparison function; otherwise,
* use the btree one. If unset, use the default, of course.
*/
func = LF_ISSET(ST_DUPSET) ? dbp->dup_compare :
((BTREE *)dbp->bt_internal)->bt_compare;
if (func == NULL)
func = __bam_defcmp;
if ((ret = __bam_vrfy_treeorder(
dbp, pgno, h, lp, rp, func, flags)) != 0) {
if (ret == DB_VERIFY_BAD)
isbad = 1;
else
goto err;
}
}
/*
* This is guaranteed to succeed for leaf pages, but no harm done.
*
* Internal pages below the top level do not store their own
* record numbers, so we skip them.
*/
if (LF_ISSET(ST_RECNUM) && nrecs != pip->rec_cnt && toplevel) {
isbad = 1;
EPRINT((dbp->dbenv,
"Page %lu: bad record count: has %lu records, claims %lu",
(u_long)pgno, (u_long)nrecs, (u_long)pip->rec_cnt));
}
if (levelp)
*levelp = level;
if (nrecsp)
*nrecsp = nrecs;
pgset = vdp->pgset;
if ((ret = __db_vrfy_pgset_get(pgset, pgno, &p)) != 0)
goto err;
if (p != 0) {
isbad = 1;
EPRINT((dbp->dbenv, "Page %lu: linked twice", (u_long)pgno));
} else if ((ret = __db_vrfy_pgset_inc(pgset, pgno)) != 0)
goto err;
if (toplevel)
/*
* The last page's next_pgno in the leaf chain should have been
* PGNO_INVALID.
*/
if (vdp->next_pgno != PGNO_INVALID) {
EPRINT((dbp->dbenv, "Page %lu: unterminated leaf chain",
(u_long)vdp->prev_pgno));
isbad = 1;
}
err: if (toplevel) {
/* Restore our caller's settings. */
vdp->next_pgno = next_pgno;
vdp->prev_pgno = prev_pgno;
vdp->leaf_type = leaf_type;
}
if (h != NULL && (t_ret = mpf->put(mpf, h, 0)) != 0 && ret == 0)
ret = t_ret;
if ((t_ret =
__db_vrfy_putpageinfo(dbp->dbenv, vdp, pip)) != 0 && ret == 0)
ret = t_ret;
if (cc != NULL && ((t_ret = __db_vrfy_ccclose(cc)) != 0) && ret == 0)
ret = t_ret;
return ((ret == 0 && isbad == 1) ? DB_VERIFY_BAD : ret);
}
/*
* __bam_vrfy_treeorder --
* Verify that the lowest key on a page sorts greater than the
* BINTERNAL which points to it (lp), and the highest key
* sorts less than the BINTERNAL above that (rp).
*
* If lp is NULL, this means that it was the leftmost key on the
* parent, which (regardless of sort function) sorts less than
* all keys. No need to check it.
*
* If rp is NULL, lp was the highest key on the parent, so there's
* no higher key we must sort less than.
*/
static int
__bam_vrfy_treeorder(dbp, pgno, h, lp, rp, func, flags)
DB *dbp;
db_pgno_t pgno;
PAGE *h;
BINTERNAL *lp, *rp;
int (*func) __P((DB *, const DBT *, const DBT *));
u_int32_t flags;
{
BOVERFLOW *bo;
DBT dbt;
db_indx_t last;
int ret, cmp;
memset(&dbt, 0, sizeof(DBT));
F_SET(&dbt, DB_DBT_MALLOC);
ret = 0;
/*
* Empty pages are sorted correctly by definition. We check
* to see whether they ought to be empty elsewhere; leaf
* pages legally may be.
*/
if (NUM_ENT(h) == 0)
return (0);
switch (TYPE(h)) {
case P_IBTREE:
case P_LDUP:
last = NUM_ENT(h) - O_INDX;
break;
case P_LBTREE:
last = NUM_ENT(h) - P_INDX;
break;
default:
TYPE_ERR_PRINT(dbp->dbenv,
"__bam_vrfy_treeorder", pgno, TYPE(h));
DB_ASSERT(0);
return (EINVAL);
}
/*
* The key on page h, the child page, is more likely to be
* an overflow page, so we pass its offset, rather than lp/rp's,
* into __bam_cmp. This will take advantage of __db_moff.
*/
/*
* Skip first-item check if we're an internal page--the first
* entry on an internal page is treated specially by __bam_cmp,
* so what's on the page shouldn't matter. (Plus, since we're passing
* our page and item 0 as to __bam_cmp, we'll sort before our
* parent and falsely report a failure.)
*/
if (lp != NULL && TYPE(h) != P_IBTREE) {
if (lp->type == B_KEYDATA) {
dbt.data = lp->data;
dbt.size = lp->len;
} else if (lp->type == B_OVERFLOW) {
bo = (BOVERFLOW *)lp->data;
if ((ret = __db_goff(dbp, &dbt, bo->tlen, bo->pgno,
NULL, NULL)) != 0)
return (ret);
} else {
DB_ASSERT(0);
EPRINT((dbp->dbenv,
"Page %lu: unknown type for internal record",
(u_long)PGNO(h)));
return (EINVAL);
}
/* On error, fall through, free if neeeded, and return. */
if ((ret = __bam_cmp(dbp, &dbt, h, 0, func, &cmp)) == 0) {
if (cmp > 0) {
EPRINT((dbp->dbenv,
"Page %lu: first item on page sorted greater than parent entry",
(u_long)PGNO(h)));
ret = DB_VERIFY_BAD;
}
} else
EPRINT((dbp->dbenv,
"Page %lu: first item on page had comparison error",
(u_long)PGNO(h)));
if (dbt.data != lp->data)
__os_ufree(dbp->dbenv, dbt.data);
if (ret != 0)
return (ret);
}
if (rp != NULL) {
if (rp->type == B_KEYDATA) {
dbt.data = rp->data;
dbt.size = rp->len;
} else if (rp->type == B_OVERFLOW) {
bo = (BOVERFLOW *)rp->data;
if ((ret = __db_goff(dbp, &dbt, bo->tlen, bo->pgno,
NULL, NULL)) != 0)
return (ret);
} else {
DB_ASSERT(0);
EPRINT((dbp->dbenv,
"Page %lu: unknown type for internal record",
(u_long)PGNO(h)));
return (EINVAL);
}
/* On error, fall through, free if neeeded, and return. */
if ((ret = __bam_cmp(dbp, &dbt, h, last, func, &cmp)) == 0) {
if (cmp < 0) {
EPRINT((dbp->dbenv,
"Page %lu: last item on page sorted greater than parent entry",
(u_long)PGNO(h)));
ret = DB_VERIFY_BAD;
}
} else
EPRINT((dbp->dbenv,
"Page %lu: last item on page had comparison error",
(u_long)PGNO(h)));
if (dbt.data != rp->data)
__os_ufree(dbp->dbenv, dbt.data);
}
return (ret);
}
/*
* __bam_salvage --
* Safely dump out anything that looks like a key on an alleged
* btree leaf page.
*
* PUBLIC: int __bam_salvage __P((DB *, VRFY_DBINFO *, db_pgno_t, u_int32_t,
* PUBLIC: PAGE *, void *, int (*)(void *, const void *), DBT *,
* PUBLIC: u_int32_t));
*/
int
__bam_salvage(dbp, vdp, pgno, pgtype, h, handle, callback, key, flags)
DB *dbp;
VRFY_DBINFO *vdp;
db_pgno_t pgno;
u_int32_t pgtype;
PAGE *h;
void *handle;
int (*callback) __P((void *, const void *));
DBT *key;
u_int32_t flags;
{
DBT dbt, unkdbt;
BKEYDATA *bk;
BOVERFLOW *bo;
db_indx_t i, beg, end, *inp;
u_int32_t himark;
u_int8_t *pgmap;
void *ovflbuf;
int t_ret, ret, err_ret;
/* Shut up lint. */
COMPQUIET(end, 0);
ovflbuf = pgmap = NULL;
err_ret = ret = 0;
inp = P_INP(dbp, h);
memset(&dbt, 0, sizeof(DBT));
dbt.flags = DB_DBT_REALLOC;
memset(&unkdbt, 0, sizeof(DBT));
unkdbt.size = (u_int32_t)(strlen("UNKNOWN") + 1);
unkdbt.data = "UNKNOWN";
/*
* Allocate a buffer for overflow items. Start at one page;
* __db_safe_goff will realloc as needed.
*/
if ((ret = __os_malloc(dbp->dbenv, dbp->pgsize, &ovflbuf)) != 0)
return (ret);
if (LF_ISSET(DB_AGGRESSIVE)) {
if ((ret =
__os_malloc(dbp->dbenv, dbp->pgsize, &pgmap)) != 0)
goto err;
memset(pgmap, 0, dbp->pgsize);
}
/*
* Loop through the inp array, spitting out key/data pairs.
*
* If we're salvaging normally, loop from 0 through NUM_ENT(h).
* If we're being aggressive, loop until we hit the end of the page--
* NUM_ENT() may be bogus.
*/
himark = dbp->pgsize;
for (i = 0;; i += O_INDX) {
/* If we're not aggressive, break when we hit NUM_ENT(h). */
if (!LF_ISSET(DB_AGGRESSIVE) && i >= NUM_ENT(h))
break;
/* Verify the current item. */
ret = __db_vrfy_inpitem(dbp,
h, pgno, i, 1, flags, &himark, NULL);
/* If this returned a fatality, it's time to break. */
if (ret == DB_VERIFY_FATAL) {
/*
* Don't return DB_VERIFY_FATAL; it's private
* and means only that we can't go on with this
* page, not with the whole database. It's
* not even an error if we've run into it
* after NUM_ENT(h).
*/
ret = (i < NUM_ENT(h)) ? DB_VERIFY_BAD : 0;
break;
}
/*
* If this returned 0, it's safe to print or (carefully)
* try to fetch.
*/
if (ret == 0) {
/*
* We only want to print deleted items if
* DB_AGGRESSIVE is set.
*/
bk = GET_BKEYDATA(dbp, h, i);
if (!LF_ISSET(DB_AGGRESSIVE) && B_DISSET(bk->type))
continue;
/*
* We're going to go try to print the next item. If
* key is non-NULL, we're a dup page, so we've got to
* print the key first, unless SA_SKIPFIRSTKEY is set
* and we're on the first entry.
*/
if (key != NULL &&
(i != 0 || !LF_ISSET(SA_SKIPFIRSTKEY)))
if ((ret = __db_prdbt(key,
0, " ", handle, callback, 0, vdp)) != 0)
err_ret = ret;
beg = inp[i];
switch (B_TYPE(bk->type)) {
case B_DUPLICATE:
end = beg + BOVERFLOW_SIZE - 1;
/*
* If we're not on a normal btree leaf page,
* there shouldn't be off-page
* dup sets. Something's confused; just
* drop it, and the code to pick up unlinked
* offpage dup sets will print it out
* with key "UNKNOWN" later.
*/
if (pgtype != P_LBTREE)
break;
bo = (BOVERFLOW *)bk;
/*
* If the page number is unreasonable, or
* if this is supposed to be a key item,
* just spit out "UNKNOWN"--the best we
* can do is run into the data items in the
* unlinked offpage dup pass.
*/
if (!IS_VALID_PGNO(bo->pgno) ||
(i % P_INDX == 0)) {
/* Not much to do on failure. */
if ((ret = __db_prdbt(&unkdbt, 0, " ",
handle, callback, 0, vdp)) != 0)
err_ret = ret;
break;
}
if ((ret = __db_salvage_duptree(dbp,
vdp, bo->pgno, &dbt, handle, callback,
flags | SA_SKIPFIRSTKEY)) != 0)
err_ret = ret;
break;
case B_KEYDATA:
end =
ALIGN(beg + bk->len, sizeof(u_int32_t)) - 1;
dbt.data = bk->data;
dbt.size = bk->len;
if ((ret = __db_prdbt(&dbt,
0, " ", handle, callback, 0, vdp)) != 0)
err_ret = ret;
break;
case B_OVERFLOW:
end = beg + BOVERFLOW_SIZE - 1;
bo = (BOVERFLOW *)bk;
if ((ret = __db_safe_goff(dbp, vdp,
bo->pgno, &dbt, &ovflbuf, flags)) != 0) {
err_ret = ret;
/* We care about err_ret more. */
(void)__db_prdbt(&unkdbt, 0, " ",
handle, callback, 0, vdp);
break;
}
if ((ret = __db_prdbt(&dbt,
0, " ", handle, callback, 0, vdp)) != 0)
err_ret = ret;
break;
default:
/*
* We should never get here; __db_vrfy_inpitem
* should not be returning 0 if bk->type
* is unrecognizable.
*/
DB_ASSERT(0);
return (EINVAL);
}
/*
* If we're being aggressive, mark the beginning
* and end of the item; we'll come back and print
* whatever "junk" is in the gaps in case we had
* any bogus inp elements and thereby missed stuff.
*/
if (LF_ISSET(DB_AGGRESSIVE)) {
pgmap[beg] = ITEM_BEGIN;
pgmap[end] = ITEM_END;
}
}
}
/*
* If i is odd and this is a btree leaf, we've printed out a key but not
* a datum; fix this imbalance by printing an "UNKNOWN".
*/
if (pgtype == P_LBTREE && (i % P_INDX == 1) && ((ret =
__db_prdbt(&unkdbt, 0, " ", handle, callback, 0, vdp)) != 0))
err_ret = ret;
err: if (pgmap != NULL)
__os_free(dbp->dbenv, pgmap);
__os_free(dbp->dbenv, ovflbuf);
/* Mark this page as done. */
if ((t_ret = __db_salvage_markdone(vdp, pgno)) != 0)
return (t_ret);
return ((err_ret != 0) ? err_ret : ret);
}
/*
* __bam_salvage_walkdupint --
* Walk a known-good btree or recno internal page which is part of
* a dup tree, calling __db_salvage_duptree on each child page.
*
* PUBLIC: int __bam_salvage_walkdupint __P((DB *, VRFY_DBINFO *, PAGE *,
* PUBLIC: DBT *, void *, int (*)(void *, const void *), u_int32_t));
*/
int
__bam_salvage_walkdupint(dbp, vdp, h, key, handle, callback, flags)
DB *dbp;
VRFY_DBINFO *vdp;
PAGE *h;
DBT *key;
void *handle;
int (*callback) __P((void *, const void *));
u_int32_t flags;
{
RINTERNAL *ri;
BINTERNAL *bi;
int ret, t_ret;
db_indx_t i;
ret = 0;
for (i = 0; i < NUM_ENT(h); i++) {
switch (TYPE(h)) {
case P_IBTREE:
bi = GET_BINTERNAL(dbp, h, i);
if ((t_ret = __db_salvage_duptree(dbp,
vdp, bi->pgno, key, handle, callback, flags)) != 0)
ret = t_ret;
break;
case P_IRECNO:
ri = GET_RINTERNAL(dbp, h, i);
if ((t_ret = __db_salvage_duptree(dbp,
vdp, ri->pgno, key, handle, callback, flags)) != 0)
ret = t_ret;
break;
default:
__db_err(dbp->dbenv,
"__bam_salvage_walkdupint called on non-int. page");
DB_ASSERT(0);
return (EINVAL);
}
/* Pass SA_SKIPFIRSTKEY, if set, on to the 0th child only. */
flags &= ~LF_ISSET(SA_SKIPFIRSTKEY);
}
return (ret);
}
/*
* __bam_meta2pgset --
* Given a known-good meta page, return in pgsetp a 0-terminated list of
* db_pgno_t's corresponding to the pages in the btree.
*
* We do this by a somewhat sleazy method, to avoid having to traverse the
* btree structure neatly: we walk down the left side to the very
* first leaf page, then we mark all the pages in the chain of
* NEXT_PGNOs (being wary of cycles and invalid ones), then we
* consolidate our scratch array into a nice list, and return. This
* avoids the memory management hassles of recursion and the
* trouble of walking internal pages--they just don't matter, except
* for the left branch.
*
* PUBLIC: int __bam_meta2pgset __P((DB *, VRFY_DBINFO *, BTMETA *,
* PUBLIC: u_int32_t, DB *));
*/
int
__bam_meta2pgset(dbp, vdp, btmeta, flags, pgset)
DB *dbp;
VRFY_DBINFO *vdp;
BTMETA *btmeta;
u_int32_t flags;
DB *pgset;
{
BINTERNAL *bi;
DB_MPOOLFILE *mpf;
PAGE *h;
RINTERNAL *ri;
db_pgno_t current, p;
int err_ret, ret;
mpf = dbp->mpf;
h = NULL;
ret = err_ret = 0;
DB_ASSERT(pgset != NULL);
for (current = btmeta->root;;) {
if (!IS_VALID_PGNO(current) || current == PGNO(btmeta)) {
err_ret = DB_VERIFY_BAD;
goto err;
}
if ((ret = mpf->get(mpf, ¤t, 0, &h)) != 0) {
err_ret = ret;
goto err;
}
switch (TYPE(h)) {
case P_IBTREE:
case P_IRECNO:
if ((ret = __bam_vrfy(dbp,
vdp, h, current, flags | DB_NOORDERCHK)) != 0) {
err_ret = ret;
goto err;
}
if (TYPE(h) == P_IBTREE) {
bi = GET_BINTERNAL(dbp, h, 0);
current = bi->pgno;
} else { /* P_IRECNO */
ri = GET_RINTERNAL(dbp, h, 0);
current = ri->pgno;
}
break;
case P_LBTREE:
case P_LRECNO:
goto traverse;
default:
err_ret = DB_VERIFY_BAD;
goto err;
}
if ((ret = mpf->put(mpf, h, 0)) != 0)
err_ret = ret;
h = NULL;
}
/*
* At this point, current is the pgno of leaf page h, the 0th in the
* tree we're concerned with.
*/
traverse:
while (IS_VALID_PGNO(current) && current != PGNO_INVALID) {
if (h == NULL && (ret = mpf->get(mpf, ¤t, 0, &h)) != 0) {
err_ret = ret;
break;
}
if ((ret = __db_vrfy_pgset_get(pgset, current, (int *)&p)) != 0)
goto err;
if (p != 0) {
/*
* We've found a cycle. Return success anyway--
* our caller may as well use however much of
* the pgset we've come up with.
*/
break;
}
if ((ret = __db_vrfy_pgset_inc(pgset, current)) != 0)
goto err;
current = NEXT_PGNO(h);
if ((ret = mpf->put(mpf, h, 0)) != 0)
err_ret = ret;
h = NULL;
}
err: if (h != NULL)
(void)mpf->put(mpf, h, 0);
return (ret == 0 ? err_ret : ret);
}
/*
* __bam_safe_getdata --
*
* Utility function for __bam_vrfy_itemorder. Safely gets the datum at
* index i, page h, and sticks it in DBT dbt. If ovflok is 1 and i's an
* overflow item, we do a safe_goff to get the item and signal that we need
* to free dbt->data; if ovflok is 0, we leaves the DBT zeroed.
*/
static int
__bam_safe_getdata(dbp, h, i, ovflok, dbt, freedbtp)
DB *dbp;
PAGE *h;
u_int32_t i;
int ovflok;
DBT *dbt;
int *freedbtp;
{
BKEYDATA *bk;
BOVERFLOW *bo;
memset(dbt, 0, sizeof(DBT));
*freedbtp = 0;
bk = GET_BKEYDATA(dbp, h, i);
if (B_TYPE(bk->type) == B_OVERFLOW) {
if (!ovflok)
return (0);
bo = (BOVERFLOW *)bk;
F_SET(dbt, DB_DBT_MALLOC);
*freedbtp = 1;
return (__db_goff(dbp, dbt, bo->tlen, bo->pgno, NULL, NULL));
} else {
dbt->data = bk->data;
dbt->size = bk->len;
}
return (0);
}
|