11 #include "cache-tree.h"
12 #include "tree-walk.h"
14 #define REACHABLE 0x0001
17 static int show_root = 0;
18 static int show_tags = 0;
19 static int show_unreachable = 0;
20 static int check_full = 0;
21 static int check_strict = 0;
22 static int keep_cache_objects = 0;
23 static unsigned char head_sha1[20];
25 #ifdef NO_D_INO_IN_DIRENT
27 #define DIRENT_SORT_HINT(de) 0
30 #define DIRENT_SORT_HINT(de) ((de)->d_ino)
33 static void objreport(struct object *obj, const char *severity,
34 const char *err, va_list params)
36 fprintf(stderr, "%s in %s %s: ",
37 severity, typename(obj->type), sha1_to_hex(obj->sha1));
38 vfprintf(stderr, err, params);
42 static int objerror(struct object *obj, const char *err, ...)
45 va_start(params, err);
46 objreport(obj, "error", err, params);
51 static int objwarning(struct object *obj, const char *err, ...)
54 va_start(params, err);
55 objreport(obj, "warning", err, params);
61 static void check_connectivity(void)
65 /* Look up all the requirements, warn about missing objects.. */
66 max = get_max_object_index();
67 for (i = 0; i < max; i++) {
68 const struct object_refs *refs;
69 struct object *obj = get_indexed_object(i);
75 if (has_sha1_file(obj->sha1))
78 printf("missing %s %s\n",
79 typename(obj->type), sha1_to_hex(obj->sha1));
83 refs = lookup_object_refs(obj);
86 for (j = 0; j < refs->count; j++) {
87 struct object *ref = refs->ref[j];
89 (has_sha1_file(ref->sha1)))
91 printf("broken link from %7s %s\n",
92 typename(obj->type), sha1_to_hex(obj->sha1));
93 printf(" to %7s %s\n",
94 typename(ref->type), sha1_to_hex(ref->sha1));
98 if (show_unreachable && !(obj->flags & REACHABLE)) {
99 printf("unreachable %s %s\n",
100 typename(obj->type), sha1_to_hex(obj->sha1));
105 printf("dangling %s %s\n", typename(obj->type),
106 sha1_to_hex(obj->sha1));
112 * The entries in a tree are ordered in the _path_ order,
113 * which means that a directory entry is ordered by adding
114 * a slash to the end of it.
116 * So a directory called "a" is ordered _after_ a file
117 * called "a.c", because "a/" sorts after "a.c".
119 #define TREE_UNORDERED (-1)
120 #define TREE_HAS_DUPS (-2)
122 static int verify_ordered(unsigned mode1, const char *name1, unsigned mode2, const char *name2)
124 int len1 = strlen(name1);
125 int len2 = strlen(name2);
126 int len = len1 < len2 ? len1 : len2;
127 unsigned char c1, c2;
130 cmp = memcmp(name1, name2, len);
134 return TREE_UNORDERED;
137 * Ok, the first <len> characters are the same.
138 * Now we need to order the next one, but turn
139 * a '\0' into a '/' for a directory entry.
145 * git-write-tree used to write out a nonsense tree that has
146 * entries with the same name, one blob and one tree. Make
147 * sure we do not have duplicate entries.
149 return TREE_HAS_DUPS;
150 if (!c1 && S_ISDIR(mode1))
152 if (!c2 && S_ISDIR(mode2))
154 return c1 < c2 ? 0 : TREE_UNORDERED;
157 static int fsck_tree(struct tree *item)
160 int has_full_path = 0;
161 int has_zero_pad = 0;
162 int has_bad_modes = 0;
163 int has_dup_entries = 0;
164 int not_properly_sorted = 0;
165 struct tree_desc desc;
168 const unsigned char *o_sha1;
170 desc.buf = item->buffer;
171 desc.size = item->size;
179 const unsigned char *sha1;
181 sha1 = tree_entry_extract(&desc, &name, &mode);
183 if (strchr(name, '/'))
185 has_zero_pad |= *(char *)desc.buf == '0';
186 update_tree_entry(&desc);
198 * This is nonstandard, but we had a few of these
199 * early on when we honored the full set of mode
210 switch (verify_ordered(o_mode, o_name, mode, name)) {
212 not_properly_sorted = 1;
231 objwarning(&item->object, "contains full pathnames");
234 objwarning(&item->object, "contains zero-padded file modes");
237 objwarning(&item->object, "contains bad file modes");
239 if (has_dup_entries) {
240 retval = objerror(&item->object, "contains duplicate file entries");
242 if (not_properly_sorted) {
243 retval = objerror(&item->object, "not properly sorted");
248 static int fsck_commit(struct commit *commit)
250 char *buffer = commit->buffer;
251 unsigned char tree_sha1[20], sha1[20];
253 if (memcmp(buffer, "tree ", 5))
254 return objerror(&commit->object, "invalid format - expected 'tree' line");
255 if (get_sha1_hex(buffer+5, tree_sha1) || buffer[45] != '\n')
256 return objerror(&commit->object, "invalid 'tree' line format - bad sha1");
258 while (!memcmp(buffer, "parent ", 7)) {
259 if (get_sha1_hex(buffer+7, sha1) || buffer[47] != '\n')
260 return objerror(&commit->object, "invalid 'parent' line format - bad sha1");
263 if (memcmp(buffer, "author ", 7))
264 return objerror(&commit->object, "invalid format - expected 'author' line");
265 free(commit->buffer);
266 commit->buffer = NULL;
268 return objerror(&commit->object, "could not load commit's tree %s", tree_sha1);
269 if (!commit->parents && show_root)
270 printf("root %s\n", sha1_to_hex(commit->object.sha1));
272 printf("bad commit date in %s\n",
273 sha1_to_hex(commit->object.sha1));
277 static int fsck_tag(struct tag *tag)
279 struct object *tagged = tag->tagged;
282 return objerror(&tag->object, "could not load tagged object");
287 printf("tagged %s %s", typename(tagged->type), sha1_to_hex(tagged->sha1));
288 printf(" (%s) in %s\n", tag->tag, sha1_to_hex(tag->object.sha1));
292 static int fsck_sha1(unsigned char *sha1)
294 struct object *obj = parse_object(sha1);
296 return error("%s: object not found", sha1_to_hex(sha1));
297 if (obj->flags & SEEN)
300 if (obj->type == OBJ_BLOB)
302 if (obj->type == OBJ_TREE)
303 return fsck_tree((struct tree *) obj);
304 if (obj->type == OBJ_COMMIT)
305 return fsck_commit((struct commit *) obj);
306 if (obj->type == OBJ_TAG)
307 return fsck_tag((struct tag *) obj);
308 /* By now, parse_object() would've returned NULL instead. */
309 return objerror(obj, "unknown type '%d' (internal fsck error)", obj->type);
313 * This is the sorting chunk size: make it reasonably
314 * big so that we can sort well..
316 #define MAX_SHA1_ENTRIES (1024)
320 unsigned char sha1[20];
325 struct sha1_entry *entry[MAX_SHA1_ENTRIES];
328 static int ino_compare(const void *_a, const void *_b)
330 const struct sha1_entry *a = _a, *b = _b;
331 unsigned long ino1 = a->ino, ino2 = b->ino;
332 return ino1 < ino2 ? -1 : ino1 > ino2 ? 1 : 0;
335 static void fsck_sha1_list(void)
337 int i, nr = sha1_list.nr;
340 qsort(sha1_list.entry, nr,
341 sizeof(struct sha1_entry *), ino_compare);
342 for (i = 0; i < nr; i++) {
343 struct sha1_entry *entry = sha1_list.entry[i];
344 unsigned char *sha1 = entry->sha1;
346 sha1_list.entry[i] = NULL;
353 static void add_sha1_list(unsigned char *sha1, unsigned long ino)
355 struct sha1_entry *entry = xmalloc(sizeof(*entry));
359 memcpy(entry->sha1, sha1, 20);
361 if (nr == MAX_SHA1_ENTRIES) {
365 sha1_list.entry[nr] = entry;
369 static int fsck_dir(int i, char *path)
371 DIR *dir = opendir(path);
377 while ((de = readdir(dir)) != NULL) {
379 unsigned char sha1[20];
380 int len = strlen(de->d_name);
384 if (de->d_name[1] != '.')
387 if (de->d_name[0] != '.')
391 sprintf(name, "%02x", i);
392 memcpy(name+2, de->d_name, len+1);
393 if (get_sha1_hex(name, sha1) < 0)
395 add_sha1_list(sha1, DIRENT_SORT_HINT(de));
398 fprintf(stderr, "bad sha1 file: %s/%s\n", path, de->d_name);
404 static int default_refs = 0;
406 static int fsck_handle_ref(const char *refname, const unsigned char *sha1)
410 obj = lookup_object(sha1);
412 if (has_sha1_file(sha1)) {
414 return 0; /* it is in a pack */
416 error("%s: invalid sha1 pointer %s", refname, sha1_to_hex(sha1));
417 /* We'll continue with the rest despite the error.. */
422 mark_reachable(obj, REACHABLE);
426 static void get_default_heads(void)
428 for_each_ref(fsck_handle_ref);
430 die("No default references");
433 static void fsck_object_dir(const char *path)
436 for (i = 0; i < 256; i++) {
437 static char dir[4096];
438 sprintf(dir, "%s/%02x", path, i);
444 static int fsck_head_link(void)
446 unsigned char sha1[20];
447 const char *git_HEAD = strdup(git_path("HEAD"));
448 const char *git_refs_heads_master = resolve_ref(git_HEAD, sha1, 1);
449 int pfxlen = strlen(git_HEAD) - 4; /* strip .../.git/ part */
451 if (!git_refs_heads_master)
452 return error("HEAD is not a symbolic ref");
453 if (strncmp(git_refs_heads_master + pfxlen, "refs/heads/", 11))
454 return error("HEAD points to something strange (%s)",
455 git_refs_heads_master + pfxlen);
456 if (!memcmp(null_sha1, sha1, 20))
457 return error("HEAD: not a valid git pointer");
461 static int fsck_cache_tree(struct cache_tree *it)
466 if (0 <= it->entry_count) {
467 struct object *obj = parse_object(it->sha1);
469 error("%s: invalid sha1 pointer in cache-tree",
470 sha1_to_hex(it->sha1));
473 mark_reachable(obj, REACHABLE);
475 if (obj->type != OBJ_TREE)
476 err |= objerror(obj, "non-tree in cache-tree");
478 for (i = 0; i < it->subtree_nr; i++)
479 err |= fsck_cache_tree(it->down[i]->cache_tree);
483 int main(int argc, char **argv)
487 track_object_refs = 1;
488 setup_git_directory();
490 for (i = 1; i < argc; i++) {
491 const char *arg = argv[i];
493 if (!strcmp(arg, "--unreachable")) {
494 show_unreachable = 1;
497 if (!strcmp(arg, "--tags")) {
501 if (!strcmp(arg, "--root")) {
505 if (!strcmp(arg, "--cache")) {
506 keep_cache_objects = 1;
509 if (!strcmp(arg, "--full")) {
513 if (!strcmp(arg, "--strict")) {
518 usage("git-fsck-objects [--tags] [--root] [[--unreachable] [--cache] [--full] [--strict] <head-sha1>*]");
522 fsck_object_dir(get_object_directory());
524 struct alternate_object_database *alt;
525 struct packed_git *p;
527 for (alt = alt_odb_list; alt; alt = alt->next) {
528 char namebuf[PATH_MAX];
529 int namelen = alt->name - alt->base;
530 memcpy(namebuf, alt->base, namelen);
531 namebuf[namelen - 1] = 0;
532 fsck_object_dir(namebuf);
534 prepare_packed_git();
535 for (p = packed_git; p; p = p->next)
536 /* verify gives error messages itself */
539 for (p = packed_git; p; p = p->next) {
540 int num = num_packed_objects(p);
541 for (i = 0; i < num; i++) {
542 unsigned char sha1[20];
543 nth_packed_object_sha1(p, i, sha1);
550 for (i = 1; i < argc; i++) {
551 const char *arg = argv[i];
556 if (!get_sha1(arg, head_sha1)) {
557 struct object *obj = lookup_object(head_sha1);
559 /* Error is printed by lookup_object(). */
564 mark_reachable(obj, REACHABLE);
568 error("invalid parameter: expected sha1, got '%s'", arg);
572 * If we've not been given any explicit head information, do the
573 * default ones from .git/refs. We also consider the index file
574 * in this case (ie this implies --cache).
578 keep_cache_objects = 1;
581 if (keep_cache_objects) {
584 for (i = 0; i < active_nr; i++) {
585 struct blob *blob = lookup_blob(active_cache[i]->sha1);
591 mark_reachable(obj, REACHABLE);
593 if (active_cache_tree)
594 fsck_cache_tree(active_cache_tree);
597 check_connectivity();