1 #define USE_THE_INDEX_COMPATIBILITY_MACROS
4 #include "repository.h"
12 #include "cache-tree.h"
13 #include "tree-walk.h"
15 #include "parse-options.h"
18 #include "streaming.h"
21 #include "object-store.h"
22 #include "resolve-undo.h"
23 #include "run-command.h"
26 #define REACHABLE 0x0001
28 #define HAS_OBJ 0x0004
29 /* This flag is set if something points to this object. */
34 static int show_unreachable
;
35 static int include_reflogs
= 1;
36 static int check_full
= 1;
37 static int connectivity_only
;
38 static int check_strict
;
39 static int keep_cache_objects
;
40 static struct fsck_options fsck_walk_options
= FSCK_OPTIONS_DEFAULT
;
41 static struct fsck_options fsck_obj_options
= FSCK_OPTIONS_DEFAULT
;
42 static int errors_found
;
43 static int write_lost_and_found
;
45 static int show_progress
= -1;
46 static int show_dangling
= 1;
47 static int name_objects
;
48 #define ERROR_OBJECT 01
49 #define ERROR_REACHABLE 02
51 #define ERROR_REFS 010
52 #define ERROR_COMMIT_GRAPH 020
53 #define ERROR_MULTI_PACK_INDEX 040
55 static const char *describe_object(const struct object_id
*oid
)
57 return fsck_describe_object(&fsck_walk_options
, oid
);
60 static const char *printable_type(const struct object_id
*oid
,
61 enum object_type type
)
66 type
= oid_object_info(the_repository
, oid
, NULL
);
68 ret
= type_name(type
);
75 static int objerror(struct object
*obj
, const char *err
)
77 errors_found
|= ERROR_OBJECT
;
78 /* TRANSLATORS: e.g. error in tree 01bfda: <more explanation> */
79 fprintf_ln(stderr
, _("error in %s %s: %s"),
80 printable_type(&obj
->oid
, obj
->type
),
81 describe_object(&obj
->oid
), err
);
85 static int fsck_error_func(struct fsck_options
*o
,
86 const struct object_id
*oid
,
87 enum object_type object_type
,
88 enum fsck_msg_type msg_type
,
89 enum fsck_msg_id msg_id
,
94 /* TRANSLATORS: e.g. warning in tree 01bfda: <more explanation> */
95 fprintf_ln(stderr
, _("warning in %s %s: %s"),
96 printable_type(oid
, object_type
),
97 describe_object(oid
), message
);
100 /* TRANSLATORS: e.g. error in tree 01bfda: <more explanation> */
101 fprintf_ln(stderr
, _("error in %s %s: %s"),
102 printable_type(oid
, object_type
),
103 describe_object(oid
), message
);
106 BUG("%d (FSCK_IGNORE?) should never trigger this callback",
111 static struct object_array pending
;
113 static int mark_object(struct object
*obj
, enum object_type type
,
114 void *data
, struct fsck_options
*options
)
116 struct object
*parent
= data
;
119 * The only case data is NULL or type is OBJ_ANY is when
120 * mark_object_reachable() calls us. All the callers of
121 * that function has non-NULL obj hence ...
124 /* ... these references to parent->fld are safe here */
125 printf_ln(_("broken link from %7s %s"),
126 printable_type(&parent
->oid
, parent
->type
),
127 describe_object(&parent
->oid
));
128 printf_ln(_("broken link from %7s %s"),
129 (type
== OBJ_ANY
? _("unknown") : type_name(type
)),
131 errors_found
|= ERROR_REACHABLE
;
135 if (type
!= OBJ_ANY
&& obj
->type
!= type
)
136 /* ... and the reference to parent is safe here */
137 objerror(parent
, _("wrong object type in link"));
139 if (obj
->flags
& REACHABLE
)
141 obj
->flags
|= REACHABLE
;
143 if (is_promisor_object(&obj
->oid
))
145 * Further recursion does not need to be performed on this
146 * object since it is a promisor object (so it does not need to
147 * be added to "pending").
151 if (!(obj
->flags
& HAS_OBJ
)) {
152 if (parent
&& !has_object(the_repository
, &obj
->oid
, 1)) {
153 printf_ln(_("broken link from %7s %s\n"
155 printable_type(&parent
->oid
, parent
->type
),
156 describe_object(&parent
->oid
),
157 printable_type(&obj
->oid
, obj
->type
),
158 describe_object(&obj
->oid
));
159 errors_found
|= ERROR_REACHABLE
;
164 add_object_array(obj
, NULL
, &pending
);
168 static void mark_object_reachable(struct object
*obj
)
170 mark_object(obj
, OBJ_ANY
, NULL
, NULL
);
173 static int traverse_one_object(struct object
*obj
)
175 int result
= fsck_walk(obj
, obj
, &fsck_walk_options
);
177 if (obj
->type
== OBJ_TREE
) {
178 struct tree
*tree
= (struct tree
*)obj
;
179 free_tree_buffer(tree
);
184 static int traverse_reachable(void)
186 struct progress
*progress
= NULL
;
190 progress
= start_delayed_progress(_("Checking connectivity"), 0);
192 result
|= traverse_one_object(object_array_pop(&pending
));
193 display_progress(progress
, ++nr
);
195 stop_progress(&progress
);
199 static int mark_used(struct object
*obj
, enum object_type object_type
,
200 void *data
, struct fsck_options
*options
)
208 static void mark_unreachable_referents(const struct object_id
*oid
)
210 struct fsck_options options
= FSCK_OPTIONS_DEFAULT
;
211 struct object
*obj
= lookup_object(the_repository
, oid
);
213 if (!obj
|| !(obj
->flags
& HAS_OBJ
))
214 return; /* not part of our original set */
215 if (obj
->flags
& REACHABLE
)
216 return; /* reachable objects already traversed */
219 * Avoid passing OBJ_NONE to fsck_walk, which will parse the object
220 * (and we want to avoid parsing blobs).
222 if (obj
->type
== OBJ_NONE
) {
223 enum object_type type
= oid_object_info(the_repository
,
226 object_as_type(obj
, type
, 0);
229 options
.walk
= mark_used
;
230 fsck_walk(obj
, NULL
, &options
);
233 static int mark_loose_unreachable_referents(const struct object_id
*oid
,
237 mark_unreachable_referents(oid
);
241 static int mark_packed_unreachable_referents(const struct object_id
*oid
,
242 struct packed_git
*pack
,
246 mark_unreachable_referents(oid
);
251 * Check a single reachable object
253 static void check_reachable_object(struct object
*obj
)
256 * We obviously want the object to be parsed,
257 * except if it was in a pack-file and we didn't
260 if (!(obj
->flags
& HAS_OBJ
)) {
261 if (is_promisor_object(&obj
->oid
))
263 if (has_object_pack(&obj
->oid
))
264 return; /* it is in pack - forget about it */
265 printf_ln(_("missing %s %s"),
266 printable_type(&obj
->oid
, obj
->type
),
267 describe_object(&obj
->oid
));
268 errors_found
|= ERROR_REACHABLE
;
274 * Check a single unreachable object
276 static void check_unreachable_object(struct object
*obj
)
279 * Missing unreachable object? Ignore it. It's not like
280 * we miss it (since it can't be reached), nor do we want
281 * to complain about it being unreachable (since it does
284 if (!(obj
->flags
& HAS_OBJ
))
288 * Unreachable object that exists? Show it if asked to,
289 * since this is something that is prunable.
291 if (show_unreachable
) {
292 printf_ln(_("unreachable %s %s"),
293 printable_type(&obj
->oid
, obj
->type
),
294 describe_object(&obj
->oid
));
299 * "!USED" means that nothing at all points to it, including
300 * other unreachable objects. In other words, it's the "tip"
301 * of some set of unreachable objects, usually a commit that
304 * Such starting points are more interesting than some random
305 * set of unreachable objects, so we show them even if the user
306 * hasn't asked for _all_ unreachable objects. If you have
307 * deleted a branch by mistake, this is a prime candidate to
308 * start looking at, for example.
310 if (!(obj
->flags
& USED
)) {
312 printf_ln(_("dangling %s %s"),
313 printable_type(&obj
->oid
, obj
->type
),
314 describe_object(&obj
->oid
));
315 if (write_lost_and_found
) {
316 char *filename
= git_pathdup("lost-found/%s/%s",
317 obj
->type
== OBJ_COMMIT
? "commit" : "other",
318 describe_object(&obj
->oid
));
321 if (safe_create_leading_directories_const(filename
)) {
322 error(_("could not create lost-found"));
326 f
= xfopen(filename
, "w");
327 if (obj
->type
== OBJ_BLOB
) {
328 if (stream_blob_to_fd(fileno(f
), &obj
->oid
, NULL
, 1))
329 die_errno(_("could not write '%s'"), filename
);
331 fprintf(f
, "%s\n", describe_object(&obj
->oid
));
333 die_errno(_("could not finish '%s'"),
341 * Otherwise? It's there, it's unreachable, and some other unreachable
342 * object points to it. Ignore it - it's not interesting, and we showed
343 * all the interesting cases above.
347 static void check_object(struct object
*obj
)
350 fprintf_ln(stderr
, _("Checking %s"), describe_object(&obj
->oid
));
352 if (obj
->flags
& REACHABLE
)
353 check_reachable_object(obj
);
355 check_unreachable_object(obj
);
358 static void check_connectivity(void)
362 /* Traverse the pending reachable objects */
363 traverse_reachable();
366 * With --connectivity-only, we won't have actually opened and marked
367 * unreachable objects with USED. Do that now to make --dangling, etc
370 if (connectivity_only
&& (show_dangling
|| write_lost_and_found
)) {
372 * Even though we already have a "struct object" for each of
373 * these in memory, we must not iterate over the internal
374 * object hash as we do below. Our loop would potentially
375 * resize the hash, making our iteration invalid.
377 * Instead, we'll just go back to the source list of objects,
378 * and ignore any that weren't present in our earlier
381 for_each_loose_object(mark_loose_unreachable_referents
, NULL
, 0);
382 for_each_packed_object(mark_packed_unreachable_referents
, NULL
, 0);
385 /* Look up all the requirements, warn about missing objects.. */
386 max
= get_max_object_index();
388 fprintf_ln(stderr
, _("Checking connectivity (%d objects)"), max
);
390 for (i
= 0; i
< max
; i
++) {
391 struct object
*obj
= get_indexed_object(i
);
398 static int fsck_obj(struct object
*obj
, void *buffer
, unsigned long size
)
402 if (obj
->flags
& SEEN
)
407 fprintf_ln(stderr
, _("Checking %s %s"),
408 printable_type(&obj
->oid
, obj
->type
),
409 describe_object(&obj
->oid
));
411 if (fsck_walk(obj
, NULL
, &fsck_obj_options
))
412 objerror(obj
, _("broken links"));
413 err
= fsck_object(obj
, buffer
, size
, &fsck_obj_options
);
417 if (obj
->type
== OBJ_COMMIT
) {
418 struct commit
*commit
= (struct commit
*) obj
;
420 if (!commit
->parents
&& show_root
)
421 printf_ln(_("root %s"),
422 describe_object(&commit
->object
.oid
));
425 if (obj
->type
== OBJ_TAG
) {
426 struct tag
*tag
= (struct tag
*) obj
;
428 if (show_tags
&& tag
->tagged
) {
429 printf_ln(_("tagged %s %s (%s) in %s"),
430 printable_type(&tag
->tagged
->oid
, tag
->tagged
->type
),
431 describe_object(&tag
->tagged
->oid
),
433 describe_object(&tag
->object
.oid
));
438 if (obj
->type
== OBJ_TREE
)
439 free_tree_buffer((struct tree
*)obj
);
440 if (obj
->type
== OBJ_COMMIT
)
441 free_commit_buffer(the_repository
->parsed_objects
,
442 (struct commit
*)obj
);
446 static int fsck_obj_buffer(const struct object_id
*oid
, enum object_type type
,
447 unsigned long size
, void *buffer
, int *eaten
)
450 * Note, buffer may be NULL if type is OBJ_BLOB. See
451 * verify_packfile(), data_valid variable for details.
454 obj
= parse_object_buffer(the_repository
, oid
, type
, size
, buffer
,
457 errors_found
|= ERROR_OBJECT
;
458 return error(_("%s: object corrupt or missing"),
461 obj
->flags
&= ~(REACHABLE
| SEEN
);
462 obj
->flags
|= HAS_OBJ
;
463 return fsck_obj(obj
, buffer
, size
);
466 static int default_refs
;
468 static void fsck_handle_reflog_oid(const char *refname
, struct object_id
*oid
,
469 timestamp_t timestamp
)
473 if (!is_null_oid(oid
)) {
474 obj
= lookup_object(the_repository
, oid
);
475 if (obj
&& (obj
->flags
& HAS_OBJ
)) {
477 fsck_put_object_name(&fsck_walk_options
, oid
,
481 mark_object_reachable(obj
);
482 } else if (!is_promisor_object(oid
)) {
483 error(_("%s: invalid reflog entry %s"),
484 refname
, oid_to_hex(oid
));
485 errors_found
|= ERROR_REACHABLE
;
490 static int fsck_handle_reflog_ent(struct object_id
*ooid
, struct object_id
*noid
,
491 const char *email
, timestamp_t timestamp
, int tz
,
492 const char *message
, void *cb_data
)
494 const char *refname
= cb_data
;
497 fprintf_ln(stderr
, _("Checking reflog %s->%s"),
498 oid_to_hex(ooid
), oid_to_hex(noid
));
500 fsck_handle_reflog_oid(refname
, ooid
, 0);
501 fsck_handle_reflog_oid(refname
, noid
, timestamp
);
505 static int fsck_handle_reflog(const char *logname
, const struct object_id
*oid
,
506 int flag
, void *cb_data
)
508 struct strbuf refname
= STRBUF_INIT
;
510 strbuf_worktree_ref(cb_data
, &refname
, logname
);
511 for_each_reflog_ent(refname
.buf
, fsck_handle_reflog_ent
, refname
.buf
);
512 strbuf_release(&refname
);
516 static int fsck_handle_ref(const char *refname
, const struct object_id
*oid
,
517 int flag
, void *cb_data
)
521 obj
= parse_object(the_repository
, oid
);
523 if (is_promisor_object(oid
)) {
525 * Increment default_refs anyway, because this is a
531 error(_("%s: invalid sha1 pointer %s"),
532 refname
, oid_to_hex(oid
));
533 errors_found
|= ERROR_REACHABLE
;
534 /* We'll continue with the rest despite the error.. */
537 if (obj
->type
!= OBJ_COMMIT
&& is_branch(refname
)) {
538 error(_("%s: not a commit"), refname
);
539 errors_found
|= ERROR_REFS
;
543 fsck_put_object_name(&fsck_walk_options
,
545 mark_object_reachable(obj
);
550 static int fsck_head_link(const char *head_ref_name
,
551 const char **head_points_at
,
552 struct object_id
*head_oid
);
554 static void get_default_heads(void)
556 struct worktree
**worktrees
, **p
;
557 const char *head_points_at
;
558 struct object_id head_oid
;
560 for_each_rawref(fsck_handle_ref
, NULL
);
562 worktrees
= get_worktrees();
563 for (p
= worktrees
; *p
; p
++) {
564 struct worktree
*wt
= *p
;
565 struct strbuf ref
= STRBUF_INIT
;
567 strbuf_worktree_ref(wt
, &ref
, "HEAD");
568 fsck_head_link(ref
.buf
, &head_points_at
, &head_oid
);
569 if (head_points_at
&& !is_null_oid(&head_oid
))
570 fsck_handle_ref(ref
.buf
, &head_oid
, 0, NULL
);
571 strbuf_release(&ref
);
574 refs_for_each_reflog(get_worktree_ref_store(wt
),
575 fsck_handle_reflog
, wt
);
577 free_worktrees(worktrees
);
580 * Not having any default heads isn't really fatal, but
581 * it does mean that "--unreachable" no longer makes any
582 * sense (since in this case everything will obviously
583 * be unreachable by definition.
585 * Showing dangling objects is valid, though (as those
586 * dangling objects are likely lost heads).
588 * So we just print a warning about it, and clear the
589 * "show_unreachable" flag.
592 fprintf_ln(stderr
, _("notice: No default references"));
593 show_unreachable
= 0;
597 struct for_each_loose_cb
599 struct progress
*progress
;
600 struct strbuf obj_type
;
603 static int fsck_loose(const struct object_id
*oid
, const char *path
, void *data
)
605 struct for_each_loose_cb
*cb_data
= data
;
607 enum object_type type
= OBJ_NONE
;
609 void *contents
= NULL
;
611 struct object_info oi
= OBJECT_INFO_INIT
;
612 struct object_id real_oid
= *null_oid();
615 strbuf_reset(&cb_data
->obj_type
);
616 oi
.type_name
= &cb_data
->obj_type
;
620 if (read_loose_object(path
, oid
, &real_oid
, &contents
, &oi
) < 0) {
621 if (contents
&& !oideq(&real_oid
, oid
))
622 err
= error(_("%s: hash-path mismatch, found at: %s"),
623 oid_to_hex(&real_oid
), path
);
625 err
= error(_("%s: object corrupt or missing: %s"),
626 oid_to_hex(oid
), path
);
628 if (type
!= OBJ_NONE
&& type
< 0)
629 err
= error(_("%s: object is of unknown type '%s': %s"),
630 oid_to_hex(&real_oid
), cb_data
->obj_type
.buf
,
633 errors_found
|= ERROR_OBJECT
;
635 return 0; /* keep checking other objects */
638 if (!contents
&& type
!= OBJ_BLOB
)
639 BUG("read_loose_object streamed a non-blob");
641 obj
= parse_object_buffer(the_repository
, oid
, type
, size
,
645 errors_found
|= ERROR_OBJECT
;
646 error(_("%s: object could not be parsed: %s"),
647 oid_to_hex(oid
), path
);
650 return 0; /* keep checking other objects */
653 obj
->flags
&= ~(REACHABLE
| SEEN
);
654 obj
->flags
|= HAS_OBJ
;
655 if (fsck_obj(obj
, contents
, size
))
656 errors_found
|= ERROR_OBJECT
;
660 return 0; /* keep checking other objects, even if we saw an error */
663 static int fsck_cruft(const char *basename
, const char *path
, void *data
)
665 if (!starts_with(basename
, "tmp_obj_"))
666 fprintf_ln(stderr
, _("bad sha1 file: %s"), path
);
670 static int fsck_subdir(unsigned int nr
, const char *path
, void *data
)
672 struct for_each_loose_cb
*cb_data
= data
;
673 struct progress
*progress
= cb_data
->progress
;
674 display_progress(progress
, nr
+ 1);
678 static void fsck_object_dir(const char *path
)
680 struct progress
*progress
= NULL
;
681 struct for_each_loose_cb cb_data
= {
682 .obj_type
= STRBUF_INIT
,
683 .progress
= progress
,
687 fprintf_ln(stderr
, _("Checking object directory"));
690 progress
= start_progress(_("Checking object directories"), 256);
692 for_each_loose_file_in_objdir(path
, fsck_loose
, fsck_cruft
, fsck_subdir
,
694 display_progress(progress
, 256);
695 stop_progress(&progress
);
696 strbuf_release(&cb_data
.obj_type
);
699 static int fsck_head_link(const char *head_ref_name
,
700 const char **head_points_at
,
701 struct object_id
*head_oid
)
703 int null_is_error
= 0;
706 fprintf_ln(stderr
, _("Checking %s link"), head_ref_name
);
708 *head_points_at
= resolve_ref_unsafe(head_ref_name
, 0, head_oid
, NULL
);
709 if (!*head_points_at
) {
710 errors_found
|= ERROR_REFS
;
711 return error(_("invalid %s"), head_ref_name
);
713 if (!strcmp(*head_points_at
, head_ref_name
))
716 else if (!starts_with(*head_points_at
, "refs/heads/")) {
717 errors_found
|= ERROR_REFS
;
718 return error(_("%s points to something strange (%s)"),
719 head_ref_name
, *head_points_at
);
721 if (is_null_oid(head_oid
)) {
723 errors_found
|= ERROR_REFS
;
724 return error(_("%s: detached HEAD points at nothing"),
728 _("notice: %s points to an unborn branch (%s)"),
729 head_ref_name
, *head_points_at
+ 11);
734 static int fsck_cache_tree(struct cache_tree
*it
)
740 fprintf_ln(stderr
, _("Checking cache tree"));
742 if (0 <= it
->entry_count
) {
743 struct object
*obj
= parse_object(the_repository
, &it
->oid
);
745 error(_("%s: invalid sha1 pointer in cache-tree"),
746 oid_to_hex(&it
->oid
));
747 errors_found
|= ERROR_REFS
;
751 fsck_put_object_name(&fsck_walk_options
, &it
->oid
, ":");
752 mark_object_reachable(obj
);
753 if (obj
->type
!= OBJ_TREE
)
754 err
|= objerror(obj
, _("non-tree in cache-tree"));
756 for (i
= 0; i
< it
->subtree_nr
; i
++)
757 err
|= fsck_cache_tree(it
->down
[i
]->cache_tree
);
761 static int fsck_resolve_undo(struct index_state
*istate
)
763 struct string_list_item
*item
;
764 struct string_list
*resolve_undo
= istate
->resolve_undo
;
769 for_each_string_list_item(item
, resolve_undo
) {
770 const char *path
= item
->string
;
771 struct resolve_undo_info
*ru
= item
->util
;
776 for (i
= 0; i
< 3; i
++) {
779 if (!ru
->mode
[i
] || !S_ISREG(ru
->mode
[i
]))
782 obj
= parse_object(the_repository
, &ru
->oid
[i
]);
784 error(_("%s: invalid sha1 pointer in resolve-undo"),
785 oid_to_hex(&ru
->oid
[i
]));
786 errors_found
|= ERROR_REFS
;
790 fsck_put_object_name(&fsck_walk_options
, &ru
->oid
[i
],
791 ":(%d):%s", i
, path
);
792 mark_object_reachable(obj
);
798 static void mark_object_for_connectivity(const struct object_id
*oid
)
800 struct object
*obj
= lookup_unknown_object(the_repository
, oid
);
801 obj
->flags
|= HAS_OBJ
;
804 static int mark_loose_for_connectivity(const struct object_id
*oid
,
808 mark_object_for_connectivity(oid
);
812 static int mark_packed_for_connectivity(const struct object_id
*oid
,
813 struct packed_git
*pack
,
817 mark_object_for_connectivity(oid
);
821 static char const * const fsck_usage
[] = {
822 N_("git fsck [<options>] [<object>...]"),
826 static struct option fsck_opts
[] = {
827 OPT__VERBOSE(&verbose
, N_("be verbose")),
828 OPT_BOOL(0, "unreachable", &show_unreachable
, N_("show unreachable objects")),
829 OPT_BOOL(0, "dangling", &show_dangling
, N_("show dangling objects")),
830 OPT_BOOL(0, "tags", &show_tags
, N_("report tags")),
831 OPT_BOOL(0, "root", &show_root
, N_("report root nodes")),
832 OPT_BOOL(0, "cache", &keep_cache_objects
, N_("make index objects head nodes")),
833 OPT_BOOL(0, "reflogs", &include_reflogs
, N_("make reflogs head nodes (default)")),
834 OPT_BOOL(0, "full", &check_full
, N_("also consider packs and alternate objects")),
835 OPT_BOOL(0, "connectivity-only", &connectivity_only
, N_("check only connectivity")),
836 OPT_BOOL(0, "strict", &check_strict
, N_("enable more strict checking")),
837 OPT_BOOL(0, "lost-found", &write_lost_and_found
,
838 N_("write dangling objects in .git/lost-found")),
839 OPT_BOOL(0, "progress", &show_progress
, N_("show progress")),
840 OPT_BOOL(0, "name-objects", &name_objects
, N_("show verbose names for reachable objects")),
844 int cmd_fsck(int argc
, const char **argv
, const char *prefix
)
847 struct object_directory
*odb
;
849 /* fsck knows how to handle missing promisor objects */
850 fetch_if_missing
= 0;
853 read_replace_refs
= 0;
855 argc
= parse_options(argc
, argv
, prefix
, fsck_opts
, fsck_usage
, 0);
857 fsck_walk_options
.walk
= mark_object
;
858 fsck_obj_options
.walk
= mark_used
;
859 fsck_obj_options
.error_func
= fsck_error_func
;
861 fsck_obj_options
.strict
= 1;
863 if (show_progress
== -1)
864 show_progress
= isatty(2);
868 if (write_lost_and_found
) {
874 fsck_enable_object_names(&fsck_walk_options
);
876 git_config(git_fsck_config
, &fsck_obj_options
);
877 prepare_repo_settings(the_repository
);
879 if (connectivity_only
) {
880 for_each_loose_object(mark_loose_for_connectivity
, NULL
, 0);
881 for_each_packed_object(mark_packed_for_connectivity
, NULL
, 0);
883 prepare_alt_odb(the_repository
);
884 for (odb
= the_repository
->objects
->odb
; odb
; odb
= odb
->next
)
885 fsck_object_dir(odb
->path
);
888 struct packed_git
*p
;
889 uint32_t total
= 0, count
= 0;
890 struct progress
*progress
= NULL
;
893 for (p
= get_all_packs(the_repository
); p
;
895 if (open_pack_index(p
))
897 total
+= p
->num_objects
;
900 progress
= start_progress(_("Checking objects"), total
);
902 for (p
= get_all_packs(the_repository
); p
;
904 /* verify gives error messages itself */
905 if (verify_pack(the_repository
,
908 errors_found
|= ERROR_PACK
;
909 count
+= p
->num_objects
;
911 stop_progress(&progress
);
914 if (fsck_finish(&fsck_obj_options
))
915 errors_found
|= ERROR_OBJECT
;
918 for (i
= 0; i
< argc
; i
++) {
919 const char *arg
= argv
[i
];
920 struct object_id oid
;
921 if (!get_oid(arg
, &oid
)) {
922 struct object
*obj
= lookup_object(the_repository
,
925 if (!obj
|| !(obj
->flags
& HAS_OBJ
)) {
926 if (is_promisor_object(&oid
))
928 error(_("%s: object missing"), oid_to_hex(&oid
));
929 errors_found
|= ERROR_OBJECT
;
934 fsck_put_object_name(&fsck_walk_options
, &oid
,
936 mark_object_reachable(obj
);
939 error(_("invalid parameter: expected sha1, got '%s'"), arg
);
940 errors_found
|= ERROR_OBJECT
;
944 * If we've not been given any explicit head information, do the
945 * default ones from .git/refs. We also consider the index file
946 * in this case (ie this implies --cache).
950 keep_cache_objects
= 1;
953 if (keep_cache_objects
) {
954 verify_index_checksum
= 1;
957 /* TODO: audit for interaction with sparse-index. */
958 ensure_full_index(&the_index
);
959 for (i
= 0; i
< active_nr
; i
++) {
964 mode
= active_cache
[i
]->ce_mode
;
965 if (S_ISGITLINK(mode
))
967 blob
= lookup_blob(the_repository
,
968 &active_cache
[i
]->oid
);
973 fsck_put_object_name(&fsck_walk_options
, &obj
->oid
,
974 ":%s", active_cache
[i
]->name
);
975 mark_object_reachable(obj
);
977 if (active_cache_tree
)
978 fsck_cache_tree(active_cache_tree
);
979 fsck_resolve_undo(&the_index
);
982 check_connectivity();
984 if (the_repository
->settings
.core_commit_graph
) {
985 struct child_process commit_graph_verify
= CHILD_PROCESS_INIT
;
987 prepare_alt_odb(the_repository
);
988 for (odb
= the_repository
->objects
->odb
; odb
; odb
= odb
->next
) {
989 child_process_init(&commit_graph_verify
);
990 commit_graph_verify
.git_cmd
= 1;
991 strvec_pushl(&commit_graph_verify
.args
, "commit-graph",
992 "verify", "--object-dir", odb
->path
, NULL
);
993 if (run_command(&commit_graph_verify
))
994 errors_found
|= ERROR_COMMIT_GRAPH
;
998 if (the_repository
->settings
.core_multi_pack_index
) {
999 struct child_process midx_verify
= CHILD_PROCESS_INIT
;
1001 prepare_alt_odb(the_repository
);
1002 for (odb
= the_repository
->objects
->odb
; odb
; odb
= odb
->next
) {
1003 child_process_init(&midx_verify
);
1004 midx_verify
.git_cmd
= 1;
1005 strvec_pushl(&midx_verify
.args
, "multi-pack-index",
1006 "verify", "--object-dir", odb
->path
, NULL
);
1007 if (run_command(&midx_verify
))
1008 errors_found
|= ERROR_MULTI_PACK_INDEX
;
1012 return errors_found
;