10 #define REACHABLE 0x0001
12 static int show_unreachable
= 0;
13 static unsigned char head_sha1
[20];
15 static void check_connectivity(void)
19 /* Look up all the requirements, warn about missing objects.. */
20 for (i
= 0; i
< nr_objs
; i
++) {
21 struct object
*obj
= objs
[i
];
23 if (show_unreachable
&& !(obj
->flags
& REACHABLE
)) {
24 printf("unreachable %s %s\n", obj
->type
, sha1_to_hex(obj
->sha1
));
29 printf("missing %s %s\n", obj
->type
,
30 sha1_to_hex(obj
->sha1
));
33 printf("dangling %s %s\n", obj
->type
,
34 sha1_to_hex(obj
->sha1
));
39 static int fsck_tree(unsigned char *sha1
, void *data
, unsigned long size
)
41 struct tree
*item
= lookup_tree(sha1
);
44 if (item
->has_full_path
) {
45 fprintf(stderr
, "warning: fsck-cache: tree %s "
46 "has full pathnames in it\n", sha1_to_hex(sha1
));
51 static int fsck_commit(unsigned char *sha1
, void *data
, unsigned long size
)
53 struct commit
*commit
= lookup_commit(sha1
);
54 if (parse_commit(commit
))
59 printf("root %s\n", sha1_to_hex(sha1
));
61 printf("bad commit date in %s\n", sha1_to_hex(sha1
));
65 static int fsck_blob(unsigned char *sha1
, void *data
, unsigned long size
)
67 struct blob
*blob
= lookup_blob(sha1
);
68 blob
->object
.parsed
= 1;
72 static int fsck_tag(unsigned char *sha1
, void *data
, unsigned long size
)
75 unsigned char object
[20];
77 const char *type_line
, *tag_line
, *sig_line
;
81 if (memcmp("object ", data
, 7) || get_sha1_hex(data
+ 7, object
))
84 type_line
= data
+ 48;
85 if (memcmp("\ntype ", type_line
-1, 6))
88 tag_line
= strchr(type_line
, '\n');
89 if (!tag_line
|| memcmp("tag ", ++tag_line
, 4))
92 sig_line
= strchr(tag_line
, '\n');
97 typelen
= tag_line
- type_line
- strlen("type \n");
100 taglen
= sig_line
- tag_line
- strlen("tag \n");
102 strcpy(object_hex
, sha1_to_hex(object
));
103 printf("tagged %.*s %s (%.*s) in %s\n",
104 typelen
, type_line
+ 5,
106 taglen
, tag_line
+ 4,
111 static int fsck_entry(unsigned char *sha1
, char *tag
, void *data
,
114 if (!strcmp(tag
, "blob")) {
115 if (fsck_blob(sha1
, data
, size
) < 0)
117 } else if (!strcmp(tag
, "tree")) {
118 if (fsck_tree(sha1
, data
, size
) < 0)
120 } else if (!strcmp(tag
, "commit")) {
121 if (fsck_commit(sha1
, data
, size
) < 0)
123 } else if (!strcmp(tag
, "tag")) {
124 if (fsck_tag(sha1
, data
, size
) < 0)
131 static int fsck_name(char *hex
)
133 unsigned char sha1
[20];
134 if (!get_sha1_hex(hex
, sha1
)) {
135 unsigned long mapsize
;
136 void *map
= map_sha1_file(sha1
, &mapsize
);
140 void *buffer
= unpack_sha1_file(map
, mapsize
, type
, &size
);
143 if (check_sha1_signature(sha1
, buffer
, size
, type
) < 0)
144 printf("sha1 mismatch %s\n", sha1_to_hex(sha1
));
145 munmap(map
, mapsize
);
146 if (!fsck_entry(sha1
, type
, buffer
, size
))
153 static int fsck_dir(int i
, char *path
)
155 DIR *dir
= opendir(path
);
159 return error("missing sha1 directory '%s'", path
);
162 while ((de
= readdir(dir
)) != NULL
) {
164 int len
= strlen(de
->d_name
);
168 if (de
->d_name
[1] != '.')
171 if (de
->d_name
[0] != '.')
175 sprintf(name
, "%02x", i
);
176 memcpy(name
+2, de
->d_name
, len
+1);
177 if (!fsck_name(name
))
180 fprintf(stderr
, "bad sha1 file: %s/%s\n", path
, de
->d_name
);
186 int main(int argc
, char **argv
)
191 sha1_dir
= getenv(DB_ENVIRONMENT
) ? : DEFAULT_DB_ENVIRONMENT
;
192 for (i
= 0; i
< 256; i
++) {
193 static char dir
[4096];
194 sprintf(dir
, "%s/%02x", sha1_dir
, i
);
199 for (i
= 1; i
< argc
; i
++) {
200 if (!strcmp(argv
[i
], "--unreachable")) {
201 show_unreachable
= 1;
204 if (!get_sha1_hex(argv
[i
], head_sha1
)) {
205 struct object
*obj
= &lookup_commit(head_sha1
)->object
;
207 mark_reachable(obj
, REACHABLE
);
211 error("fsck-cache [[--unreachable] <head-sha1>*]");
215 if (show_unreachable
) {
216 fprintf(stderr
, "unable to do reachability without a head\n");
217 show_unreachable
= 0;
219 fprintf(stderr
, "expect dangling commits - potential heads - due to lack of head information\n");
222 check_connectivity();