]> git.ipfire.org Git - thirdparty/git.git/blame - fsck.c
fsck: move checks for gitattributes
[thirdparty/git.git] / fsck.c
CommitLineData
355885d5 1#include "cache.h"
cbd53a21 2#include "object-store.h"
109cd76d 3#include "repository.h"
355885d5
MK
4#include "object.h"
5#include "blob.h"
6#include "tree.h"
7#include "tree-walk.h"
8#include "commit.h"
9#include "tag.h"
10#include "fsck.h"
cec097be 11#include "refs.h"
a2b26ffb 12#include "url.h"
a18fcc9f 13#include "utf8.h"
7b35efd7 14#include "decorate.h"
159e7b08 15#include "oidset.h"
27387444 16#include "packfile.h"
ed8b10f6
JK
17#include "submodule-config.h"
18#include "config.h"
07259e74 19#include "credential.h"
3ac68a93 20#include "help.h"
159e7b08 21
f417eed8 22#define STR(x) #x
a4a9cc19 23#define MSG_ID(id, msg_type) { STR(id), NULL, NULL, FSCK_##msg_type },
c99ba492 24static struct {
f417eed8
JS
25 const char *id_string;
26 const char *downcased;
a4a9cc19 27 const char *camelcased;
1b32b59f 28 enum fsck_msg_type msg_type;
c99ba492 29} msg_id_info[FSCK_MSG_MAX + 1] = {
901f2f67 30 FOREACH_FSCK_MSG_ID(MSG_ID)
a4a9cc19 31 { NULL, NULL, NULL, -1 }
c99ba492
JS
32};
33#undef MSG_ID
b5495024 34#undef STR
c99ba492 35
a46baac6 36static void prepare_msg_ids(void)
f417eed8
JS
37{
38 int i;
39
a46baac6
NTND
40 if (msg_id_info[0].downcased)
41 return;
42
43 /* convert id_string to lower case, without underscores. */
44 for (i = 0; i < FSCK_MSG_MAX; i++) {
45 const char *p = msg_id_info[i].id_string;
46 int len = strlen(p);
47 char *q = xmalloc(len);
48
49 msg_id_info[i].downcased = q;
50 while (*p)
51 if (*p == '_')
52 p++;
53 else
54 *(q)++ = tolower(*(p)++);
55 *q = '\0';
a4a9cc19
NTND
56
57 p = msg_id_info[i].id_string;
58 q = xmalloc(len);
59 msg_id_info[i].camelcased = q;
60 while (*p) {
61 if (*p == '_') {
62 p++;
63 if (*p)
64 *q++ = *p++;
65 } else {
66 *q++ = tolower(*p++);
67 }
f417eed8 68 }
a4a9cc19 69 *q = '\0';
f417eed8 70 }
a46baac6
NTND
71}
72
73static int parse_msg_id(const char *text)
74{
75 int i;
76
77 prepare_msg_ids();
f417eed8
JS
78
79 for (i = 0; i < FSCK_MSG_MAX; i++)
80 if (!strcmp(text, msg_id_info[i].downcased))
81 return i;
82
83 return -1;
84}
85
3ac68a93
NTND
86void list_config_fsck_msg_ids(struct string_list *list, const char *prefix)
87{
88 int i;
89
90 prepare_msg_ids();
91
3ac68a93 92 for (i = 0; i < FSCK_MSG_MAX; i++)
a4a9cc19 93 list_config_item(list, prefix, msg_id_info[i].camelcased);
3ac68a93
NTND
94}
95
1b32b59f 96static enum fsck_msg_type fsck_msg_type(enum fsck_msg_id msg_id,
c99ba492
JS
97 struct fsck_options *options)
98{
0282f4dc
JS
99 assert(msg_id >= 0 && msg_id < FSCK_MSG_MAX);
100
e35d65a7 101 if (!options->msg_type) {
1b32b59f 102 enum fsck_msg_type msg_type = msg_id_info[msg_id].msg_type;
e35d65a7 103
0282f4dc
JS
104 if (options->strict && msg_type == FSCK_WARN)
105 msg_type = FSCK_ERROR;
e35d65a7 106 return msg_type;
0282f4dc 107 }
c99ba492 108
e35d65a7 109 return options->msg_type[msg_id];
c99ba492
JS
110}
111
1b32b59f 112static enum fsck_msg_type parse_msg_type(const char *str)
0282f4dc
JS
113{
114 if (!strcmp(str, "error"))
115 return FSCK_ERROR;
116 else if (!strcmp(str, "warn"))
117 return FSCK_WARN;
efaba7cc
JS
118 else if (!strcmp(str, "ignore"))
119 return FSCK_IGNORE;
0282f4dc
JS
120 else
121 die("Unknown fsck message type: '%s'", str);
122}
123
5d477a33
JS
124int is_valid_msg_type(const char *msg_id, const char *msg_type)
125{
126 if (parse_msg_id(msg_id) < 0)
127 return 0;
128 parse_msg_type(msg_type);
129 return 1;
130}
131
53692df2
ÆAB
132void fsck_set_msg_type_from_ids(struct fsck_options *options,
133 enum fsck_msg_id msg_id,
134 enum fsck_msg_type msg_type)
135{
136 if (!options->msg_type) {
137 int i;
138 enum fsck_msg_type *severity;
139 ALLOC_ARRAY(severity, FSCK_MSG_MAX);
140 for (i = 0; i < FSCK_MSG_MAX; i++)
141 severity[i] = fsck_msg_type(i, options);
142 options->msg_type = severity;
143 }
144
145 options->msg_type[msg_id] = msg_type;
146}
147
0282f4dc 148void fsck_set_msg_type(struct fsck_options *options,
f1abc2d0 149 const char *msg_id_str, const char *msg_type_str)
0282f4dc 150{
1b32b59f 151 int msg_id = parse_msg_id(msg_id_str);
c72da1a2 152 enum fsck_msg_type msg_type = parse_msg_type(msg_type_str);
0282f4dc 153
f1abc2d0
ÆAB
154 if (msg_id < 0)
155 die("Unhandled message id: %s", msg_id_str);
0282f4dc 156
f1abc2d0
ÆAB
157 if (msg_type != FSCK_ERROR && msg_id_info[msg_id].msg_type == FSCK_FATAL)
158 die("Cannot demote %s to %s", msg_id_str, msg_type_str);
f50c4407 159
53692df2 160 fsck_set_msg_type_from_ids(options, msg_id, msg_type);
0282f4dc
JS
161}
162
163void fsck_set_msg_types(struct fsck_options *options, const char *values)
164{
165 char *buf = xstrdup(values), *to_free = buf;
166 int done = 0;
167
168 while (!done) {
169 int len = strcspn(buf, " ,|"), equal;
170
171 done = !buf[len];
172 if (!len) {
173 buf++;
174 continue;
175 }
176 buf[len] = '\0';
177
178 for (equal = 0;
179 equal < len && buf[equal] != '=' && buf[equal] != ':';
180 equal++)
181 buf[equal] = tolower(buf[equal]);
182 buf[equal] = '\0';
183
cd94c6f9
JS
184 if (!strcmp(buf, "skiplist")) {
185 if (equal == len)
186 die("skiplist requires a path");
24eb33eb 187 oidset_parse_file(&options->skiplist, buf + equal + 1);
cd94c6f9
JS
188 buf += len + 1;
189 continue;
190 }
191
0282f4dc
JS
192 if (equal == len)
193 die("Missing '=': '%s'", buf);
355885d5 194
0282f4dc
JS
195 fsck_set_msg_type(options, buf, buf + equal + 1);
196 buf += len + 1;
197 }
198 free(to_free);
199}
200
f5979376
JK
201static int object_on_skiplist(struct fsck_options *opts,
202 const struct object_id *oid)
fb162877 203{
f5979376 204 return opts && oid && oidset_contains(&opts->skiplist, oid);
fb162877
RJ
205}
206
38370253
JK
207__attribute__((format (printf, 5, 6)))
208static int report(struct fsck_options *options,
209 const struct object_id *oid, enum object_type object_type,
35af754b 210 enum fsck_msg_id msg_id, const char *fmt, ...)
c99ba492
JS
211{
212 va_list ap;
213 struct strbuf sb = STRBUF_INIT;
1b32b59f
ÆAB
214 enum fsck_msg_type msg_type = fsck_msg_type(msg_id, options);
215 int result;
c99ba492 216
efaba7cc
JS
217 if (msg_type == FSCK_IGNORE)
218 return 0;
219
38370253 220 if (object_on_skiplist(options, oid))
cd94c6f9
JS
221 return 0;
222
f50c4407
JS
223 if (msg_type == FSCK_FATAL)
224 msg_type = FSCK_ERROR;
f27d05b1
JS
225 else if (msg_type == FSCK_INFO)
226 msg_type = FSCK_WARN;
f50c4407 227
034a7b7b 228 prepare_msg_ids();
35af754b 229 strbuf_addf(&sb, "%s: ", msg_id_info[msg_id].camelcased);
71ab8fa8 230
c99ba492
JS
231 va_start(ap, fmt);
232 strbuf_vaddf(&sb, fmt, ap);
38370253 233 result = options->error_func(options, oid, object_type,
394d5d31 234 msg_type, msg_id, sb.buf);
c99ba492
JS
235 strbuf_release(&sb);
236 va_end(ap);
237
238 return result;
239}
240
a59cfb32
JK
241void fsck_enable_object_names(struct fsck_options *options)
242{
243 if (!options->object_names)
73390290 244 options->object_names = kh_init_oid_map();
a59cfb32
JK
245}
246
73390290
JK
247const char *fsck_get_object_name(struct fsck_options *options,
248 const struct object_id *oid)
7b35efd7 249{
73390290 250 khiter_t pos;
7b35efd7
JS
251 if (!options->object_names)
252 return NULL;
73390290
JK
253 pos = kh_get_oid_map(options->object_names, *oid);
254 if (pos >= kh_end(options->object_names))
255 return NULL;
256 return kh_value(options->object_names, pos);
7b35efd7
JS
257}
258
73390290
JK
259void fsck_put_object_name(struct fsck_options *options,
260 const struct object_id *oid,
a59cfb32 261 const char *fmt, ...)
7b35efd7
JS
262{
263 va_list ap;
264 struct strbuf buf = STRBUF_INIT;
73390290
JK
265 khiter_t pos;
266 int hashret;
7b35efd7
JS
267
268 if (!options->object_names)
269 return;
73390290
JK
270
271 pos = kh_put_oid_map(options->object_names, *oid, &hashret);
272 if (!hashret)
7b35efd7
JS
273 return;
274 va_start(ap, fmt);
275 strbuf_vaddf(&buf, fmt, ap);
73390290 276 kh_value(options->object_names, pos) = strbuf_detach(&buf, NULL);
7b35efd7
JS
277 va_end(ap);
278}
279
a59cfb32 280const char *fsck_describe_object(struct fsck_options *options,
73390290 281 const struct object_id *oid)
90cf590f 282{
a59cfb32
JK
283 static struct strbuf bufs[] = {
284 STRBUF_INIT, STRBUF_INIT, STRBUF_INIT, STRBUF_INIT
285 };
286 static int b = 0;
287 struct strbuf *buf;
73390290 288 const char *name = fsck_get_object_name(options, oid);
a59cfb32
JK
289
290 buf = bufs + b;
291 b = (b + 1) % ARRAY_SIZE(bufs);
292 strbuf_reset(buf);
73390290 293 strbuf_addstr(buf, oid_to_hex(oid));
a59cfb32
JK
294 if (name)
295 strbuf_addf(buf, " (%s)", name);
90cf590f 296
a59cfb32 297 return buf->buf;
90cf590f
JS
298}
299
22410549 300static int fsck_walk_tree(struct tree *tree, void *data, struct fsck_options *options)
355885d5
MK
301{
302 struct tree_desc desc;
303 struct name_entry entry;
304 int res = 0;
7b35efd7 305 const char *name;
355885d5
MK
306
307 if (parse_tree(tree))
308 return -1;
309
73390290 310 name = fsck_get_object_name(options, &tree->object.oid);
8354fa3d
DT
311 if (init_tree_desc_gently(&desc, tree->buffer, tree->size))
312 return -1;
313 while (tree_entry_gently(&desc, &entry)) {
7b35efd7 314 struct object *obj;
355885d5
MK
315 int result;
316
317 if (S_ISGITLINK(entry.mode))
318 continue;
7b35efd7
JS
319
320 if (S_ISDIR(entry.mode)) {
ea82b2a0 321 obj = (struct object *)lookup_tree(the_repository, &entry.oid);
2720f6db 322 if (name && obj)
73390290 323 fsck_put_object_name(options, &entry.oid, "%s%s/",
a59cfb32 324 name, entry.path);
7b35efd7
JS
325 result = options->walk(obj, OBJ_TREE, data, options);
326 }
327 else if (S_ISREG(entry.mode) || S_ISLNK(entry.mode)) {
ea82b2a0 328 obj = (struct object *)lookup_blob(the_repository, &entry.oid);
2720f6db 329 if (name && obj)
73390290 330 fsck_put_object_name(options, &entry.oid, "%s%s",
a59cfb32 331 name, entry.path);
7b35efd7
JS
332 result = options->walk(obj, OBJ_BLOB, data, options);
333 }
355885d5 334 else {
82247e9b 335 result = error("in tree %s: entry %s has bad mode %.6o",
73390290 336 fsck_describe_object(options, &tree->object.oid),
a59cfb32 337 entry.path, entry.mode);
355885d5
MK
338 }
339 if (result < 0)
340 return result;
341 if (!res)
342 res = result;
343 }
344 return res;
345}
346
22410549 347static int fsck_walk_commit(struct commit *commit, void *data, struct fsck_options *options)
355885d5 348{
7b35efd7 349 int counter = 0, generation = 0, name_prefix_len = 0;
355885d5
MK
350 struct commit_list *parents;
351 int res;
352 int result;
7b35efd7 353 const char *name;
355885d5
MK
354
355 if (parse_commit(commit))
356 return -1;
357
73390290 358 name = fsck_get_object_name(options, &commit->object.oid);
7b35efd7 359 if (name)
73390290 360 fsck_put_object_name(options, get_commit_tree_oid(commit),
a59cfb32 361 "%s:", name);
7b35efd7 362
2e27bd77
DS
363 result = options->walk((struct object *)get_commit_tree(commit),
364 OBJ_TREE, data, options);
355885d5
MK
365 if (result < 0)
366 return result;
367 res = result;
368
369 parents = commit->parents;
7b35efd7
JS
370 if (name && parents) {
371 int len = strlen(name), power;
372
373 if (len && name[len - 1] == '^') {
374 generation = 1;
375 name_prefix_len = len - 1;
376 }
377 else { /* parse ~<generation> suffix */
378 for (generation = 0, power = 1;
379 len && isdigit(name[len - 1]);
380 power *= 10)
381 generation += power * (name[--len] - '0');
382 if (power > 1 && len && name[len - 1] == '~')
383 name_prefix_len = len - 1;
e89f8936
JS
384 else {
385 /* Maybe a non-first parent, e.g. HEAD^2 */
386 generation = 0;
387 name_prefix_len = len;
388 }
7b35efd7
JS
389 }
390 }
391
355885d5 392 while (parents) {
7b35efd7 393 if (name) {
73390290 394 struct object_id *oid = &parents->item->object.oid;
7b35efd7 395
b84c7838 396 if (counter++)
73390290 397 fsck_put_object_name(options, oid, "%s^%d",
a59cfb32 398 name, counter);
7b35efd7 399 else if (generation > 0)
73390290 400 fsck_put_object_name(options, oid, "%.*s~%d",
a59cfb32
JK
401 name_prefix_len, name,
402 generation + 1);
7b35efd7 403 else
73390290 404 fsck_put_object_name(options, oid, "%s^", name);
7b35efd7 405 }
22410549 406 result = options->walk((struct object *)parents->item, OBJ_COMMIT, data, options);
355885d5
MK
407 if (result < 0)
408 return result;
409 if (!res)
410 res = result;
411 parents = parents->next;
412 }
413 return res;
414}
415
22410549 416static int fsck_walk_tag(struct tag *tag, void *data, struct fsck_options *options)
355885d5 417{
73390290 418 const char *name = fsck_get_object_name(options, &tag->object.oid);
7b35efd7 419
355885d5
MK
420 if (parse_tag(tag))
421 return -1;
7b35efd7 422 if (name)
73390290 423 fsck_put_object_name(options, &tag->tagged->oid, "%s", name);
22410549 424 return options->walk(tag->tagged, OBJ_ANY, data, options);
355885d5
MK
425}
426
22410549 427int fsck_walk(struct object *obj, void *data, struct fsck_options *options)
355885d5
MK
428{
429 if (!obj)
430 return -1;
a2b22854
JK
431
432 if (obj->type == OBJ_NONE)
109cd76d 433 parse_object(the_repository, &obj->oid);
a2b22854 434
355885d5
MK
435 switch (obj->type) {
436 case OBJ_BLOB:
437 return 0;
438 case OBJ_TREE:
22410549 439 return fsck_walk_tree((struct tree *)obj, data, options);
355885d5 440 case OBJ_COMMIT:
22410549 441 return fsck_walk_commit((struct commit *)obj, data, options);
355885d5 442 case OBJ_TAG:
22410549 443 return fsck_walk_tag((struct tag *)obj, data, options);
355885d5 444 default:
a59cfb32 445 error("Unknown object type for %s",
73390290 446 fsck_describe_object(options, &obj->oid));
355885d5
MK
447 return -1;
448 }
449}
ba002f3b 450
9068cfb2
RS
451struct name_stack {
452 const char **names;
453 size_t nr, alloc;
454};
455
456static void name_stack_push(struct name_stack *stack, const char *name)
457{
458 ALLOC_GROW(stack->names, stack->nr + 1, stack->alloc);
459 stack->names[stack->nr++] = name;
460}
461
462static const char *name_stack_pop(struct name_stack *stack)
463{
464 return stack->nr ? stack->names[--stack->nr] : NULL;
465}
466
467static void name_stack_clear(struct name_stack *stack)
468{
469 FREE_AND_NULL(stack->names);
470 stack->nr = stack->alloc = 0;
471}
472
ba002f3b
MK
473/*
474 * The entries in a tree are ordered in the _path_ order,
475 * which means that a directory entry is ordered by adding
476 * a slash to the end of it.
477 *
478 * So a directory called "a" is ordered _after_ a file
479 * called "a.c", because "a/" sorts after "a.c".
480 */
481#define TREE_UNORDERED (-1)
482#define TREE_HAS_DUPS (-2)
483
9068cfb2
RS
484static int is_less_than_slash(unsigned char c)
485{
486 return '\0' < c && c < '/';
487}
488
489static int verify_ordered(unsigned mode1, const char *name1,
490 unsigned mode2, const char *name2,
491 struct name_stack *candidates)
ba002f3b
MK
492{
493 int len1 = strlen(name1);
494 int len2 = strlen(name2);
495 int len = len1 < len2 ? len1 : len2;
496 unsigned char c1, c2;
497 int cmp;
498
499 cmp = memcmp(name1, name2, len);
500 if (cmp < 0)
501 return 0;
502 if (cmp > 0)
503 return TREE_UNORDERED;
504
505 /*
506 * Ok, the first <len> characters are the same.
507 * Now we need to order the next one, but turn
508 * a '\0' into a '/' for a directory entry.
509 */
510 c1 = name1[len];
511 c2 = name2[len];
512 if (!c1 && !c2)
513 /*
514 * git-write-tree used to write out a nonsense tree that has
515 * entries with the same name, one blob and one tree. Make
516 * sure we do not have duplicate entries.
517 */
518 return TREE_HAS_DUPS;
519 if (!c1 && S_ISDIR(mode1))
520 c1 = '/';
521 if (!c2 && S_ISDIR(mode2))
522 c2 = '/';
9068cfb2
RS
523
524 /*
525 * There can be non-consecutive duplicates due to the implicitly
86715592 526 * added slash, e.g.:
9068cfb2
RS
527 *
528 * foo
529 * foo.bar
530 * foo.bar.baz
531 * foo.bar/
532 * foo/
533 *
534 * Record non-directory candidates (like "foo" and "foo.bar" in
535 * the example) on a stack and check directory candidates (like
536 * foo/" and "foo.bar/") against that stack.
537 */
538 if (!c1 && is_less_than_slash(c2)) {
539 name_stack_push(candidates, name1);
540 } else if (c2 == '/' && is_less_than_slash(c1)) {
541 for (;;) {
542 const char *p;
543 const char *f_name = name_stack_pop(candidates);
544
545 if (!f_name)
546 break;
547 if (!skip_prefix(name2, f_name, &p))
fe747043 548 continue;
9068cfb2
RS
549 if (!*p)
550 return TREE_HAS_DUPS;
551 if (is_less_than_slash(*p)) {
552 name_stack_push(candidates, f_name);
553 break;
554 }
555 }
556 }
557
ba002f3b
MK
558 return c1 < c2 ? 0 : TREE_UNORDERED;
559}
560
9e1947cb 561static int fsck_tree(const struct object_id *tree_oid,
23a173a7
JK
562 const char *buffer, unsigned long size,
563 struct fsck_options *options)
ba002f3b 564{
8354fa3d 565 int retval = 0;
c479d14a 566 int has_null_sha1 = 0;
ba002f3b
MK
567 int has_full_path = 0;
568 int has_empty_name = 0;
5d34a435
JK
569 int has_dot = 0;
570 int has_dotdot = 0;
5c17f512 571 int has_dotgit = 0;
ba002f3b
MK
572 int has_zero_pad = 0;
573 int has_bad_modes = 0;
574 int has_dup_entries = 0;
575 int not_properly_sorted = 0;
576 struct tree_desc desc;
577 unsigned o_mode;
578 const char *o_name;
9068cfb2 579 struct name_stack df_dup_candidates = { NULL };
ba002f3b 580
23a173a7 581 if (init_tree_desc_gently(&desc, buffer, size)) {
0282f679
JK
582 retval += report(options, tree_oid, OBJ_TREE,
583 FSCK_MSG_BAD_TREE,
584 "cannot be parsed as a tree");
8354fa3d
DT
585 return retval;
586 }
ba002f3b
MK
587
588 o_mode = 0;
589 o_name = NULL;
ba002f3b
MK
590
591 while (desc.size) {
5ec1e728 592 unsigned short mode;
288a74bc 593 const char *name, *backslash;
9e1947cb 594 const struct object_id *entry_oid;
ba002f3b 595
9e1947cb 596 entry_oid = tree_entry_extract(&desc, &name, &mode);
ba002f3b 597
9e1947cb 598 has_null_sha1 |= is_null_oid(entry_oid);
effd12ec
HS
599 has_full_path |= !!strchr(name, '/');
600 has_empty_name |= !*name;
601 has_dot |= !strcmp(name, ".");
602 has_dotdot |= !strcmp(name, "..");
ed9c3220 603 has_dotgit |= is_hfs_dotgit(name) || is_ntfs_dotgit(name);
ba002f3b 604 has_zero_pad |= *(char *)desc.buffer == '0';
159e7b08 605
b7b1fca1
JK
606 if (is_hfs_dotgitmodules(name) || is_ntfs_dotgitmodules(name)) {
607 if (!S_ISLNK(mode))
9e1947cb
JK
608 oidset_insert(&options->gitmodules_found,
609 entry_oid);
b7b1fca1 610 else
38370253 611 retval += report(options,
9e1947cb 612 tree_oid, OBJ_TREE,
b7b1fca1
JK
613 FSCK_MSG_GITMODULES_SYMLINK,
614 ".gitmodules is a symbolic link");
615 }
159e7b08 616
f8587c31
PS
617 if (is_hfs_dotgitattributes(name) || is_ntfs_dotgitattributes(name)) {
618 if (S_ISLNK(mode))
619 retval += report(options, tree_oid, OBJ_TREE,
620 FSCK_MSG_GITATTRIBUTES_SYMLINK,
621 ".gitattributes is a symlink");
622 }
623
bb6832d5
JK
624 if (S_ISLNK(mode)) {
625 if (is_hfs_dotgitignore(name) ||
626 is_ntfs_dotgitignore(name))
627 retval += report(options, tree_oid, OBJ_TREE,
628 FSCK_MSG_GITIGNORE_SYMLINK,
629 ".gitignore is a symlink");
bb6832d5
JK
630 if (is_hfs_dotmailmap(name) ||
631 is_ntfs_dotmailmap(name))
632 retval += report(options, tree_oid, OBJ_TREE,
633 FSCK_MSG_MAILMAP_SYMLINK,
634 ".mailmap is a symlink");
635 }
636
288a74bc
JS
637 if ((backslash = strchr(name, '\\'))) {
638 while (backslash) {
639 backslash++;
640 has_dotgit |= is_ntfs_dotgit(backslash);
bdfef049
JS
641 if (is_ntfs_dotgitmodules(backslash)) {
642 if (!S_ISLNK(mode))
9e1947cb
JK
643 oidset_insert(&options->gitmodules_found,
644 entry_oid);
bdfef049 645 else
9e1947cb 646 retval += report(options, tree_oid, OBJ_TREE,
bdfef049
JS
647 FSCK_MSG_GITMODULES_SYMLINK,
648 ".gitmodules is a symbolic link");
649 }
288a74bc
JS
650 backslash = strchr(backslash, '\\');
651 }
652 }
653
8354fa3d 654 if (update_tree_entry_gently(&desc)) {
0282f679
JK
655 retval += report(options, tree_oid, OBJ_TREE,
656 FSCK_MSG_BAD_TREE,
657 "cannot be parsed as a tree");
8354fa3d
DT
658 break;
659 }
ba002f3b
MK
660
661 switch (mode) {
662 /*
663 * Standard modes..
664 */
665 case S_IFREG | 0755:
666 case S_IFREG | 0644:
667 case S_IFLNK:
668 case S_IFDIR:
669 case S_IFGITLINK:
670 break;
671 /*
672 * This is nonstandard, but we had a few of these
673 * early on when we honored the full set of mode
674 * bits..
675 */
676 case S_IFREG | 0664:
22410549 677 if (!options->strict)
ba002f3b 678 break;
1cf01a34 679 /* fallthrough */
ba002f3b
MK
680 default:
681 has_bad_modes = 1;
682 }
683
684 if (o_name) {
9068cfb2
RS
685 switch (verify_ordered(o_mode, o_name, mode, name,
686 &df_dup_candidates)) {
ba002f3b
MK
687 case TREE_UNORDERED:
688 not_properly_sorted = 1;
689 break;
690 case TREE_HAS_DUPS:
691 has_dup_entries = 1;
692 break;
693 default:
694 break;
695 }
696 }
697
698 o_mode = mode;
699 o_name = name;
ba002f3b
MK
700 }
701
9068cfb2
RS
702 name_stack_clear(&df_dup_candidates);
703
c479d14a 704 if (has_null_sha1)
0282f679
JK
705 retval += report(options, tree_oid, OBJ_TREE,
706 FSCK_MSG_NULL_SHA1,
707 "contains entries pointing to null sha1");
ba002f3b 708 if (has_full_path)
0282f679
JK
709 retval += report(options, tree_oid, OBJ_TREE,
710 FSCK_MSG_FULL_PATHNAME,
711 "contains full pathnames");
ba002f3b 712 if (has_empty_name)
0282f679
JK
713 retval += report(options, tree_oid, OBJ_TREE,
714 FSCK_MSG_EMPTY_NAME,
715 "contains empty pathname");
5d34a435 716 if (has_dot)
0282f679
JK
717 retval += report(options, tree_oid, OBJ_TREE,
718 FSCK_MSG_HAS_DOT,
719 "contains '.'");
5d34a435 720 if (has_dotdot)
0282f679
JK
721 retval += report(options, tree_oid, OBJ_TREE,
722 FSCK_MSG_HAS_DOTDOT,
723 "contains '..'");
5c17f512 724 if (has_dotgit)
0282f679
JK
725 retval += report(options, tree_oid, OBJ_TREE,
726 FSCK_MSG_HAS_DOTGIT,
727 "contains '.git'");
ba002f3b 728 if (has_zero_pad)
0282f679
JK
729 retval += report(options, tree_oid, OBJ_TREE,
730 FSCK_MSG_ZERO_PADDED_FILEMODE,
731 "contains zero-padded file modes");
ba002f3b 732 if (has_bad_modes)
0282f679
JK
733 retval += report(options, tree_oid, OBJ_TREE,
734 FSCK_MSG_BAD_FILEMODE,
735 "contains bad file modes");
ba002f3b 736 if (has_dup_entries)
0282f679
JK
737 retval += report(options, tree_oid, OBJ_TREE,
738 FSCK_MSG_DUPLICATE_ENTRIES,
739 "contains duplicate file entries");
ba002f3b 740 if (not_properly_sorted)
0282f679
JK
741 retval += report(options, tree_oid, OBJ_TREE,
742 FSCK_MSG_TREE_NOT_SORTED,
743 "not properly sorted");
ba002f3b
MK
744 return retval;
745}
746
84d18c0b 747static int verify_headers(const void *data, unsigned long size,
cc579000
JK
748 const struct object_id *oid, enum object_type type,
749 struct fsck_options *options)
4d0d8975
JS
750{
751 const char *buffer = (const char *)data;
752 unsigned long i;
753
754 for (i = 0; i < size; i++) {
755 switch (buffer[i]) {
756 case '\0':
cc579000 757 return report(options, oid, type,
c99ba492
JS
758 FSCK_MSG_NUL_IN_HEADER,
759 "unterminated header: NUL at offset %ld", i);
4d0d8975
JS
760 case '\n':
761 if (i + 1 < size && buffer[i + 1] == '\n')
762 return 0;
763 }
764 }
765
84d18c0b
JH
766 /*
767 * We did not find double-LF that separates the header
768 * and the body. Not having a body is not a crime but
769 * we do want to see the terminating LF for the last header
770 * line.
771 */
772 if (size && buffer[size - 1] == '\n')
773 return 0;
774
cc579000 775 return report(options, oid, type,
c99ba492 776 FSCK_MSG_UNTERMINATED_HEADER, "unterminated header");
4d0d8975
JS
777}
778
78543993
JK
779static int fsck_ident(const char **ident,
780 const struct object_id *oid, enum object_type type,
781 struct fsck_options *options)
daae1922 782{
e6826e33 783 const char *p = *ident;
d4b8de04
JK
784 char *end;
785
e6826e33
JS
786 *ident = strchrnul(*ident, '\n');
787 if (**ident == '\n')
788 (*ident)++;
789
790 if (*p == '<')
78543993 791 return report(options, oid, type, FSCK_MSG_MISSING_NAME_BEFORE_EMAIL, "invalid author/committer line - missing space before email");
e6826e33
JS
792 p += strcspn(p, "<>\n");
793 if (*p == '>')
78543993 794 return report(options, oid, type, FSCK_MSG_BAD_NAME, "invalid author/committer line - bad name");
e6826e33 795 if (*p != '<')
78543993 796 return report(options, oid, type, FSCK_MSG_MISSING_EMAIL, "invalid author/committer line - missing email");
e6826e33 797 if (p[-1] != ' ')
78543993 798 return report(options, oid, type, FSCK_MSG_MISSING_SPACE_BEFORE_EMAIL, "invalid author/committer line - missing space before email");
e6826e33
JS
799 p++;
800 p += strcspn(p, "<>\n");
801 if (*p != '>')
78543993 802 return report(options, oid, type, FSCK_MSG_BAD_EMAIL, "invalid author/committer line - bad email");
e6826e33
JS
803 p++;
804 if (*p != ' ')
78543993 805 return report(options, oid, type, FSCK_MSG_MISSING_SPACE_BEFORE_DATE, "invalid author/committer line - missing space before date");
e6826e33
JS
806 p++;
807 if (*p == '0' && p[1] != ' ')
78543993 808 return report(options, oid, type, FSCK_MSG_ZERO_PADDED_DATE, "invalid author/committer line - zero-padded date");
1aeb7e75 809 if (date_overflows(parse_timestamp(p, &end, 10)))
78543993 810 return report(options, oid, type, FSCK_MSG_BAD_DATE_OVERFLOW, "invalid author/committer line - date causes integer overflow");
e6826e33 811 if ((end == p || *end != ' '))
78543993 812 return report(options, oid, type, FSCK_MSG_BAD_DATE, "invalid author/committer line - bad date");
e6826e33
JS
813 p = end + 1;
814 if ((*p != '+' && *p != '-') ||
815 !isdigit(p[1]) ||
816 !isdigit(p[2]) ||
817 !isdigit(p[3]) ||
818 !isdigit(p[4]) ||
819 (p[5] != '\n'))
78543993 820 return report(options, oid, type, FSCK_MSG_BAD_TIMEZONE, "invalid author/committer line - bad time zone");
e6826e33 821 p += 6;
daae1922
JN
822 return 0;
823}
824
c5b4269b
JK
825static int fsck_commit(const struct object_id *oid,
826 const char *buffer, unsigned long size,
827 struct fsck_options *options)
ba002f3b 828{
f648ee70 829 struct object_id tree_oid, parent_oid;
ec652315 830 unsigned author_count;
daae1922 831 int err;
6d2d780f 832 const char *buffer_begin = buffer;
c54f5ca9 833 const char *p;
ba002f3b 834
c5b4269b 835 if (verify_headers(buffer, size, oid, OBJ_COMMIT, options))
4d0d8975
JS
836 return -1;
837
cf4fff57 838 if (!skip_prefix(buffer, "tree ", &buffer))
c5b4269b 839 return report(options, oid, OBJ_COMMIT, FSCK_MSG_MISSING_TREE, "invalid format - expected 'tree' line");
c54f5ca9 840 if (parse_oid_hex(buffer, &tree_oid, &p) || *p != '\n') {
c5b4269b 841 err = report(options, oid, OBJ_COMMIT, FSCK_MSG_BAD_TREE_SHA1, "invalid 'tree' line format - bad sha1");
b3584761
JS
842 if (err)
843 return err;
844 }
c54f5ca9 845 buffer = p + 1;
cf4fff57 846 while (skip_prefix(buffer, "parent ", &buffer)) {
f648ee70 847 if (parse_oid_hex(buffer, &parent_oid, &p) || *p != '\n') {
c5b4269b 848 err = report(options, oid, OBJ_COMMIT, FSCK_MSG_BAD_PARENT_SHA1, "invalid 'parent' line format - bad sha1");
b3584761
JS
849 if (err)
850 return err;
851 }
c54f5ca9 852 buffer = p + 1;
ba002f3b 853 }
c9ad147f
JS
854 author_count = 0;
855 while (skip_prefix(buffer, "author ", &buffer)) {
856 author_count++;
c5b4269b 857 err = fsck_ident(&buffer, oid, OBJ_COMMIT, options);
c9ad147f
JS
858 if (err)
859 return err;
ba002f3b 860 }
c9ad147f 861 if (author_count < 1)
c5b4269b 862 err = report(options, oid, OBJ_COMMIT, FSCK_MSG_MISSING_AUTHOR, "invalid format - expected 'author' line");
c9ad147f 863 else if (author_count > 1)
c5b4269b 864 err = report(options, oid, OBJ_COMMIT, FSCK_MSG_MULTIPLE_AUTHORS, "invalid format - multiple 'author' lines");
daae1922
JN
865 if (err)
866 return err;
cf4fff57 867 if (!skip_prefix(buffer, "committer ", &buffer))
c5b4269b
JK
868 return report(options, oid, OBJ_COMMIT, FSCK_MSG_MISSING_COMMITTER, "invalid format - expected 'committer' line");
869 err = fsck_ident(&buffer, oid, OBJ_COMMIT, options);
daae1922
JN
870 if (err)
871 return err;
6d2d780f 872 if (memchr(buffer_begin, '\0', size)) {
c5b4269b 873 err = report(options, oid, OBJ_COMMIT, FSCK_MSG_NUL_IN_COMMIT,
6d2d780f
JH
874 "NUL byte in the commit object body");
875 if (err)
876 return err;
877 }
ba002f3b
MK
878 return 0;
879}
880
103fb6d4 881static int fsck_tag(const struct object_id *oid, const char *buffer,
2175a0c6 882 unsigned long size, struct fsck_options *options)
cec097be 883{
f648ee70 884 struct object_id tagged_oid;
acf9de4c
ÆAB
885 int tagged_type;
886 return fsck_tag_standalone(oid, buffer, size, options, &tagged_oid,
887 &tagged_type);
888}
889
890int fsck_tag_standalone(const struct object_id *oid, const char *buffer,
891 unsigned long size, struct fsck_options *options,
892 struct object_id *tagged_oid,
893 int *tagged_type)
894{
cec097be 895 int ret = 0;
23a173a7 896 char *eol;
cec097be 897 struct strbuf sb = STRBUF_INIT;
c54f5ca9 898 const char *p;
cec097be 899
103fb6d4 900 ret = verify_headers(buffer, size, oid, OBJ_TAG, options);
8a272f29 901 if (ret)
cec097be
JS
902 goto done;
903
904 if (!skip_prefix(buffer, "object ", &buffer)) {
103fb6d4 905 ret = report(options, oid, OBJ_TAG, FSCK_MSG_MISSING_OBJECT, "invalid format - expected 'object' line");
cec097be
JS
906 goto done;
907 }
acf9de4c 908 if (parse_oid_hex(buffer, tagged_oid, &p) || *p != '\n') {
103fb6d4 909 ret = report(options, oid, OBJ_TAG, FSCK_MSG_BAD_OBJECT_SHA1, "invalid 'object' line format - bad sha1");
7d7d5b05
JS
910 if (ret)
911 goto done;
cec097be 912 }
c54f5ca9 913 buffer = p + 1;
cec097be
JS
914
915 if (!skip_prefix(buffer, "type ", &buffer)) {
103fb6d4 916 ret = report(options, oid, OBJ_TAG, FSCK_MSG_MISSING_TYPE_ENTRY, "invalid format - expected 'type' line");
cec097be
JS
917 goto done;
918 }
919 eol = strchr(buffer, '\n');
920 if (!eol) {
103fb6d4 921 ret = report(options, oid, OBJ_TAG, FSCK_MSG_MISSING_TYPE, "invalid format - unexpected end after 'type' line");
cec097be
JS
922 goto done;
923 }
acf9de4c
ÆAB
924 *tagged_type = type_from_string_gently(buffer, eol - buffer, 1);
925 if (*tagged_type < 0)
103fb6d4 926 ret = report(options, oid, OBJ_TAG, FSCK_MSG_BAD_TYPE, "invalid 'type' value");
cec097be
JS
927 if (ret)
928 goto done;
929 buffer = eol + 1;
930
931 if (!skip_prefix(buffer, "tag ", &buffer)) {
103fb6d4 932 ret = report(options, oid, OBJ_TAG, FSCK_MSG_MISSING_TAG_ENTRY, "invalid format - expected 'tag' line");
cec097be
JS
933 goto done;
934 }
935 eol = strchr(buffer, '\n');
936 if (!eol) {
103fb6d4 937 ret = report(options, oid, OBJ_TAG, FSCK_MSG_MISSING_TAG, "invalid format - unexpected end after 'type' line");
cec097be
JS
938 goto done;
939 }
940 strbuf_addf(&sb, "refs/tags/%.*s", (int)(eol - buffer), buffer);
f27d05b1 941 if (check_refname_format(sb.buf, 0)) {
103fb6d4 942 ret = report(options, oid, OBJ_TAG,
38370253
JK
943 FSCK_MSG_BAD_TAG_NAME,
944 "invalid 'tag' name: %.*s",
945 (int)(eol - buffer), buffer);
f27d05b1
JS
946 if (ret)
947 goto done;
948 }
cec097be
JS
949 buffer = eol + 1;
950
f27d05b1 951 if (!skip_prefix(buffer, "tagger ", &buffer)) {
cec097be 952 /* early tags do not contain 'tagger' lines; warn only */
103fb6d4 953 ret = report(options, oid, OBJ_TAG, FSCK_MSG_MISSING_TAGGER_ENTRY, "invalid format - expected 'tagger' line");
f27d05b1
JS
954 if (ret)
955 goto done;
956 }
cec097be 957 else
103fb6d4 958 ret = fsck_ident(&buffer, oid, OBJ_TAG, options);
9a1a3a4d
ÆAB
959 if (!*buffer)
960 goto done;
cec097be 961
acf9de4c
ÆAB
962 if (!starts_with(buffer, "\n")) {
963 /*
964 * The verify_headers() check will allow
965 * e.g. "[...]tagger <tagger>\nsome
966 * garbage\n\nmessage" to pass, thinking "some
967 * garbage" could be a custom header. E.g. "mktag"
968 * doesn't want any unknown headers.
969 */
970 ret = report(options, oid, OBJ_TAG, FSCK_MSG_EXTRA_HEADER_ENTRY, "invalid format - extra header(s) after 'tagger'");
971 if (ret)
972 goto done;
973 }
974
cec097be
JS
975done:
976 strbuf_release(&sb);
cec097be
JS
977 return ret;
978}
979
a2b26ffb
JN
980/*
981 * Like builtin/submodule--helper.c's starts_with_dot_slash, but without
982 * relying on the platform-dependent is_dir_sep helper.
983 *
984 * This is for use in checking whether a submodule URL is interpreted as
985 * relative to the current directory on any platform, since \ is a
986 * directory separator on Windows but not on other platforms.
987 */
988static int starts_with_dot_slash(const char *str)
989{
990 return str[0] == '.' && (str[1] == '/' || str[1] == '\\');
991}
992
993/*
994 * Like starts_with_dot_slash, this is a variant of submodule--helper's
995 * helper of the same name with the twist that it accepts backslash as a
996 * directory separator even on non-Windows platforms.
997 */
998static int starts_with_dot_dot_slash(const char *str)
999{
1000 return str[0] == '.' && starts_with_dot_slash(str + 1);
1001}
1002
1003static int submodule_url_is_relative(const char *url)
1004{
1005 return starts_with_dot_slash(url) || starts_with_dot_dot_slash(url);
1006}
1007
c44088ec
JN
1008/*
1009 * Count directory components that a relative submodule URL should chop
1010 * from the remote_url it is to be resolved against.
1011 *
1012 * In other words, this counts "../" components at the start of a
1013 * submodule URL.
1014 *
1015 * Returns the number of directory components to chop and writes a
1016 * pointer to the next character of url after all leading "./" and
1017 * "../" components to out.
1018 */
1019static int count_leading_dotdots(const char *url, const char **out)
1020{
1021 int result = 0;
1022 while (1) {
1023 if (starts_with_dot_dot_slash(url)) {
1024 result++;
1025 url += strlen("../");
1026 continue;
1027 }
1028 if (starts_with_dot_slash(url)) {
1029 url += strlen("./");
1030 continue;
1031 }
1032 *out = url;
1033 return result;
1034 }
1035}
a2b26ffb
JN
1036/*
1037 * Check whether a transport is implemented by git-remote-curl.
1038 *
1039 * If it is, returns 1 and writes the URL that would be passed to
1040 * git-remote-curl to the "out" parameter.
1041 *
1042 * Otherwise, returns 0 and leaves "out" untouched.
1043 *
1044 * Examples:
1045 * http::https://example.com/repo.git -> 1, https://example.com/repo.git
1046 * https://example.com/repo.git -> 1, https://example.com/repo.git
1047 * git://example.com/repo.git -> 0
1048 *
1049 * This is for use in checking for previously exploitable bugs that
1050 * required a submodule URL to be passed to git-remote-curl.
1051 */
1052static int url_to_curl_url(const char *url, const char **out)
1053{
1054 /*
1055 * We don't need to check for case-aliases, "http.exe", and so
1056 * on because in the default configuration, is_transport_allowed
1057 * prevents URLs with those schemes from being cloned
1058 * automatically.
1059 */
1060 if (skip_prefix(url, "http::", out) ||
1061 skip_prefix(url, "https::", out) ||
1062 skip_prefix(url, "ftp::", out) ||
1063 skip_prefix(url, "ftps::", out))
1064 return 1;
1065 if (starts_with(url, "http://") ||
1066 starts_with(url, "https://") ||
1067 starts_with(url, "ftp://") ||
1068 starts_with(url, "ftps://")) {
1069 *out = url;
1070 return 1;
1071 }
1072 return 0;
1073}
1074
07259e74
JK
1075static int check_submodule_url(const char *url)
1076{
a2b26ffb 1077 const char *curl_url;
07259e74
JK
1078
1079 if (looks_like_command_line_option(url))
1080 return -1;
1081
6aed5673 1082 if (submodule_url_is_relative(url) || starts_with(url, "git://")) {
c44088ec
JN
1083 char *decoded;
1084 const char *next;
1085 int has_nl;
1086
a2b26ffb
JN
1087 /*
1088 * This could be appended to an http URL and url-decoded;
1089 * check for malicious characters.
1090 */
c44088ec
JN
1091 decoded = url_decode(url);
1092 has_nl = !!strchr(decoded, '\n');
1093
a2b26ffb
JN
1094 free(decoded);
1095 if (has_nl)
1096 return -1;
c44088ec
JN
1097
1098 /*
1099 * URLs which escape their root via "../" can overwrite
1100 * the host field and previous components, resolving to
1a3609e4
JN
1101 * URLs like https::example.com/submodule.git and
1102 * https:///example.com/submodule.git that were
c44088ec
JN
1103 * susceptible to CVE-2020-11008.
1104 */
1105 if (count_leading_dotdots(url, &next) > 0 &&
1a3609e4 1106 (*next == ':' || *next == '/'))
c44088ec 1107 return -1;
a2b26ffb
JN
1108 }
1109
1110 else if (url_to_curl_url(url, &curl_url)) {
1111 struct credential c = CREDENTIAL_INIT;
1a3609e4
JN
1112 int ret = 0;
1113 if (credential_from_url_gently(&c, curl_url, 1) ||
1114 !*c.host)
1115 ret = -1;
a2b26ffb
JN
1116 credential_clear(&c);
1117 return ret;
1118 }
1119
1120 return 0;
07259e74
JK
1121}
1122
ed8b10f6 1123struct fsck_gitmodules_data {
6da40b22 1124 const struct object_id *oid;
ed8b10f6
JK
1125 struct fsck_options *options;
1126 int ret;
1127};
1128
1129static int fsck_gitmodules_fn(const char *var, const char *value, void *vdata)
1130{
1131 struct fsck_gitmodules_data *data = vdata;
1132 const char *subsection, *key;
f5914f4b 1133 size_t subsection_len;
ed8b10f6
JK
1134 char *name;
1135
1136 if (parse_config_key(var, "submodule", &subsection, &subsection_len, &key) < 0 ||
1137 !subsection)
1138 return 0;
1139
1140 name = xmemdupz(subsection, subsection_len);
1141 if (check_submodule_name(name) < 0)
38370253 1142 data->ret |= report(data->options,
6da40b22 1143 data->oid, OBJ_BLOB,
ed8b10f6
JK
1144 FSCK_MSG_GITMODULES_NAME,
1145 "disallowed submodule name: %s",
1146 name);
a124133e 1147 if (!strcmp(key, "url") && value &&
07259e74 1148 check_submodule_url(value) < 0)
38370253 1149 data->ret |= report(data->options,
6da40b22 1150 data->oid, OBJ_BLOB,
a124133e
JK
1151 FSCK_MSG_GITMODULES_URL,
1152 "disallowed submodule url: %s",
1153 value);
1a7fd1fb
JK
1154 if (!strcmp(key, "path") && value &&
1155 looks_like_command_line_option(value))
38370253 1156 data->ret |= report(data->options,
6da40b22 1157 data->oid, OBJ_BLOB,
1a7fd1fb
JK
1158 FSCK_MSG_GITMODULES_PATH,
1159 "disallowed submodule path: %s",
1160 value);
bb92255e
JN
1161 if (!strcmp(key, "update") && value &&
1162 parse_submodule_update_type(value) == SM_UPDATE_COMMAND)
7034cd09 1163 data->ret |= report(data->options, data->oid, OBJ_BLOB,
bb92255e
JN
1164 FSCK_MSG_GITMODULES_UPDATE,
1165 "disallowed submodule update setting: %s",
1166 value);
ed8b10f6
JK
1167 free(name);
1168
1169 return 0;
1170}
1171
6da40b22 1172static int fsck_blob(const struct object_id *oid, const char *buf,
7ac4f3a0
JK
1173 unsigned long size, struct fsck_options *options)
1174{
bb3a9265 1175 int ret = 0;
ed8b10f6 1176
6da40b22 1177 if (object_on_skiplist(options, oid))
fb162877
RJ
1178 return 0;
1179
bb3a9265
PS
1180 if (oidset_contains(&options->gitmodules_found, oid)) {
1181 struct config_options config_opts = { 0 };
1182 struct fsck_gitmodules_data data;
1183
1184 oidset_insert(&options->gitmodules_done, oid);
1185
1186 if (!buf) {
1187 /*
1188 * A missing buffer here is a sign that the caller found the
1189 * blob too gigantic to load into memory. Let's just consider
1190 * that an error.
1191 */
1192 return report(options, oid, OBJ_BLOB,
1193 FSCK_MSG_GITMODULES_LARGE,
1194 ".gitmodules too large to parse");
1195 }
1196
1197 data.oid = oid;
1198 data.options = options;
1199 data.ret = 0;
1200 config_opts.error_action = CONFIG_ERROR_SILENT;
1201 if (git_config_from_mem(fsck_gitmodules_fn, CONFIG_ORIGIN_BLOB,
1202 ".gitmodules", buf, size, &data, &config_opts))
1203 data.ret |= report(options, oid, OBJ_BLOB,
1204 FSCK_MSG_GITMODULES_PARSE,
1205 "could not parse gitmodules blob");
1206 ret |= data.ret;
ed8b10f6
JK
1207 }
1208
bb3a9265 1209 return ret;
7ac4f3a0
JK
1210}
1211
90a398bb 1212int fsck_object(struct object *obj, void *data, unsigned long size,
22410549 1213 struct fsck_options *options)
ba002f3b
MK
1214{
1215 if (!obj)
38370253 1216 return report(options, NULL, OBJ_NONE, FSCK_MSG_BAD_OBJECT_SHA1, "no valid object to fsck");
ba002f3b
MK
1217
1218 if (obj->type == OBJ_BLOB)
6da40b22 1219 return fsck_blob(&obj->oid, data, size, options);
ba002f3b 1220 if (obj->type == OBJ_TREE)
b2f2039c 1221 return fsck_tree(&obj->oid, data, size, options);
ba002f3b 1222 if (obj->type == OBJ_COMMIT)
c5b4269b 1223 return fsck_commit(&obj->oid, data, size, options);
ba002f3b 1224 if (obj->type == OBJ_TAG)
103fb6d4 1225 return fsck_tag(&obj->oid, data, size, options);
ba002f3b 1226
38370253
JK
1227 return report(options, &obj->oid, obj->type,
1228 FSCK_MSG_UNKNOWN_TYPE,
1229 "unknown type '%d' (internal fsck error)",
1230 obj->type);
ba002f3b 1231}
d6ffc8d7 1232
1cd772cc 1233int fsck_error_function(struct fsck_options *o,
5afc4b1d
JK
1234 const struct object_id *oid,
1235 enum object_type object_type,
394d5d31
ÆAB
1236 enum fsck_msg_type msg_type,
1237 enum fsck_msg_id msg_id,
1238 const char *message)
d6ffc8d7 1239{
0282f4dc 1240 if (msg_type == FSCK_WARN) {
5afc4b1d 1241 warning("object %s: %s", fsck_describe_object(o, oid), message);
0282f4dc
JS
1242 return 0;
1243 }
5afc4b1d 1244 error("object %s: %s", fsck_describe_object(o, oid), message);
d6ffc8d7
MK
1245 return 1;
1246}
159e7b08 1247
a59a8c68
PS
1248static int fsck_blobs(struct oidset *blobs_found, struct oidset *blobs_done,
1249 enum fsck_msg_id msg_missing, enum fsck_msg_id msg_type,
1250 struct fsck_options *options, const char *blob_type)
159e7b08
JK
1251{
1252 int ret = 0;
1253 struct oidset_iter iter;
1254 const struct object_id *oid;
1255
a59a8c68 1256 oidset_iter_init(blobs_found, &iter);
159e7b08 1257 while ((oid = oidset_iter_next(&iter))) {
159e7b08
JK
1258 enum object_type type;
1259 unsigned long size;
1260 char *buf;
1261
a59a8c68 1262 if (oidset_contains(blobs_done, oid))
159e7b08
JK
1263 continue;
1264
7913f53b 1265 buf = read_object_file(oid, &type, &size);
159e7b08 1266 if (!buf) {
b8b00f16 1267 if (is_promisor_object(oid))
27387444 1268 continue;
38370253 1269 ret |= report(options,
a59a8c68
PS
1270 oid, OBJ_BLOB, msg_missing,
1271 "unable to read %s blob", blob_type);
159e7b08
JK
1272 continue;
1273 }
1274
1275 if (type == OBJ_BLOB)
b8b00f16 1276 ret |= fsck_blob(oid, buf, size, options);
159e7b08 1277 else
a59a8c68
PS
1278 ret |= report(options, oid, type, msg_type,
1279 "non-blob found at %s", blob_type);
159e7b08
JK
1280 free(buf);
1281 }
1282
a59a8c68
PS
1283 oidset_clear(blobs_found);
1284 oidset_clear(blobs_done);
1285
1286 return ret;
1287}
1288
1289int fsck_finish(struct fsck_options *options)
1290{
1291 int ret = 0;
1292
1293 ret |= fsck_blobs(&options->gitmodules_found, &options->gitmodules_done,
1294 FSCK_MSG_GITMODULES_MISSING, FSCK_MSG_GITMODULES_BLOB,
1295 options, ".gitmodules");
159e7b08 1296
159e7b08
JK
1297 return ret;
1298}
1f3299fd 1299
fb79f5bf 1300int git_fsck_config(const char *var, const char *value, void *cb)
1f3299fd 1301{
fb79f5bf 1302 struct fsck_options *options = cb;
1f3299fd
ÆAB
1303 if (strcmp(var, "fsck.skiplist") == 0) {
1304 const char *path;
1305 struct strbuf sb = STRBUF_INIT;
1306
1307 if (git_config_pathname(&path, var, value))
1308 return 1;
1309 strbuf_addf(&sb, "skiplist=%s", path);
1310 free((char *)path);
1311 fsck_set_msg_types(options, sb.buf);
1312 strbuf_release(&sb);
1313 return 0;
1314 }
1315
1316 if (skip_prefix(var, "fsck.", &var)) {
1317 fsck_set_msg_type(options, var, value);
1318 return 0;
1319 }
1320
1321 return git_default_config(var, value, cb);
1322}
3745e269
ÆAB
1323
1324/*
1325 * Custom error callbacks that are used in more than one place.
1326 */
1327
1328int fsck_error_cb_print_missing_gitmodules(struct fsck_options *o,
1329 const struct object_id *oid,
1330 enum object_type object_type,
1331 enum fsck_msg_type msg_type,
1332 enum fsck_msg_id msg_id,
1333 const char *message)
1334{
1335 if (msg_id == FSCK_MSG_GITMODULES_MISSING) {
1336 puts(oid_to_hex(oid));
1337 return 0;
1338 }
1339 return fsck_error_function(o, oid, object_type, msg_type, msg_id, message);
1340}