Blame


1 7b19e0f1 2017-11-05 stsp /*
2 5aa81393 2020-01-06 stsp * Copyright (c) 2018, 2019, 2020 Stefan Sperling <stsp@openbsd.org>
3 7b19e0f1 2017-11-05 stsp *
4 7b19e0f1 2017-11-05 stsp * Permission to use, copy, modify, and distribute this software for any
5 7b19e0f1 2017-11-05 stsp * purpose with or without fee is hereby granted, provided that the above
6 7b19e0f1 2017-11-05 stsp * copyright notice and this permission notice appear in all copies.
7 7b19e0f1 2017-11-05 stsp *
8 7b19e0f1 2017-11-05 stsp * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
9 7b19e0f1 2017-11-05 stsp * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
10 7b19e0f1 2017-11-05 stsp * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
11 7b19e0f1 2017-11-05 stsp * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
12 7b19e0f1 2017-11-05 stsp * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
13 7b19e0f1 2017-11-05 stsp * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
14 7b19e0f1 2017-11-05 stsp * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
15 7b19e0f1 2017-11-05 stsp */
16 4fccd2fe 2023-03-08 thomas
17 4fccd2fe 2023-03-08 thomas #include "got_compat.h"
18 7b19e0f1 2017-11-05 stsp
19 ad242220 2018-09-08 stsp #include <sys/types.h>
20 8b925c6c 2022-07-16 thomas #include <sys/queue.h>
21 ad242220 2018-09-08 stsp #include <sys/uio.h>
22 aba9c984 2019-09-08 stsp #include <sys/socket.h>
23 deeca238 2018-03-12 stsp #include <sys/stat.h>
24 1510f469 2018-09-09 stsp #include <sys/mman.h>
25 6c414261 2021-03-30 stsp #include <sys/resource.h>
26 79b11c62 2018-03-09 stsp
27 e09a504c 2019-06-28 stsp #include <ctype.h>
28 1510f469 2018-09-09 stsp #include <fcntl.h>
29 3ce1b845 2019-07-15 stsp #include <fnmatch.h>
30 4027f31a 2017-11-04 stsp #include <limits.h>
31 1510f469 2018-09-09 stsp #include <dirent.h>
32 4027f31a 2017-11-04 stsp #include <stdlib.h>
33 4027f31a 2017-11-04 stsp #include <stdio.h>
34 4027f31a 2017-11-04 stsp #include <string.h>
35 303e14b5 2019-09-23 stsp #include <time.h>
36 81a12da5 2020-09-09 naddy #include <unistd.h>
37 79b11c62 2018-03-09 stsp #include <zlib.h>
38 85f51bba 2018-07-16 stsp #include <errno.h>
39 85f51bba 2018-07-16 stsp #include <libgen.h>
40 ad242220 2018-09-08 stsp #include <stdint.h>
41 4027f31a 2017-11-04 stsp
42 4545b700 2021-10-15 thomas #include "bloom.h"
43 dd038bc6 2021-09-21 thomas.ad
44 4027f31a 2017-11-04 stsp #include "got_error.h"
45 5261c201 2018-04-01 stsp #include "got_reference.h"
46 4027f31a 2017-11-04 stsp #include "got_repository.h"
47 1dd54920 2019-05-11 stsp #include "got_path.h"
48 e6209546 2019-08-22 stsp #include "got_cancel.h"
49 7bb0daa1 2018-06-21 stsp #include "got_object.h"
50 bfb5ee0b 2022-05-31 thomas #include "got_opentemp.h"
51 4027f31a 2017-11-04 stsp
52 718b3ab0 2018-03-17 stsp #include "got_lib_delta.h"
53 3efd8e31 2022-10-23 thomas #include "got_lib_delta_cache.h"
54 63581804 2018-07-09 stsp #include "got_lib_inflate.h"
55 718b3ab0 2018-03-17 stsp #include "got_lib_object.h"
56 3ce1b845 2019-07-15 stsp #include "got_lib_object_parse.h"
57 3ce1b845 2019-07-15 stsp #include "got_lib_object_create.h"
58 718b3ab0 2018-03-17 stsp #include "got_lib_pack.h"
59 876c234b 2018-09-10 stsp #include "got_lib_privsep.h"
60 be288a59 2023-02-23 thomas #include "got_lib_hash.h"
61 6bef87be 2018-09-11 stsp #include "got_lib_object_cache.h"
62 6bef87be 2018-09-11 stsp #include "got_lib_repository.h"
63 50b0790e 2020-09-11 stsp #include "got_lib_gotconfig.h"
64 c3f94f68 2017-11-05 stsp
65 79b11c62 2018-03-09 stsp #ifndef nitems
66 79b11c62 2018-03-09 stsp #define nitems(_a) (sizeof(_a) / sizeof((_a)[0]))
67 79b11c62 2018-03-09 stsp #endif
68 0be8fa4c 2021-10-15 thomas
69 7cd52833 2022-06-23 thomas #define GOT_PACK_NUM_TEMPFILES GOT_PACK_CACHE_SIZE * 2
70 7cd52833 2022-06-23 thomas
71 0be8fa4c 2021-10-15 thomas RB_PROTOTYPE(got_packidx_bloom_filter_tree, got_packidx_bloom_filter, entry,
72 0be8fa4c 2021-10-15 thomas got_packidx_bloom_filter_cmp);
73 b091c2cd 2023-02-07 thomas
74 b091c2cd 2023-02-07 thomas static inline int
75 b091c2cd 2023-02-07 thomas is_boolean_val(const char *val)
76 b091c2cd 2023-02-07 thomas {
77 b091c2cd 2023-02-07 thomas return (strcasecmp(val, "true") == 0 ||
78 b091c2cd 2023-02-07 thomas strcasecmp(val, "false") == 0 ||
79 b091c2cd 2023-02-07 thomas strcasecmp(val, "on") == 0 ||
80 b091c2cd 2023-02-07 thomas strcasecmp(val, "off") == 0 ||
81 b091c2cd 2023-02-07 thomas strcasecmp(val, "yes") == 0 ||
82 b091c2cd 2023-02-07 thomas strcasecmp(val, "no") == 0 ||
83 b091c2cd 2023-02-07 thomas strcasecmp(val, "1") == 0 ||
84 b091c2cd 2023-02-07 thomas strcasecmp(val, "0") == 0);
85 b091c2cd 2023-02-07 thomas }
86 b091c2cd 2023-02-07 thomas
87 b091c2cd 2023-02-07 thomas static inline int
88 b091c2cd 2023-02-07 thomas get_boolean_val(const char *val)
89 b091c2cd 2023-02-07 thomas {
90 b091c2cd 2023-02-07 thomas return (strcasecmp(val, "true") == 0 ||
91 b091c2cd 2023-02-07 thomas strcasecmp(val, "on") == 0 ||
92 b091c2cd 2023-02-07 thomas strcasecmp(val, "yes") == 0 ||
93 b091c2cd 2023-02-07 thomas strcasecmp(val, "1") == 0);
94 b091c2cd 2023-02-07 thomas }
95 4df642d9 2017-11-05 stsp
96 7839bc15 2019-01-06 stsp const char *
97 86c3caaf 2018-03-09 stsp got_repo_get_path(struct got_repository *repo)
98 86c3caaf 2018-03-09 stsp {
99 7839bc15 2019-01-06 stsp return repo->path;
100 86c3caaf 2018-03-09 stsp }
101 86c3caaf 2018-03-09 stsp
102 6e9da951 2019-01-06 stsp const char *
103 11995603 2017-11-05 stsp got_repo_get_path_git_dir(struct got_repository *repo)
104 4027f31a 2017-11-04 stsp {
105 6e9da951 2019-01-06 stsp return repo->path_git_dir;
106 6d5a9006 2020-12-16 yzhong }
107 6d5a9006 2020-12-16 yzhong
108 6d5a9006 2020-12-16 yzhong int
109 6d5a9006 2020-12-16 yzhong got_repo_get_fd(struct got_repository *repo)
110 6d5a9006 2020-12-16 yzhong {
111 6d5a9006 2020-12-16 yzhong return repo->gitdir_fd;
112 f4204d57 2023-03-01 thomas }
113 f4204d57 2023-03-01 thomas
114 f4204d57 2023-03-01 thomas enum got_hash_algorithm
115 f4204d57 2023-03-01 thomas got_repo_get_object_format(struct got_repository *repo)
116 f4204d57 2023-03-01 thomas {
117 f4204d57 2023-03-01 thomas return repo->algo;
118 04ca23f4 2018-07-16 stsp }
119 04ca23f4 2018-07-16 stsp
120 aba9c984 2019-09-08 stsp const char *
121 aba9c984 2019-09-08 stsp got_repo_get_gitconfig_author_name(struct got_repository *repo)
122 aba9c984 2019-09-08 stsp {
123 aba9c984 2019-09-08 stsp return repo->gitconfig_author_name;
124 aba9c984 2019-09-08 stsp }
125 aba9c984 2019-09-08 stsp
126 aba9c984 2019-09-08 stsp const char *
127 aba9c984 2019-09-08 stsp got_repo_get_gitconfig_author_email(struct got_repository *repo)
128 aba9c984 2019-09-08 stsp {
129 aba9c984 2019-09-08 stsp return repo->gitconfig_author_email;
130 c9956ddf 2019-09-08 stsp }
131 c9956ddf 2019-09-08 stsp
132 c9956ddf 2019-09-08 stsp const char *
133 c9956ddf 2019-09-08 stsp got_repo_get_global_gitconfig_author_name(struct got_repository *repo)
134 c9956ddf 2019-09-08 stsp {
135 c9956ddf 2019-09-08 stsp return repo->global_gitconfig_author_name;
136 c9956ddf 2019-09-08 stsp }
137 c9956ddf 2019-09-08 stsp
138 c9956ddf 2019-09-08 stsp const char *
139 c9956ddf 2019-09-08 stsp got_repo_get_global_gitconfig_author_email(struct got_repository *repo)
140 c9956ddf 2019-09-08 stsp {
141 c9956ddf 2019-09-08 stsp return repo->global_gitconfig_author_email;
142 9a1cc63f 2020-02-03 stsp }
143 9a1cc63f 2020-02-03 stsp
144 9a1cc63f 2020-02-03 stsp const char *
145 9a1cc63f 2020-02-03 stsp got_repo_get_gitconfig_owner(struct got_repository *repo)
146 9a1cc63f 2020-02-03 stsp {
147 9a1cc63f 2020-02-03 stsp return repo->gitconfig_owner;
148 9188bd78 2021-07-03 stsp }
149 9188bd78 2021-07-03 stsp
150 2624d165 2023-02-07 thomas int
151 2624d165 2023-02-07 thomas got_repo_has_extension(struct got_repository *repo, const char *ext)
152 9188bd78 2021-07-03 stsp {
153 2624d165 2023-02-07 thomas int i;
154 2624d165 2023-02-07 thomas
155 2624d165 2023-02-07 thomas for (i = 0; i < repo->nextensions; ++i) {
156 b091c2cd 2023-02-07 thomas if (!strcasecmp(ext, repo->extnames[i]))
157 b091c2cd 2023-02-07 thomas return get_boolean_val(repo->extvals[i]);
158 2624d165 2023-02-07 thomas }
159 2624d165 2023-02-07 thomas
160 2624d165 2023-02-07 thomas return 0;
161 aba9c984 2019-09-08 stsp }
162 aba9c984 2019-09-08 stsp
163 04ca23f4 2018-07-16 stsp int
164 04ca23f4 2018-07-16 stsp got_repo_is_bare(struct got_repository *repo)
165 04ca23f4 2018-07-16 stsp {
166 04ca23f4 2018-07-16 stsp return (strcmp(repo->path, repo->path_git_dir) == 0);
167 4027f31a 2017-11-04 stsp }
168 4027f31a 2017-11-04 stsp
169 4027f31a 2017-11-04 stsp static char *
170 4027f31a 2017-11-04 stsp get_path_git_child(struct got_repository *repo, const char *basename)
171 4027f31a 2017-11-04 stsp {
172 4027f31a 2017-11-04 stsp char *path_child;
173 3168e5da 2020-09-10 stsp
174 4986b9d5 2018-03-12 stsp if (asprintf(&path_child, "%s/%s", repo->path_git_dir,
175 4027f31a 2017-11-04 stsp basename) == -1)
176 4027f31a 2017-11-04 stsp return NULL;
177 4027f31a 2017-11-04 stsp
178 4027f31a 2017-11-04 stsp return path_child;
179 4027f31a 2017-11-04 stsp }
180 4027f31a 2017-11-04 stsp
181 11995603 2017-11-05 stsp char *
182 11995603 2017-11-05 stsp got_repo_get_path_objects(struct got_repository *repo)
183 4027f31a 2017-11-04 stsp {
184 4027f31a 2017-11-04 stsp return get_path_git_child(repo, GOT_OBJECTS_DIR);
185 4027f31a 2017-11-04 stsp }
186 4027f31a 2017-11-04 stsp
187 11995603 2017-11-05 stsp char *
188 a1fd68d8 2018-01-12 stsp got_repo_get_path_objects_pack(struct got_repository *repo)
189 a1fd68d8 2018-01-12 stsp {
190 a1fd68d8 2018-01-12 stsp return get_path_git_child(repo, GOT_OBJECTS_PACK_DIR);
191 a1fd68d8 2018-01-12 stsp }
192 a1fd68d8 2018-01-12 stsp
193 a1fd68d8 2018-01-12 stsp char *
194 11995603 2017-11-05 stsp got_repo_get_path_refs(struct got_repository *repo)
195 4027f31a 2017-11-04 stsp {
196 4027f31a 2017-11-04 stsp return get_path_git_child(repo, GOT_REFS_DIR);
197 4027f31a 2017-11-04 stsp }
198 4027f31a 2017-11-04 stsp
199 fb79db15 2019-02-01 stsp char *
200 fb79db15 2019-02-01 stsp got_repo_get_path_packed_refs(struct got_repository *repo)
201 fb79db15 2019-02-01 stsp {
202 fb79db15 2019-02-01 stsp return get_path_git_child(repo, GOT_PACKED_REFS_FILE);
203 fb79db15 2019-02-01 stsp }
204 fb79db15 2019-02-01 stsp
205 4027f31a 2017-11-04 stsp static char *
206 4027f31a 2017-11-04 stsp get_path_head(struct got_repository *repo)
207 4027f31a 2017-11-04 stsp {
208 4027f31a 2017-11-04 stsp return get_path_git_child(repo, GOT_HEAD_FILE);
209 1d126e2d 2019-08-24 stsp }
210 1d126e2d 2019-08-24 stsp
211 b46f3e71 2020-03-18 stsp char *
212 b46f3e71 2020-03-18 stsp got_repo_get_path_gitconfig(struct got_repository *repo)
213 1d126e2d 2019-08-24 stsp {
214 b46f3e71 2020-03-18 stsp return get_path_git_child(repo, GOT_GITCONFIG);
215 cd95becd 2019-11-29 stsp }
216 cd95becd 2019-11-29 stsp
217 257add31 2020-09-09 stsp char *
218 257add31 2020-09-09 stsp got_repo_get_path_gotconfig(struct got_repository *repo)
219 257add31 2020-09-09 stsp {
220 50b0790e 2020-09-11 stsp return get_path_git_child(repo, GOT_GOTCONFIG_FILENAME);
221 257add31 2020-09-09 stsp }
222 257add31 2020-09-09 stsp
223 50b0790e 2020-09-11 stsp const struct got_gotconfig *
224 50b0790e 2020-09-11 stsp got_repo_get_gotconfig(struct got_repository *repo)
225 cd95becd 2019-11-29 stsp {
226 50b0790e 2020-09-11 stsp return repo->gotconfig;
227 4027f31a 2017-11-04 stsp }
228 4027f31a 2017-11-04 stsp
229 257add31 2020-09-09 stsp void
230 50b0790e 2020-09-11 stsp got_repo_get_gitconfig_remotes(int *nremotes,
231 50b0790e 2020-09-11 stsp const struct got_remote_repo **remotes, struct got_repository *repo)
232 257add31 2020-09-09 stsp {
233 50b0790e 2020-09-11 stsp *nremotes = repo->ngitconfig_remotes;
234 50b0790e 2020-09-11 stsp *remotes = repo->gitconfig_remotes;
235 257add31 2020-09-09 stsp }
236 257add31 2020-09-09 stsp
237 4027f31a 2017-11-04 stsp static int
238 4027f31a 2017-11-04 stsp is_git_repo(struct got_repository *repo)
239 4027f31a 2017-11-04 stsp {
240 6e9da951 2019-01-06 stsp const char *path_git = got_repo_get_path_git_dir(repo);
241 11995603 2017-11-05 stsp char *path_objects = got_repo_get_path_objects(repo);
242 11995603 2017-11-05 stsp char *path_refs = got_repo_get_path_refs(repo);
243 4027f31a 2017-11-04 stsp char *path_head = get_path_head(repo);
244 deeca238 2018-03-12 stsp int ret = 0;
245 deeca238 2018-03-12 stsp struct stat sb;
246 4847cca1 2018-03-12 stsp struct got_reference *head_ref;
247 4027f31a 2017-11-04 stsp
248 deeca238 2018-03-12 stsp if (lstat(path_git, &sb) == -1)
249 deeca238 2018-03-12 stsp goto done;
250 deeca238 2018-03-12 stsp if (!S_ISDIR(sb.st_mode))
251 deeca238 2018-03-12 stsp goto done;
252 4027f31a 2017-11-04 stsp
253 deeca238 2018-03-12 stsp if (lstat(path_objects, &sb) == -1)
254 deeca238 2018-03-12 stsp goto done;
255 deeca238 2018-03-12 stsp if (!S_ISDIR(sb.st_mode))
256 deeca238 2018-03-12 stsp goto done;
257 deeca238 2018-03-12 stsp
258 deeca238 2018-03-12 stsp if (lstat(path_refs, &sb) == -1)
259 deeca238 2018-03-12 stsp goto done;
260 deeca238 2018-03-12 stsp if (!S_ISDIR(sb.st_mode))
261 deeca238 2018-03-12 stsp goto done;
262 deeca238 2018-03-12 stsp
263 deeca238 2018-03-12 stsp if (lstat(path_head, &sb) == -1)
264 deeca238 2018-03-12 stsp goto done;
265 deeca238 2018-03-12 stsp if (!S_ISREG(sb.st_mode))
266 deeca238 2018-03-12 stsp goto done;
267 4847cca1 2018-03-12 stsp
268 4847cca1 2018-03-12 stsp /* Check if the HEAD reference can be opened. */
269 2f17228e 2019-05-12 stsp if (got_ref_open(&head_ref, repo, GOT_REF_HEAD, 0) != NULL)
270 4847cca1 2018-03-12 stsp goto done;
271 4847cca1 2018-03-12 stsp got_ref_close(head_ref);
272 4847cca1 2018-03-12 stsp
273 deeca238 2018-03-12 stsp ret = 1;
274 deeca238 2018-03-12 stsp done:
275 4027f31a 2017-11-04 stsp free(path_objects);
276 4027f31a 2017-11-04 stsp free(path_refs);
277 4027f31a 2017-11-04 stsp free(path_head);
278 4027f31a 2017-11-04 stsp return ret;
279 4027f31a 2017-11-04 stsp
280 7bb0daa1 2018-06-21 stsp }
281 7bb0daa1 2018-06-21 stsp
282 3efd8e31 2022-10-23 thomas static const struct got_error *
283 3efd8e31 2022-10-23 thomas close_tempfiles(int *fds, size_t nfds)
284 7cd52833 2022-06-23 thomas {
285 7cd52833 2022-06-23 thomas const struct got_error *err = NULL;
286 a6fd182a 2022-09-03 thomas int i;
287 7cd52833 2022-06-23 thomas
288 3efd8e31 2022-10-23 thomas for (i = 0; i < nfds; i++) {
289 3efd8e31 2022-10-23 thomas if (fds[i] == -1)
290 3efd8e31 2022-10-23 thomas continue;
291 3efd8e31 2022-10-23 thomas if (close(fds[i]) == -1) {
292 3efd8e31 2022-10-23 thomas err = got_error_from_errno("close");
293 3efd8e31 2022-10-23 thomas break;
294 3efd8e31 2022-10-23 thomas }
295 3efd8e31 2022-10-23 thomas }
296 3efd8e31 2022-10-23 thomas free(fds);
297 3efd8e31 2022-10-23 thomas return err;
298 3efd8e31 2022-10-23 thomas }
299 7cd52833 2022-06-23 thomas
300 3efd8e31 2022-10-23 thomas static const struct got_error *
301 e0220e74 2022-10-31 thomas open_tempfiles(int **fds, size_t array_size, size_t nfds)
302 3efd8e31 2022-10-23 thomas {
303 3efd8e31 2022-10-23 thomas const struct got_error *err = NULL;
304 3efd8e31 2022-10-23 thomas int i;
305 3efd8e31 2022-10-23 thomas
306 e0220e74 2022-10-31 thomas *fds = calloc(array_size, sizeof(**fds));
307 3efd8e31 2022-10-23 thomas if (*fds == NULL)
308 3efd8e31 2022-10-23 thomas return got_error_from_errno("calloc");
309 3efd8e31 2022-10-23 thomas
310 e0220e74 2022-10-31 thomas for (i = 0; i < array_size; i++)
311 3efd8e31 2022-10-23 thomas (*fds)[i] = -1;
312 3efd8e31 2022-10-23 thomas
313 3efd8e31 2022-10-23 thomas for (i = 0; i < nfds; i++) {
314 3efd8e31 2022-10-23 thomas (*fds)[i] = got_opentempfd();
315 3efd8e31 2022-10-23 thomas if ((*fds)[i] == -1) {
316 7648b8ae 2022-06-23 thomas err = got_error_from_errno("got_opentempfd");
317 3efd8e31 2022-10-23 thomas close_tempfiles(*fds, nfds);
318 3efd8e31 2022-10-23 thomas *fds = NULL;
319 7648b8ae 2022-06-23 thomas return err;
320 7cd52833 2022-06-23 thomas }
321 7cd52833 2022-06-23 thomas }
322 a6fd182a 2022-09-03 thomas
323 a6fd182a 2022-09-03 thomas return NULL;
324 7cd52833 2022-06-23 thomas }
325 7cd52833 2022-06-23 thomas
326 e0220e74 2022-10-31 thomas static const struct got_error *
327 e0220e74 2022-10-31 thomas get_pack_cache_size(int *pack_cache_size)
328 e0220e74 2022-10-31 thomas {
329 e0220e74 2022-10-31 thomas struct rlimit rl;
330 e0220e74 2022-10-31 thomas
331 e0220e74 2022-10-31 thomas if (getrlimit(RLIMIT_NOFILE, &rl) == -1)
332 e0220e74 2022-10-31 thomas return got_error_from_errno("getrlimit");
333 e0220e74 2022-10-31 thomas
334 e0220e74 2022-10-31 thomas *pack_cache_size = GOT_PACK_CACHE_SIZE;
335 e0220e74 2022-10-31 thomas if (*pack_cache_size > rl.rlim_cur / 8)
336 e0220e74 2022-10-31 thomas *pack_cache_size = rl.rlim_cur / 8;
337 e0220e74 2022-10-31 thomas
338 e0220e74 2022-10-31 thomas return NULL;
339 e0220e74 2022-10-31 thomas }
340 e0220e74 2022-10-31 thomas
341 7cd52833 2022-06-23 thomas const struct got_error *
342 3efd8e31 2022-10-23 thomas got_repo_pack_fds_open(int **pack_fds)
343 3efd8e31 2022-10-23 thomas {
344 e0220e74 2022-10-31 thomas const struct got_error *err;
345 e0220e74 2022-10-31 thomas int nfds;
346 e0220e74 2022-10-31 thomas
347 e0220e74 2022-10-31 thomas err = get_pack_cache_size(&nfds);
348 e0220e74 2022-10-31 thomas if (err)
349 e0220e74 2022-10-31 thomas return err;
350 e0220e74 2022-10-31 thomas
351 e0220e74 2022-10-31 thomas /*
352 e0220e74 2022-10-31 thomas * We need one basefd and one accumfd per cached pack.
353 e0220e74 2022-10-31 thomas * Our constants should be set up in a way such that
354 e0220e74 2022-10-31 thomas * this error never triggers.
355 e0220e74 2022-10-31 thomas */
356 e0220e74 2022-10-31 thomas if (nfds * 2 > GOT_PACK_NUM_TEMPFILES)
357 e0220e74 2022-10-31 thomas return got_error(GOT_ERR_NO_SPACE);
358 e0220e74 2022-10-31 thomas
359 e0220e74 2022-10-31 thomas return open_tempfiles(pack_fds, GOT_PACK_NUM_TEMPFILES, nfds * 2);
360 3efd8e31 2022-10-23 thomas }
361 3efd8e31 2022-10-23 thomas
362 3efd8e31 2022-10-23 thomas const struct got_error *
363 7cd52833 2022-06-23 thomas got_repo_pack_fds_close(int *pack_fds)
364 7cd52833 2022-06-23 thomas {
365 3efd8e31 2022-10-23 thomas return close_tempfiles(pack_fds, GOT_PACK_NUM_TEMPFILES);
366 3efd8e31 2022-10-23 thomas }
367 7cd52833 2022-06-23 thomas
368 3efd8e31 2022-10-23 thomas const struct got_error *
369 946e0798 2022-11-06 thomas got_repo_temp_fds_open(int **temp_fds)
370 3efd8e31 2022-10-23 thomas {
371 e0220e74 2022-10-31 thomas return open_tempfiles(temp_fds, GOT_REPO_NUM_TEMPFILES,
372 e0220e74 2022-10-31 thomas GOT_REPO_NUM_TEMPFILES);
373 3efd8e31 2022-10-23 thomas }
374 3efd8e31 2022-10-23 thomas
375 3efd8e31 2022-10-23 thomas void
376 946e0798 2022-11-06 thomas got_repo_temp_fds_set(struct got_repository *repo, int *temp_fds)
377 3efd8e31 2022-10-23 thomas {
378 3efd8e31 2022-10-23 thomas int i;
379 3efd8e31 2022-10-23 thomas
380 3efd8e31 2022-10-23 thomas for (i = 0; i < GOT_REPO_NUM_TEMPFILES; i++)
381 3efd8e31 2022-10-23 thomas repo->tempfiles[i] = temp_fds[i];
382 3efd8e31 2022-10-23 thomas }
383 3efd8e31 2022-10-23 thomas
384 3efd8e31 2022-10-23 thomas const struct got_error *
385 3efd8e31 2022-10-23 thomas got_repo_temp_fds_get(int *fd, int *idx, struct got_repository *repo)
386 3efd8e31 2022-10-23 thomas {
387 3efd8e31 2022-10-23 thomas int i;
388 3efd8e31 2022-10-23 thomas
389 3efd8e31 2022-10-23 thomas *fd = -1;
390 3efd8e31 2022-10-23 thomas *idx = -1;
391 3efd8e31 2022-10-23 thomas
392 3efd8e31 2022-10-23 thomas for (i = 0; i < nitems(repo->tempfiles); i++) {
393 3efd8e31 2022-10-23 thomas if (repo->tempfile_use_mask & (1 << i))
394 7cd52833 2022-06-23 thomas continue;
395 3efd8e31 2022-10-23 thomas if (repo->tempfiles[i] != -1) {
396 3efd8e31 2022-10-23 thomas if (ftruncate(repo->tempfiles[i], 0L) == -1)
397 3efd8e31 2022-10-23 thomas return got_error_from_errno("ftruncate");
398 3efd8e31 2022-10-23 thomas *fd = repo->tempfiles[i];
399 3efd8e31 2022-10-23 thomas *idx = i;
400 3efd8e31 2022-10-23 thomas repo->tempfile_use_mask |= (1 << i);
401 3efd8e31 2022-10-23 thomas return NULL;
402 7cd52833 2022-06-23 thomas }
403 7cd52833 2022-06-23 thomas }
404 3efd8e31 2022-10-23 thomas
405 3efd8e31 2022-10-23 thomas return got_error(GOT_ERR_REPO_TEMPFILE);
406 3efd8e31 2022-10-23 thomas }
407 3efd8e31 2022-10-23 thomas
408 3efd8e31 2022-10-23 thomas void
409 3efd8e31 2022-10-23 thomas got_repo_temp_fds_put(int idx, struct got_repository *repo)
410 3efd8e31 2022-10-23 thomas {
411 3efd8e31 2022-10-23 thomas repo->tempfile_use_mask &= ~(1 << idx);
412 3efd8e31 2022-10-23 thomas }
413 3efd8e31 2022-10-23 thomas
414 3efd8e31 2022-10-23 thomas const struct got_error *
415 3efd8e31 2022-10-23 thomas got_repo_temp_fds_close(int *temp_fds)
416 3efd8e31 2022-10-23 thomas {
417 3efd8e31 2022-10-23 thomas return close_tempfiles(temp_fds, GOT_REPO_NUM_TEMPFILES);
418 7cd52833 2022-06-23 thomas }
419 7cd52833 2022-06-23 thomas
420 7cd52833 2022-06-23 thomas const struct got_error *
421 f6be5c30 2018-06-22 stsp got_repo_cache_object(struct got_repository *repo, struct got_object_id *id,
422 f6be5c30 2018-06-22 stsp struct got_object *obj)
423 f6be5c30 2018-06-22 stsp {
424 ccfe88e6 2018-07-12 stsp #ifndef GOT_NO_OBJ_CACHE
425 f6be5c30 2018-06-22 stsp const struct got_error *err = NULL;
426 6bef87be 2018-09-11 stsp err = got_object_cache_add(&repo->objcache, id, obj);
427 79c99a64 2019-05-23 stsp if (err) {
428 79c99a64 2019-05-23 stsp if (err->code == GOT_ERR_OBJ_EXISTS ||
429 79c99a64 2019-05-23 stsp err->code == GOT_ERR_OBJ_TOO_LARGE)
430 79c99a64 2019-05-23 stsp err = NULL;
431 f6be5c30 2018-06-22 stsp return err;
432 79c99a64 2019-05-23 stsp }
433 f6be5c30 2018-06-22 stsp obj->refcnt++;
434 ccfe88e6 2018-07-12 stsp #endif
435 f6be5c30 2018-06-22 stsp return NULL;
436 f6be5c30 2018-06-22 stsp }
437 f6be5c30 2018-06-22 stsp
438 7bb0daa1 2018-06-21 stsp struct got_object *
439 7bb0daa1 2018-06-21 stsp got_repo_get_cached_object(struct got_repository *repo,
440 7bb0daa1 2018-06-21 stsp struct got_object_id *id)
441 7bb0daa1 2018-06-21 stsp {
442 6bef87be 2018-09-11 stsp return (struct got_object *)got_object_cache_get(&repo->objcache, id);
443 7bb0daa1 2018-06-21 stsp }
444 7bb0daa1 2018-06-21 stsp
445 4027f31a 2017-11-04 stsp const struct got_error *
446 f6be5c30 2018-06-22 stsp got_repo_cache_tree(struct got_repository *repo, struct got_object_id *id,
447 f6be5c30 2018-06-22 stsp struct got_tree_object *tree)
448 f6be5c30 2018-06-22 stsp {
449 ccfe88e6 2018-07-12 stsp #ifndef GOT_NO_OBJ_CACHE
450 f6be5c30 2018-06-22 stsp const struct got_error *err = NULL;
451 6bef87be 2018-09-11 stsp err = got_object_cache_add(&repo->treecache, id, tree);
452 79c99a64 2019-05-23 stsp if (err) {
453 79c99a64 2019-05-23 stsp if (err->code == GOT_ERR_OBJ_EXISTS ||
454 79c99a64 2019-05-23 stsp err->code == GOT_ERR_OBJ_TOO_LARGE)
455 79c99a64 2019-05-23 stsp err = NULL;
456 f6be5c30 2018-06-22 stsp return err;
457 79c99a64 2019-05-23 stsp }
458 f6be5c30 2018-06-22 stsp tree->refcnt++;
459 ccfe88e6 2018-07-12 stsp #endif
460 f6be5c30 2018-06-22 stsp return NULL;
461 f6be5c30 2018-06-22 stsp }
462 f6be5c30 2018-06-22 stsp
463 f6be5c30 2018-06-22 stsp struct got_tree_object *
464 f6be5c30 2018-06-22 stsp got_repo_get_cached_tree(struct got_repository *repo,
465 f6be5c30 2018-06-22 stsp struct got_object_id *id)
466 f6be5c30 2018-06-22 stsp {
467 6bef87be 2018-09-11 stsp return (struct got_tree_object *)got_object_cache_get(
468 6bef87be 2018-09-11 stsp &repo->treecache, id);
469 1943de01 2018-06-22 stsp }
470 1943de01 2018-06-22 stsp
471 1943de01 2018-06-22 stsp const struct got_error *
472 1943de01 2018-06-22 stsp got_repo_cache_commit(struct got_repository *repo, struct got_object_id *id,
473 1943de01 2018-06-22 stsp struct got_commit_object *commit)
474 1943de01 2018-06-22 stsp {
475 ccfe88e6 2018-07-12 stsp #ifndef GOT_NO_OBJ_CACHE
476 1943de01 2018-06-22 stsp const struct got_error *err = NULL;
477 6bef87be 2018-09-11 stsp err = got_object_cache_add(&repo->commitcache, id, commit);
478 79c99a64 2019-05-23 stsp if (err) {
479 79c99a64 2019-05-23 stsp if (err->code == GOT_ERR_OBJ_EXISTS ||
480 79c99a64 2019-05-23 stsp err->code == GOT_ERR_OBJ_TOO_LARGE)
481 79c99a64 2019-05-23 stsp err = NULL;
482 1943de01 2018-06-22 stsp return err;
483 79c99a64 2019-05-23 stsp }
484 1943de01 2018-06-22 stsp commit->refcnt++;
485 ccfe88e6 2018-07-12 stsp #endif
486 f6be5c30 2018-06-22 stsp return NULL;
487 f6be5c30 2018-06-22 stsp }
488 f6be5c30 2018-06-22 stsp
489 1943de01 2018-06-22 stsp struct got_commit_object *
490 1943de01 2018-06-22 stsp got_repo_get_cached_commit(struct got_repository *repo,
491 1943de01 2018-06-22 stsp struct got_object_id *id)
492 1943de01 2018-06-22 stsp {
493 6bef87be 2018-09-11 stsp return (struct got_commit_object *)got_object_cache_get(
494 6bef87be 2018-09-11 stsp &repo->commitcache, id);
495 f4a881ce 2018-11-17 stsp }
496 f4a881ce 2018-11-17 stsp
497 f4a881ce 2018-11-17 stsp const struct got_error *
498 f4a881ce 2018-11-17 stsp got_repo_cache_tag(struct got_repository *repo, struct got_object_id *id,
499 f4a881ce 2018-11-17 stsp struct got_tag_object *tag)
500 f4a881ce 2018-11-17 stsp {
501 f4a881ce 2018-11-17 stsp #ifndef GOT_NO_OBJ_CACHE
502 f4a881ce 2018-11-17 stsp const struct got_error *err = NULL;
503 f4a881ce 2018-11-17 stsp err = got_object_cache_add(&repo->tagcache, id, tag);
504 79c99a64 2019-05-23 stsp if (err) {
505 79c99a64 2019-05-23 stsp if (err->code == GOT_ERR_OBJ_EXISTS ||
506 79c99a64 2019-05-23 stsp err->code == GOT_ERR_OBJ_TOO_LARGE)
507 79c99a64 2019-05-23 stsp err = NULL;
508 f4a881ce 2018-11-17 stsp return err;
509 79c99a64 2019-05-23 stsp }
510 f4a881ce 2018-11-17 stsp tag->refcnt++;
511 f4a881ce 2018-11-17 stsp #endif
512 f4a881ce 2018-11-17 stsp return NULL;
513 f4a881ce 2018-11-17 stsp }
514 f4a881ce 2018-11-17 stsp
515 f4a881ce 2018-11-17 stsp struct got_tag_object *
516 f4a881ce 2018-11-17 stsp got_repo_get_cached_tag(struct got_repository *repo, struct got_object_id *id)
517 f4a881ce 2018-11-17 stsp {
518 f4a881ce 2018-11-17 stsp return (struct got_tag_object *)got_object_cache_get(
519 f4a881ce 2018-11-17 stsp &repo->tagcache, id);
520 8ab9215c 2021-10-15 thomas }
521 8ab9215c 2021-10-15 thomas
522 8ab9215c 2021-10-15 thomas const struct got_error *
523 8ab9215c 2021-10-15 thomas got_repo_cache_raw_object(struct got_repository *repo, struct got_object_id *id,
524 8ab9215c 2021-10-15 thomas struct got_raw_object *raw)
525 8ab9215c 2021-10-15 thomas {
526 8ab9215c 2021-10-15 thomas #ifndef GOT_NO_OBJ_CACHE
527 8ab9215c 2021-10-15 thomas const struct got_error *err = NULL;
528 8ab9215c 2021-10-15 thomas err = got_object_cache_add(&repo->rawcache, id, raw);
529 8ab9215c 2021-10-15 thomas if (err) {
530 8ab9215c 2021-10-15 thomas if (err->code == GOT_ERR_OBJ_EXISTS ||
531 8ab9215c 2021-10-15 thomas err->code == GOT_ERR_OBJ_TOO_LARGE)
532 8ab9215c 2021-10-15 thomas err = NULL;
533 8ab9215c 2021-10-15 thomas return err;
534 8ab9215c 2021-10-15 thomas }
535 8ab9215c 2021-10-15 thomas raw->refcnt++;
536 8ab9215c 2021-10-15 thomas #endif
537 8ab9215c 2021-10-15 thomas return NULL;
538 1943de01 2018-06-22 stsp }
539 1943de01 2018-06-22 stsp
540 8ab9215c 2021-10-15 thomas
541 8ab9215c 2021-10-15 thomas struct got_raw_object *
542 8ab9215c 2021-10-15 thomas got_repo_get_cached_raw_object(struct got_repository *repo,
543 8ab9215c 2021-10-15 thomas struct got_object_id *id)
544 8ab9215c 2021-10-15 thomas {
545 8ab9215c 2021-10-15 thomas return (struct got_raw_object *)got_object_cache_get(&repo->rawcache, id);
546 8ab9215c 2021-10-15 thomas }
547 8ab9215c 2021-10-15 thomas
548 8ab9215c 2021-10-15 thomas
549 991ff1aa 2021-06-15 tracey static const struct got_error *
550 85f51bba 2018-07-16 stsp open_repo(struct got_repository *repo, const char *path)
551 4027f31a 2017-11-04 stsp {
552 85f51bba 2018-07-16 stsp const struct got_error *err = NULL;
553 85f51bba 2018-07-16 stsp
554 6d5a9006 2020-12-16 yzhong repo->gitdir_fd = -1;
555 6d5a9006 2020-12-16 yzhong
556 85f51bba 2018-07-16 stsp /* bare git repository? */
557 85f51bba 2018-07-16 stsp repo->path_git_dir = strdup(path);
558 ee645855 2019-02-05 stsp if (repo->path_git_dir == NULL)
559 638f9024 2019-05-13 stsp return got_error_from_errno("strdup");
560 85f51bba 2018-07-16 stsp if (is_git_repo(repo)) {
561 85f51bba 2018-07-16 stsp repo->path = strdup(repo->path_git_dir);
562 85f51bba 2018-07-16 stsp if (repo->path == NULL) {
563 638f9024 2019-05-13 stsp err = got_error_from_errno("strdup");
564 6d5a9006 2020-12-16 yzhong goto done;
565 6d5a9006 2020-12-16 yzhong }
566 06340621 2021-12-31 thomas repo->gitdir_fd = open(repo->path_git_dir,
567 06340621 2021-12-31 thomas O_DIRECTORY | O_CLOEXEC);
568 6d5a9006 2020-12-16 yzhong if (repo->gitdir_fd == -1) {
569 6d5a9006 2020-12-16 yzhong err = got_error_from_errno2("open",
570 6d5a9006 2020-12-16 yzhong repo->path_git_dir);
571 85f51bba 2018-07-16 stsp goto done;
572 85f51bba 2018-07-16 stsp }
573 85f51bba 2018-07-16 stsp return NULL;
574 85f51bba 2018-07-16 stsp }
575 85f51bba 2018-07-16 stsp
576 85f51bba 2018-07-16 stsp /* git repository with working tree? */
577 85f51bba 2018-07-16 stsp free(repo->path_git_dir);
578 6b68ccd6 2019-09-01 stsp repo->path_git_dir = NULL;
579 85f51bba 2018-07-16 stsp if (asprintf(&repo->path_git_dir, "%s/%s", path, GOT_GIT_DIR) == -1) {
580 638f9024 2019-05-13 stsp err = got_error_from_errno("asprintf");
581 85f51bba 2018-07-16 stsp goto done;
582 85f51bba 2018-07-16 stsp }
583 85f51bba 2018-07-16 stsp if (is_git_repo(repo)) {
584 85f51bba 2018-07-16 stsp repo->path = strdup(path);
585 85f51bba 2018-07-16 stsp if (repo->path == NULL) {
586 638f9024 2019-05-13 stsp err = got_error_from_errno("strdup");
587 85f51bba 2018-07-16 stsp goto done;
588 85f51bba 2018-07-16 stsp }
589 06340621 2021-12-31 thomas repo->gitdir_fd = open(repo->path_git_dir,
590 06340621 2021-12-31 thomas O_DIRECTORY | O_CLOEXEC);
591 6d5a9006 2020-12-16 yzhong if (repo->gitdir_fd == -1) {
592 6d5a9006 2020-12-16 yzhong err = got_error_from_errno2("open",
593 6d5a9006 2020-12-16 yzhong repo->path_git_dir);
594 6d5a9006 2020-12-16 yzhong goto done;
595 6d5a9006 2020-12-16 yzhong }
596 85f51bba 2018-07-16 stsp return NULL;
597 85f51bba 2018-07-16 stsp }
598 85f51bba 2018-07-16 stsp
599 ee645855 2019-02-05 stsp err = got_error(GOT_ERR_NOT_GIT_REPO);
600 ee645855 2019-02-05 stsp done:
601 85f51bba 2018-07-16 stsp if (err) {
602 ee645855 2019-02-05 stsp free(repo->path);
603 ee645855 2019-02-05 stsp repo->path = NULL;
604 85f51bba 2018-07-16 stsp free(repo->path_git_dir);
605 ee645855 2019-02-05 stsp repo->path_git_dir = NULL;
606 6d5a9006 2020-12-16 yzhong if (repo->gitdir_fd != -1)
607 6d5a9006 2020-12-16 yzhong close(repo->gitdir_fd);
608 6d5a9006 2020-12-16 yzhong repo->gitdir_fd = -1;
609 cd95becd 2019-11-29 stsp
610 cd95becd 2019-11-29 stsp }
611 c9956ddf 2019-09-08 stsp return err;
612 c9956ddf 2019-09-08 stsp }
613 c9956ddf 2019-09-08 stsp
614 c9956ddf 2019-09-08 stsp static const struct got_error *
615 c9956ddf 2019-09-08 stsp read_gitconfig(struct got_repository *repo, const char *global_gitconfig_path)
616 c9956ddf 2019-09-08 stsp {
617 c9956ddf 2019-09-08 stsp const struct got_error *err = NULL;
618 c9956ddf 2019-09-08 stsp char *repo_gitconfig_path = NULL;
619 c9956ddf 2019-09-08 stsp
620 c9956ddf 2019-09-08 stsp if (global_gitconfig_path) {
621 c9956ddf 2019-09-08 stsp /* Read settings from ~/.gitconfig. */
622 c9956ddf 2019-09-08 stsp int dummy_repo_version;
623 d348087d 2022-10-13 thomas err = got_repo_read_gitconfig(&dummy_repo_version,
624 c9956ddf 2019-09-08 stsp &repo->global_gitconfig_author_name,
625 c9956ddf 2019-09-08 stsp &repo->global_gitconfig_author_email,
626 b091c2cd 2023-02-07 thomas NULL, NULL, NULL, NULL, NULL, NULL,
627 b091c2cd 2023-02-07 thomas global_gitconfig_path);
628 c9956ddf 2019-09-08 stsp if (err)
629 c9956ddf 2019-09-08 stsp return err;
630 c9956ddf 2019-09-08 stsp }
631 c9956ddf 2019-09-08 stsp
632 c9956ddf 2019-09-08 stsp /* Read repository's .git/config file. */
633 b46f3e71 2020-03-18 stsp repo_gitconfig_path = got_repo_get_path_gitconfig(repo);
634 b46f3e71 2020-03-18 stsp if (repo_gitconfig_path == NULL)
635 b46f3e71 2020-03-18 stsp return got_error_from_errno("got_repo_get_path_gitconfig");
636 c9956ddf 2019-09-08 stsp
637 d348087d 2022-10-13 thomas err = got_repo_read_gitconfig(
638 d348087d 2022-10-13 thomas &repo->gitconfig_repository_format_version,
639 c9956ddf 2019-09-08 stsp &repo->gitconfig_author_name, &repo->gitconfig_author_email,
640 cd95becd 2019-11-29 stsp &repo->gitconfig_remotes, &repo->ngitconfig_remotes,
641 b091c2cd 2023-02-07 thomas &repo->gitconfig_owner, &repo->extnames, &repo->extvals,
642 b091c2cd 2023-02-07 thomas &repo->nextensions, repo_gitconfig_path);
643 c9956ddf 2019-09-08 stsp if (err)
644 c9956ddf 2019-09-08 stsp goto done;
645 5daf5c53 2022-07-23 thomas
646 5daf5c53 2022-07-23 thomas if (getenv("GOT_IGNORE_GITCONFIG") != NULL) {
647 5daf5c53 2022-07-23 thomas int i;
648 5daf5c53 2022-07-23 thomas
649 5daf5c53 2022-07-23 thomas for (i = 0; i < repo->ngitconfig_remotes; i++) {
650 5daf5c53 2022-07-23 thomas got_repo_free_remote_repo_data(
651 5daf5c53 2022-07-23 thomas &repo->gitconfig_remotes[i]);
652 5daf5c53 2022-07-23 thomas }
653 5daf5c53 2022-07-23 thomas free(repo->gitconfig_remotes);
654 7e91f3d2 2022-07-24 thomas repo->gitconfig_remotes = NULL;
655 5daf5c53 2022-07-23 thomas repo->ngitconfig_remotes = 0;
656 5daf5c53 2022-07-23 thomas
657 5daf5c53 2022-07-23 thomas free(repo->gitconfig_author_name);
658 5daf5c53 2022-07-23 thomas repo->gitconfig_author_name = NULL;
659 5daf5c53 2022-07-23 thomas free(repo->gitconfig_author_email);
660 5daf5c53 2022-07-23 thomas repo->gitconfig_author_email = NULL;
661 7e91f3d2 2022-07-24 thomas
662 7e91f3d2 2022-07-24 thomas free(repo->global_gitconfig_author_name);
663 7e91f3d2 2022-07-24 thomas repo->global_gitconfig_author_name = NULL;
664 7e91f3d2 2022-07-24 thomas free(repo->global_gitconfig_author_email);
665 7e91f3d2 2022-07-24 thomas repo->global_gitconfig_author_email = NULL;
666 5daf5c53 2022-07-23 thomas }
667 5daf5c53 2022-07-23 thomas
668 c9956ddf 2019-09-08 stsp done:
669 c9956ddf 2019-09-08 stsp free(repo_gitconfig_path);
670 257add31 2020-09-09 stsp return err;
671 257add31 2020-09-09 stsp }
672 257add31 2020-09-09 stsp
673 257add31 2020-09-09 stsp static const struct got_error *
674 257add31 2020-09-09 stsp read_gotconfig(struct got_repository *repo)
675 257add31 2020-09-09 stsp {
676 257add31 2020-09-09 stsp const struct got_error *err = NULL;
677 257add31 2020-09-09 stsp char *gotconfig_path;
678 257add31 2020-09-09 stsp
679 257add31 2020-09-09 stsp gotconfig_path = got_repo_get_path_gotconfig(repo);
680 257add31 2020-09-09 stsp if (gotconfig_path == NULL)
681 257add31 2020-09-09 stsp return got_error_from_errno("got_repo_get_path_gotconfig");
682 257add31 2020-09-09 stsp
683 50b0790e 2020-09-11 stsp err = got_gotconfig_read(&repo->gotconfig, gotconfig_path);
684 257add31 2020-09-09 stsp free(gotconfig_path);
685 85f51bba 2018-07-16 stsp return err;
686 85f51bba 2018-07-16 stsp }
687 85f51bba 2018-07-16 stsp
688 20b7abb3 2020-10-22 stsp /* Supported repository format extensions. */
689 d224ad33 2022-03-22 thomas static const char *const repo_extensions[] = {
690 20b7abb3 2020-10-22 stsp "noop", /* Got supports repository format version 1. */
691 2252c019 2021-07-03 stsp "preciousObjects", /* Supported by gotadmin cleanup. */
692 20b7abb3 2020-10-22 stsp "worktreeConfig", /* Got does not care about Git work trees. */
693 20b7abb3 2020-10-22 stsp };
694 20b7abb3 2020-10-22 stsp
695 85f51bba 2018-07-16 stsp const struct got_error *
696 c9956ddf 2019-09-08 stsp got_repo_open(struct got_repository **repop, const char *path,
697 7cd52833 2022-06-23 thomas const char *global_gitconfig_path, int *pack_fds)
698 85f51bba 2018-07-16 stsp {
699 92af5469 2017-11-05 stsp struct got_repository *repo = NULL;
700 92af5469 2017-11-05 stsp const struct got_error *err = NULL;
701 dbb02f4d 2020-12-04 stsp char *repo_path = NULL;
702 7cd52833 2022-06-23 thomas size_t i, j = 0;
703 4027f31a 2017-11-04 stsp
704 85f51bba 2018-07-16 stsp *repop = NULL;
705 4027f31a 2017-11-04 stsp
706 4027f31a 2017-11-04 stsp repo = calloc(1, sizeof(*repo));
707 58cbcd83 2022-03-22 thomas if (repo == NULL)
708 58cbcd83 2022-03-22 thomas return got_error_from_errno("calloc");
709 4545b700 2021-10-15 thomas
710 cfe41121 2021-10-16 thomas RB_INIT(&repo->packidx_bloom_filters);
711 de47d040 2022-03-22 thomas TAILQ_INIT(&repo->packidx_paths);
712 4027f31a 2017-11-04 stsp
713 ad242220 2018-09-08 stsp for (i = 0; i < nitems(repo->privsep_children); i++) {
714 3516b818 2018-09-08 stsp memset(&repo->privsep_children[i], 0,
715 3516b818 2018-09-08 stsp sizeof(repo->privsep_children[0]));
716 ad242220 2018-09-08 stsp repo->privsep_children[i].imsg_fd = -1;
717 ad242220 2018-09-08 stsp }
718 ad242220 2018-09-08 stsp
719 6bef87be 2018-09-11 stsp err = got_object_cache_init(&repo->objcache,
720 6bef87be 2018-09-11 stsp GOT_OBJECT_CACHE_TYPE_OBJ);
721 6bef87be 2018-09-11 stsp if (err)
722 f6be5c30 2018-06-22 stsp goto done;
723 6bef87be 2018-09-11 stsp err = got_object_cache_init(&repo->treecache,
724 6bef87be 2018-09-11 stsp GOT_OBJECT_CACHE_TYPE_TREE);
725 6bef87be 2018-09-11 stsp if (err)
726 1943de01 2018-06-22 stsp goto done;
727 6bef87be 2018-09-11 stsp err = got_object_cache_init(&repo->commitcache,
728 6bef87be 2018-09-11 stsp GOT_OBJECT_CACHE_TYPE_COMMIT);
729 6bef87be 2018-09-11 stsp if (err)
730 eb77ee11 2018-07-08 stsp goto done;
731 f4a881ce 2018-11-17 stsp err = got_object_cache_init(&repo->tagcache,
732 f4a881ce 2018-11-17 stsp GOT_OBJECT_CACHE_TYPE_TAG);
733 f4a881ce 2018-11-17 stsp if (err)
734 f4a881ce 2018-11-17 stsp goto done;
735 8ab9215c 2021-10-15 thomas err = got_object_cache_init(&repo->rawcache,
736 8ab9215c 2021-10-15 thomas GOT_OBJECT_CACHE_TYPE_RAW);
737 8ab9215c 2021-10-15 thomas if (err)
738 8ab9215c 2021-10-15 thomas goto done;
739 1943de01 2018-06-22 stsp
740 e0220e74 2022-10-31 thomas err = get_pack_cache_size(&repo->pack_cache_size);
741 e0220e74 2022-10-31 thomas if (err)
742 e0220e74 2022-10-31 thomas goto done;
743 bfb5ee0b 2022-05-31 thomas for (i = 0; i < nitems(repo->packs); i++) {
744 3efd8e31 2022-10-23 thomas if (pack_fds != NULL && i < repo->pack_cache_size) {
745 7cd52833 2022-06-23 thomas repo->packs[i].basefd = pack_fds[j++];
746 7cd52833 2022-06-23 thomas repo->packs[i].accumfd = pack_fds[j++];
747 bfb5ee0b 2022-05-31 thomas } else {
748 bfb5ee0b 2022-05-31 thomas repo->packs[i].basefd = -1;
749 bfb5ee0b 2022-05-31 thomas repo->packs[i].accumfd = -1;
750 bfb5ee0b 2022-05-31 thomas }
751 bfb5ee0b 2022-05-31 thomas }
752 3efd8e31 2022-10-23 thomas for (i = 0; i < nitems(repo->tempfiles); i++)
753 3efd8e31 2022-10-23 thomas repo->tempfiles[i] = -1;
754 ec2b23c5 2022-07-01 thomas repo->pinned_pack = -1;
755 ec2b23c5 2022-07-01 thomas repo->pinned_packidx = -1;
756 ec2b23c5 2022-07-01 thomas repo->pinned_pid = 0;
757 6c414261 2021-03-30 stsp
758 dbb02f4d 2020-12-04 stsp repo_path = realpath(path, NULL);
759 aff6eea4 2020-10-20 stsp if (repo_path == NULL) {
760 dbb02f4d 2020-12-04 stsp err = got_error_from_errno2("realpath", path);
761 92af5469 2017-11-05 stsp goto done;
762 92af5469 2017-11-05 stsp }
763 4027f31a 2017-11-04 stsp
764 aff6eea4 2020-10-20 stsp for (;;) {
765 aff6eea4 2020-10-20 stsp char *parent_path;
766 aff6eea4 2020-10-20 stsp
767 aff6eea4 2020-10-20 stsp err = open_repo(repo, repo_path);
768 85f51bba 2018-07-16 stsp if (err == NULL)
769 85f51bba 2018-07-16 stsp break;
770 85f51bba 2018-07-16 stsp if (err->code != GOT_ERR_NOT_GIT_REPO)
771 9aceaadf 2020-10-20 stsp goto done;
772 aff6eea4 2020-10-20 stsp if (repo_path[0] == '/' && repo_path[1] == '\0') {
773 0c93d204 2020-10-20 stsp err = got_error(GOT_ERR_NOT_GIT_REPO);
774 0c93d204 2020-10-20 stsp goto done;
775 442a3ddc 2018-04-23 stsp }
776 aff6eea4 2020-10-20 stsp err = got_path_dirname(&parent_path, repo_path);
777 aff6eea4 2020-10-20 stsp if (err)
778 f2db9c47 2019-08-24 stsp goto done;
779 aff6eea4 2020-10-20 stsp free(repo_path);
780 aff6eea4 2020-10-20 stsp repo_path = parent_path;
781 aff6eea4 2020-10-20 stsp }
782 1d126e2d 2019-08-24 stsp
783 257add31 2020-09-09 stsp err = read_gotconfig(repo);
784 257add31 2020-09-09 stsp if (err)
785 257add31 2020-09-09 stsp goto done;
786 257add31 2020-09-09 stsp
787 c9956ddf 2019-09-08 stsp err = read_gitconfig(repo, global_gitconfig_path);
788 1d126e2d 2019-08-24 stsp if (err)
789 1d126e2d 2019-08-24 stsp goto done;
790 ebb42948 2022-07-21 thomas if (repo->gitconfig_repository_format_version != 0) {
791 aba9c984 2019-09-08 stsp err = got_error_path(path, GOT_ERR_GIT_REPO_FORMAT);
792 ebb42948 2022-07-21 thomas goto done;
793 ebb42948 2022-07-21 thomas }
794 20b7abb3 2020-10-22 stsp for (i = 0; i < repo->nextensions; i++) {
795 b091c2cd 2023-02-07 thomas char *ext = repo->extnames[i];
796 b091c2cd 2023-02-07 thomas char *val = repo->extvals[i];
797 20b7abb3 2020-10-22 stsp int j, supported = 0;
798 b091c2cd 2023-02-07 thomas
799 b091c2cd 2023-02-07 thomas if (!is_boolean_val(val)) {
800 b091c2cd 2023-02-07 thomas err = got_error_path(ext, GOT_ERR_GIT_REPO_EXT);
801 b091c2cd 2023-02-07 thomas goto done;
802 b091c2cd 2023-02-07 thomas }
803 b091c2cd 2023-02-07 thomas
804 b091c2cd 2023-02-07 thomas if (!get_boolean_val(val))
805 b091c2cd 2023-02-07 thomas continue;
806 b091c2cd 2023-02-07 thomas
807 20b7abb3 2020-10-22 stsp for (j = 0; j < nitems(repo_extensions); j++) {
808 20b7abb3 2020-10-22 stsp if (strcmp(ext, repo_extensions[j]) == 0) {
809 20b7abb3 2020-10-22 stsp supported = 1;
810 20b7abb3 2020-10-22 stsp break;
811 20b7abb3 2020-10-22 stsp }
812 20b7abb3 2020-10-22 stsp }
813 20b7abb3 2020-10-22 stsp if (!supported) {
814 20b7abb3 2020-10-22 stsp err = got_error_path(ext, GOT_ERR_GIT_REPO_EXT);
815 20b7abb3 2020-10-22 stsp goto done;
816 20b7abb3 2020-10-22 stsp }
817 20b7abb3 2020-10-22 stsp }
818 de47d040 2022-03-22 thomas
819 de47d040 2022-03-22 thomas err = got_repo_list_packidx(&repo->packidx_paths, repo);
820 92af5469 2017-11-05 stsp done:
821 92af5469 2017-11-05 stsp if (err)
822 5c2f5761 2018-09-19 stsp got_repo_close(repo);
823 85f51bba 2018-07-16 stsp else
824 85f51bba 2018-07-16 stsp *repop = repo;
825 aff6eea4 2020-10-20 stsp free(repo_path);
826 92af5469 2017-11-05 stsp return err;
827 4027f31a 2017-11-04 stsp }
828 4027f31a 2017-11-04 stsp
829 ad242220 2018-09-08 stsp const struct got_error *
830 4027f31a 2017-11-04 stsp got_repo_close(struct got_repository *repo)
831 4027f31a 2017-11-04 stsp {
832 ad242220 2018-09-08 stsp const struct got_error *err = NULL, *child_err;
833 0be8fa4c 2021-10-15 thomas struct got_packidx_bloom_filter *bf;
834 16aeacf7 2020-11-26 stsp size_t i;
835 79b11c62 2018-03-09 stsp
836 6c414261 2021-03-30 stsp for (i = 0; i < repo->pack_cache_size; i++) {
837 65cf1e80 2018-03-16 stsp if (repo->packidx_cache[i] == NULL)
838 79b11c62 2018-03-09 stsp break;
839 65cf1e80 2018-03-16 stsp got_packidx_close(repo->packidx_cache[i]);
840 4545b700 2021-10-15 thomas }
841 4545b700 2021-10-15 thomas
842 cfe41121 2021-10-16 thomas while ((bf = RB_MIN(got_packidx_bloom_filter_tree,
843 cfe41121 2021-10-16 thomas &repo->packidx_bloom_filters))) {
844 cfe41121 2021-10-16 thomas RB_REMOVE(got_packidx_bloom_filter_tree,
845 cfe41121 2021-10-16 thomas &repo->packidx_bloom_filters, bf);
846 c4f29b53 2022-08-31 thomas bloom_free(bf->bloom);
847 4545b700 2021-10-15 thomas free(bf->bloom);
848 4545b700 2021-10-15 thomas free(bf);
849 79b11c62 2018-03-09 stsp }
850 bd1223b9 2018-03-14 stsp
851 7cd52833 2022-06-23 thomas for (i = 0; i < repo->pack_cache_size; i++)
852 cf032c44 2022-05-31 thomas if (repo->packs[i].path_packfile)
853 7cd52833 2022-06-23 thomas if (repo->packs[i].path_packfile)
854 7cd52833 2022-06-23 thomas got_pack_close(&repo->packs[i]);
855 7e656b93 2018-03-17 stsp
856 4027f31a 2017-11-04 stsp free(repo->path);
857 4986b9d5 2018-03-12 stsp free(repo->path_git_dir);
858 cd717821 2018-06-22 stsp
859 6bef87be 2018-09-11 stsp got_object_cache_close(&repo->objcache);
860 6bef87be 2018-09-11 stsp got_object_cache_close(&repo->treecache);
861 6bef87be 2018-09-11 stsp got_object_cache_close(&repo->commitcache);
862 f4a881ce 2018-11-17 stsp got_object_cache_close(&repo->tagcache);
863 8ab9215c 2021-10-15 thomas got_object_cache_close(&repo->rawcache);
864 ad242220 2018-09-08 stsp
865 ad242220 2018-09-08 stsp for (i = 0; i < nitems(repo->privsep_children); i++) {
866 ad242220 2018-09-08 stsp if (repo->privsep_children[i].imsg_fd == -1)
867 ad242220 2018-09-08 stsp continue;
868 3516b818 2018-09-08 stsp imsg_clear(repo->privsep_children[i].ibuf);
869 3516b818 2018-09-08 stsp free(repo->privsep_children[i].ibuf);
870 ad242220 2018-09-08 stsp err = got_privsep_send_stop(repo->privsep_children[i].imsg_fd);
871 8050095e 2023-06-22 thomas if (err && err->code == GOT_ERR_EOF)
872 8050095e 2023-06-22 thomas err = NULL;
873 876c234b 2018-09-10 stsp child_err = got_privsep_wait_for_child(
874 876c234b 2018-09-10 stsp repo->privsep_children[i].pid);
875 ad242220 2018-09-08 stsp if (child_err && err == NULL)
876 ad242220 2018-09-08 stsp err = child_err;
877 08578a35 2021-01-22 stsp if (close(repo->privsep_children[i].imsg_fd) == -1 &&
878 3a6ce05a 2019-02-11 stsp err == NULL)
879 638f9024 2019-05-13 stsp err = got_error_from_errno("close");
880 ad242220 2018-09-08 stsp }
881 aba9c984 2019-09-08 stsp
882 1d0f4054 2021-06-17 stsp if (repo->gitdir_fd != -1 && close(repo->gitdir_fd) == -1 &&
883 1d0f4054 2021-06-17 stsp err == NULL)
884 1d0f4054 2021-06-17 stsp err = got_error_from_errno("close");
885 991ff1aa 2021-06-15 tracey
886 50b0790e 2020-09-11 stsp if (repo->gotconfig)
887 50b0790e 2020-09-11 stsp got_gotconfig_free(repo->gotconfig);
888 aba9c984 2019-09-08 stsp free(repo->gitconfig_author_name);
889 aba9c984 2019-09-08 stsp free(repo->gitconfig_author_email);
890 b8adfa55 2020-09-25 stsp for (i = 0; i < repo->ngitconfig_remotes; i++)
891 b8adfa55 2020-09-25 stsp got_repo_free_remote_repo_data(&repo->gitconfig_remotes[i]);
892 cd95becd 2019-11-29 stsp free(repo->gitconfig_remotes);
893 b091c2cd 2023-02-07 thomas for (i = 0; i < repo->nextensions; i++) {
894 b091c2cd 2023-02-07 thomas free(repo->extnames[i]);
895 b091c2cd 2023-02-07 thomas free(repo->extvals[i]);
896 b091c2cd 2023-02-07 thomas }
897 b091c2cd 2023-02-07 thomas free(repo->extnames);
898 b091c2cd 2023-02-07 thomas free(repo->extvals);
899 de47d040 2022-03-22 thomas
900 21c2d8be 2023-01-10 thomas got_pathlist_free(&repo->packidx_paths, GOT_PATHLIST_FREE_PATH);
901 4027f31a 2017-11-04 stsp free(repo);
902 ad242220 2018-09-08 stsp
903 ad242220 2018-09-08 stsp return err;
904 b8adfa55 2020-09-25 stsp }
905 11024cb9 2023-09-05 thomas
906 11024cb9 2023-09-05 thomas const struct got_error *
907 11024cb9 2023-09-05 thomas got_repo_remote_repo_dup(struct got_remote_repo **newp,
908 11024cb9 2023-09-05 thomas const struct got_remote_repo *repo)
909 11024cb9 2023-09-05 thomas {
910 11024cb9 2023-09-05 thomas const struct got_error *err = NULL;
911 11024cb9 2023-09-05 thomas struct got_remote_repo *new;
912 11024cb9 2023-09-05 thomas int i;
913 11024cb9 2023-09-05 thomas
914 11024cb9 2023-09-05 thomas new = calloc(1, sizeof(*new));
915 11024cb9 2023-09-05 thomas if (new == NULL)
916 11024cb9 2023-09-05 thomas return got_error_from_errno("calloc");
917 11024cb9 2023-09-05 thomas
918 11024cb9 2023-09-05 thomas if (repo->name) {
919 11024cb9 2023-09-05 thomas new->name = strdup(repo->name);
920 11024cb9 2023-09-05 thomas if (new->name == NULL) {
921 11024cb9 2023-09-05 thomas err = got_error_from_errno("strdup");
922 11024cb9 2023-09-05 thomas goto done;
923 11024cb9 2023-09-05 thomas }
924 11024cb9 2023-09-05 thomas }
925 11024cb9 2023-09-05 thomas
926 11024cb9 2023-09-05 thomas if (repo->fetch_url) {
927 11024cb9 2023-09-05 thomas new->fetch_url = strdup(repo->fetch_url);
928 11024cb9 2023-09-05 thomas if (new->fetch_url == NULL) {
929 11024cb9 2023-09-05 thomas err = got_error_from_errno("strdup");
930 11024cb9 2023-09-05 thomas goto done;
931 11024cb9 2023-09-05 thomas }
932 11024cb9 2023-09-05 thomas }
933 b8adfa55 2020-09-25 stsp
934 11024cb9 2023-09-05 thomas if (repo->send_url) {
935 11024cb9 2023-09-05 thomas new->send_url = strdup(repo->send_url);
936 11024cb9 2023-09-05 thomas if (new->send_url == NULL) {
937 11024cb9 2023-09-05 thomas err = got_error_from_errno("strdup");
938 11024cb9 2023-09-05 thomas goto done;
939 11024cb9 2023-09-05 thomas }
940 11024cb9 2023-09-05 thomas }
941 11024cb9 2023-09-05 thomas
942 11024cb9 2023-09-05 thomas new->mirror_references = repo->mirror_references;
943 d7a689ea 2023-10-01 thomas
944 d7a689ea 2023-10-01 thomas new->fetch_all_branches = repo->fetch_all_branches;
945 11024cb9 2023-09-05 thomas
946 11024cb9 2023-09-05 thomas new->nfetch_branches = repo->nfetch_branches;
947 11024cb9 2023-09-05 thomas if (repo->fetch_branches) {
948 11024cb9 2023-09-05 thomas new->fetch_branches = calloc(repo->nfetch_branches,
949 11024cb9 2023-09-05 thomas sizeof(char *));
950 11024cb9 2023-09-05 thomas if (new->fetch_branches == NULL) {
951 11024cb9 2023-09-05 thomas err = got_error_from_errno("calloc");
952 11024cb9 2023-09-05 thomas goto done;
953 11024cb9 2023-09-05 thomas }
954 11024cb9 2023-09-05 thomas for (i = 0; i < repo->nfetch_branches; i++) {
955 11024cb9 2023-09-05 thomas new->fetch_branches[i] = strdup(
956 11024cb9 2023-09-05 thomas repo->fetch_branches[i]);
957 11024cb9 2023-09-05 thomas if (new->fetch_branches[i] == NULL) {
958 11024cb9 2023-09-05 thomas err = got_error_from_errno("strdup");
959 11024cb9 2023-09-05 thomas goto done;
960 11024cb9 2023-09-05 thomas }
961 11024cb9 2023-09-05 thomas }
962 11024cb9 2023-09-05 thomas }
963 11024cb9 2023-09-05 thomas
964 11024cb9 2023-09-05 thomas new->nsend_branches = repo->nsend_branches;
965 11024cb9 2023-09-05 thomas if (repo->send_branches) {
966 11024cb9 2023-09-05 thomas new->send_branches = calloc(repo->nsend_branches,
967 11024cb9 2023-09-05 thomas sizeof(char *));
968 11024cb9 2023-09-05 thomas if (new->send_branches == NULL) {
969 11024cb9 2023-09-05 thomas err = got_error_from_errno("calloc");
970 11024cb9 2023-09-05 thomas goto done;
971 11024cb9 2023-09-05 thomas }
972 11024cb9 2023-09-05 thomas for (i = 0; i < repo->nsend_branches; i++) {
973 11024cb9 2023-09-05 thomas new->send_branches[i] = strdup(
974 11024cb9 2023-09-05 thomas repo->send_branches[i]);
975 11024cb9 2023-09-05 thomas if (new->send_branches[i] == NULL) {
976 11024cb9 2023-09-05 thomas err = got_error_from_errno("strdup");
977 11024cb9 2023-09-05 thomas goto done;
978 11024cb9 2023-09-05 thomas }
979 11024cb9 2023-09-05 thomas }
980 11024cb9 2023-09-05 thomas }
981 11024cb9 2023-09-05 thomas
982 11024cb9 2023-09-05 thomas new->nfetch_refs = repo->nfetch_refs;
983 11024cb9 2023-09-05 thomas if (repo->fetch_refs) {
984 11024cb9 2023-09-05 thomas new->fetch_refs = calloc(repo->nfetch_refs,
985 11024cb9 2023-09-05 thomas sizeof(char *));
986 11024cb9 2023-09-05 thomas if (new->fetch_refs == NULL) {
987 11024cb9 2023-09-05 thomas err = got_error_from_errno("calloc");
988 11024cb9 2023-09-05 thomas goto done;
989 11024cb9 2023-09-05 thomas }
990 11024cb9 2023-09-05 thomas for (i = 0; i < repo->nfetch_refs; i++) {
991 11024cb9 2023-09-05 thomas new->fetch_refs[i] = strdup(
992 11024cb9 2023-09-05 thomas repo->fetch_refs[i]);
993 11024cb9 2023-09-05 thomas if (new->fetch_refs[i] == NULL) {
994 11024cb9 2023-09-05 thomas err = got_error_from_errno("strdup");
995 11024cb9 2023-09-05 thomas goto done;
996 11024cb9 2023-09-05 thomas }
997 11024cb9 2023-09-05 thomas }
998 11024cb9 2023-09-05 thomas }
999 11024cb9 2023-09-05 thomas done:
1000 11024cb9 2023-09-05 thomas if (err) {
1001 11024cb9 2023-09-05 thomas got_repo_free_remote_repo_data(new);
1002 11024cb9 2023-09-05 thomas free(new);
1003 11024cb9 2023-09-05 thomas } else
1004 11024cb9 2023-09-05 thomas *newp = new;
1005 11024cb9 2023-09-05 thomas
1006 11024cb9 2023-09-05 thomas return err;
1007 11024cb9 2023-09-05 thomas }
1008 11024cb9 2023-09-05 thomas
1009 b8adfa55 2020-09-25 stsp void
1010 b8adfa55 2020-09-25 stsp got_repo_free_remote_repo_data(struct got_remote_repo *repo)
1011 b8adfa55 2020-09-25 stsp {
1012 b8adfa55 2020-09-25 stsp int i;
1013 11024cb9 2023-09-05 thomas
1014 11024cb9 2023-09-05 thomas if (repo == NULL)
1015 11024cb9 2023-09-05 thomas return;
1016 b8adfa55 2020-09-25 stsp
1017 b8adfa55 2020-09-25 stsp free(repo->name);
1018 b8adfa55 2020-09-25 stsp repo->name = NULL;
1019 6480c871 2021-08-30 stsp free(repo->fetch_url);
1020 6480c871 2021-08-30 stsp repo->fetch_url = NULL;
1021 6480c871 2021-08-30 stsp free(repo->send_url);
1022 6480c871 2021-08-30 stsp repo->send_url = NULL;
1023 6480c871 2021-08-30 stsp for (i = 0; i < repo->nfetch_branches; i++)
1024 6480c871 2021-08-30 stsp free(repo->fetch_branches[i]);
1025 6480c871 2021-08-30 stsp free(repo->fetch_branches);
1026 6480c871 2021-08-30 stsp repo->fetch_branches = NULL;
1027 6480c871 2021-08-30 stsp repo->nfetch_branches = 0;
1028 6480c871 2021-08-30 stsp for (i = 0; i < repo->nsend_branches; i++)
1029 6480c871 2021-08-30 stsp free(repo->send_branches[i]);
1030 6480c871 2021-08-30 stsp free(repo->send_branches);
1031 6480c871 2021-08-30 stsp repo->send_branches = NULL;
1032 6480c871 2021-08-30 stsp repo->nsend_branches = 0;
1033 11024cb9 2023-09-05 thomas for (i = 0; i < repo->nfetch_refs; i++)
1034 11024cb9 2023-09-05 thomas free(repo->fetch_refs[i]);
1035 11024cb9 2023-09-05 thomas free(repo->fetch_refs);
1036 11024cb9 2023-09-05 thomas repo->fetch_refs = NULL;
1037 11024cb9 2023-09-05 thomas repo->nfetch_refs = 0;
1038 4027f31a 2017-11-04 stsp }
1039 04ca23f4 2018-07-16 stsp
1040 04ca23f4 2018-07-16 stsp const struct got_error *
1041 04ca23f4 2018-07-16 stsp got_repo_map_path(char **in_repo_path, struct got_repository *repo,
1042 8fa913ec 2020-11-14 stsp const char *input_path)
1043 04ca23f4 2018-07-16 stsp {
1044 04ca23f4 2018-07-16 stsp const struct got_error *err = NULL;
1045 7839bc15 2019-01-06 stsp const char *repo_abspath = NULL;
1046 e83c0634 2020-01-27 stsp size_t repolen, len;
1047 e83c0634 2020-01-27 stsp char *canonpath, *path = NULL;
1048 04ca23f4 2018-07-16 stsp
1049 04ca23f4 2018-07-16 stsp *in_repo_path = NULL;
1050 04ca23f4 2018-07-16 stsp
1051 04ca23f4 2018-07-16 stsp canonpath = strdup(input_path);
1052 04ca23f4 2018-07-16 stsp if (canonpath == NULL) {
1053 638f9024 2019-05-13 stsp err = got_error_from_errno("strdup");
1054 04ca23f4 2018-07-16 stsp goto done;
1055 04ca23f4 2018-07-16 stsp }
1056 04ca23f4 2018-07-16 stsp err = got_canonpath(input_path, canonpath, strlen(canonpath) + 1);
1057 04ca23f4 2018-07-16 stsp if (err)
1058 04ca23f4 2018-07-16 stsp goto done;
1059 04ca23f4 2018-07-16 stsp
1060 04ca23f4 2018-07-16 stsp repo_abspath = got_repo_get_path(repo);
1061 04ca23f4 2018-07-16 stsp
1062 8fa913ec 2020-11-14 stsp if (canonpath[0] == '\0') {
1063 23721109 2018-10-22 stsp path = strdup(canonpath);
1064 b70703ad 2019-03-18 stsp if (path == NULL) {
1065 638f9024 2019-05-13 stsp err = got_error_from_errno("strdup");
1066 04ca23f4 2018-07-16 stsp goto done;
1067 04ca23f4 2018-07-16 stsp }
1068 04ca23f4 2018-07-16 stsp } else {
1069 04ca23f4 2018-07-16 stsp path = realpath(canonpath, NULL);
1070 04ca23f4 2018-07-16 stsp if (path == NULL) {
1071 b70703ad 2019-03-18 stsp if (errno != ENOENT) {
1072 638f9024 2019-05-13 stsp err = got_error_from_errno2("realpath",
1073 230a42bd 2019-05-11 jcs canonpath);
1074 b70703ad 2019-03-18 stsp goto done;
1075 b70703ad 2019-03-18 stsp }
1076 b70703ad 2019-03-18 stsp /*
1077 b70703ad 2019-03-18 stsp * Path is not on disk.
1078 b70703ad 2019-03-18 stsp * Assume it is already relative to repository root.
1079 b70703ad 2019-03-18 stsp */
1080 b70703ad 2019-03-18 stsp path = strdup(canonpath);
1081 b70703ad 2019-03-18 stsp if (path == NULL) {
1082 638f9024 2019-05-13 stsp err = got_error_from_errno("strdup");
1083 b70703ad 2019-03-18 stsp goto done;
1084 b70703ad 2019-03-18 stsp }
1085 04ca23f4 2018-07-16 stsp }
1086 04ca23f4 2018-07-16 stsp
1087 04ca23f4 2018-07-16 stsp repolen = strlen(repo_abspath);
1088 04ca23f4 2018-07-16 stsp len = strlen(path);
1089 04ca23f4 2018-07-16 stsp
1090 04ca23f4 2018-07-16 stsp
1091 04ca23f4 2018-07-16 stsp if (strcmp(path, repo_abspath) == 0) {
1092 04ca23f4 2018-07-16 stsp free(path);
1093 04ca23f4 2018-07-16 stsp path = strdup("");
1094 04ca23f4 2018-07-16 stsp if (path == NULL) {
1095 638f9024 2019-05-13 stsp err = got_error_from_errno("strdup");
1096 04ca23f4 2018-07-16 stsp goto done;
1097 04ca23f4 2018-07-16 stsp }
1098 65aa7d1c 2020-01-28 stsp } else if (len > repolen &&
1099 65aa7d1c 2020-01-28 stsp got_path_is_child(path, repo_abspath, repolen)) {
1100 04ca23f4 2018-07-16 stsp /* Matched an on-disk path inside repository. */
1101 04ca23f4 2018-07-16 stsp if (got_repo_is_bare(repo)) {
1102 04ca23f4 2018-07-16 stsp /*
1103 04ca23f4 2018-07-16 stsp * Matched an on-disk path inside repository
1104 eef9542c 2020-10-22 stsp * database. Treat input as repository-relative.
1105 04ca23f4 2018-07-16 stsp */
1106 abc59930 2021-09-05 naddy free(path);
1107 abc59930 2021-09-05 naddy path = canonpath;
1108 abc59930 2021-09-05 naddy canonpath = NULL;
1109 04ca23f4 2018-07-16 stsp } else {
1110 04ca23f4 2018-07-16 stsp char *child;
1111 04ca23f4 2018-07-16 stsp /* Strip common prefix with repository path. */
1112 04ca23f4 2018-07-16 stsp err = got_path_skip_common_ancestor(&child,
1113 04ca23f4 2018-07-16 stsp repo_abspath, path);
1114 04ca23f4 2018-07-16 stsp if (err)
1115 04ca23f4 2018-07-16 stsp goto done;
1116 04ca23f4 2018-07-16 stsp free(path);
1117 04ca23f4 2018-07-16 stsp path = child;
1118 04ca23f4 2018-07-16 stsp }
1119 04ca23f4 2018-07-16 stsp } else {
1120 04ca23f4 2018-07-16 stsp /*
1121 04ca23f4 2018-07-16 stsp * Matched unrelated on-disk path.
1122 eef9542c 2020-10-22 stsp * Treat input as repository-relative.
1123 04ca23f4 2018-07-16 stsp */
1124 abc59930 2021-09-05 naddy free(path);
1125 abc59930 2021-09-05 naddy path = canonpath;
1126 abc59930 2021-09-05 naddy canonpath = NULL;
1127 04ca23f4 2018-07-16 stsp }
1128 04ca23f4 2018-07-16 stsp }
1129 04ca23f4 2018-07-16 stsp
1130 04ca23f4 2018-07-16 stsp /* Make in-repository path absolute */
1131 04ca23f4 2018-07-16 stsp if (path[0] != '/') {
1132 04ca23f4 2018-07-16 stsp char *abspath;
1133 04ca23f4 2018-07-16 stsp if (asprintf(&abspath, "/%s", path) == -1) {
1134 638f9024 2019-05-13 stsp err = got_error_from_errno("asprintf");
1135 04ca23f4 2018-07-16 stsp goto done;
1136 04ca23f4 2018-07-16 stsp }
1137 04ca23f4 2018-07-16 stsp free(path);
1138 04ca23f4 2018-07-16 stsp path = abspath;
1139 04ca23f4 2018-07-16 stsp }
1140 04ca23f4 2018-07-16 stsp
1141 04ca23f4 2018-07-16 stsp done:
1142 04ca23f4 2018-07-16 stsp free(canonpath);
1143 04ca23f4 2018-07-16 stsp if (err)
1144 04ca23f4 2018-07-16 stsp free(path);
1145 04ca23f4 2018-07-16 stsp else
1146 04ca23f4 2018-07-16 stsp *in_repo_path = path;
1147 1510f469 2018-09-09 stsp return err;
1148 1510f469 2018-09-09 stsp }
1149 1510f469 2018-09-09 stsp
1150 e1a68182 2020-01-07 stsp static const struct got_error *
1151 e1a68182 2020-01-07 stsp cache_packidx(struct got_repository *repo, struct got_packidx *packidx,
1152 e1a68182 2020-01-07 stsp const char *path_packidx)
1153 1510f469 2018-09-09 stsp {
1154 1510f469 2018-09-09 stsp const struct got_error *err = NULL;
1155 16aeacf7 2020-11-26 stsp size_t i;
1156 1510f469 2018-09-09 stsp
1157 6c414261 2021-03-30 stsp for (i = 0; i < repo->pack_cache_size; i++) {
1158 1510f469 2018-09-09 stsp if (repo->packidx_cache[i] == NULL)
1159 1510f469 2018-09-09 stsp break;
1160 e1a68182 2020-01-07 stsp if (strcmp(repo->packidx_cache[i]->path_packidx,
1161 e1a68182 2020-01-07 stsp path_packidx) == 0) {
1162 e1a68182 2020-01-07 stsp return got_error(GOT_ERR_CACHE_DUP_ENTRY);
1163 e1a68182 2020-01-07 stsp }
1164 1510f469 2018-09-09 stsp }
1165 6c414261 2021-03-30 stsp if (i == repo->pack_cache_size) {
1166 ec2b23c5 2022-07-01 thomas do {
1167 ec2b23c5 2022-07-01 thomas i--;
1168 ec2b23c5 2022-07-01 thomas } while (i > 0 && repo->pinned_packidx >= 0 &&
1169 ec2b23c5 2022-07-01 thomas i == repo->pinned_packidx);
1170 3333aec6 2021-10-15 thomas err = got_packidx_close(repo->packidx_cache[i]);
1171 1510f469 2018-09-09 stsp if (err)
1172 1510f469 2018-09-09 stsp return err;
1173 1510f469 2018-09-09 stsp }
1174 1510f469 2018-09-09 stsp
1175 3333aec6 2021-10-15 thomas repo->packidx_cache[i] = packidx;
1176 15fe583f 2018-11-05 stsp
1177 1510f469 2018-09-09 stsp return NULL;
1178 1510f469 2018-09-09 stsp }
1179 1510f469 2018-09-09 stsp
1180 1124fe40 2021-07-07 stsp int
1181 1124fe40 2021-07-07 stsp got_repo_is_packidx_filename(const char *name, size_t len)
1182 1510f469 2018-09-09 stsp {
1183 1510f469 2018-09-09 stsp if (len != GOT_PACKIDX_NAMELEN)
1184 1510f469 2018-09-09 stsp return 0;
1185 1510f469 2018-09-09 stsp
1186 1510f469 2018-09-09 stsp if (strncmp(name, GOT_PACK_PREFIX, strlen(GOT_PACK_PREFIX)) != 0)
1187 1510f469 2018-09-09 stsp return 0;
1188 1510f469 2018-09-09 stsp
1189 1510f469 2018-09-09 stsp if (strcmp(name + strlen(GOT_PACK_PREFIX) +
1190 1510f469 2018-09-09 stsp SHA1_DIGEST_STRING_LENGTH - 1, GOT_PACKIDX_SUFFIX) != 0)
1191 1510f469 2018-09-09 stsp return 0;
1192 4545b700 2021-10-15 thomas
1193 4545b700 2021-10-15 thomas return 1;
1194 0be8fa4c 2021-10-15 thomas }
1195 0be8fa4c 2021-10-15 thomas
1196 cfe41121 2021-10-16 thomas static struct got_packidx_bloom_filter *
1197 cfe41121 2021-10-16 thomas get_packidx_bloom_filter(struct got_repository *repo,
1198 cfe41121 2021-10-16 thomas const char *path, size_t path_len)
1199 cfe41121 2021-10-16 thomas {
1200 cfe41121 2021-10-16 thomas struct got_packidx_bloom_filter key;
1201 cfe41121 2021-10-16 thomas
1202 cfe41121 2021-10-16 thomas if (strlcpy(key.path, path, sizeof(key.path)) >= sizeof(key.path))
1203 cfe41121 2021-10-16 thomas return NULL; /* XXX */
1204 cfe41121 2021-10-16 thomas key.path_len = path_len;
1205 cfe41121 2021-10-16 thomas
1206 cfe41121 2021-10-16 thomas return RB_FIND(got_packidx_bloom_filter_tree,
1207 cfe41121 2021-10-16 thomas &repo->packidx_bloom_filters, &key);
1208 cfe41121 2021-10-16 thomas }
1209 cfe41121 2021-10-16 thomas
1210 f9c2e8e5 2022-02-13 thomas int
1211 f9c2e8e5 2022-02-13 thomas got_repo_check_packidx_bloom_filter(struct got_repository *repo,
1212 4545b700 2021-10-15 thomas const char *path_packidx, struct got_object_id *id)
1213 4545b700 2021-10-15 thomas {
1214 4545b700 2021-10-15 thomas struct got_packidx_bloom_filter *bf;
1215 4545b700 2021-10-15 thomas
1216 cfe41121 2021-10-16 thomas bf = get_packidx_bloom_filter(repo, path_packidx, strlen(path_packidx));
1217 cfe41121 2021-10-16 thomas if (bf)
1218 cfe41121 2021-10-16 thomas return bloom_check(bf->bloom, id->sha1, sizeof(id->sha1));
1219 1510f469 2018-09-09 stsp
1220 4545b700 2021-10-15 thomas /* No bloom filter means this pack index must be searched. */
1221 1510f469 2018-09-09 stsp return 1;
1222 4545b700 2021-10-15 thomas }
1223 4545b700 2021-10-15 thomas
1224 4545b700 2021-10-15 thomas static const struct got_error *
1225 4545b700 2021-10-15 thomas add_packidx_bloom_filter(struct got_repository *repo,
1226 4545b700 2021-10-15 thomas struct got_packidx *packidx, const char *path_packidx)
1227 4545b700 2021-10-15 thomas {
1228 4545b700 2021-10-15 thomas int i, nobjects = be32toh(packidx->hdr.fanout_table[0xff]);
1229 4545b700 2021-10-15 thomas struct got_packidx_bloom_filter *bf;
1230 4545b700 2021-10-15 thomas size_t len;
1231 4545b700 2021-10-15 thomas
1232 4545b700 2021-10-15 thomas /*
1233 4545b700 2021-10-15 thomas * Don't use bloom filters for very large pack index files.
1234 4545b700 2021-10-15 thomas * Large pack files will contain a relatively large fraction
1235 4545b700 2021-10-15 thomas * of our objects so we will likely need to visit them anyway.
1236 4545b700 2021-10-15 thomas * The more objects a pack file contains the higher the probability
1237 4545b700 2021-10-15 thomas * of a false-positive match from the bloom filter. And reading
1238 4545b700 2021-10-15 thomas * all object IDs from a large pack index file can be expensive.
1239 4545b700 2021-10-15 thomas */
1240 4545b700 2021-10-15 thomas if (nobjects > 100000) /* cut-off at about 2MB, at 20 bytes per ID */
1241 4545b700 2021-10-15 thomas return NULL;
1242 4545b700 2021-10-15 thomas
1243 4545b700 2021-10-15 thomas /* Do we already have a filter for this pack index? */
1244 cfe41121 2021-10-16 thomas if (get_packidx_bloom_filter(repo, path_packidx,
1245 cfe41121 2021-10-16 thomas strlen(path_packidx)) != NULL)
1246 cfe41121 2021-10-16 thomas return NULL;
1247 4545b700 2021-10-15 thomas
1248 4545b700 2021-10-15 thomas bf = calloc(1, sizeof(*bf));
1249 4545b700 2021-10-15 thomas if (bf == NULL)
1250 4545b700 2021-10-15 thomas return got_error_from_errno("calloc");
1251 4545b700 2021-10-15 thomas bf->bloom = calloc(1, sizeof(*bf->bloom));
1252 4545b700 2021-10-15 thomas if (bf->bloom == NULL) {
1253 4545b700 2021-10-15 thomas free(bf);
1254 4545b700 2021-10-15 thomas return got_error_from_errno("calloc");
1255 4545b700 2021-10-15 thomas }
1256 b6b86fd1 2022-08-30 thomas
1257 cfe41121 2021-10-16 thomas len = strlcpy(bf->path, path_packidx, sizeof(bf->path));
1258 cfe41121 2021-10-16 thomas if (len >= sizeof(bf->path)) {
1259 4545b700 2021-10-15 thomas free(bf->bloom);
1260 4545b700 2021-10-15 thomas free(bf);
1261 4545b700 2021-10-15 thomas return got_error(GOT_ERR_NO_SPACE);
1262 4545b700 2021-10-15 thomas }
1263 cfe41121 2021-10-16 thomas bf->path_len = len;
1264 4545b700 2021-10-15 thomas
1265 4545b700 2021-10-15 thomas /* Minimum size supported by our bloom filter is 1000 entries. */
1266 4545b700 2021-10-15 thomas bloom_init(bf->bloom, nobjects < 1000 ? 1000 : nobjects, 0.1);
1267 4545b700 2021-10-15 thomas for (i = 0; i < nobjects; i++) {
1268 4545b700 2021-10-15 thomas struct got_packidx_object_id *id;
1269 4545b700 2021-10-15 thomas id = &packidx->hdr.sorted_ids[i];
1270 4545b700 2021-10-15 thomas bloom_add(bf->bloom, id->sha1, sizeof(id->sha1));
1271 4545b700 2021-10-15 thomas }
1272 4545b700 2021-10-15 thomas
1273 cfe41121 2021-10-16 thomas RB_INSERT(got_packidx_bloom_filter_tree,
1274 cfe41121 2021-10-16 thomas &repo->packidx_bloom_filters, bf);
1275 4545b700 2021-10-15 thomas return NULL;
1276 5b462462 2022-10-22 thomas }
1277 5b462462 2022-10-22 thomas
1278 5b462462 2022-10-22 thomas static void
1279 5b462462 2022-10-22 thomas purge_packidx_paths(struct got_pathlist_head *packidx_paths)
1280 5b462462 2022-10-22 thomas {
1281 5b462462 2022-10-22 thomas struct got_pathlist_entry *pe;
1282 5b462462 2022-10-22 thomas
1283 5b462462 2022-10-22 thomas while (!TAILQ_EMPTY(packidx_paths)) {
1284 5b462462 2022-10-22 thomas pe = TAILQ_FIRST(packidx_paths);
1285 5b462462 2022-10-22 thomas TAILQ_REMOVE(packidx_paths, pe, entry);
1286 5b462462 2022-10-22 thomas free((char *)pe->path);
1287 5b462462 2022-10-22 thomas free(pe);
1288 5b462462 2022-10-22 thomas }
1289 5b462462 2022-10-22 thomas }
1290 5b462462 2022-10-22 thomas
1291 5b462462 2022-10-22 thomas static const struct got_error *
1292 5b462462 2022-10-22 thomas refresh_packidx_paths(struct got_repository *repo)
1293 5b462462 2022-10-22 thomas {
1294 5b462462 2022-10-22 thomas const struct got_error *err = NULL;
1295 5b462462 2022-10-22 thomas char *objects_pack_dir = NULL;
1296 5b462462 2022-10-22 thomas struct stat sb;
1297 5b462462 2022-10-22 thomas
1298 5b462462 2022-10-22 thomas objects_pack_dir = got_repo_get_path_objects_pack(repo);
1299 5b462462 2022-10-22 thomas if (objects_pack_dir == NULL)
1300 5b462462 2022-10-22 thomas return got_error_from_errno("got_repo_get_path_objects_pack");
1301 5b462462 2022-10-22 thomas
1302 5b462462 2022-10-22 thomas if (stat(objects_pack_dir, &sb) == -1) {
1303 5b462462 2022-10-22 thomas if (errno != ENOENT) {
1304 5b462462 2022-10-22 thomas err = got_error_from_errno2("stat", objects_pack_dir);
1305 5b462462 2022-10-22 thomas goto done;
1306 5b462462 2022-10-22 thomas }
1307 9b251092 2022-11-08 thomas } else if (TAILQ_EMPTY(&repo->packidx_paths) ||
1308 9b251092 2022-11-08 thomas sb.st_mtim.tv_sec != repo->pack_path_mtime.tv_sec ||
1309 9b251092 2022-11-08 thomas sb.st_mtim.tv_nsec != repo->pack_path_mtime.tv_nsec) {
1310 5b462462 2022-10-22 thomas purge_packidx_paths(&repo->packidx_paths);
1311 5b462462 2022-10-22 thomas err = got_repo_list_packidx(&repo->packidx_paths, repo);
1312 5b462462 2022-10-22 thomas if (err)
1313 5b462462 2022-10-22 thomas goto done;
1314 5b462462 2022-10-22 thomas }
1315 5b462462 2022-10-22 thomas done:
1316 5b462462 2022-10-22 thomas free(objects_pack_dir);
1317 5b462462 2022-10-22 thomas return err;
1318 1510f469 2018-09-09 stsp }
1319 1510f469 2018-09-09 stsp
1320 1510f469 2018-09-09 stsp const struct got_error *
1321 1510f469 2018-09-09 stsp got_repo_search_packidx(struct got_packidx **packidx, int *idx,
1322 1510f469 2018-09-09 stsp struct got_repository *repo, struct got_object_id *id)
1323 1510f469 2018-09-09 stsp {
1324 1510f469 2018-09-09 stsp const struct got_error *err;
1325 de47d040 2022-03-22 thomas struct got_pathlist_entry *pe;
1326 16aeacf7 2020-11-26 stsp size_t i;
1327 1510f469 2018-09-09 stsp
1328 1510f469 2018-09-09 stsp /* Search pack index cache. */
1329 6c414261 2021-03-30 stsp for (i = 0; i < repo->pack_cache_size; i++) {
1330 1510f469 2018-09-09 stsp if (repo->packidx_cache[i] == NULL)
1331 1510f469 2018-09-09 stsp break;
1332 f9c2e8e5 2022-02-13 thomas if (!got_repo_check_packidx_bloom_filter(repo,
1333 4545b700 2021-10-15 thomas repo->packidx_cache[i]->path_packidx, id))
1334 4545b700 2021-10-15 thomas continue; /* object will not be found in this index */
1335 1510f469 2018-09-09 stsp *idx = got_packidx_get_object_idx(repo->packidx_cache[i], id);
1336 1510f469 2018-09-09 stsp if (*idx != -1) {
1337 1510f469 2018-09-09 stsp *packidx = repo->packidx_cache[i];
1338 87c1ed2b 2020-01-07 stsp /*
1339 87c1ed2b 2020-01-07 stsp * Move this cache entry to the front. Repeatedly
1340 87c1ed2b 2020-01-07 stsp * searching a wrong pack index can be expensive.
1341 87c1ed2b 2020-01-07 stsp */
1342 87c1ed2b 2020-01-07 stsp if (i > 0) {
1343 3333aec6 2021-10-15 thomas memmove(&repo->packidx_cache[1],
1344 3333aec6 2021-10-15 thomas &repo->packidx_cache[0],
1345 3333aec6 2021-10-15 thomas i * sizeof(repo->packidx_cache[0]));
1346 87c1ed2b 2020-01-07 stsp repo->packidx_cache[0] = *packidx;
1347 ec2b23c5 2022-07-01 thomas if (repo->pinned_packidx >= 0 &&
1348 ec2b23c5 2022-07-01 thomas repo->pinned_packidx < i)
1349 ec2b23c5 2022-07-01 thomas repo->pinned_packidx++;
1350 ec2b23c5 2022-07-01 thomas else if (repo->pinned_packidx == i)
1351 ec2b23c5 2022-07-01 thomas repo->pinned_packidx = 0;
1352 87c1ed2b 2020-01-07 stsp }
1353 1510f469 2018-09-09 stsp return NULL;
1354 1510f469 2018-09-09 stsp }
1355 1510f469 2018-09-09 stsp }
1356 1510f469 2018-09-09 stsp /* No luck. Search the filesystem. */
1357 5b462462 2022-10-22 thomas
1358 5b462462 2022-10-22 thomas err = refresh_packidx_paths(repo);
1359 5b462462 2022-10-22 thomas if (err)
1360 5b462462 2022-10-22 thomas return err;
1361 1510f469 2018-09-09 stsp
1362 de47d040 2022-03-22 thomas TAILQ_FOREACH(pe, &repo->packidx_paths, entry) {
1363 de47d040 2022-03-22 thomas const char *path_packidx = pe->path;
1364 e1a68182 2020-01-07 stsp int is_cached = 0;
1365 e1a68182 2020-01-07 stsp
1366 f9c2e8e5 2022-02-13 thomas if (!got_repo_check_packidx_bloom_filter(repo,
1367 de47d040 2022-03-22 thomas pe->path, id))
1368 4545b700 2021-10-15 thomas continue; /* object will not be found in this index */
1369 4545b700 2021-10-15 thomas
1370 6c414261 2021-03-30 stsp for (i = 0; i < repo->pack_cache_size; i++) {
1371 e1a68182 2020-01-07 stsp if (repo->packidx_cache[i] == NULL)
1372 e1a68182 2020-01-07 stsp break;
1373 e1a68182 2020-01-07 stsp if (strcmp(repo->packidx_cache[i]->path_packidx,
1374 e1a68182 2020-01-07 stsp path_packidx) == 0) {
1375 e1a68182 2020-01-07 stsp is_cached = 1;
1376 e1a68182 2020-01-07 stsp break;
1377 e1a68182 2020-01-07 stsp }
1378 1510f469 2018-09-09 stsp }
1379 de47d040 2022-03-22 thomas if (is_cached)
1380 e1a68182 2020-01-07 stsp continue; /* already searched */
1381 1510f469 2018-09-09 stsp
1382 6d5a9006 2020-12-16 yzhong err = got_packidx_open(packidx, got_repo_get_fd(repo),
1383 6d5a9006 2020-12-16 yzhong path_packidx, 0);
1384 de47d040 2022-03-22 thomas if (err)
1385 e1a68182 2020-01-07 stsp goto done;
1386 e1a68182 2020-01-07 stsp
1387 4545b700 2021-10-15 thomas err = add_packidx_bloom_filter(repo, *packidx, path_packidx);
1388 de47d040 2022-03-22 thomas if (err)
1389 4545b700 2021-10-15 thomas goto done;
1390 4545b700 2021-10-15 thomas
1391 e1a68182 2020-01-07 stsp err = cache_packidx(repo, *packidx, path_packidx);
1392 1510f469 2018-09-09 stsp if (err)
1393 1510f469 2018-09-09 stsp goto done;
1394 1510f469 2018-09-09 stsp
1395 1510f469 2018-09-09 stsp *idx = got_packidx_get_object_idx(*packidx, id);
1396 1510f469 2018-09-09 stsp if (*idx != -1) {
1397 1510f469 2018-09-09 stsp err = NULL; /* found the object */
1398 1510f469 2018-09-09 stsp goto done;
1399 1510f469 2018-09-09 stsp }
1400 1510f469 2018-09-09 stsp }
1401 1510f469 2018-09-09 stsp
1402 91a3d81f 2018-11-11 stsp err = got_error_no_obj(id);
1403 1510f469 2018-09-09 stsp done:
1404 04ca23f4 2018-07-16 stsp return err;
1405 04ca23f4 2018-07-16 stsp }
1406 1510f469 2018-09-09 stsp
1407 f9c2e8e5 2022-02-13 thomas const struct got_error *
1408 f9c2e8e5 2022-02-13 thomas got_repo_list_packidx(struct got_pathlist_head *packidx_paths,
1409 f9c2e8e5 2022-02-13 thomas struct got_repository *repo)
1410 f9c2e8e5 2022-02-13 thomas {
1411 f9c2e8e5 2022-02-13 thomas const struct got_error *err = NULL;
1412 f9c2e8e5 2022-02-13 thomas DIR *packdir = NULL;
1413 f9c2e8e5 2022-02-13 thomas struct dirent *dent;
1414 f9c2e8e5 2022-02-13 thomas char *path_packidx = NULL;
1415 f9c2e8e5 2022-02-13 thomas int packdir_fd;
1416 04051e8b 2022-09-02 thomas struct stat sb;
1417 f9c2e8e5 2022-02-13 thomas
1418 f9c2e8e5 2022-02-13 thomas packdir_fd = openat(got_repo_get_fd(repo),
1419 f9c2e8e5 2022-02-13 thomas GOT_OBJECTS_PACK_DIR, O_DIRECTORY | O_CLOEXEC);
1420 f9c2e8e5 2022-02-13 thomas if (packdir_fd == -1) {
1421 f9c2e8e5 2022-02-13 thomas return got_error_from_errno_fmt("openat: %s/%s",
1422 f9c2e8e5 2022-02-13 thomas got_repo_get_path_git_dir(repo),
1423 f9c2e8e5 2022-02-13 thomas GOT_OBJECTS_PACK_DIR);
1424 f9c2e8e5 2022-02-13 thomas }
1425 f9c2e8e5 2022-02-13 thomas
1426 f9c2e8e5 2022-02-13 thomas packdir = fdopendir(packdir_fd);
1427 f9c2e8e5 2022-02-13 thomas if (packdir == NULL) {
1428 f9c2e8e5 2022-02-13 thomas err = got_error_from_errno("fdopendir");
1429 815470d4 2024-01-31 thomas close(packdir_fd);
1430 04051e8b 2022-09-02 thomas goto done;
1431 04051e8b 2022-09-02 thomas }
1432 04051e8b 2022-09-02 thomas
1433 04051e8b 2022-09-02 thomas if (fstat(packdir_fd, &sb) == -1) {
1434 04051e8b 2022-09-02 thomas err = got_error_from_errno("fstat");
1435 f9c2e8e5 2022-02-13 thomas goto done;
1436 f9c2e8e5 2022-02-13 thomas }
1437 9b251092 2022-11-08 thomas repo->pack_path_mtime.tv_sec = sb.st_mtim.tv_sec;
1438 9b251092 2022-11-08 thomas repo->pack_path_mtime.tv_nsec = sb.st_mtim.tv_nsec;
1439 f9c2e8e5 2022-02-13 thomas
1440 f9c2e8e5 2022-02-13 thomas while ((dent = readdir(packdir)) != NULL) {
1441 9389bcf6 2022-02-13 thomas if (!got_repo_is_packidx_filename(dent->d_name,
1442 9389bcf6 2022-02-13 thomas strlen(dent->d_name)))
1443 f9c2e8e5 2022-02-13 thomas continue;
1444 f9c2e8e5 2022-02-13 thomas
1445 f9c2e8e5 2022-02-13 thomas if (asprintf(&path_packidx, "%s/%s", GOT_OBJECTS_PACK_DIR,
1446 f9c2e8e5 2022-02-13 thomas dent->d_name) == -1) {
1447 f9c2e8e5 2022-02-13 thomas err = got_error_from_errno("asprintf");
1448 f9c2e8e5 2022-02-13 thomas path_packidx = NULL;
1449 f9c2e8e5 2022-02-13 thomas break;
1450 f9c2e8e5 2022-02-13 thomas }
1451 f9c2e8e5 2022-02-13 thomas
1452 f9c2e8e5 2022-02-13 thomas err = got_pathlist_append(packidx_paths, path_packidx, NULL);
1453 f9c2e8e5 2022-02-13 thomas if (err)
1454 f9c2e8e5 2022-02-13 thomas break;
1455 f9c2e8e5 2022-02-13 thomas }
1456 f9c2e8e5 2022-02-13 thomas done:
1457 f9c2e8e5 2022-02-13 thomas if (err)
1458 f9c2e8e5 2022-02-13 thomas free(path_packidx);
1459 f9c2e8e5 2022-02-13 thomas if (packdir && closedir(packdir) != 0 && err == NULL)
1460 f9c2e8e5 2022-02-13 thomas err = got_error_from_errno("closedir");
1461 f9c2e8e5 2022-02-13 thomas return err;
1462 f9c2e8e5 2022-02-13 thomas }
1463 f9c2e8e5 2022-02-13 thomas
1464 f9c2e8e5 2022-02-13 thomas const struct got_error *
1465 f9c2e8e5 2022-02-13 thomas got_repo_get_packidx(struct got_packidx **packidx, const char *path_packidx,
1466 f9c2e8e5 2022-02-13 thomas struct got_repository *repo)
1467 f9c2e8e5 2022-02-13 thomas {
1468 f9c2e8e5 2022-02-13 thomas const struct got_error *err;
1469 f9c2e8e5 2022-02-13 thomas size_t i;
1470 f9c2e8e5 2022-02-13 thomas
1471 f9c2e8e5 2022-02-13 thomas *packidx = NULL;
1472 f9c2e8e5 2022-02-13 thomas
1473 f9c2e8e5 2022-02-13 thomas /* Search pack index cache. */
1474 f9c2e8e5 2022-02-13 thomas for (i = 0; i < repo->pack_cache_size; i++) {
1475 f9c2e8e5 2022-02-13 thomas if (repo->packidx_cache[i] == NULL)
1476 f9c2e8e5 2022-02-13 thomas break;
1477 f9c2e8e5 2022-02-13 thomas if (strcmp(repo->packidx_cache[i]->path_packidx,
1478 f9c2e8e5 2022-02-13 thomas path_packidx) == 0) {
1479 f9c2e8e5 2022-02-13 thomas *packidx = repo->packidx_cache[i];
1480 f9c2e8e5 2022-02-13 thomas return NULL;
1481 f9c2e8e5 2022-02-13 thomas }
1482 f9c2e8e5 2022-02-13 thomas }
1483 f9c2e8e5 2022-02-13 thomas /* No luck. Search the filesystem. */
1484 f9c2e8e5 2022-02-13 thomas
1485 f9c2e8e5 2022-02-13 thomas err = got_packidx_open(packidx, got_repo_get_fd(repo),
1486 f9c2e8e5 2022-02-13 thomas path_packidx, 0);
1487 f9c2e8e5 2022-02-13 thomas if (err)
1488 f9c2e8e5 2022-02-13 thomas return err;
1489 f9c2e8e5 2022-02-13 thomas
1490 f9c2e8e5 2022-02-13 thomas err = add_packidx_bloom_filter(repo, *packidx, path_packidx);
1491 f9c2e8e5 2022-02-13 thomas if (err)
1492 f9c2e8e5 2022-02-13 thomas goto done;
1493 f9c2e8e5 2022-02-13 thomas
1494 f9c2e8e5 2022-02-13 thomas err = cache_packidx(repo, *packidx, path_packidx);
1495 f9c2e8e5 2022-02-13 thomas done:
1496 f9c2e8e5 2022-02-13 thomas if (err) {
1497 f9c2e8e5 2022-02-13 thomas got_packidx_close(*packidx);
1498 f9c2e8e5 2022-02-13 thomas *packidx = NULL;
1499 f9c2e8e5 2022-02-13 thomas }
1500 f9c2e8e5 2022-02-13 thomas return err;
1501 f9c2e8e5 2022-02-13 thomas }
1502 f9c2e8e5 2022-02-13 thomas
1503 1510f469 2018-09-09 stsp static const struct got_error *
1504 1510f469 2018-09-09 stsp read_packfile_hdr(int fd, struct got_packidx *packidx)
1505 1510f469 2018-09-09 stsp {
1506 1510f469 2018-09-09 stsp const struct got_error *err = NULL;
1507 78fb0967 2020-09-09 naddy uint32_t totobj = be32toh(packidx->hdr.fanout_table[0xff]);
1508 1510f469 2018-09-09 stsp struct got_packfile_hdr hdr;
1509 1510f469 2018-09-09 stsp ssize_t n;
1510 1510f469 2018-09-09 stsp
1511 1510f469 2018-09-09 stsp n = read(fd, &hdr, sizeof(hdr));
1512 1510f469 2018-09-09 stsp if (n < 0)
1513 638f9024 2019-05-13 stsp return got_error_from_errno("read");
1514 1510f469 2018-09-09 stsp if (n != sizeof(hdr))
1515 1510f469 2018-09-09 stsp return got_error(GOT_ERR_BAD_PACKFILE);
1516 1510f469 2018-09-09 stsp
1517 78fb0967 2020-09-09 naddy if (be32toh(hdr.signature) != GOT_PACKFILE_SIGNATURE ||
1518 78fb0967 2020-09-09 naddy be32toh(hdr.version) != GOT_PACKFILE_VERSION ||
1519 78fb0967 2020-09-09 naddy be32toh(hdr.nobjects) != totobj)
1520 1510f469 2018-09-09 stsp err = got_error(GOT_ERR_BAD_PACKFILE);
1521 1510f469 2018-09-09 stsp
1522 1510f469 2018-09-09 stsp return err;
1523 1510f469 2018-09-09 stsp }
1524 1510f469 2018-09-09 stsp
1525 1510f469 2018-09-09 stsp static const struct got_error *
1526 6d5a9006 2020-12-16 yzhong open_packfile(int *fd, struct got_repository *repo,
1527 6d5a9006 2020-12-16 yzhong const char *relpath, struct got_packidx *packidx)
1528 1510f469 2018-09-09 stsp {
1529 1510f469 2018-09-09 stsp const struct got_error *err = NULL;
1530 1510f469 2018-09-09 stsp
1531 fc63f50d 2021-12-31 thomas *fd = openat(got_repo_get_fd(repo), relpath,
1532 fc63f50d 2021-12-31 thomas O_RDONLY | O_NOFOLLOW | O_CLOEXEC);
1533 1510f469 2018-09-09 stsp if (*fd == -1)
1534 6d5a9006 2020-12-16 yzhong return got_error_from_errno_fmt("openat: %s/%s",
1535 6d5a9006 2020-12-16 yzhong got_repo_get_path_git_dir(repo), relpath);
1536 1510f469 2018-09-09 stsp
1537 1510f469 2018-09-09 stsp if (packidx) {
1538 1510f469 2018-09-09 stsp err = read_packfile_hdr(*fd, packidx);
1539 1510f469 2018-09-09 stsp if (err) {
1540 1510f469 2018-09-09 stsp close(*fd);
1541 1510f469 2018-09-09 stsp *fd = -1;
1542 1510f469 2018-09-09 stsp }
1543 1510f469 2018-09-09 stsp }
1544 1510f469 2018-09-09 stsp
1545 1510f469 2018-09-09 stsp return err;
1546 1510f469 2018-09-09 stsp }
1547 1510f469 2018-09-09 stsp
1548 1510f469 2018-09-09 stsp const struct got_error *
1549 1510f469 2018-09-09 stsp got_repo_cache_pack(struct got_pack **packp, struct got_repository *repo,
1550 1510f469 2018-09-09 stsp const char *path_packfile, struct got_packidx *packidx)
1551 1510f469 2018-09-09 stsp {
1552 1510f469 2018-09-09 stsp const struct got_error *err = NULL;
1553 1510f469 2018-09-09 stsp struct got_pack *pack = NULL;
1554 ff563a3d 2019-05-23 stsp struct stat sb;
1555 16aeacf7 2020-11-26 stsp size_t i;
1556 1510f469 2018-09-09 stsp
1557 1510f469 2018-09-09 stsp if (packp)
1558 1510f469 2018-09-09 stsp *packp = NULL;
1559 1510f469 2018-09-09 stsp
1560 6c414261 2021-03-30 stsp for (i = 0; i < repo->pack_cache_size; i++) {
1561 1510f469 2018-09-09 stsp pack = &repo->packs[i];
1562 1510f469 2018-09-09 stsp if (pack->path_packfile == NULL)
1563 1510f469 2018-09-09 stsp break;
1564 1510f469 2018-09-09 stsp if (strcmp(pack->path_packfile, path_packfile) == 0)
1565 e1a68182 2020-01-07 stsp return got_error(GOT_ERR_CACHE_DUP_ENTRY);
1566 1510f469 2018-09-09 stsp }
1567 1510f469 2018-09-09 stsp
1568 6c414261 2021-03-30 stsp if (i == repo->pack_cache_size) {
1569 93948435 2022-06-13 thomas struct got_pack tmp;
1570 ec2b23c5 2022-07-01 thomas do {
1571 ec2b23c5 2022-07-01 thomas i--;
1572 ec2b23c5 2022-07-01 thomas } while (i > 0 && repo->pinned_pack >= 0 &&
1573 ec2b23c5 2022-07-01 thomas i == repo->pinned_pack);
1574 ec2b23c5 2022-07-01 thomas err = got_pack_close(&repo->packs[i]);
1575 1510f469 2018-09-09 stsp if (err)
1576 1510f469 2018-09-09 stsp return err;
1577 ec2b23c5 2022-07-01 thomas if (ftruncate(repo->packs[i].basefd, 0L) == -1)
1578 bfb5ee0b 2022-05-31 thomas return got_error_from_errno("ftruncate");
1579 ec2b23c5 2022-07-01 thomas if (ftruncate(repo->packs[i].accumfd, 0L) == -1)
1580 ec2b23c5 2022-07-01 thomas return got_error_from_errno("ftruncate");
1581 b6b86fd1 2022-08-30 thomas memcpy(&tmp, &repo->packs[i], sizeof(tmp));
1582 ec2b23c5 2022-07-01 thomas memcpy(&repo->packs[i], &repo->packs[0],
1583 ec2b23c5 2022-07-01 thomas sizeof(repo->packs[i]));
1584 93948435 2022-06-13 thomas memcpy(&repo->packs[0], &tmp, sizeof(repo->packs[0]));
1585 ec2b23c5 2022-07-01 thomas if (repo->pinned_pack == 0)
1586 ec2b23c5 2022-07-01 thomas repo->pinned_pack = i;
1587 ec2b23c5 2022-07-01 thomas else if (repo->pinned_pack == i)
1588 ec2b23c5 2022-07-01 thomas repo->pinned_pack = 0;
1589 1510f469 2018-09-09 stsp i = 0;
1590 1510f469 2018-09-09 stsp }
1591 1510f469 2018-09-09 stsp
1592 1510f469 2018-09-09 stsp pack = &repo->packs[i];
1593 1510f469 2018-09-09 stsp
1594 1510f469 2018-09-09 stsp pack->path_packfile = strdup(path_packfile);
1595 1510f469 2018-09-09 stsp if (pack->path_packfile == NULL) {
1596 638f9024 2019-05-13 stsp err = got_error_from_errno("strdup");
1597 1510f469 2018-09-09 stsp goto done;
1598 1510f469 2018-09-09 stsp }
1599 1510f469 2018-09-09 stsp
1600 6d5a9006 2020-12-16 yzhong err = open_packfile(&pack->fd, repo, path_packfile, packidx);
1601 1510f469 2018-09-09 stsp if (err)
1602 1510f469 2018-09-09 stsp goto done;
1603 1510f469 2018-09-09 stsp
1604 ff563a3d 2019-05-23 stsp if (fstat(pack->fd, &sb) != 0) {
1605 ff563a3d 2019-05-23 stsp err = got_error_from_errno("fstat");
1606 1510f469 2018-09-09 stsp goto done;
1607 ff563a3d 2019-05-23 stsp }
1608 ff563a3d 2019-05-23 stsp pack->filesize = sb.st_size;
1609 90636195 2018-09-11 stsp
1610 90636195 2018-09-11 stsp pack->privsep_child = NULL;
1611 3efd8e31 2022-10-23 thomas
1612 3efd8e31 2022-10-23 thomas err = got_delta_cache_alloc(&pack->delta_cache);
1613 3efd8e31 2022-10-23 thomas if (err)
1614 3efd8e31 2022-10-23 thomas goto done;
1615 1510f469 2018-09-09 stsp
1616 1510f469 2018-09-09 stsp #ifndef GOT_PACK_NO_MMAP
1617 aa75acde 2022-10-25 thomas if (pack->filesize > 0 && pack->filesize <= SIZE_MAX) {
1618 aa75acde 2022-10-25 thomas pack->map = mmap(NULL, pack->filesize, PROT_READ, MAP_PRIVATE,
1619 aa75acde 2022-10-25 thomas pack->fd, 0);
1620 aa75acde 2022-10-25 thomas if (pack->map == MAP_FAILED) {
1621 aa75acde 2022-10-25 thomas if (errno != ENOMEM) {
1622 aa75acde 2022-10-25 thomas err = got_error_from_errno("mmap");
1623 aa75acde 2022-10-25 thomas goto done;
1624 aa75acde 2022-10-25 thomas }
1625 aa75acde 2022-10-25 thomas pack->map = NULL; /* fall back to read(2) */
1626 3a11398b 2019-02-21 stsp }
1627 3a11398b 2019-02-21 stsp }
1628 1510f469 2018-09-09 stsp #endif
1629 1510f469 2018-09-09 stsp done:
1630 1510f469 2018-09-09 stsp if (err) {
1631 3efd8e31 2022-10-23 thomas if (pack)
1632 3efd8e31 2022-10-23 thomas got_pack_close(pack);
1633 1510f469 2018-09-09 stsp } else if (packp)
1634 1510f469 2018-09-09 stsp *packp = pack;
1635 1510f469 2018-09-09 stsp return err;
1636 1510f469 2018-09-09 stsp }
1637 1510f469 2018-09-09 stsp
1638 1510f469 2018-09-09 stsp struct got_pack *
1639 1510f469 2018-09-09 stsp got_repo_get_cached_pack(struct got_repository *repo, const char *path_packfile)
1640 1510f469 2018-09-09 stsp {
1641 1510f469 2018-09-09 stsp struct got_pack *pack = NULL;
1642 16aeacf7 2020-11-26 stsp size_t i;
1643 1510f469 2018-09-09 stsp
1644 6c414261 2021-03-30 stsp for (i = 0; i < repo->pack_cache_size; i++) {
1645 1510f469 2018-09-09 stsp pack = &repo->packs[i];
1646 1510f469 2018-09-09 stsp if (pack->path_packfile == NULL)
1647 1510f469 2018-09-09 stsp break;
1648 1510f469 2018-09-09 stsp if (strcmp(pack->path_packfile, path_packfile) == 0)
1649 1510f469 2018-09-09 stsp return pack;
1650 ec2b23c5 2022-07-01 thomas }
1651 ec2b23c5 2022-07-01 thomas
1652 ec2b23c5 2022-07-01 thomas return NULL;
1653 ec2b23c5 2022-07-01 thomas }
1654 ec2b23c5 2022-07-01 thomas
1655 ec2b23c5 2022-07-01 thomas const struct got_error *
1656 ec2b23c5 2022-07-01 thomas got_repo_pin_pack(struct got_repository *repo, struct got_packidx *packidx,
1657 ec2b23c5 2022-07-01 thomas struct got_pack *pack)
1658 ec2b23c5 2022-07-01 thomas {
1659 ec2b23c5 2022-07-01 thomas size_t i;
1660 ec2b23c5 2022-07-01 thomas int pinned_pack = -1, pinned_packidx = -1;
1661 ec2b23c5 2022-07-01 thomas
1662 ec2b23c5 2022-07-01 thomas for (i = 0; i < repo->pack_cache_size; i++) {
1663 ec2b23c5 2022-07-01 thomas if (repo->packidx_cache[i] &&
1664 ec2b23c5 2022-07-01 thomas strcmp(repo->packidx_cache[i]->path_packidx,
1665 ec2b23c5 2022-07-01 thomas packidx->path_packidx) == 0)
1666 ec2b23c5 2022-07-01 thomas pinned_packidx = i;
1667 ec2b23c5 2022-07-01 thomas if (repo->packs[i].path_packfile &&
1668 ec2b23c5 2022-07-01 thomas strcmp(repo->packs[i].path_packfile,
1669 ec2b23c5 2022-07-01 thomas pack->path_packfile) == 0)
1670 ec2b23c5 2022-07-01 thomas pinned_pack = i;
1671 2c7829a4 2019-06-17 stsp }
1672 ec2b23c5 2022-07-01 thomas
1673 ec2b23c5 2022-07-01 thomas if (pinned_packidx == -1 || pinned_pack == -1)
1674 ec2b23c5 2022-07-01 thomas return got_error(GOT_ERR_PIN_PACK);
1675 ec2b23c5 2022-07-01 thomas
1676 ec2b23c5 2022-07-01 thomas repo->pinned_pack = pinned_pack;
1677 ec2b23c5 2022-07-01 thomas repo->pinned_packidx = pinned_packidx;
1678 c44c7d6e 2022-12-04 thomas if (repo->packs[pinned_pack].privsep_child)
1679 c44c7d6e 2022-12-04 thomas repo->pinned_pid = repo->packs[pinned_pack].privsep_child->pid;
1680 ec2b23c5 2022-07-01 thomas return NULL;
1681 ec2b23c5 2022-07-01 thomas }
1682 ec2b23c5 2022-07-01 thomas
1683 ec2b23c5 2022-07-01 thomas struct got_pack *
1684 ec2b23c5 2022-07-01 thomas got_repo_get_pinned_pack(struct got_repository *repo)
1685 ec2b23c5 2022-07-01 thomas {
1686 ec2b23c5 2022-07-01 thomas if (repo->pinned_pack >= 0 &&
1687 ec2b23c5 2022-07-01 thomas repo->pinned_pack < repo->pack_cache_size)
1688 ec2b23c5 2022-07-01 thomas return &repo->packs[repo->pinned_pack];
1689 2c7829a4 2019-06-17 stsp
1690 2c7829a4 2019-06-17 stsp return NULL;
1691 ec2b23c5 2022-07-01 thomas }
1692 ec2b23c5 2022-07-01 thomas
1693 ec2b23c5 2022-07-01 thomas void
1694 ec2b23c5 2022-07-01 thomas got_repo_unpin_pack(struct got_repository *repo)
1695 ec2b23c5 2022-07-01 thomas {
1696 ec2b23c5 2022-07-01 thomas repo->pinned_packidx = -1;
1697 ec2b23c5 2022-07-01 thomas repo->pinned_pack = -1;
1698 ec2b23c5 2022-07-01 thomas repo->pinned_pid = 0;
1699 2c7829a4 2019-06-17 stsp }
1700 2c7829a4 2019-06-17 stsp
1701 2c7829a4 2019-06-17 stsp const struct got_error *
1702 e9424ba1 2022-09-20 thomas got_repo_init(const char *repo_path, const char *head_name)
1703 2c7829a4 2019-06-17 stsp {
1704 2c7829a4 2019-06-17 stsp const struct got_error *err = NULL;
1705 2c7829a4 2019-06-17 stsp const char *dirnames[] = {
1706 2c7829a4 2019-06-17 stsp GOT_OBJECTS_DIR,
1707 2c7829a4 2019-06-17 stsp GOT_OBJECTS_PACK_DIR,
1708 2c7829a4 2019-06-17 stsp GOT_REFS_DIR,
1709 2c7829a4 2019-06-17 stsp };
1710 2c7829a4 2019-06-17 stsp const char *description_str = "Unnamed repository; "
1711 2c7829a4 2019-06-17 stsp "edit this file 'description' to name the repository.";
1712 e9424ba1 2022-09-20 thomas const char *headref = "ref: refs/heads/";
1713 2c7829a4 2019-06-17 stsp const char *gitconfig_str = "[core]\n"
1714 2c7829a4 2019-06-17 stsp "\trepositoryformatversion = 0\n"
1715 2c7829a4 2019-06-17 stsp "\tfilemode = true\n"
1716 2c7829a4 2019-06-17 stsp "\tbare = true\n";
1717 e9424ba1 2022-09-20 thomas char *headref_str, *path;
1718 16aeacf7 2020-11-26 stsp size_t i;
1719 2c7829a4 2019-06-17 stsp
1720 2c7829a4 2019-06-17 stsp if (!got_path_dir_is_empty(repo_path))
1721 2c7829a4 2019-06-17 stsp return got_error(GOT_ERR_DIR_NOT_EMPTY);
1722 2c7829a4 2019-06-17 stsp
1723 2c7829a4 2019-06-17 stsp for (i = 0; i < nitems(dirnames); i++) {
1724 2c7829a4 2019-06-17 stsp if (asprintf(&path, "%s/%s", repo_path, dirnames[i]) == -1) {
1725 2c7829a4 2019-06-17 stsp return got_error_from_errno("asprintf");
1726 2c7829a4 2019-06-17 stsp }
1727 2c7829a4 2019-06-17 stsp err = got_path_mkdir(path);
1728 2c7829a4 2019-06-17 stsp free(path);
1729 2c7829a4 2019-06-17 stsp if (err)
1730 2c7829a4 2019-06-17 stsp return err;
1731 1510f469 2018-09-09 stsp }
1732 1510f469 2018-09-09 stsp
1733 2c7829a4 2019-06-17 stsp if (asprintf(&path, "%s/%s", repo_path, "description") == -1)
1734 2c7829a4 2019-06-17 stsp return got_error_from_errno("asprintf");
1735 2c7829a4 2019-06-17 stsp err = got_path_create_file(path, description_str);
1736 2c7829a4 2019-06-17 stsp free(path);
1737 2c7829a4 2019-06-17 stsp if (err)
1738 2c7829a4 2019-06-17 stsp return err;
1739 2c7829a4 2019-06-17 stsp
1740 2c7829a4 2019-06-17 stsp if (asprintf(&path, "%s/%s", repo_path, GOT_HEAD_FILE) == -1)
1741 e9424ba1 2022-09-20 thomas return got_error_from_errno("asprintf");
1742 e9424ba1 2022-09-20 thomas if (asprintf(&headref_str, "%s%s", headref,
1743 e9424ba1 2022-09-20 thomas head_name ? head_name : "main") == -1) {
1744 e9424ba1 2022-09-20 thomas free(path);
1745 2c7829a4 2019-06-17 stsp return got_error_from_errno("asprintf");
1746 e9424ba1 2022-09-20 thomas }
1747 2c7829a4 2019-06-17 stsp err = got_path_create_file(path, headref_str);
1748 e9424ba1 2022-09-20 thomas free(headref_str);
1749 2c7829a4 2019-06-17 stsp free(path);
1750 2c7829a4 2019-06-17 stsp if (err)
1751 2c7829a4 2019-06-17 stsp return err;
1752 2c7829a4 2019-06-17 stsp
1753 2c7829a4 2019-06-17 stsp if (asprintf(&path, "%s/%s", repo_path, "config") == -1)
1754 2c7829a4 2019-06-17 stsp return got_error_from_errno("asprintf");
1755 2c7829a4 2019-06-17 stsp err = got_path_create_file(path, gitconfig_str);
1756 2c7829a4 2019-06-17 stsp free(path);
1757 2c7829a4 2019-06-17 stsp if (err)
1758 2c7829a4 2019-06-17 stsp return err;
1759 2c7829a4 2019-06-17 stsp
1760 1510f469 2018-09-09 stsp return NULL;
1761 04051e8b 2022-09-02 thomas }
1762 04051e8b 2022-09-02 thomas
1763 e09a504c 2019-06-28 stsp static const struct got_error *
1764 4277420a 2019-06-29 stsp match_packed_object(struct got_object_id **unique_id,
1765 dd88155e 2019-06-29 stsp struct got_repository *repo, const char *id_str_prefix, int obj_type)
1766 e09a504c 2019-06-28 stsp {
1767 e09a504c 2019-06-28 stsp const struct got_error *err = NULL;
1768 de47d040 2022-03-22 thomas struct got_object_id_queue matched_ids;
1769 de47d040 2022-03-22 thomas struct got_pathlist_entry *pe;
1770 405e082c 2023-11-26 thomas struct timespec tv;
1771 405e082c 2023-11-26 thomas int retries = 0;
1772 405e082c 2023-11-26 thomas const int max_retries = 10;
1773 e09a504c 2019-06-28 stsp
1774 dbdddfee 2021-06-23 naddy STAILQ_INIT(&matched_ids);
1775 dd88155e 2019-06-29 stsp
1776 5b462462 2022-10-22 thomas err = refresh_packidx_paths(repo);
1777 5b462462 2022-10-22 thomas if (err)
1778 5b462462 2022-10-22 thomas return err;
1779 405e082c 2023-11-26 thomas
1780 405e082c 2023-11-26 thomas /*
1781 405e082c 2023-11-26 thomas * Opening objects while iterating over the pack-index path
1782 405e082c 2023-11-26 thomas * list is racy. If the set of pack files in the repository
1783 405e082c 2023-11-26 thomas * changes during loop iteration, refresh_packidx_paths() will
1784 405e082c 2023-11-26 thomas * be called again, via got_object_get_type(), invalidating
1785 405e082c 2023-11-26 thomas * the packidx_paths list we are iterating over.
1786 405e082c 2023-11-26 thomas * To work around this we keep track of the current modification
1787 405e082c 2023-11-26 thomas * time and retry the entire loop if it changes.
1788 405e082c 2023-11-26 thomas */
1789 405e082c 2023-11-26 thomas retry:
1790 405e082c 2023-11-26 thomas tv.tv_sec = repo->pack_path_mtime.tv_sec;
1791 405e082c 2023-11-26 thomas tv.tv_nsec = repo->pack_path_mtime.tv_nsec;
1792 04051e8b 2022-09-02 thomas
1793 de47d040 2022-03-22 thomas TAILQ_FOREACH(pe, &repo->packidx_paths, entry) {
1794 405e082c 2023-11-26 thomas const char *path_packidx;
1795 e09a504c 2019-06-28 stsp struct got_packidx *packidx;
1796 dd88155e 2019-06-29 stsp struct got_object_qid *qid;
1797 405e082c 2023-11-26 thomas
1798 405e082c 2023-11-26 thomas /*
1799 405e082c 2023-11-26 thomas * If the modification time of the 'objects/pack' directory
1800 405e082c 2023-11-26 thomas * has changed then 'pe' could now be an invalid pointer.
1801 405e082c 2023-11-26 thomas */
1802 405e082c 2023-11-26 thomas if (tv.tv_sec != repo->pack_path_mtime.tv_sec ||
1803 405e082c 2023-11-26 thomas tv.tv_nsec != repo->pack_path_mtime.tv_nsec) {
1804 405e082c 2023-11-26 thomas if (++retries > max_retries) {
1805 405e082c 2023-11-26 thomas err = got_error_msg(GOT_ERR_TIMEOUT,
1806 405e082c 2023-11-26 thomas "too many concurrent pack file "
1807 405e082c 2023-11-26 thomas "modifications");
1808 405e082c 2023-11-26 thomas goto done;
1809 405e082c 2023-11-26 thomas }
1810 405e082c 2023-11-26 thomas goto retry;
1811 405e082c 2023-11-26 thomas }
1812 e09a504c 2019-06-28 stsp
1813 405e082c 2023-11-26 thomas path_packidx = pe->path;
1814 405e082c 2023-11-26 thomas
1815 6d5a9006 2020-12-16 yzhong err = got_packidx_open(&packidx, got_repo_get_fd(repo),
1816 6d5a9006 2020-12-16 yzhong path_packidx, 0);
1817 e09a504c 2019-06-28 stsp if (err)
1818 4277420a 2019-06-29 stsp break;
1819 e09a504c 2019-06-28 stsp
1820 7438da3b 2023-12-19 thomas got_object_id_queue_free(&matched_ids);
1821 7438da3b 2023-12-19 thomas
1822 dd88155e 2019-06-29 stsp err = got_packidx_match_id_str_prefix(&matched_ids,
1823 4277420a 2019-06-29 stsp packidx, id_str_prefix);
1824 4277420a 2019-06-29 stsp if (err) {
1825 4277420a 2019-06-29 stsp got_packidx_close(packidx);
1826 4277420a 2019-06-29 stsp break;
1827 4277420a 2019-06-29 stsp }
1828 e09a504c 2019-06-28 stsp err = got_packidx_close(packidx);
1829 dd88155e 2019-06-29 stsp if (err)
1830 e09a504c 2019-06-28 stsp break;
1831 e09a504c 2019-06-28 stsp
1832 dbdddfee 2021-06-23 naddy STAILQ_FOREACH(qid, &matched_ids, entry) {
1833 dd88155e 2019-06-29 stsp if (obj_type != GOT_OBJ_TYPE_ANY) {
1834 dd88155e 2019-06-29 stsp int matched_type;
1835 dd88155e 2019-06-29 stsp err = got_object_get_type(&matched_type, repo,
1836 ec242592 2022-04-22 thomas &qid->id);
1837 dd88155e 2019-06-29 stsp if (err)
1838 dd88155e 2019-06-29 stsp goto done;
1839 dd88155e 2019-06-29 stsp if (matched_type != obj_type)
1840 dd88155e 2019-06-29 stsp continue;
1841 dd88155e 2019-06-29 stsp }
1842 4277420a 2019-06-29 stsp if (*unique_id == NULL) {
1843 ec242592 2022-04-22 thomas *unique_id = got_object_id_dup(&qid->id);
1844 dd88155e 2019-06-29 stsp if (*unique_id == NULL) {
1845 dd88155e 2019-06-29 stsp err = got_error_from_errno("malloc");
1846 dd88155e 2019-06-29 stsp goto done;
1847 dd88155e 2019-06-29 stsp }
1848 4277420a 2019-06-29 stsp } else {
1849 ec242592 2022-04-22 thomas if (got_object_id_cmp(*unique_id,
1850 ec242592 2022-04-22 thomas &qid->id) == 0)
1851 1accf02b 2020-01-05 stsp continue; /* packed multiple times */
1852 e09a504c 2019-06-28 stsp err = got_error(GOT_ERR_AMBIGUOUS_ID);
1853 561c3678 2019-07-02 stsp goto done;
1854 e09a504c 2019-06-28 stsp }
1855 e09a504c 2019-06-28 stsp }
1856 e09a504c 2019-06-28 stsp }
1857 e09a504c 2019-06-28 stsp done:
1858 dd88155e 2019-06-29 stsp got_object_id_queue_free(&matched_ids);
1859 e09a504c 2019-06-28 stsp if (err) {
1860 e09a504c 2019-06-28 stsp free(*unique_id);
1861 e09a504c 2019-06-28 stsp *unique_id = NULL;
1862 e09a504c 2019-06-28 stsp }
1863 e09a504c 2019-06-28 stsp return err;
1864 e09a504c 2019-06-28 stsp }
1865 e09a504c 2019-06-28 stsp
1866 e09a504c 2019-06-28 stsp static const struct got_error *
1867 4277420a 2019-06-29 stsp match_loose_object(struct got_object_id **unique_id, const char *path_objects,
1868 dd88155e 2019-06-29 stsp const char *object_dir, const char *id_str_prefix, int obj_type,
1869 e09a504c 2019-06-28 stsp struct got_repository *repo)
1870 e09a504c 2019-06-28 stsp {
1871 e09a504c 2019-06-28 stsp const struct got_error *err = NULL;
1872 5ef2cc1c 2022-09-02 thomas char *path, *id_str = NULL;
1873 e09a504c 2019-06-28 stsp DIR *dir = NULL;
1874 e09a504c 2019-06-28 stsp struct dirent *dent;
1875 e09a504c 2019-06-28 stsp struct got_object_id id;
1876 e09a504c 2019-06-28 stsp
1877 e09a504c 2019-06-28 stsp if (asprintf(&path, "%s/%s", path_objects, object_dir) == -1) {
1878 e09a504c 2019-06-28 stsp err = got_error_from_errno("asprintf");
1879 e09a504c 2019-06-28 stsp goto done;
1880 e09a504c 2019-06-28 stsp }
1881 e09a504c 2019-06-28 stsp
1882 e09a504c 2019-06-28 stsp dir = opendir(path);
1883 e09a504c 2019-06-28 stsp if (dir == NULL) {
1884 4277420a 2019-06-29 stsp if (errno == ENOENT) {
1885 4277420a 2019-06-29 stsp err = NULL;
1886 4277420a 2019-06-29 stsp goto done;
1887 4277420a 2019-06-29 stsp }
1888 e09a504c 2019-06-28 stsp err = got_error_from_errno2("opendir", path);
1889 e09a504c 2019-06-28 stsp goto done;
1890 e09a504c 2019-06-28 stsp }
1891 e09a504c 2019-06-28 stsp while ((dent = readdir(dir)) != NULL) {
1892 5903ff6e 2019-06-29 stsp int cmp;
1893 5903ff6e 2019-06-29 stsp
1894 5ef2cc1c 2022-09-02 thomas free(id_str);
1895 5ef2cc1c 2022-09-02 thomas id_str = NULL;
1896 5ef2cc1c 2022-09-02 thomas
1897 e09a504c 2019-06-28 stsp if (strcmp(dent->d_name, ".") == 0 ||
1898 e09a504c 2019-06-28 stsp strcmp(dent->d_name, "..") == 0)
1899 e09a504c 2019-06-28 stsp continue;
1900 e09a504c 2019-06-28 stsp
1901 e09a504c 2019-06-28 stsp if (asprintf(&id_str, "%s%s", object_dir, dent->d_name) == -1) {
1902 e09a504c 2019-06-28 stsp err = got_error_from_errno("asprintf");
1903 e09a504c 2019-06-28 stsp goto done;
1904 e09a504c 2019-06-28 stsp }
1905 e09a504c 2019-06-28 stsp
1906 f4204d57 2023-03-01 thomas if (!got_parse_object_id(&id, id_str, repo->algo))
1907 e09a504c 2019-06-28 stsp continue;
1908 e09a504c 2019-06-28 stsp
1909 52d1d0d9 2019-07-07 stsp /*
1910 52d1d0d9 2019-07-07 stsp * Directory entries do not necessarily appear in
1911 52d1d0d9 2019-07-07 stsp * sorted order, so we must iterate over all of them.
1912 52d1d0d9 2019-07-07 stsp */
1913 5903ff6e 2019-06-29 stsp cmp = strncmp(id_str, id_str_prefix, strlen(id_str_prefix));
1914 5ef2cc1c 2022-09-02 thomas if (cmp != 0)
1915 e09a504c 2019-06-28 stsp continue;
1916 e09a504c 2019-06-28 stsp
1917 e09a504c 2019-06-28 stsp if (*unique_id == NULL) {
1918 dd88155e 2019-06-29 stsp if (obj_type != GOT_OBJ_TYPE_ANY) {
1919 dd88155e 2019-06-29 stsp int matched_type;
1920 dd88155e 2019-06-29 stsp err = got_object_get_type(&matched_type, repo,
1921 dd88155e 2019-06-29 stsp &id);
1922 dd88155e 2019-06-29 stsp if (err)
1923 dd88155e 2019-06-29 stsp goto done;
1924 dd88155e 2019-06-29 stsp if (matched_type != obj_type)
1925 dd88155e 2019-06-29 stsp continue;
1926 dd88155e 2019-06-29 stsp }
1927 e09a504c 2019-06-28 stsp *unique_id = got_object_id_dup(&id);
1928 e09a504c 2019-06-28 stsp if (*unique_id == NULL) {
1929 e09a504c 2019-06-28 stsp err = got_error_from_errno("got_object_id_dup");
1930 e09a504c 2019-06-28 stsp goto done;
1931 e09a504c 2019-06-28 stsp }
1932 e09a504c 2019-06-28 stsp } else {
1933 1accf02b 2020-01-05 stsp if (got_object_id_cmp(*unique_id, &id) == 0)
1934 1accf02b 2020-01-05 stsp continue; /* both packed and loose */
1935 e09a504c 2019-06-28 stsp err = got_error(GOT_ERR_AMBIGUOUS_ID);
1936 e09a504c 2019-06-28 stsp goto done;
1937 e09a504c 2019-06-28 stsp }
1938 e09a504c 2019-06-28 stsp }
1939 e09a504c 2019-06-28 stsp done:
1940 b2df341b 2019-06-29 stsp if (dir && closedir(dir) != 0 && err == NULL)
1941 b2df341b 2019-06-29 stsp err = got_error_from_errno("closedir");
1942 e09a504c 2019-06-28 stsp if (err) {
1943 e09a504c 2019-06-28 stsp free(*unique_id);
1944 e09a504c 2019-06-28 stsp *unique_id = NULL;
1945 e09a504c 2019-06-28 stsp }
1946 5ef2cc1c 2022-09-02 thomas free(id_str);
1947 e09a504c 2019-06-28 stsp free(path);
1948 e09a504c 2019-06-28 stsp return err;
1949 1510f469 2018-09-09 stsp }
1950 e09a504c 2019-06-28 stsp
1951 e09a504c 2019-06-28 stsp const struct got_error *
1952 4277420a 2019-06-29 stsp got_repo_match_object_id_prefix(struct got_object_id **id,
1953 dd88155e 2019-06-29 stsp const char *id_str_prefix, int obj_type, struct got_repository *repo)
1954 e09a504c 2019-06-28 stsp {
1955 e09a504c 2019-06-28 stsp const struct got_error *err = NULL;
1956 66ca6940 2022-09-06 thomas char *path_objects = NULL, *object_dir = NULL;
1957 e09a504c 2019-06-28 stsp size_t len;
1958 4277420a 2019-06-29 stsp int i;
1959 e09a504c 2019-06-28 stsp
1960 4277420a 2019-06-29 stsp *id = NULL;
1961 4277420a 2019-06-29 stsp
1962 66ca6940 2022-09-06 thomas path_objects = got_repo_get_path_objects(repo);
1963 66ca6940 2022-09-06 thomas
1964 70e6418e 2022-03-10 thomas len = strlen(id_str_prefix);
1965 66ca6940 2022-09-06 thomas if (len > SHA1_DIGEST_STRING_LENGTH - 1) {
1966 66ca6940 2022-09-06 thomas err = got_error_path(id_str_prefix, GOT_ERR_BAD_OBJ_ID_STR);
1967 66ca6940 2022-09-06 thomas goto done;
1968 66ca6940 2022-09-06 thomas }
1969 70e6418e 2022-03-10 thomas
1970 70e6418e 2022-03-10 thomas for (i = 0; i < len; i++) {
1971 4277420a 2019-06-29 stsp if (isxdigit((unsigned char)id_str_prefix[i]))
1972 4277420a 2019-06-29 stsp continue;
1973 66ca6940 2022-09-06 thomas err = got_error_path(id_str_prefix, GOT_ERR_BAD_OBJ_ID_STR);
1974 66ca6940 2022-09-06 thomas goto done;
1975 4277420a 2019-06-29 stsp }
1976 4277420a 2019-06-29 stsp
1977 e09a504c 2019-06-28 stsp if (len >= 2) {
1978 dd88155e 2019-06-29 stsp err = match_packed_object(id, repo, id_str_prefix, obj_type);
1979 4277420a 2019-06-29 stsp if (err)
1980 83c8b3b8 2019-06-29 stsp goto done;
1981 e09a504c 2019-06-28 stsp object_dir = strndup(id_str_prefix, 2);
1982 83c8b3b8 2019-06-29 stsp if (object_dir == NULL) {
1983 83c8b3b8 2019-06-29 stsp err = got_error_from_errno("strdup");
1984 83c8b3b8 2019-06-29 stsp goto done;
1985 83c8b3b8 2019-06-29 stsp }
1986 4277420a 2019-06-29 stsp err = match_loose_object(id, path_objects, object_dir,
1987 dd88155e 2019-06-29 stsp id_str_prefix, obj_type, repo);
1988 e09a504c 2019-06-28 stsp } else if (len == 1) {
1989 e09a504c 2019-06-28 stsp int i;
1990 e09a504c 2019-06-28 stsp for (i = 0; i < 0xf; i++) {
1991 e09a504c 2019-06-28 stsp if (asprintf(&object_dir, "%s%.1x", id_str_prefix, i)
1992 83c8b3b8 2019-06-29 stsp == -1) {
1993 83c8b3b8 2019-06-29 stsp err = got_error_from_errno("asprintf");
1994 83c8b3b8 2019-06-29 stsp goto done;
1995 83c8b3b8 2019-06-29 stsp }
1996 dd88155e 2019-06-29 stsp err = match_packed_object(id, repo, object_dir,
1997 dd88155e 2019-06-29 stsp obj_type);
1998 4277420a 2019-06-29 stsp if (err)
1999 83c8b3b8 2019-06-29 stsp goto done;
2000 4277420a 2019-06-29 stsp err = match_loose_object(id, path_objects, object_dir,
2001 dd88155e 2019-06-29 stsp id_str_prefix, obj_type, repo);
2002 e09a504c 2019-06-28 stsp if (err)
2003 83c8b3b8 2019-06-29 stsp goto done;
2004 e09a504c 2019-06-28 stsp }
2005 83c8b3b8 2019-06-29 stsp } else {
2006 6dd1ece6 2019-11-10 stsp err = got_error_path(id_str_prefix, GOT_ERR_BAD_OBJ_ID_STR);
2007 83c8b3b8 2019-06-29 stsp goto done;
2008 83c8b3b8 2019-06-29 stsp }
2009 83c8b3b8 2019-06-29 stsp done:
2010 66ca6940 2022-09-06 thomas free(path_objects);
2011 e09a504c 2019-06-28 stsp free(object_dir);
2012 4277420a 2019-06-29 stsp if (err) {
2013 4277420a 2019-06-29 stsp free(*id);
2014 4277420a 2019-06-29 stsp *id = NULL;
2015 a3599220 2021-10-10 thomas } else if (*id == NULL) {
2016 a3599220 2021-10-10 thomas switch (obj_type) {
2017 a3599220 2021-10-10 thomas case GOT_OBJ_TYPE_BLOB:
2018 a3599220 2021-10-10 thomas err = got_error_fmt(GOT_ERR_NO_OBJ, "%s %s",
2019 a3599220 2021-10-10 thomas GOT_OBJ_LABEL_BLOB, id_str_prefix);
2020 a3599220 2021-10-10 thomas break;
2021 a3599220 2021-10-10 thomas case GOT_OBJ_TYPE_TREE:
2022 a3599220 2021-10-10 thomas err = got_error_fmt(GOT_ERR_NO_OBJ, "%s %s",
2023 a3599220 2021-10-10 thomas GOT_OBJ_LABEL_TREE, id_str_prefix);
2024 a3599220 2021-10-10 thomas break;
2025 a3599220 2021-10-10 thomas case GOT_OBJ_TYPE_COMMIT:
2026 a3599220 2021-10-10 thomas err = got_error_fmt(GOT_ERR_NO_OBJ, "%s %s",
2027 a3599220 2021-10-10 thomas GOT_OBJ_LABEL_COMMIT, id_str_prefix);
2028 a3599220 2021-10-10 thomas break;
2029 a3599220 2021-10-10 thomas case GOT_OBJ_TYPE_TAG:
2030 a3599220 2021-10-10 thomas err = got_error_fmt(GOT_ERR_NO_OBJ, "%s %s",
2031 a3599220 2021-10-10 thomas GOT_OBJ_LABEL_TAG, id_str_prefix);
2032 a3599220 2021-10-10 thomas break;
2033 a3599220 2021-10-10 thomas default:
2034 a3599220 2021-10-10 thomas err = got_error_path(id_str_prefix, GOT_ERR_NO_OBJ);
2035 a3599220 2021-10-10 thomas break;
2036 a3599220 2021-10-10 thomas }
2037 a3599220 2021-10-10 thomas }
2038 303e2782 2019-08-09 stsp
2039 303e2782 2019-08-09 stsp return err;
2040 303e2782 2019-08-09 stsp }
2041 303e2782 2019-08-09 stsp
2042 303e2782 2019-08-09 stsp const struct got_error *
2043 71a27632 2020-01-15 stsp got_repo_match_object_id(struct got_object_id **id, char **label,
2044 84de9106 2020-12-26 stsp const char *id_str, int obj_type, struct got_reflist_head *refs,
2045 71a27632 2020-01-15 stsp struct got_repository *repo)
2046 71a27632 2020-01-15 stsp {
2047 71a27632 2020-01-15 stsp const struct got_error *err;
2048 71a27632 2020-01-15 stsp struct got_tag_object *tag;
2049 71a27632 2020-01-15 stsp struct got_reference *ref = NULL;
2050 71a27632 2020-01-15 stsp
2051 71a27632 2020-01-15 stsp *id = NULL;
2052 71a27632 2020-01-15 stsp if (label)
2053 71a27632 2020-01-15 stsp *label = NULL;
2054 71a27632 2020-01-15 stsp
2055 84de9106 2020-12-26 stsp if (refs) {
2056 f1165c79 2021-10-10 thomas err = got_repo_object_match_tag(&tag, id_str, obj_type,
2057 84de9106 2020-12-26 stsp refs, repo);
2058 71a27632 2020-01-15 stsp if (err == NULL) {
2059 71a27632 2020-01-15 stsp *id = got_object_id_dup(
2060 71a27632 2020-01-15 stsp got_object_tag_get_object_id(tag));
2061 71a27632 2020-01-15 stsp if (*id == NULL)
2062 71a27632 2020-01-15 stsp err = got_error_from_errno("got_object_id_dup");
2063 71a27632 2020-01-15 stsp else if (label && asprintf(label, "refs/tags/%s",
2064 71a27632 2020-01-15 stsp got_object_tag_get_name(tag)) == -1) {
2065 71a27632 2020-01-15 stsp err = got_error_from_errno("asprintf");
2066 71a27632 2020-01-15 stsp free(*id);
2067 71a27632 2020-01-15 stsp *id = NULL;
2068 71a27632 2020-01-15 stsp }
2069 71a27632 2020-01-15 stsp got_object_tag_close(tag);
2070 71a27632 2020-01-15 stsp return err;
2071 71a27632 2020-01-15 stsp } else if (err->code != GOT_ERR_OBJ_TYPE &&
2072 71a27632 2020-01-15 stsp err->code != GOT_ERR_NO_OBJ)
2073 71a27632 2020-01-15 stsp return err;
2074 71a27632 2020-01-15 stsp }
2075 71a27632 2020-01-15 stsp
2076 65ad15fa 2022-07-16 thomas err = got_ref_open(&ref, repo, id_str, 0);
2077 65ad15fa 2022-07-16 thomas if (err == NULL) {
2078 65ad15fa 2022-07-16 thomas err = got_ref_resolve(id, repo, ref);
2079 65ad15fa 2022-07-16 thomas if (err)
2080 71a27632 2020-01-15 stsp goto done;
2081 71a27632 2020-01-15 stsp if (label) {
2082 71a27632 2020-01-15 stsp *label = strdup(got_ref_get_name(ref));
2083 71a27632 2020-01-15 stsp if (*label == NULL) {
2084 71a27632 2020-01-15 stsp err = got_error_from_errno("strdup");
2085 71a27632 2020-01-15 stsp goto done;
2086 71a27632 2020-01-15 stsp }
2087 71a27632 2020-01-15 stsp }
2088 65ad15fa 2022-07-16 thomas } else {
2089 65ad15fa 2022-07-16 thomas if (err->code != GOT_ERR_NOT_REF &&
2090 65ad15fa 2022-07-16 thomas err->code != GOT_ERR_BAD_REF_NAME)
2091 71a27632 2020-01-15 stsp goto done;
2092 65ad15fa 2022-07-16 thomas err = got_repo_match_object_id_prefix(id, id_str,
2093 65ad15fa 2022-07-16 thomas obj_type, repo);
2094 65ad15fa 2022-07-16 thomas if (err) {
2095 65ad15fa 2022-07-16 thomas if (err->code == GOT_ERR_BAD_OBJ_ID_STR)
2096 65ad15fa 2022-07-16 thomas err = got_error_not_ref(id_str);
2097 65ad15fa 2022-07-16 thomas goto done;
2098 71a27632 2020-01-15 stsp }
2099 65ad15fa 2022-07-16 thomas if (label) {
2100 65ad15fa 2022-07-16 thomas err = got_object_id_str(label, *id);
2101 65ad15fa 2022-07-16 thomas if (*label == NULL) {
2102 65ad15fa 2022-07-16 thomas err = got_error_from_errno("strdup");
2103 65ad15fa 2022-07-16 thomas goto done;
2104 65ad15fa 2022-07-16 thomas }
2105 65ad15fa 2022-07-16 thomas }
2106 71a27632 2020-01-15 stsp }
2107 71a27632 2020-01-15 stsp done:
2108 71a27632 2020-01-15 stsp if (ref)
2109 71a27632 2020-01-15 stsp got_ref_close(ref);
2110 71a27632 2020-01-15 stsp return err;
2111 71a27632 2020-01-15 stsp }
2112 71a27632 2020-01-15 stsp
2113 71a27632 2020-01-15 stsp const struct got_error *
2114 303e2782 2019-08-09 stsp got_repo_object_match_tag(struct got_tag_object **tag, const char *name,
2115 84de9106 2020-12-26 stsp int obj_type, struct got_reflist_head *refs, struct got_repository *repo)
2116 303e2782 2019-08-09 stsp {
2117 84de9106 2020-12-26 stsp const struct got_error *err = NULL;
2118 303e2782 2019-08-09 stsp struct got_reflist_entry *re;
2119 303e2782 2019-08-09 stsp struct got_object_id *tag_id;
2120 785d65a4 2020-12-05 stsp int name_is_absolute = (strncmp(name, "refs/", 5) == 0);
2121 303e2782 2019-08-09 stsp
2122 303e2782 2019-08-09 stsp *tag = NULL;
2123 303e2782 2019-08-09 stsp
2124 d9dff0e5 2020-12-26 stsp TAILQ_FOREACH(re, refs, entry) {
2125 303e2782 2019-08-09 stsp const char *refname;
2126 303e2782 2019-08-09 stsp refname = got_ref_get_name(re->ref);
2127 29606af7 2019-08-23 stsp if (got_ref_is_symbolic(re->ref))
2128 303e2782 2019-08-09 stsp continue;
2129 84de9106 2020-12-26 stsp if (strncmp(refname, "refs/tags/", 10) != 0)
2130 84de9106 2020-12-26 stsp continue;
2131 785d65a4 2020-12-05 stsp if (!name_is_absolute)
2132 785d65a4 2020-12-05 stsp refname += strlen("refs/tags/");
2133 303e2782 2019-08-09 stsp if (strcmp(refname, name) != 0)
2134 303e2782 2019-08-09 stsp continue;
2135 303e2782 2019-08-09 stsp err = got_ref_resolve(&tag_id, repo, re->ref);
2136 303e2782 2019-08-09 stsp if (err)
2137 303e2782 2019-08-09 stsp break;
2138 303e2782 2019-08-09 stsp err = got_object_open_as_tag(tag, repo, tag_id);
2139 303e2782 2019-08-09 stsp free(tag_id);
2140 303e2782 2019-08-09 stsp if (err)
2141 303e2782 2019-08-09 stsp break;
2142 d24820bf 2019-08-11 stsp if (obj_type == GOT_OBJ_TYPE_ANY ||
2143 d24820bf 2019-08-11 stsp got_object_tag_get_object_type(*tag) == obj_type)
2144 303e2782 2019-08-09 stsp break;
2145 303e2782 2019-08-09 stsp got_object_tag_close(*tag);
2146 303e2782 2019-08-09 stsp *tag = NULL;
2147 303e2782 2019-08-09 stsp }
2148 4277420a 2019-06-29 stsp
2149 303e2782 2019-08-09 stsp if (err == NULL && *tag == NULL)
2150 a3599220 2021-10-10 thomas err = got_error_fmt(GOT_ERR_NO_OBJ, "%s %s",
2151 a3599220 2021-10-10 thomas GOT_OBJ_LABEL_TAG, name);
2152 e09a504c 2019-06-28 stsp return err;
2153 e09a504c 2019-06-28 stsp }
2154 44f875ad 2024-01-18 thomas
2155 44f875ad 2024-01-18 thomas const struct got_error *
2156 44f875ad 2024-01-18 thomas got_repo_find_object_id(struct got_object_id *id, struct got_repository *repo)
2157 44f875ad 2024-01-18 thomas {
2158 44f875ad 2024-01-18 thomas const struct got_error *err;
2159 44f875ad 2024-01-18 thomas struct got_object_id *matched_id = NULL;
2160 44f875ad 2024-01-18 thomas char *id_str = NULL;
2161 7a1d6b72 2020-01-15 stsp
2162 44f875ad 2024-01-18 thomas err = got_object_id_str(&id_str, id);
2163 44f875ad 2024-01-18 thomas if (err)
2164 44f875ad 2024-01-18 thomas return err;
2165 44f875ad 2024-01-18 thomas
2166 44f875ad 2024-01-18 thomas err = got_repo_match_object_id_prefix(&matched_id, id_str,
2167 44f875ad 2024-01-18 thomas GOT_OBJ_TYPE_ANY, repo);
2168 44f875ad 2024-01-18 thomas free(id_str);
2169 44f875ad 2024-01-18 thomas return err;
2170 44f875ad 2024-01-18 thomas }
2171 44f875ad 2024-01-18 thomas
2172 3ce1b845 2019-07-15 stsp static const struct got_error *
2173 3ce1b845 2019-07-15 stsp alloc_added_blob_tree_entry(struct got_tree_entry **new_te,
2174 3ce1b845 2019-07-15 stsp const char *name, mode_t mode, struct got_object_id *blob_id)
2175 3ce1b845 2019-07-15 stsp {
2176 3ce1b845 2019-07-15 stsp const struct got_error *err = NULL;
2177 3ce1b845 2019-07-15 stsp
2178 9c57c4c6 2024-02-13 thomas *new_te = NULL;
2179 3ce1b845 2019-07-15 stsp
2180 3ce1b845 2019-07-15 stsp *new_te = calloc(1, sizeof(**new_te));
2181 3ce1b845 2019-07-15 stsp if (*new_te == NULL)
2182 3ce1b845 2019-07-15 stsp return got_error_from_errno("calloc");
2183 3ce1b845 2019-07-15 stsp
2184 56e0773d 2019-11-28 stsp if (strlcpy((*new_te)->name, name, sizeof((*new_te)->name)) >=
2185 56e0773d 2019-11-28 stsp sizeof((*new_te)->name)) {
2186 56e0773d 2019-11-28 stsp err = got_error(GOT_ERR_NO_SPACE);
2187 3ce1b845 2019-07-15 stsp goto done;
2188 3ce1b845 2019-07-15 stsp }
2189 3ce1b845 2019-07-15 stsp
2190 e8863bdc 2020-07-23 stsp if (S_ISLNK(mode)) {
2191 e8863bdc 2020-07-23 stsp (*new_te)->mode = S_IFLNK;
2192 e8863bdc 2020-07-23 stsp } else {
2193 e8863bdc 2020-07-23 stsp (*new_te)->mode = S_IFREG;
2194 e8863bdc 2020-07-23 stsp (*new_te)->mode |= (mode & (S_IRWXU | S_IRWXG | S_IRWXO));
2195 e8863bdc 2020-07-23 stsp }
2196 56e0773d 2019-11-28 stsp memcpy(&(*new_te)->id, blob_id, sizeof((*new_te)->id));
2197 3ce1b845 2019-07-15 stsp done:
2198 3ce1b845 2019-07-15 stsp if (err && *new_te) {
2199 56e0773d 2019-11-28 stsp free(*new_te);
2200 3ce1b845 2019-07-15 stsp *new_te = NULL;
2201 3ce1b845 2019-07-15 stsp }
2202 3ce1b845 2019-07-15 stsp return err;
2203 3ce1b845 2019-07-15 stsp }
2204 3ce1b845 2019-07-15 stsp
2205 3ce1b845 2019-07-15 stsp static const struct got_error *
2206 3ce1b845 2019-07-15 stsp import_file(struct got_tree_entry **new_te, struct dirent *de,
2207 3ce1b845 2019-07-15 stsp const char *path, struct got_repository *repo)
2208 3ce1b845 2019-07-15 stsp {
2209 3ce1b845 2019-07-15 stsp const struct got_error *err;
2210 3ce1b845 2019-07-15 stsp struct got_object_id *blob_id = NULL;
2211 3ce1b845 2019-07-15 stsp char *filepath;
2212 3ce1b845 2019-07-15 stsp struct stat sb;
2213 3ce1b845 2019-07-15 stsp
2214 3ce1b845 2019-07-15 stsp if (asprintf(&filepath, "%s%s%s", path,
2215 3ce1b845 2019-07-15 stsp path[0] == '\0' ? "" : "/", de->d_name) == -1)
2216 3ce1b845 2019-07-15 stsp return got_error_from_errno("asprintf");
2217 3ce1b845 2019-07-15 stsp
2218 3ce1b845 2019-07-15 stsp if (lstat(filepath, &sb) != 0) {
2219 3ce1b845 2019-07-15 stsp err = got_error_from_errno2("lstat", path);
2220 3ce1b845 2019-07-15 stsp goto done;
2221 3ce1b845 2019-07-15 stsp }
2222 3ce1b845 2019-07-15 stsp
2223 3ce1b845 2019-07-15 stsp err = got_object_blob_create(&blob_id, filepath, repo);
2224 3ce1b845 2019-07-15 stsp if (err)
2225 3ce1b845 2019-07-15 stsp goto done;
2226 3ce1b845 2019-07-15 stsp
2227 3ce1b845 2019-07-15 stsp err = alloc_added_blob_tree_entry(new_te, de->d_name, sb.st_mode,
2228 3ce1b845 2019-07-15 stsp blob_id);
2229 3ce1b845 2019-07-15 stsp done:
2230 3ce1b845 2019-07-15 stsp free(filepath);
2231 3ce1b845 2019-07-15 stsp if (err)
2232 3ce1b845 2019-07-15 stsp free(blob_id);
2233 3ce1b845 2019-07-15 stsp return err;
2234 3ce1b845 2019-07-15 stsp }
2235 3ce1b845 2019-07-15 stsp
2236 3ce1b845 2019-07-15 stsp static const struct got_error *
2237 3ce1b845 2019-07-15 stsp insert_tree_entry(struct got_tree_entry *new_te,
2238 3ce1b845 2019-07-15 stsp struct got_pathlist_head *paths)
2239 3ce1b845 2019-07-15 stsp {
2240 3ce1b845 2019-07-15 stsp const struct got_error *err = NULL;
2241 3ce1b845 2019-07-15 stsp struct got_pathlist_entry *new_pe;
2242 3ce1b845 2019-07-15 stsp
2243 3ce1b845 2019-07-15 stsp err = got_pathlist_insert(&new_pe, paths, new_te->name, new_te);
2244 3ce1b845 2019-07-15 stsp if (err)
2245 3ce1b845 2019-07-15 stsp return err;
2246 3ce1b845 2019-07-15 stsp if (new_pe == NULL)
2247 3ce1b845 2019-07-15 stsp return got_error(GOT_ERR_TREE_DUP_ENTRY);
2248 3ce1b845 2019-07-15 stsp return NULL;
2249 3ce1b845 2019-07-15 stsp }
2250 3ce1b845 2019-07-15 stsp
2251 3ce1b845 2019-07-15 stsp static const struct got_error *write_tree(struct got_object_id **,
2252 3ce1b845 2019-07-15 stsp const char *, struct got_pathlist_head *, struct got_repository *,
2253 3ce1b845 2019-07-15 stsp got_repo_import_cb progress_cb, void *progress_arg);
2254 3ce1b845 2019-07-15 stsp
2255 3ce1b845 2019-07-15 stsp static const struct got_error *
2256 3ce1b845 2019-07-15 stsp import_subdir(struct got_tree_entry **new_te, struct dirent *de,
2257 3ce1b845 2019-07-15 stsp const char *path, struct got_pathlist_head *ignores,
2258 3ce1b845 2019-07-15 stsp struct got_repository *repo,
2259 3ce1b845 2019-07-15 stsp got_repo_import_cb progress_cb, void *progress_arg)
2260 3ce1b845 2019-07-15 stsp {
2261 3ce1b845 2019-07-15 stsp const struct got_error *err;
2262 56e0773d 2019-11-28 stsp struct got_object_id *id = NULL;
2263 3ce1b845 2019-07-15 stsp char *subdirpath;
2264 3ce1b845 2019-07-15 stsp
2265 3ce1b845 2019-07-15 stsp if (asprintf(&subdirpath, "%s%s%s", path,
2266 3ce1b845 2019-07-15 stsp path[0] == '\0' ? "" : "/", de->d_name) == -1)
2267 3ce1b845 2019-07-15 stsp return got_error_from_errno("asprintf");
2268 3ce1b845 2019-07-15 stsp
2269 3ce1b845 2019-07-15 stsp (*new_te) = calloc(1, sizeof(**new_te));
2270 d6fca0ba 2019-09-15 hiltjo if (*new_te == NULL)
2271 d6fca0ba 2019-09-15 hiltjo return got_error_from_errno("calloc");
2272 3ce1b845 2019-07-15 stsp (*new_te)->mode = S_IFDIR;
2273 56e0773d 2019-11-28 stsp if (strlcpy((*new_te)->name, de->d_name, sizeof((*new_te)->name)) >=
2274 56e0773d 2019-11-28 stsp sizeof((*new_te)->name)) {
2275 56e0773d 2019-11-28 stsp err = got_error(GOT_ERR_NO_SPACE);
2276 3ce1b845 2019-07-15 stsp goto done;
2277 3ce1b845 2019-07-15 stsp }
2278 56e0773d 2019-11-28 stsp err = write_tree(&id, subdirpath, ignores, repo,
2279 3ce1b845 2019-07-15 stsp progress_cb, progress_arg);
2280 56e0773d 2019-11-28 stsp if (err)
2281 56e0773d 2019-11-28 stsp goto done;
2282 56e0773d 2019-11-28 stsp memcpy(&(*new_te)->id, id, sizeof((*new_te)->id));
2283 b6b86fd1 2022-08-30 thomas
2284 3ce1b845 2019-07-15 stsp done:
2285 56e0773d 2019-11-28 stsp free(id);
2286 3ce1b845 2019-07-15 stsp free(subdirpath);
2287 3ce1b845 2019-07-15 stsp if (err) {
2288 56e0773d 2019-11-28 stsp free(*new_te);
2289 3ce1b845 2019-07-15 stsp *new_te = NULL;
2290 3ce1b845 2019-07-15 stsp }
2291 3ce1b845 2019-07-15 stsp return err;
2292 3ce1b845 2019-07-15 stsp }
2293 3ce1b845 2019-07-15 stsp
2294 3ce1b845 2019-07-15 stsp static const struct got_error *
2295 3ce1b845 2019-07-15 stsp write_tree(struct got_object_id **new_tree_id, const char *path_dir,
2296 3ce1b845 2019-07-15 stsp struct got_pathlist_head *ignores, struct got_repository *repo,
2297 3ce1b845 2019-07-15 stsp got_repo_import_cb progress_cb, void *progress_arg)
2298 3ce1b845 2019-07-15 stsp {
2299 3ce1b845 2019-07-15 stsp const struct got_error *err = NULL;
2300 3ce1b845 2019-07-15 stsp DIR *dir;
2301 3ce1b845 2019-07-15 stsp struct dirent *de;
2302 56e0773d 2019-11-28 stsp int nentries;
2303 3ce1b845 2019-07-15 stsp struct got_tree_entry *new_te = NULL;
2304 3ce1b845 2019-07-15 stsp struct got_pathlist_head paths;
2305 3ce1b845 2019-07-15 stsp struct got_pathlist_entry *pe;
2306 3ce1b845 2019-07-15 stsp
2307 3ce1b845 2019-07-15 stsp *new_tree_id = NULL;
2308 3ce1b845 2019-07-15 stsp
2309 3ce1b845 2019-07-15 stsp TAILQ_INIT(&paths);
2310 3ce1b845 2019-07-15 stsp
2311 3ce1b845 2019-07-15 stsp dir = opendir(path_dir);
2312 3ce1b845 2019-07-15 stsp if (dir == NULL) {
2313 3ce1b845 2019-07-15 stsp err = got_error_from_errno2("opendir", path_dir);
2314 3ce1b845 2019-07-15 stsp goto done;
2315 3ce1b845 2019-07-15 stsp }
2316 3ce1b845 2019-07-15 stsp
2317 56e0773d 2019-11-28 stsp nentries = 0;
2318 3ce1b845 2019-07-15 stsp while ((de = readdir(dir)) != NULL) {
2319 3ce1b845 2019-07-15 stsp int ignore = 0;
2320 20ccae39 2020-07-21 stsp int type;
2321 3ce1b845 2019-07-15 stsp
2322 3ce1b845 2019-07-15 stsp if (strcmp(de->d_name, ".") == 0 ||
2323 3ce1b845 2019-07-15 stsp strcmp(de->d_name, "..") == 0)
2324 3ce1b845 2019-07-15 stsp continue;
2325 e012cf94 2023-02-07 thomas
2326 e012cf94 2023-02-07 thomas err = got_path_dirent_type(&type, path_dir, de);
2327 e012cf94 2023-02-07 thomas if (err)
2328 e012cf94 2023-02-07 thomas goto done;
2329 3ce1b845 2019-07-15 stsp
2330 3ce1b845 2019-07-15 stsp TAILQ_FOREACH(pe, ignores, entry) {
2331 e012cf94 2023-02-07 thomas if (type == DT_DIR && pe->path_len > 0 &&
2332 e012cf94 2023-02-07 thomas pe->path[pe->path_len - 1] == '/') {
2333 e012cf94 2023-02-07 thomas char stripped[PATH_MAX];
2334 e012cf94 2023-02-07 thomas
2335 e012cf94 2023-02-07 thomas if (strlcpy(stripped, pe->path,
2336 e012cf94 2023-02-07 thomas sizeof(stripped)) >= sizeof(stripped)) {
2337 e012cf94 2023-02-07 thomas err = got_error(GOT_ERR_NO_SPACE);
2338 e012cf94 2023-02-07 thomas goto done;
2339 e012cf94 2023-02-07 thomas }
2340 e012cf94 2023-02-07 thomas got_path_strip_trailing_slashes(stripped);
2341 e012cf94 2023-02-07 thomas if (fnmatch(stripped, de->d_name, 0) == 0) {
2342 e012cf94 2023-02-07 thomas ignore = 1;
2343 e012cf94 2023-02-07 thomas break;
2344 e012cf94 2023-02-07 thomas }
2345 e012cf94 2023-02-07 thomas } else if (fnmatch(pe->path, de->d_name, 0) == 0) {
2346 3ce1b845 2019-07-15 stsp ignore = 1;
2347 3ce1b845 2019-07-15 stsp break;
2348 3ce1b845 2019-07-15 stsp }
2349 3ce1b845 2019-07-15 stsp }
2350 3ce1b845 2019-07-15 stsp if (ignore)
2351 3ce1b845 2019-07-15 stsp continue;
2352 20ccae39 2020-07-21 stsp
2353 20ccae39 2020-07-21 stsp if (type == DT_DIR) {
2354 3ce1b845 2019-07-15 stsp err = import_subdir(&new_te, de, path_dir,
2355 3ce1b845 2019-07-15 stsp ignores, repo, progress_cb, progress_arg);
2356 db1d3576 2019-10-04 stsp if (err) {
2357 db1d3576 2019-10-04 stsp if (err->code != GOT_ERR_NO_TREE_ENTRY)
2358 db1d3576 2019-10-04 stsp goto done;
2359 db1d3576 2019-10-04 stsp err = NULL;
2360 db1d3576 2019-10-04 stsp continue;
2361 db1d3576 2019-10-04 stsp }
2362 e8863bdc 2020-07-23 stsp } else if (type == DT_REG || type == DT_LNK) {
2363 3ce1b845 2019-07-15 stsp err = import_file(&new_te, de, path_dir, repo);
2364 3ce1b845 2019-07-15 stsp if (err)
2365 3ce1b845 2019-07-15 stsp goto done;
2366 3ce1b845 2019-07-15 stsp } else
2367 3ce1b845 2019-07-15 stsp continue;
2368 3ce1b845 2019-07-15 stsp
2369 3ce1b845 2019-07-15 stsp err = insert_tree_entry(new_te, &paths);
2370 3ce1b845 2019-07-15 stsp if (err)
2371 3ce1b845 2019-07-15 stsp goto done;
2372 56e0773d 2019-11-28 stsp nentries++;
2373 3ce1b845 2019-07-15 stsp }
2374 3ce1b845 2019-07-15 stsp
2375 db1d3576 2019-10-04 stsp if (TAILQ_EMPTY(&paths)) {
2376 b66cd6f3 2020-07-31 stsp err = got_error_msg(GOT_ERR_NO_TREE_ENTRY,
2377 b66cd6f3 2020-07-31 stsp "cannot create tree without any entries");
2378 db1d3576 2019-10-04 stsp goto done;
2379 db1d3576 2019-10-04 stsp }
2380 db1d3576 2019-10-04 stsp
2381 3ce1b845 2019-07-15 stsp TAILQ_FOREACH(pe, &paths, entry) {
2382 3ce1b845 2019-07-15 stsp struct got_tree_entry *te = pe->data;
2383 3ce1b845 2019-07-15 stsp char *path;
2384 e8863bdc 2020-07-23 stsp if (!S_ISREG(te->mode) && !S_ISLNK(te->mode))
2385 3ce1b845 2019-07-15 stsp continue;
2386 3ce1b845 2019-07-15 stsp if (asprintf(&path, "%s/%s", path_dir, pe->path) == -1) {
2387 3ce1b845 2019-07-15 stsp err = got_error_from_errno("asprintf");
2388 3ce1b845 2019-07-15 stsp goto done;
2389 3ce1b845 2019-07-15 stsp }
2390 3ce1b845 2019-07-15 stsp err = (*progress_cb)(progress_arg, path);
2391 3ce1b845 2019-07-15 stsp free(path);
2392 3ce1b845 2019-07-15 stsp if (err)
2393 3ce1b845 2019-07-15 stsp goto done;
2394 3ce1b845 2019-07-15 stsp }
2395 3ce1b845 2019-07-15 stsp
2396 56e0773d 2019-11-28 stsp err = got_object_tree_create(new_tree_id, &paths, nentries, repo);
2397 3ce1b845 2019-07-15 stsp done:
2398 3ce1b845 2019-07-15 stsp if (dir)
2399 3ce1b845 2019-07-15 stsp closedir(dir);
2400 21c2d8be 2023-01-10 thomas got_pathlist_free(&paths, GOT_PATHLIST_FREE_NONE);
2401 3ce1b845 2019-07-15 stsp return err;
2402 3ce1b845 2019-07-15 stsp }
2403 3ce1b845 2019-07-15 stsp
2404 3ce1b845 2019-07-15 stsp const struct got_error *
2405 3ce1b845 2019-07-15 stsp got_repo_import(struct got_object_id **new_commit_id, const char *path_dir,
2406 3ce1b845 2019-07-15 stsp const char *logmsg, const char *author, struct got_pathlist_head *ignores,
2407 3ce1b845 2019-07-15 stsp struct got_repository *repo, got_repo_import_cb progress_cb,
2408 3ce1b845 2019-07-15 stsp void *progress_arg)
2409 3ce1b845 2019-07-15 stsp {
2410 3ce1b845 2019-07-15 stsp const struct got_error *err;
2411 3ce1b845 2019-07-15 stsp struct got_object_id *new_tree_id;
2412 3ce1b845 2019-07-15 stsp
2413 3ce1b845 2019-07-15 stsp err = write_tree(&new_tree_id, path_dir, ignores, repo,
2414 3ce1b845 2019-07-15 stsp progress_cb, progress_arg);
2415 3ce1b845 2019-07-15 stsp if (err)
2416 3ce1b845 2019-07-15 stsp return err;
2417 3ce1b845 2019-07-15 stsp
2418 3ce1b845 2019-07-15 stsp err = got_object_commit_create(new_commit_id, new_tree_id, NULL, 0,
2419 3ce1b845 2019-07-15 stsp author, time(NULL), author, time(NULL), logmsg, repo);
2420 3ce1b845 2019-07-15 stsp free(new_tree_id);
2421 20662ea0 2021-04-10 stsp return err;
2422 20662ea0 2021-04-10 stsp }
2423 20662ea0 2021-04-10 stsp
2424 20662ea0 2021-04-10 stsp const struct got_error *
2425 20662ea0 2021-04-10 stsp got_repo_get_loose_object_info(int *nobjects, off_t *ondisk_size,
2426 20662ea0 2021-04-10 stsp struct got_repository *repo)
2427 20662ea0 2021-04-10 stsp {
2428 20662ea0 2021-04-10 stsp const struct got_error *err = NULL;
2429 20662ea0 2021-04-10 stsp char *path_objects = NULL, *path = NULL;
2430 20662ea0 2021-04-10 stsp DIR *dir = NULL;
2431 20662ea0 2021-04-10 stsp struct got_object_id id;
2432 20662ea0 2021-04-10 stsp int i;
2433 20662ea0 2021-04-10 stsp
2434 20662ea0 2021-04-10 stsp *nobjects = 0;
2435 20662ea0 2021-04-10 stsp *ondisk_size = 0;
2436 20662ea0 2021-04-10 stsp
2437 20662ea0 2021-04-10 stsp path_objects = got_repo_get_path_objects(repo);
2438 20662ea0 2021-04-10 stsp if (path_objects == NULL)
2439 20662ea0 2021-04-10 stsp return got_error_from_errno("got_repo_get_path_objects");
2440 20662ea0 2021-04-10 stsp
2441 20662ea0 2021-04-10 stsp for (i = 0; i <= 0xff; i++) {
2442 20662ea0 2021-04-10 stsp struct dirent *dent;
2443 20662ea0 2021-04-10 stsp
2444 20662ea0 2021-04-10 stsp if (asprintf(&path, "%s/%.2x", path_objects, i) == -1) {
2445 20662ea0 2021-04-10 stsp err = got_error_from_errno("asprintf");
2446 20662ea0 2021-04-10 stsp break;
2447 20662ea0 2021-04-10 stsp }
2448 20662ea0 2021-04-10 stsp
2449 20662ea0 2021-04-10 stsp dir = opendir(path);
2450 20662ea0 2021-04-10 stsp if (dir == NULL) {
2451 20662ea0 2021-04-10 stsp if (errno == ENOENT) {
2452 20662ea0 2021-04-10 stsp err = NULL;
2453 20662ea0 2021-04-10 stsp continue;
2454 20662ea0 2021-04-10 stsp }
2455 20662ea0 2021-04-10 stsp err = got_error_from_errno2("opendir", path);
2456 20662ea0 2021-04-10 stsp break;
2457 20662ea0 2021-04-10 stsp }
2458 20662ea0 2021-04-10 stsp
2459 20662ea0 2021-04-10 stsp while ((dent = readdir(dir)) != NULL) {
2460 20662ea0 2021-04-10 stsp char *id_str;
2461 20662ea0 2021-04-10 stsp int fd;
2462 20662ea0 2021-04-10 stsp struct stat sb;
2463 20662ea0 2021-04-10 stsp
2464 20662ea0 2021-04-10 stsp if (strcmp(dent->d_name, ".") == 0 ||
2465 20662ea0 2021-04-10 stsp strcmp(dent->d_name, "..") == 0)
2466 20662ea0 2021-04-10 stsp continue;
2467 20662ea0 2021-04-10 stsp
2468 20662ea0 2021-04-10 stsp if (asprintf(&id_str, "%.2x%s", i, dent->d_name) == -1) {
2469 20662ea0 2021-04-10 stsp err = got_error_from_errno("asprintf");
2470 20662ea0 2021-04-10 stsp goto done;
2471 20662ea0 2021-04-10 stsp }
2472 20662ea0 2021-04-10 stsp
2473 f4204d57 2023-03-01 thomas if (!got_parse_object_id(&id, id_str, repo->algo)) {
2474 20662ea0 2021-04-10 stsp free(id_str);
2475 20662ea0 2021-04-10 stsp continue;
2476 20662ea0 2021-04-10 stsp }
2477 20662ea0 2021-04-10 stsp free(id_str);
2478 20662ea0 2021-04-10 stsp
2479 20662ea0 2021-04-10 stsp err = got_object_open_loose_fd(&fd, &id, repo);
2480 20662ea0 2021-04-10 stsp if (err)
2481 20662ea0 2021-04-10 stsp goto done;
2482 20662ea0 2021-04-10 stsp
2483 20662ea0 2021-04-10 stsp if (fstat(fd, &sb) == -1) {
2484 20662ea0 2021-04-10 stsp err = got_error_from_errno("fstat");
2485 20662ea0 2021-04-10 stsp close(fd);
2486 20662ea0 2021-04-10 stsp goto done;
2487 20662ea0 2021-04-10 stsp }
2488 20662ea0 2021-04-10 stsp (*nobjects)++;
2489 20662ea0 2021-04-10 stsp (*ondisk_size) += sb.st_size;
2490 20662ea0 2021-04-10 stsp
2491 20662ea0 2021-04-10 stsp if (close(fd) == -1) {
2492 20662ea0 2021-04-10 stsp err = got_error_from_errno("close");
2493 20662ea0 2021-04-10 stsp goto done;
2494 20662ea0 2021-04-10 stsp }
2495 20662ea0 2021-04-10 stsp }
2496 20662ea0 2021-04-10 stsp
2497 20662ea0 2021-04-10 stsp if (closedir(dir) != 0) {
2498 20662ea0 2021-04-10 stsp err = got_error_from_errno("closedir");
2499 20662ea0 2021-04-10 stsp goto done;
2500 20662ea0 2021-04-10 stsp }
2501 20662ea0 2021-04-10 stsp dir = NULL;
2502 20662ea0 2021-04-10 stsp
2503 20662ea0 2021-04-10 stsp free(path);
2504 20662ea0 2021-04-10 stsp path = NULL;
2505 20662ea0 2021-04-10 stsp }
2506 20662ea0 2021-04-10 stsp done:
2507 20662ea0 2021-04-10 stsp if (dir && closedir(dir) != 0 && err == NULL)
2508 20662ea0 2021-04-10 stsp err = got_error_from_errno("closedir");
2509 20662ea0 2021-04-10 stsp
2510 20662ea0 2021-04-10 stsp if (err) {
2511 20662ea0 2021-04-10 stsp *nobjects = 0;
2512 20662ea0 2021-04-10 stsp *ondisk_size = 0;
2513 20662ea0 2021-04-10 stsp }
2514 20662ea0 2021-04-10 stsp free(path_objects);
2515 20662ea0 2021-04-10 stsp free(path);
2516 3ce1b845 2019-07-15 stsp return err;
2517 3ce1b845 2019-07-15 stsp }
2518 20662ea0 2021-04-10 stsp
2519 20662ea0 2021-04-10 stsp const struct got_error *
2520 20662ea0 2021-04-10 stsp got_repo_get_packfile_info(int *npackfiles, int *nobjects,
2521 20662ea0 2021-04-10 stsp off_t *total_packsize, struct got_repository *repo)
2522 20662ea0 2021-04-10 stsp {
2523 0c9eeee2 2021-06-05 stsp const struct got_error *err = NULL;
2524 20662ea0 2021-04-10 stsp DIR *packdir = NULL;
2525 20662ea0 2021-04-10 stsp struct dirent *dent;
2526 20662ea0 2021-04-10 stsp struct got_packidx *packidx = NULL;
2527 20662ea0 2021-04-10 stsp char *path_packidx;
2528 20662ea0 2021-04-10 stsp char *path_packfile;
2529 20662ea0 2021-04-10 stsp int packdir_fd;
2530 20662ea0 2021-04-10 stsp struct stat sb;
2531 20662ea0 2021-04-10 stsp
2532 20662ea0 2021-04-10 stsp *npackfiles = 0;
2533 20662ea0 2021-04-10 stsp *nobjects = 0;
2534 20662ea0 2021-04-10 stsp *total_packsize = 0;
2535 20662ea0 2021-04-10 stsp
2536 20662ea0 2021-04-10 stsp packdir_fd = openat(got_repo_get_fd(repo),
2537 20662ea0 2021-04-10 stsp GOT_OBJECTS_PACK_DIR, O_DIRECTORY);
2538 20662ea0 2021-04-10 stsp if (packdir_fd == -1) {
2539 20662ea0 2021-04-10 stsp return got_error_from_errno_fmt("openat: %s/%s",
2540 20662ea0 2021-04-10 stsp got_repo_get_path_git_dir(repo),
2541 20662ea0 2021-04-10 stsp GOT_OBJECTS_PACK_DIR);
2542 20662ea0 2021-04-10 stsp }
2543 20662ea0 2021-04-10 stsp
2544 20662ea0 2021-04-10 stsp packdir = fdopendir(packdir_fd);
2545 20662ea0 2021-04-10 stsp if (packdir == NULL) {
2546 20662ea0 2021-04-10 stsp err = got_error_from_errno("fdopendir");
2547 815470d4 2024-01-31 thomas close(packdir_fd);
2548 20662ea0 2021-04-10 stsp goto done;
2549 20662ea0 2021-04-10 stsp }
2550 20662ea0 2021-04-10 stsp
2551 20662ea0 2021-04-10 stsp while ((dent = readdir(packdir)) != NULL) {
2552 dd038bc6 2021-09-21 thomas.ad if (!got_repo_is_packidx_filename(dent->d_name,
2553 dd038bc6 2021-09-21 thomas.ad strlen(dent->d_name)))
2554 20662ea0 2021-04-10 stsp continue;
2555 20662ea0 2021-04-10 stsp
2556 20662ea0 2021-04-10 stsp if (asprintf(&path_packidx, "%s/%s", GOT_OBJECTS_PACK_DIR,
2557 20662ea0 2021-04-10 stsp dent->d_name) == -1) {
2558 20662ea0 2021-04-10 stsp err = got_error_from_errno("asprintf");
2559 20662ea0 2021-04-10 stsp goto done;
2560 20662ea0 2021-04-10 stsp }
2561 20662ea0 2021-04-10 stsp
2562 20662ea0 2021-04-10 stsp err = got_packidx_open(&packidx, got_repo_get_fd(repo),
2563 20662ea0 2021-04-10 stsp path_packidx, 0);
2564 20662ea0 2021-04-10 stsp free(path_packidx);
2565 20662ea0 2021-04-10 stsp if (err)
2566 20662ea0 2021-04-10 stsp goto done;
2567 20662ea0 2021-04-10 stsp
2568 20662ea0 2021-04-10 stsp if (fstat(packidx->fd, &sb) == -1)
2569 20662ea0 2021-04-10 stsp goto done;
2570 20662ea0 2021-04-10 stsp *total_packsize += sb.st_size;
2571 20662ea0 2021-04-10 stsp
2572 aea75d87 2021-07-06 stsp err = got_packidx_get_packfile_path(&path_packfile,
2573 aea75d87 2021-07-06 stsp packidx->path_packidx);
2574 20662ea0 2021-04-10 stsp if (err)
2575 20662ea0 2021-04-10 stsp goto done;
2576 20662ea0 2021-04-10 stsp
2577 20662ea0 2021-04-10 stsp if (fstatat(got_repo_get_fd(repo), path_packfile, &sb,
2578 20662ea0 2021-04-10 stsp 0) == -1) {
2579 20662ea0 2021-04-10 stsp free(path_packfile);
2580 20662ea0 2021-04-10 stsp goto done;
2581 20662ea0 2021-04-10 stsp }
2582 20662ea0 2021-04-10 stsp free(path_packfile);
2583 20662ea0 2021-04-10 stsp *total_packsize += sb.st_size;
2584 20662ea0 2021-04-10 stsp
2585 20662ea0 2021-04-10 stsp *nobjects += be32toh(packidx->hdr.fanout_table[0xff]);
2586 20662ea0 2021-04-10 stsp
2587 20662ea0 2021-04-10 stsp (*npackfiles)++;
2588 20662ea0 2021-04-10 stsp
2589 20662ea0 2021-04-10 stsp got_packidx_close(packidx);
2590 20662ea0 2021-04-10 stsp packidx = NULL;
2591 20662ea0 2021-04-10 stsp }
2592 20662ea0 2021-04-10 stsp done:
2593 20662ea0 2021-04-10 stsp if (packidx)
2594 20662ea0 2021-04-10 stsp got_packidx_close(packidx);
2595 20662ea0 2021-04-10 stsp if (packdir && closedir(packdir) != 0 && err == NULL)
2596 20662ea0 2021-04-10 stsp err = got_error_from_errno("closedir");
2597 20662ea0 2021-04-10 stsp if (err) {
2598 20662ea0 2021-04-10 stsp *npackfiles = 0;
2599 20662ea0 2021-04-10 stsp *nobjects = 0;
2600 20662ea0 2021-04-10 stsp *total_packsize = 0;
2601 20662ea0 2021-04-10 stsp }
2602 20662ea0 2021-04-10 stsp return err;
2603 20662ea0 2021-04-10 stsp }
2604 0be8fa4c 2021-10-15 thomas
2605 0be8fa4c 2021-10-15 thomas RB_GENERATE(got_packidx_bloom_filter_tree, got_packidx_bloom_filter, entry,
2606 0be8fa4c 2021-10-15 thomas got_packidx_bloom_filter_cmp);