1#include "builtin.h"
2#include "cache.h"
3#include "commit.h"
4#include "tree.h"
5#include "blob.h"
6#include "tag.h"
7#include "refs.h"
8#include "pack.h"
9#include "cache-tree.h"
10#include "tree-walk.h"
11#include "fsck.h"
12#include "parse-options.h"
13#include "dir.h"
14#include "progress.h"
15#include "streaming.h"
16#include "decorate.h"
17
18#define REACHABLE 0x0001
19#define SEEN 0x0002
20#define HAS_OBJ 0x0004
21
22static int show_root;
23static int show_tags;
24static int show_unreachable;
25static int include_reflogs = 1;
26static int check_full = 1;
27static int connectivity_only;
28static int check_strict;
29static int keep_cache_objects;
30static struct fsck_options fsck_walk_options = FSCK_OPTIONS_DEFAULT;
31static struct fsck_options fsck_obj_options = FSCK_OPTIONS_DEFAULT;
32static struct object_id head_oid;
33static const char *head_points_at;
34static int errors_found;
35static int write_lost_and_found;
36static int verbose;
37static int show_progress = -1;
38static int show_dangling = 1;
39static int name_objects;
40#define ERROR_OBJECT 01
41#define ERROR_REACHABLE 02
42#define ERROR_PACK 04
43#define ERROR_REFS 010
44
45static const char *describe_object(struct object *obj)
46{
47 static struct strbuf buf = STRBUF_INIT;
48 char *name = name_objects ?
49 lookup_decoration(fsck_walk_options.object_names, obj) : NULL;
50
51 strbuf_reset(&buf);
52 strbuf_addstr(&buf, oid_to_hex(&obj->oid));
53 if (name)
54 strbuf_addf(&buf, " (%s)", name);
55
56 return buf.buf;
57}
58
59static const char *printable_type(struct object *obj)
60{
61 const char *ret;
62
63 if (obj->type == OBJ_NONE) {
64 enum object_type type = sha1_object_info(obj->oid.hash, NULL);
65 if (type > 0)
66 object_as_type(obj, type, 0);
67 }
68
69 ret = typename(obj->type);
70 if (!ret)
71 ret = "unknown";
72
73 return ret;
74}
75
76static int fsck_config(const char *var, const char *value, void *cb)
77{
78 if (strcmp(var, "fsck.skiplist") == 0) {
79 const char *path;
80 struct strbuf sb = STRBUF_INIT;
81
82 if (git_config_pathname(&path, var, value))
83 return 1;
84 strbuf_addf(&sb, "skiplist=%s", path);
85 free((char *)path);
86 fsck_set_msg_types(&fsck_obj_options, sb.buf);
87 strbuf_release(&sb);
88 return 0;
89 }
90
91 if (skip_prefix(var, "fsck.", &var)) {
92 fsck_set_msg_type(&fsck_obj_options, var, value);
93 return 0;
94 }
95
96 return git_default_config(var, value, cb);
97}
98
99static void objreport(struct object *obj, const char *msg_type,
100 const char *err)
101{
102 fprintf(stderr, "%s in %s %s: %s\n",
103 msg_type, printable_type(obj), describe_object(obj), err);
104}
105
106static int objerror(struct object *obj, const char *err)
107{
108 errors_found |= ERROR_OBJECT;
109 objreport(obj, "error", err);
110 return -1;
111}
112
113static int fsck_error_func(struct fsck_options *o,
114 struct object *obj, int type, const char *message)
115{
116 objreport(obj, (type == FSCK_WARN) ? "warning" : "error", message);
117 return (type == FSCK_WARN) ? 0 : 1;
118}
119
120static struct object_array pending;
121
122static int mark_object(struct object *obj, int type, void *data, struct fsck_options *options)
123{
124 struct object *parent = data;
125
126 /*
127 * The only case data is NULL or type is OBJ_ANY is when
128 * mark_object_reachable() calls us. All the callers of
129 * that function has non-NULL obj hence ...
130 */
131 if (!obj) {
132 /* ... these references to parent->fld are safe here */
133 printf("broken link from %7s %s\n",
134 printable_type(parent), describe_object(parent));
135 printf("broken link from %7s %s\n",
136 (type == OBJ_ANY ? "unknown" : typename(type)), "unknown");
137 errors_found |= ERROR_REACHABLE;
138 return 1;
139 }
140
141 if (type != OBJ_ANY && obj->type != type)
142 /* ... and the reference to parent is safe here */
143 objerror(parent, "wrong object type in link");
144
145 if (obj->flags & REACHABLE)
146 return 0;
147 obj->flags |= REACHABLE;
148 if (!(obj->flags & HAS_OBJ)) {
149 if (parent && !has_object_file(&obj->oid)) {
150 printf("broken link from %7s %s\n",
151 printable_type(parent), describe_object(parent));
152 printf(" to %7s %s\n",
153 printable_type(obj), describe_object(obj));
154 errors_found |= ERROR_REACHABLE;
155 }
156 return 1;
157 }
158
159 add_object_array(obj, NULL, &pending);
160 return 0;
161}
162
163static void mark_object_reachable(struct object *obj)
164{
165 mark_object(obj, OBJ_ANY, NULL, NULL);
166}
167
168static int traverse_one_object(struct object *obj)
169{
170 int result;
171 struct tree *tree = NULL;
172
173 if (obj->type == OBJ_TREE) {
174 tree = (struct tree *)obj;
175 if (parse_tree(tree) < 0)
176 return 1; /* error already displayed */
177 }
178 result = fsck_walk(obj, obj, &fsck_walk_options);
179 if (tree)
180 free_tree_buffer(tree);
181 return result;
182}
183
184static int traverse_reachable(void)
185{
186 struct progress *progress = NULL;
187 unsigned int nr = 0;
188 int result = 0;
189 if (show_progress)
190 progress = start_progress_delay(_("Checking connectivity"), 0, 0, 2);
191 while (pending.nr) {
192 struct object_array_entry *entry;
193 struct object *obj;
194
195 entry = pending.objects + --pending.nr;
196 obj = entry->item;
197 result |= traverse_one_object(obj);
198 display_progress(progress, ++nr);
199 }
200 stop_progress(&progress);
201 return !!result;
202}
203
204static int mark_used(struct object *obj, int type, void *data, struct fsck_options *options)
205{
206 if (!obj)
207 return 1;
208 obj->used = 1;
209 return 0;
210}
211
212/*
213 * Check a single reachable object
214 */
215static void check_reachable_object(struct object *obj)
216{
217 /*
218 * We obviously want the object to be parsed,
219 * except if it was in a pack-file and we didn't
220 * do a full fsck
221 */
222 if (!(obj->flags & HAS_OBJ)) {
223 if (has_sha1_pack(obj->oid.hash))
224 return; /* it is in pack - forget about it */
225 printf("missing %s %s\n", printable_type(obj),
226 describe_object(obj));
227 errors_found |= ERROR_REACHABLE;
228 return;
229 }
230}
231
232/*
233 * Check a single unreachable object
234 */
235static void check_unreachable_object(struct object *obj)
236{
237 /*
238 * Missing unreachable object? Ignore it. It's not like
239 * we miss it (since it can't be reached), nor do we want
240 * to complain about it being unreachable (since it does
241 * not exist).
242 */
243 if (!(obj->flags & HAS_OBJ))
244 return;
245
246 /*
247 * Unreachable object that exists? Show it if asked to,
248 * since this is something that is prunable.
249 */
250 if (show_unreachable) {
251 printf("unreachable %s %s\n", printable_type(obj),
252 describe_object(obj));
253 return;
254 }
255
256 /*
257 * "!used" means that nothing at all points to it, including
258 * other unreachable objects. In other words, it's the "tip"
259 * of some set of unreachable objects, usually a commit that
260 * got dropped.
261 *
262 * Such starting points are more interesting than some random
263 * set of unreachable objects, so we show them even if the user
264 * hasn't asked for _all_ unreachable objects. If you have
265 * deleted a branch by mistake, this is a prime candidate to
266 * start looking at, for example.
267 */
268 if (!obj->used) {
269 if (show_dangling)
270 printf("dangling %s %s\n", printable_type(obj),
271 describe_object(obj));
272 if (write_lost_and_found) {
273 char *filename = git_pathdup("lost-found/%s/%s",
274 obj->type == OBJ_COMMIT ? "commit" : "other",
275 describe_object(obj));
276 FILE *f;
277
278 if (safe_create_leading_directories_const(filename)) {
279 error("Could not create lost-found");
280 free(filename);
281 return;
282 }
283 if (!(f = fopen(filename, "w")))
284 die_errno("Could not open '%s'", filename);
285 if (obj->type == OBJ_BLOB) {
286 if (stream_blob_to_fd(fileno(f), &obj->oid, NULL, 1))
287 die_errno("Could not write '%s'", filename);
288 } else
289 fprintf(f, "%s\n", describe_object(obj));
290 if (fclose(f))
291 die_errno("Could not finish '%s'",
292 filename);
293 free(filename);
294 }
295 return;
296 }
297
298 /*
299 * Otherwise? It's there, it's unreachable, and some other unreachable
300 * object points to it. Ignore it - it's not interesting, and we showed
301 * all the interesting cases above.
302 */
303}
304
305static void check_object(struct object *obj)
306{
307 if (verbose)
308 fprintf(stderr, "Checking %s\n", describe_object(obj));
309
310 if (obj->flags & REACHABLE)
311 check_reachable_object(obj);
312 else
313 check_unreachable_object(obj);
314}
315
316static void check_connectivity(void)
317{
318 int i, max;
319
320 /* Traverse the pending reachable objects */
321 traverse_reachable();
322
323 /* Look up all the requirements, warn about missing objects.. */
324 max = get_max_object_index();
325 if (verbose)
326 fprintf(stderr, "Checking connectivity (%d objects)\n", max);
327
328 for (i = 0; i < max; i++) {
329 struct object *obj = get_indexed_object(i);
330
331 if (obj)
332 check_object(obj);
333 }
334}
335
336static int fsck_obj(struct object *obj)
337{
338 if (obj->flags & SEEN)
339 return 0;
340 obj->flags |= SEEN;
341
342 if (verbose)
343 fprintf(stderr, "Checking %s %s\n",
344 printable_type(obj), describe_object(obj));
345
346 if (fsck_walk(obj, NULL, &fsck_obj_options))
347 objerror(obj, "broken links");
348 if (fsck_object(obj, NULL, 0, &fsck_obj_options))
349 return -1;
350
351 if (obj->type == OBJ_TREE) {
352 struct tree *item = (struct tree *) obj;
353
354 free_tree_buffer(item);
355 }
356
357 if (obj->type == OBJ_COMMIT) {
358 struct commit *commit = (struct commit *) obj;
359
360 free_commit_buffer(commit);
361
362 if (!commit->parents && show_root)
363 printf("root %s\n", describe_object(&commit->object));
364 }
365
366 if (obj->type == OBJ_TAG) {
367 struct tag *tag = (struct tag *) obj;
368
369 if (show_tags && tag->tagged) {
370 printf("tagged %s %s", printable_type(tag->tagged),
371 describe_object(tag->tagged));
372 printf(" (%s) in %s\n", tag->tag,
373 describe_object(&tag->object));
374 }
375 }
376
377 return 0;
378}
379
380static int fsck_sha1(const unsigned char *sha1)
381{
382 struct object *obj = parse_object(sha1);
383 if (!obj) {
384 errors_found |= ERROR_OBJECT;
385 return error("%s: object corrupt or missing",
386 sha1_to_hex(sha1));
387 }
388 obj->flags |= HAS_OBJ;
389 return fsck_obj(obj);
390}
391
392static int fsck_obj_buffer(const unsigned char *sha1, enum object_type type,
393 unsigned long size, void *buffer, int *eaten)
394{
395 /*
396 * Note, buffer may be NULL if type is OBJ_BLOB. See
397 * verify_packfile(), data_valid variable for details.
398 */
399 struct object *obj;
400 obj = parse_object_buffer(sha1, type, size, buffer, eaten);
401 if (!obj) {
402 errors_found |= ERROR_OBJECT;
403 return error("%s: object corrupt or missing", sha1_to_hex(sha1));
404 }
405 obj->flags = HAS_OBJ;
406 return fsck_obj(obj);
407}
408
409static int default_refs;
410
411static void fsck_handle_reflog_sha1(const char *refname, unsigned char *sha1,
412 unsigned long timestamp)
413{
414 struct object *obj;
415
416 if (!is_null_sha1(sha1)) {
417 obj = lookup_object(sha1);
418 if (obj && (obj->flags & HAS_OBJ)) {
419 if (timestamp && name_objects)
420 add_decoration(fsck_walk_options.object_names,
421 obj,
422 xstrfmt("%s@{%ld}", refname, timestamp));
423 obj->used = 1;
424 mark_object_reachable(obj);
425 } else {
426 error("%s: invalid reflog entry %s", refname, sha1_to_hex(sha1));
427 errors_found |= ERROR_REACHABLE;
428 }
429 }
430}
431
432static int fsck_handle_reflog_ent(unsigned char *osha1, unsigned char *nsha1,
433 const char *email, unsigned long timestamp, int tz,
434 const char *message, void *cb_data)
435{
436 const char *refname = cb_data;
437
438 if (verbose)
439 fprintf(stderr, "Checking reflog %s->%s\n",
440 sha1_to_hex(osha1), sha1_to_hex(nsha1));
441
442 fsck_handle_reflog_sha1(refname, osha1, 0);
443 fsck_handle_reflog_sha1(refname, nsha1, timestamp);
444 return 0;
445}
446
447static int fsck_handle_reflog(const char *logname, const struct object_id *oid,
448 int flag, void *cb_data)
449{
450 for_each_reflog_ent(logname, fsck_handle_reflog_ent, (void *)logname);
451 return 0;
452}
453
454static int fsck_handle_ref(const char *refname, const struct object_id *oid,
455 int flag, void *cb_data)
456{
457 struct object *obj;
458
459 obj = parse_object(oid->hash);
460 if (!obj) {
461 error("%s: invalid sha1 pointer %s", refname, oid_to_hex(oid));
462 errors_found |= ERROR_REACHABLE;
463 /* We'll continue with the rest despite the error.. */
464 return 0;
465 }
466 if (obj->type != OBJ_COMMIT && is_branch(refname)) {
467 error("%s: not a commit", refname);
468 errors_found |= ERROR_REFS;
469 }
470 default_refs++;
471 obj->used = 1;
472 if (name_objects)
473 add_decoration(fsck_walk_options.object_names,
474 obj, xstrdup(refname));
475 mark_object_reachable(obj);
476
477 return 0;
478}
479
480static void get_default_heads(void)
481{
482 if (head_points_at && !is_null_oid(&head_oid))
483 fsck_handle_ref("HEAD", &head_oid, 0, NULL);
484 for_each_rawref(fsck_handle_ref, NULL);
485 if (include_reflogs)
486 for_each_reflog(fsck_handle_reflog, NULL);
487
488 /*
489 * Not having any default heads isn't really fatal, but
490 * it does mean that "--unreachable" no longer makes any
491 * sense (since in this case everything will obviously
492 * be unreachable by definition.
493 *
494 * Showing dangling objects is valid, though (as those
495 * dangling objects are likely lost heads).
496 *
497 * So we just print a warning about it, and clear the
498 * "show_unreachable" flag.
499 */
500 if (!default_refs) {
501 fprintf(stderr, "notice: No default references\n");
502 show_unreachable = 0;
503 }
504}
505
506static int fsck_loose(const unsigned char *sha1, const char *path, void *data)
507{
508 if (fsck_sha1(sha1))
509 errors_found |= ERROR_OBJECT;
510 return 0;
511}
512
513static int fsck_cruft(const char *basename, const char *path, void *data)
514{
515 if (!starts_with(basename, "tmp_obj_"))
516 fprintf(stderr, "bad sha1 file: %s\n", path);
517 return 0;
518}
519
520static int fsck_subdir(int nr, const char *path, void *progress)
521{
522 display_progress(progress, nr + 1);
523 return 0;
524}
525
526static void fsck_object_dir(const char *path)
527{
528 struct progress *progress = NULL;
529
530 if (verbose)
531 fprintf(stderr, "Checking object directory\n");
532
533 if (show_progress)
534 progress = start_progress(_("Checking object directories"), 256);
535
536 for_each_loose_file_in_objdir(path, fsck_loose, fsck_cruft, fsck_subdir,
537 progress);
538 display_progress(progress, 256);
539 stop_progress(&progress);
540}
541
542static int fsck_head_link(void)
543{
544 int null_is_error = 0;
545
546 if (verbose)
547 fprintf(stderr, "Checking HEAD link\n");
548
549 head_points_at = resolve_ref_unsafe("HEAD", 0, head_oid.hash, NULL);
550 if (!head_points_at) {
551 errors_found |= ERROR_REFS;
552 return error("Invalid HEAD");
553 }
554 if (!strcmp(head_points_at, "HEAD"))
555 /* detached HEAD */
556 null_is_error = 1;
557 else if (!starts_with(head_points_at, "refs/heads/")) {
558 errors_found |= ERROR_REFS;
559 return error("HEAD points to something strange (%s)",
560 head_points_at);
561 }
562 if (is_null_oid(&head_oid)) {
563 if (null_is_error) {
564 errors_found |= ERROR_REFS;
565 return error("HEAD: detached HEAD points at nothing");
566 }
567 fprintf(stderr, "notice: HEAD points to an unborn branch (%s)\n",
568 head_points_at + 11);
569 }
570 return 0;
571}
572
573static int fsck_cache_tree(struct cache_tree *it)
574{
575 int i;
576 int err = 0;
577
578 if (verbose)
579 fprintf(stderr, "Checking cache tree\n");
580
581 if (0 <= it->entry_count) {
582 struct object *obj = parse_object(it->sha1);
583 if (!obj) {
584 error("%s: invalid sha1 pointer in cache-tree",
585 sha1_to_hex(it->sha1));
586 errors_found |= ERROR_REFS;
587 return 1;
588 }
589 obj->used = 1;
590 if (name_objects)
591 add_decoration(fsck_walk_options.object_names,
592 obj, xstrdup(":"));
593 mark_object_reachable(obj);
594 if (obj->type != OBJ_TREE)
595 err |= objerror(obj, "non-tree in cache-tree");
596 }
597 for (i = 0; i < it->subtree_nr; i++)
598 err |= fsck_cache_tree(it->down[i]->cache_tree);
599 return err;
600}
601
602static void mark_object_for_connectivity(const unsigned char *sha1)
603{
604 struct object *obj = lookup_unknown_object(sha1);
605 obj->flags |= HAS_OBJ;
606}
607
608static int mark_loose_for_connectivity(const unsigned char *sha1,
609 const char *path,
610 void *data)
611{
612 mark_object_for_connectivity(sha1);
613 return 0;
614}
615
616static int mark_packed_for_connectivity(const unsigned char *sha1,
617 struct packed_git *pack,
618 uint32_t pos,
619 void *data)
620{
621 mark_object_for_connectivity(sha1);
622 return 0;
623}
624
625static char const * const fsck_usage[] = {
626 N_("git fsck [<options>] [<object>...]"),
627 NULL
628};
629
630static struct option fsck_opts[] = {
631 OPT__VERBOSE(&verbose, N_("be verbose")),
632 OPT_BOOL(0, "unreachable", &show_unreachable, N_("show unreachable objects")),
633 OPT_BOOL(0, "dangling", &show_dangling, N_("show dangling objects")),
634 OPT_BOOL(0, "tags", &show_tags, N_("report tags")),
635 OPT_BOOL(0, "root", &show_root, N_("report root nodes")),
636 OPT_BOOL(0, "cache", &keep_cache_objects, N_("make index objects head nodes")),
637 OPT_BOOL(0, "reflogs", &include_reflogs, N_("make reflogs head nodes (default)")),
638 OPT_BOOL(0, "full", &check_full, N_("also consider packs and alternate objects")),
639 OPT_BOOL(0, "connectivity-only", &connectivity_only, N_("check only connectivity")),
640 OPT_BOOL(0, "strict", &check_strict, N_("enable more strict checking")),
641 OPT_BOOL(0, "lost-found", &write_lost_and_found,
642 N_("write dangling objects in .git/lost-found")),
643 OPT_BOOL(0, "progress", &show_progress, N_("show progress")),
644 OPT_BOOL(0, "name-objects", &name_objects, N_("show verbose names for reachable objects")),
645 OPT_END(),
646};
647
648int cmd_fsck(int argc, const char **argv, const char *prefix)
649{
650 int i, heads;
651 struct alternate_object_database *alt;
652
653 errors_found = 0;
654 check_replace_refs = 0;
655
656 argc = parse_options(argc, argv, prefix, fsck_opts, fsck_usage, 0);
657
658 fsck_walk_options.walk = mark_object;
659 fsck_obj_options.walk = mark_used;
660 fsck_obj_options.error_func = fsck_error_func;
661 if (check_strict)
662 fsck_obj_options.strict = 1;
663
664 if (show_progress == -1)
665 show_progress = isatty(2);
666 if (verbose)
667 show_progress = 0;
668
669 if (write_lost_and_found) {
670 check_full = 1;
671 include_reflogs = 0;
672 }
673
674 if (name_objects)
675 fsck_walk_options.object_names =
676 xcalloc(1, sizeof(struct decoration));
677
678 git_config(fsck_config, NULL);
679
680 fsck_head_link();
681 if (connectivity_only) {
682 for_each_loose_object(mark_loose_for_connectivity, NULL, 0);
683 for_each_packed_object(mark_packed_for_connectivity, NULL, 0);
684 } else {
685 fsck_object_dir(get_object_directory());
686
687 prepare_alt_odb();
688 for (alt = alt_odb_list; alt; alt = alt->next)
689 fsck_object_dir(alt->path);
690
691 if (check_full) {
692 struct packed_git *p;
693 uint32_t total = 0, count = 0;
694 struct progress *progress = NULL;
695
696 prepare_packed_git();
697
698 if (show_progress) {
699 for (p = packed_git; p; p = p->next) {
700 if (open_pack_index(p))
701 continue;
702 total += p->num_objects;
703 }
704
705 progress = start_progress(_("Checking objects"), total);
706 }
707 for (p = packed_git; p; p = p->next) {
708 /* verify gives error messages itself */
709 if (verify_pack(p, fsck_obj_buffer,
710 progress, count))
711 errors_found |= ERROR_PACK;
712 count += p->num_objects;
713 }
714 stop_progress(&progress);
715 }
716 }
717
718 heads = 0;
719 for (i = 0; i < argc; i++) {
720 const char *arg = argv[i];
721 unsigned char sha1[20];
722 if (!get_sha1(arg, sha1)) {
723 struct object *obj = lookup_object(sha1);
724
725 if (!obj || !(obj->flags & HAS_OBJ)) {
726 error("%s: object missing", sha1_to_hex(sha1));
727 errors_found |= ERROR_OBJECT;
728 continue;
729 }
730
731 obj->used = 1;
732 if (name_objects)
733 add_decoration(fsck_walk_options.object_names,
734 obj, xstrdup(arg));
735 mark_object_reachable(obj);
736 heads++;
737 continue;
738 }
739 error("invalid parameter: expected sha1, got '%s'", arg);
740 errors_found |= ERROR_OBJECT;
741 }
742
743 /*
744 * If we've not been given any explicit head information, do the
745 * default ones from .git/refs. We also consider the index file
746 * in this case (ie this implies --cache).
747 */
748 if (!argc) {
749 get_default_heads();
750 keep_cache_objects = 1;
751 }
752
753 if (keep_cache_objects) {
754 read_cache();
755 for (i = 0; i < active_nr; i++) {
756 unsigned int mode;
757 struct blob *blob;
758 struct object *obj;
759
760 mode = active_cache[i]->ce_mode;
761 if (S_ISGITLINK(mode))
762 continue;
763 blob = lookup_blob(active_cache[i]->oid.hash);
764 if (!blob)
765 continue;
766 obj = &blob->object;
767 obj->used = 1;
768 if (name_objects)
769 add_decoration(fsck_walk_options.object_names,
770 obj,
771 xstrfmt(":%s", active_cache[i]->name));
772 mark_object_reachable(obj);
773 }
774 if (active_cache_tree)
775 fsck_cache_tree(active_cache_tree);
776 }
777
778 check_connectivity();
779 return errors_found;
780}