]> git.ipfire.org Git - thirdparty/git.git/blob - cache.h
wrapper.h: move declarations for wrapper.c functions from cache.h
[thirdparty/git.git] / cache.h
1 #ifndef CACHE_H
2 #define CACHE_H
3
4 #include "git-compat-util.h"
5 #include "strbuf.h"
6 #include "hashmap.h"
7 #include "list.h"
8 #include "advice.h"
9 #include "gettext.h"
10 #include "convert.h"
11 #include "trace.h"
12 #include "trace2.h"
13 #include "string-list.h"
14 #include "pack-revindex.h"
15 #include "hash.h"
16 #include "path.h"
17 #include "pathspec.h"
18 #include "object.h"
19 #include "oid-array.h"
20 #include "repository.h"
21 #include "statinfo.h"
22 #include "mem-pool.h"
23
24 typedef struct git_zstream {
25 z_stream z;
26 unsigned long avail_in;
27 unsigned long avail_out;
28 unsigned long total_in;
29 unsigned long total_out;
30 unsigned char *next_in;
31 unsigned char *next_out;
32 } git_zstream;
33
34 void git_inflate_init(git_zstream *);
35 void git_inflate_init_gzip_only(git_zstream *);
36 void git_inflate_end(git_zstream *);
37 int git_inflate(git_zstream *, int flush);
38
39 void git_deflate_init(git_zstream *, int level);
40 void git_deflate_init_gzip(git_zstream *, int level);
41 void git_deflate_init_raw(git_zstream *, int level);
42 void git_deflate_end(git_zstream *);
43 int git_deflate_abort(git_zstream *);
44 int git_deflate_end_gently(git_zstream *);
45 int git_deflate(git_zstream *, int flush);
46 unsigned long git_deflate_bound(git_zstream *, unsigned long);
47
48 #if defined(DT_UNKNOWN) && !defined(NO_D_TYPE_IN_DIRENT)
49 #define DTYPE(de) ((de)->d_type)
50 #else
51 #undef DT_UNKNOWN
52 #undef DT_DIR
53 #undef DT_REG
54 #undef DT_LNK
55 #define DT_UNKNOWN 0
56 #define DT_DIR 1
57 #define DT_REG 2
58 #define DT_LNK 3
59 #define DTYPE(de) DT_UNKNOWN
60 #endif
61
62 /* unknown mode (impossible combination S_IFIFO|S_IFCHR) */
63 #define S_IFINVALID 0030000
64
65 /*
66 * A "directory link" is a link to another git directory.
67 *
68 * The value 0160000 is not normally a valid mode, and
69 * also just happens to be S_IFDIR + S_IFLNK
70 */
71 #define S_IFGITLINK 0160000
72 #define S_ISGITLINK(m) (((m) & S_IFMT) == S_IFGITLINK)
73
74 /*
75 * Some mode bits are also used internally for computations.
76 *
77 * They *must* not overlap with any valid modes, and they *must* not be emitted
78 * to outside world - i.e. appear on disk or network. In other words, it's just
79 * temporary fields, which we internally use, but they have to stay in-house.
80 *
81 * ( such approach is valid, as standard S_IF* fits into 16 bits, and in Git
82 * codebase mode is `unsigned int` which is assumed to be at least 32 bits )
83 */
84
85 /* used internally in tree-diff */
86 #define S_DIFFTREE_IFXMIN_NEQ 0x80000000
87
88
89 /*
90 * Intensive research over the course of many years has shown that
91 * port 9418 is totally unused by anything else. Or
92 *
93 * Your search - "port 9418" - did not match any documents.
94 *
95 * as www.google.com puts it.
96 *
97 * This port has been properly assigned for git use by IANA:
98 * git (Assigned-9418) [I06-050728-0001].
99 *
100 * git 9418/tcp git pack transfer service
101 * git 9418/udp git pack transfer service
102 *
103 * with Linus Torvalds <torvalds@osdl.org> as the point of
104 * contact. September 2005.
105 *
106 * See http://www.iana.org/assignments/port-numbers
107 */
108 #define DEFAULT_GIT_PORT 9418
109
110 /*
111 * Basic data structures for the directory cache
112 */
113
114 #define CACHE_SIGNATURE 0x44495243 /* "DIRC" */
115 struct cache_header {
116 uint32_t hdr_signature;
117 uint32_t hdr_version;
118 uint32_t hdr_entries;
119 };
120
121 #define INDEX_FORMAT_LB 2
122 #define INDEX_FORMAT_UB 4
123
124 struct cache_entry {
125 struct hashmap_entry ent;
126 struct stat_data ce_stat_data;
127 unsigned int ce_mode;
128 unsigned int ce_flags;
129 unsigned int mem_pool_allocated;
130 unsigned int ce_namelen;
131 unsigned int index; /* for link extension */
132 struct object_id oid;
133 char name[FLEX_ARRAY]; /* more */
134 };
135
136 #define CE_STAGEMASK (0x3000)
137 #define CE_EXTENDED (0x4000)
138 #define CE_VALID (0x8000)
139 #define CE_STAGESHIFT 12
140
141 /*
142 * Range 0xFFFF0FFF in ce_flags is divided into
143 * two parts: in-memory flags and on-disk ones.
144 * Flags in CE_EXTENDED_FLAGS will get saved on-disk
145 * if you want to save a new flag, add it in
146 * CE_EXTENDED_FLAGS
147 *
148 * In-memory only flags
149 */
150 #define CE_UPDATE (1 << 16)
151 #define CE_REMOVE (1 << 17)
152 #define CE_UPTODATE (1 << 18)
153 #define CE_ADDED (1 << 19)
154
155 #define CE_HASHED (1 << 20)
156 #define CE_FSMONITOR_VALID (1 << 21)
157 #define CE_WT_REMOVE (1 << 22) /* remove in work directory */
158 #define CE_CONFLICTED (1 << 23)
159
160 #define CE_UNPACKED (1 << 24)
161 #define CE_NEW_SKIP_WORKTREE (1 << 25)
162
163 /* used to temporarily mark paths matched by pathspecs */
164 #define CE_MATCHED (1 << 26)
165
166 #define CE_UPDATE_IN_BASE (1 << 27)
167 #define CE_STRIP_NAME (1 << 28)
168
169 /*
170 * Extended on-disk flags
171 */
172 #define CE_INTENT_TO_ADD (1 << 29)
173 #define CE_SKIP_WORKTREE (1 << 30)
174 /* CE_EXTENDED2 is for future extension */
175 #define CE_EXTENDED2 (1U << 31)
176
177 #define CE_EXTENDED_FLAGS (CE_INTENT_TO_ADD | CE_SKIP_WORKTREE)
178
179 /*
180 * Safeguard to avoid saving wrong flags:
181 * - CE_EXTENDED2 won't get saved until its semantic is known
182 * - Bits in 0x0000FFFF have been saved in ce_flags already
183 * - Bits in 0x003F0000 are currently in-memory flags
184 */
185 #if CE_EXTENDED_FLAGS & 0x803FFFFF
186 #error "CE_EXTENDED_FLAGS out of range"
187 #endif
188
189 #define S_ISSPARSEDIR(m) ((m) == S_IFDIR)
190
191 /* Forward structure decls */
192 struct pathspec;
193 struct child_process;
194 struct tree;
195
196 /*
197 * Copy the sha1 and stat state of a cache entry from one to
198 * another. But we never change the name, or the hash state!
199 */
200 static inline void copy_cache_entry(struct cache_entry *dst,
201 const struct cache_entry *src)
202 {
203 unsigned int state = dst->ce_flags & CE_HASHED;
204 int mem_pool_allocated = dst->mem_pool_allocated;
205
206 /* Don't copy hash chain and name */
207 memcpy(&dst->ce_stat_data, &src->ce_stat_data,
208 offsetof(struct cache_entry, name) -
209 offsetof(struct cache_entry, ce_stat_data));
210
211 /* Restore the hash state */
212 dst->ce_flags = (dst->ce_flags & ~CE_HASHED) | state;
213
214 /* Restore the mem_pool_allocated flag */
215 dst->mem_pool_allocated = mem_pool_allocated;
216 }
217
218 static inline unsigned create_ce_flags(unsigned stage)
219 {
220 return (stage << CE_STAGESHIFT);
221 }
222
223 #define ce_namelen(ce) ((ce)->ce_namelen)
224 #define ce_size(ce) cache_entry_size(ce_namelen(ce))
225 #define ce_stage(ce) ((CE_STAGEMASK & (ce)->ce_flags) >> CE_STAGESHIFT)
226 #define ce_uptodate(ce) ((ce)->ce_flags & CE_UPTODATE)
227 #define ce_skip_worktree(ce) ((ce)->ce_flags & CE_SKIP_WORKTREE)
228 #define ce_mark_uptodate(ce) ((ce)->ce_flags |= CE_UPTODATE)
229 #define ce_intent_to_add(ce) ((ce)->ce_flags & CE_INTENT_TO_ADD)
230
231 #define ce_permissions(mode) (((mode) & 0100) ? 0755 : 0644)
232 static inline unsigned int create_ce_mode(unsigned int mode)
233 {
234 if (S_ISLNK(mode))
235 return S_IFLNK;
236 if (S_ISSPARSEDIR(mode))
237 return S_IFDIR;
238 if (S_ISDIR(mode) || S_ISGITLINK(mode))
239 return S_IFGITLINK;
240 return S_IFREG | ce_permissions(mode);
241 }
242 static inline unsigned int ce_mode_from_stat(const struct cache_entry *ce,
243 unsigned int mode)
244 {
245 extern int trust_executable_bit, has_symlinks;
246 if (!has_symlinks && S_ISREG(mode) &&
247 ce && S_ISLNK(ce->ce_mode))
248 return ce->ce_mode;
249 if (!trust_executable_bit && S_ISREG(mode)) {
250 if (ce && S_ISREG(ce->ce_mode))
251 return ce->ce_mode;
252 return create_ce_mode(0666);
253 }
254 return create_ce_mode(mode);
255 }
256 static inline int ce_to_dtype(const struct cache_entry *ce)
257 {
258 unsigned ce_mode = ntohl(ce->ce_mode);
259 if (S_ISREG(ce_mode))
260 return DT_REG;
261 else if (S_ISDIR(ce_mode) || S_ISGITLINK(ce_mode))
262 return DT_DIR;
263 else if (S_ISLNK(ce_mode))
264 return DT_LNK;
265 else
266 return DT_UNKNOWN;
267 }
268 static inline unsigned int canon_mode(unsigned int mode)
269 {
270 if (S_ISREG(mode))
271 return S_IFREG | ce_permissions(mode);
272 if (S_ISLNK(mode))
273 return S_IFLNK;
274 if (S_ISDIR(mode))
275 return S_IFDIR;
276 return S_IFGITLINK;
277 }
278
279 static inline int ce_path_match(struct index_state *istate,
280 const struct cache_entry *ce,
281 const struct pathspec *pathspec,
282 char *seen)
283 {
284 return match_pathspec(istate, pathspec, ce->name, ce_namelen(ce), 0, seen,
285 S_ISDIR(ce->ce_mode) || S_ISGITLINK(ce->ce_mode));
286 }
287
288 #define cache_entry_size(len) (offsetof(struct cache_entry,name) + (len) + 1)
289
290 #define SOMETHING_CHANGED (1 << 0) /* unclassified changes go here */
291 #define CE_ENTRY_CHANGED (1 << 1)
292 #define CE_ENTRY_REMOVED (1 << 2)
293 #define CE_ENTRY_ADDED (1 << 3)
294 #define RESOLVE_UNDO_CHANGED (1 << 4)
295 #define CACHE_TREE_CHANGED (1 << 5)
296 #define SPLIT_INDEX_ORDERED (1 << 6)
297 #define UNTRACKED_CHANGED (1 << 7)
298 #define FSMONITOR_CHANGED (1 << 8)
299
300 struct split_index;
301 struct untracked_cache;
302 struct progress;
303 struct pattern_list;
304
305 enum sparse_index_mode {
306 /*
307 * There are no sparse directories in the index at all.
308 *
309 * Repositories that don't use cone-mode sparse-checkout will
310 * always have their indexes in this mode.
311 */
312 INDEX_EXPANDED = 0,
313
314 /*
315 * The index has already been collapsed to sparse directories
316 * whereever possible.
317 */
318 INDEX_COLLAPSED,
319
320 /*
321 * The sparse directories that exist are outside the
322 * sparse-checkout boundary, but it is possible that some file
323 * entries could collapse to sparse directory entries.
324 */
325 INDEX_PARTIALLY_SPARSE,
326 };
327
328 struct index_state {
329 struct cache_entry **cache;
330 unsigned int version;
331 unsigned int cache_nr, cache_alloc, cache_changed;
332 struct string_list *resolve_undo;
333 struct cache_tree *cache_tree;
334 struct split_index *split_index;
335 struct cache_time timestamp;
336 unsigned name_hash_initialized : 1,
337 initialized : 1,
338 drop_cache_tree : 1,
339 updated_workdir : 1,
340 updated_skipworktree : 1,
341 fsmonitor_has_run_once : 1;
342 enum sparse_index_mode sparse_index;
343 struct hashmap name_hash;
344 struct hashmap dir_hash;
345 struct object_id oid;
346 struct untracked_cache *untracked;
347 char *fsmonitor_last_update;
348 struct ewah_bitmap *fsmonitor_dirty;
349 struct mem_pool *ce_mem_pool;
350 struct progress *progress;
351 struct repository *repo;
352 struct pattern_list *sparse_checkout_patterns;
353 };
354
355 /**
356 * A "struct index_state istate" must be initialized with
357 * INDEX_STATE_INIT or the corresponding index_state_init().
358 *
359 * If the variable won't be used again, use release_index() to free()
360 * its resources. If it needs to be used again use discard_index(),
361 * which does the same thing, but will use use index_state_init() at
362 * the end. The discard_index() will use its own "istate->repo" as the
363 * "r" argument to index_state_init() in that case.
364 */
365 #define INDEX_STATE_INIT(r) { \
366 .repo = (r), \
367 }
368 void index_state_init(struct index_state *istate, struct repository *r);
369 void release_index(struct index_state *istate);
370
371 /* Name hashing */
372 int test_lazy_init_name_hash(struct index_state *istate, int try_threaded);
373 void add_name_hash(struct index_state *istate, struct cache_entry *ce);
374 void remove_name_hash(struct index_state *istate, struct cache_entry *ce);
375 void free_name_hash(struct index_state *istate);
376
377 /* Cache entry creation and cleanup */
378
379 /*
380 * Create cache_entry intended for use in the specified index. Caller
381 * is responsible for discarding the cache_entry with
382 * `discard_cache_entry`.
383 */
384 struct cache_entry *make_cache_entry(struct index_state *istate,
385 unsigned int mode,
386 const struct object_id *oid,
387 const char *path,
388 int stage,
389 unsigned int refresh_options);
390
391 struct cache_entry *make_empty_cache_entry(struct index_state *istate,
392 size_t name_len);
393
394 /*
395 * Create a cache_entry that is not intended to be added to an index. If
396 * `ce_mem_pool` is not NULL, the entry is allocated within the given memory
397 * pool. Caller is responsible for discarding "loose" entries with
398 * `discard_cache_entry()` and the memory pool with
399 * `mem_pool_discard(ce_mem_pool, should_validate_cache_entries())`.
400 */
401 struct cache_entry *make_transient_cache_entry(unsigned int mode,
402 const struct object_id *oid,
403 const char *path,
404 int stage,
405 struct mem_pool *ce_mem_pool);
406
407 struct cache_entry *make_empty_transient_cache_entry(size_t len,
408 struct mem_pool *ce_mem_pool);
409
410 /*
411 * Discard cache entry.
412 */
413 void discard_cache_entry(struct cache_entry *ce);
414
415 /*
416 * Check configuration if we should perform extra validation on cache
417 * entries.
418 */
419 int should_validate_cache_entries(void);
420
421 /*
422 * Duplicate a cache_entry. Allocate memory for the new entry from a
423 * memory_pool. Takes into account cache_entry fields that are meant
424 * for managing the underlying memory allocation of the cache_entry.
425 */
426 struct cache_entry *dup_cache_entry(const struct cache_entry *ce, struct index_state *istate);
427
428 /*
429 * Validate the cache entries in the index. This is an internal
430 * consistency check that the cache_entry structs are allocated from
431 * the expected memory pool.
432 */
433 void validate_cache_entries(const struct index_state *istate);
434
435 /*
436 * Bulk prefetch all missing cache entries that are not GITLINKs and that match
437 * the given predicate. This function should only be called if
438 * has_promisor_remote() returns true.
439 */
440 typedef int (*must_prefetch_predicate)(const struct cache_entry *);
441 void prefetch_cache_entries(const struct index_state *istate,
442 must_prefetch_predicate must_prefetch);
443
444 #ifdef USE_THE_INDEX_VARIABLE
445 extern struct index_state the_index;
446 #endif
447
448 static inline enum object_type object_type(unsigned int mode)
449 {
450 return S_ISDIR(mode) ? OBJ_TREE :
451 S_ISGITLINK(mode) ? OBJ_COMMIT :
452 OBJ_BLOB;
453 }
454
455 /* Double-check local_repo_env below if you add to this list. */
456 #define GIT_DIR_ENVIRONMENT "GIT_DIR"
457 #define GIT_COMMON_DIR_ENVIRONMENT "GIT_COMMON_DIR"
458 #define GIT_NAMESPACE_ENVIRONMENT "GIT_NAMESPACE"
459 #define GIT_WORK_TREE_ENVIRONMENT "GIT_WORK_TREE"
460 #define GIT_PREFIX_ENVIRONMENT "GIT_PREFIX"
461 #define DEFAULT_GIT_DIR_ENVIRONMENT ".git"
462 #define DB_ENVIRONMENT "GIT_OBJECT_DIRECTORY"
463 #define INDEX_ENVIRONMENT "GIT_INDEX_FILE"
464 #define GRAFT_ENVIRONMENT "GIT_GRAFT_FILE"
465 #define GIT_SHALLOW_FILE_ENVIRONMENT "GIT_SHALLOW_FILE"
466 #define TEMPLATE_DIR_ENVIRONMENT "GIT_TEMPLATE_DIR"
467 #define CONFIG_ENVIRONMENT "GIT_CONFIG"
468 #define CONFIG_DATA_ENVIRONMENT "GIT_CONFIG_PARAMETERS"
469 #define CONFIG_COUNT_ENVIRONMENT "GIT_CONFIG_COUNT"
470 #define EXEC_PATH_ENVIRONMENT "GIT_EXEC_PATH"
471 #define CEILING_DIRECTORIES_ENVIRONMENT "GIT_CEILING_DIRECTORIES"
472 #define NO_REPLACE_OBJECTS_ENVIRONMENT "GIT_NO_REPLACE_OBJECTS"
473 #define GIT_REPLACE_REF_BASE_ENVIRONMENT "GIT_REPLACE_REF_BASE"
474 #define GITATTRIBUTES_FILE ".gitattributes"
475 #define INFOATTRIBUTES_FILE "info/attributes"
476 #define ATTRIBUTE_MACRO_PREFIX "[attr]"
477 #define GITMODULES_FILE ".gitmodules"
478 #define GITMODULES_INDEX ":.gitmodules"
479 #define GITMODULES_HEAD "HEAD:.gitmodules"
480 #define GIT_NOTES_REF_ENVIRONMENT "GIT_NOTES_REF"
481 #define GIT_NOTES_DEFAULT_REF "refs/notes/commits"
482 #define GIT_NOTES_DISPLAY_REF_ENVIRONMENT "GIT_NOTES_DISPLAY_REF"
483 #define GIT_NOTES_REWRITE_REF_ENVIRONMENT "GIT_NOTES_REWRITE_REF"
484 #define GIT_NOTES_REWRITE_MODE_ENVIRONMENT "GIT_NOTES_REWRITE_MODE"
485 #define GIT_LITERAL_PATHSPECS_ENVIRONMENT "GIT_LITERAL_PATHSPECS"
486 #define GIT_GLOB_PATHSPECS_ENVIRONMENT "GIT_GLOB_PATHSPECS"
487 #define GIT_NOGLOB_PATHSPECS_ENVIRONMENT "GIT_NOGLOB_PATHSPECS"
488 #define GIT_ICASE_PATHSPECS_ENVIRONMENT "GIT_ICASE_PATHSPECS"
489 #define GIT_QUARANTINE_ENVIRONMENT "GIT_QUARANTINE_PATH"
490 #define GIT_OPTIONAL_LOCKS_ENVIRONMENT "GIT_OPTIONAL_LOCKS"
491 #define GIT_TEXT_DOMAIN_DIR_ENVIRONMENT "GIT_TEXTDOMAINDIR"
492
493 /*
494 * Environment variable used in handshaking the wire protocol.
495 * Contains a colon ':' separated list of keys with optional values
496 * 'key[=value]'. Presence of unknown keys and values must be
497 * ignored.
498 */
499 #define GIT_PROTOCOL_ENVIRONMENT "GIT_PROTOCOL"
500 /* HTTP header used to handshake the wire protocol */
501 #define GIT_PROTOCOL_HEADER "Git-Protocol"
502
503 /*
504 * This environment variable is expected to contain a boolean indicating
505 * whether we should or should not treat:
506 *
507 * GIT_DIR=foo.git git ...
508 *
509 * as if GIT_WORK_TREE=. was given. It's not expected that users will make use
510 * of this, but we use it internally to communicate to sub-processes that we
511 * are in a bare repo. If not set, defaults to true.
512 */
513 #define GIT_IMPLICIT_WORK_TREE_ENVIRONMENT "GIT_IMPLICIT_WORK_TREE"
514
515 /*
516 * Repository-local GIT_* environment variables; these will be cleared
517 * when git spawns a sub-process that runs inside another repository.
518 * The array is NULL-terminated, which makes it easy to pass in the "env"
519 * parameter of a run-command invocation, or to do a simple walk.
520 */
521 extern const char * const local_repo_env[];
522
523 void setup_git_env(const char *git_dir);
524
525 /*
526 * Returns true iff we have a configured git repository (either via
527 * setup_git_directory, or in the environment via $GIT_DIR).
528 */
529 int have_git_dir(void);
530
531 extern int is_bare_repository_cfg;
532 int is_bare_repository(void);
533 int is_inside_git_dir(void);
534 extern char *git_work_tree_cfg;
535 int is_inside_work_tree(void);
536 const char *get_git_dir(void);
537 const char *get_git_common_dir(void);
538 const char *get_object_directory(void);
539 char *get_index_file(void);
540 char *get_graft_file(struct repository *r);
541 void set_git_dir(const char *path, int make_realpath);
542 int get_common_dir_noenv(struct strbuf *sb, const char *gitdir);
543 int get_common_dir(struct strbuf *sb, const char *gitdir);
544 const char *get_git_namespace(void);
545 const char *strip_namespace(const char *namespaced_ref);
546 const char *get_git_work_tree(void);
547
548 /*
549 * Return true if the given path is a git directory; note that this _just_
550 * looks at the directory itself. If you want to know whether "foo/.git"
551 * is a repository, you must feed that path, not just "foo".
552 */
553 int is_git_directory(const char *path);
554
555 /*
556 * Return 1 if the given path is the root of a git repository or
557 * submodule, else 0. Will not return 1 for bare repositories with the
558 * exception of creating a bare repository in "foo/.git" and calling
559 * is_git_repository("foo").
560 *
561 * If we run into read errors, we err on the side of saying "yes, it is",
562 * as we usually consider sub-repos precious, and would prefer to err on the
563 * side of not disrupting or deleting them.
564 */
565 int is_nonbare_repository_dir(struct strbuf *path);
566
567 #define READ_GITFILE_ERR_STAT_FAILED 1
568 #define READ_GITFILE_ERR_NOT_A_FILE 2
569 #define READ_GITFILE_ERR_OPEN_FAILED 3
570 #define READ_GITFILE_ERR_READ_FAILED 4
571 #define READ_GITFILE_ERR_INVALID_FORMAT 5
572 #define READ_GITFILE_ERR_NO_PATH 6
573 #define READ_GITFILE_ERR_NOT_A_REPO 7
574 #define READ_GITFILE_ERR_TOO_LARGE 8
575 void read_gitfile_error_die(int error_code, const char *path, const char *dir);
576 const char *read_gitfile_gently(const char *path, int *return_error_code);
577 #define read_gitfile(path) read_gitfile_gently((path), NULL)
578 const char *resolve_gitdir_gently(const char *suspect, int *return_error_code);
579 #define resolve_gitdir(path) resolve_gitdir_gently((path), NULL)
580
581 void set_git_work_tree(const char *tree);
582
583 #define ALTERNATE_DB_ENVIRONMENT "GIT_ALTERNATE_OBJECT_DIRECTORIES"
584
585 void setup_work_tree(void);
586 /*
587 * Find the commondir and gitdir of the repository that contains the current
588 * working directory, without changing the working directory or other global
589 * state. The result is appended to commondir and gitdir. If the discovered
590 * gitdir does not correspond to a worktree, then 'commondir' and 'gitdir' will
591 * both have the same result appended to the buffer. The return value is
592 * either 0 upon success and non-zero if no repository was found.
593 */
594 int discover_git_directory(struct strbuf *commondir,
595 struct strbuf *gitdir);
596 const char *setup_git_directory_gently(int *);
597 const char *setup_git_directory(void);
598 char *prefix_path(const char *prefix, int len, const char *path);
599 char *prefix_path_gently(const char *prefix, int len, int *remaining, const char *path);
600
601 int check_filename(const char *prefix, const char *name);
602 void verify_filename(const char *prefix,
603 const char *name,
604 int diagnose_misspelt_rev);
605 void verify_non_filename(const char *prefix, const char *name);
606 int path_inside_repo(const char *prefix, const char *path);
607
608 #define INIT_DB_QUIET 0x0001
609 #define INIT_DB_EXIST_OK 0x0002
610
611 int init_db(const char *git_dir, const char *real_git_dir,
612 const char *template_dir, int hash_algo,
613 const char *initial_branch, unsigned int flags);
614 void initialize_repository_version(int hash_algo, int reinit);
615
616 void sanitize_stdfds(void);
617 int daemonize(void);
618
619 /* Initialize and use the cache information */
620 struct lock_file;
621 void preload_index(struct index_state *index,
622 const struct pathspec *pathspec,
623 unsigned int refresh_flags);
624 int do_read_index(struct index_state *istate, const char *path,
625 int must_exist); /* for testting only! */
626 int read_index_from(struct index_state *, const char *path,
627 const char *gitdir);
628 int is_index_unborn(struct index_state *);
629
630 void ensure_full_index(struct index_state *istate);
631
632 /* For use with `write_locked_index()`. */
633 #define COMMIT_LOCK (1 << 0)
634 #define SKIP_IF_UNCHANGED (1 << 1)
635
636 /*
637 * Write the index while holding an already-taken lock. Close the lock,
638 * and if `COMMIT_LOCK` is given, commit it.
639 *
640 * Unless a split index is in use, write the index into the lockfile.
641 *
642 * With a split index, write the shared index to a temporary file,
643 * adjust its permissions and rename it into place, then write the
644 * split index to the lockfile. If the temporary file for the shared
645 * index cannot be created, fall back to the behavior described in
646 * the previous paragraph.
647 *
648 * With `COMMIT_LOCK`, the lock is always committed or rolled back.
649 * Without it, the lock is closed, but neither committed nor rolled
650 * back.
651 *
652 * If `SKIP_IF_UNCHANGED` is given and the index is unchanged, nothing
653 * is written (and the lock is rolled back if `COMMIT_LOCK` is given).
654 */
655 int write_locked_index(struct index_state *, struct lock_file *lock, unsigned flags);
656
657 void discard_index(struct index_state *);
658 void move_index_extensions(struct index_state *dst, struct index_state *src);
659 int unmerged_index(const struct index_state *);
660
661 /**
662 * Returns 1 if istate differs from tree, 0 otherwise. If tree is NULL,
663 * compares istate to HEAD. If tree is NULL and on an unborn branch,
664 * returns 1 if there are entries in istate, 0 otherwise. If an strbuf is
665 * provided, the space-separated list of files that differ will be appended
666 * to it.
667 */
668 int repo_index_has_changes(struct repository *repo,
669 struct tree *tree,
670 struct strbuf *sb);
671
672 int verify_path(const char *path, unsigned mode);
673 int strcmp_offset(const char *s1, const char *s2, size_t *first_change);
674 int index_dir_exists(struct index_state *istate, const char *name, int namelen);
675 void adjust_dirname_case(struct index_state *istate, char *name);
676 struct cache_entry *index_file_exists(struct index_state *istate, const char *name, int namelen, int igncase);
677
678 /*
679 * Searches for an entry defined by name and namelen in the given index.
680 * If the return value is positive (including 0) it is the position of an
681 * exact match. If the return value is negative, the negated value minus 1
682 * is the position where the entry would be inserted.
683 * Example: The current index consists of these files and its stages:
684 *
685 * b#0, d#0, f#1, f#3
686 *
687 * index_name_pos(&index, "a", 1) -> -1
688 * index_name_pos(&index, "b", 1) -> 0
689 * index_name_pos(&index, "c", 1) -> -2
690 * index_name_pos(&index, "d", 1) -> 1
691 * index_name_pos(&index, "e", 1) -> -3
692 * index_name_pos(&index, "f", 1) -> -3
693 * index_name_pos(&index, "g", 1) -> -5
694 */
695 int index_name_pos(struct index_state *, const char *name, int namelen);
696
697 /*
698 * Like index_name_pos, returns the position of an entry of the given name in
699 * the index if one exists, otherwise returns a negative value where the negated
700 * value minus 1 is the position where the index entry would be inserted. Unlike
701 * index_name_pos, however, a sparse index is not expanded to find an entry
702 * inside a sparse directory.
703 */
704 int index_name_pos_sparse(struct index_state *, const char *name, int namelen);
705
706 /*
707 * Determines whether an entry with the given name exists within the
708 * given index. The return value is 1 if an exact match is found, otherwise
709 * it is 0. Note that, unlike index_name_pos, this function does not expand
710 * the index if it is sparse. If an item exists within the full index but it
711 * is contained within a sparse directory (and not in the sparse index), 0 is
712 * returned.
713 */
714 int index_entry_exists(struct index_state *, const char *name, int namelen);
715
716 /*
717 * Some functions return the negative complement of an insert position when a
718 * precise match was not found but a position was found where the entry would
719 * need to be inserted. This helper protects that logic from any integer
720 * underflow.
721 */
722 static inline int index_pos_to_insert_pos(uintmax_t pos)
723 {
724 if (pos > INT_MAX)
725 die("overflow: -1 - %"PRIuMAX, pos);
726 return -1 - (int)pos;
727 }
728
729 #define ADD_CACHE_OK_TO_ADD 1 /* Ok to add */
730 #define ADD_CACHE_OK_TO_REPLACE 2 /* Ok to replace file/directory */
731 #define ADD_CACHE_SKIP_DFCHECK 4 /* Ok to skip DF conflict checks */
732 #define ADD_CACHE_JUST_APPEND 8 /* Append only */
733 #define ADD_CACHE_NEW_ONLY 16 /* Do not replace existing ones */
734 #define ADD_CACHE_KEEP_CACHE_TREE 32 /* Do not invalidate cache-tree */
735 #define ADD_CACHE_RENORMALIZE 64 /* Pass along HASH_RENORMALIZE */
736 int add_index_entry(struct index_state *, struct cache_entry *ce, int option);
737 void rename_index_entry_at(struct index_state *, int pos, const char *new_name);
738
739 /* Remove entry, return true if there are more entries to go. */
740 int remove_index_entry_at(struct index_state *, int pos);
741
742 void remove_marked_cache_entries(struct index_state *istate, int invalidate);
743 int remove_file_from_index(struct index_state *, const char *path);
744 #define ADD_CACHE_VERBOSE 1
745 #define ADD_CACHE_PRETEND 2
746 #define ADD_CACHE_IGNORE_ERRORS 4
747 #define ADD_CACHE_IGNORE_REMOVAL 8
748 #define ADD_CACHE_INTENT 16
749 /*
750 * These two are used to add the contents of the file at path
751 * to the index, marking the working tree up-to-date by storing
752 * the cached stat info in the resulting cache entry. A caller
753 * that has already run lstat(2) on the path can call
754 * add_to_index(), and all others can call add_file_to_index();
755 * the latter will do necessary lstat(2) internally before
756 * calling the former.
757 */
758 int add_to_index(struct index_state *, const char *path, struct stat *, int flags);
759 int add_file_to_index(struct index_state *, const char *path, int flags);
760
761 int chmod_index_entry(struct index_state *, struct cache_entry *ce, char flip);
762 int ce_same_name(const struct cache_entry *a, const struct cache_entry *b);
763 void set_object_name_for_intent_to_add_entry(struct cache_entry *ce);
764 int index_name_is_other(struct index_state *, const char *, int);
765 void *read_blob_data_from_index(struct index_state *, const char *, unsigned long *);
766
767 /* do stat comparison even if CE_VALID is true */
768 #define CE_MATCH_IGNORE_VALID 01
769 /* do not check the contents but report dirty on racily-clean entries */
770 #define CE_MATCH_RACY_IS_DIRTY 02
771 /* do stat comparison even if CE_SKIP_WORKTREE is true */
772 #define CE_MATCH_IGNORE_SKIP_WORKTREE 04
773 /* ignore non-existent files during stat update */
774 #define CE_MATCH_IGNORE_MISSING 0x08
775 /* enable stat refresh */
776 #define CE_MATCH_REFRESH 0x10
777 /* don't refresh_fsmonitor state or do stat comparison even if CE_FSMONITOR_VALID is true */
778 #define CE_MATCH_IGNORE_FSMONITOR 0X20
779 int is_racy_timestamp(const struct index_state *istate,
780 const struct cache_entry *ce);
781 int has_racy_timestamp(struct index_state *istate);
782 int ie_match_stat(struct index_state *, const struct cache_entry *, struct stat *, unsigned int);
783 int ie_modified(struct index_state *, const struct cache_entry *, struct stat *, unsigned int);
784
785 #define HASH_WRITE_OBJECT 1
786 #define HASH_FORMAT_CHECK 2
787 #define HASH_RENORMALIZE 4
788 #define HASH_SILENT 8
789 int index_fd(struct index_state *istate, struct object_id *oid, int fd, struct stat *st, enum object_type type, const char *path, unsigned flags);
790 int index_path(struct index_state *istate, struct object_id *oid, const char *path, struct stat *st, unsigned flags);
791
792 /*
793 * Record to sd the data from st that we use to check whether a file
794 * might have changed.
795 */
796 void fill_stat_data(struct stat_data *sd, struct stat *st);
797
798 /*
799 * Return 0 if st is consistent with a file not having been changed
800 * since sd was filled. If there are differences, return a
801 * combination of MTIME_CHANGED, CTIME_CHANGED, OWNER_CHANGED,
802 * INODE_CHANGED, and DATA_CHANGED.
803 */
804 int match_stat_data(const struct stat_data *sd, struct stat *st);
805 int match_stat_data_racy(const struct index_state *istate,
806 const struct stat_data *sd, struct stat *st);
807
808 void fill_stat_cache_info(struct index_state *istate, struct cache_entry *ce, struct stat *st);
809
810 #define REFRESH_REALLY (1 << 0) /* ignore_valid */
811 #define REFRESH_UNMERGED (1 << 1) /* allow unmerged */
812 #define REFRESH_QUIET (1 << 2) /* be quiet about it */
813 #define REFRESH_IGNORE_MISSING (1 << 3) /* ignore non-existent */
814 #define REFRESH_IGNORE_SUBMODULES (1 << 4) /* ignore submodules */
815 #define REFRESH_IN_PORCELAIN (1 << 5) /* user friendly output, not "needs update" */
816 #define REFRESH_PROGRESS (1 << 6) /* show progress bar if stderr is tty */
817 #define REFRESH_IGNORE_SKIP_WORKTREE (1 << 7) /* ignore skip_worktree entries */
818 int refresh_index(struct index_state *, unsigned int flags, const struct pathspec *pathspec, char *seen, const char *header_msg);
819 /*
820 * Refresh the index and write it to disk.
821 *
822 * 'refresh_flags' is passed directly to 'refresh_index()', while
823 * 'COMMIT_LOCK | write_flags' is passed to 'write_locked_index()', so
824 * the lockfile is always either committed or rolled back.
825 *
826 * If 'gentle' is passed, errors locking the index are ignored.
827 *
828 * Return 1 if refreshing the index returns an error, -1 if writing
829 * the index to disk fails, 0 on success.
830 *
831 * Note that if refreshing the index returns an error, we still write
832 * out the index (unless locking fails).
833 */
834 int repo_refresh_and_write_index(struct repository*, unsigned int refresh_flags, unsigned int write_flags, int gentle, const struct pathspec *, char *seen, const char *header_msg);
835
836 struct cache_entry *refresh_cache_entry(struct index_state *, struct cache_entry *, unsigned int);
837
838 void set_alternate_index_output(const char *);
839
840 extern int verify_index_checksum;
841 extern int verify_ce_order;
842
843 /* Environment bits from configuration mechanism */
844 extern int trust_executable_bit;
845 extern int trust_ctime;
846 extern int check_stat;
847 extern int quote_path_fully;
848 extern int has_symlinks;
849 extern int minimum_abbrev, default_abbrev;
850 extern int ignore_case;
851 extern int assume_unchanged;
852 extern int prefer_symlink_refs;
853 extern int warn_ambiguous_refs;
854 extern int warn_on_object_refname_ambiguity;
855 extern char *apply_default_whitespace;
856 extern char *apply_default_ignorewhitespace;
857 extern const char *git_attributes_file;
858 extern const char *git_hooks_path;
859 extern int zlib_compression_level;
860 extern int pack_compression_level;
861 extern size_t packed_git_window_size;
862 extern size_t packed_git_limit;
863 extern size_t delta_base_cache_limit;
864 extern unsigned long big_file_threshold;
865 extern unsigned long pack_size_limit_cfg;
866
867 /*
868 * Accessors for the core.sharedrepository config which lazy-load the value
869 * from the config (if not already set). The "reset" function can be
870 * used to unset "set" or cached value, meaning that the value will be loaded
871 * fresh from the config file on the next call to get_shared_repository().
872 */
873 void set_shared_repository(int value);
874 int get_shared_repository(void);
875 void reset_shared_repository(void);
876
877 /*
878 * These values are used to help identify parts of a repository to fsync.
879 * FSYNC_COMPONENT_NONE identifies data that will not be a persistent part of the
880 * repository and so shouldn't be fsynced.
881 */
882 enum fsync_component {
883 FSYNC_COMPONENT_NONE,
884 FSYNC_COMPONENT_LOOSE_OBJECT = 1 << 0,
885 FSYNC_COMPONENT_PACK = 1 << 1,
886 FSYNC_COMPONENT_PACK_METADATA = 1 << 2,
887 FSYNC_COMPONENT_COMMIT_GRAPH = 1 << 3,
888 FSYNC_COMPONENT_INDEX = 1 << 4,
889 FSYNC_COMPONENT_REFERENCE = 1 << 5,
890 };
891
892 #define FSYNC_COMPONENTS_OBJECTS (FSYNC_COMPONENT_LOOSE_OBJECT | \
893 FSYNC_COMPONENT_PACK)
894
895 #define FSYNC_COMPONENTS_DERIVED_METADATA (FSYNC_COMPONENT_PACK_METADATA | \
896 FSYNC_COMPONENT_COMMIT_GRAPH)
897
898 #define FSYNC_COMPONENTS_DEFAULT ((FSYNC_COMPONENTS_OBJECTS | \
899 FSYNC_COMPONENTS_DERIVED_METADATA) & \
900 ~FSYNC_COMPONENT_LOOSE_OBJECT)
901
902 #define FSYNC_COMPONENTS_COMMITTED (FSYNC_COMPONENTS_OBJECTS | \
903 FSYNC_COMPONENT_REFERENCE)
904
905 #define FSYNC_COMPONENTS_ADDED (FSYNC_COMPONENTS_COMMITTED | \
906 FSYNC_COMPONENT_INDEX)
907
908 #define FSYNC_COMPONENTS_ALL (FSYNC_COMPONENT_LOOSE_OBJECT | \
909 FSYNC_COMPONENT_PACK | \
910 FSYNC_COMPONENT_PACK_METADATA | \
911 FSYNC_COMPONENT_COMMIT_GRAPH | \
912 FSYNC_COMPONENT_INDEX | \
913 FSYNC_COMPONENT_REFERENCE)
914
915 #ifndef FSYNC_COMPONENTS_PLATFORM_DEFAULT
916 #define FSYNC_COMPONENTS_PLATFORM_DEFAULT FSYNC_COMPONENTS_DEFAULT
917 #endif
918
919 /*
920 * A bitmask indicating which components of the repo should be fsynced.
921 */
922 extern enum fsync_component fsync_components;
923 extern int fsync_object_files;
924 extern int use_fsync;
925
926 enum fsync_method {
927 FSYNC_METHOD_FSYNC,
928 FSYNC_METHOD_WRITEOUT_ONLY,
929 FSYNC_METHOD_BATCH,
930 };
931
932 extern enum fsync_method fsync_method;
933 extern int core_preload_index;
934 extern int precomposed_unicode;
935 extern int protect_hfs;
936 extern int protect_ntfs;
937
938 extern int core_apply_sparse_checkout;
939 extern int core_sparse_checkout_cone;
940 extern int sparse_expect_files_outside_of_patterns;
941
942 /*
943 * Returns the boolean value of $GIT_OPTIONAL_LOCKS (or the default value).
944 */
945 int use_optional_locks(void);
946
947 enum log_refs_config {
948 LOG_REFS_UNSET = -1,
949 LOG_REFS_NONE = 0,
950 LOG_REFS_NORMAL,
951 LOG_REFS_ALWAYS
952 };
953 extern enum log_refs_config log_all_ref_updates;
954
955 enum rebase_setup_type {
956 AUTOREBASE_NEVER = 0,
957 AUTOREBASE_LOCAL,
958 AUTOREBASE_REMOTE,
959 AUTOREBASE_ALWAYS
960 };
961
962 enum push_default_type {
963 PUSH_DEFAULT_NOTHING = 0,
964 PUSH_DEFAULT_MATCHING,
965 PUSH_DEFAULT_SIMPLE,
966 PUSH_DEFAULT_UPSTREAM,
967 PUSH_DEFAULT_CURRENT,
968 PUSH_DEFAULT_UNSPECIFIED
969 };
970
971 extern enum rebase_setup_type autorebase;
972 extern enum push_default_type push_default;
973
974 enum object_creation_mode {
975 OBJECT_CREATION_USES_HARDLINKS = 0,
976 OBJECT_CREATION_USES_RENAMES = 1
977 };
978
979 extern enum object_creation_mode object_creation_mode;
980
981 extern char *notes_ref_name;
982
983 extern int grafts_replace_parents;
984
985 /*
986 * GIT_REPO_VERSION is the version we write by default. The
987 * _READ variant is the highest number we know how to
988 * handle.
989 */
990 #define GIT_REPO_VERSION 0
991 #define GIT_REPO_VERSION_READ 1
992 extern int repository_format_precious_objects;
993 extern int repository_format_worktree_config;
994
995 /*
996 * You _have_ to initialize a `struct repository_format` using
997 * `= REPOSITORY_FORMAT_INIT` before calling `read_repository_format()`.
998 */
999 struct repository_format {
1000 int version;
1001 int precious_objects;
1002 char *partial_clone; /* value of extensions.partialclone */
1003 int worktree_config;
1004 int is_bare;
1005 int hash_algo;
1006 int sparse_index;
1007 char *work_tree;
1008 struct string_list unknown_extensions;
1009 struct string_list v1_only_extensions;
1010 };
1011
1012 /*
1013 * Always use this to initialize a `struct repository_format`
1014 * to a well-defined, default state before calling
1015 * `read_repository()`.
1016 */
1017 #define REPOSITORY_FORMAT_INIT \
1018 { \
1019 .version = -1, \
1020 .is_bare = -1, \
1021 .hash_algo = GIT_HASH_SHA1, \
1022 .unknown_extensions = STRING_LIST_INIT_DUP, \
1023 .v1_only_extensions = STRING_LIST_INIT_DUP, \
1024 }
1025
1026 /*
1027 * Read the repository format characteristics from the config file "path" into
1028 * "format" struct. Returns the numeric version. On error, or if no version is
1029 * found in the configuration, -1 is returned, format->version is set to -1,
1030 * and all other fields in the struct are set to the default configuration
1031 * (REPOSITORY_FORMAT_INIT). Always initialize the struct using
1032 * REPOSITORY_FORMAT_INIT before calling this function.
1033 */
1034 int read_repository_format(struct repository_format *format, const char *path);
1035
1036 /*
1037 * Free the memory held onto by `format`, but not the struct itself.
1038 * (No need to use this after `read_repository_format()` fails.)
1039 */
1040 void clear_repository_format(struct repository_format *format);
1041
1042 /*
1043 * Verify that the repository described by repository_format is something we
1044 * can read. If it is, return 0. Otherwise, return -1, and "err" will describe
1045 * any errors encountered.
1046 */
1047 int verify_repository_format(const struct repository_format *format,
1048 struct strbuf *err);
1049
1050 /*
1051 * Check the repository format version in the path found in get_git_dir(),
1052 * and die if it is a version we don't understand. Generally one would
1053 * set_git_dir() before calling this, and use it only for "are we in a valid
1054 * repo?".
1055 *
1056 * If successful and fmt is not NULL, fill fmt with data.
1057 */
1058 void check_repository_format(struct repository_format *fmt);
1059
1060 #define MTIME_CHANGED 0x0001
1061 #define CTIME_CHANGED 0x0002
1062 #define OWNER_CHANGED 0x0004
1063 #define MODE_CHANGED 0x0008
1064 #define INODE_CHANGED 0x0010
1065 #define DATA_CHANGED 0x0020
1066 #define TYPE_CHANGED 0x0040
1067
1068 /*
1069 * Return an abbreviated sha1 unique within this repository's object database.
1070 * The result will be at least `len` characters long, and will be NUL
1071 * terminated.
1072 *
1073 * The non-`_r` version returns a static buffer which remains valid until 4
1074 * more calls to find_unique_abbrev are made.
1075 *
1076 * The `_r` variant writes to a buffer supplied by the caller, which must be at
1077 * least `GIT_MAX_HEXSZ + 1` bytes. The return value is the number of bytes
1078 * written (excluding the NUL terminator).
1079 *
1080 * Note that while this version avoids the static buffer, it is not fully
1081 * reentrant, as it calls into other non-reentrant git code.
1082 */
1083 const char *repo_find_unique_abbrev(struct repository *r, const struct object_id *oid, int len);
1084 #define find_unique_abbrev(oid, len) repo_find_unique_abbrev(the_repository, oid, len)
1085 int repo_find_unique_abbrev_r(struct repository *r, char *hex, const struct object_id *oid, int len);
1086 #define find_unique_abbrev_r(hex, oid, len) repo_find_unique_abbrev_r(the_repository, hex, oid, len)
1087
1088 /*
1089 * NOTE NOTE NOTE!!
1090 *
1091 * PERM_UMASK, OLD_PERM_GROUP and OLD_PERM_EVERYBODY enumerations must
1092 * not be changed. Old repositories have core.sharedrepository written in
1093 * numeric format, and therefore these values are preserved for compatibility
1094 * reasons.
1095 */
1096 enum sharedrepo {
1097 PERM_UMASK = 0,
1098 OLD_PERM_GROUP = 1,
1099 OLD_PERM_EVERYBODY = 2,
1100 PERM_GROUP = 0660,
1101 PERM_EVERYBODY = 0664
1102 };
1103 int git_config_perm(const char *var, const char *value);
1104
1105 /*
1106 * Create the directory containing the named path, using care to be
1107 * somewhat safe against races. Return one of the scld_error values to
1108 * indicate success/failure. On error, set errno to describe the
1109 * problem.
1110 *
1111 * SCLD_VANISHED indicates that one of the ancestor directories of the
1112 * path existed at one point during the function call and then
1113 * suddenly vanished, probably because another process pruned the
1114 * directory while we were working. To be robust against this kind of
1115 * race, callers might want to try invoking the function again when it
1116 * returns SCLD_VANISHED.
1117 *
1118 * safe_create_leading_directories() temporarily changes path while it
1119 * is working but restores it before returning.
1120 * safe_create_leading_directories_const() doesn't modify path, even
1121 * temporarily. Both these variants adjust the permissions of the
1122 * created directories to honor core.sharedRepository, so they are best
1123 * suited for files inside the git dir. For working tree files, use
1124 * safe_create_leading_directories_no_share() instead, as it ignores
1125 * the core.sharedRepository setting.
1126 */
1127 enum scld_error {
1128 SCLD_OK = 0,
1129 SCLD_FAILED = -1,
1130 SCLD_PERMS = -2,
1131 SCLD_EXISTS = -3,
1132 SCLD_VANISHED = -4
1133 };
1134 enum scld_error safe_create_leading_directories(char *path);
1135 enum scld_error safe_create_leading_directories_const(const char *path);
1136 enum scld_error safe_create_leading_directories_no_share(char *path);
1137
1138 int mkdir_in_gitdir(const char *path);
1139
1140 int git_open_cloexec(const char *name, int flags);
1141 #define git_open(name) git_open_cloexec(name, O_RDONLY)
1142
1143 /**
1144 * unpack_loose_header() initializes the data stream needed to unpack
1145 * a loose object header.
1146 *
1147 * Returns:
1148 *
1149 * - ULHR_OK on success
1150 * - ULHR_BAD on error
1151 * - ULHR_TOO_LONG if the header was too long
1152 *
1153 * It will only parse up to MAX_HEADER_LEN bytes unless an optional
1154 * "hdrbuf" argument is non-NULL. This is intended for use with
1155 * OBJECT_INFO_ALLOW_UNKNOWN_TYPE to extract the bad type for (error)
1156 * reporting. The full header will be extracted to "hdrbuf" for use
1157 * with parse_loose_header(), ULHR_TOO_LONG will still be returned
1158 * from this function to indicate that the header was too long.
1159 */
1160 enum unpack_loose_header_result {
1161 ULHR_OK,
1162 ULHR_BAD,
1163 ULHR_TOO_LONG,
1164 };
1165 enum unpack_loose_header_result unpack_loose_header(git_zstream *stream,
1166 unsigned char *map,
1167 unsigned long mapsize,
1168 void *buffer,
1169 unsigned long bufsiz,
1170 struct strbuf *hdrbuf);
1171
1172 /**
1173 * parse_loose_header() parses the starting "<type> <len>\0" of an
1174 * object. If it doesn't follow that format -1 is returned. To check
1175 * the validity of the <type> populate the "typep" in the "struct
1176 * object_info". It will be OBJ_BAD if the object type is unknown. The
1177 * parsed <len> can be retrieved via "oi->sizep", and from there
1178 * passed to unpack_loose_rest().
1179 */
1180 struct object_info;
1181 int parse_loose_header(const char *hdr, struct object_info *oi);
1182
1183 /**
1184 * With in-core object data in "buf", rehash it to make sure the
1185 * object name actually matches "oid" to detect object corruption.
1186 *
1187 * A negative value indicates an error, usually that the OID is not
1188 * what we expected, but it might also indicate another error.
1189 */
1190 int check_object_signature(struct repository *r, const struct object_id *oid,
1191 void *map, unsigned long size,
1192 enum object_type type);
1193
1194 /**
1195 * A streaming version of check_object_signature().
1196 * Try reading the object named with "oid" using
1197 * the streaming interface and rehash it to do the same.
1198 */
1199 int stream_object_signature(struct repository *r, const struct object_id *oid);
1200
1201 int finalize_object_file(const char *tmpfile, const char *filename);
1202
1203 /* Helper to check and "touch" a file */
1204 int check_and_freshen_file(const char *fn, int freshen);
1205
1206 /* Convert to/from hex/sha1 representation */
1207 #define MINIMUM_ABBREV minimum_abbrev
1208 #define DEFAULT_ABBREV default_abbrev
1209
1210 /* used when the code does not know or care what the default abbrev is */
1211 #define FALLBACK_DEFAULT_ABBREV 7
1212
1213 struct object_context {
1214 unsigned short mode;
1215 /*
1216 * symlink_path is only used by get_tree_entry_follow_symlinks,
1217 * and only for symlinks that point outside the repository.
1218 */
1219 struct strbuf symlink_path;
1220 /*
1221 * If GET_OID_RECORD_PATH is set, this will record path (if any)
1222 * found when resolving the name. The caller is responsible for
1223 * releasing the memory.
1224 */
1225 char *path;
1226 };
1227
1228 int repo_get_oid(struct repository *r, const char *str, struct object_id *oid);
1229 __attribute__((format (printf, 2, 3)))
1230 int get_oidf(struct object_id *oid, const char *fmt, ...);
1231 int repo_get_oid_commit(struct repository *r, const char *str, struct object_id *oid);
1232 int repo_get_oid_committish(struct repository *r, const char *str, struct object_id *oid);
1233 int repo_get_oid_tree(struct repository *r, const char *str, struct object_id *oid);
1234 int repo_get_oid_treeish(struct repository *r, const char *str, struct object_id *oid);
1235 int repo_get_oid_blob(struct repository *r, const char *str, struct object_id *oid);
1236 int repo_get_oid_mb(struct repository *r, const char *str, struct object_id *oid);
1237 void maybe_die_on_misspelt_object_name(struct repository *repo,
1238 const char *name,
1239 const char *prefix);
1240 enum get_oid_result get_oid_with_context(struct repository *repo, const char *str,
1241 unsigned flags, struct object_id *oid,
1242 struct object_context *oc);
1243
1244 #define get_oid(str, oid) repo_get_oid(the_repository, str, oid)
1245 #define get_oid_commit(str, oid) repo_get_oid_commit(the_repository, str, oid)
1246 #define get_oid_committish(str, oid) repo_get_oid_committish(the_repository, str, oid)
1247 #define get_oid_tree(str, oid) repo_get_oid_tree(the_repository, str, oid)
1248 #define get_oid_treeish(str, oid) repo_get_oid_treeish(the_repository, str, oid)
1249 #define get_oid_blob(str, oid) repo_get_oid_blob(the_repository, str, oid)
1250 #define get_oid_mb(str, oid) repo_get_oid_mb(the_repository, str, oid)
1251
1252 typedef int each_abbrev_fn(const struct object_id *oid, void *);
1253 int repo_for_each_abbrev(struct repository *r, const char *prefix, each_abbrev_fn, void *);
1254 #define for_each_abbrev(prefix, fn, data) repo_for_each_abbrev(the_repository, prefix, fn, data)
1255
1256 int set_disambiguate_hint_config(const char *var, const char *value);
1257
1258 /*
1259 * This reads short-hand syntax that not only evaluates to a commit
1260 * object name, but also can act as if the end user spelled the name
1261 * of the branch from the command line.
1262 *
1263 * - "@{-N}" finds the name of the Nth previous branch we were on, and
1264 * places the name of the branch in the given buf and returns the
1265 * number of characters parsed if successful.
1266 *
1267 * - "<branch>@{upstream}" finds the name of the other ref that
1268 * <branch> is configured to merge with (missing <branch> defaults
1269 * to the current branch), and places the name of the branch in the
1270 * given buf and returns the number of characters parsed if
1271 * successful.
1272 *
1273 * If the input is not of the accepted format, it returns a negative
1274 * number to signal an error.
1275 *
1276 * If the input was ok but there are not N branch switches in the
1277 * reflog, it returns 0.
1278 */
1279 #define INTERPRET_BRANCH_LOCAL (1<<0)
1280 #define INTERPRET_BRANCH_REMOTE (1<<1)
1281 #define INTERPRET_BRANCH_HEAD (1<<2)
1282 struct interpret_branch_name_options {
1283 /*
1284 * If "allowed" is non-zero, it is a treated as a bitfield of allowable
1285 * expansions: local branches ("refs/heads/"), remote branches
1286 * ("refs/remotes/"), or "HEAD". If no "allowed" bits are set, any expansion is
1287 * allowed, even ones to refs outside of those namespaces.
1288 */
1289 unsigned allowed;
1290
1291 /*
1292 * If ^{upstream} or ^{push} (or equivalent) is requested, and the
1293 * branch in question does not have such a reference, return -1 instead
1294 * of die()-ing.
1295 */
1296 unsigned nonfatal_dangling_mark : 1;
1297 };
1298 int repo_interpret_branch_name(struct repository *r,
1299 const char *str, int len,
1300 struct strbuf *buf,
1301 const struct interpret_branch_name_options *options);
1302 #define interpret_branch_name(str, len, buf, options) \
1303 repo_interpret_branch_name(the_repository, str, len, buf, options)
1304
1305 int base_name_compare(const char *name1, size_t len1, int mode1,
1306 const char *name2, size_t len2, int mode2);
1307 int df_name_compare(const char *name1, size_t len1, int mode1,
1308 const char *name2, size_t len2, int mode2);
1309 int name_compare(const char *name1, size_t len1, const char *name2, size_t len2);
1310 int cache_name_stage_compare(const char *name1, int len1, int stage1, const char *name2, int len2, int stage2);
1311
1312 void *read_object_with_reference(struct repository *r,
1313 const struct object_id *oid,
1314 enum object_type required_type,
1315 unsigned long *size,
1316 struct object_id *oid_ret);
1317
1318 struct object *repo_peel_to_type(struct repository *r,
1319 const char *name, int namelen,
1320 struct object *o, enum object_type);
1321 #define peel_to_type(name, namelen, obj, type) \
1322 repo_peel_to_type(the_repository, name, namelen, obj, type)
1323
1324 const char *git_editor(void);
1325 const char *git_sequence_editor(void);
1326 const char *git_pager(int stdout_is_tty);
1327 int is_terminal_dumb(void);
1328
1329 struct cache_def {
1330 struct strbuf path;
1331 int flags;
1332 int track_flags;
1333 int prefix_len_stat_func;
1334 };
1335 #define CACHE_DEF_INIT { \
1336 .path = STRBUF_INIT, \
1337 }
1338 static inline void cache_def_clear(struct cache_def *cache)
1339 {
1340 strbuf_release(&cache->path);
1341 }
1342
1343 int has_symlink_leading_path(const char *name, int len);
1344 int threaded_has_symlink_leading_path(struct cache_def *, const char *, int);
1345 int check_leading_path(const char *name, int len, int warn_on_lstat_err);
1346 int has_dirs_only_path(const char *name, int len, int prefix_len);
1347 void invalidate_lstat_cache(void);
1348 void schedule_dir_for_removal(const char *name, int len);
1349 void remove_scheduled_dirs(void);
1350
1351 struct pack_window {
1352 struct pack_window *next;
1353 unsigned char *base;
1354 off_t offset;
1355 size_t len;
1356 unsigned int last_used;
1357 unsigned int inuse_cnt;
1358 };
1359
1360 struct pack_entry {
1361 off_t offset;
1362 struct packed_git *p;
1363 };
1364
1365 /*
1366 * Create a temporary file rooted in the object database directory, or
1367 * die on failure. The filename is taken from "pattern", which should have the
1368 * usual "XXXXXX" trailer, and the resulting filename is written into the
1369 * "template" buffer. Returns the open descriptor.
1370 */
1371 int odb_mkstemp(struct strbuf *temp_filename, const char *pattern);
1372
1373 /*
1374 * Create a pack .keep file named "name" (which should generally be the output
1375 * of odb_pack_name). Returns a file descriptor opened for writing, or -1 on
1376 * error.
1377 */
1378 int odb_pack_keep(const char *name);
1379
1380 /*
1381 * Set this to 0 to prevent oid_object_info_extended() from fetching missing
1382 * blobs. This has a difference only if extensions.partialClone is set.
1383 *
1384 * Its default value is 1.
1385 */
1386 extern int fetch_if_missing;
1387
1388 /* Dumb servers support */
1389 int update_server_info(int);
1390
1391 const char *get_log_output_encoding(void);
1392 const char *get_commit_output_encoding(void);
1393
1394 extern const char *git_commit_encoding;
1395 extern const char *git_log_output_encoding;
1396 extern const char *git_mailmap_file;
1397 extern const char *git_mailmap_blob;
1398
1399 /* IO helper functions */
1400 void maybe_flush_or_die(FILE *, const char *);
1401 __attribute__((format (printf, 2, 3)))
1402 void fprintf_or_die(FILE *, const char *fmt, ...);
1403 void fwrite_or_die(FILE *f, const void *buf, size_t count);
1404 void fflush_or_die(FILE *f);
1405
1406 #define COPY_READ_ERROR (-2)
1407 #define COPY_WRITE_ERROR (-3)
1408 int copy_fd(int ifd, int ofd);
1409 int copy_file(const char *dst, const char *src, int mode);
1410 int copy_file_with_time(const char *dst, const char *src, int mode);
1411
1412 void write_or_die(int fd, const void *buf, size_t count);
1413 void fsync_or_die(int fd, const char *);
1414 int fsync_component(enum fsync_component component, int fd);
1415 void fsync_component_or_die(enum fsync_component component, int fd, const char *msg);
1416
1417 static inline int batch_fsync_enabled(enum fsync_component component)
1418 {
1419 return (fsync_components & component) && (fsync_method == FSYNC_METHOD_BATCH);
1420 }
1421
1422 /* pager.c */
1423 void setup_pager(void);
1424 int pager_in_use(void);
1425 extern int pager_use_color;
1426 int term_columns(void);
1427 void term_clear_line(void);
1428 int decimal_width(uintmax_t);
1429 int check_pager_config(const char *cmd);
1430 void prepare_pager_args(struct child_process *, const char *pager);
1431
1432 extern const char *editor_program;
1433 extern const char *askpass_program;
1434 extern const char *excludes_file;
1435
1436 /* base85 */
1437 int decode_85(char *dst, const char *line, int linelen);
1438 void encode_85(char *buf, const unsigned char *data, int bytes);
1439
1440 /* pkt-line.c */
1441 void packet_trace_identity(const char *prog);
1442
1443 /* add */
1444 /*
1445 * return 0 if success, 1 - if addition of a file failed and
1446 * ADD_FILES_IGNORE_ERRORS was specified in flags
1447 */
1448 int add_files_to_cache(const char *prefix, const struct pathspec *pathspec, int flags);
1449
1450 /* diff.c */
1451 extern int diff_auto_refresh_index;
1452
1453 /* match-trees.c */
1454 void shift_tree(struct repository *, const struct object_id *, const struct object_id *, struct object_id *, int);
1455 void shift_tree_by(struct repository *, const struct object_id *, const struct object_id *, struct object_id *, const char *);
1456
1457 /*
1458 * whitespace rules.
1459 * used by both diff and apply
1460 * last two digits are tab width
1461 */
1462 #define WS_BLANK_AT_EOL 0100
1463 #define WS_SPACE_BEFORE_TAB 0200
1464 #define WS_INDENT_WITH_NON_TAB 0400
1465 #define WS_CR_AT_EOL 01000
1466 #define WS_BLANK_AT_EOF 02000
1467 #define WS_TAB_IN_INDENT 04000
1468 #define WS_TRAILING_SPACE (WS_BLANK_AT_EOL|WS_BLANK_AT_EOF)
1469 #define WS_DEFAULT_RULE (WS_TRAILING_SPACE|WS_SPACE_BEFORE_TAB|8)
1470 #define WS_TAB_WIDTH_MASK 077
1471 /* All WS_* -- when extended, adapt diff.c emit_symbol */
1472 #define WS_RULE_MASK 07777
1473 extern unsigned whitespace_rule_cfg;
1474 unsigned whitespace_rule(struct index_state *, const char *);
1475 unsigned parse_whitespace_rule(const char *);
1476 unsigned ws_check(const char *line, int len, unsigned ws_rule);
1477 void ws_check_emit(const char *line, int len, unsigned ws_rule, FILE *stream, const char *set, const char *reset, const char *ws);
1478 char *whitespace_error_string(unsigned ws);
1479 void ws_fix_copy(struct strbuf *, const char *, int, unsigned, int *);
1480 int ws_blank_line(const char *line, int len);
1481 #define ws_tab_width(rule) ((rule) & WS_TAB_WIDTH_MASK)
1482
1483 /* ls-files */
1484 void overlay_tree_on_index(struct index_state *istate,
1485 const char *tree_name, const char *prefix);
1486
1487 /* setup.c */
1488 struct startup_info {
1489 int have_repository;
1490 const char *prefix;
1491 const char *original_cwd;
1492 };
1493 extern struct startup_info *startup_info;
1494 extern const char *tmp_original_cwd;
1495
1496 /* merge.c */
1497 struct commit_list;
1498 int try_merge_command(struct repository *r,
1499 const char *strategy, size_t xopts_nr,
1500 const char **xopts, struct commit_list *common,
1501 const char *head_arg, struct commit_list *remotes);
1502 int checkout_fast_forward(struct repository *r,
1503 const struct object_id *from,
1504 const struct object_id *to,
1505 int overwrite_ignore);
1506
1507
1508 int sane_execvp(const char *file, char *const argv[]);
1509
1510 /*
1511 * A struct to encapsulate the concept of whether a file has changed
1512 * since we last checked it. This uses criteria similar to those used
1513 * for the index.
1514 */
1515 struct stat_validity {
1516 struct stat_data *sd;
1517 };
1518
1519 void stat_validity_clear(struct stat_validity *sv);
1520
1521 /*
1522 * Returns 1 if the path is a regular file (or a symlink to a regular
1523 * file) and matches the saved stat_validity, 0 otherwise. A missing
1524 * or inaccessible file is considered a match if the struct was just
1525 * initialized, or if the previous update found an inaccessible file.
1526 */
1527 int stat_validity_check(struct stat_validity *sv, const char *path);
1528
1529 /*
1530 * Update the stat_validity from a file opened at descriptor fd. If
1531 * the file is missing, inaccessible, or not a regular file, then
1532 * future calls to stat_validity_check will match iff one of those
1533 * conditions continues to be true.
1534 */
1535 void stat_validity_update(struct stat_validity *sv, int fd);
1536
1537 int versioncmp(const char *s1, const char *s2);
1538
1539 /*
1540 * Should we print an ellipsis after an abbreviated SHA-1 value
1541 * when doing diff-raw output or indicating a detached HEAD?
1542 */
1543 int print_sha1_ellipsis(void);
1544
1545 #endif /* CACHE_H */