8 #include "cache-tree.h"
11 #define REACHABLE 0x0001
16 static int show_unreachable
;
17 static int check_full
;
18 static int check_strict
;
19 static int keep_cache_objects
;
20 static unsigned char head_sha1
[20];
22 #ifdef NO_D_INO_IN_DIRENT
24 #define DIRENT_SORT_HINT(de) 0
27 #define DIRENT_SORT_HINT(de) ((de)->d_ino)
30 static void objreport(struct object
*obj
, const char *severity
,
31 const char *err
, va_list params
)
33 fprintf(stderr
, "%s in %s %s: ",
34 severity
, typename(obj
->type
), sha1_to_hex(obj
->sha1
));
35 vfprintf(stderr
, err
, params
);
39 static int objerror(struct object
*obj
, const char *err
, ...)
42 va_start(params
, err
);
43 objreport(obj
, "error", err
, params
);
48 static int objwarning(struct object
*obj
, const char *err
, ...)
51 va_start(params
, err
);
52 objreport(obj
, "warning", err
, params
);
58 static void check_connectivity(void)
62 /* Look up all the requirements, warn about missing objects.. */
63 max
= get_max_object_index();
64 for (i
= 0; i
< max
; i
++) {
65 const struct object_refs
*refs
;
66 struct object
*obj
= get_indexed_object(i
);
72 if (has_sha1_file(obj
->sha1
))
75 printf("missing %s %s\n",
76 typename(obj
->type
), sha1_to_hex(obj
->sha1
));
80 refs
= lookup_object_refs(obj
);
83 for (j
= 0; j
< refs
->count
; j
++) {
84 struct object
*ref
= refs
->ref
[j
];
86 (has_sha1_file(ref
->sha1
)))
88 printf("broken link from %7s %s\n",
89 typename(obj
->type
), sha1_to_hex(obj
->sha1
));
90 printf(" to %7s %s\n",
91 typename(ref
->type
), sha1_to_hex(ref
->sha1
));
95 if (show_unreachable
&& !(obj
->flags
& REACHABLE
)) {
96 printf("unreachable %s %s\n",
97 typename(obj
->type
), sha1_to_hex(obj
->sha1
));
102 printf("dangling %s %s\n", typename(obj
->type
),
103 sha1_to_hex(obj
->sha1
));
109 * The entries in a tree are ordered in the _path_ order,
110 * which means that a directory entry is ordered by adding
111 * a slash to the end of it.
113 * So a directory called "a" is ordered _after_ a file
114 * called "a.c", because "a/" sorts after "a.c".
116 #define TREE_UNORDERED (-1)
117 #define TREE_HAS_DUPS (-2)
119 static int verify_ordered(unsigned mode1
, const char *name1
, unsigned mode2
, const char *name2
)
121 int len1
= strlen(name1
);
122 int len2
= strlen(name2
);
123 int len
= len1
< len2
? len1
: len2
;
124 unsigned char c1
, c2
;
127 cmp
= memcmp(name1
, name2
, len
);
131 return TREE_UNORDERED
;
134 * Ok, the first <len> characters are the same.
135 * Now we need to order the next one, but turn
136 * a '\0' into a '/' for a directory entry.
142 * git-write-tree used to write out a nonsense tree that has
143 * entries with the same name, one blob and one tree. Make
144 * sure we do not have duplicate entries.
146 return TREE_HAS_DUPS
;
147 if (!c1
&& S_ISDIR(mode1
))
149 if (!c2
&& S_ISDIR(mode2
))
151 return c1
< c2
? 0 : TREE_UNORDERED
;
154 static int fsck_tree(struct tree
*item
)
157 int has_full_path
= 0;
158 int has_zero_pad
= 0;
159 int has_bad_modes
= 0;
160 int has_dup_entries
= 0;
161 int not_properly_sorted
= 0;
162 struct tree_desc desc
;
165 const unsigned char *o_sha1
;
167 desc
.buf
= item
->buffer
;
168 desc
.size
= item
->size
;
176 const unsigned char *sha1
;
178 sha1
= tree_entry_extract(&desc
, &name
, &mode
);
180 if (strchr(name
, '/'))
182 has_zero_pad
|= *(char *)desc
.buf
== '0';
183 update_tree_entry(&desc
);
195 * This is nonstandard, but we had a few of these
196 * early on when we honored the full set of mode
207 switch (verify_ordered(o_mode
, o_name
, mode
, name
)) {
209 not_properly_sorted
= 1;
228 objwarning(&item
->object
, "contains full pathnames");
231 objwarning(&item
->object
, "contains zero-padded file modes");
234 objwarning(&item
->object
, "contains bad file modes");
236 if (has_dup_entries
) {
237 retval
= objerror(&item
->object
, "contains duplicate file entries");
239 if (not_properly_sorted
) {
240 retval
= objerror(&item
->object
, "not properly sorted");
245 static int fsck_commit(struct commit
*commit
)
247 char *buffer
= commit
->buffer
;
248 unsigned char tree_sha1
[20], sha1
[20];
250 if (memcmp(buffer
, "tree ", 5))
251 return objerror(&commit
->object
, "invalid format - expected 'tree' line");
252 if (get_sha1_hex(buffer
+5, tree_sha1
) || buffer
[45] != '\n')
253 return objerror(&commit
->object
, "invalid 'tree' line format - bad sha1");
255 while (!memcmp(buffer
, "parent ", 7)) {
256 if (get_sha1_hex(buffer
+7, sha1
) || buffer
[47] != '\n')
257 return objerror(&commit
->object
, "invalid 'parent' line format - bad sha1");
260 if (memcmp(buffer
, "author ", 7))
261 return objerror(&commit
->object
, "invalid format - expected 'author' line");
262 free(commit
->buffer
);
263 commit
->buffer
= NULL
;
265 return objerror(&commit
->object
, "could not load commit's tree %s", tree_sha1
);
266 if (!commit
->parents
&& show_root
)
267 printf("root %s\n", sha1_to_hex(commit
->object
.sha1
));
269 printf("bad commit date in %s\n",
270 sha1_to_hex(commit
->object
.sha1
));
274 static int fsck_tag(struct tag
*tag
)
276 struct object
*tagged
= tag
->tagged
;
279 return objerror(&tag
->object
, "could not load tagged object");
284 printf("tagged %s %s", typename(tagged
->type
), sha1_to_hex(tagged
->sha1
));
285 printf(" (%s) in %s\n", tag
->tag
, sha1_to_hex(tag
->object
.sha1
));
289 static int fsck_sha1(unsigned char *sha1
)
291 struct object
*obj
= parse_object(sha1
);
293 return error("%s: object corrupt or missing", sha1_to_hex(sha1
));
294 if (obj
->flags
& SEEN
)
297 if (obj
->type
== OBJ_BLOB
)
299 if (obj
->type
== OBJ_TREE
)
300 return fsck_tree((struct tree
*) obj
);
301 if (obj
->type
== OBJ_COMMIT
)
302 return fsck_commit((struct commit
*) obj
);
303 if (obj
->type
== OBJ_TAG
)
304 return fsck_tag((struct tag
*) obj
);
305 /* By now, parse_object() would've returned NULL instead. */
306 return objerror(obj
, "unknown type '%d' (internal fsck error)", obj
->type
);
310 * This is the sorting chunk size: make it reasonably
311 * big so that we can sort well..
313 #define MAX_SHA1_ENTRIES (1024)
317 unsigned char sha1
[20];
322 struct sha1_entry
*entry
[MAX_SHA1_ENTRIES
];
325 static int ino_compare(const void *_a
, const void *_b
)
327 const struct sha1_entry
*a
= _a
, *b
= _b
;
328 unsigned long ino1
= a
->ino
, ino2
= b
->ino
;
329 return ino1
< ino2
? -1 : ino1
> ino2
? 1 : 0;
332 static void fsck_sha1_list(void)
334 int i
, nr
= sha1_list
.nr
;
337 qsort(sha1_list
.entry
, nr
,
338 sizeof(struct sha1_entry
*), ino_compare
);
339 for (i
= 0; i
< nr
; i
++) {
340 struct sha1_entry
*entry
= sha1_list
.entry
[i
];
341 unsigned char *sha1
= entry
->sha1
;
343 sha1_list
.entry
[i
] = NULL
;
350 static void add_sha1_list(unsigned char *sha1
, unsigned long ino
)
352 struct sha1_entry
*entry
= xmalloc(sizeof(*entry
));
356 hashcpy(entry
->sha1
, sha1
);
358 if (nr
== MAX_SHA1_ENTRIES
) {
362 sha1_list
.entry
[nr
] = entry
;
366 static void fsck_dir(int i
, char *path
)
368 DIR *dir
= opendir(path
);
374 while ((de
= readdir(dir
)) != NULL
) {
376 unsigned char sha1
[20];
377 int len
= strlen(de
->d_name
);
381 if (de
->d_name
[1] != '.')
384 if (de
->d_name
[0] != '.')
388 sprintf(name
, "%02x", i
);
389 memcpy(name
+2, de
->d_name
, len
+1);
390 if (get_sha1_hex(name
, sha1
) < 0)
392 add_sha1_list(sha1
, DIRENT_SORT_HINT(de
));
395 fprintf(stderr
, "bad sha1 file: %s/%s\n", path
, de
->d_name
);
400 static int default_refs
;
402 static int fsck_handle_reflog_ent(unsigned char *osha1
, unsigned char *nsha1
,
403 const char *email
, unsigned long timestamp
, int tz
,
404 const char *message
, void *cb_data
)
408 if (!is_null_sha1(osha1
)) {
409 obj
= lookup_object(osha1
);
412 mark_reachable(obj
, REACHABLE
);
415 obj
= lookup_object(nsha1
);
418 mark_reachable(obj
, REACHABLE
);
423 static int fsck_handle_ref(const char *refname
, const unsigned char *sha1
, int flag
, void *cb_data
)
427 obj
= lookup_object(sha1
);
429 if (has_sha1_file(sha1
)) {
431 return 0; /* it is in a pack */
433 error("%s: invalid sha1 pointer %s", refname
, sha1_to_hex(sha1
));
434 /* We'll continue with the rest despite the error.. */
439 mark_reachable(obj
, REACHABLE
);
441 for_each_reflog_ent(refname
, fsck_handle_reflog_ent
, NULL
);
446 static void get_default_heads(void)
448 for_each_ref(fsck_handle_ref
, NULL
);
451 * Not having any default heads isn't really fatal, but
452 * it does mean that "--unreachable" no longer makes any
453 * sense (since in this case everything will obviously
454 * be unreachable by definition.
456 * Showing dangling objects is valid, though (as those
457 * dangling objects are likely lost heads).
459 * So we just print a warning about it, and clear the
460 * "show_unreachable" flag.
463 error("No default references");
464 show_unreachable
= 0;
468 static void fsck_object_dir(const char *path
)
471 for (i
= 0; i
< 256; i
++) {
472 static char dir
[4096];
473 sprintf(dir
, "%s/%02x", path
, i
);
479 static int fsck_head_link(void)
481 unsigned char sha1
[20];
483 const char *head_points_at
= resolve_ref("HEAD", sha1
, 1, &flag
);
485 if (!head_points_at
|| !(flag
& REF_ISSYMREF
))
486 return error("HEAD is not a symbolic ref");
487 if (strncmp(head_points_at
, "refs/heads/", 11))
488 return error("HEAD points to something strange (%s)",
490 if (is_null_sha1(sha1
))
491 return error("HEAD: not a valid git pointer");
495 static int fsck_cache_tree(struct cache_tree
*it
)
500 if (0 <= it
->entry_count
) {
501 struct object
*obj
= parse_object(it
->sha1
);
503 error("%s: invalid sha1 pointer in cache-tree",
504 sha1_to_hex(it
->sha1
));
507 mark_reachable(obj
, REACHABLE
);
509 if (obj
->type
!= OBJ_TREE
)
510 err
|= objerror(obj
, "non-tree in cache-tree");
512 for (i
= 0; i
< it
->subtree_nr
; i
++)
513 err
|= fsck_cache_tree(it
->down
[i
]->cache_tree
);
517 int main(int argc
, char **argv
)
521 track_object_refs
= 1;
522 setup_git_directory();
524 for (i
= 1; i
< argc
; i
++) {
525 const char *arg
= argv
[i
];
527 if (!strcmp(arg
, "--unreachable")) {
528 show_unreachable
= 1;
531 if (!strcmp(arg
, "--tags")) {
535 if (!strcmp(arg
, "--root")) {
539 if (!strcmp(arg
, "--cache")) {
540 keep_cache_objects
= 1;
543 if (!strcmp(arg
, "--full")) {
547 if (!strcmp(arg
, "--strict")) {
552 usage("git-fsck-objects [--tags] [--root] [[--unreachable] [--cache] [--full] [--strict] <head-sha1>*]");
556 fsck_object_dir(get_object_directory());
558 struct alternate_object_database
*alt
;
559 struct packed_git
*p
;
561 for (alt
= alt_odb_list
; alt
; alt
= alt
->next
) {
562 char namebuf
[PATH_MAX
];
563 int namelen
= alt
->name
- alt
->base
;
564 memcpy(namebuf
, alt
->base
, namelen
);
565 namebuf
[namelen
- 1] = 0;
566 fsck_object_dir(namebuf
);
568 prepare_packed_git();
569 for (p
= packed_git
; p
; p
= p
->next
)
570 /* verify gives error messages itself */
573 for (p
= packed_git
; p
; p
= p
->next
) {
574 int num
= num_packed_objects(p
);
575 for (i
= 0; i
< num
; i
++) {
576 unsigned char sha1
[20];
577 nth_packed_object_sha1(p
, i
, sha1
);
584 for (i
= 1; i
< argc
; i
++) {
585 const char *arg
= argv
[i
];
590 if (!get_sha1(arg
, head_sha1
)) {
591 struct object
*obj
= lookup_object(head_sha1
);
593 /* Error is printed by lookup_object(). */
598 mark_reachable(obj
, REACHABLE
);
602 error("invalid parameter: expected sha1, got '%s'", arg
);
606 * If we've not been given any explicit head information, do the
607 * default ones from .git/refs. We also consider the index file
608 * in this case (ie this implies --cache).
612 keep_cache_objects
= 1;
615 if (keep_cache_objects
) {
618 for (i
= 0; i
< active_nr
; i
++) {
619 struct blob
*blob
= lookup_blob(active_cache
[i
]->sha1
);
625 mark_reachable(obj
, REACHABLE
);
627 if (active_cache_tree
)
628 fsck_cache_tree(active_cache_tree
);
631 check_connectivity();