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 2178c42e 2018-04-22 stsp #include <sys/uio.h>
21 2178c42e 2018-04-22 stsp #include <sys/socket.h>
22 2178c42e 2018-04-22 stsp #include <sys/wait.h>
23 876c234b 2018-09-10 stsp #include <sys/syslimits.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 ab9a70b2 2017-11-06 stsp #include <zlib.h>
34 ab9a70b2 2017-11-06 stsp #include <ctype.h>
35 ab9a70b2 2017-11-06 stsp #include <limits.h>
36 2178c42e 2018-04-22 stsp #include <imsg.h>
37 788c352e 2018-06-16 stsp #include <time.h>
38 d71d75ad 2017-11-05 stsp
39 ab9a70b2 2017-11-06 stsp #include "got_error.h"
40 d71d75ad 2017-11-05 stsp #include "got_object.h"
41 ab9a70b2 2017-11-06 stsp #include "got_repository.h"
42 511a516b 2018-05-19 stsp #include "got_opentemp.h"
43 324d37e7 2019-05-11 stsp #include "got_path.h"
44 d71d75ad 2017-11-05 stsp
45 718b3ab0 2018-03-17 stsp #include "got_lib_sha1.h"
46 718b3ab0 2018-03-17 stsp #include "got_lib_delta.h"
47 63581804 2018-07-09 stsp #include "got_lib_inflate.h"
48 718b3ab0 2018-03-17 stsp #include "got_lib_object.h"
49 2178c42e 2018-04-22 stsp #include "got_lib_privsep.h"
50 6bef87be 2018-09-11 stsp #include "got_lib_object_idcache.h"
51 6bef87be 2018-09-11 stsp #include "got_lib_object_cache.h"
52 ad242220 2018-09-08 stsp #include "got_lib_object_parse.h"
53 15a94983 2018-12-23 stsp #include "got_lib_pack.h"
54 7bb0daa1 2018-06-21 stsp #include "got_lib_repository.h"
55 1411938b 2018-02-12 stsp
56 ab9a70b2 2017-11-06 stsp #ifndef MIN
57 ab9a70b2 2017-11-06 stsp #define MIN(_a,_b) ((_a) < (_b) ? (_a) : (_b))
58 ab9a70b2 2017-11-06 stsp #endif
59 3235492e 2018-04-01 stsp
60 3235492e 2018-04-01 stsp struct got_object_id *
61 3235492e 2018-04-01 stsp got_object_get_id(struct got_object *obj)
62 3235492e 2018-04-01 stsp {
63 6402fb3c 2018-09-15 stsp return &obj->id;
64 bacc9935 2018-05-20 stsp }
65 bacc9935 2018-05-20 stsp
66 bacc9935 2018-05-20 stsp const struct got_error *
67 bacc9935 2018-05-20 stsp got_object_get_id_str(char **outbuf, struct got_object *obj)
68 bacc9935 2018-05-20 stsp {
69 bacc9935 2018-05-20 stsp return got_object_id_str(outbuf, &obj->id);
70 a1fd68d8 2018-01-12 stsp }
71 d71d75ad 2017-11-05 stsp
72 15a94983 2018-12-23 stsp const struct got_error *
73 15a94983 2018-12-23 stsp got_object_get_type(int *type, struct got_repository *repo,
74 15a94983 2018-12-23 stsp struct got_object_id *id)
75 a1fd68d8 2018-01-12 stsp {
76 15a94983 2018-12-23 stsp const struct got_error *err = NULL;
77 15a94983 2018-12-23 stsp struct got_object *obj;
78 15a94983 2018-12-23 stsp
79 15a94983 2018-12-23 stsp err = got_object_open(&obj, repo, id);
80 15a94983 2018-12-23 stsp if (err)
81 15a94983 2018-12-23 stsp return err;
82 15a94983 2018-12-23 stsp
83 b107e67f 2018-01-19 stsp switch (obj->type) {
84 a1fd68d8 2018-01-12 stsp case GOT_OBJ_TYPE_COMMIT:
85 a1fd68d8 2018-01-12 stsp case GOT_OBJ_TYPE_TREE:
86 a1fd68d8 2018-01-12 stsp case GOT_OBJ_TYPE_BLOB:
87 b107e67f 2018-01-19 stsp case GOT_OBJ_TYPE_TAG:
88 15a94983 2018-12-23 stsp *type = obj->type;
89 15a94983 2018-12-23 stsp break;
90 96f5e8b3 2018-01-23 stsp default:
91 15a94983 2018-12-23 stsp err = got_error(GOT_ERR_OBJ_TYPE);
92 96f5e8b3 2018-01-23 stsp break;
93 d71d75ad 2017-11-05 stsp }
94 d71d75ad 2017-11-05 stsp
95 15a94983 2018-12-23 stsp got_object_close(obj);
96 15a94983 2018-12-23 stsp return err;
97 d71d75ad 2017-11-05 stsp }
98 ab9a70b2 2017-11-06 stsp
99 90bdb554 2019-04-11 stsp const struct got_error *
100 90bdb554 2019-04-11 stsp got_object_get_path(char **path, struct got_object_id *id,
101 90bdb554 2019-04-11 stsp struct got_repository *repo)
102 ab9a70b2 2017-11-06 stsp {
103 ab9a70b2 2017-11-06 stsp const struct got_error *err = NULL;
104 7a132809 2018-07-23 stsp char *hex = NULL;
105 41d2888b 2019-08-11 stsp char *path_objects;
106 e6b1056e 2018-04-22 stsp
107 e6b1056e 2018-04-22 stsp *path = NULL;
108 ab9a70b2 2017-11-06 stsp
109 41d2888b 2019-08-11 stsp path_objects = got_repo_get_path_objects(repo);
110 ab9a70b2 2017-11-06 stsp if (path_objects == NULL)
111 638f9024 2019-05-13 stsp return got_error_from_errno("got_repo_get_path_objects");
112 ab9a70b2 2017-11-06 stsp
113 ef0981d5 2018-02-12 stsp err = got_object_id_str(&hex, id);
114 ef0981d5 2018-02-12 stsp if (err)
115 7a132809 2018-07-23 stsp goto done;
116 ab9a70b2 2017-11-06 stsp
117 d1cda826 2017-11-06 stsp if (asprintf(path, "%s/%.2x/%s", path_objects,
118 d1cda826 2017-11-06 stsp id->sha1[0], hex + 2) == -1)
119 638f9024 2019-05-13 stsp err = got_error_from_errno("asprintf");
120 ab9a70b2 2017-11-06 stsp
121 7a132809 2018-07-23 stsp done:
122 ef0981d5 2018-02-12 stsp free(hex);
123 d1cda826 2017-11-06 stsp free(path_objects);
124 d1cda826 2017-11-06 stsp return err;
125 d1cda826 2017-11-06 stsp }
126 d1cda826 2017-11-06 stsp
127 4ee4114f 2018-01-23 stsp static const struct got_error *
128 4796fb13 2018-12-23 stsp open_loose_object(int *fd, struct got_object_id *id,
129 4796fb13 2018-12-23 stsp struct got_repository *repo)
130 d1cda826 2017-11-06 stsp {
131 d1cda826 2017-11-06 stsp const struct got_error *err = NULL;
132 a1fd68d8 2018-01-12 stsp char *path;
133 6c00b545 2018-01-17 stsp
134 90bdb554 2019-04-11 stsp err = got_object_get_path(&path, id, repo);
135 d1cda826 2017-11-06 stsp if (err)
136 d1cda826 2017-11-06 stsp return err;
137 a5b57ccf 2019-04-11 stsp *fd = open(path, O_RDONLY | O_NOFOLLOW);
138 d5003b79 2018-04-22 stsp if (*fd == -1) {
139 e82b1d81 2019-07-27 stsp err = got_error_from_errno2("open", path);
140 6c00b545 2018-01-17 stsp goto done;
141 a1fd68d8 2018-01-12 stsp }
142 4558fcd4 2018-01-14 stsp done:
143 4558fcd4 2018-01-14 stsp free(path);
144 2090a03d 2018-09-09 stsp return err;
145 2090a03d 2018-09-09 stsp }
146 2090a03d 2018-09-09 stsp
147 2090a03d 2018-09-09 stsp static const struct got_error *
148 2090a03d 2018-09-09 stsp get_packfile_path(char **path_packfile, struct got_packidx *packidx)
149 2090a03d 2018-09-09 stsp {
150 2090a03d 2018-09-09 stsp size_t size;
151 2090a03d 2018-09-09 stsp
152 2090a03d 2018-09-09 stsp /* Packfile path contains ".pack" instead of ".idx", so add one byte. */
153 2090a03d 2018-09-09 stsp size = strlen(packidx->path_packidx) + 2;
154 2090a03d 2018-09-09 stsp if (size < GOT_PACKFILE_NAMELEN + 1)
155 2090a03d 2018-09-09 stsp return got_error(GOT_ERR_BAD_PATH);
156 2090a03d 2018-09-09 stsp
157 08451938 2018-11-05 stsp *path_packfile = malloc(size);
158 2090a03d 2018-09-09 stsp if (*path_packfile == NULL)
159 638f9024 2019-05-13 stsp return got_error_from_errno("malloc");
160 2090a03d 2018-09-09 stsp
161 2090a03d 2018-09-09 stsp /* Copy up to and excluding ".idx". */
162 2090a03d 2018-09-09 stsp if (strlcpy(*path_packfile, packidx->path_packidx,
163 2090a03d 2018-09-09 stsp size - strlen(GOT_PACKIDX_SUFFIX) - 1) >= size)
164 2090a03d 2018-09-09 stsp return got_error(GOT_ERR_NO_SPACE);
165 2090a03d 2018-09-09 stsp
166 2090a03d 2018-09-09 stsp if (strlcat(*path_packfile, GOT_PACKFILE_SUFFIX, size) >= size)
167 2090a03d 2018-09-09 stsp return got_error(GOT_ERR_NO_SPACE);
168 2090a03d 2018-09-09 stsp
169 2090a03d 2018-09-09 stsp return NULL;
170 a158c901 2018-12-23 stsp }
171 a158c901 2018-12-23 stsp
172 2090a03d 2018-09-09 stsp static const struct got_error *
173 a158c901 2018-12-23 stsp request_packed_object(struct got_object **obj, struct got_pack *pack, int idx,
174 a158c901 2018-12-23 stsp struct got_object_id *id)
175 a158c901 2018-12-23 stsp {
176 a158c901 2018-12-23 stsp const struct got_error *err = NULL;
177 a158c901 2018-12-23 stsp struct imsgbuf *ibuf = pack->privsep_child->ibuf;
178 a158c901 2018-12-23 stsp
179 a158c901 2018-12-23 stsp err = got_privsep_send_packed_obj_req(ibuf, idx, id);
180 a158c901 2018-12-23 stsp if (err)
181 a158c901 2018-12-23 stsp return err;
182 a158c901 2018-12-23 stsp
183 a158c901 2018-12-23 stsp err = got_privsep_recv_obj(obj, ibuf);
184 a158c901 2018-12-23 stsp if (err)
185 a158c901 2018-12-23 stsp return err;
186 a158c901 2018-12-23 stsp
187 a158c901 2018-12-23 stsp memcpy(&(*obj)->id, id, sizeof((*obj)->id));
188 a158c901 2018-12-23 stsp
189 a158c901 2018-12-23 stsp return NULL;
190 b48e2ddb 2019-05-22 stsp }
191 b48e2ddb 2019-05-22 stsp
192 da506691 2019-05-22 stsp static void
193 b48e2ddb 2019-05-22 stsp set_max_datasize(void)
194 b48e2ddb 2019-05-22 stsp {
195 b48e2ddb 2019-05-22 stsp struct rlimit rl;
196 b48e2ddb 2019-05-22 stsp
197 b48e2ddb 2019-05-22 stsp if (getrlimit(RLIMIT_DATA, &rl) != 0)
198 b48e2ddb 2019-05-22 stsp return;
199 b48e2ddb 2019-05-22 stsp
200 b48e2ddb 2019-05-22 stsp rl.rlim_cur = rl.rlim_max;
201 b48e2ddb 2019-05-22 stsp setrlimit(RLIMIT_DATA, &rl);
202 a158c901 2018-12-23 stsp }
203 a158c901 2018-12-23 stsp
204 a158c901 2018-12-23 stsp static const struct got_error *
205 711fb6e8 2018-12-23 stsp start_pack_privsep_child(struct got_pack *pack, struct got_packidx *packidx)
206 a158c901 2018-12-23 stsp {
207 a158c901 2018-12-23 stsp const struct got_error *err = NULL;
208 a158c901 2018-12-23 stsp int imsg_fds[2];
209 a158c901 2018-12-23 stsp pid_t pid;
210 a158c901 2018-12-23 stsp struct imsgbuf *ibuf;
211 a158c901 2018-12-23 stsp
212 a158c901 2018-12-23 stsp ibuf = calloc(1, sizeof(*ibuf));
213 a158c901 2018-12-23 stsp if (ibuf == NULL)
214 638f9024 2019-05-13 stsp return got_error_from_errno("calloc");
215 a158c901 2018-12-23 stsp
216 a158c901 2018-12-23 stsp pack->privsep_child = calloc(1, sizeof(*pack->privsep_child));
217 a158c901 2018-12-23 stsp if (pack->privsep_child == NULL) {
218 638f9024 2019-05-13 stsp err = got_error_from_errno("calloc");
219 a158c901 2018-12-23 stsp free(ibuf);
220 a158c901 2018-12-23 stsp return err;
221 a158c901 2018-12-23 stsp }
222 a158c901 2018-12-23 stsp
223 a158c901 2018-12-23 stsp if (socketpair(AF_UNIX, SOCK_STREAM, PF_UNSPEC, imsg_fds) == -1) {
224 638f9024 2019-05-13 stsp err = got_error_from_errno("socketpair");
225 a158c901 2018-12-23 stsp goto done;
226 a158c901 2018-12-23 stsp }
227 a158c901 2018-12-23 stsp
228 a158c901 2018-12-23 stsp pid = fork();
229 a158c901 2018-12-23 stsp if (pid == -1) {
230 638f9024 2019-05-13 stsp err = got_error_from_errno("fork");
231 a158c901 2018-12-23 stsp goto done;
232 a158c901 2018-12-23 stsp } else if (pid == 0) {
233 b48e2ddb 2019-05-22 stsp set_max_datasize();
234 aba9c984 2019-09-08 stsp got_privsep_exec_child(imsg_fds, GOT_PATH_PROG_READ_PACK,
235 a158c901 2018-12-23 stsp pack->path_packfile);
236 a158c901 2018-12-23 stsp /* not reached */
237 a158c901 2018-12-23 stsp }
238 a158c901 2018-12-23 stsp
239 3a6ce05a 2019-02-11 stsp if (close(imsg_fds[1]) != 0)
240 638f9024 2019-05-13 stsp return got_error_from_errno("close");
241 a158c901 2018-12-23 stsp pack->privsep_child->imsg_fd = imsg_fds[0];
242 a158c901 2018-12-23 stsp pack->privsep_child->pid = pid;
243 a158c901 2018-12-23 stsp imsg_init(ibuf, imsg_fds[0]);
244 a158c901 2018-12-23 stsp pack->privsep_child->ibuf = ibuf;
245 a158c901 2018-12-23 stsp
246 a158c901 2018-12-23 stsp err = got_privsep_init_pack_child(ibuf, pack, packidx);
247 a158c901 2018-12-23 stsp if (err) {
248 a158c901 2018-12-23 stsp const struct got_error *child_err;
249 a158c901 2018-12-23 stsp err = got_privsep_send_stop(pack->privsep_child->imsg_fd);
250 a158c901 2018-12-23 stsp child_err = got_privsep_wait_for_child(
251 a158c901 2018-12-23 stsp pack->privsep_child->pid);
252 a158c901 2018-12-23 stsp if (child_err && err == NULL)
253 a158c901 2018-12-23 stsp err = child_err;
254 a158c901 2018-12-23 stsp }
255 a158c901 2018-12-23 stsp done:
256 a158c901 2018-12-23 stsp if (err) {
257 a158c901 2018-12-23 stsp free(ibuf);
258 a158c901 2018-12-23 stsp free(pack->privsep_child);
259 a158c901 2018-12-23 stsp pack->privsep_child = NULL;
260 711fb6e8 2018-12-23 stsp }
261 a158c901 2018-12-23 stsp return err;
262 a158c901 2018-12-23 stsp }
263 a158c901 2018-12-23 stsp
264 711fb6e8 2018-12-23 stsp static const struct got_error *
265 711fb6e8 2018-12-23 stsp read_packed_object_privsep(struct got_object **obj,
266 711fb6e8 2018-12-23 stsp struct got_repository *repo, struct got_pack *pack,
267 711fb6e8 2018-12-23 stsp struct got_packidx *packidx, int idx, struct got_object_id *id)
268 711fb6e8 2018-12-23 stsp {
269 711fb6e8 2018-12-23 stsp const struct got_error *err = NULL;
270 a158c901 2018-12-23 stsp
271 711fb6e8 2018-12-23 stsp if (pack->privsep_child)
272 711fb6e8 2018-12-23 stsp return request_packed_object(obj, pack, idx, id);
273 711fb6e8 2018-12-23 stsp
274 711fb6e8 2018-12-23 stsp err = start_pack_privsep_child(pack, packidx);
275 711fb6e8 2018-12-23 stsp if (err)
276 711fb6e8 2018-12-23 stsp return err;
277 711fb6e8 2018-12-23 stsp
278 711fb6e8 2018-12-23 stsp return request_packed_object(obj, pack, idx, id);
279 711fb6e8 2018-12-23 stsp }
280 711fb6e8 2018-12-23 stsp
281 711fb6e8 2018-12-23 stsp
282 a158c901 2018-12-23 stsp static const struct got_error *
283 2090a03d 2018-09-09 stsp open_packed_object(struct got_object **obj, struct got_object_id *id,
284 2090a03d 2018-09-09 stsp struct got_repository *repo)
285 2090a03d 2018-09-09 stsp {
286 2090a03d 2018-09-09 stsp const struct got_error *err = NULL;
287 2090a03d 2018-09-09 stsp struct got_pack *pack = NULL;
288 2090a03d 2018-09-09 stsp struct got_packidx *packidx = NULL;
289 2090a03d 2018-09-09 stsp int idx;
290 2090a03d 2018-09-09 stsp char *path_packfile;
291 2090a03d 2018-09-09 stsp
292 2090a03d 2018-09-09 stsp err = got_repo_search_packidx(&packidx, &idx, repo, id);
293 2090a03d 2018-09-09 stsp if (err)
294 2090a03d 2018-09-09 stsp return err;
295 2090a03d 2018-09-09 stsp
296 2090a03d 2018-09-09 stsp err = get_packfile_path(&path_packfile, packidx);
297 2090a03d 2018-09-09 stsp if (err)
298 2090a03d 2018-09-09 stsp return err;
299 2090a03d 2018-09-09 stsp
300 2090a03d 2018-09-09 stsp pack = got_repo_get_cached_pack(repo, path_packfile);
301 2090a03d 2018-09-09 stsp if (pack == NULL) {
302 2090a03d 2018-09-09 stsp err = got_repo_cache_pack(&pack, repo, path_packfile, packidx);
303 2090a03d 2018-09-09 stsp if (err)
304 2090a03d 2018-09-09 stsp goto done;
305 2090a03d 2018-09-09 stsp }
306 2090a03d 2018-09-09 stsp
307 a158c901 2018-12-23 stsp err = read_packed_object_privsep(obj, repo, pack, packidx, idx, id);
308 2090a03d 2018-09-09 stsp if (err)
309 2090a03d 2018-09-09 stsp goto done;
310 2090a03d 2018-09-09 stsp done:
311 2090a03d 2018-09-09 stsp free(path_packfile);
312 4558fcd4 2018-01-14 stsp return err;
313 9f2369b0 2018-12-24 stsp }
314 9f2369b0 2018-12-24 stsp
315 9f2369b0 2018-12-24 stsp static const struct got_error *
316 9f2369b0 2018-12-24 stsp request_object(struct got_object **obj, struct got_repository *repo, int fd)
317 9f2369b0 2018-12-24 stsp {
318 9f2369b0 2018-12-24 stsp const struct got_error *err = NULL;
319 9f2369b0 2018-12-24 stsp struct imsgbuf *ibuf;
320 9f2369b0 2018-12-24 stsp
321 9f2369b0 2018-12-24 stsp ibuf = repo->privsep_children[GOT_REPO_PRIVSEP_CHILD_OBJECT].ibuf;
322 9f2369b0 2018-12-24 stsp
323 aea5f015 2018-12-24 stsp err = got_privsep_send_obj_req(ibuf, fd);
324 9f2369b0 2018-12-24 stsp if (err)
325 9f2369b0 2018-12-24 stsp return err;
326 9f2369b0 2018-12-24 stsp
327 9f2369b0 2018-12-24 stsp return got_privsep_recv_obj(obj, ibuf);
328 9f2369b0 2018-12-24 stsp }
329 9f2369b0 2018-12-24 stsp
330 9f2369b0 2018-12-24 stsp static const struct got_error *
331 9f2369b0 2018-12-24 stsp read_object_header_privsep(struct got_object **obj, struct got_repository *repo,
332 9f2369b0 2018-12-24 stsp int obj_fd)
333 9f2369b0 2018-12-24 stsp {
334 ddc7b220 2019-09-08 stsp const struct got_error *err;
335 9f2369b0 2018-12-24 stsp int imsg_fds[2];
336 9f2369b0 2018-12-24 stsp pid_t pid;
337 9f2369b0 2018-12-24 stsp struct imsgbuf *ibuf;
338 9f2369b0 2018-12-24 stsp
339 9f2369b0 2018-12-24 stsp if (repo->privsep_children[GOT_REPO_PRIVSEP_CHILD_OBJECT].imsg_fd != -1)
340 9f2369b0 2018-12-24 stsp return request_object(obj, repo, obj_fd);
341 9f2369b0 2018-12-24 stsp
342 9f2369b0 2018-12-24 stsp ibuf = calloc(1, sizeof(*ibuf));
343 9f2369b0 2018-12-24 stsp if (ibuf == NULL)
344 638f9024 2019-05-13 stsp return got_error_from_errno("calloc");
345 9f2369b0 2018-12-24 stsp
346 ddc7b220 2019-09-08 stsp if (socketpair(AF_UNIX, SOCK_STREAM, PF_UNSPEC, imsg_fds) == -1) {
347 ddc7b220 2019-09-08 stsp err = got_error_from_errno("socketpair");
348 ddc7b220 2019-09-08 stsp free(ibuf);
349 ddc7b220 2019-09-08 stsp return err;
350 ddc7b220 2019-09-08 stsp }
351 9f2369b0 2018-12-24 stsp
352 9f2369b0 2018-12-24 stsp pid = fork();
353 ddc7b220 2019-09-08 stsp if (pid == -1) {
354 ddc7b220 2019-09-08 stsp err = got_error_from_errno("fork");
355 ddc7b220 2019-09-08 stsp free(ibuf);
356 ddc7b220 2019-09-08 stsp return err;
357 ddc7b220 2019-09-08 stsp }
358 9f2369b0 2018-12-24 stsp else if (pid == 0) {
359 aba9c984 2019-09-08 stsp got_privsep_exec_child(imsg_fds, GOT_PATH_PROG_READ_OBJECT,
360 9f2369b0 2018-12-24 stsp repo->path);
361 9f2369b0 2018-12-24 stsp /* not reached */
362 9f2369b0 2018-12-24 stsp }
363 9f2369b0 2018-12-24 stsp
364 ddc7b220 2019-09-08 stsp if (close(imsg_fds[1]) != 0) {
365 ddc7b220 2019-09-08 stsp err = got_error_from_errno("close");
366 ddc7b220 2019-09-08 stsp free(ibuf);
367 ddc7b220 2019-09-08 stsp return err;
368 ddc7b220 2019-09-08 stsp }
369 9f2369b0 2018-12-24 stsp repo->privsep_children[GOT_REPO_PRIVSEP_CHILD_OBJECT].imsg_fd =
370 9f2369b0 2018-12-24 stsp imsg_fds[0];
371 9f2369b0 2018-12-24 stsp repo->privsep_children[GOT_REPO_PRIVSEP_CHILD_OBJECT].pid = pid;
372 9f2369b0 2018-12-24 stsp imsg_init(ibuf, imsg_fds[0]);
373 9f2369b0 2018-12-24 stsp repo->privsep_children[GOT_REPO_PRIVSEP_CHILD_OBJECT].ibuf = ibuf;
374 9f2369b0 2018-12-24 stsp
375 9f2369b0 2018-12-24 stsp return request_object(obj, repo, obj_fd);
376 4558fcd4 2018-01-14 stsp }
377 a1fd68d8 2018-01-12 stsp
378 9f2369b0 2018-12-24 stsp
379 4558fcd4 2018-01-14 stsp const struct got_error *
380 4558fcd4 2018-01-14 stsp got_object_open(struct got_object **obj, struct got_repository *repo,
381 4558fcd4 2018-01-14 stsp struct got_object_id *id)
382 4558fcd4 2018-01-14 stsp {
383 6c00b545 2018-01-17 stsp const struct got_error *err = NULL;
384 6c00b545 2018-01-17 stsp char *path;
385 2178c42e 2018-04-22 stsp int fd;
386 7bb0daa1 2018-06-21 stsp
387 7bb0daa1 2018-06-21 stsp *obj = got_repo_get_cached_object(repo, id);
388 7bb0daa1 2018-06-21 stsp if (*obj != NULL) {
389 7bb0daa1 2018-06-21 stsp (*obj)->refcnt++;
390 7bb0daa1 2018-06-21 stsp return NULL;
391 7bb0daa1 2018-06-21 stsp }
392 4558fcd4 2018-01-14 stsp
393 e82b1d81 2019-07-27 stsp err = open_packed_object(obj, id, repo);
394 e82b1d81 2019-07-27 stsp if (err && err->code != GOT_ERR_NO_OBJ)
395 e82b1d81 2019-07-27 stsp return err;
396 e82b1d81 2019-07-27 stsp if (*obj) {
397 e82b1d81 2019-07-27 stsp (*obj)->refcnt++;
398 e82b1d81 2019-07-27 stsp return got_repo_cache_object(repo, id, *obj);
399 e82b1d81 2019-07-27 stsp }
400 e82b1d81 2019-07-27 stsp
401 90bdb554 2019-04-11 stsp err = got_object_get_path(&path, id, repo);
402 4558fcd4 2018-01-14 stsp if (err)
403 4558fcd4 2018-01-14 stsp return err;
404 4558fcd4 2018-01-14 stsp
405 a5b57ccf 2019-04-11 stsp fd = open(path, O_RDONLY | O_NOFOLLOW);
406 2178c42e 2018-04-22 stsp if (fd == -1) {
407 e82b1d81 2019-07-27 stsp if (errno == ENOENT)
408 e82b1d81 2019-07-27 stsp err = got_error_no_obj(id);
409 e82b1d81 2019-07-27 stsp else
410 638f9024 2019-05-13 stsp err = got_error_from_errno2("open", path);
411 e82b1d81 2019-07-27 stsp goto done;
412 6c00b545 2018-01-17 stsp } else {
413 9f2369b0 2018-12-24 stsp err = read_object_header_privsep(obj, repo, fd);
414 6c00b545 2018-01-17 stsp if (err)
415 6c00b545 2018-01-17 stsp goto done;
416 ab9a70b2 2017-11-06 stsp memcpy((*obj)->id.sha1, id->sha1, SHA1_DIGEST_LENGTH);
417 6c00b545 2018-01-17 stsp }
418 7bb0daa1 2018-06-21 stsp
419 59790a32 2018-09-15 stsp (*obj)->refcnt++;
420 59790a32 2018-09-15 stsp err = got_repo_cache_object(repo, id, *obj);
421 6c00b545 2018-01-17 stsp done:
422 6c00b545 2018-01-17 stsp free(path);
423 ab9a70b2 2017-11-06 stsp return err;
424 6c00b545 2018-01-17 stsp
425 ab9a70b2 2017-11-06 stsp }
426 ab9a70b2 2017-11-06 stsp
427 6dfa2fd3 2018-02-12 stsp const struct got_error *
428 6dfa2fd3 2018-02-12 stsp got_object_open_by_id_str(struct got_object **obj, struct got_repository *repo,
429 6dfa2fd3 2018-02-12 stsp const char *id_str)
430 6dfa2fd3 2018-02-12 stsp {
431 6dfa2fd3 2018-02-12 stsp struct got_object_id id;
432 6dfa2fd3 2018-02-12 stsp
433 6dfa2fd3 2018-02-12 stsp if (!got_parse_sha1_digest(id.sha1, id_str))
434 6dd1ece6 2019-11-10 stsp return got_error_path(id_str, GOT_ERR_BAD_OBJ_ID_STR);
435 6dfa2fd3 2018-02-12 stsp
436 6dfa2fd3 2018-02-12 stsp return got_object_open(obj, repo, &id);
437 15a94983 2018-12-23 stsp }
438 15a94983 2018-12-23 stsp
439 15a94983 2018-12-23 stsp const struct got_error *
440 15a94983 2018-12-23 stsp got_object_resolve_id_str(struct got_object_id **id,
441 15a94983 2018-12-23 stsp struct got_repository *repo, const char *id_str)
442 15a94983 2018-12-23 stsp {
443 15a94983 2018-12-23 stsp const struct got_error *err = NULL;
444 15a94983 2018-12-23 stsp struct got_object *obj;
445 15a94983 2018-12-23 stsp
446 15a94983 2018-12-23 stsp err = got_object_open_by_id_str(&obj, repo, id_str);
447 15a94983 2018-12-23 stsp if (err)
448 15a94983 2018-12-23 stsp return err;
449 15a94983 2018-12-23 stsp
450 15a94983 2018-12-23 stsp *id = got_object_id_dup(got_object_get_id(obj));
451 15a94983 2018-12-23 stsp got_object_close(obj);
452 15a94983 2018-12-23 stsp if (*id == NULL)
453 638f9024 2019-05-13 stsp return got_error_from_errno("got_object_id_dup");
454 15a94983 2018-12-23 stsp
455 15a94983 2018-12-23 stsp return NULL;
456 434025f3 2018-09-16 stsp }
457 434025f3 2018-09-16 stsp
458 434025f3 2018-09-16 stsp static const struct got_error *
459 a158c901 2018-12-23 stsp request_packed_commit(struct got_commit_object **commit, struct got_pack *pack,
460 a158c901 2018-12-23 stsp int pack_idx, struct got_object_id *id)
461 a158c901 2018-12-23 stsp {
462 a158c901 2018-12-23 stsp const struct got_error *err = NULL;
463 a158c901 2018-12-23 stsp
464 a158c901 2018-12-23 stsp err = got_privsep_send_commit_req(pack->privsep_child->ibuf, -1, id,
465 a158c901 2018-12-23 stsp pack_idx);
466 a158c901 2018-12-23 stsp if (err)
467 a158c901 2018-12-23 stsp return err;
468 a158c901 2018-12-23 stsp
469 ca6e02ac 2020-01-07 stsp err = got_privsep_recv_commit(commit, pack->privsep_child->ibuf);
470 ca6e02ac 2020-01-07 stsp if (err)
471 ca6e02ac 2020-01-07 stsp return err;
472 ca6e02ac 2020-01-07 stsp
473 ca6e02ac 2020-01-07 stsp (*commit)->flags |= GOT_COMMIT_FLAG_PACKED;
474 ca6e02ac 2020-01-07 stsp return NULL;
475 a158c901 2018-12-23 stsp }
476 a158c901 2018-12-23 stsp
477 a158c901 2018-12-23 stsp static const struct got_error *
478 a158c901 2018-12-23 stsp read_packed_commit_privsep(struct got_commit_object **commit,
479 a158c901 2018-12-23 stsp struct got_pack *pack, struct got_packidx *packidx, int idx,
480 a158c901 2018-12-23 stsp struct got_object_id *id)
481 a158c901 2018-12-23 stsp {
482 a158c901 2018-12-23 stsp const struct got_error *err = NULL;
483 a158c901 2018-12-23 stsp
484 a158c901 2018-12-23 stsp if (pack->privsep_child)
485 a158c901 2018-12-23 stsp return request_packed_commit(commit, pack, idx, id);
486 a158c901 2018-12-23 stsp
487 711fb6e8 2018-12-23 stsp err = start_pack_privsep_child(pack, packidx);
488 711fb6e8 2018-12-23 stsp if (err)
489 a158c901 2018-12-23 stsp return err;
490 a158c901 2018-12-23 stsp
491 711fb6e8 2018-12-23 stsp return request_packed_commit(commit, pack, idx, id);
492 9f2369b0 2018-12-24 stsp }
493 9f2369b0 2018-12-24 stsp
494 9f2369b0 2018-12-24 stsp static const struct got_error *
495 9f2369b0 2018-12-24 stsp request_commit(struct got_commit_object **commit, struct got_repository *repo,
496 9f2369b0 2018-12-24 stsp int fd)
497 9f2369b0 2018-12-24 stsp {
498 9f2369b0 2018-12-24 stsp const struct got_error *err = NULL;
499 9f2369b0 2018-12-24 stsp struct imsgbuf *ibuf;
500 9f2369b0 2018-12-24 stsp
501 9f2369b0 2018-12-24 stsp ibuf = repo->privsep_children[GOT_REPO_PRIVSEP_CHILD_COMMIT].ibuf;
502 9f2369b0 2018-12-24 stsp
503 9f2369b0 2018-12-24 stsp err = got_privsep_send_commit_req(ibuf, fd, NULL, -1);
504 9f2369b0 2018-12-24 stsp if (err)
505 9f2369b0 2018-12-24 stsp return err;
506 9f2369b0 2018-12-24 stsp
507 9f2369b0 2018-12-24 stsp return got_privsep_recv_commit(commit, ibuf);
508 9f2369b0 2018-12-24 stsp }
509 9f2369b0 2018-12-24 stsp
510 9f2369b0 2018-12-24 stsp static const struct got_error *
511 9f2369b0 2018-12-24 stsp read_commit_privsep(struct got_commit_object **commit, int obj_fd,
512 9f2369b0 2018-12-24 stsp struct got_repository *repo)
513 9f2369b0 2018-12-24 stsp {
514 ddc7b220 2019-09-08 stsp const struct got_error *err;
515 9f2369b0 2018-12-24 stsp int imsg_fds[2];
516 9f2369b0 2018-12-24 stsp pid_t pid;
517 9f2369b0 2018-12-24 stsp struct imsgbuf *ibuf;
518 9f2369b0 2018-12-24 stsp
519 9f2369b0 2018-12-24 stsp if (repo->privsep_children[GOT_REPO_PRIVSEP_CHILD_COMMIT].imsg_fd != -1)
520 9f2369b0 2018-12-24 stsp return request_commit(commit, repo, obj_fd);
521 9f2369b0 2018-12-24 stsp
522 9f2369b0 2018-12-24 stsp ibuf = calloc(1, sizeof(*ibuf));
523 9f2369b0 2018-12-24 stsp if (ibuf == NULL)
524 638f9024 2019-05-13 stsp return got_error_from_errno("calloc");
525 9f2369b0 2018-12-24 stsp
526 ddc7b220 2019-09-08 stsp if (socketpair(AF_UNIX, SOCK_STREAM, PF_UNSPEC, imsg_fds) == -1) {
527 ddc7b220 2019-09-08 stsp err = got_error_from_errno("socketpair");
528 ddc7b220 2019-09-08 stsp free(ibuf);
529 ddc7b220 2019-09-08 stsp return err;
530 ddc7b220 2019-09-08 stsp }
531 9f2369b0 2018-12-24 stsp
532 9f2369b0 2018-12-24 stsp pid = fork();
533 ddc7b220 2019-09-08 stsp if (pid == -1) {
534 ddc7b220 2019-09-08 stsp err = got_error_from_errno("fork");
535 ddc7b220 2019-09-08 stsp free(ibuf);
536 ddc7b220 2019-09-08 stsp return err;
537 ddc7b220 2019-09-08 stsp }
538 9f2369b0 2018-12-24 stsp else if (pid == 0) {
539 aba9c984 2019-09-08 stsp got_privsep_exec_child(imsg_fds, GOT_PATH_PROG_READ_COMMIT,
540 9f2369b0 2018-12-24 stsp repo->path);
541 9f2369b0 2018-12-24 stsp /* not reached */
542 9f2369b0 2018-12-24 stsp }
543 9f2369b0 2018-12-24 stsp
544 ddc7b220 2019-09-08 stsp if (close(imsg_fds[1]) != 0) {
545 ddc7b220 2019-09-08 stsp err = got_error_from_errno("close");
546 ddc7b220 2019-09-08 stsp free(ibuf);
547 ddc7b220 2019-09-08 stsp return err;
548 ddc7b220 2019-09-08 stsp }
549 9f2369b0 2018-12-24 stsp repo->privsep_children[GOT_REPO_PRIVSEP_CHILD_COMMIT].imsg_fd =
550 9f2369b0 2018-12-24 stsp imsg_fds[0];
551 9f2369b0 2018-12-24 stsp repo->privsep_children[GOT_REPO_PRIVSEP_CHILD_COMMIT].pid = pid;
552 9f2369b0 2018-12-24 stsp imsg_init(ibuf, imsg_fds[0]);
553 9f2369b0 2018-12-24 stsp repo->privsep_children[GOT_REPO_PRIVSEP_CHILD_COMMIT].ibuf = ibuf;
554 9f2369b0 2018-12-24 stsp
555 9f2369b0 2018-12-24 stsp return request_commit(commit, repo, obj_fd);
556 a158c901 2018-12-23 stsp }
557 a158c901 2018-12-23 stsp
558 9f2369b0 2018-12-24 stsp
559 a158c901 2018-12-23 stsp static const struct got_error *
560 434025f3 2018-09-16 stsp open_commit(struct got_commit_object **commit,
561 1785f84a 2018-12-23 stsp struct got_repository *repo, struct got_object_id *id, int check_cache)
562 434025f3 2018-09-16 stsp {
563 434025f3 2018-09-16 stsp const struct got_error *err = NULL;
564 1785f84a 2018-12-23 stsp struct got_packidx *packidx = NULL;
565 e82b1d81 2019-07-27 stsp int idx;
566 8d2c5ea3 2019-08-13 stsp char *path_packfile = NULL;
567 434025f3 2018-09-16 stsp
568 434025f3 2018-09-16 stsp if (check_cache) {
569 1785f84a 2018-12-23 stsp *commit = got_repo_get_cached_commit(repo, id);
570 434025f3 2018-09-16 stsp if (*commit != NULL) {
571 434025f3 2018-09-16 stsp (*commit)->refcnt++;
572 434025f3 2018-09-16 stsp return NULL;
573 434025f3 2018-09-16 stsp }
574 434025f3 2018-09-16 stsp } else
575 434025f3 2018-09-16 stsp *commit = NULL;
576 434025f3 2018-09-16 stsp
577 e82b1d81 2019-07-27 stsp err = got_repo_search_packidx(&packidx, &idx, repo, id);
578 e82b1d81 2019-07-27 stsp if (err == NULL) {
579 1785f84a 2018-12-23 stsp struct got_pack *pack = NULL;
580 34f480ff 2019-07-27 stsp
581 1785f84a 2018-12-23 stsp err = get_packfile_path(&path_packfile, packidx);
582 1785f84a 2018-12-23 stsp if (err)
583 1785f84a 2018-12-23 stsp return err;
584 1785f84a 2018-12-23 stsp
585 1785f84a 2018-12-23 stsp pack = got_repo_get_cached_pack(repo, path_packfile);
586 434025f3 2018-09-16 stsp if (pack == NULL) {
587 1785f84a 2018-12-23 stsp err = got_repo_cache_pack(&pack, repo, path_packfile,
588 1785f84a 2018-12-23 stsp packidx);
589 434025f3 2018-09-16 stsp if (err)
590 8d2c5ea3 2019-08-13 stsp goto done;
591 434025f3 2018-09-16 stsp }
592 a158c901 2018-12-23 stsp err = read_packed_commit_privsep(commit, pack,
593 1785f84a 2018-12-23 stsp packidx, idx, id);
594 e82b1d81 2019-07-27 stsp } else if (err->code == GOT_ERR_NO_OBJ) {
595 e82b1d81 2019-07-27 stsp int fd;
596 e82b1d81 2019-07-27 stsp
597 e82b1d81 2019-07-27 stsp err = open_loose_object(&fd, id, repo);
598 e82b1d81 2019-07-27 stsp if (err)
599 e82b1d81 2019-07-27 stsp return err;
600 9f2369b0 2018-12-24 stsp err = read_commit_privsep(commit, fd, repo);
601 e82b1d81 2019-07-27 stsp }
602 434025f3 2018-09-16 stsp
603 434025f3 2018-09-16 stsp if (err == NULL) {
604 434025f3 2018-09-16 stsp (*commit)->refcnt++;
605 1785f84a 2018-12-23 stsp err = got_repo_cache_commit(repo, id, *commit);
606 e32baab7 2018-11-05 stsp }
607 8d2c5ea3 2019-08-13 stsp done:
608 8d2c5ea3 2019-08-13 stsp free(path_packfile);
609 e32baab7 2018-11-05 stsp return err;
610 e32baab7 2018-11-05 stsp }
611 e32baab7 2018-11-05 stsp
612 e32baab7 2018-11-05 stsp const struct got_error *
613 e32baab7 2018-11-05 stsp got_object_open_as_commit(struct got_commit_object **commit,
614 e32baab7 2018-11-05 stsp struct got_repository *repo, struct got_object_id *id)
615 e32baab7 2018-11-05 stsp {
616 e32baab7 2018-11-05 stsp *commit = got_repo_get_cached_commit(repo, id);
617 e32baab7 2018-11-05 stsp if (*commit != NULL) {
618 e32baab7 2018-11-05 stsp (*commit)->refcnt++;
619 e32baab7 2018-11-05 stsp return NULL;
620 e32baab7 2018-11-05 stsp }
621 e32baab7 2018-11-05 stsp
622 1785f84a 2018-12-23 stsp return open_commit(commit, repo, id, 0);
623 7762fe12 2018-11-05 stsp }
624 7762fe12 2018-11-05 stsp
625 e32baab7 2018-11-05 stsp const struct got_error *
626 e32baab7 2018-11-05 stsp got_object_commit_open(struct got_commit_object **commit,
627 e32baab7 2018-11-05 stsp struct got_repository *repo, struct got_object *obj)
628 e32baab7 2018-11-05 stsp {
629 1785f84a 2018-12-23 stsp return open_commit(commit, repo, got_object_get_id(obj), 1);
630 434025f3 2018-09-16 stsp }
631 434025f3 2018-09-16 stsp
632 434025f3 2018-09-16 stsp const struct got_error *
633 dbc6a6b6 2018-07-12 stsp got_object_qid_alloc(struct got_object_qid **qid, struct got_object_id *id)
634 dbc6a6b6 2018-07-12 stsp {
635 dbc6a6b6 2018-07-12 stsp const struct got_error *err = NULL;
636 dbc6a6b6 2018-07-12 stsp
637 dbc6a6b6 2018-07-12 stsp *qid = calloc(1, sizeof(**qid));
638 dbc6a6b6 2018-07-12 stsp if (*qid == NULL)
639 638f9024 2019-05-13 stsp return got_error_from_errno("calloc");
640 dbc6a6b6 2018-07-12 stsp
641 dbc6a6b6 2018-07-12 stsp (*qid)->id = got_object_id_dup(id);
642 dbc6a6b6 2018-07-12 stsp if ((*qid)->id == NULL) {
643 638f9024 2019-05-13 stsp err = got_error_from_errno("got_object_id_dup");
644 fa2f6902 2018-07-23 stsp got_object_qid_free(*qid);
645 dbc6a6b6 2018-07-12 stsp *qid = NULL;
646 dbc6a6b6 2018-07-12 stsp return err;
647 dbc6a6b6 2018-07-12 stsp }
648 dbc6a6b6 2018-07-12 stsp
649 dbc6a6b6 2018-07-12 stsp return NULL;
650 a158c901 2018-12-23 stsp }
651 a158c901 2018-12-23 stsp
652 a158c901 2018-12-23 stsp static const struct got_error *
653 13c729f7 2018-12-24 stsp request_packed_tree(struct got_tree_object **tree, struct got_pack *pack,
654 13c729f7 2018-12-24 stsp int pack_idx, struct got_object_id *id)
655 a158c901 2018-12-23 stsp {
656 a158c901 2018-12-23 stsp const struct got_error *err = NULL;
657 a158c901 2018-12-23 stsp
658 13c729f7 2018-12-24 stsp err = got_privsep_send_tree_req(pack->privsep_child->ibuf, -1, id,
659 13c729f7 2018-12-24 stsp pack_idx);
660 a158c901 2018-12-23 stsp if (err)
661 a158c901 2018-12-23 stsp return err;
662 a158c901 2018-12-23 stsp
663 a158c901 2018-12-23 stsp return got_privsep_recv_tree(tree, pack->privsep_child->ibuf);
664 7e212e3d 2018-09-09 stsp }
665 7e212e3d 2018-09-09 stsp
666 71eb0e7f 2018-09-16 stsp static const struct got_error *
667 13c729f7 2018-12-24 stsp read_packed_tree_privsep(struct got_tree_object **tree,
668 13c729f7 2018-12-24 stsp struct got_pack *pack, struct got_packidx *packidx, int idx,
669 13c729f7 2018-12-24 stsp struct got_object_id *id)
670 13c729f7 2018-12-24 stsp {
671 13c729f7 2018-12-24 stsp const struct got_error *err = NULL;
672 13c729f7 2018-12-24 stsp
673 13c729f7 2018-12-24 stsp if (pack->privsep_child)
674 13c729f7 2018-12-24 stsp return request_packed_tree(tree, pack, idx, id);
675 13c729f7 2018-12-24 stsp
676 13c729f7 2018-12-24 stsp err = start_pack_privsep_child(pack, packidx);
677 13c729f7 2018-12-24 stsp if (err)
678 13c729f7 2018-12-24 stsp return err;
679 13c729f7 2018-12-24 stsp
680 13c729f7 2018-12-24 stsp return request_packed_tree(tree, pack, idx, id);
681 13c729f7 2018-12-24 stsp }
682 13c729f7 2018-12-24 stsp
683 13c729f7 2018-12-24 stsp static const struct got_error *
684 9f2369b0 2018-12-24 stsp request_tree(struct got_tree_object **tree, struct got_repository *repo,
685 9f2369b0 2018-12-24 stsp int fd)
686 9f2369b0 2018-12-24 stsp {
687 9f2369b0 2018-12-24 stsp const struct got_error *err = NULL;
688 9f2369b0 2018-12-24 stsp struct imsgbuf *ibuf;
689 9f2369b0 2018-12-24 stsp
690 9f2369b0 2018-12-24 stsp ibuf = repo->privsep_children[GOT_REPO_PRIVSEP_CHILD_TREE].ibuf;
691 9f2369b0 2018-12-24 stsp
692 9f2369b0 2018-12-24 stsp err = got_privsep_send_tree_req(ibuf, fd, NULL, -1);
693 9f2369b0 2018-12-24 stsp if (err)
694 9f2369b0 2018-12-24 stsp return err;
695 9f2369b0 2018-12-24 stsp
696 9f2369b0 2018-12-24 stsp return got_privsep_recv_tree(tree, ibuf);
697 9f2369b0 2018-12-24 stsp }
698 9f2369b0 2018-12-24 stsp
699 9f2369b0 2018-12-24 stsp const struct got_error *
700 9f2369b0 2018-12-24 stsp read_tree_privsep(struct got_tree_object **tree, int obj_fd,
701 9f2369b0 2018-12-24 stsp struct got_repository *repo)
702 9f2369b0 2018-12-24 stsp {
703 ddc7b220 2019-09-08 stsp const struct got_error *err;
704 9f2369b0 2018-12-24 stsp int imsg_fds[2];
705 9f2369b0 2018-12-24 stsp pid_t pid;
706 9f2369b0 2018-12-24 stsp struct imsgbuf *ibuf;
707 9f2369b0 2018-12-24 stsp
708 9f2369b0 2018-12-24 stsp if (repo->privsep_children[GOT_REPO_PRIVSEP_CHILD_TREE].imsg_fd != -1)
709 9f2369b0 2018-12-24 stsp return request_tree(tree, repo, obj_fd);
710 9f2369b0 2018-12-24 stsp
711 9f2369b0 2018-12-24 stsp ibuf = calloc(1, sizeof(*ibuf));
712 9f2369b0 2018-12-24 stsp if (ibuf == NULL)
713 638f9024 2019-05-13 stsp return got_error_from_errno("calloc");
714 9f2369b0 2018-12-24 stsp
715 ddc7b220 2019-09-08 stsp if (socketpair(AF_UNIX, SOCK_STREAM, PF_UNSPEC, imsg_fds) == -1) {
716 ddc7b220 2019-09-08 stsp err = got_error_from_errno("socketpair");
717 ddc7b220 2019-09-08 stsp free(ibuf);
718 ddc7b220 2019-09-08 stsp return err;
719 ddc7b220 2019-09-08 stsp }
720 9f2369b0 2018-12-24 stsp
721 9f2369b0 2018-12-24 stsp pid = fork();
722 ddc7b220 2019-09-08 stsp if (pid == -1) {
723 ddc7b220 2019-09-08 stsp err = got_error_from_errno("fork");
724 ddc7b220 2019-09-08 stsp free(ibuf);
725 ddc7b220 2019-09-08 stsp return err;
726 ddc7b220 2019-09-08 stsp }
727 9f2369b0 2018-12-24 stsp else if (pid == 0) {
728 aba9c984 2019-09-08 stsp got_privsep_exec_child(imsg_fds, GOT_PATH_PROG_READ_TREE,
729 9f2369b0 2018-12-24 stsp repo->path);
730 9f2369b0 2018-12-24 stsp /* not reached */
731 9f2369b0 2018-12-24 stsp }
732 9f2369b0 2018-12-24 stsp
733 ddc7b220 2019-09-08 stsp if (close(imsg_fds[1]) != 0) {
734 ddc7b220 2019-09-08 stsp err = got_error_from_errno("close");
735 ddc7b220 2019-09-08 stsp free(ibuf);
736 ddc7b220 2019-09-08 stsp return err;
737 ddc7b220 2019-09-08 stsp }
738 9f2369b0 2018-12-24 stsp repo->privsep_children[GOT_REPO_PRIVSEP_CHILD_TREE].imsg_fd =
739 9f2369b0 2018-12-24 stsp imsg_fds[0];
740 9f2369b0 2018-12-24 stsp repo->privsep_children[GOT_REPO_PRIVSEP_CHILD_TREE].pid = pid;
741 9f2369b0 2018-12-24 stsp imsg_init(ibuf, imsg_fds[0]);
742 9f2369b0 2018-12-24 stsp repo->privsep_children[GOT_REPO_PRIVSEP_CHILD_TREE].ibuf = ibuf;
743 9f2369b0 2018-12-24 stsp
744 9f2369b0 2018-12-24 stsp
745 9f2369b0 2018-12-24 stsp return request_tree(tree, repo, obj_fd);
746 9f2369b0 2018-12-24 stsp }
747 9f2369b0 2018-12-24 stsp
748 9f2369b0 2018-12-24 stsp static const struct got_error *
749 13c729f7 2018-12-24 stsp open_tree(struct got_tree_object **tree, struct got_repository *repo,
750 13c729f7 2018-12-24 stsp struct got_object_id *id, int check_cache)
751 0ffeb3c2 2017-11-26 stsp {
752 0ffeb3c2 2017-11-26 stsp const struct got_error *err = NULL;
753 13c729f7 2018-12-24 stsp struct got_packidx *packidx = NULL;
754 e82b1d81 2019-07-27 stsp int idx;
755 8d2c5ea3 2019-08-13 stsp char *path_packfile = NULL;
756 f6be5c30 2018-06-22 stsp
757 71eb0e7f 2018-09-16 stsp if (check_cache) {
758 13c729f7 2018-12-24 stsp *tree = got_repo_get_cached_tree(repo, id);
759 71eb0e7f 2018-09-16 stsp if (*tree != NULL) {
760 71eb0e7f 2018-09-16 stsp (*tree)->refcnt++;
761 71eb0e7f 2018-09-16 stsp return NULL;
762 71eb0e7f 2018-09-16 stsp }
763 71eb0e7f 2018-09-16 stsp } else
764 71eb0e7f 2018-09-16 stsp *tree = NULL;
765 0ffeb3c2 2017-11-26 stsp
766 e82b1d81 2019-07-27 stsp err = got_repo_search_packidx(&packidx, &idx, repo, id);
767 e82b1d81 2019-07-27 stsp if (err == NULL) {
768 13c729f7 2018-12-24 stsp struct got_pack *pack = NULL;
769 0ffeb3c2 2017-11-26 stsp
770 13c729f7 2018-12-24 stsp err = get_packfile_path(&path_packfile, packidx);
771 13c729f7 2018-12-24 stsp if (err)
772 13c729f7 2018-12-24 stsp return err;
773 13c729f7 2018-12-24 stsp
774 13c729f7 2018-12-24 stsp pack = got_repo_get_cached_pack(repo, path_packfile);
775 e7885405 2018-09-10 stsp if (pack == NULL) {
776 e82b1d81 2019-07-27 stsp err = got_repo_cache_pack(&pack, repo, path_packfile,
777 e82b1d81 2019-07-27 stsp packidx);
778 e7885405 2018-09-10 stsp if (err)
779 8d2c5ea3 2019-08-13 stsp goto done;
780 e7885405 2018-09-10 stsp }
781 13c729f7 2018-12-24 stsp err = read_packed_tree_privsep(tree, pack,
782 13c729f7 2018-12-24 stsp packidx, idx, id);
783 e82b1d81 2019-07-27 stsp } else if (err->code == GOT_ERR_NO_OBJ) {
784 e82b1d81 2019-07-27 stsp int fd;
785 e82b1d81 2019-07-27 stsp
786 e82b1d81 2019-07-27 stsp err = open_loose_object(&fd, id, repo);
787 e82b1d81 2019-07-27 stsp if (err)
788 e82b1d81 2019-07-27 stsp return err;
789 9f2369b0 2018-12-24 stsp err = read_tree_privsep(tree, fd, repo);
790 e82b1d81 2019-07-27 stsp }
791 f6be5c30 2018-06-22 stsp
792 f6be5c30 2018-06-22 stsp if (err == NULL) {
793 f6be5c30 2018-06-22 stsp (*tree)->refcnt++;
794 13c729f7 2018-12-24 stsp err = got_repo_cache_tree(repo, id, *tree);
795 f6be5c30 2018-06-22 stsp }
796 8d2c5ea3 2019-08-13 stsp done:
797 8d2c5ea3 2019-08-13 stsp free(path_packfile);
798 776d4d29 2018-06-17 stsp return err;
799 776d4d29 2018-06-17 stsp }
800 776d4d29 2018-06-17 stsp
801 776d4d29 2018-06-17 stsp const struct got_error *
802 776d4d29 2018-06-17 stsp got_object_open_as_tree(struct got_tree_object **tree,
803 776d4d29 2018-06-17 stsp struct got_repository *repo, struct got_object_id *id)
804 776d4d29 2018-06-17 stsp {
805 e8eb494a 2018-09-16 stsp *tree = got_repo_get_cached_tree(repo, id);
806 e8eb494a 2018-09-16 stsp if (*tree != NULL) {
807 e8eb494a 2018-09-16 stsp (*tree)->refcnt++;
808 e8eb494a 2018-09-16 stsp return NULL;
809 e0ab43e7 2018-03-16 stsp }
810 776d4d29 2018-06-17 stsp
811 13c729f7 2018-12-24 stsp return open_tree(tree, repo, id, 0);
812 57efb1af 2018-04-24 stsp }
813 ff6b18f8 2018-04-24 stsp
814 71eb0e7f 2018-09-16 stsp const struct got_error *
815 71eb0e7f 2018-09-16 stsp got_object_tree_open(struct got_tree_object **tree,
816 71eb0e7f 2018-09-16 stsp struct got_repository *repo, struct got_object *obj)
817 71eb0e7f 2018-09-16 stsp {
818 13c729f7 2018-12-24 stsp return open_tree(tree, repo, got_object_get_id(obj), 1);
819 71eb0e7f 2018-09-16 stsp }
820 71eb0e7f 2018-09-16 stsp
821 56e0773d 2019-11-28 stsp int
822 56e0773d 2019-11-28 stsp got_object_tree_get_nentries(struct got_tree_object *tree)
823 883f0469 2018-06-23 stsp {
824 56e0773d 2019-11-28 stsp return tree->nentries;
825 56e0773d 2019-11-28 stsp }
826 56e0773d 2019-11-28 stsp
827 56e0773d 2019-11-28 stsp struct got_tree_entry *
828 56e0773d 2019-11-28 stsp got_object_tree_get_first_entry(struct got_tree_object *tree)
829 56e0773d 2019-11-28 stsp {
830 56e0773d 2019-11-28 stsp return got_object_tree_get_entry(tree, 0);
831 56e0773d 2019-11-28 stsp }
832 56e0773d 2019-11-28 stsp
833 56e0773d 2019-11-28 stsp struct got_tree_entry *
834 56e0773d 2019-11-28 stsp got_object_tree_get_last_entry(struct got_tree_object *tree)
835 56e0773d 2019-11-28 stsp {
836 56e0773d 2019-11-28 stsp return got_object_tree_get_entry(tree, tree->nentries - 1);
837 56e0773d 2019-11-28 stsp }
838 56e0773d 2019-11-28 stsp
839 56e0773d 2019-11-28 stsp struct got_tree_entry *
840 56e0773d 2019-11-28 stsp got_object_tree_get_entry(struct got_tree_object *tree, int i)
841 56e0773d 2019-11-28 stsp {
842 56e0773d 2019-11-28 stsp if (i < 0 || i >= tree->nentries)
843 56e0773d 2019-11-28 stsp return NULL;
844 56e0773d 2019-11-28 stsp return &tree->entries[i];
845 883f0469 2018-06-23 stsp }
846 3840f4c9 2018-09-12 stsp
847 56e0773d 2019-11-28 stsp mode_t
848 56e0773d 2019-11-28 stsp got_tree_entry_get_mode(struct got_tree_entry *te)
849 56e0773d 2019-11-28 stsp {
850 56e0773d 2019-11-28 stsp return te->mode;
851 56e0773d 2019-11-28 stsp }
852 56e0773d 2019-11-28 stsp
853 56e0773d 2019-11-28 stsp const char *
854 56e0773d 2019-11-28 stsp got_tree_entry_get_name(struct got_tree_entry *te)
855 56e0773d 2019-11-28 stsp {
856 56e0773d 2019-11-28 stsp return &te->name[0];
857 56e0773d 2019-11-28 stsp }
858 56e0773d 2019-11-28 stsp
859 56e0773d 2019-11-28 stsp struct got_object_id *
860 56e0773d 2019-11-28 stsp got_tree_entry_get_id(struct got_tree_entry *te)
861 56e0773d 2019-11-28 stsp {
862 56e0773d 2019-11-28 stsp return &te->id;
863 56e0773d 2019-11-28 stsp }
864 56e0773d 2019-11-28 stsp
865 56e0773d 2019-11-28 stsp int
866 56e0773d 2019-11-28 stsp got_tree_entry_get_index(struct got_tree_entry *te)
867 56e0773d 2019-11-28 stsp {
868 56e0773d 2019-11-28 stsp return te->idx;
869 56e0773d 2019-11-28 stsp }
870 56e0773d 2019-11-28 stsp
871 56e0773d 2019-11-28 stsp struct got_tree_entry *
872 56e0773d 2019-11-28 stsp got_tree_entry_get_next(struct got_tree_object *tree,
873 56e0773d 2019-11-28 stsp struct got_tree_entry *te)
874 56e0773d 2019-11-28 stsp {
875 56e0773d 2019-11-28 stsp return got_object_tree_get_entry(tree, te->idx + 1);
876 56e0773d 2019-11-28 stsp }
877 56e0773d 2019-11-28 stsp
878 56e0773d 2019-11-28 stsp struct got_tree_entry *
879 56e0773d 2019-11-28 stsp got_tree_entry_get_prev(struct got_tree_object *tree,
880 56e0773d 2019-11-28 stsp struct got_tree_entry *te)
881 56e0773d 2019-11-28 stsp {
882 56e0773d 2019-11-28 stsp return got_object_tree_get_entry(tree, te->idx - 1);
883 56e0773d 2019-11-28 stsp }
884 56e0773d 2019-11-28 stsp
885 3840f4c9 2018-09-12 stsp static const struct got_error *
886 ac544f8c 2019-01-13 stsp request_packed_blob(uint8_t **outbuf, size_t *size, size_t *hdrlen, int outfd,
887 ebc55e2d 2018-12-24 stsp struct got_pack *pack, struct got_packidx *packidx, int idx,
888 ebc55e2d 2018-12-24 stsp struct got_object_id *id)
889 3840f4c9 2018-09-12 stsp {
890 3840f4c9 2018-09-12 stsp const struct got_error *err = NULL;
891 3840f4c9 2018-09-12 stsp int outfd_child;
892 3840f4c9 2018-09-12 stsp int basefd, accumfd; /* temporary files for delta application */
893 24140570 2018-09-09 stsp
894 3840f4c9 2018-09-12 stsp basefd = got_opentempfd();
895 3840f4c9 2018-09-12 stsp if (basefd == -1)
896 638f9024 2019-05-13 stsp return got_error_from_errno("got_opentempfd");
897 3840f4c9 2018-09-12 stsp accumfd = got_opentempfd();
898 3840f4c9 2018-09-12 stsp if (accumfd == -1)
899 638f9024 2019-05-13 stsp return got_error_from_errno("got_opentempfd");
900 3840f4c9 2018-09-12 stsp
901 3840f4c9 2018-09-12 stsp outfd_child = dup(outfd);
902 3840f4c9 2018-09-12 stsp if (outfd_child == -1)
903 638f9024 2019-05-13 stsp return got_error_from_errno("dup");
904 3840f4c9 2018-09-12 stsp
905 ebc55e2d 2018-12-24 stsp err = got_privsep_send_blob_req(pack->privsep_child->ibuf, -1, id, idx);
906 3840f4c9 2018-09-12 stsp if (err)
907 3840f4c9 2018-09-12 stsp return err;
908 3840f4c9 2018-09-12 stsp
909 3840f4c9 2018-09-12 stsp err = got_privsep_send_blob_outfd(pack->privsep_child->ibuf,
910 3840f4c9 2018-09-12 stsp outfd_child);
911 3840f4c9 2018-09-12 stsp if (err) {
912 41496140 2019-02-21 stsp close(basefd);
913 41496140 2019-02-21 stsp close(accumfd);
914 3840f4c9 2018-09-12 stsp return err;
915 3840f4c9 2018-09-12 stsp }
916 41496140 2019-02-21 stsp
917 3840f4c9 2018-09-12 stsp err = got_privsep_send_tmpfd(pack->privsep_child->ibuf,
918 3840f4c9 2018-09-12 stsp basefd);
919 3840f4c9 2018-09-12 stsp if (err) {
920 3840f4c9 2018-09-12 stsp close(accumfd);
921 3840f4c9 2018-09-12 stsp return err;
922 3840f4c9 2018-09-12 stsp }
923 3840f4c9 2018-09-12 stsp
924 3840f4c9 2018-09-12 stsp err = got_privsep_send_tmpfd(pack->privsep_child->ibuf,
925 3840f4c9 2018-09-12 stsp accumfd);
926 41496140 2019-02-21 stsp if (err)
927 3840f4c9 2018-09-12 stsp return err;
928 3840f4c9 2018-09-12 stsp
929 ac544f8c 2019-01-13 stsp err = got_privsep_recv_blob(outbuf, size, hdrlen,
930 ebc55e2d 2018-12-24 stsp pack->privsep_child->ibuf);
931 3840f4c9 2018-09-12 stsp if (err)
932 3840f4c9 2018-09-12 stsp return err;
933 3840f4c9 2018-09-12 stsp
934 3840f4c9 2018-09-12 stsp if (lseek(outfd, SEEK_SET, 0) == -1)
935 638f9024 2019-05-13 stsp err = got_error_from_errno("lseek");
936 3840f4c9 2018-09-12 stsp
937 3840f4c9 2018-09-12 stsp return err;
938 3840f4c9 2018-09-12 stsp }
939 3840f4c9 2018-09-12 stsp
940 ebc55e2d 2018-12-24 stsp static const struct got_error *
941 ac544f8c 2019-01-13 stsp read_packed_blob_privsep(uint8_t **outbuf, size_t *size, size_t *hdrlen,
942 ac544f8c 2019-01-13 stsp int outfd, struct got_pack *pack, struct got_packidx *packidx, int idx,
943 ebc55e2d 2018-12-24 stsp struct got_object_id *id)
944 68482ea3 2017-11-27 stsp {
945 68482ea3 2017-11-27 stsp const struct got_error *err = NULL;
946 ebc55e2d 2018-12-24 stsp
947 ebc55e2d 2018-12-24 stsp if (pack->privsep_child == NULL) {
948 ebc55e2d 2018-12-24 stsp err = start_pack_privsep_child(pack, packidx);
949 ebc55e2d 2018-12-24 stsp if (err)
950 ebc55e2d 2018-12-24 stsp return err;
951 ebc55e2d 2018-12-24 stsp }
952 68482ea3 2017-11-27 stsp
953 ac544f8c 2019-01-13 stsp return request_packed_blob(outbuf, size, hdrlen, outfd, pack, packidx,
954 ac544f8c 2019-01-13 stsp idx, id);
955 9f2369b0 2018-12-24 stsp }
956 9f2369b0 2018-12-24 stsp
957 9f2369b0 2018-12-24 stsp static const struct got_error *
958 ac544f8c 2019-01-13 stsp request_blob(uint8_t **outbuf, size_t *size, size_t *hdrlen, int outfd,
959 ac544f8c 2019-01-13 stsp int infd, struct imsgbuf *ibuf)
960 9f2369b0 2018-12-24 stsp {
961 9f2369b0 2018-12-24 stsp const struct got_error *err = NULL;
962 9f2369b0 2018-12-24 stsp int outfd_child;
963 9f2369b0 2018-12-24 stsp
964 9f2369b0 2018-12-24 stsp outfd_child = dup(outfd);
965 9f2369b0 2018-12-24 stsp if (outfd_child == -1)
966 638f9024 2019-05-13 stsp return got_error_from_errno("dup");
967 9f2369b0 2018-12-24 stsp
968 9f2369b0 2018-12-24 stsp err = got_privsep_send_blob_req(ibuf, infd, NULL, -1);
969 9f2369b0 2018-12-24 stsp if (err)
970 9f2369b0 2018-12-24 stsp return err;
971 9f2369b0 2018-12-24 stsp
972 9f2369b0 2018-12-24 stsp err = got_privsep_send_blob_outfd(ibuf, outfd_child);
973 41496140 2019-02-21 stsp if (err)
974 9f2369b0 2018-12-24 stsp return err;
975 9f2369b0 2018-12-24 stsp
976 ac544f8c 2019-01-13 stsp err = got_privsep_recv_blob(outbuf, size, hdrlen, ibuf);
977 9f2369b0 2018-12-24 stsp if (err)
978 9f2369b0 2018-12-24 stsp return err;
979 9f2369b0 2018-12-24 stsp
980 9f2369b0 2018-12-24 stsp if (lseek(outfd, SEEK_SET, 0) == -1)
981 638f9024 2019-05-13 stsp return got_error_from_errno("lseek");
982 9f2369b0 2018-12-24 stsp
983 9f2369b0 2018-12-24 stsp return err;
984 9f2369b0 2018-12-24 stsp }
985 9f2369b0 2018-12-24 stsp
986 9f2369b0 2018-12-24 stsp static const struct got_error *
987 ac544f8c 2019-01-13 stsp read_blob_privsep(uint8_t **outbuf, size_t *size, size_t *hdrlen,
988 9f2369b0 2018-12-24 stsp int outfd, int infd, struct got_repository *repo)
989 9f2369b0 2018-12-24 stsp {
990 ddc7b220 2019-09-08 stsp const struct got_error *err;
991 9f2369b0 2018-12-24 stsp int imsg_fds[2];
992 9f2369b0 2018-12-24 stsp pid_t pid;
993 9f2369b0 2018-12-24 stsp struct imsgbuf *ibuf;
994 9f2369b0 2018-12-24 stsp
995 9f2369b0 2018-12-24 stsp if (repo->privsep_children[GOT_REPO_PRIVSEP_CHILD_BLOB].imsg_fd != -1) {
996 9f2369b0 2018-12-24 stsp ibuf = repo->privsep_children[GOT_REPO_PRIVSEP_CHILD_BLOB].ibuf;
997 ac544f8c 2019-01-13 stsp return request_blob(outbuf, size, hdrlen, outfd, infd, ibuf);
998 9f2369b0 2018-12-24 stsp }
999 9f2369b0 2018-12-24 stsp
1000 9f2369b0 2018-12-24 stsp ibuf = calloc(1, sizeof(*ibuf));
1001 9f2369b0 2018-12-24 stsp if (ibuf == NULL)
1002 638f9024 2019-05-13 stsp return got_error_from_errno("calloc");
1003 9f2369b0 2018-12-24 stsp
1004 ddc7b220 2019-09-08 stsp if (socketpair(AF_UNIX, SOCK_STREAM, PF_UNSPEC, imsg_fds) == -1) {
1005 ddc7b220 2019-09-08 stsp err = got_error_from_errno("socketpair");
1006 ddc7b220 2019-09-08 stsp free(ibuf);
1007 ddc7b220 2019-09-08 stsp return err;
1008 ddc7b220 2019-09-08 stsp }
1009 9f2369b0 2018-12-24 stsp
1010 9f2369b0 2018-12-24 stsp pid = fork();
1011 ddc7b220 2019-09-08 stsp if (pid == -1) {
1012 ddc7b220 2019-09-08 stsp err = got_error_from_errno("fork");
1013 ddc7b220 2019-09-08 stsp free(ibuf);
1014 ddc7b220 2019-09-08 stsp return err;
1015 ddc7b220 2019-09-08 stsp }
1016 9f2369b0 2018-12-24 stsp else if (pid == 0) {
1017 aba9c984 2019-09-08 stsp got_privsep_exec_child(imsg_fds, GOT_PATH_PROG_READ_BLOB,
1018 9f2369b0 2018-12-24 stsp repo->path);
1019 9f2369b0 2018-12-24 stsp /* not reached */
1020 9f2369b0 2018-12-24 stsp }
1021 9f2369b0 2018-12-24 stsp
1022 ddc7b220 2019-09-08 stsp if (close(imsg_fds[1]) != 0) {
1023 ddc7b220 2019-09-08 stsp err = got_error_from_errno("close");
1024 ddc7b220 2019-09-08 stsp free(ibuf);
1025 ddc7b220 2019-09-08 stsp return err;
1026 ddc7b220 2019-09-08 stsp }
1027 9f2369b0 2018-12-24 stsp repo->privsep_children[GOT_REPO_PRIVSEP_CHILD_BLOB].imsg_fd =
1028 9f2369b0 2018-12-24 stsp imsg_fds[0];
1029 9f2369b0 2018-12-24 stsp repo->privsep_children[GOT_REPO_PRIVSEP_CHILD_BLOB].pid = pid;
1030 9f2369b0 2018-12-24 stsp imsg_init(ibuf, imsg_fds[0]);
1031 9f2369b0 2018-12-24 stsp repo->privsep_children[GOT_REPO_PRIVSEP_CHILD_BLOB].ibuf = ibuf;
1032 9f2369b0 2018-12-24 stsp
1033 ac544f8c 2019-01-13 stsp return request_blob(outbuf, size, hdrlen, outfd, infd, ibuf);
1034 ebc55e2d 2018-12-24 stsp }
1035 68482ea3 2017-11-27 stsp
1036 ebc55e2d 2018-12-24 stsp static const struct got_error *
1037 ebc55e2d 2018-12-24 stsp open_blob(struct got_blob_object **blob, struct got_repository *repo,
1038 ebc55e2d 2018-12-24 stsp struct got_object_id *id, size_t blocksize)
1039 ebc55e2d 2018-12-24 stsp {
1040 ebc55e2d 2018-12-24 stsp const struct got_error *err = NULL;
1041 ebc55e2d 2018-12-24 stsp struct got_packidx *packidx = NULL;
1042 ebc55e2d 2018-12-24 stsp int idx;
1043 8d2c5ea3 2019-08-13 stsp char *path_packfile = NULL;
1044 ac544f8c 2019-01-13 stsp uint8_t *outbuf;
1045 e82b1d81 2019-07-27 stsp int outfd;
1046 ebc55e2d 2018-12-24 stsp size_t size, hdrlen;
1047 ebc55e2d 2018-12-24 stsp struct stat sb;
1048 ebc55e2d 2018-12-24 stsp
1049 68482ea3 2017-11-27 stsp *blob = calloc(1, sizeof(**blob));
1050 4558fcd4 2018-01-14 stsp if (*blob == NULL)
1051 638f9024 2019-05-13 stsp return got_error_from_errno("calloc");
1052 68482ea3 2017-11-27 stsp
1053 55da3778 2018-09-10 stsp outfd = got_opentempfd();
1054 55da3778 2018-09-10 stsp if (outfd == -1)
1055 638f9024 2019-05-13 stsp return got_error_from_errno("got_opentempfd");
1056 55da3778 2018-09-10 stsp
1057 062ebb78 2018-07-12 stsp (*blob)->read_buf = malloc(blocksize);
1058 15c8b0e6 2018-04-24 stsp if ((*blob)->read_buf == NULL) {
1059 638f9024 2019-05-13 stsp err = got_error_from_errno("malloc");
1060 c7254d79 2018-04-24 stsp goto done;
1061 15c8b0e6 2018-04-24 stsp }
1062 ebc55e2d 2018-12-24 stsp
1063 e82b1d81 2019-07-27 stsp err = got_repo_search_packidx(&packidx, &idx, repo, id);
1064 e82b1d81 2019-07-27 stsp if (err == NULL) {
1065 ebc55e2d 2018-12-24 stsp struct got_pack *pack = NULL;
1066 34f480ff 2019-07-27 stsp
1067 ebc55e2d 2018-12-24 stsp err = get_packfile_path(&path_packfile, packidx);
1068 ebc55e2d 2018-12-24 stsp if (err)
1069 ebc55e2d 2018-12-24 stsp goto done;
1070 ebc55e2d 2018-12-24 stsp
1071 ebc55e2d 2018-12-24 stsp pack = got_repo_get_cached_pack(repo, path_packfile);
1072 55da3778 2018-09-10 stsp if (pack == NULL) {
1073 ebc55e2d 2018-12-24 stsp err = got_repo_cache_pack(&pack, repo, path_packfile,
1074 ebc55e2d 2018-12-24 stsp packidx);
1075 55da3778 2018-09-10 stsp if (err)
1076 55da3778 2018-09-10 stsp goto done;
1077 55da3778 2018-09-10 stsp }
1078 ac544f8c 2019-01-13 stsp err = read_packed_blob_privsep(&outbuf, &size, &hdrlen, outfd,
1079 ac544f8c 2019-01-13 stsp pack, packidx, idx, id);
1080 e82b1d81 2019-07-27 stsp } else if (err->code == GOT_ERR_NO_OBJ) {
1081 e82b1d81 2019-07-27 stsp int infd;
1082 e82b1d81 2019-07-27 stsp
1083 e82b1d81 2019-07-27 stsp err = open_loose_object(&infd, id, repo);
1084 e82b1d81 2019-07-27 stsp if (err)
1085 e82b1d81 2019-07-27 stsp goto done;
1086 ac544f8c 2019-01-13 stsp err = read_blob_privsep(&outbuf, &size, &hdrlen, outfd, infd,
1087 ac544f8c 2019-01-13 stsp repo);
1088 e82b1d81 2019-07-27 stsp }
1089 ebc55e2d 2018-12-24 stsp if (err)
1090 55da3778 2018-09-10 stsp goto done;
1091 2967a784 2018-04-24 stsp
1092 de060dff 2018-12-24 stsp if (hdrlen > size) {
1093 ebc55e2d 2018-12-24 stsp err = got_error(GOT_ERR_BAD_OBJ_HDR);
1094 ebc55e2d 2018-12-24 stsp goto done;
1095 ebc55e2d 2018-12-24 stsp }
1096 ebc55e2d 2018-12-24 stsp
1097 ac544f8c 2019-01-13 stsp if (outbuf) {
1098 3a6ce05a 2019-02-11 stsp if (close(outfd) != 0 && err == NULL)
1099 638f9024 2019-05-13 stsp err = got_error_from_errno("close");
1100 ac544f8c 2019-01-13 stsp outfd = -1;
1101 ac544f8c 2019-01-13 stsp (*blob)->f = fmemopen(outbuf, size, "rb");
1102 ac544f8c 2019-01-13 stsp if ((*blob)->f == NULL) {
1103 638f9024 2019-05-13 stsp err = got_error_from_errno("fmemopen");
1104 ac544f8c 2019-01-13 stsp free(outbuf);
1105 ac544f8c 2019-01-13 stsp goto done;
1106 ac544f8c 2019-01-13 stsp }
1107 ac544f8c 2019-01-13 stsp (*blob)->data = outbuf;
1108 ac544f8c 2019-01-13 stsp } else {
1109 ac544f8c 2019-01-13 stsp if (fstat(outfd, &sb) == -1) {
1110 638f9024 2019-05-13 stsp err = got_error_from_errno("fstat");
1111 ac544f8c 2019-01-13 stsp goto done;
1112 ac544f8c 2019-01-13 stsp }
1113 ac544f8c 2019-01-13 stsp
1114 ac544f8c 2019-01-13 stsp if (sb.st_size != size) {
1115 ac544f8c 2019-01-13 stsp err = got_error(GOT_ERR_PRIVSEP_LEN);
1116 ac544f8c 2019-01-13 stsp goto done;
1117 ac544f8c 2019-01-13 stsp }
1118 ac544f8c 2019-01-13 stsp
1119 ac544f8c 2019-01-13 stsp (*blob)->f = fdopen(outfd, "rb");
1120 ac544f8c 2019-01-13 stsp if ((*blob)->f == NULL) {
1121 638f9024 2019-05-13 stsp err = got_error_from_errno("fdopen");
1122 ac544f8c 2019-01-13 stsp close(outfd);
1123 ac544f8c 2019-01-13 stsp outfd = -1;
1124 ac544f8c 2019-01-13 stsp goto done;
1125 ac544f8c 2019-01-13 stsp }
1126 68482ea3 2017-11-27 stsp }
1127 68482ea3 2017-11-27 stsp
1128 ebc55e2d 2018-12-24 stsp (*blob)->hdrlen = hdrlen;
1129 eb651edf 2018-02-11 stsp (*blob)->blocksize = blocksize;
1130 ebc55e2d 2018-12-24 stsp memcpy(&(*blob)->id.sha1, id->sha1, SHA1_DIGEST_LENGTH);
1131 7d283eee 2017-11-29 stsp
1132 c7254d79 2018-04-24 stsp done:
1133 8d2c5ea3 2019-08-13 stsp free(path_packfile);
1134 55da3778 2018-09-10 stsp if (err) {
1135 55da3778 2018-09-10 stsp if (*blob) {
1136 7baf5860 2019-03-19 stsp got_object_blob_close(*blob);
1137 55da3778 2018-09-10 stsp *blob = NULL;
1138 55da3778 2018-09-10 stsp } else if (outfd != -1)
1139 55da3778 2018-09-10 stsp close(outfd);
1140 a19581a2 2018-06-21 stsp }
1141 a19581a2 2018-06-21 stsp return err;
1142 a19581a2 2018-06-21 stsp }
1143 a19581a2 2018-06-21 stsp
1144 a19581a2 2018-06-21 stsp const struct got_error *
1145 a19581a2 2018-06-21 stsp got_object_open_as_blob(struct got_blob_object **blob,
1146 a19581a2 2018-06-21 stsp struct got_repository *repo, struct got_object_id *id,
1147 a19581a2 2018-06-21 stsp size_t blocksize)
1148 a19581a2 2018-06-21 stsp {
1149 ebc55e2d 2018-12-24 stsp return open_blob(blob, repo, id, blocksize);
1150 ebc55e2d 2018-12-24 stsp }
1151 835e0dbd 2018-06-21 stsp
1152 ebc55e2d 2018-12-24 stsp const struct got_error *
1153 ebc55e2d 2018-12-24 stsp got_object_blob_open(struct got_blob_object **blob,
1154 ebc55e2d 2018-12-24 stsp struct got_repository *repo, struct got_object *obj, size_t blocksize)
1155 ebc55e2d 2018-12-24 stsp {
1156 ebc55e2d 2018-12-24 stsp return open_blob(blob, repo, got_object_get_id(obj), blocksize);
1157 0ffeb3c2 2017-11-26 stsp }
1158 68482ea3 2017-11-27 stsp
1159 fb43ecf1 2019-02-11 stsp const struct got_error *
1160 68482ea3 2017-11-27 stsp got_object_blob_close(struct got_blob_object *blob)
1161 68482ea3 2017-11-27 stsp {
1162 fb43ecf1 2019-02-11 stsp const struct got_error *err = NULL;
1163 15c8b0e6 2018-04-24 stsp free(blob->read_buf);
1164 7baf5860 2019-03-19 stsp if (blob->f && fclose(blob->f) != 0)
1165 638f9024 2019-05-13 stsp err = got_error_from_errno("fclose");
1166 ac544f8c 2019-01-13 stsp free(blob->data);
1167 68482ea3 2017-11-27 stsp free(blob);
1168 fb43ecf1 2019-02-11 stsp return err;
1169 f934cf2c 2018-02-12 stsp }
1170 f934cf2c 2018-02-12 stsp
1171 f934cf2c 2018-02-12 stsp char *
1172 f934cf2c 2018-02-12 stsp got_object_blob_id_str(struct got_blob_object *blob, char *buf, size_t size)
1173 f934cf2c 2018-02-12 stsp {
1174 f934cf2c 2018-02-12 stsp return got_sha1_digest_to_str(blob->id.sha1, buf, size);
1175 f934cf2c 2018-02-12 stsp }
1176 f934cf2c 2018-02-12 stsp
1177 f934cf2c 2018-02-12 stsp size_t
1178 f934cf2c 2018-02-12 stsp got_object_blob_get_hdrlen(struct got_blob_object *blob)
1179 f934cf2c 2018-02-12 stsp {
1180 f934cf2c 2018-02-12 stsp return blob->hdrlen;
1181 68482ea3 2017-11-27 stsp }
1182 68482ea3 2017-11-27 stsp
1183 f934cf2c 2018-02-12 stsp const uint8_t *
1184 f934cf2c 2018-02-12 stsp got_object_blob_get_read_buf(struct got_blob_object *blob)
1185 f934cf2c 2018-02-12 stsp {
1186 f934cf2c 2018-02-12 stsp return blob->read_buf;
1187 f934cf2c 2018-02-12 stsp }
1188 f934cf2c 2018-02-12 stsp
1189 68482ea3 2017-11-27 stsp const struct got_error *
1190 eb651edf 2018-02-11 stsp got_object_blob_read_block(size_t *outlenp, struct got_blob_object *blob)
1191 68482ea3 2017-11-27 stsp {
1192 eb651edf 2018-02-11 stsp size_t n;
1193 eb651edf 2018-02-11 stsp
1194 eb651edf 2018-02-11 stsp n = fread(blob->read_buf, 1, blob->blocksize, blob->f);
1195 eb651edf 2018-02-11 stsp if (n == 0 && ferror(blob->f))
1196 eb651edf 2018-02-11 stsp return got_ferror(blob->f, GOT_ERR_IO);
1197 eb651edf 2018-02-11 stsp *outlenp = n;
1198 35e9ba5d 2018-06-21 stsp return NULL;
1199 35e9ba5d 2018-06-21 stsp }
1200 35e9ba5d 2018-06-21 stsp
1201 35e9ba5d 2018-06-21 stsp const struct got_error *
1202 f595d9bd 2019-08-14 stsp got_object_blob_dump_to_file(size_t *filesize, int *nlines,
1203 6c4c42e0 2019-06-24 stsp off_t **line_offsets, FILE *outfile, struct got_blob_object *blob)
1204 35e9ba5d 2018-06-21 stsp {
1205 35e9ba5d 2018-06-21 stsp const struct got_error *err = NULL;
1206 b6752625 2018-12-24 stsp size_t n, len, hdrlen;
1207 84451b3e 2018-07-10 stsp const uint8_t *buf;
1208 84451b3e 2018-07-10 stsp int i;
1209 6c4c42e0 2019-06-24 stsp size_t noffsets = 0;
1210 f595d9bd 2019-08-14 stsp off_t off = 0, total_len = 0;
1211 84451b3e 2018-07-10 stsp
1212 6c4c42e0 2019-06-24 stsp if (line_offsets)
1213 6c4c42e0 2019-06-24 stsp *line_offsets = NULL;
1214 f595d9bd 2019-08-14 stsp if (filesize)
1215 f595d9bd 2019-08-14 stsp *filesize = 0;
1216 84451b3e 2018-07-10 stsp if (nlines)
1217 84451b3e 2018-07-10 stsp *nlines = 0;
1218 35e9ba5d 2018-06-21 stsp
1219 35e9ba5d 2018-06-21 stsp hdrlen = got_object_blob_get_hdrlen(blob);
1220 35e9ba5d 2018-06-21 stsp do {
1221 35e9ba5d 2018-06-21 stsp err = got_object_blob_read_block(&len, blob);
1222 35e9ba5d 2018-06-21 stsp if (err)
1223 35e9ba5d 2018-06-21 stsp return err;
1224 35e9ba5d 2018-06-21 stsp if (len == 0)
1225 35e9ba5d 2018-06-21 stsp break;
1226 84451b3e 2018-07-10 stsp buf = got_object_blob_get_read_buf(blob);
1227 b02560ec 2019-08-19 stsp i = hdrlen;
1228 78695fb7 2019-08-12 stsp if (line_offsets && nlines) {
1229 78695fb7 2019-08-12 stsp if (*line_offsets == NULL) {
1230 78695fb7 2019-08-12 stsp /* Have some data but perhaps no '\n'. */
1231 78695fb7 2019-08-12 stsp noffsets = 1;
1232 78695fb7 2019-08-12 stsp *nlines = 1;
1233 f595d9bd 2019-08-14 stsp *line_offsets = calloc(1, sizeof(**line_offsets));
1234 78695fb7 2019-08-12 stsp if (*line_offsets == NULL)
1235 845785d4 2020-02-02 tracey return got_error_from_errno("calloc");
1236 b02560ec 2019-08-19 stsp
1237 b02560ec 2019-08-19 stsp /* Skip forward over end of first line. */
1238 b02560ec 2019-08-19 stsp while (i < len) {
1239 b02560ec 2019-08-19 stsp if (buf[i] == '\n')
1240 b02560ec 2019-08-19 stsp break;
1241 b02560ec 2019-08-19 stsp i++;
1242 b02560ec 2019-08-19 stsp }
1243 b02560ec 2019-08-19 stsp }
1244 b02560ec 2019-08-19 stsp /* Scan '\n' offsets in remaining chunk of data. */
1245 b02560ec 2019-08-19 stsp while (i < len) {
1246 b02560ec 2019-08-19 stsp if (buf[i] != '\n') {
1247 b02560ec 2019-08-19 stsp i++;
1248 f595d9bd 2019-08-14 stsp continue;
1249 b02560ec 2019-08-19 stsp }
1250 f595d9bd 2019-08-14 stsp (*nlines)++;
1251 78695fb7 2019-08-12 stsp if (noffsets < *nlines) {
1252 78695fb7 2019-08-12 stsp off_t *o = recallocarray(*line_offsets,
1253 78695fb7 2019-08-12 stsp noffsets, *nlines,
1254 78695fb7 2019-08-12 stsp sizeof(**line_offsets));
1255 78695fb7 2019-08-12 stsp if (o == NULL) {
1256 78695fb7 2019-08-12 stsp free(*line_offsets);
1257 78695fb7 2019-08-12 stsp *line_offsets = NULL;
1258 78695fb7 2019-08-12 stsp return got_error_from_errno(
1259 78695fb7 2019-08-12 stsp "recallocarray");
1260 78695fb7 2019-08-12 stsp }
1261 78695fb7 2019-08-12 stsp *line_offsets = o;
1262 78695fb7 2019-08-12 stsp noffsets = *nlines;
1263 78695fb7 2019-08-12 stsp }
1264 f595d9bd 2019-08-14 stsp off = total_len + i - hdrlen + 1;
1265 f595d9bd 2019-08-14 stsp (*line_offsets)[*nlines - 1] = off;
1266 b02560ec 2019-08-19 stsp i++;
1267 6c4c42e0 2019-06-24 stsp }
1268 84451b3e 2018-07-10 stsp }
1269 35e9ba5d 2018-06-21 stsp /* Skip blob object header first time around. */
1270 454a6b59 2018-12-24 stsp n = fwrite(buf + hdrlen, 1, len - hdrlen, outfile);
1271 b6752625 2018-12-24 stsp if (n != len - hdrlen)
1272 b6752625 2018-12-24 stsp return got_ferror(outfile, GOT_ERR_IO);
1273 f595d9bd 2019-08-14 stsp total_len += len - hdrlen;
1274 35e9ba5d 2018-06-21 stsp hdrlen = 0;
1275 35e9ba5d 2018-06-21 stsp } while (len != 0);
1276 35e9ba5d 2018-06-21 stsp
1277 cbe7f848 2019-02-11 stsp if (fflush(outfile) != 0)
1278 638f9024 2019-05-13 stsp return got_error_from_errno("fflush");
1279 35e9ba5d 2018-06-21 stsp rewind(outfile);
1280 35e9ba5d 2018-06-21 stsp
1281 f595d9bd 2019-08-14 stsp if (filesize)
1282 f595d9bd 2019-08-14 stsp *filesize = total_len;
1283 f595d9bd 2019-08-14 stsp
1284 776d4d29 2018-06-17 stsp return NULL;
1285 f4a881ce 2018-11-17 stsp }
1286 f4a881ce 2018-11-17 stsp
1287 f4a881ce 2018-11-17 stsp static const struct got_error *
1288 268f7291 2018-12-24 stsp request_packed_tag(struct got_tag_object **tag, struct got_pack *pack,
1289 268f7291 2018-12-24 stsp int pack_idx, struct got_object_id *id)
1290 a158c901 2018-12-23 stsp {
1291 a158c901 2018-12-23 stsp const struct got_error *err = NULL;
1292 a158c901 2018-12-23 stsp
1293 268f7291 2018-12-24 stsp err = got_privsep_send_tag_req(pack->privsep_child->ibuf, -1, id,
1294 268f7291 2018-12-24 stsp pack_idx);
1295 a158c901 2018-12-23 stsp if (err)
1296 a158c901 2018-12-23 stsp return err;
1297 a158c901 2018-12-23 stsp
1298 a158c901 2018-12-23 stsp return got_privsep_recv_tag(tag, pack->privsep_child->ibuf);
1299 268f7291 2018-12-24 stsp }
1300 268f7291 2018-12-24 stsp
1301 268f7291 2018-12-24 stsp static const struct got_error *
1302 268f7291 2018-12-24 stsp read_packed_tag_privsep(struct got_tag_object **tag,
1303 268f7291 2018-12-24 stsp struct got_pack *pack, struct got_packidx *packidx, int idx,
1304 268f7291 2018-12-24 stsp struct got_object_id *id)
1305 268f7291 2018-12-24 stsp {
1306 268f7291 2018-12-24 stsp const struct got_error *err = NULL;
1307 268f7291 2018-12-24 stsp
1308 268f7291 2018-12-24 stsp if (pack->privsep_child)
1309 268f7291 2018-12-24 stsp return request_packed_tag(tag, pack, idx, id);
1310 268f7291 2018-12-24 stsp
1311 268f7291 2018-12-24 stsp err = start_pack_privsep_child(pack, packidx);
1312 268f7291 2018-12-24 stsp if (err)
1313 268f7291 2018-12-24 stsp return err;
1314 268f7291 2018-12-24 stsp
1315 268f7291 2018-12-24 stsp return request_packed_tag(tag, pack, idx, id);
1316 a158c901 2018-12-23 stsp }
1317 9f2369b0 2018-12-24 stsp
1318 9f2369b0 2018-12-24 stsp static const struct got_error *
1319 9f2369b0 2018-12-24 stsp request_tag(struct got_tag_object **tag, struct got_repository *repo,
1320 9f2369b0 2018-12-24 stsp int fd)
1321 9f2369b0 2018-12-24 stsp {
1322 9f2369b0 2018-12-24 stsp const struct got_error *err = NULL;
1323 9f2369b0 2018-12-24 stsp struct imsgbuf *ibuf;
1324 9f2369b0 2018-12-24 stsp
1325 9f2369b0 2018-12-24 stsp ibuf = repo->privsep_children[GOT_REPO_PRIVSEP_CHILD_TAG].ibuf;
1326 9f2369b0 2018-12-24 stsp
1327 9f2369b0 2018-12-24 stsp err = got_privsep_send_tag_req(ibuf, fd, NULL, -1);
1328 9f2369b0 2018-12-24 stsp if (err)
1329 9f2369b0 2018-12-24 stsp return err;
1330 9f2369b0 2018-12-24 stsp
1331 9f2369b0 2018-12-24 stsp return got_privsep_recv_tag(tag, ibuf);
1332 9f2369b0 2018-12-24 stsp }
1333 9f2369b0 2018-12-24 stsp
1334 9f2369b0 2018-12-24 stsp static const struct got_error *
1335 9f2369b0 2018-12-24 stsp read_tag_privsep(struct got_tag_object **tag, int obj_fd,
1336 9f2369b0 2018-12-24 stsp struct got_repository *repo)
1337 9f2369b0 2018-12-24 stsp {
1338 ddc7b220 2019-09-08 stsp const struct got_error *err;
1339 9f2369b0 2018-12-24 stsp int imsg_fds[2];
1340 9f2369b0 2018-12-24 stsp pid_t pid;
1341 9f2369b0 2018-12-24 stsp struct imsgbuf *ibuf;
1342 9f2369b0 2018-12-24 stsp
1343 9f2369b0 2018-12-24 stsp if (repo->privsep_children[GOT_REPO_PRIVSEP_CHILD_TAG].imsg_fd != -1)
1344 9f2369b0 2018-12-24 stsp return request_tag(tag, repo, obj_fd);
1345 9f2369b0 2018-12-24 stsp
1346 9f2369b0 2018-12-24 stsp ibuf = calloc(1, sizeof(*ibuf));
1347 9f2369b0 2018-12-24 stsp if (ibuf == NULL)
1348 638f9024 2019-05-13 stsp return got_error_from_errno("calloc");
1349 9f2369b0 2018-12-24 stsp
1350 ddc7b220 2019-09-08 stsp if (socketpair(AF_UNIX, SOCK_STREAM, PF_UNSPEC, imsg_fds) == -1) {
1351 ddc7b220 2019-09-08 stsp err = got_error_from_errno("socketpair");
1352 ddc7b220 2019-09-08 stsp free(ibuf);
1353 ddc7b220 2019-09-08 stsp return err;
1354 ddc7b220 2019-09-08 stsp }
1355 9f2369b0 2018-12-24 stsp
1356 9f2369b0 2018-12-24 stsp pid = fork();
1357 ddc7b220 2019-09-08 stsp if (pid == -1) {
1358 ddc7b220 2019-09-08 stsp err = got_error_from_errno("fork");
1359 ddc7b220 2019-09-08 stsp free(ibuf);
1360 ddc7b220 2019-09-08 stsp return err;
1361 ddc7b220 2019-09-08 stsp }
1362 9f2369b0 2018-12-24 stsp else if (pid == 0) {
1363 aba9c984 2019-09-08 stsp got_privsep_exec_child(imsg_fds, GOT_PATH_PROG_READ_TAG,
1364 9f2369b0 2018-12-24 stsp repo->path);
1365 9f2369b0 2018-12-24 stsp /* not reached */
1366 9f2369b0 2018-12-24 stsp }
1367 9f2369b0 2018-12-24 stsp
1368 ddc7b220 2019-09-08 stsp if (close(imsg_fds[1]) != 0) {
1369 ddc7b220 2019-09-08 stsp err = got_error_from_errno("close");
1370 ddc7b220 2019-09-08 stsp free(ibuf);
1371 ddc7b220 2019-09-08 stsp return err;
1372 ddc7b220 2019-09-08 stsp }
1373 9f2369b0 2018-12-24 stsp repo->privsep_children[GOT_REPO_PRIVSEP_CHILD_TAG].imsg_fd =
1374 9f2369b0 2018-12-24 stsp imsg_fds[0];
1375 9f2369b0 2018-12-24 stsp repo->privsep_children[GOT_REPO_PRIVSEP_CHILD_TAG].pid = pid;
1376 9f2369b0 2018-12-24 stsp imsg_init(ibuf, imsg_fds[0]);
1377 9f2369b0 2018-12-24 stsp repo->privsep_children[GOT_REPO_PRIVSEP_CHILD_TAG].ibuf = ibuf;
1378 a158c901 2018-12-23 stsp
1379 9f2369b0 2018-12-24 stsp return request_tag(tag, repo, obj_fd);
1380 9f2369b0 2018-12-24 stsp }
1381 a158c901 2018-12-23 stsp
1382 a158c901 2018-12-23 stsp static const struct got_error *
1383 268f7291 2018-12-24 stsp open_tag(struct got_tag_object **tag, struct got_repository *repo,
1384 268f7291 2018-12-24 stsp struct got_object_id *id, int check_cache)
1385 f4a881ce 2018-11-17 stsp {
1386 f4a881ce 2018-11-17 stsp const struct got_error *err = NULL;
1387 268f7291 2018-12-24 stsp struct got_packidx *packidx = NULL;
1388 e82b1d81 2019-07-27 stsp int idx;
1389 8d2c5ea3 2019-08-13 stsp char *path_packfile = NULL;
1390 5d844a1e 2019-08-13 stsp struct got_object *obj = NULL;
1391 5d844a1e 2019-08-13 stsp int obj_type = GOT_OBJ_TYPE_ANY;
1392 f4a881ce 2018-11-17 stsp
1393 f4a881ce 2018-11-17 stsp if (check_cache) {
1394 268f7291 2018-12-24 stsp *tag = got_repo_get_cached_tag(repo, id);
1395 f4a881ce 2018-11-17 stsp if (*tag != NULL) {
1396 f4a881ce 2018-11-17 stsp (*tag)->refcnt++;
1397 f4a881ce 2018-11-17 stsp return NULL;
1398 f4a881ce 2018-11-17 stsp }
1399 f4a881ce 2018-11-17 stsp } else
1400 f4a881ce 2018-11-17 stsp *tag = NULL;
1401 f4a881ce 2018-11-17 stsp
1402 e82b1d81 2019-07-27 stsp err = got_repo_search_packidx(&packidx, &idx, repo, id);
1403 e82b1d81 2019-07-27 stsp if (err == NULL) {
1404 268f7291 2018-12-24 stsp struct got_pack *pack = NULL;
1405 f4a881ce 2018-11-17 stsp
1406 268f7291 2018-12-24 stsp err = get_packfile_path(&path_packfile, packidx);
1407 268f7291 2018-12-24 stsp if (err)
1408 268f7291 2018-12-24 stsp return err;
1409 268f7291 2018-12-24 stsp
1410 268f7291 2018-12-24 stsp pack = got_repo_get_cached_pack(repo, path_packfile);
1411 f4a881ce 2018-11-17 stsp if (pack == NULL) {
1412 e82b1d81 2019-07-27 stsp err = got_repo_cache_pack(&pack, repo, path_packfile,
1413 e82b1d81 2019-07-27 stsp packidx);
1414 f4a881ce 2018-11-17 stsp if (err)
1415 8d2c5ea3 2019-08-13 stsp goto done;
1416 f4a881ce 2018-11-17 stsp }
1417 5d844a1e 2019-08-13 stsp
1418 992eb9d8 2020-02-07 tracey /* Beware of "lightweight" tags: Check object type first. */
1419 5d844a1e 2019-08-13 stsp err = read_packed_object_privsep(&obj, repo, pack, packidx,
1420 5d844a1e 2019-08-13 stsp idx, id);
1421 5d844a1e 2019-08-13 stsp if (err)
1422 5d844a1e 2019-08-13 stsp goto done;
1423 5d844a1e 2019-08-13 stsp obj_type = obj->type;
1424 5d844a1e 2019-08-13 stsp got_object_close(obj);
1425 5d844a1e 2019-08-13 stsp if (obj_type != GOT_OBJ_TYPE_TAG) {
1426 5d844a1e 2019-08-13 stsp err = got_error(GOT_ERR_OBJ_TYPE);
1427 5d844a1e 2019-08-13 stsp goto done;
1428 5d844a1e 2019-08-13 stsp }
1429 5d844a1e 2019-08-13 stsp err = read_packed_tag_privsep(tag, pack, packidx, idx, id);
1430 e82b1d81 2019-07-27 stsp } else if (err->code == GOT_ERR_NO_OBJ) {
1431 e82b1d81 2019-07-27 stsp int fd;
1432 e82b1d81 2019-07-27 stsp
1433 e82b1d81 2019-07-27 stsp err = open_loose_object(&fd, id, repo);
1434 e82b1d81 2019-07-27 stsp if (err)
1435 e82b1d81 2019-07-27 stsp return err;
1436 5d844a1e 2019-08-13 stsp err = read_object_header_privsep(&obj, repo, fd);
1437 5d844a1e 2019-08-13 stsp if (err)
1438 5d844a1e 2019-08-13 stsp return err;
1439 5d844a1e 2019-08-13 stsp obj_type = obj->type;
1440 5d844a1e 2019-08-13 stsp got_object_close(obj);
1441 5d844a1e 2019-08-13 stsp if (obj_type != GOT_OBJ_TYPE_TAG)
1442 5d844a1e 2019-08-13 stsp return got_error(GOT_ERR_OBJ_TYPE);
1443 5d844a1e 2019-08-13 stsp
1444 5d844a1e 2019-08-13 stsp err = open_loose_object(&fd, id, repo);
1445 5d844a1e 2019-08-13 stsp if (err)
1446 5d844a1e 2019-08-13 stsp return err;
1447 9f2369b0 2018-12-24 stsp err = read_tag_privsep(tag, fd, repo);
1448 e82b1d81 2019-07-27 stsp }
1449 f4a881ce 2018-11-17 stsp
1450 f4a881ce 2018-11-17 stsp if (err == NULL) {
1451 f4a881ce 2018-11-17 stsp (*tag)->refcnt++;
1452 268f7291 2018-12-24 stsp err = got_repo_cache_tag(repo, id, *tag);
1453 f4a881ce 2018-11-17 stsp }
1454 8d2c5ea3 2019-08-13 stsp done:
1455 8d2c5ea3 2019-08-13 stsp free(path_packfile);
1456 f4a881ce 2018-11-17 stsp return err;
1457 f4a881ce 2018-11-17 stsp }
1458 f4a881ce 2018-11-17 stsp
1459 f4a881ce 2018-11-17 stsp const struct got_error *
1460 f4a881ce 2018-11-17 stsp got_object_open_as_tag(struct got_tag_object **tag,
1461 f4a881ce 2018-11-17 stsp struct got_repository *repo, struct got_object_id *id)
1462 f4a881ce 2018-11-17 stsp {
1463 f4a881ce 2018-11-17 stsp *tag = got_repo_get_cached_tag(repo, id);
1464 f4a881ce 2018-11-17 stsp if (*tag != NULL) {
1465 f4a881ce 2018-11-17 stsp (*tag)->refcnt++;
1466 f4a881ce 2018-11-17 stsp return NULL;
1467 f4a881ce 2018-11-17 stsp }
1468 f4a881ce 2018-11-17 stsp
1469 268f7291 2018-12-24 stsp return open_tag(tag, repo, id, 0);
1470 f4a881ce 2018-11-17 stsp }
1471 f4a881ce 2018-11-17 stsp
1472 f4a881ce 2018-11-17 stsp const struct got_error *
1473 f4a881ce 2018-11-17 stsp got_object_tag_open(struct got_tag_object **tag,
1474 f4a881ce 2018-11-17 stsp struct got_repository *repo, struct got_object *obj)
1475 f4a881ce 2018-11-17 stsp {
1476 268f7291 2018-12-24 stsp return open_tag(tag, repo, got_object_get_id(obj), 1);
1477 d24820bf 2019-08-11 stsp }
1478 d24820bf 2019-08-11 stsp
1479 d24820bf 2019-08-11 stsp const char *
1480 d24820bf 2019-08-11 stsp got_object_tag_get_name(struct got_tag_object *tag)
1481 d24820bf 2019-08-11 stsp {
1482 d24820bf 2019-08-11 stsp return tag->tag;
1483 0bd18d37 2019-02-01 stsp }
1484 0bd18d37 2019-02-01 stsp
1485 0bd18d37 2019-02-01 stsp int
1486 0bd18d37 2019-02-01 stsp got_object_tag_get_object_type(struct got_tag_object *tag)
1487 0bd18d37 2019-02-01 stsp {
1488 0bd18d37 2019-02-01 stsp return tag->obj_type;
1489 0bd18d37 2019-02-01 stsp }
1490 0bd18d37 2019-02-01 stsp
1491 0bd18d37 2019-02-01 stsp struct got_object_id *
1492 0bd18d37 2019-02-01 stsp got_object_tag_get_object_id(struct got_tag_object *tag)
1493 0bd18d37 2019-02-01 stsp {
1494 0bd18d37 2019-02-01 stsp return &tag->id;
1495 01073a5d 2019-08-22 stsp }
1496 01073a5d 2019-08-22 stsp
1497 01073a5d 2019-08-22 stsp time_t
1498 01073a5d 2019-08-22 stsp got_object_tag_get_tagger_time(struct got_tag_object *tag)
1499 01073a5d 2019-08-22 stsp {
1500 01073a5d 2019-08-22 stsp return tag->tagger_time;
1501 01073a5d 2019-08-22 stsp }
1502 01073a5d 2019-08-22 stsp
1503 01073a5d 2019-08-22 stsp time_t
1504 01073a5d 2019-08-22 stsp got_object_tag_get_tagger_gmtoff(struct got_tag_object *tag)
1505 01073a5d 2019-08-22 stsp {
1506 01073a5d 2019-08-22 stsp return tag->tagger_gmtoff;
1507 01073a5d 2019-08-22 stsp }
1508 01073a5d 2019-08-22 stsp
1509 01073a5d 2019-08-22 stsp const char *
1510 01073a5d 2019-08-22 stsp got_object_tag_get_tagger(struct got_tag_object *tag)
1511 01073a5d 2019-08-22 stsp {
1512 01073a5d 2019-08-22 stsp return tag->tagger;
1513 776d4d29 2018-06-17 stsp }
1514 776d4d29 2018-06-17 stsp
1515 01073a5d 2019-08-22 stsp const char *
1516 01073a5d 2019-08-22 stsp got_object_tag_get_message(struct got_tag_object *tag)
1517 01073a5d 2019-08-22 stsp {
1518 01073a5d 2019-08-22 stsp return tag->tagmsg;
1519 01073a5d 2019-08-22 stsp }
1520 01073a5d 2019-08-22 stsp
1521 776d4d29 2018-06-17 stsp static struct got_tree_entry *
1522 65a9bbe9 2018-09-15 stsp find_entry_by_name(struct got_tree_object *tree, const char *name, size_t len)
1523 776d4d29 2018-06-17 stsp {
1524 56e0773d 2019-11-28 stsp int i;
1525 776d4d29 2018-06-17 stsp
1526 63da309a 2018-11-07 stsp /* Note that tree entries are sorted in strncmp() order. */
1527 56e0773d 2019-11-28 stsp for (i = 0; i < tree->nentries; i++) {
1528 56e0773d 2019-11-28 stsp struct got_tree_entry *te = &tree->entries[i];
1529 63da309a 2018-11-07 stsp int cmp = strncmp(te->name, name, len);
1530 63da309a 2018-11-07 stsp if (cmp < 0)
1531 63da309a 2018-11-07 stsp continue;
1532 63da309a 2018-11-07 stsp if (cmp > 0)
1533 63da309a 2018-11-07 stsp break;
1534 63da309a 2018-11-07 stsp if (te->name[len] == '\0')
1535 776d4d29 2018-06-17 stsp return te;
1536 776d4d29 2018-06-17 stsp }
1537 eb651edf 2018-02-11 stsp return NULL;
1538 a129376b 2019-03-28 stsp }
1539 a129376b 2019-03-28 stsp
1540 56e0773d 2019-11-28 stsp struct got_tree_entry *
1541 a129376b 2019-03-28 stsp got_object_tree_find_entry(struct got_tree_object *tree, const char *name)
1542 a129376b 2019-03-28 stsp {
1543 a129376b 2019-03-28 stsp return find_entry_by_name(tree, name, strlen(name));
1544 776d4d29 2018-06-17 stsp }
1545 776d4d29 2018-06-17 stsp
1546 776d4d29 2018-06-17 stsp const struct got_error *
1547 27d434c2 2018-09-15 stsp got_object_id_by_path(struct got_object_id **id, struct got_repository *repo,
1548 776d4d29 2018-06-17 stsp struct got_object_id *commit_id, const char *path)
1549 776d4d29 2018-06-17 stsp {
1550 776d4d29 2018-06-17 stsp const struct got_error *err = NULL;
1551 776d4d29 2018-06-17 stsp struct got_commit_object *commit = NULL;
1552 776d4d29 2018-06-17 stsp struct got_tree_object *tree = NULL;
1553 db37e2c0 2018-06-21 stsp struct got_tree_entry *te = NULL;
1554 65a9bbe9 2018-09-15 stsp const char *seg, *s;
1555 b7cd37e5 2018-11-18 stsp size_t seglen;
1556 776d4d29 2018-06-17 stsp
1557 27d434c2 2018-09-15 stsp *id = NULL;
1558 776d4d29 2018-06-17 stsp
1559 776d4d29 2018-06-17 stsp err = got_object_open_as_commit(&commit, repo, commit_id);
1560 776d4d29 2018-06-17 stsp if (err)
1561 776d4d29 2018-06-17 stsp goto done;
1562 776d4d29 2018-06-17 stsp
1563 776d4d29 2018-06-17 stsp /* Handle opening of root of commit's tree. */
1564 5e54fb30 2019-05-31 stsp if (got_path_is_root_dir(path)) {
1565 27d434c2 2018-09-15 stsp *id = got_object_id_dup(commit->tree_id);
1566 27d434c2 2018-09-15 stsp if (*id == NULL)
1567 638f9024 2019-05-13 stsp err = got_error_from_errno("got_object_id_dup");
1568 ca008b32 2018-07-22 stsp goto done;
1569 776d4d29 2018-06-17 stsp }
1570 776d4d29 2018-06-17 stsp
1571 776d4d29 2018-06-17 stsp err = got_object_open_as_tree(&tree, repo, commit->tree_id);
1572 776d4d29 2018-06-17 stsp if (err)
1573 776d4d29 2018-06-17 stsp goto done;
1574 776d4d29 2018-06-17 stsp
1575 65a9bbe9 2018-09-15 stsp s = path;
1576 5e54fb30 2019-05-31 stsp while (s[0] == '/')
1577 5e54fb30 2019-05-31 stsp s++;
1578 776d4d29 2018-06-17 stsp seg = s;
1579 65a9bbe9 2018-09-15 stsp seglen = 0;
1580 b7cd37e5 2018-11-18 stsp while (*s) {
1581 776d4d29 2018-06-17 stsp struct got_tree_object *next_tree;
1582 776d4d29 2018-06-17 stsp
1583 776d4d29 2018-06-17 stsp if (*s != '/') {
1584 776d4d29 2018-06-17 stsp s++;
1585 65a9bbe9 2018-09-15 stsp seglen++;
1586 00530cfb 2018-06-21 stsp if (*s)
1587 00530cfb 2018-06-21 stsp continue;
1588 776d4d29 2018-06-17 stsp }
1589 776d4d29 2018-06-17 stsp
1590 65a9bbe9 2018-09-15 stsp te = find_entry_by_name(tree, seg, seglen);
1591 db37e2c0 2018-06-21 stsp if (te == NULL) {
1592 d1451975 2018-11-11 stsp err = got_error(GOT_ERR_NO_TREE_ENTRY);
1593 776d4d29 2018-06-17 stsp goto done;
1594 776d4d29 2018-06-17 stsp }
1595 776d4d29 2018-06-17 stsp
1596 b7cd37e5 2018-11-18 stsp if (*s == '\0')
1597 67606321 2018-06-21 stsp break;
1598 67606321 2018-06-21 stsp
1599 776d4d29 2018-06-17 stsp seg = s + 1;
1600 65a9bbe9 2018-09-15 stsp seglen = 0;
1601 776d4d29 2018-06-17 stsp s++;
1602 776d4d29 2018-06-17 stsp if (*s) {
1603 776d4d29 2018-06-17 stsp err = got_object_open_as_tree(&next_tree, repo,
1604 56e0773d 2019-11-28 stsp &te->id);
1605 db37e2c0 2018-06-21 stsp te = NULL;
1606 776d4d29 2018-06-17 stsp if (err)
1607 776d4d29 2018-06-17 stsp goto done;
1608 776d4d29 2018-06-17 stsp got_object_tree_close(tree);
1609 776d4d29 2018-06-17 stsp tree = next_tree;
1610 776d4d29 2018-06-17 stsp }
1611 776d4d29 2018-06-17 stsp }
1612 776d4d29 2018-06-17 stsp
1613 27d434c2 2018-09-15 stsp if (te) {
1614 56e0773d 2019-11-28 stsp *id = got_object_id_dup(&te->id);
1615 27d434c2 2018-09-15 stsp if (*id == NULL)
1616 638f9024 2019-05-13 stsp return got_error_from_errno("got_object_id_dup");
1617 27d434c2 2018-09-15 stsp } else
1618 d1451975 2018-11-11 stsp err = got_error(GOT_ERR_NO_TREE_ENTRY);
1619 776d4d29 2018-06-17 stsp done:
1620 776d4d29 2018-06-17 stsp if (commit)
1621 776d4d29 2018-06-17 stsp got_object_commit_close(commit);
1622 776d4d29 2018-06-17 stsp if (tree)
1623 776d4d29 2018-06-17 stsp got_object_tree_close(tree);
1624 776d4d29 2018-06-17 stsp return err;
1625 68482ea3 2017-11-27 stsp }
1626 07862c20 2018-09-15 stsp
1627 07862c20 2018-09-15 stsp const struct got_error *
1628 07862c20 2018-09-15 stsp got_object_tree_path_changed(int *changed,
1629 07862c20 2018-09-15 stsp struct got_tree_object *tree01, struct got_tree_object *tree02,
1630 07862c20 2018-09-15 stsp const char *path, struct got_repository *repo)
1631 07862c20 2018-09-15 stsp {
1632 07862c20 2018-09-15 stsp const struct got_error *err = NULL;
1633 07862c20 2018-09-15 stsp struct got_tree_object *tree1 = NULL, *tree2 = NULL;
1634 07862c20 2018-09-15 stsp struct got_tree_entry *te1 = NULL, *te2 = NULL;
1635 65a9bbe9 2018-09-15 stsp const char *seg, *s;
1636 3b7f9878 2018-11-18 stsp size_t seglen;
1637 07862c20 2018-09-15 stsp
1638 07862c20 2018-09-15 stsp *changed = 0;
1639 07862c20 2018-09-15 stsp
1640 07862c20 2018-09-15 stsp /* We are expecting an absolute in-repository path. */
1641 07862c20 2018-09-15 stsp if (path[0] != '/')
1642 07862c20 2018-09-15 stsp return got_error(GOT_ERR_NOT_ABSPATH);
1643 07862c20 2018-09-15 stsp
1644 07862c20 2018-09-15 stsp /* We not do support comparing the root path. */
1645 07862c20 2018-09-15 stsp if (path[1] == '\0')
1646 07862c20 2018-09-15 stsp return got_error(GOT_ERR_BAD_PATH);
1647 07862c20 2018-09-15 stsp
1648 07862c20 2018-09-15 stsp tree1 = tree01;
1649 07862c20 2018-09-15 stsp tree2 = tree02;
1650 65a9bbe9 2018-09-15 stsp s = path;
1651 07862c20 2018-09-15 stsp s++; /* skip leading '/' */
1652 07862c20 2018-09-15 stsp seg = s;
1653 65a9bbe9 2018-09-15 stsp seglen = 0;
1654 3b7f9878 2018-11-18 stsp while (*s) {
1655 07862c20 2018-09-15 stsp struct got_tree_object *next_tree1, *next_tree2;
1656 07862c20 2018-09-15 stsp
1657 07862c20 2018-09-15 stsp if (*s != '/') {
1658 07862c20 2018-09-15 stsp s++;
1659 65a9bbe9 2018-09-15 stsp seglen++;
1660 07862c20 2018-09-15 stsp if (*s)
1661 07862c20 2018-09-15 stsp continue;
1662 07862c20 2018-09-15 stsp }
1663 07862c20 2018-09-15 stsp
1664 65a9bbe9 2018-09-15 stsp te1 = find_entry_by_name(tree1, seg, seglen);
1665 07862c20 2018-09-15 stsp if (te1 == NULL) {
1666 07862c20 2018-09-15 stsp err = got_error(GOT_ERR_NO_OBJ);
1667 07862c20 2018-09-15 stsp goto done;
1668 07862c20 2018-09-15 stsp }
1669 07862c20 2018-09-15 stsp
1670 65a9bbe9 2018-09-15 stsp te2 = find_entry_by_name(tree2, seg, seglen);
1671 07862c20 2018-09-15 stsp if (te2 == NULL) {
1672 07862c20 2018-09-15 stsp *changed = 1;
1673 07862c20 2018-09-15 stsp goto done;
1674 07862c20 2018-09-15 stsp }
1675 07862c20 2018-09-15 stsp
1676 07862c20 2018-09-15 stsp if (te1->mode != te2->mode) {
1677 07862c20 2018-09-15 stsp *changed = 1;
1678 07862c20 2018-09-15 stsp goto done;
1679 07862c20 2018-09-15 stsp }
1680 07862c20 2018-09-15 stsp
1681 56e0773d 2019-11-28 stsp if (got_object_id_cmp(&te1->id, &te2->id) == 0) {
1682 07862c20 2018-09-15 stsp *changed = 0;
1683 07862c20 2018-09-15 stsp goto done;
1684 07862c20 2018-09-15 stsp }
1685 07862c20 2018-09-15 stsp
1686 3b7f9878 2018-11-18 stsp if (*s == '\0') { /* final path element */
1687 07862c20 2018-09-15 stsp *changed = 1;
1688 07862c20 2018-09-15 stsp goto done;
1689 07862c20 2018-09-15 stsp }
1690 07862c20 2018-09-15 stsp
1691 07862c20 2018-09-15 stsp seg = s + 1;
1692 07862c20 2018-09-15 stsp s++;
1693 65a9bbe9 2018-09-15 stsp seglen = 0;
1694 07862c20 2018-09-15 stsp if (*s) {
1695 07862c20 2018-09-15 stsp err = got_object_open_as_tree(&next_tree1, repo,
1696 56e0773d 2019-11-28 stsp &te1->id);
1697 07862c20 2018-09-15 stsp te1 = NULL;
1698 07862c20 2018-09-15 stsp if (err)
1699 07862c20 2018-09-15 stsp goto done;
1700 a31cea73 2018-09-15 stsp if (tree1 != tree01)
1701 a31cea73 2018-09-15 stsp got_object_tree_close(tree1);
1702 07862c20 2018-09-15 stsp tree1 = next_tree1;
1703 07862c20 2018-09-15 stsp
1704 07862c20 2018-09-15 stsp err = got_object_open_as_tree(&next_tree2, repo,
1705 56e0773d 2019-11-28 stsp &te2->id);
1706 07862c20 2018-09-15 stsp te2 = NULL;
1707 07862c20 2018-09-15 stsp if (err)
1708 07862c20 2018-09-15 stsp goto done;
1709 a31cea73 2018-09-15 stsp if (tree2 != tree02)
1710 a31cea73 2018-09-15 stsp got_object_tree_close(tree2);
1711 07862c20 2018-09-15 stsp tree2 = next_tree2;
1712 07862c20 2018-09-15 stsp }
1713 07862c20 2018-09-15 stsp }
1714 07862c20 2018-09-15 stsp done:
1715 a31cea73 2018-09-15 stsp if (tree1 && tree1 != tree01)
1716 07862c20 2018-09-15 stsp got_object_tree_close(tree1);
1717 a31cea73 2018-09-15 stsp if (tree2 && tree2 != tree02)
1718 07862c20 2018-09-15 stsp got_object_tree_close(tree2);
1719 77880158 2018-11-04 stsp return err;
1720 77880158 2018-11-04 stsp }
1721 ed175427 2019-05-09 stsp
1722 ed175427 2019-05-09 stsp const struct got_error *
1723 ed175427 2019-05-09 stsp got_object_tree_entry_dup(struct got_tree_entry **new_te,
1724 ed175427 2019-05-09 stsp struct got_tree_entry *te)
1725 ed175427 2019-05-09 stsp {
1726 ed175427 2019-05-09 stsp const struct got_error *err = NULL;
1727 ed175427 2019-05-09 stsp
1728 ed175427 2019-05-09 stsp *new_te = calloc(1, sizeof(**new_te));
1729 ed175427 2019-05-09 stsp if (*new_te == NULL)
1730 638f9024 2019-05-13 stsp return got_error_from_errno("calloc");
1731 ed175427 2019-05-09 stsp
1732 ed175427 2019-05-09 stsp (*new_te)->mode = te->mode;
1733 56e0773d 2019-11-28 stsp memcpy((*new_te)->name, te->name, sizeof((*new_te)->name));
1734 56e0773d 2019-11-28 stsp memcpy(&(*new_te)->id, &te->id, sizeof((*new_te)->id));
1735 8c4eabf2 2019-05-10 stsp return err;
1736 63c5ca5d 2019-08-24 stsp }
1737 63c5ca5d 2019-08-24 stsp
1738 63c5ca5d 2019-08-24 stsp int
1739 56e0773d 2019-11-28 stsp got_object_tree_entry_is_submodule(struct got_tree_entry *te)
1740 63c5ca5d 2019-08-24 stsp {
1741 63c5ca5d 2019-08-24 stsp return (te->mode & S_IFMT) == (S_IFDIR | S_IFLNK);
1742 ca6e02ac 2020-01-07 stsp }
1743 ca6e02ac 2020-01-07 stsp
1744 ca6e02ac 2020-01-07 stsp const struct got_error *
1745 ca6e02ac 2020-01-07 stsp got_traverse_packed_commits(struct got_object_id_queue *traversed_commits,
1746 ca6e02ac 2020-01-07 stsp struct got_object_id *commit_id, const char *path,
1747 ca6e02ac 2020-01-07 stsp struct got_repository *repo)
1748 ca6e02ac 2020-01-07 stsp {
1749 ca6e02ac 2020-01-07 stsp const struct got_error *err = NULL;
1750 ca6e02ac 2020-01-07 stsp struct got_pack *pack = NULL;
1751 ca6e02ac 2020-01-07 stsp struct got_packidx *packidx = NULL;
1752 ca6e02ac 2020-01-07 stsp char *path_packfile = NULL;
1753 ca6e02ac 2020-01-07 stsp struct got_commit_object *changed_commit = NULL;
1754 ca6e02ac 2020-01-07 stsp struct got_object_id *changed_commit_id = NULL;
1755 ca6e02ac 2020-01-07 stsp int idx;
1756 ca6e02ac 2020-01-07 stsp
1757 ca6e02ac 2020-01-07 stsp err = got_repo_search_packidx(&packidx, &idx, repo, commit_id);
1758 ca6e02ac 2020-01-07 stsp if (err) {
1759 ca6e02ac 2020-01-07 stsp if (err->code != GOT_ERR_NO_OBJ)
1760 ca6e02ac 2020-01-07 stsp return err;
1761 ca6e02ac 2020-01-07 stsp return NULL;
1762 ca6e02ac 2020-01-07 stsp }
1763 ca6e02ac 2020-01-07 stsp
1764 ca6e02ac 2020-01-07 stsp err = get_packfile_path(&path_packfile, packidx);
1765 ca6e02ac 2020-01-07 stsp if (err)
1766 ca6e02ac 2020-01-07 stsp return err;
1767 ca6e02ac 2020-01-07 stsp
1768 ca6e02ac 2020-01-07 stsp pack = got_repo_get_cached_pack(repo, path_packfile);
1769 ca6e02ac 2020-01-07 stsp if (pack == NULL) {
1770 ca6e02ac 2020-01-07 stsp err = got_repo_cache_pack(&pack, repo, path_packfile, packidx);
1771 ca6e02ac 2020-01-07 stsp if (err)
1772 ca6e02ac 2020-01-07 stsp goto done;
1773 ca6e02ac 2020-01-07 stsp }
1774 ca6e02ac 2020-01-07 stsp
1775 ca6e02ac 2020-01-07 stsp if (pack->privsep_child == NULL) {
1776 ca6e02ac 2020-01-07 stsp err = start_pack_privsep_child(pack, packidx);
1777 ca6e02ac 2020-01-07 stsp if (err)
1778 ca6e02ac 2020-01-07 stsp goto done;
1779 ca6e02ac 2020-01-07 stsp }
1780 ca6e02ac 2020-01-07 stsp
1781 ca6e02ac 2020-01-07 stsp err = got_privsep_send_commit_traversal_request(
1782 ca6e02ac 2020-01-07 stsp pack->privsep_child->ibuf, commit_id, idx, path);
1783 ca6e02ac 2020-01-07 stsp if (err)
1784 ca6e02ac 2020-01-07 stsp goto done;
1785 ca6e02ac 2020-01-07 stsp
1786 ca6e02ac 2020-01-07 stsp err = got_privsep_recv_traversed_commits(&changed_commit,
1787 ca6e02ac 2020-01-07 stsp &changed_commit_id, traversed_commits, pack->privsep_child->ibuf);
1788 ca6e02ac 2020-01-07 stsp if (err)
1789 ca6e02ac 2020-01-07 stsp goto done;
1790 ca6e02ac 2020-01-07 stsp
1791 ca6e02ac 2020-01-07 stsp if (changed_commit) {
1792 ca6e02ac 2020-01-07 stsp /*
1793 ca6e02ac 2020-01-07 stsp * Cache the commit in which the path was changed.
1794 ca6e02ac 2020-01-07 stsp * This commit might be opened again soon.
1795 ca6e02ac 2020-01-07 stsp */
1796 ca6e02ac 2020-01-07 stsp changed_commit->refcnt++;
1797 ca6e02ac 2020-01-07 stsp err = got_repo_cache_commit(repo, changed_commit_id,
1798 ca6e02ac 2020-01-07 stsp changed_commit);
1799 ca6e02ac 2020-01-07 stsp got_object_commit_close(changed_commit);
1800 ca6e02ac 2020-01-07 stsp }
1801 ca6e02ac 2020-01-07 stsp done:
1802 ca6e02ac 2020-01-07 stsp free(path_packfile);
1803 ca6e02ac 2020-01-07 stsp free(changed_commit_id);
1804 ca6e02ac 2020-01-07 stsp return err;
1805 ed175427 2019-05-09 stsp }