blob: 944a496650b6e13d2684bb221ee8bc7aadd78d6f [file] [log] [blame]
Linus Torvalds4b182422005-04-30 09:59:31 -07001#include "cache.h"
Daniel Barkalowff5ebe32005-04-18 11:39:48 -07002#include "commit.h"
3#include "tree.h"
4#include "blob.h"
Daniel Barkalowc418eda2005-04-28 07:46:33 -07005#include "tag.h"
Linus Torvalds944d8582005-07-03 10:01:38 -07006#include "refs.h"
Junio C Hamanof9253392005-06-29 02:51:27 -07007#include "pack.h"
Junio C Hamano53dc3f32006-04-25 16:37:08 -07008#include "cache-tree.h"
Linus Torvaldse9a95be2006-05-29 12:19:02 -07009#include "tree-walk.h"
Daniel Barkalowff5ebe32005-04-18 11:39:48 -070010
11#define REACHABLE 0x0001
Linus Torvalds2d9c58c2006-05-29 12:18:33 -070012#define SEEN 0x0002
Linus Torvaldsd9839e02005-04-13 09:57:30 -070013
David Rientjes96f1e582006-08-15 10:23:48 -070014static int show_root;
15static int show_tags;
16static int show_unreachable;
Shawn O. Pearce566842f2007-04-04 10:46:14 -040017static int include_reflogs = 1;
David Rientjes96f1e582006-08-15 10:23:48 -070018static int check_full;
19static int check_strict;
20static int keep_cache_objects;
Linus Torvaldsd9839e02005-04-13 09:57:30 -070021static unsigned char head_sha1[20];
Junio C Hamanoe2b4f632007-03-05 00:22:06 -080022static int errors_found;
Johannes Schindelin20f1eb62007-06-05 03:44:00 +010023static int verbose;
Junio C Hamanoe2b4f632007-03-05 00:22:06 -080024#define ERROR_OBJECT 01
25#define ERROR_REACHABLE 02
Linus Torvaldsd9839e02005-04-13 09:57:30 -070026
Timo Hirvonen962554c2006-02-26 17:13:46 +020027#ifdef NO_D_INO_IN_DIRENT
Junio C Hamano35a730f2006-01-19 17:13:51 -080028#define SORT_DIRENT 0
29#define DIRENT_SORT_HINT(de) 0
30#else
31#define SORT_DIRENT 1
32#define DIRENT_SORT_HINT(de) ((de)->d_ino)
33#endif
Petr Baudisf1f0d082005-09-20 20:56:05 +020034
35static void objreport(struct object *obj, const char *severity,
36 const char *err, va_list params)
37{
38 fprintf(stderr, "%s in %s %s: ",
Linus Torvalds885a86a2006-06-14 16:45:13 -070039 severity, typename(obj->type), sha1_to_hex(obj->sha1));
Petr Baudisf1f0d082005-09-20 20:56:05 +020040 vfprintf(stderr, err, params);
41 fputs("\n", stderr);
42}
43
Peter Hagervalla7928f82005-09-28 14:04:54 +020044static int objerror(struct object *obj, const char *err, ...)
Petr Baudisf1f0d082005-09-20 20:56:05 +020045{
46 va_list params;
47 va_start(params, err);
Junio C Hamanoe2b4f632007-03-05 00:22:06 -080048 errors_found |= ERROR_OBJECT;
Petr Baudisf1f0d082005-09-20 20:56:05 +020049 objreport(obj, "error", err, params);
50 va_end(params);
51 return -1;
52}
53
Peter Hagervalla7928f82005-09-28 14:04:54 +020054static int objwarning(struct object *obj, const char *err, ...)
Petr Baudisf1f0d082005-09-20 20:56:05 +020055{
56 va_list params;
57 va_start(params, err);
58 objreport(obj, "warning", err, params);
59 va_end(params);
60 return -1;
61}
62
Linus Torvalds18af29f2007-01-21 22:26:41 -080063/*
64 * Check a single reachable object
65 */
66static void check_reachable_object(struct object *obj)
67{
68 const struct object_refs *refs;
69
70 /*
71 * We obviously want the object to be parsed,
72 * except if it was in a pack-file and we didn't
73 * do a full fsck
74 */
75 if (!obj->parsed) {
Junio C Hamanoefec43c2007-03-05 00:21:24 -080076 if (has_sha1_pack(obj->sha1, NULL))
Linus Torvalds18af29f2007-01-21 22:26:41 -080077 return; /* it is in pack - forget about it */
78 printf("missing %s %s\n", typename(obj->type), sha1_to_hex(obj->sha1));
Junio C Hamanoe2b4f632007-03-05 00:22:06 -080079 errors_found |= ERROR_REACHABLE;
Linus Torvalds18af29f2007-01-21 22:26:41 -080080 return;
81 }
82
83 /*
84 * Check that everything that we try to reference is also good.
85 */
86 refs = lookup_object_refs(obj);
87 if (refs) {
88 unsigned j;
89 for (j = 0; j < refs->count; j++) {
90 struct object *ref = refs->ref[j];
91 if (ref->parsed ||
92 (has_sha1_file(ref->sha1)))
93 continue;
94 printf("broken link from %7s %s\n",
95 typename(obj->type), sha1_to_hex(obj->sha1));
96 printf(" to %7s %s\n",
97 typename(ref->type), sha1_to_hex(ref->sha1));
Junio C Hamanoe2b4f632007-03-05 00:22:06 -080098 errors_found |= ERROR_REACHABLE;
Linus Torvalds18af29f2007-01-21 22:26:41 -080099 }
100 }
101}
102
103/*
104 * Check a single unreachable object
105 */
106static void check_unreachable_object(struct object *obj)
107{
108 /*
109 * Missing unreachable object? Ignore it. It's not like
110 * we miss it (since it can't be reached), nor do we want
111 * to complain about it being unreachable (since it does
112 * not exist).
113 */
114 if (!obj->parsed)
115 return;
116
117 /*
118 * Unreachable object that exists? Show it if asked to,
119 * since this is something that is prunable.
120 */
121 if (show_unreachable) {
122 printf("unreachable %s %s\n", typename(obj->type), sha1_to_hex(obj->sha1));
123 return;
124 }
125
126 /*
127 * "!used" means that nothing at all points to it, including
Pavel Roskin3dff5372007-02-03 23:49:16 -0500128 * other unreachable objects. In other words, it's the "tip"
Linus Torvalds18af29f2007-01-21 22:26:41 -0800129 * of some set of unreachable objects, usually a commit that
130 * got dropped.
131 *
132 * Such starting points are more interesting than some random
133 * set of unreachable objects, so we show them even if the user
134 * hasn't asked for _all_ unreachable objects. If you have
135 * deleted a branch by mistake, this is a prime candidate to
136 * start looking at, for example.
137 */
138 if (!obj->used) {
139 printf("dangling %s %s\n", typename(obj->type),
140 sha1_to_hex(obj->sha1));
141 return;
142 }
143
144 /*
145 * Otherwise? It's there, it's unreachable, and some other unreachable
146 * object points to it. Ignore it - it's not interesting, and we showed
147 * all the interesting cases above.
148 */
149}
150
151static void check_object(struct object *obj)
152{
Johannes Schindelin20f1eb62007-06-05 03:44:00 +0100153 if (verbose)
154 fprintf(stderr, "Checking %s\n", sha1_to_hex(obj->sha1));
155
Linus Torvalds18af29f2007-01-21 22:26:41 -0800156 if (obj->flags & REACHABLE)
157 check_reachable_object(obj);
158 else
159 check_unreachable_object(obj);
160}
Petr Baudisf1f0d082005-09-20 20:56:05 +0200161
Linus Torvalds8ba0bbb2005-04-10 23:13:09 -0700162static void check_connectivity(void)
163{
Linus Torvaldsfc046a72006-06-29 21:38:55 -0700164 int i, max;
Linus Torvalds8ba0bbb2005-04-10 23:13:09 -0700165
Linus Torvalds8ba0bbb2005-04-10 23:13:09 -0700166 /* Look up all the requirements, warn about missing objects.. */
Linus Torvaldsfc046a72006-06-29 21:38:55 -0700167 max = get_max_object_index();
Johannes Schindelin20f1eb62007-06-05 03:44:00 +0100168 if (verbose)
169 fprintf(stderr, "Checking connectivity (%d objects)\n", max);
170
Linus Torvaldsfc046a72006-06-29 21:38:55 -0700171 for (i = 0; i < max; i++) {
Linus Torvaldsfc046a72006-06-29 21:38:55 -0700172 struct object *obj = get_indexed_object(i);
Linus Torvalds8ba0bbb2005-04-10 23:13:09 -0700173
Linus Torvalds18af29f2007-01-21 22:26:41 -0800174 if (obj)
175 check_object(obj);
Linus Torvalds8ba0bbb2005-04-10 23:13:09 -0700176 }
177}
178
Linus Torvalds85003492005-05-02 16:13:18 -0700179/*
180 * The entries in a tree are ordered in the _path_ order,
181 * which means that a directory entry is ordered by adding
182 * a slash to the end of it.
183 *
184 * So a directory called "a" is ordered _after_ a file
185 * called "a.c", because "a/" sorts after "a.c".
186 */
Junio C Hamanoa4f35a22005-05-07 14:43:32 -0700187#define TREE_UNORDERED (-1)
188#define TREE_HAS_DUPS (-2)
189
Linus Torvaldse9a95be2006-05-29 12:19:02 -0700190static int verify_ordered(unsigned mode1, const char *name1, unsigned mode2, const char *name2)
Linus Torvalds85003492005-05-02 16:13:18 -0700191{
Linus Torvaldse9a95be2006-05-29 12:19:02 -0700192 int len1 = strlen(name1);
193 int len2 = strlen(name2);
Linus Torvalds85003492005-05-02 16:13:18 -0700194 int len = len1 < len2 ? len1 : len2;
195 unsigned char c1, c2;
196 int cmp;
197
Linus Torvaldse9a95be2006-05-29 12:19:02 -0700198 cmp = memcmp(name1, name2, len);
Linus Torvalds85003492005-05-02 16:13:18 -0700199 if (cmp < 0)
200 return 0;
201 if (cmp > 0)
Junio C Hamanoa4f35a22005-05-07 14:43:32 -0700202 return TREE_UNORDERED;
Linus Torvalds85003492005-05-02 16:13:18 -0700203
204 /*
205 * Ok, the first <len> characters are the same.
206 * Now we need to order the next one, but turn
207 * a '\0' into a '/' for a directory entry.
208 */
Linus Torvaldse9a95be2006-05-29 12:19:02 -0700209 c1 = name1[len];
210 c2 = name2[len];
Junio C Hamanoa4f35a22005-05-07 14:43:32 -0700211 if (!c1 && !c2)
212 /*
213 * git-write-tree used to write out a nonsense tree that has
214 * entries with the same name, one blob and one tree. Make
215 * sure we do not have duplicate entries.
216 */
217 return TREE_HAS_DUPS;
Linus Torvaldse9a95be2006-05-29 12:19:02 -0700218 if (!c1 && S_ISDIR(mode1))
Linus Torvalds85003492005-05-02 16:13:18 -0700219 c1 = '/';
Linus Torvaldse9a95be2006-05-29 12:19:02 -0700220 if (!c2 && S_ISDIR(mode2))
Linus Torvalds85003492005-05-02 16:13:18 -0700221 c2 = '/';
Junio C Hamanoa4f35a22005-05-07 14:43:32 -0700222 return c1 < c2 ? 0 : TREE_UNORDERED;
Linus Torvalds85003492005-05-02 16:13:18 -0700223}
224
Daniel Barkalowc418eda2005-04-28 07:46:33 -0700225static int fsck_tree(struct tree *item)
Linus Torvalds1ea34e32005-04-08 17:11:14 -0700226{
Linus Torvalds64071802005-07-27 16:08:43 -0700227 int retval;
Linus Torvalds85003492005-05-02 16:13:18 -0700228 int has_full_path = 0;
Shawn O. Pearcecb2cada2007-04-28 20:29:23 -0400229 int has_empty_name = 0;
Linus Torvalds64071802005-07-27 16:08:43 -0700230 int has_zero_pad = 0;
231 int has_bad_modes = 0;
232 int has_dup_entries = 0;
233 int not_properly_sorted = 0;
Linus Torvaldse9a95be2006-05-29 12:19:02 -0700234 struct tree_desc desc;
235 unsigned o_mode;
236 const char *o_name;
237 const unsigned char *o_sha1;
Linus Torvalds85003492005-05-02 16:13:18 -0700238
Johannes Schindelin20f1eb62007-06-05 03:44:00 +0100239 if (verbose)
240 fprintf(stderr, "Checking tree %s\n",
241 sha1_to_hex(item->object.sha1));
242
Linus Torvalds6fda5e52007-03-21 10:08:25 -0700243 init_tree_desc(&desc, item->buffer, item->size);
Linus Torvaldse9a95be2006-05-29 12:19:02 -0700244
245 o_mode = 0;
246 o_name = NULL;
247 o_sha1 = NULL;
248 while (desc.size) {
249 unsigned mode;
250 const char *name;
251 const unsigned char *sha1;
252
253 sha1 = tree_entry_extract(&desc, &name, &mode);
254
255 if (strchr(name, '/'))
Linus Torvalds85003492005-05-02 16:13:18 -0700256 has_full_path = 1;
Shawn O. Pearcecb2cada2007-04-28 20:29:23 -0400257 if (!*name)
258 has_empty_name = 1;
Linus Torvalds6fda5e52007-03-21 10:08:25 -0700259 has_zero_pad |= *(char *)desc.buffer == '0';
Linus Torvaldse9a95be2006-05-29 12:19:02 -0700260 update_tree_entry(&desc);
Linus Torvalds85003492005-05-02 16:13:18 -0700261
Linus Torvaldse9a95be2006-05-29 12:19:02 -0700262 switch (mode) {
Linus Torvalds42ea9cb2005-05-05 16:18:48 -0700263 /*
Linus Torvaldse9a95be2006-05-29 12:19:02 -0700264 * Standard modes..
Linus Torvalds42ea9cb2005-05-05 16:18:48 -0700265 */
266 case S_IFREG | 0755:
267 case S_IFREG | 0644:
268 case S_IFLNK:
269 case S_IFDIR:
Martin Waitz302b9282007-05-21 22:08:28 +0200270 case S_IFGITLINK:
Linus Torvalds42ea9cb2005-05-05 16:18:48 -0700271 break;
272 /*
273 * This is nonstandard, but we had a few of these
274 * early on when we honored the full set of mode
275 * bits..
276 */
277 case S_IFREG | 0664:
Linus Torvaldsde2eb7f2005-07-27 15:16:03 -0700278 if (!check_strict)
279 break;
Linus Torvalds42ea9cb2005-05-05 16:18:48 -0700280 default:
Linus Torvalds64071802005-07-27 16:08:43 -0700281 has_bad_modes = 1;
Linus Torvalds42ea9cb2005-05-05 16:18:48 -0700282 }
283
Linus Torvaldse9a95be2006-05-29 12:19:02 -0700284 if (o_name) {
285 switch (verify_ordered(o_mode, o_name, mode, name)) {
Junio C Hamanoa4f35a22005-05-07 14:43:32 -0700286 case TREE_UNORDERED:
Linus Torvalds64071802005-07-27 16:08:43 -0700287 not_properly_sorted = 1;
288 break;
Junio C Hamanoa4f35a22005-05-07 14:43:32 -0700289 case TREE_HAS_DUPS:
Linus Torvalds64071802005-07-27 16:08:43 -0700290 has_dup_entries = 1;
291 break;
Junio C Hamanoa4f35a22005-05-07 14:43:32 -0700292 default:
293 break;
Linus Torvalds85003492005-05-02 16:13:18 -0700294 }
295 }
296
Linus Torvaldse9a95be2006-05-29 12:19:02 -0700297 o_mode = mode;
298 o_name = name;
299 o_sha1 = sha1;
Linus Torvalds85003492005-05-02 16:13:18 -0700300 }
Linus Torvalds136f2e52006-05-29 12:16:12 -0700301 free(item->buffer);
302 item->buffer = NULL;
Linus Torvalds85003492005-05-02 16:13:18 -0700303
Linus Torvalds64071802005-07-27 16:08:43 -0700304 retval = 0;
Linus Torvalds85003492005-05-02 16:13:18 -0700305 if (has_full_path) {
Petr Baudisf1f0d082005-09-20 20:56:05 +0200306 objwarning(&item->object, "contains full pathnames");
Linus Torvalds1ea34e32005-04-08 17:11:14 -0700307 }
Shawn O. Pearcecb2cada2007-04-28 20:29:23 -0400308 if (has_empty_name) {
309 objwarning(&item->object, "contains empty pathname");
310 }
Linus Torvalds64071802005-07-27 16:08:43 -0700311 if (has_zero_pad) {
Petr Baudisf1f0d082005-09-20 20:56:05 +0200312 objwarning(&item->object, "contains zero-padded file modes");
Linus Torvalds64071802005-07-27 16:08:43 -0700313 }
314 if (has_bad_modes) {
Petr Baudisf1f0d082005-09-20 20:56:05 +0200315 objwarning(&item->object, "contains bad file modes");
Linus Torvalds64071802005-07-27 16:08:43 -0700316 }
317 if (has_dup_entries) {
Petr Baudisf1f0d082005-09-20 20:56:05 +0200318 retval = objerror(&item->object, "contains duplicate file entries");
Linus Torvalds64071802005-07-27 16:08:43 -0700319 }
320 if (not_properly_sorted) {
Petr Baudisf1f0d082005-09-20 20:56:05 +0200321 retval = objerror(&item->object, "not properly sorted");
Linus Torvalds64071802005-07-27 16:08:43 -0700322 }
323 return retval;
Linus Torvalds1ea34e32005-04-08 17:11:14 -0700324}
325
Daniel Barkalowc418eda2005-04-28 07:46:33 -0700326static int fsck_commit(struct commit *commit)
Linus Torvalds1ea34e32005-04-08 17:11:14 -0700327{
Linus Torvaldsde2eb7f2005-07-27 15:16:03 -0700328 char *buffer = commit->buffer;
Petr Baudisf1f0d082005-09-20 20:56:05 +0200329 unsigned char tree_sha1[20], sha1[20];
Linus Torvaldsde2eb7f2005-07-27 15:16:03 -0700330
Johannes Schindelin20f1eb62007-06-05 03:44:00 +0100331 if (verbose)
332 fprintf(stderr, "Checking commit %s\n",
333 sha1_to_hex(commit->object.sha1));
334
Linus Torvaldsde2eb7f2005-07-27 15:16:03 -0700335 if (memcmp(buffer, "tree ", 5))
Petr Baudisf1f0d082005-09-20 20:56:05 +0200336 return objerror(&commit->object, "invalid format - expected 'tree' line");
337 if (get_sha1_hex(buffer+5, tree_sha1) || buffer[45] != '\n')
338 return objerror(&commit->object, "invalid 'tree' line format - bad sha1");
Linus Torvaldsde2eb7f2005-07-27 15:16:03 -0700339 buffer += 46;
340 while (!memcmp(buffer, "parent ", 7)) {
341 if (get_sha1_hex(buffer+7, sha1) || buffer[47] != '\n')
Petr Baudisf1f0d082005-09-20 20:56:05 +0200342 return objerror(&commit->object, "invalid 'parent' line format - bad sha1");
Linus Torvaldsde2eb7f2005-07-27 15:16:03 -0700343 buffer += 48;
344 }
345 if (memcmp(buffer, "author ", 7))
Petr Baudisf1f0d082005-09-20 20:56:05 +0200346 return objerror(&commit->object, "invalid format - expected 'author' line");
Linus Torvaldsbd1e17e2005-05-25 19:26:28 -0700347 free(commit->buffer);
348 commit->buffer = NULL;
Daniel Barkalowff5ebe32005-04-18 11:39:48 -0700349 if (!commit->tree)
Petr Baudisf1f0d082005-09-20 20:56:05 +0200350 return objerror(&commit->object, "could not load commit's tree %s", tree_sha1);
Linus Torvaldsab7df182005-04-25 16:34:13 -0700351 if (!commit->parents && show_root)
Daniel Barkalowc418eda2005-04-28 07:46:33 -0700352 printf("root %s\n", sha1_to_hex(commit->object.sha1));
Linus Torvaldse6948b62005-04-24 16:20:53 -0700353 if (!commit->date)
Junio C Hamanoa6080a02007-06-07 00:04:01 -0700354 printf("bad commit date in %s\n",
Daniel Barkalowc418eda2005-04-28 07:46:33 -0700355 sha1_to_hex(commit->object.sha1));
Linus Torvalds59c1e242005-04-09 00:25:22 -0700356 return 0;
Linus Torvalds1ea34e32005-04-08 17:11:14 -0700357}
358
Daniel Barkalowc418eda2005-04-28 07:46:33 -0700359static int fsck_tag(struct tag *tag)
Linus Torvalds4728b862005-04-24 14:10:55 -0700360{
Linus Torvalds92d4c852005-05-03 07:57:56 -0700361 struct object *tagged = tag->tagged;
362
Johannes Schindelin20f1eb62007-06-05 03:44:00 +0100363 if (verbose)
364 fprintf(stderr, "Checking tag %s\n",
365 sha1_to_hex(tag->object.sha1));
366
Linus Torvalds92d4c852005-05-03 07:57:56 -0700367 if (!tagged) {
Petr Baudisf1f0d082005-09-20 20:56:05 +0200368 return objerror(&tag->object, "could not load tagged object");
Linus Torvalds92d4c852005-05-03 07:57:56 -0700369 }
Linus Torvalds889262e2005-04-25 16:31:13 -0700370 if (!show_tags)
371 return 0;
372
Linus Torvalds885a86a2006-06-14 16:45:13 -0700373 printf("tagged %s %s", typename(tagged->type), sha1_to_hex(tagged->sha1));
Linus Torvalds92d4c852005-05-03 07:57:56 -0700374 printf(" (%s) in %s\n", tag->tag, sha1_to_hex(tag->object.sha1));
Daniel Barkalowff5ebe32005-04-18 11:39:48 -0700375 return 0;
Linus Torvalds20222112005-04-08 15:02:42 -0700376}
377
Nicolas Pitred72308e2007-04-04 16:49:04 -0400378static int fsck_sha1(const unsigned char *sha1)
Linus Torvalds20222112005-04-08 15:02:42 -0700379{
Linus Torvalds7e8c1742005-05-02 09:06:33 -0700380 struct object *obj = parse_object(sha1);
Junio C Hamanoe2b4f632007-03-05 00:22:06 -0800381 if (!obj) {
382 errors_found |= ERROR_OBJECT;
383 return error("%s: object corrupt or missing",
384 sha1_to_hex(sha1));
385 }
Linus Torvalds2d9c58c2006-05-29 12:18:33 -0700386 if (obj->flags & SEEN)
387 return 0;
388 obj->flags |= SEEN;
Linus Torvalds19746322006-07-11 20:45:31 -0700389 if (obj->type == OBJ_BLOB)
Linus Torvalds7e8c1742005-05-02 09:06:33 -0700390 return 0;
Linus Torvalds19746322006-07-11 20:45:31 -0700391 if (obj->type == OBJ_TREE)
Linus Torvalds7e8c1742005-05-02 09:06:33 -0700392 return fsck_tree((struct tree *) obj);
Linus Torvalds19746322006-07-11 20:45:31 -0700393 if (obj->type == OBJ_COMMIT)
Linus Torvalds7e8c1742005-05-02 09:06:33 -0700394 return fsck_commit((struct commit *) obj);
Linus Torvalds19746322006-07-11 20:45:31 -0700395 if (obj->type == OBJ_TAG)
Linus Torvalds7e8c1742005-05-02 09:06:33 -0700396 return fsck_tag((struct tag *) obj);
Junio C Hamanoe2b4f632007-03-05 00:22:06 -0800397
Petr Baudisf1f0d082005-09-20 20:56:05 +0200398 /* By now, parse_object() would've returned NULL instead. */
Junio C Hamanoe2b4f632007-03-05 00:22:06 -0800399 return objerror(obj, "unknown type '%d' (internal fsck error)",
400 obj->type);
Linus Torvalds20222112005-04-08 15:02:42 -0700401}
402
Linus Torvalds7e8c1742005-05-02 09:06:33 -0700403/*
404 * This is the sorting chunk size: make it reasonably
405 * big so that we can sort well..
406 */
407#define MAX_SHA1_ENTRIES (1024)
408
409struct sha1_entry {
410 unsigned long ino;
411 unsigned char sha1[20];
412};
413
414static struct {
415 unsigned long nr;
416 struct sha1_entry *entry[MAX_SHA1_ENTRIES];
417} sha1_list;
418
419static int ino_compare(const void *_a, const void *_b)
420{
421 const struct sha1_entry *a = _a, *b = _b;
422 unsigned long ino1 = a->ino, ino2 = b->ino;
423 return ino1 < ino2 ? -1 : ino1 > ino2 ? 1 : 0;
424}
425
426static void fsck_sha1_list(void)
427{
428 int i, nr = sha1_list.nr;
429
Junio C Hamano35a730f2006-01-19 17:13:51 -0800430 if (SORT_DIRENT)
431 qsort(sha1_list.entry, nr,
432 sizeof(struct sha1_entry *), ino_compare);
Linus Torvalds7e8c1742005-05-02 09:06:33 -0700433 for (i = 0; i < nr; i++) {
434 struct sha1_entry *entry = sha1_list.entry[i];
435 unsigned char *sha1 = entry->sha1;
436
437 sha1_list.entry[i] = NULL;
Petr Baudisf1f0d082005-09-20 20:56:05 +0200438 fsck_sha1(sha1);
Linus Torvalds7e8c1742005-05-02 09:06:33 -0700439 free(entry);
440 }
441 sha1_list.nr = 0;
442}
443
444static void add_sha1_list(unsigned char *sha1, unsigned long ino)
445{
446 struct sha1_entry *entry = xmalloc(sizeof(*entry));
447 int nr;
448
449 entry->ino = ino;
Shawn Pearcee7024962006-08-23 02:49:00 -0400450 hashcpy(entry->sha1, sha1);
Linus Torvalds7e8c1742005-05-02 09:06:33 -0700451 nr = sha1_list.nr;
452 if (nr == MAX_SHA1_ENTRIES) {
453 fsck_sha1_list();
454 nr = 0;
455 }
456 sha1_list.entry[nr] = entry;
457 sha1_list.nr = ++nr;
458}
459
David Rientjesb5524c82006-08-14 13:36:18 -0700460static void fsck_dir(int i, char *path)
Linus Torvalds20222112005-04-08 15:02:42 -0700461{
462 DIR *dir = opendir(path);
463 struct dirent *de;
464
Linus Torvalds230f1322005-10-08 15:54:01 -0700465 if (!dir)
David Rientjesb5524c82006-08-14 13:36:18 -0700466 return;
Linus Torvalds20222112005-04-08 15:02:42 -0700467
Johannes Schindelin20f1eb62007-06-05 03:44:00 +0100468 if (verbose)
469 fprintf(stderr, "Checking directory %s\n", path);
470
Linus Torvalds20222112005-04-08 15:02:42 -0700471 while ((de = readdir(dir)) != NULL) {
472 char name[100];
Linus Torvalds7e8c1742005-05-02 09:06:33 -0700473 unsigned char sha1[20];
Linus Torvalds20222112005-04-08 15:02:42 -0700474 int len = strlen(de->d_name);
475
476 switch (len) {
477 case 2:
478 if (de->d_name[1] != '.')
479 break;
480 case 1:
481 if (de->d_name[0] != '.')
482 break;
483 continue;
484 case 38:
485 sprintf(name, "%02x", i);
486 memcpy(name+2, de->d_name, len+1);
Linus Torvalds7e8c1742005-05-02 09:06:33 -0700487 if (get_sha1_hex(name, sha1) < 0)
488 break;
Junio C Hamano35a730f2006-01-19 17:13:51 -0800489 add_sha1_list(sha1, DIRENT_SORT_HINT(de));
Linus Torvalds7e8c1742005-05-02 09:06:33 -0700490 continue;
Linus Torvalds20222112005-04-08 15:02:42 -0700491 }
492 fprintf(stderr, "bad sha1 file: %s/%s\n", path, de->d_name);
493 }
494 closedir(dir);
Linus Torvalds20222112005-04-08 15:02:42 -0700495}
496
David Rientjes96f1e582006-08-15 10:23:48 -0700497static int default_refs;
Linus Torvalds944d8582005-07-03 10:01:38 -0700498
Johannes Schindelin883d60f2007-01-08 01:59:54 +0100499static int fsck_handle_reflog_ent(unsigned char *osha1, unsigned char *nsha1,
500 const char *email, unsigned long timestamp, int tz,
501 const char *message, void *cb_data)
Junio C Hamano55dd5522006-12-18 01:36:16 -0800502{
503 struct object *obj;
504
Johannes Schindelin20f1eb62007-06-05 03:44:00 +0100505 if (verbose)
506 fprintf(stderr, "Checking reflog %s->%s\n",
507 sha1_to_hex(osha1), sha1_to_hex(nsha1));
508
Junio C Hamano55dd5522006-12-18 01:36:16 -0800509 if (!is_null_sha1(osha1)) {
510 obj = lookup_object(osha1);
511 if (obj) {
512 obj->used = 1;
513 mark_reachable(obj, REACHABLE);
514 }
515 }
516 obj = lookup_object(nsha1);
517 if (obj) {
518 obj->used = 1;
519 mark_reachable(obj, REACHABLE);
520 }
521 return 0;
522}
523
Nicolas Pitreeb8381c2007-02-03 13:25:43 -0500524static int fsck_handle_reflog(const char *logname, const unsigned char *sha1, int flag, void *cb_data)
525{
526 for_each_reflog_ent(logname, fsck_handle_reflog_ent, NULL);
527 return 0;
528}
529
Junio C Hamano8da19772006-09-20 22:02:01 -0700530static int fsck_handle_ref(const char *refname, const unsigned char *sha1, int flag, void *cb_data)
Linus Torvalds10249322005-05-18 10:16:14 -0700531{
Linus Torvalds10249322005-05-18 10:16:14 -0700532 struct object *obj;
533
Linus Torvalds10249322005-05-18 10:16:14 -0700534 obj = lookup_object(sha1);
Junio C Hamano8a498a02005-06-28 14:58:33 -0700535 if (!obj) {
Junio C Hamano7aaa7152006-03-09 01:44:19 -0800536 if (has_sha1_file(sha1)) {
Linus Torvalds659cacf2005-07-07 17:05:41 -0700537 default_refs++;
Linus Torvalds944d8582005-07-03 10:01:38 -0700538 return 0; /* it is in a pack */
Linus Torvalds659cacf2005-07-07 17:05:41 -0700539 }
Linus Torvalds944d8582005-07-03 10:01:38 -0700540 error("%s: invalid sha1 pointer %s", refname, sha1_to_hex(sha1));
541 /* We'll continue with the rest despite the error.. */
542 return 0;
Junio C Hamano8a498a02005-06-28 14:58:33 -0700543 }
Linus Torvalds944d8582005-07-03 10:01:38 -0700544 default_refs++;
Linus Torvalds10249322005-05-18 10:16:14 -0700545 obj->used = 1;
546 mark_reachable(obj, REACHABLE);
Junio C Hamano55dd5522006-12-18 01:36:16 -0800547
Linus Torvalds7c4d07c2005-05-20 07:49:17 -0700548 return 0;
Linus Torvalds10249322005-05-18 10:16:14 -0700549}
550
Linus Torvalds10249322005-05-18 10:16:14 -0700551static void get_default_heads(void)
552{
Junio C Hamanocb5d7092006-09-20 21:47:42 -0700553 for_each_ref(fsck_handle_ref, NULL);
Shawn O. Pearce566842f2007-04-04 10:46:14 -0400554 if (include_reflogs)
555 for_each_reflog(fsck_handle_reflog, NULL);
Linus Torvalds071fa892006-08-29 11:47:30 -0700556
557 /*
558 * Not having any default heads isn't really fatal, but
559 * it does mean that "--unreachable" no longer makes any
560 * sense (since in this case everything will obviously
561 * be unreachable by definition.
562 *
563 * Showing dangling objects is valid, though (as those
564 * dangling objects are likely lost heads).
565 *
566 * So we just print a warning about it, and clear the
567 * "show_unreachable" flag.
568 */
569 if (!default_refs) {
Junio C Hamano8eb2d0b2007-04-11 01:28:43 -0700570 fprintf(stderr, "notice: No default references\n");
Linus Torvalds071fa892006-08-29 11:47:30 -0700571 show_unreachable = 0;
572 }
Linus Torvalds10249322005-05-18 10:16:14 -0700573}
574
Junio C Hamano8a498a02005-06-28 14:58:33 -0700575static void fsck_object_dir(const char *path)
576{
577 int i;
Johannes Schindelin20f1eb62007-06-05 03:44:00 +0100578
579 if (verbose)
580 fprintf(stderr, "Checking object directory\n");
581
Junio C Hamano8a498a02005-06-28 14:58:33 -0700582 for (i = 0; i < 256; i++) {
583 static char dir[4096];
584 sprintf(dir, "%s/%02x", path, i);
585 fsck_dir(i, dir);
586 }
587 fsck_sha1_list();
588}
589
Linus Torvaldsc3330382005-07-03 10:40:38 -0700590static int fsck_head_link(void)
591{
Linus Torvaldsc3330382005-07-03 10:40:38 -0700592 unsigned char sha1[20];
Junio C Hamano8da19772006-09-20 22:02:01 -0700593 int flag;
Junio C Hamano8eb2d0b2007-04-11 01:28:43 -0700594 int null_is_error = 0;
595 const char *head_points_at = resolve_ref("HEAD", sha1, 0, &flag);
Linus Torvaldsc3330382005-07-03 10:40:38 -0700596
Johannes Schindelin20f1eb62007-06-05 03:44:00 +0100597 if (verbose)
598 fprintf(stderr, "Checking HEAD link\n");
599
Junio C Hamano8eb2d0b2007-04-11 01:28:43 -0700600 if (!head_points_at)
601 return error("Invalid HEAD");
602 if (!strcmp(head_points_at, "HEAD"))
603 /* detached HEAD */
604 null_is_error = 1;
605 else if (prefixcmp(head_points_at, "refs/heads/"))
Junio C Hamano8098a172005-09-30 14:26:57 -0700606 return error("HEAD points to something strange (%s)",
Junio C Hamano5b10b092006-09-18 01:08:00 -0700607 head_points_at);
Junio C Hamano8eb2d0b2007-04-11 01:28:43 -0700608 if (is_null_sha1(sha1)) {
609 if (null_is_error)
610 return error("HEAD: detached HEAD points at nothing");
611 fprintf(stderr, "notice: HEAD points to an unborn branch (%s)\n",
612 head_points_at + 11);
613 }
Linus Torvaldsc3330382005-07-03 10:40:38 -0700614 return 0;
615}
616
Junio C Hamano53dc3f32006-04-25 16:37:08 -0700617static int fsck_cache_tree(struct cache_tree *it)
618{
619 int i;
620 int err = 0;
621
Johannes Schindelin20f1eb62007-06-05 03:44:00 +0100622 if (verbose)
623 fprintf(stderr, "Checking cache tree\n");
624
Junio C Hamano53dc3f32006-04-25 16:37:08 -0700625 if (0 <= it->entry_count) {
626 struct object *obj = parse_object(it->sha1);
Junio C Hamano6d60bbe2006-05-03 21:17:45 -0700627 if (!obj) {
628 error("%s: invalid sha1 pointer in cache-tree",
629 sha1_to_hex(it->sha1));
630 return 1;
631 }
Junio C Hamanocdc08b32006-05-01 22:15:54 -0700632 mark_reachable(obj, REACHABLE);
633 obj->used = 1;
Linus Torvalds19746322006-07-11 20:45:31 -0700634 if (obj->type != OBJ_TREE)
Junio C Hamano53dc3f32006-04-25 16:37:08 -0700635 err |= objerror(obj, "non-tree in cache-tree");
636 }
637 for (i = 0; i < it->subtree_nr; i++)
638 err |= fsck_cache_tree(it->down[i]->cache_tree);
639 return err;
640}
641
Junio C Hamanoe2b4f632007-03-05 00:22:06 -0800642static const char fsck_usage[] =
643"git-fsck [--tags] [--root] [[--unreachable] [--cache] [--full] "
Johannes Schindelin20f1eb62007-06-05 03:44:00 +0100644"[--strict] [--verbose] <head-sha1>*]";
Junio C Hamanoe2b4f632007-03-05 00:22:06 -0800645
Mark Woodingb4dfefe2007-01-29 15:48:06 +0000646int cmd_fsck(int argc, char **argv, const char *prefix)
Linus Torvalds20222112005-04-08 15:02:42 -0700647{
Linus Torvaldsbcee6fd2005-04-13 16:42:09 -0700648 int i, heads;
Linus Torvalds20222112005-04-08 15:02:42 -0700649
Linus Torvalds3a7c3522006-05-29 12:16:46 -0700650 track_object_refs = 1;
Junio C Hamanoe2b4f632007-03-05 00:22:06 -0800651 errors_found = 0;
Junio C Hamano61e2b012005-11-25 23:52:04 -0800652
Linus Torvalds889262e2005-04-25 16:31:13 -0700653 for (i = 1; i < argc; i++) {
654 const char *arg = argv[i];
655
656 if (!strcmp(arg, "--unreachable")) {
657 show_unreachable = 1;
658 continue;
659 }
660 if (!strcmp(arg, "--tags")) {
661 show_tags = 1;
662 continue;
663 }
Linus Torvaldsab7df182005-04-25 16:34:13 -0700664 if (!strcmp(arg, "--root")) {
665 show_root = 1;
666 continue;
667 }
Junio C Hamanoae7c0c92005-05-04 01:33:33 -0700668 if (!strcmp(arg, "--cache")) {
669 keep_cache_objects = 1;
670 continue;
671 }
Shawn O. Pearce566842f2007-04-04 10:46:14 -0400672 if (!strcmp(arg, "--no-reflogs")) {
673 include_reflogs = 0;
674 continue;
675 }
Junio C Hamano8a498a02005-06-28 14:58:33 -0700676 if (!strcmp(arg, "--full")) {
677 check_full = 1;
678 continue;
679 }
Linus Torvaldsde2eb7f2005-07-27 15:16:03 -0700680 if (!strcmp(arg, "--strict")) {
681 check_strict = 1;
682 continue;
683 }
Johannes Schindelin20f1eb62007-06-05 03:44:00 +0100684 if (!strcmp(arg, "--verbose")) {
685 verbose = 1;
686 continue;
687 }
Linus Torvalds889262e2005-04-25 16:31:13 -0700688 if (*arg == '-')
Junio C Hamanoe2b4f632007-03-05 00:22:06 -0800689 usage(fsck_usage);
Linus Torvalds889262e2005-04-25 16:31:13 -0700690 }
691
Linus Torvaldsc3330382005-07-03 10:40:38 -0700692 fsck_head_link();
Junio C Hamano8a498a02005-06-28 14:58:33 -0700693 fsck_object_dir(get_object_directory());
694 if (check_full) {
Junio C Hamanod5a63b92005-08-14 17:25:57 -0700695 struct alternate_object_database *alt;
Junio C Hamano8a498a02005-06-28 14:58:33 -0700696 struct packed_git *p;
697 prepare_alt_odb();
Junio C Hamanod5a63b92005-08-14 17:25:57 -0700698 for (alt = alt_odb_list; alt; alt = alt->next) {
Junio C Hamanoa3eb2502005-07-10 15:40:43 -0700699 char namebuf[PATH_MAX];
Junio C Hamanod5a63b92005-08-14 17:25:57 -0700700 int namelen = alt->name - alt->base;
701 memcpy(namebuf, alt->base, namelen);
Junio C Hamanoa3eb2502005-07-10 15:40:43 -0700702 namebuf[namelen - 1] = 0;
703 fsck_object_dir(namebuf);
Junio C Hamano8a498a02005-06-28 14:58:33 -0700704 }
705 prepare_packed_git();
Junio C Hamanof9253392005-06-29 02:51:27 -0700706 for (p = packed_git; p; p = p->next)
707 /* verify gives error messages itself */
Junio C Hamanof3bf9222005-06-30 17:15:39 -0700708 verify_pack(p, 0);
Junio C Hamanof9253392005-06-29 02:51:27 -0700709
Junio C Hamano8a498a02005-06-28 14:58:33 -0700710 for (p = packed_git; p; p = p->next) {
Shawn O. Pearceb77ffe82007-05-30 02:13:14 -0400711 uint32_t i, num;
712 if (open_pack_index(p))
713 continue;
714 num = p->num_objects;
Nicolas Pitred72308e2007-04-04 16:49:04 -0400715 for (i = 0; i < num; i++)
716 fsck_sha1(nth_packed_object_sha1(p, i));
Junio C Hamano8a498a02005-06-28 14:58:33 -0700717 }
Linus Torvalds20222112005-04-08 15:02:42 -0700718 }
Linus Torvaldsbcee6fd2005-04-13 16:42:09 -0700719
720 heads = 0;
721 for (i = 1; i < argc; i++) {
Junio C Hamanoa6080a02007-06-07 00:04:01 -0700722 const char *arg = argv[i];
Linus Torvalds889262e2005-04-25 16:31:13 -0700723
724 if (*arg == '-')
Linus Torvaldsbcee6fd2005-04-13 16:42:09 -0700725 continue;
Linus Torvalds889262e2005-04-25 16:31:13 -0700726
Linus Torvalds3c249c92005-05-01 16:36:56 -0700727 if (!get_sha1(arg, head_sha1)) {
Linus Torvalds770896e2005-05-04 17:03:09 -0700728 struct object *obj = lookup_object(head_sha1);
Jonas Fonsecae1a13882005-04-29 20:00:40 -0700729
Linus Torvalds770896e2005-05-04 17:03:09 -0700730 /* Error is printed by lookup_object(). */
731 if (!obj)
Jonas Fonsecae1a13882005-04-29 20:00:40 -0700732 continue;
733
Daniel Barkalowff5ebe32005-04-18 11:39:48 -0700734 obj->used = 1;
735 mark_reachable(obj, REACHABLE);
Linus Torvaldsbcee6fd2005-04-13 16:42:09 -0700736 heads++;
737 continue;
738 }
Petr Baudisf1f0d082005-09-20 20:56:05 +0200739 error("invalid parameter: expected sha1, got '%s'", arg);
Linus Torvaldsbcee6fd2005-04-13 16:42:09 -0700740 }
741
Linus Torvalds10249322005-05-18 10:16:14 -0700742 /*
Nicolas Pitred1af0022005-05-20 16:59:17 -0400743 * If we've not been given any explicit head information, do the
Linus Torvaldse7bd9072005-05-18 10:19:59 -0700744 * default ones from .git/refs. We also consider the index file
745 * in this case (ie this implies --cache).
Linus Torvalds10249322005-05-18 10:16:14 -0700746 */
Linus Torvaldse7bd9072005-05-18 10:19:59 -0700747 if (!heads) {
Linus Torvalds10249322005-05-18 10:16:14 -0700748 get_default_heads();
749 keep_cache_objects = 1;
750 }
751
Junio C Hamanoae7c0c92005-05-04 01:33:33 -0700752 if (keep_cache_objects) {
753 int i;
754 read_cache();
755 for (i = 0; i < active_nr; i++) {
Linus Torvalds8d9721c2007-04-09 21:15:29 -0700756 unsigned int mode;
757 struct blob *blob;
Junio C Hamanoae7c0c92005-05-04 01:33:33 -0700758 struct object *obj;
Linus Torvalds8d9721c2007-04-09 21:15:29 -0700759
760 mode = ntohl(active_cache[i]->ce_mode);
Martin Waitz302b9282007-05-21 22:08:28 +0200761 if (S_ISGITLINK(mode))
Linus Torvalds8d9721c2007-04-09 21:15:29 -0700762 continue;
763 blob = lookup_blob(active_cache[i]->sha1);
Junio C Hamanoae7c0c92005-05-04 01:33:33 -0700764 if (!blob)
765 continue;
766 obj = &blob->object;
767 obj->used = 1;
768 mark_reachable(obj, REACHABLE);
769 }
Junio C Hamano53dc3f32006-04-25 16:37:08 -0700770 if (active_cache_tree)
771 fsck_cache_tree(active_cache_tree);
Junio C Hamanoae7c0c92005-05-04 01:33:33 -0700772 }
773
Linus Torvalds8ba0bbb2005-04-10 23:13:09 -0700774 check_connectivity();
Junio C Hamanoe2b4f632007-03-05 00:22:06 -0800775 return errors_found;
Linus Torvalds20222112005-04-08 15:02:42 -0700776}