7 * These two functions should build up a graph in memory about
8 * what objects we've referenced, and found, and types..
10 * Right now we don't do that kind of reachability checking. Yet.
12 static void mark_needs_sha1(unsigned char *parent
, const char * type
, unsigned char *child
)
16 static int mark_sha1_seen(unsigned char *sha1
, char *tag
)
21 static int fsck_tree(unsigned char *sha1
, void *data
, unsigned long size
)
24 int len
= 1+strlen(data
);
25 unsigned char *file_sha1
= data
+ len
;
26 char *path
= strchr(data
, ' ');
27 if (size
< len
+ 20 || !path
)
31 mark_needs_sha1(sha1
, "blob", file_sha1
);
35 static int fsck_commit(unsigned char *sha1
, void *data
, unsigned long size
)
37 unsigned char tree_sha1
[20];
38 unsigned char parent_sha1
[20];
40 if (memcmp(data
, "tree ", 5))
42 if (get_sha1_hex(data
+ 5, tree_sha1
) < 0)
44 mark_needs_sha1(sha1
, "tree", tree_sha1
);
45 data
+= 5 + 40 + 1; /* "tree " + <hex sha1> + '\n' */
46 while (!memcmp(data
, "parent ", 7)) {
47 if (get_sha1_hex(data
+ 7, parent_sha1
) < 0)
49 mark_needs_sha1(sha1
, "commit", parent_sha1
);
50 data
+= 7 + 40 + 1; /* "parent " + <hex sha1> + '\n' */
54 static int fsck_entry(unsigned char *sha1
, char *tag
, void *data
, unsigned long size
)
56 if (!strcmp(tag
, "blob")) {
57 /* Nothing to check */;
58 } else if (!strcmp(tag
, "tree")) {
59 if (fsck_tree(sha1
, data
, size
) < 0)
61 } else if (!strcmp(tag
, "commit")) {
62 if (fsck_commit(sha1
, data
, size
) < 0)
66 return mark_sha1_seen(sha1
, tag
);
69 static int fsck_name(char *hex
)
71 unsigned char sha1
[20];
72 if (!get_sha1_hex(hex
, sha1
)) {
73 unsigned long mapsize
;
74 void *map
= map_sha1_file(sha1
, &mapsize
);
79 if (!check_sha1_signature(sha1
, map
, mapsize
))
80 buffer
= unpack_sha1_file(map
, mapsize
, type
, &size
);
82 if (buffer
&& !fsck_entry(sha1
, type
, buffer
, size
))
89 static int fsck_dir(int i
, char *path
)
91 DIR *dir
= opendir(path
);
95 fprintf(stderr
, "missing sha1 directory '%s'", path
);
99 while ((de
= readdir(dir
)) != NULL
) {
101 int len
= strlen(de
->d_name
);
105 if (de
->d_name
[1] != '.')
108 if (de
->d_name
[0] != '.')
112 sprintf(name
, "%02x", i
);
113 memcpy(name
+2, de
->d_name
, len
+1);
114 if (!fsck_name(name
))
117 fprintf(stderr
, "bad sha1 file: %s/%s\n", path
, de
->d_name
);
123 int main(int argc
, char **argv
)
130 sha1_dir
= getenv(DB_ENVIRONMENT
) ? : DEFAULT_DB_ENVIRONMENT
;
131 for (i
= 0; i
< 256; i
++) {
132 static char dir
[4096];
133 sprintf(dir
, "%s/%02x", sha1_dir
, i
);