12 static int fsck_walk_tree(struct tree
*tree
, fsck_walk_func walk
, void *data
)
14 struct tree_desc desc
;
15 struct name_entry entry
;
21 init_tree_desc(&desc
, tree
->buffer
, tree
->size
);
22 while (tree_entry(&desc
, &entry
)) {
25 if (S_ISGITLINK(entry
.mode
))
27 if (S_ISDIR(entry
.mode
))
28 result
= walk(&lookup_tree(entry
.sha1
)->object
, OBJ_TREE
, data
);
29 else if (S_ISREG(entry
.mode
) || S_ISLNK(entry
.mode
))
30 result
= walk(&lookup_blob(entry
.sha1
)->object
, OBJ_BLOB
, data
);
32 result
= error("in tree %s: entry %s has bad mode %.6o",
33 sha1_to_hex(tree
->object
.sha1
), entry
.path
, entry
.mode
);
43 static int fsck_walk_commit(struct commit
*commit
, fsck_walk_func walk
, void *data
)
45 struct commit_list
*parents
;
49 if (parse_commit(commit
))
52 result
= walk((struct object
*)commit
->tree
, OBJ_TREE
, data
);
57 parents
= commit
->parents
;
59 result
= walk((struct object
*)parents
->item
, OBJ_COMMIT
, data
);
64 parents
= parents
->next
;
69 static int fsck_walk_tag(struct tag
*tag
, fsck_walk_func walk
, void *data
)
73 return walk(tag
->tagged
, OBJ_ANY
, data
);
76 int fsck_walk(struct object
*obj
, fsck_walk_func walk
, void *data
)
84 return fsck_walk_tree((struct tree
*)obj
, walk
, data
);
86 return fsck_walk_commit((struct commit
*)obj
, walk
, data
);
88 return fsck_walk_tag((struct tag
*)obj
, walk
, data
);
90 error("Unknown object type for %s", sha1_to_hex(obj
->sha1
));
96 * The entries in a tree are ordered in the _path_ order,
97 * which means that a directory entry is ordered by adding
98 * a slash to the end of it.
100 * So a directory called "a" is ordered _after_ a file
101 * called "a.c", because "a/" sorts after "a.c".
103 #define TREE_UNORDERED (-1)
104 #define TREE_HAS_DUPS (-2)
106 static int verify_ordered(unsigned mode1
, const char *name1
, unsigned mode2
, const char *name2
)
108 int len1
= strlen(name1
);
109 int len2
= strlen(name2
);
110 int len
= len1
< len2
? len1
: len2
;
111 unsigned char c1
, c2
;
114 cmp
= memcmp(name1
, name2
, len
);
118 return TREE_UNORDERED
;
121 * Ok, the first <len> characters are the same.
122 * Now we need to order the next one, but turn
123 * a '\0' into a '/' for a directory entry.
129 * git-write-tree used to write out a nonsense tree that has
130 * entries with the same name, one blob and one tree. Make
131 * sure we do not have duplicate entries.
133 return TREE_HAS_DUPS
;
134 if (!c1
&& S_ISDIR(mode1
))
136 if (!c2
&& S_ISDIR(mode2
))
138 return c1
< c2
? 0 : TREE_UNORDERED
;
141 static int fsck_tree(struct tree
*item
, int strict
, fsck_error error_func
)
144 int has_null_sha1
= 0;
145 int has_full_path
= 0;
146 int has_empty_name
= 0;
150 int has_zero_pad
= 0;
151 int has_bad_modes
= 0;
152 int has_dup_entries
= 0;
153 int not_properly_sorted
= 0;
154 struct tree_desc desc
;
158 init_tree_desc(&desc
, item
->buffer
, item
->size
);
166 const unsigned char *sha1
;
168 sha1
= tree_entry_extract(&desc
, &name
, &mode
);
170 has_null_sha1
|= is_null_sha1(sha1
);
171 has_full_path
|= !!strchr(name
, '/');
172 has_empty_name
|= !*name
;
173 has_dot
|= !strcmp(name
, ".");
174 has_dotdot
|= !strcmp(name
, "..");
175 has_dotgit
|= (!strcmp(name
, ".git") ||
176 is_hfs_dotgit(name
) ||
177 is_ntfs_dotgit(name
));
178 has_zero_pad
|= *(char *)desc
.buffer
== '0';
179 update_tree_entry(&desc
);
192 * This is nonstandard, but we had a few of these
193 * early on when we honored the full set of mode
204 switch (verify_ordered(o_mode
, o_name
, mode
, name
)) {
206 not_properly_sorted
= 1;
222 retval
+= error_func(&item
->object
, FSCK_WARN
, "contains entries pointing to null sha1");
224 retval
+= error_func(&item
->object
, FSCK_WARN
, "contains full pathnames");
226 retval
+= error_func(&item
->object
, FSCK_WARN
, "contains empty pathname");
228 retval
+= error_func(&item
->object
, FSCK_WARN
, "contains '.'");
230 retval
+= error_func(&item
->object
, FSCK_WARN
, "contains '..'");
232 retval
+= error_func(&item
->object
, FSCK_WARN
, "contains '.git'");
234 retval
+= error_func(&item
->object
, FSCK_WARN
, "contains zero-padded file modes");
236 retval
+= error_func(&item
->object
, FSCK_WARN
, "contains bad file modes");
238 retval
+= error_func(&item
->object
, FSCK_ERROR
, "contains duplicate file entries");
239 if (not_properly_sorted
)
240 retval
+= error_func(&item
->object
, FSCK_ERROR
, "not properly sorted");
244 static int require_end_of_header(const void *data
, unsigned long size
,
245 struct object
*obj
, fsck_error error_func
)
247 const char *buffer
= (const char *)data
;
250 for (i
= 0; i
< size
; i
++) {
253 return error_func(obj
, FSCK_ERROR
,
254 "unterminated header: NUL at offset %d", i
);
256 if (i
+ 1 < size
&& buffer
[i
+ 1] == '\n')
261 return error_func(obj
, FSCK_ERROR
, "unterminated header");
264 static int fsck_ident(const char **ident
, struct object
*obj
, fsck_error error_func
)
269 return error_func(obj
, FSCK_ERROR
, "invalid author/committer line - missing space before email");
270 *ident
+= strcspn(*ident
, "<>\n");
272 return error_func(obj
, FSCK_ERROR
, "invalid author/committer line - bad name");
274 return error_func(obj
, FSCK_ERROR
, "invalid author/committer line - missing email");
275 if ((*ident
)[-1] != ' ')
276 return error_func(obj
, FSCK_ERROR
, "invalid author/committer line - missing space before email");
278 *ident
+= strcspn(*ident
, "<>\n");
280 return error_func(obj
, FSCK_ERROR
, "invalid author/committer line - bad email");
283 return error_func(obj
, FSCK_ERROR
, "invalid author/committer line - missing space before date");
285 if (**ident
== '0' && (*ident
)[1] != ' ')
286 return error_func(obj
, FSCK_ERROR
, "invalid author/committer line - zero-padded date");
287 if (date_overflows(strtoul(*ident
, &end
, 10)))
288 return error_func(obj
, FSCK_ERROR
, "invalid author/committer line - date causes integer overflow");
289 if (end
== *ident
|| *end
!= ' ')
290 return error_func(obj
, FSCK_ERROR
, "invalid author/committer line - bad date");
292 if ((**ident
!= '+' && **ident
!= '-') ||
293 !isdigit((*ident
)[1]) ||
294 !isdigit((*ident
)[2]) ||
295 !isdigit((*ident
)[3]) ||
296 !isdigit((*ident
)[4]) ||
297 ((*ident
)[5] != '\n'))
298 return error_func(obj
, FSCK_ERROR
, "invalid author/committer line - bad time zone");
303 static int fsck_commit_buffer(struct commit
*commit
, const char *buffer
,
304 unsigned long size
, fsck_error error_func
)
306 unsigned char tree_sha1
[20], sha1
[20];
307 struct commit_graft
*graft
;
308 unsigned parent_count
, parent_line_count
= 0;
311 if (require_end_of_header(buffer
, size
, &commit
->object
, error_func
))
314 if (!skip_prefix(buffer
, "tree ", &buffer
))
315 return error_func(&commit
->object
, FSCK_ERROR
, "invalid format - expected 'tree' line");
316 if (get_sha1_hex(buffer
, tree_sha1
) || buffer
[40] != '\n')
317 return error_func(&commit
->object
, FSCK_ERROR
, "invalid 'tree' line format - bad sha1");
319 while (skip_prefix(buffer
, "parent ", &buffer
)) {
320 if (get_sha1_hex(buffer
, sha1
) || buffer
[40] != '\n')
321 return error_func(&commit
->object
, FSCK_ERROR
, "invalid 'parent' line format - bad sha1");
325 graft
= lookup_commit_graft(commit
->object
.sha1
);
326 parent_count
= commit_list_count(commit
->parents
);
328 if (graft
->nr_parent
== -1 && !parent_count
)
329 ; /* shallow commit */
330 else if (graft
->nr_parent
!= parent_count
)
331 return error_func(&commit
->object
, FSCK_ERROR
, "graft objects missing");
333 if (parent_count
!= parent_line_count
)
334 return error_func(&commit
->object
, FSCK_ERROR
, "parent objects missing");
336 if (!skip_prefix(buffer
, "author ", &buffer
))
337 return error_func(&commit
->object
, FSCK_ERROR
, "invalid format - expected 'author' line");
338 err
= fsck_ident(&buffer
, &commit
->object
, error_func
);
341 if (!skip_prefix(buffer
, "committer ", &buffer
))
342 return error_func(&commit
->object
, FSCK_ERROR
, "invalid format - expected 'committer' line");
343 err
= fsck_ident(&buffer
, &commit
->object
, error_func
);
347 return error_func(&commit
->object
, FSCK_ERROR
, "could not load commit's tree %s", sha1_to_hex(tree_sha1
));
352 static int fsck_commit(struct commit
*commit
, const char *data
,
353 unsigned long size
, fsck_error error_func
)
355 const char *buffer
= data
? data
: get_commit_buffer(commit
, &size
);
356 int ret
= fsck_commit_buffer(commit
, buffer
, size
, error_func
);
358 unuse_commit_buffer(commit
, buffer
);
362 static int fsck_tag_buffer(struct tag
*tag
, const char *data
,
363 unsigned long size
, fsck_error error_func
)
365 unsigned char sha1
[20];
368 char *to_free
= NULL
, *eol
;
369 struct strbuf sb
= STRBUF_INIT
;
374 enum object_type type
;
377 read_sha1_file(tag
->object
.sha1
, &type
, &size
);
379 return error_func(&tag
->object
, FSCK_ERROR
,
380 "cannot read tag object");
382 if (type
!= OBJ_TAG
) {
383 ret
= error_func(&tag
->object
, FSCK_ERROR
,
384 "expected tag got %s",
390 if (require_end_of_header(buffer
, size
, &tag
->object
, error_func
))
393 if (!skip_prefix(buffer
, "object ", &buffer
)) {
394 ret
= error_func(&tag
->object
, FSCK_ERROR
, "invalid format - expected 'object' line");
397 if (get_sha1_hex(buffer
, sha1
) || buffer
[40] != '\n') {
398 ret
= error_func(&tag
->object
, FSCK_ERROR
, "invalid 'object' line format - bad sha1");
403 if (!skip_prefix(buffer
, "type ", &buffer
)) {
404 ret
= error_func(&tag
->object
, FSCK_ERROR
, "invalid format - expected 'type' line");
407 eol
= strchr(buffer
, '\n');
409 ret
= error_func(&tag
->object
, FSCK_ERROR
, "invalid format - unexpected end after 'type' line");
412 if (type_from_string_gently(buffer
, eol
- buffer
, 1) < 0)
413 ret
= error_func(&tag
->object
, FSCK_ERROR
, "invalid 'type' value");
418 if (!skip_prefix(buffer
, "tag ", &buffer
)) {
419 ret
= error_func(&tag
->object
, FSCK_ERROR
, "invalid format - expected 'tag' line");
422 eol
= strchr(buffer
, '\n');
424 ret
= error_func(&tag
->object
, FSCK_ERROR
, "invalid format - unexpected end after 'type' line");
427 strbuf_addf(&sb
, "refs/tags/%.*s", (int)(eol
- buffer
), buffer
);
428 if (check_refname_format(sb
.buf
, 0))
429 error_func(&tag
->object
, FSCK_WARN
, "invalid 'tag' name: %.*s",
430 (int)(eol
- buffer
), buffer
);
433 if (!skip_prefix(buffer
, "tagger ", &buffer
))
434 /* early tags do not contain 'tagger' lines; warn only */
435 error_func(&tag
->object
, FSCK_WARN
, "invalid format - expected 'tagger' line");
437 ret
= fsck_ident(&buffer
, &tag
->object
, error_func
);
445 static int fsck_tag(struct tag
*tag
, const char *data
,
446 unsigned long size
, fsck_error error_func
)
448 struct object
*tagged
= tag
->tagged
;
451 return error_func(&tag
->object
, FSCK_ERROR
, "could not load tagged object");
453 return fsck_tag_buffer(tag
, data
, size
, error_func
);
456 int fsck_object(struct object
*obj
, void *data
, unsigned long size
,
457 int strict
, fsck_error error_func
)
460 return error_func(obj
, FSCK_ERROR
, "no valid object to fsck");
462 if (obj
->type
== OBJ_BLOB
)
464 if (obj
->type
== OBJ_TREE
)
465 return fsck_tree((struct tree
*) obj
, strict
, error_func
);
466 if (obj
->type
== OBJ_COMMIT
)
467 return fsck_commit((struct commit
*) obj
, (const char *) data
,
469 if (obj
->type
== OBJ_TAG
)
470 return fsck_tag((struct tag
*) obj
, (const char *) data
,
473 return error_func(obj
, FSCK_ERROR
, "unknown type '%d' (internal fsck error)",
477 int fsck_error_function(struct object
*obj
, int type
, const char *fmt
, ...)
480 struct strbuf sb
= STRBUF_INIT
;
482 strbuf_addf(&sb
, "object %s:", sha1_to_hex(obj
->sha1
));
485 strbuf_vaddf(&sb
, fmt
, ap
);