10 #define REACHABLE 0x0001
12 static int show_root
= 0;
13 static int show_tags
= 0;
14 static int show_unreachable
= 0;
15 static unsigned char head_sha1
[20];
17 static void check_connectivity(void)
21 /* Look up all the requirements, warn about missing objects.. */
22 for (i
= 0; i
< nr_objs
; i
++) {
23 struct object
*obj
= objs
[i
];
24 struct object_list
*refs
;
27 printf("missing %s %s\n", obj
->type
, sha1_to_hex(obj
->sha1
));
31 for (refs
= obj
->refs
; refs
; refs
= refs
->next
) {
32 if (refs
->item
->parsed
)
34 printf("broken link from %7s %s\n",
35 obj
->type
, sha1_to_hex(obj
->sha1
));
36 printf(" to %7s %s\n",
37 obj
->type
, sha1_to_hex(refs
->item
->sha1
));
40 /* Don't bother with tag reachability. */
41 if (obj
->type
== tag_type
)
44 if (show_unreachable
&& !(obj
->flags
& REACHABLE
)) {
45 printf("unreachable %s %s\n", obj
->type
, sha1_to_hex(obj
->sha1
));
50 printf("dangling %s %s\n", obj
->type
,
51 sha1_to_hex(obj
->sha1
));
56 static int fsck_tree(struct tree
*item
)
58 if (item
->has_full_path
) {
59 fprintf(stderr
, "warning: fsck-cache: tree %s "
60 "has full pathnames in it\n",
61 sha1_to_hex(item
->object
.sha1
));
66 static int fsck_commit(struct commit
*commit
)
70 if (!commit
->parents
&& show_root
)
71 printf("root %s\n", sha1_to_hex(commit
->object
.sha1
));
73 printf("bad commit date in %s\n",
74 sha1_to_hex(commit
->object
.sha1
));
78 static int fsck_tag(struct tag
*tag
)
83 printf("tagged %s %s",
85 sha1_to_hex(tag
->tagged
->sha1
));
86 printf(" (%s) in %s\n",
87 tag
->tag
, sha1_to_hex(tag
->object
.sha1
));
91 static int fsck_name(char *hex
)
93 unsigned char sha1
[20];
94 if (!get_sha1_hex(hex
, sha1
)) {
95 struct object
*obj
= parse_object(sha1
);
98 if (obj
->type
== blob_type
)
100 if (obj
->type
== tree_type
)
101 return fsck_tree((struct tree
*) obj
);
102 if (obj
->type
== commit_type
)
103 return fsck_commit((struct commit
*) obj
);
104 if (obj
->type
== tag_type
)
105 return fsck_tag((struct tag
*) obj
);
110 static int fsck_dir(int i
, char *path
)
112 DIR *dir
= opendir(path
);
116 return error("missing sha1 directory '%s'", path
);
119 while ((de
= readdir(dir
)) != NULL
) {
121 int len
= strlen(de
->d_name
);
125 if (de
->d_name
[1] != '.')
128 if (de
->d_name
[0] != '.')
132 sprintf(name
, "%02x", i
);
133 memcpy(name
+2, de
->d_name
, len
+1);
134 if (!fsck_name(name
))
137 fprintf(stderr
, "bad sha1 file: %s/%s\n", path
, de
->d_name
);
143 int main(int argc
, char **argv
)
148 for (i
= 1; i
< argc
; i
++) {
149 const char *arg
= argv
[i
];
151 if (!strcmp(arg
, "--unreachable")) {
152 show_unreachable
= 1;
155 if (!strcmp(arg
, "--tags")) {
159 if (!strcmp(arg
, "--root")) {
164 usage("fsck-cache [--tags] [[--unreachable] <head-sha1>*]");
167 sha1_dir
= getenv(DB_ENVIRONMENT
) ? : DEFAULT_DB_ENVIRONMENT
;
168 for (i
= 0; i
< 256; i
++) {
169 static char dir
[4096];
170 sprintf(dir
, "%s/%02x", sha1_dir
, i
);
175 for (i
= 1; i
< argc
; i
++) {
176 const char *arg
= argv
[i
];
181 if (!get_sha1_hex(arg
, head_sha1
)) {
182 struct commit
*commit
= lookup_commit(head_sha1
);
185 /* Error is printed by lookup_commit(). */
189 obj
= &commit
->object
;
191 mark_reachable(obj
, REACHABLE
);
195 error("expected sha1, got %s", arg
);
199 if (show_unreachable
) {
200 fprintf(stderr
, "unable to do reachability without a head\n");
201 show_unreachable
= 0;
203 fprintf(stderr
, "expect dangling commits - potential heads - due to lack of head information\n");
206 check_connectivity();