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