blob: 7202c3c87e8b94d3ba7811a21dca5cdbb46f81e5 [file] [log] [blame]
Martin Koegler355885d2008-02-25 22:46:04 +01001#ifndef GIT_FSCK_H
2#define GIT_FSCK_H
3
René Scharfe3b41fb02018-09-03 14:49:27 +00004#include "oidset.h"
5
Ævar Arnfjörð Bjarmason1b32b592021-03-28 15:15:40 +02006enum fsck_msg_type {
Ævar Arnfjörð Bjarmason30cf6182021-03-28 15:15:41 +02007 /* for internal use only */
8 FSCK_IGNORE,
9 FSCK_INFO,
10 FSCK_FATAL,
11 /* "public", fed to e.g. error_func callbacks */
12 FSCK_ERROR,
Ævar Arnfjörð Bjarmason1b32b592021-03-28 15:15:40 +020013 FSCK_WARN,
Ævar Arnfjörð Bjarmason1b32b592021-03-28 15:15:40 +020014};
Martin Koeglerba002f32008-02-25 22:46:08 +010015
Ævar Arnfjörð Bjarmason44e07da2021-03-28 15:15:45 +020016#define FOREACH_FSCK_MSG_ID(FUNC) \
17 /* fatal errors */ \
18 FUNC(NUL_IN_HEADER, FATAL) \
19 FUNC(UNTERMINATED_HEADER, FATAL) \
20 /* errors */ \
21 FUNC(BAD_DATE, ERROR) \
22 FUNC(BAD_DATE_OVERFLOW, ERROR) \
23 FUNC(BAD_EMAIL, ERROR) \
24 FUNC(BAD_NAME, ERROR) \
25 FUNC(BAD_OBJECT_SHA1, ERROR) \
26 FUNC(BAD_PARENT_SHA1, ERROR) \
27 FUNC(BAD_TAG_OBJECT, ERROR) \
28 FUNC(BAD_TIMEZONE, ERROR) \
29 FUNC(BAD_TREE, ERROR) \
30 FUNC(BAD_TREE_SHA1, ERROR) \
31 FUNC(BAD_TYPE, ERROR) \
32 FUNC(DUPLICATE_ENTRIES, ERROR) \
33 FUNC(MISSING_AUTHOR, ERROR) \
34 FUNC(MISSING_COMMITTER, ERROR) \
35 FUNC(MISSING_EMAIL, ERROR) \
36 FUNC(MISSING_NAME_BEFORE_EMAIL, ERROR) \
37 FUNC(MISSING_OBJECT, ERROR) \
38 FUNC(MISSING_SPACE_BEFORE_DATE, ERROR) \
39 FUNC(MISSING_SPACE_BEFORE_EMAIL, ERROR) \
40 FUNC(MISSING_TAG, ERROR) \
41 FUNC(MISSING_TAG_ENTRY, ERROR) \
42 FUNC(MISSING_TREE, ERROR) \
43 FUNC(MISSING_TREE_OBJECT, ERROR) \
44 FUNC(MISSING_TYPE, ERROR) \
45 FUNC(MISSING_TYPE_ENTRY, ERROR) \
46 FUNC(MULTIPLE_AUTHORS, ERROR) \
47 FUNC(TREE_NOT_SORTED, ERROR) \
48 FUNC(UNKNOWN_TYPE, ERROR) \
49 FUNC(ZERO_PADDED_DATE, ERROR) \
50 FUNC(GITMODULES_MISSING, ERROR) \
51 FUNC(GITMODULES_BLOB, ERROR) \
52 FUNC(GITMODULES_LARGE, ERROR) \
53 FUNC(GITMODULES_NAME, ERROR) \
54 FUNC(GITMODULES_SYMLINK, ERROR) \
55 FUNC(GITMODULES_URL, ERROR) \
56 FUNC(GITMODULES_PATH, ERROR) \
57 FUNC(GITMODULES_UPDATE, ERROR) \
58 /* warnings */ \
59 FUNC(BAD_FILEMODE, WARN) \
60 FUNC(EMPTY_NAME, WARN) \
61 FUNC(FULL_PATHNAME, WARN) \
62 FUNC(HAS_DOT, WARN) \
63 FUNC(HAS_DOTDOT, WARN) \
64 FUNC(HAS_DOTGIT, WARN) \
65 FUNC(NULL_SHA1, WARN) \
66 FUNC(ZERO_PADDED_FILEMODE, WARN) \
67 FUNC(NUL_IN_COMMIT, WARN) \
68 /* infos (reported as warnings, but ignored by default) */ \
69 FUNC(GITMODULES_PARSE, INFO) \
70 FUNC(BAD_TAG_NAME, INFO) \
71 FUNC(MISSING_TAGGER_ENTRY, INFO) \
72 /* ignored (elevated when requested) */ \
73 FUNC(EXTRA_HEADER_ENTRY, IGNORE)
74
75#define MSG_ID(id, msg_type) FSCK_MSG_##id,
76enum fsck_msg_id {
77 FOREACH_FSCK_MSG_ID(MSG_ID)
78 FSCK_MSG_MAX
79};
80#undef MSG_ID
81
Johannes Schindelin22410542015-06-22 17:25:00 +020082struct fsck_options;
Elijah Newrenef3ca952018-08-15 10:54:05 -070083struct object;
Johannes Schindelin22410542015-06-22 17:25:00 +020084
Ævar Arnfjörð Bjarmason53692df2021-03-28 15:15:47 +020085void fsck_set_msg_type_from_ids(struct fsck_options *options,
86 enum fsck_msg_id msg_id,
87 enum fsck_msg_type msg_type);
Johannes Schindelin0282f4d2015-06-22 17:25:25 +020088void fsck_set_msg_type(struct fsck_options *options,
Ævar Arnfjörð Bjarmasonf1abc2d2021-03-28 15:15:36 +020089 const char *msg_id, const char *msg_type);
Johannes Schindelin0282f4d2015-06-22 17:25:25 +020090void fsck_set_msg_types(struct fsck_options *options, const char *values);
Johannes Schindelin5d477a32015-06-22 17:25:31 +020091int is_valid_msg_type(const char *msg_id, const char *msg_type);
Johannes Schindelin0282f4d2015-06-22 17:25:25 +020092
Martin Koegler355885d2008-02-25 22:46:04 +010093/*
94 * callback function for fsck_walk
95 * type is the expected type of the object or OBJ_ANY
96 * the return value is:
97 * 0 everything OK
98 * <0 error signaled and abort
99 * >0 error signaled and do not abort
100 */
Ævar Arnfjörð Bjarmasona1aad712021-03-28 15:15:35 +0200101typedef int (*fsck_walk_func)(struct object *obj, enum object_type object_type,
102 void *data, struct fsck_options *options);
Martin Koegler355885d2008-02-25 22:46:04 +0100103
Martin Koeglerba002f32008-02-25 22:46:08 +0100104/* callback for fsck_object, type is FSCK_ERROR or FSCK_WARN */
Johannes Schindelin1cd772c2016-07-17 12:59:57 +0200105typedef int (*fsck_error)(struct fsck_options *o,
Jeff King5afc4b12019-10-18 00:58:40 -0400106 const struct object_id *oid, enum object_type object_type,
Ævar Arnfjörð Bjarmason394d5d32021-03-28 15:15:46 +0200107 enum fsck_msg_type msg_type, enum fsck_msg_id msg_id,
108 const char *message);
Martin Koeglerba002f32008-02-25 22:46:08 +0100109
Johannes Schindelin1cd772c2016-07-17 12:59:57 +0200110int fsck_error_function(struct fsck_options *o,
Jeff King5afc4b12019-10-18 00:58:40 -0400111 const struct object_id *oid, enum object_type object_type,
Ævar Arnfjörð Bjarmason394d5d32021-03-28 15:15:46 +0200112 enum fsck_msg_type msg_type, enum fsck_msg_id msg_id,
113 const char *message);
Ævar Arnfjörð Bjarmason3745e262021-03-28 15:15:51 +0200114int fsck_error_cb_print_missing_gitmodules(struct fsck_options *o,
115 const struct object_id *oid,
116 enum object_type object_type,
117 enum fsck_msg_type msg_type,
118 enum fsck_msg_id msg_id,
119 const char *message);
Martin Koeglerd6ffc8d2008-02-25 22:46:09 +0100120
Johannes Schindelin22410542015-06-22 17:25:00 +0200121struct fsck_options {
122 fsck_walk_func walk;
123 fsck_error error_func;
124 unsigned strict:1;
Ævar Arnfjörð Bjarmason1b32b592021-03-28 15:15:40 +0200125 enum fsck_msg_type *msg_type;
René Scharfe3b41fb02018-09-03 14:49:27 +0000126 struct oidset skiplist;
Ævar Arnfjörð Bjarmasonc15087d2021-03-28 15:15:48 +0200127 struct oidset gitmodules_found;
128 struct oidset gitmodules_done;
Jeff King73390292019-10-18 00:57:37 -0400129 kh_oid_map_t *object_names;
Johannes Schindelin22410542015-06-22 17:25:00 +0200130};
131
Ævar Arnfjörð Bjarmasond3857842021-03-28 15:15:34 +0200132#define FSCK_OPTIONS_DEFAULT { \
133 .skiplist = OIDSET_INIT, \
Ævar Arnfjörð Bjarmasonc15087d2021-03-28 15:15:48 +0200134 .gitmodules_found = OIDSET_INIT, \
135 .gitmodules_done = OIDSET_INIT, \
Ævar Arnfjörð Bjarmasond3857842021-03-28 15:15:34 +0200136 .error_func = fsck_error_function \
137}
138#define FSCK_OPTIONS_STRICT { \
139 .strict = 1, \
Ævar Arnfjörð Bjarmasonc15087d2021-03-28 15:15:48 +0200140 .gitmodules_found = OIDSET_INIT, \
141 .gitmodules_done = OIDSET_INIT, \
Ævar Arnfjörð Bjarmasond3857842021-03-28 15:15:34 +0200142 .error_func = fsck_error_function, \
143}
Ævar Arnfjörð Bjarmason3745e262021-03-28 15:15:51 +0200144#define FSCK_OPTIONS_MISSING_GITMODULES { \
145 .strict = 1, \
146 .gitmodules_found = OIDSET_INIT, \
147 .gitmodules_done = OIDSET_INIT, \
148 .error_func = fsck_error_cb_print_missing_gitmodules, \
149}
Johannes Schindelin22410542015-06-22 17:25:00 +0200150
Martin Koegler355885d2008-02-25 22:46:04 +0100151/* descend in all linked child objects
152 * the return value is:
153 * -1 error in processing the object
154 * <0 return value of the callback, which lead to an abort
Mike Ralphson3ea3c212009-04-17 19:13:30 +0100155 * >0 return value of the first signaled error >0 (in the case of no other errors)
Martin Koegler355885d2008-02-25 22:46:04 +0100156 * 0 everything OK
157 */
Johannes Schindelin22410542015-06-22 17:25:00 +0200158int fsck_walk(struct object *obj, void *data, struct fsck_options *options);
Jeff King23a173a2019-10-18 00:54:12 -0400159
160/*
161 * Blob objects my pass a NULL data pointer, which indicates they are too large
162 * to fit in memory. All other types must pass a real buffer.
163 */
Johannes Schindelin90a398b2014-09-10 15:52:51 +0200164int fsck_object(struct object *obj, void *data, unsigned long size,
Johannes Schindelin22410542015-06-22 17:25:00 +0200165 struct fsck_options *options);
Martin Koegler355885d2008-02-25 22:46:04 +0100166
Jeff King159e7b02018-05-02 17:20:08 -0400167/*
Ævar Arnfjörð Bjarmasonacf9de42021-01-05 20:42:46 +0100168 * fsck a tag, and pass info about it back to the caller. This is
169 * exposed fsck_object() internals for git-mktag(1).
170 */
171int fsck_tag_standalone(const struct object_id *oid, const char *buffer,
172 unsigned long size, struct fsck_options *options,
173 struct object_id *tagged_oid,
174 int *tag_type);
175
176/*
Jeff King159e7b02018-05-02 17:20:08 -0400177 * Some fsck checks are context-dependent, and may end up queued; run this
178 * after completing all fsck_object() calls in order to resolve any remaining
179 * checks.
180 */
181int fsck_finish(struct fsck_options *options);
182
Jeff Kinga59cfb32019-10-18 00:56:13 -0400183/*
184 * Subsystem for storing human-readable names for each object.
185 *
186 * If fsck_enable_object_names() has not been called, all other functions are
187 * noops.
188 *
189 * Use fsck_put_object_name() to seed initial names (e.g. from refnames); the
190 * fsck code will extend that while walking trees, etc.
191 *
192 * Use fsck_get_object_name() to get a single name (or NULL if none). Or the
193 * more convenient describe_object(), which always produces an output string
194 * with the oid combined with the name (if any). Note that the return value
195 * points to a rotating array of static buffers, and may be invalidated by a
196 * subsequent call.
197 */
198void fsck_enable_object_names(struct fsck_options *options);
199const char *fsck_get_object_name(struct fsck_options *options,
Jeff King73390292019-10-18 00:57:37 -0400200 const struct object_id *oid);
Jeff Kinga59cfb32019-10-18 00:56:13 -0400201__attribute__((format (printf,3,4)))
Jeff King73390292019-10-18 00:57:37 -0400202void fsck_put_object_name(struct fsck_options *options,
203 const struct object_id *oid,
Jeff Kinga59cfb32019-10-18 00:56:13 -0400204 const char *fmt, ...);
205const char *fsck_describe_object(struct fsck_options *options,
Jeff King73390292019-10-18 00:57:37 -0400206 const struct object_id *oid);
Jeff Kinga59cfb32019-10-18 00:56:13 -0400207
Ævar Arnfjörð Bjarmason1f3299f2021-01-05 20:42:47 +0100208/*
209 * git_config() callback for use by fsck-y tools that want to support
210 * fsck.<msg> fsck.skipList etc.
211 */
Ævar Arnfjörð Bjarmasonfb79f5b2021-03-17 19:20:36 +0100212int git_fsck_config(const char *var, const char *value, void *cb);
Ævar Arnfjörð Bjarmason1f3299f2021-01-05 20:42:47 +0100213
Martin Koegler355885d2008-02-25 22:46:04 +0100214#endif