]> git.tuebingen.mpg.de Git - osl.git/blob - fsck.c
68f08d99249344c6a92ad29f4bc6048886ea4c92
[osl.git] / fsck.c
1 /*
2  * Copyright (C) 2007-2008 Andre Noll <maan@systemlinux.org>
3  *
4  * Licensed under the GPL v2. For licencing details see COPYING.
5  */
6
7 /** \file fsck.c The program used to check an osl table. */
8
9 #include <sys/stat.h>
10 #include <sys/types.h>
11 #include <dirent.h>
12 #include <assert.h>
13 #include <pwd.h>
14
15 #include "log.h"
16 #include "osl.h"
17 #include "util.h"
18 #include "osl_core.h"
19 #include "fsck.cmdline.h"
20
21 /** version text used by various commands if -V switch was given */
22 #define VERSION_TEXT(prefix) "osl_" prefix " " VERSION " " "\n" \
23         "Copyright (C) 2008 Andre Noll\n" \
24         "This is free software with ABSOLUTELY NO WARRANTY." \
25         " See COPYING for details.\n" \
26         "Written by Andre Noll.\n" \
27         "Report bugs to <maan@systemlinux.org>.\n"
28
29 /** print out \p VERSION_TEXT and exit if version flag was given */
30 #define HANDLE_VERSION_FLAG(_prefix, _args_info_struct) \
31         if (_args_info_struct.version_given) { \
32                 printf("%s", VERSION_TEXT(_prefix)); \
33                 exit(EXIT_SUCCESS); \
34         }
35
36 static struct fsck_args_info conf;
37
38 #define FSCK_ERRORS \
39         FSCK_ERROR(RANGE_VIOLATION, "range violation detected, very bad"), \
40         FSCK_ERROR(NOT_A_REGULAR_FILE, "not a regular file"), \
41         FSCK_ERROR(SYNTAX, "fsck syntax error"), \
42         FSCK_ERROR(ACCESS, "permission denied"), \
43         FSCK_ERROR(CHDIR, "could not change directory"), \
44         FSCK_ERROR(OPENDIR, "could not open directory"),
45
46 #define FSCK_ERROR_BIT 29
47 #define FSCK_ERROR(num, txt) E_FSCK_ ## num
48 enum {
49         FSCK_DUMMY = (1 << FSCK_ERROR_BIT) - 1,
50         FSCK_ERRORS
51 };
52 #undef FSCK_ERROR
53 #define FSCK_ERROR(num, txt) txt
54 const char const *fsck_errors[] = {
55         FSCK_ERRORS
56 };
57
58 static const char *fsck_strerror(int num)
59 {
60         if (num & (1 << FSCK_ERROR_BIT))
61                 return fsck_errors[num & ((1 << FSCK_ERROR_BIT) - 1)];
62         return osl_strerror(num);
63 }
64
65 extern int loglevel;
66
67 /* taken from git */
68 signed char hexval_table[256] = {
69          -1, -1, -1, -1, -1, -1, -1, -1,                /* 00-07 */
70          -1, -1, -1, -1, -1, -1, -1, -1,                /* 08-0f */
71          -1, -1, -1, -1, -1, -1, -1, -1,                /* 10-17 */
72          -1, -1, -1, -1, -1, -1, -1, -1,                /* 18-1f */
73          -1, -1, -1, -1, -1, -1, -1, -1,                /* 20-27 */
74          -1, -1, -1, -1, -1, -1, -1, -1,                /* 28-2f */
75           0,  1,  2,  3,  4,  5,  6,  7,                /* 30-37 */
76           8,  9, -1, -1, -1, -1, -1, -1,                /* 38-3f */
77          -1, 10, 11, 12, 13, 14, 15, -1,                /* 40-47 */
78          -1, -1, -1, -1, -1, -1, -1, -1,                /* 48-4f */
79          -1, -1, -1, -1, -1, -1, -1, -1,                /* 50-57 */
80          -1, -1, -1, -1, -1, -1, -1, -1,                /* 58-5f */
81          -1, 10, 11, 12, 13, 14, 15, -1,                /* 60-67 */
82          -1, -1, -1, -1, -1, -1, -1, -1,                /* 68-67 */
83          -1, -1, -1, -1, -1, -1, -1, -1,                /* 70-77 */
84          -1, -1, -1, -1, -1, -1, -1, -1,                /* 78-7f */
85          -1, -1, -1, -1, -1, -1, -1, -1,                /* 80-87 */
86          -1, -1, -1, -1, -1, -1, -1, -1,                /* 88-8f */
87          -1, -1, -1, -1, -1, -1, -1, -1,                /* 90-97 */
88          -1, -1, -1, -1, -1, -1, -1, -1,                /* 98-9f */
89          -1, -1, -1, -1, -1, -1, -1, -1,                /* a0-a7 */
90          -1, -1, -1, -1, -1, -1, -1, -1,                /* a8-af */
91          -1, -1, -1, -1, -1, -1, -1, -1,                /* b0-b7 */
92          -1, -1, -1, -1, -1, -1, -1, -1,                /* b8-bf */
93          -1, -1, -1, -1, -1, -1, -1, -1,                /* c0-c7 */
94          -1, -1, -1, -1, -1, -1, -1, -1,                /* c8-cf */
95          -1, -1, -1, -1, -1, -1, -1, -1,                /* d0-d7 */
96          -1, -1, -1, -1, -1, -1, -1, -1,                /* d8-df */
97          -1, -1, -1, -1, -1, -1, -1, -1,                /* e0-e7 */
98          -1, -1, -1, -1, -1, -1, -1, -1,                /* e8-ef */
99          -1, -1, -1, -1, -1, -1, -1, -1,                /* f0-f7 */
100          -1, -1, -1, -1, -1, -1, -1, -1,                /* f8-ff */
101 };
102
103 int asc_to_hash(const char *asc_hash, int len, HASH_TYPE *hash)
104 {
105         int i = 0;
106         const unsigned char *asc = (const unsigned char *) asc_hash;
107
108         while (*asc && i++ < len) {
109                 unsigned int val = (hexval_table[asc[0]] << 4) | hexval_table[asc[1]];
110                 if (val & ~0xff)
111                         return -1;
112                 *hash++ = val;
113                 asc += 2;
114
115         }
116         return 1;
117 }
118
119 static int _write_all(int fd, const char *buf, size_t len)
120 {
121         return write_all(fd, buf, &len);
122 }
123
124 /*
125  * Wrapper for malloc().
126  *
127  * \param size The desired new size.
128  *
129  * A wrapper for malloc(3) which exits on errors.
130  *
131  * \return A pointer to the allocated memory, which is suitably aligned for any
132  * kind of variable.
133  *
134  * \sa malloc(3).
135  */
136 __must_check __malloc static void *fsck_malloc(size_t size)
137 {
138         assert(size);
139         void *p = malloc(size);
140
141         if (!p) {
142                 EMERG_LOG("malloc failed (size = %zu),  aborting\n",
143                         size);
144                 exit(EXIT_FAILURE);
145         }
146         return p;
147 }
148
149 /**
150  * Allocate memory and fill with zeros.
151  *
152  * \param size The desired new size.
153  *
154  * A wrapper for calloc(3) which exits on errors.
155  *
156  * \return A pointer to the allocated and zeroed-out memory, which is suitably
157  * aligned for any kind of variable.
158  *
159  * \sa calloc(3)
160  */
161 __must_check __malloc static void *fsck_calloc(size_t size)
162 {
163         void *ret = fsck_malloc(size);
164
165         memset(ret, 0, size);
166         return ret;
167 }
168
169 /**
170  * Save version of strdup().
171  *
172  * \param s The string to be duplicated.
173  *
174  * A wrapper for strdup(3). It calls \p exit(EXIT_FAILURE) on errors, i.e.
175  * there is no need to check the return value in the caller.
176  *
177  * \return A pointer to the duplicated string. If \p s was the NULL pointer,
178  * an pointer to an empty string is returned.
179  *
180  * \sa strdup(3)
181  */
182 __must_check __malloc static char *fsck_strdup(const char *s)
183 {
184         char *ret;
185
186         if ((ret = strdup(s? s: "")))
187                 return ret;
188         EMERG_LOG("strdup failed, aborting\n");
189         exit(EXIT_FAILURE);
190 }
191
192 /**
193  * Compare two osl objects pointing to unsigned integers of 32 bit size.
194  *
195  * \param obj1 Pointer to the first integer.
196  * \param obj2 Pointer to the second integer.
197  *
198  * \return The values required for an osl compare function.
199  *
200  * \sa osl_compare_func, osl_hash_compare().
201  */
202 static int uint32_compare(const struct osl_object *obj1, const struct osl_object *obj2)
203 {
204         uint32_t d1 = read_u32((const char *)obj1->data);
205         uint32_t d2 = read_u32((const char *)obj2->data);
206
207         if (d1 < d2)
208                 return 1;
209         if (d1 > d2)
210                 return -1;
211         return 0;
212 }
213
214 /**
215  * A wrapper for fchdir().
216  *
217  * \param fd An open file descriptor.
218  *
219  * \return Standard.
220  */
221 static inline int __fchdir(int fd)
222 {
223         if (fchdir(fd) >= 0)
224                 return 1;
225         return errno == EACCES? -E_FSCK_ACCESS : -E_FSCK_CHDIR;
226 }
227
228 /**
229  * Wrapper for chdir(2).
230  *
231  * \param path The specified directory.
232  *
233  * \return Standard.
234  */
235 _static_inline_ int __chdir(const char *path)
236 {
237         if (chdir(path) >= 0)
238                 return 1;
239         return errno == EACCES? -E_FSCK_ACCESS : -E_FSCK_CHDIR;
240 }
241
242 /**
243  * Save the cwd and open a given directory.
244  *
245  * \param dirname Path to the directory to open.
246  * \param dir Result pointer.
247  * \param cwd File descriptor of the current working directory.
248  *
249  * \return Standard.
250  *
251  * Opening the current directory (".") and calling fchdir() to return is
252  * usually faster and more reliable than saving cwd in some buffer and calling
253  * chdir() afterwards.
254  *
255  * If \a cwd is not \p NULL "." is opened and the resulting file descriptor is
256  * stored in \a cwd. If the function returns success, and \a cwd is not \p
257  * NULL, the caller must close this file descriptor (probably after calling
258  * fchdir(*cwd)).
259  *
260  * On errors, the function undos everything, so the caller needs neither close
261  * any files, nor change back to the original working directory.
262  *
263  * \sa getcwd(3).
264  *
265  */
266 static int fsck_opendir(const char *dirname, DIR **dir, int *cwd)
267 {
268         int ret;
269
270         if (cwd) {
271                 ret = osl_open(".", O_RDONLY, 0);
272                 if (ret < 0)
273                         return ret;
274                 *cwd = ret;
275         }
276         ret = __chdir(dirname);
277         if (ret < 0)
278                 goto close_cwd;
279         *dir = opendir(".");
280         if (*dir)
281                 return 1;
282         ret = errno == EACCES? -E_FSCK_ACCESS : -E_FSCK_OPENDIR;
283 /* Ignore return value of fchdir() and close(). We're busted anyway. */
284         if (cwd)
285                 fchdir(*cwd);
286 close_cwd:
287         if (cwd)
288                 close(*cwd);
289         return ret;
290 }
291
292
293
294 /**
295  * Traverse the given directory recursively.
296  *
297  * \param dirname The directory to traverse.
298  * \param func The function to call for each entry.
299  * \param private_data Pointer to an arbitrary data structure.
300  *
301  * For each regular file under \a dirname, the supplied function \a func is
302  * called.  The full path of the regular file and the \a private_data pointer
303  * are passed to \a func. Directories for which the calling process has no
304  * permissions to change to are silently ignored.
305  *
306  * \return Standard.
307  */
308 static int for_each_file_in_dir(const char *dirname,
309                 int (*func)(const char *, void *), void *private_data)
310 {
311         DIR *dir;
312         struct dirent *entry;
313         int cwd_fd, ret2, ret = fsck_opendir(dirname, &dir, &cwd_fd);
314
315         if (ret < 0)
316                 return ret == -E_FSCK_ACCESS? 1 : ret;
317         /* scan cwd recursively */
318         while ((entry = readdir(dir))) {
319                 mode_t m;
320                 char *tmp;
321                 struct stat s;
322
323                 if (!strcmp(entry->d_name, "."))
324                         continue;
325                 if (!strcmp(entry->d_name, ".."))
326                         continue;
327                 if (lstat(entry->d_name, &s) == -1)
328                         continue;
329                 m = s.st_mode;
330                 if (!S_ISREG(m) && !S_ISDIR(m))
331                         continue;
332                 tmp = make_message("%s/%s", dirname, entry->d_name);
333                 if (!S_ISDIR(m)) {
334                         ret = func(tmp, private_data);
335                         free(tmp);
336                         if (ret < 0)
337                                 goto out;
338                         continue;
339                 }
340                 /* directory */
341                 ret = for_each_file_in_dir(tmp, func, private_data);
342                 free(tmp);
343                 if (ret < 0)
344                         goto out;
345         }
346         ret = 1;
347 out:
348         closedir(dir);
349         ret2 = __fchdir(cwd_fd);
350         if (ret2 < 0 && ret >= 0)
351                 ret = ret2;
352         close(cwd_fd);
353         return ret;
354 }
355
356 /*
357  * check for object boundary violations
358  *
359  * test whether the range pointed to by the index entry for a given cell is
360  * contained in mapped data file. This should always be the case. Otherwise
361  * we are in real trouble.
362  */
363 static int check_range(struct osl_table *t, uint32_t row_num, uint32_t col_num)
364 {
365         char *index_entry;
366         struct osl_object obj;
367         struct osl_column *col;
368         int ret;
369         char *map_start, *obj_start;
370
371         ret = get_cell_index(t, row_num, col_num, &index_entry);
372         if (ret < 0)
373                 return ret;
374         ret = get_mapped_object(t, col_num, row_num, &obj);
375         if (ret < 0)
376                 return ret;
377         col = t->columns + col_num;
378         obj_start = obj.data;
379         map_start = col->data_map.data;
380 //      INFO_LOG("obj: %p..%p\n", obj_start, obj_start + obj.size);
381 //      INFO_LOG("map: %p..%p\n", map_start, map_start + col->data_map.size);
382         if (obj_start < map_start || obj_start + obj.size > map_start + col->data_map.size) {
383                 CRIT_LOG("range violation in row %u, col %u\n", row_num,
384                         col_num);
385                 return -E_FSCK_RANGE_VIOLATION;
386         }
387         DEBUG_LOG("col %u: ok\n", col_num);
388         return 1;
389 }
390
391 /*
392  * check all cells of the given table for boundary violations
393  */
394 static int check_index_ranges(struct osl_table *t)
395 {
396         int i, j, ret;
397
398         INFO_LOG("checking for range violations in index\n");
399         //DEBUG_LOG("%d rows. %d columns\n", t->num_rows, t->desc->num_columns);
400         t->num_invalid_rows = 0;
401         for (i = 0; i < t->num_rows; i++) {
402                 const struct osl_column_description *cd;
403
404                 if (row_is_invalid(t, i)) {
405                         t->num_invalid_rows++;
406                         continue;
407                 }
408                 FOR_EACH_MAPPED_COLUMN(j, t, cd) {
409                         ret = check_range(t, i, j);
410                         if (ret < 0) {
411                                 if (ret != -E_FSCK_RANGE_VIOLATION)
412                                         goto err;
413                                 ret = mark_row_invalid(t, i);
414                                 if (ret < 0)
415                                         goto err;
416                                 t->num_invalid_rows++;
417                                 break;
418                         }
419                 }
420
421         }
422         if (t->num_invalid_rows)
423                 NOTICE_LOG("ranges OK. %d invalid row(s) detected\n",
424                         t->num_invalid_rows);
425         else
426                 INFO_LOG("no invalid rows, no range violations, good\n");
427         return 1;
428 err:
429         return ret;
430 }
431
432 static int move_index_entry(struct osl_table *t, uint32_t dest, uint32_t src)
433 {
434         char *dest_ie, *src_ie;
435         int ret = get_row_index(t, dest, &dest_ie);
436
437         if (ret < 0)
438                 return ret;
439         ret = get_row_index(t, src, &src_ie);
440         if (ret < 0)
441                 return ret;
442         INFO_LOG("moving entry #%u to position %u\n", src, dest);
443         memcpy(dest_ie, src_ie, t->row_index_size);
444         return 1;
445 }
446
447 static int map_index(const struct osl_table_description *desc, struct osl_object *map)
448 {
449         char *filename = index_filename(desc);
450         int ret;
451
452         ret = mmap_full_file(filename, O_RDWR, &map->data, &map->size, NULL);
453         DEBUG_LOG("mapping index %s: ret: %d, size: %zu\n", filename, ret, map->size);
454         free(filename);
455         return ret;
456 }
457
458 static int prune_invalid_rows_from_index(struct osl_table *t)
459 {
460         uint32_t top = 0, bottom;
461         char *filename;
462         int ret;
463
464         if (!t->num_invalid_rows) {
465                 INFO_LOG("all rows are valid, good\n");
466                 return 1;
467         }
468         NOTICE_LOG("deleting %u invalid row(s) (%d bytes) from index\n",
469                 t->num_invalid_rows, t->row_index_size * t->num_invalid_rows);
470         bottom = t->num_rows - 1;
471         while (top < bottom) {
472                 if (!row_is_invalid(t, top)) {
473                         top++;
474                         continue;
475                 }
476                 while (bottom > top) {
477                         if (row_is_invalid(t, bottom)) {
478                                 bottom--;
479                                 continue;
480                         }
481                         /* move bottom index entry to top */
482                         move_index_entry(t, top, bottom);
483                         bottom--;
484                         top++;
485                         break;
486                 }
487         }
488         DEBUG_LOG("unmapping index\n");
489         osl_munmap(t->index_map.data, t->index_map.size);
490         filename = index_filename(t->desc);
491         ret = truncate_file(filename, t->row_index_size
492                 * t->num_invalid_rows);
493         free(filename);
494         if (ret < 0)
495                 return ret;
496         ret = map_index(t->desc, &t->index_map);
497         if (ret < 0)
498                 return ret;
499         t->num_rows = table_num_rows(t);
500         return 1;
501 }
502
503 static int check_for_invalid_objects(struct osl_table *t, uint32_t **lost_bytes)
504 {
505         int i, j, ret;
506         const struct osl_column_description *cd;
507         uint32_t *loss = fsck_malloc(sizeof(uint32_t) * t->desc->num_columns);
508
509         INFO_LOG("looking for mapped objects not contained in index\n");
510         /* first count used bytes */
511         FOR_EACH_MAPPED_COLUMN(i, t, cd) {
512                 loss[i] = t->columns[i].data_map.size;
513                 DEBUG_LOG("column %i data map: %u bytes\n", i,
514                         t->columns[i].data_map.size);
515                 for (j = 0; j < t->num_rows; j++) {
516                         struct osl_object obj;
517                         ret = get_mapped_object(t, i, j, &obj);
518                         if (ret < 0)
519                                 goto err;
520                         loss[i] -= obj.size;
521                 }
522         }
523         ret = 0;
524         FOR_EACH_MAPPED_COLUMN(i, t, cd) {
525                 if (loss[i]) {
526                         NOTICE_LOG("column %u contains %u lost bytes\n",
527                                 i, loss[i]);
528                         ret = 1;
529                 }
530         }
531         if (!ret)
532                 INFO_LOG("all mapped objects are valid, good\n");
533         *lost_bytes = loss;
534         return ret;
535 err:
536         free(loss);
537         return ret;
538 }
539
540 /* prune_invalid_rows() must be run on the table before calling this */
541 static int prune_mapped_column(struct osl_table *t, uint32_t col_num, int fd)
542 {
543         int i, ret;
544         uint32_t written = 0;
545         struct osl_column *col = t->columns + col_num;
546
547         INFO_LOG("pruning col %u\n", col_num);
548         for (i = 0; i < t->num_rows; i++) {
549                 struct osl_object obj;
550                 char *index_entry;
551
552                 DEBUG_LOG("checking row %u/%u\n", i, t->num_rows);
553                 ret = get_mapped_object(t, col_num, i, &obj);
554                 if (ret < 0)
555                         return ret;
556                 ret = _write_all(fd, (char *)(obj.data), obj.size);
557                 if (ret < 0)
558                         return ret;
559                 written += obj.size;
560                 ret = get_row_index(t, i, &index_entry);
561                 if (ret < 0)
562                         return ret;
563                 update_cell_index(index_entry, col, written, obj.size);
564         }
565         return 1;
566 }
567
568 static int prune_objects(struct osl_table *t, uint32_t *lost_bytes)
569 {
570         int i, ret;
571         const struct osl_column_description *cd;
572         char **col_filenames = fsck_calloc(t->desc->num_columns * sizeof(char *));
573         char **new_col_filenames = fsck_calloc(t->desc->num_columns * sizeof(char *));
574         char *idx_filename = index_filename(t->desc);
575         char *old_idx_filename = make_message("%s.bak", idx_filename);
576         int fd;
577
578         NOTICE_LOG("removing unreferenced objects from data files\n");
579         /* first make a copy of the index */
580         DEBUG_LOG("opening %s\n", old_idx_filename);
581         ret = osl_open(old_idx_filename, O_WRONLY | O_CREAT | O_TRUNC, 0644);
582         if (ret < 0)
583                 goto out_free;
584         fd = ret;
585         ret = _write_all(fd, t->index_map.data, t->index_map.size);
586         close(fd);
587         if (ret < 0)
588                 goto out_free;
589         FOR_EACH_MAPPED_COLUMN(i, t, cd) {
590                 if (!lost_bytes[i])
591                         continue;
592                 col_filenames[i] = column_filename(t, i);
593                 new_col_filenames[i] = make_message("%s.fsck", col_filenames[i]);
594                 ret = osl_open(new_col_filenames[i], O_WRONLY | O_CREAT | O_EXCL, 0644);
595                 if (ret < 0)
596                         goto out_unlink_data;
597                 fd = ret;
598                 ret = prune_mapped_column(t, i, fd);
599                 close(fd);
600                 if (ret < 0)
601                         goto out_unlink_data;
602         }
603         ret = unmap_table(t, OSL_MARK_CLEAN);
604         if (ret < 0)
605                 goto out_unlink_data;
606         FOR_EACH_MAPPED_COLUMN(i, t, cd) {
607                 if (!lost_bytes[i])
608                         continue;
609                 ret = osl_rename(new_col_filenames[i], col_filenames[i]);
610                 if (ret < 0) { /* we're kinda screwed here */
611                         CRIT_LOG("rename of col %i failed: %s\n", i,
612                                 osl_strerror(errno));
613                         goto out_free;
614                 }
615         }
616         unlink(old_idx_filename);
617         ret = map_table(t, 0);
618         goto out_free;
619 out_unlink_data:
620         FOR_EACH_MAPPED_COLUMN(i, t, cd)
621                 unlink(new_col_filenames[i]);
622 out_free:
623         free(old_idx_filename);
624         free(idx_filename);
625         FOR_EACH_MAPPED_COLUMN(i, t, cd) {
626                 free(col_filenames[i]);
627                 free(new_col_filenames[i]);
628         }
629         free(col_filenames);
630         free(new_col_filenames);
631         return ret;
632 }
633
634 static struct osl_column_description hash_tree_table_cols[] = {
635         {
636                 .storage_type = OSL_NO_STORAGE,
637                 .storage_flags = OSL_RBTREE | OSL_FIXED_SIZE | OSL_UNIQUE,
638                 .name = "hash",
639                 .compare_function = uint32_compare,
640                 .data_size = HASH_SIZE
641         },
642 };
643
644 static const struct osl_table_description hash_tree_table_desc = {
645         .dir = "/", /* irrelevant */
646         .name = "hash_tree",
647         .num_columns = 1,
648         .flags = 0,
649         .column_descriptions = hash_tree_table_cols
650 };
651
652 /**
653  * The hash_tree table contains all hashes of the disk storage name column.
654  * of each row. It is used for checking if a disk storage file has a reference
655  * in the table.
656  */
657 static struct osl_table *hash_tree_table;
658 static HASH_TYPE *hashes;
659
660 static int check_disk_storage_column(struct osl_table *t, int row_num,
661                 int col_num, char *ds_name, unsigned *num_missing_objects)
662 {
663         int ret;
664         struct stat statbuf;
665         char *path = disk_storage_path(t, col_num, ds_name);
666         unsigned dsnc = t->disk_storage_name_column;
667         struct osl_object obj;
668
669         DEBUG_LOG("checking if %s is a regular file\n", path);
670         ret = stat(path, &statbuf);
671         if (ret < 0 && errno == ENOENT) {
672                 struct osl_row *row;
673                 (*num_missing_objects)++;
674                 ERROR_LOG("row %d: object %s is missing\n", row_num, path);
675                 NOTICE_LOG("trying to delete row %d\n", row_num);
676                 ret = osl_get_row(t, dsnc, &obj, &row);
677                 if (ret < 0) {
678                         CRIT_LOG("unable to get row %d\n", row_num);
679                         mark_row_invalid(t, row_num);
680                         CRIT_LOG("Please re-run fsck\n");
681                         goto out;
682                 }
683                 ret = osl_del_row(t, row);
684                 if (ret < 0)
685                         goto out;
686         }
687 out:
688         free(path);
689         if (ret < 0)
690                 return ret;
691         ret = -E_FSCK_NOT_A_REGULAR_FILE;
692         if (!(S_IFREG & statbuf.st_mode))
693                 return ret;
694         return 1;
695 }
696
697 static int check_disk_storage_presence(struct osl_table *t)
698 {
699         int ret, i, j;
700         struct osl_object obj, hash_obj = {.size = HASH_SIZE};
701         char *ds_name;
702         const struct osl_column_description *cd;
703         unsigned dsnc = t->disk_storage_name_column, missing_objects = 0;
704
705         if (!t->num_rows)
706                 return 1;
707         hashes = fsck_malloc(t->num_rows * HASH_SIZE);
708         INFO_LOG("looking for missing disk storage objects\n");
709         for (i = 0; i < t->num_rows; i++) {
710                 if (row_is_invalid(t, i))
711                         continue;
712                 ret = get_mapped_object(t, dsnc, i, &obj);
713                 if (ret < 0)
714                         return ret;
715                 hash_object(&obj, hashes + i * HASH_SIZE);
716                 hash_obj.data = hashes + i * HASH_SIZE;
717                 osl_add_row(hash_tree_table, &hash_obj);
718                 ds_name = disk_storage_name_of_hash(t, hashes + i * HASH_SIZE);
719                 FOR_EACH_DISK_STORAGE_COLUMN(j, t, cd) {
720                         ret = check_disk_storage_column(t, i, j, ds_name,
721                                 &missing_objects);
722                         if (ret < 0)
723                                 goto err;
724                 }
725                 free(ds_name);
726         }
727         if (!missing_objects)
728                 INFO_LOG("all referenced disk storage objects exist, good\n");
729         else
730                 NOTICE_LOG("%d missing object(s)\n", missing_objects);
731         return missing_objects;
732 err:
733         free(ds_name);
734         return ret;
735 }
736
737 static int dummy_compare(const struct osl_object *obj1, const struct osl_object *obj2)
738 {
739         if (obj1 < obj2)
740                 return -1;
741         if (obj1 > obj2)
742                 return 1;
743         return 0;
744 }
745
746 static unsigned files_pruned;
747
748 int prune_disk_storage_file(const char *path, void *private_data)
749 {
750         HASH_TYPE hash[HASH_SIZE];
751         uint8_t flags = *(uint8_t *)private_data;
752         struct osl_object obj = {.data = hash, .size = HASH_SIZE};
753         struct osl_row *row;
754         int ret = -1;
755         size_t len = strlen(path);
756
757
758         DEBUG_LOG("path: %s\n", path);
759         if (flags & OSL_LARGE_TABLE) {
760                 if (len < HASH_SIZE * 2 + 2)
761                         goto invalid;
762 //              NOTICE_LOG("p: %s\n", path + len - 2 * HASH_SIZE - 1);
763                 ret = asc_to_hash(path + len - 2 * HASH_SIZE - 1, 1, hash);
764                 if (ret < 0)
765                         goto invalid;
766                 ret = asc_to_hash(path + len - 2 * HASH_SIZE + 2, HASH_SIZE - 1,
767                         hash + 1);
768                 if (ret < 0)
769                         goto invalid;
770 //              INFO_LOG("high: %x, low: %x, hash: %x\n", high, low, hash);
771         } else {
772                 if (len < 2 * HASH_SIZE + 1)
773                         goto invalid;
774                 ret = asc_to_hash(path + len - 2 * HASH_SIZE, 2 * HASH_SIZE, hash);
775                 if (ret < 0)
776                         goto invalid;
777 //              INFO_LOG("hash: %x\n", hash);
778         }
779 #if 0
780 {
781         char asc[2 * HASH_SIZE + 1];
782         hash_to_asc(hash, asc);
783         NOTICE_LOG("before: %s\nafter: %s\n", path, asc);
784 }
785 #endif
786         ret = osl_get_row(hash_tree_table, 0, &obj, &row);
787         if (ret >= 0)
788                 return 1;
789         NOTICE_LOG("unreferenced file in hash dir: %s\n", path);
790         goto remove;
791 invalid:
792         ERROR_LOG("could not read hash value of %s\n", path);
793 remove:
794         NOTICE_LOG("removing %s\n", path);
795         unlink(path);
796         files_pruned++;
797         return 1;
798 }
799
800 static int prune_disk_storage_files(struct osl_table *t)
801 {
802         int i, ret = 1;
803         const struct osl_column_description *cd;
804
805         INFO_LOG("looking for unreferenced disk storage files\n");
806         FOR_EACH_DISK_STORAGE_COLUMN(i, t, cd) {
807                 char *dirname = column_filename(t, i);
808                 uint8_t flags = t->desc->flags;
809                 ret = for_each_file_in_dir(dirname, prune_disk_storage_file,
810                         &flags);
811                 free(dirname);
812         }
813         if (files_pruned)
814                 NOTICE_LOG("%u disk storage files deleted\n",
815                         files_pruned);
816         else
817                 INFO_LOG("all files are are referenced, good\n");
818         return ret;
819 }
820
821 static int check_disk_storage_columns(struct osl_table *t)
822 {
823         int ret, i;
824         const struct osl_column_description *cd;
825
826         if (!t->num_disk_storage_columns) {
827                 INFO_LOG("no disk storage columns in table '%s', "
828                         "skipping checks\n", t->desc->name);
829                 return 1;
830         }
831         FOR_EACH_COLUMN(i, t->desc, cd)
832                 t->desc->column_descriptions[i].compare_function = dummy_compare;
833         ret = init_rbtrees(t);
834         if (ret < 0)
835                 return ret;
836         INFO_LOG("creating rbtree for disk storage hash values\n");
837         ret = osl_open_table(&hash_tree_table_desc, &hash_tree_table);
838         if (ret < 0)
839                 goto out;
840         ret = check_disk_storage_presence(t);
841         if (ret < 0)
842                 goto out_close_hash_tree;
843         ret = prune_disk_storage_files(t);
844 out_close_hash_tree:
845         osl_close_table(hash_tree_table, 0);
846         free(hashes);
847         hashes = NULL;
848 out:
849         clear_rbtrees(t); /* TODO why are we doing that here? Seems odd */
850         return ret;
851 }
852
853 static void set_dummy_contents(struct osl_table_description *desc)
854 {
855         int i;
856         struct osl_column_description *cd;
857
858         for (i = 0; i < desc->num_columns; i++) {
859                 cd = get_column_description(desc, i);
860                 cd->compare_function = dummy_compare;
861         }
862 }
863
864 static int fsck_init(struct osl_table_description *desc, struct osl_table **t)
865 {
866         struct osl_object map;
867         int ret = map_index(desc, &map);
868
869         if (ret < 0)
870                 goto out;
871         ret = read_table_desc(&map, desc);
872         if (ret < 0) {
873                 osl_munmap(map.data, map.size);
874                 goto out;
875         }
876         set_dummy_contents(desc);
877         ret = init_table_structure(desc, t);
878         if (ret < 0) {
879                 osl_munmap(map.data, map.size);
880                 goto out;
881         }
882         DEBUG_LOG("unmapping index\n");
883         osl_munmap(map.data, map.size);
884         if (conf.force_given)
885                 ret = map_table(*t, (MAP_TBL_FL_IGNORE_DIRTY));
886         else
887                 ret = map_table(*t, 0);
888         if (ret >= 0) {
889                 (*t)->num_rows = table_num_rows(*t);
890                 DEBUG_LOG("index header size: %d\n", (*t)->index_header_size);
891                 DEBUG_LOG("row index size: %d\n", (*t)->row_index_size);
892         }
893 out:
894         return ret;
895 }
896
897 static void fsck_cleanup(struct osl_table *t)
898 {
899         int i;
900
901         if (!t)
902                 return;
903         if (t->desc->column_descriptions) {
904                 struct osl_column_description *cd;
905                 for (i = 0; i < t->desc->num_columns; i++) {
906                         cd = get_column_description(t->desc, i);
907                         free((char*)cd->name);
908                 }
909                 free(t->desc->column_descriptions);
910         }
911         free(t->columns);
912         free(t);
913
914 }
915
916 #define ST_CASE(st) case st: return #st
917
918 const char *get_asc_storage_type(enum osl_storage_type st)
919 {
920         switch (st) {
921                 ST_CASE(OSL_MAPPED_STORAGE);
922                 ST_CASE(OSL_DISK_STORAGE);
923                 ST_CASE(OSL_NO_STORAGE);
924         }
925         return NULL;
926 }
927
928 #define APPEND_ASC_SF(sf, flag, str) do { if (sf & flag) { \
929         if (str) str = make_message("%s%s", str, " | " # flag); \
930         else str = fsck_strdup(#flag); }} while (0)
931
932
933 char *get_asc_storage_flags(enum osl_storage_type sf)
934 {
935         char *asc_sf = NULL;
936
937         APPEND_ASC_SF(sf, OSL_RBTREE, asc_sf);
938         APPEND_ASC_SF(sf, OSL_FIXED_SIZE, asc_sf);
939         APPEND_ASC_SF(sf, OSL_UNIQUE, asc_sf);
940         return asc_sf;
941 }
942
943 static int dump_table_desc(struct osl_table *t, int fd)
944 {
945         const struct osl_table_description *desc = t->desc;
946         int ret, i;
947         struct osl_column_description *cd;
948         char *msg = make_message("static struct osl_column_description cols[] = {\n");
949         ret = _write_all(fd, msg, strlen(msg));
950         if (ret < 0)
951                 return ret;
952         free(msg);
953         FOR_EACH_COLUMN(i, desc, cd) {
954                 const char *asc_st;
955                 msg = make_message("\t[%d] = {\n", i);
956                 ret = _write_all(fd, msg, strlen(msg));
957                 if (ret < 0)
958                         return ret;
959                 free(msg);
960                 asc_st = get_asc_storage_type(cd->storage_type);
961                 msg = make_message("\t\t.storage_type = %s,\n", asc_st);
962                 ret = _write_all(fd, msg, strlen(msg));
963                 if (ret < 0)
964                         return ret;
965                 free(msg);
966                 if (cd->storage_flags) {
967                         char *asc_sf = get_asc_storage_flags(cd->storage_flags);
968                         msg = make_message("\t\t,storage_flags = %s,\n", asc_sf);
969                         free(asc_sf);
970                         ret = _write_all(fd, msg, strlen(msg));
971                         if (ret < 0)
972                                 return ret;
973                         free(msg);
974                 }
975                 if (cd->storage_flags & OSL_FIXED_SIZE) {
976                         msg = make_message("\t\t.data_size = %u,\n", cd->data_size);
977                         ret = _write_all(fd, msg, strlen(msg));
978                         if (ret < 0)
979                                 return ret;
980                         free(msg);
981                 }
982                 msg = make_message("\t\t.name = \"%s\",\n", cd->name);
983                 ret = _write_all(fd, msg, strlen(msg));
984                 if (ret < 0)
985                         return ret;
986                 free(msg);
987                 if (cd->storage_flags & OSL_RBTREE) {
988                         msg = make_message("\t\t.compare_function = compare_func,\n");
989                         ret = _write_all(fd, msg, strlen(msg));
990                         if (ret < 0)
991                                 return ret;
992                         free(msg);
993                 }
994                 msg = make_message("\t},\n");
995                 ret = _write_all(fd, msg, strlen(msg));
996                 if (ret < 0)
997                         return ret;
998                 free(msg);
999         }
1000         msg = make_message("};\n");
1001         ret = _write_all(fd, msg, strlen(msg));
1002         if (ret < 0)
1003                 return ret;
1004         free(msg);
1005         return 1;
1006 }
1007
1008 static int dump_row(struct osl_table *t, unsigned row_num, const char *row_dir)
1009 {
1010         int ret, i;
1011         const struct osl_column_description *cd;
1012         unsigned dsnc;
1013         struct osl_object obj;
1014         char *ds_name;
1015         HASH_TYPE hash[HASH_SIZE];
1016         char *filename;
1017
1018         FOR_EACH_MAPPED_COLUMN(i, t, cd) {
1019                 ret = get_mapped_object(t, i, row_num, &obj);
1020                 if (ret < 0)
1021                         return ret;
1022                 filename = make_message("%s/col_%03u", row_dir, i);
1023                 ret = write_file(filename, obj.data, obj.size);
1024                 free(filename);
1025                 if (ret < 0)
1026                         return ret;
1027         }
1028         if (!t->num_disk_storage_columns)
1029                 return 1;
1030         dsnc = t->disk_storage_name_column;
1031         ret = get_mapped_object(t, dsnc, row_num, &obj);
1032         if (ret < 0)
1033                 return ret;
1034         hash_object(&obj, hash);
1035         ds_name = disk_storage_name_of_hash(t, hash);
1036         FOR_EACH_DISK_STORAGE_COLUMN(i, t, cd) {
1037                 filename = disk_storage_path(t, i, ds_name);
1038                 ret = mmap_full_file(filename, O_RDONLY, &obj.data, &obj.size, NULL);
1039                 free(filename);
1040                 if (ret < 0)
1041                         goto out;
1042                 filename = make_message("%s/col_%03u", row_dir, i);
1043                 ret = write_file(filename, obj.data, obj.size);
1044                 free(filename);
1045                 if (ret < 0)
1046                         goto out;
1047         }
1048         ret = 1;
1049 out:
1050         free(ds_name);
1051         return ret;
1052 }
1053
1054 static int dump_rows(char *dump_dir, struct osl_table *t)
1055 {
1056         unsigned i;
1057         char *current_dir = NULL;
1058         int ret = 0;
1059
1060         for (i = 0; i < t->num_rows; i++) {
1061                 char *row_dir;
1062                 if (row_is_invalid(t, i))
1063                         continue;
1064                 if (!(i % 1000)) {
1065                         free(current_dir);
1066                         current_dir = make_message("%s/rows_%u-%u", dump_dir, i, i + 999);
1067                         NOTICE_LOG("dumping rows %u - %u\n", i, i + 999);
1068                         ret = osl_mkdir(current_dir, 0777);
1069                         if (ret < 0 && ret != -E_OSL_DIR_EXISTS)
1070                                 goto out;
1071                 }
1072                 row_dir = make_message("%s/row_%03u", current_dir, i);
1073                 ret = osl_mkdir(row_dir, 0777);
1074                 if (ret < 0 && ret != -E_OSL_DIR_EXISTS) {
1075                         free(row_dir);
1076                         goto out;
1077                 }
1078                 ret = dump_row(t, i, row_dir);
1079                 free(row_dir);
1080                 if (ret < 0)
1081                         goto out;
1082         }
1083 out:
1084         free(current_dir);
1085         return ret;
1086 }
1087
1088 static int dump_table(char *dump_dir, struct osl_table_description *desc)
1089 {
1090         struct osl_table *t = NULL;
1091         int fd, ret = fsck_init(desc, &t);
1092         char *desc_file;
1093         char *table_dump_dir = NULL;
1094
1095         if (ret < 0)
1096                 goto out;
1097         ret = osl_mkdir(dump_dir, 0777);
1098         if (ret < 0 && ret != -E_OSL_DIR_EXISTS)
1099                 goto out;
1100         table_dump_dir = make_message("%s/%s", dump_dir, desc->name);
1101         ret = osl_mkdir(table_dump_dir, 0777);
1102         if (ret < 0 && ret != -E_OSL_DIR_EXISTS)
1103                 goto out;
1104         desc_file = make_message("%s/table_description.c", table_dump_dir);
1105         ret = osl_open(desc_file, O_WRONLY | O_CREAT | O_EXCL, 0644);
1106         free(desc_file);
1107         if (ret < 0)
1108                 goto out;
1109         fd = ret;
1110         ret = dump_table_desc(t, fd);
1111         close(fd);
1112         if (ret < 0)
1113                 goto out;
1114         ret = dump_rows(table_dump_dir, t);
1115 out:
1116         free(table_dump_dir);
1117         fsck_cleanup(t);
1118         return ret;
1119 }
1120
1121 static int fsck(struct osl_table_description *desc)
1122 {
1123         int ret;
1124         struct osl_table *t = NULL;
1125         uint32_t *lost_bytes = NULL;
1126
1127         ret = fsck_init(desc, &t);
1128         if (ret < 0)
1129                 goto out;
1130         ret = check_index_ranges(t);
1131         if (ret < 0)
1132                 goto out_unmap;
1133         ret = check_disk_storage_columns(t);
1134         if (ret < 0)
1135                 goto out_unmap;
1136         ret = prune_invalid_rows_from_index(t);
1137         if (ret < 0)
1138                 goto out_unmap;
1139         ret = check_for_invalid_objects(t, &lost_bytes);
1140         if (ret < 0)
1141                 goto out_unmap;
1142         if (ret > 0) { /* at least one mapped data file needs pruning */
1143                 ret = prune_objects(t, lost_bytes);
1144                 if (ret < 0)
1145                         goto out_unmap;
1146         }
1147         free(lost_bytes);
1148 out_unmap:
1149         unmap_table(t, OSL_MARK_CLEAN);
1150 out:
1151         fsck_cleanup(t);
1152         return ret;
1153 }
1154
1155 static int check_table(char *db_dir, char *table_name)
1156 {
1157         struct osl_table_description desc = {
1158                 .column_descriptions = NULL,
1159                 .dir = db_dir,
1160                 .name = table_name
1161         };
1162         int ret;
1163
1164         INFO_LOG("checking table %s\n", table_name);
1165         if (!conf.no_fsck_given) {
1166                 ret = fsck(&desc);
1167                 if (ret < 0)
1168                         goto out;
1169         }
1170         ret = 1;
1171         if (!conf.dump_dir_given || !*conf.dump_dir_arg)
1172                 goto out;
1173         ret = dump_table(conf.dump_dir_arg, &desc);
1174 out:
1175         if (ret < 0)
1176                 ERROR_LOG("failed to check table %s: %s\n", table_name,
1177                         fsck_strerror(-ret));
1178         else
1179                 NOTICE_LOG("successfully checked table %s\n", table_name);
1180         return ret;
1181 }
1182
1183 static int check_all_tables(char *db_dir)
1184 {
1185         DIR *dir;
1186         struct dirent *entry;
1187         int cwd_fd, ret2, ret = fsck_opendir(db_dir, &dir, &cwd_fd);
1188
1189         if (ret < 0)
1190                 return ret;
1191         while ((entry = readdir(dir))) {
1192                 mode_t m;
1193                 struct stat s;
1194                 if (!strcmp(entry->d_name, "."))
1195                         continue;
1196                 if (!strcmp(entry->d_name, ".."))
1197                         continue;
1198                 if (lstat(entry->d_name, &s) == -1)
1199                         continue;
1200                 m = s.st_mode;
1201                 if (!S_ISDIR(m))
1202                         continue;
1203                 ret = check_table(db_dir, entry->d_name);
1204                 if (ret < 0)
1205                         break;
1206         }
1207         closedir(dir);
1208         ret2 = __fchdir(cwd_fd);
1209         if (ret2 < 0 && ret >= 0)
1210                 ret = ret2;
1211         close(cwd_fd);
1212         return ret;
1213 }
1214
1215 int main(int argc, char **argv)
1216 {
1217         int i, ret;
1218         struct fsck_cmdline_parser_params params = {
1219                 .override = 0,
1220                 .initialize = 1,
1221                 .check_required = 1,
1222                 .check_ambiguity = 1,
1223                 .print_errors = 1
1224         };
1225         ret = fsck_cmdline_parser_ext(argc, argv, &conf, &params);
1226         if (ret < 0) {
1227                 loglevel = EMERG;
1228                 ret = -E_FSCK_SYNTAX;
1229                 goto out;
1230         }
1231         loglevel = conf.loglevel_arg;
1232         HANDLE_VERSION_FLAG("fsck", conf);
1233         INFO_LOG("database dir: %s\n", conf.database_dir_arg);
1234         if (!conf.inputs_num) {
1235                 ret = check_all_tables(conf.database_dir_arg);
1236                 goto out;
1237         }
1238         for (i = 0; i < conf.inputs_num; i++) {
1239                 ret = check_table(conf.database_dir_arg, conf.inputs[i]);
1240                 if (ret < 0)
1241                         break;
1242         }
1243 out:
1244         if (ret < 0) {
1245                 ERROR_LOG("%s\n", fsck_strerror(-ret));
1246                 if (conf.loglevel_arg > 1)
1247                         EMERG_LOG("re-run with \"--loglevel %d\" to increase verbosity\n",
1248                                 conf.loglevel_arg - 1);
1249         } else
1250                 NOTICE_LOG("success\n");
1251         return ret < 0? EXIT_FAILURE : EXIT_SUCCESS;
1252 }