Blame


1 d71d75ad 2017-11-05 stsp /*
2 5d56da81 2019-01-13 stsp * Copyright (c) 2018, 2019 Stefan Sperling <stsp@openbsd.org>
3 d71d75ad 2017-11-05 stsp *
4 d71d75ad 2017-11-05 stsp * Permission to use, copy, modify, and distribute this software for any
5 d71d75ad 2017-11-05 stsp * purpose with or without fee is hereby granted, provided that the above
6 d71d75ad 2017-11-05 stsp * copyright notice and this permission notice appear in all copies.
7 d71d75ad 2017-11-05 stsp *
8 d71d75ad 2017-11-05 stsp * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
9 d71d75ad 2017-11-05 stsp * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
10 d71d75ad 2017-11-05 stsp * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
11 d71d75ad 2017-11-05 stsp * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
12 d71d75ad 2017-11-05 stsp * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
13 d71d75ad 2017-11-05 stsp * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
14 d71d75ad 2017-11-05 stsp * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
15 d71d75ad 2017-11-05 stsp */
16 d71d75ad 2017-11-05 stsp
17 2178c42e 2018-04-22 stsp #include <sys/types.h>
18 0ffeb3c2 2017-11-26 stsp #include <sys/stat.h>
19 d1cda826 2017-11-06 stsp #include <sys/queue.h>
20 f8b19efd 2021-10-13 stsp #include <sys/tree.h>
21 2178c42e 2018-04-22 stsp #include <sys/uio.h>
22 2178c42e 2018-04-22 stsp #include <sys/socket.h>
23 2178c42e 2018-04-22 stsp #include <sys/wait.h>
24 b48e2ddb 2019-05-22 stsp #include <sys/resource.h>
25 d1cda826 2017-11-06 stsp
26 a1fd68d8 2018-01-12 stsp #include <errno.h>
27 2178c42e 2018-04-22 stsp #include <fcntl.h>
28 d71d75ad 2017-11-05 stsp #include <stdio.h>
29 ab9a70b2 2017-11-06 stsp #include <stdlib.h>
30 ab9a70b2 2017-11-06 stsp #include <string.h>
31 2178c42e 2018-04-22 stsp #include <stdint.h>
32 d71d75ad 2017-11-05 stsp #include <sha1.h>
33 81a12da5 2020-09-09 naddy #include <unistd.h>
34 ab9a70b2 2017-11-06 stsp #include <zlib.h>
35 ab9a70b2 2017-11-06 stsp #include <ctype.h>
36 e40622f4 2020-07-23 stsp #include <libgen.h>
37 ab9a70b2 2017-11-06 stsp #include <limits.h>
38 2178c42e 2018-04-22 stsp #include <imsg.h>
39 788c352e 2018-06-16 stsp #include <time.h>
40 d71d75ad 2017-11-05 stsp
41 ab9a70b2 2017-11-06 stsp #include "got_error.h"
42 d71d75ad 2017-11-05 stsp #include "got_object.h"
43 ab9a70b2 2017-11-06 stsp #include "got_repository.h"
44 511a516b 2018-05-19 stsp #include "got_opentemp.h"
45 324d37e7 2019-05-11 stsp #include "got_path.h"
46 d71d75ad 2017-11-05 stsp
47 718b3ab0 2018-03-17 stsp #include "got_lib_sha1.h"
48 718b3ab0 2018-03-17 stsp #include "got_lib_delta.h"
49 63581804 2018-07-09 stsp #include "got_lib_inflate.h"
50 718b3ab0 2018-03-17 stsp #include "got_lib_object.h"
51 2178c42e 2018-04-22 stsp #include "got_lib_privsep.h"
52 6bef87be 2018-09-11 stsp #include "got_lib_object_idcache.h"
53 6bef87be 2018-09-11 stsp #include "got_lib_object_cache.h"
54 ad242220 2018-09-08 stsp #include "got_lib_object_parse.h"
55 15a94983 2018-12-23 stsp #include "got_lib_pack.h"
56 7bb0daa1 2018-06-21 stsp #include "got_lib_repository.h"
57 1411938b 2018-02-12 stsp
58 ab9a70b2 2017-11-06 stsp #ifndef MIN
59 ab9a70b2 2017-11-06 stsp #define MIN(_a,_b) ((_a) < (_b) ? (_a) : (_b))
60 ab9a70b2 2017-11-06 stsp #endif
61 3235492e 2018-04-01 stsp
62 3235492e 2018-04-01 stsp struct got_object_id *
63 3235492e 2018-04-01 stsp got_object_get_id(struct got_object *obj)
64 3235492e 2018-04-01 stsp {
65 6402fb3c 2018-09-15 stsp return &obj->id;
66 bacc9935 2018-05-20 stsp }
67 bacc9935 2018-05-20 stsp
68 bacc9935 2018-05-20 stsp const struct got_error *
69 bacc9935 2018-05-20 stsp got_object_get_id_str(char **outbuf, struct got_object *obj)
70 bacc9935 2018-05-20 stsp {
71 bacc9935 2018-05-20 stsp return got_object_id_str(outbuf, &obj->id);
72 a1fd68d8 2018-01-12 stsp }
73 d71d75ad 2017-11-05 stsp
74 15a94983 2018-12-23 stsp const struct got_error *
75 15a94983 2018-12-23 stsp got_object_get_type(int *type, struct got_repository *repo,
76 15a94983 2018-12-23 stsp struct got_object_id *id)
77 a1fd68d8 2018-01-12 stsp {
78 15a94983 2018-12-23 stsp const struct got_error *err = NULL;
79 15a94983 2018-12-23 stsp struct got_object *obj;
80 15a94983 2018-12-23 stsp
81 15a94983 2018-12-23 stsp err = got_object_open(&obj, repo, id);
82 15a94983 2018-12-23 stsp if (err)
83 15a94983 2018-12-23 stsp return err;
84 15a94983 2018-12-23 stsp
85 b107e67f 2018-01-19 stsp switch (obj->type) {
86 a1fd68d8 2018-01-12 stsp case GOT_OBJ_TYPE_COMMIT:
87 a1fd68d8 2018-01-12 stsp case GOT_OBJ_TYPE_TREE:
88 a1fd68d8 2018-01-12 stsp case GOT_OBJ_TYPE_BLOB:
89 b107e67f 2018-01-19 stsp case GOT_OBJ_TYPE_TAG:
90 15a94983 2018-12-23 stsp *type = obj->type;
91 15a94983 2018-12-23 stsp break;
92 96f5e8b3 2018-01-23 stsp default:
93 15a94983 2018-12-23 stsp err = got_error(GOT_ERR_OBJ_TYPE);
94 96f5e8b3 2018-01-23 stsp break;
95 d71d75ad 2017-11-05 stsp }
96 d71d75ad 2017-11-05 stsp
97 15a94983 2018-12-23 stsp got_object_close(obj);
98 15a94983 2018-12-23 stsp return err;
99 d71d75ad 2017-11-05 stsp }
100 ab9a70b2 2017-11-06 stsp
101 90bdb554 2019-04-11 stsp const struct got_error *
102 90bdb554 2019-04-11 stsp got_object_get_path(char **path, struct got_object_id *id,
103 90bdb554 2019-04-11 stsp struct got_repository *repo)
104 ab9a70b2 2017-11-06 stsp {
105 ab9a70b2 2017-11-06 stsp const struct got_error *err = NULL;
106 7a132809 2018-07-23 stsp char *hex = NULL;
107 41d2888b 2019-08-11 stsp char *path_objects;
108 e6b1056e 2018-04-22 stsp
109 e6b1056e 2018-04-22 stsp *path = NULL;
110 ab9a70b2 2017-11-06 stsp
111 41d2888b 2019-08-11 stsp path_objects = got_repo_get_path_objects(repo);
112 ab9a70b2 2017-11-06 stsp if (path_objects == NULL)
113 638f9024 2019-05-13 stsp return got_error_from_errno("got_repo_get_path_objects");
114 ab9a70b2 2017-11-06 stsp
115 ef0981d5 2018-02-12 stsp err = got_object_id_str(&hex, id);
116 ef0981d5 2018-02-12 stsp if (err)
117 7a132809 2018-07-23 stsp goto done;
118 ab9a70b2 2017-11-06 stsp
119 d1cda826 2017-11-06 stsp if (asprintf(path, "%s/%.2x/%s", path_objects,
120 d1cda826 2017-11-06 stsp id->sha1[0], hex + 2) == -1)
121 638f9024 2019-05-13 stsp err = got_error_from_errno("asprintf");
122 ab9a70b2 2017-11-06 stsp
123 7a132809 2018-07-23 stsp done:
124 ef0981d5 2018-02-12 stsp free(hex);
125 d1cda826 2017-11-06 stsp free(path_objects);
126 d1cda826 2017-11-06 stsp return err;
127 d1cda826 2017-11-06 stsp }
128 d1cda826 2017-11-06 stsp
129 762d73f4 2021-04-10 stsp const struct got_error *
130 762d73f4 2021-04-10 stsp got_object_open_loose_fd(int *fd, struct got_object_id *id,
131 4796fb13 2018-12-23 stsp struct got_repository *repo)
132 d1cda826 2017-11-06 stsp {
133 d1cda826 2017-11-06 stsp const struct got_error *err = NULL;
134 a1fd68d8 2018-01-12 stsp char *path;
135 6c00b545 2018-01-17 stsp
136 90bdb554 2019-04-11 stsp err = got_object_get_path(&path, id, repo);
137 d1cda826 2017-11-06 stsp if (err)
138 d1cda826 2017-11-06 stsp return err;
139 a5b57ccf 2019-04-11 stsp *fd = open(path, O_RDONLY | O_NOFOLLOW);
140 d5003b79 2018-04-22 stsp if (*fd == -1) {
141 e82b1d81 2019-07-27 stsp err = got_error_from_errno2("open", path);
142 6c00b545 2018-01-17 stsp goto done;
143 a1fd68d8 2018-01-12 stsp }
144 4558fcd4 2018-01-14 stsp done:
145 4558fcd4 2018-01-14 stsp free(path);
146 2090a03d 2018-09-09 stsp return err;
147 2090a03d 2018-09-09 stsp }
148 2090a03d 2018-09-09 stsp
149 2090a03d 2018-09-09 stsp static const struct got_error *
150 a158c901 2018-12-23 stsp request_packed_object(struct got_object **obj, struct got_pack *pack, int idx,
151 a158c901 2018-12-23 stsp struct got_object_id *id)
152 a158c901 2018-12-23 stsp {
153 a158c901 2018-12-23 stsp const struct got_error *err = NULL;
154 a158c901 2018-12-23 stsp struct imsgbuf *ibuf = pack->privsep_child->ibuf;
155 a158c901 2018-12-23 stsp
156 a158c901 2018-12-23 stsp err = got_privsep_send_packed_obj_req(ibuf, idx, id);
157 a158c901 2018-12-23 stsp if (err)
158 a158c901 2018-12-23 stsp return err;
159 a158c901 2018-12-23 stsp
160 a158c901 2018-12-23 stsp err = got_privsep_recv_obj(obj, ibuf);
161 a158c901 2018-12-23 stsp if (err)
162 a158c901 2018-12-23 stsp return err;
163 a158c901 2018-12-23 stsp
164 a158c901 2018-12-23 stsp memcpy(&(*obj)->id, id, sizeof((*obj)->id));
165 a158c901 2018-12-23 stsp
166 a158c901 2018-12-23 stsp return NULL;
167 b48e2ddb 2019-05-22 stsp }
168 b48e2ddb 2019-05-22 stsp
169 59d1e4a0 2021-03-10 stsp static const struct got_error *
170 59d1e4a0 2021-03-10 stsp request_packed_object_raw(uint8_t **outbuf, off_t *size, size_t *hdrlen,
171 59d1e4a0 2021-03-10 stsp int outfd, struct got_pack *pack, int idx, struct got_object_id *id)
172 59d1e4a0 2021-03-10 stsp {
173 59d1e4a0 2021-03-10 stsp const struct got_error *err = NULL;
174 59d1e4a0 2021-03-10 stsp struct imsgbuf *ibuf = pack->privsep_child->ibuf;
175 59d1e4a0 2021-03-10 stsp int outfd_child;
176 59d1e4a0 2021-03-10 stsp int basefd, accumfd; /* temporary files for delta application */
177 59d1e4a0 2021-03-10 stsp
178 59d1e4a0 2021-03-10 stsp basefd = got_opentempfd();
179 59d1e4a0 2021-03-10 stsp if (basefd == -1)
180 59d1e4a0 2021-03-10 stsp return got_error_from_errno("got_opentempfd");
181 59d1e4a0 2021-03-10 stsp
182 59d1e4a0 2021-03-10 stsp accumfd = got_opentempfd();
183 59d1e4a0 2021-03-10 stsp if (accumfd == -1) {
184 59d1e4a0 2021-03-10 stsp close(basefd);
185 59d1e4a0 2021-03-10 stsp return got_error_from_errno("got_opentempfd");
186 59d1e4a0 2021-03-10 stsp }
187 59d1e4a0 2021-03-10 stsp
188 59d1e4a0 2021-03-10 stsp outfd_child = dup(outfd);
189 59d1e4a0 2021-03-10 stsp if (outfd_child == -1) {
190 59d1e4a0 2021-03-10 stsp err = got_error_from_errno("dup");
191 59d1e4a0 2021-03-10 stsp close(basefd);
192 59d1e4a0 2021-03-10 stsp close(accumfd);
193 59d1e4a0 2021-03-10 stsp return err;
194 59d1e4a0 2021-03-10 stsp }
195 59d1e4a0 2021-03-10 stsp
196 59d1e4a0 2021-03-10 stsp err = got_privsep_send_packed_raw_obj_req(ibuf, idx, id);
197 59d1e4a0 2021-03-10 stsp if (err) {
198 59d1e4a0 2021-03-10 stsp close(basefd);
199 59d1e4a0 2021-03-10 stsp close(accumfd);
200 59d1e4a0 2021-03-10 stsp close(outfd_child);
201 59d1e4a0 2021-03-10 stsp return err;
202 59d1e4a0 2021-03-10 stsp }
203 59d1e4a0 2021-03-10 stsp
204 59d1e4a0 2021-03-10 stsp err = got_privsep_send_raw_obj_outfd(ibuf, outfd_child);
205 59d1e4a0 2021-03-10 stsp if (err) {
206 59d1e4a0 2021-03-10 stsp close(basefd);
207 59d1e4a0 2021-03-10 stsp close(accumfd);
208 59d1e4a0 2021-03-10 stsp return err;
209 59d1e4a0 2021-03-10 stsp }
210 59d1e4a0 2021-03-10 stsp
211 59d1e4a0 2021-03-10 stsp
212 59d1e4a0 2021-03-10 stsp err = got_privsep_send_tmpfd(pack->privsep_child->ibuf,
213 59d1e4a0 2021-03-10 stsp basefd);
214 59d1e4a0 2021-03-10 stsp if (err) {
215 59d1e4a0 2021-03-10 stsp close(accumfd);
216 59d1e4a0 2021-03-10 stsp return err;
217 59d1e4a0 2021-03-10 stsp }
218 59d1e4a0 2021-03-10 stsp
219 59d1e4a0 2021-03-10 stsp err = got_privsep_send_tmpfd(pack->privsep_child->ibuf,
220 59d1e4a0 2021-03-10 stsp accumfd);
221 59d1e4a0 2021-03-10 stsp if (err)
222 59d1e4a0 2021-03-10 stsp return err;
223 59d1e4a0 2021-03-10 stsp
224 59d1e4a0 2021-03-10 stsp err = got_privsep_recv_raw_obj(outbuf, size, hdrlen, ibuf);
225 59d1e4a0 2021-03-10 stsp if (err)
226 59d1e4a0 2021-03-10 stsp return err;
227 59d1e4a0 2021-03-10 stsp
228 59d1e4a0 2021-03-10 stsp return NULL;
229 59d1e4a0 2021-03-10 stsp }
230 59d1e4a0 2021-03-10 stsp
231 da506691 2019-05-22 stsp static void
232 b48e2ddb 2019-05-22 stsp set_max_datasize(void)
233 b48e2ddb 2019-05-22 stsp {
234 b48e2ddb 2019-05-22 stsp struct rlimit rl;
235 b48e2ddb 2019-05-22 stsp
236 b48e2ddb 2019-05-22 stsp if (getrlimit(RLIMIT_DATA, &rl) != 0)
237 b48e2ddb 2019-05-22 stsp return;
238 b48e2ddb 2019-05-22 stsp
239 b48e2ddb 2019-05-22 stsp rl.rlim_cur = rl.rlim_max;
240 b48e2ddb 2019-05-22 stsp setrlimit(RLIMIT_DATA, &rl);
241 a158c901 2018-12-23 stsp }
242 a158c901 2018-12-23 stsp
243 a158c901 2018-12-23 stsp static const struct got_error *
244 711fb6e8 2018-12-23 stsp start_pack_privsep_child(struct got_pack *pack, struct got_packidx *packidx)
245 a158c901 2018-12-23 stsp {
246 a158c901 2018-12-23 stsp const struct got_error *err = NULL;
247 a158c901 2018-12-23 stsp int imsg_fds[2];
248 a158c901 2018-12-23 stsp pid_t pid;
249 a158c901 2018-12-23 stsp struct imsgbuf *ibuf;
250 a158c901 2018-12-23 stsp
251 a158c901 2018-12-23 stsp ibuf = calloc(1, sizeof(*ibuf));
252 a158c901 2018-12-23 stsp if (ibuf == NULL)
253 638f9024 2019-05-13 stsp return got_error_from_errno("calloc");
254 a158c901 2018-12-23 stsp
255 a158c901 2018-12-23 stsp pack->privsep_child = calloc(1, sizeof(*pack->privsep_child));
256 a158c901 2018-12-23 stsp if (pack->privsep_child == NULL) {
257 638f9024 2019-05-13 stsp err = got_error_from_errno("calloc");
258 a158c901 2018-12-23 stsp free(ibuf);
259 a158c901 2018-12-23 stsp return err;
260 a158c901 2018-12-23 stsp }
261 a158c901 2018-12-23 stsp
262 a158c901 2018-12-23 stsp if (socketpair(AF_UNIX, SOCK_STREAM, PF_UNSPEC, imsg_fds) == -1) {
263 638f9024 2019-05-13 stsp err = got_error_from_errno("socketpair");
264 a158c901 2018-12-23 stsp goto done;
265 a158c901 2018-12-23 stsp }
266 a158c901 2018-12-23 stsp
267 a158c901 2018-12-23 stsp pid = fork();
268 a158c901 2018-12-23 stsp if (pid == -1) {
269 638f9024 2019-05-13 stsp err = got_error_from_errno("fork");
270 a158c901 2018-12-23 stsp goto done;
271 a158c901 2018-12-23 stsp } else if (pid == 0) {
272 b48e2ddb 2019-05-22 stsp set_max_datasize();
273 aba9c984 2019-09-08 stsp got_privsep_exec_child(imsg_fds, GOT_PATH_PROG_READ_PACK,
274 a158c901 2018-12-23 stsp pack->path_packfile);
275 a158c901 2018-12-23 stsp /* not reached */
276 a158c901 2018-12-23 stsp }
277 a158c901 2018-12-23 stsp
278 08578a35 2021-01-22 stsp if (close(imsg_fds[1]) == -1)
279 638f9024 2019-05-13 stsp return got_error_from_errno("close");
280 a158c901 2018-12-23 stsp pack->privsep_child->imsg_fd = imsg_fds[0];
281 a158c901 2018-12-23 stsp pack->privsep_child->pid = pid;
282 a158c901 2018-12-23 stsp imsg_init(ibuf, imsg_fds[0]);
283 a158c901 2018-12-23 stsp pack->privsep_child->ibuf = ibuf;
284 a158c901 2018-12-23 stsp
285 a158c901 2018-12-23 stsp err = got_privsep_init_pack_child(ibuf, pack, packidx);
286 a158c901 2018-12-23 stsp if (err) {
287 a158c901 2018-12-23 stsp const struct got_error *child_err;
288 a158c901 2018-12-23 stsp err = got_privsep_send_stop(pack->privsep_child->imsg_fd);
289 a158c901 2018-12-23 stsp child_err = got_privsep_wait_for_child(
290 a158c901 2018-12-23 stsp pack->privsep_child->pid);
291 a158c901 2018-12-23 stsp if (child_err && err == NULL)
292 a158c901 2018-12-23 stsp err = child_err;
293 a158c901 2018-12-23 stsp }
294 a158c901 2018-12-23 stsp done:
295 a158c901 2018-12-23 stsp if (err) {
296 a158c901 2018-12-23 stsp free(ibuf);
297 a158c901 2018-12-23 stsp free(pack->privsep_child);
298 a158c901 2018-12-23 stsp pack->privsep_child = NULL;
299 711fb6e8 2018-12-23 stsp }
300 a158c901 2018-12-23 stsp return err;
301 a158c901 2018-12-23 stsp }
302 a158c901 2018-12-23 stsp
303 711fb6e8 2018-12-23 stsp static const struct got_error *
304 711fb6e8 2018-12-23 stsp read_packed_object_privsep(struct got_object **obj,
305 711fb6e8 2018-12-23 stsp struct got_repository *repo, struct got_pack *pack,
306 711fb6e8 2018-12-23 stsp struct got_packidx *packidx, int idx, struct got_object_id *id)
307 711fb6e8 2018-12-23 stsp {
308 711fb6e8 2018-12-23 stsp const struct got_error *err = NULL;
309 a158c901 2018-12-23 stsp
310 59d1e4a0 2021-03-10 stsp if (pack->privsep_child == NULL) {
311 59d1e4a0 2021-03-10 stsp err = start_pack_privsep_child(pack, packidx);
312 59d1e4a0 2021-03-10 stsp if (err)
313 59d1e4a0 2021-03-10 stsp return err;
314 59d1e4a0 2021-03-10 stsp }
315 711fb6e8 2018-12-23 stsp
316 711fb6e8 2018-12-23 stsp return request_packed_object(obj, pack, idx, id);
317 711fb6e8 2018-12-23 stsp }
318 711fb6e8 2018-12-23 stsp
319 59d1e4a0 2021-03-10 stsp static const struct got_error *
320 59d1e4a0 2021-03-10 stsp read_packed_object_raw_privsep(uint8_t **outbuf, off_t *size, size_t *hdrlen,
321 59d1e4a0 2021-03-10 stsp int outfd, struct got_pack *pack, struct got_packidx *packidx, int idx,
322 59d1e4a0 2021-03-10 stsp struct got_object_id *id)
323 59d1e4a0 2021-03-10 stsp {
324 59d1e4a0 2021-03-10 stsp const struct got_error *err = NULL;
325 711fb6e8 2018-12-23 stsp
326 59d1e4a0 2021-03-10 stsp if (pack->privsep_child == NULL) {
327 59d1e4a0 2021-03-10 stsp err = start_pack_privsep_child(pack, packidx);
328 59d1e4a0 2021-03-10 stsp if (err)
329 59d1e4a0 2021-03-10 stsp return err;
330 59d1e4a0 2021-03-10 stsp }
331 59d1e4a0 2021-03-10 stsp
332 59d1e4a0 2021-03-10 stsp return request_packed_object_raw(outbuf, size, hdrlen, outfd, pack,
333 59d1e4a0 2021-03-10 stsp idx, id);
334 59d1e4a0 2021-03-10 stsp }
335 59d1e4a0 2021-03-10 stsp
336 b3d68e7f 2021-07-03 stsp const struct got_error *
337 b3d68e7f 2021-07-03 stsp got_object_open_packed(struct got_object **obj, struct got_object_id *id,
338 2090a03d 2018-09-09 stsp struct got_repository *repo)
339 2090a03d 2018-09-09 stsp {
340 2090a03d 2018-09-09 stsp const struct got_error *err = NULL;
341 2090a03d 2018-09-09 stsp struct got_pack *pack = NULL;
342 2090a03d 2018-09-09 stsp struct got_packidx *packidx = NULL;
343 2090a03d 2018-09-09 stsp int idx;
344 2090a03d 2018-09-09 stsp char *path_packfile;
345 2090a03d 2018-09-09 stsp
346 2090a03d 2018-09-09 stsp err = got_repo_search_packidx(&packidx, &idx, repo, id);
347 2090a03d 2018-09-09 stsp if (err)
348 2090a03d 2018-09-09 stsp return err;
349 2090a03d 2018-09-09 stsp
350 aea75d87 2021-07-06 stsp err = got_packidx_get_packfile_path(&path_packfile,
351 aea75d87 2021-07-06 stsp packidx->path_packidx);
352 2090a03d 2018-09-09 stsp if (err)
353 2090a03d 2018-09-09 stsp return err;
354 2090a03d 2018-09-09 stsp
355 2090a03d 2018-09-09 stsp pack = got_repo_get_cached_pack(repo, path_packfile);
356 2090a03d 2018-09-09 stsp if (pack == NULL) {
357 2090a03d 2018-09-09 stsp err = got_repo_cache_pack(&pack, repo, path_packfile, packidx);
358 2090a03d 2018-09-09 stsp if (err)
359 2090a03d 2018-09-09 stsp goto done;
360 2090a03d 2018-09-09 stsp }
361 2090a03d 2018-09-09 stsp
362 a158c901 2018-12-23 stsp err = read_packed_object_privsep(obj, repo, pack, packidx, idx, id);
363 2090a03d 2018-09-09 stsp if (err)
364 2090a03d 2018-09-09 stsp goto done;
365 2090a03d 2018-09-09 stsp done:
366 2090a03d 2018-09-09 stsp free(path_packfile);
367 4558fcd4 2018-01-14 stsp return err;
368 9f2369b0 2018-12-24 stsp }
369 9f2369b0 2018-12-24 stsp
370 9f2369b0 2018-12-24 stsp static const struct got_error *
371 d5c81d44 2021-07-08 stsp request_object(struct got_object **obj, struct got_object_id *id,
372 d5c81d44 2021-07-08 stsp struct got_repository *repo, int fd)
373 9f2369b0 2018-12-24 stsp {
374 9f2369b0 2018-12-24 stsp const struct got_error *err = NULL;
375 9f2369b0 2018-12-24 stsp struct imsgbuf *ibuf;
376 9f2369b0 2018-12-24 stsp
377 9f2369b0 2018-12-24 stsp ibuf = repo->privsep_children[GOT_REPO_PRIVSEP_CHILD_OBJECT].ibuf;
378 9f2369b0 2018-12-24 stsp
379 d5c81d44 2021-07-08 stsp err = got_privsep_send_obj_req(ibuf, fd, id);
380 9f2369b0 2018-12-24 stsp if (err)
381 9f2369b0 2018-12-24 stsp return err;
382 9f2369b0 2018-12-24 stsp
383 9f2369b0 2018-12-24 stsp return got_privsep_recv_obj(obj, ibuf);
384 9f2369b0 2018-12-24 stsp }
385 9f2369b0 2018-12-24 stsp
386 9f2369b0 2018-12-24 stsp static const struct got_error *
387 59d1e4a0 2021-03-10 stsp request_raw_object(uint8_t **outbuf, off_t *size, size_t *hdrlen, int outfd,
388 d5c81d44 2021-07-08 stsp struct got_object_id *id, struct got_repository *repo, int infd)
389 9f2369b0 2018-12-24 stsp {
390 59d1e4a0 2021-03-10 stsp const struct got_error *err = NULL;
391 59d1e4a0 2021-03-10 stsp struct imsgbuf *ibuf;
392 59d1e4a0 2021-03-10 stsp int outfd_child;
393 59d1e4a0 2021-03-10 stsp
394 59d1e4a0 2021-03-10 stsp ibuf = repo->privsep_children[GOT_REPO_PRIVSEP_CHILD_OBJECT].ibuf;
395 59d1e4a0 2021-03-10 stsp
396 59d1e4a0 2021-03-10 stsp outfd_child = dup(outfd);
397 59d1e4a0 2021-03-10 stsp if (outfd_child == -1)
398 59d1e4a0 2021-03-10 stsp return got_error_from_errno("dup");
399 59d1e4a0 2021-03-10 stsp
400 d5c81d44 2021-07-08 stsp err = got_privsep_send_raw_obj_req(ibuf, infd, id);
401 59d1e4a0 2021-03-10 stsp if (err)
402 59d1e4a0 2021-03-10 stsp return err;
403 59d1e4a0 2021-03-10 stsp
404 59d1e4a0 2021-03-10 stsp err = got_privsep_send_raw_obj_outfd(ibuf, outfd_child);
405 59d1e4a0 2021-03-10 stsp if (err)
406 59d1e4a0 2021-03-10 stsp return err;
407 59d1e4a0 2021-03-10 stsp
408 59d1e4a0 2021-03-10 stsp return got_privsep_recv_raw_obj(outbuf, size, hdrlen, ibuf);
409 59d1e4a0 2021-03-10 stsp }
410 59d1e4a0 2021-03-10 stsp
411 59d1e4a0 2021-03-10 stsp static const struct got_error *
412 59d1e4a0 2021-03-10 stsp start_read_object_child(struct got_repository *repo)
413 59d1e4a0 2021-03-10 stsp {
414 59d1e4a0 2021-03-10 stsp const struct got_error *err = NULL;
415 9f2369b0 2018-12-24 stsp int imsg_fds[2];
416 9f2369b0 2018-12-24 stsp pid_t pid;
417 9f2369b0 2018-12-24 stsp struct imsgbuf *ibuf;
418 9f2369b0 2018-12-24 stsp
419 9f2369b0 2018-12-24 stsp ibuf = calloc(1, sizeof(*ibuf));
420 9f2369b0 2018-12-24 stsp if (ibuf == NULL)
421 638f9024 2019-05-13 stsp return got_error_from_errno("calloc");
422 9f2369b0 2018-12-24 stsp
423 ddc7b220 2019-09-08 stsp if (socketpair(AF_UNIX, SOCK_STREAM, PF_UNSPEC, imsg_fds) == -1) {
424 ddc7b220 2019-09-08 stsp err = got_error_from_errno("socketpair");
425 ddc7b220 2019-09-08 stsp free(ibuf);
426 ddc7b220 2019-09-08 stsp return err;
427 ddc7b220 2019-09-08 stsp }
428 9f2369b0 2018-12-24 stsp
429 9f2369b0 2018-12-24 stsp pid = fork();
430 ddc7b220 2019-09-08 stsp if (pid == -1) {
431 ddc7b220 2019-09-08 stsp err = got_error_from_errno("fork");
432 ddc7b220 2019-09-08 stsp free(ibuf);
433 ddc7b220 2019-09-08 stsp return err;
434 ddc7b220 2019-09-08 stsp }
435 9f2369b0 2018-12-24 stsp else if (pid == 0) {
436 aba9c984 2019-09-08 stsp got_privsep_exec_child(imsg_fds, GOT_PATH_PROG_READ_OBJECT,
437 9f2369b0 2018-12-24 stsp repo->path);
438 9f2369b0 2018-12-24 stsp /* not reached */
439 9f2369b0 2018-12-24 stsp }
440 9f2369b0 2018-12-24 stsp
441 08578a35 2021-01-22 stsp if (close(imsg_fds[1]) == -1) {
442 ddc7b220 2019-09-08 stsp err = got_error_from_errno("close");
443 ddc7b220 2019-09-08 stsp free(ibuf);
444 ddc7b220 2019-09-08 stsp return err;
445 ddc7b220 2019-09-08 stsp }
446 59d1e4a0 2021-03-10 stsp
447 9f2369b0 2018-12-24 stsp repo->privsep_children[GOT_REPO_PRIVSEP_CHILD_OBJECT].imsg_fd =
448 9f2369b0 2018-12-24 stsp imsg_fds[0];
449 9f2369b0 2018-12-24 stsp repo->privsep_children[GOT_REPO_PRIVSEP_CHILD_OBJECT].pid = pid;
450 9f2369b0 2018-12-24 stsp imsg_init(ibuf, imsg_fds[0]);
451 9f2369b0 2018-12-24 stsp repo->privsep_children[GOT_REPO_PRIVSEP_CHILD_OBJECT].ibuf = ibuf;
452 9f2369b0 2018-12-24 stsp
453 59d1e4a0 2021-03-10 stsp return NULL;
454 59d1e4a0 2021-03-10 stsp }
455 59d1e4a0 2021-03-10 stsp
456 b3d68e7f 2021-07-03 stsp const struct got_error *
457 b3d68e7f 2021-07-03 stsp got_object_read_header_privsep(struct got_object **obj,
458 d5c81d44 2021-07-08 stsp struct got_object_id *id, struct got_repository *repo, int obj_fd)
459 59d1e4a0 2021-03-10 stsp {
460 59d1e4a0 2021-03-10 stsp const struct got_error *err;
461 59d1e4a0 2021-03-10 stsp
462 59d1e4a0 2021-03-10 stsp if (repo->privsep_children[GOT_REPO_PRIVSEP_CHILD_OBJECT].imsg_fd != -1)
463 d5c81d44 2021-07-08 stsp return request_object(obj, id, repo, obj_fd);
464 59d1e4a0 2021-03-10 stsp
465 59d1e4a0 2021-03-10 stsp err = start_read_object_child(repo);
466 7495ec13 2021-04-04 stsp if (err) {
467 7495ec13 2021-04-04 stsp close(obj_fd);
468 59d1e4a0 2021-03-10 stsp return err;
469 7495ec13 2021-04-04 stsp }
470 59d1e4a0 2021-03-10 stsp
471 d5c81d44 2021-07-08 stsp return request_object(obj, id, repo, obj_fd);
472 4558fcd4 2018-01-14 stsp }
473 a1fd68d8 2018-01-12 stsp
474 59d1e4a0 2021-03-10 stsp static const struct got_error *
475 59d1e4a0 2021-03-10 stsp read_object_raw_privsep(uint8_t **outbuf, off_t *size, size_t *hdrlen,
476 d5c81d44 2021-07-08 stsp int outfd, struct got_object_id *id, struct got_repository *repo,
477 d5c81d44 2021-07-08 stsp int obj_fd)
478 59d1e4a0 2021-03-10 stsp {
479 59d1e4a0 2021-03-10 stsp const struct got_error *err;
480 59d1e4a0 2021-03-10 stsp
481 59d1e4a0 2021-03-10 stsp if (repo->privsep_children[GOT_REPO_PRIVSEP_CHILD_OBJECT].imsg_fd != -1)
482 d5c81d44 2021-07-08 stsp return request_raw_object(outbuf, size, hdrlen, outfd, id,
483 d5c81d44 2021-07-08 stsp repo, obj_fd);
484 59d1e4a0 2021-03-10 stsp
485 59d1e4a0 2021-03-10 stsp err = start_read_object_child(repo);
486 59d1e4a0 2021-03-10 stsp if (err)
487 59d1e4a0 2021-03-10 stsp return err;
488 59d1e4a0 2021-03-10 stsp
489 d5c81d44 2021-07-08 stsp return request_raw_object(outbuf, size, hdrlen, outfd, id, repo,
490 d5c81d44 2021-07-08 stsp obj_fd);
491 59d1e4a0 2021-03-10 stsp }
492 9f2369b0 2018-12-24 stsp
493 4558fcd4 2018-01-14 stsp const struct got_error *
494 4558fcd4 2018-01-14 stsp got_object_open(struct got_object **obj, struct got_repository *repo,
495 4558fcd4 2018-01-14 stsp struct got_object_id *id)
496 4558fcd4 2018-01-14 stsp {
497 6c00b545 2018-01-17 stsp const struct got_error *err = NULL;
498 2178c42e 2018-04-22 stsp int fd;
499 7bb0daa1 2018-06-21 stsp
500 7bb0daa1 2018-06-21 stsp *obj = got_repo_get_cached_object(repo, id);
501 7bb0daa1 2018-06-21 stsp if (*obj != NULL) {
502 7bb0daa1 2018-06-21 stsp (*obj)->refcnt++;
503 7bb0daa1 2018-06-21 stsp return NULL;
504 7bb0daa1 2018-06-21 stsp }
505 4558fcd4 2018-01-14 stsp
506 b3d68e7f 2021-07-03 stsp err = got_object_open_packed(obj, id, repo);
507 e82b1d81 2019-07-27 stsp if (err && err->code != GOT_ERR_NO_OBJ)
508 e82b1d81 2019-07-27 stsp return err;
509 e82b1d81 2019-07-27 stsp if (*obj) {
510 e82b1d81 2019-07-27 stsp (*obj)->refcnt++;
511 e82b1d81 2019-07-27 stsp return got_repo_cache_object(repo, id, *obj);
512 e82b1d81 2019-07-27 stsp }
513 e82b1d81 2019-07-27 stsp
514 762d73f4 2021-04-10 stsp err = got_object_open_loose_fd(&fd, id, repo);
515 762d73f4 2021-04-10 stsp if (err) {
516 762d73f4 2021-04-10 stsp if (err->code == GOT_ERR_ERRNO && errno == ENOENT)
517 762d73f4 2021-04-10 stsp err = got_error_no_obj(id);
518 762d73f4 2021-04-10 stsp return err;
519 762d73f4 2021-04-10 stsp }
520 762d73f4 2021-04-10 stsp
521 d5c81d44 2021-07-08 stsp err = got_object_read_header_privsep(obj, id, repo, fd);
522 4558fcd4 2018-01-14 stsp if (err)
523 4558fcd4 2018-01-14 stsp return err;
524 4558fcd4 2018-01-14 stsp
525 762d73f4 2021-04-10 stsp memcpy((*obj)->id.sha1, id->sha1, SHA1_DIGEST_LENGTH);
526 7bb0daa1 2018-06-21 stsp
527 59790a32 2018-09-15 stsp (*obj)->refcnt++;
528 762d73f4 2021-04-10 stsp return got_repo_cache_object(repo, id, *obj);
529 59d1e4a0 2021-03-10 stsp }
530 6c00b545 2018-01-17 stsp
531 d3c116bf 2021-10-15 stsp /* *outfd must be initialized to -1 by caller */
532 59d1e4a0 2021-03-10 stsp const struct got_error *
533 d3c116bf 2021-10-15 stsp got_object_raw_open(struct got_raw_object **obj, int *outfd,
534 94dac27c 2021-10-15 stsp struct got_repository *repo, struct got_object_id *id)
535 59d1e4a0 2021-03-10 stsp {
536 59d1e4a0 2021-03-10 stsp const struct got_error *err = NULL;
537 59d1e4a0 2021-03-10 stsp struct got_packidx *packidx = NULL;
538 59d1e4a0 2021-03-10 stsp int idx;
539 59d1e4a0 2021-03-10 stsp uint8_t *outbuf = NULL;
540 59d1e4a0 2021-03-10 stsp off_t size = 0;
541 59d1e4a0 2021-03-10 stsp size_t hdrlen = 0;
542 59d1e4a0 2021-03-10 stsp char *path_packfile = NULL;
543 59d1e4a0 2021-03-10 stsp
544 d3c116bf 2021-10-15 stsp *obj = got_repo_get_cached_raw_object(repo, id);
545 d3c116bf 2021-10-15 stsp if (*obj != NULL) {
546 d3c116bf 2021-10-15 stsp (*obj)->refcnt++;
547 d3c116bf 2021-10-15 stsp return NULL;
548 d3c116bf 2021-10-15 stsp }
549 59d1e4a0 2021-03-10 stsp
550 d3c116bf 2021-10-15 stsp if (*outfd == -1) {
551 d3c116bf 2021-10-15 stsp *outfd = got_opentempfd();
552 d3c116bf 2021-10-15 stsp if (*outfd == -1)
553 d3c116bf 2021-10-15 stsp return got_error_from_errno("got_opentempfd");
554 d3c116bf 2021-10-15 stsp }
555 d3c116bf 2021-10-15 stsp
556 59d1e4a0 2021-03-10 stsp err = got_repo_search_packidx(&packidx, &idx, repo, id);
557 59d1e4a0 2021-03-10 stsp if (err == NULL) {
558 59d1e4a0 2021-03-10 stsp struct got_pack *pack = NULL;
559 59d1e4a0 2021-03-10 stsp
560 aea75d87 2021-07-06 stsp err = got_packidx_get_packfile_path(&path_packfile,
561 aea75d87 2021-07-06 stsp packidx->path_packidx);
562 59d1e4a0 2021-03-10 stsp if (err)
563 59d1e4a0 2021-03-10 stsp goto done;
564 59d1e4a0 2021-03-10 stsp
565 59d1e4a0 2021-03-10 stsp pack = got_repo_get_cached_pack(repo, path_packfile);
566 59d1e4a0 2021-03-10 stsp if (pack == NULL) {
567 59d1e4a0 2021-03-10 stsp err = got_repo_cache_pack(&pack, repo, path_packfile,
568 59d1e4a0 2021-03-10 stsp packidx);
569 59d1e4a0 2021-03-10 stsp if (err)
570 59d1e4a0 2021-03-10 stsp goto done;
571 59d1e4a0 2021-03-10 stsp }
572 59d1e4a0 2021-03-10 stsp err = read_packed_object_raw_privsep(&outbuf, &size, &hdrlen,
573 d3c116bf 2021-10-15 stsp *outfd, pack, packidx, idx, id);
574 e65c7410 2021-10-14 stsp if (err)
575 e65c7410 2021-10-14 stsp goto done;
576 59d1e4a0 2021-03-10 stsp } else if (err->code == GOT_ERR_NO_OBJ) {
577 59d1e4a0 2021-03-10 stsp int fd;
578 59d1e4a0 2021-03-10 stsp
579 762d73f4 2021-04-10 stsp err = got_object_open_loose_fd(&fd, id, repo);
580 59d1e4a0 2021-03-10 stsp if (err)
581 59d1e4a0 2021-03-10 stsp goto done;
582 d3c116bf 2021-10-15 stsp err = read_object_raw_privsep(&outbuf, &size, &hdrlen, *outfd,
583 d5c81d44 2021-07-08 stsp id, repo, fd);
584 e65c7410 2021-10-14 stsp if (err)
585 e65c7410 2021-10-14 stsp goto done;
586 59d1e4a0 2021-03-10 stsp }
587 59d1e4a0 2021-03-10 stsp
588 59d1e4a0 2021-03-10 stsp *obj = calloc(1, sizeof(**obj));
589 59d1e4a0 2021-03-10 stsp if (*obj == NULL) {
590 59d1e4a0 2021-03-10 stsp err = got_error_from_errno("calloc");
591 59d1e4a0 2021-03-10 stsp goto done;
592 59d1e4a0 2021-03-10 stsp }
593 59d1e4a0 2021-03-10 stsp
594 59d1e4a0 2021-03-10 stsp if (outbuf) {
595 59d1e4a0 2021-03-10 stsp (*obj)->f = fmemopen(outbuf, hdrlen + size, "r");
596 59d1e4a0 2021-03-10 stsp if ((*obj)->f == NULL) {
597 59d1e4a0 2021-03-10 stsp err = got_error_from_errno("fdopen");
598 59d1e4a0 2021-03-10 stsp goto done;
599 59d1e4a0 2021-03-10 stsp }
600 59d1e4a0 2021-03-10 stsp (*obj)->data = outbuf;
601 59d1e4a0 2021-03-10 stsp } else {
602 59d1e4a0 2021-03-10 stsp struct stat sb;
603 d3c116bf 2021-10-15 stsp if (fstat(*outfd, &sb) == -1) {
604 59d1e4a0 2021-03-10 stsp err = got_error_from_errno("fstat");
605 59d1e4a0 2021-03-10 stsp goto done;
606 59d1e4a0 2021-03-10 stsp }
607 59d1e4a0 2021-03-10 stsp
608 a8591711 2021-06-18 stsp if (sb.st_size != hdrlen + size) {
609 59d1e4a0 2021-03-10 stsp err = got_error(GOT_ERR_PRIVSEP_LEN);
610 59d1e4a0 2021-03-10 stsp goto done;
611 59d1e4a0 2021-03-10 stsp }
612 59d1e4a0 2021-03-10 stsp
613 d3c116bf 2021-10-15 stsp (*obj)->f = fdopen(*outfd, "r");
614 59d1e4a0 2021-03-10 stsp if ((*obj)->f == NULL) {
615 59d1e4a0 2021-03-10 stsp err = got_error_from_errno("fdopen");
616 59d1e4a0 2021-03-10 stsp goto done;
617 59d1e4a0 2021-03-10 stsp }
618 59d1e4a0 2021-03-10 stsp (*obj)->data = NULL;
619 d3c116bf 2021-10-15 stsp *outfd = -1;
620 59d1e4a0 2021-03-10 stsp }
621 59d1e4a0 2021-03-10 stsp (*obj)->hdrlen = hdrlen;
622 59d1e4a0 2021-03-10 stsp (*obj)->size = size;
623 d3c116bf 2021-10-15 stsp err = got_repo_cache_raw_object(repo, id, *obj);
624 59d1e4a0 2021-03-10 stsp done:
625 59d1e4a0 2021-03-10 stsp free(path_packfile);
626 59d1e4a0 2021-03-10 stsp if (err) {
627 59d1e4a0 2021-03-10 stsp if (*obj) {
628 59d1e4a0 2021-03-10 stsp got_object_raw_close(*obj);
629 59d1e4a0 2021-03-10 stsp *obj = NULL;
630 59d1e4a0 2021-03-10 stsp }
631 59d1e4a0 2021-03-10 stsp free(outbuf);
632 d3c116bf 2021-10-15 stsp } else
633 d3c116bf 2021-10-15 stsp (*obj)->refcnt++;
634 59d1e4a0 2021-03-10 stsp return err;
635 ab9a70b2 2017-11-06 stsp }
636 ab9a70b2 2017-11-06 stsp
637 59d1e4a0 2021-03-10 stsp const struct got_error *
638 6dfa2fd3 2018-02-12 stsp got_object_open_by_id_str(struct got_object **obj, struct got_repository *repo,
639 6dfa2fd3 2018-02-12 stsp const char *id_str)
640 6dfa2fd3 2018-02-12 stsp {
641 6dfa2fd3 2018-02-12 stsp struct got_object_id id;
642 6dfa2fd3 2018-02-12 stsp
643 6dfa2fd3 2018-02-12 stsp if (!got_parse_sha1_digest(id.sha1, id_str))
644 6dd1ece6 2019-11-10 stsp return got_error_path(id_str, GOT_ERR_BAD_OBJ_ID_STR);
645 6dfa2fd3 2018-02-12 stsp
646 6dfa2fd3 2018-02-12 stsp return got_object_open(obj, repo, &id);
647 15a94983 2018-12-23 stsp }
648 15a94983 2018-12-23 stsp
649 15a94983 2018-12-23 stsp const struct got_error *
650 15a94983 2018-12-23 stsp got_object_resolve_id_str(struct got_object_id **id,
651 15a94983 2018-12-23 stsp struct got_repository *repo, const char *id_str)
652 15a94983 2018-12-23 stsp {
653 15a94983 2018-12-23 stsp const struct got_error *err = NULL;
654 15a94983 2018-12-23 stsp struct got_object *obj;
655 15a94983 2018-12-23 stsp
656 15a94983 2018-12-23 stsp err = got_object_open_by_id_str(&obj, repo, id_str);
657 15a94983 2018-12-23 stsp if (err)
658 15a94983 2018-12-23 stsp return err;
659 15a94983 2018-12-23 stsp
660 15a94983 2018-12-23 stsp *id = got_object_id_dup(got_object_get_id(obj));
661 15a94983 2018-12-23 stsp got_object_close(obj);
662 15a94983 2018-12-23 stsp if (*id == NULL)
663 638f9024 2019-05-13 stsp return got_error_from_errno("got_object_id_dup");
664 15a94983 2018-12-23 stsp
665 15a94983 2018-12-23 stsp return NULL;
666 434025f3 2018-09-16 stsp }
667 434025f3 2018-09-16 stsp
668 434025f3 2018-09-16 stsp static const struct got_error *
669 a158c901 2018-12-23 stsp request_packed_commit(struct got_commit_object **commit, struct got_pack *pack,
670 a158c901 2018-12-23 stsp int pack_idx, struct got_object_id *id)
671 a158c901 2018-12-23 stsp {
672 a158c901 2018-12-23 stsp const struct got_error *err = NULL;
673 a158c901 2018-12-23 stsp
674 a158c901 2018-12-23 stsp err = got_privsep_send_commit_req(pack->privsep_child->ibuf, -1, id,
675 a158c901 2018-12-23 stsp pack_idx);
676 a158c901 2018-12-23 stsp if (err)
677 a158c901 2018-12-23 stsp return err;
678 a158c901 2018-12-23 stsp
679 ca6e02ac 2020-01-07 stsp err = got_privsep_recv_commit(commit, pack->privsep_child->ibuf);
680 ca6e02ac 2020-01-07 stsp if (err)
681 ca6e02ac 2020-01-07 stsp return err;
682 ca6e02ac 2020-01-07 stsp
683 ca6e02ac 2020-01-07 stsp (*commit)->flags |= GOT_COMMIT_FLAG_PACKED;
684 ca6e02ac 2020-01-07 stsp return NULL;
685 a158c901 2018-12-23 stsp }
686 a158c901 2018-12-23 stsp
687 a158c901 2018-12-23 stsp static const struct got_error *
688 a158c901 2018-12-23 stsp read_packed_commit_privsep(struct got_commit_object **commit,
689 a158c901 2018-12-23 stsp struct got_pack *pack, struct got_packidx *packidx, int idx,
690 a158c901 2018-12-23 stsp struct got_object_id *id)
691 a158c901 2018-12-23 stsp {
692 a158c901 2018-12-23 stsp const struct got_error *err = NULL;
693 a158c901 2018-12-23 stsp
694 a158c901 2018-12-23 stsp if (pack->privsep_child)
695 a158c901 2018-12-23 stsp return request_packed_commit(commit, pack, idx, id);
696 a158c901 2018-12-23 stsp
697 711fb6e8 2018-12-23 stsp err = start_pack_privsep_child(pack, packidx);
698 711fb6e8 2018-12-23 stsp if (err)
699 a158c901 2018-12-23 stsp return err;
700 a158c901 2018-12-23 stsp
701 711fb6e8 2018-12-23 stsp return request_packed_commit(commit, pack, idx, id);
702 9f2369b0 2018-12-24 stsp }
703 9f2369b0 2018-12-24 stsp
704 9f2369b0 2018-12-24 stsp static const struct got_error *
705 9f2369b0 2018-12-24 stsp request_commit(struct got_commit_object **commit, struct got_repository *repo,
706 d5c81d44 2021-07-08 stsp int fd, struct got_object_id *id)
707 9f2369b0 2018-12-24 stsp {
708 9f2369b0 2018-12-24 stsp const struct got_error *err = NULL;
709 9f2369b0 2018-12-24 stsp struct imsgbuf *ibuf;
710 9f2369b0 2018-12-24 stsp
711 9f2369b0 2018-12-24 stsp ibuf = repo->privsep_children[GOT_REPO_PRIVSEP_CHILD_COMMIT].ibuf;
712 9f2369b0 2018-12-24 stsp
713 d5c81d44 2021-07-08 stsp err = got_privsep_send_commit_req(ibuf, fd, id, -1);
714 9f2369b0 2018-12-24 stsp if (err)
715 9f2369b0 2018-12-24 stsp return err;
716 9f2369b0 2018-12-24 stsp
717 9f2369b0 2018-12-24 stsp return got_privsep_recv_commit(commit, ibuf);
718 9f2369b0 2018-12-24 stsp }
719 9f2369b0 2018-12-24 stsp
720 9f2369b0 2018-12-24 stsp static const struct got_error *
721 9f2369b0 2018-12-24 stsp read_commit_privsep(struct got_commit_object **commit, int obj_fd,
722 d5c81d44 2021-07-08 stsp struct got_object_id *id, struct got_repository *repo)
723 9f2369b0 2018-12-24 stsp {
724 ddc7b220 2019-09-08 stsp const struct got_error *err;
725 9f2369b0 2018-12-24 stsp int imsg_fds[2];
726 9f2369b0 2018-12-24 stsp pid_t pid;
727 9f2369b0 2018-12-24 stsp struct imsgbuf *ibuf;
728 9f2369b0 2018-12-24 stsp
729 9f2369b0 2018-12-24 stsp if (repo->privsep_children[GOT_REPO_PRIVSEP_CHILD_COMMIT].imsg_fd != -1)
730 d5c81d44 2021-07-08 stsp return request_commit(commit, repo, obj_fd, id);
731 9f2369b0 2018-12-24 stsp
732 9f2369b0 2018-12-24 stsp ibuf = calloc(1, sizeof(*ibuf));
733 9f2369b0 2018-12-24 stsp if (ibuf == NULL)
734 638f9024 2019-05-13 stsp return got_error_from_errno("calloc");
735 9f2369b0 2018-12-24 stsp
736 ddc7b220 2019-09-08 stsp if (socketpair(AF_UNIX, SOCK_STREAM, PF_UNSPEC, imsg_fds) == -1) {
737 ddc7b220 2019-09-08 stsp err = got_error_from_errno("socketpair");
738 ddc7b220 2019-09-08 stsp free(ibuf);
739 ddc7b220 2019-09-08 stsp return err;
740 ddc7b220 2019-09-08 stsp }
741 9f2369b0 2018-12-24 stsp
742 9f2369b0 2018-12-24 stsp pid = fork();
743 ddc7b220 2019-09-08 stsp if (pid == -1) {
744 ddc7b220 2019-09-08 stsp err = got_error_from_errno("fork");
745 ddc7b220 2019-09-08 stsp free(ibuf);
746 ddc7b220 2019-09-08 stsp return err;
747 ddc7b220 2019-09-08 stsp }
748 9f2369b0 2018-12-24 stsp else if (pid == 0) {
749 aba9c984 2019-09-08 stsp got_privsep_exec_child(imsg_fds, GOT_PATH_PROG_READ_COMMIT,
750 9f2369b0 2018-12-24 stsp repo->path);
751 9f2369b0 2018-12-24 stsp /* not reached */
752 9f2369b0 2018-12-24 stsp }
753 9f2369b0 2018-12-24 stsp
754 08578a35 2021-01-22 stsp if (close(imsg_fds[1]) == -1) {
755 ddc7b220 2019-09-08 stsp err = got_error_from_errno("close");
756 ddc7b220 2019-09-08 stsp free(ibuf);
757 ddc7b220 2019-09-08 stsp return err;
758 ddc7b220 2019-09-08 stsp }
759 9f2369b0 2018-12-24 stsp repo->privsep_children[GOT_REPO_PRIVSEP_CHILD_COMMIT].imsg_fd =
760 9f2369b0 2018-12-24 stsp imsg_fds[0];
761 9f2369b0 2018-12-24 stsp repo->privsep_children[GOT_REPO_PRIVSEP_CHILD_COMMIT].pid = pid;
762 9f2369b0 2018-12-24 stsp imsg_init(ibuf, imsg_fds[0]);
763 9f2369b0 2018-12-24 stsp repo->privsep_children[GOT_REPO_PRIVSEP_CHILD_COMMIT].ibuf = ibuf;
764 9f2369b0 2018-12-24 stsp
765 d5c81d44 2021-07-08 stsp return request_commit(commit, repo, obj_fd, id);
766 a158c901 2018-12-23 stsp }
767 a158c901 2018-12-23 stsp
768 9f2369b0 2018-12-24 stsp
769 a158c901 2018-12-23 stsp static const struct got_error *
770 434025f3 2018-09-16 stsp open_commit(struct got_commit_object **commit,
771 1785f84a 2018-12-23 stsp struct got_repository *repo, struct got_object_id *id, int check_cache)
772 434025f3 2018-09-16 stsp {
773 434025f3 2018-09-16 stsp const struct got_error *err = NULL;
774 1785f84a 2018-12-23 stsp struct got_packidx *packidx = NULL;
775 e82b1d81 2019-07-27 stsp int idx;
776 8d2c5ea3 2019-08-13 stsp char *path_packfile = NULL;
777 434025f3 2018-09-16 stsp
778 434025f3 2018-09-16 stsp if (check_cache) {
779 1785f84a 2018-12-23 stsp *commit = got_repo_get_cached_commit(repo, id);
780 434025f3 2018-09-16 stsp if (*commit != NULL) {
781 434025f3 2018-09-16 stsp (*commit)->refcnt++;
782 434025f3 2018-09-16 stsp return NULL;
783 434025f3 2018-09-16 stsp }
784 434025f3 2018-09-16 stsp } else
785 434025f3 2018-09-16 stsp *commit = NULL;
786 434025f3 2018-09-16 stsp
787 e82b1d81 2019-07-27 stsp err = got_repo_search_packidx(&packidx, &idx, repo, id);
788 e82b1d81 2019-07-27 stsp if (err == NULL) {
789 1785f84a 2018-12-23 stsp struct got_pack *pack = NULL;
790 34f480ff 2019-07-27 stsp
791 aea75d87 2021-07-06 stsp err = got_packidx_get_packfile_path(&path_packfile,
792 aea75d87 2021-07-06 stsp packidx->path_packidx);
793 1785f84a 2018-12-23 stsp if (err)
794 1785f84a 2018-12-23 stsp return err;
795 1785f84a 2018-12-23 stsp
796 1785f84a 2018-12-23 stsp pack = got_repo_get_cached_pack(repo, path_packfile);
797 434025f3 2018-09-16 stsp if (pack == NULL) {
798 1785f84a 2018-12-23 stsp err = got_repo_cache_pack(&pack, repo, path_packfile,
799 1785f84a 2018-12-23 stsp packidx);
800 434025f3 2018-09-16 stsp if (err)
801 8d2c5ea3 2019-08-13 stsp goto done;
802 434025f3 2018-09-16 stsp }
803 a158c901 2018-12-23 stsp err = read_packed_commit_privsep(commit, pack,
804 1785f84a 2018-12-23 stsp packidx, idx, id);
805 e82b1d81 2019-07-27 stsp } else if (err->code == GOT_ERR_NO_OBJ) {
806 e82b1d81 2019-07-27 stsp int fd;
807 e82b1d81 2019-07-27 stsp
808 762d73f4 2021-04-10 stsp err = got_object_open_loose_fd(&fd, id, repo);
809 e82b1d81 2019-07-27 stsp if (err)
810 e82b1d81 2019-07-27 stsp return err;
811 d5c81d44 2021-07-08 stsp err = read_commit_privsep(commit, fd, id, repo);
812 e82b1d81 2019-07-27 stsp }
813 434025f3 2018-09-16 stsp
814 434025f3 2018-09-16 stsp if (err == NULL) {
815 434025f3 2018-09-16 stsp (*commit)->refcnt++;
816 1785f84a 2018-12-23 stsp err = got_repo_cache_commit(repo, id, *commit);
817 e32baab7 2018-11-05 stsp }
818 8d2c5ea3 2019-08-13 stsp done:
819 8d2c5ea3 2019-08-13 stsp free(path_packfile);
820 e32baab7 2018-11-05 stsp return err;
821 e32baab7 2018-11-05 stsp }
822 e32baab7 2018-11-05 stsp
823 e32baab7 2018-11-05 stsp const struct got_error *
824 e32baab7 2018-11-05 stsp got_object_open_as_commit(struct got_commit_object **commit,
825 e32baab7 2018-11-05 stsp struct got_repository *repo, struct got_object_id *id)
826 e32baab7 2018-11-05 stsp {
827 e32baab7 2018-11-05 stsp *commit = got_repo_get_cached_commit(repo, id);
828 e32baab7 2018-11-05 stsp if (*commit != NULL) {
829 e32baab7 2018-11-05 stsp (*commit)->refcnt++;
830 e32baab7 2018-11-05 stsp return NULL;
831 e32baab7 2018-11-05 stsp }
832 e32baab7 2018-11-05 stsp
833 1785f84a 2018-12-23 stsp return open_commit(commit, repo, id, 0);
834 7762fe12 2018-11-05 stsp }
835 7762fe12 2018-11-05 stsp
836 e32baab7 2018-11-05 stsp const struct got_error *
837 e32baab7 2018-11-05 stsp got_object_commit_open(struct got_commit_object **commit,
838 e32baab7 2018-11-05 stsp struct got_repository *repo, struct got_object *obj)
839 e32baab7 2018-11-05 stsp {
840 1785f84a 2018-12-23 stsp return open_commit(commit, repo, got_object_get_id(obj), 1);
841 434025f3 2018-09-16 stsp }
842 434025f3 2018-09-16 stsp
843 434025f3 2018-09-16 stsp const struct got_error *
844 dbc6a6b6 2018-07-12 stsp got_object_qid_alloc(struct got_object_qid **qid, struct got_object_id *id)
845 dbc6a6b6 2018-07-12 stsp {
846 dbc6a6b6 2018-07-12 stsp const struct got_error *err = NULL;
847 dbc6a6b6 2018-07-12 stsp
848 dbc6a6b6 2018-07-12 stsp *qid = calloc(1, sizeof(**qid));
849 dbc6a6b6 2018-07-12 stsp if (*qid == NULL)
850 638f9024 2019-05-13 stsp return got_error_from_errno("calloc");
851 dbc6a6b6 2018-07-12 stsp
852 dbc6a6b6 2018-07-12 stsp (*qid)->id = got_object_id_dup(id);
853 dbc6a6b6 2018-07-12 stsp if ((*qid)->id == NULL) {
854 638f9024 2019-05-13 stsp err = got_error_from_errno("got_object_id_dup");
855 fa2f6902 2018-07-23 stsp got_object_qid_free(*qid);
856 dbc6a6b6 2018-07-12 stsp *qid = NULL;
857 dbc6a6b6 2018-07-12 stsp return err;
858 9ca9aafb 2021-06-18 stsp }
859 9ca9aafb 2021-06-18 stsp
860 9ca9aafb 2021-06-18 stsp return NULL;
861 9ca9aafb 2021-06-18 stsp }
862 9ca9aafb 2021-06-18 stsp
863 9ca9aafb 2021-06-18 stsp const struct got_error *
864 9ca9aafb 2021-06-18 stsp got_object_id_queue_copy(const struct got_object_id_queue *src,
865 9ca9aafb 2021-06-18 stsp struct got_object_id_queue *dest)
866 9ca9aafb 2021-06-18 stsp {
867 9ca9aafb 2021-06-18 stsp const struct got_error *err;
868 9ca9aafb 2021-06-18 stsp struct got_object_qid *qid;
869 9ca9aafb 2021-06-18 stsp
870 dbdddfee 2021-06-23 naddy STAILQ_FOREACH(qid, src, entry) {
871 9ca9aafb 2021-06-18 stsp struct got_object_qid *new;
872 9ca9aafb 2021-06-18 stsp /*
873 9ca9aafb 2021-06-18 stsp * Deep-copy the object ID only. Let the caller deal
874 9ca9aafb 2021-06-18 stsp * with setting up the new->data pointer if needed.
875 9ca9aafb 2021-06-18 stsp */
876 9ca9aafb 2021-06-18 stsp err = got_object_qid_alloc(&new, qid->id);
877 9ca9aafb 2021-06-18 stsp if (err) {
878 9ca9aafb 2021-06-18 stsp got_object_id_queue_free(dest);
879 9ca9aafb 2021-06-18 stsp return err;
880 9ca9aafb 2021-06-18 stsp }
881 dbdddfee 2021-06-23 naddy STAILQ_INSERT_TAIL(dest, new, entry);
882 dbc6a6b6 2018-07-12 stsp }
883 dbc6a6b6 2018-07-12 stsp
884 dbc6a6b6 2018-07-12 stsp return NULL;
885 a158c901 2018-12-23 stsp }
886 a158c901 2018-12-23 stsp
887 a158c901 2018-12-23 stsp static const struct got_error *
888 13c729f7 2018-12-24 stsp request_packed_tree(struct got_tree_object **tree, struct got_pack *pack,
889 13c729f7 2018-12-24 stsp int pack_idx, struct got_object_id *id)
890 a158c901 2018-12-23 stsp {
891 a158c901 2018-12-23 stsp const struct got_error *err = NULL;
892 a158c901 2018-12-23 stsp
893 13c729f7 2018-12-24 stsp err = got_privsep_send_tree_req(pack->privsep_child->ibuf, -1, id,
894 13c729f7 2018-12-24 stsp pack_idx);
895 a158c901 2018-12-23 stsp if (err)
896 a158c901 2018-12-23 stsp return err;
897 a158c901 2018-12-23 stsp
898 a158c901 2018-12-23 stsp return got_privsep_recv_tree(tree, pack->privsep_child->ibuf);
899 7e212e3d 2018-09-09 stsp }
900 7e212e3d 2018-09-09 stsp
901 71eb0e7f 2018-09-16 stsp static const struct got_error *
902 13c729f7 2018-12-24 stsp read_packed_tree_privsep(struct got_tree_object **tree,
903 13c729f7 2018-12-24 stsp struct got_pack *pack, struct got_packidx *packidx, int idx,
904 13c729f7 2018-12-24 stsp struct got_object_id *id)
905 13c729f7 2018-12-24 stsp {
906 13c729f7 2018-12-24 stsp const struct got_error *err = NULL;
907 13c729f7 2018-12-24 stsp
908 13c729f7 2018-12-24 stsp if (pack->privsep_child)
909 13c729f7 2018-12-24 stsp return request_packed_tree(tree, pack, idx, id);
910 13c729f7 2018-12-24 stsp
911 13c729f7 2018-12-24 stsp err = start_pack_privsep_child(pack, packidx);
912 13c729f7 2018-12-24 stsp if (err)
913 13c729f7 2018-12-24 stsp return err;
914 13c729f7 2018-12-24 stsp
915 13c729f7 2018-12-24 stsp return request_packed_tree(tree, pack, idx, id);
916 13c729f7 2018-12-24 stsp }
917 13c729f7 2018-12-24 stsp
918 13c729f7 2018-12-24 stsp static const struct got_error *
919 9f2369b0 2018-12-24 stsp request_tree(struct got_tree_object **tree, struct got_repository *repo,
920 d5c81d44 2021-07-08 stsp int fd, struct got_object_id *id)
921 9f2369b0 2018-12-24 stsp {
922 9f2369b0 2018-12-24 stsp const struct got_error *err = NULL;
923 9f2369b0 2018-12-24 stsp struct imsgbuf *ibuf;
924 9f2369b0 2018-12-24 stsp
925 9f2369b0 2018-12-24 stsp ibuf = repo->privsep_children[GOT_REPO_PRIVSEP_CHILD_TREE].ibuf;
926 9f2369b0 2018-12-24 stsp
927 d5c81d44 2021-07-08 stsp err = got_privsep_send_tree_req(ibuf, fd, id, -1);
928 9f2369b0 2018-12-24 stsp if (err)
929 9f2369b0 2018-12-24 stsp return err;
930 9f2369b0 2018-12-24 stsp
931 9f2369b0 2018-12-24 stsp return got_privsep_recv_tree(tree, ibuf);
932 9f2369b0 2018-12-24 stsp }
933 9f2369b0 2018-12-24 stsp
934 9f2369b0 2018-12-24 stsp const struct got_error *
935 9f2369b0 2018-12-24 stsp read_tree_privsep(struct got_tree_object **tree, int obj_fd,
936 d5c81d44 2021-07-08 stsp struct got_object_id *id, struct got_repository *repo)
937 9f2369b0 2018-12-24 stsp {
938 ddc7b220 2019-09-08 stsp const struct got_error *err;
939 9f2369b0 2018-12-24 stsp int imsg_fds[2];
940 9f2369b0 2018-12-24 stsp pid_t pid;
941 9f2369b0 2018-12-24 stsp struct imsgbuf *ibuf;
942 9f2369b0 2018-12-24 stsp
943 9f2369b0 2018-12-24 stsp if (repo->privsep_children[GOT_REPO_PRIVSEP_CHILD_TREE].imsg_fd != -1)
944 d5c81d44 2021-07-08 stsp return request_tree(tree, repo, obj_fd, id);
945 9f2369b0 2018-12-24 stsp
946 9f2369b0 2018-12-24 stsp ibuf = calloc(1, sizeof(*ibuf));
947 9f2369b0 2018-12-24 stsp if (ibuf == NULL)
948 638f9024 2019-05-13 stsp return got_error_from_errno("calloc");
949 9f2369b0 2018-12-24 stsp
950 ddc7b220 2019-09-08 stsp if (socketpair(AF_UNIX, SOCK_STREAM, PF_UNSPEC, imsg_fds) == -1) {
951 ddc7b220 2019-09-08 stsp err = got_error_from_errno("socketpair");
952 ddc7b220 2019-09-08 stsp free(ibuf);
953 ddc7b220 2019-09-08 stsp return err;
954 ddc7b220 2019-09-08 stsp }
955 9f2369b0 2018-12-24 stsp
956 9f2369b0 2018-12-24 stsp pid = fork();
957 ddc7b220 2019-09-08 stsp if (pid == -1) {
958 ddc7b220 2019-09-08 stsp err = got_error_from_errno("fork");
959 ddc7b220 2019-09-08 stsp free(ibuf);
960 ddc7b220 2019-09-08 stsp return err;
961 ddc7b220 2019-09-08 stsp }
962 9f2369b0 2018-12-24 stsp else if (pid == 0) {
963 aba9c984 2019-09-08 stsp got_privsep_exec_child(imsg_fds, GOT_PATH_PROG_READ_TREE,
964 9f2369b0 2018-12-24 stsp repo->path);
965 9f2369b0 2018-12-24 stsp /* not reached */
966 9f2369b0 2018-12-24 stsp }
967 9f2369b0 2018-12-24 stsp
968 08578a35 2021-01-22 stsp if (close(imsg_fds[1]) == -1) {
969 ddc7b220 2019-09-08 stsp err = got_error_from_errno("close");
970 ddc7b220 2019-09-08 stsp free(ibuf);
971 ddc7b220 2019-09-08 stsp return err;
972 ddc7b220 2019-09-08 stsp }
973 9f2369b0 2018-12-24 stsp repo->privsep_children[GOT_REPO_PRIVSEP_CHILD_TREE].imsg_fd =
974 9f2369b0 2018-12-24 stsp imsg_fds[0];
975 9f2369b0 2018-12-24 stsp repo->privsep_children[GOT_REPO_PRIVSEP_CHILD_TREE].pid = pid;
976 9f2369b0 2018-12-24 stsp imsg_init(ibuf, imsg_fds[0]);
977 9f2369b0 2018-12-24 stsp repo->privsep_children[GOT_REPO_PRIVSEP_CHILD_TREE].ibuf = ibuf;
978 9f2369b0 2018-12-24 stsp
979 9f2369b0 2018-12-24 stsp
980 d5c81d44 2021-07-08 stsp return request_tree(tree, repo, obj_fd, id);
981 9f2369b0 2018-12-24 stsp }
982 9f2369b0 2018-12-24 stsp
983 9f2369b0 2018-12-24 stsp static const struct got_error *
984 13c729f7 2018-12-24 stsp open_tree(struct got_tree_object **tree, struct got_repository *repo,
985 13c729f7 2018-12-24 stsp struct got_object_id *id, int check_cache)
986 0ffeb3c2 2017-11-26 stsp {
987 0ffeb3c2 2017-11-26 stsp const struct got_error *err = NULL;
988 13c729f7 2018-12-24 stsp struct got_packidx *packidx = NULL;
989 e82b1d81 2019-07-27 stsp int idx;
990 8d2c5ea3 2019-08-13 stsp char *path_packfile = NULL;
991 f6be5c30 2018-06-22 stsp
992 71eb0e7f 2018-09-16 stsp if (check_cache) {
993 13c729f7 2018-12-24 stsp *tree = got_repo_get_cached_tree(repo, id);
994 71eb0e7f 2018-09-16 stsp if (*tree != NULL) {
995 71eb0e7f 2018-09-16 stsp (*tree)->refcnt++;
996 71eb0e7f 2018-09-16 stsp return NULL;
997 71eb0e7f 2018-09-16 stsp }
998 71eb0e7f 2018-09-16 stsp } else
999 71eb0e7f 2018-09-16 stsp *tree = NULL;
1000 0ffeb3c2 2017-11-26 stsp
1001 e82b1d81 2019-07-27 stsp err = got_repo_search_packidx(&packidx, &idx, repo, id);
1002 e82b1d81 2019-07-27 stsp if (err == NULL) {
1003 13c729f7 2018-12-24 stsp struct got_pack *pack = NULL;
1004 0ffeb3c2 2017-11-26 stsp
1005 aea75d87 2021-07-06 stsp err = got_packidx_get_packfile_path(&path_packfile,
1006 aea75d87 2021-07-06 stsp packidx->path_packidx);
1007 13c729f7 2018-12-24 stsp if (err)
1008 13c729f7 2018-12-24 stsp return err;
1009 13c729f7 2018-12-24 stsp
1010 13c729f7 2018-12-24 stsp pack = got_repo_get_cached_pack(repo, path_packfile);
1011 e7885405 2018-09-10 stsp if (pack == NULL) {
1012 e82b1d81 2019-07-27 stsp err = got_repo_cache_pack(&pack, repo, path_packfile,
1013 e82b1d81 2019-07-27 stsp packidx);
1014 e7885405 2018-09-10 stsp if (err)
1015 8d2c5ea3 2019-08-13 stsp goto done;
1016 e7885405 2018-09-10 stsp }
1017 13c729f7 2018-12-24 stsp err = read_packed_tree_privsep(tree, pack,
1018 13c729f7 2018-12-24 stsp packidx, idx, id);
1019 e82b1d81 2019-07-27 stsp } else if (err->code == GOT_ERR_NO_OBJ) {
1020 e82b1d81 2019-07-27 stsp int fd;
1021 e82b1d81 2019-07-27 stsp
1022 762d73f4 2021-04-10 stsp err = got_object_open_loose_fd(&fd, id, repo);
1023 e82b1d81 2019-07-27 stsp if (err)
1024 e82b1d81 2019-07-27 stsp return err;
1025 d5c81d44 2021-07-08 stsp err = read_tree_privsep(tree, fd, id, repo);
1026 e82b1d81 2019-07-27 stsp }
1027 f6be5c30 2018-06-22 stsp
1028 f6be5c30 2018-06-22 stsp if (err == NULL) {
1029 f6be5c30 2018-06-22 stsp (*tree)->refcnt++;
1030 13c729f7 2018-12-24 stsp err = got_repo_cache_tree(repo, id, *tree);
1031 f6be5c30 2018-06-22 stsp }
1032 8d2c5ea3 2019-08-13 stsp done:
1033 8d2c5ea3 2019-08-13 stsp free(path_packfile);
1034 776d4d29 2018-06-17 stsp return err;
1035 776d4d29 2018-06-17 stsp }
1036 776d4d29 2018-06-17 stsp
1037 776d4d29 2018-06-17 stsp const struct got_error *
1038 776d4d29 2018-06-17 stsp got_object_open_as_tree(struct got_tree_object **tree,
1039 776d4d29 2018-06-17 stsp struct got_repository *repo, struct got_object_id *id)
1040 776d4d29 2018-06-17 stsp {
1041 e8eb494a 2018-09-16 stsp *tree = got_repo_get_cached_tree(repo, id);
1042 e8eb494a 2018-09-16 stsp if (*tree != NULL) {
1043 e8eb494a 2018-09-16 stsp (*tree)->refcnt++;
1044 e8eb494a 2018-09-16 stsp return NULL;
1045 e0ab43e7 2018-03-16 stsp }
1046 776d4d29 2018-06-17 stsp
1047 13c729f7 2018-12-24 stsp return open_tree(tree, repo, id, 0);
1048 57efb1af 2018-04-24 stsp }
1049 ff6b18f8 2018-04-24 stsp
1050 71eb0e7f 2018-09-16 stsp const struct got_error *
1051 71eb0e7f 2018-09-16 stsp got_object_tree_open(struct got_tree_object **tree,
1052 71eb0e7f 2018-09-16 stsp struct got_repository *repo, struct got_object *obj)
1053 71eb0e7f 2018-09-16 stsp {
1054 13c729f7 2018-12-24 stsp return open_tree(tree, repo, got_object_get_id(obj), 1);
1055 71eb0e7f 2018-09-16 stsp }
1056 71eb0e7f 2018-09-16 stsp
1057 56e0773d 2019-11-28 stsp int
1058 56e0773d 2019-11-28 stsp got_object_tree_get_nentries(struct got_tree_object *tree)
1059 883f0469 2018-06-23 stsp {
1060 56e0773d 2019-11-28 stsp return tree->nentries;
1061 56e0773d 2019-11-28 stsp }
1062 56e0773d 2019-11-28 stsp
1063 56e0773d 2019-11-28 stsp struct got_tree_entry *
1064 56e0773d 2019-11-28 stsp got_object_tree_get_first_entry(struct got_tree_object *tree)
1065 56e0773d 2019-11-28 stsp {
1066 56e0773d 2019-11-28 stsp return got_object_tree_get_entry(tree, 0);
1067 56e0773d 2019-11-28 stsp }
1068 56e0773d 2019-11-28 stsp
1069 56e0773d 2019-11-28 stsp struct got_tree_entry *
1070 56e0773d 2019-11-28 stsp got_object_tree_get_last_entry(struct got_tree_object *tree)
1071 56e0773d 2019-11-28 stsp {
1072 56e0773d 2019-11-28 stsp return got_object_tree_get_entry(tree, tree->nentries - 1);
1073 56e0773d 2019-11-28 stsp }
1074 56e0773d 2019-11-28 stsp
1075 56e0773d 2019-11-28 stsp struct got_tree_entry *
1076 56e0773d 2019-11-28 stsp got_object_tree_get_entry(struct got_tree_object *tree, int i)
1077 56e0773d 2019-11-28 stsp {
1078 56e0773d 2019-11-28 stsp if (i < 0 || i >= tree->nentries)
1079 56e0773d 2019-11-28 stsp return NULL;
1080 56e0773d 2019-11-28 stsp return &tree->entries[i];
1081 883f0469 2018-06-23 stsp }
1082 3840f4c9 2018-09-12 stsp
1083 56e0773d 2019-11-28 stsp mode_t
1084 56e0773d 2019-11-28 stsp got_tree_entry_get_mode(struct got_tree_entry *te)
1085 56e0773d 2019-11-28 stsp {
1086 56e0773d 2019-11-28 stsp return te->mode;
1087 56e0773d 2019-11-28 stsp }
1088 56e0773d 2019-11-28 stsp
1089 56e0773d 2019-11-28 stsp const char *
1090 56e0773d 2019-11-28 stsp got_tree_entry_get_name(struct got_tree_entry *te)
1091 56e0773d 2019-11-28 stsp {
1092 56e0773d 2019-11-28 stsp return &te->name[0];
1093 56e0773d 2019-11-28 stsp }
1094 56e0773d 2019-11-28 stsp
1095 56e0773d 2019-11-28 stsp struct got_object_id *
1096 56e0773d 2019-11-28 stsp got_tree_entry_get_id(struct got_tree_entry *te)
1097 56e0773d 2019-11-28 stsp {
1098 56e0773d 2019-11-28 stsp return &te->id;
1099 0d6c6ee3 2020-05-20 stsp }
1100 0d6c6ee3 2020-05-20 stsp
1101 0d6c6ee3 2020-05-20 stsp const struct got_error *
1102 af57b12a 2020-07-23 stsp got_object_blob_read_to_str(char **s, struct got_blob_object *blob)
1103 0d6c6ee3 2020-05-20 stsp {
1104 0d6c6ee3 2020-05-20 stsp const struct got_error *err = NULL;
1105 32596e16 2020-07-23 stsp size_t len, totlen, hdrlen, offset;
1106 aa092692 2020-07-23 stsp
1107 aa092692 2020-07-23 stsp *s = NULL;
1108 0d6c6ee3 2020-05-20 stsp
1109 659dc16e 2020-07-23 stsp hdrlen = got_object_blob_get_hdrlen(blob);
1110 659dc16e 2020-07-23 stsp totlen = 0;
1111 32596e16 2020-07-23 stsp offset = 0;
1112 659dc16e 2020-07-23 stsp do {
1113 659dc16e 2020-07-23 stsp char *p;
1114 0d6c6ee3 2020-05-20 stsp
1115 659dc16e 2020-07-23 stsp err = got_object_blob_read_block(&len, blob);
1116 659dc16e 2020-07-23 stsp if (err)
1117 af57b12a 2020-07-23 stsp return err;
1118 659dc16e 2020-07-23 stsp
1119 659dc16e 2020-07-23 stsp if (len == 0)
1120 659dc16e 2020-07-23 stsp break;
1121 659dc16e 2020-07-23 stsp
1122 659dc16e 2020-07-23 stsp totlen += len - hdrlen;
1123 af57b12a 2020-07-23 stsp p = realloc(*s, totlen + 1);
1124 659dc16e 2020-07-23 stsp if (p == NULL) {
1125 659dc16e 2020-07-23 stsp err = got_error_from_errno("realloc");
1126 af57b12a 2020-07-23 stsp free(*s);
1127 af57b12a 2020-07-23 stsp *s = NULL;
1128 af57b12a 2020-07-23 stsp return err;
1129 659dc16e 2020-07-23 stsp }
1130 af57b12a 2020-07-23 stsp *s = p;
1131 659dc16e 2020-07-23 stsp /* Skip blob object header first time around. */
1132 af57b12a 2020-07-23 stsp memcpy(*s + offset,
1133 f8f7c882 2020-07-23 stsp got_object_blob_get_read_buf(blob) + hdrlen, len - hdrlen);
1134 659dc16e 2020-07-23 stsp hdrlen = 0;
1135 32596e16 2020-07-23 stsp offset = totlen;
1136 659dc16e 2020-07-23 stsp } while (len > 0);
1137 af57b12a 2020-07-23 stsp
1138 af57b12a 2020-07-23 stsp (*s)[totlen] = '\0';
1139 af57b12a 2020-07-23 stsp return NULL;
1140 af57b12a 2020-07-23 stsp }
1141 af57b12a 2020-07-23 stsp
1142 af57b12a 2020-07-23 stsp const struct got_error *
1143 af57b12a 2020-07-23 stsp got_tree_entry_get_symlink_target(char **link_target, struct got_tree_entry *te,
1144 af57b12a 2020-07-23 stsp struct got_repository *repo)
1145 af57b12a 2020-07-23 stsp {
1146 af57b12a 2020-07-23 stsp const struct got_error *err = NULL;
1147 af57b12a 2020-07-23 stsp struct got_blob_object *blob = NULL;
1148 af57b12a 2020-07-23 stsp
1149 af57b12a 2020-07-23 stsp *link_target = NULL;
1150 af57b12a 2020-07-23 stsp
1151 af57b12a 2020-07-23 stsp if (!got_object_tree_entry_is_symlink(te))
1152 af57b12a 2020-07-23 stsp return got_error(GOT_ERR_TREE_ENTRY_TYPE);
1153 af57b12a 2020-07-23 stsp
1154 af57b12a 2020-07-23 stsp err = got_object_open_as_blob(&blob, repo,
1155 af57b12a 2020-07-23 stsp got_tree_entry_get_id(te), PATH_MAX);
1156 af57b12a 2020-07-23 stsp if (err)
1157 af57b12a 2020-07-23 stsp return err;
1158 af57b12a 2020-07-23 stsp
1159 af57b12a 2020-07-23 stsp err = got_object_blob_read_to_str(link_target, blob);
1160 af57b12a 2020-07-23 stsp got_object_blob_close(blob);
1161 659dc16e 2020-07-23 stsp if (err) {
1162 659dc16e 2020-07-23 stsp free(*link_target);
1163 659dc16e 2020-07-23 stsp *link_target = NULL;
1164 659dc16e 2020-07-23 stsp }
1165 0d6c6ee3 2020-05-20 stsp return err;
1166 56e0773d 2019-11-28 stsp }
1167 56e0773d 2019-11-28 stsp
1168 56e0773d 2019-11-28 stsp int
1169 56e0773d 2019-11-28 stsp got_tree_entry_get_index(struct got_tree_entry *te)
1170 56e0773d 2019-11-28 stsp {
1171 56e0773d 2019-11-28 stsp return te->idx;
1172 56e0773d 2019-11-28 stsp }
1173 56e0773d 2019-11-28 stsp
1174 56e0773d 2019-11-28 stsp struct got_tree_entry *
1175 56e0773d 2019-11-28 stsp got_tree_entry_get_next(struct got_tree_object *tree,
1176 56e0773d 2019-11-28 stsp struct got_tree_entry *te)
1177 56e0773d 2019-11-28 stsp {
1178 56e0773d 2019-11-28 stsp return got_object_tree_get_entry(tree, te->idx + 1);
1179 56e0773d 2019-11-28 stsp }
1180 56e0773d 2019-11-28 stsp
1181 56e0773d 2019-11-28 stsp struct got_tree_entry *
1182 56e0773d 2019-11-28 stsp got_tree_entry_get_prev(struct got_tree_object *tree,
1183 56e0773d 2019-11-28 stsp struct got_tree_entry *te)
1184 56e0773d 2019-11-28 stsp {
1185 56e0773d 2019-11-28 stsp return got_object_tree_get_entry(tree, te->idx - 1);
1186 56e0773d 2019-11-28 stsp }
1187 56e0773d 2019-11-28 stsp
1188 3840f4c9 2018-09-12 stsp static const struct got_error *
1189 ac544f8c 2019-01-13 stsp request_packed_blob(uint8_t **outbuf, size_t *size, size_t *hdrlen, int outfd,
1190 ebc55e2d 2018-12-24 stsp struct got_pack *pack, struct got_packidx *packidx, int idx,
1191 ebc55e2d 2018-12-24 stsp struct got_object_id *id)
1192 3840f4c9 2018-09-12 stsp {
1193 3840f4c9 2018-09-12 stsp const struct got_error *err = NULL;
1194 3840f4c9 2018-09-12 stsp int outfd_child;
1195 3840f4c9 2018-09-12 stsp int basefd, accumfd; /* temporary files for delta application */
1196 24140570 2018-09-09 stsp
1197 3840f4c9 2018-09-12 stsp basefd = got_opentempfd();
1198 3840f4c9 2018-09-12 stsp if (basefd == -1)
1199 638f9024 2019-05-13 stsp return got_error_from_errno("got_opentempfd");
1200 3840f4c9 2018-09-12 stsp accumfd = got_opentempfd();
1201 3840f4c9 2018-09-12 stsp if (accumfd == -1)
1202 638f9024 2019-05-13 stsp return got_error_from_errno("got_opentempfd");
1203 3840f4c9 2018-09-12 stsp
1204 3840f4c9 2018-09-12 stsp outfd_child = dup(outfd);
1205 3840f4c9 2018-09-12 stsp if (outfd_child == -1)
1206 638f9024 2019-05-13 stsp return got_error_from_errno("dup");
1207 3840f4c9 2018-09-12 stsp
1208 ebc55e2d 2018-12-24 stsp err = got_privsep_send_blob_req(pack->privsep_child->ibuf, -1, id, idx);
1209 3840f4c9 2018-09-12 stsp if (err)
1210 3840f4c9 2018-09-12 stsp return err;
1211 3840f4c9 2018-09-12 stsp
1212 3840f4c9 2018-09-12 stsp err = got_privsep_send_blob_outfd(pack->privsep_child->ibuf,
1213 3840f4c9 2018-09-12 stsp outfd_child);
1214 3840f4c9 2018-09-12 stsp if (err) {
1215 41496140 2019-02-21 stsp close(basefd);
1216 41496140 2019-02-21 stsp close(accumfd);
1217 3840f4c9 2018-09-12 stsp return err;
1218 3840f4c9 2018-09-12 stsp }
1219 41496140 2019-02-21 stsp
1220 3840f4c9 2018-09-12 stsp err = got_privsep_send_tmpfd(pack->privsep_child->ibuf,
1221 3840f4c9 2018-09-12 stsp basefd);
1222 3840f4c9 2018-09-12 stsp if (err) {
1223 3840f4c9 2018-09-12 stsp close(accumfd);
1224 3840f4c9 2018-09-12 stsp return err;
1225 3840f4c9 2018-09-12 stsp }
1226 3840f4c9 2018-09-12 stsp
1227 3840f4c9 2018-09-12 stsp err = got_privsep_send_tmpfd(pack->privsep_child->ibuf,
1228 3840f4c9 2018-09-12 stsp accumfd);
1229 41496140 2019-02-21 stsp if (err)
1230 3840f4c9 2018-09-12 stsp return err;
1231 3840f4c9 2018-09-12 stsp
1232 ac544f8c 2019-01-13 stsp err = got_privsep_recv_blob(outbuf, size, hdrlen,
1233 ebc55e2d 2018-12-24 stsp pack->privsep_child->ibuf);
1234 3840f4c9 2018-09-12 stsp if (err)
1235 3840f4c9 2018-09-12 stsp return err;
1236 3840f4c9 2018-09-12 stsp
1237 3840f4c9 2018-09-12 stsp if (lseek(outfd, SEEK_SET, 0) == -1)
1238 638f9024 2019-05-13 stsp err = got_error_from_errno("lseek");
1239 3840f4c9 2018-09-12 stsp
1240 3840f4c9 2018-09-12 stsp return err;
1241 3840f4c9 2018-09-12 stsp }
1242 3840f4c9 2018-09-12 stsp
1243 ebc55e2d 2018-12-24 stsp static const struct got_error *
1244 ac544f8c 2019-01-13 stsp read_packed_blob_privsep(uint8_t **outbuf, size_t *size, size_t *hdrlen,
1245 ac544f8c 2019-01-13 stsp int outfd, struct got_pack *pack, struct got_packidx *packidx, int idx,
1246 ebc55e2d 2018-12-24 stsp struct got_object_id *id)
1247 68482ea3 2017-11-27 stsp {
1248 68482ea3 2017-11-27 stsp const struct got_error *err = NULL;
1249 ebc55e2d 2018-12-24 stsp
1250 ebc55e2d 2018-12-24 stsp if (pack->privsep_child == NULL) {
1251 ebc55e2d 2018-12-24 stsp err = start_pack_privsep_child(pack, packidx);
1252 ebc55e2d 2018-12-24 stsp if (err)
1253 ebc55e2d 2018-12-24 stsp return err;
1254 ebc55e2d 2018-12-24 stsp }
1255 68482ea3 2017-11-27 stsp
1256 ac544f8c 2019-01-13 stsp return request_packed_blob(outbuf, size, hdrlen, outfd, pack, packidx,
1257 ac544f8c 2019-01-13 stsp idx, id);
1258 9f2369b0 2018-12-24 stsp }
1259 9f2369b0 2018-12-24 stsp
1260 9f2369b0 2018-12-24 stsp static const struct got_error *
1261 ac544f8c 2019-01-13 stsp request_blob(uint8_t **outbuf, size_t *size, size_t *hdrlen, int outfd,
1262 d5c81d44 2021-07-08 stsp int infd, struct got_object_id *id, struct imsgbuf *ibuf)
1263 9f2369b0 2018-12-24 stsp {
1264 9f2369b0 2018-12-24 stsp const struct got_error *err = NULL;
1265 9f2369b0 2018-12-24 stsp int outfd_child;
1266 9f2369b0 2018-12-24 stsp
1267 9f2369b0 2018-12-24 stsp outfd_child = dup(outfd);
1268 9f2369b0 2018-12-24 stsp if (outfd_child == -1)
1269 638f9024 2019-05-13 stsp return got_error_from_errno("dup");
1270 9f2369b0 2018-12-24 stsp
1271 d5c81d44 2021-07-08 stsp err = got_privsep_send_blob_req(ibuf, infd, id, -1);
1272 9f2369b0 2018-12-24 stsp if (err)
1273 9f2369b0 2018-12-24 stsp return err;
1274 9f2369b0 2018-12-24 stsp
1275 9f2369b0 2018-12-24 stsp err = got_privsep_send_blob_outfd(ibuf, outfd_child);
1276 41496140 2019-02-21 stsp if (err)
1277 9f2369b0 2018-12-24 stsp return err;
1278 9f2369b0 2018-12-24 stsp
1279 ac544f8c 2019-01-13 stsp err = got_privsep_recv_blob(outbuf, size, hdrlen, ibuf);
1280 9f2369b0 2018-12-24 stsp if (err)
1281 9f2369b0 2018-12-24 stsp return err;
1282 9f2369b0 2018-12-24 stsp
1283 9f2369b0 2018-12-24 stsp if (lseek(outfd, SEEK_SET, 0) == -1)
1284 638f9024 2019-05-13 stsp return got_error_from_errno("lseek");
1285 9f2369b0 2018-12-24 stsp
1286 9f2369b0 2018-12-24 stsp return err;
1287 9f2369b0 2018-12-24 stsp }
1288 9f2369b0 2018-12-24 stsp
1289 9f2369b0 2018-12-24 stsp static const struct got_error *
1290 ac544f8c 2019-01-13 stsp read_blob_privsep(uint8_t **outbuf, size_t *size, size_t *hdrlen,
1291 d5c81d44 2021-07-08 stsp int outfd, int infd, struct got_object_id *id, struct got_repository *repo)
1292 9f2369b0 2018-12-24 stsp {
1293 ddc7b220 2019-09-08 stsp const struct got_error *err;
1294 9f2369b0 2018-12-24 stsp int imsg_fds[2];
1295 9f2369b0 2018-12-24 stsp pid_t pid;
1296 9f2369b0 2018-12-24 stsp struct imsgbuf *ibuf;
1297 9f2369b0 2018-12-24 stsp
1298 9f2369b0 2018-12-24 stsp if (repo->privsep_children[GOT_REPO_PRIVSEP_CHILD_BLOB].imsg_fd != -1) {
1299 9f2369b0 2018-12-24 stsp ibuf = repo->privsep_children[GOT_REPO_PRIVSEP_CHILD_BLOB].ibuf;
1300 d5c81d44 2021-07-08 stsp return request_blob(outbuf, size, hdrlen, outfd, infd, id,
1301 d5c81d44 2021-07-08 stsp ibuf);
1302 9f2369b0 2018-12-24 stsp }
1303 9f2369b0 2018-12-24 stsp
1304 9f2369b0 2018-12-24 stsp ibuf = calloc(1, sizeof(*ibuf));
1305 9f2369b0 2018-12-24 stsp if (ibuf == NULL)
1306 638f9024 2019-05-13 stsp return got_error_from_errno("calloc");
1307 9f2369b0 2018-12-24 stsp
1308 ddc7b220 2019-09-08 stsp if (socketpair(AF_UNIX, SOCK_STREAM, PF_UNSPEC, imsg_fds) == -1) {
1309 ddc7b220 2019-09-08 stsp err = got_error_from_errno("socketpair");
1310 ddc7b220 2019-09-08 stsp free(ibuf);
1311 ddc7b220 2019-09-08 stsp return err;
1312 ddc7b220 2019-09-08 stsp }
1313 9f2369b0 2018-12-24 stsp
1314 9f2369b0 2018-12-24 stsp pid = fork();
1315 ddc7b220 2019-09-08 stsp if (pid == -1) {
1316 ddc7b220 2019-09-08 stsp err = got_error_from_errno("fork");
1317 ddc7b220 2019-09-08 stsp free(ibuf);
1318 ddc7b220 2019-09-08 stsp return err;
1319 ddc7b220 2019-09-08 stsp }
1320 9f2369b0 2018-12-24 stsp else if (pid == 0) {
1321 aba9c984 2019-09-08 stsp got_privsep_exec_child(imsg_fds, GOT_PATH_PROG_READ_BLOB,
1322 9f2369b0 2018-12-24 stsp repo->path);
1323 9f2369b0 2018-12-24 stsp /* not reached */
1324 9f2369b0 2018-12-24 stsp }
1325 9f2369b0 2018-12-24 stsp
1326 08578a35 2021-01-22 stsp if (close(imsg_fds[1]) == -1) {
1327 ddc7b220 2019-09-08 stsp err = got_error_from_errno("close");
1328 ddc7b220 2019-09-08 stsp free(ibuf);
1329 ddc7b220 2019-09-08 stsp return err;
1330 ddc7b220 2019-09-08 stsp }
1331 9f2369b0 2018-12-24 stsp repo->privsep_children[GOT_REPO_PRIVSEP_CHILD_BLOB].imsg_fd =
1332 9f2369b0 2018-12-24 stsp imsg_fds[0];
1333 9f2369b0 2018-12-24 stsp repo->privsep_children[GOT_REPO_PRIVSEP_CHILD_BLOB].pid = pid;
1334 9f2369b0 2018-12-24 stsp imsg_init(ibuf, imsg_fds[0]);
1335 9f2369b0 2018-12-24 stsp repo->privsep_children[GOT_REPO_PRIVSEP_CHILD_BLOB].ibuf = ibuf;
1336 9f2369b0 2018-12-24 stsp
1337 d5c81d44 2021-07-08 stsp return request_blob(outbuf, size, hdrlen, outfd, infd, id, ibuf);
1338 ebc55e2d 2018-12-24 stsp }
1339 68482ea3 2017-11-27 stsp
1340 ebc55e2d 2018-12-24 stsp static const struct got_error *
1341 ebc55e2d 2018-12-24 stsp open_blob(struct got_blob_object **blob, struct got_repository *repo,
1342 ebc55e2d 2018-12-24 stsp struct got_object_id *id, size_t blocksize)
1343 ebc55e2d 2018-12-24 stsp {
1344 ebc55e2d 2018-12-24 stsp const struct got_error *err = NULL;
1345 ebc55e2d 2018-12-24 stsp struct got_packidx *packidx = NULL;
1346 ebc55e2d 2018-12-24 stsp int idx;
1347 8d2c5ea3 2019-08-13 stsp char *path_packfile = NULL;
1348 ac544f8c 2019-01-13 stsp uint8_t *outbuf;
1349 e82b1d81 2019-07-27 stsp int outfd;
1350 ebc55e2d 2018-12-24 stsp size_t size, hdrlen;
1351 ebc55e2d 2018-12-24 stsp struct stat sb;
1352 ebc55e2d 2018-12-24 stsp
1353 68482ea3 2017-11-27 stsp *blob = calloc(1, sizeof(**blob));
1354 4558fcd4 2018-01-14 stsp if (*blob == NULL)
1355 638f9024 2019-05-13 stsp return got_error_from_errno("calloc");
1356 68482ea3 2017-11-27 stsp
1357 55da3778 2018-09-10 stsp outfd = got_opentempfd();
1358 55da3778 2018-09-10 stsp if (outfd == -1)
1359 638f9024 2019-05-13 stsp return got_error_from_errno("got_opentempfd");
1360 55da3778 2018-09-10 stsp
1361 062ebb78 2018-07-12 stsp (*blob)->read_buf = malloc(blocksize);
1362 15c8b0e6 2018-04-24 stsp if ((*blob)->read_buf == NULL) {
1363 638f9024 2019-05-13 stsp err = got_error_from_errno("malloc");
1364 c7254d79 2018-04-24 stsp goto done;
1365 15c8b0e6 2018-04-24 stsp }
1366 ebc55e2d 2018-12-24 stsp
1367 e82b1d81 2019-07-27 stsp err = got_repo_search_packidx(&packidx, &idx, repo, id);
1368 e82b1d81 2019-07-27 stsp if (err == NULL) {
1369 ebc55e2d 2018-12-24 stsp struct got_pack *pack = NULL;
1370 34f480ff 2019-07-27 stsp
1371 aea75d87 2021-07-06 stsp err = got_packidx_get_packfile_path(&path_packfile,
1372 aea75d87 2021-07-06 stsp packidx->path_packidx);
1373 ebc55e2d 2018-12-24 stsp if (err)
1374 ebc55e2d 2018-12-24 stsp goto done;
1375 ebc55e2d 2018-12-24 stsp
1376 ebc55e2d 2018-12-24 stsp pack = got_repo_get_cached_pack(repo, path_packfile);
1377 55da3778 2018-09-10 stsp if (pack == NULL) {
1378 ebc55e2d 2018-12-24 stsp err = got_repo_cache_pack(&pack, repo, path_packfile,
1379 ebc55e2d 2018-12-24 stsp packidx);
1380 55da3778 2018-09-10 stsp if (err)
1381 55da3778 2018-09-10 stsp goto done;
1382 55da3778 2018-09-10 stsp }
1383 ac544f8c 2019-01-13 stsp err = read_packed_blob_privsep(&outbuf, &size, &hdrlen, outfd,
1384 ac544f8c 2019-01-13 stsp pack, packidx, idx, id);
1385 e82b1d81 2019-07-27 stsp } else if (err->code == GOT_ERR_NO_OBJ) {
1386 e82b1d81 2019-07-27 stsp int infd;
1387 e82b1d81 2019-07-27 stsp
1388 762d73f4 2021-04-10 stsp err = got_object_open_loose_fd(&infd, id, repo);
1389 e82b1d81 2019-07-27 stsp if (err)
1390 e82b1d81 2019-07-27 stsp goto done;
1391 ac544f8c 2019-01-13 stsp err = read_blob_privsep(&outbuf, &size, &hdrlen, outfd, infd,
1392 d5c81d44 2021-07-08 stsp id, repo);
1393 e82b1d81 2019-07-27 stsp }
1394 ebc55e2d 2018-12-24 stsp if (err)
1395 55da3778 2018-09-10 stsp goto done;
1396 2967a784 2018-04-24 stsp
1397 de060dff 2018-12-24 stsp if (hdrlen > size) {
1398 ebc55e2d 2018-12-24 stsp err = got_error(GOT_ERR_BAD_OBJ_HDR);
1399 ebc55e2d 2018-12-24 stsp goto done;
1400 ebc55e2d 2018-12-24 stsp }
1401 ebc55e2d 2018-12-24 stsp
1402 ac544f8c 2019-01-13 stsp if (outbuf) {
1403 08578a35 2021-01-22 stsp if (close(outfd) == -1 && err == NULL)
1404 638f9024 2019-05-13 stsp err = got_error_from_errno("close");
1405 ac544f8c 2019-01-13 stsp outfd = -1;
1406 ac544f8c 2019-01-13 stsp (*blob)->f = fmemopen(outbuf, size, "rb");
1407 ac544f8c 2019-01-13 stsp if ((*blob)->f == NULL) {
1408 638f9024 2019-05-13 stsp err = got_error_from_errno("fmemopen");
1409 ac544f8c 2019-01-13 stsp free(outbuf);
1410 ac544f8c 2019-01-13 stsp goto done;
1411 ac544f8c 2019-01-13 stsp }
1412 ac544f8c 2019-01-13 stsp (*blob)->data = outbuf;
1413 ac544f8c 2019-01-13 stsp } else {
1414 ac544f8c 2019-01-13 stsp if (fstat(outfd, &sb) == -1) {
1415 638f9024 2019-05-13 stsp err = got_error_from_errno("fstat");
1416 ac544f8c 2019-01-13 stsp goto done;
1417 ac544f8c 2019-01-13 stsp }
1418 ac544f8c 2019-01-13 stsp
1419 ac544f8c 2019-01-13 stsp if (sb.st_size != size) {
1420 ac544f8c 2019-01-13 stsp err = got_error(GOT_ERR_PRIVSEP_LEN);
1421 ac544f8c 2019-01-13 stsp goto done;
1422 ac544f8c 2019-01-13 stsp }
1423 ac544f8c 2019-01-13 stsp
1424 ac544f8c 2019-01-13 stsp (*blob)->f = fdopen(outfd, "rb");
1425 ac544f8c 2019-01-13 stsp if ((*blob)->f == NULL) {
1426 638f9024 2019-05-13 stsp err = got_error_from_errno("fdopen");
1427 ac544f8c 2019-01-13 stsp close(outfd);
1428 ac544f8c 2019-01-13 stsp outfd = -1;
1429 ac544f8c 2019-01-13 stsp goto done;
1430 ac544f8c 2019-01-13 stsp }
1431 68482ea3 2017-11-27 stsp }
1432 68482ea3 2017-11-27 stsp
1433 ebc55e2d 2018-12-24 stsp (*blob)->hdrlen = hdrlen;
1434 eb651edf 2018-02-11 stsp (*blob)->blocksize = blocksize;
1435 ebc55e2d 2018-12-24 stsp memcpy(&(*blob)->id.sha1, id->sha1, SHA1_DIGEST_LENGTH);
1436 7d283eee 2017-11-29 stsp
1437 c7254d79 2018-04-24 stsp done:
1438 8d2c5ea3 2019-08-13 stsp free(path_packfile);
1439 55da3778 2018-09-10 stsp if (err) {
1440 55da3778 2018-09-10 stsp if (*blob) {
1441 7baf5860 2019-03-19 stsp got_object_blob_close(*blob);
1442 55da3778 2018-09-10 stsp *blob = NULL;
1443 55da3778 2018-09-10 stsp } else if (outfd != -1)
1444 55da3778 2018-09-10 stsp close(outfd);
1445 a19581a2 2018-06-21 stsp }
1446 a19581a2 2018-06-21 stsp return err;
1447 a19581a2 2018-06-21 stsp }
1448 a19581a2 2018-06-21 stsp
1449 a19581a2 2018-06-21 stsp const struct got_error *
1450 a19581a2 2018-06-21 stsp got_object_open_as_blob(struct got_blob_object **blob,
1451 a19581a2 2018-06-21 stsp struct got_repository *repo, struct got_object_id *id,
1452 a19581a2 2018-06-21 stsp size_t blocksize)
1453 a19581a2 2018-06-21 stsp {
1454 ebc55e2d 2018-12-24 stsp return open_blob(blob, repo, id, blocksize);
1455 ebc55e2d 2018-12-24 stsp }
1456 835e0dbd 2018-06-21 stsp
1457 ebc55e2d 2018-12-24 stsp const struct got_error *
1458 ebc55e2d 2018-12-24 stsp got_object_blob_open(struct got_blob_object **blob,
1459 ebc55e2d 2018-12-24 stsp struct got_repository *repo, struct got_object *obj, size_t blocksize)
1460 ebc55e2d 2018-12-24 stsp {
1461 ebc55e2d 2018-12-24 stsp return open_blob(blob, repo, got_object_get_id(obj), blocksize);
1462 0ffeb3c2 2017-11-26 stsp }
1463 68482ea3 2017-11-27 stsp
1464 fb43ecf1 2019-02-11 stsp const struct got_error *
1465 68482ea3 2017-11-27 stsp got_object_blob_close(struct got_blob_object *blob)
1466 68482ea3 2017-11-27 stsp {
1467 fb43ecf1 2019-02-11 stsp const struct got_error *err = NULL;
1468 15c8b0e6 2018-04-24 stsp free(blob->read_buf);
1469 56b63ca4 2021-01-22 stsp if (blob->f && fclose(blob->f) == EOF)
1470 638f9024 2019-05-13 stsp err = got_error_from_errno("fclose");
1471 ac544f8c 2019-01-13 stsp free(blob->data);
1472 68482ea3 2017-11-27 stsp free(blob);
1473 fb43ecf1 2019-02-11 stsp return err;
1474 f934cf2c 2018-02-12 stsp }
1475 f934cf2c 2018-02-12 stsp
1476 8ba819a3 2020-07-23 stsp void
1477 8ba819a3 2020-07-23 stsp got_object_blob_rewind(struct got_blob_object *blob)
1478 8ba819a3 2020-07-23 stsp {
1479 8ba819a3 2020-07-23 stsp if (blob->f)
1480 8ba819a3 2020-07-23 stsp rewind(blob->f);
1481 8ba819a3 2020-07-23 stsp }
1482 8ba819a3 2020-07-23 stsp
1483 f934cf2c 2018-02-12 stsp char *
1484 f934cf2c 2018-02-12 stsp got_object_blob_id_str(struct got_blob_object *blob, char *buf, size_t size)
1485 f934cf2c 2018-02-12 stsp {
1486 f934cf2c 2018-02-12 stsp return got_sha1_digest_to_str(blob->id.sha1, buf, size);
1487 f934cf2c 2018-02-12 stsp }
1488 f934cf2c 2018-02-12 stsp
1489 f934cf2c 2018-02-12 stsp size_t
1490 f934cf2c 2018-02-12 stsp got_object_blob_get_hdrlen(struct got_blob_object *blob)
1491 f934cf2c 2018-02-12 stsp {
1492 f934cf2c 2018-02-12 stsp return blob->hdrlen;
1493 68482ea3 2017-11-27 stsp }
1494 68482ea3 2017-11-27 stsp
1495 f934cf2c 2018-02-12 stsp const uint8_t *
1496 f934cf2c 2018-02-12 stsp got_object_blob_get_read_buf(struct got_blob_object *blob)
1497 f934cf2c 2018-02-12 stsp {
1498 f934cf2c 2018-02-12 stsp return blob->read_buf;
1499 f934cf2c 2018-02-12 stsp }
1500 f934cf2c 2018-02-12 stsp
1501 68482ea3 2017-11-27 stsp const struct got_error *
1502 eb651edf 2018-02-11 stsp got_object_blob_read_block(size_t *outlenp, struct got_blob_object *blob)
1503 68482ea3 2017-11-27 stsp {
1504 eb651edf 2018-02-11 stsp size_t n;
1505 eb651edf 2018-02-11 stsp
1506 eb651edf 2018-02-11 stsp n = fread(blob->read_buf, 1, blob->blocksize, blob->f);
1507 eb651edf 2018-02-11 stsp if (n == 0 && ferror(blob->f))
1508 eb651edf 2018-02-11 stsp return got_ferror(blob->f, GOT_ERR_IO);
1509 eb651edf 2018-02-11 stsp *outlenp = n;
1510 35e9ba5d 2018-06-21 stsp return NULL;
1511 35e9ba5d 2018-06-21 stsp }
1512 35e9ba5d 2018-06-21 stsp
1513 35e9ba5d 2018-06-21 stsp const struct got_error *
1514 be659d10 2020-11-18 stsp got_object_blob_dump_to_file(off_t *filesize, int *nlines,
1515 6c4c42e0 2019-06-24 stsp off_t **line_offsets, FILE *outfile, struct got_blob_object *blob)
1516 35e9ba5d 2018-06-21 stsp {
1517 35e9ba5d 2018-06-21 stsp const struct got_error *err = NULL;
1518 b6752625 2018-12-24 stsp size_t n, len, hdrlen;
1519 84451b3e 2018-07-10 stsp const uint8_t *buf;
1520 84451b3e 2018-07-10 stsp int i;
1521 c33ebc60 2020-11-18 stsp const int alloc_chunksz = 512;
1522 c33ebc60 2020-11-18 stsp size_t nalloc = 0;
1523 f595d9bd 2019-08-14 stsp off_t off = 0, total_len = 0;
1524 84451b3e 2018-07-10 stsp
1525 6c4c42e0 2019-06-24 stsp if (line_offsets)
1526 6c4c42e0 2019-06-24 stsp *line_offsets = NULL;
1527 f595d9bd 2019-08-14 stsp if (filesize)
1528 f595d9bd 2019-08-14 stsp *filesize = 0;
1529 84451b3e 2018-07-10 stsp if (nlines)
1530 84451b3e 2018-07-10 stsp *nlines = 0;
1531 35e9ba5d 2018-06-21 stsp
1532 35e9ba5d 2018-06-21 stsp hdrlen = got_object_blob_get_hdrlen(blob);
1533 35e9ba5d 2018-06-21 stsp do {
1534 35e9ba5d 2018-06-21 stsp err = got_object_blob_read_block(&len, blob);
1535 35e9ba5d 2018-06-21 stsp if (err)
1536 35e9ba5d 2018-06-21 stsp return err;
1537 35e9ba5d 2018-06-21 stsp if (len == 0)
1538 35e9ba5d 2018-06-21 stsp break;
1539 84451b3e 2018-07-10 stsp buf = got_object_blob_get_read_buf(blob);
1540 b02560ec 2019-08-19 stsp i = hdrlen;
1541 f1cbc3bc 2020-11-18 stsp if (nlines) {
1542 f1cbc3bc 2020-11-18 stsp if (line_offsets && *line_offsets == NULL) {
1543 78695fb7 2019-08-12 stsp /* Have some data but perhaps no '\n'. */
1544 78695fb7 2019-08-12 stsp *nlines = 1;
1545 c33ebc60 2020-11-18 stsp nalloc = alloc_chunksz;
1546 c33ebc60 2020-11-18 stsp *line_offsets = calloc(nalloc,
1547 c33ebc60 2020-11-18 stsp sizeof(**line_offsets));
1548 78695fb7 2019-08-12 stsp if (*line_offsets == NULL)
1549 845785d4 2020-02-02 tracey return got_error_from_errno("calloc");
1550 b02560ec 2019-08-19 stsp
1551 b02560ec 2019-08-19 stsp /* Skip forward over end of first line. */
1552 b02560ec 2019-08-19 stsp while (i < len) {
1553 b02560ec 2019-08-19 stsp if (buf[i] == '\n')
1554 b02560ec 2019-08-19 stsp break;
1555 b02560ec 2019-08-19 stsp i++;
1556 b02560ec 2019-08-19 stsp }
1557 b02560ec 2019-08-19 stsp }
1558 b02560ec 2019-08-19 stsp /* Scan '\n' offsets in remaining chunk of data. */
1559 b02560ec 2019-08-19 stsp while (i < len) {
1560 b02560ec 2019-08-19 stsp if (buf[i] != '\n') {
1561 b02560ec 2019-08-19 stsp i++;
1562 f595d9bd 2019-08-14 stsp continue;
1563 b02560ec 2019-08-19 stsp }
1564 f595d9bd 2019-08-14 stsp (*nlines)++;
1565 c33ebc60 2020-11-18 stsp if (line_offsets && nalloc < *nlines) {
1566 c33ebc60 2020-11-18 stsp size_t n = *nlines + alloc_chunksz;
1567 78695fb7 2019-08-12 stsp off_t *o = recallocarray(*line_offsets,
1568 c33ebc60 2020-11-18 stsp nalloc, n, sizeof(**line_offsets));
1569 78695fb7 2019-08-12 stsp if (o == NULL) {
1570 78695fb7 2019-08-12 stsp free(*line_offsets);
1571 78695fb7 2019-08-12 stsp *line_offsets = NULL;
1572 78695fb7 2019-08-12 stsp return got_error_from_errno(
1573 78695fb7 2019-08-12 stsp "recallocarray");
1574 78695fb7 2019-08-12 stsp }
1575 78695fb7 2019-08-12 stsp *line_offsets = o;
1576 c33ebc60 2020-11-18 stsp nalloc = n;
1577 78695fb7 2019-08-12 stsp }
1578 f1cbc3bc 2020-11-18 stsp if (line_offsets) {
1579 f1cbc3bc 2020-11-18 stsp off = total_len + i - hdrlen + 1;
1580 f1cbc3bc 2020-11-18 stsp (*line_offsets)[*nlines - 1] = off;
1581 f1cbc3bc 2020-11-18 stsp }
1582 b02560ec 2019-08-19 stsp i++;
1583 6c4c42e0 2019-06-24 stsp }
1584 84451b3e 2018-07-10 stsp }
1585 35e9ba5d 2018-06-21 stsp /* Skip blob object header first time around. */
1586 454a6b59 2018-12-24 stsp n = fwrite(buf + hdrlen, 1, len - hdrlen, outfile);
1587 b6752625 2018-12-24 stsp if (n != len - hdrlen)
1588 b6752625 2018-12-24 stsp return got_ferror(outfile, GOT_ERR_IO);
1589 f595d9bd 2019-08-14 stsp total_len += len - hdrlen;
1590 35e9ba5d 2018-06-21 stsp hdrlen = 0;
1591 35e9ba5d 2018-06-21 stsp } while (len != 0);
1592 35e9ba5d 2018-06-21 stsp
1593 cbe7f848 2019-02-11 stsp if (fflush(outfile) != 0)
1594 638f9024 2019-05-13 stsp return got_error_from_errno("fflush");
1595 35e9ba5d 2018-06-21 stsp rewind(outfile);
1596 35e9ba5d 2018-06-21 stsp
1597 f595d9bd 2019-08-14 stsp if (filesize)
1598 f595d9bd 2019-08-14 stsp *filesize = total_len;
1599 f595d9bd 2019-08-14 stsp
1600 776d4d29 2018-06-17 stsp return NULL;
1601 f4a881ce 2018-11-17 stsp }
1602 f4a881ce 2018-11-17 stsp
1603 f4a881ce 2018-11-17 stsp static const struct got_error *
1604 268f7291 2018-12-24 stsp request_packed_tag(struct got_tag_object **tag, struct got_pack *pack,
1605 268f7291 2018-12-24 stsp int pack_idx, struct got_object_id *id)
1606 a158c901 2018-12-23 stsp {
1607 a158c901 2018-12-23 stsp const struct got_error *err = NULL;
1608 a158c901 2018-12-23 stsp
1609 268f7291 2018-12-24 stsp err = got_privsep_send_tag_req(pack->privsep_child->ibuf, -1, id,
1610 268f7291 2018-12-24 stsp pack_idx);
1611 a158c901 2018-12-23 stsp if (err)
1612 a158c901 2018-12-23 stsp return err;
1613 a158c901 2018-12-23 stsp
1614 a158c901 2018-12-23 stsp return got_privsep_recv_tag(tag, pack->privsep_child->ibuf);
1615 268f7291 2018-12-24 stsp }
1616 268f7291 2018-12-24 stsp
1617 268f7291 2018-12-24 stsp static const struct got_error *
1618 268f7291 2018-12-24 stsp read_packed_tag_privsep(struct got_tag_object **tag,
1619 268f7291 2018-12-24 stsp struct got_pack *pack, struct got_packidx *packidx, int idx,
1620 268f7291 2018-12-24 stsp struct got_object_id *id)
1621 268f7291 2018-12-24 stsp {
1622 268f7291 2018-12-24 stsp const struct got_error *err = NULL;
1623 268f7291 2018-12-24 stsp
1624 268f7291 2018-12-24 stsp if (pack->privsep_child)
1625 268f7291 2018-12-24 stsp return request_packed_tag(tag, pack, idx, id);
1626 268f7291 2018-12-24 stsp
1627 268f7291 2018-12-24 stsp err = start_pack_privsep_child(pack, packidx);
1628 268f7291 2018-12-24 stsp if (err)
1629 268f7291 2018-12-24 stsp return err;
1630 268f7291 2018-12-24 stsp
1631 268f7291 2018-12-24 stsp return request_packed_tag(tag, pack, idx, id);
1632 a158c901 2018-12-23 stsp }
1633 9f2369b0 2018-12-24 stsp
1634 9f2369b0 2018-12-24 stsp static const struct got_error *
1635 9f2369b0 2018-12-24 stsp request_tag(struct got_tag_object **tag, struct got_repository *repo,
1636 d5c81d44 2021-07-08 stsp int fd, struct got_object_id *id)
1637 9f2369b0 2018-12-24 stsp {
1638 9f2369b0 2018-12-24 stsp const struct got_error *err = NULL;
1639 9f2369b0 2018-12-24 stsp struct imsgbuf *ibuf;
1640 9f2369b0 2018-12-24 stsp
1641 9f2369b0 2018-12-24 stsp ibuf = repo->privsep_children[GOT_REPO_PRIVSEP_CHILD_TAG].ibuf;
1642 9f2369b0 2018-12-24 stsp
1643 d5c81d44 2021-07-08 stsp err = got_privsep_send_tag_req(ibuf, fd, id, -1);
1644 9f2369b0 2018-12-24 stsp if (err)
1645 9f2369b0 2018-12-24 stsp return err;
1646 9f2369b0 2018-12-24 stsp
1647 9f2369b0 2018-12-24 stsp return got_privsep_recv_tag(tag, ibuf);
1648 9f2369b0 2018-12-24 stsp }
1649 9f2369b0 2018-12-24 stsp
1650 9f2369b0 2018-12-24 stsp static const struct got_error *
1651 9f2369b0 2018-12-24 stsp read_tag_privsep(struct got_tag_object **tag, int obj_fd,
1652 d5c81d44 2021-07-08 stsp struct got_object_id *id, struct got_repository *repo)
1653 9f2369b0 2018-12-24 stsp {
1654 ddc7b220 2019-09-08 stsp const struct got_error *err;
1655 9f2369b0 2018-12-24 stsp int imsg_fds[2];
1656 9f2369b0 2018-12-24 stsp pid_t pid;
1657 9f2369b0 2018-12-24 stsp struct imsgbuf *ibuf;
1658 9f2369b0 2018-12-24 stsp
1659 9f2369b0 2018-12-24 stsp if (repo->privsep_children[GOT_REPO_PRIVSEP_CHILD_TAG].imsg_fd != -1)
1660 d5c81d44 2021-07-08 stsp return request_tag(tag, repo, obj_fd, id);
1661 9f2369b0 2018-12-24 stsp
1662 9f2369b0 2018-12-24 stsp ibuf = calloc(1, sizeof(*ibuf));
1663 9f2369b0 2018-12-24 stsp if (ibuf == NULL)
1664 638f9024 2019-05-13 stsp return got_error_from_errno("calloc");
1665 9f2369b0 2018-12-24 stsp
1666 ddc7b220 2019-09-08 stsp if (socketpair(AF_UNIX, SOCK_STREAM, PF_UNSPEC, imsg_fds) == -1) {
1667 ddc7b220 2019-09-08 stsp err = got_error_from_errno("socketpair");
1668 ddc7b220 2019-09-08 stsp free(ibuf);
1669 ddc7b220 2019-09-08 stsp return err;
1670 ddc7b220 2019-09-08 stsp }
1671 9f2369b0 2018-12-24 stsp
1672 9f2369b0 2018-12-24 stsp pid = fork();
1673 ddc7b220 2019-09-08 stsp if (pid == -1) {
1674 ddc7b220 2019-09-08 stsp err = got_error_from_errno("fork");
1675 ddc7b220 2019-09-08 stsp free(ibuf);
1676 ddc7b220 2019-09-08 stsp return err;
1677 ddc7b220 2019-09-08 stsp }
1678 9f2369b0 2018-12-24 stsp else if (pid == 0) {
1679 aba9c984 2019-09-08 stsp got_privsep_exec_child(imsg_fds, GOT_PATH_PROG_READ_TAG,
1680 9f2369b0 2018-12-24 stsp repo->path);
1681 9f2369b0 2018-12-24 stsp /* not reached */
1682 9f2369b0 2018-12-24 stsp }
1683 9f2369b0 2018-12-24 stsp
1684 08578a35 2021-01-22 stsp if (close(imsg_fds[1]) == -1) {
1685 ddc7b220 2019-09-08 stsp err = got_error_from_errno("close");
1686 ddc7b220 2019-09-08 stsp free(ibuf);
1687 ddc7b220 2019-09-08 stsp return err;
1688 ddc7b220 2019-09-08 stsp }
1689 9f2369b0 2018-12-24 stsp repo->privsep_children[GOT_REPO_PRIVSEP_CHILD_TAG].imsg_fd =
1690 9f2369b0 2018-12-24 stsp imsg_fds[0];
1691 9f2369b0 2018-12-24 stsp repo->privsep_children[GOT_REPO_PRIVSEP_CHILD_TAG].pid = pid;
1692 9f2369b0 2018-12-24 stsp imsg_init(ibuf, imsg_fds[0]);
1693 9f2369b0 2018-12-24 stsp repo->privsep_children[GOT_REPO_PRIVSEP_CHILD_TAG].ibuf = ibuf;
1694 a158c901 2018-12-23 stsp
1695 d5c81d44 2021-07-08 stsp return request_tag(tag, repo, obj_fd, id);
1696 9f2369b0 2018-12-24 stsp }
1697 a158c901 2018-12-23 stsp
1698 a158c901 2018-12-23 stsp static const struct got_error *
1699 268f7291 2018-12-24 stsp open_tag(struct got_tag_object **tag, struct got_repository *repo,
1700 268f7291 2018-12-24 stsp struct got_object_id *id, int check_cache)
1701 f4a881ce 2018-11-17 stsp {
1702 f4a881ce 2018-11-17 stsp const struct got_error *err = NULL;
1703 268f7291 2018-12-24 stsp struct got_packidx *packidx = NULL;
1704 e82b1d81 2019-07-27 stsp int idx;
1705 8d2c5ea3 2019-08-13 stsp char *path_packfile = NULL;
1706 5d844a1e 2019-08-13 stsp struct got_object *obj = NULL;
1707 5d844a1e 2019-08-13 stsp int obj_type = GOT_OBJ_TYPE_ANY;
1708 f4a881ce 2018-11-17 stsp
1709 f4a881ce 2018-11-17 stsp if (check_cache) {
1710 268f7291 2018-12-24 stsp *tag = got_repo_get_cached_tag(repo, id);
1711 f4a881ce 2018-11-17 stsp if (*tag != NULL) {
1712 f4a881ce 2018-11-17 stsp (*tag)->refcnt++;
1713 f4a881ce 2018-11-17 stsp return NULL;
1714 f4a881ce 2018-11-17 stsp }
1715 f4a881ce 2018-11-17 stsp } else
1716 f4a881ce 2018-11-17 stsp *tag = NULL;
1717 f4a881ce 2018-11-17 stsp
1718 e82b1d81 2019-07-27 stsp err = got_repo_search_packidx(&packidx, &idx, repo, id);
1719 e82b1d81 2019-07-27 stsp if (err == NULL) {
1720 268f7291 2018-12-24 stsp struct got_pack *pack = NULL;
1721 f4a881ce 2018-11-17 stsp
1722 aea75d87 2021-07-06 stsp err = got_packidx_get_packfile_path(&path_packfile,
1723 aea75d87 2021-07-06 stsp packidx->path_packidx);
1724 268f7291 2018-12-24 stsp if (err)
1725 268f7291 2018-12-24 stsp return err;
1726 268f7291 2018-12-24 stsp
1727 268f7291 2018-12-24 stsp pack = got_repo_get_cached_pack(repo, path_packfile);
1728 f4a881ce 2018-11-17 stsp if (pack == NULL) {
1729 e82b1d81 2019-07-27 stsp err = got_repo_cache_pack(&pack, repo, path_packfile,
1730 e82b1d81 2019-07-27 stsp packidx);
1731 f4a881ce 2018-11-17 stsp if (err)
1732 8d2c5ea3 2019-08-13 stsp goto done;
1733 f4a881ce 2018-11-17 stsp }
1734 5d844a1e 2019-08-13 stsp
1735 992eb9d8 2020-02-07 tracey /* Beware of "lightweight" tags: Check object type first. */
1736 5d844a1e 2019-08-13 stsp err = read_packed_object_privsep(&obj, repo, pack, packidx,
1737 5d844a1e 2019-08-13 stsp idx, id);
1738 5d844a1e 2019-08-13 stsp if (err)
1739 5d844a1e 2019-08-13 stsp goto done;
1740 5d844a1e 2019-08-13 stsp obj_type = obj->type;
1741 5d844a1e 2019-08-13 stsp got_object_close(obj);
1742 5d844a1e 2019-08-13 stsp if (obj_type != GOT_OBJ_TYPE_TAG) {
1743 5d844a1e 2019-08-13 stsp err = got_error(GOT_ERR_OBJ_TYPE);
1744 5d844a1e 2019-08-13 stsp goto done;
1745 5d844a1e 2019-08-13 stsp }
1746 5d844a1e 2019-08-13 stsp err = read_packed_tag_privsep(tag, pack, packidx, idx, id);
1747 e82b1d81 2019-07-27 stsp } else if (err->code == GOT_ERR_NO_OBJ) {
1748 e82b1d81 2019-07-27 stsp int fd;
1749 e82b1d81 2019-07-27 stsp
1750 762d73f4 2021-04-10 stsp err = got_object_open_loose_fd(&fd, id, repo);
1751 e82b1d81 2019-07-27 stsp if (err)
1752 e82b1d81 2019-07-27 stsp return err;
1753 d5c81d44 2021-07-08 stsp err = got_object_read_header_privsep(&obj, id, repo, fd);
1754 5d844a1e 2019-08-13 stsp if (err)
1755 5d844a1e 2019-08-13 stsp return err;
1756 5d844a1e 2019-08-13 stsp obj_type = obj->type;
1757 5d844a1e 2019-08-13 stsp got_object_close(obj);
1758 5d844a1e 2019-08-13 stsp if (obj_type != GOT_OBJ_TYPE_TAG)
1759 5d844a1e 2019-08-13 stsp return got_error(GOT_ERR_OBJ_TYPE);
1760 5d844a1e 2019-08-13 stsp
1761 762d73f4 2021-04-10 stsp err = got_object_open_loose_fd(&fd, id, repo);
1762 5d844a1e 2019-08-13 stsp if (err)
1763 5d844a1e 2019-08-13 stsp return err;
1764 d5c81d44 2021-07-08 stsp err = read_tag_privsep(tag, fd, id, repo);
1765 e82b1d81 2019-07-27 stsp }
1766 f4a881ce 2018-11-17 stsp
1767 f4a881ce 2018-11-17 stsp if (err == NULL) {
1768 f4a881ce 2018-11-17 stsp (*tag)->refcnt++;
1769 268f7291 2018-12-24 stsp err = got_repo_cache_tag(repo, id, *tag);
1770 f4a881ce 2018-11-17 stsp }
1771 8d2c5ea3 2019-08-13 stsp done:
1772 8d2c5ea3 2019-08-13 stsp free(path_packfile);
1773 f4a881ce 2018-11-17 stsp return err;
1774 f4a881ce 2018-11-17 stsp }
1775 f4a881ce 2018-11-17 stsp
1776 f4a881ce 2018-11-17 stsp const struct got_error *
1777 f4a881ce 2018-11-17 stsp got_object_open_as_tag(struct got_tag_object **tag,
1778 f4a881ce 2018-11-17 stsp struct got_repository *repo, struct got_object_id *id)
1779 f4a881ce 2018-11-17 stsp {
1780 f4a881ce 2018-11-17 stsp *tag = got_repo_get_cached_tag(repo, id);
1781 f4a881ce 2018-11-17 stsp if (*tag != NULL) {
1782 f4a881ce 2018-11-17 stsp (*tag)->refcnt++;
1783 f4a881ce 2018-11-17 stsp return NULL;
1784 f4a881ce 2018-11-17 stsp }
1785 f4a881ce 2018-11-17 stsp
1786 268f7291 2018-12-24 stsp return open_tag(tag, repo, id, 0);
1787 f4a881ce 2018-11-17 stsp }
1788 f4a881ce 2018-11-17 stsp
1789 f4a881ce 2018-11-17 stsp const struct got_error *
1790 f4a881ce 2018-11-17 stsp got_object_tag_open(struct got_tag_object **tag,
1791 f4a881ce 2018-11-17 stsp struct got_repository *repo, struct got_object *obj)
1792 f4a881ce 2018-11-17 stsp {
1793 268f7291 2018-12-24 stsp return open_tag(tag, repo, got_object_get_id(obj), 1);
1794 d24820bf 2019-08-11 stsp }
1795 d24820bf 2019-08-11 stsp
1796 d24820bf 2019-08-11 stsp const char *
1797 d24820bf 2019-08-11 stsp got_object_tag_get_name(struct got_tag_object *tag)
1798 d24820bf 2019-08-11 stsp {
1799 d24820bf 2019-08-11 stsp return tag->tag;
1800 0bd18d37 2019-02-01 stsp }
1801 0bd18d37 2019-02-01 stsp
1802 0bd18d37 2019-02-01 stsp int
1803 0bd18d37 2019-02-01 stsp got_object_tag_get_object_type(struct got_tag_object *tag)
1804 0bd18d37 2019-02-01 stsp {
1805 0bd18d37 2019-02-01 stsp return tag->obj_type;
1806 0bd18d37 2019-02-01 stsp }
1807 0bd18d37 2019-02-01 stsp
1808 0bd18d37 2019-02-01 stsp struct got_object_id *
1809 0bd18d37 2019-02-01 stsp got_object_tag_get_object_id(struct got_tag_object *tag)
1810 0bd18d37 2019-02-01 stsp {
1811 0bd18d37 2019-02-01 stsp return &tag->id;
1812 01073a5d 2019-08-22 stsp }
1813 01073a5d 2019-08-22 stsp
1814 01073a5d 2019-08-22 stsp time_t
1815 01073a5d 2019-08-22 stsp got_object_tag_get_tagger_time(struct got_tag_object *tag)
1816 01073a5d 2019-08-22 stsp {
1817 01073a5d 2019-08-22 stsp return tag->tagger_time;
1818 01073a5d 2019-08-22 stsp }
1819 01073a5d 2019-08-22 stsp
1820 01073a5d 2019-08-22 stsp time_t
1821 01073a5d 2019-08-22 stsp got_object_tag_get_tagger_gmtoff(struct got_tag_object *tag)
1822 01073a5d 2019-08-22 stsp {
1823 01073a5d 2019-08-22 stsp return tag->tagger_gmtoff;
1824 01073a5d 2019-08-22 stsp }
1825 01073a5d 2019-08-22 stsp
1826 01073a5d 2019-08-22 stsp const char *
1827 01073a5d 2019-08-22 stsp got_object_tag_get_tagger(struct got_tag_object *tag)
1828 01073a5d 2019-08-22 stsp {
1829 01073a5d 2019-08-22 stsp return tag->tagger;
1830 776d4d29 2018-06-17 stsp }
1831 776d4d29 2018-06-17 stsp
1832 01073a5d 2019-08-22 stsp const char *
1833 01073a5d 2019-08-22 stsp got_object_tag_get_message(struct got_tag_object *tag)
1834 01073a5d 2019-08-22 stsp {
1835 01073a5d 2019-08-22 stsp return tag->tagmsg;
1836 01073a5d 2019-08-22 stsp }
1837 01073a5d 2019-08-22 stsp
1838 776d4d29 2018-06-17 stsp static struct got_tree_entry *
1839 65a9bbe9 2018-09-15 stsp find_entry_by_name(struct got_tree_object *tree, const char *name, size_t len)
1840 776d4d29 2018-06-17 stsp {
1841 56e0773d 2019-11-28 stsp int i;
1842 776d4d29 2018-06-17 stsp
1843 63da309a 2018-11-07 stsp /* Note that tree entries are sorted in strncmp() order. */
1844 56e0773d 2019-11-28 stsp for (i = 0; i < tree->nentries; i++) {
1845 56e0773d 2019-11-28 stsp struct got_tree_entry *te = &tree->entries[i];
1846 63da309a 2018-11-07 stsp int cmp = strncmp(te->name, name, len);
1847 63da309a 2018-11-07 stsp if (cmp < 0)
1848 63da309a 2018-11-07 stsp continue;
1849 63da309a 2018-11-07 stsp if (cmp > 0)
1850 63da309a 2018-11-07 stsp break;
1851 63da309a 2018-11-07 stsp if (te->name[len] == '\0')
1852 776d4d29 2018-06-17 stsp return te;
1853 776d4d29 2018-06-17 stsp }
1854 eb651edf 2018-02-11 stsp return NULL;
1855 a129376b 2019-03-28 stsp }
1856 a129376b 2019-03-28 stsp
1857 56e0773d 2019-11-28 stsp struct got_tree_entry *
1858 a129376b 2019-03-28 stsp got_object_tree_find_entry(struct got_tree_object *tree, const char *name)
1859 a129376b 2019-03-28 stsp {
1860 a129376b 2019-03-28 stsp return find_entry_by_name(tree, name, strlen(name));
1861 776d4d29 2018-06-17 stsp }
1862 776d4d29 2018-06-17 stsp
1863 776d4d29 2018-06-17 stsp const struct got_error *
1864 67b631c9 2021-10-10 stsp got_object_tree_find_path(struct got_object_id **id, mode_t *mode,
1865 67b631c9 2021-10-10 stsp struct got_repository *repo, struct got_tree_object *tree,
1866 67b631c9 2021-10-10 stsp const char *path)
1867 776d4d29 2018-06-17 stsp {
1868 776d4d29 2018-06-17 stsp const struct got_error *err = NULL;
1869 67b631c9 2021-10-10 stsp struct got_tree_object *subtree = NULL;
1870 db37e2c0 2018-06-21 stsp struct got_tree_entry *te = NULL;
1871 65a9bbe9 2018-09-15 stsp const char *seg, *s;
1872 b7cd37e5 2018-11-18 stsp size_t seglen;
1873 776d4d29 2018-06-17 stsp
1874 27d434c2 2018-09-15 stsp *id = NULL;
1875 776d4d29 2018-06-17 stsp
1876 65a9bbe9 2018-09-15 stsp s = path;
1877 5e54fb30 2019-05-31 stsp while (s[0] == '/')
1878 5e54fb30 2019-05-31 stsp s++;
1879 776d4d29 2018-06-17 stsp seg = s;
1880 65a9bbe9 2018-09-15 stsp seglen = 0;
1881 67b631c9 2021-10-10 stsp subtree = tree;
1882 b7cd37e5 2018-11-18 stsp while (*s) {
1883 776d4d29 2018-06-17 stsp struct got_tree_object *next_tree;
1884 776d4d29 2018-06-17 stsp
1885 776d4d29 2018-06-17 stsp if (*s != '/') {
1886 776d4d29 2018-06-17 stsp s++;
1887 65a9bbe9 2018-09-15 stsp seglen++;
1888 00530cfb 2018-06-21 stsp if (*s)
1889 00530cfb 2018-06-21 stsp continue;
1890 776d4d29 2018-06-17 stsp }
1891 776d4d29 2018-06-17 stsp
1892 67b631c9 2021-10-10 stsp te = find_entry_by_name(subtree, seg, seglen);
1893 db37e2c0 2018-06-21 stsp if (te == NULL) {
1894 b66cd6f3 2020-07-31 stsp err = got_error_path(path, GOT_ERR_NO_TREE_ENTRY);
1895 776d4d29 2018-06-17 stsp goto done;
1896 776d4d29 2018-06-17 stsp }
1897 776d4d29 2018-06-17 stsp
1898 b7cd37e5 2018-11-18 stsp if (*s == '\0')
1899 67606321 2018-06-21 stsp break;
1900 67606321 2018-06-21 stsp
1901 776d4d29 2018-06-17 stsp seg = s + 1;
1902 65a9bbe9 2018-09-15 stsp seglen = 0;
1903 776d4d29 2018-06-17 stsp s++;
1904 776d4d29 2018-06-17 stsp if (*s) {
1905 776d4d29 2018-06-17 stsp err = got_object_open_as_tree(&next_tree, repo,
1906 56e0773d 2019-11-28 stsp &te->id);
1907 db37e2c0 2018-06-21 stsp te = NULL;
1908 776d4d29 2018-06-17 stsp if (err)
1909 776d4d29 2018-06-17 stsp goto done;
1910 67b631c9 2021-10-10 stsp if (subtree != tree)
1911 67b631c9 2021-10-10 stsp got_object_tree_close(subtree);
1912 67b631c9 2021-10-10 stsp subtree = next_tree;
1913 776d4d29 2018-06-17 stsp }
1914 776d4d29 2018-06-17 stsp }
1915 776d4d29 2018-06-17 stsp
1916 27d434c2 2018-09-15 stsp if (te) {
1917 56e0773d 2019-11-28 stsp *id = got_object_id_dup(&te->id);
1918 27d434c2 2018-09-15 stsp if (*id == NULL)
1919 638f9024 2019-05-13 stsp return got_error_from_errno("got_object_id_dup");
1920 67b631c9 2021-10-10 stsp if (mode)
1921 67b631c9 2021-10-10 stsp *mode = te->mode;
1922 27d434c2 2018-09-15 stsp } else
1923 b66cd6f3 2020-07-31 stsp err = got_error_path(path, GOT_ERR_NO_TREE_ENTRY);
1924 67b631c9 2021-10-10 stsp done:
1925 67b631c9 2021-10-10 stsp if (subtree && subtree != tree)
1926 67b631c9 2021-10-10 stsp got_object_tree_close(subtree);
1927 67b631c9 2021-10-10 stsp return err;
1928 67b631c9 2021-10-10 stsp }
1929 67b631c9 2021-10-10 stsp const struct got_error *
1930 67b631c9 2021-10-10 stsp got_object_id_by_path(struct got_object_id **id, struct got_repository *repo,
1931 67b631c9 2021-10-10 stsp struct got_object_id *commit_id, const char *path)
1932 67b631c9 2021-10-10 stsp {
1933 67b631c9 2021-10-10 stsp const struct got_error *err = NULL;
1934 67b631c9 2021-10-10 stsp struct got_commit_object *commit = NULL;
1935 67b631c9 2021-10-10 stsp struct got_tree_object *tree = NULL;
1936 67b631c9 2021-10-10 stsp
1937 67b631c9 2021-10-10 stsp *id = NULL;
1938 67b631c9 2021-10-10 stsp
1939 67b631c9 2021-10-10 stsp err = got_object_open_as_commit(&commit, repo, commit_id);
1940 67b631c9 2021-10-10 stsp if (err)
1941 67b631c9 2021-10-10 stsp goto done;
1942 67b631c9 2021-10-10 stsp
1943 67b631c9 2021-10-10 stsp /* Handle opening of root of commit's tree. */
1944 67b631c9 2021-10-10 stsp if (got_path_is_root_dir(path)) {
1945 67b631c9 2021-10-10 stsp *id = got_object_id_dup(commit->tree_id);
1946 67b631c9 2021-10-10 stsp if (*id == NULL)
1947 67b631c9 2021-10-10 stsp err = got_error_from_errno("got_object_id_dup");
1948 67b631c9 2021-10-10 stsp } else {
1949 67b631c9 2021-10-10 stsp err = got_object_open_as_tree(&tree, repo, commit->tree_id);
1950 67b631c9 2021-10-10 stsp if (err)
1951 67b631c9 2021-10-10 stsp goto done;
1952 67b631c9 2021-10-10 stsp err = got_object_tree_find_path(id, NULL, repo, tree, path);
1953 67b631c9 2021-10-10 stsp }
1954 776d4d29 2018-06-17 stsp done:
1955 776d4d29 2018-06-17 stsp if (commit)
1956 776d4d29 2018-06-17 stsp got_object_commit_close(commit);
1957 776d4d29 2018-06-17 stsp if (tree)
1958 776d4d29 2018-06-17 stsp got_object_tree_close(tree);
1959 776d4d29 2018-06-17 stsp return err;
1960 ac5f2b26 2020-05-05 stsp }
1961 ac5f2b26 2020-05-05 stsp
1962 ac5f2b26 2020-05-05 stsp /*
1963 ac5f2b26 2020-05-05 stsp * Normalize file mode bits to avoid false positive tree entry differences
1964 ac5f2b26 2020-05-05 stsp * in case tree entries have unexpected mode bits set.
1965 ac5f2b26 2020-05-05 stsp */
1966 ac5f2b26 2020-05-05 stsp static mode_t
1967 ac5f2b26 2020-05-05 stsp normalize_mode_for_comparison(mode_t mode)
1968 ac5f2b26 2020-05-05 stsp {
1969 ac5f2b26 2020-05-05 stsp /*
1970 ac5f2b26 2020-05-05 stsp * For directories, the only relevant bit is the IFDIR bit.
1971 ac5f2b26 2020-05-05 stsp * This allows us to detect paths changing from a directory
1972 ac5f2b26 2020-05-05 stsp * to a file and vice versa.
1973 ac5f2b26 2020-05-05 stsp */
1974 ac5f2b26 2020-05-05 stsp if (S_ISDIR(mode))
1975 ac5f2b26 2020-05-05 stsp return mode & S_IFDIR;
1976 40dde666 2020-07-23 stsp
1977 40dde666 2020-07-23 stsp /*
1978 40dde666 2020-07-23 stsp * For symlinks, the only relevant bit is the IFLNK bit.
1979 40dde666 2020-07-23 stsp * This allows us to detect paths changing from a symlinks
1980 40dde666 2020-07-23 stsp * to a file or directory and vice versa.
1981 40dde666 2020-07-23 stsp */
1982 40dde666 2020-07-23 stsp if (S_ISLNK(mode))
1983 40dde666 2020-07-23 stsp return mode & S_IFLNK;
1984 ac5f2b26 2020-05-05 stsp
1985 ac5f2b26 2020-05-05 stsp /* For files, the only change we care about is the executable bit. */
1986 ac5f2b26 2020-05-05 stsp return mode & S_IXUSR;
1987 68482ea3 2017-11-27 stsp }
1988 07862c20 2018-09-15 stsp
1989 07862c20 2018-09-15 stsp const struct got_error *
1990 07862c20 2018-09-15 stsp got_object_tree_path_changed(int *changed,
1991 07862c20 2018-09-15 stsp struct got_tree_object *tree01, struct got_tree_object *tree02,
1992 07862c20 2018-09-15 stsp const char *path, struct got_repository *repo)
1993 07862c20 2018-09-15 stsp {
1994 07862c20 2018-09-15 stsp const struct got_error *err = NULL;
1995 07862c20 2018-09-15 stsp struct got_tree_object *tree1 = NULL, *tree2 = NULL;
1996 07862c20 2018-09-15 stsp struct got_tree_entry *te1 = NULL, *te2 = NULL;
1997 65a9bbe9 2018-09-15 stsp const char *seg, *s;
1998 3b7f9878 2018-11-18 stsp size_t seglen;
1999 07862c20 2018-09-15 stsp
2000 07862c20 2018-09-15 stsp *changed = 0;
2001 07862c20 2018-09-15 stsp
2002 07862c20 2018-09-15 stsp /* We not do support comparing the root path. */
2003 61a7d79f 2020-02-29 stsp if (got_path_is_root_dir(path))
2004 63f810e6 2020-02-29 stsp return got_error_path(path, GOT_ERR_BAD_PATH);
2005 07862c20 2018-09-15 stsp
2006 07862c20 2018-09-15 stsp tree1 = tree01;
2007 07862c20 2018-09-15 stsp tree2 = tree02;
2008 65a9bbe9 2018-09-15 stsp s = path;
2009 61a7d79f 2020-02-29 stsp while (*s == '/')
2010 61a7d79f 2020-02-29 stsp s++;
2011 07862c20 2018-09-15 stsp seg = s;
2012 65a9bbe9 2018-09-15 stsp seglen = 0;
2013 3b7f9878 2018-11-18 stsp while (*s) {
2014 07862c20 2018-09-15 stsp struct got_tree_object *next_tree1, *next_tree2;
2015 ac5f2b26 2020-05-05 stsp mode_t mode1, mode2;
2016 07862c20 2018-09-15 stsp
2017 07862c20 2018-09-15 stsp if (*s != '/') {
2018 07862c20 2018-09-15 stsp s++;
2019 65a9bbe9 2018-09-15 stsp seglen++;
2020 07862c20 2018-09-15 stsp if (*s)
2021 07862c20 2018-09-15 stsp continue;
2022 07862c20 2018-09-15 stsp }
2023 07862c20 2018-09-15 stsp
2024 65a9bbe9 2018-09-15 stsp te1 = find_entry_by_name(tree1, seg, seglen);
2025 07862c20 2018-09-15 stsp if (te1 == NULL) {
2026 07862c20 2018-09-15 stsp err = got_error(GOT_ERR_NO_OBJ);
2027 07862c20 2018-09-15 stsp goto done;
2028 07862c20 2018-09-15 stsp }
2029 07862c20 2018-09-15 stsp
2030 e8bfb8f3 2020-12-18 stsp if (tree2)
2031 e8bfb8f3 2020-12-18 stsp te2 = find_entry_by_name(tree2, seg, seglen);
2032 07862c20 2018-09-15 stsp
2033 e8bfb8f3 2020-12-18 stsp if (te2) {
2034 e8bfb8f3 2020-12-18 stsp mode1 = normalize_mode_for_comparison(te1->mode);
2035 e8bfb8f3 2020-12-18 stsp mode2 = normalize_mode_for_comparison(te2->mode);
2036 e8bfb8f3 2020-12-18 stsp if (mode1 != mode2) {
2037 e8bfb8f3 2020-12-18 stsp *changed = 1;
2038 e8bfb8f3 2020-12-18 stsp goto done;
2039 e8bfb8f3 2020-12-18 stsp }
2040 e8bfb8f3 2020-12-18 stsp
2041 e8bfb8f3 2020-12-18 stsp if (got_object_id_cmp(&te1->id, &te2->id) == 0) {
2042 e8bfb8f3 2020-12-18 stsp *changed = 0;
2043 e8bfb8f3 2020-12-18 stsp goto done;
2044 e8bfb8f3 2020-12-18 stsp }
2045 07862c20 2018-09-15 stsp }
2046 07862c20 2018-09-15 stsp
2047 3b7f9878 2018-11-18 stsp if (*s == '\0') { /* final path element */
2048 07862c20 2018-09-15 stsp *changed = 1;
2049 07862c20 2018-09-15 stsp goto done;
2050 07862c20 2018-09-15 stsp }
2051 07862c20 2018-09-15 stsp
2052 07862c20 2018-09-15 stsp seg = s + 1;
2053 07862c20 2018-09-15 stsp s++;
2054 65a9bbe9 2018-09-15 stsp seglen = 0;
2055 07862c20 2018-09-15 stsp if (*s) {
2056 07862c20 2018-09-15 stsp err = got_object_open_as_tree(&next_tree1, repo,
2057 56e0773d 2019-11-28 stsp &te1->id);
2058 07862c20 2018-09-15 stsp te1 = NULL;
2059 07862c20 2018-09-15 stsp if (err)
2060 07862c20 2018-09-15 stsp goto done;
2061 a31cea73 2018-09-15 stsp if (tree1 != tree01)
2062 a31cea73 2018-09-15 stsp got_object_tree_close(tree1);
2063 07862c20 2018-09-15 stsp tree1 = next_tree1;
2064 07862c20 2018-09-15 stsp
2065 e8bfb8f3 2020-12-18 stsp if (te2) {
2066 e8bfb8f3 2020-12-18 stsp err = got_object_open_as_tree(&next_tree2, repo,
2067 e8bfb8f3 2020-12-18 stsp &te2->id);
2068 e8bfb8f3 2020-12-18 stsp te2 = NULL;
2069 e8bfb8f3 2020-12-18 stsp if (err)
2070 e8bfb8f3 2020-12-18 stsp goto done;
2071 e8bfb8f3 2020-12-18 stsp if (tree2 != tree02)
2072 e8bfb8f3 2020-12-18 stsp got_object_tree_close(tree2);
2073 e8bfb8f3 2020-12-18 stsp tree2 = next_tree2;
2074 e8bfb8f3 2020-12-18 stsp } else if (tree2) {
2075 e8bfb8f3 2020-12-18 stsp if (tree2 != tree02)
2076 e8bfb8f3 2020-12-18 stsp got_object_tree_close(tree2);
2077 e8bfb8f3 2020-12-18 stsp tree2 = NULL;
2078 e8bfb8f3 2020-12-18 stsp }
2079 07862c20 2018-09-15 stsp }
2080 07862c20 2018-09-15 stsp }
2081 07862c20 2018-09-15 stsp done:
2082 a31cea73 2018-09-15 stsp if (tree1 && tree1 != tree01)
2083 07862c20 2018-09-15 stsp got_object_tree_close(tree1);
2084 a31cea73 2018-09-15 stsp if (tree2 && tree2 != tree02)
2085 07862c20 2018-09-15 stsp got_object_tree_close(tree2);
2086 77880158 2018-11-04 stsp return err;
2087 77880158 2018-11-04 stsp }
2088 ed175427 2019-05-09 stsp
2089 ed175427 2019-05-09 stsp const struct got_error *
2090 ed175427 2019-05-09 stsp got_object_tree_entry_dup(struct got_tree_entry **new_te,
2091 ed175427 2019-05-09 stsp struct got_tree_entry *te)
2092 ed175427 2019-05-09 stsp {
2093 ed175427 2019-05-09 stsp const struct got_error *err = NULL;
2094 ed175427 2019-05-09 stsp
2095 ed175427 2019-05-09 stsp *new_te = calloc(1, sizeof(**new_te));
2096 ed175427 2019-05-09 stsp if (*new_te == NULL)
2097 638f9024 2019-05-13 stsp return got_error_from_errno("calloc");
2098 ed175427 2019-05-09 stsp
2099 ed175427 2019-05-09 stsp (*new_te)->mode = te->mode;
2100 56e0773d 2019-11-28 stsp memcpy((*new_te)->name, te->name, sizeof((*new_te)->name));
2101 56e0773d 2019-11-28 stsp memcpy(&(*new_te)->id, &te->id, sizeof((*new_te)->id));
2102 8c4eabf2 2019-05-10 stsp return err;
2103 63c5ca5d 2019-08-24 stsp }
2104 63c5ca5d 2019-08-24 stsp
2105 63c5ca5d 2019-08-24 stsp int
2106 56e0773d 2019-11-28 stsp got_object_tree_entry_is_submodule(struct got_tree_entry *te)
2107 63c5ca5d 2019-08-24 stsp {
2108 63c5ca5d 2019-08-24 stsp return (te->mode & S_IFMT) == (S_IFDIR | S_IFLNK);
2109 e40622f4 2020-07-23 stsp }
2110 e40622f4 2020-07-23 stsp
2111 e40622f4 2020-07-23 stsp int
2112 e40622f4 2020-07-23 stsp got_object_tree_entry_is_symlink(struct got_tree_entry *te)
2113 e40622f4 2020-07-23 stsp {
2114 e40622f4 2020-07-23 stsp /* S_IFDIR check avoids confusing symlinks with submodules. */
2115 e40622f4 2020-07-23 stsp return ((te->mode & (S_IFDIR | S_IFLNK)) == S_IFLNK);
2116 e40622f4 2020-07-23 stsp }
2117 e40622f4 2020-07-23 stsp
2118 e40622f4 2020-07-23 stsp static const struct got_error *
2119 e40622f4 2020-07-23 stsp resolve_symlink(char **link_target, const char *path,
2120 e40622f4 2020-07-23 stsp struct got_object_id *commit_id, struct got_repository *repo)
2121 e40622f4 2020-07-23 stsp {
2122 e40622f4 2020-07-23 stsp const struct got_error *err = NULL;
2123 dbdd6209 2020-10-19 stsp char buf[PATH_MAX];
2124 e40622f4 2020-07-23 stsp char *name, *parent_path = NULL;
2125 e40622f4 2020-07-23 stsp struct got_object_id *tree_obj_id = NULL;
2126 e40622f4 2020-07-23 stsp struct got_tree_object *tree = NULL;
2127 e40622f4 2020-07-23 stsp struct got_tree_entry *te = NULL;
2128 e40622f4 2020-07-23 stsp
2129 e40622f4 2020-07-23 stsp *link_target = NULL;
2130 559d127c 2020-07-23 stsp
2131 dbdd6209 2020-10-19 stsp if (strlcpy(buf, path, sizeof(buf)) >= sizeof(buf))
2132 dbdd6209 2020-10-19 stsp return got_error(GOT_ERR_NO_SPACE);
2133 dbdd6209 2020-10-19 stsp
2134 dbdd6209 2020-10-19 stsp name = basename(buf);
2135 e40622f4 2020-07-23 stsp if (name == NULL)
2136 e40622f4 2020-07-23 stsp return got_error_from_errno2("basename", path);
2137 e40622f4 2020-07-23 stsp
2138 e40622f4 2020-07-23 stsp err = got_path_dirname(&parent_path, path);
2139 e40622f4 2020-07-23 stsp if (err)
2140 e40622f4 2020-07-23 stsp return err;
2141 e40622f4 2020-07-23 stsp
2142 e40622f4 2020-07-23 stsp err = got_object_id_by_path(&tree_obj_id, repo, commit_id,
2143 e40622f4 2020-07-23 stsp parent_path);
2144 e40622f4 2020-07-23 stsp if (err) {
2145 e40622f4 2020-07-23 stsp if (err->code == GOT_ERR_NO_TREE_ENTRY) {
2146 e40622f4 2020-07-23 stsp /* Display the complete path in error message. */
2147 e40622f4 2020-07-23 stsp err = got_error_path(path, err->code);
2148 e40622f4 2020-07-23 stsp }
2149 e40622f4 2020-07-23 stsp goto done;
2150 e40622f4 2020-07-23 stsp }
2151 e40622f4 2020-07-23 stsp
2152 e40622f4 2020-07-23 stsp err = got_object_open_as_tree(&tree, repo, tree_obj_id);
2153 e40622f4 2020-07-23 stsp if (err)
2154 e40622f4 2020-07-23 stsp goto done;
2155 e40622f4 2020-07-23 stsp
2156 e40622f4 2020-07-23 stsp te = got_object_tree_find_entry(tree, name);
2157 e40622f4 2020-07-23 stsp if (te == NULL) {
2158 e40622f4 2020-07-23 stsp err = got_error_path(path, GOT_ERR_NO_TREE_ENTRY);
2159 e40622f4 2020-07-23 stsp goto done;
2160 e40622f4 2020-07-23 stsp }
2161 e40622f4 2020-07-23 stsp
2162 e40622f4 2020-07-23 stsp if (got_object_tree_entry_is_symlink(te)) {
2163 e40622f4 2020-07-23 stsp err = got_tree_entry_get_symlink_target(link_target, te, repo);
2164 e40622f4 2020-07-23 stsp if (err)
2165 e40622f4 2020-07-23 stsp goto done;
2166 e40622f4 2020-07-23 stsp if (!got_path_is_absolute(*link_target)) {
2167 e40622f4 2020-07-23 stsp char *abspath;
2168 e40622f4 2020-07-23 stsp if (asprintf(&abspath, "%s/%s", parent_path,
2169 e40622f4 2020-07-23 stsp *link_target) == -1) {
2170 e40622f4 2020-07-23 stsp err = got_error_from_errno("asprintf");
2171 e40622f4 2020-07-23 stsp goto done;
2172 e40622f4 2020-07-23 stsp }
2173 e40622f4 2020-07-23 stsp free(*link_target);
2174 e40622f4 2020-07-23 stsp *link_target = malloc(PATH_MAX);
2175 e40622f4 2020-07-23 stsp if (*link_target == NULL) {
2176 e40622f4 2020-07-23 stsp err = got_error_from_errno("malloc");
2177 e40622f4 2020-07-23 stsp goto done;
2178 e40622f4 2020-07-23 stsp }
2179 e40622f4 2020-07-23 stsp err = got_canonpath(abspath, *link_target, PATH_MAX);
2180 e40622f4 2020-07-23 stsp free(abspath);
2181 e40622f4 2020-07-23 stsp if (err)
2182 e40622f4 2020-07-23 stsp goto done;
2183 e40622f4 2020-07-23 stsp }
2184 e40622f4 2020-07-23 stsp }
2185 e40622f4 2020-07-23 stsp done:
2186 e40622f4 2020-07-23 stsp free(tree_obj_id);
2187 e40622f4 2020-07-23 stsp if (tree)
2188 e40622f4 2020-07-23 stsp got_object_tree_close(tree);
2189 e40622f4 2020-07-23 stsp if (err) {
2190 e40622f4 2020-07-23 stsp free(*link_target);
2191 e40622f4 2020-07-23 stsp *link_target = NULL;
2192 e40622f4 2020-07-23 stsp }
2193 e40622f4 2020-07-23 stsp return err;
2194 ca6e02ac 2020-01-07 stsp }
2195 ca6e02ac 2020-01-07 stsp
2196 ca6e02ac 2020-01-07 stsp const struct got_error *
2197 e40622f4 2020-07-23 stsp got_object_resolve_symlinks(char **link_target, const char *path,
2198 e40622f4 2020-07-23 stsp struct got_object_id *commit_id, struct got_repository *repo)
2199 e40622f4 2020-07-23 stsp {
2200 e40622f4 2020-07-23 stsp const struct got_error *err = NULL;
2201 e40622f4 2020-07-23 stsp char *next_target = NULL;
2202 e40622f4 2020-07-23 stsp int max_recursion = 40; /* matches Git */
2203 e40622f4 2020-07-23 stsp
2204 e40622f4 2020-07-23 stsp *link_target = NULL;
2205 e40622f4 2020-07-23 stsp
2206 e40622f4 2020-07-23 stsp do {
2207 e40622f4 2020-07-23 stsp err = resolve_symlink(&next_target,
2208 e40622f4 2020-07-23 stsp *link_target ? *link_target : path, commit_id, repo);
2209 e40622f4 2020-07-23 stsp if (err)
2210 e40622f4 2020-07-23 stsp break;
2211 e40622f4 2020-07-23 stsp if (next_target) {
2212 e40622f4 2020-07-23 stsp free(*link_target);
2213 e40622f4 2020-07-23 stsp if (--max_recursion == 0) {
2214 e40622f4 2020-07-23 stsp err = got_error_path(path, GOT_ERR_RECURSION);
2215 e40622f4 2020-07-23 stsp *link_target = NULL;
2216 e40622f4 2020-07-23 stsp break;
2217 e40622f4 2020-07-23 stsp }
2218 e40622f4 2020-07-23 stsp *link_target = next_target;
2219 e40622f4 2020-07-23 stsp }
2220 e40622f4 2020-07-23 stsp } while (next_target);
2221 e40622f4 2020-07-23 stsp
2222 e40622f4 2020-07-23 stsp return err;
2223 e40622f4 2020-07-23 stsp }
2224 e40622f4 2020-07-23 stsp
2225 e40622f4 2020-07-23 stsp const struct got_error *
2226 ca6e02ac 2020-01-07 stsp got_traverse_packed_commits(struct got_object_id_queue *traversed_commits,
2227 ca6e02ac 2020-01-07 stsp struct got_object_id *commit_id, const char *path,
2228 ca6e02ac 2020-01-07 stsp struct got_repository *repo)
2229 ca6e02ac 2020-01-07 stsp {
2230 ca6e02ac 2020-01-07 stsp const struct got_error *err = NULL;
2231 ca6e02ac 2020-01-07 stsp struct got_pack *pack = NULL;
2232 ca6e02ac 2020-01-07 stsp struct got_packidx *packidx = NULL;
2233 ca6e02ac 2020-01-07 stsp char *path_packfile = NULL;
2234 ca6e02ac 2020-01-07 stsp struct got_commit_object *changed_commit = NULL;
2235 ca6e02ac 2020-01-07 stsp struct got_object_id *changed_commit_id = NULL;
2236 ca6e02ac 2020-01-07 stsp int idx;
2237 ca6e02ac 2020-01-07 stsp
2238 ca6e02ac 2020-01-07 stsp err = got_repo_search_packidx(&packidx, &idx, repo, commit_id);
2239 ca6e02ac 2020-01-07 stsp if (err) {
2240 ca6e02ac 2020-01-07 stsp if (err->code != GOT_ERR_NO_OBJ)
2241 ca6e02ac 2020-01-07 stsp return err;
2242 ca6e02ac 2020-01-07 stsp return NULL;
2243 ca6e02ac 2020-01-07 stsp }
2244 ca6e02ac 2020-01-07 stsp
2245 aea75d87 2021-07-06 stsp err = got_packidx_get_packfile_path(&path_packfile,
2246 aea75d87 2021-07-06 stsp packidx->path_packidx);
2247 ca6e02ac 2020-01-07 stsp if (err)
2248 ca6e02ac 2020-01-07 stsp return err;
2249 ca6e02ac 2020-01-07 stsp
2250 ca6e02ac 2020-01-07 stsp pack = got_repo_get_cached_pack(repo, path_packfile);
2251 ca6e02ac 2020-01-07 stsp if (pack == NULL) {
2252 ca6e02ac 2020-01-07 stsp err = got_repo_cache_pack(&pack, repo, path_packfile, packidx);
2253 ca6e02ac 2020-01-07 stsp if (err)
2254 ca6e02ac 2020-01-07 stsp goto done;
2255 ca6e02ac 2020-01-07 stsp }
2256 ca6e02ac 2020-01-07 stsp
2257 ca6e02ac 2020-01-07 stsp if (pack->privsep_child == NULL) {
2258 ca6e02ac 2020-01-07 stsp err = start_pack_privsep_child(pack, packidx);
2259 ca6e02ac 2020-01-07 stsp if (err)
2260 ca6e02ac 2020-01-07 stsp goto done;
2261 ca6e02ac 2020-01-07 stsp }
2262 ca6e02ac 2020-01-07 stsp
2263 ca6e02ac 2020-01-07 stsp err = got_privsep_send_commit_traversal_request(
2264 ca6e02ac 2020-01-07 stsp pack->privsep_child->ibuf, commit_id, idx, path);
2265 ca6e02ac 2020-01-07 stsp if (err)
2266 ca6e02ac 2020-01-07 stsp goto done;
2267 ca6e02ac 2020-01-07 stsp
2268 ca6e02ac 2020-01-07 stsp err = got_privsep_recv_traversed_commits(&changed_commit,
2269 ca6e02ac 2020-01-07 stsp &changed_commit_id, traversed_commits, pack->privsep_child->ibuf);
2270 ca6e02ac 2020-01-07 stsp if (err)
2271 ca6e02ac 2020-01-07 stsp goto done;
2272 ca6e02ac 2020-01-07 stsp
2273 ca6e02ac 2020-01-07 stsp if (changed_commit) {
2274 ca6e02ac 2020-01-07 stsp /*
2275 ca6e02ac 2020-01-07 stsp * Cache the commit in which the path was changed.
2276 ca6e02ac 2020-01-07 stsp * This commit might be opened again soon.
2277 ca6e02ac 2020-01-07 stsp */
2278 ca6e02ac 2020-01-07 stsp changed_commit->refcnt++;
2279 ca6e02ac 2020-01-07 stsp err = got_repo_cache_commit(repo, changed_commit_id,
2280 ca6e02ac 2020-01-07 stsp changed_commit);
2281 ca6e02ac 2020-01-07 stsp got_object_commit_close(changed_commit);
2282 ca6e02ac 2020-01-07 stsp }
2283 ca6e02ac 2020-01-07 stsp done:
2284 ca6e02ac 2020-01-07 stsp free(path_packfile);
2285 ca6e02ac 2020-01-07 stsp free(changed_commit_id);
2286 ca6e02ac 2020-01-07 stsp return err;
2287 ed175427 2019-05-09 stsp }