]> git.ipfire.org Git - thirdparty/git.git/blame - builtin/fsck.c
The ninth batch
[thirdparty/git.git] / builtin / fsck.c
CommitLineData
03eae9af 1#define USE_THE_REPOSITORY_VARIABLE
baffc0e7 2#include "builtin.h"
f394e093 3#include "gettext.h"
41771fa4 4#include "hex.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"
271b8d25 13#include "fsck.h"
5ac0a206 14#include "parse-options.h"
1e49f22f 15#include "progress.h"
6f7f3beb 16#include "streaming.h"
0317f455 17#include "packfile.h"
87bed179 18#include "object-file.h"
dabab1d6 19#include "object-name.h"
8f491517 20#include "odb.h"
c339932b 21#include "path.h"
08c46a49 22#include "read-cache-ll.h"
cbeab747 23#include "replace-object.h"
5a5ea141 24#include "resolve-undo.h"
e0fd51e1 25#include "run-command.h"
baf889c2 26#include "sparse-index.h"
b29759d8 27#include "worktree.h"
0d30feef 28#include "pack-revindex.h"
756f1bcd 29#include "pack-bitmap.h"
ff5ebe39
DB
30
31#define REACHABLE 0x0001
2d9c58c6 32#define SEEN 0x0002
6e454b9a 33#define HAS_OBJ 0x0004
092c55d0
JT
34/* This flag is set if something points to this object. */
35#define USED 0x0008
d9839e03 36
96f1e58f
DR
37static int show_root;
38static int show_tags;
39static int show_unreachable;
566842f6 40static int include_reflogs = 1;
f29cd393 41static int check_full = 1;
02976bf8 42static int connectivity_only;
96f1e58f
DR
43static int check_strict;
44static int keep_cache_objects;
22410549
JS
45static struct fsck_options fsck_walk_options = FSCK_OPTIONS_DEFAULT;
46static struct fsck_options fsck_obj_options = FSCK_OPTIONS_DEFAULT;
e2b4f635 47static int errors_found;
68f6c019 48static int write_lost_and_found;
20f1eb6b 49static int verbose;
1e49f22f 50static int show_progress = -1;
c6a13b2c 51static int show_dangling = 1;
90cf590f 52static int name_objects;
c1cf918d 53static int check_references = 1;
e2b4f635
JH
54#define ERROR_OBJECT 01
55#define ERROR_REACHABLE 02
a3ed7552 56#define ERROR_PACK 04
122f76f5 57#define ERROR_REFS 010
e0fd51e1 58#define ERROR_COMMIT_GRAPH 020
e68a5272 59#define ERROR_MULTI_PACK_INDEX 040
0d30feef 60#define ERROR_PACK_REV_INDEX 0100
756f1bcd 61#define ERROR_BITMAP 0200
d9839e03 62
82ef89b3 63static const char *describe_object(const struct object_id *oid)
993a21b0 64{
82ef89b3 65 return fsck_describe_object(&fsck_walk_options, oid);
993a21b0
JS
66}
67
82ef89b3
JK
68static const char *printable_type(const struct object_id *oid,
69 enum object_type type)
97ca7ca8
JK
70{
71 const char *ret;
72
82ef89b3 73 if (type == OBJ_NONE)
e989dd96
PS
74 type = odb_read_object_info(the_repository->objects,
75 oid, NULL);
a2b22854 76
82ef89b3 77 ret = type_name(type);
97ca7ca8 78 if (!ret)
674ba340 79 ret = _("unknown");
97ca7ca8
JK
80
81 return ret;
82}
83
c99ba492 84static int objerror(struct object *obj, const char *err)
f1f0d088 85{
e2b4f635 86 errors_found |= ERROR_OBJECT;
674ba340
NTND
87 /* TRANSLATORS: e.g. error in tree 01bfda: <more explanation> */
88 fprintf_ln(stderr, _("error in %s %s: %s"),
82ef89b3
JK
89 printable_type(&obj->oid, obj->type),
90 describe_object(&obj->oid), err);
f1f0d088
PB
91 return -1;
92}
93
8cd4a447 94static int fsck_objects_error_func(struct fsck_options *o UNUSED,
0ec5dfe8 95 void *fsck_report,
8cd4a447 96 enum fsck_msg_type msg_type,
97 enum fsck_msg_id msg_id UNUSED,
98 const char *message)
f1f0d088 99{
0ec5dfe8 100 struct fsck_object_report *report = fsck_report;
101 const struct object_id *oid = report->oid;
102 enum object_type object_type = report->object_type;
103
5afc4b1d 104 switch (msg_type) {
bbb15c51 105 case FSCK_WARN:
674ba340
NTND
106 /* TRANSLATORS: e.g. warning in tree 01bfda: <more explanation> */
107 fprintf_ln(stderr, _("warning in %s %s: %s"),
5afc4b1d
JK
108 printable_type(oid, object_type),
109 describe_object(oid), message);
bbb15c51
NTND
110 return 0;
111 case FSCK_ERROR:
674ba340
NTND
112 /* TRANSLATORS: e.g. error in tree 01bfda: <more explanation> */
113 fprintf_ln(stderr, _("error in %s %s: %s"),
5afc4b1d
JK
114 printable_type(oid, object_type),
115 describe_object(oid), message);
bbb15c51
NTND
116 return 1;
117 default:
5afc4b1d
JK
118 BUG("%d (FSCK_IGNORE?) should never trigger this callback",
119 msg_type);
bbb15c51 120 }
f1f0d088
PB
121}
122
04d39759
LT
123static struct object_array pending;
124
28abf260 125static int mark_object(struct object *obj, enum object_type type,
0b4e9013 126 void *data, struct fsck_options *options UNUSED)
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 */
674ba340 137 printf_ln(_("broken link from %7s %s"),
82ef89b3
JK
138 printable_type(&parent->oid, parent->type),
139 describe_object(&parent->oid));
674ba340
NTND
140 printf_ln(_("broken link from %7s %s"),
141 (type == OBJ_ANY ? _("unknown") : type_name(type)),
142 _("unknown"));
271b8d25
MK
143 errors_found |= ERROR_REACHABLE;
144 return 1;
145 }
146
147 if (type != OBJ_ANY && obj->type != type)
a1cdc251 148 /* ... and the reference to parent is safe here */
674ba340 149 objerror(parent, _("wrong object type in link"));
271b8d25
MK
150
151 if (obj->flags & REACHABLE)
152 return 0;
153 obj->flags |= REACHABLE;
caba7fc3 154
c87910b9 155 if (is_promisor_object(the_repository, &obj->oid))
caba7fc3
JT
156 /*
157 * Further recursion does not need to be performed on this
158 * object since it is a promisor object (so it does not need to
159 * be added to "pending").
160 */
161 return 0;
162
6e454b9a 163 if (!(obj->flags & HAS_OBJ)) {
fcf8e3e1 164 if (parent && !odb_has_object(the_repository->objects, &obj->oid, 1)) {
674ba340
NTND
165 printf_ln(_("broken link from %7s %s\n"
166 " to %7s %s"),
82ef89b3
JK
167 printable_type(&parent->oid, parent->type),
168 describe_object(&parent->oid),
169 printable_type(&obj->oid, obj->type),
170 describe_object(&obj->oid));
271b8d25
MK
171 errors_found |= ERROR_REACHABLE;
172 }
173 return 1;
174 }
175
16aa3bfc 176 add_object_array(obj, NULL, &pending);
04d39759
LT
177 return 0;
178}
179
180static void mark_object_reachable(struct object *obj)
181{
22410549 182 mark_object(obj, OBJ_ANY, NULL, NULL);
04d39759
LT
183}
184
a1cdc251 185static int traverse_one_object(struct object *obj)
04d39759 186{
ba3a08ca
EW
187 int result = fsck_walk(obj, obj, &fsck_walk_options);
188
189 if (obj->type == OBJ_TREE) {
190 struct tree *tree = (struct tree *)obj;
191 free_tree_buffer(tree);
192 }
193 return result;
271b8d25
MK
194}
195
04d39759 196static int traverse_reachable(void)
271b8d25 197{
1e49f22f
NTND
198 struct progress *progress = NULL;
199 unsigned int nr = 0;
04d39759 200 int result = 0;
1e49f22f 201 if (show_progress)
1f7e6478
PS
202 progress = start_delayed_progress(the_repository,
203 _("Checking connectivity"), 0);
04d39759 204 while (pending.nr) {
71992039 205 result |= traverse_one_object(object_array_pop(&pending));
1e49f22f 206 display_progress(progress, ++nr);
04d39759 207 }
1e49f22f 208 stop_progress(&progress);
04d39759 209 return !!result;
271b8d25
MK
210}
211
2bbeddee 212static int mark_used(struct object *obj, enum object_type type UNUSED,
0b4e9013 213 void *data UNUSED, struct fsck_options *options UNUSED)
271b8d25
MK
214{
215 if (!obj)
216 return 1;
092c55d0 217 obj->flags |= USED;
271b8d25 218 return 0;
f1f0d088
PB
219}
220
8d8c2a5a
JK
221static void mark_unreachable_referents(const struct object_id *oid)
222{
223 struct fsck_options options = FSCK_OPTIONS_DEFAULT;
d0229abd 224 struct object *obj = lookup_object(the_repository, oid);
8d8c2a5a
JK
225
226 if (!obj || !(obj->flags & HAS_OBJ))
227 return; /* not part of our original set */
228 if (obj->flags & REACHABLE)
229 return; /* reachable objects already traversed */
230
231 /*
232 * Avoid passing OBJ_NONE to fsck_walk, which will parse the object
233 * (and we want to avoid parsing blobs).
234 */
235 if (obj->type == OBJ_NONE) {
e989dd96
PS
236 enum object_type type = odb_read_object_info(the_repository->objects,
237 &obj->oid, NULL);
8d8c2a5a 238 if (type > 0)
6da43d93 239 object_as_type(obj, type, 0);
8d8c2a5a
JK
240 }
241
242 options.walk = mark_used;
243 fsck_walk(obj, NULL, &options);
fbce4fa9
JK
244 if (obj->type == OBJ_TREE)
245 free_tree_buffer((struct tree *)obj);
8d8c2a5a
JK
246}
247
248static int mark_loose_unreachable_referents(const struct object_id *oid,
be252d33
JK
249 const char *path UNUSED,
250 void *data UNUSED)
8d8c2a5a
JK
251{
252 mark_unreachable_referents(oid);
253 return 0;
254}
255
256static int mark_packed_unreachable_referents(const struct object_id *oid,
be252d33
JK
257 struct packed_git *pack UNUSED,
258 uint32_t pos UNUSED,
259 void *data UNUSED)
8d8c2a5a
JK
260{
261 mark_unreachable_referents(oid);
262 return 0;
263}
264
18af29f2
LT
265/*
266 * Check a single reachable object
267 */
268static void check_reachable_object(struct object *obj)
269{
18af29f2
LT
270 /*
271 * We obviously want the object to be parsed,
272 * except if it was in a pack-file and we didn't
273 * do a full fsck
274 */
6e454b9a 275 if (!(obj->flags & HAS_OBJ)) {
c87910b9 276 if (is_promisor_object(the_repository, &obj->oid))
caba7fc3 277 return;
cc656f4e 278 if (has_object_pack(the_repository, &obj->oid))
18af29f2 279 return; /* it is in pack - forget about it */
82ef89b3
JK
280 printf_ln(_("missing %s %s"),
281 printable_type(&obj->oid, obj->type),
282 describe_object(&obj->oid));
e2b4f635 283 errors_found |= ERROR_REACHABLE;
18af29f2
LT
284 return;
285 }
18af29f2
LT
286}
287
288/*
289 * Check a single unreachable object
290 */
291static void check_unreachable_object(struct object *obj)
292{
293 /*
294 * Missing unreachable object? Ignore it. It's not like
295 * we miss it (since it can't be reached), nor do we want
296 * to complain about it being unreachable (since it does
297 * not exist).
298 */
b4584e4f 299 if (!(obj->flags & HAS_OBJ))
18af29f2
LT
300 return;
301
302 /*
303 * Unreachable object that exists? Show it if asked to,
304 * since this is something that is prunable.
305 */
306 if (show_unreachable) {
82ef89b3
JK
307 printf_ln(_("unreachable %s %s"),
308 printable_type(&obj->oid, obj->type),
309 describe_object(&obj->oid));
18af29f2
LT
310 return;
311 }
312
313 /*
092c55d0 314 * "!USED" means that nothing at all points to it, including
3dff5379 315 * other unreachable objects. In other words, it's the "tip"
18af29f2
LT
316 * of some set of unreachable objects, usually a commit that
317 * got dropped.
318 *
319 * Such starting points are more interesting than some random
320 * set of unreachable objects, so we show them even if the user
321 * hasn't asked for _all_ unreachable objects. If you have
322 * deleted a branch by mistake, this is a prime candidate to
323 * start looking at, for example.
324 */
092c55d0 325 if (!(obj->flags & USED)) {
c6a13b2c 326 if (show_dangling)
82ef89b3
JK
327 printf_ln(_("dangling %s %s"),
328 printable_type(&obj->oid, obj->type),
329 describe_object(&obj->oid));
68f6c019 330 if (write_lost_and_found) {
bba59f58 331 char *filename = repo_git_path(the_repository, "lost-found/%s/%s",
68f6c019 332 obj->type == OBJ_COMMIT ? "commit" : "other",
82ef89b3 333 describe_object(&obj->oid));
68f6c019
JS
334 FILE *f;
335
1a99fe80 336 if (safe_create_leading_directories_const(the_repository, filename)) {
674ba340 337 error(_("could not create lost-found"));
fcd12db6 338 free(filename);
68f6c019
JS
339 return;
340 }
23a9e071 341 f = xfopen(filename, "w");
16a7fcfe 342 if (obj->type == OBJ_BLOB) {
7eda0e4f 343 if (stream_blob_to_fd(fileno(f), &obj->oid, NULL, 1))
674ba340 344 die_errno(_("could not write '%s'"), filename);
16a7fcfe 345 } else
82ef89b3 346 fprintf(f, "%s\n", describe_object(&obj->oid));
47d32af2 347 if (fclose(f))
674ba340 348 die_errno(_("could not finish '%s'"),
d824cbba 349 filename);
fcd12db6 350 free(filename);
68f6c019 351 }
18af29f2
LT
352 return;
353 }
354
355 /*
356 * Otherwise? It's there, it's unreachable, and some other unreachable
357 * object points to it. Ignore it - it's not interesting, and we showed
358 * all the interesting cases above.
359 */
360}
361
362static void check_object(struct object *obj)
363{
20f1eb6b 364 if (verbose)
82ef89b3 365 fprintf_ln(stderr, _("Checking %s"), describe_object(&obj->oid));
20f1eb6b 366
18af29f2
LT
367 if (obj->flags & REACHABLE)
368 check_reachable_object(obj);
369 else
370 check_unreachable_object(obj);
371}
f1f0d088 372
8ba0bbb2
LT
373static void check_connectivity(void)
374{
fc046a75 375 int i, max;
8ba0bbb2 376
04d39759
LT
377 /* Traverse the pending reachable objects */
378 traverse_reachable();
379
8d8c2a5a
JK
380 /*
381 * With --connectivity-only, we won't have actually opened and marked
382 * unreachable objects with USED. Do that now to make --dangling, etc
383 * accurate.
384 */
385 if (connectivity_only && (show_dangling || write_lost_and_found)) {
386 /*
387 * Even though we already have a "struct object" for each of
388 * these in memory, we must not iterate over the internal
389 * object hash as we do below. Our loop would potentially
390 * resize the hash, making our iteration invalid.
391 *
392 * Instead, we'll just go back to the source list of objects,
393 * and ignore any that weren't present in our earlier
394 * traversal.
395 */
d81712ce
PS
396 for_each_loose_object(the_repository->objects,
397 mark_loose_unreachable_referents, NULL, 0);
c87910b9
KN
398 for_each_packed_object(the_repository,
399 mark_packed_unreachable_referents,
400 NULL,
401 0);
8d8c2a5a
JK
402 }
403
8ba0bbb2 404 /* Look up all the requirements, warn about missing objects.. */
74d414c9 405 max = get_max_object_index(the_repository);
20f1eb6b 406 if (verbose)
674ba340 407 fprintf_ln(stderr, _("Checking connectivity (%d objects)"), max);
20f1eb6b 408
fc046a75 409 for (i = 0; i < max; i++) {
74d414c9 410 struct object *obj = get_indexed_object(the_repository, i);
8ba0bbb2 411
18af29f2
LT
412 if (obj)
413 check_object(obj);
8ba0bbb2
LT
414 }
415}
416
7ac4f3a0 417static int fsck_obj(struct object *obj, void *buffer, unsigned long size)
85003492 418{
83cd6f90
RS
419 int err;
420
ba002f3b 421 if (obj->flags & SEEN)
85003492 422 return 0;
ba002f3b 423 obj->flags |= SEEN;
85003492 424
20f1eb6b 425 if (verbose)
674ba340 426 fprintf_ln(stderr, _("Checking %s %s"),
82ef89b3
JK
427 printable_type(&obj->oid, obj->type),
428 describe_object(&obj->oid));
42ea9cb2 429
22410549 430 if (fsck_walk(obj, NULL, &fsck_obj_options))
674ba340 431 objerror(obj, _("broken links"));
7ac4f3a0 432 err = fsck_object(obj, buffer, size, &fsck_obj_options);
83cd6f90
RS
433 if (err)
434 goto out;
1ea34e36 435
ba002f3b
MK
436 if (obj->type == OBJ_COMMIT) {
437 struct commit *commit = (struct commit *) obj;
de2eb7f6 438
ba002f3b 439 if (!commit->parents && show_root)
674ba340 440 printf_ln(_("root %s"),
82ef89b3 441 describe_object(&commit->object.oid));
ba002f3b 442 }
92d4c85d 443
ba002f3b
MK
444 if (obj->type == OBJ_TAG) {
445 struct tag *tag = (struct tag *) obj;
20f1eb6b 446
ba002f3b 447 if (show_tags && tag->tagged) {
674ba340 448 printf_ln(_("tagged %s %s (%s) in %s"),
82ef89b3
JK
449 printable_type(&tag->tagged->oid, tag->tagged->type),
450 describe_object(&tag->tagged->oid),
bbb15c51 451 tag->tag,
82ef89b3 452 describe_object(&tag->object.oid));
ba002f3b 453 }
92d4c85d 454 }
889262ea 455
83cd6f90
RS
456out:
457 if (obj->type == OBJ_TREE)
458 free_tree_buffer((struct tree *)obj);
83cd6f90 459 return err;
20222118
LT
460}
461
9fd75046 462static int fsck_obj_buffer(const struct object_id *oid, enum object_type type,
c9486eb0
NTND
463 unsigned long size, void *buffer, int *eaten)
464{
ec9d2249
NTND
465 /*
466 * Note, buffer may be NULL if type is OBJ_BLOB. See
467 * verify_packfile(), data_valid variable for details.
468 */
c9486eb0 469 struct object *obj;
1ec5bfd2
SB
470 obj = parse_object_buffer(the_repository, oid, type, size, buffer,
471 eaten);
c9486eb0
NTND
472 if (!obj) {
473 errors_found |= ERROR_OBJECT;
674ba340
NTND
474 return error(_("%s: object corrupt or missing"),
475 oid_to_hex(oid));
c9486eb0 476 }
092c55d0
JT
477 obj->flags &= ~(REACHABLE | SEEN);
478 obj->flags |= HAS_OBJ;
7ac4f3a0 479 return fsck_obj(obj, buffer, size);
c9486eb0
NTND
480}
481
96f1e58f 482static int default_refs;
944d8589 483
9461d272 484static void fsck_handle_reflog_oid(const char *refname, struct object_id *oid,
dddbad72 485 timestamp_t timestamp)
55dd5526
JH
486{
487 struct object *obj;
488
9461d272 489 if (!is_null_oid(oid)) {
d0229abd 490 obj = lookup_object(the_repository, oid);
c2d17b3b 491 if (obj && (obj->flags & HAS_OBJ)) {
a59cfb32 492 if (timestamp)
73390290 493 fsck_put_object_name(&fsck_walk_options, oid,
a59cfb32
JK
494 "%s@{%"PRItime"}",
495 refname, timestamp);
092c55d0 496 obj->flags |= USED;
271b8d25 497 mark_object_reachable(obj);
c87910b9 498 } else if (!is_promisor_object(the_repository, oid)) {
674ba340
NTND
499 error(_("%s: invalid reflog entry %s"),
500 refname, oid_to_hex(oid));
19bf6c9b 501 errors_found |= ERROR_REACHABLE;
55dd5526
JH
502 }
503 }
d66ae59b
MH
504}
505
b9fd73a2
PS
506static int fsck_handle_reflog_ent(const char *refname,
507 struct object_id *ooid, struct object_id *noid,
5cf88fd8
ÆAB
508 const char *email UNUSED,
509 timestamp_t timestamp, int tz UNUSED,
b9fd73a2 510 const char *message UNUSED, void *cb_data UNUSED)
55dd5526 511{
20f1eb6b 512 if (verbose)
674ba340
NTND
513 fprintf_ln(stderr, _("Checking reflog %s->%s"),
514 oid_to_hex(ooid), oid_to_hex(noid));
20f1eb6b 515
9461d272 516 fsck_handle_reflog_oid(refname, ooid, 0);
517 fsck_handle_reflog_oid(refname, noid, timestamp);
55dd5526
JH
518 return 0;
519}
520
31f89839 521static int fsck_handle_reflog(const char *logname, void *cb_data)
eb8381c8 522{
b29759d8
NTND
523 struct strbuf refname = STRBUF_INIT;
524
525 strbuf_worktree_ref(cb_data, &refname, logname);
2e5c4758
PS
526 refs_for_each_reflog_ent(get_main_ref_store(the_repository),
527 refname.buf, fsck_handle_reflog_ent,
b9fd73a2 528 NULL);
b29759d8 529 strbuf_release(&refname);
eb8381c8
NP
530 return 0;
531}
532
e8207717 533static int fsck_handle_ref(const char *refname, const char *referent UNUSED, const struct object_id *oid,
5cf88fd8 534 int flag UNUSED, void *cb_data UNUSED)
1024932f 535{
1024932f
LT
536 struct object *obj;
537
109cd76d 538 obj = parse_object(the_repository, oid);
8a498a05 539 if (!obj) {
c87910b9 540 if (is_promisor_object(the_repository, oid)) {
43f25158
JT
541 /*
542 * Increment default_refs anyway, because this is a
543 * valid ref.
544 */
545 default_refs++;
546 return 0;
547 }
674ba340
NTND
548 error(_("%s: invalid sha1 pointer %s"),
549 refname, oid_to_hex(oid));
30d1038d 550 errors_found |= ERROR_REACHABLE;
944d8589
LT
551 /* We'll continue with the rest despite the error.. */
552 return 0;
8a498a05 553 }
122f76f5 554 if (obj->type != OBJ_COMMIT && is_branch(refname)) {
674ba340 555 error(_("%s: not a commit"), refname);
122f76f5
JH
556 errors_found |= ERROR_REFS;
557 }
944d8589 558 default_refs++;
092c55d0 559 obj->flags |= USED;
a59cfb32 560 fsck_put_object_name(&fsck_walk_options,
73390290 561 oid, "%s", refname);
271b8d25 562 mark_object_reachable(obj);
55dd5526 563
7c4d07c7 564 return 0;
1024932f
LT
565}
566
b29759d8
NTND
567static int fsck_head_link(const char *head_ref_name,
568 const char **head_points_at,
a8c754d4
EN
569 struct object_id *head_oid);
570
1024932f
LT
571static void get_default_heads(void)
572{
b29759d8 573 struct worktree **worktrees, **p;
a8c754d4
EN
574 const char *head_points_at;
575 struct object_id head_oid;
576
2e5c4758
PS
577 refs_for_each_rawref(get_main_ref_store(the_repository),
578 fsck_handle_ref, NULL);
b29759d8 579
03f2465b 580 worktrees = get_worktrees();
b29759d8
NTND
581 for (p = worktrees; *p; p++) {
582 struct worktree *wt = *p;
583 struct strbuf ref = STRBUF_INIT;
584
585 strbuf_worktree_ref(wt, &ref, "HEAD");
586 fsck_head_link(ref.buf, &head_points_at, &head_oid);
587 if (head_points_at && !is_null_oid(&head_oid))
e8207717 588 fsck_handle_ref(ref.buf, NULL, &head_oid, 0, NULL);
b29759d8
NTND
589 strbuf_release(&ref);
590
591 if (include_reflogs)
592 refs_for_each_reflog(get_worktree_ref_store(wt),
593 fsck_handle_reflog, wt);
594 }
595 free_worktrees(worktrees);
071fa89e
LT
596
597 /*
598 * Not having any default heads isn't really fatal, but
599 * it does mean that "--unreachable" no longer makes any
600 * sense (since in this case everything will obviously
601 * be unreachable by definition.
602 *
603 * Showing dangling objects is valid, though (as those
604 * dangling objects are likely lost heads).
605 *
606 * So we just print a warning about it, and clear the
607 * "show_unreachable" flag.
608 */
609 if (!default_refs) {
674ba340 610 fprintf_ln(stderr, _("notice: No default references"));
071fa89e
LT
611 show_unreachable = 0;
612 }
1024932f
LT
613}
614
31deb28f
ÆAB
615struct for_each_loose_cb
616{
617 struct progress *progress;
31deb28f
ÆAB
618};
619
4ae0e942
JK
620static int fsck_loose(const struct object_id *oid, const char *path,
621 void *data UNUSED)
c68b489e
JK
622{
623 struct object *obj;
31deb28f 624 enum object_type type = OBJ_NONE;
c68b489e 625 unsigned long size;
16235e3b 626 void *contents = NULL;
c68b489e 627 int eaten;
31deb28f 628 struct object_info oi = OBJECT_INFO_INIT;
7d70b29c 629 struct object_id real_oid = *null_oid(the_hash_algo);
31deb28f
ÆAB
630 int err = 0;
631
31deb28f
ÆAB
632 oi.sizep = &size;
633 oi.typep = &type;
634
0df00535 635 if (read_loose_object(the_repository, path, oid, &real_oid, &contents, &oi) < 0) {
96e41f58
ÆAB
636 if (contents && !oideq(&real_oid, oid))
637 err = error(_("%s: hash-path mismatch, found at: %s"),
638 oid_to_hex(&real_oid), path);
639 else
640 err = error(_("%s: object corrupt or missing: %s"),
641 oid_to_hex(oid), path);
642 }
31deb28f 643 if (err < 0) {
7ac4f3a0 644 errors_found |= ERROR_OBJECT;
16235e3b 645 free(contents);
7ac4f3a0
JK
646 return 0; /* keep checking other objects */
647 }
c68b489e
JK
648
649 if (!contents && type != OBJ_BLOB)
7ac4f3a0 650 BUG("read_loose_object streamed a non-blob");
c68b489e 651
1ec5bfd2
SB
652 obj = parse_object_buffer(the_repository, oid, type, size,
653 contents, &eaten);
654
c68b489e
JK
655 if (!obj) {
656 errors_found |= ERROR_OBJECT;
674ba340 657 error(_("%s: object could not be parsed: %s"),
76c1d9a0 658 oid_to_hex(oid), path);
7ac4f3a0
JK
659 if (!eaten)
660 free(contents);
c68b489e
JK
661 return 0; /* keep checking other objects */
662 }
663
092c55d0
JT
664 obj->flags &= ~(REACHABLE | SEEN);
665 obj->flags |= HAS_OBJ;
7ac4f3a0 666 if (fsck_obj(obj, contents, size))
f0766bf9 667 errors_found |= ERROR_OBJECT;
7ac4f3a0
JK
668
669 if (!eaten)
670 free(contents);
671 return 0; /* keep checking other objects, even if we saw an error */
f0766bf9
JK
672}
673
be252d33
JK
674static int fsck_cruft(const char *basename, const char *path,
675 void *data UNUSED)
f0766bf9
JK
676{
677 if (!starts_with(basename, "tmp_obj_"))
674ba340 678 fprintf_ln(stderr, _("bad sha1 file: %s"), path);
f0766bf9
JK
679 return 0;
680}
681
be252d33 682static int fsck_subdir(unsigned int nr, const char *path UNUSED, void *data)
f0766bf9 683{
31deb28f
ÆAB
684 struct for_each_loose_cb *cb_data = data;
685 struct progress *progress = cb_data->progress;
f0766bf9
JK
686 display_progress(progress, nr + 1);
687 return 0;
688}
689
d81712ce 690static void fsck_source(struct odb_source *source)
8a498a05 691{
1e49f22f 692 struct progress *progress = NULL;
31deb28f 693 struct for_each_loose_cb cb_data = {
31deb28f
ÆAB
694 .progress = progress,
695 };
20f1eb6b
JS
696
697 if (verbose)
674ba340 698 fprintf_ln(stderr, _("Checking object directory"));
20f1eb6b 699
1e49f22f 700 if (show_progress)
1f7e6478
PS
701 progress = start_progress(the_repository,
702 _("Checking object directories"), 256);
f0766bf9 703
d81712ce
PS
704 for_each_loose_file_in_source(source, fsck_loose,
705 fsck_cruft, fsck_subdir, &cb_data);
f0766bf9 706 display_progress(progress, 256);
1e49f22f 707 stop_progress(&progress);
8a498a05
JH
708}
709
b29759d8
NTND
710static int fsck_head_link(const char *head_ref_name,
711 const char **head_points_at,
a8c754d4 712 struct object_id *head_oid)
c3330383 713{
8eb2d0be 714 int null_is_error = 0;
8eb2d0be 715
20f1eb6b 716 if (verbose)
3813a89f 717 fprintf_ln(stderr, _("Checking %s link"), head_ref_name);
20f1eb6b 718
2e5c4758
PS
719 *head_points_at = refs_resolve_ref_unsafe(get_main_ref_store(the_repository),
720 head_ref_name, 0, head_oid,
721 NULL);
a8c754d4 722 if (!*head_points_at) {
122f76f5 723 errors_found |= ERROR_REFS;
3813a89f 724 return error(_("invalid %s"), head_ref_name);
122f76f5 725 }
b29759d8 726 if (!strcmp(*head_points_at, head_ref_name))
8eb2d0be
JH
727 /* detached HEAD */
728 null_is_error = 1;
a8c754d4 729 else if (!starts_with(*head_points_at, "refs/heads/")) {
122f76f5 730 errors_found |= ERROR_REFS;
3813a89f 731 return error(_("%s points to something strange (%s)"),
b29759d8 732 head_ref_name, *head_points_at);
122f76f5 733 }
a8c754d4 734 if (is_null_oid(head_oid)) {
122f76f5
JH
735 if (null_is_error) {
736 errors_found |= ERROR_REFS;
3813a89f 737 return error(_("%s: detached HEAD points at nothing"),
b29759d8 738 head_ref_name);
122f76f5 739 }
3813a89f
JH
740 fprintf_ln(stderr,
741 _("notice: %s points to an unborn branch (%s)"),
742 head_ref_name, *head_points_at + 11);
8eb2d0be 743 }
c3330383
LT
744 return 0;
745}
746
592ec63b 747static int fsck_cache_tree(struct cache_tree *it, const char *index_path)
53dc3f3e
JH
748{
749 int i;
750 int err = 0;
751
20f1eb6b 752 if (verbose)
592ec63b 753 fprintf_ln(stderr, _("Checking cache tree of %s"), index_path);
20f1eb6b 754
53dc3f3e 755 if (0 <= it->entry_count) {
109cd76d 756 struct object *obj = parse_object(the_repository, &it->oid);
6d60bbef 757 if (!obj) {
592ec63b
JK
758 error(_("%s: invalid sha1 pointer in cache-tree of %s"),
759 oid_to_hex(&it->oid), index_path);
122f76f5 760 errors_found |= ERROR_REFS;
6d60bbef
JH
761 return 1;
762 }
092c55d0 763 obj->flags |= USED;
73390290 764 fsck_put_object_name(&fsck_walk_options, &it->oid, ":");
a1cdc251 765 mark_object_reachable(obj);
1974632c 766 if (obj->type != OBJ_TREE)
674ba340 767 err |= objerror(obj, _("non-tree in cache-tree"));
53dc3f3e
JH
768 }
769 for (i = 0; i < it->subtree_nr; i++)
592ec63b 770 err |= fsck_cache_tree(it->down[i]->cache_tree, index_path);
53dc3f3e
JH
771 return err;
772}
773
592ec63b
JK
774static int fsck_resolve_undo(struct index_state *istate,
775 const char *index_path)
5a5ea141
JH
776{
777 struct string_list_item *item;
778 struct string_list *resolve_undo = istate->resolve_undo;
779
780 if (!resolve_undo)
781 return 0;
782
783 for_each_string_list_item(item, resolve_undo) {
784 const char *path = item->string;
785 struct resolve_undo_info *ru = item->util;
786 int i;
787
788 if (!ru)
789 continue;
790 for (i = 0; i < 3; i++) {
791 struct object *obj;
792
793 if (!ru->mode[i] || !S_ISREG(ru->mode[i]))
794 continue;
795
796 obj = parse_object(the_repository, &ru->oid[i]);
797 if (!obj) {
592ec63b
JK
798 error(_("%s: invalid sha1 pointer in resolve-undo of %s"),
799 oid_to_hex(&ru->oid[i]),
800 index_path);
5a5ea141 801 errors_found |= ERROR_REFS;
e0ad1397 802 continue;
5a5ea141
JH
803 }
804 obj->flags |= USED;
805 fsck_put_object_name(&fsck_walk_options, &ru->oid[i],
806 ":(%d):%s", i, path);
807 mark_object_reachable(obj);
808 }
809 }
810 return 0;
811}
812
592ec63b 813static void fsck_index(struct index_state *istate, const char *index_path,
6e6a529b 814 int is_current_worktree)
8840069a
JK
815{
816 unsigned int i;
817
818 /* TODO: audit for interaction with sparse-index. */
819 ensure_full_index(istate);
820 for (i = 0; i < istate->cache_nr; i++) {
821 unsigned int mode;
822 struct blob *blob;
823 struct object *obj;
824
825 mode = istate->cache[i]->ce_mode;
826 if (S_ISGITLINK(mode))
827 continue;
828 blob = lookup_blob(the_repository,
829 &istate->cache[i]->oid);
830 if (!blob)
831 continue;
832 obj = &blob->object;
833 obj->flags |= USED;
834 fsck_put_object_name(&fsck_walk_options, &obj->oid,
592ec63b 835 "%s:%s",
6e6a529b 836 is_current_worktree ? "" : index_path,
592ec63b 837 istate->cache[i]->name);
8840069a
JK
838 mark_object_reachable(obj);
839 }
840 if (istate->cache_tree)
592ec63b
JK
841 fsck_cache_tree(istate->cache_tree, index_path);
842 fsck_resolve_undo(istate, index_path);
8840069a
JK
843}
844
76c1d9a0 845static void mark_object_for_connectivity(const struct object_id *oid)
3e3f8bd6 846{
45a187cc 847 struct object *obj = lookup_unknown_object(the_repository, oid);
3e3f8bd6
JK
848 obj->flags |= HAS_OBJ;
849}
850
76c1d9a0 851static int mark_loose_for_connectivity(const struct object_id *oid,
be252d33
JK
852 const char *path UNUSED,
853 void *data UNUSED)
3e3f8bd6 854{
76c1d9a0 855 mark_object_for_connectivity(oid);
3e3f8bd6
JK
856 return 0;
857}
858
76c1d9a0 859static int mark_packed_for_connectivity(const struct object_id *oid,
be252d33
JK
860 struct packed_git *pack UNUSED,
861 uint32_t pos UNUSED,
862 void *data UNUSED)
3e3f8bd6 863{
76c1d9a0 864 mark_object_for_connectivity(oid);
3e3f8bd6
JK
865 return 0;
866}
867
0d30feef
DS
868static int check_pack_rev_indexes(struct repository *r, int show_progress)
869{
870 struct progress *progress = NULL;
871 uint32_t pack_count = 0;
872 int res = 0;
873
874 if (show_progress) {
cf9cd8b5 875 for (struct packed_git *p = get_all_packs(r); p; p = p->next)
0d30feef 876 pack_count++;
1f7e6478
PS
877 progress = start_delayed_progress(the_repository,
878 "Verifying reverse pack-indexes", pack_count);
0d30feef
DS
879 pack_count = 0;
880 }
881
cf9cd8b5 882 for (struct packed_git *p = get_all_packs(r); p; p = p->next) {
5a6072f6
DS
883 int load_error = load_pack_revindex_from_disk(p);
884
885 if (load_error < 0) {
886 error(_("unable to load rev-index for pack '%s'"), p->pack_name);
887 res = ERROR_PACK_REV_INDEX;
888 } else if (!load_error &&
cf9cd8b5 889 !load_pack_revindex(r, p) &&
5a6072f6 890 verify_pack_revindex(p)) {
0d30feef
DS
891 error(_("invalid rev-index for pack '%s'"), p->pack_name);
892 res = ERROR_PACK_REV_INDEX;
893 }
894 display_progress(progress, ++pack_count);
895 }
896 stop_progress(&progress);
897
898 return res;
899}
900
c1cf918d 901static void fsck_refs(struct repository *r)
902{
903 struct child_process refs_verify = CHILD_PROCESS_INIT;
904 struct progress *progress = NULL;
905
906 if (show_progress)
907 progress = start_progress(r, _("Checking ref database"), 1);
908
909 if (verbose)
910 fprintf_ln(stderr, _("Checking ref database"));
911
912 child_process_init(&refs_verify);
913 refs_verify.git_cmd = 1;
914 strvec_pushl(&refs_verify.args, "refs", "verify", NULL);
915 if (verbose)
916 strvec_push(&refs_verify.args, "--verbose");
917 if (check_strict)
918 strvec_push(&refs_verify.args, "--strict");
919
920 if (run_command(&refs_verify))
921 errors_found |= ERROR_REFS;
922
923 display_progress(progress, 1);
924 stop_progress(&progress);
925}
926
5ac0a206 927static char const * const fsck_usage[] = {
d9054a19
ÆAB
928 N_("git fsck [--tags] [--root] [--unreachable] [--cache] [--no-reflogs]\n"
929 " [--[no-]full] [--strict] [--verbose] [--lost-found]\n"
930 " [--[no-]dangling] [--[no-]progress] [--connectivity-only]\n"
c1cf918d 931 " [--[no-]name-objects] [--[no-]references] [<object>...]"),
5ac0a206
PH
932 NULL
933};
934
935static struct option fsck_opts[] = {
cf8fe315 936 OPT__VERBOSE(&verbose, N_("be verbose")),
d5d09d47 937 OPT_BOOL(0, "unreachable", &show_unreachable, N_("show unreachable objects")),
cf8fe315 938 OPT_BOOL(0, "dangling", &show_dangling, N_("show dangling objects")),
d5d09d47
SB
939 OPT_BOOL(0, "tags", &show_tags, N_("report tags")),
940 OPT_BOOL(0, "root", &show_root, N_("report root nodes")),
941 OPT_BOOL(0, "cache", &keep_cache_objects, N_("make index objects head nodes")),
942 OPT_BOOL(0, "reflogs", &include_reflogs, N_("make reflogs head nodes (default)")),
943 OPT_BOOL(0, "full", &check_full, N_("also consider packs and alternate objects")),
02976bf8 944 OPT_BOOL(0, "connectivity-only", &connectivity_only, N_("check only connectivity")),
d5d09d47
SB
945 OPT_BOOL(0, "strict", &check_strict, N_("enable more strict checking")),
946 OPT_BOOL(0, "lost-found", &write_lost_and_found,
cf8fe315
NTND
947 N_("write dangling objects in .git/lost-found")),
948 OPT_BOOL(0, "progress", &show_progress, N_("show progress")),
90cf590f 949 OPT_BOOL(0, "name-objects", &name_objects, N_("show verbose names for reachable objects")),
c1cf918d 950 OPT_BOOL(0, "references", &check_references, N_("check reference database consistency")),
5ac0a206
PH
951 OPT_END(),
952};
e2b4f635 953
9b1cb507
JC
954int cmd_fsck(int argc,
955 const char **argv,
956 const char *prefix,
957 struct repository *repo UNUSED)
20222118 958{
78e7b98f 959 int i;
a1e2581a 960 struct odb_source *source;
20222118 961
8b4c0103
JT
962 /* fsck knows how to handle missing promisor objects */
963 fetch_if_missing = 0;
964
e2b4f635 965 errors_found = 0;
d24eda4e 966 disable_replace_refs();
069e4452 967 save_commit_buffer = 0;
61e2b015 968
37782920 969 argc = parse_options(argc, argv, prefix, fsck_opts, fsck_usage, 0);
1e49f22f 970
22410549
JS
971 fsck_walk_options.walk = mark_object;
972 fsck_obj_options.walk = mark_used;
8cd4a447 973 fsck_obj_options.error_func = fsck_objects_error_func;
22410549
JS
974 if (check_strict)
975 fsck_obj_options.strict = 1;
976
1e49f22f
NTND
977 if (show_progress == -1)
978 show_progress = isatty(2);
979 if (verbose)
980 show_progress = 0;
981
5ac0a206
PH
982 if (write_lost_and_found) {
983 check_full = 1;
984 include_reflogs = 0;
889262ea
LT
985 }
986
90cf590f 987 if (name_objects)
a59cfb32 988 fsck_enable_object_names(&fsck_walk_options);
90cf590f 989
9ce196e8 990 repo_config(the_repository, git_fsck_config, &fsck_obj_options);
f30e4d85 991 prepare_repo_settings(the_repository);
2becf00f 992
c1cf918d 993 if (check_references)
994 fsck_refs(the_repository);
995
3e3f8bd6 996 if (connectivity_only) {
d81712ce
PS
997 for_each_loose_object(the_repository->objects,
998 mark_loose_for_connectivity, NULL, 0);
c87910b9
KN
999 for_each_packed_object(the_repository,
1000 mark_packed_for_connectivity, NULL, 0);
3e3f8bd6 1001 } else {
c44185f6 1002 odb_prepare_alternates(the_repository->objects);
a1e2581a 1003 for (source = the_repository->objects->sources; source; source = source->next)
d81712ce 1004 fsck_source(source);
e15ef669 1005
3e3f8bd6
JK
1006 if (check_full) {
1007 struct packed_git *p;
1008 uint32_t total = 0, count = 0;
1009 struct progress *progress = NULL;
e15ef669 1010
3e3f8bd6 1011 if (show_progress) {
454ea2e4 1012 for (p = get_all_packs(the_repository); p;
a80d72db 1013 p = p->next) {
3e3f8bd6
JK
1014 if (open_pack_index(p))
1015 continue;
1016 total += p->num_objects;
1017 }
1e49f22f 1018
1f7e6478
PS
1019 progress = start_progress(the_repository,
1020 _("Checking objects"), total);
3e3f8bd6 1021 }
454ea2e4 1022 for (p = get_all_packs(the_repository); p;
a80d72db 1023 p = p->next) {
3e3f8bd6 1024 /* verify gives error messages itself */
94e10825
NTND
1025 if (verify_pack(the_repository,
1026 p, fsck_obj_buffer,
3e3f8bd6
JK
1027 progress, count))
1028 errors_found |= ERROR_PACK;
1029 count += p->num_objects;
1e49f22f 1030 }
3e3f8bd6 1031 stop_progress(&progress);
1e49f22f 1032 }
1995b5e0
JK
1033
1034 if (fsck_finish(&fsck_obj_options))
1035 errors_found |= ERROR_OBJECT;
bcee6fd8
LT
1036 }
1037
3aed2fda 1038 for (i = 0; i < argc; i++) {
a6080a0a 1039 const char *arg = argv[i];
aca6065c 1040 struct object_id oid;
d850b7a5 1041 if (!repo_get_oid(the_repository, arg, &oid)) {
5abddd1e 1042 struct object *obj = lookup_object(the_repository,
d0229abd 1043 &oid);
e1a1388d 1044
c2d17b3b 1045 if (!obj || !(obj->flags & HAS_OBJ)) {
c87910b9 1046 if (is_promisor_object(the_repository, &oid))
096c9b8b 1047 continue;
674ba340 1048 error(_("%s: object missing"), oid_to_hex(&oid));
c6c7b16d 1049 errors_found |= ERROR_OBJECT;
e1a1388d 1050 continue;
c6c7b16d 1051 }
e1a1388d 1052
092c55d0 1053 obj->flags |= USED;
73390290 1054 fsck_put_object_name(&fsck_walk_options, &oid,
a59cfb32 1055 "%s", arg);
271b8d25 1056 mark_object_reachable(obj);
d9839e03
LT
1057 continue;
1058 }
674ba340 1059 error(_("invalid parameter: expected sha1, got '%s'"), arg);
c6c7b16d 1060 errors_found |= ERROR_OBJECT;
d9839e03 1061 }
d9839e03 1062
1024932f 1063 /*
d1af002d 1064 * If we've not been given any explicit head information, do the
e7bd907d
LT
1065 * default ones from .git/refs. We also consider the index file
1066 * in this case (ie this implies --cache).
1024932f 1067 */
c3271a0e 1068 if (!argc) {
1024932f
LT
1069 get_default_heads();
1070 keep_cache_objects = 1;
1071 }
1072
ae7c0c92 1073 if (keep_cache_objects) {
fb64ca52
JK
1074 struct worktree **worktrees, **p;
1075
a33fc72f 1076 verify_index_checksum = 1;
00ec50e5 1077 verify_ce_order = 1;
fb64ca52
JK
1078
1079 worktrees = get_worktrees();
1080 for (p = worktrees; *p; p++) {
1081 struct worktree *wt = *p;
1082 struct index_state istate =
1083 INDEX_STATE_INIT(the_repository);
8e4710f0 1084 char *path, *wt_gitdir;
fb64ca52 1085
592ec63b
JK
1086 /*
1087 * Make a copy since the buffer is reusable
1088 * and may get overwritten by other calls
1089 * while we're examining the index.
1090 */
a973f60d 1091 path = xstrdup(worktree_git_path(the_repository, wt, "index"));
8e4710f0
PS
1092 wt_gitdir = get_worktree_git_dir(wt);
1093
1094 read_index_from(&istate, path, wt_gitdir);
8d3e7eac 1095 fsck_index(&istate, path, wt->is_current);
8e4710f0 1096
fb64ca52 1097 discard_index(&istate);
8e4710f0 1098 free(wt_gitdir);
592ec63b 1099 free(path);
fb64ca52
JK
1100 }
1101 free_worktrees(worktrees);
ae7c0c92
JH
1102 }
1103
0d30feef 1104 errors_found |= check_pack_rev_indexes(the_repository, show_progress);
756f1bcd
DS
1105 if (verify_bitmap_files(the_repository))
1106 errors_found |= ERROR_BITMAP;
0d30feef 1107
8ba0bbb2 1108 check_connectivity();
e0fd51e1 1109
f30e4d85 1110 if (the_repository->settings.core_commit_graph) {
e0fd51e1 1111 struct child_process commit_graph_verify = CHILD_PROCESS_INIT;
e0fd51e1 1112
c44185f6 1113 odb_prepare_alternates(the_repository->objects);
a1e2581a 1114 for (source = the_repository->objects->sources; source; source = source->next) {
4d0984be 1115 child_process_init(&commit_graph_verify);
4d0984be 1116 commit_graph_verify.git_cmd = 1;
2b709893 1117 strvec_pushl(&commit_graph_verify.args, "commit-graph",
a1e2581a 1118 "verify", "--object-dir", source->path, NULL);
eda206f6
TB
1119 if (show_progress)
1120 strvec_push(&commit_graph_verify.args, "--progress");
1121 else
1122 strvec_push(&commit_graph_verify.args, "--no-progress");
e0fd51e1
DS
1123 if (run_command(&commit_graph_verify))
1124 errors_found |= ERROR_COMMIT_GRAPH;
1125 }
1126 }
1127
dc557087 1128 if (the_repository->settings.core_multi_pack_index) {
66ec0390 1129 struct child_process midx_verify = CHILD_PROCESS_INIT;
66ec0390 1130
c44185f6 1131 odb_prepare_alternates(the_repository->objects);
a1e2581a 1132 for (source = the_repository->objects->sources; source; source = source->next) {
4d0984be 1133 child_process_init(&midx_verify);
4d0984be 1134 midx_verify.git_cmd = 1;
2b709893 1135 strvec_pushl(&midx_verify.args, "multi-pack-index",
a1e2581a 1136 "verify", "--object-dir", source->path, NULL);
39bdd303
TB
1137 if (show_progress)
1138 strvec_push(&midx_verify.args, "--progress");
1139 else
1140 strvec_push(&midx_verify.args, "--no-progress");
66ec0390 1141 if (run_command(&midx_verify))
e68a5272 1142 errors_found |= ERROR_MULTI_PACK_INDEX;
66ec0390
DS
1143 }
1144 }
1145
e2b4f635 1146 return errors_found;
20222118 1147}