Sync with 2.38.5
[git/debian.git] / fsck.c
blob47eaeedd7076ba60a621e072abb405127b3c33fe
1 #include "cache.h"
2 #include "object-store.h"
3 #include "repository.h"
4 #include "object.h"
5 #include "attr.h"
6 #include "blob.h"
7 #include "tree.h"
8 #include "tree-walk.h"
9 #include "commit.h"
10 #include "tag.h"
11 #include "fsck.h"
12 #include "refs.h"
13 #include "url.h"
14 #include "utf8.h"
15 #include "decorate.h"
16 #include "oidset.h"
17 #include "packfile.h"
18 #include "submodule-config.h"
19 #include "config.h"
20 #include "credential.h"
21 #include "help.h"
23 #define STR(x) #x
24 #define MSG_ID(id, msg_type) { STR(id), NULL, NULL, FSCK_##msg_type },
25 static struct {
26 const char *id_string;
27 const char *downcased;
28 const char *camelcased;
29 enum fsck_msg_type msg_type;
30 } msg_id_info[FSCK_MSG_MAX + 1] = {
31 FOREACH_FSCK_MSG_ID(MSG_ID)
32 { NULL, NULL, NULL, -1 }
34 #undef MSG_ID
35 #undef STR
37 static void prepare_msg_ids(void)
39 int i;
41 if (msg_id_info[0].downcased)
42 return;
44 /* convert id_string to lower case, without underscores. */
45 for (i = 0; i < FSCK_MSG_MAX; i++) {
46 const char *p = msg_id_info[i].id_string;
47 int len = strlen(p);
48 char *q = xmalloc(len);
50 msg_id_info[i].downcased = q;
51 while (*p)
52 if (*p == '_')
53 p++;
54 else
55 *(q)++ = tolower(*(p)++);
56 *q = '\0';
58 p = msg_id_info[i].id_string;
59 q = xmalloc(len);
60 msg_id_info[i].camelcased = q;
61 while (*p) {
62 if (*p == '_') {
63 p++;
64 if (*p)
65 *q++ = *p++;
66 } else {
67 *q++ = tolower(*p++);
70 *q = '\0';
74 static int parse_msg_id(const char *text)
76 int i;
78 prepare_msg_ids();
80 for (i = 0; i < FSCK_MSG_MAX; i++)
81 if (!strcmp(text, msg_id_info[i].downcased))
82 return i;
84 return -1;
87 void list_config_fsck_msg_ids(struct string_list *list, const char *prefix)
89 int i;
91 prepare_msg_ids();
93 for (i = 0; i < FSCK_MSG_MAX; i++)
94 list_config_item(list, prefix, msg_id_info[i].camelcased);
97 static enum fsck_msg_type fsck_msg_type(enum fsck_msg_id msg_id,
98 struct fsck_options *options)
100 assert(msg_id >= 0 && msg_id < FSCK_MSG_MAX);
102 if (!options->msg_type) {
103 enum fsck_msg_type msg_type = msg_id_info[msg_id].msg_type;
105 if (options->strict && msg_type == FSCK_WARN)
106 msg_type = FSCK_ERROR;
107 return msg_type;
110 return options->msg_type[msg_id];
113 static enum fsck_msg_type parse_msg_type(const char *str)
115 if (!strcmp(str, "error"))
116 return FSCK_ERROR;
117 else if (!strcmp(str, "warn"))
118 return FSCK_WARN;
119 else if (!strcmp(str, "ignore"))
120 return FSCK_IGNORE;
121 else
122 die("Unknown fsck message type: '%s'", str);
125 int is_valid_msg_type(const char *msg_id, const char *msg_type)
127 if (parse_msg_id(msg_id) < 0)
128 return 0;
129 parse_msg_type(msg_type);
130 return 1;
133 void fsck_set_msg_type_from_ids(struct fsck_options *options,
134 enum fsck_msg_id msg_id,
135 enum fsck_msg_type msg_type)
137 if (!options->msg_type) {
138 int i;
139 enum fsck_msg_type *severity;
140 ALLOC_ARRAY(severity, FSCK_MSG_MAX);
141 for (i = 0; i < FSCK_MSG_MAX; i++)
142 severity[i] = fsck_msg_type(i, options);
143 options->msg_type = severity;
146 options->msg_type[msg_id] = msg_type;
149 void fsck_set_msg_type(struct fsck_options *options,
150 const char *msg_id_str, const char *msg_type_str)
152 int msg_id = parse_msg_id(msg_id_str);
153 enum fsck_msg_type msg_type = parse_msg_type(msg_type_str);
155 if (msg_id < 0)
156 die("Unhandled message id: %s", msg_id_str);
158 if (msg_type != FSCK_ERROR && msg_id_info[msg_id].msg_type == FSCK_FATAL)
159 die("Cannot demote %s to %s", msg_id_str, msg_type_str);
161 fsck_set_msg_type_from_ids(options, msg_id, msg_type);
164 void fsck_set_msg_types(struct fsck_options *options, const char *values)
166 char *buf = xstrdup(values), *to_free = buf;
167 int done = 0;
169 while (!done) {
170 int len = strcspn(buf, " ,|"), equal;
172 done = !buf[len];
173 if (!len) {
174 buf++;
175 continue;
177 buf[len] = '\0';
179 for (equal = 0;
180 equal < len && buf[equal] != '=' && buf[equal] != ':';
181 equal++)
182 buf[equal] = tolower(buf[equal]);
183 buf[equal] = '\0';
185 if (!strcmp(buf, "skiplist")) {
186 if (equal == len)
187 die("skiplist requires a path");
188 oidset_parse_file(&options->skiplist, buf + equal + 1);
189 buf += len + 1;
190 continue;
193 if (equal == len)
194 die("Missing '=': '%s'", buf);
196 fsck_set_msg_type(options, buf, buf + equal + 1);
197 buf += len + 1;
199 free(to_free);
202 static int object_on_skiplist(struct fsck_options *opts,
203 const struct object_id *oid)
205 return opts && oid && oidset_contains(&opts->skiplist, oid);
208 __attribute__((format (printf, 5, 6)))
209 static int report(struct fsck_options *options,
210 const struct object_id *oid, enum object_type object_type,
211 enum fsck_msg_id msg_id, const char *fmt, ...)
213 va_list ap;
214 struct strbuf sb = STRBUF_INIT;
215 enum fsck_msg_type msg_type = fsck_msg_type(msg_id, options);
216 int result;
218 if (msg_type == FSCK_IGNORE)
219 return 0;
221 if (object_on_skiplist(options, oid))
222 return 0;
224 if (msg_type == FSCK_FATAL)
225 msg_type = FSCK_ERROR;
226 else if (msg_type == FSCK_INFO)
227 msg_type = FSCK_WARN;
229 prepare_msg_ids();
230 strbuf_addf(&sb, "%s: ", msg_id_info[msg_id].camelcased);
232 va_start(ap, fmt);
233 strbuf_vaddf(&sb, fmt, ap);
234 result = options->error_func(options, oid, object_type,
235 msg_type, msg_id, sb.buf);
236 strbuf_release(&sb);
237 va_end(ap);
239 return result;
242 void fsck_enable_object_names(struct fsck_options *options)
244 if (!options->object_names)
245 options->object_names = kh_init_oid_map();
248 const char *fsck_get_object_name(struct fsck_options *options,
249 const struct object_id *oid)
251 khiter_t pos;
252 if (!options->object_names)
253 return NULL;
254 pos = kh_get_oid_map(options->object_names, *oid);
255 if (pos >= kh_end(options->object_names))
256 return NULL;
257 return kh_value(options->object_names, pos);
260 void fsck_put_object_name(struct fsck_options *options,
261 const struct object_id *oid,
262 const char *fmt, ...)
264 va_list ap;
265 struct strbuf buf = STRBUF_INIT;
266 khiter_t pos;
267 int hashret;
269 if (!options->object_names)
270 return;
272 pos = kh_put_oid_map(options->object_names, *oid, &hashret);
273 if (!hashret)
274 return;
275 va_start(ap, fmt);
276 strbuf_vaddf(&buf, fmt, ap);
277 kh_value(options->object_names, pos) = strbuf_detach(&buf, NULL);
278 va_end(ap);
281 const char *fsck_describe_object(struct fsck_options *options,
282 const struct object_id *oid)
284 static struct strbuf bufs[] = {
285 STRBUF_INIT, STRBUF_INIT, STRBUF_INIT, STRBUF_INIT
287 static int b = 0;
288 struct strbuf *buf;
289 const char *name = fsck_get_object_name(options, oid);
291 buf = bufs + b;
292 b = (b + 1) % ARRAY_SIZE(bufs);
293 strbuf_reset(buf);
294 strbuf_addstr(buf, oid_to_hex(oid));
295 if (name)
296 strbuf_addf(buf, " (%s)", name);
298 return buf->buf;
301 static int fsck_walk_tree(struct tree *tree, void *data, struct fsck_options *options)
303 struct tree_desc desc;
304 struct name_entry entry;
305 int res = 0;
306 const char *name;
308 if (parse_tree(tree))
309 return -1;
311 name = fsck_get_object_name(options, &tree->object.oid);
312 if (init_tree_desc_gently(&desc, tree->buffer, tree->size, 0))
313 return -1;
314 while (tree_entry_gently(&desc, &entry)) {
315 struct object *obj;
316 int result;
318 if (S_ISGITLINK(entry.mode))
319 continue;
321 if (S_ISDIR(entry.mode)) {
322 obj = (struct object *)lookup_tree(the_repository, &entry.oid);
323 if (name && obj)
324 fsck_put_object_name(options, &entry.oid, "%s%s/",
325 name, entry.path);
326 result = options->walk(obj, OBJ_TREE, data, options);
328 else if (S_ISREG(entry.mode) || S_ISLNK(entry.mode)) {
329 obj = (struct object *)lookup_blob(the_repository, &entry.oid);
330 if (name && obj)
331 fsck_put_object_name(options, &entry.oid, "%s%s",
332 name, entry.path);
333 result = options->walk(obj, OBJ_BLOB, data, options);
335 else {
336 result = error("in tree %s: entry %s has bad mode %.6o",
337 fsck_describe_object(options, &tree->object.oid),
338 entry.path, entry.mode);
340 if (result < 0)
341 return result;
342 if (!res)
343 res = result;
345 return res;
348 static int fsck_walk_commit(struct commit *commit, void *data, struct fsck_options *options)
350 int counter = 0, generation = 0, name_prefix_len = 0;
351 struct commit_list *parents;
352 int res;
353 int result;
354 const char *name;
356 if (parse_commit(commit))
357 return -1;
359 name = fsck_get_object_name(options, &commit->object.oid);
360 if (name)
361 fsck_put_object_name(options, get_commit_tree_oid(commit),
362 "%s:", name);
364 result = options->walk((struct object *)get_commit_tree(commit),
365 OBJ_TREE, data, options);
366 if (result < 0)
367 return result;
368 res = result;
370 parents = commit->parents;
371 if (name && parents) {
372 int len = strlen(name), power;
374 if (len && name[len - 1] == '^') {
375 generation = 1;
376 name_prefix_len = len - 1;
378 else { /* parse ~<generation> suffix */
379 for (generation = 0, power = 1;
380 len && isdigit(name[len - 1]);
381 power *= 10)
382 generation += power * (name[--len] - '0');
383 if (power > 1 && len && name[len - 1] == '~')
384 name_prefix_len = len - 1;
385 else {
386 /* Maybe a non-first parent, e.g. HEAD^2 */
387 generation = 0;
388 name_prefix_len = len;
393 while (parents) {
394 if (name) {
395 struct object_id *oid = &parents->item->object.oid;
397 if (counter++)
398 fsck_put_object_name(options, oid, "%s^%d",
399 name, counter);
400 else if (generation > 0)
401 fsck_put_object_name(options, oid, "%.*s~%d",
402 name_prefix_len, name,
403 generation + 1);
404 else
405 fsck_put_object_name(options, oid, "%s^", name);
407 result = options->walk((struct object *)parents->item, OBJ_COMMIT, data, options);
408 if (result < 0)
409 return result;
410 if (!res)
411 res = result;
412 parents = parents->next;
414 return res;
417 static int fsck_walk_tag(struct tag *tag, void *data, struct fsck_options *options)
419 const char *name = fsck_get_object_name(options, &tag->object.oid);
421 if (parse_tag(tag))
422 return -1;
423 if (name)
424 fsck_put_object_name(options, &tag->tagged->oid, "%s", name);
425 return options->walk(tag->tagged, OBJ_ANY, data, options);
428 int fsck_walk(struct object *obj, void *data, struct fsck_options *options)
430 if (!obj)
431 return -1;
433 if (obj->type == OBJ_NONE)
434 parse_object(the_repository, &obj->oid);
436 switch (obj->type) {
437 case OBJ_BLOB:
438 return 0;
439 case OBJ_TREE:
440 return fsck_walk_tree((struct tree *)obj, data, options);
441 case OBJ_COMMIT:
442 return fsck_walk_commit((struct commit *)obj, data, options);
443 case OBJ_TAG:
444 return fsck_walk_tag((struct tag *)obj, data, options);
445 default:
446 error("Unknown object type for %s",
447 fsck_describe_object(options, &obj->oid));
448 return -1;
452 struct name_stack {
453 const char **names;
454 size_t nr, alloc;
457 static void name_stack_push(struct name_stack *stack, const char *name)
459 ALLOC_GROW(stack->names, stack->nr + 1, stack->alloc);
460 stack->names[stack->nr++] = name;
463 static const char *name_stack_pop(struct name_stack *stack)
465 return stack->nr ? stack->names[--stack->nr] : NULL;
468 static void name_stack_clear(struct name_stack *stack)
470 FREE_AND_NULL(stack->names);
471 stack->nr = stack->alloc = 0;
475 * The entries in a tree are ordered in the _path_ order,
476 * which means that a directory entry is ordered by adding
477 * a slash to the end of it.
479 * So a directory called "a" is ordered _after_ a file
480 * called "a.c", because "a/" sorts after "a.c".
482 #define TREE_UNORDERED (-1)
483 #define TREE_HAS_DUPS (-2)
485 static int is_less_than_slash(unsigned char c)
487 return '\0' < c && c < '/';
490 static int verify_ordered(unsigned mode1, const char *name1,
491 unsigned mode2, const char *name2,
492 struct name_stack *candidates)
494 int len1 = strlen(name1);
495 int len2 = strlen(name2);
496 int len = len1 < len2 ? len1 : len2;
497 unsigned char c1, c2;
498 int cmp;
500 cmp = memcmp(name1, name2, len);
501 if (cmp < 0)
502 return 0;
503 if (cmp > 0)
504 return TREE_UNORDERED;
507 * Ok, the first <len> characters are the same.
508 * Now we need to order the next one, but turn
509 * a '\0' into a '/' for a directory entry.
511 c1 = name1[len];
512 c2 = name2[len];
513 if (!c1 && !c2)
515 * git-write-tree used to write out a nonsense tree that has
516 * entries with the same name, one blob and one tree. Make
517 * sure we do not have duplicate entries.
519 return TREE_HAS_DUPS;
520 if (!c1 && S_ISDIR(mode1))
521 c1 = '/';
522 if (!c2 && S_ISDIR(mode2))
523 c2 = '/';
526 * There can be non-consecutive duplicates due to the implicitly
527 * added slash, e.g.:
529 * foo
530 * foo.bar
531 * foo.bar.baz
532 * foo.bar/
533 * foo/
535 * Record non-directory candidates (like "foo" and "foo.bar" in
536 * the example) on a stack and check directory candidates (like
537 * foo/" and "foo.bar/") against that stack.
539 if (!c1 && is_less_than_slash(c2)) {
540 name_stack_push(candidates, name1);
541 } else if (c2 == '/' && is_less_than_slash(c1)) {
542 for (;;) {
543 const char *p;
544 const char *f_name = name_stack_pop(candidates);
546 if (!f_name)
547 break;
548 if (!skip_prefix(name2, f_name, &p))
549 continue;
550 if (!*p)
551 return TREE_HAS_DUPS;
552 if (is_less_than_slash(*p)) {
553 name_stack_push(candidates, f_name);
554 break;
559 return c1 < c2 ? 0 : TREE_UNORDERED;
562 static int fsck_tree(const struct object_id *tree_oid,
563 const char *buffer, unsigned long size,
564 struct fsck_options *options)
566 int retval = 0;
567 int has_null_sha1 = 0;
568 int has_full_path = 0;
569 int has_empty_name = 0;
570 int has_dot = 0;
571 int has_dotdot = 0;
572 int has_dotgit = 0;
573 int has_zero_pad = 0;
574 int has_bad_modes = 0;
575 int has_dup_entries = 0;
576 int not_properly_sorted = 0;
577 struct tree_desc desc;
578 unsigned o_mode;
579 const char *o_name;
580 struct name_stack df_dup_candidates = { NULL };
582 if (init_tree_desc_gently(&desc, buffer, size, TREE_DESC_RAW_MODES)) {
583 retval += report(options, tree_oid, OBJ_TREE,
584 FSCK_MSG_BAD_TREE,
585 "cannot be parsed as a tree");
586 return retval;
589 o_mode = 0;
590 o_name = NULL;
592 while (desc.size) {
593 unsigned short mode;
594 const char *name, *backslash;
595 const struct object_id *entry_oid;
597 entry_oid = tree_entry_extract(&desc, &name, &mode);
599 has_null_sha1 |= is_null_oid(entry_oid);
600 has_full_path |= !!strchr(name, '/');
601 has_empty_name |= !*name;
602 has_dot |= !strcmp(name, ".");
603 has_dotdot |= !strcmp(name, "..");
604 has_dotgit |= is_hfs_dotgit(name) || is_ntfs_dotgit(name);
605 has_zero_pad |= *(char *)desc.buffer == '0';
607 if (is_hfs_dotgitmodules(name) || is_ntfs_dotgitmodules(name)) {
608 if (!S_ISLNK(mode))
609 oidset_insert(&options->gitmodules_found,
610 entry_oid);
611 else
612 retval += report(options,
613 tree_oid, OBJ_TREE,
614 FSCK_MSG_GITMODULES_SYMLINK,
615 ".gitmodules is a symbolic link");
618 if (is_hfs_dotgitattributes(name) || is_ntfs_dotgitattributes(name)) {
619 if (!S_ISLNK(mode))
620 oidset_insert(&options->gitattributes_found,
621 entry_oid);
622 else
623 retval += report(options, tree_oid, OBJ_TREE,
624 FSCK_MSG_GITATTRIBUTES_SYMLINK,
625 ".gitattributes is a symlink");
628 if (S_ISLNK(mode)) {
629 if (is_hfs_dotgitignore(name) ||
630 is_ntfs_dotgitignore(name))
631 retval += report(options, tree_oid, OBJ_TREE,
632 FSCK_MSG_GITIGNORE_SYMLINK,
633 ".gitignore is a symlink");
634 if (is_hfs_dotmailmap(name) ||
635 is_ntfs_dotmailmap(name))
636 retval += report(options, tree_oid, OBJ_TREE,
637 FSCK_MSG_MAILMAP_SYMLINK,
638 ".mailmap is a symlink");
641 if ((backslash = strchr(name, '\\'))) {
642 while (backslash) {
643 backslash++;
644 has_dotgit |= is_ntfs_dotgit(backslash);
645 if (is_ntfs_dotgitmodules(backslash)) {
646 if (!S_ISLNK(mode))
647 oidset_insert(&options->gitmodules_found,
648 entry_oid);
649 else
650 retval += report(options, tree_oid, OBJ_TREE,
651 FSCK_MSG_GITMODULES_SYMLINK,
652 ".gitmodules is a symbolic link");
654 backslash = strchr(backslash, '\\');
658 if (update_tree_entry_gently(&desc)) {
659 retval += report(options, tree_oid, OBJ_TREE,
660 FSCK_MSG_BAD_TREE,
661 "cannot be parsed as a tree");
662 break;
665 switch (mode) {
667 * Standard modes..
669 case S_IFREG | 0755:
670 case S_IFREG | 0644:
671 case S_IFLNK:
672 case S_IFDIR:
673 case S_IFGITLINK:
674 break;
676 * This is nonstandard, but we had a few of these
677 * early on when we honored the full set of mode
678 * bits..
680 case S_IFREG | 0664:
681 if (!options->strict)
682 break;
683 /* fallthrough */
684 default:
685 has_bad_modes = 1;
688 if (o_name) {
689 switch (verify_ordered(o_mode, o_name, mode, name,
690 &df_dup_candidates)) {
691 case TREE_UNORDERED:
692 not_properly_sorted = 1;
693 break;
694 case TREE_HAS_DUPS:
695 has_dup_entries = 1;
696 break;
697 default:
698 break;
702 o_mode = mode;
703 o_name = name;
706 name_stack_clear(&df_dup_candidates);
708 if (has_null_sha1)
709 retval += report(options, tree_oid, OBJ_TREE,
710 FSCK_MSG_NULL_SHA1,
711 "contains entries pointing to null sha1");
712 if (has_full_path)
713 retval += report(options, tree_oid, OBJ_TREE,
714 FSCK_MSG_FULL_PATHNAME,
715 "contains full pathnames");
716 if (has_empty_name)
717 retval += report(options, tree_oid, OBJ_TREE,
718 FSCK_MSG_EMPTY_NAME,
719 "contains empty pathname");
720 if (has_dot)
721 retval += report(options, tree_oid, OBJ_TREE,
722 FSCK_MSG_HAS_DOT,
723 "contains '.'");
724 if (has_dotdot)
725 retval += report(options, tree_oid, OBJ_TREE,
726 FSCK_MSG_HAS_DOTDOT,
727 "contains '..'");
728 if (has_dotgit)
729 retval += report(options, tree_oid, OBJ_TREE,
730 FSCK_MSG_HAS_DOTGIT,
731 "contains '.git'");
732 if (has_zero_pad)
733 retval += report(options, tree_oid, OBJ_TREE,
734 FSCK_MSG_ZERO_PADDED_FILEMODE,
735 "contains zero-padded file modes");
736 if (has_bad_modes)
737 retval += report(options, tree_oid, OBJ_TREE,
738 FSCK_MSG_BAD_FILEMODE,
739 "contains bad file modes");
740 if (has_dup_entries)
741 retval += report(options, tree_oid, OBJ_TREE,
742 FSCK_MSG_DUPLICATE_ENTRIES,
743 "contains duplicate file entries");
744 if (not_properly_sorted)
745 retval += report(options, tree_oid, OBJ_TREE,
746 FSCK_MSG_TREE_NOT_SORTED,
747 "not properly sorted");
748 return retval;
751 static int verify_headers(const void *data, unsigned long size,
752 const struct object_id *oid, enum object_type type,
753 struct fsck_options *options)
755 const char *buffer = (const char *)data;
756 unsigned long i;
758 for (i = 0; i < size; i++) {
759 switch (buffer[i]) {
760 case '\0':
761 return report(options, oid, type,
762 FSCK_MSG_NUL_IN_HEADER,
763 "unterminated header: NUL at offset %ld", i);
764 case '\n':
765 if (i + 1 < size && buffer[i + 1] == '\n')
766 return 0;
771 * We did not find double-LF that separates the header
772 * and the body. Not having a body is not a crime but
773 * we do want to see the terminating LF for the last header
774 * line.
776 if (size && buffer[size - 1] == '\n')
777 return 0;
779 return report(options, oid, type,
780 FSCK_MSG_UNTERMINATED_HEADER, "unterminated header");
783 static int fsck_ident(const char **ident,
784 const struct object_id *oid, enum object_type type,
785 struct fsck_options *options)
787 const char *p = *ident;
788 char *end;
790 *ident = strchrnul(*ident, '\n');
791 if (**ident == '\n')
792 (*ident)++;
794 if (*p == '<')
795 return report(options, oid, type, FSCK_MSG_MISSING_NAME_BEFORE_EMAIL, "invalid author/committer line - missing space before email");
796 p += strcspn(p, "<>\n");
797 if (*p == '>')
798 return report(options, oid, type, FSCK_MSG_BAD_NAME, "invalid author/committer line - bad name");
799 if (*p != '<')
800 return report(options, oid, type, FSCK_MSG_MISSING_EMAIL, "invalid author/committer line - missing email");
801 if (p[-1] != ' ')
802 return report(options, oid, type, FSCK_MSG_MISSING_SPACE_BEFORE_EMAIL, "invalid author/committer line - missing space before email");
803 p++;
804 p += strcspn(p, "<>\n");
805 if (*p != '>')
806 return report(options, oid, type, FSCK_MSG_BAD_EMAIL, "invalid author/committer line - bad email");
807 p++;
808 if (*p != ' ')
809 return report(options, oid, type, FSCK_MSG_MISSING_SPACE_BEFORE_DATE, "invalid author/committer line - missing space before date");
810 p++;
811 if (*p == '0' && p[1] != ' ')
812 return report(options, oid, type, FSCK_MSG_ZERO_PADDED_DATE, "invalid author/committer line - zero-padded date");
813 if (date_overflows(parse_timestamp(p, &end, 10)))
814 return report(options, oid, type, FSCK_MSG_BAD_DATE_OVERFLOW, "invalid author/committer line - date causes integer overflow");
815 if ((end == p || *end != ' '))
816 return report(options, oid, type, FSCK_MSG_BAD_DATE, "invalid author/committer line - bad date");
817 p = end + 1;
818 if ((*p != '+' && *p != '-') ||
819 !isdigit(p[1]) ||
820 !isdigit(p[2]) ||
821 !isdigit(p[3]) ||
822 !isdigit(p[4]) ||
823 (p[5] != '\n'))
824 return report(options, oid, type, FSCK_MSG_BAD_TIMEZONE, "invalid author/committer line - bad time zone");
825 p += 6;
826 return 0;
829 static int fsck_commit(const struct object_id *oid,
830 const char *buffer, unsigned long size,
831 struct fsck_options *options)
833 struct object_id tree_oid, parent_oid;
834 unsigned author_count;
835 int err;
836 const char *buffer_begin = buffer;
837 const char *p;
839 if (verify_headers(buffer, size, oid, OBJ_COMMIT, options))
840 return -1;
842 if (!skip_prefix(buffer, "tree ", &buffer))
843 return report(options, oid, OBJ_COMMIT, FSCK_MSG_MISSING_TREE, "invalid format - expected 'tree' line");
844 if (parse_oid_hex(buffer, &tree_oid, &p) || *p != '\n') {
845 err = report(options, oid, OBJ_COMMIT, FSCK_MSG_BAD_TREE_SHA1, "invalid 'tree' line format - bad sha1");
846 if (err)
847 return err;
849 buffer = p + 1;
850 while (skip_prefix(buffer, "parent ", &buffer)) {
851 if (parse_oid_hex(buffer, &parent_oid, &p) || *p != '\n') {
852 err = report(options, oid, OBJ_COMMIT, FSCK_MSG_BAD_PARENT_SHA1, "invalid 'parent' line format - bad sha1");
853 if (err)
854 return err;
856 buffer = p + 1;
858 author_count = 0;
859 while (skip_prefix(buffer, "author ", &buffer)) {
860 author_count++;
861 err = fsck_ident(&buffer, oid, OBJ_COMMIT, options);
862 if (err)
863 return err;
865 if (author_count < 1)
866 err = report(options, oid, OBJ_COMMIT, FSCK_MSG_MISSING_AUTHOR, "invalid format - expected 'author' line");
867 else if (author_count > 1)
868 err = report(options, oid, OBJ_COMMIT, FSCK_MSG_MULTIPLE_AUTHORS, "invalid format - multiple 'author' lines");
869 if (err)
870 return err;
871 if (!skip_prefix(buffer, "committer ", &buffer))
872 return report(options, oid, OBJ_COMMIT, FSCK_MSG_MISSING_COMMITTER, "invalid format - expected 'committer' line");
873 err = fsck_ident(&buffer, oid, OBJ_COMMIT, options);
874 if (err)
875 return err;
876 if (memchr(buffer_begin, '\0', size)) {
877 err = report(options, oid, OBJ_COMMIT, FSCK_MSG_NUL_IN_COMMIT,
878 "NUL byte in the commit object body");
879 if (err)
880 return err;
882 return 0;
885 static int fsck_tag(const struct object_id *oid, const char *buffer,
886 unsigned long size, struct fsck_options *options)
888 struct object_id tagged_oid;
889 int tagged_type;
890 return fsck_tag_standalone(oid, buffer, size, options, &tagged_oid,
891 &tagged_type);
894 int fsck_tag_standalone(const struct object_id *oid, const char *buffer,
895 unsigned long size, struct fsck_options *options,
896 struct object_id *tagged_oid,
897 int *tagged_type)
899 int ret = 0;
900 char *eol;
901 struct strbuf sb = STRBUF_INIT;
902 const char *p;
904 ret = verify_headers(buffer, size, oid, OBJ_TAG, options);
905 if (ret)
906 goto done;
908 if (!skip_prefix(buffer, "object ", &buffer)) {
909 ret = report(options, oid, OBJ_TAG, FSCK_MSG_MISSING_OBJECT, "invalid format - expected 'object' line");
910 goto done;
912 if (parse_oid_hex(buffer, tagged_oid, &p) || *p != '\n') {
913 ret = report(options, oid, OBJ_TAG, FSCK_MSG_BAD_OBJECT_SHA1, "invalid 'object' line format - bad sha1");
914 if (ret)
915 goto done;
917 buffer = p + 1;
919 if (!skip_prefix(buffer, "type ", &buffer)) {
920 ret = report(options, oid, OBJ_TAG, FSCK_MSG_MISSING_TYPE_ENTRY, "invalid format - expected 'type' line");
921 goto done;
923 eol = strchr(buffer, '\n');
924 if (!eol) {
925 ret = report(options, oid, OBJ_TAG, FSCK_MSG_MISSING_TYPE, "invalid format - unexpected end after 'type' line");
926 goto done;
928 *tagged_type = type_from_string_gently(buffer, eol - buffer, 1);
929 if (*tagged_type < 0)
930 ret = report(options, oid, OBJ_TAG, FSCK_MSG_BAD_TYPE, "invalid 'type' value");
931 if (ret)
932 goto done;
933 buffer = eol + 1;
935 if (!skip_prefix(buffer, "tag ", &buffer)) {
936 ret = report(options, oid, OBJ_TAG, FSCK_MSG_MISSING_TAG_ENTRY, "invalid format - expected 'tag' line");
937 goto done;
939 eol = strchr(buffer, '\n');
940 if (!eol) {
941 ret = report(options, oid, OBJ_TAG, FSCK_MSG_MISSING_TAG, "invalid format - unexpected end after 'type' line");
942 goto done;
944 strbuf_addf(&sb, "refs/tags/%.*s", (int)(eol - buffer), buffer);
945 if (check_refname_format(sb.buf, 0)) {
946 ret = report(options, oid, OBJ_TAG,
947 FSCK_MSG_BAD_TAG_NAME,
948 "invalid 'tag' name: %.*s",
949 (int)(eol - buffer), buffer);
950 if (ret)
951 goto done;
953 buffer = eol + 1;
955 if (!skip_prefix(buffer, "tagger ", &buffer)) {
956 /* early tags do not contain 'tagger' lines; warn only */
957 ret = report(options, oid, OBJ_TAG, FSCK_MSG_MISSING_TAGGER_ENTRY, "invalid format - expected 'tagger' line");
958 if (ret)
959 goto done;
961 else
962 ret = fsck_ident(&buffer, oid, OBJ_TAG, options);
963 if (!*buffer)
964 goto done;
966 if (!starts_with(buffer, "\n")) {
968 * The verify_headers() check will allow
969 * e.g. "[...]tagger <tagger>\nsome
970 * garbage\n\nmessage" to pass, thinking "some
971 * garbage" could be a custom header. E.g. "mktag"
972 * doesn't want any unknown headers.
974 ret = report(options, oid, OBJ_TAG, FSCK_MSG_EXTRA_HEADER_ENTRY, "invalid format - extra header(s) after 'tagger'");
975 if (ret)
976 goto done;
979 done:
980 strbuf_release(&sb);
981 return ret;
984 static int starts_with_dot_slash(const char *const path)
986 return path_match_flags(path, PATH_MATCH_STARTS_WITH_DOT_SLASH |
987 PATH_MATCH_XPLATFORM);
990 static int starts_with_dot_dot_slash(const char *const path)
992 return path_match_flags(path, PATH_MATCH_STARTS_WITH_DOT_DOT_SLASH |
993 PATH_MATCH_XPLATFORM);
996 static int submodule_url_is_relative(const char *url)
998 return starts_with_dot_slash(url) || starts_with_dot_dot_slash(url);
1002 * Count directory components that a relative submodule URL should chop
1003 * from the remote_url it is to be resolved against.
1005 * In other words, this counts "../" components at the start of a
1006 * submodule URL.
1008 * Returns the number of directory components to chop and writes a
1009 * pointer to the next character of url after all leading "./" and
1010 * "../" components to out.
1012 static int count_leading_dotdots(const char *url, const char **out)
1014 int result = 0;
1015 while (1) {
1016 if (starts_with_dot_dot_slash(url)) {
1017 result++;
1018 url += strlen("../");
1019 continue;
1021 if (starts_with_dot_slash(url)) {
1022 url += strlen("./");
1023 continue;
1025 *out = url;
1026 return result;
1030 * Check whether a transport is implemented by git-remote-curl.
1032 * If it is, returns 1 and writes the URL that would be passed to
1033 * git-remote-curl to the "out" parameter.
1035 * Otherwise, returns 0 and leaves "out" untouched.
1037 * Examples:
1038 * http::https://example.com/repo.git -> 1, https://example.com/repo.git
1039 * https://example.com/repo.git -> 1, https://example.com/repo.git
1040 * git://example.com/repo.git -> 0
1042 * This is for use in checking for previously exploitable bugs that
1043 * required a submodule URL to be passed to git-remote-curl.
1045 static int url_to_curl_url(const char *url, const char **out)
1048 * We don't need to check for case-aliases, "http.exe", and so
1049 * on because in the default configuration, is_transport_allowed
1050 * prevents URLs with those schemes from being cloned
1051 * automatically.
1053 if (skip_prefix(url, "http::", out) ||
1054 skip_prefix(url, "https::", out) ||
1055 skip_prefix(url, "ftp::", out) ||
1056 skip_prefix(url, "ftps::", out))
1057 return 1;
1058 if (starts_with(url, "http://") ||
1059 starts_with(url, "https://") ||
1060 starts_with(url, "ftp://") ||
1061 starts_with(url, "ftps://")) {
1062 *out = url;
1063 return 1;
1065 return 0;
1068 static int check_submodule_url(const char *url)
1070 const char *curl_url;
1072 if (looks_like_command_line_option(url))
1073 return -1;
1075 if (submodule_url_is_relative(url) || starts_with(url, "git://")) {
1076 char *decoded;
1077 const char *next;
1078 int has_nl;
1081 * This could be appended to an http URL and url-decoded;
1082 * check for malicious characters.
1084 decoded = url_decode(url);
1085 has_nl = !!strchr(decoded, '\n');
1087 free(decoded);
1088 if (has_nl)
1089 return -1;
1092 * URLs which escape their root via "../" can overwrite
1093 * the host field and previous components, resolving to
1094 * URLs like https::example.com/submodule.git and
1095 * https:///example.com/submodule.git that were
1096 * susceptible to CVE-2020-11008.
1098 if (count_leading_dotdots(url, &next) > 0 &&
1099 (*next == ':' || *next == '/'))
1100 return -1;
1103 else if (url_to_curl_url(url, &curl_url)) {
1104 struct credential c = CREDENTIAL_INIT;
1105 int ret = 0;
1106 if (credential_from_url_gently(&c, curl_url, 1) ||
1107 !*c.host)
1108 ret = -1;
1109 credential_clear(&c);
1110 return ret;
1113 return 0;
1116 struct fsck_gitmodules_data {
1117 const struct object_id *oid;
1118 struct fsck_options *options;
1119 int ret;
1122 static int fsck_gitmodules_fn(const char *var, const char *value, void *vdata)
1124 struct fsck_gitmodules_data *data = vdata;
1125 const char *subsection, *key;
1126 size_t subsection_len;
1127 char *name;
1129 if (parse_config_key(var, "submodule", &subsection, &subsection_len, &key) < 0 ||
1130 !subsection)
1131 return 0;
1133 name = xmemdupz(subsection, subsection_len);
1134 if (check_submodule_name(name) < 0)
1135 data->ret |= report(data->options,
1136 data->oid, OBJ_BLOB,
1137 FSCK_MSG_GITMODULES_NAME,
1138 "disallowed submodule name: %s",
1139 name);
1140 if (!strcmp(key, "url") && value &&
1141 check_submodule_url(value) < 0)
1142 data->ret |= report(data->options,
1143 data->oid, OBJ_BLOB,
1144 FSCK_MSG_GITMODULES_URL,
1145 "disallowed submodule url: %s",
1146 value);
1147 if (!strcmp(key, "path") && value &&
1148 looks_like_command_line_option(value))
1149 data->ret |= report(data->options,
1150 data->oid, OBJ_BLOB,
1151 FSCK_MSG_GITMODULES_PATH,
1152 "disallowed submodule path: %s",
1153 value);
1154 if (!strcmp(key, "update") && value &&
1155 parse_submodule_update_type(value) == SM_UPDATE_COMMAND)
1156 data->ret |= report(data->options, data->oid, OBJ_BLOB,
1157 FSCK_MSG_GITMODULES_UPDATE,
1158 "disallowed submodule update setting: %s",
1159 value);
1160 free(name);
1162 return 0;
1165 static int fsck_blob(const struct object_id *oid, const char *buf,
1166 unsigned long size, struct fsck_options *options)
1168 int ret = 0;
1170 if (object_on_skiplist(options, oid))
1171 return 0;
1173 if (oidset_contains(&options->gitmodules_found, oid)) {
1174 struct config_options config_opts = { 0 };
1175 struct fsck_gitmodules_data data;
1177 oidset_insert(&options->gitmodules_done, oid);
1179 if (!buf) {
1181 * A missing buffer here is a sign that the caller found the
1182 * blob too gigantic to load into memory. Let's just consider
1183 * that an error.
1185 return report(options, oid, OBJ_BLOB,
1186 FSCK_MSG_GITMODULES_LARGE,
1187 ".gitmodules too large to parse");
1190 data.oid = oid;
1191 data.options = options;
1192 data.ret = 0;
1193 config_opts.error_action = CONFIG_ERROR_SILENT;
1194 if (git_config_from_mem(fsck_gitmodules_fn, CONFIG_ORIGIN_BLOB,
1195 ".gitmodules", buf, size, &data, &config_opts))
1196 data.ret |= report(options, oid, OBJ_BLOB,
1197 FSCK_MSG_GITMODULES_PARSE,
1198 "could not parse gitmodules blob");
1199 ret |= data.ret;
1202 if (oidset_contains(&options->gitattributes_found, oid)) {
1203 const char *ptr;
1205 oidset_insert(&options->gitattributes_done, oid);
1207 if (!buf || size > ATTR_MAX_FILE_SIZE) {
1209 * A missing buffer here is a sign that the caller found the
1210 * blob too gigantic to load into memory. Let's just consider
1211 * that an error.
1213 return report(options, oid, OBJ_BLOB,
1214 FSCK_MSG_GITATTRIBUTES_LARGE,
1215 ".gitattributes too large to parse");
1218 for (ptr = buf; *ptr; ) {
1219 const char *eol = strchrnul(ptr, '\n');
1220 if (eol - ptr >= ATTR_MAX_LINE_LENGTH) {
1221 ret |= report(options, oid, OBJ_BLOB,
1222 FSCK_MSG_GITATTRIBUTES_LINE_LENGTH,
1223 ".gitattributes has too long lines to parse");
1224 break;
1227 ptr = *eol ? eol + 1 : eol;
1231 return ret;
1234 int fsck_object(struct object *obj, void *data, unsigned long size,
1235 struct fsck_options *options)
1237 if (!obj)
1238 return report(options, NULL, OBJ_NONE, FSCK_MSG_BAD_OBJECT_SHA1, "no valid object to fsck");
1240 if (obj->type == OBJ_BLOB)
1241 return fsck_blob(&obj->oid, data, size, options);
1242 if (obj->type == OBJ_TREE)
1243 return fsck_tree(&obj->oid, data, size, options);
1244 if (obj->type == OBJ_COMMIT)
1245 return fsck_commit(&obj->oid, data, size, options);
1246 if (obj->type == OBJ_TAG)
1247 return fsck_tag(&obj->oid, data, size, options);
1249 return report(options, &obj->oid, obj->type,
1250 FSCK_MSG_UNKNOWN_TYPE,
1251 "unknown type '%d' (internal fsck error)",
1252 obj->type);
1255 int fsck_error_function(struct fsck_options *o,
1256 const struct object_id *oid,
1257 enum object_type object_type,
1258 enum fsck_msg_type msg_type,
1259 enum fsck_msg_id msg_id,
1260 const char *message)
1262 if (msg_type == FSCK_WARN) {
1263 warning("object %s: %s", fsck_describe_object(o, oid), message);
1264 return 0;
1266 error("object %s: %s", fsck_describe_object(o, oid), message);
1267 return 1;
1270 static int fsck_blobs(struct oidset *blobs_found, struct oidset *blobs_done,
1271 enum fsck_msg_id msg_missing, enum fsck_msg_id msg_type,
1272 struct fsck_options *options, const char *blob_type)
1274 int ret = 0;
1275 struct oidset_iter iter;
1276 const struct object_id *oid;
1278 oidset_iter_init(blobs_found, &iter);
1279 while ((oid = oidset_iter_next(&iter))) {
1280 enum object_type type;
1281 unsigned long size;
1282 char *buf;
1284 if (oidset_contains(blobs_done, oid))
1285 continue;
1287 buf = read_object_file(oid, &type, &size);
1288 if (!buf) {
1289 if (is_promisor_object(oid))
1290 continue;
1291 ret |= report(options,
1292 oid, OBJ_BLOB, msg_missing,
1293 "unable to read %s blob", blob_type);
1294 continue;
1297 if (type == OBJ_BLOB)
1298 ret |= fsck_blob(oid, buf, size, options);
1299 else
1300 ret |= report(options, oid, type, msg_type,
1301 "non-blob found at %s", blob_type);
1302 free(buf);
1305 oidset_clear(blobs_found);
1306 oidset_clear(blobs_done);
1308 return ret;
1311 int fsck_finish(struct fsck_options *options)
1313 int ret = 0;
1315 ret |= fsck_blobs(&options->gitmodules_found, &options->gitmodules_done,
1316 FSCK_MSG_GITMODULES_MISSING, FSCK_MSG_GITMODULES_BLOB,
1317 options, ".gitmodules");
1318 ret |= fsck_blobs(&options->gitattributes_found, &options->gitattributes_done,
1319 FSCK_MSG_GITATTRIBUTES_MISSING, FSCK_MSG_GITATTRIBUTES_BLOB,
1320 options, ".gitattributes");
1322 return ret;
1325 int git_fsck_config(const char *var, const char *value, void *cb)
1327 struct fsck_options *options = cb;
1328 if (strcmp(var, "fsck.skiplist") == 0) {
1329 const char *path;
1330 struct strbuf sb = STRBUF_INIT;
1332 if (git_config_pathname(&path, var, value))
1333 return 1;
1334 strbuf_addf(&sb, "skiplist=%s", path);
1335 free((char *)path);
1336 fsck_set_msg_types(options, sb.buf);
1337 strbuf_release(&sb);
1338 return 0;
1341 if (skip_prefix(var, "fsck.", &var)) {
1342 fsck_set_msg_type(options, var, value);
1343 return 0;
1346 return git_default_config(var, value, cb);
1350 * Custom error callbacks that are used in more than one place.
1353 int fsck_error_cb_print_missing_gitmodules(struct fsck_options *o,
1354 const struct object_id *oid,
1355 enum object_type object_type,
1356 enum fsck_msg_type msg_type,
1357 enum fsck_msg_id msg_id,
1358 const char *message)
1360 if (msg_id == FSCK_MSG_GITMODULES_MISSING) {
1361 puts(oid_to_hex(oid));
1362 return 0;
1364 return fsck_error_function(o, oid, object_type, msg_type, msg_id, message);