Blame


1 718b3ab0 2018-03-17 stsp /*
2 718b3ab0 2018-03-17 stsp * Copyright (c) 2018 Stefan Sperling <stsp@openbsd.org>
3 718b3ab0 2018-03-17 stsp *
4 718b3ab0 2018-03-17 stsp * Permission to use, copy, modify, and distribute this software for any
5 718b3ab0 2018-03-17 stsp * purpose with or without fee is hereby granted, provided that the above
6 718b3ab0 2018-03-17 stsp * copyright notice and this permission notice appear in all copies.
7 718b3ab0 2018-03-17 stsp *
8 718b3ab0 2018-03-17 stsp * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
9 718b3ab0 2018-03-17 stsp * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
10 718b3ab0 2018-03-17 stsp * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
11 718b3ab0 2018-03-17 stsp * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
12 718b3ab0 2018-03-17 stsp * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
13 718b3ab0 2018-03-17 stsp * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
14 718b3ab0 2018-03-17 stsp * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
15 718b3ab0 2018-03-17 stsp */
16 718b3ab0 2018-03-17 stsp
17 66cba96f 2020-03-18 stsp #define GOT_GIT_DIR ".git"
18 66cba96f 2020-03-18 stsp
19 66cba96f 2020-03-18 stsp /* Mandatory files and directories inside the git directory. */
20 66cba96f 2020-03-18 stsp #define GOT_OBJECTS_DIR "objects"
21 66cba96f 2020-03-18 stsp #define GOT_REFS_DIR "refs"
22 66cba96f 2020-03-18 stsp #define GOT_HEAD_FILE "HEAD"
23 66cba96f 2020-03-18 stsp #define GOT_GITCONFIG "config"
24 66cba96f 2020-03-18 stsp
25 66cba96f 2020-03-18 stsp /* Other files and directories inside the git directory. */
26 66cba96f 2020-03-18 stsp #define GOT_FETCH_HEAD_FILE "FETCH_HEAD"
27 66cba96f 2020-03-18 stsp #define GOT_ORIG_HEAD_FILE "ORIG_HEAD"
28 66cba96f 2020-03-18 stsp #define GOT_OBJECTS_PACK_DIR "objects/pack"
29 66cba96f 2020-03-18 stsp #define GOT_PACKED_REFS_FILE "packed-refs"
30 66cba96f 2020-03-18 stsp
31 6c414261 2021-03-30 stsp #define GOT_PACK_CACHE_SIZE 64
32 718b3ab0 2018-03-17 stsp
33 4545b700 2021-10-15 thomas struct got_packidx_bloom_filter {
34 cfe41121 2021-10-16 thomas RB_ENTRY(got_packidx_bloom_filter) entry;
35 cfe41121 2021-10-16 thomas char path[PATH_MAX]; /* on-disk path */
36 cfe41121 2021-10-16 thomas size_t path_len;
37 4545b700 2021-10-15 thomas struct bloom *bloom;
38 4545b700 2021-10-15 thomas };
39 4545b700 2021-10-15 thomas
40 cfe41121 2021-10-16 thomas RB_HEAD(got_packidx_bloom_filter_tree, got_packidx_bloom_filter);
41 4545b700 2021-10-15 thomas
42 cfe41121 2021-10-16 thomas static inline int
43 cfe41121 2021-10-16 thomas got_packidx_bloom_filter_cmp(const struct got_packidx_bloom_filter *f1,
44 cfe41121 2021-10-16 thomas const struct got_packidx_bloom_filter *f2)
45 cfe41121 2021-10-16 thomas {
46 cfe41121 2021-10-16 thomas return got_path_cmp(f1->path, f2->path, f1->path_len, f2->path_len);
47 cfe41121 2021-10-16 thomas }
48 cfe41121 2021-10-16 thomas
49 718b3ab0 2018-03-17 stsp struct got_repository {
50 718b3ab0 2018-03-17 stsp char *path;
51 718b3ab0 2018-03-17 stsp char *path_git_dir;
52 6d5a9006 2020-12-16 yzhong int gitdir_fd;
53 718b3ab0 2018-03-17 stsp
54 718b3ab0 2018-03-17 stsp /* The pack index cache speeds up search for packed objects. */
55 6c414261 2021-03-30 stsp struct got_packidx *packidx_cache[GOT_PACK_CACHE_SIZE];
56 718b3ab0 2018-03-17 stsp
57 4545b700 2021-10-15 thomas /*
58 4545b700 2021-10-15 thomas * List of bloom filters for pack index files.
59 4545b700 2021-10-15 thomas * Used to avoid opening a pack index in search of an
60 4545b700 2021-10-15 thomas * object ID which is not contained in this pack index.
61 4545b700 2021-10-15 thomas */
62 cfe41121 2021-10-16 thomas struct got_packidx_bloom_filter_tree packidx_bloom_filters;
63 4545b700 2021-10-15 thomas
64 6c6d3ed3 2018-04-02 stsp /* Open file handles for pack files. */
65 718b3ab0 2018-03-17 stsp struct got_pack packs[GOT_PACK_CACHE_SIZE];
66 7bb0daa1 2018-06-21 stsp
67 6c414261 2021-03-30 stsp /*
68 6c414261 2021-03-30 stsp * The cache size limit may be lower than GOT_PACK_CACHE_SIZE,
69 6c414261 2021-03-30 stsp * depending on resource limits.
70 6c414261 2021-03-30 stsp */
71 6c414261 2021-03-30 stsp int pack_cache_size;
72 6c414261 2021-03-30 stsp
73 ad242220 2018-09-08 stsp /* Handles to child processes for reading loose objects. */
74 abc59930 2021-09-05 naddy struct got_privsep_child privsep_children[5];
75 ad242220 2018-09-08 stsp #define GOT_REPO_PRIVSEP_CHILD_OBJECT 0
76 ad242220 2018-09-08 stsp #define GOT_REPO_PRIVSEP_CHILD_COMMIT 1
77 ad242220 2018-09-08 stsp #define GOT_REPO_PRIVSEP_CHILD_TREE 2
78 ad242220 2018-09-08 stsp #define GOT_REPO_PRIVSEP_CHILD_BLOB 3
79 f4a881ce 2018-11-17 stsp #define GOT_REPO_PRIVSEP_CHILD_TAG 4
80 ad242220 2018-09-08 stsp
81 ad242220 2018-09-08 stsp /* Caches for open objects. */
82 54f20211 2018-06-22 stsp struct got_object_cache objcache;
83 f6be5c30 2018-06-22 stsp struct got_object_cache treecache;
84 1943de01 2018-06-22 stsp struct got_object_cache commitcache;
85 f4a881ce 2018-11-17 stsp struct got_object_cache tagcache;
86 8ab9215c 2021-10-15 thomas struct got_object_cache rawcache;
87 1d126e2d 2019-08-24 stsp
88 1d126e2d 2019-08-24 stsp /* Settings read from Git configuration files. */
89 aba9c984 2019-09-08 stsp int gitconfig_repository_format_version;
90 aba9c984 2019-09-08 stsp char *gitconfig_author_name;
91 aba9c984 2019-09-08 stsp char *gitconfig_author_email;
92 c9956ddf 2019-09-08 stsp char *global_gitconfig_author_name;
93 c9956ddf 2019-09-08 stsp char *global_gitconfig_author_email;
94 cd95becd 2019-11-29 stsp int ngitconfig_remotes;
95 cd95becd 2019-11-29 stsp struct got_remote_repo *gitconfig_remotes;
96 9a1cc63f 2020-02-03 stsp char *gitconfig_owner;
97 20b7abb3 2020-10-22 stsp char **extensions;
98 20b7abb3 2020-10-22 stsp int nextensions;
99 257add31 2020-09-09 stsp
100 257add31 2020-09-09 stsp /* Settings read from got.conf. */
101 50b0790e 2020-09-11 stsp struct got_gotconfig *gotconfig;
102 718b3ab0 2018-03-17 stsp };
103 7bb0daa1 2018-06-21 stsp
104 f6be5c30 2018-06-22 stsp const struct got_error*got_repo_cache_object(struct got_repository *,
105 f6be5c30 2018-06-22 stsp struct got_object_id *, struct got_object *);
106 7bb0daa1 2018-06-21 stsp struct got_object *got_repo_get_cached_object(struct got_repository *,
107 7bb0daa1 2018-06-21 stsp struct got_object_id *);
108 f6be5c30 2018-06-22 stsp const struct got_error*got_repo_cache_tree(struct got_repository *,
109 f6be5c30 2018-06-22 stsp struct got_object_id *, struct got_tree_object *);
110 f6be5c30 2018-06-22 stsp struct got_tree_object *got_repo_get_cached_tree(struct got_repository *,
111 f6be5c30 2018-06-22 stsp struct got_object_id *);
112 1943de01 2018-06-22 stsp const struct got_error*got_repo_cache_commit(struct got_repository *,
113 1943de01 2018-06-22 stsp struct got_object_id *, struct got_commit_object *);
114 1943de01 2018-06-22 stsp struct got_commit_object *got_repo_get_cached_commit(struct got_repository *,
115 1943de01 2018-06-22 stsp struct got_object_id *);
116 f4a881ce 2018-11-17 stsp const struct got_error*got_repo_cache_tag(struct got_repository *,
117 f4a881ce 2018-11-17 stsp struct got_object_id *, struct got_tag_object *);
118 f4a881ce 2018-11-17 stsp struct got_tag_object *got_repo_get_cached_tag(struct got_repository *,
119 f4a881ce 2018-11-17 stsp struct got_object_id *);
120 8ab9215c 2021-10-15 thomas const struct got_error*got_repo_cache_raw_object(struct got_repository *,
121 8ab9215c 2021-10-15 thomas struct got_object_id *, struct got_raw_object *);
122 8ab9215c 2021-10-15 thomas struct got_raw_object *got_repo_get_cached_raw_object(struct got_repository *,
123 8ab9215c 2021-10-15 thomas struct got_object_id *);
124 1124fe40 2021-07-07 stsp int got_repo_is_packidx_filename(const char *, size_t);
125 1510f469 2018-09-09 stsp const struct got_error *got_repo_search_packidx(struct got_packidx **, int *,
126 1510f469 2018-09-09 stsp struct got_repository *, struct got_object_id *);
127 1510f469 2018-09-09 stsp const struct got_error *got_repo_cache_pack(struct got_pack **,
128 1510f469 2018-09-09 stsp struct got_repository *, const char *, struct got_packidx *);