]> git.ipfire.org Git - thirdparty/git.git/blame - fsck-cache.c
Update "convert-cache" to handle git itself.
[thirdparty/git.git] / fsck-cache.c
CommitLineData
20222118
LT
1#include "cache.h"
2
3#include <sys/types.h>
4#include <dirent.h>
5
ff5ebe39
DB
6#include "commit.h"
7#include "tree.h"
8#include "blob.h"
9
10#define REACHABLE 0x0001
d9839e03
LT
11
12static int show_unreachable = 0;
d9839e03
LT
13static unsigned char head_sha1[20];
14
8ba0bbb2
LT
15static void check_connectivity(void)
16{
17 int i;
18
8ba0bbb2 19 /* Look up all the requirements, warn about missing objects.. */
ff5ebe39
DB
20 for (i = 0; i < nr_objs; i++) {
21 struct object *obj = objs[i];
8ba0bbb2 22
ff5ebe39 23 if (show_unreachable && !(obj->flags & REACHABLE)) {
f43b8abc 24 printf("unreachable %s %s\n", obj->type, sha1_to_hex(obj->sha1));
8ba0bbb2 25 continue;
d9839e03 26 }
8ba0bbb2 27
ff5ebe39
DB
28 if (!obj->parsed) {
29 printf("missing %s %s\n", obj->type,
30 sha1_to_hex(obj->sha1));
31 }
32 if (!obj->used) {
33 printf("dangling %s %s\n", obj->type,
34 sha1_to_hex(obj->sha1));
d9839e03 35 }
8ba0bbb2
LT
36 }
37}
38
1ea34e36 39static int fsck_tree(unsigned char *sha1, void *data, unsigned long size)
20222118 40{
ff5ebe39
DB
41 struct tree *item = lookup_tree(sha1);
42 if (parse_tree(item))
43 return -1;
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));
1ea34e36 47 }
59c1e249 48 return 0;
1ea34e36
LT
49}
50
51static int fsck_commit(unsigned char *sha1, void *data, unsigned long size)
52{
ff5ebe39
DB
53 struct commit *commit = lookup_commit(sha1);
54 if (parse_commit(commit))
1ea34e36 55 return -1;
ff5ebe39 56 if (!commit->tree)
1ea34e36 57 return -1;
ff5ebe39 58 if (!commit->parents)
d9839e03 59 printf("root %s\n", sha1_to_hex(sha1));
59c1e249 60 return 0;
20222118
LT
61}
62
4728b861
LT
63static int fsck_blob(unsigned char *sha1, void *data, unsigned long size)
64{
65 struct blob *blob = lookup_blob(sha1);
66 blob->object.parsed = 1;
67 return 0;
68}
69
ff5ebe39
DB
70static int fsck_entry(unsigned char *sha1, char *tag, void *data,
71 unsigned long size)
20222118 72{
1ea34e36 73 if (!strcmp(tag, "blob")) {
4728b861
LT
74 if (fsck_blob(sha1, data, size) < 0)
75 return -1;
1ea34e36
LT
76 } else if (!strcmp(tag, "tree")) {
77 if (fsck_tree(sha1, data, size) < 0)
78 return -1;
79 } else if (!strcmp(tag, "commit")) {
80 if (fsck_commit(sha1, data, size) < 0)
81 return -1;
82 } else
20222118 83 return -1;
ff5ebe39 84 return 0;
20222118
LT
85}
86
87static int fsck_name(char *hex)
88{
89 unsigned char sha1[20];
90 if (!get_sha1_hex(hex, sha1)) {
91 unsigned long mapsize;
92 void *map = map_sha1_file(sha1, &mapsize);
93 if (map) {
94 char type[100];
95 unsigned long size;
d98b46f8
LT
96 void *buffer = unpack_sha1_file(map, mapsize, type, &size);
97 if (!buffer)
98 return -1;
99 if (check_sha1_signature(sha1, buffer, size, type) < 0)
100 printf("sha1 mismatch %s\n", sha1_to_hex(sha1));
20222118 101 munmap(map, mapsize);
d98b46f8 102 if (!fsck_entry(sha1, type, buffer, size))
20222118
LT
103 return 0;
104 }
105 }
106 return -1;
107}
108
109static int fsck_dir(int i, char *path)
110{
111 DIR *dir = opendir(path);
112 struct dirent *de;
113
114 if (!dir) {
2de381f9 115 return error("missing sha1 directory '%s'", path);
20222118
LT
116 }
117
118 while ((de = readdir(dir)) != NULL) {
119 char name[100];
120 int len = strlen(de->d_name);
121
122 switch (len) {
123 case 2:
124 if (de->d_name[1] != '.')
125 break;
126 case 1:
127 if (de->d_name[0] != '.')
128 break;
129 continue;
130 case 38:
131 sprintf(name, "%02x", i);
132 memcpy(name+2, de->d_name, len+1);
133 if (!fsck_name(name))
134 continue;
135 }
136 fprintf(stderr, "bad sha1 file: %s/%s\n", path, de->d_name);
137 }
138 closedir(dir);
139 return 0;
140}
141
142int main(int argc, char **argv)
143{
bcee6fd8 144 int i, heads;
20222118
LT
145 char *sha1_dir;
146
bcee6fd8
LT
147 sha1_dir = getenv(DB_ENVIRONMENT) ? : DEFAULT_DB_ENVIRONMENT;
148 for (i = 0; i < 256; i++) {
149 static char dir[4096];
150 sprintf(dir, "%s/%02x", sha1_dir, i);
151 fsck_dir(i, dir);
152 }
153
154 heads = 0;
d9839e03
LT
155 for (i = 1; i < argc; i++) {
156 if (!strcmp(argv[i], "--unreachable")) {
157 show_unreachable = 1;
158 continue;
159 }
160 if (!get_sha1_hex(argv[i], head_sha1)) {
b51ad431 161 struct object *obj = &lookup_commit(head_sha1)->object;
ff5ebe39
DB
162 obj->used = 1;
163 mark_reachable(obj, REACHABLE);
bcee6fd8 164 heads++;
d9839e03
LT
165 continue;
166 }
bcee6fd8 167 error("fsck-cache [[--unreachable] <head-sha1>*]");
d9839e03 168 }
d9839e03 169
bcee6fd8
LT
170 if (!heads) {
171 if (show_unreachable) {
172 fprintf(stderr, "unable to do reachability without a head\n");
173 show_unreachable = 0;
174 }
175 fprintf(stderr, "expect dangling commits - potential heads - due to lack of head information\n");
20222118 176 }
bcee6fd8 177
8ba0bbb2 178 check_connectivity();
20222118
LT
179 return 0;
180}