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
|
/*
dbz.c V6.1.1
Copyright 1988 Jon Zeeff (zeeff@b-tech.ann-arbor.mi.us)
You can use this code in any manner, as long as you leave my name on it
and don't hold me responsible for any problems with it.
Hacked on by gdb@ninja.UUCP (David Butler); Sun Jun 5 00:27:08 CDT 1988
Various improvments + INCORE by moraes@ai.toronto.edu (Mark Moraes)
Major reworking by Henry Spencer as part of the C News project.
Minor lint and CodeCenter (Saber) fluff removal by Rich $alz (March, 1991).
Non-portable CloseOnExec() calls added by Rich $alz (September, 1991).
Added "writethrough" and tagmask calculation code from
<rob@violet.berkeley.edu> and <leres@ee.lbl.gov> by Rich $alz (December, 1992).
Merged in MMAP code by David Robinson, formerly <david@elroy.jpl.nasa.gov>
now <david.robinson@sun.com> (January, 1993).
Major reworking by Clayton O'Neill (coneill@oneill.net). Removed all the
C News and backwards compatible cruft. Ripped out all the tagmask stuff
and replaced it with hashed .pag entries. This removes the need for
base file access. Primary bottleneck now appears to be the hash
algorithm and search(). You can change DBZ_INTERNAL_HASH_SIZE in
dbz.h to increase the size of the stored hash.
These routines replace dbm as used by the usenet news software
(it's not a full dbm replacement by any means). It's fast and
simple. It contains no AT&T code.
The dbz database exploits the fact that when news stores a <key,value>
tuple, the `value' part is a seek offset into a text file, pointing to
a copy of the `key' part. This avoids the need to store a copy of
the key in the dbz files.
The basic format of the database is two hash tables, each in it's own
file. One contains the offsets into the history text file , and the
other contains a hash of the message id. A value is stored by
indexing into the tables using a hash value computed from the key;
collisions are resolved by linear probing (just search forward for an
empty slot, wrapping around to the beginning of the table if
necessary). Linear probing is a performance disaster when the table
starts to get full, so a complication is introduced. Each file actually
contains one *or more* tables, stored sequentially in the files, and
the length of the linear-probe sequences is limited. The search (for
an existing item or an empy slot always starts in the first table of
the hash file, and whenever MAXRUN probes have been done in table N,
probing continues in table N+1. It is best not to overflow into more
than 1-2 tables or else massive performance degradation may occur.
Choosing the size of the database is extremely important because of this.
The table size is fixed for any particular database, but is determined
dynamically when a database is rebuilt. The strategy is to try to pick
the size so the first table will be no more than 2/3 full, that being
slightly before the point where performance starts to degrade. (It is
desirable to be a bit conservative because the overflow strategy tends
to produce files with holes in them, which is a nuisance.)
Tagged hash + offset fuzzy technique merged by Sang-yong Suh (Nov, 1997)
Fixed a bug handling larger than 1Gb history offset by Sang-yong Suh(1998)
Similar fix was suggested by Mike Hucka <hucka@umich.edu> (Jan, 1998) for
dbz-3.3.2.
Limited can't tag warnings once per dbzinit() by Sang-yong Suh (May, 1998)
*/
#include "config.h"
#include "clibrary.h"
#include <ctype.h>
#include <errno.h>
#include <fcntl.h>
#include <netinet/in.h>
#include <sys/mman.h>
#include <sys/stat.h>
#include <sys/time.h>
#include "dbz.h"
#include "inn/messages.h"
#include "inn/innconf.h"
#include "inn/mmap.h"
#include "libinn.h"
/* Needed on AIX 4.1 to get fd_set and friends. */
#ifdef HAVE_SYS_SELECT_H
# include <sys/select.h>
#endif
/*
* "LIA" = "leave it alone unless you know what you're doing".
*
* DBZTEST Generate a standalone program for testing and benchmarking
* DEFSIZE default table size (not as critical as in old dbz)
* NMEMORY number of days of memory for use in sizing new table (LIA)
* MAXRUN length of run which shifts to next table (see below) (LIA)
*/
static int dbzversion = 6; /* for validating .dir file format */
#ifdef DO_TAGGED_HASH
/* assume that for tagged hash, we don't want more than 4byte of_t even if
* off_t is 8 bytes -- people who use tagged-hash are usually short on
* RAM.
*/
#define of_t long
#else
#define of_t off_t
#endif
#define SOF (sizeof(of_t))
#define NOTFOUND ((of_t)-1)
#ifdef DO_TAGGED_HASH
#define OVERFLOW
#ifdef OVERFLOW
#include <limits.h>
#endif
/* MAXDROPBITS is the maximum number of bits dropped from the offset value.
The least significant bits are dropped. The space is used to
store hash additional bits, thereby increasing the possibility of the
hash detection */
#define MAXDROPBITS 4 /* max # of bits to drop from the offset */
/* MAXFUZZYLENGTH is the maximum in the offset value due to the MAXDROPBITS */
#define MAXFUZZYLENGTH ((1 << MAXDROPBITS) - 1)
/*
* We assume that unused areas of a binary file are zeros, and that the
* bit pattern of `(of_t)0' is all zeros. The alternative is rather
* painful file initialization. Note that okayvalue(), if OVERFLOW is
* defined, knows what value of an offset would cause overflow.
*/
#define VACANT ((of_t)0)
#define BIAS(o) ((o)+1) /* make any valid of_t non-VACANT */
#define UNBIAS(o) ((o)-1) /* reverse BIAS() effect */
#define HASTAG(o) ((o)&taghere)
#define TAG(o) ((o)&tagbits)
#define NOTAG(o) ((o)&~tagboth)
#define CANTAG(o) (((o)&tagboth) == 0)
#define MKTAG(v) (((v)<<conf.tagshift)&tagbits)
#ifndef NOTAGS
#define TAGENB 0x80 /* tag enable is top bit, tag is next 7 */
#define TAGMASK 0x7f
#define TAGSHIFT 24
#else
#define TAGENB 0 /* no tags */
#define TAGMASK 0
#define TAGSHIFT 0
#endif
/*
* Stdio buffer for base-file reads. Message-IDs (all news ever needs to
* read) are essentially never longer than 64 bytes, and the typical stdio
* buffer is so much larger that it is much more expensive to fill.
*/
static of_t tagbits; /* pre-shifted tag mask */
static of_t taghere; /* pre-shifted tag-enable bit */
static of_t tagboth; /* tagbits|taghere */
static int canttag_warned; /* flag to control can't tag warning */
#endif /* DO_TAGGED_HASH */
/* Old dbz used a long as the record type for dbz entries, which became
* really gross in places because of mixed references. We define these to
* make it a bit easier if we want to store more in here.
*/
/* A new, from-scratch database, not built as a rebuild of an old one, needs
* to know table size. Normally the user supplies this info, but there have
* to be defaults. Making this too small can have devestating effects on
* history speed for the current history implementation whereas making it too
* big just wastes disk space, so err on the side of caution. This may still
* be a bit too small. Assume people using tagged hash are running somewhat
* smaller servers.
*/
#ifndef DEFSIZE
#ifdef DO_TAGGED_HASH
#define DEFSIZE 1000003 /* I need a prime number */
#else
#define DEFSIZE 10000000
#endif
#endif /* DEFSIZE */
/*
* We read configuration info from the .dir file into this structure,
* so we can avoid wired-in assumptions for an existing database.
*
* Among the info is a record of recent peak usages, so that a new table
* size can be chosen intelligently when rebuilding. 10 is a good
* number of usages to keep, since news displays marked fluctuations
* in volume on a 7-day cycle.
*/
#ifndef NMEMORY
#define NMEMORY 10 /* # days of use info to remember */
#endif
#define NUSEDS (1+NMEMORY)
typedef struct {
long tsize; /* table size */
long used[NUSEDS]; /* entries used today, yesterday, ... */
long vused[NUSEDS]; /* ditto for text size */
int valuesize; /* size of table values, == sizeof(dbzrec) */
int fillpercent; /* fillpercent/100 is the percent full we'll
try to keep the .pag file */
of_t tagenb; /* unshifted tag-enable bit */
of_t tagmask; /* unshifted tag mask */
int tagshift; /* shift count for tagmask and tagenb */
int dropbits; /* number of bits to discard from offset */
int lenfuzzy; /* num of fuzzy characters in offset */
} dbzconfig;
static dbzconfig conf;
/*
* Default dbzoptions to
*/
static dbzoptions options = {
false, /* write through off */
INCORE_NO, /* index/pag from disk */
#ifdef HAVE_MMAP
INCORE_MMAP, /* exists mmap'ed. ignored in tagged hash mode */
#else
INCORE_NO, /* exists from disk. ignored in tagged hash mode */
#endif
true /* non-blocking writes */
};
/*
* Data structure for recording info about searches.
*/
typedef struct {
of_t place; /* current location in file */
int tabno; /* which table we're in */
int run; /* how long we'll stay in this table */
# ifndef MAXRUN
# define MAXRUN 100
# endif
HASH hash; /* the key's hash code */
unsigned long shorthash; /* integer version of the hash, used for
determining the entries location.
Tagged_hash stores the 31-bit hash here */
of_t tag; /* tag we are looking for */
int aborted; /* has i/o error aborted search? */
} searcher;
#define FRESH ((searcher *)NULL)
/*
* Arguably the searcher struct for a given routine ought to be local to
* it, but a fetch() is very often immediately followed by a store(), and
* in some circumstances it is a useful performance win to remember where
* the fetch() completed. So we use a global struct and remember whether
* it is current.
*/
static searcher srch;
static searcher *prevp; /* &srch or FRESH */
/* Structure for hash tables */
typedef struct {
int fd; /* Non-blocking descriptor for writes */
off_t pos; /* Current offset into the table */
int reclen; /* Length of records in the table */
dbz_incore_val incore; /* What we're using core for */
void *core; /* Pointer to in-core table */
} hash_table;
/* central data structures */
static bool opendb = false; /* Indicates if a database is currently open */
static FILE *dirf; /* descriptor for .dir file */
static bool readonly; /* database open read-only? */
#ifdef DO_TAGGED_HASH
static FILE *basef; /* descriptor for base file */
static char *basefname; /* name for not-yet-opened base file */
static hash_table pagtab; /* pag hash table, stores hash + offset */
#else
static hash_table idxtab; /* index hash table, used for data retrieval */
static hash_table etab; /* existance hash table, used for existance checks */
#endif
static bool dirty; /* has a store() been done? */
static erec empty_rec; /* empty rec to compare against
initalized in dbzinit */
/* misc. forwards */
static bool getcore(hash_table *tab);
static bool putcore(hash_table *tab);
static bool getconf(FILE *df, dbzconfig *cp);
static int putconf(FILE *f, dbzconfig *cp);
static void start(searcher *sp, const HASH hash, searcher *osp);
#ifdef DO_TAGGED_HASH
static of_t search(searcher *sp);
static bool set_pag(searcher *sp, of_t value);
#else
static bool search(searcher *sp);
#endif
static bool set(searcher *sp, hash_table *tab, void *value);
/* file-naming stuff */
static char dir[] = ".dir";
#ifdef DO_TAGGED_HASH
static char pag[] = ".pag";
#else
static char idx[] = ".index";
static char exists[] = ".hash";
#endif
int dbzneedfilecount(void) {
#ifdef DO_TAGGED_HASH
return 2; /* basef and dirf are fopen()'ed and kept */
#else
return 1; /* dirf is fopen()'ed and kept */
#endif
}
#ifdef DO_TAGGED_HASH
/*
- dbzconfbase - reconfigure dbzconf from base file size.
*/
static void
config_by_text_size(dbzconfig *c, of_t basesize)
{
int i;
unsigned long m;
/* if no tag requested, just return. */
if ((c->tagmask | c->tagenb) == 0)
return;
/* Use 10 % larger base file size. Sometimes the offset overflows */
basesize += basesize / 10;
/* calculate tagging from old file */
for (m = 1, i = 0; m < (unsigned long)basesize; i++, m <<= 1)
continue;
/* if we had more tags than the default, use the new data */
c->dropbits = 0;
while (m > (1 << TAGSHIFT)) {
if (c->dropbits >= MAXDROPBITS)
break;
c->dropbits++;
m >>= 1;
i--;
}
c->tagenb = TAGENB;
c->tagmask = TAGMASK;
c->tagshift = TAGSHIFT;
if ((c->tagmask | c->tagenb) && m > (1 << TAGSHIFT)) {
c->tagshift = i;
c->tagmask = (~(unsigned long)0) >> (i + 1);
c->tagenb = (c->tagmask << 1) & ~c->tagmask;
}
c->lenfuzzy = (int)(1 << c->dropbits) - 1;
m = (c->tagmask | c->tagenb) << c->tagshift;
if (m & (basesize >> c->dropbits)) {
fprintf(stderr, "m 0x%lx size 0x%lx\n", m, basesize);
exit(1);
}
}
#endif /* DO_TAGGED_HASH */
/*
- create and truncate .pag, .idx, or .hash files
- return false on error
*/
static bool
create_truncate(const char *name, const char *pag1)
{
char *fn;
FILE *f;
fn = concat(name, pag1, (char *) 0);
f = Fopen(fn, "w", TEMPORARYOPEN);
free(fn);
if (f == NULL) {
syswarn("unable to create/truncate %s", pag1);
return false;
} else
Fclose(f);
return true;
}
/* dbzfresh - set up a new database, no historical info
* Return true for success, false for failure
* name - base name; .dir and .pag must exist
* size - table size (0 means default)
*/
bool
dbzfresh(const char *name, off_t size)
{
char *fn;
dbzconfig c;
FILE *f;
#ifdef DO_TAGGED_HASH
struct stat sb;
of_t m;
#endif
if (opendb) {
warn("dbzfresh: database already open");
return false;
}
if (size != 0 && size < 2) {
warn("dbzfresh: preposterous size (%ld)", (long) size);
return false;
}
/* get default configuration */
if (!getconf(NULL, &c))
return false; /* "can't happen" */
#ifdef DO_TAGGED_HASH
/* and mess with it as specified */
if (size != 0)
c.tsize = size;
m = c.tagmask;
c.tagshift = 0;
while (!(m & 1)) {
m >>= 1;
c.tagshift++;
}
c.tagmask = m;
c.tagenb = (m << 1) & ~m;
c.dropbits = 0;
c.lenfuzzy = 0;
/* if big enough basb file exists, update config */
if (stat(name, &sb) != -1)
config_by_text_size(&c, sb.st_size);
#else
/* set the size as specified, make sure we get at least 2 bytes
of implicit hash */
if (size != 0)
c.tsize = size > (64 * 1024) ? size : 64 * 1024;
#endif
/* write it out */
fn = concat(name, dir, (char *) 0);
f = Fopen(fn, "w", TEMPORARYOPEN);
free(fn);
if (f == NULL) {
syswarn("dbzfresh: unable to write config");
return false;
}
if (putconf(f, &c) < 0) {
Fclose(f);
return false;
}
if (Fclose(f) == EOF) {
syswarn("dbzfresh: fclose failure");
return false;
}
/* create and truncate .pag, or .index/.hash files */
#ifdef DO_TAGGED_HASH
if (!create_truncate(name, pag))
return false;
#else
if (!create_truncate(name, idx))
return false;
if (!create_truncate(name, exists))
return false;
#endif /* DO_TAGGED_HASH */
/* and punt to dbzinit for the hard work */
return dbzinit(name);
}
#ifdef DO_TAGGED_HASH
/*
- isprime - is a number prime?
*/
static bool
isprime(long x)
{
static int quick[] = {2, 3, 5, 7, 11, 13, 17, 19, 23, 29, 31, 37, 0 };
int *ip;
long div1, stop;
/* hit the first few primes quickly to eliminate easy ones */
/* this incidentally prevents ridiculously small tables */
for (ip = quick; (div1 = *ip) != 0; ip++)
if (x % div1 == 0) {
debug("isprime: quick result on %ld", x);
return false;
}
/* approximate square root of x */
for (stop = x; x/stop < stop; stop >>= 1)
continue;
stop <<= 1;
/* try odd numbers up to stop */
for (div1 = *--ip; div1 < stop; div1 += 2)
if (x%div1 == 0)
return false;
return true;
}
#endif
/*
* dbzsize - what's a good table size to hold this many entries?
* contents - size of table (0 means return the default)
*/
long
dbzsize(off_t contents)
{
of_t n;
if (contents <= 0) { /* foulup or default inquiry */
debug("dbzsize: preposterous input (%ld)", (long) contents);
return DEFSIZE;
}
if ((conf.fillpercent > 0) && (conf.fillpercent < 100))
n = (contents / conf.fillpercent) * 100;
else
n = (contents * 3) / 2; /* try to keep table at most 2/3's full */
/* Make sure that we get at least 2 bytes of implicit hash */
if (n < (64 * 1024))
n = 64 * 1024;
#ifdef DO_TAGGED_HASH
if (!(n & 1))
n += 1; /* make it odd */
debug("dbzsize: tentative size %ld", n);
while (!isprime(n)) /* look for a prime */
n += 2;
#endif
debug("dbzsize: final size %ld", (long) n);
return n;
}
/* dbzagain - set up a new database to be a rebuild of an old one
* Returns true on success, false on failure
* name - base name; .dir and .pag must exist
* oldname - basename, all must exist
*/
bool
dbzagain(const char *name, const char *oldname)
{
char *fn;
dbzconfig c;
bool result;
int i;
long top;
FILE *f;
int newtable;
of_t newsize;
#ifdef DO_TAGGED_HASH
long vtop;
struct stat sb;
#endif
if (opendb) {
warn("dbzagain: database already open");
return false;
}
/* pick up the old configuration */
fn = concat(oldname, dir, (char *) 0);
f = Fopen(fn, "r", TEMPORARYOPEN);
free(fn);
if (f == NULL) {
syswarn("dbzagain: cannot open old .dir file");
return false;
}
result = getconf(f, &c);
Fclose(f);
if (!result) {
syswarn("dbzagain: getconf failed");
return false;
}
/* tinker with it */
top = 0;
newtable = 0;
for (i = 0; i < NUSEDS; i++) {
if (top < c.used[i])
top = c.used[i];
if (c.used[i] == 0)
newtable = 1; /* hasn't got full usage history yet */
}
if (top == 0) {
debug("dbzagain: old table has no contents!");
newtable = 1;
}
for (i = NUSEDS-1; i > 0; i--)
c.used[i] = c.used[i-1];
c.used[0] = 0;
#ifdef DO_TAGGED_HASH
vtop = 0;
for (i = 0; i < NUSEDS; i++) {
if (vtop < c.vused[i])
vtop = c.vused[i];
if (c.vused[i] == 0)
newtable = 1; /* hasn't got full usage history yet */
}
if (top != 0 && vtop == 0) {
debug("dbzagain: old table has no contents!");
newtable = 1;
}
for (i = NUSEDS-1; i > 0; i--)
c.vused[i] = c.vused[i-1];
c.vused[0] = 0;
/* calculate tagging from old file */
if (stat(oldname, &sb) != -1 && vtop < sb.st_size)
vtop = sb.st_size;
config_by_text_size(&c, vtop);
#endif
newsize = dbzsize(top);
if (!newtable || newsize > c.tsize) /* don't shrink new table */
c.tsize = newsize;
/* write it out */
fn = concat(name, dir, (char *) 0);
f = Fopen(fn, "w", TEMPORARYOPEN);
free(fn);
if (f == NULL) {
syswarn("dbzagain: unable to write new .dir");
return false;
}
i = putconf(f, &c);
Fclose(f);
if (i < 0) {
warn("dbzagain: putconf failed");
return false;
}
/* create and truncate .pag, or .index/.hash files */
#ifdef DO_TAGGED_HASH
if (!create_truncate(name, pag))
return false;
#else
if (!create_truncate(name, idx))
return false;
if (!create_truncate(name, exists))
return false;
#endif
/* and let dbzinit do the work */
return dbzinit(name);
}
static bool
openhashtable(const char *base, const char *ext, hash_table *tab,
const size_t reclen, const dbz_incore_val incore)
{
char *name;
int oerrno;
name = concat(base, ext, (char *) 0);
if ((tab->fd = open(name, readonly ? O_RDONLY : O_RDWR)) < 0) {
syswarn("openhashtable: could not open raw");
oerrno = errno;
free(name);
errno = oerrno;
return false;
}
free(name);
tab->reclen = reclen;
close_on_exec(tab->fd, true);
tab->pos = -1;
/* get first table into core, if it looks desirable and feasible */
tab->incore = incore;
if (tab->incore != INCORE_NO) {
if (!getcore(tab)) {
syswarn("openhashtable: getcore failure");
oerrno = errno;
close(tab->fd);
errno = oerrno;
return false;
}
}
if (options.nonblock && nonblocking(tab->fd, true) < 0) {
syswarn("fcntl: could not set nonblock");
oerrno = errno;
close(tab->fd);
errno = oerrno;
return false;
}
return true;
}
static void closehashtable(hash_table *tab) {
close(tab->fd);
if (tab->incore == INCORE_MEM)
free(tab->core);
if (tab->incore == INCORE_MMAP) {
#if defined(HAVE_MMAP)
if (munmap(tab->core, conf.tsize * tab->reclen) == -1) {
syswarn("closehashtable: munmap failed");
}
#else
warn("closehashtable: can't mmap files");
#endif
}
}
#ifdef DO_TAGGED_HASH
static bool
openbasefile(const char *name)
{
basef = Fopen(name, "r", DBZ_BASE);
if (basef == NULL) {
syswarn("dbzinit: basefile open failed");
basefname = xstrdup(name);
} else
basefname = NULL;
if (basef != NULL)
close_on_exec(fileno(basef), true);
if (basef != NULL)
setvbuf(basef, NULL, _IOFBF, 64);
return true;
}
#endif /* DO_TAGGED_HASH */
/*
* dbzinit - open a database, creating it (using defaults) if necessary
*
* We try to leave errno set plausibly, to the extent that underlying
* functions permit this, since many people consult it if dbzinit() fails.
* return true for success, false for failure
*/
bool
dbzinit(const char *name)
{
char *fname;
if (opendb) {
warn("dbzinit: dbzinit already called once");
errno = 0;
return false;
}
/* open the .dir file */
fname = concat(name, dir, (char *) 0);
if ((dirf = Fopen(fname, "r+", DBZ_DIR)) == NULL) {
dirf = Fopen(fname, "r", DBZ_DIR);
readonly = true;
} else
readonly = false;
free(fname);
if (dirf == NULL) {
syswarn("dbzinit: can't open .dir file");
return false;
}
close_on_exec(fileno(dirf), true);
/* pick up configuration */
if (!getconf(dirf, &conf)) {
warn("dbzinit: getconf failure");
Fclose(dirf);
errno = EDOM; /* kind of a kludge, but very portable */
return false;
}
/* open pag or idx/exists file */
#ifdef DO_TAGGED_HASH
if (!openhashtable(name, pag, &pagtab, SOF, options.pag_incore)) {
Fclose(dirf);
return false;
}
if (!openbasefile(name)) {
close(pagtab.fd);
Fclose(dirf);
return false;
}
tagbits = conf.tagmask << conf.tagshift;
taghere = conf.tagenb << conf.tagshift;
tagboth = tagbits | taghere;
canttag_warned = 0;
#else
if (!openhashtable(name, idx, &idxtab, sizeof(of_t), options.pag_incore)) {
Fclose(dirf);
return false;
}
if (!openhashtable(name, exists, &etab, sizeof(erec),
options.exists_incore)) {
Fclose(dirf);
return false;
}
#endif
/* misc. setup */
dirty = false;
opendb = true;
prevp = FRESH;
memset(&empty_rec, '\0', sizeof(empty_rec));
debug("dbzinit: succeeded");
return true;
}
/* dbzclose - close a database
*/
bool
dbzclose(void)
{
bool ret = true;
if (!opendb) {
warn("dbzclose: not opened!");
return false;
}
if (!dbzsync())
ret = false;
#ifdef DO_TAGGED_HASH
closehashtable(&pagtab);
if (Fclose(basef) == EOF) {
syswarn("dbzclose: fclose(basef) failed");
ret = false;
}
if (basefname != NULL)
free(basefname);
basef = NULL;
#else
closehashtable(&idxtab);
closehashtable(&etab);
#endif
if (Fclose(dirf) == EOF) {
syswarn("dbzclose: fclose(dirf) failed");
ret = false;
}
debug("dbzclose: %s", (ret == true) ? "succeeded" : "failed");
if (ret)
opendb = false;
return ret;
}
/* dbzsync - push all in-core data out to disk
*/
bool
dbzsync(void)
{
bool ret = true;
if (!opendb) {
warn("dbzsync: not opened!");
return false;
}
if (!dirty)
return true;;
#ifdef DO_TAGGED_HASH
if (!putcore(&pagtab)) {
#else
if (!putcore(&idxtab) || !putcore(&etab)) {
#endif
warn("dbzsync: putcore failed");
ret = false;
}
if (putconf(dirf, &conf) < 0)
ret = false;
debug("dbzsync: %s", ret ? "succeeded" : "failed");
return ret;
}
#ifdef DO_TAGGED_HASH
/*
- okayvalue - check that a value can be stored
*/
static int
okayvalue(of_t value)
{
if (HASTAG(value))
return(0);
#ifdef OVERFLOW
if (value == LONG_MAX) /* BIAS() and UNBIAS() will overflow */
return(0);
#endif
return(1);
}
#endif
/* dbzexists - check if the given message-id is in the database */
bool
dbzexists(const HASH key)
{
#ifdef DO_TAGGED_HASH
off_t value;
return (dbzfetch(key, &value) != 0);
#else
if (!opendb) {
warn("dbzexists: database not open!");
return false;
}
prevp = FRESH;
start(&srch, key, FRESH);
return search(&srch);
#endif
}
/*
* dbzfetch - get offset of an entry from the database
*
* Returns the offset of the text file for input key,
* or -1 if NOTFOUND or error occurs.
*/
bool
dbzfetch(const HASH key, off_t *value)
{
#ifdef DO_TAGGED_HASH
#define MAX_NB2RD (DBZMAXKEY + MAXFUZZYLENGTH + 2)
#define MIN_KEY_LENGTH 6 /* strlen("<1@a>") + strlen("\t") */
char *bp, buffer[MAX_NB2RD];
int keylen, j, nb2r;
HASH hishash;
char *keytext = NULL;
of_t offset = NOTFOUND;
#endif
prevp = FRESH;
if (!opendb) {
warn("dbzfetch: database not open!");
return false;
}
start(&srch, key, FRESH);
#ifdef DO_TAGGED_HASH
/*
* nb2r: number of bytes to read from history file.
* It can be reduced if history text is written as hashes only.
*/
nb2r = sizeof(buffer) - 1;
while ((offset = search(&srch)) != NOTFOUND) {
debug("got 0x%lx", key_ptr);
/* fetch the key */
offset <<= conf.dropbits;
if (offset) /* backspace 1 character to read '\n' */
offset--;
if (fseeko(basef, offset, SEEK_SET) != 0) {
syswarn("dbzfetch: seek failed");
return false;
}
keylen = fread(buffer, 1, nb2r, basef);
if (keylen < MIN_KEY_LENGTH) {
syswarn("dbzfetch: read failed");
return false;
}
buffer[keylen] = '\0'; /* terminate the string */
if (offset) { /* find the '\n', the previous EOL */
if (keylen > conf.lenfuzzy)
keylen = conf.lenfuzzy; /* keylen is fuzzy distance now */
for (j=0,bp=buffer; j<keylen; j++,bp++)
if (*bp == '\n')
break;
if (*bp != '\n') {
debug("dbzfetch: can't locate EOL");
/* pag entry should be deleted, but I'm lazy... */
continue;
}
offset++;
bp++; /* now *bp is the start of key */
} else {
j = 0; /* We are looking for the first history line. */
bp = buffer;
}
/* Does this history line really have same key? */
if (*bp == '[') {
if (!keytext)
keytext = HashToText(key);
if (memcmp(keytext, bp+1, sizeof(HASH)*2) != 0)
continue;
} else if (*bp == '<') {
char *p = strchr(bp+1, '\t');
if (!p) /* history has a corrupted line */
continue;
*p = '\0';
hishash = HashMessageID(bp);
if (memcmp(&key, &hishash, sizeof(HASH)) != 0)
continue;
} else
continue;
/* we found it */
offset += j;
debug("fetch: successful");
*value = offset;
return true;
}
/* we didn't find it */
debug("fetch: failed");
prevp = &srch; /* remember where we stopped */
return false;
#else /* DO_TAGGED_HASH */
if (search(&srch) == true) {
/* Actually get the data now */
if ((options.pag_incore != INCORE_NO) && (srch.place < conf.tsize)) {
memcpy(value, &((of_t *)idxtab.core)[srch.place], sizeof(of_t));
} else {
if (pread(idxtab.fd, value, sizeof(of_t), srch.place * idxtab.reclen) != sizeof(of_t)) {
syswarn("fetch: read failed");
idxtab.pos = -1;
srch.aborted = 1;
return false;
}
}
debug("fetch: successful");
return true;
}
/* we didn't find it */
debug("fetch: failed");
prevp = &srch; /* remember where we stopped */
return false;
#endif
}
/*
* dbzstore - add an entry to the database
* returns true for success and false for failure
*/
DBZSTORE_RESULT
dbzstore(const HASH key, off_t data)
{
#ifdef DO_TAGGED_HASH
of_t value;
#else
erec evalue;
#endif
if (!opendb) {
warn("dbzstore: database not open!");
return DBZSTORE_ERROR;
}
if (readonly) {
warn("dbzstore: database open read-only");
return DBZSTORE_ERROR;
}
#ifdef DO_TAGGED_HASH
/* copy the value in to ensure alignment */
memcpy(&value, &data, SOF);
/* update maximum offset value if necessary */
if (value > conf.vused[0])
conf.vused[0] = value;
/* now value is in fuzzy format */
value >>= conf.dropbits;
debug("dbzstore: (%ld)", (long) value);
if (!okayvalue(value)) {
warn("dbzstore: reserved bit or overflow in 0x%lx", value);
return DBZSTORE_ERROR;
}
/* find the place, exploiting previous search if possible */
start(&srch, key, prevp);
while (search(&srch) != NOTFOUND)
continue;
prevp = FRESH;
conf.used[0]++;
debug("store: used count %ld", conf.used[0]);
dirty = 1;
if (!set_pag(&srch, value))
return DBZSTORE_ERROR;
return DBZSTORE_OK;
#else /* DO_TAGGED_HASH */
/* find the place, exploiting previous search if possible */
start(&srch, key, prevp);
if (search(&srch) == true)
return DBZSTORE_EXISTS;
prevp = FRESH;
conf.used[0]++;
debug("store: used count %ld", conf.used[0]);
dirty = true;
memcpy(&evalue.hash, &srch.hash,
sizeof(evalue.hash) < sizeof(srch.hash) ? sizeof(evalue.hash) : sizeof(srch.hash));
/* Set the value in the index first since we don't care if it's out of date */
if (!set(&srch, &idxtab, (void *)&data))
return DBZSTORE_ERROR;
if (!set(&srch, &etab, &evalue))
return DBZSTORE_ERROR;
return DBZSTORE_OK;
#endif /* DO_TAGGED_HASH */
}
/*
* getconf - get configuration from .dir file
* df - NULL means just give me the default
* pf - NULL means don't care about .pag
* returns true for success, false for failure
*/
static bool
getconf(FILE *df, dbzconfig *cp)
{
int i;
/* empty file, no configuration known */
#ifdef DO_TAGGED_HASH
if (df == NULL) {
cp->tsize = DEFSIZE;
for (i = 0; i < NUSEDS; i++)
cp->used[i] = 0;
for (i = 0; i < NUSEDS; i++)
cp->vused[i] = 0;
cp->valuesize = sizeof(of_t);
cp->fillpercent = 50;
cp->tagenb = TAGENB;
cp->tagmask = TAGMASK;
cp->tagshift = TAGSHIFT;
cp->dropbits = 0;
cp->lenfuzzy = 0;
debug("getconf: defaults (%ld, %c, (0x%lx/0x%lx<<%d %d))",
cp->tsize, cp->casemap, cp->tagenb,
cp->tagmask, cp->tagshift, cp->dropbits);
return true;
}
i = fscanf(df, "dbz 6 %ld %d %d %ld %ld %d %d\n", &cp->tsize,
&cp->valuesize, &cp->fillpercent, &cp->tagenb,
&cp->tagmask, &cp->tagshift, &cp->dropbits);
if (i != 7) {
warn("dbz: bad first line in config");
return false;
}
if (cp->valuesize != sizeof(of_t)) {
warn("dbz: wrong of_t size (%d)", cp->valuesize);
return false;
}
cp->lenfuzzy = (int)(1 << cp->dropbits) - 1;
#else /* DO_TAGGED_HASH */
if (df == NULL) {
cp->tsize = DEFSIZE;
for (i = 0; i < NUSEDS; i++)
cp->used[i] = 0;
cp->valuesize = sizeof(of_t) + sizeof(erec);
cp->fillpercent = 66;
debug("getconf: defaults (%ld)", cp->tsize);
return true;
}
i = fscanf(df, "dbz 6 %ld %d %d\n", &cp->tsize,
&cp->valuesize, &cp->fillpercent);
if (i != 3) {
warn("dbz: bad first line in config");
return false;
}
if (cp->valuesize != (sizeof(of_t) + sizeof(erec))) {
warn("dbz: wrong of_t size (%d)", cp->valuesize);
return false;
}
#endif /* DO_TAGGED_HASH */
debug("size %ld", cp->tsize);
/* second line, the usages */
for (i = 0; i < NUSEDS; i++)
if (!fscanf(df, "%ld", &cp->used[i])) {
warn("dbz: bad usage value in config");
return false;
}
debug("used %ld %ld %ld...", cp->used[0], cp->used[1], cp->used[2]);
#ifdef DO_TAGGED_HASH
/* third line, the text usages */
for (i = 0; i < NUSEDS; i++)
if (!fscanf(df, "%ld", &cp->vused[i])) {
warn("dbz: bad text usage value in config");
return false;
}
debug("vused %ld %ld %ld...", cp->vused[0], cp->vused[1], cp->vused[2]);
#endif /* DO_TAGGED_HASH */
return true;
}
/* putconf - write configuration to .dir file
* Returns: 0 for success, -1 for failure
*/
static int
putconf(FILE *f, dbzconfig *cp)
{
int i;
int ret = 0;
if (fseeko(f, 0, SEEK_SET) != 0) {
syswarn("dbz: fseeko failure in putconf");
ret = -1;
}
#ifdef DO_TAGGED_HASH
fprintf(f, "dbz %d %ld %d %d %ld %ld %d %d\n", dbzversion, cp->tsize,
cp->valuesize, cp->fillpercent, cp->tagenb,
cp->tagmask, cp->tagshift, cp->dropbits);
#else /* DO_TAGGED_HASH */
fprintf(f, "dbz %d %ld %d %d\n", dbzversion, cp->tsize,
cp->valuesize, cp->fillpercent);
#endif /* DO_TAGGED_HASH */
for (i = 0; i < NUSEDS; i++)
fprintf(f, "%ld%c", cp->used[i], (i < NUSEDS-1) ? ' ' : '\n');
#ifdef DO_TAGGED_HASH
for (i = 0; i < NUSEDS; i++)
fprintf(f, "%ld%c", cp->vused[i], (i < NUSEDS-1) ? ' ' : '\n');
#endif
fflush(f);
if (ferror(f))
ret = -1;
debug("putconf status %d", ret);
return ret;
}
/* getcore - try to set up an in-core copy of file
*
* Returns: pointer to copy of file or NULL on errror
*/
static bool
getcore(hash_table *tab)
{
char *it;
ssize_t nread;
size_t i;
struct stat st;
size_t length = conf.tsize * tab->reclen;
if (tab->incore == INCORE_MMAP) {
#if defined(HAVE_MMAP)
if (fstat(tab->fd, &st) == -1) {
syswarn("dbz: getcore: fstat failed");
return false;
}
if (length > st.st_size) {
/* file too small; extend it */
if (ftruncate(tab->fd, length) == -1) {
syswarn("dbz: getcore: ftruncate failed");
return false;
}
}
it = mmap(NULL, length, readonly ? PROT_READ : PROT_WRITE | PROT_READ,
MAP_SHARED, tab->fd, 0);
if (it == (char *)-1) {
syswarn("dbz: getcore: mmap failed");
return false;
}
#if defined (MADV_RANDOM) && defined(HAVE_MADVISE)
/* not present in all versions of mmap() */
madvise(it, length, MADV_RANDOM);
#endif
#else
warn("dbz: getcore: can't mmap files");
return false;
#endif
} else {
it = xmalloc(length);
nread = read(tab->fd, it, length);
if (nread < 0) {
syswarn("dbz: getcore: read failed");
free(it);
return false;
}
i = length - nread;
memset(it + nread, '\0', i);
}
tab->core = it;
return true;
}
/* putcore - try to rewrite an in-core table
*
* Returns true on success, false on failure
*/
static bool
putcore(hash_table *tab)
{
size_t size;
ssize_t result;
if (tab->incore == INCORE_MEM) {
if(options.writethrough)
return true;
nonblocking(tab->fd, false);
size = tab->reclen * conf.tsize;
result = xpwrite(tab->fd, tab->core, size, 0);
if (result < 0 || (size_t) result != size) {
nonblocking(tab->fd, options.nonblock);
return false;
}
nonblocking(tab->fd, options.nonblock);
}
#ifdef HAVE_MMAP
if(tab->incore == INCORE_MMAP) {
msync(tab->core, conf.tsize * tab->reclen, MS_ASYNC);
}
#endif
return true;
}
#ifdef DO_TAGGED_HASH
/*
- makehash31 : make 31-bit hash from HASH
*/
static unsigned int
makehash31(const HASH *hash)
{
unsigned int h;
memcpy(&h, hash, sizeof(h));
return (h >> 1);
}
#endif
/* start - set up to start or restart a search
* osp == NULL is acceptable
*/
static void
start(searcher *sp, const HASH hash, searcher *osp)
{
#ifdef DO_TAGGED_HASH
unsigned int h;
h = makehash31(&hash);
if (osp != FRESH && osp->shorthash == h) {
if (sp != osp)
*sp = *osp;
sp->run--;
debug("search restarted");
} else {
sp->shorthash = h;
sp->tag = MKTAG(h / conf.tsize);
sp->place = h % conf.tsize;
debug("hash %8.8lx tag %8.8lx place %ld",
sp->shorthash, sp->tag, sp->place);
sp->tabno = 0;
sp->run = -1;
sp->aborted = 0;
}
#else /* DO_TAGGED_HASH */
int tocopy;
if (osp != FRESH && !memcmp(&osp->hash, &hash, sizeof(hash))) {
if (sp != osp)
*sp = *osp;
sp->run--;
debug("search restarted");
} else {
sp->hash = hash;
tocopy = sizeof(hash) < sizeof(sp->shorthash) ? sizeof(hash) : sizeof(sp->shorthash);
/* Copy the bottom half of thhe hash into sp->shorthash */
memcpy(&sp->shorthash, (const char *)&hash + (sizeof(hash) - tocopy),
tocopy);
sp->shorthash >>= 1;
sp->tabno = 0;
sp->run = -1;
sp->aborted = 0;
}
#endif /* DO_TAGGED_HASH */
}
#ifdef DO_TAGGED_HASH
/*
- search - conduct part of a search
*/
static of_t /* NOTFOUND if we hit VACANT or error */
search(searcher *sp)
{
of_t value;
unsigned long taboffset = sp->tabno * conf.tsize;
if (sp->aborted)
return(NOTFOUND);
for (;;) {
/* go to next location */
if (sp->run++ == MAXRUN) {
sp->tabno++;
sp->run = 0;
taboffset = sp->tabno * conf.tsize;
}
sp->place = ((sp->shorthash + sp->run) % conf.tsize) + taboffset;
debug("search @ %ld", place);
/* get the tagged value */
if ((options.pag_incore != INCORE_NO) && (sp->place < conf.tsize)) {
debug("search: in core");
value = ((of_t *)pagtab.core)[sp->place];
} else {
off_t dest;
dest = sp->place * SOF;
/* read it */
errno = 0;
if (pread(pagtab.fd, &value, sizeof(value), dest) != sizeof(value)) {
if (errno != 0) {
syswarn("dbz: search: read failed");
pagtab.pos = -1;
sp->aborted = 1;
return(NOTFOUND);
} else
value = VACANT;
pagtab.pos = -1;
} else
pagtab.pos += sizeof(value);
}
/* vacant slot is always cause to return */
if (value == VACANT) {
debug("search: empty slot");
return(NOTFOUND);
};
/* check the tag */
value = UNBIAS(value);
debug("got 0x%lx", value);
if (!HASTAG(value)) {
debug("tagless");
return(value);
} else if (TAG(value) == sp->tag) {
debug("match");
return(NOTAG(value));
} else {
debug("mismatch 0x%lx", TAG(value));
}
}
/* NOTREACHED */
}
#else /* DO_TAGGED_HASH */
/* search - conduct part of a search
*
* return false if we hit vacant rec's or error
*/
static bool
search(searcher *sp)
{
erec value;
unsigned long taboffset = 0;
if (sp->aborted)
return false;
for (;;) {
/* go to next location */
if (sp->run++ == MAXRUN) {
sp->tabno++;
sp->run = 0;
taboffset = sp->tabno * conf.tsize;
}
sp->place = ((sp->shorthash + sp->run) % conf.tsize) + taboffset;
debug("search @ %ld", (long) sp->place);
/* get the value */
if ((options.exists_incore != INCORE_NO) && (sp->place < conf.tsize)) {
debug("search: in core");
memcpy(&value, &((erec *)etab.core)[sp->place], sizeof(erec));
} else {
off_t dest;
dest = sp->place * sizeof(erec);
/* read it */
errno = 0;
if (pread(etab.fd, &value, sizeof(erec), dest) != sizeof(erec)) {
if (errno != 0) {
debug("search: read failed");
etab.pos = -1;
sp->aborted = 1;
return false;
} else {
memset(&value, '\0', sizeof(erec));
}
}
/* and finish up */
etab.pos += sizeof(erec);
}
/* Check for an empty record */
if (!memcmp(&value, &empty_rec, sizeof(erec))) {
debug("search: empty slot");
return false;
}
/* check the value */
debug("got 0x%.*s", DBZ_INTERNAL_HASH_SIZE, value.hash);
if (!memcmp(&value.hash, &sp->hash, DBZ_INTERNAL_HASH_SIZE)) {
return true;
}
}
/* NOTREACHED */
}
#endif /* DO_TAGGED_HASH */
/* set - store a value into a location previously found by search
*
* Returns: true success, false failure
*/
static bool
set(searcher *sp, hash_table *tab, void *value)
{
off_t offset;
if (sp->aborted)
return false;
/* If we have the index file in memory, use it */
if ((tab->incore != INCORE_NO) && (sp->place < conf.tsize)) {
void *where = (char *)tab->core + (sp->place * tab->reclen);
memcpy(where, value, tab->reclen);
debug("set: incore");
if (tab->incore == INCORE_MMAP) {
if (innconf->nfswriter) {
inn_mapcntl(where, tab->reclen, MS_ASYNC);
}
return true;
}
if (!options.writethrough)
return true;
}
/* seek to spot */
tab->pos = -1; /* invalidate position memory */
offset = sp->place * tab->reclen;
/* write in data */
while (pwrite(tab->fd, value, tab->reclen, offset) != tab->reclen) {
if (errno == EAGAIN) {
fd_set writeset;
FD_ZERO(&writeset);
FD_SET(tab->fd, &writeset);
if (select(tab->fd + 1, NULL, &writeset, NULL, NULL) < 1) {
syswarn("dbz: set: select failed");
sp->aborted = 1;
return false;
}
continue;
}
syswarn("dbz: set: write failed");
sp->aborted = 1;
return false;
}
debug("set: succeeded");
return true;
}
#ifdef DO_TAGGED_HASH
/*
- set_pag - store a value into a location previously found by search
- on the pag table.
- Returns: true success, false failure
*/
static bool
set_pag(searcher *sp, of_t value)
{
of_t v = value;
if (CANTAG(v)) {
v |= sp->tag | taghere;
if (v != UNBIAS(VACANT)) /* BIAS(v) won't look VACANT */
#ifdef OVERFLOW
if (v != LONG_MAX) /* and it won't overflow */
#endif
value = v;
} else if (canttag_warned == 0) {
fprintf(stderr, "dbz.c(set): can't tag value 0x%lx", v);
fprintf(stderr, " tagboth = 0x%lx\n", tagboth);
canttag_warned = 1;
}
debug("tagged value is 0x%lx", value);
value = BIAS(value);
return set(sp, &pagtab, &value);
}
#endif /* DO_TAGGED_HASH */
/* dbzsetoptions - set runtime options for the database.
*/
void
dbzsetoptions(const dbzoptions o)
{
options = o;
#ifndef HAVE_MMAP
/* Without a working mmap on files, we should avoid it. */
if (options.pag_incore == INCORE_MMAP) options.pag_incore = INCORE_NO;
if (options.exists_incore == INCORE_MMAP) options.exists_incore = INCORE_NO;
#endif
}
/* dbzgetoptions - get runtime options for the database.
*/
void
dbzgetoptions(dbzoptions *o)
{
*o = options;
}
#ifdef DBZTEST
int
timediffms(struct timeval start, struct timeval end)
{
return (((end.tv_sec - start.tv_sec) * 1000) +
((end.tv_usec - start.tv_usec)) / 1000);
}
void
RemoveDBZ(char *filename)
{
char *fn;
#ifdef DO_TAGGED_HASH
fn = concat(filename, pag, (char *) 0);
unlink(fn);
free(fn);
#else
fn = concat(filename, exists, (char *) 0);
unlink(fn);
free(fn);
fn = concat(filename, idx, (char *) 0);
unlink(fn);
free(fn);
#endif
fn = concat(filename, dir, (char *) 0);
unlink(fn);
free(fn);
}
static void
usage(void)
{
fprintf(stderr, "usage: dbztest [-i] [-n|m] [-N] [-s size] <history>\n");
#ifdef DO_TAGGED_HASH
fprintf(stderr, " -i initialize history. deletes .pag files\n");
#else
fprintf(stderr, " -i initialize history. deletes .exists and .index files\n");
#endif
fprintf(stderr, " -n or m use INCORE_NO, INCORE_MMAP. default = INCORE_MEM\n");
fprintf(stderr, " -N using nfswriter mode\n");
fprintf(stderr, " -s size number of history lines[2500000]\n");
fprintf(stderr, " history history text file\n");
exit(1);
}
int
main(int argc, char *argv[])
{
int i, line;
FILE *fpi;
char ibuf[2048], *p;
HASH key;
off_t where;
int initialize = 0, size = 2500000;
char *history = NULL;
dbzoptions opt;
dbz_incore_val incore = INCORE_MEM;
struct timeval start, end;
off_t ivalue;
innconf = xcalloc(1, sizeof(struct innconf));
for (i=1; i<argc; i++)
if (strcmp(argv[i], "-i") == 0)
initialize = 1;
else if (strcmp(argv[i], "-n") == 0)
incore = INCORE_NO;
else if (strcmp(argv[i], "-N") == 0)
innconf->nfswriter = true;
else if (strcmp(argv[i], "-m") == 0)
#if defined(HAVE_MMAP)
incore = INCORE_MMAP;
#else
fprintf (stderr, "can't mmap files\n");
#endif
else if (strcmp(argv[i], "-s") == 0)
size = atoi(argv[++i]);
else if (*argv[i] != '-' && history == NULL)
history = argv[i];
else
usage();
if (history == NULL)
usage();
if ((fpi = fopen(history, "r")) == NULL) {
fprintf(stderr, "can't open %s\n", history);
usage();
}
dbzgetoptions(&opt);
opt.pag_incore = incore;
dbzsetoptions(opt);
if (initialize) {
RemoveDBZ(history);
gettimeofday(&start, NULL);
if (dbzfresh(history, dbzsize(size)) < 0) {
fprintf(stderr, "cant dbzfresh %s\n", history);
exit(1);
}
gettimeofday(&end, NULL);
printf("dbzfresh: %d msec\n", timediffms(start, end));
} else {
gettimeofday(&start, NULL);
if (dbzinit(history) < 0) {
fprintf(stderr, "cant dbzinit %s\n", history);
exit(1);
}
gettimeofday(&end, NULL);
printf("dbzinit: %d msec\n", timediffms(start, end));
}
gettimeofday(&start, NULL);
where = ftello(fpi);
for (line=1; fgets(ibuf, sizeof(ibuf), fpi); line++, where=ftello(fpi)) {
if (*ibuf == '<') {
if ((p = strchr(ibuf, '\t')) == NULL) {
fprintf(stderr, "ignoreing bad line: %s\n", ibuf);
continue;
}
*p = '\0';
key = HashMessageID(ibuf);
} else if (*ibuf == '[')
key = TextToHash(ibuf+1);
else
continue;
if (initialize) {
if (dbzstore(key, where) == DBZSTORE_ERROR) {
fprintf(stderr, "cant store %s\n", ibuf);
exit(1);
}
} else {
if (!dbzfetch(key, &ivalue)) {
fprintf(stderr, "line %d can't fetch %s\n", line, ibuf);
exit(1);
}
}
}
line--;
gettimeofday(&end, NULL);
i = timediffms(start, end);
printf("%s: %d lines %.3f msec/id\n",
(initialize) ? "dbzstore" : "dbzfetch",
line, (double)i / (double)line);
gettimeofday(&end, NULL);
dbzclose();
gettimeofday(&end, NULL);
printf("dbzclose: %d msec\n", timediffms(start, end));
return(0);
}
#endif /* DBZTEST */
|