| Line |
Branch |
Exec |
Source |
| 1 |
|
|
/** |
| 2 |
|
|
* This file is part of the CernVM File System. |
| 3 |
|
|
* |
| 4 |
|
|
* This tool checks a cvmfs cache directory for consistency. |
| 5 |
|
|
* If necessary, the managed cache db is removed so that |
| 6 |
|
|
* it will be rebuilt on next mount. |
| 7 |
|
|
*/ |
| 8 |
|
|
|
| 9 |
|
|
#define _FILE_OFFSET_BITS 64 |
| 10 |
|
|
|
| 11 |
|
|
|
| 12 |
|
|
#include <dirent.h> |
| 13 |
|
|
#include <errno.h> |
| 14 |
|
|
#include <fcntl.h> |
| 15 |
|
|
#include <pthread.h> |
| 16 |
|
|
#include <stdint.h> |
| 17 |
|
|
#include <sys/stat.h> |
| 18 |
|
|
#include <unistd.h> |
| 19 |
|
|
|
| 20 |
|
|
#include <cstdio> |
| 21 |
|
|
#include <cstdlib> |
| 22 |
|
|
#include <cstring> |
| 23 |
|
|
#include <string> |
| 24 |
|
|
|
| 25 |
|
|
#include "compression/compression.h" |
| 26 |
|
|
#include "crypto/hash.h" |
| 27 |
|
|
#include "util/atomic.h" |
| 28 |
|
|
#include "util/concurrency.h" |
| 29 |
|
|
#include "util/logging.h" |
| 30 |
|
|
#include "util/platform.h" |
| 31 |
|
|
#include "util/posix.h" |
| 32 |
|
|
#include "util/smalloc.h" |
| 33 |
|
|
|
| 34 |
|
|
using namespace std; // NOLINT |
| 35 |
|
|
|
| 36 |
|
|
enum Errors { |
| 37 |
|
|
kErrorOk = 0, |
| 38 |
|
|
kErrorFixed = 1, |
| 39 |
|
|
kErrorReboot = 2, |
| 40 |
|
|
kErrorUnfixed = 4, |
| 41 |
|
|
kErrorOperational = 8, |
| 42 |
|
|
kErrorUsage = 16, |
| 43 |
|
|
}; |
| 44 |
|
|
|
| 45 |
|
|
string *g_cache_dir; |
| 46 |
|
|
atomic_int32 g_num_files; |
| 47 |
|
|
atomic_int32 g_num_err_fixed; |
| 48 |
|
|
atomic_int32 g_num_err_unfixed; |
| 49 |
|
|
atomic_int32 g_num_err_operational; |
| 50 |
|
|
atomic_int32 g_num_tmp_catalog; |
| 51 |
|
|
/** |
| 52 |
|
|
* Traversal of the file system tree is serialized. |
| 53 |
|
|
*/ |
| 54 |
|
|
pthread_mutex_t g_lock_traverse = PTHREAD_MUTEX_INITIALIZER; |
| 55 |
|
|
DIR *g_DIRP_current = NULL; |
| 56 |
|
|
int g_num_dirs = -1; /**< Number of cache directories already examined. */ |
| 57 |
|
|
string *g_current_dir; /**< Current cache sub directory */ |
| 58 |
|
|
|
| 59 |
|
|
int g_num_threads = 1; |
| 60 |
|
|
bool g_fix_errors = false; |
| 61 |
|
|
bool g_verbose = false; |
| 62 |
|
|
atomic_int32 g_force_rebuild; |
| 63 |
|
|
atomic_int32 g_modified_cache; |
| 64 |
|
|
|
| 65 |
|
|
|
| 66 |
|
✗ |
static void Usage() { |
| 67 |
|
✗ |
LogCvmfs(kLogCvmfs, kLogStdout, |
| 68 |
|
|
"CernVM File System consistency checker, version %s\n\n" |
| 69 |
|
|
"This tool checks a cvmfs cache directory for consistency.\n" |
| 70 |
|
|
"If necessary, the managed cache db is removed so that\n" |
| 71 |
|
|
"it will be rebuilt on next mount.\n\n" |
| 72 |
|
|
"Usage: cvmfs_fsck [-v] [-p] [-f] [-j #threads] <cache directory>\n" |
| 73 |
|
|
"Options:\n" |
| 74 |
|
|
" -v verbose output\n" |
| 75 |
|
|
" -p try to fix automatically\n" |
| 76 |
|
|
" -f force rebuild of managed cache db on next mount\n" |
| 77 |
|
|
" -j number of concurrent integrity check worker threads\n", |
| 78 |
|
|
CVMFS_VERSION); |
| 79 |
|
|
} |
| 80 |
|
|
|
| 81 |
|
|
|
| 82 |
|
✗ |
static bool GetNextFile(string *relative_path, string *hash_name) { |
| 83 |
|
✗ |
platform_dirent64 *d = NULL; |
| 84 |
|
|
|
| 85 |
|
✗ |
const MutexLockGuard m(&g_lock_traverse); |
| 86 |
|
✗ |
get_next_file_again: |
| 87 |
|
✗ |
while (g_DIRP_current && ((d = platform_readdir(g_DIRP_current)) != NULL)) { |
| 88 |
|
✗ |
const string name = d->d_name; |
| 89 |
|
✗ |
if ((name == ".") || (name == "..")) |
| 90 |
|
✗ |
continue; |
| 91 |
|
|
|
| 92 |
|
|
platform_stat64 info; |
| 93 |
|
✗ |
*relative_path = *g_current_dir + "/" + name; |
| 94 |
|
✗ |
*hash_name = *g_current_dir + name; |
| 95 |
|
✗ |
const string path = *g_cache_dir + "/" + *relative_path; |
| 96 |
|
✗ |
if (platform_lstat(relative_path->c_str(), &info) != 0) { |
| 97 |
|
✗ |
LogCvmfs(kLogCvmfs, kLogStdout, "Warning: failed to stat() %s (%d)", |
| 98 |
|
|
path.c_str(), errno); |
| 99 |
|
✗ |
continue; |
| 100 |
|
|
} |
| 101 |
|
|
|
| 102 |
|
✗ |
if (!S_ISREG(info.st_mode)) { |
| 103 |
|
✗ |
LogCvmfs(kLogCvmfs, kLogStdout, "Warning: %s is not a regular file", |
| 104 |
|
|
path.c_str()); |
| 105 |
|
✗ |
continue; |
| 106 |
|
|
} |
| 107 |
|
|
|
| 108 |
|
✗ |
break; |
| 109 |
|
|
} |
| 110 |
|
|
|
| 111 |
|
✗ |
if (!d) { |
| 112 |
|
✗ |
if (g_DIRP_current) { |
| 113 |
|
✗ |
closedir(g_DIRP_current); |
| 114 |
|
✗ |
g_DIRP_current = NULL; |
| 115 |
|
|
} |
| 116 |
|
✗ |
g_num_dirs++; |
| 117 |
|
✗ |
if (g_num_dirs < 256) { |
| 118 |
|
|
char hex[3]; |
| 119 |
|
✗ |
snprintf(hex, sizeof(hex), "%02x", g_num_dirs); |
| 120 |
|
✗ |
*g_current_dir = string(hex, 2); |
| 121 |
|
|
|
| 122 |
|
✗ |
if (g_verbose) |
| 123 |
|
✗ |
LogCvmfs(kLogCvmfs, kLogStdout, "Entering %s", g_current_dir->c_str()); |
| 124 |
|
✗ |
if ((g_DIRP_current = opendir(hex)) == NULL) { |
| 125 |
|
✗ |
LogCvmfs(kLogCvmfs, kLogStderr, |
| 126 |
|
|
"Invalid cache directory, %s/%s does not exist", |
| 127 |
|
|
g_cache_dir->c_str(), g_current_dir->c_str()); |
| 128 |
|
✗ |
exit(kErrorUnfixed); |
| 129 |
|
|
} |
| 130 |
|
✗ |
goto get_next_file_again; |
| 131 |
|
|
} |
| 132 |
|
|
} |
| 133 |
|
|
|
| 134 |
|
✗ |
return d != NULL; |
| 135 |
|
|
} |
| 136 |
|
|
|
| 137 |
|
|
|
| 138 |
|
✗ |
static void *MainCheck(void *data __attribute__((unused))) { |
| 139 |
|
✗ |
string relative_path; |
| 140 |
|
✗ |
string hash_name; |
| 141 |
|
|
|
| 142 |
|
✗ |
while (GetNextFile(&relative_path, &hash_name)) { |
| 143 |
|
✗ |
const string path = *g_cache_dir + "/" + relative_path; |
| 144 |
|
|
|
| 145 |
|
✗ |
const int n = atomic_xadd32(&g_num_files, 1); |
| 146 |
|
✗ |
if (g_verbose) |
| 147 |
|
✗ |
LogCvmfs(kLogCvmfs, kLogStdout, "Checking file %s", path.c_str()); |
| 148 |
|
✗ |
if (!g_verbose && ((n % 1000) == 0)) |
| 149 |
|
✗ |
LogCvmfs(kLogCvmfs, kLogStdout | kLogNoLinebreak, "."); |
| 150 |
|
|
|
| 151 |
|
✗ |
if (relative_path[relative_path.length() - 1] == 'T') { |
| 152 |
|
✗ |
LogCvmfs(kLogCvmfs, kLogStdout, |
| 153 |
|
|
"Warning: temporary file catalog %s found", path.c_str()); |
| 154 |
|
✗ |
atomic_inc32(&g_num_tmp_catalog); |
| 155 |
|
✗ |
if (g_fix_errors) { |
| 156 |
|
✗ |
if (unlink(relative_path.c_str()) == 0) { |
| 157 |
|
✗ |
LogCvmfs(kLogCvmfs, kLogStdout, "Fix: %s unlinked", path.c_str()); |
| 158 |
|
✗ |
atomic_inc32(&g_num_err_fixed); |
| 159 |
|
|
} else { |
| 160 |
|
✗ |
LogCvmfs(kLogCvmfs, kLogStdout, "Error: failed to unlink %s", |
| 161 |
|
|
path.c_str()); |
| 162 |
|
✗ |
atomic_inc32(&g_num_err_unfixed); |
| 163 |
|
|
} |
| 164 |
|
|
} |
| 165 |
|
✗ |
continue; |
| 166 |
|
|
} |
| 167 |
|
|
|
| 168 |
|
✗ |
const int fd_src = open(relative_path.c_str(), O_RDONLY); |
| 169 |
|
✗ |
if (fd_src < 0) { |
| 170 |
|
✗ |
LogCvmfs(kLogCvmfs, kLogStdout, "Error: cannot open %s", path.c_str()); |
| 171 |
|
✗ |
atomic_inc32(&g_num_err_operational); |
| 172 |
|
✗ |
continue; |
| 173 |
|
|
} |
| 174 |
|
|
// Don't thrash kernel buffers |
| 175 |
|
✗ |
platform_disable_kcache(fd_src); |
| 176 |
|
|
|
| 177 |
|
|
// Compress every file and calculate SHA-1 of stream |
| 178 |
|
✗ |
const shash::Any expected_hash = shash::MkFromHexPtr( |
| 179 |
|
|
shash::HexPtr(hash_name)); |
| 180 |
|
✗ |
shash::Any hash(expected_hash.algorithm); |
| 181 |
|
✗ |
if (!zlib::CompressFd2Null(fd_src, &hash)) { |
| 182 |
|
✗ |
LogCvmfs(kLogCvmfs, kLogStdout, "Error: could not compress %s", |
| 183 |
|
|
path.c_str()); |
| 184 |
|
✗ |
atomic_inc32(&g_num_err_operational); |
| 185 |
|
|
} else { |
| 186 |
|
✗ |
if (hash != expected_hash) { |
| 187 |
|
|
// If the hashes don't match, try hashing the uncompressed file |
| 188 |
|
✗ |
if (!shash::HashFile(relative_path, &hash)) { |
| 189 |
|
✗ |
LogCvmfs(kLogCvmfs, kLogStdout, "Error: could not hash %s", |
| 190 |
|
|
path.c_str()); |
| 191 |
|
✗ |
atomic_inc32(&g_num_err_operational); |
| 192 |
|
|
} |
| 193 |
|
✗ |
if (hash != expected_hash) { |
| 194 |
|
✗ |
if (g_fix_errors) { |
| 195 |
|
✗ |
const string quarantaine_path = "./quarantaine/" + hash_name; |
| 196 |
|
✗ |
bool fixed = false; |
| 197 |
|
✗ |
if (rename(relative_path.c_str(), quarantaine_path.c_str()) == 0) { |
| 198 |
|
✗ |
LogCvmfs(kLogCvmfs, kLogStdout, |
| 199 |
|
|
"Fix: %s is corrupted, moved to quarantaine folder", |
| 200 |
|
|
path.c_str()); |
| 201 |
|
✗ |
fixed = true; |
| 202 |
|
|
} else { |
| 203 |
|
✗ |
LogCvmfs(kLogCvmfs, kLogStdout, |
| 204 |
|
|
"Warning: failed to move %s into quarantaine folder", |
| 205 |
|
|
path.c_str()); |
| 206 |
|
✗ |
if (unlink(relative_path.c_str()) == 0) { |
| 207 |
|
✗ |
LogCvmfs(kLogCvmfs, kLogStdout, |
| 208 |
|
|
"Fix: %s is corrupted, file unlinked", path.c_str()); |
| 209 |
|
✗ |
fixed = true; |
| 210 |
|
|
} else { |
| 211 |
|
✗ |
LogCvmfs(kLogCvmfs, kLogStdout, |
| 212 |
|
|
"Error: %s is corrupted, could not unlink", |
| 213 |
|
|
path.c_str()); |
| 214 |
|
|
} |
| 215 |
|
|
} |
| 216 |
|
|
|
| 217 |
|
✗ |
if (fixed) { |
| 218 |
|
✗ |
atomic_inc32(&g_num_err_fixed); |
| 219 |
|
|
|
| 220 |
|
|
// Changes made, we have to rebuild the managed cache db |
| 221 |
|
✗ |
atomic_cas32(&g_force_rebuild, 0, 1); |
| 222 |
|
✗ |
atomic_cas32(&g_modified_cache, 0, 1); |
| 223 |
|
|
} else { |
| 224 |
|
✗ |
atomic_inc32(&g_num_err_unfixed); |
| 225 |
|
|
} |
| 226 |
|
✗ |
} else { |
| 227 |
|
✗ |
LogCvmfs(kLogCvmfs, kLogStdout, |
| 228 |
|
|
"Error: %s has compressed checksum %s, " |
| 229 |
|
|
"delete this file from cache directory!", |
| 230 |
|
|
path.c_str(), hash.ToString().c_str()); |
| 231 |
|
✗ |
atomic_inc32(&g_num_err_unfixed); |
| 232 |
|
|
} |
| 233 |
|
|
} |
| 234 |
|
|
} |
| 235 |
|
|
} |
| 236 |
|
✗ |
close(fd_src); |
| 237 |
|
|
} |
| 238 |
|
|
|
| 239 |
|
✗ |
return NULL; |
| 240 |
|
|
} |
| 241 |
|
|
|
| 242 |
|
|
|
| 243 |
|
✗ |
int main(int argc, char **argv) { |
| 244 |
|
✗ |
atomic_init32(&g_force_rebuild); |
| 245 |
|
✗ |
atomic_init32(&g_modified_cache); |
| 246 |
|
✗ |
g_current_dir = new string(); |
| 247 |
|
|
|
| 248 |
|
|
int c; |
| 249 |
|
✗ |
while ((c = getopt(argc, argv, "hvpfj:")) != -1) { |
| 250 |
|
✗ |
switch (c) { |
| 251 |
|
✗ |
case 'h': |
| 252 |
|
✗ |
Usage(); |
| 253 |
|
✗ |
return kErrorOk; |
| 254 |
|
✗ |
case 'v': |
| 255 |
|
✗ |
g_verbose = true; |
| 256 |
|
✗ |
break; |
| 257 |
|
✗ |
case 'p': |
| 258 |
|
✗ |
g_fix_errors = true; |
| 259 |
|
✗ |
break; |
| 260 |
|
✗ |
case 'f': |
| 261 |
|
✗ |
atomic_cas32(&g_force_rebuild, 0, 1); |
| 262 |
|
✗ |
break; |
| 263 |
|
✗ |
case 'j': |
| 264 |
|
✗ |
g_num_threads = atoi(optarg); |
| 265 |
|
✗ |
if (g_num_threads < 1) { |
| 266 |
|
✗ |
LogCvmfs(kLogCvmfs, kLogStdout, |
| 267 |
|
|
"There is at least one worker thread required"); |
| 268 |
|
✗ |
return kErrorUsage; |
| 269 |
|
|
} |
| 270 |
|
✗ |
break; |
| 271 |
|
✗ |
case '?': |
| 272 |
|
|
default: |
| 273 |
|
✗ |
Usage(); |
| 274 |
|
✗ |
return kErrorUsage; |
| 275 |
|
|
} |
| 276 |
|
|
} |
| 277 |
|
|
|
| 278 |
|
|
// Switch to cache directory |
| 279 |
|
✗ |
if (optind >= argc) { |
| 280 |
|
✗ |
Usage(); |
| 281 |
|
✗ |
return kErrorUsage; |
| 282 |
|
|
} |
| 283 |
|
✗ |
g_cache_dir = new string(MakeCanonicalPath(argv[optind])); |
| 284 |
|
✗ |
if (chdir(g_cache_dir->c_str()) != 0) { |
| 285 |
|
✗ |
LogCvmfs(kLogCvmfs, kLogStderr, "Could not chdir to %s", |
| 286 |
|
|
g_cache_dir->c_str()); |
| 287 |
|
✗ |
return kErrorOperational; |
| 288 |
|
|
} |
| 289 |
|
|
|
| 290 |
|
|
// Check if txn directory is empty |
| 291 |
|
|
DIR *dirp_txn; |
| 292 |
|
✗ |
if ((dirp_txn = opendir("txn")) == NULL) { |
| 293 |
|
✗ |
LogCvmfs(kLogCvmfs, kLogStderr, |
| 294 |
|
|
"Invalid cache directory, %s/txn does not exist", |
| 295 |
|
|
g_cache_dir->c_str()); |
| 296 |
|
✗ |
return kErrorOperational; |
| 297 |
|
|
} |
| 298 |
|
|
platform_dirent64 *d; |
| 299 |
|
✗ |
while ((d = platform_readdir(dirp_txn)) != NULL) { |
| 300 |
|
✗ |
const string name = d->d_name; |
| 301 |
|
✗ |
if ((name == ".") || (name == "..")) |
| 302 |
|
✗ |
continue; |
| 303 |
|
|
|
| 304 |
|
✗ |
LogCvmfs(kLogCvmfs, kLogStdout, |
| 305 |
|
|
"Warning: temporary directory %s/txn is not empty\n" |
| 306 |
|
|
"If this repository is currently _not_ mounted, " |
| 307 |
|
|
"you can remove its contents", |
| 308 |
|
|
g_cache_dir->c_str()); |
| 309 |
|
✗ |
break; |
| 310 |
|
|
} |
| 311 |
|
✗ |
closedir(dirp_txn); |
| 312 |
|
|
|
| 313 |
|
|
// Run workers to recalculate checksums |
| 314 |
|
✗ |
atomic_init32(&g_num_files); |
| 315 |
|
✗ |
atomic_init32(&g_num_err_fixed); |
| 316 |
|
✗ |
atomic_init32(&g_num_err_unfixed); |
| 317 |
|
✗ |
atomic_init32(&g_num_err_operational); |
| 318 |
|
✗ |
atomic_init32(&g_num_tmp_catalog); |
| 319 |
|
|
pthread_t *workers = reinterpret_cast<pthread_t *>( |
| 320 |
|
✗ |
smalloc(g_num_threads * sizeof(pthread_t))); |
| 321 |
|
✗ |
if (!g_verbose) |
| 322 |
|
✗ |
LogCvmfs(kLogCvmfs, kLogStdout | kLogNoLinebreak, "Verifying: "); |
| 323 |
|
✗ |
for (int i = 0; i < g_num_threads; ++i) { |
| 324 |
|
✗ |
if (g_verbose) |
| 325 |
|
✗ |
LogCvmfs(kLogCvmfs, kLogStdout, "Starting worker %d", i + 1); |
| 326 |
|
✗ |
if (pthread_create(&workers[i], NULL, MainCheck, NULL) != 0) { |
| 327 |
|
✗ |
LogCvmfs(kLogCvmfs, kLogStdout, "Fatal: could not create worker thread"); |
| 328 |
|
✗ |
return kErrorOperational; |
| 329 |
|
|
} |
| 330 |
|
|
} |
| 331 |
|
✗ |
for (int i = g_num_threads - 1; i >= 0; --i) { |
| 332 |
|
✗ |
pthread_join(workers[i], NULL); |
| 333 |
|
✗ |
if (g_verbose) |
| 334 |
|
✗ |
LogCvmfs(kLogCvmfs, kLogStdout, "Stopping worker %d", i + 1); |
| 335 |
|
|
} |
| 336 |
|
✗ |
free(workers); |
| 337 |
|
✗ |
if (!g_verbose) |
| 338 |
|
✗ |
LogCvmfs(kLogCvmfs, kLogStdout | kLogNoLinebreak, "\n"); |
| 339 |
|
✗ |
LogCvmfs(kLogCvmfs, kLogStdout, "Verified %d files", |
| 340 |
|
|
atomic_read32(&g_num_files)); |
| 341 |
|
|
|
| 342 |
|
✗ |
if (atomic_read32(&g_num_tmp_catalog) > 0) |
| 343 |
|
✗ |
LogCvmfs(kLogCvmfs, kLogStdout, "Temporary file catalogs were found."); |
| 344 |
|
|
|
| 345 |
|
✗ |
if (atomic_read32(&g_force_rebuild)) { |
| 346 |
|
✗ |
if (unlink("cachedb") == 0) { |
| 347 |
|
✗ |
LogCvmfs(kLogCvmfs, kLogStdout, |
| 348 |
|
|
"Fix: managed cache db unlinked, will be rebuilt on next mount"); |
| 349 |
|
✗ |
atomic_inc32(&g_num_err_fixed); |
| 350 |
|
|
} else { |
| 351 |
|
✗ |
if (errno != ENOENT) { |
| 352 |
|
✗ |
LogCvmfs(kLogCvmfs, kLogStdout, |
| 353 |
|
|
"Error: could not unlink managed cache database (%d)", errno); |
| 354 |
|
✗ |
atomic_inc32(&g_num_err_unfixed); |
| 355 |
|
|
} |
| 356 |
|
|
} |
| 357 |
|
|
} |
| 358 |
|
|
|
| 359 |
|
✗ |
if (atomic_read32(&g_modified_cache)) { |
| 360 |
|
✗ |
LogCvmfs(kLogCvmfs, kLogStdout, |
| 361 |
|
|
"\n" |
| 362 |
|
|
"WARNING: There might by corrupted files in the kernel buffers.\n" |
| 363 |
|
|
"Remount CernVM-FS or run 'echo 3 > /proc/sys/vm/drop_caches'" |
| 364 |
|
|
"\n\n"); |
| 365 |
|
|
} |
| 366 |
|
|
|
| 367 |
|
✗ |
int retval = 0; |
| 368 |
|
✗ |
if (atomic_read32(&g_num_err_fixed) > 0) |
| 369 |
|
✗ |
retval |= kErrorFixed; |
| 370 |
|
✗ |
if (atomic_read32(&g_num_err_unfixed) > 0) |
| 371 |
|
✗ |
retval |= kErrorUnfixed; |
| 372 |
|
✗ |
if (atomic_read32(&g_num_err_operational) > 0) |
| 373 |
|
✗ |
retval |= kErrorOperational; |
| 374 |
|
|
|
| 375 |
|
✗ |
return retval; |
| 376 |
|
|
} |
| 377 |
|
|
|