]> git.ipfire.org Git - thirdparty/git.git/blame - fsck.h
unpack-trees: special case read-tree debugging as internal usage
[thirdparty/git.git] / fsck.h
CommitLineData
355885d5
MK
1#ifndef GIT_FSCK_H
2#define GIT_FSCK_H
3
3b41fb0c
RS
4#include "oidset.h"
5
1b32b59f 6enum fsck_msg_type {
30cf618e
ÆAB
7 /* 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,
1b32b59f 13 FSCK_WARN,
1b32b59f 14};
ba002f3b 15
f6534dbd
JC
16/*
17 * Documentation/fsck-msgids.txt documents these; when
18 * modifying this list in any way, make sure to keep the
19 * two in sync.
20 */
21
44e07da8
ÆAB
22#define FOREACH_FSCK_MSG_ID(FUNC) \
23 /* fatal errors */ \
24 FUNC(NUL_IN_HEADER, FATAL) \
25 FUNC(UNTERMINATED_HEADER, FATAL) \
26 /* errors */ \
27 FUNC(BAD_DATE, ERROR) \
28 FUNC(BAD_DATE_OVERFLOW, ERROR) \
29 FUNC(BAD_EMAIL, ERROR) \
30 FUNC(BAD_NAME, ERROR) \
31 FUNC(BAD_OBJECT_SHA1, ERROR) \
32 FUNC(BAD_PARENT_SHA1, ERROR) \
44e07da8
ÆAB
33 FUNC(BAD_TIMEZONE, ERROR) \
34 FUNC(BAD_TREE, ERROR) \
35 FUNC(BAD_TREE_SHA1, ERROR) \
36 FUNC(BAD_TYPE, ERROR) \
37 FUNC(DUPLICATE_ENTRIES, ERROR) \
38 FUNC(MISSING_AUTHOR, ERROR) \
39 FUNC(MISSING_COMMITTER, ERROR) \
40 FUNC(MISSING_EMAIL, ERROR) \
41 FUNC(MISSING_NAME_BEFORE_EMAIL, ERROR) \
42 FUNC(MISSING_OBJECT, ERROR) \
43 FUNC(MISSING_SPACE_BEFORE_DATE, ERROR) \
44 FUNC(MISSING_SPACE_BEFORE_EMAIL, ERROR) \
45 FUNC(MISSING_TAG, ERROR) \
46 FUNC(MISSING_TAG_ENTRY, ERROR) \
47 FUNC(MISSING_TREE, ERROR) \
44e07da8
ÆAB
48 FUNC(MISSING_TYPE, ERROR) \
49 FUNC(MISSING_TYPE_ENTRY, ERROR) \
50 FUNC(MULTIPLE_AUTHORS, ERROR) \
51 FUNC(TREE_NOT_SORTED, ERROR) \
52 FUNC(UNKNOWN_TYPE, ERROR) \
53 FUNC(ZERO_PADDED_DATE, ERROR) \
54 FUNC(GITMODULES_MISSING, ERROR) \
55 FUNC(GITMODULES_BLOB, ERROR) \
56 FUNC(GITMODULES_LARGE, ERROR) \
57 FUNC(GITMODULES_NAME, ERROR) \
58 FUNC(GITMODULES_SYMLINK, ERROR) \
59 FUNC(GITMODULES_URL, ERROR) \
60 FUNC(GITMODULES_PATH, ERROR) \
61 FUNC(GITMODULES_UPDATE, ERROR) \
27ab4784
PS
62 FUNC(GITATTRIBUTES_MISSING, ERROR) \
63 FUNC(GITATTRIBUTES_LARGE, ERROR) \
64 FUNC(GITATTRIBUTES_LINE_LENGTH, ERROR) \
65 FUNC(GITATTRIBUTES_BLOB, ERROR) \
44e07da8 66 /* warnings */ \
44e07da8
ÆAB
67 FUNC(EMPTY_NAME, WARN) \
68 FUNC(FULL_PATHNAME, WARN) \
69 FUNC(HAS_DOT, WARN) \
70 FUNC(HAS_DOTDOT, WARN) \
71 FUNC(HAS_DOTGIT, WARN) \
72 FUNC(NULL_SHA1, WARN) \
73 FUNC(ZERO_PADDED_FILEMODE, WARN) \
74 FUNC(NUL_IN_COMMIT, WARN) \
75 /* infos (reported as warnings, but ignored by default) */ \
4dd3b045 76 FUNC(BAD_FILEMODE, INFO) \
44e07da8 77 FUNC(GITMODULES_PARSE, INFO) \
bb6832d5
JK
78 FUNC(GITIGNORE_SYMLINK, INFO) \
79 FUNC(GITATTRIBUTES_SYMLINK, INFO) \
80 FUNC(MAILMAP_SYMLINK, INFO) \
44e07da8
ÆAB
81 FUNC(BAD_TAG_NAME, INFO) \
82 FUNC(MISSING_TAGGER_ENTRY, INFO) \
83 /* ignored (elevated when requested) */ \
84 FUNC(EXTRA_HEADER_ENTRY, IGNORE)
85
86#define MSG_ID(id, msg_type) FSCK_MSG_##id,
87enum fsck_msg_id {
88 FOREACH_FSCK_MSG_ID(MSG_ID)
89 FSCK_MSG_MAX
90};
91#undef MSG_ID
92
22410549 93struct fsck_options;
ef3ca954 94struct object;
22410549 95
53692df2
ÆAB
96void fsck_set_msg_type_from_ids(struct fsck_options *options,
97 enum fsck_msg_id msg_id,
98 enum fsck_msg_type msg_type);
0282f4dc 99void fsck_set_msg_type(struct fsck_options *options,
f1abc2d0 100 const char *msg_id, const char *msg_type);
0282f4dc 101void fsck_set_msg_types(struct fsck_options *options, const char *values);
5d477a33 102int is_valid_msg_type(const char *msg_id, const char *msg_type);
0282f4dc 103
355885d5
MK
104/*
105 * callback function for fsck_walk
106 * type is the expected type of the object or OBJ_ANY
107 * the return value is:
108 * 0 everything OK
109 * <0 error signaled and abort
110 * >0 error signaled and do not abort
111 */
a1aad716
ÆAB
112typedef int (*fsck_walk_func)(struct object *obj, enum object_type object_type,
113 void *data, struct fsck_options *options);
355885d5 114
ba002f3b 115/* callback for fsck_object, type is FSCK_ERROR or FSCK_WARN */
1cd772cc 116typedef int (*fsck_error)(struct fsck_options *o,
5afc4b1d 117 const struct object_id *oid, enum object_type object_type,
394d5d31
ÆAB
118 enum fsck_msg_type msg_type, enum fsck_msg_id msg_id,
119 const char *message);
ba002f3b 120
1cd772cc 121int fsck_error_function(struct fsck_options *o,
5afc4b1d 122 const struct object_id *oid, enum object_type object_type,
394d5d31
ÆAB
123 enum fsck_msg_type msg_type, enum fsck_msg_id msg_id,
124 const char *message);
3745e269
ÆAB
125int fsck_error_cb_print_missing_gitmodules(struct fsck_options *o,
126 const struct object_id *oid,
127 enum object_type object_type,
128 enum fsck_msg_type msg_type,
129 enum fsck_msg_id msg_id,
130 const char *message);
d6ffc8d7 131
22410549
JS
132struct fsck_options {
133 fsck_walk_func walk;
134 fsck_error error_func;
135 unsigned strict:1;
1b32b59f 136 enum fsck_msg_type *msg_type;
3b41fb0c 137 struct oidset skiplist;
c15087d1
ÆAB
138 struct oidset gitmodules_found;
139 struct oidset gitmodules_done;
27ab4784
PS
140 struct oidset gitattributes_found;
141 struct oidset gitattributes_done;
73390290 142 kh_oid_map_t *object_names;
22410549
JS
143};
144
d385784f
ÆAB
145#define FSCK_OPTIONS_DEFAULT { \
146 .skiplist = OIDSET_INIT, \
c15087d1
ÆAB
147 .gitmodules_found = OIDSET_INIT, \
148 .gitmodules_done = OIDSET_INIT, \
27ab4784
PS
149 .gitattributes_found = OIDSET_INIT, \
150 .gitattributes_done = OIDSET_INIT, \
d385784f
ÆAB
151 .error_func = fsck_error_function \
152}
153#define FSCK_OPTIONS_STRICT { \
154 .strict = 1, \
c15087d1
ÆAB
155 .gitmodules_found = OIDSET_INIT, \
156 .gitmodules_done = OIDSET_INIT, \
27ab4784
PS
157 .gitattributes_found = OIDSET_INIT, \
158 .gitattributes_done = OIDSET_INIT, \
d385784f
ÆAB
159 .error_func = fsck_error_function, \
160}
3745e269
ÆAB
161#define FSCK_OPTIONS_MISSING_GITMODULES { \
162 .strict = 1, \
163 .gitmodules_found = OIDSET_INIT, \
164 .gitmodules_done = OIDSET_INIT, \
27ab4784
PS
165 .gitattributes_found = OIDSET_INIT, \
166 .gitattributes_done = OIDSET_INIT, \
3745e269
ÆAB
167 .error_func = fsck_error_cb_print_missing_gitmodules, \
168}
22410549 169
355885d5
MK
170/* descend in all linked child objects
171 * the return value is:
172 * -1 error in processing the object
173 * <0 return value of the callback, which lead to an abort
3ea3c215 174 * >0 return value of the first signaled error >0 (in the case of no other errors)
355885d5
MK
175 * 0 everything OK
176 */
22410549 177int fsck_walk(struct object *obj, void *data, struct fsck_options *options);
23a173a7
JK
178
179/*
180 * Blob objects my pass a NULL data pointer, which indicates they are too large
181 * to fit in memory. All other types must pass a real buffer.
182 */
90a398bb 183int fsck_object(struct object *obj, void *data, unsigned long size,
22410549 184 struct fsck_options *options);
355885d5 185
35ff327e
JK
186/*
187 * Same as fsck_object(), but for when the caller doesn't have an object
188 * struct.
189 */
190int fsck_buffer(const struct object_id *oid, enum object_type,
191 void *data, unsigned long size,
192 struct fsck_options *options);
193
acf9de4c
ÆAB
194/*
195 * fsck a tag, and pass info about it back to the caller. This is
196 * exposed fsck_object() internals for git-mktag(1).
197 */
198int fsck_tag_standalone(const struct object_id *oid, const char *buffer,
199 unsigned long size, struct fsck_options *options,
200 struct object_id *tagged_oid,
201 int *tag_type);
202
159e7b08
JK
203/*
204 * Some fsck checks are context-dependent, and may end up queued; run this
205 * after completing all fsck_object() calls in order to resolve any remaining
206 * checks.
207 */
208int fsck_finish(struct fsck_options *options);
209
a59cfb32
JK
210/*
211 * Subsystem for storing human-readable names for each object.
212 *
213 * If fsck_enable_object_names() has not been called, all other functions are
214 * noops.
215 *
216 * Use fsck_put_object_name() to seed initial names (e.g. from refnames); the
217 * fsck code will extend that while walking trees, etc.
218 *
219 * Use fsck_get_object_name() to get a single name (or NULL if none). Or the
220 * more convenient describe_object(), which always produces an output string
221 * with the oid combined with the name (if any). Note that the return value
222 * points to a rotating array of static buffers, and may be invalidated by a
223 * subsequent call.
224 */
225void fsck_enable_object_names(struct fsck_options *options);
226const char *fsck_get_object_name(struct fsck_options *options,
73390290 227 const struct object_id *oid);
a59cfb32 228__attribute__((format (printf,3,4)))
73390290
JK
229void fsck_put_object_name(struct fsck_options *options,
230 const struct object_id *oid,
a59cfb32
JK
231 const char *fmt, ...);
232const char *fsck_describe_object(struct fsck_options *options,
73390290 233 const struct object_id *oid);
a59cfb32 234
1f3299fd
ÆAB
235/*
236 * git_config() callback for use by fsck-y tools that want to support
237 * fsck.<msg> fsck.skipList etc.
238 */
fb79f5bf 239int git_fsck_config(const char *var, const char *value, void *cb);
1f3299fd 240
355885d5 241#endif