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