10 #include "cache-tree.h"
11 #include "tree-walk.h"
13 #include "parse-options.h"
16 #include "streaming.h"
20 #define REACHABLE 0x0001
22 #define HAS_OBJ 0x0004
23 /* This flag is set if something points to this object. */
28 static int show_unreachable;
29 static int include_reflogs = 1;
30 static int check_full = 1;
31 static int connectivity_only;
32 static int check_strict;
33 static int keep_cache_objects;
34 static struct fsck_options fsck_walk_options = FSCK_OPTIONS_DEFAULT;
35 static struct fsck_options fsck_obj_options = FSCK_OPTIONS_DEFAULT;
36 static struct object_id head_oid;
37 static const char *head_points_at;
38 static int errors_found;
39 static int write_lost_and_found;
41 static int show_progress = -1;
42 static int show_dangling = 1;
43 static int name_objects;
44 #define ERROR_OBJECT 01
45 #define ERROR_REACHABLE 02
47 #define ERROR_REFS 010
49 static const char *describe_object(struct object *obj)
51 static struct strbuf buf = STRBUF_INIT;
52 char *name = name_objects ?
53 lookup_decoration(fsck_walk_options.object_names, obj) : NULL;
56 strbuf_addstr(&buf, oid_to_hex(&obj->oid));
58 strbuf_addf(&buf, " (%s)", name);
63 static const char *printable_type(struct object *obj)
67 if (obj->type == OBJ_NONE) {
68 enum object_type type = sha1_object_info(obj->oid.hash, NULL);
70 object_as_type(obj, type, 0);
73 ret = typename(obj->type);
80 static int fsck_config(const char *var, const char *value, void *cb)
82 if (strcmp(var, "fsck.skiplist") == 0) {
84 struct strbuf sb = STRBUF_INIT;
86 if (git_config_pathname(&path, var, value))
88 strbuf_addf(&sb, "skiplist=%s", path);
90 fsck_set_msg_types(&fsck_obj_options, sb.buf);
95 if (skip_prefix(var, "fsck.", &var)) {
96 fsck_set_msg_type(&fsck_obj_options, var, value);
100 return git_default_config(var, value, cb);
103 static void objreport(struct object *obj, const char *msg_type,
106 fprintf(stderr, "%s in %s %s: %s\n",
107 msg_type, printable_type(obj), describe_object(obj), err);
110 static int objerror(struct object *obj, const char *err)
112 errors_found |= ERROR_OBJECT;
113 objreport(obj, "error", err);
117 static int fsck_error_func(struct fsck_options *o,
118 struct object *obj, int type, const char *message)
120 objreport(obj, (type == FSCK_WARN) ? "warning" : "error", message);
121 return (type == FSCK_WARN) ? 0 : 1;
124 static struct object_array pending;
126 static int mark_object(struct object *obj, int type, void *data, struct fsck_options *options)
128 struct object *parent = data;
131 * The only case data is NULL or type is OBJ_ANY is when
132 * mark_object_reachable() calls us. All the callers of
133 * that function has non-NULL obj hence ...
136 /* ... these references to parent->fld are safe here */
137 printf("broken link from %7s %s\n",
138 printable_type(parent), describe_object(parent));
139 printf("broken link from %7s %s\n",
140 (type == OBJ_ANY ? "unknown" : typename(type)), "unknown");
141 errors_found |= ERROR_REACHABLE;
145 if (type != OBJ_ANY && obj->type != type)
146 /* ... and the reference to parent is safe here */
147 objerror(parent, "wrong object type in link");
149 if (obj->flags & REACHABLE)
151 obj->flags |= REACHABLE;
152 if (!(obj->flags & HAS_OBJ)) {
153 if (parent && !has_object_file(&obj->oid)) {
154 printf("broken link from %7s %s\n",
155 printable_type(parent), describe_object(parent));
156 printf(" to %7s %s\n",
157 printable_type(obj), describe_object(obj));
158 errors_found |= ERROR_REACHABLE;
163 add_object_array(obj, NULL, &pending);
167 static void mark_object_reachable(struct object *obj)
169 mark_object(obj, OBJ_ANY, NULL, NULL);
172 static int traverse_one_object(struct object *obj)
174 return fsck_walk(obj, obj, &fsck_walk_options);
177 static int traverse_reachable(void)
179 struct progress *progress = NULL;
183 progress = start_delayed_progress(_("Checking connectivity"), 0);
185 result |= traverse_one_object(object_array_pop(&pending));
186 display_progress(progress, ++nr);
188 stop_progress(&progress);
192 static int mark_used(struct object *obj, int type, void *data, struct fsck_options *options)
201 * Check a single reachable object
203 static void check_reachable_object(struct object *obj)
206 * We obviously want the object to be parsed,
207 * except if it was in a pack-file and we didn't
210 if (!(obj->flags & HAS_OBJ)) {
211 if (has_sha1_pack(obj->oid.hash))
212 return; /* it is in pack - forget about it */
213 printf("missing %s %s\n", printable_type(obj),
214 describe_object(obj));
215 errors_found |= ERROR_REACHABLE;
221 * Check a single unreachable object
223 static void check_unreachable_object(struct object *obj)
226 * Missing unreachable object? Ignore it. It's not like
227 * we miss it (since it can't be reached), nor do we want
228 * to complain about it being unreachable (since it does
231 if (!(obj->flags & HAS_OBJ))
235 * Unreachable object that exists? Show it if asked to,
236 * since this is something that is prunable.
238 if (show_unreachable) {
239 printf("unreachable %s %s\n", printable_type(obj),
240 describe_object(obj));
245 * "!USED" means that nothing at all points to it, including
246 * other unreachable objects. In other words, it's the "tip"
247 * of some set of unreachable objects, usually a commit that
250 * Such starting points are more interesting than some random
251 * set of unreachable objects, so we show them even if the user
252 * hasn't asked for _all_ unreachable objects. If you have
253 * deleted a branch by mistake, this is a prime candidate to
254 * start looking at, for example.
256 if (!(obj->flags & USED)) {
258 printf("dangling %s %s\n", printable_type(obj),
259 describe_object(obj));
260 if (write_lost_and_found) {
261 char *filename = git_pathdup("lost-found/%s/%s",
262 obj->type == OBJ_COMMIT ? "commit" : "other",
263 describe_object(obj));
266 if (safe_create_leading_directories_const(filename)) {
267 error("Could not create lost-found");
271 f = xfopen(filename, "w");
272 if (obj->type == OBJ_BLOB) {
273 if (stream_blob_to_fd(fileno(f), &obj->oid, NULL, 1))
274 die_errno("Could not write '%s'", filename);
276 fprintf(f, "%s\n", describe_object(obj));
278 die_errno("Could not finish '%s'",
286 * Otherwise? It's there, it's unreachable, and some other unreachable
287 * object points to it. Ignore it - it's not interesting, and we showed
288 * all the interesting cases above.
292 static void check_object(struct object *obj)
295 fprintf(stderr, "Checking %s\n", describe_object(obj));
297 if (obj->flags & REACHABLE)
298 check_reachable_object(obj);
300 check_unreachable_object(obj);
303 static void check_connectivity(void)
307 /* Traverse the pending reachable objects */
308 traverse_reachable();
310 /* Look up all the requirements, warn about missing objects.. */
311 max = get_max_object_index();
313 fprintf(stderr, "Checking connectivity (%d objects)\n", max);
315 for (i = 0; i < max; i++) {
316 struct object *obj = get_indexed_object(i);
323 static int fsck_obj(struct object *obj)
327 if (obj->flags & SEEN)
332 fprintf(stderr, "Checking %s %s\n",
333 printable_type(obj), describe_object(obj));
335 if (fsck_walk(obj, NULL, &fsck_obj_options))
336 objerror(obj, "broken links");
337 err = fsck_object(obj, NULL, 0, &fsck_obj_options);
341 if (obj->type == OBJ_COMMIT) {
342 struct commit *commit = (struct commit *) obj;
344 if (!commit->parents && show_root)
345 printf("root %s\n", describe_object(&commit->object));
348 if (obj->type == OBJ_TAG) {
349 struct tag *tag = (struct tag *) obj;
351 if (show_tags && tag->tagged) {
352 printf("tagged %s %s", printable_type(tag->tagged),
353 describe_object(tag->tagged));
354 printf(" (%s) in %s\n", tag->tag,
355 describe_object(&tag->object));
360 if (obj->type == OBJ_TREE)
361 free_tree_buffer((struct tree *)obj);
362 if (obj->type == OBJ_COMMIT)
363 free_commit_buffer((struct commit *)obj);
367 static int fsck_obj_buffer(const struct object_id *oid, enum object_type type,
368 unsigned long size, void *buffer, int *eaten)
371 * Note, buffer may be NULL if type is OBJ_BLOB. See
372 * verify_packfile(), data_valid variable for details.
375 obj = parse_object_buffer(oid, type, size, buffer, eaten);
377 errors_found |= ERROR_OBJECT;
378 return error("%s: object corrupt or missing", oid_to_hex(oid));
380 obj->flags &= ~(REACHABLE | SEEN);
381 obj->flags |= HAS_OBJ;
382 return fsck_obj(obj);
385 static int default_refs;
387 static void fsck_handle_reflog_oid(const char *refname, struct object_id *oid,
388 timestamp_t timestamp)
392 if (!is_null_oid(oid)) {
393 obj = lookup_object(oid->hash);
394 if (obj && (obj->flags & HAS_OBJ)) {
395 if (timestamp && name_objects)
396 add_decoration(fsck_walk_options.object_names,
398 xstrfmt("%s@{%"PRItime"}", refname, timestamp));
400 mark_object_reachable(obj);
401 } else if (!is_promisor_object(oid)) {
402 error("%s: invalid reflog entry %s", refname, oid_to_hex(oid));
403 errors_found |= ERROR_REACHABLE;
408 static int fsck_handle_reflog_ent(struct object_id *ooid, struct object_id *noid,
409 const char *email, timestamp_t timestamp, int tz,
410 const char *message, void *cb_data)
412 const char *refname = cb_data;
415 fprintf(stderr, "Checking reflog %s->%s\n",
416 oid_to_hex(ooid), oid_to_hex(noid));
418 fsck_handle_reflog_oid(refname, ooid, 0);
419 fsck_handle_reflog_oid(refname, noid, timestamp);
423 static int fsck_handle_reflog(const char *logname, const struct object_id *oid,
424 int flag, void *cb_data)
426 for_each_reflog_ent(logname, fsck_handle_reflog_ent, (void *)logname);
430 static int fsck_handle_ref(const char *refname, const struct object_id *oid,
431 int flag, void *cb_data)
435 obj = parse_object(oid);
437 if (is_promisor_object(oid)) {
439 * Increment default_refs anyway, because this is a
445 error("%s: invalid sha1 pointer %s", refname, oid_to_hex(oid));
446 errors_found |= ERROR_REACHABLE;
447 /* We'll continue with the rest despite the error.. */
450 if (obj->type != OBJ_COMMIT && is_branch(refname)) {
451 error("%s: not a commit", refname);
452 errors_found |= ERROR_REFS;
457 add_decoration(fsck_walk_options.object_names,
458 obj, xstrdup(refname));
459 mark_object_reachable(obj);
464 static void get_default_heads(void)
466 if (head_points_at && !is_null_oid(&head_oid))
467 fsck_handle_ref("HEAD", &head_oid, 0, NULL);
468 for_each_rawref(fsck_handle_ref, NULL);
470 for_each_reflog(fsck_handle_reflog, NULL);
473 * Not having any default heads isn't really fatal, but
474 * it does mean that "--unreachable" no longer makes any
475 * sense (since in this case everything will obviously
476 * be unreachable by definition.
478 * Showing dangling objects is valid, though (as those
479 * dangling objects are likely lost heads).
481 * So we just print a warning about it, and clear the
482 * "show_unreachable" flag.
485 fprintf(stderr, "notice: No default references\n");
486 show_unreachable = 0;
490 static struct object *parse_loose_object(const struct object_id *oid,
495 enum object_type type;
499 if (read_loose_object(path, oid->hash, &type, &size, &contents) < 0)
502 if (!contents && type != OBJ_BLOB)
503 die("BUG: read_loose_object streamed a non-blob");
505 obj = parse_object_buffer(oid, type, size, contents, &eaten);
512 static int fsck_loose(const struct object_id *oid, const char *path, void *data)
514 struct object *obj = parse_loose_object(oid, path);
517 errors_found |= ERROR_OBJECT;
518 error("%s: object corrupt or missing: %s",
519 oid_to_hex(oid), path);
520 return 0; /* keep checking other objects */
523 obj->flags &= ~(REACHABLE | SEEN);
524 obj->flags |= HAS_OBJ;
526 errors_found |= ERROR_OBJECT;
530 static int fsck_cruft(const char *basename, const char *path, void *data)
532 if (!starts_with(basename, "tmp_obj_"))
533 fprintf(stderr, "bad sha1 file: %s\n", path);
537 static int fsck_subdir(unsigned int nr, const char *path, void *progress)
539 display_progress(progress, nr + 1);
543 static void fsck_object_dir(const char *path)
545 struct progress *progress = NULL;
548 fprintf(stderr, "Checking object directory\n");
551 progress = start_progress(_("Checking object directories"), 256);
553 for_each_loose_file_in_objdir(path, fsck_loose, fsck_cruft, fsck_subdir,
555 display_progress(progress, 256);
556 stop_progress(&progress);
559 static int fsck_head_link(void)
561 int null_is_error = 0;
564 fprintf(stderr, "Checking HEAD link\n");
566 head_points_at = resolve_ref_unsafe("HEAD", 0, head_oid.hash, NULL);
567 if (!head_points_at) {
568 errors_found |= ERROR_REFS;
569 return error("Invalid HEAD");
571 if (!strcmp(head_points_at, "HEAD"))
574 else if (!starts_with(head_points_at, "refs/heads/")) {
575 errors_found |= ERROR_REFS;
576 return error("HEAD points to something strange (%s)",
579 if (is_null_oid(&head_oid)) {
581 errors_found |= ERROR_REFS;
582 return error("HEAD: detached HEAD points at nothing");
584 fprintf(stderr, "notice: HEAD points to an unborn branch (%s)\n",
585 head_points_at + 11);
590 static int fsck_cache_tree(struct cache_tree *it)
596 fprintf(stderr, "Checking cache tree\n");
598 if (0 <= it->entry_count) {
599 struct object *obj = parse_object(&it->oid);
601 error("%s: invalid sha1 pointer in cache-tree",
602 oid_to_hex(&it->oid));
603 errors_found |= ERROR_REFS;
608 add_decoration(fsck_walk_options.object_names,
610 mark_object_reachable(obj);
611 if (obj->type != OBJ_TREE)
612 err |= objerror(obj, "non-tree in cache-tree");
614 for (i = 0; i < it->subtree_nr; i++)
615 err |= fsck_cache_tree(it->down[i]->cache_tree);
619 static void mark_object_for_connectivity(const struct object_id *oid)
621 struct object *obj = lookup_unknown_object(oid->hash);
622 obj->flags |= HAS_OBJ;
625 static int mark_loose_for_connectivity(const struct object_id *oid,
629 mark_object_for_connectivity(oid);
633 static int mark_packed_for_connectivity(const struct object_id *oid,
634 struct packed_git *pack,
638 mark_object_for_connectivity(oid);
642 static char const * const fsck_usage[] = {
643 N_("git fsck [<options>] [<object>...]"),
647 static struct option fsck_opts[] = {
648 OPT__VERBOSE(&verbose, N_("be verbose")),
649 OPT_BOOL(0, "unreachable", &show_unreachable, N_("show unreachable objects")),
650 OPT_BOOL(0, "dangling", &show_dangling, N_("show dangling objects")),
651 OPT_BOOL(0, "tags", &show_tags, N_("report tags")),
652 OPT_BOOL(0, "root", &show_root, N_("report root nodes")),
653 OPT_BOOL(0, "cache", &keep_cache_objects, N_("make index objects head nodes")),
654 OPT_BOOL(0, "reflogs", &include_reflogs, N_("make reflogs head nodes (default)")),
655 OPT_BOOL(0, "full", &check_full, N_("also consider packs and alternate objects")),
656 OPT_BOOL(0, "connectivity-only", &connectivity_only, N_("check only connectivity")),
657 OPT_BOOL(0, "strict", &check_strict, N_("enable more strict checking")),
658 OPT_BOOL(0, "lost-found", &write_lost_and_found,
659 N_("write dangling objects in .git/lost-found")),
660 OPT_BOOL(0, "progress", &show_progress, N_("show progress")),
661 OPT_BOOL(0, "name-objects", &name_objects, N_("show verbose names for reachable objects")),
665 int cmd_fsck(int argc, const char **argv, const char *prefix)
668 struct alternate_object_database *alt;
671 check_replace_refs = 0;
673 argc = parse_options(argc, argv, prefix, fsck_opts, fsck_usage, 0);
675 fsck_walk_options.walk = mark_object;
676 fsck_obj_options.walk = mark_used;
677 fsck_obj_options.error_func = fsck_error_func;
679 fsck_obj_options.strict = 1;
681 if (show_progress == -1)
682 show_progress = isatty(2);
686 if (write_lost_and_found) {
692 fsck_walk_options.object_names =
693 xcalloc(1, sizeof(struct decoration));
695 git_config(fsck_config, NULL);
698 if (connectivity_only) {
699 for_each_loose_object(mark_loose_for_connectivity, NULL, 0);
700 for_each_packed_object(mark_packed_for_connectivity, NULL, 0);
702 fsck_object_dir(get_object_directory());
705 for (alt = alt_odb_list; alt; alt = alt->next)
706 fsck_object_dir(alt->path);
709 struct packed_git *p;
710 uint32_t total = 0, count = 0;
711 struct progress *progress = NULL;
713 prepare_packed_git();
716 for (p = packed_git; p; p = p->next) {
717 if (open_pack_index(p))
719 total += p->num_objects;
722 progress = start_progress(_("Checking objects"), total);
724 for (p = packed_git; p; p = p->next) {
725 /* verify gives error messages itself */
726 if (verify_pack(p, fsck_obj_buffer,
728 errors_found |= ERROR_PACK;
729 count += p->num_objects;
731 stop_progress(&progress);
735 for (i = 0; i < argc; i++) {
736 const char *arg = argv[i];
737 struct object_id oid;
738 if (!get_oid(arg, &oid)) {
739 struct object *obj = lookup_object(oid.hash);
741 if (!obj || !(obj->flags & HAS_OBJ)) {
742 error("%s: object missing", oid_to_hex(&oid));
743 errors_found |= ERROR_OBJECT;
749 add_decoration(fsck_walk_options.object_names,
751 mark_object_reachable(obj);
754 error("invalid parameter: expected sha1, got '%s'", arg);
755 errors_found |= ERROR_OBJECT;
759 * If we've not been given any explicit head information, do the
760 * default ones from .git/refs. We also consider the index file
761 * in this case (ie this implies --cache).
765 keep_cache_objects = 1;
768 if (keep_cache_objects) {
769 verify_index_checksum = 1;
771 for (i = 0; i < active_nr; i++) {
776 mode = active_cache[i]->ce_mode;
777 if (S_ISGITLINK(mode))
779 blob = lookup_blob(&active_cache[i]->oid);
785 add_decoration(fsck_walk_options.object_names,
787 xstrfmt(":%s", active_cache[i]->name));
788 mark_object_reachable(obj);
790 if (active_cache_tree)
791 fsck_cache_tree(active_cache_tree);
794 check_connectivity();