store_rebuild.c
上传用户:liugui
上传日期:2007-01-04
资源大小:822k
文件大小:23k
- /*
- * $Id: store_rebuild.c,v 1.56 1999/01/24 02:26:25 wessels Exp $
- *
- * DEBUG: section 20 Store Rebuild Routines
- * AUTHOR: Duane Wessels
- *
- * SQUID Internet Object Cache http://squid.nlanr.net/Squid/
- * ----------------------------------------------------------
- *
- * Squid is the result of efforts by numerous individuals from the
- * Internet community. Development is led by Duane Wessels of the
- * National Laboratory for Applied Network Research and funded by the
- * National Science Foundation. Squid is Copyrighted (C) 1998 by
- * Duane Wessels and the University of California San Diego. Please
- * see the COPYRIGHT file for full details. Squid incorporates
- * software developed and/or copyrighted by other sources. Please see
- * the CREDITS file for full details.
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111, USA.
- *
- */
- #include "squid.h"
- #define STORE_META_BUFSZ 4096
- typedef struct _rebuild_dir rebuild_dir;
- typedef int RBHD(rebuild_dir * d);
- struct _rebuild_dir {
- int dirn;
- int n_read;
- FILE *log;
- int speed;
- int clean;
- int curlvl1;
- int curlvl2;
- int flag;
- int done;
- int in_dir;
- int fn;
- struct dirent *entry;
- DIR *td;
- RBHD *rebuild_func;
- rebuild_dir *next;
- char fullpath[SQUID_MAXPATHLEN];
- char fullfilename[SQUID_MAXPATHLEN];
- };
- struct storeRebuildState {
- rebuild_dir *rebuild_dir;
- int objcount; /* # objects successfully reloaded */
- int expcount; /* # objects expired */
- int linecount; /* # lines parsed from cache logfile */
- int statcount; /* # entries from directory walking */
- int clashcount; /* # swapfile clashes avoided */
- int dupcount; /* # duplicates purged */
- int cancelcount; /* # SWAP_LOG_DEL objects purged */
- int invalid; /* # bad lines */
- int badflags; /* # bad e->flags */
- int need_to_validate;
- int bad_log_op;
- int zero_object_sz;
- time_t start;
- time_t stop;
- } RebuildState;
- typedef struct valid_ctrl_t {
- struct stat *sb;
- StoreEntry *e;
- STVLDCB *callback;
- void *callback_data;
- } valid_ctrl_t;
- static RBHD storeRebuildFromDirectory;
- static RBHD storeRebuildFromSwapLog;
- static void storeRebuildComplete(void);
- static EVH storeRebuildADirectory;
- static int storeGetNextFile(rebuild_dir *, int *sfileno, int *size);
- static StoreEntry *storeAddDiskRestore(const cache_key * key,
- int file_number,
- size_t swap_file_sz,
- time_t expires,
- time_t timestamp,
- time_t lastref,
- time_t lastmod,
- u_num32 refcount,
- u_short flags,
- int clean);
- static AIOCB storeValidateComplete;
- static int
- storeRebuildFromDirectory(rebuild_dir * d)
- {
- LOCAL_ARRAY(char, hdr_buf, DISK_PAGE_SIZE);
- StoreEntry *e = NULL;
- StoreEntry tmpe;
- cache_key key[MD5_DIGEST_CHARS];
- int sfileno = 0;
- int count;
- int size;
- struct stat sb;
- int swap_hdr_len;
- int fd = -1;
- tlv *tlv_list;
- tlv *t;
- assert(d != NULL);
- debug(20, 3) ("storeRebuildFromDirectory: DIR #%dn", d->dirn);
- for (count = 0; count < d->speed; count++) {
- assert(fd == -1);
- fd = storeGetNextFile(d, &sfileno, &size);
- if (fd == -2) {
- debug(20, 1) ("storeRebuildFromDirectory: DIR #%d done!n", d->dirn);
- storeDirCloseTmpSwapLog(d->dirn);
- store_rebuilding = 0;
- return -1;
- } else if (fd < 0) {
- continue;
- }
- assert(fd > -1);
- /* lets get file stats here */
- if (fstat(fd, &sb) < 0) {
- debug(20, 1) ("storeRebuildFromDirectory: fstat(FD %d): %sn",
- fd, xstrerror());
- file_close(fd);
- store_open_disk_fd--;
- fd = -1;
- continue;
- }
- if ((++RebuildState.statcount & 0xFFFF) == 0)
- debug(20, 1) (" %7d files opened so far.n",
- RebuildState.statcount);
- debug(20, 9) ("file_in: fd=%d %08Xn", fd, sfileno);
- Counter.syscalls.disk.reads++;
- if (read(fd, hdr_buf, DISK_PAGE_SIZE) < 0) {
- debug(20, 1) ("storeRebuildFromDirectory: read(FD %d): %sn",
- fd, xstrerror());
- file_close(fd);
- store_open_disk_fd--;
- fd = -1;
- continue;
- }
- file_close(fd);
- store_open_disk_fd--;
- fd = -1;
- swap_hdr_len = 0;
- #if USE_TRUNCATE_NOT_UNLINK
- if (sb.st_size == 0)
- continue;
- #endif
- tlv_list = storeSwapMetaUnpack(hdr_buf, &swap_hdr_len);
- if (tlv_list == NULL) {
- debug(20, 1) ("storeRebuildFromDirectory: failed to get meta datan");
- storeUnlinkFileno(sfileno);
- continue;
- }
- debug(20, 3) ("storeRebuildFromDirectory: successful swap meta unpackingn");
- memset(key, ' ', MD5_DIGEST_CHARS);
- memset(&tmpe, ' ', sizeof(StoreEntry));
- for (t = tlv_list; t; t = t->next) {
- switch (t->type) {
- case STORE_META_KEY:
- assert(t->length == MD5_DIGEST_CHARS);
- xmemcpy(key, t->value, MD5_DIGEST_CHARS);
- break;
- case STORE_META_STD:
- assert(t->length == STORE_HDR_METASIZE);
- xmemcpy(&tmpe.timestamp, t->value, STORE_HDR_METASIZE);
- break;
- default:
- break;
- }
- }
- storeSwapTLVFree(tlv_list);
- tlv_list = NULL;
- if (storeKeyNull(key)) {
- debug(20, 1) ("storeRebuildFromDirectory: NULL keyn");
- storeUnlinkFileno(sfileno);
- continue;
- }
- tmpe.key = key;
- /* check sizes */
- if (tmpe.swap_file_sz == 0) {
- tmpe.swap_file_sz = sb.st_size;
- } else if (tmpe.swap_file_sz == sb.st_size - swap_hdr_len) {
- tmpe.swap_file_sz = sb.st_size;
- } else if (tmpe.swap_file_sz != sb.st_size) {
- debug(20, 1) ("storeRebuildFromDirectory: SIZE MISMATCH %d!=%dn",
- tmpe.swap_file_sz, (int) sb.st_size);
- storeUnlinkFileno(sfileno);
- continue;
- }
- if (EBIT_TEST(tmpe.flags, KEY_PRIVATE)) {
- storeUnlinkFileno(sfileno);
- RebuildState.badflags++;
- continue;
- }
- e = storeGet(key);
- if (e && e->lastref >= tmpe.lastref) {
- /* key already exists, current entry is newer */
- /* keep old, ignore new */
- RebuildState.dupcount++;
- continue;
- } else if (NULL != e) {
- /* URL already exists, this swapfile not being used */
- /* junk old, load new */
- storeRelease(e); /* release old entry */
- RebuildState.dupcount++;
- }
- RebuildState.objcount++;
- storeEntryDump(&tmpe, 5);
- e = storeAddDiskRestore(key,
- sfileno,
- tmpe.swap_file_sz,
- tmpe.expires,
- tmpe.timestamp,
- tmpe.lastref,
- tmpe.lastmod,
- tmpe.refcount, /* refcount */
- tmpe.flags, /* flags */
- d->clean);
- }
- return count;
- }
- static int
- storeRebuildFromSwapLog(rebuild_dir * d)
- {
- StoreEntry *e = NULL;
- storeSwapLogData s;
- size_t ss = sizeof(storeSwapLogData);
- int count;
- int used; /* is swapfile already in use? */
- int disk_entry_newer; /* is the log entry newer than current entry? */
- double x;
- assert(d != NULL);
- /* load a number of objects per invocation */
- for (count = 0; count < d->speed; count++) {
- if (fread(&s, ss, 1, d->log) != 1) {
- debug(20, 1) ("Done reading Cache Dir #%d swaplog (%d entries)n",
- d->dirn, d->n_read);
- fclose(d->log);
- d->log = NULL;
- storeDirCloseTmpSwapLog(d->dirn);
- return -1;
- }
- d->n_read++;
- if (s.op <= SWAP_LOG_NOP)
- continue;
- if (s.op >= SWAP_LOG_MAX)
- continue;
- s.swap_file_number = storeDirProperFileno(d->dirn, s.swap_file_number);
- debug(20, 3) ("storeRebuildFromSwapLog: %s %s %08Xn",
- swap_log_op_str[(int) s.op],
- storeKeyText(s.key),
- s.swap_file_number);
- if (s.op == SWAP_LOG_ADD) {
- (void) 0;
- } else if (s.op == SWAP_LOG_DEL) {
- if ((e = storeGet(s.key)) != NULL) {
- /*
- * Make sure we don't unlink the file, it might be
- * in use by a subsequent entry. Also note that
- * we don't have to subtract from store_swap_size
- * because adding to store_swap_size happens in
- * the cleanup procedure.
- */
- storeExpireNow(e);
- storeReleaseRequest(e);
- if (e->swap_file_number > -1) {
- storeDirMapBitReset(e->swap_file_number);
- e->swap_file_number = -1;
- }
- RebuildState.objcount--;
- RebuildState.cancelcount++;
- }
- continue;
- } else {
- x = log(++RebuildState.bad_log_op) / log(10.0);
- if (0.0 == x - (double) (int) x)
- debug(20, 1) ("WARNING: %d invalid swap log entries foundn",
- RebuildState.bad_log_op);
- RebuildState.invalid++;
- continue;
- }
- if ((++RebuildState.linecount & 0xFFFF) == 0)
- debug(20, 1) (" %7d Entries read so far.n",
- RebuildState.linecount);
- if (!storeDirValidFileno(s.swap_file_number)) {
- RebuildState.invalid++;
- continue;
- }
- if (EBIT_TEST(s.flags, KEY_PRIVATE)) {
- RebuildState.badflags++;
- continue;
- }
- e = storeGet(s.key);
- used = storeDirMapBitTest(s.swap_file_number);
- /* If this URL already exists in the cache, does the swap log
- * appear to have a newer entry? Compare 'lastref' from the
- * swap log to e->lastref. */
- disk_entry_newer = e ? (s.lastref > e->lastref ? 1 : 0) : 0;
- if (used && !disk_entry_newer) {
- /* log entry is old, ignore it */
- RebuildState.clashcount++;
- continue;
- } else if (used && e && e->swap_file_number == s.swap_file_number) {
- /* swapfile taken, same URL, newer, update meta */
- if (e->store_status == STORE_OK) {
- e->lastref = s.timestamp;
- e->timestamp = s.timestamp;
- e->expires = s.expires;
- e->lastmod = s.lastmod;
- e->flags = s.flags;
- e->refcount += s.refcount;
- } else {
- debug_trap("storeRebuildFromSwapLog: bad condition");
- debug(20, 1) ("tSee %s:%dn", __FILE__, __LINE__);
- }
- continue;
- } else if (used) {
- /* swapfile in use, not by this URL, log entry is newer */
- /* This is sorta bad: the log entry should NOT be newer at this
- * point. If the log is dirty, the filesize check should have
- * caught this. If the log is clean, there should never be a
- * newer entry. */
- debug(20, 1) ("WARNING: newer swaplog entry for fileno %08Xn",
- s.swap_file_number);
- /* I'm tempted to remove the swapfile here just to be safe,
- * but there is a bad race condition in the NOVM version if
- * the swapfile has recently been opened for writing, but
- * not yet opened for reading. Because we can't map
- * swapfiles back to StoreEntrys, we don't know the state
- * of the entry using that file. */
- /* We'll assume the existing entry is valid, probably because
- * were in a slow rebuild and the the swap file number got taken
- * and the validation procedure hasn't run. */
- assert(RebuildState.need_to_validate);
- RebuildState.clashcount++;
- continue;
- } else if (e && !disk_entry_newer) {
- /* key already exists, current entry is newer */
- /* keep old, ignore new */
- RebuildState.dupcount++;
- continue;
- } else if (e) {
- /* key already exists, this swapfile not being used */
- /* junk old, load new */
- storeExpireNow(e);
- storeReleaseRequest(e);
- if (e->swap_file_number > -1) {
- storeDirMapBitReset(e->swap_file_number);
- e->swap_file_number = -1;
- }
- RebuildState.dupcount++;
- } else {
- /* URL doesnt exist, swapfile not in use */
- /* load new */
- (void) 0;
- }
- /* update store_swap_size */
- RebuildState.objcount++;
- e = storeAddDiskRestore(s.key,
- s.swap_file_number,
- s.swap_file_sz,
- s.expires,
- s.timestamp,
- s.lastref,
- s.lastmod,
- s.refcount,
- s.flags,
- d->clean);
- storeDirSwapLog(e, SWAP_LOG_ADD);
- }
- return count;
- }
- static void
- storeRebuildADirectory(void *unused)
- {
- int count;
- rebuild_dir *d;
- rebuild_dir **D;
- if ((d = RebuildState.rebuild_dir) == NULL) {
- storeRebuildComplete();
- return;
- }
- count = d->rebuild_func(d);
- RebuildState.rebuild_dir = d->next;
- if (count < 0) {
- xfree(d);
- } else {
- for (D = &RebuildState.rebuild_dir; *D; D = &(*D)->next);
- *D = d;
- d->next = NULL;
- }
- if (opt_foreground_rebuild)
- storeRebuildADirectory(NULL);
- else
- eventAdd("storeRebuild", storeRebuildADirectory, NULL, 0.0, 1);
- }
- #if TEMP_UNUSED_CODE
- static void
- storeConvertFile(const cache_key * key,
- int file_number,
- size_t swap_file_sz,
- time_t expires,
- time_t timestamp,
- time_t lastref,
- time_t lastmod,
- u_short refcount,
- u_short flags,
- int clean)
- {
- int fd_r, fd_w;
- int hdr_len, x, y;
- LOCAL_ARRAY(char, swapfilename, SQUID_MAXPATHLEN);
- LOCAL_ARRAY(char, copybuf, DISK_PAGE_SIZE);
- char *buf;
- tlv *tlv_list;
- StoreEntry e;
- e.key = key;
- e.swap_file_sz = swap_file_sz;
- e.expires = expires;
- e.lastref = lastref;
- e.refcount = refcount;
- e.flag = flags;
- storeSwapFullPath(file_number, swapfilename);
- fd_r = file_open(swapfilename, O_RDONLY, NULL, NULL, NULL);
- if (fd_r < 0)
- return;
- safeunlink(swapfilename, 1);
- fd_w = file_open(swapfilename, O_CREAT | O_WRONLY | O_TRUNC, NULL, NULL, NULL);
- tlv_list = storeSwapMetaBuild(&e);
- buf = storeSwapMetaPack(tlv_list, &hdr_len);
- x = write(fd_w, buf, hdr_len);
- while (x > 0) {
- y = read(fd_r, copybuf, DISK_PAGE_SIZE);
- x = write(fd_w, copybuf, y);
- }
- file_close(fd_r);
- file_close(fd_w);
- xfree(buf);
- storeSwapTLVFree(tlv_list);
- }
- #endif
- static int
- storeGetNextFile(rebuild_dir * d, int *sfileno, int *size)
- {
- int fd = -1;
- int used = 0;
- debug(20, 3) ("storeGetNextFile: flag=%d, %d: /%02X/%02Xn",
- d->flag,
- d->dirn,
- d->curlvl1,
- d->curlvl2);
- if (d->done)
- return -2;
- while (fd < 0 && d->done == 0) {
- fd = -1;
- if (0 == d->flag) { /* initialize, open first file */
- d->done = 0;
- d->curlvl1 = 0;
- d->curlvl2 = 0;
- d->in_dir = 0;
- d->flag = 1;
- assert(Config.cacheSwap.n_configured > 0);
- }
- if (0 == d->in_dir) { /* we need to read in a new directory */
- snprintf(d->fullpath, SQUID_MAXPATHLEN, "%s/%02X/%02X",
- Config.cacheSwap.swapDirs[d->dirn].path,
- d->curlvl1, d->curlvl2);
- if (d->flag && d->td != NULL)
- closedir(d->td);
- d->td = opendir(d->fullpath);
- if (d->td == NULL) {
- debug(50, 1) ("storeGetNextFile: opendir: %s: %sn",
- d->fullpath, xstrerror());
- break;
- }
- d->entry = readdir(d->td); /* skip . and .. */
- d->entry = readdir(d->td);
- if (d->entry == NULL && errno == ENOENT)
- debug(20, 1) ("storeGetNextFile: directory does not exist!.n");
- debug(20, 3) ("storeGetNextFile: Directory %sn", d->fullpath);
- }
- if (d->td != NULL && (d->entry = readdir(d->td)) != NULL) {
- d->in_dir++;
- if (sscanf(d->entry->d_name, "%x", &d->fn) != 1) {
- debug(20, 3) ("storeGetNextFile: invalid %sn",
- d->entry->d_name);
- continue;
- }
- if (!storeFilenoBelongsHere(d->fn, d->dirn, d->curlvl1, d->curlvl2)) {
- debug(20, 3) ("storeGetNextFile: %08X does not belong in %d/%d/%dn",
- d->fn, d->dirn, d->curlvl1, d->curlvl2);
- continue;
- }
- d->fn = storeDirProperFileno(d->dirn, d->fn);
- used = storeDirMapBitTest(d->fn);
- if (used) {
- debug(20, 3) ("storeGetNextFile: Locked, continuing with next.n");
- continue;
- }
- snprintf(d->fullfilename, SQUID_MAXPATHLEN, "%s/%s",
- d->fullpath, d->entry->d_name);
- debug(20, 3) ("storeGetNextFile: Opening %sn", d->fullfilename);
- fd = file_open(d->fullfilename, O_RDONLY, NULL, NULL, NULL);
- if (fd < 0)
- debug(50, 1) ("storeGetNextFile: %s: %sn", d->fullfilename, xstrerror());
- continue;
- store_open_disk_fd++;
- }
- d->in_dir = 0;
- if (++d->curlvl2 < Config.cacheSwap.swapDirs[d->dirn].l2)
- continue;
- d->curlvl2 = 0;
- if (++d->curlvl1 < Config.cacheSwap.swapDirs[d->dirn].l1)
- continue;
- d->curlvl1 = 0;
- d->done = 1;
- }
- *sfileno = d->fn;
- return fd;
- }
- /* Add a new object to the cache with empty memory copy and pointer to disk
- * use to rebuild store from disk. */
- static StoreEntry *
- storeAddDiskRestore(const cache_key * key,
- int file_number,
- size_t swap_file_sz,
- time_t expires,
- time_t timestamp,
- time_t lastref,
- time_t lastmod,
- u_num32 refcount,
- u_short flags,
- int clean)
- {
- StoreEntry *e = NULL;
- debug(20, 5) ("StoreAddDiskRestore: %s, fileno=%08Xn", storeKeyText(key), file_number);
- /* if you call this you'd better be sure file_number is not
- * already in use! */
- e = new_StoreEntry(STORE_ENTRY_WITHOUT_MEMOBJ, NULL, NULL);
- e->store_status = STORE_OK;
- storeSetMemStatus(e, NOT_IN_MEMORY);
- e->swap_status = SWAPOUT_DONE;
- e->swap_file_number = file_number;
- e->swap_file_sz = swap_file_sz;
- e->lock_count = 0;
- e->refcount = 0;
- e->lastref = lastref;
- e->timestamp = timestamp;
- e->expires = expires;
- e->lastmod = lastmod;
- e->refcount = refcount;
- e->flags = flags;
- EBIT_SET(e->flags, ENTRY_CACHABLE);
- EBIT_CLR(e->flags, RELEASE_REQUEST);
- EBIT_CLR(e->flags, KEY_PRIVATE);
- e->ping_status = PING_NONE;
- EBIT_CLR(e->flags, ENTRY_VALIDATED);
- storeDirMapBitSet(e->swap_file_number);
- storeHashInsert(e, key); /* do it after we clear KEY_PRIVATE */
- return e;
- }
- static void
- storeCleanup(void *datanotused)
- {
- static int bucketnum = -1;
- static int validnum = 0;
- static int store_errors = 0;
- StoreEntry *e;
- hash_link *link_ptr = NULL;
- hash_link *link_next = NULL;
- if (++bucketnum >= store_hash_buckets) {
- debug(20, 1) (" Completed Validation Proceduren");
- debug(20, 1) (" Validated %d Entriesn", validnum);
- debug(20, 1) (" store_swap_size = %dkn", store_swap_size);
- store_rebuilding = 0;
- if (opt_store_doublecheck)
- assert(store_errors == 0);
- if (store_digest)
- storeDigestNoteStoreReady();
- return;
- }
- link_next = hash_get_bucket(store_table, bucketnum);
- while (NULL != (link_ptr = link_next)) {
- link_next = link_ptr->next;
- e = (StoreEntry *) link_ptr;
- if (EBIT_TEST(e->flags, ENTRY_VALIDATED))
- continue;
- /*
- * Calling storeRelease() has no effect because we're
- * still in 'store_rebuilding' state
- */
- if (e->swap_file_number < 0)
- continue;
- if (opt_store_doublecheck) {
- struct stat sb;
- if (stat(storeSwapFullPath(e->swap_file_number, NULL), &sb) < 0) {
- store_errors++;
- debug(20, 0) ("storeCleanup: MISSING SWAP FILEn");
- debug(20, 0) ("storeCleanup: FILENO %08Xn", e->swap_file_number);
- debug(20, 0) ("storeCleanup: PATH %sn",
- storeSwapFullPath(e->swap_file_number, NULL));
- storeEntryDump(e, 0);
- continue;
- }
- if (e->swap_file_sz != sb.st_size) {
- store_errors++;
- debug(20, 0) ("storeCleanup: SIZE MISMATCHn");
- debug(20, 0) ("storeCleanup: FILENO %08Xn", e->swap_file_number);
- debug(20, 0) ("storeCleanup: PATH %sn",
- storeSwapFullPath(e->swap_file_number, NULL));
- debug(20, 0) ("storeCleanup: ENTRY SIZE: %d, FILE SIZE: %dn",
- e->swap_file_sz, (int) sb.st_size);
- storeEntryDump(e, 0);
- continue;
- }
- }
- EBIT_SET(e->flags, ENTRY_VALIDATED);
- /* Only set the file bit if we know its a valid entry */
- /* otherwise, set it in the validation procedure */
- storeDirUpdateSwapSize(e->swap_file_number, e->swap_file_sz, 1);
- if ((++validnum & 0xFFFF) == 0)
- debug(20, 1) (" %7d Entries Validated so far.n", validnum);
- }
- eventAdd("storeCleanup", storeCleanup, NULL, 0.0, 1);
- }
- void
- storeValidate(StoreEntry * e, STVLDCB * callback, void *callback_data, void *tag)
- {
- valid_ctrl_t *ctrlp;
- char *path;
- struct stat *sb;
- #if !USE_ASYNC_IO
- int x;
- #endif
- assert(!EBIT_TEST(e->flags, ENTRY_VALIDATED));
- if (e->swap_file_number < 0) {
- EBIT_CLR(e->flags, ENTRY_VALIDATED);
- callback(callback_data, 0, 0);
- return;
- }
- path = storeSwapFullPath(e->swap_file_number, NULL);
- sb = xmalloc(sizeof(struct stat));
- ctrlp = xmalloc(sizeof(valid_ctrl_t));
- ctrlp->sb = sb;
- ctrlp->e = e;
- ctrlp->callback = callback;
- ctrlp->callback_data = callback_data;
- #if USE_ASYNC_IO
- aioStat(path, sb, storeValidateComplete, ctrlp, tag);
- #else
- /*
- * When evaluating the actual arguments in a function call, the order
- * in which the arguments and the function expression are evaluated is
- * not specified;
- */
- x = stat(path, sb);
- storeValidateComplete(-1, ctrlp, x, errno);
- #endif
- return;
- }
- static void
- storeValidateComplete(int fd, void *data, int retcode, int errcode)
- {
- valid_ctrl_t *ctrlp = data;
- struct stat *sb = ctrlp->sb;
- StoreEntry *e = ctrlp->e;
- char *path;
- if (retcode == -2 && errcode == -2) {
- xfree(sb);
- xfree(ctrlp);
- ctrlp->callback(ctrlp->callback_data, retcode, errcode);
- return;
- }
- if (retcode < 0 && errcode == EWOULDBLOCK) {
- path = storeSwapFullPath(e->swap_file_number, NULL);
- retcode = stat(path, sb);
- }
- if (retcode < 0 || sb->st_size == 0 || sb->st_size != e->swap_file_sz) {
- EBIT_CLR(e->flags, ENTRY_VALIDATED);
- } else {
- EBIT_SET(e->flags, ENTRY_VALIDATED);
- storeDirUpdateSwapSize(e->swap_file_number, e->swap_file_sz, 1);
- }
- errno = errcode;
- ctrlp->callback(ctrlp->callback_data, retcode, errcode);
- xfree(sb);
- xfree(ctrlp);
- }
- /* meta data recreated from disk image in swap directory */
- static void
- storeRebuildComplete(void)
- {
- time_t r;
- time_t stop;
- stop = squid_curtime;
- r = stop - RebuildState.start;
- debug(20, 1) ("Finished rebuilding storage disk.n");
- debug(20, 1) (" %7d Entries read from previous logfile.n",
- RebuildState.linecount);
- debug(20, 1) (" %7d Entries scanned from swap files.n",
- RebuildState.statcount);
- debug(20, 1) (" %7d Invalid entries.n", RebuildState.invalid);
- debug(20, 1) (" %7d With invalid flags.n", RebuildState.badflags);
- debug(20, 1) (" %7d Objects loaded.n", RebuildState.objcount);
- debug(20, 1) (" %7d Objects expired.n", RebuildState.expcount);
- debug(20, 1) (" %7d Objects cancelled.n", RebuildState.cancelcount);
- debug(20, 1) (" %7d Duplicate URLs purged.n", RebuildState.dupcount);
- debug(20, 1) (" %7d Swapfile clashes avoided.n", RebuildState.clashcount);
- debug(20, 1) (" Took %d seconds (%6.1f objects/sec).n",
- r > 0 ? (int) r : 0,
- (double) RebuildState.objcount / (r > 0 ? r : 1));
- debug(20, 1) ("Beginning Validation Proceduren");
- eventAdd("storeCleanup", storeCleanup, NULL, 0.0, 1);
- }
- void
- storeRebuildStart(void)
- {
- rebuild_dir *d;
- int clean = 0;
- int zero = 0;
- FILE *fp;
- int i;
- memset(&RebuildState, ' ', sizeof(RebuildState));
- RebuildState.start = squid_curtime;
- for (i = 0; i < Config.cacheSwap.n_configured; i++) {
- d = xcalloc(1, sizeof(rebuild_dir));
- d->dirn = i;
- d->speed = opt_foreground_rebuild ? 1 << 30 : 50;
- /*
- * If the swap.state file exists in the cache_dir, then
- * we'll use storeRebuildFromSwapLog(), otherwise we'll
- * use storeRebuildFromDirectory() to open up each file
- * and suck in the meta data.
- */
- fp = storeDirOpenTmpSwapLog(i, &clean, &zero);
- if (fp == NULL || zero) {
- if (fp != NULL)
- fclose(fp);
- d->rebuild_func = storeRebuildFromDirectory;
- } else {
- d->rebuild_func = storeRebuildFromSwapLog;
- d->log = fp;
- d->clean = clean;
- }
- d->next = RebuildState.rebuild_dir;
- RebuildState.rebuild_dir = d;
- if (!clean)
- RebuildState.need_to_validate = 1;
- debug(20, 1) ("Rebuilding storage in Cache Dir #%d (%s)n",
- i, clean ? "CLEAN" : "DIRTY");
- }
- eventAdd("storeRebuild", storeRebuildADirectory, NULL, 0.0, 1);
- }