]> git.ipfire.org Git - thirdparty/git.git/blame - builtin/fsck.c
Merge branch 'ab/detox-gettext-tests'
[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"
e0fd51e1 22#include "run-command.h"
b29759d8 23#include "worktree.h"
ff5ebe39
DB
24
25#define REACHABLE 0x0001
2d9c58c6 26#define SEEN 0x0002
6e454b9a 27#define HAS_OBJ 0x0004
092c55d0
JT
28/* This flag is set if something points to this object. */
29#define USED 0x0008
d9839e03 30
96f1e58f
DR
31static int show_root;
32static int show_tags;
33static int show_unreachable;
566842f6 34static int include_reflogs = 1;
f29cd393 35static int check_full = 1;
02976bf8 36static int connectivity_only;
96f1e58f
DR
37static int check_strict;
38static int keep_cache_objects;
22410549
JS
39static struct fsck_options fsck_walk_options = FSCK_OPTIONS_DEFAULT;
40static struct fsck_options fsck_obj_options = FSCK_OPTIONS_DEFAULT;
e2b4f635 41static int errors_found;
68f6c019 42static int write_lost_and_found;
20f1eb6b 43static int verbose;
1e49f22f 44static int show_progress = -1;
c6a13b2c 45static int show_dangling = 1;
90cf590f 46static int name_objects;
e2b4f635
JH
47#define ERROR_OBJECT 01
48#define ERROR_REACHABLE 02
a3ed7552 49#define ERROR_PACK 04
122f76f5 50#define ERROR_REFS 010
e0fd51e1 51#define ERROR_COMMIT_GRAPH 020
e68a5272 52#define ERROR_MULTI_PACK_INDEX 040
d9839e03 53
82ef89b3 54static const char *describe_object(const struct object_id *oid)
993a21b0 55{
82ef89b3 56 return fsck_describe_object(&fsck_walk_options, oid);
993a21b0
JS
57}
58
82ef89b3
JK
59static const char *printable_type(const struct object_id *oid,
60 enum object_type type)
97ca7ca8
JK
61{
62 const char *ret;
63
82ef89b3
JK
64 if (type == OBJ_NONE)
65 type = oid_object_info(the_repository, oid, NULL);
a2b22854 66
82ef89b3 67 ret = type_name(type);
97ca7ca8 68 if (!ret)
674ba340 69 ret = _("unknown");
97ca7ca8
JK
70
71 return ret;
72}
73
2becf00f 74static int fsck_config(const char *var, const char *value, void *cb)
f1f0d088 75{
1f3299fd 76 return fsck_config_internal(var, value, cb, &fsck_obj_options);
2becf00f
JS
77}
78
c99ba492 79static int objerror(struct object *obj, const char *err)
f1f0d088 80{
e2b4f635 81 errors_found |= ERROR_OBJECT;
674ba340
NTND
82 /* TRANSLATORS: e.g. error in tree 01bfda: <more explanation> */
83 fprintf_ln(stderr, _("error in %s %s: %s"),
82ef89b3
JK
84 printable_type(&obj->oid, obj->type),
85 describe_object(&obj->oid), err);
f1f0d088
PB
86 return -1;
87}
88
1cd772cc 89static int fsck_error_func(struct fsck_options *o,
5afc4b1d
JK
90 const struct object_id *oid,
91 enum object_type object_type,
92 int msg_type, const char *message)
f1f0d088 93{
5afc4b1d 94 switch (msg_type) {
bbb15c51 95 case FSCK_WARN:
674ba340
NTND
96 /* TRANSLATORS: e.g. warning in tree 01bfda: <more explanation> */
97 fprintf_ln(stderr, _("warning in %s %s: %s"),
5afc4b1d
JK
98 printable_type(oid, object_type),
99 describe_object(oid), message);
bbb15c51
NTND
100 return 0;
101 case FSCK_ERROR:
674ba340
NTND
102 /* TRANSLATORS: e.g. error in tree 01bfda: <more explanation> */
103 fprintf_ln(stderr, _("error in %s %s: %s"),
5afc4b1d
JK
104 printable_type(oid, object_type),
105 describe_object(oid), message);
bbb15c51
NTND
106 return 1;
107 default:
5afc4b1d
JK
108 BUG("%d (FSCK_IGNORE?) should never trigger this callback",
109 msg_type);
bbb15c51 110 }
f1f0d088
PB
111}
112
04d39759
LT
113static struct object_array pending;
114
22410549 115static int mark_object(struct object *obj, int type, void *data, struct fsck_options *options)
271b8d25 116{
271b8d25 117 struct object *parent = data;
271b8d25 118
a1cdc251
JH
119 /*
120 * The only case data is NULL or type is OBJ_ANY is when
121 * mark_object_reachable() calls us. All the callers of
122 * that function has non-NULL obj hence ...
123 */
271b8d25 124 if (!obj) {
a1cdc251 125 /* ... these references to parent->fld are safe here */
674ba340 126 printf_ln(_("broken link from %7s %s"),
82ef89b3
JK
127 printable_type(&parent->oid, parent->type),
128 describe_object(&parent->oid));
674ba340
NTND
129 printf_ln(_("broken link from %7s %s"),
130 (type == OBJ_ANY ? _("unknown") : type_name(type)),
131 _("unknown"));
271b8d25
MK
132 errors_found |= ERROR_REACHABLE;
133 return 1;
134 }
135
136 if (type != OBJ_ANY && obj->type != type)
a1cdc251 137 /* ... and the reference to parent is safe here */
674ba340 138 objerror(parent, _("wrong object type in link"));
271b8d25
MK
139
140 if (obj->flags & REACHABLE)
141 return 0;
142 obj->flags |= REACHABLE;
caba7fc3
JT
143
144 if (is_promisor_object(&obj->oid))
145 /*
146 * Further recursion does not need to be performed on this
147 * object since it is a promisor object (so it does not need to
148 * be added to "pending").
149 */
150 return 0;
151
6e454b9a 152 if (!(obj->flags & HAS_OBJ)) {
9eb86f41 153 if (parent && !has_object(the_repository, &obj->oid, 1)) {
674ba340
NTND
154 printf_ln(_("broken link from %7s %s\n"
155 " to %7s %s"),
82ef89b3
JK
156 printable_type(&parent->oid, parent->type),
157 describe_object(&parent->oid),
158 printable_type(&obj->oid, obj->type),
159 describe_object(&obj->oid));
271b8d25
MK
160 errors_found |= ERROR_REACHABLE;
161 }
162 return 1;
163 }
164
16aa3bfc 165 add_object_array(obj, NULL, &pending);
04d39759
LT
166 return 0;
167}
168
169static void mark_object_reachable(struct object *obj)
170{
22410549 171 mark_object(obj, OBJ_ANY, NULL, NULL);
04d39759
LT
172}
173
a1cdc251 174static int traverse_one_object(struct object *obj)
04d39759 175{
ba3a08ca
EW
176 int result = fsck_walk(obj, obj, &fsck_walk_options);
177
178 if (obj->type == OBJ_TREE) {
179 struct tree *tree = (struct tree *)obj;
180 free_tree_buffer(tree);
181 }
182 return result;
271b8d25
MK
183}
184
04d39759 185static int traverse_reachable(void)
271b8d25 186{
1e49f22f
NTND
187 struct progress *progress = NULL;
188 unsigned int nr = 0;
04d39759 189 int result = 0;
1e49f22f 190 if (show_progress)
8aade107 191 progress = start_delayed_progress(_("Checking connectivity"), 0);
04d39759 192 while (pending.nr) {
71992039 193 result |= traverse_one_object(object_array_pop(&pending));
1e49f22f 194 display_progress(progress, ++nr);
04d39759 195 }
1e49f22f 196 stop_progress(&progress);
04d39759 197 return !!result;
271b8d25
MK
198}
199
22410549 200static int mark_used(struct object *obj, int type, 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,
dddbad72 491 const char *email, timestamp_t timestamp, int tz,
883d60fa 492 const char *message, void *cb_data)
55dd5526 493{
19bf6c9b 494 const char *refname = cb_data;
55dd5526 495
20f1eb6b 496 if (verbose)
674ba340
NTND
497 fprintf_ln(stderr, _("Checking reflog %s->%s"),
498 oid_to_hex(ooid), oid_to_hex(noid));
20f1eb6b 499
9461d272 500 fsck_handle_reflog_oid(refname, ooid, 0);
501 fsck_handle_reflog_oid(refname, noid, timestamp);
55dd5526
JH
502 return 0;
503}
504
635b99a0
MH
505static int fsck_handle_reflog(const char *logname, const struct object_id *oid,
506 int flag, void *cb_data)
eb8381c8 507{
b29759d8
NTND
508 struct strbuf refname = STRBUF_INIT;
509
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);
eb8381c8
NP
513 return 0;
514}
515
635b99a0
MH
516static int fsck_handle_ref(const char *refname, const struct object_id *oid,
517 int flag, void *cb_data)
1024932f 518{
1024932f
LT
519 struct object *obj;
520
109cd76d 521 obj = parse_object(the_repository, oid);
8a498a05 522 if (!obj) {
43f25158
JT
523 if (is_promisor_object(oid)) {
524 /*
525 * Increment default_refs anyway, because this is a
526 * valid ref.
527 */
528 default_refs++;
529 return 0;
530 }
674ba340
NTND
531 error(_("%s: invalid sha1 pointer %s"),
532 refname, oid_to_hex(oid));
30d1038d 533 errors_found |= ERROR_REACHABLE;
944d8589
LT
534 /* We'll continue with the rest despite the error.. */
535 return 0;
8a498a05 536 }
122f76f5 537 if (obj->type != OBJ_COMMIT && is_branch(refname)) {
674ba340 538 error(_("%s: not a commit"), refname);
122f76f5
JH
539 errors_found |= ERROR_REFS;
540 }
944d8589 541 default_refs++;
092c55d0 542 obj->flags |= USED;
a59cfb32 543 fsck_put_object_name(&fsck_walk_options,
73390290 544 oid, "%s", refname);
271b8d25 545 mark_object_reachable(obj);
55dd5526 546
7c4d07c7 547 return 0;
1024932f
LT
548}
549
b29759d8
NTND
550static int fsck_head_link(const char *head_ref_name,
551 const char **head_points_at,
a8c754d4
EN
552 struct object_id *head_oid);
553
1024932f
LT
554static void get_default_heads(void)
555{
b29759d8 556 struct worktree **worktrees, **p;
a8c754d4
EN
557 const char *head_points_at;
558 struct object_id head_oid;
559
635b99a0 560 for_each_rawref(fsck_handle_ref, NULL);
b29759d8 561
03f2465b 562 worktrees = get_worktrees();
b29759d8
NTND
563 for (p = worktrees; *p; p++) {
564 struct worktree *wt = *p;
565 struct strbuf ref = STRBUF_INIT;
566
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);
572
573 if (include_reflogs)
574 refs_for_each_reflog(get_worktree_ref_store(wt),
575 fsck_handle_reflog, wt);
576 }
577 free_worktrees(worktrees);
071fa89e
LT
578
579 /*
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.
584 *
585 * Showing dangling objects is valid, though (as those
586 * dangling objects are likely lost heads).
587 *
588 * So we just print a warning about it, and clear the
589 * "show_unreachable" flag.
590 */
591 if (!default_refs) {
674ba340 592 fprintf_ln(stderr, _("notice: No default references"));
071fa89e
LT
593 show_unreachable = 0;
594 }
1024932f
LT
595}
596
7ac4f3a0 597static int fsck_loose(const struct object_id *oid, const char *path, void *data)
c68b489e
JK
598{
599 struct object *obj;
c68b489e
JK
600 enum object_type type;
601 unsigned long size;
7ac4f3a0 602 void *contents;
c68b489e
JK
603 int eaten;
604
7913f53b 605 if (read_loose_object(path, oid, &type, &size, &contents) < 0) {
7ac4f3a0 606 errors_found |= ERROR_OBJECT;
674ba340 607 error(_("%s: object corrupt or missing: %s"),
7ac4f3a0
JK
608 oid_to_hex(oid), path);
609 return 0; /* keep checking other objects */
610 }
c68b489e
JK
611
612 if (!contents && type != OBJ_BLOB)
7ac4f3a0 613 BUG("read_loose_object streamed a non-blob");
c68b489e 614
1ec5bfd2
SB
615 obj = parse_object_buffer(the_repository, oid, type, size,
616 contents, &eaten);
617
c68b489e
JK
618 if (!obj) {
619 errors_found |= ERROR_OBJECT;
674ba340 620 error(_("%s: object could not be parsed: %s"),
76c1d9a0 621 oid_to_hex(oid), path);
7ac4f3a0
JK
622 if (!eaten)
623 free(contents);
c68b489e
JK
624 return 0; /* keep checking other objects */
625 }
626
092c55d0
JT
627 obj->flags &= ~(REACHABLE | SEEN);
628 obj->flags |= HAS_OBJ;
7ac4f3a0 629 if (fsck_obj(obj, contents, size))
f0766bf9 630 errors_found |= ERROR_OBJECT;
7ac4f3a0
JK
631
632 if (!eaten)
633 free(contents);
634 return 0; /* keep checking other objects, even if we saw an error */
f0766bf9
JK
635}
636
637static int fsck_cruft(const char *basename, const char *path, void *data)
638{
639 if (!starts_with(basename, "tmp_obj_"))
674ba340 640 fprintf_ln(stderr, _("bad sha1 file: %s"), path);
f0766bf9
JK
641 return 0;
642}
643
70c49050 644static int fsck_subdir(unsigned int nr, const char *path, void *progress)
f0766bf9
JK
645{
646 display_progress(progress, nr + 1);
647 return 0;
648}
649
8a498a05
JH
650static void fsck_object_dir(const char *path)
651{
1e49f22f 652 struct progress *progress = NULL;
20f1eb6b
JS
653
654 if (verbose)
674ba340 655 fprintf_ln(stderr, _("Checking object directory"));
20f1eb6b 656
1e49f22f 657 if (show_progress)
754dbc43 658 progress = start_progress(_("Checking object directories"), 256);
f0766bf9
JK
659
660 for_each_loose_file_in_objdir(path, fsck_loose, fsck_cruft, fsck_subdir,
661 progress);
662 display_progress(progress, 256);
1e49f22f 663 stop_progress(&progress);
8a498a05
JH
664}
665
b29759d8
NTND
666static int fsck_head_link(const char *head_ref_name,
667 const char **head_points_at,
a8c754d4 668 struct object_id *head_oid)
c3330383 669{
8eb2d0be 670 int null_is_error = 0;
8eb2d0be 671
20f1eb6b 672 if (verbose)
3813a89f 673 fprintf_ln(stderr, _("Checking %s link"), head_ref_name);
20f1eb6b 674
b29759d8 675 *head_points_at = resolve_ref_unsafe(head_ref_name, 0, head_oid, NULL);
a8c754d4 676 if (!*head_points_at) {
122f76f5 677 errors_found |= ERROR_REFS;
3813a89f 678 return error(_("invalid %s"), head_ref_name);
122f76f5 679 }
b29759d8 680 if (!strcmp(*head_points_at, head_ref_name))
8eb2d0be
JH
681 /* detached HEAD */
682 null_is_error = 1;
a8c754d4 683 else if (!starts_with(*head_points_at, "refs/heads/")) {
122f76f5 684 errors_found |= ERROR_REFS;
3813a89f 685 return error(_("%s points to something strange (%s)"),
b29759d8 686 head_ref_name, *head_points_at);
122f76f5 687 }
a8c754d4 688 if (is_null_oid(head_oid)) {
122f76f5
JH
689 if (null_is_error) {
690 errors_found |= ERROR_REFS;
3813a89f 691 return error(_("%s: detached HEAD points at nothing"),
b29759d8 692 head_ref_name);
122f76f5 693 }
3813a89f
JH
694 fprintf_ln(stderr,
695 _("notice: %s points to an unborn branch (%s)"),
696 head_ref_name, *head_points_at + 11);
8eb2d0be 697 }
c3330383
LT
698 return 0;
699}
700
53dc3f3e
JH
701static int fsck_cache_tree(struct cache_tree *it)
702{
703 int i;
704 int err = 0;
705
20f1eb6b 706 if (verbose)
674ba340 707 fprintf_ln(stderr, _("Checking cache tree"));
20f1eb6b 708
53dc3f3e 709 if (0 <= it->entry_count) {
109cd76d 710 struct object *obj = parse_object(the_repository, &it->oid);
6d60bbef 711 if (!obj) {
674ba340 712 error(_("%s: invalid sha1 pointer in cache-tree"),
e0a92804 713 oid_to_hex(&it->oid));
122f76f5 714 errors_found |= ERROR_REFS;
6d60bbef
JH
715 return 1;
716 }
092c55d0 717 obj->flags |= USED;
73390290 718 fsck_put_object_name(&fsck_walk_options, &it->oid, ":");
a1cdc251 719 mark_object_reachable(obj);
1974632c 720 if (obj->type != OBJ_TREE)
674ba340 721 err |= objerror(obj, _("non-tree in cache-tree"));
53dc3f3e
JH
722 }
723 for (i = 0; i < it->subtree_nr; i++)
724 err |= fsck_cache_tree(it->down[i]->cache_tree);
725 return err;
726}
727
76c1d9a0 728static void mark_object_for_connectivity(const struct object_id *oid)
3e3f8bd6 729{
0ebbcf70 730 struct object *obj = lookup_unknown_object(oid);
3e3f8bd6
JK
731 obj->flags |= HAS_OBJ;
732}
733
76c1d9a0 734static int mark_loose_for_connectivity(const struct object_id *oid,
3e3f8bd6
JK
735 const char *path,
736 void *data)
737{
76c1d9a0 738 mark_object_for_connectivity(oid);
3e3f8bd6
JK
739 return 0;
740}
741
76c1d9a0 742static int mark_packed_for_connectivity(const struct object_id *oid,
3e3f8bd6
JK
743 struct packed_git *pack,
744 uint32_t pos,
745 void *data)
746{
76c1d9a0 747 mark_object_for_connectivity(oid);
3e3f8bd6
JK
748 return 0;
749}
750
5ac0a206 751static char const * const fsck_usage[] = {
9c9b4f2f 752 N_("git fsck [<options>] [<object>...]"),
5ac0a206
PH
753 NULL
754};
755
756static struct option fsck_opts[] = {
cf8fe315 757 OPT__VERBOSE(&verbose, N_("be verbose")),
d5d09d47 758 OPT_BOOL(0, "unreachable", &show_unreachable, N_("show unreachable objects")),
cf8fe315 759 OPT_BOOL(0, "dangling", &show_dangling, N_("show dangling objects")),
d5d09d47
SB
760 OPT_BOOL(0, "tags", &show_tags, N_("report tags")),
761 OPT_BOOL(0, "root", &show_root, N_("report root nodes")),
762 OPT_BOOL(0, "cache", &keep_cache_objects, N_("make index objects head nodes")),
763 OPT_BOOL(0, "reflogs", &include_reflogs, N_("make reflogs head nodes (default)")),
764 OPT_BOOL(0, "full", &check_full, N_("also consider packs and alternate objects")),
02976bf8 765 OPT_BOOL(0, "connectivity-only", &connectivity_only, N_("check only connectivity")),
d5d09d47
SB
766 OPT_BOOL(0, "strict", &check_strict, N_("enable more strict checking")),
767 OPT_BOOL(0, "lost-found", &write_lost_and_found,
cf8fe315
NTND
768 N_("write dangling objects in .git/lost-found")),
769 OPT_BOOL(0, "progress", &show_progress, N_("show progress")),
90cf590f 770 OPT_BOOL(0, "name-objects", &name_objects, N_("show verbose names for reachable objects")),
5ac0a206
PH
771 OPT_END(),
772};
e2b4f635 773
baffc0e7 774int cmd_fsck(int argc, const char **argv, const char *prefix)
20222118 775{
78e7b98f 776 int i;
263db403 777 struct object_directory *odb;
20222118 778
8b4c0103
JT
779 /* fsck knows how to handle missing promisor objects */
780 fetch_if_missing = 0;
781
e2b4f635 782 errors_found = 0;
6ebd1caf 783 read_replace_refs = 0;
61e2b015 784
37782920 785 argc = parse_options(argc, argv, prefix, fsck_opts, fsck_usage, 0);
1e49f22f 786
22410549
JS
787 fsck_walk_options.walk = mark_object;
788 fsck_obj_options.walk = mark_used;
789 fsck_obj_options.error_func = fsck_error_func;
790 if (check_strict)
791 fsck_obj_options.strict = 1;
792
1e49f22f
NTND
793 if (show_progress == -1)
794 show_progress = isatty(2);
795 if (verbose)
796 show_progress = 0;
797
5ac0a206
PH
798 if (write_lost_and_found) {
799 check_full = 1;
800 include_reflogs = 0;
889262ea
LT
801 }
802
90cf590f 803 if (name_objects)
a59cfb32 804 fsck_enable_object_names(&fsck_walk_options);
90cf590f 805
2becf00f
JS
806 git_config(fsck_config, NULL);
807
3e3f8bd6
JK
808 if (connectivity_only) {
809 for_each_loose_object(mark_loose_for_connectivity, NULL, 0);
810 for_each_packed_object(mark_packed_for_connectivity, NULL, 0);
811 } else {
0b209034 812 prepare_alt_odb(the_repository);
f0eaf638 813 for (odb = the_repository->objects->odb; odb; odb = odb->next)
263db403 814 fsck_object_dir(odb->path);
e15ef669 815
3e3f8bd6
JK
816 if (check_full) {
817 struct packed_git *p;
818 uint32_t total = 0, count = 0;
819 struct progress *progress = NULL;
e15ef669 820
3e3f8bd6 821 if (show_progress) {
454ea2e4 822 for (p = get_all_packs(the_repository); p;
a80d72db 823 p = p->next) {
3e3f8bd6
JK
824 if (open_pack_index(p))
825 continue;
826 total += p->num_objects;
827 }
1e49f22f 828
3e3f8bd6
JK
829 progress = start_progress(_("Checking objects"), total);
830 }
454ea2e4 831 for (p = get_all_packs(the_repository); p;
a80d72db 832 p = p->next) {
3e3f8bd6 833 /* verify gives error messages itself */
94e10825
NTND
834 if (verify_pack(the_repository,
835 p, fsck_obj_buffer,
3e3f8bd6
JK
836 progress, count))
837 errors_found |= ERROR_PACK;
838 count += p->num_objects;
1e49f22f 839 }
3e3f8bd6 840 stop_progress(&progress);
1e49f22f 841 }
1995b5e0
JK
842
843 if (fsck_finish(&fsck_obj_options))
844 errors_found |= ERROR_OBJECT;
bcee6fd8
LT
845 }
846
3aed2fda 847 for (i = 0; i < argc; i++) {
a6080a0a 848 const char *arg = argv[i];
aca6065c 849 struct object_id oid;
850 if (!get_oid(arg, &oid)) {
5abddd1e 851 struct object *obj = lookup_object(the_repository,
d0229abd 852 &oid);
e1a1388d 853
c2d17b3b 854 if (!obj || !(obj->flags & HAS_OBJ)) {
096c9b8b
JT
855 if (is_promisor_object(&oid))
856 continue;
674ba340 857 error(_("%s: object missing"), oid_to_hex(&oid));
c6c7b16d 858 errors_found |= ERROR_OBJECT;
e1a1388d 859 continue;
c6c7b16d 860 }
e1a1388d 861
092c55d0 862 obj->flags |= USED;
73390290 863 fsck_put_object_name(&fsck_walk_options, &oid,
a59cfb32 864 "%s", arg);
271b8d25 865 mark_object_reachable(obj);
d9839e03
LT
866 continue;
867 }
674ba340 868 error(_("invalid parameter: expected sha1, got '%s'"), arg);
c6c7b16d 869 errors_found |= ERROR_OBJECT;
d9839e03 870 }
d9839e03 871
1024932f 872 /*
d1af002d 873 * If we've not been given any explicit head information, do the
e7bd907d
LT
874 * default ones from .git/refs. We also consider the index file
875 * in this case (ie this implies --cache).
1024932f 876 */
c3271a0e 877 if (!argc) {
1024932f
LT
878 get_default_heads();
879 keep_cache_objects = 1;
880 }
881
ae7c0c92 882 if (keep_cache_objects) {
a33fc72f 883 verify_index_checksum = 1;
00ec50e5 884 verify_ce_order = 1;
ae7c0c92
JH
885 read_cache();
886 for (i = 0; i < active_nr; i++) {
8d9721c8
LT
887 unsigned int mode;
888 struct blob *blob;
ae7c0c92 889 struct object *obj;
8d9721c8 890
7a51ed66 891 mode = active_cache[i]->ce_mode;
302b9282 892 if (S_ISGITLINK(mode))
8d9721c8 893 continue;
da14a7ff
SB
894 blob = lookup_blob(the_repository,
895 &active_cache[i]->oid);
ae7c0c92
JH
896 if (!blob)
897 continue;
898 obj = &blob->object;
092c55d0 899 obj->flags |= USED;
73390290 900 fsck_put_object_name(&fsck_walk_options, &obj->oid,
a59cfb32 901 ":%s", active_cache[i]->name);
271b8d25 902 mark_object_reachable(obj);
ae7c0c92 903 }
53dc3f3e
JH
904 if (active_cache_tree)
905 fsck_cache_tree(active_cache_tree);
ae7c0c92
JH
906 }
907
8ba0bbb2 908 check_connectivity();
e0fd51e1 909
dade47c0 910 if (!git_config_get_bool("core.commitgraph", &i) && i) {
e0fd51e1
DS
911 struct child_process commit_graph_verify = CHILD_PROCESS_INIT;
912 const char *verify_argv[] = { "commit-graph", "verify", NULL, NULL, NULL };
913
e0fd51e1 914 prepare_alt_odb(the_repository);
f0eaf638 915 for (odb = the_repository->objects->odb; odb; odb = odb->next) {
4d0984be
JK
916 child_process_init(&commit_graph_verify);
917 commit_graph_verify.argv = verify_argv;
918 commit_graph_verify.git_cmd = 1;
e0fd51e1 919 verify_argv[2] = "--object-dir";
263db403 920 verify_argv[3] = odb->path;
e0fd51e1
DS
921 if (run_command(&commit_graph_verify))
922 errors_found |= ERROR_COMMIT_GRAPH;
923 }
924 }
925
66ec0390
DS
926 if (!git_config_get_bool("core.multipackindex", &i) && i) {
927 struct child_process midx_verify = CHILD_PROCESS_INIT;
928 const char *midx_argv[] = { "multi-pack-index", "verify", NULL, NULL, NULL };
929
66ec0390 930 prepare_alt_odb(the_repository);
f0eaf638 931 for (odb = the_repository->objects->odb; odb; odb = odb->next) {
4d0984be
JK
932 child_process_init(&midx_verify);
933 midx_verify.argv = midx_argv;
934 midx_verify.git_cmd = 1;
66ec0390 935 midx_argv[2] = "--object-dir";
263db403 936 midx_argv[3] = odb->path;
66ec0390 937 if (run_command(&midx_verify))
e68a5272 938 errors_found |= ERROR_MULTI_PACK_INDEX;
66ec0390
DS
939 }
940 }
941
e2b4f635 942 return errors_found;
20222118 943}