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 cfcf1cbc 2022-05-31 stsp #define GOT_PACK_CACHE_SIZE 32
32 718b3ab0 2018-03-17 stsp
33 b343c297 2021-10-11 stsp struct got_packidx_bloom_filter {
34 f8b19efd 2021-10-13 stsp RB_ENTRY(got_packidx_bloom_filter) entry;
35 f8b19efd 2021-10-13 stsp char path[PATH_MAX]; /* on-disk path */
36 f8b19efd 2021-10-13 stsp size_t path_len;
37 b343c297 2021-10-11 stsp struct bloom *bloom;
38 b343c297 2021-10-11 stsp };
39 b343c297 2021-10-11 stsp
40 f8b19efd 2021-10-13 stsp RB_HEAD(got_packidx_bloom_filter_tree, got_packidx_bloom_filter);
41 b343c297 2021-10-11 stsp
42 f8b19efd 2021-10-13 stsp static inline int
43 f8b19efd 2021-10-13 stsp got_packidx_bloom_filter_cmp(const struct got_packidx_bloom_filter *f1,
44 f8b19efd 2021-10-13 stsp const struct got_packidx_bloom_filter *f2)
45 f8b19efd 2021-10-13 stsp {
46 f8b19efd 2021-10-13 stsp return got_path_cmp(f1->path, f2->path, f1->path_len, f2->path_len);
47 f8b19efd 2021-10-13 stsp }
48 f8b19efd 2021-10-13 stsp
49 b9de8018 2022-10-13 stsp struct got_repo_privsep_child {
50 b9de8018 2022-10-13 stsp int imsg_fd;
51 b9de8018 2022-10-13 stsp pid_t pid;
52 b9de8018 2022-10-13 stsp struct imsgbuf *ibuf;
53 b9de8018 2022-10-13 stsp };
54 b9de8018 2022-10-13 stsp
55 718b3ab0 2018-03-17 stsp struct got_repository {
56 718b3ab0 2018-03-17 stsp char *path;
57 718b3ab0 2018-03-17 stsp char *path_git_dir;
58 6d5a9006 2020-12-16 yzhong int gitdir_fd;
59 718b3ab0 2018-03-17 stsp
60 9b576444 2022-03-14 stsp struct got_pathlist_head packidx_paths;
61 b8a4401b 2022-09-01 stsp time_t pack_path_mtime;
62 9b576444 2022-03-14 stsp
63 718b3ab0 2018-03-17 stsp /* The pack index cache speeds up search for packed objects. */
64 6c414261 2021-03-30 stsp struct got_packidx *packidx_cache[GOT_PACK_CACHE_SIZE];
65 718b3ab0 2018-03-17 stsp
66 b343c297 2021-10-11 stsp /*
67 b343c297 2021-10-11 stsp * List of bloom filters for pack index files.
68 b343c297 2021-10-11 stsp * Used to avoid opening a pack index in search of an
69 b343c297 2021-10-11 stsp * object ID which is not contained in this pack index.
70 b343c297 2021-10-11 stsp */
71 f8b19efd 2021-10-13 stsp struct got_packidx_bloom_filter_tree packidx_bloom_filters;
72 b343c297 2021-10-11 stsp
73 6c6d3ed3 2018-04-02 stsp /* Open file handles for pack files. */
74 718b3ab0 2018-03-17 stsp struct got_pack packs[GOT_PACK_CACHE_SIZE];
75 7bb0daa1 2018-06-21 stsp
76 6c414261 2021-03-30 stsp /*
77 6c414261 2021-03-30 stsp * The cache size limit may be lower than GOT_PACK_CACHE_SIZE,
78 6c414261 2021-03-30 stsp * depending on resource limits.
79 6c414261 2021-03-30 stsp */
80 6c414261 2021-03-30 stsp int pack_cache_size;
81 6c414261 2021-03-30 stsp
82 61af9b21 2022-06-28 stsp /*
83 61af9b21 2022-06-28 stsp * Index to cache entries which are pinned to avoid eviction.
84 61af9b21 2022-06-28 stsp * This may be used to keep one got-index-pack process alive
85 61af9b21 2022-06-28 stsp * across searches for arbitrary objects which may be stored
86 61af9b21 2022-06-28 stsp * in other pack files.
87 61af9b21 2022-06-28 stsp */
88 61af9b21 2022-06-28 stsp int pinned_pack;
89 61af9b21 2022-06-28 stsp pid_t pinned_pid;
90 61af9b21 2022-06-28 stsp int pinned_packidx;
91 61af9b21 2022-06-28 stsp
92 ad242220 2018-09-08 stsp /* Handles to child processes for reading loose objects. */
93 b9de8018 2022-10-13 stsp struct got_repo_privsep_child privsep_children[5];
94 ad242220 2018-09-08 stsp #define GOT_REPO_PRIVSEP_CHILD_OBJECT 0
95 ad242220 2018-09-08 stsp #define GOT_REPO_PRIVSEP_CHILD_COMMIT 1
96 ad242220 2018-09-08 stsp #define GOT_REPO_PRIVSEP_CHILD_TREE 2
97 ad242220 2018-09-08 stsp #define GOT_REPO_PRIVSEP_CHILD_BLOB 3
98 f4a881ce 2018-11-17 stsp #define GOT_REPO_PRIVSEP_CHILD_TAG 4
99 ad242220 2018-09-08 stsp
100 ad242220 2018-09-08 stsp /* Caches for open objects. */
101 54f20211 2018-06-22 stsp struct got_object_cache objcache;
102 f6be5c30 2018-06-22 stsp struct got_object_cache treecache;
103 1943de01 2018-06-22 stsp struct got_object_cache commitcache;
104 f4a881ce 2018-11-17 stsp struct got_object_cache tagcache;
105 d3c116bf 2021-10-15 stsp struct got_object_cache rawcache;
106 1d126e2d 2019-08-24 stsp
107 1d126e2d 2019-08-24 stsp /* Settings read from Git configuration files. */
108 aba9c984 2019-09-08 stsp int gitconfig_repository_format_version;
109 aba9c984 2019-09-08 stsp char *gitconfig_author_name;
110 aba9c984 2019-09-08 stsp char *gitconfig_author_email;
111 c9956ddf 2019-09-08 stsp char *global_gitconfig_author_name;
112 c9956ddf 2019-09-08 stsp char *global_gitconfig_author_email;
113 cd95becd 2019-11-29 stsp int ngitconfig_remotes;
114 cd95becd 2019-11-29 stsp struct got_remote_repo *gitconfig_remotes;
115 9a1cc63f 2020-02-03 stsp char *gitconfig_owner;
116 20b7abb3 2020-10-22 stsp char **extensions;
117 20b7abb3 2020-10-22 stsp int nextensions;
118 257add31 2020-09-09 stsp
119 257add31 2020-09-09 stsp /* Settings read from got.conf. */
120 50b0790e 2020-09-11 stsp struct got_gotconfig *gotconfig;
121 718b3ab0 2018-03-17 stsp };
122 7bb0daa1 2018-06-21 stsp
123 f6be5c30 2018-06-22 stsp const struct got_error*got_repo_cache_object(struct got_repository *,
124 f6be5c30 2018-06-22 stsp struct got_object_id *, struct got_object *);
125 7bb0daa1 2018-06-21 stsp struct got_object *got_repo_get_cached_object(struct got_repository *,
126 7bb0daa1 2018-06-21 stsp struct got_object_id *);
127 f6be5c30 2018-06-22 stsp const struct got_error*got_repo_cache_tree(struct got_repository *,
128 f6be5c30 2018-06-22 stsp struct got_object_id *, struct got_tree_object *);
129 f6be5c30 2018-06-22 stsp struct got_tree_object *got_repo_get_cached_tree(struct got_repository *,
130 f6be5c30 2018-06-22 stsp struct got_object_id *);
131 1943de01 2018-06-22 stsp const struct got_error*got_repo_cache_commit(struct got_repository *,
132 1943de01 2018-06-22 stsp struct got_object_id *, struct got_commit_object *);
133 1943de01 2018-06-22 stsp struct got_commit_object *got_repo_get_cached_commit(struct got_repository *,
134 1943de01 2018-06-22 stsp struct got_object_id *);
135 f4a881ce 2018-11-17 stsp const struct got_error*got_repo_cache_tag(struct got_repository *,
136 f4a881ce 2018-11-17 stsp struct got_object_id *, struct got_tag_object *);
137 f4a881ce 2018-11-17 stsp struct got_tag_object *got_repo_get_cached_tag(struct got_repository *,
138 f4a881ce 2018-11-17 stsp struct got_object_id *);
139 d3c116bf 2021-10-15 stsp const struct got_error*got_repo_cache_raw_object(struct got_repository *,
140 d3c116bf 2021-10-15 stsp struct got_object_id *, struct got_raw_object *);
141 d3c116bf 2021-10-15 stsp struct got_raw_object *got_repo_get_cached_raw_object(struct got_repository *,
142 d3c116bf 2021-10-15 stsp struct got_object_id *);
143 1124fe40 2021-07-07 stsp int got_repo_is_packidx_filename(const char *, size_t);
144 67fd6849 2022-02-13 stsp int got_repo_check_packidx_bloom_filter(struct got_repository *,
145 67fd6849 2022-02-13 stsp const char *, struct got_object_id *);
146 1510f469 2018-09-09 stsp const struct got_error *got_repo_search_packidx(struct got_packidx **, int *,
147 1510f469 2018-09-09 stsp struct got_repository *, struct got_object_id *);
148 67fd6849 2022-02-13 stsp const struct got_error *got_repo_list_packidx(struct got_pathlist_head *,
149 67fd6849 2022-02-13 stsp struct got_repository *);
150 67fd6849 2022-02-13 stsp const struct got_error *got_repo_get_packidx(struct got_packidx **, const char *,
151 67fd6849 2022-02-13 stsp struct got_repository *);
152 1510f469 2018-09-09 stsp const struct got_error *got_repo_cache_pack(struct got_pack **,
153 1510f469 2018-09-09 stsp struct got_repository *, const char *, struct got_packidx *);
154 61af9b21 2022-06-28 stsp struct got_pack *got_repo_get_cached_pack(struct got_repository *,
155 61af9b21 2022-06-28 stsp const char *);
156 61af9b21 2022-06-28 stsp const struct got_error *got_repo_pin_pack(struct got_repository *,
157 61af9b21 2022-06-28 stsp struct got_packidx *, struct got_pack *);
158 61af9b21 2022-06-28 stsp struct got_pack *got_repo_get_pinned_pack(struct got_repository *);
159 61af9b21 2022-06-28 stsp void got_repo_unpin_pack(struct got_repository *);
160 61af9b21 2022-06-28 stsp
161 6a800804 2022-10-13 stsp const struct got_error *got_repo_read_gitconfig(int *, char **, char **,
162 6a800804 2022-10-13 stsp struct got_remote_repo **, int *, char **, char ***, int *,
163 6a800804 2022-10-13 stsp const char *);