]> git.ipfire.org Git - thirdparty/git.git/blame - builtin/fsck.c
is_path_owned_by_current_uid(): mark "report" parameter as unused
[thirdparty/git.git] / builtin / fsck.c
CommitLineData
f8adbec9 1#define USE_THE_INDEX_COMPATIBILITY_MACROS
baffc0e7 2#include "builtin.h"
4b182421 3#include "cache.h"
031dc927 4#include "repository.h"
b2141fc1 5#include "config.h"
ff5ebe39
DB
6#include "commit.h"
7#include "tree.h"
8#include "blob.h"
c418eda4 9#include "tag.h"
944d8589 10#include "refs.h"
f9253394 11#include "pack.h"
53dc3f3e 12#include "cache-tree.h"
e9a95bef 13#include "tree-walk.h"
271b8d25 14#include "fsck.h"
5ac0a206 15#include "parse-options.h"
8ca12c0d 16#include "dir.h"
1e49f22f 17#include "progress.h"
6f7f3beb 18#include "streaming.h"
90cf590f 19#include "decorate.h"
0317f455 20#include "packfile.h"
0d4a1321 21#include "object-store.h"
5a5ea141 22#include "resolve-undo.h"
e0fd51e1 23#include "run-command.h"
b29759d8 24#include "worktree.h"
ff5ebe39
DB
25
26#define REACHABLE 0x0001
2d9c58c6 27#define SEEN 0x0002
6e454b9a 28#define HAS_OBJ 0x0004
092c55d0
JT
29/* This flag is set if something points to this object. */
30#define USED 0x0008
d9839e03 31
96f1e58f
DR
32static int show_root;
33static int show_tags;
34static int show_unreachable;
566842f6 35static int include_reflogs = 1;
f29cd393 36static int check_full = 1;
02976bf8 37static int connectivity_only;
96f1e58f
DR
38static int check_strict;
39static int keep_cache_objects;
22410549
JS
40static struct fsck_options fsck_walk_options = FSCK_OPTIONS_DEFAULT;
41static struct fsck_options fsck_obj_options = FSCK_OPTIONS_DEFAULT;
e2b4f635 42static int errors_found;
68f6c019 43static int write_lost_and_found;
20f1eb6b 44static int verbose;
1e49f22f 45static int show_progress = -1;
c6a13b2c 46static int show_dangling = 1;
90cf590f 47static int name_objects;
e2b4f635
JH
48#define ERROR_OBJECT 01
49#define ERROR_REACHABLE 02
a3ed7552 50#define ERROR_PACK 04
122f76f5 51#define ERROR_REFS 010
e0fd51e1 52#define ERROR_COMMIT_GRAPH 020
e68a5272 53#define ERROR_MULTI_PACK_INDEX 040
d9839e03 54
82ef89b3 55static const char *describe_object(const struct object_id *oid)
993a21b0 56{
82ef89b3 57 return fsck_describe_object(&fsck_walk_options, oid);
993a21b0
JS
58}
59
82ef89b3
JK
60static const char *printable_type(const struct object_id *oid,
61 enum object_type type)
97ca7ca8
JK
62{
63 const char *ret;
64
82ef89b3
JK
65 if (type == OBJ_NONE)
66 type = oid_object_info(the_repository, oid, NULL);
a2b22854 67
82ef89b3 68 ret = type_name(type);
97ca7ca8 69 if (!ret)
674ba340 70 ret = _("unknown");
97ca7ca8
JK
71
72 return ret;
73}
74
c99ba492 75static int objerror(struct object *obj, const char *err)
f1f0d088 76{
e2b4f635 77 errors_found |= ERROR_OBJECT;
674ba340
NTND
78 /* TRANSLATORS: e.g. error in tree 01bfda: <more explanation> */
79 fprintf_ln(stderr, _("error in %s %s: %s"),
82ef89b3
JK
80 printable_type(&obj->oid, obj->type),
81 describe_object(&obj->oid), err);
f1f0d088
PB
82 return -1;
83}
84
1cd772cc 85static int fsck_error_func(struct fsck_options *o,
5afc4b1d
JK
86 const struct object_id *oid,
87 enum object_type object_type,
394d5d31
ÆAB
88 enum fsck_msg_type msg_type,
89 enum fsck_msg_id msg_id,
90 const char *message)
f1f0d088 91{
5afc4b1d 92 switch (msg_type) {
bbb15c51 93 case FSCK_WARN:
674ba340
NTND
94 /* TRANSLATORS: e.g. warning in tree 01bfda: <more explanation> */
95 fprintf_ln(stderr, _("warning in %s %s: %s"),
5afc4b1d
JK
96 printable_type(oid, object_type),
97 describe_object(oid), message);
bbb15c51
NTND
98 return 0;
99 case FSCK_ERROR:
674ba340
NTND
100 /* TRANSLATORS: e.g. error in tree 01bfda: <more explanation> */
101 fprintf_ln(stderr, _("error in %s %s: %s"),
5afc4b1d
JK
102 printable_type(oid, object_type),
103 describe_object(oid), message);
bbb15c51
NTND
104 return 1;
105 default:
5afc4b1d
JK
106 BUG("%d (FSCK_IGNORE?) should never trigger this callback",
107 msg_type);
bbb15c51 108 }
f1f0d088
PB
109}
110
04d39759
LT
111static struct object_array pending;
112
28abf260
ÆAB
113static int mark_object(struct object *obj, enum object_type type,
114 void *data, struct fsck_options *options)
271b8d25 115{
271b8d25 116 struct object *parent = data;
271b8d25 117
a1cdc251
JH
118 /*
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 ...
122 */
271b8d25 123 if (!obj) {
a1cdc251 124 /* ... these references to parent->fld are safe here */
674ba340 125 printf_ln(_("broken link from %7s %s"),
82ef89b3
JK
126 printable_type(&parent->oid, parent->type),
127 describe_object(&parent->oid));
674ba340
NTND
128 printf_ln(_("broken link from %7s %s"),
129 (type == OBJ_ANY ? _("unknown") : type_name(type)),
130 _("unknown"));
271b8d25
MK
131 errors_found |= ERROR_REACHABLE;
132 return 1;
133 }
134
135 if (type != OBJ_ANY && obj->type != type)
a1cdc251 136 /* ... and the reference to parent is safe here */
674ba340 137 objerror(parent, _("wrong object type in link"));
271b8d25
MK
138
139 if (obj->flags & REACHABLE)
140 return 0;
141 obj->flags |= REACHABLE;
caba7fc3
JT
142
143 if (is_promisor_object(&obj->oid))
144 /*
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").
148 */
149 return 0;
150
6e454b9a 151 if (!(obj->flags & HAS_OBJ)) {
9eb86f41 152 if (parent && !has_object(the_repository, &obj->oid, 1)) {
674ba340
NTND
153 printf_ln(_("broken link from %7s %s\n"
154 " to %7s %s"),
82ef89b3
JK
155 printable_type(&parent->oid, parent->type),
156 describe_object(&parent->oid),
157 printable_type(&obj->oid, obj->type),
158 describe_object(&obj->oid));
271b8d25
MK
159 errors_found |= ERROR_REACHABLE;
160 }
161 return 1;
162 }
163
16aa3bfc 164 add_object_array(obj, NULL, &pending);
04d39759
LT
165 return 0;
166}
167
168static void mark_object_reachable(struct object *obj)
169{
22410549 170 mark_object(obj, OBJ_ANY, NULL, NULL);
04d39759
LT
171}
172
a1cdc251 173static int traverse_one_object(struct object *obj)
04d39759 174{
ba3a08ca
EW
175 int result = fsck_walk(obj, obj, &fsck_walk_options);
176
177 if (obj->type == OBJ_TREE) {
178 struct tree *tree = (struct tree *)obj;
179 free_tree_buffer(tree);
180 }
181 return result;
271b8d25
MK
182}
183
04d39759 184static int traverse_reachable(void)
271b8d25 185{
1e49f22f
NTND
186 struct progress *progress = NULL;
187 unsigned int nr = 0;
04d39759 188 int result = 0;
1e49f22f 189 if (show_progress)
8aade107 190 progress = start_delayed_progress(_("Checking connectivity"), 0);
04d39759 191 while (pending.nr) {
71992039 192 result |= traverse_one_object(object_array_pop(&pending));
1e49f22f 193 display_progress(progress, ++nr);
04d39759 194 }
1e49f22f 195 stop_progress(&progress);
04d39759 196 return !!result;
271b8d25
MK
197}
198
a1aad716
ÆAB
199static int mark_used(struct object *obj, enum object_type object_type,
200 void *data, struct fsck_options *options)
271b8d25
MK
201{
202 if (!obj)
203 return 1;
092c55d0 204 obj->flags |= USED;
271b8d25 205 return 0;
f1f0d088
PB
206}
207
8d8c2a5a
JK
208static void mark_unreachable_referents(const struct object_id *oid)
209{
210 struct fsck_options options = FSCK_OPTIONS_DEFAULT;
d0229abd 211 struct object *obj = lookup_object(the_repository, oid);
8d8c2a5a
JK
212
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 */
217
218 /*
219 * Avoid passing OBJ_NONE to fsck_walk, which will parse the object
220 * (and we want to avoid parsing blobs).
221 */
222 if (obj->type == OBJ_NONE) {
223 enum object_type type = oid_object_info(the_repository,
224 &obj->oid, NULL);
225 if (type > 0)
6da43d93 226 object_as_type(obj, type, 0);
8d8c2a5a
JK
227 }
228
229 options.walk = mark_used;
230 fsck_walk(obj, NULL, &options);
231}
232
233static int mark_loose_unreachable_referents(const struct object_id *oid,
234 const char *path,
235 void *data)
236{
237 mark_unreachable_referents(oid);
238 return 0;
239}
240
241static int mark_packed_unreachable_referents(const struct object_id *oid,
242 struct packed_git *pack,
243 uint32_t pos,
244 void *data)
245{
246 mark_unreachable_referents(oid);
247 return 0;
248}
249
18af29f2
LT
250/*
251 * Check a single reachable object
252 */
253static void check_reachable_object(struct object *obj)
254{
18af29f2
LT
255 /*
256 * We obviously want the object to be parsed,
257 * except if it was in a pack-file and we didn't
258 * do a full fsck
259 */
6e454b9a 260 if (!(obj->flags & HAS_OBJ)) {
caba7fc3
JT
261 if (is_promisor_object(&obj->oid))
262 return;
14c3c80c 263 if (has_object_pack(&obj->oid))
18af29f2 264 return; /* it is in pack - forget about it */
82ef89b3
JK
265 printf_ln(_("missing %s %s"),
266 printable_type(&obj->oid, obj->type),
267 describe_object(&obj->oid));
e2b4f635 268 errors_found |= ERROR_REACHABLE;
18af29f2
LT
269 return;
270 }
18af29f2
LT
271}
272
273/*
274 * Check a single unreachable object
275 */
276static void check_unreachable_object(struct object *obj)
277{
278 /*
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
282 * not exist).
283 */
b4584e4f 284 if (!(obj->flags & HAS_OBJ))
18af29f2
LT
285 return;
286
287 /*
288 * Unreachable object that exists? Show it if asked to,
289 * since this is something that is prunable.
290 */
291 if (show_unreachable) {
82ef89b3
JK
292 printf_ln(_("unreachable %s %s"),
293 printable_type(&obj->oid, obj->type),
294 describe_object(&obj->oid));
18af29f2
LT
295 return;
296 }
297
298 /*
092c55d0 299 * "!USED" means that nothing at all points to it, including
3dff5379 300 * other unreachable objects. In other words, it's the "tip"
18af29f2
LT
301 * of some set of unreachable objects, usually a commit that
302 * got dropped.
303 *
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.
309 */
092c55d0 310 if (!(obj->flags & USED)) {
c6a13b2c 311 if (show_dangling)
82ef89b3
JK
312 printf_ln(_("dangling %s %s"),
313 printable_type(&obj->oid, obj->type),
314 describe_object(&obj->oid));
68f6c019 315 if (write_lost_and_found) {
fcd12db6 316 char *filename = git_pathdup("lost-found/%s/%s",
68f6c019 317 obj->type == OBJ_COMMIT ? "commit" : "other",
82ef89b3 318 describe_object(&obj->oid));
68f6c019
JS
319 FILE *f;
320
dcf69262 321 if (safe_create_leading_directories_const(filename)) {
674ba340 322 error(_("could not create lost-found"));
fcd12db6 323 free(filename);
68f6c019
JS
324 return;
325 }
23a9e071 326 f = xfopen(filename, "w");
16a7fcfe 327 if (obj->type == OBJ_BLOB) {
7eda0e4f 328 if (stream_blob_to_fd(fileno(f), &obj->oid, NULL, 1))
674ba340 329 die_errno(_("could not write '%s'"), filename);
16a7fcfe 330 } else
82ef89b3 331 fprintf(f, "%s\n", describe_object(&obj->oid));
47d32af2 332 if (fclose(f))
674ba340 333 die_errno(_("could not finish '%s'"),
d824cbba 334 filename);
fcd12db6 335 free(filename);
68f6c019 336 }
18af29f2
LT
337 return;
338 }
339
340 /*
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.
344 */
345}
346
347static void check_object(struct object *obj)
348{
20f1eb6b 349 if (verbose)
82ef89b3 350 fprintf_ln(stderr, _("Checking %s"), describe_object(&obj->oid));
20f1eb6b 351
18af29f2
LT
352 if (obj->flags & REACHABLE)
353 check_reachable_object(obj);
354 else
355 check_unreachable_object(obj);
356}
f1f0d088 357
8ba0bbb2
LT
358static void check_connectivity(void)
359{
fc046a75 360 int i, max;
8ba0bbb2 361
04d39759
LT
362 /* Traverse the pending reachable objects */
363 traverse_reachable();
364
8d8c2a5a
JK
365 /*
366 * With --connectivity-only, we won't have actually opened and marked
367 * unreachable objects with USED. Do that now to make --dangling, etc
368 * accurate.
369 */
370 if (connectivity_only && (show_dangling || write_lost_and_found)) {
371 /*
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.
376 *
377 * Instead, we'll just go back to the source list of objects,
378 * and ignore any that weren't present in our earlier
379 * traversal.
380 */
381 for_each_loose_object(mark_loose_unreachable_referents, NULL, 0);
382 for_each_packed_object(mark_packed_unreachable_referents, NULL, 0);
383 }
384
8ba0bbb2 385 /* Look up all the requirements, warn about missing objects.. */
fc046a75 386 max = get_max_object_index();
20f1eb6b 387 if (verbose)
674ba340 388 fprintf_ln(stderr, _("Checking connectivity (%d objects)"), max);
20f1eb6b 389
fc046a75 390 for (i = 0; i < max; i++) {
fc046a75 391 struct object *obj = get_indexed_object(i);
8ba0bbb2 392
18af29f2
LT
393 if (obj)
394 check_object(obj);
8ba0bbb2
LT
395 }
396}
397
7ac4f3a0 398static int fsck_obj(struct object *obj, void *buffer, unsigned long size)
85003492 399{
83cd6f90
RS
400 int err;
401
ba002f3b 402 if (obj->flags & SEEN)
85003492 403 return 0;
ba002f3b 404 obj->flags |= SEEN;
85003492 405
20f1eb6b 406 if (verbose)
674ba340 407 fprintf_ln(stderr, _("Checking %s %s"),
82ef89b3
JK
408 printable_type(&obj->oid, obj->type),
409 describe_object(&obj->oid));
42ea9cb2 410
22410549 411 if (fsck_walk(obj, NULL, &fsck_obj_options))
674ba340 412 objerror(obj, _("broken links"));
7ac4f3a0 413 err = fsck_object(obj, buffer, size, &fsck_obj_options);
83cd6f90
RS
414 if (err)
415 goto out;
1ea34e36 416
ba002f3b
MK
417 if (obj->type == OBJ_COMMIT) {
418 struct commit *commit = (struct commit *) obj;
de2eb7f6 419
ba002f3b 420 if (!commit->parents && show_root)
674ba340 421 printf_ln(_("root %s"),
82ef89b3 422 describe_object(&commit->object.oid));
ba002f3b 423 }
92d4c85d 424
ba002f3b
MK
425 if (obj->type == OBJ_TAG) {
426 struct tag *tag = (struct tag *) obj;
20f1eb6b 427
ba002f3b 428 if (show_tags && tag->tagged) {
674ba340 429 printf_ln(_("tagged %s %s (%s) in %s"),
82ef89b3
JK
430 printable_type(&tag->tagged->oid, tag->tagged->type),
431 describe_object(&tag->tagged->oid),
bbb15c51 432 tag->tag,
82ef89b3 433 describe_object(&tag->object.oid));
ba002f3b 434 }
92d4c85d 435 }
889262ea 436
83cd6f90
RS
437out:
438 if (obj->type == OBJ_TREE)
439 free_tree_buffer((struct tree *)obj);
440 if (obj->type == OBJ_COMMIT)
6a7895fd
SB
441 free_commit_buffer(the_repository->parsed_objects,
442 (struct commit *)obj);
83cd6f90 443 return err;
20222118
LT
444}
445
9fd75046 446static int fsck_obj_buffer(const struct object_id *oid, enum object_type type,
c9486eb0
NTND
447 unsigned long size, void *buffer, int *eaten)
448{
ec9d2249
NTND
449 /*
450 * Note, buffer may be NULL if type is OBJ_BLOB. See
451 * verify_packfile(), data_valid variable for details.
452 */
c9486eb0 453 struct object *obj;
1ec5bfd2
SB
454 obj = parse_object_buffer(the_repository, oid, type, size, buffer,
455 eaten);
c9486eb0
NTND
456 if (!obj) {
457 errors_found |= ERROR_OBJECT;
674ba340
NTND
458 return error(_("%s: object corrupt or missing"),
459 oid_to_hex(oid));
c9486eb0 460 }
092c55d0
JT
461 obj->flags &= ~(REACHABLE | SEEN);
462 obj->flags |= HAS_OBJ;
7ac4f3a0 463 return fsck_obj(obj, buffer, size);
c9486eb0
NTND
464}
465
96f1e58f 466static int default_refs;
944d8589 467
9461d272 468static void fsck_handle_reflog_oid(const char *refname, struct object_id *oid,
dddbad72 469 timestamp_t timestamp)
55dd5526
JH
470{
471 struct object *obj;
472
9461d272 473 if (!is_null_oid(oid)) {
d0229abd 474 obj = lookup_object(the_repository, oid);
c2d17b3b 475 if (obj && (obj->flags & HAS_OBJ)) {
a59cfb32 476 if (timestamp)
73390290 477 fsck_put_object_name(&fsck_walk_options, oid,
a59cfb32
JK
478 "%s@{%"PRItime"}",
479 refname, timestamp);
092c55d0 480 obj->flags |= USED;
271b8d25 481 mark_object_reachable(obj);
498f1f61 482 } else if (!is_promisor_object(oid)) {
674ba340
NTND
483 error(_("%s: invalid reflog entry %s"),
484 refname, oid_to_hex(oid));
19bf6c9b 485 errors_found |= ERROR_REACHABLE;
55dd5526
JH
486 }
487 }
d66ae59b
MH
488}
489
9461d272 490static int fsck_handle_reflog_ent(struct object_id *ooid, struct object_id *noid,
c006e9fa
JK
491 const char *UNUSED(email),
492 timestamp_t timestamp, int UNUSED(tz),
493 const char *UNUSED(message), void *cb_data)
55dd5526 494{
19bf6c9b 495 const char *refname = cb_data;
55dd5526 496
20f1eb6b 497 if (verbose)
674ba340
NTND
498 fprintf_ln(stderr, _("Checking reflog %s->%s"),
499 oid_to_hex(ooid), oid_to_hex(noid));
20f1eb6b 500
9461d272 501 fsck_handle_reflog_oid(refname, ooid, 0);
502 fsck_handle_reflog_oid(refname, noid, timestamp);
55dd5526
JH
503 return 0;
504}
505
63e14ee2
JK
506static int fsck_handle_reflog(const char *logname,
507 const struct object_id *UNUSED(oid),
508 int UNUSED(flag), void *cb_data)
eb8381c8 509{
b29759d8
NTND
510 struct strbuf refname = STRBUF_INIT;
511
512 strbuf_worktree_ref(cb_data, &refname, logname);
513 for_each_reflog_ent(refname.buf, fsck_handle_reflog_ent, refname.buf);
514 strbuf_release(&refname);
eb8381c8
NP
515 return 0;
516}
517
635b99a0 518static int fsck_handle_ref(const char *refname, const struct object_id *oid,
63e14ee2 519 int UNUSED(flag), void *UNUSED(cb_data))
1024932f 520{
1024932f
LT
521 struct object *obj;
522
109cd76d 523 obj = parse_object(the_repository, oid);
8a498a05 524 if (!obj) {
43f25158
JT
525 if (is_promisor_object(oid)) {
526 /*
527 * Increment default_refs anyway, because this is a
528 * valid ref.
529 */
530 default_refs++;
531 return 0;
532 }
674ba340
NTND
533 error(_("%s: invalid sha1 pointer %s"),
534 refname, oid_to_hex(oid));
30d1038d 535 errors_found |= ERROR_REACHABLE;
944d8589
LT
536 /* We'll continue with the rest despite the error.. */
537 return 0;
8a498a05 538 }
122f76f5 539 if (obj->type != OBJ_COMMIT && is_branch(refname)) {
674ba340 540 error(_("%s: not a commit"), refname);
122f76f5
JH
541 errors_found |= ERROR_REFS;
542 }
944d8589 543 default_refs++;
092c55d0 544 obj->flags |= USED;
a59cfb32 545 fsck_put_object_name(&fsck_walk_options,
73390290 546 oid, "%s", refname);
271b8d25 547 mark_object_reachable(obj);
55dd5526 548
7c4d07c7 549 return 0;
1024932f
LT
550}
551
b29759d8
NTND
552static int fsck_head_link(const char *head_ref_name,
553 const char **head_points_at,
a8c754d4
EN
554 struct object_id *head_oid);
555
1024932f
LT
556static void get_default_heads(void)
557{
b29759d8 558 struct worktree **worktrees, **p;
a8c754d4
EN
559 const char *head_points_at;
560 struct object_id head_oid;
561
635b99a0 562 for_each_rawref(fsck_handle_ref, NULL);
b29759d8 563
03f2465b 564 worktrees = get_worktrees();
b29759d8
NTND
565 for (p = worktrees; *p; p++) {
566 struct worktree *wt = *p;
567 struct strbuf ref = STRBUF_INIT;
568
569 strbuf_worktree_ref(wt, &ref, "HEAD");
570 fsck_head_link(ref.buf, &head_points_at, &head_oid);
571 if (head_points_at && !is_null_oid(&head_oid))
572 fsck_handle_ref(ref.buf, &head_oid, 0, NULL);
573 strbuf_release(&ref);
574
575 if (include_reflogs)
576 refs_for_each_reflog(get_worktree_ref_store(wt),
577 fsck_handle_reflog, wt);
578 }
579 free_worktrees(worktrees);
071fa89e
LT
580
581 /*
582 * Not having any default heads isn't really fatal, but
583 * it does mean that "--unreachable" no longer makes any
584 * sense (since in this case everything will obviously
585 * be unreachable by definition.
586 *
587 * Showing dangling objects is valid, though (as those
588 * dangling objects are likely lost heads).
589 *
590 * So we just print a warning about it, and clear the
591 * "show_unreachable" flag.
592 */
593 if (!default_refs) {
674ba340 594 fprintf_ln(stderr, _("notice: No default references"));
071fa89e
LT
595 show_unreachable = 0;
596 }
1024932f
LT
597}
598
31deb28f
ÆAB
599struct for_each_loose_cb
600{
601 struct progress *progress;
602 struct strbuf obj_type;
603};
604
7ac4f3a0 605static int fsck_loose(const struct object_id *oid, const char *path, void *data)
c68b489e 606{
31deb28f 607 struct for_each_loose_cb *cb_data = data;
c68b489e 608 struct object *obj;
31deb28f 609 enum object_type type = OBJ_NONE;
c68b489e 610 unsigned long size;
16235e3b 611 void *contents = NULL;
c68b489e 612 int eaten;
31deb28f 613 struct object_info oi = OBJECT_INFO_INIT;
96e41f58 614 struct object_id real_oid = *null_oid();
31deb28f
ÆAB
615 int err = 0;
616
617 strbuf_reset(&cb_data->obj_type);
618 oi.type_name = &cb_data->obj_type;
619 oi.sizep = &size;
620 oi.typep = &type;
621
96e41f58
ÆAB
622 if (read_loose_object(path, oid, &real_oid, &contents, &oi) < 0) {
623 if (contents && !oideq(&real_oid, oid))
624 err = error(_("%s: hash-path mismatch, found at: %s"),
625 oid_to_hex(&real_oid), path);
626 else
627 err = error(_("%s: object corrupt or missing: %s"),
628 oid_to_hex(oid), path);
629 }
31deb28f
ÆAB
630 if (type != OBJ_NONE && type < 0)
631 err = error(_("%s: object is of unknown type '%s': %s"),
96e41f58
ÆAB
632 oid_to_hex(&real_oid), cb_data->obj_type.buf,
633 path);
31deb28f 634 if (err < 0) {
7ac4f3a0 635 errors_found |= ERROR_OBJECT;
16235e3b 636 free(contents);
7ac4f3a0
JK
637 return 0; /* keep checking other objects */
638 }
c68b489e
JK
639
640 if (!contents && type != OBJ_BLOB)
7ac4f3a0 641 BUG("read_loose_object streamed a non-blob");
c68b489e 642
1ec5bfd2
SB
643 obj = parse_object_buffer(the_repository, oid, type, size,
644 contents, &eaten);
645
c68b489e
JK
646 if (!obj) {
647 errors_found |= ERROR_OBJECT;
674ba340 648 error(_("%s: object could not be parsed: %s"),
76c1d9a0 649 oid_to_hex(oid), path);
7ac4f3a0
JK
650 if (!eaten)
651 free(contents);
c68b489e
JK
652 return 0; /* keep checking other objects */
653 }
654
092c55d0
JT
655 obj->flags &= ~(REACHABLE | SEEN);
656 obj->flags |= HAS_OBJ;
7ac4f3a0 657 if (fsck_obj(obj, contents, size))
f0766bf9 658 errors_found |= ERROR_OBJECT;
7ac4f3a0
JK
659
660 if (!eaten)
661 free(contents);
662 return 0; /* keep checking other objects, even if we saw an error */
f0766bf9
JK
663}
664
665static int fsck_cruft(const char *basename, const char *path, void *data)
666{
667 if (!starts_with(basename, "tmp_obj_"))
674ba340 668 fprintf_ln(stderr, _("bad sha1 file: %s"), path);
f0766bf9
JK
669 return 0;
670}
671
31deb28f 672static int fsck_subdir(unsigned int nr, const char *path, void *data)
f0766bf9 673{
31deb28f
ÆAB
674 struct for_each_loose_cb *cb_data = data;
675 struct progress *progress = cb_data->progress;
f0766bf9
JK
676 display_progress(progress, nr + 1);
677 return 0;
678}
679
8a498a05
JH
680static void fsck_object_dir(const char *path)
681{
1e49f22f 682 struct progress *progress = NULL;
31deb28f
ÆAB
683 struct for_each_loose_cb cb_data = {
684 .obj_type = STRBUF_INIT,
685 .progress = progress,
686 };
20f1eb6b
JS
687
688 if (verbose)
674ba340 689 fprintf_ln(stderr, _("Checking object directory"));
20f1eb6b 690
1e49f22f 691 if (show_progress)
754dbc43 692 progress = start_progress(_("Checking object directories"), 256);
f0766bf9
JK
693
694 for_each_loose_file_in_objdir(path, fsck_loose, fsck_cruft, fsck_subdir,
31deb28f 695 &cb_data);
f0766bf9 696 display_progress(progress, 256);
1e49f22f 697 stop_progress(&progress);
31deb28f 698 strbuf_release(&cb_data.obj_type);
8a498a05
JH
699}
700
b29759d8
NTND
701static int fsck_head_link(const char *head_ref_name,
702 const char **head_points_at,
a8c754d4 703 struct object_id *head_oid)
c3330383 704{
8eb2d0be 705 int null_is_error = 0;
8eb2d0be 706
20f1eb6b 707 if (verbose)
3813a89f 708 fprintf_ln(stderr, _("Checking %s link"), head_ref_name);
20f1eb6b 709
b29759d8 710 *head_points_at = resolve_ref_unsafe(head_ref_name, 0, head_oid, NULL);
a8c754d4 711 if (!*head_points_at) {
122f76f5 712 errors_found |= ERROR_REFS;
3813a89f 713 return error(_("invalid %s"), head_ref_name);
122f76f5 714 }
b29759d8 715 if (!strcmp(*head_points_at, head_ref_name))
8eb2d0be
JH
716 /* detached HEAD */
717 null_is_error = 1;
a8c754d4 718 else if (!starts_with(*head_points_at, "refs/heads/")) {
122f76f5 719 errors_found |= ERROR_REFS;
3813a89f 720 return error(_("%s points to something strange (%s)"),
b29759d8 721 head_ref_name, *head_points_at);
122f76f5 722 }
a8c754d4 723 if (is_null_oid(head_oid)) {
122f76f5
JH
724 if (null_is_error) {
725 errors_found |= ERROR_REFS;
3813a89f 726 return error(_("%s: detached HEAD points at nothing"),
b29759d8 727 head_ref_name);
122f76f5 728 }
3813a89f
JH
729 fprintf_ln(stderr,
730 _("notice: %s points to an unborn branch (%s)"),
731 head_ref_name, *head_points_at + 11);
8eb2d0be 732 }
c3330383
LT
733 return 0;
734}
735
53dc3f3e
JH
736static int fsck_cache_tree(struct cache_tree *it)
737{
738 int i;
739 int err = 0;
740
20f1eb6b 741 if (verbose)
674ba340 742 fprintf_ln(stderr, _("Checking cache tree"));
20f1eb6b 743
53dc3f3e 744 if (0 <= it->entry_count) {
109cd76d 745 struct object *obj = parse_object(the_repository, &it->oid);
6d60bbef 746 if (!obj) {
674ba340 747 error(_("%s: invalid sha1 pointer in cache-tree"),
e0a92804 748 oid_to_hex(&it->oid));
122f76f5 749 errors_found |= ERROR_REFS;
6d60bbef
JH
750 return 1;
751 }
092c55d0 752 obj->flags |= USED;
73390290 753 fsck_put_object_name(&fsck_walk_options, &it->oid, ":");
a1cdc251 754 mark_object_reachable(obj);
1974632c 755 if (obj->type != OBJ_TREE)
674ba340 756 err |= objerror(obj, _("non-tree in cache-tree"));
53dc3f3e
JH
757 }
758 for (i = 0; i < it->subtree_nr; i++)
759 err |= fsck_cache_tree(it->down[i]->cache_tree);
760 return err;
761}
762
5a5ea141
JH
763static int fsck_resolve_undo(struct index_state *istate)
764{
765 struct string_list_item *item;
766 struct string_list *resolve_undo = istate->resolve_undo;
767
768 if (!resolve_undo)
769 return 0;
770
771 for_each_string_list_item(item, resolve_undo) {
772 const char *path = item->string;
773 struct resolve_undo_info *ru = item->util;
774 int i;
775
776 if (!ru)
777 continue;
778 for (i = 0; i < 3; i++) {
779 struct object *obj;
780
781 if (!ru->mode[i] || !S_ISREG(ru->mode[i]))
782 continue;
783
784 obj = parse_object(the_repository, &ru->oid[i]);
785 if (!obj) {
786 error(_("%s: invalid sha1 pointer in resolve-undo"),
787 oid_to_hex(&ru->oid[i]));
788 errors_found |= ERROR_REFS;
e0ad1397 789 continue;
5a5ea141
JH
790 }
791 obj->flags |= USED;
792 fsck_put_object_name(&fsck_walk_options, &ru->oid[i],
793 ":(%d):%s", i, path);
794 mark_object_reachable(obj);
795 }
796 }
797 return 0;
798}
799
76c1d9a0 800static void mark_object_for_connectivity(const struct object_id *oid)
3e3f8bd6 801{
45a187cc 802 struct object *obj = lookup_unknown_object(the_repository, oid);
3e3f8bd6
JK
803 obj->flags |= HAS_OBJ;
804}
805
76c1d9a0 806static int mark_loose_for_connectivity(const struct object_id *oid,
3e3f8bd6
JK
807 const char *path,
808 void *data)
809{
76c1d9a0 810 mark_object_for_connectivity(oid);
3e3f8bd6
JK
811 return 0;
812}
813
76c1d9a0 814static int mark_packed_for_connectivity(const struct object_id *oid,
3e3f8bd6
JK
815 struct packed_git *pack,
816 uint32_t pos,
817 void *data)
818{
76c1d9a0 819 mark_object_for_connectivity(oid);
3e3f8bd6
JK
820 return 0;
821}
822
5ac0a206 823static char const * const fsck_usage[] = {
9c9b4f2f 824 N_("git fsck [<options>] [<object>...]"),
5ac0a206
PH
825 NULL
826};
827
828static struct option fsck_opts[] = {
cf8fe315 829 OPT__VERBOSE(&verbose, N_("be verbose")),
d5d09d47 830 OPT_BOOL(0, "unreachable", &show_unreachable, N_("show unreachable objects")),
cf8fe315 831 OPT_BOOL(0, "dangling", &show_dangling, N_("show dangling objects")),
d5d09d47
SB
832 OPT_BOOL(0, "tags", &show_tags, N_("report tags")),
833 OPT_BOOL(0, "root", &show_root, N_("report root nodes")),
834 OPT_BOOL(0, "cache", &keep_cache_objects, N_("make index objects head nodes")),
835 OPT_BOOL(0, "reflogs", &include_reflogs, N_("make reflogs head nodes (default)")),
836 OPT_BOOL(0, "full", &check_full, N_("also consider packs and alternate objects")),
02976bf8 837 OPT_BOOL(0, "connectivity-only", &connectivity_only, N_("check only connectivity")),
d5d09d47
SB
838 OPT_BOOL(0, "strict", &check_strict, N_("enable more strict checking")),
839 OPT_BOOL(0, "lost-found", &write_lost_and_found,
cf8fe315
NTND
840 N_("write dangling objects in .git/lost-found")),
841 OPT_BOOL(0, "progress", &show_progress, N_("show progress")),
90cf590f 842 OPT_BOOL(0, "name-objects", &name_objects, N_("show verbose names for reachable objects")),
5ac0a206
PH
843 OPT_END(),
844};
e2b4f635 845
baffc0e7 846int cmd_fsck(int argc, const char **argv, const char *prefix)
20222118 847{
78e7b98f 848 int i;
263db403 849 struct object_directory *odb;
20222118 850
8b4c0103
JT
851 /* fsck knows how to handle missing promisor objects */
852 fetch_if_missing = 0;
853
e2b4f635 854 errors_found = 0;
6ebd1caf 855 read_replace_refs = 0;
61e2b015 856
37782920 857 argc = parse_options(argc, argv, prefix, fsck_opts, fsck_usage, 0);
1e49f22f 858
22410549
JS
859 fsck_walk_options.walk = mark_object;
860 fsck_obj_options.walk = mark_used;
861 fsck_obj_options.error_func = fsck_error_func;
862 if (check_strict)
863 fsck_obj_options.strict = 1;
864
1e49f22f
NTND
865 if (show_progress == -1)
866 show_progress = isatty(2);
867 if (verbose)
868 show_progress = 0;
869
5ac0a206
PH
870 if (write_lost_and_found) {
871 check_full = 1;
872 include_reflogs = 0;
889262ea
LT
873 }
874
90cf590f 875 if (name_objects)
a59cfb32 876 fsck_enable_object_names(&fsck_walk_options);
90cf590f 877
fb79f5bf 878 git_config(git_fsck_config, &fsck_obj_options);
f30e4d85 879 prepare_repo_settings(the_repository);
2becf00f 880
3e3f8bd6
JK
881 if (connectivity_only) {
882 for_each_loose_object(mark_loose_for_connectivity, NULL, 0);
883 for_each_packed_object(mark_packed_for_connectivity, NULL, 0);
884 } else {
0b209034 885 prepare_alt_odb(the_repository);
f0eaf638 886 for (odb = the_repository->objects->odb; odb; odb = odb->next)
263db403 887 fsck_object_dir(odb->path);
e15ef669 888
3e3f8bd6
JK
889 if (check_full) {
890 struct packed_git *p;
891 uint32_t total = 0, count = 0;
892 struct progress *progress = NULL;
e15ef669 893
3e3f8bd6 894 if (show_progress) {
454ea2e4 895 for (p = get_all_packs(the_repository); p;
a80d72db 896 p = p->next) {
3e3f8bd6
JK
897 if (open_pack_index(p))
898 continue;
899 total += p->num_objects;
900 }
1e49f22f 901
3e3f8bd6
JK
902 progress = start_progress(_("Checking objects"), total);
903 }
454ea2e4 904 for (p = get_all_packs(the_repository); p;
a80d72db 905 p = p->next) {
3e3f8bd6 906 /* verify gives error messages itself */
94e10825
NTND
907 if (verify_pack(the_repository,
908 p, fsck_obj_buffer,
3e3f8bd6
JK
909 progress, count))
910 errors_found |= ERROR_PACK;
911 count += p->num_objects;
1e49f22f 912 }
3e3f8bd6 913 stop_progress(&progress);
1e49f22f 914 }
1995b5e0
JK
915
916 if (fsck_finish(&fsck_obj_options))
917 errors_found |= ERROR_OBJECT;
bcee6fd8
LT
918 }
919
3aed2fda 920 for (i = 0; i < argc; i++) {
a6080a0a 921 const char *arg = argv[i];
aca6065c 922 struct object_id oid;
923 if (!get_oid(arg, &oid)) {
5abddd1e 924 struct object *obj = lookup_object(the_repository,
d0229abd 925 &oid);
e1a1388d 926
c2d17b3b 927 if (!obj || !(obj->flags & HAS_OBJ)) {
096c9b8b
JT
928 if (is_promisor_object(&oid))
929 continue;
674ba340 930 error(_("%s: object missing"), oid_to_hex(&oid));
c6c7b16d 931 errors_found |= ERROR_OBJECT;
e1a1388d 932 continue;
c6c7b16d 933 }
e1a1388d 934
092c55d0 935 obj->flags |= USED;
73390290 936 fsck_put_object_name(&fsck_walk_options, &oid,
a59cfb32 937 "%s", arg);
271b8d25 938 mark_object_reachable(obj);
d9839e03
LT
939 continue;
940 }
674ba340 941 error(_("invalid parameter: expected sha1, got '%s'"), arg);
c6c7b16d 942 errors_found |= ERROR_OBJECT;
d9839e03 943 }
d9839e03 944
1024932f 945 /*
d1af002d 946 * If we've not been given any explicit head information, do the
e7bd907d
LT
947 * default ones from .git/refs. We also consider the index file
948 * in this case (ie this implies --cache).
1024932f 949 */
c3271a0e 950 if (!argc) {
1024932f
LT
951 get_default_heads();
952 keep_cache_objects = 1;
953 }
954
ae7c0c92 955 if (keep_cache_objects) {
a33fc72f 956 verify_index_checksum = 1;
00ec50e5 957 verify_ce_order = 1;
ae7c0c92 958 read_cache();
2227ea17
DS
959 /* TODO: audit for interaction with sparse-index. */
960 ensure_full_index(&the_index);
ae7c0c92 961 for (i = 0; i < active_nr; i++) {
8d9721c8
LT
962 unsigned int mode;
963 struct blob *blob;
ae7c0c92 964 struct object *obj;
8d9721c8 965
7a51ed66 966 mode = active_cache[i]->ce_mode;
302b9282 967 if (S_ISGITLINK(mode))
8d9721c8 968 continue;
da14a7ff
SB
969 blob = lookup_blob(the_repository,
970 &active_cache[i]->oid);
ae7c0c92
JH
971 if (!blob)
972 continue;
973 obj = &blob->object;
092c55d0 974 obj->flags |= USED;
73390290 975 fsck_put_object_name(&fsck_walk_options, &obj->oid,
a59cfb32 976 ":%s", active_cache[i]->name);
271b8d25 977 mark_object_reachable(obj);
ae7c0c92 978 }
53dc3f3e
JH
979 if (active_cache_tree)
980 fsck_cache_tree(active_cache_tree);
5a5ea141 981 fsck_resolve_undo(&the_index);
ae7c0c92
JH
982 }
983
8ba0bbb2 984 check_connectivity();
e0fd51e1 985
f30e4d85 986 if (the_repository->settings.core_commit_graph) {
e0fd51e1 987 struct child_process commit_graph_verify = CHILD_PROCESS_INIT;
e0fd51e1 988
e0fd51e1 989 prepare_alt_odb(the_repository);
f0eaf638 990 for (odb = the_repository->objects->odb; odb; odb = odb->next) {
4d0984be 991 child_process_init(&commit_graph_verify);
4d0984be 992 commit_graph_verify.git_cmd = 1;
2b709893
ÆAB
993 strvec_pushl(&commit_graph_verify.args, "commit-graph",
994 "verify", "--object-dir", odb->path, NULL);
e0fd51e1
DS
995 if (run_command(&commit_graph_verify))
996 errors_found |= ERROR_COMMIT_GRAPH;
997 }
998 }
999
dc557087 1000 if (the_repository->settings.core_multi_pack_index) {
66ec0390 1001 struct child_process midx_verify = CHILD_PROCESS_INIT;
66ec0390 1002
66ec0390 1003 prepare_alt_odb(the_repository);
f0eaf638 1004 for (odb = the_repository->objects->odb; odb; odb = odb->next) {
4d0984be 1005 child_process_init(&midx_verify);
4d0984be 1006 midx_verify.git_cmd = 1;
2b709893
ÆAB
1007 strvec_pushl(&midx_verify.args, "multi-pack-index",
1008 "verify", "--object-dir", odb->path, NULL);
66ec0390 1009 if (run_command(&midx_verify))
e68a5272 1010 errors_found |= ERROR_MULTI_PACK_INDEX;
66ec0390
DS
1011 }
1012 }
1013
e2b4f635 1014 return errors_found;
20222118 1015}