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