]> git.ipfire.org Git - thirdparty/git.git/blame - fsck.c
credential: refuse to operate when missing host or protocol
[thirdparty/git.git] / fsck.c
CommitLineData
355885d5
MK
1#include "cache.h"
2#include "object.h"
3#include "blob.h"
4#include "tree.h"
5#include "tree-walk.h"
6#include "commit.h"
7#include "tag.h"
8#include "fsck.h"
cec097be 9#include "refs.h"
a18fcc9f 10#include "utf8.h"
cd94c6f9 11#include "sha1-array.h"
7b35efd7 12#include "decorate.h"
159e7b08 13#include "oidset.h"
27387444 14#include "packfile.h"
ed8b10f6
JK
15#include "submodule-config.h"
16#include "config.h"
07259e74 17#include "credential.h"
159e7b08
JK
18
19static struct oidset gitmodules_found = OIDSET_INIT;
20static struct oidset gitmodules_done = OIDSET_INIT;
355885d5 21
f50c4407 22#define FSCK_FATAL -1
f27d05b1 23#define FSCK_INFO -2
f50c4407 24
c99ba492 25#define FOREACH_MSG_ID(FUNC) \
f50c4407
JS
26 /* fatal errors */ \
27 FUNC(NUL_IN_HEADER, FATAL) \
28 FUNC(UNTERMINATED_HEADER, FATAL) \
c99ba492
JS
29 /* errors */ \
30 FUNC(BAD_DATE, ERROR) \
31 FUNC(BAD_DATE_OVERFLOW, ERROR) \
32 FUNC(BAD_EMAIL, ERROR) \
33 FUNC(BAD_NAME, ERROR) \
34 FUNC(BAD_OBJECT_SHA1, ERROR) \
35 FUNC(BAD_PARENT_SHA1, ERROR) \
36 FUNC(BAD_TAG_OBJECT, ERROR) \
37 FUNC(BAD_TIMEZONE, ERROR) \
38 FUNC(BAD_TREE, ERROR) \
39 FUNC(BAD_TREE_SHA1, ERROR) \
40 FUNC(BAD_TYPE, ERROR) \
41 FUNC(DUPLICATE_ENTRIES, ERROR) \
42 FUNC(MISSING_AUTHOR, ERROR) \
43 FUNC(MISSING_COMMITTER, ERROR) \
44 FUNC(MISSING_EMAIL, ERROR) \
45 FUNC(MISSING_GRAFT, ERROR) \
46 FUNC(MISSING_NAME_BEFORE_EMAIL, ERROR) \
47 FUNC(MISSING_OBJECT, ERROR) \
48 FUNC(MISSING_PARENT, ERROR) \
49 FUNC(MISSING_SPACE_BEFORE_DATE, ERROR) \
50 FUNC(MISSING_SPACE_BEFORE_EMAIL, ERROR) \
51 FUNC(MISSING_TAG, ERROR) \
52 FUNC(MISSING_TAG_ENTRY, ERROR) \
53 FUNC(MISSING_TAG_OBJECT, ERROR) \
54 FUNC(MISSING_TREE, ERROR) \
159e7b08 55 FUNC(MISSING_TREE_OBJECT, ERROR) \
c99ba492
JS
56 FUNC(MISSING_TYPE, ERROR) \
57 FUNC(MISSING_TYPE_ENTRY, ERROR) \
c9ad147f 58 FUNC(MULTIPLE_AUTHORS, ERROR) \
c99ba492
JS
59 FUNC(TAG_OBJECT_NOT_TAG, ERROR) \
60 FUNC(TREE_NOT_SORTED, ERROR) \
61 FUNC(UNKNOWN_TYPE, ERROR) \
c99ba492 62 FUNC(ZERO_PADDED_DATE, ERROR) \
159e7b08
JK
63 FUNC(GITMODULES_MISSING, ERROR) \
64 FUNC(GITMODULES_BLOB, ERROR) \
ed8b10f6
JK
65 FUNC(GITMODULES_PARSE, ERROR) \
66 FUNC(GITMODULES_NAME, ERROR) \
b7b1fca1 67 FUNC(GITMODULES_SYMLINK, ERROR) \
a124133e 68 FUNC(GITMODULES_URL, ERROR) \
1a7fd1fb 69 FUNC(GITMODULES_PATH, ERROR) \
bb92255e 70 FUNC(GITMODULES_UPDATE, ERROR) \
c99ba492
JS
71 /* warnings */ \
72 FUNC(BAD_FILEMODE, WARN) \
c99ba492
JS
73 FUNC(EMPTY_NAME, WARN) \
74 FUNC(FULL_PATHNAME, WARN) \
75 FUNC(HAS_DOT, WARN) \
76 FUNC(HAS_DOTDOT, WARN) \
77 FUNC(HAS_DOTGIT, WARN) \
c99ba492 78 FUNC(NULL_SHA1, WARN) \
f27d05b1 79 FUNC(ZERO_PADDED_FILEMODE, WARN) \
6d2d780f 80 FUNC(NUL_IN_COMMIT, WARN) \
f27d05b1
JS
81 /* infos (reported as warnings, but ignored by default) */ \
82 FUNC(BAD_TAG_NAME, INFO) \
83 FUNC(MISSING_TAGGER_ENTRY, INFO)
c99ba492
JS
84
85#define MSG_ID(id, msg_type) FSCK_MSG_##id,
86enum fsck_msg_id {
87 FOREACH_MSG_ID(MSG_ID)
88 FSCK_MSG_MAX
89};
90#undef MSG_ID
91
f417eed8
JS
92#define STR(x) #x
93#define MSG_ID(id, msg_type) { STR(id), NULL, FSCK_##msg_type },
c99ba492 94static struct {
f417eed8
JS
95 const char *id_string;
96 const char *downcased;
c99ba492
JS
97 int msg_type;
98} msg_id_info[FSCK_MSG_MAX + 1] = {
99 FOREACH_MSG_ID(MSG_ID)
f417eed8 100 { NULL, NULL, -1 }
c99ba492
JS
101};
102#undef MSG_ID
103
f417eed8
JS
104static int parse_msg_id(const char *text)
105{
106 int i;
107
108 if (!msg_id_info[0].downcased) {
109 /* convert id_string to lower case, without underscores. */
110 for (i = 0; i < FSCK_MSG_MAX; i++) {
111 const char *p = msg_id_info[i].id_string;
112 int len = strlen(p);
113 char *q = xmalloc(len);
114
115 msg_id_info[i].downcased = q;
116 while (*p)
117 if (*p == '_')
118 p++;
119 else
120 *(q)++ = tolower(*(p)++);
121 *q = '\0';
122 }
123 }
124
125 for (i = 0; i < FSCK_MSG_MAX; i++)
126 if (!strcmp(text, msg_id_info[i].downcased))
127 return i;
128
129 return -1;
130}
131
c99ba492
JS
132static int fsck_msg_type(enum fsck_msg_id msg_id,
133 struct fsck_options *options)
134{
135 int msg_type;
136
0282f4dc
JS
137 assert(msg_id >= 0 && msg_id < FSCK_MSG_MAX);
138
139 if (options->msg_type)
140 msg_type = options->msg_type[msg_id];
141 else {
142 msg_type = msg_id_info[msg_id].msg_type;
143 if (options->strict && msg_type == FSCK_WARN)
144 msg_type = FSCK_ERROR;
145 }
c99ba492
JS
146
147 return msg_type;
148}
149
cd94c6f9
JS
150static void init_skiplist(struct fsck_options *options, const char *path)
151{
910650d2 152 static struct oid_array skiplist = OID_ARRAY_INIT;
cd94c6f9 153 int sorted, fd;
365c27fb 154 char buffer[GIT_MAX_HEXSZ + 1];
155 struct object_id oid;
cd94c6f9
JS
156
157 if (options->skiplist)
158 sorted = options->skiplist->sorted;
159 else {
160 sorted = 1;
161 options->skiplist = &skiplist;
162 }
163
164 fd = open(path, O_RDONLY);
165 if (fd < 0)
166 die("Could not open skip list: %s", path);
167 for (;;) {
365c27fb 168 const char *p;
cd94c6f9
JS
169 int result = read_in_full(fd, buffer, sizeof(buffer));
170 if (result < 0)
171 die_errno("Could not read '%s'", path);
172 if (!result)
173 break;
365c27fb 174 if (parse_oid_hex(buffer, &oid, &p) || *p != '\n')
cd94c6f9 175 die("Invalid SHA-1: %s", buffer);
910650d2 176 oid_array_append(&skiplist, &oid);
cd94c6f9 177 if (sorted && skiplist.nr > 1 &&
ee3051bd 178 oidcmp(&skiplist.oid[skiplist.nr - 2],
179 &oid) > 0)
cd94c6f9
JS
180 sorted = 0;
181 }
182 close(fd);
183
184 if (sorted)
185 skiplist.sorted = 1;
186}
187
0282f4dc
JS
188static int parse_msg_type(const char *str)
189{
190 if (!strcmp(str, "error"))
191 return FSCK_ERROR;
192 else if (!strcmp(str, "warn"))
193 return FSCK_WARN;
efaba7cc
JS
194 else if (!strcmp(str, "ignore"))
195 return FSCK_IGNORE;
0282f4dc
JS
196 else
197 die("Unknown fsck message type: '%s'", str);
198}
199
5d477a33
JS
200int is_valid_msg_type(const char *msg_id, const char *msg_type)
201{
202 if (parse_msg_id(msg_id) < 0)
203 return 0;
204 parse_msg_type(msg_type);
205 return 1;
206}
207
0282f4dc
JS
208void fsck_set_msg_type(struct fsck_options *options,
209 const char *msg_id, const char *msg_type)
210{
211 int id = parse_msg_id(msg_id), type;
212
213 if (id < 0)
214 die("Unhandled message id: %s", msg_id);
215 type = parse_msg_type(msg_type);
216
f50c4407
JS
217 if (type != FSCK_ERROR && msg_id_info[id].msg_type == FSCK_FATAL)
218 die("Cannot demote %s to %s", msg_id, msg_type);
219
0282f4dc
JS
220 if (!options->msg_type) {
221 int i;
b32fa95f
JK
222 int *msg_type;
223 ALLOC_ARRAY(msg_type, FSCK_MSG_MAX);
0282f4dc
JS
224 for (i = 0; i < FSCK_MSG_MAX; i++)
225 msg_type[i] = fsck_msg_type(i, options);
226 options->msg_type = msg_type;
227 }
228
229 options->msg_type[id] = type;
230}
231
232void fsck_set_msg_types(struct fsck_options *options, const char *values)
233{
234 char *buf = xstrdup(values), *to_free = buf;
235 int done = 0;
236
237 while (!done) {
238 int len = strcspn(buf, " ,|"), equal;
239
240 done = !buf[len];
241 if (!len) {
242 buf++;
243 continue;
244 }
245 buf[len] = '\0';
246
247 for (equal = 0;
248 equal < len && buf[equal] != '=' && buf[equal] != ':';
249 equal++)
250 buf[equal] = tolower(buf[equal]);
251 buf[equal] = '\0';
252
cd94c6f9
JS
253 if (!strcmp(buf, "skiplist")) {
254 if (equal == len)
255 die("skiplist requires a path");
256 init_skiplist(options, buf + equal + 1);
257 buf += len + 1;
258 continue;
259 }
260
0282f4dc
JS
261 if (equal == len)
262 die("Missing '=': '%s'", buf);
355885d5 263
0282f4dc
JS
264 fsck_set_msg_type(options, buf, buf + equal + 1);
265 buf += len + 1;
266 }
267 free(to_free);
268}
269
71ab8fa8
JS
270static void append_msg_id(struct strbuf *sb, const char *msg_id)
271{
272 for (;;) {
273 char c = *(msg_id)++;
274
275 if (!c)
276 break;
277 if (c != '_')
278 strbuf_addch(sb, tolower(c));
279 else {
280 assert(*msg_id);
281 strbuf_addch(sb, *(msg_id)++);
282 }
283 }
284
285 strbuf_addstr(sb, ": ");
286}
287
c99ba492
JS
288__attribute__((format (printf, 4, 5)))
289static int report(struct fsck_options *options, struct object *object,
290 enum fsck_msg_id id, const char *fmt, ...)
291{
292 va_list ap;
293 struct strbuf sb = STRBUF_INIT;
294 int msg_type = fsck_msg_type(id, options), result;
295
efaba7cc
JS
296 if (msg_type == FSCK_IGNORE)
297 return 0;
298
cd94c6f9 299 if (options->skiplist && object &&
910650d2 300 oid_array_lookup(options->skiplist, &object->oid) >= 0)
cd94c6f9
JS
301 return 0;
302
f50c4407
JS
303 if (msg_type == FSCK_FATAL)
304 msg_type = FSCK_ERROR;
f27d05b1
JS
305 else if (msg_type == FSCK_INFO)
306 msg_type = FSCK_WARN;
f50c4407 307
71ab8fa8
JS
308 append_msg_id(&sb, msg_id_info[id].id_string);
309
c99ba492
JS
310 va_start(ap, fmt);
311 strbuf_vaddf(&sb, fmt, ap);
1cd772cc 312 result = options->error_func(options, object, msg_type, sb.buf);
c99ba492
JS
313 strbuf_release(&sb);
314 va_end(ap);
315
316 return result;
317}
318
7b35efd7
JS
319static char *get_object_name(struct fsck_options *options, struct object *obj)
320{
321 if (!options->object_names)
322 return NULL;
323 return lookup_decoration(options->object_names, obj);
324}
325
326static void put_object_name(struct fsck_options *options, struct object *obj,
327 const char *fmt, ...)
328{
329 va_list ap;
330 struct strbuf buf = STRBUF_INIT;
331 char *existing;
332
333 if (!options->object_names)
334 return;
335 existing = lookup_decoration(options->object_names, obj);
336 if (existing)
337 return;
338 va_start(ap, fmt);
339 strbuf_vaddf(&buf, fmt, ap);
340 add_decoration(options->object_names, obj, strbuf_detach(&buf, NULL));
341 va_end(ap);
342}
343
90cf590f
JS
344static const char *describe_object(struct fsck_options *o, struct object *obj)
345{
346 static struct strbuf buf = STRBUF_INIT;
347 char *name;
348
349 strbuf_reset(&buf);
350 strbuf_addstr(&buf, oid_to_hex(&obj->oid));
351 if (o->object_names && (name = lookup_decoration(o->object_names, obj)))
352 strbuf_addf(&buf, " (%s)", name);
353
354 return buf.buf;
355}
356
22410549 357static int fsck_walk_tree(struct tree *tree, void *data, struct fsck_options *options)
355885d5
MK
358{
359 struct tree_desc desc;
360 struct name_entry entry;
361 int res = 0;
7b35efd7 362 const char *name;
355885d5
MK
363
364 if (parse_tree(tree))
365 return -1;
366
7b35efd7 367 name = get_object_name(options, &tree->object);
8354fa3d
DT
368 if (init_tree_desc_gently(&desc, tree->buffer, tree->size))
369 return -1;
370 while (tree_entry_gently(&desc, &entry)) {
7b35efd7 371 struct object *obj;
355885d5
MK
372 int result;
373
374 if (S_ISGITLINK(entry.mode))
375 continue;
7b35efd7
JS
376
377 if (S_ISDIR(entry.mode)) {
2720f6db
RS
378 obj = (struct object *)lookup_tree(entry.oid);
379 if (name && obj)
7b35efd7
JS
380 put_object_name(options, obj, "%s%s/", name,
381 entry.path);
382 result = options->walk(obj, OBJ_TREE, data, options);
383 }
384 else if (S_ISREG(entry.mode) || S_ISLNK(entry.mode)) {
2720f6db
RS
385 obj = (struct object *)lookup_blob(entry.oid);
386 if (name && obj)
7b35efd7
JS
387 put_object_name(options, obj, "%s%s", name,
388 entry.path);
389 result = options->walk(obj, OBJ_BLOB, data, options);
390 }
355885d5 391 else {
82247e9b 392 result = error("in tree %s: entry %s has bad mode %.6o",
90cf590f 393 describe_object(options, &tree->object), entry.path, entry.mode);
355885d5
MK
394 }
395 if (result < 0)
396 return result;
397 if (!res)
398 res = result;
399 }
400 return res;
401}
402
22410549 403static int fsck_walk_commit(struct commit *commit, void *data, struct fsck_options *options)
355885d5 404{
7b35efd7 405 int counter = 0, generation = 0, name_prefix_len = 0;
355885d5
MK
406 struct commit_list *parents;
407 int res;
408 int result;
7b35efd7 409 const char *name;
355885d5
MK
410
411 if (parse_commit(commit))
412 return -1;
413
7b35efd7
JS
414 name = get_object_name(options, &commit->object);
415 if (name)
416 put_object_name(options, &commit->tree->object, "%s:", name);
417
22410549 418 result = options->walk((struct object *)commit->tree, OBJ_TREE, data, options);
355885d5
MK
419 if (result < 0)
420 return result;
421 res = result;
422
423 parents = commit->parents;
7b35efd7
JS
424 if (name && parents) {
425 int len = strlen(name), power;
426
427 if (len && name[len - 1] == '^') {
428 generation = 1;
429 name_prefix_len = len - 1;
430 }
431 else { /* parse ~<generation> suffix */
432 for (generation = 0, power = 1;
433 len && isdigit(name[len - 1]);
434 power *= 10)
435 generation += power * (name[--len] - '0');
436 if (power > 1 && len && name[len - 1] == '~')
437 name_prefix_len = len - 1;
438 }
439 }
440
355885d5 441 while (parents) {
7b35efd7
JS
442 if (name) {
443 struct object *obj = &parents->item->object;
444
445 if (++counter > 1)
446 put_object_name(options, obj, "%s^%d",
447 name, counter);
448 else if (generation > 0)
449 put_object_name(options, obj, "%.*s~%d",
450 name_prefix_len, name, generation + 1);
451 else
452 put_object_name(options, obj, "%s^", name);
453 }
22410549 454 result = options->walk((struct object *)parents->item, OBJ_COMMIT, data, options);
355885d5
MK
455 if (result < 0)
456 return result;
457 if (!res)
458 res = result;
459 parents = parents->next;
460 }
461 return res;
462}
463
22410549 464static int fsck_walk_tag(struct tag *tag, void *data, struct fsck_options *options)
355885d5 465{
7b35efd7
JS
466 char *name = get_object_name(options, &tag->object);
467
355885d5
MK
468 if (parse_tag(tag))
469 return -1;
7b35efd7
JS
470 if (name)
471 put_object_name(options, tag->tagged, "%s", name);
22410549 472 return options->walk(tag->tagged, OBJ_ANY, data, options);
355885d5
MK
473}
474
22410549 475int fsck_walk(struct object *obj, void *data, struct fsck_options *options)
355885d5
MK
476{
477 if (!obj)
478 return -1;
a2b22854
JK
479
480 if (obj->type == OBJ_NONE)
c251c83d 481 parse_object(&obj->oid);
a2b22854 482
355885d5
MK
483 switch (obj->type) {
484 case OBJ_BLOB:
485 return 0;
486 case OBJ_TREE:
22410549 487 return fsck_walk_tree((struct tree *)obj, data, options);
355885d5 488 case OBJ_COMMIT:
22410549 489 return fsck_walk_commit((struct commit *)obj, data, options);
355885d5 490 case OBJ_TAG:
22410549 491 return fsck_walk_tag((struct tag *)obj, data, options);
355885d5 492 default:
90cf590f 493 error("Unknown object type for %s", describe_object(options, obj));
355885d5
MK
494 return -1;
495 }
496}
ba002f3b
MK
497
498/*
499 * The entries in a tree are ordered in the _path_ order,
500 * which means that a directory entry is ordered by adding
501 * a slash to the end of it.
502 *
503 * So a directory called "a" is ordered _after_ a file
504 * called "a.c", because "a/" sorts after "a.c".
505 */
506#define TREE_UNORDERED (-1)
507#define TREE_HAS_DUPS (-2)
508
509static int verify_ordered(unsigned mode1, const char *name1, unsigned mode2, const char *name2)
510{
511 int len1 = strlen(name1);
512 int len2 = strlen(name2);
513 int len = len1 < len2 ? len1 : len2;
514 unsigned char c1, c2;
515 int cmp;
516
517 cmp = memcmp(name1, name2, len);
518 if (cmp < 0)
519 return 0;
520 if (cmp > 0)
521 return TREE_UNORDERED;
522
523 /*
524 * Ok, the first <len> characters are the same.
525 * Now we need to order the next one, but turn
526 * a '\0' into a '/' for a directory entry.
527 */
528 c1 = name1[len];
529 c2 = name2[len];
530 if (!c1 && !c2)
531 /*
532 * git-write-tree used to write out a nonsense tree that has
533 * entries with the same name, one blob and one tree. Make
534 * sure we do not have duplicate entries.
535 */
536 return TREE_HAS_DUPS;
537 if (!c1 && S_ISDIR(mode1))
538 c1 = '/';
539 if (!c2 && S_ISDIR(mode2))
540 c2 = '/';
541 return c1 < c2 ? 0 : TREE_UNORDERED;
542}
543
22410549 544static int fsck_tree(struct tree *item, struct fsck_options *options)
ba002f3b 545{
8354fa3d 546 int retval = 0;
c479d14a 547 int has_null_sha1 = 0;
ba002f3b
MK
548 int has_full_path = 0;
549 int has_empty_name = 0;
5d34a435
JK
550 int has_dot = 0;
551 int has_dotdot = 0;
5c17f512 552 int has_dotgit = 0;
ba002f3b
MK
553 int has_zero_pad = 0;
554 int has_bad_modes = 0;
555 int has_dup_entries = 0;
556 int not_properly_sorted = 0;
557 struct tree_desc desc;
558 unsigned o_mode;
559 const char *o_name;
ba002f3b 560
8354fa3d
DT
561 if (init_tree_desc_gently(&desc, item->buffer, item->size)) {
562 retval += report(options, &item->object, FSCK_MSG_BAD_TREE, "cannot be parsed as a tree");
563 return retval;
564 }
ba002f3b
MK
565
566 o_mode = 0;
567 o_name = NULL;
ba002f3b
MK
568
569 while (desc.size) {
570 unsigned mode;
288a74bc 571 const char *name, *backslash;
ce6663a9 572 const struct object_id *oid;
ba002f3b 573
ce6663a9 574 oid = tree_entry_extract(&desc, &name, &mode);
ba002f3b 575
ce6663a9 576 has_null_sha1 |= is_null_oid(oid);
effd12ec
HS
577 has_full_path |= !!strchr(name, '/');
578 has_empty_name |= !*name;
579 has_dot |= !strcmp(name, ".");
580 has_dotdot |= !strcmp(name, "..");
ed9c3220 581 has_dotgit |= is_hfs_dotgit(name) || is_ntfs_dotgit(name);
ba002f3b 582 has_zero_pad |= *(char *)desc.buffer == '0';
159e7b08 583
b7b1fca1
JK
584 if (is_hfs_dotgitmodules(name) || is_ntfs_dotgitmodules(name)) {
585 if (!S_ISLNK(mode))
586 oidset_insert(&gitmodules_found, oid);
587 else
588 retval += report(options, &item->object,
589 FSCK_MSG_GITMODULES_SYMLINK,
590 ".gitmodules is a symbolic link");
591 }
159e7b08 592
288a74bc
JS
593 if ((backslash = strchr(name, '\\'))) {
594 while (backslash) {
595 backslash++;
596 has_dotgit |= is_ntfs_dotgit(backslash);
bdfef049
JS
597 if (is_ntfs_dotgitmodules(backslash)) {
598 if (!S_ISLNK(mode))
599 oidset_insert(&gitmodules_found, oid);
600 else
601 retval += report(options, &item->object,
602 FSCK_MSG_GITMODULES_SYMLINK,
603 ".gitmodules is a symbolic link");
604 }
288a74bc
JS
605 backslash = strchr(backslash, '\\');
606 }
607 }
608
8354fa3d
DT
609 if (update_tree_entry_gently(&desc)) {
610 retval += report(options, &item->object, FSCK_MSG_BAD_TREE, "cannot be parsed as a tree");
611 break;
612 }
ba002f3b
MK
613
614 switch (mode) {
615 /*
616 * Standard modes..
617 */
618 case S_IFREG | 0755:
619 case S_IFREG | 0644:
620 case S_IFLNK:
621 case S_IFDIR:
622 case S_IFGITLINK:
623 break;
624 /*
625 * This is nonstandard, but we had a few of these
626 * early on when we honored the full set of mode
627 * bits..
628 */
629 case S_IFREG | 0664:
22410549 630 if (!options->strict)
ba002f3b 631 break;
1cf01a34 632 /* fallthrough */
ba002f3b
MK
633 default:
634 has_bad_modes = 1;
635 }
636
637 if (o_name) {
638 switch (verify_ordered(o_mode, o_name, mode, name)) {
639 case TREE_UNORDERED:
640 not_properly_sorted = 1;
641 break;
642 case TREE_HAS_DUPS:
643 has_dup_entries = 1;
644 break;
645 default:
646 break;
647 }
648 }
649
650 o_mode = mode;
651 o_name = name;
ba002f3b
MK
652 }
653
c479d14a 654 if (has_null_sha1)
c99ba492 655 retval += report(options, &item->object, FSCK_MSG_NULL_SHA1, "contains entries pointing to null sha1");
ba002f3b 656 if (has_full_path)
c99ba492 657 retval += report(options, &item->object, FSCK_MSG_FULL_PATHNAME, "contains full pathnames");
ba002f3b 658 if (has_empty_name)
c99ba492 659 retval += report(options, &item->object, FSCK_MSG_EMPTY_NAME, "contains empty pathname");
5d34a435 660 if (has_dot)
c99ba492 661 retval += report(options, &item->object, FSCK_MSG_HAS_DOT, "contains '.'");
5d34a435 662 if (has_dotdot)
c99ba492 663 retval += report(options, &item->object, FSCK_MSG_HAS_DOTDOT, "contains '..'");
5c17f512 664 if (has_dotgit)
c99ba492 665 retval += report(options, &item->object, FSCK_MSG_HAS_DOTGIT, "contains '.git'");
ba002f3b 666 if (has_zero_pad)
c99ba492 667 retval += report(options, &item->object, FSCK_MSG_ZERO_PADDED_FILEMODE, "contains zero-padded file modes");
ba002f3b 668 if (has_bad_modes)
c99ba492 669 retval += report(options, &item->object, FSCK_MSG_BAD_FILEMODE, "contains bad file modes");
ba002f3b 670 if (has_dup_entries)
c99ba492 671 retval += report(options, &item->object, FSCK_MSG_DUPLICATE_ENTRIES, "contains duplicate file entries");
ba002f3b 672 if (not_properly_sorted)
c99ba492 673 retval += report(options, &item->object, FSCK_MSG_TREE_NOT_SORTED, "not properly sorted");
ba002f3b
MK
674 return retval;
675}
676
84d18c0b 677static int verify_headers(const void *data, unsigned long size,
b2f44feb 678 struct object *obj, struct fsck_options *options)
4d0d8975
JS
679{
680 const char *buffer = (const char *)data;
681 unsigned long i;
682
683 for (i = 0; i < size; i++) {
684 switch (buffer[i]) {
685 case '\0':
c99ba492
JS
686 return report(options, obj,
687 FSCK_MSG_NUL_IN_HEADER,
688 "unterminated header: NUL at offset %ld", i);
4d0d8975
JS
689 case '\n':
690 if (i + 1 < size && buffer[i + 1] == '\n')
691 return 0;
692 }
693 }
694
84d18c0b
JH
695 /*
696 * We did not find double-LF that separates the header
697 * and the body. Not having a body is not a crime but
698 * we do want to see the terminating LF for the last header
699 * line.
700 */
701 if (size && buffer[size - 1] == '\n')
702 return 0;
703
c99ba492
JS
704 return report(options, obj,
705 FSCK_MSG_UNTERMINATED_HEADER, "unterminated header");
4d0d8975
JS
706}
707
22410549 708static int fsck_ident(const char **ident, struct object *obj, struct fsck_options *options)
daae1922 709{
e6826e33 710 const char *p = *ident;
d4b8de04
JK
711 char *end;
712
e6826e33
JS
713 *ident = strchrnul(*ident, '\n');
714 if (**ident == '\n')
715 (*ident)++;
716
717 if (*p == '<')
c99ba492 718 return report(options, obj, FSCK_MSG_MISSING_NAME_BEFORE_EMAIL, "invalid author/committer line - missing space before email");
e6826e33
JS
719 p += strcspn(p, "<>\n");
720 if (*p == '>')
c99ba492 721 return report(options, obj, FSCK_MSG_BAD_NAME, "invalid author/committer line - bad name");
e6826e33 722 if (*p != '<')
c99ba492 723 return report(options, obj, FSCK_MSG_MISSING_EMAIL, "invalid author/committer line - missing email");
e6826e33 724 if (p[-1] != ' ')
c99ba492 725 return report(options, obj, FSCK_MSG_MISSING_SPACE_BEFORE_EMAIL, "invalid author/committer line - missing space before email");
e6826e33
JS
726 p++;
727 p += strcspn(p, "<>\n");
728 if (*p != '>')
c99ba492 729 return report(options, obj, FSCK_MSG_BAD_EMAIL, "invalid author/committer line - bad email");
e6826e33
JS
730 p++;
731 if (*p != ' ')
c99ba492 732 return report(options, obj, FSCK_MSG_MISSING_SPACE_BEFORE_DATE, "invalid author/committer line - missing space before date");
e6826e33
JS
733 p++;
734 if (*p == '0' && p[1] != ' ')
c99ba492 735 return report(options, obj, FSCK_MSG_ZERO_PADDED_DATE, "invalid author/committer line - zero-padded date");
1aeb7e75 736 if (date_overflows(parse_timestamp(p, &end, 10)))
c99ba492 737 return report(options, obj, FSCK_MSG_BAD_DATE_OVERFLOW, "invalid author/committer line - date causes integer overflow");
e6826e33 738 if ((end == p || *end != ' '))
c99ba492 739 return report(options, obj, FSCK_MSG_BAD_DATE, "invalid author/committer line - bad date");
e6826e33
JS
740 p = end + 1;
741 if ((*p != '+' && *p != '-') ||
742 !isdigit(p[1]) ||
743 !isdigit(p[2]) ||
744 !isdigit(p[3]) ||
745 !isdigit(p[4]) ||
746 (p[5] != '\n'))
c99ba492 747 return report(options, obj, FSCK_MSG_BAD_TIMEZONE, "invalid author/committer line - bad time zone");
e6826e33 748 p += 6;
daae1922
JN
749 return 0;
750}
751
bc6b8fc1 752static int fsck_commit_buffer(struct commit *commit, const char *buffer,
22410549 753 unsigned long size, struct fsck_options *options)
ba002f3b 754{
ba002f3b
MK
755 unsigned char tree_sha1[20], sha1[20];
756 struct commit_graft *graft;
c9ad147f 757 unsigned parent_count, parent_line_count = 0, author_count;
daae1922 758 int err;
6d2d780f 759 const char *buffer_begin = buffer;
ba002f3b 760
b2f44feb 761 if (verify_headers(buffer, size, &commit->object, options))
4d0d8975
JS
762 return -1;
763
cf4fff57 764 if (!skip_prefix(buffer, "tree ", &buffer))
c99ba492 765 return report(options, &commit->object, FSCK_MSG_MISSING_TREE, "invalid format - expected 'tree' line");
b3584761
JS
766 if (get_sha1_hex(buffer, tree_sha1) || buffer[40] != '\n') {
767 err = report(options, &commit->object, FSCK_MSG_BAD_TREE_SHA1, "invalid 'tree' line format - bad sha1");
768 if (err)
769 return err;
770 }
2d820a61 771 buffer += 41;
cf4fff57 772 while (skip_prefix(buffer, "parent ", &buffer)) {
b3584761
JS
773 if (get_sha1_hex(buffer, sha1) || buffer[40] != '\n') {
774 err = report(options, &commit->object, FSCK_MSG_BAD_PARENT_SHA1, "invalid 'parent' line format - bad sha1");
775 if (err)
776 return err;
777 }
2d820a61 778 buffer += 41;
9d02150c 779 parent_line_count++;
ba002f3b 780 }
8b65a34c 781 graft = lookup_commit_graft(&commit->object.oid);
9d02150c 782 parent_count = commit_list_count(commit->parents);
ba002f3b 783 if (graft) {
9d02150c 784 if (graft->nr_parent == -1 && !parent_count)
ba002f3b 785 ; /* shallow commit */
b3584761
JS
786 else if (graft->nr_parent != parent_count) {
787 err = report(options, &commit->object, FSCK_MSG_MISSING_GRAFT, "graft objects missing");
788 if (err)
789 return err;
790 }
ba002f3b 791 } else {
b3584761
JS
792 if (parent_count != parent_line_count) {
793 err = report(options, &commit->object, FSCK_MSG_MISSING_PARENT, "parent objects missing");
794 if (err)
795 return err;
796 }
ba002f3b 797 }
c9ad147f
JS
798 author_count = 0;
799 while (skip_prefix(buffer, "author ", &buffer)) {
800 author_count++;
801 err = fsck_ident(&buffer, &commit->object, options);
802 if (err)
803 return err;
ba002f3b 804 }
c9ad147f
JS
805 if (author_count < 1)
806 err = report(options, &commit->object, FSCK_MSG_MISSING_AUTHOR, "invalid format - expected 'author' line");
807 else if (author_count > 1)
808 err = report(options, &commit->object, FSCK_MSG_MULTIPLE_AUTHORS, "invalid format - multiple 'author' lines");
daae1922
JN
809 if (err)
810 return err;
cf4fff57 811 if (!skip_prefix(buffer, "committer ", &buffer))
c99ba492 812 return report(options, &commit->object, FSCK_MSG_MISSING_COMMITTER, "invalid format - expected 'committer' line");
22410549 813 err = fsck_ident(&buffer, &commit->object, options);
daae1922
JN
814 if (err)
815 return err;
5af29718
JH
816 if (!commit->tree) {
817 err = report(options, &commit->object, FSCK_MSG_BAD_TREE, "could not load commit's tree %s", sha1_to_hex(tree_sha1));
818 if (err)
819 return err;
820 }
6d2d780f
JH
821 if (memchr(buffer_begin, '\0', size)) {
822 err = report(options, &commit->object, FSCK_MSG_NUL_IN_COMMIT,
823 "NUL byte in the commit object body");
824 if (err)
825 return err;
826 }
ba002f3b
MK
827 return 0;
828}
829
90a398bb 830static int fsck_commit(struct commit *commit, const char *data,
22410549 831 unsigned long size, struct fsck_options *options)
bc6b8fc1 832{
90a398bb 833 const char *buffer = data ? data : get_commit_buffer(commit, &size);
22410549 834 int ret = fsck_commit_buffer(commit, buffer, size, options);
90a398bb
JS
835 if (!data)
836 unuse_commit_buffer(commit, buffer);
bc6b8fc1
JK
837 return ret;
838}
839
cec097be 840static int fsck_tag_buffer(struct tag *tag, const char *data,
22410549 841 unsigned long size, struct fsck_options *options)
cec097be
JS
842{
843 unsigned char sha1[20];
844 int ret = 0;
845 const char *buffer;
846 char *to_free = NULL, *eol;
847 struct strbuf sb = STRBUF_INIT;
848
849 if (data)
850 buffer = data;
851 else {
852 enum object_type type;
853
854 buffer = to_free =
ed1c9977 855 read_sha1_file(tag->object.oid.hash, &type, &size);
cec097be 856 if (!buffer)
c99ba492
JS
857 return report(options, &tag->object,
858 FSCK_MSG_MISSING_TAG_OBJECT,
cec097be
JS
859 "cannot read tag object");
860
861 if (type != OBJ_TAG) {
c99ba492
JS
862 ret = report(options, &tag->object,
863 FSCK_MSG_TAG_OBJECT_NOT_TAG,
cec097be 864 "expected tag got %s",
debca9d2 865 type_name(type));
cec097be
JS
866 goto done;
867 }
868 }
869
8a272f29
RS
870 ret = verify_headers(buffer, size, &tag->object, options);
871 if (ret)
cec097be
JS
872 goto done;
873
874 if (!skip_prefix(buffer, "object ", &buffer)) {
c99ba492 875 ret = report(options, &tag->object, FSCK_MSG_MISSING_OBJECT, "invalid format - expected 'object' line");
cec097be
JS
876 goto done;
877 }
878 if (get_sha1_hex(buffer, sha1) || buffer[40] != '\n') {
c99ba492 879 ret = report(options, &tag->object, FSCK_MSG_BAD_OBJECT_SHA1, "invalid 'object' line format - bad sha1");
7d7d5b05
JS
880 if (ret)
881 goto done;
cec097be
JS
882 }
883 buffer += 41;
884
885 if (!skip_prefix(buffer, "type ", &buffer)) {
c99ba492 886 ret = report(options, &tag->object, FSCK_MSG_MISSING_TYPE_ENTRY, "invalid format - expected 'type' line");
cec097be
JS
887 goto done;
888 }
889 eol = strchr(buffer, '\n');
890 if (!eol) {
c99ba492 891 ret = report(options, &tag->object, FSCK_MSG_MISSING_TYPE, "invalid format - unexpected end after 'type' line");
cec097be
JS
892 goto done;
893 }
894 if (type_from_string_gently(buffer, eol - buffer, 1) < 0)
c99ba492 895 ret = report(options, &tag->object, FSCK_MSG_BAD_TYPE, "invalid 'type' value");
cec097be
JS
896 if (ret)
897 goto done;
898 buffer = eol + 1;
899
900 if (!skip_prefix(buffer, "tag ", &buffer)) {
c99ba492 901 ret = report(options, &tag->object, FSCK_MSG_MISSING_TAG_ENTRY, "invalid format - expected 'tag' line");
cec097be
JS
902 goto done;
903 }
904 eol = strchr(buffer, '\n');
905 if (!eol) {
c99ba492 906 ret = report(options, &tag->object, FSCK_MSG_MISSING_TAG, "invalid format - unexpected end after 'type' line");
cec097be
JS
907 goto done;
908 }
909 strbuf_addf(&sb, "refs/tags/%.*s", (int)(eol - buffer), buffer);
f27d05b1
JS
910 if (check_refname_format(sb.buf, 0)) {
911 ret = report(options, &tag->object, FSCK_MSG_BAD_TAG_NAME,
c99ba492 912 "invalid 'tag' name: %.*s",
7add4419 913 (int)(eol - buffer), buffer);
f27d05b1
JS
914 if (ret)
915 goto done;
916 }
cec097be
JS
917 buffer = eol + 1;
918
f27d05b1 919 if (!skip_prefix(buffer, "tagger ", &buffer)) {
cec097be 920 /* early tags do not contain 'tagger' lines; warn only */
f27d05b1
JS
921 ret = report(options, &tag->object, FSCK_MSG_MISSING_TAGGER_ENTRY, "invalid format - expected 'tagger' line");
922 if (ret)
923 goto done;
924 }
cec097be 925 else
22410549 926 ret = fsck_ident(&buffer, &tag->object, options);
cec097be
JS
927
928done:
929 strbuf_release(&sb);
930 free(to_free);
931 return ret;
932}
933
90a398bb 934static int fsck_tag(struct tag *tag, const char *data,
22410549 935 unsigned long size, struct fsck_options *options)
ba002f3b
MK
936{
937 struct object *tagged = tag->tagged;
938
939 if (!tagged)
c99ba492 940 return report(options, &tag->object, FSCK_MSG_BAD_TAG_OBJECT, "could not load tagged object");
cec097be 941
22410549 942 return fsck_tag_buffer(tag, data, size, options);
ba002f3b
MK
943}
944
07259e74
JK
945static int check_submodule_url(const char *url)
946{
947 struct credential c = CREDENTIAL_INIT;
948 int ret;
949
950 if (looks_like_command_line_option(url))
951 return -1;
952
953 ret = credential_from_url_gently(&c, url, 1);
954 credential_clear(&c);
955 return ret;
956}
957
ed8b10f6
JK
958struct fsck_gitmodules_data {
959 struct object *obj;
960 struct fsck_options *options;
961 int ret;
962};
963
964static int fsck_gitmodules_fn(const char *var, const char *value, void *vdata)
965{
966 struct fsck_gitmodules_data *data = vdata;
967 const char *subsection, *key;
968 int subsection_len;
969 char *name;
970
971 if (parse_config_key(var, "submodule", &subsection, &subsection_len, &key) < 0 ||
972 !subsection)
973 return 0;
974
975 name = xmemdupz(subsection, subsection_len);
976 if (check_submodule_name(name) < 0)
977 data->ret |= report(data->options, data->obj,
978 FSCK_MSG_GITMODULES_NAME,
979 "disallowed submodule name: %s",
980 name);
a124133e 981 if (!strcmp(key, "url") && value &&
07259e74 982 check_submodule_url(value) < 0)
a124133e
JK
983 data->ret |= report(data->options, data->obj,
984 FSCK_MSG_GITMODULES_URL,
985 "disallowed submodule url: %s",
986 value);
1a7fd1fb
JK
987 if (!strcmp(key, "path") && value &&
988 looks_like_command_line_option(value))
989 data->ret |= report(data->options, data->obj,
990 FSCK_MSG_GITMODULES_PATH,
991 "disallowed submodule path: %s",
992 value);
bb92255e
JN
993 if (!strcmp(key, "update") && value &&
994 parse_submodule_update_type(value) == SM_UPDATE_COMMAND)
995 data->ret |= report(data->options, data->obj,
996 FSCK_MSG_GITMODULES_UPDATE,
997 "disallowed submodule update setting: %s",
998 value);
ed8b10f6
JK
999 free(name);
1000
1001 return 0;
1002}
1003
7ac4f3a0
JK
1004static int fsck_blob(struct blob *blob, const char *buf,
1005 unsigned long size, struct fsck_options *options)
1006{
ed8b10f6
JK
1007 struct fsck_gitmodules_data data;
1008
1009 if (!oidset_contains(&gitmodules_found, &blob->object.oid))
1010 return 0;
1011 oidset_insert(&gitmodules_done, &blob->object.oid);
1012
1013 if (!buf) {
1014 /*
1015 * A missing buffer here is a sign that the caller found the
1016 * blob too gigantic to load into memory. Let's just consider
1017 * that an error.
1018 */
1019 return report(options, &blob->object,
1020 FSCK_MSG_GITMODULES_PARSE,
1021 ".gitmodules too large to parse");
1022 }
1023
1024 data.obj = &blob->object;
1025 data.options = options;
1026 data.ret = 0;
1027 if (git_config_from_mem(fsck_gitmodules_fn, CONFIG_ORIGIN_BLOB,
1028 ".gitmodules", buf, size, &data))
1029 data.ret |= report(options, &blob->object,
1030 FSCK_MSG_GITMODULES_PARSE,
1031 "could not parse gitmodules blob");
1032
1033 return data.ret;
7ac4f3a0
JK
1034}
1035
90a398bb 1036int fsck_object(struct object *obj, void *data, unsigned long size,
22410549 1037 struct fsck_options *options)
ba002f3b
MK
1038{
1039 if (!obj)
c99ba492 1040 return report(options, obj, FSCK_MSG_BAD_OBJECT_SHA1, "no valid object to fsck");
ba002f3b
MK
1041
1042 if (obj->type == OBJ_BLOB)
7ac4f3a0 1043 return fsck_blob((struct blob *)obj, data, size, options);
ba002f3b 1044 if (obj->type == OBJ_TREE)
22410549 1045 return fsck_tree((struct tree *) obj, options);
ba002f3b 1046 if (obj->type == OBJ_COMMIT)
90a398bb 1047 return fsck_commit((struct commit *) obj, (const char *) data,
22410549 1048 size, options);
ba002f3b 1049 if (obj->type == OBJ_TAG)
90a398bb 1050 return fsck_tag((struct tag *) obj, (const char *) data,
22410549 1051 size, options);
ba002f3b 1052
c99ba492 1053 return report(options, obj, FSCK_MSG_UNKNOWN_TYPE, "unknown type '%d' (internal fsck error)",
ba002f3b
MK
1054 obj->type);
1055}
d6ffc8d7 1056
1cd772cc
JS
1057int fsck_error_function(struct fsck_options *o,
1058 struct object *obj, int msg_type, const char *message)
d6ffc8d7 1059{
0282f4dc 1060 if (msg_type == FSCK_WARN) {
90cf590f 1061 warning("object %s: %s", describe_object(o, obj), message);
0282f4dc
JS
1062 return 0;
1063 }
90cf590f 1064 error("object %s: %s", describe_object(o, obj), message);
d6ffc8d7
MK
1065 return 1;
1066}
159e7b08
JK
1067
1068int fsck_finish(struct fsck_options *options)
1069{
1070 int ret = 0;
1071 struct oidset_iter iter;
1072 const struct object_id *oid;
1073
1074 oidset_iter_init(&gitmodules_found, &iter);
1075 while ((oid = oidset_iter_next(&iter))) {
1076 struct blob *blob;
1077 enum object_type type;
1078 unsigned long size;
1079 char *buf;
1080
1081 if (oidset_contains(&gitmodules_done, oid))
1082 continue;
1083
1084 blob = lookup_blob(oid);
1085 if (!blob) {
1086 ret |= report(options, &blob->object,
1087 FSCK_MSG_GITMODULES_BLOB,
1088 "non-blob found at .gitmodules");
1089 continue;
1090 }
1091
1092 buf = read_sha1_file(oid->hash, &type, &size);
1093 if (!buf) {
27387444
JK
1094 if (is_promisor_object(&blob->object.oid))
1095 continue;
159e7b08
JK
1096 ret |= report(options, &blob->object,
1097 FSCK_MSG_GITMODULES_MISSING,
1098 "unable to read .gitmodules blob");
1099 continue;
1100 }
1101
1102 if (type == OBJ_BLOB)
1103 ret |= fsck_blob(blob, buf, size, options);
1104 else
1105 ret |= report(options, &blob->object,
1106 FSCK_MSG_GITMODULES_BLOB,
1107 "non-blob found at .gitmodules");
1108 free(buf);
1109 }
1110
1111
1112 oidset_clear(&gitmodules_found);
1113 oidset_clear(&gitmodules_done);
1114 return ret;
1115}