Blame


1 876c234b 2018-09-10 stsp /*
2 5aa81393 2020-01-06 stsp * Copyright (c) 2018, 2019, 2020 Stefan Sperling <stsp@openbsd.org>
3 876c234b 2018-09-10 stsp *
4 876c234b 2018-09-10 stsp * Permission to use, copy, modify, and distribute this software for any
5 876c234b 2018-09-10 stsp * purpose with or without fee is hereby granted, provided that the above
6 876c234b 2018-09-10 stsp * copyright notice and this permission notice appear in all copies.
7 876c234b 2018-09-10 stsp *
8 876c234b 2018-09-10 stsp * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
9 876c234b 2018-09-10 stsp * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
10 876c234b 2018-09-10 stsp * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
11 876c234b 2018-09-10 stsp * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
12 876c234b 2018-09-10 stsp * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
13 876c234b 2018-09-10 stsp * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
14 876c234b 2018-09-10 stsp * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
15 876c234b 2018-09-10 stsp */
16 876c234b 2018-09-10 stsp
17 63915ee5 2022-06-23 thomas #include <sys/stat.h>
18 876c234b 2018-09-10 stsp #include <sys/types.h>
19 8b925c6c 2022-07-16 thomas #include <sys/queue.h>
20 876c234b 2018-09-10 stsp #include <sys/uio.h>
21 876c234b 2018-09-10 stsp #include <sys/time.h>
22 876c234b 2018-09-10 stsp #include <sys/mman.h>
23 876c234b 2018-09-10 stsp
24 60b94e7d 2022-07-19 thomas #include <inttypes.h>
25 876c234b 2018-09-10 stsp #include <limits.h>
26 99437157 2018-11-11 stsp #include <signal.h>
27 876c234b 2018-09-10 stsp #include <stdint.h>
28 876c234b 2018-09-10 stsp #include <stdio.h>
29 876c234b 2018-09-10 stsp #include <stdlib.h>
30 876c234b 2018-09-10 stsp #include <string.h>
31 81a12da5 2020-09-09 naddy #include <unistd.h>
32 876c234b 2018-09-10 stsp #include <zlib.h>
33 dd038bc6 2021-09-21 thomas.ad
34 dd038bc6 2021-09-21 thomas.ad #include "got_compat.h"
35 876c234b 2018-09-10 stsp
36 876c234b 2018-09-10 stsp #include "got_error.h"
37 876c234b 2018-09-10 stsp #include "got_object.h"
38 3022d272 2019-11-14 stsp #include "got_path.h"
39 876c234b 2018-09-10 stsp
40 876c234b 2018-09-10 stsp #include "got_lib_delta.h"
41 ab2f42e7 2019-11-10 stsp #include "got_lib_delta_cache.h"
42 876c234b 2018-09-10 stsp #include "got_lib_object.h"
43 c59b3346 2018-09-11 stsp #include "got_lib_object_cache.h"
44 876c234b 2018-09-10 stsp #include "got_lib_object_parse.h"
45 7d0d4920 2022-05-12 thomas #include "got_lib_object_idset.h"
46 876c234b 2018-09-10 stsp #include "got_lib_privsep.h"
47 876c234b 2018-09-10 stsp #include "got_lib_pack.h"
48 ec2b23c5 2022-07-01 thomas
49 ec2b23c5 2022-07-01 thomas #ifndef nitems
50 ec2b23c5 2022-07-01 thomas #define nitems(_a) (sizeof((_a)) / sizeof((_a)[0]))
51 ec2b23c5 2022-07-01 thomas #endif
52 876c234b 2018-09-10 stsp
53 99437157 2018-11-11 stsp static volatile sig_atomic_t sigint_received;
54 99437157 2018-11-11 stsp
55 99437157 2018-11-11 stsp static void
56 99437157 2018-11-11 stsp catch_sigint(int signo)
57 99437157 2018-11-11 stsp {
58 99437157 2018-11-11 stsp sigint_received = 1;
59 99437157 2018-11-11 stsp }
60 99437157 2018-11-11 stsp
61 876c234b 2018-09-10 stsp static const struct got_error *
62 704b89c4 2019-05-23 stsp open_object(struct got_object **obj, struct got_pack *pack,
63 704b89c4 2019-05-23 stsp struct got_packidx *packidx, int idx, struct got_object_id *id,
64 704b89c4 2019-05-23 stsp struct got_object_cache *objcache)
65 704b89c4 2019-05-23 stsp {
66 704b89c4 2019-05-23 stsp const struct got_error *err;
67 704b89c4 2019-05-23 stsp
68 704b89c4 2019-05-23 stsp err = got_packfile_open_object(obj, pack, packidx, idx, id);
69 704b89c4 2019-05-23 stsp if (err)
70 704b89c4 2019-05-23 stsp return err;
71 704b89c4 2019-05-23 stsp (*obj)->refcnt++;
72 704b89c4 2019-05-23 stsp
73 704b89c4 2019-05-23 stsp err = got_object_cache_add(objcache, id, *obj);
74 79c99a64 2019-05-23 stsp if (err) {
75 79c99a64 2019-05-23 stsp if (err->code == GOT_ERR_OBJ_EXISTS ||
76 79c99a64 2019-05-23 stsp err->code == GOT_ERR_OBJ_TOO_LARGE)
77 79c99a64 2019-05-23 stsp err = NULL;
78 704b89c4 2019-05-23 stsp return err;
79 79c99a64 2019-05-23 stsp }
80 704b89c4 2019-05-23 stsp (*obj)->refcnt++;
81 704b89c4 2019-05-23 stsp return NULL;
82 704b89c4 2019-05-23 stsp }
83 704b89c4 2019-05-23 stsp
84 704b89c4 2019-05-23 stsp static const struct got_error *
85 876c234b 2018-09-10 stsp object_request(struct imsg *imsg, struct imsgbuf *ibuf, struct got_pack *pack,
86 c59b3346 2018-09-11 stsp struct got_packidx *packidx, struct got_object_cache *objcache)
87 876c234b 2018-09-10 stsp {
88 876c234b 2018-09-10 stsp const struct got_error *err = NULL;
89 876c234b 2018-09-10 stsp struct got_imsg_packed_object iobj;
90 876c234b 2018-09-10 stsp struct got_object *obj;
91 106807b4 2018-09-15 stsp struct got_object_id id;
92 876c234b 2018-09-10 stsp size_t datalen;
93 876c234b 2018-09-10 stsp
94 876c234b 2018-09-10 stsp datalen = imsg->hdr.len - IMSG_HEADER_SIZE;
95 876c234b 2018-09-10 stsp if (datalen != sizeof(iobj))
96 876c234b 2018-09-10 stsp return got_error(GOT_ERR_PRIVSEP_LEN);
97 876c234b 2018-09-10 stsp memcpy(&iobj, imsg->data, sizeof(iobj));
98 106807b4 2018-09-15 stsp memcpy(id.sha1, iobj.id, SHA1_DIGEST_LENGTH);
99 876c234b 2018-09-10 stsp
100 704b89c4 2019-05-23 stsp obj = got_object_cache_get(objcache, &id);
101 704b89c4 2019-05-23 stsp if (obj) {
102 704b89c4 2019-05-23 stsp obj->refcnt++;
103 704b89c4 2019-05-23 stsp } else {
104 704b89c4 2019-05-23 stsp err = open_object(&obj, pack, packidx, iobj.idx, &id,
105 704b89c4 2019-05-23 stsp objcache);
106 704b89c4 2019-05-23 stsp if (err)
107 704b89c4 2019-05-23 stsp goto done;
108 704b89c4 2019-05-23 stsp }
109 876c234b 2018-09-10 stsp
110 876c234b 2018-09-10 stsp err = got_privsep_send_obj(ibuf, obj);
111 c59b3346 2018-09-11 stsp done:
112 876c234b 2018-09-10 stsp got_object_close(obj);
113 876c234b 2018-09-10 stsp return err;
114 876c234b 2018-09-10 stsp }
115 876c234b 2018-09-10 stsp
116 8f1c06eb 2021-09-25 thomas.ad static const struct got_error *
117 ca6e02ac 2020-01-07 stsp open_commit(struct got_commit_object **commit, struct got_pack *pack,
118 ca6e02ac 2020-01-07 stsp struct got_packidx *packidx, int obj_idx, struct got_object_id *id,
119 ca6e02ac 2020-01-07 stsp struct got_object_cache *objcache)
120 876c234b 2018-09-10 stsp {
121 cfd633c2 2018-09-10 stsp const struct got_error *err = NULL;
122 cb5e38fd 2019-05-23 stsp struct got_object *obj = NULL;
123 cb5e38fd 2019-05-23 stsp uint8_t *buf = NULL;
124 cfd633c2 2018-09-10 stsp size_t len;
125 cfd633c2 2018-09-10 stsp
126 ca6e02ac 2020-01-07 stsp *commit = NULL;
127 1785f84a 2018-12-23 stsp
128 ca6e02ac 2020-01-07 stsp obj = got_object_cache_get(objcache, id);
129 704b89c4 2019-05-23 stsp if (obj) {
130 704b89c4 2019-05-23 stsp obj->refcnt++;
131 704b89c4 2019-05-23 stsp } else {
132 ca6e02ac 2020-01-07 stsp err = open_object(&obj, pack, packidx, obj_idx, id,
133 704b89c4 2019-05-23 stsp objcache);
134 704b89c4 2019-05-23 stsp if (err)
135 704b89c4 2019-05-23 stsp return err;
136 704b89c4 2019-05-23 stsp }
137 cfd633c2 2018-09-10 stsp
138 cfd633c2 2018-09-10 stsp err = got_packfile_extract_object_to_mem(&buf, &len, obj, pack);
139 cfd633c2 2018-09-10 stsp if (err)
140 cb5e38fd 2019-05-23 stsp goto done;
141 cfd633c2 2018-09-10 stsp
142 cfd633c2 2018-09-10 stsp obj->size = len;
143 ca6e02ac 2020-01-07 stsp
144 ca6e02ac 2020-01-07 stsp err = got_object_parse_commit(commit, buf, len);
145 ca6e02ac 2020-01-07 stsp done:
146 ca6e02ac 2020-01-07 stsp got_object_close(obj);
147 ca6e02ac 2020-01-07 stsp free(buf);
148 ca6e02ac 2020-01-07 stsp return err;
149 ca6e02ac 2020-01-07 stsp }
150 ca6e02ac 2020-01-07 stsp
151 ca6e02ac 2020-01-07 stsp static const struct got_error *
152 ca6e02ac 2020-01-07 stsp commit_request(struct imsg *imsg, struct imsgbuf *ibuf, struct got_pack *pack,
153 ca6e02ac 2020-01-07 stsp struct got_packidx *packidx, struct got_object_cache *objcache)
154 ca6e02ac 2020-01-07 stsp {
155 ca6e02ac 2020-01-07 stsp const struct got_error *err = NULL;
156 ca6e02ac 2020-01-07 stsp struct got_imsg_packed_object iobj;
157 ca6e02ac 2020-01-07 stsp struct got_commit_object *commit = NULL;
158 ca6e02ac 2020-01-07 stsp struct got_object_id id;
159 ca6e02ac 2020-01-07 stsp size_t datalen;
160 ca6e02ac 2020-01-07 stsp
161 ca6e02ac 2020-01-07 stsp datalen = imsg->hdr.len - IMSG_HEADER_SIZE;
162 ca6e02ac 2020-01-07 stsp if (datalen != sizeof(iobj))
163 ca6e02ac 2020-01-07 stsp return got_error(GOT_ERR_PRIVSEP_LEN);
164 ca6e02ac 2020-01-07 stsp memcpy(&iobj, imsg->data, sizeof(iobj));
165 ca6e02ac 2020-01-07 stsp memcpy(id.sha1, iobj.id, SHA1_DIGEST_LENGTH);
166 ca6e02ac 2020-01-07 stsp
167 ca6e02ac 2020-01-07 stsp err = open_commit(&commit, pack, packidx, iobj.idx, &id, objcache);
168 cb5e38fd 2019-05-23 stsp if (err)
169 cb5e38fd 2019-05-23 stsp goto done;
170 cfd633c2 2018-09-10 stsp
171 cfd633c2 2018-09-10 stsp err = got_privsep_send_commit(ibuf, commit);
172 cb5e38fd 2019-05-23 stsp done:
173 cb5e38fd 2019-05-23 stsp if (commit)
174 cb5e38fd 2019-05-23 stsp got_object_commit_close(commit);
175 7762fe12 2018-11-05 stsp if (err) {
176 7762fe12 2018-11-05 stsp if (err->code == GOT_ERR_PRIVSEP_PIPE)
177 7762fe12 2018-11-05 stsp err = NULL;
178 7762fe12 2018-11-05 stsp else
179 7762fe12 2018-11-05 stsp got_privsep_send_error(ibuf, err);
180 7762fe12 2018-11-05 stsp }
181 7762fe12 2018-11-05 stsp
182 7762fe12 2018-11-05 stsp return err;
183 7762fe12 2018-11-05 stsp }
184 7762fe12 2018-11-05 stsp
185 8f1c06eb 2021-09-25 thomas.ad static const struct got_error *
186 c77e00b3 2022-10-18 thomas open_tree(uint8_t **buf, struct got_parsed_tree_entry **entries, size_t *nentries,
187 c77e00b3 2022-10-18 thomas size_t *nentries_alloc, struct got_pack *pack, struct got_packidx *packidx,
188 c77e00b3 2022-10-18 thomas int obj_idx, struct got_object_id *id, struct got_object_cache *objcache)
189 ca6e02ac 2020-01-07 stsp {
190 ca6e02ac 2020-01-07 stsp const struct got_error *err = NULL;
191 ca6e02ac 2020-01-07 stsp struct got_object *obj = NULL;
192 ca6e02ac 2020-01-07 stsp size_t len;
193 ca6e02ac 2020-01-07 stsp
194 ca6e02ac 2020-01-07 stsp *buf = NULL;
195 ca6e02ac 2020-01-07 stsp *nentries = 0;
196 ca6e02ac 2020-01-07 stsp
197 ca6e02ac 2020-01-07 stsp obj = got_object_cache_get(objcache, id);
198 ca6e02ac 2020-01-07 stsp if (obj) {
199 ca6e02ac 2020-01-07 stsp obj->refcnt++;
200 ca6e02ac 2020-01-07 stsp } else {
201 ca6e02ac 2020-01-07 stsp err = open_object(&obj, pack, packidx, obj_idx, id,
202 ca6e02ac 2020-01-07 stsp objcache);
203 ca6e02ac 2020-01-07 stsp if (err)
204 ca6e02ac 2020-01-07 stsp return err;
205 ca6e02ac 2020-01-07 stsp }
206 ca6e02ac 2020-01-07 stsp
207 ca6e02ac 2020-01-07 stsp err = got_packfile_extract_object_to_mem(buf, &len, obj, pack);
208 ca6e02ac 2020-01-07 stsp if (err)
209 ca6e02ac 2020-01-07 stsp goto done;
210 ca6e02ac 2020-01-07 stsp
211 ca6e02ac 2020-01-07 stsp obj->size = len;
212 ca6e02ac 2020-01-07 stsp
213 c77e00b3 2022-10-18 thomas err = got_object_parse_tree(entries, nentries, nentries_alloc,
214 c77e00b3 2022-10-18 thomas *buf, len);
215 ca6e02ac 2020-01-07 stsp done:
216 ca6e02ac 2020-01-07 stsp got_object_close(obj);
217 ca6e02ac 2020-01-07 stsp if (err) {
218 ca6e02ac 2020-01-07 stsp free(*buf);
219 ca6e02ac 2020-01-07 stsp *buf = NULL;
220 ca6e02ac 2020-01-07 stsp }
221 ca6e02ac 2020-01-07 stsp return err;
222 ca6e02ac 2020-01-07 stsp }
223 ca6e02ac 2020-01-07 stsp
224 7762fe12 2018-11-05 stsp static const struct got_error *
225 876c234b 2018-09-10 stsp tree_request(struct imsg *imsg, struct imsgbuf *ibuf, struct got_pack *pack,
226 c77e00b3 2022-10-18 thomas struct got_packidx *packidx, struct got_object_cache *objcache,
227 c77e00b3 2022-10-18 thomas struct got_parsed_tree_entry **entries, size_t *nentries,
228 c77e00b3 2022-10-18 thomas size_t *nentries_alloc)
229 876c234b 2018-09-10 stsp {
230 e7885405 2018-09-10 stsp const struct got_error *err = NULL;
231 13c729f7 2018-12-24 stsp struct got_imsg_packed_object iobj;
232 cb5e38fd 2019-05-23 stsp uint8_t *buf = NULL;
233 13c729f7 2018-12-24 stsp struct got_object_id id;
234 13c729f7 2018-12-24 stsp size_t datalen;
235 e7885405 2018-09-10 stsp
236 13c729f7 2018-12-24 stsp datalen = imsg->hdr.len - IMSG_HEADER_SIZE;
237 13c729f7 2018-12-24 stsp if (datalen != sizeof(iobj))
238 13c729f7 2018-12-24 stsp return got_error(GOT_ERR_PRIVSEP_LEN);
239 13c729f7 2018-12-24 stsp memcpy(&iobj, imsg->data, sizeof(iobj));
240 13c729f7 2018-12-24 stsp memcpy(id.sha1, iobj.id, SHA1_DIGEST_LENGTH);
241 13c729f7 2018-12-24 stsp
242 c77e00b3 2022-10-18 thomas err = open_tree(&buf, entries, nentries, nentries_alloc,
243 c77e00b3 2022-10-18 thomas pack, packidx, iobj.idx, &id, objcache);
244 e7885405 2018-09-10 stsp if (err)
245 ca6e02ac 2020-01-07 stsp return err;
246 e7885405 2018-09-10 stsp
247 c77e00b3 2022-10-18 thomas err = got_privsep_send_tree(ibuf, *entries, *nentries);
248 cb5e38fd 2019-05-23 stsp free(buf);
249 e7885405 2018-09-10 stsp if (err) {
250 e7885405 2018-09-10 stsp if (err->code == GOT_ERR_PRIVSEP_PIPE)
251 e7885405 2018-09-10 stsp err = NULL;
252 e7885405 2018-09-10 stsp else
253 e7885405 2018-09-10 stsp got_privsep_send_error(ibuf, err);
254 e7885405 2018-09-10 stsp }
255 e7885405 2018-09-10 stsp
256 e7885405 2018-09-10 stsp return err;
257 876c234b 2018-09-10 stsp }
258 876c234b 2018-09-10 stsp
259 876c234b 2018-09-10 stsp static const struct got_error *
260 01bb5a15 2021-09-25 thomas.ad receive_file(FILE **f, struct imsgbuf *ibuf, uint32_t imsg_code)
261 876c234b 2018-09-10 stsp {
262 3840f4c9 2018-09-12 stsp const struct got_error *err;
263 3840f4c9 2018-09-12 stsp struct imsg imsg;
264 55da3778 2018-09-10 stsp size_t datalen;
265 55da3778 2018-09-10 stsp
266 3840f4c9 2018-09-12 stsp err = got_privsep_recv_imsg(&imsg, ibuf, 0);
267 55da3778 2018-09-10 stsp if (err)
268 55da3778 2018-09-10 stsp return err;
269 55da3778 2018-09-10 stsp
270 3840f4c9 2018-09-12 stsp if (imsg.hdr.type != imsg_code) {
271 55da3778 2018-09-10 stsp err = got_error(GOT_ERR_PRIVSEP_MSG);
272 55da3778 2018-09-10 stsp goto done;
273 55da3778 2018-09-10 stsp }
274 55da3778 2018-09-10 stsp
275 3840f4c9 2018-09-12 stsp datalen = imsg.hdr.len - IMSG_HEADER_SIZE;
276 55da3778 2018-09-10 stsp if (datalen != 0) {
277 55da3778 2018-09-10 stsp err = got_error(GOT_ERR_PRIVSEP_LEN);
278 55da3778 2018-09-10 stsp goto done;
279 55da3778 2018-09-10 stsp }
280 3840f4c9 2018-09-12 stsp if (imsg.fd == -1) {
281 55da3778 2018-09-10 stsp err = got_error(GOT_ERR_PRIVSEP_NO_FD);
282 55da3778 2018-09-10 stsp goto done;
283 55da3778 2018-09-10 stsp }
284 55da3778 2018-09-10 stsp
285 3840f4c9 2018-09-12 stsp *f = fdopen(imsg.fd, "w+");
286 3840f4c9 2018-09-12 stsp if (*f == NULL) {
287 638f9024 2019-05-13 stsp err = got_error_from_errno("fdopen");
288 3a6ce05a 2019-02-11 stsp close(imsg.fd);
289 55da3778 2018-09-10 stsp goto done;
290 55da3778 2018-09-10 stsp }
291 3840f4c9 2018-09-12 stsp done:
292 3840f4c9 2018-09-12 stsp imsg_free(&imsg);
293 3840f4c9 2018-09-12 stsp return err;
294 bc1f382f 2022-01-05 thomas }
295 bc1f382f 2022-01-05 thomas
296 bc1f382f 2022-01-05 thomas static const struct got_error *
297 f9c2e8e5 2022-02-13 thomas receive_tempfile(FILE **f, const char *mode, struct imsg *imsg,
298 bc1f382f 2022-01-05 thomas struct imsgbuf *ibuf)
299 bc1f382f 2022-01-05 thomas {
300 bc1f382f 2022-01-05 thomas size_t datalen;
301 bc1f382f 2022-01-05 thomas
302 bc1f382f 2022-01-05 thomas datalen = imsg->hdr.len - IMSG_HEADER_SIZE;
303 bc1f382f 2022-01-05 thomas if (datalen != 0)
304 bc1f382f 2022-01-05 thomas return got_error(GOT_ERR_PRIVSEP_LEN);
305 bc1f382f 2022-01-05 thomas
306 bc1f382f 2022-01-05 thomas if (imsg->fd == -1)
307 bc1f382f 2022-01-05 thomas return got_error(GOT_ERR_PRIVSEP_NO_FD);
308 bc1f382f 2022-01-05 thomas
309 f9c2e8e5 2022-02-13 thomas *f = fdopen(imsg->fd, mode);
310 bc1f382f 2022-01-05 thomas if (*f == NULL)
311 bc1f382f 2022-01-05 thomas return got_error_from_errno("fdopen");
312 bc1f382f 2022-01-05 thomas imsg->fd = -1;
313 bc1f382f 2022-01-05 thomas
314 bc1f382f 2022-01-05 thomas return NULL;
315 3840f4c9 2018-09-12 stsp }
316 55da3778 2018-09-10 stsp
317 3840f4c9 2018-09-12 stsp static const struct got_error *
318 3840f4c9 2018-09-12 stsp blob_request(struct imsg *imsg, struct imsgbuf *ibuf, struct got_pack *pack,
319 bc1f382f 2022-01-05 thomas struct got_packidx *packidx, struct got_object_cache *objcache,
320 bc1f382f 2022-01-05 thomas FILE *basefile, FILE *accumfile)
321 3840f4c9 2018-09-12 stsp {
322 3840f4c9 2018-09-12 stsp const struct got_error *err = NULL;
323 ebc55e2d 2018-12-24 stsp struct got_imsg_packed_object iobj;
324 3840f4c9 2018-09-12 stsp struct got_object *obj = NULL;
325 bc1f382f 2022-01-05 thomas FILE *outfile = NULL;
326 ebc55e2d 2018-12-24 stsp struct got_object_id id;
327 ebc55e2d 2018-12-24 stsp size_t datalen;
328 ac544f8c 2019-01-13 stsp uint64_t blob_size;
329 ac544f8c 2019-01-13 stsp uint8_t *buf = NULL;
330 3840f4c9 2018-09-12 stsp
331 ebc55e2d 2018-12-24 stsp datalen = imsg->hdr.len - IMSG_HEADER_SIZE;
332 ebc55e2d 2018-12-24 stsp if (datalen != sizeof(iobj))
333 ebc55e2d 2018-12-24 stsp return got_error(GOT_ERR_PRIVSEP_LEN);
334 ebc55e2d 2018-12-24 stsp memcpy(&iobj, imsg->data, sizeof(iobj));
335 ebc55e2d 2018-12-24 stsp memcpy(id.sha1, iobj.id, SHA1_DIGEST_LENGTH);
336 ebc55e2d 2018-12-24 stsp
337 704b89c4 2019-05-23 stsp obj = got_object_cache_get(objcache, &id);
338 704b89c4 2019-05-23 stsp if (obj) {
339 704b89c4 2019-05-23 stsp obj->refcnt++;
340 704b89c4 2019-05-23 stsp } else {
341 704b89c4 2019-05-23 stsp err = open_object(&obj, pack, packidx, iobj.idx, &id,
342 704b89c4 2019-05-23 stsp objcache);
343 704b89c4 2019-05-23 stsp if (err)
344 704b89c4 2019-05-23 stsp return err;
345 704b89c4 2019-05-23 stsp }
346 3840f4c9 2018-09-12 stsp
347 3840f4c9 2018-09-12 stsp err = receive_file(&outfile, ibuf, GOT_IMSG_BLOB_OUTFD);
348 3840f4c9 2018-09-12 stsp if (err)
349 ac544f8c 2019-01-13 stsp goto done;
350 3840f4c9 2018-09-12 stsp
351 ac544f8c 2019-01-13 stsp if (obj->flags & GOT_OBJ_FLAG_DELTIFIED) {
352 42c69117 2019-11-10 stsp err = got_pack_get_max_delta_object_size(&blob_size, obj, pack);
353 ac544f8c 2019-01-13 stsp if (err)
354 ac544f8c 2019-01-13 stsp goto done;
355 ac544f8c 2019-01-13 stsp } else
356 ac544f8c 2019-01-13 stsp blob_size = obj->size;
357 ac544f8c 2019-01-13 stsp
358 ac544f8c 2019-01-13 stsp if (blob_size <= GOT_PRIVSEP_INLINE_BLOB_DATA_MAX)
359 ac544f8c 2019-01-13 stsp err = got_packfile_extract_object_to_mem(&buf, &obj->size,
360 ac544f8c 2019-01-13 stsp obj, pack);
361 ac544f8c 2019-01-13 stsp else
362 ac544f8c 2019-01-13 stsp err = got_packfile_extract_object(pack, obj, outfile, basefile,
363 ac544f8c 2019-01-13 stsp accumfile);
364 3840f4c9 2018-09-12 stsp if (err)
365 55da3778 2018-09-10 stsp goto done;
366 55da3778 2018-09-10 stsp
367 ac544f8c 2019-01-13 stsp err = got_privsep_send_blob(ibuf, obj->size, obj->hdrlen, buf);
368 55da3778 2018-09-10 stsp done:
369 ac544f8c 2019-01-13 stsp free(buf);
370 56b63ca4 2021-01-22 stsp if (outfile && fclose(outfile) == EOF && err == NULL)
371 638f9024 2019-05-13 stsp err = got_error_from_errno("fclose");
372 cb5e38fd 2019-05-23 stsp got_object_close(obj);
373 3840f4c9 2018-09-12 stsp if (err && err->code != GOT_ERR_PRIVSEP_PIPE)
374 3840f4c9 2018-09-12 stsp got_privsep_send_error(ibuf, err);
375 55da3778 2018-09-10 stsp
376 55da3778 2018-09-10 stsp return err;
377 876c234b 2018-09-10 stsp }
378 876c234b 2018-09-10 stsp
379 876c234b 2018-09-10 stsp static const struct got_error *
380 f4a881ce 2018-11-17 stsp tag_request(struct imsg *imsg, struct imsgbuf *ibuf, struct got_pack *pack,
381 f4a881ce 2018-11-17 stsp struct got_packidx *packidx, struct got_object_cache *objcache)
382 f4a881ce 2018-11-17 stsp {
383 f4a881ce 2018-11-17 stsp const struct got_error *err = NULL;
384 268f7291 2018-12-24 stsp struct got_imsg_packed_object iobj;
385 f4a881ce 2018-11-17 stsp struct got_object *obj = NULL;
386 f4a881ce 2018-11-17 stsp struct got_tag_object *tag = NULL;
387 cb5e38fd 2019-05-23 stsp uint8_t *buf = NULL;
388 f4a881ce 2018-11-17 stsp size_t len;
389 268f7291 2018-12-24 stsp struct got_object_id id;
390 268f7291 2018-12-24 stsp size_t datalen;
391 f4a881ce 2018-11-17 stsp
392 268f7291 2018-12-24 stsp datalen = imsg->hdr.len - IMSG_HEADER_SIZE;
393 268f7291 2018-12-24 stsp if (datalen != sizeof(iobj))
394 268f7291 2018-12-24 stsp return got_error(GOT_ERR_PRIVSEP_LEN);
395 268f7291 2018-12-24 stsp memcpy(&iobj, imsg->data, sizeof(iobj));
396 268f7291 2018-12-24 stsp memcpy(id.sha1, iobj.id, SHA1_DIGEST_LENGTH);
397 268f7291 2018-12-24 stsp
398 704b89c4 2019-05-23 stsp obj = got_object_cache_get(objcache, &id);
399 704b89c4 2019-05-23 stsp if (obj) {
400 704b89c4 2019-05-23 stsp obj->refcnt++;
401 704b89c4 2019-05-23 stsp } else {
402 704b89c4 2019-05-23 stsp err = open_object(&obj, pack, packidx, iobj.idx, &id,
403 704b89c4 2019-05-23 stsp objcache);
404 704b89c4 2019-05-23 stsp if (err)
405 704b89c4 2019-05-23 stsp return err;
406 704b89c4 2019-05-23 stsp }
407 f4a881ce 2018-11-17 stsp
408 f4a881ce 2018-11-17 stsp err = got_packfile_extract_object_to_mem(&buf, &len, obj, pack);
409 f4a881ce 2018-11-17 stsp if (err)
410 cb5e38fd 2019-05-23 stsp goto done;
411 f4a881ce 2018-11-17 stsp
412 f4a881ce 2018-11-17 stsp obj->size = len;
413 f4a881ce 2018-11-17 stsp err = got_object_parse_tag(&tag, buf, len);
414 0ae4af15 2019-02-01 stsp if (err)
415 cb5e38fd 2019-05-23 stsp goto done;
416 f4a881ce 2018-11-17 stsp
417 f4a881ce 2018-11-17 stsp err = got_privsep_send_tag(ibuf, tag);
418 cb5e38fd 2019-05-23 stsp done:
419 cb5e38fd 2019-05-23 stsp free(buf);
420 cb5e38fd 2019-05-23 stsp got_object_close(obj);
421 cb5e38fd 2019-05-23 stsp if (tag)
422 cb5e38fd 2019-05-23 stsp got_object_tag_close(tag);
423 ca6e02ac 2020-01-07 stsp if (err) {
424 ca6e02ac 2020-01-07 stsp if (err->code == GOT_ERR_PRIVSEP_PIPE)
425 ca6e02ac 2020-01-07 stsp err = NULL;
426 ca6e02ac 2020-01-07 stsp else
427 ca6e02ac 2020-01-07 stsp got_privsep_send_error(ibuf, err);
428 ca6e02ac 2020-01-07 stsp }
429 ca6e02ac 2020-01-07 stsp
430 ca6e02ac 2020-01-07 stsp return err;
431 ca6e02ac 2020-01-07 stsp }
432 ca6e02ac 2020-01-07 stsp
433 ca6e02ac 2020-01-07 stsp static struct got_parsed_tree_entry *
434 78e7b7b8 2022-05-19 thomas find_entry_by_name(struct got_parsed_tree_entry *entries, int nentries,
435 ca6e02ac 2020-01-07 stsp const char *name, size_t len)
436 ca6e02ac 2020-01-07 stsp {
437 78e7b7b8 2022-05-19 thomas struct got_parsed_tree_entry *pte;
438 78e7b7b8 2022-05-19 thomas int cmp, i;
439 ca6e02ac 2020-01-07 stsp
440 ca6e02ac 2020-01-07 stsp /* Note that tree entries are sorted in strncmp() order. */
441 78e7b7b8 2022-05-19 thomas for (i = 0; i < nentries; i++) {
442 78e7b7b8 2022-05-19 thomas pte = &entries[i];
443 78e7b7b8 2022-05-19 thomas cmp = strncmp(pte->name, name, len);
444 ca6e02ac 2020-01-07 stsp if (cmp < 0)
445 ca6e02ac 2020-01-07 stsp continue;
446 ca6e02ac 2020-01-07 stsp if (cmp > 0)
447 ca6e02ac 2020-01-07 stsp break;
448 78e7b7b8 2022-05-19 thomas if (pte->name[len] == '\0')
449 78e7b7b8 2022-05-19 thomas return pte;
450 ca6e02ac 2020-01-07 stsp }
451 ca6e02ac 2020-01-07 stsp return NULL;
452 ca6e02ac 2020-01-07 stsp }
453 ca6e02ac 2020-01-07 stsp
454 8f1c06eb 2021-09-25 thomas.ad static const struct got_error *
455 ca6e02ac 2020-01-07 stsp tree_path_changed(int *changed, uint8_t **buf1, uint8_t **buf2,
456 c77e00b3 2022-10-18 thomas struct got_parsed_tree_entry **entries1, size_t *nentries1,
457 c77e00b3 2022-10-18 thomas size_t *nentries_alloc1,
458 c77e00b3 2022-10-18 thomas struct got_parsed_tree_entry **entries2, size_t *nentries2,
459 c77e00b3 2022-10-18 thomas size_t *nentries_alloc2,
460 ca6e02ac 2020-01-07 stsp const char *path, struct got_pack *pack, struct got_packidx *packidx,
461 ca6e02ac 2020-01-07 stsp struct imsgbuf *ibuf, struct got_object_cache *objcache)
462 ca6e02ac 2020-01-07 stsp {
463 ca6e02ac 2020-01-07 stsp const struct got_error *err = NULL;
464 ca6e02ac 2020-01-07 stsp struct got_parsed_tree_entry *pte1 = NULL, *pte2 = NULL;
465 ca6e02ac 2020-01-07 stsp const char *seg, *s;
466 ca6e02ac 2020-01-07 stsp size_t seglen;
467 ca6e02ac 2020-01-07 stsp
468 ca6e02ac 2020-01-07 stsp *changed = 0;
469 ca6e02ac 2020-01-07 stsp
470 ca6e02ac 2020-01-07 stsp /* We not do support comparing the root path. */
471 61a7d79f 2020-02-29 stsp if (got_path_is_root_dir(path))
472 63f810e6 2020-02-29 stsp return got_error_path(path, GOT_ERR_BAD_PATH);
473 ca6e02ac 2020-01-07 stsp
474 ca6e02ac 2020-01-07 stsp s = path;
475 61a7d79f 2020-02-29 stsp while (*s == '/')
476 61a7d79f 2020-02-29 stsp s++;
477 ca6e02ac 2020-01-07 stsp seg = s;
478 ca6e02ac 2020-01-07 stsp seglen = 0;
479 ca6e02ac 2020-01-07 stsp while (*s) {
480 ca6e02ac 2020-01-07 stsp if (*s != '/') {
481 ca6e02ac 2020-01-07 stsp s++;
482 ca6e02ac 2020-01-07 stsp seglen++;
483 ca6e02ac 2020-01-07 stsp if (*s)
484 ca6e02ac 2020-01-07 stsp continue;
485 ca6e02ac 2020-01-07 stsp }
486 ca6e02ac 2020-01-07 stsp
487 78e7b7b8 2022-05-19 thomas pte1 = find_entry_by_name(*entries1, *nentries1, seg, seglen);
488 ca6e02ac 2020-01-07 stsp if (pte1 == NULL) {
489 ca6e02ac 2020-01-07 stsp err = got_error(GOT_ERR_NO_OBJ);
490 ca6e02ac 2020-01-07 stsp break;
491 ca6e02ac 2020-01-07 stsp }
492 ca6e02ac 2020-01-07 stsp
493 78e7b7b8 2022-05-19 thomas pte2 = find_entry_by_name(*entries2, *nentries2, seg, seglen);
494 ca6e02ac 2020-01-07 stsp if (pte2 == NULL) {
495 ca6e02ac 2020-01-07 stsp *changed = 1;
496 ca6e02ac 2020-01-07 stsp break;
497 ca6e02ac 2020-01-07 stsp }
498 ca6e02ac 2020-01-07 stsp
499 ca6e02ac 2020-01-07 stsp if (pte1->mode != pte2->mode) {
500 ca6e02ac 2020-01-07 stsp *changed = 1;
501 ca6e02ac 2020-01-07 stsp break;
502 ca6e02ac 2020-01-07 stsp }
503 ca6e02ac 2020-01-07 stsp
504 ca6e02ac 2020-01-07 stsp if (memcmp(pte1->id, pte2->id, SHA1_DIGEST_LENGTH) == 0) {
505 ca6e02ac 2020-01-07 stsp *changed = 0;
506 ca6e02ac 2020-01-07 stsp break;
507 ca6e02ac 2020-01-07 stsp }
508 ca6e02ac 2020-01-07 stsp
509 ca6e02ac 2020-01-07 stsp if (*s == '\0') { /* final path element */
510 ca6e02ac 2020-01-07 stsp *changed = 1;
511 ca6e02ac 2020-01-07 stsp break;
512 ca6e02ac 2020-01-07 stsp }
513 ca6e02ac 2020-01-07 stsp
514 ca6e02ac 2020-01-07 stsp seg = s + 1;
515 ca6e02ac 2020-01-07 stsp s++;
516 ca6e02ac 2020-01-07 stsp seglen = 0;
517 ca6e02ac 2020-01-07 stsp if (*s) {
518 ca6e02ac 2020-01-07 stsp struct got_object_id id1, id2;
519 ca6e02ac 2020-01-07 stsp int idx;
520 ca6e02ac 2020-01-07 stsp
521 ded8fbb8 2020-04-19 stsp memcpy(id1.sha1, pte1->id, SHA1_DIGEST_LENGTH);
522 00927983 2020-04-19 stsp idx = got_packidx_get_object_idx(packidx, &id1);
523 ca6e02ac 2020-01-07 stsp if (idx == -1) {
524 ded8fbb8 2020-04-19 stsp err = got_error_no_obj(&id1);
525 ca6e02ac 2020-01-07 stsp break;
526 ca6e02ac 2020-01-07 stsp }
527 ca6e02ac 2020-01-07 stsp *nentries1 = 0;
528 ca6e02ac 2020-01-07 stsp free(*buf1);
529 ca6e02ac 2020-01-07 stsp *buf1 = NULL;
530 c77e00b3 2022-10-18 thomas err = open_tree(buf1, entries1, nentries1,
531 c77e00b3 2022-10-18 thomas nentries_alloc1, pack, packidx, idx, &id1,
532 c77e00b3 2022-10-18 thomas objcache);
533 ca6e02ac 2020-01-07 stsp pte1 = NULL;
534 ca6e02ac 2020-01-07 stsp if (err)
535 ca6e02ac 2020-01-07 stsp break;
536 ca6e02ac 2020-01-07 stsp
537 ded8fbb8 2020-04-19 stsp memcpy(id2.sha1, pte2->id, SHA1_DIGEST_LENGTH);
538 00927983 2020-04-19 stsp idx = got_packidx_get_object_idx(packidx, &id2);
539 ca6e02ac 2020-01-07 stsp if (idx == -1) {
540 ded8fbb8 2020-04-19 stsp err = got_error_no_obj(&id2);
541 ca6e02ac 2020-01-07 stsp break;
542 ca6e02ac 2020-01-07 stsp }
543 ca6e02ac 2020-01-07 stsp *nentries2 = 0;
544 ca6e02ac 2020-01-07 stsp free(*buf2);
545 ca6e02ac 2020-01-07 stsp *buf2 = NULL;
546 c77e00b3 2022-10-18 thomas err = open_tree(buf2, entries2, nentries2,
547 c77e00b3 2022-10-18 thomas nentries_alloc2, pack, packidx, idx, &id2, objcache);
548 ca6e02ac 2020-01-07 stsp pte2 = NULL;
549 ca6e02ac 2020-01-07 stsp if (err)
550 ca6e02ac 2020-01-07 stsp break;
551 ca6e02ac 2020-01-07 stsp }
552 ca6e02ac 2020-01-07 stsp }
553 ca6e02ac 2020-01-07 stsp
554 ca6e02ac 2020-01-07 stsp return err;
555 ca6e02ac 2020-01-07 stsp }
556 ca6e02ac 2020-01-07 stsp
557 ca6e02ac 2020-01-07 stsp static const struct got_error *
558 e70bf110 2020-03-22 stsp send_traversed_commits(struct got_object_id *commit_ids, size_t ncommits,
559 e70bf110 2020-03-22 stsp struct imsgbuf *ibuf)
560 e70bf110 2020-03-22 stsp {
561 e70bf110 2020-03-22 stsp struct ibuf *wbuf;
562 01bb5a15 2021-09-25 thomas.ad size_t i;
563 e70bf110 2020-03-22 stsp
564 e70bf110 2020-03-22 stsp wbuf = imsg_create(ibuf, GOT_IMSG_TRAVERSED_COMMITS, 0, 0,
565 e70bf110 2020-03-22 stsp sizeof(struct got_imsg_traversed_commits) +
566 e70bf110 2020-03-22 stsp ncommits * SHA1_DIGEST_LENGTH);
567 e70bf110 2020-03-22 stsp if (wbuf == NULL)
568 e70bf110 2020-03-22 stsp return got_error_from_errno("imsg_create TRAVERSED_COMMITS");
569 e70bf110 2020-03-22 stsp
570 e9f1a409 2022-05-19 thomas if (imsg_add(wbuf, &ncommits, sizeof(ncommits)) == -1)
571 e9f1a409 2022-05-19 thomas return got_error_from_errno("imsg_add TRAVERSED_COMMITS");
572 e9f1a409 2022-05-19 thomas
573 e70bf110 2020-03-22 stsp for (i = 0; i < ncommits; i++) {
574 e70bf110 2020-03-22 stsp struct got_object_id *id = &commit_ids[i];
575 e70bf110 2020-03-22 stsp if (imsg_add(wbuf, id->sha1, SHA1_DIGEST_LENGTH) == -1) {
576 e9f1a409 2022-05-19 thomas return got_error_from_errno(
577 e70bf110 2020-03-22 stsp "imsg_add TRAVERSED_COMMITS");
578 e70bf110 2020-03-22 stsp }
579 e70bf110 2020-03-22 stsp }
580 e70bf110 2020-03-22 stsp
581 e70bf110 2020-03-22 stsp wbuf->fd = -1;
582 e70bf110 2020-03-22 stsp imsg_close(ibuf, wbuf);
583 e70bf110 2020-03-22 stsp
584 e70bf110 2020-03-22 stsp return got_privsep_flush_imsg(ibuf);
585 e70bf110 2020-03-22 stsp }
586 e70bf110 2020-03-22 stsp
587 e70bf110 2020-03-22 stsp static const struct got_error *
588 e70bf110 2020-03-22 stsp send_commit_traversal_done(struct imsgbuf *ibuf)
589 e70bf110 2020-03-22 stsp {
590 e70bf110 2020-03-22 stsp if (imsg_compose(ibuf, GOT_IMSG_COMMIT_TRAVERSAL_DONE, 0, 0, -1,
591 e70bf110 2020-03-22 stsp NULL, 0) == -1)
592 e70bf110 2020-03-22 stsp return got_error_from_errno("imsg_compose TRAVERSAL_DONE");
593 e70bf110 2020-03-22 stsp
594 e70bf110 2020-03-22 stsp return got_privsep_flush_imsg(ibuf);
595 e70bf110 2020-03-22 stsp }
596 3dfecf3e 2022-06-13 thomas
597 e70bf110 2020-03-22 stsp static const struct got_error *
598 ca6e02ac 2020-01-07 stsp commit_traversal_request(struct imsg *imsg, struct imsgbuf *ibuf,
599 ca6e02ac 2020-01-07 stsp struct got_pack *pack, struct got_packidx *packidx,
600 ca6e02ac 2020-01-07 stsp struct got_object_cache *objcache)
601 ca6e02ac 2020-01-07 stsp {
602 ca6e02ac 2020-01-07 stsp const struct got_error *err = NULL;
603 ca6e02ac 2020-01-07 stsp struct got_imsg_packed_object iobj;
604 ca6e02ac 2020-01-07 stsp struct got_object_qid *pid;
605 ca6e02ac 2020-01-07 stsp struct got_commit_object *commit = NULL, *pcommit = NULL;
606 78e7b7b8 2022-05-19 thomas struct got_parsed_tree_entry *entries = NULL, *pentries = NULL;
607 c77e00b3 2022-10-18 thomas size_t nentries = 0, nentries_alloc = 0;
608 c77e00b3 2022-10-18 thomas size_t pnentries = 0, pnentries_alloc = 0;
609 ca6e02ac 2020-01-07 stsp struct got_object_id id;
610 ca6e02ac 2020-01-07 stsp size_t datalen, path_len;
611 ca6e02ac 2020-01-07 stsp char *path = NULL;
612 ca6e02ac 2020-01-07 stsp const int min_alloc = 64;
613 ca6e02ac 2020-01-07 stsp int changed = 0, ncommits = 0, nallocated = 0;
614 ca6e02ac 2020-01-07 stsp struct got_object_id *commit_ids = NULL;
615 ca6e02ac 2020-01-07 stsp
616 ca6e02ac 2020-01-07 stsp datalen = imsg->hdr.len - IMSG_HEADER_SIZE;
617 ca6e02ac 2020-01-07 stsp if (datalen < sizeof(iobj))
618 ca6e02ac 2020-01-07 stsp return got_error(GOT_ERR_PRIVSEP_LEN);
619 ca6e02ac 2020-01-07 stsp memcpy(&iobj, imsg->data, sizeof(iobj));
620 ca6e02ac 2020-01-07 stsp memcpy(id.sha1, iobj.id, SHA1_DIGEST_LENGTH);
621 ca6e02ac 2020-01-07 stsp
622 ca6e02ac 2020-01-07 stsp path_len = datalen - sizeof(iobj) - 1;
623 ca6e02ac 2020-01-07 stsp if (path_len < 0)
624 ca6e02ac 2020-01-07 stsp return got_error(GOT_ERR_PRIVSEP_LEN);
625 ca6e02ac 2020-01-07 stsp if (path_len > 0) {
626 ca6e02ac 2020-01-07 stsp path = imsg->data + sizeof(iobj);
627 ca6e02ac 2020-01-07 stsp if (path[path_len] != '\0')
628 ca6e02ac 2020-01-07 stsp return got_error(GOT_ERR_PRIVSEP_LEN);
629 ca6e02ac 2020-01-07 stsp }
630 ca6e02ac 2020-01-07 stsp
631 ca6e02ac 2020-01-07 stsp nallocated = min_alloc;
632 ca6e02ac 2020-01-07 stsp commit_ids = reallocarray(NULL, nallocated, sizeof(*commit_ids));
633 ca6e02ac 2020-01-07 stsp if (commit_ids == NULL)
634 ca6e02ac 2020-01-07 stsp return got_error_from_errno("reallocarray");
635 ca6e02ac 2020-01-07 stsp
636 ca6e02ac 2020-01-07 stsp do {
637 ca6e02ac 2020-01-07 stsp const size_t max_datalen = MAX_IMSGSIZE - IMSG_HEADER_SIZE;
638 ca6e02ac 2020-01-07 stsp int idx;
639 ca6e02ac 2020-01-07 stsp
640 ca6e02ac 2020-01-07 stsp if (sigint_received) {
641 ca6e02ac 2020-01-07 stsp err = got_error(GOT_ERR_CANCELLED);
642 ca6e02ac 2020-01-07 stsp goto done;
643 ca6e02ac 2020-01-07 stsp }
644 ca6e02ac 2020-01-07 stsp
645 ca6e02ac 2020-01-07 stsp if (commit == NULL) {
646 ca6e02ac 2020-01-07 stsp idx = got_packidx_get_object_idx(packidx, &id);
647 ca6e02ac 2020-01-07 stsp if (idx == -1)
648 ca6e02ac 2020-01-07 stsp break;
649 ca6e02ac 2020-01-07 stsp err = open_commit(&commit, pack, packidx,
650 ca6e02ac 2020-01-07 stsp idx, &id, objcache);
651 ca6e02ac 2020-01-07 stsp if (err) {
652 ca6e02ac 2020-01-07 stsp if (err->code != GOT_ERR_NO_OBJ)
653 ca6e02ac 2020-01-07 stsp goto done;
654 ca6e02ac 2020-01-07 stsp err = NULL;
655 ca6e02ac 2020-01-07 stsp break;
656 ca6e02ac 2020-01-07 stsp }
657 ca6e02ac 2020-01-07 stsp }
658 ca6e02ac 2020-01-07 stsp
659 ca6e02ac 2020-01-07 stsp if (sizeof(struct got_imsg_traversed_commits) +
660 ca6e02ac 2020-01-07 stsp ncommits * SHA1_DIGEST_LENGTH >= max_datalen) {
661 e70bf110 2020-03-22 stsp err = send_traversed_commits(commit_ids, ncommits,
662 e70bf110 2020-03-22 stsp ibuf);
663 ca6e02ac 2020-01-07 stsp if (err)
664 ca6e02ac 2020-01-07 stsp goto done;
665 ca6e02ac 2020-01-07 stsp ncommits = 0;
666 ca6e02ac 2020-01-07 stsp }
667 ca6e02ac 2020-01-07 stsp ncommits++;
668 ca6e02ac 2020-01-07 stsp if (ncommits > nallocated) {
669 ca6e02ac 2020-01-07 stsp struct got_object_id *new;
670 ca6e02ac 2020-01-07 stsp nallocated += min_alloc;
671 ca6e02ac 2020-01-07 stsp new = reallocarray(commit_ids, nallocated,
672 ca6e02ac 2020-01-07 stsp sizeof(*commit_ids));
673 ca6e02ac 2020-01-07 stsp if (new == NULL) {
674 ca6e02ac 2020-01-07 stsp err = got_error_from_errno("reallocarray");
675 ca6e02ac 2020-01-07 stsp goto done;
676 ca6e02ac 2020-01-07 stsp }
677 ca6e02ac 2020-01-07 stsp commit_ids = new;
678 ca6e02ac 2020-01-07 stsp }
679 ca6e02ac 2020-01-07 stsp memcpy(commit_ids[ncommits - 1].sha1, id.sha1,
680 ca6e02ac 2020-01-07 stsp SHA1_DIGEST_LENGTH);
681 ca6e02ac 2020-01-07 stsp
682 dbdddfee 2021-06-23 naddy pid = STAILQ_FIRST(&commit->parent_ids);
683 ca6e02ac 2020-01-07 stsp if (pid == NULL)
684 ca6e02ac 2020-01-07 stsp break;
685 ca6e02ac 2020-01-07 stsp
686 ec242592 2022-04-22 thomas idx = got_packidx_get_object_idx(packidx, &pid->id);
687 ca6e02ac 2020-01-07 stsp if (idx == -1)
688 ca6e02ac 2020-01-07 stsp break;
689 ca6e02ac 2020-01-07 stsp
690 ec242592 2022-04-22 thomas err = open_commit(&pcommit, pack, packidx, idx, &pid->id,
691 ca6e02ac 2020-01-07 stsp objcache);
692 ca6e02ac 2020-01-07 stsp if (err) {
693 ca6e02ac 2020-01-07 stsp if (err->code != GOT_ERR_NO_OBJ)
694 ca6e02ac 2020-01-07 stsp goto done;
695 ca6e02ac 2020-01-07 stsp err = NULL;
696 ca6e02ac 2020-01-07 stsp break;
697 ca6e02ac 2020-01-07 stsp }
698 ca6e02ac 2020-01-07 stsp
699 ca6e02ac 2020-01-07 stsp if (path[0] == '/' && path[1] == '\0') {
700 ca6e02ac 2020-01-07 stsp if (got_object_id_cmp(pcommit->tree_id,
701 ca6e02ac 2020-01-07 stsp commit->tree_id) != 0) {
702 ca6e02ac 2020-01-07 stsp changed = 1;
703 ca6e02ac 2020-01-07 stsp break;
704 ca6e02ac 2020-01-07 stsp }
705 ca6e02ac 2020-01-07 stsp } else {
706 ca6e02ac 2020-01-07 stsp int pidx;
707 ca6e02ac 2020-01-07 stsp uint8_t *buf = NULL, *pbuf = NULL;
708 ca6e02ac 2020-01-07 stsp
709 ca6e02ac 2020-01-07 stsp idx = got_packidx_get_object_idx(packidx,
710 ca6e02ac 2020-01-07 stsp commit->tree_id);
711 ca6e02ac 2020-01-07 stsp if (idx == -1)
712 ca6e02ac 2020-01-07 stsp break;
713 ca6e02ac 2020-01-07 stsp pidx = got_packidx_get_object_idx(packidx,
714 ca6e02ac 2020-01-07 stsp pcommit->tree_id);
715 ca6e02ac 2020-01-07 stsp if (pidx == -1)
716 ca6e02ac 2020-01-07 stsp break;
717 ca6e02ac 2020-01-07 stsp
718 c77e00b3 2022-10-18 thomas err = open_tree(&buf, &entries, &nentries,
719 c77e00b3 2022-10-18 thomas &nentries_alloc, pack, packidx, idx,
720 c77e00b3 2022-10-18 thomas commit->tree_id, objcache);
721 ca6e02ac 2020-01-07 stsp if (err)
722 ca6e02ac 2020-01-07 stsp goto done;
723 c77e00b3 2022-10-18 thomas err = open_tree(&pbuf, &pentries, &pnentries,
724 c77e00b3 2022-10-18 thomas &pnentries_alloc, pack, packidx, pidx,
725 c77e00b3 2022-10-18 thomas pcommit->tree_id, objcache);
726 ca6e02ac 2020-01-07 stsp if (err) {
727 ca6e02ac 2020-01-07 stsp free(buf);
728 ca6e02ac 2020-01-07 stsp goto done;
729 ca6e02ac 2020-01-07 stsp }
730 ca6e02ac 2020-01-07 stsp
731 ca6e02ac 2020-01-07 stsp err = tree_path_changed(&changed, &buf, &pbuf,
732 c77e00b3 2022-10-18 thomas &entries, &nentries, &nentries_alloc,
733 c77e00b3 2022-10-18 thomas &pentries, &pnentries, &pnentries_alloc,
734 c77e00b3 2022-10-18 thomas path, pack, packidx, ibuf, objcache);
735 ca6e02ac 2020-01-07 stsp
736 ca6e02ac 2020-01-07 stsp nentries = 0;
737 ca6e02ac 2020-01-07 stsp free(buf);
738 ca6e02ac 2020-01-07 stsp pnentries = 0;
739 ca6e02ac 2020-01-07 stsp free(pbuf);
740 ca6e02ac 2020-01-07 stsp if (err) {
741 ca6e02ac 2020-01-07 stsp if (err->code != GOT_ERR_NO_OBJ)
742 ca6e02ac 2020-01-07 stsp goto done;
743 ca6e02ac 2020-01-07 stsp err = NULL;
744 ca6e02ac 2020-01-07 stsp break;
745 ca6e02ac 2020-01-07 stsp }
746 ca6e02ac 2020-01-07 stsp }
747 ca6e02ac 2020-01-07 stsp
748 ca6e02ac 2020-01-07 stsp if (!changed) {
749 ec242592 2022-04-22 thomas memcpy(id.sha1, pid->id.sha1, SHA1_DIGEST_LENGTH);
750 ca6e02ac 2020-01-07 stsp got_object_commit_close(commit);
751 ca6e02ac 2020-01-07 stsp commit = pcommit;
752 ca6e02ac 2020-01-07 stsp pcommit = NULL;
753 ca6e02ac 2020-01-07 stsp }
754 ca6e02ac 2020-01-07 stsp } while (!changed);
755 ca6e02ac 2020-01-07 stsp
756 ca6e02ac 2020-01-07 stsp if (ncommits > 0) {
757 e70bf110 2020-03-22 stsp err = send_traversed_commits(commit_ids, ncommits, ibuf);
758 ca6e02ac 2020-01-07 stsp if (err)
759 ca6e02ac 2020-01-07 stsp goto done;
760 ca6e02ac 2020-01-07 stsp
761 ca6e02ac 2020-01-07 stsp if (changed) {
762 ca6e02ac 2020-01-07 stsp err = got_privsep_send_commit(ibuf, commit);
763 ca6e02ac 2020-01-07 stsp if (err)
764 ca6e02ac 2020-01-07 stsp goto done;
765 ca6e02ac 2020-01-07 stsp }
766 ca6e02ac 2020-01-07 stsp }
767 e70bf110 2020-03-22 stsp err = send_commit_traversal_done(ibuf);
768 ca6e02ac 2020-01-07 stsp done:
769 ca6e02ac 2020-01-07 stsp free(commit_ids);
770 ca6e02ac 2020-01-07 stsp if (commit)
771 ca6e02ac 2020-01-07 stsp got_object_commit_close(commit);
772 ca6e02ac 2020-01-07 stsp if (pcommit)
773 ca6e02ac 2020-01-07 stsp got_object_commit_close(pcommit);
774 78e7b7b8 2022-05-19 thomas free(entries);
775 78e7b7b8 2022-05-19 thomas free(pentries);
776 f4a881ce 2018-11-17 stsp if (err) {
777 f4a881ce 2018-11-17 stsp if (err->code == GOT_ERR_PRIVSEP_PIPE)
778 f4a881ce 2018-11-17 stsp err = NULL;
779 f4a881ce 2018-11-17 stsp else
780 f4a881ce 2018-11-17 stsp got_privsep_send_error(ibuf, err);
781 f4a881ce 2018-11-17 stsp }
782 f4a881ce 2018-11-17 stsp
783 f4a881ce 2018-11-17 stsp return err;
784 f4a881ce 2018-11-17 stsp }
785 f4a881ce 2018-11-17 stsp
786 f4a881ce 2018-11-17 stsp static const struct got_error *
787 48b4f239 2021-12-31 thomas raw_object_request(struct imsg *imsg, struct imsgbuf *ibuf,
788 48b4f239 2021-12-31 thomas struct got_pack *pack, struct got_packidx *packidx,
789 bc1f382f 2022-01-05 thomas struct got_object_cache *objcache, FILE *basefile, FILE *accumfile)
790 59d1e4a0 2021-03-10 stsp {
791 59d1e4a0 2021-03-10 stsp const struct got_error *err = NULL;
792 59d1e4a0 2021-03-10 stsp uint8_t *buf = NULL;
793 59d1e4a0 2021-03-10 stsp uint64_t size = 0;
794 bc1f382f 2022-01-05 thomas FILE *outfile = NULL;
795 59d1e4a0 2021-03-10 stsp struct got_imsg_packed_object iobj;
796 59d1e4a0 2021-03-10 stsp struct got_object *obj;
797 59d1e4a0 2021-03-10 stsp struct got_object_id id;
798 59d1e4a0 2021-03-10 stsp size_t datalen;
799 59d1e4a0 2021-03-10 stsp
800 59d1e4a0 2021-03-10 stsp datalen = imsg->hdr.len - IMSG_HEADER_SIZE;
801 59d1e4a0 2021-03-10 stsp if (datalen != sizeof(iobj))
802 59d1e4a0 2021-03-10 stsp return got_error(GOT_ERR_PRIVSEP_LEN);
803 59d1e4a0 2021-03-10 stsp memcpy(&iobj, imsg->data, sizeof(iobj));
804 59d1e4a0 2021-03-10 stsp memcpy(id.sha1, iobj.id, SHA1_DIGEST_LENGTH);
805 59d1e4a0 2021-03-10 stsp
806 59d1e4a0 2021-03-10 stsp obj = got_object_cache_get(objcache, &id);
807 59d1e4a0 2021-03-10 stsp if (obj) {
808 59d1e4a0 2021-03-10 stsp obj->refcnt++;
809 59d1e4a0 2021-03-10 stsp } else {
810 59d1e4a0 2021-03-10 stsp err = open_object(&obj, pack, packidx, iobj.idx, &id,
811 59d1e4a0 2021-03-10 stsp objcache);
812 59d1e4a0 2021-03-10 stsp if (err)
813 59d1e4a0 2021-03-10 stsp return err;
814 59d1e4a0 2021-03-10 stsp }
815 59d1e4a0 2021-03-10 stsp
816 59d1e4a0 2021-03-10 stsp err = receive_file(&outfile, ibuf, GOT_IMSG_RAW_OBJECT_OUTFD);
817 59d1e4a0 2021-03-10 stsp if (err)
818 59d1e4a0 2021-03-10 stsp return err;
819 59d1e4a0 2021-03-10 stsp
820 59d1e4a0 2021-03-10 stsp if (obj->flags & GOT_OBJ_FLAG_DELTIFIED) {
821 59d1e4a0 2021-03-10 stsp err = got_pack_get_max_delta_object_size(&size, obj, pack);
822 59d1e4a0 2021-03-10 stsp if (err)
823 59d1e4a0 2021-03-10 stsp goto done;
824 59d1e4a0 2021-03-10 stsp } else
825 59d1e4a0 2021-03-10 stsp size = obj->size;
826 59d1e4a0 2021-03-10 stsp
827 59d1e4a0 2021-03-10 stsp if (size <= GOT_PRIVSEP_INLINE_OBJECT_DATA_MAX)
828 59d1e4a0 2021-03-10 stsp err = got_packfile_extract_object_to_mem(&buf, &obj->size,
829 59d1e4a0 2021-03-10 stsp obj, pack);
830 59d1e4a0 2021-03-10 stsp else
831 59d1e4a0 2021-03-10 stsp err = got_packfile_extract_object(pack, obj, outfile, basefile,
832 59d1e4a0 2021-03-10 stsp accumfile);
833 59d1e4a0 2021-03-10 stsp if (err)
834 59d1e4a0 2021-03-10 stsp goto done;
835 59d1e4a0 2021-03-10 stsp
836 40e3cb72 2021-06-22 stsp err = got_privsep_send_raw_obj(ibuf, obj->size, obj->hdrlen, buf);
837 59d1e4a0 2021-03-10 stsp done:
838 59d1e4a0 2021-03-10 stsp free(buf);
839 59d1e4a0 2021-03-10 stsp if (outfile && fclose(outfile) == EOF && err == NULL)
840 59d1e4a0 2021-03-10 stsp err = got_error_from_errno("fclose");
841 59d1e4a0 2021-03-10 stsp got_object_close(obj);
842 59d1e4a0 2021-03-10 stsp if (err && err->code != GOT_ERR_PRIVSEP_PIPE)
843 59d1e4a0 2021-03-10 stsp got_privsep_send_error(ibuf, err);
844 59d1e4a0 2021-03-10 stsp
845 59d1e4a0 2021-03-10 stsp return err;
846 59d1e4a0 2021-03-10 stsp }
847 f9c2e8e5 2022-02-13 thomas
848 f9c2e8e5 2022-02-13 thomas static const struct got_error *
849 f9c2e8e5 2022-02-13 thomas get_base_object_id(struct got_object_id *base_id, struct got_packidx *packidx,
850 f9c2e8e5 2022-02-13 thomas off_t base_offset)
851 f9c2e8e5 2022-02-13 thomas {
852 f9c2e8e5 2022-02-13 thomas const struct got_error *err;
853 f9c2e8e5 2022-02-13 thomas int idx;
854 59d1e4a0 2021-03-10 stsp
855 b6b86fd1 2022-08-30 thomas err = got_packidx_get_offset_idx(&idx, packidx, base_offset);
856 f9c2e8e5 2022-02-13 thomas if (err)
857 f9c2e8e5 2022-02-13 thomas return err;
858 f9c2e8e5 2022-02-13 thomas if (idx == -1)
859 f9c2e8e5 2022-02-13 thomas return got_error(GOT_ERR_BAD_PACKIDX);
860 59d1e4a0 2021-03-10 stsp
861 f9c2e8e5 2022-02-13 thomas return got_packidx_get_object_id(base_id, packidx, idx);
862 f9c2e8e5 2022-02-13 thomas }
863 59d1e4a0 2021-03-10 stsp
864 59d1e4a0 2021-03-10 stsp static const struct got_error *
865 f9c2e8e5 2022-02-13 thomas raw_delta_request(struct imsg *imsg, struct imsgbuf *ibuf,
866 f9c2e8e5 2022-02-13 thomas FILE *delta_outfile, struct got_pack *pack,
867 f9c2e8e5 2022-02-13 thomas struct got_packidx *packidx)
868 f9c2e8e5 2022-02-13 thomas {
869 f9c2e8e5 2022-02-13 thomas const struct got_error *err = NULL;
870 f9c2e8e5 2022-02-13 thomas struct got_imsg_raw_delta_request req;
871 9249e7e3 2022-05-12 thomas size_t datalen, delta_size, delta_compressed_size;
872 f9c2e8e5 2022-02-13 thomas off_t delta_offset;
873 f9c2e8e5 2022-02-13 thomas uint8_t *delta_buf = NULL;
874 f9c2e8e5 2022-02-13 thomas struct got_object_id id, base_id;
875 f9c2e8e5 2022-02-13 thomas off_t base_offset, delta_out_offset = 0;
876 f9c2e8e5 2022-02-13 thomas uint64_t base_size = 0, result_size = 0;
877 f9c2e8e5 2022-02-13 thomas size_t w;
878 f9c2e8e5 2022-02-13 thomas
879 f9c2e8e5 2022-02-13 thomas datalen = imsg->hdr.len - IMSG_HEADER_SIZE;
880 f9c2e8e5 2022-02-13 thomas if (datalen != sizeof(req))
881 f9c2e8e5 2022-02-13 thomas return got_error(GOT_ERR_PRIVSEP_LEN);
882 f9c2e8e5 2022-02-13 thomas memcpy(&req, imsg->data, sizeof(req));
883 f9c2e8e5 2022-02-13 thomas memcpy(id.sha1, req.id, SHA1_DIGEST_LENGTH);
884 f9c2e8e5 2022-02-13 thomas
885 f9c2e8e5 2022-02-13 thomas imsg->fd = -1;
886 f9c2e8e5 2022-02-13 thomas
887 f9c2e8e5 2022-02-13 thomas err = got_packfile_extract_raw_delta(&delta_buf, &delta_size,
888 9249e7e3 2022-05-12 thomas &delta_compressed_size, &delta_offset, &base_offset, &base_id,
889 9249e7e3 2022-05-12 thomas &base_size, &result_size, pack, packidx, req.idx);
890 f9c2e8e5 2022-02-13 thomas if (err)
891 f9c2e8e5 2022-02-13 thomas goto done;
892 f9c2e8e5 2022-02-13 thomas
893 f9c2e8e5 2022-02-13 thomas /*
894 f9c2e8e5 2022-02-13 thomas * If this is an offset delta we must determine the base
895 f9c2e8e5 2022-02-13 thomas * object ID ourselves.
896 f9c2e8e5 2022-02-13 thomas */
897 f9c2e8e5 2022-02-13 thomas if (base_offset != 0) {
898 f9c2e8e5 2022-02-13 thomas err = get_base_object_id(&base_id, packidx, base_offset);
899 f9c2e8e5 2022-02-13 thomas if (err)
900 f9c2e8e5 2022-02-13 thomas goto done;
901 f9c2e8e5 2022-02-13 thomas }
902 f9c2e8e5 2022-02-13 thomas
903 f9c2e8e5 2022-02-13 thomas delta_out_offset = ftello(delta_outfile);
904 9249e7e3 2022-05-12 thomas w = fwrite(delta_buf, 1, delta_compressed_size, delta_outfile);
905 9249e7e3 2022-05-12 thomas if (w != delta_compressed_size) {
906 f9c2e8e5 2022-02-13 thomas err = got_ferror(delta_outfile, GOT_ERR_IO);
907 f9c2e8e5 2022-02-13 thomas goto done;
908 f9c2e8e5 2022-02-13 thomas }
909 f9c2e8e5 2022-02-13 thomas if (fflush(delta_outfile) == -1) {
910 f9c2e8e5 2022-02-13 thomas err = got_error_from_errno("fflush");
911 f9c2e8e5 2022-02-13 thomas goto done;
912 f9c2e8e5 2022-02-13 thomas }
913 f9c2e8e5 2022-02-13 thomas
914 f9c2e8e5 2022-02-13 thomas err = got_privsep_send_raw_delta(ibuf, base_size, result_size,
915 9249e7e3 2022-05-12 thomas delta_size, delta_compressed_size, delta_offset, delta_out_offset,
916 9249e7e3 2022-05-12 thomas &base_id);
917 f9c2e8e5 2022-02-13 thomas done:
918 f9c2e8e5 2022-02-13 thomas free(delta_buf);
919 f9c2e8e5 2022-02-13 thomas return err;
920 f9c2e8e5 2022-02-13 thomas }
921 7d0d4920 2022-05-12 thomas
922 7d0d4920 2022-05-12 thomas struct search_deltas_arg {
923 7d0d4920 2022-05-12 thomas struct imsgbuf *ibuf;
924 7d0d4920 2022-05-12 thomas struct got_packidx *packidx;
925 7d0d4920 2022-05-12 thomas struct got_pack *pack;
926 7d0d4920 2022-05-12 thomas struct got_object_idset *idset;
927 7d0d4920 2022-05-12 thomas FILE *delta_outfile;
928 7d0d4920 2022-05-12 thomas struct got_imsg_reused_delta deltas[GOT_IMSG_REUSED_DELTAS_MAX_NDELTAS];
929 7d0d4920 2022-05-12 thomas size_t ndeltas;
930 7d0d4920 2022-05-12 thomas };
931 f9c2e8e5 2022-02-13 thomas
932 f9c2e8e5 2022-02-13 thomas static const struct got_error *
933 7d0d4920 2022-05-12 thomas search_delta_for_object(struct got_object_id *id, void *data, void *arg)
934 7d0d4920 2022-05-12 thomas {
935 7d0d4920 2022-05-12 thomas const struct got_error *err;
936 7d0d4920 2022-05-12 thomas struct search_deltas_arg *a = arg;
937 7d0d4920 2022-05-12 thomas int obj_idx;
938 7d0d4920 2022-05-12 thomas uint8_t *delta_buf = NULL;
939 7d0d4920 2022-05-12 thomas uint64_t base_size, result_size;
940 7d0d4920 2022-05-12 thomas size_t delta_size, delta_compressed_size;
941 7d0d4920 2022-05-12 thomas off_t delta_offset, base_offset;
942 7d0d4920 2022-05-12 thomas struct got_object_id base_id;
943 7d0d4920 2022-05-12 thomas
944 7d0d4920 2022-05-12 thomas if (sigint_received)
945 7d0d4920 2022-05-12 thomas return got_error(GOT_ERR_CANCELLED);
946 7d0d4920 2022-05-12 thomas
947 7d0d4920 2022-05-12 thomas obj_idx = got_packidx_get_object_idx(a->packidx, id);
948 7d0d4920 2022-05-12 thomas if (obj_idx == -1)
949 7d0d4920 2022-05-12 thomas return NULL; /* object not present in our pack file */
950 7d0d4920 2022-05-12 thomas
951 7d0d4920 2022-05-12 thomas err = got_packfile_extract_raw_delta(&delta_buf, &delta_size,
952 7d0d4920 2022-05-12 thomas &delta_compressed_size, &delta_offset, &base_offset, &base_id,
953 7d0d4920 2022-05-12 thomas &base_size, &result_size, a->pack, a->packidx, obj_idx);
954 7d0d4920 2022-05-12 thomas if (err) {
955 7d0d4920 2022-05-12 thomas if (err->code == GOT_ERR_OBJ_TYPE)
956 7d0d4920 2022-05-12 thomas return NULL; /* object not stored as a delta */
957 7d0d4920 2022-05-12 thomas return err;
958 7d0d4920 2022-05-12 thomas }
959 7d0d4920 2022-05-12 thomas
960 7d0d4920 2022-05-12 thomas /*
961 7d0d4920 2022-05-12 thomas * If this is an offset delta we must determine the base
962 7d0d4920 2022-05-12 thomas * object ID ourselves.
963 7d0d4920 2022-05-12 thomas */
964 7d0d4920 2022-05-12 thomas if (base_offset != 0) {
965 7d0d4920 2022-05-12 thomas err = get_base_object_id(&base_id, a->packidx, base_offset);
966 7d0d4920 2022-05-12 thomas if (err)
967 7d0d4920 2022-05-12 thomas goto done;
968 7d0d4920 2022-05-12 thomas }
969 7d0d4920 2022-05-12 thomas
970 7d0d4920 2022-05-12 thomas if (got_object_idset_contains(a->idset, &base_id)) {
971 7d0d4920 2022-05-12 thomas struct got_imsg_reused_delta *delta;
972 7d0d4920 2022-05-12 thomas off_t delta_out_offset = ftello(a->delta_outfile);
973 7d0d4920 2022-05-12 thomas size_t w;
974 7d0d4920 2022-05-12 thomas
975 7d0d4920 2022-05-12 thomas w = fwrite(delta_buf, 1, delta_compressed_size,
976 7d0d4920 2022-05-12 thomas a->delta_outfile);
977 7d0d4920 2022-05-12 thomas if (w != delta_compressed_size) {
978 7d0d4920 2022-05-12 thomas err = got_ferror(a->delta_outfile, GOT_ERR_IO);
979 7d0d4920 2022-05-12 thomas goto done;
980 7d0d4920 2022-05-12 thomas }
981 7d0d4920 2022-05-12 thomas
982 7d0d4920 2022-05-12 thomas delta = &a->deltas[a->ndeltas++];
983 7d0d4920 2022-05-12 thomas memcpy(&delta->id, id, sizeof(delta->id));
984 7d0d4920 2022-05-12 thomas memcpy(&delta->base_id, &base_id, sizeof(delta->base_id));
985 7d0d4920 2022-05-12 thomas delta->base_size = base_size;
986 7d0d4920 2022-05-12 thomas delta->result_size = result_size;
987 7d0d4920 2022-05-12 thomas delta->delta_size = delta_size;
988 7d0d4920 2022-05-12 thomas delta->delta_compressed_size = delta_compressed_size;
989 7d0d4920 2022-05-12 thomas delta->delta_offset = delta_offset;
990 7d0d4920 2022-05-12 thomas delta->delta_out_offset = delta_out_offset;
991 7d0d4920 2022-05-12 thomas
992 7d0d4920 2022-05-12 thomas if (a->ndeltas >= GOT_IMSG_REUSED_DELTAS_MAX_NDELTAS) {
993 7d0d4920 2022-05-12 thomas err = got_privsep_send_reused_deltas(a->ibuf,
994 7d0d4920 2022-05-12 thomas a->deltas, a->ndeltas);
995 7d0d4920 2022-05-12 thomas if (err)
996 7d0d4920 2022-05-12 thomas goto done;
997 7d0d4920 2022-05-12 thomas a->ndeltas = 0;
998 7d0d4920 2022-05-12 thomas }
999 7d0d4920 2022-05-12 thomas }
1000 7d0d4920 2022-05-12 thomas done:
1001 7d0d4920 2022-05-12 thomas free(delta_buf);
1002 7d0d4920 2022-05-12 thomas return err;
1003 7d0d4920 2022-05-12 thomas }
1004 7d0d4920 2022-05-12 thomas
1005 7d0d4920 2022-05-12 thomas static const struct got_error *
1006 7d0d4920 2022-05-12 thomas recv_object_ids(struct got_object_idset *idset, struct imsgbuf *ibuf)
1007 7d0d4920 2022-05-12 thomas {
1008 7d0d4920 2022-05-12 thomas const struct got_error *err = NULL;
1009 7d0d4920 2022-05-12 thomas int done = 0;
1010 7d0d4920 2022-05-12 thomas struct got_object_id *ids;
1011 7d0d4920 2022-05-12 thomas size_t nids, i;
1012 7d0d4920 2022-05-12 thomas
1013 7d0d4920 2022-05-12 thomas for (;;) {
1014 7d0d4920 2022-05-12 thomas err = got_privsep_recv_object_idlist(&done, &ids, &nids, ibuf);
1015 7d0d4920 2022-05-12 thomas if (err || done)
1016 7d0d4920 2022-05-12 thomas break;
1017 7d0d4920 2022-05-12 thomas for (i = 0; i < nids; i++) {
1018 7d0d4920 2022-05-12 thomas err = got_object_idset_add(idset, &ids[i], NULL);
1019 7d0d4920 2022-05-12 thomas if (err) {
1020 7d0d4920 2022-05-12 thomas free(ids);
1021 7d0d4920 2022-05-12 thomas return err;
1022 7d0d4920 2022-05-12 thomas }
1023 7d0d4920 2022-05-12 thomas }
1024 7d0d4920 2022-05-12 thomas free(ids);
1025 63915ee5 2022-06-23 thomas }
1026 63915ee5 2022-06-23 thomas
1027 63915ee5 2022-06-23 thomas return err;
1028 63915ee5 2022-06-23 thomas }
1029 63915ee5 2022-06-23 thomas
1030 63915ee5 2022-06-23 thomas static const struct got_error *
1031 63915ee5 2022-06-23 thomas recv_object_id_queue(struct got_object_id_queue *queue, struct imsgbuf *ibuf)
1032 63915ee5 2022-06-23 thomas {
1033 63915ee5 2022-06-23 thomas const struct got_error *err = NULL;
1034 63915ee5 2022-06-23 thomas int done = 0;
1035 63915ee5 2022-06-23 thomas struct got_object_qid *qid;
1036 63915ee5 2022-06-23 thomas struct got_object_id *ids;
1037 63915ee5 2022-06-23 thomas size_t nids, i;
1038 63915ee5 2022-06-23 thomas
1039 63915ee5 2022-06-23 thomas for (;;) {
1040 63915ee5 2022-06-23 thomas err = got_privsep_recv_object_idlist(&done, &ids, &nids, ibuf);
1041 63915ee5 2022-06-23 thomas if (err || done)
1042 63915ee5 2022-06-23 thomas break;
1043 63915ee5 2022-06-23 thomas for (i = 0; i < nids; i++) {
1044 63915ee5 2022-06-23 thomas err = got_object_qid_alloc_partial(&qid);
1045 63915ee5 2022-06-23 thomas if (err)
1046 63915ee5 2022-06-23 thomas return err;
1047 63915ee5 2022-06-23 thomas memcpy(&qid->id, &ids[i], sizeof(qid->id));
1048 63915ee5 2022-06-23 thomas STAILQ_INSERT_TAIL(queue, qid, entry);
1049 63915ee5 2022-06-23 thomas }
1050 13280750 2022-06-13 thomas }
1051 13280750 2022-06-13 thomas
1052 13280750 2022-06-13 thomas return err;
1053 13280750 2022-06-13 thomas }
1054 13280750 2022-06-13 thomas
1055 13280750 2022-06-13 thomas static const struct got_error *
1056 7d0d4920 2022-05-12 thomas delta_reuse_request(struct imsg *imsg, struct imsgbuf *ibuf,
1057 7d0d4920 2022-05-12 thomas FILE *delta_outfile, struct got_pack *pack, struct got_packidx *packidx)
1058 7d0d4920 2022-05-12 thomas {
1059 7d0d4920 2022-05-12 thomas const struct got_error *err = NULL;
1060 7d0d4920 2022-05-12 thomas struct got_object_idset *idset;
1061 7d0d4920 2022-05-12 thomas struct search_deltas_arg sda;
1062 7d0d4920 2022-05-12 thomas
1063 7d0d4920 2022-05-12 thomas idset = got_object_idset_alloc();
1064 7d0d4920 2022-05-12 thomas if (idset == NULL)
1065 7d0d4920 2022-05-12 thomas return got_error_from_errno("got_object_idset_alloc");
1066 7d0d4920 2022-05-12 thomas
1067 7d0d4920 2022-05-12 thomas err = recv_object_ids(idset, ibuf);
1068 7d0d4920 2022-05-12 thomas if (err)
1069 7d0d4920 2022-05-12 thomas return err;
1070 7d0d4920 2022-05-12 thomas
1071 7d0d4920 2022-05-12 thomas memset(&sda, 0, sizeof(sda));
1072 7d0d4920 2022-05-12 thomas sda.ibuf = ibuf;
1073 7d0d4920 2022-05-12 thomas sda.idset = idset;
1074 7d0d4920 2022-05-12 thomas sda.pack = pack;
1075 7d0d4920 2022-05-12 thomas sda.packidx = packidx;
1076 7d0d4920 2022-05-12 thomas sda.delta_outfile = delta_outfile;
1077 7d0d4920 2022-05-12 thomas err = got_object_idset_for_each(idset, search_delta_for_object, &sda);
1078 7d0d4920 2022-05-12 thomas if (err)
1079 7d0d4920 2022-05-12 thomas goto done;
1080 7d0d4920 2022-05-12 thomas
1081 7d0d4920 2022-05-12 thomas if (sda.ndeltas > 0) {
1082 7d0d4920 2022-05-12 thomas err = got_privsep_send_reused_deltas(ibuf, sda.deltas,
1083 7d0d4920 2022-05-12 thomas sda.ndeltas);
1084 7d0d4920 2022-05-12 thomas if (err)
1085 7d0d4920 2022-05-12 thomas goto done;
1086 7d0d4920 2022-05-12 thomas }
1087 7d0d4920 2022-05-12 thomas
1088 7d0d4920 2022-05-12 thomas if (fflush(delta_outfile) == -1) {
1089 7d0d4920 2022-05-12 thomas err = got_error_from_errno("fflush");
1090 7d0d4920 2022-05-12 thomas goto done;
1091 7d0d4920 2022-05-12 thomas }
1092 7d0d4920 2022-05-12 thomas
1093 7d0d4920 2022-05-12 thomas err = got_privsep_send_reused_deltas_done(ibuf);
1094 7d0d4920 2022-05-12 thomas done:
1095 7d0d4920 2022-05-12 thomas got_object_idset_free(idset);
1096 7d0d4920 2022-05-12 thomas return err;
1097 7d0d4920 2022-05-12 thomas }
1098 7d0d4920 2022-05-12 thomas
1099 7d0d4920 2022-05-12 thomas static const struct got_error *
1100 876c234b 2018-09-10 stsp receive_packidx(struct got_packidx **packidx, struct imsgbuf *ibuf)
1101 876c234b 2018-09-10 stsp {
1102 876c234b 2018-09-10 stsp const struct got_error *err = NULL;
1103 876c234b 2018-09-10 stsp struct imsg imsg;
1104 876c234b 2018-09-10 stsp struct got_imsg_packidx ipackidx;
1105 876c234b 2018-09-10 stsp size_t datalen;
1106 876c234b 2018-09-10 stsp struct got_packidx *p;
1107 876c234b 2018-09-10 stsp
1108 876c234b 2018-09-10 stsp *packidx = NULL;
1109 876c234b 2018-09-10 stsp
1110 876c234b 2018-09-10 stsp err = got_privsep_recv_imsg(&imsg, ibuf, 0);
1111 876c234b 2018-09-10 stsp if (err)
1112 876c234b 2018-09-10 stsp return err;
1113 876c234b 2018-09-10 stsp
1114 876c234b 2018-09-10 stsp p = calloc(1, sizeof(*p));
1115 876c234b 2018-09-10 stsp if (p == NULL) {
1116 638f9024 2019-05-13 stsp err = got_error_from_errno("calloc");
1117 876c234b 2018-09-10 stsp goto done;
1118 876c234b 2018-09-10 stsp }
1119 876c234b 2018-09-10 stsp
1120 876c234b 2018-09-10 stsp if (imsg.hdr.type != GOT_IMSG_PACKIDX) {
1121 876c234b 2018-09-10 stsp err = got_error(GOT_ERR_PRIVSEP_MSG);
1122 876c234b 2018-09-10 stsp goto done;
1123 876c234b 2018-09-10 stsp }
1124 876c234b 2018-09-10 stsp
1125 876c234b 2018-09-10 stsp if (imsg.fd == -1) {
1126 876c234b 2018-09-10 stsp err = got_error(GOT_ERR_PRIVSEP_NO_FD);
1127 876c234b 2018-09-10 stsp goto done;
1128 876c234b 2018-09-10 stsp }
1129 876c234b 2018-09-10 stsp
1130 876c234b 2018-09-10 stsp datalen = imsg.hdr.len - IMSG_HEADER_SIZE;
1131 876c234b 2018-09-10 stsp if (datalen != sizeof(ipackidx)) {
1132 876c234b 2018-09-10 stsp err = got_error(GOT_ERR_PRIVSEP_LEN);
1133 876c234b 2018-09-10 stsp goto done;
1134 876c234b 2018-09-10 stsp }
1135 876c234b 2018-09-10 stsp memcpy(&ipackidx, imsg.data, sizeof(ipackidx));
1136 876c234b 2018-09-10 stsp
1137 876c234b 2018-09-10 stsp p->len = ipackidx.len;
1138 876c234b 2018-09-10 stsp p->fd = dup(imsg.fd);
1139 876c234b 2018-09-10 stsp if (p->fd == -1) {
1140 638f9024 2019-05-13 stsp err = got_error_from_errno("dup");
1141 56bef47a 2018-09-15 stsp goto done;
1142 56bef47a 2018-09-15 stsp }
1143 56bef47a 2018-09-15 stsp if (lseek(p->fd, 0, SEEK_SET) == -1) {
1144 638f9024 2019-05-13 stsp err = got_error_from_errno("lseek");
1145 876c234b 2018-09-10 stsp goto done;
1146 876c234b 2018-09-10 stsp }
1147 876c234b 2018-09-10 stsp
1148 876c234b 2018-09-10 stsp #ifndef GOT_PACK_NO_MMAP
1149 876c234b 2018-09-10 stsp p->map = mmap(NULL, p->len, PROT_READ, MAP_PRIVATE, p->fd, 0);
1150 876c234b 2018-09-10 stsp if (p->map == MAP_FAILED)
1151 876c234b 2018-09-10 stsp p->map = NULL; /* fall back to read(2) */
1152 876c234b 2018-09-10 stsp #endif
1153 c3564dfa 2021-07-15 stsp err = got_packidx_init_hdr(p, 1, ipackidx.packfile_size);
1154 876c234b 2018-09-10 stsp done:
1155 876c234b 2018-09-10 stsp if (err) {
1156 876c234b 2018-09-10 stsp if (imsg.fd != -1)
1157 876c234b 2018-09-10 stsp close(imsg.fd);
1158 876c234b 2018-09-10 stsp got_packidx_close(p);
1159 876c234b 2018-09-10 stsp } else
1160 876c234b 2018-09-10 stsp *packidx = p;
1161 876c234b 2018-09-10 stsp imsg_free(&imsg);
1162 63915ee5 2022-06-23 thomas return err;
1163 63915ee5 2022-06-23 thomas }
1164 63915ee5 2022-06-23 thomas
1165 63915ee5 2022-06-23 thomas static const struct got_error *
1166 63915ee5 2022-06-23 thomas send_tree_enumeration_done(struct imsgbuf *ibuf)
1167 63915ee5 2022-06-23 thomas {
1168 63915ee5 2022-06-23 thomas if (imsg_compose(ibuf, GOT_IMSG_TREE_ENUMERATION_DONE, 0, 0, -1,
1169 63915ee5 2022-06-23 thomas NULL, 0) == -1)
1170 63915ee5 2022-06-23 thomas return got_error_from_errno("imsg_compose TREE_ENUMERATION_DONE");
1171 63915ee5 2022-06-23 thomas
1172 63915ee5 2022-06-23 thomas return got_privsep_flush_imsg(ibuf);
1173 63915ee5 2022-06-23 thomas }
1174 63915ee5 2022-06-23 thomas
1175 63915ee5 2022-06-23 thomas struct enumerated_tree {
1176 63915ee5 2022-06-23 thomas struct got_object_id id;
1177 63915ee5 2022-06-23 thomas char *path;
1178 63915ee5 2022-06-23 thomas uint8_t *buf;
1179 63915ee5 2022-06-23 thomas struct got_parsed_tree_entry *entries;
1180 63915ee5 2022-06-23 thomas int nentries;
1181 63915ee5 2022-06-23 thomas };
1182 63915ee5 2022-06-23 thomas
1183 63915ee5 2022-06-23 thomas static const struct got_error *
1184 63915ee5 2022-06-23 thomas enumerate_tree(int *have_all_entries, struct imsgbuf *ibuf, size_t *totlen,
1185 63915ee5 2022-06-23 thomas struct got_object_id *tree_id,
1186 63915ee5 2022-06-23 thomas const char *path, struct got_pack *pack, struct got_packidx *packidx,
1187 63915ee5 2022-06-23 thomas struct got_object_cache *objcache, struct got_object_idset *idset,
1188 63915ee5 2022-06-23 thomas struct enumerated_tree **trees, size_t *nalloc, size_t *ntrees)
1189 63915ee5 2022-06-23 thomas {
1190 63915ee5 2022-06-23 thomas const struct got_error *err = NULL;
1191 63915ee5 2022-06-23 thomas struct got_object_id_queue ids;
1192 63915ee5 2022-06-23 thomas struct got_object_qid *qid;
1193 63915ee5 2022-06-23 thomas uint8_t *buf = NULL;
1194 63915ee5 2022-06-23 thomas struct got_parsed_tree_entry *entries = NULL;
1195 c77e00b3 2022-10-18 thomas size_t nentries = 0, nentries_alloc = 0, i;
1196 63915ee5 2022-06-23 thomas struct enumerated_tree *tree;
1197 63915ee5 2022-06-23 thomas
1198 63915ee5 2022-06-23 thomas *ntrees = 0;
1199 63915ee5 2022-06-23 thomas *have_all_entries = 1;
1200 63915ee5 2022-06-23 thomas STAILQ_INIT(&ids);
1201 63915ee5 2022-06-23 thomas
1202 63915ee5 2022-06-23 thomas err = got_object_qid_alloc_partial(&qid);
1203 63915ee5 2022-06-23 thomas if (err)
1204 63915ee5 2022-06-23 thomas return err;
1205 63915ee5 2022-06-23 thomas memcpy(&qid->id.sha1, tree_id, SHA1_DIGEST_LENGTH);
1206 63915ee5 2022-06-23 thomas qid->data = strdup(path);
1207 63915ee5 2022-06-23 thomas if (qid->data == NULL) {
1208 63915ee5 2022-06-23 thomas err = got_error_from_errno("strdup");
1209 63915ee5 2022-06-23 thomas goto done;
1210 63915ee5 2022-06-23 thomas }
1211 63915ee5 2022-06-23 thomas STAILQ_INSERT_TAIL(&ids, qid, entry);
1212 63915ee5 2022-06-23 thomas qid = NULL;
1213 63915ee5 2022-06-23 thomas
1214 63915ee5 2022-06-23 thomas /* Traverse the tree hierarchy, gather tree object IDs and paths. */
1215 63915ee5 2022-06-23 thomas do {
1216 63915ee5 2022-06-23 thomas const char *path;
1217 63915ee5 2022-06-23 thomas int idx, i;
1218 63915ee5 2022-06-23 thomas
1219 63915ee5 2022-06-23 thomas if (sigint_received) {
1220 63915ee5 2022-06-23 thomas err = got_error(GOT_ERR_CANCELLED);
1221 63915ee5 2022-06-23 thomas goto done;
1222 63915ee5 2022-06-23 thomas }
1223 63915ee5 2022-06-23 thomas
1224 63915ee5 2022-06-23 thomas qid = STAILQ_FIRST(&ids);
1225 63915ee5 2022-06-23 thomas STAILQ_REMOVE_HEAD(&ids, entry);
1226 63915ee5 2022-06-23 thomas path = qid->data;
1227 63915ee5 2022-06-23 thomas
1228 63915ee5 2022-06-23 thomas idx = got_packidx_get_object_idx(packidx, &qid->id);
1229 63915ee5 2022-06-23 thomas if (idx == -1) {
1230 63915ee5 2022-06-23 thomas *have_all_entries = 0;
1231 63915ee5 2022-06-23 thomas break;
1232 63915ee5 2022-06-23 thomas }
1233 63915ee5 2022-06-23 thomas
1234 c77e00b3 2022-10-18 thomas err = open_tree(&buf, &entries, &nentries, &nentries_alloc,
1235 63915ee5 2022-06-23 thomas pack, packidx, idx, &qid->id, objcache);
1236 63915ee5 2022-06-23 thomas if (err) {
1237 63915ee5 2022-06-23 thomas if (err->code != GOT_ERR_NO_OBJ)
1238 63915ee5 2022-06-23 thomas goto done;
1239 63915ee5 2022-06-23 thomas }
1240 63915ee5 2022-06-23 thomas
1241 63915ee5 2022-06-23 thomas err = got_object_idset_add(idset, &qid->id, NULL);
1242 63915ee5 2022-06-23 thomas if (err)
1243 63915ee5 2022-06-23 thomas goto done;
1244 63915ee5 2022-06-23 thomas
1245 63915ee5 2022-06-23 thomas for (i = 0; i < nentries; i++) {
1246 63915ee5 2022-06-23 thomas struct got_object_qid *eqid = NULL;
1247 63915ee5 2022-06-23 thomas struct got_parsed_tree_entry *pte = &entries[i];
1248 63915ee5 2022-06-23 thomas char *p;
1249 63915ee5 2022-06-23 thomas
1250 63915ee5 2022-06-23 thomas if (!S_ISDIR(pte->mode))
1251 63915ee5 2022-06-23 thomas continue;
1252 63915ee5 2022-06-23 thomas
1253 63915ee5 2022-06-23 thomas err = got_object_qid_alloc_partial(&eqid);
1254 63915ee5 2022-06-23 thomas if (err)
1255 63915ee5 2022-06-23 thomas goto done;
1256 63915ee5 2022-06-23 thomas memcpy(eqid->id.sha1, pte->id, sizeof(eqid->id.sha1));
1257 63915ee5 2022-06-23 thomas
1258 63915ee5 2022-06-23 thomas if (got_object_idset_contains(idset, &eqid->id)) {
1259 63915ee5 2022-06-23 thomas got_object_qid_free(eqid);
1260 63915ee5 2022-06-23 thomas continue;
1261 63915ee5 2022-06-23 thomas }
1262 63915ee5 2022-06-23 thomas
1263 63915ee5 2022-06-23 thomas if (asprintf(&p, "%s%s%s", path,
1264 63915ee5 2022-06-23 thomas got_path_is_root_dir(path) ? "" : "/",
1265 63915ee5 2022-06-23 thomas pte->name) == -1) {
1266 63915ee5 2022-06-23 thomas err = got_error_from_errno("asprintf");
1267 63915ee5 2022-06-23 thomas got_object_qid_free(eqid);
1268 63915ee5 2022-06-23 thomas goto done;
1269 63915ee5 2022-06-23 thomas }
1270 63915ee5 2022-06-23 thomas eqid->data = p;
1271 63915ee5 2022-06-23 thomas STAILQ_INSERT_TAIL(&ids, eqid, entry);
1272 63915ee5 2022-06-23 thomas }
1273 63915ee5 2022-06-23 thomas
1274 63915ee5 2022-06-23 thomas if (*ntrees >= *nalloc) {
1275 63915ee5 2022-06-23 thomas struct enumerated_tree *new;
1276 63915ee5 2022-06-23 thomas new = recallocarray(*trees, *nalloc, *nalloc + 16,
1277 63915ee5 2022-06-23 thomas sizeof(*new));
1278 63915ee5 2022-06-23 thomas if (new == NULL) {
1279 63915ee5 2022-06-23 thomas err = got_error_from_errno("malloc");
1280 63915ee5 2022-06-23 thomas goto done;
1281 63915ee5 2022-06-23 thomas }
1282 63915ee5 2022-06-23 thomas *trees = new;
1283 63915ee5 2022-06-23 thomas *nalloc += 16;
1284 63915ee5 2022-06-23 thomas }
1285 63915ee5 2022-06-23 thomas tree = &(*trees)[*ntrees];
1286 63915ee5 2022-06-23 thomas (*ntrees)++;
1287 63915ee5 2022-06-23 thomas memcpy(&tree->id, &qid->id, sizeof(tree->id));
1288 63915ee5 2022-06-23 thomas tree->path = qid->data;
1289 63915ee5 2022-06-23 thomas tree->buf = buf;
1290 63915ee5 2022-06-23 thomas buf = NULL;
1291 63915ee5 2022-06-23 thomas tree->entries = entries;
1292 63915ee5 2022-06-23 thomas entries = NULL;
1293 c77e00b3 2022-10-18 thomas nentries_alloc = 0;
1294 63915ee5 2022-06-23 thomas tree->nentries = nentries;
1295 c77e00b3 2022-10-18 thomas nentries = 0;
1296 63915ee5 2022-06-23 thomas
1297 63915ee5 2022-06-23 thomas got_object_qid_free(qid);
1298 63915ee5 2022-06-23 thomas qid = NULL;
1299 63915ee5 2022-06-23 thomas } while (!STAILQ_EMPTY(&ids));
1300 63915ee5 2022-06-23 thomas
1301 63915ee5 2022-06-23 thomas if (*have_all_entries) {
1302 63915ee5 2022-06-23 thomas int i;
1303 63915ee5 2022-06-23 thomas /*
1304 63915ee5 2022-06-23 thomas * We have managed to traverse all entries in the hierarchy.
1305 63915ee5 2022-06-23 thomas * Tell the main process what we have found.
1306 63915ee5 2022-06-23 thomas */
1307 63915ee5 2022-06-23 thomas for (i = 0; i < *ntrees; i++) {
1308 63915ee5 2022-06-23 thomas tree = &(*trees)[i];
1309 63915ee5 2022-06-23 thomas err = got_privsep_send_enumerated_tree(totlen,
1310 63915ee5 2022-06-23 thomas ibuf, &tree->id, tree->path, tree->entries,
1311 63915ee5 2022-06-23 thomas tree->nentries);
1312 63915ee5 2022-06-23 thomas if (err)
1313 63915ee5 2022-06-23 thomas goto done;
1314 63915ee5 2022-06-23 thomas free(tree->buf);
1315 63915ee5 2022-06-23 thomas tree->buf = NULL;
1316 63915ee5 2022-06-23 thomas free(tree->path);
1317 63915ee5 2022-06-23 thomas tree->path = NULL;
1318 63915ee5 2022-06-23 thomas free(tree->entries);
1319 63915ee5 2022-06-23 thomas tree->entries = NULL;
1320 63915ee5 2022-06-23 thomas }
1321 63915ee5 2022-06-23 thomas *ntrees = 0; /* don't loop again below to free memory */
1322 63915ee5 2022-06-23 thomas
1323 63915ee5 2022-06-23 thomas err = send_tree_enumeration_done(ibuf);
1324 63915ee5 2022-06-23 thomas } else {
1325 63915ee5 2022-06-23 thomas /*
1326 63915ee5 2022-06-23 thomas * We can only load fully packed tree hierarchies on
1327 63915ee5 2022-06-23 thomas * behalf of the main process, otherwise the main process
1328 63915ee5 2022-06-23 thomas * gets a wrong idea about which tree objects have
1329 63915ee5 2022-06-23 thomas * already been traversed.
1330 63915ee5 2022-06-23 thomas * Indicate a missing entry for the root of this tree.
1331 63915ee5 2022-06-23 thomas * The main process should continue by loading this
1332 63915ee5 2022-06-23 thomas * entire tree the slow way.
1333 63915ee5 2022-06-23 thomas */
1334 63915ee5 2022-06-23 thomas err = got_privsep_send_enumerated_tree(totlen, ibuf,
1335 63915ee5 2022-06-23 thomas tree_id, "/", NULL, -1);
1336 63915ee5 2022-06-23 thomas if (err)
1337 63915ee5 2022-06-23 thomas goto done;
1338 63915ee5 2022-06-23 thomas }
1339 63915ee5 2022-06-23 thomas done:
1340 63915ee5 2022-06-23 thomas free(buf);
1341 63915ee5 2022-06-23 thomas free(entries);
1342 63915ee5 2022-06-23 thomas for (i = 0; i < *ntrees; i++) {
1343 63915ee5 2022-06-23 thomas tree = &(*trees)[i];
1344 63915ee5 2022-06-23 thomas free(tree->buf);
1345 63915ee5 2022-06-23 thomas tree->buf = NULL;
1346 63915ee5 2022-06-23 thomas free(tree->path);
1347 63915ee5 2022-06-23 thomas tree->path = NULL;
1348 63915ee5 2022-06-23 thomas free(tree->entries);
1349 63915ee5 2022-06-23 thomas tree->entries = NULL;
1350 63915ee5 2022-06-23 thomas }
1351 63915ee5 2022-06-23 thomas if (qid)
1352 63915ee5 2022-06-23 thomas free(qid->data);
1353 63915ee5 2022-06-23 thomas got_object_qid_free(qid);
1354 63915ee5 2022-06-23 thomas got_object_id_queue_free(&ids);
1355 63915ee5 2022-06-23 thomas if (err) {
1356 63915ee5 2022-06-23 thomas if (err->code == GOT_ERR_PRIVSEP_PIPE)
1357 63915ee5 2022-06-23 thomas err = NULL;
1358 63915ee5 2022-06-23 thomas else
1359 63915ee5 2022-06-23 thomas got_privsep_send_error(ibuf, err);
1360 63915ee5 2022-06-23 thomas }
1361 63915ee5 2022-06-23 thomas
1362 13280750 2022-06-13 thomas return err;
1363 13280750 2022-06-13 thomas }
1364 13280750 2022-06-13 thomas
1365 13280750 2022-06-13 thomas static const struct got_error *
1366 63915ee5 2022-06-23 thomas enumeration_request(struct imsg *imsg, struct imsgbuf *ibuf,
1367 63915ee5 2022-06-23 thomas struct got_pack *pack, struct got_packidx *packidx,
1368 63915ee5 2022-06-23 thomas struct got_object_cache *objcache)
1369 63915ee5 2022-06-23 thomas {
1370 63915ee5 2022-06-23 thomas const struct got_error *err = NULL;
1371 63915ee5 2022-06-23 thomas struct got_object_id_queue commit_ids;
1372 63915ee5 2022-06-23 thomas const struct got_object_id_queue *parents = NULL;
1373 63915ee5 2022-06-23 thomas struct got_object_qid *qid = NULL;
1374 63915ee5 2022-06-23 thomas struct got_object *obj = NULL;
1375 63915ee5 2022-06-23 thomas struct got_commit_object *commit = NULL;
1376 63915ee5 2022-06-23 thomas struct got_object_id *tree_id = NULL;
1377 63915ee5 2022-06-23 thomas size_t totlen = 0;
1378 63915ee5 2022-06-23 thomas struct got_object_idset *idset;
1379 63915ee5 2022-06-23 thomas int i, idx, have_all_entries = 1;
1380 63915ee5 2022-06-23 thomas struct enumerated_tree *trees = NULL;
1381 63915ee5 2022-06-23 thomas size_t ntrees = 0, nalloc = 16;
1382 63915ee5 2022-06-23 thomas
1383 63915ee5 2022-06-23 thomas STAILQ_INIT(&commit_ids);
1384 63915ee5 2022-06-23 thomas
1385 93088cca 2022-06-23 thomas trees = calloc(nalloc, sizeof(*trees));
1386 63915ee5 2022-06-23 thomas if (trees == NULL)
1387 63915ee5 2022-06-23 thomas return got_error_from_errno("calloc");
1388 63915ee5 2022-06-23 thomas
1389 63915ee5 2022-06-23 thomas idset = got_object_idset_alloc();
1390 63915ee5 2022-06-23 thomas if (idset == NULL) {
1391 63915ee5 2022-06-23 thomas err = got_error_from_errno("got_object_idset_alloc");
1392 63915ee5 2022-06-23 thomas goto done;
1393 63915ee5 2022-06-23 thomas }
1394 63915ee5 2022-06-23 thomas
1395 63915ee5 2022-06-23 thomas err = recv_object_id_queue(&commit_ids, ibuf);
1396 63915ee5 2022-06-23 thomas if (err)
1397 63915ee5 2022-06-23 thomas goto done;
1398 63915ee5 2022-06-23 thomas
1399 ef53e23c 2022-06-23 thomas if (STAILQ_EMPTY(&commit_ids)) {
1400 ef53e23c 2022-06-23 thomas err = got_error(GOT_ERR_PRIVSEP_MSG);
1401 ef53e23c 2022-06-23 thomas goto done;
1402 ef53e23c 2022-06-23 thomas }
1403 ef53e23c 2022-06-23 thomas
1404 63915ee5 2022-06-23 thomas err = recv_object_ids(idset, ibuf);
1405 63915ee5 2022-06-23 thomas if (err)
1406 63915ee5 2022-06-23 thomas goto done;
1407 63915ee5 2022-06-23 thomas
1408 63915ee5 2022-06-23 thomas while (!STAILQ_EMPTY(&commit_ids)) {
1409 63915ee5 2022-06-23 thomas if (sigint_received) {
1410 63915ee5 2022-06-23 thomas err = got_error(GOT_ERR_CANCELLED);
1411 63915ee5 2022-06-23 thomas goto done;
1412 63915ee5 2022-06-23 thomas }
1413 63915ee5 2022-06-23 thomas
1414 63915ee5 2022-06-23 thomas qid = STAILQ_FIRST(&commit_ids);
1415 63915ee5 2022-06-23 thomas STAILQ_REMOVE_HEAD(&commit_ids, entry);
1416 63915ee5 2022-06-23 thomas
1417 63915ee5 2022-06-23 thomas if (got_object_idset_contains(idset, &qid->id)) {
1418 63915ee5 2022-06-23 thomas got_object_qid_free(qid);
1419 63915ee5 2022-06-23 thomas qid = NULL;
1420 63915ee5 2022-06-23 thomas continue;
1421 63915ee5 2022-06-23 thomas }
1422 63915ee5 2022-06-23 thomas
1423 63915ee5 2022-06-23 thomas idx = got_packidx_get_object_idx(packidx, &qid->id);
1424 e71f1e62 2022-06-23 thomas if (idx == -1) {
1425 e71f1e62 2022-06-23 thomas have_all_entries = 0;
1426 63915ee5 2022-06-23 thomas break;
1427 e71f1e62 2022-06-23 thomas }
1428 63915ee5 2022-06-23 thomas
1429 63915ee5 2022-06-23 thomas err = open_object(&obj, pack, packidx, idx, &qid->id,
1430 63915ee5 2022-06-23 thomas objcache);
1431 63915ee5 2022-06-23 thomas if (err)
1432 63915ee5 2022-06-23 thomas goto done;
1433 63915ee5 2022-06-23 thomas if (obj->type == GOT_OBJ_TYPE_TAG) {
1434 63915ee5 2022-06-23 thomas struct got_tag_object *tag;
1435 63915ee5 2022-06-23 thomas uint8_t *buf;
1436 63915ee5 2022-06-23 thomas size_t len;
1437 63915ee5 2022-06-23 thomas err = got_packfile_extract_object_to_mem(&buf,
1438 63915ee5 2022-06-23 thomas &len, obj, pack);
1439 63915ee5 2022-06-23 thomas if (err)
1440 63915ee5 2022-06-23 thomas goto done;
1441 63915ee5 2022-06-23 thomas obj->size = len;
1442 63915ee5 2022-06-23 thomas err = got_object_parse_tag(&tag, buf, len);
1443 63915ee5 2022-06-23 thomas if (err) {
1444 63915ee5 2022-06-23 thomas free(buf);
1445 63915ee5 2022-06-23 thomas goto done;
1446 63915ee5 2022-06-23 thomas }
1447 63915ee5 2022-06-23 thomas idx = got_packidx_get_object_idx(packidx, &tag->id);
1448 e71f1e62 2022-06-23 thomas if (idx == -1) {
1449 e71f1e62 2022-06-23 thomas have_all_entries = 0;
1450 63915ee5 2022-06-23 thomas break;
1451 e71f1e62 2022-06-23 thomas }
1452 63915ee5 2022-06-23 thomas err = open_commit(&commit, pack, packidx, idx,
1453 63915ee5 2022-06-23 thomas &tag->id, objcache);
1454 63915ee5 2022-06-23 thomas got_object_tag_close(tag);
1455 63915ee5 2022-06-23 thomas free(buf);
1456 63915ee5 2022-06-23 thomas if (err)
1457 63915ee5 2022-06-23 thomas goto done;
1458 63915ee5 2022-06-23 thomas } else if (obj->type == GOT_OBJ_TYPE_COMMIT) {
1459 63915ee5 2022-06-23 thomas err = open_commit(&commit, pack, packidx, idx,
1460 63915ee5 2022-06-23 thomas &qid->id, objcache);
1461 63915ee5 2022-06-23 thomas if (err)
1462 63915ee5 2022-06-23 thomas goto done;
1463 63915ee5 2022-06-23 thomas } else {
1464 63915ee5 2022-06-23 thomas err = got_error(GOT_ERR_OBJ_TYPE);
1465 63915ee5 2022-06-23 thomas goto done;
1466 63915ee5 2022-06-23 thomas }
1467 63915ee5 2022-06-23 thomas got_object_close(obj);
1468 63915ee5 2022-06-23 thomas obj = NULL;
1469 63915ee5 2022-06-23 thomas
1470 63915ee5 2022-06-23 thomas err = got_privsep_send_enumerated_commit(ibuf, &qid->id,
1471 63915ee5 2022-06-23 thomas got_object_commit_get_committer_time(commit));
1472 63915ee5 2022-06-23 thomas if (err)
1473 63915ee5 2022-06-23 thomas goto done;
1474 63915ee5 2022-06-23 thomas
1475 63915ee5 2022-06-23 thomas tree_id = got_object_commit_get_tree_id(commit);
1476 63915ee5 2022-06-23 thomas idx = got_packidx_get_object_idx(packidx, tree_id);
1477 63915ee5 2022-06-23 thomas if (idx == -1) {
1478 e71f1e62 2022-06-23 thomas have_all_entries = 0;
1479 63915ee5 2022-06-23 thomas err = got_privsep_send_enumerated_tree(&totlen, ibuf,
1480 63915ee5 2022-06-23 thomas tree_id, "/", NULL, -1);
1481 63915ee5 2022-06-23 thomas if (err)
1482 63915ee5 2022-06-23 thomas goto done;
1483 63915ee5 2022-06-23 thomas break;
1484 63915ee5 2022-06-23 thomas }
1485 63915ee5 2022-06-23 thomas
1486 63915ee5 2022-06-23 thomas if (got_object_idset_contains(idset, tree_id)) {
1487 63915ee5 2022-06-23 thomas got_object_qid_free(qid);
1488 63915ee5 2022-06-23 thomas qid = NULL;
1489 63915ee5 2022-06-23 thomas continue;
1490 63915ee5 2022-06-23 thomas }
1491 63915ee5 2022-06-23 thomas
1492 0f4feb58 2022-06-23 thomas err = enumerate_tree(&have_all_entries, ibuf, &totlen,
1493 0f4feb58 2022-06-23 thomas tree_id, "/", pack, packidx, objcache, idset,
1494 0f4feb58 2022-06-23 thomas &trees, &nalloc, &ntrees);
1495 63915ee5 2022-06-23 thomas if (err)
1496 63915ee5 2022-06-23 thomas goto done;
1497 63915ee5 2022-06-23 thomas
1498 63915ee5 2022-06-23 thomas if (!have_all_entries)
1499 63915ee5 2022-06-23 thomas break;
1500 63915ee5 2022-06-23 thomas
1501 63915ee5 2022-06-23 thomas got_object_qid_free(qid);
1502 63915ee5 2022-06-23 thomas qid = NULL;
1503 63915ee5 2022-06-23 thomas
1504 63915ee5 2022-06-23 thomas parents = got_object_commit_get_parent_ids(commit);
1505 63915ee5 2022-06-23 thomas if (parents) {
1506 63915ee5 2022-06-23 thomas struct got_object_qid *pid;
1507 63915ee5 2022-06-23 thomas STAILQ_FOREACH(pid, parents, entry) {
1508 63915ee5 2022-06-23 thomas if (got_object_idset_contains(idset, &pid->id))
1509 63915ee5 2022-06-23 thomas continue;
1510 63915ee5 2022-06-23 thomas err = got_object_qid_alloc_partial(&qid);
1511 63915ee5 2022-06-23 thomas if (err)
1512 63915ee5 2022-06-23 thomas goto done;
1513 63915ee5 2022-06-23 thomas memcpy(&qid->id, &pid->id, sizeof(qid->id));
1514 63915ee5 2022-06-23 thomas STAILQ_INSERT_TAIL(&commit_ids, qid, entry);
1515 63915ee5 2022-06-23 thomas qid = NULL;
1516 63915ee5 2022-06-23 thomas }
1517 63915ee5 2022-06-23 thomas }
1518 63915ee5 2022-06-23 thomas
1519 63915ee5 2022-06-23 thomas got_object_commit_close(commit);
1520 63915ee5 2022-06-23 thomas commit = NULL;
1521 63915ee5 2022-06-23 thomas }
1522 63915ee5 2022-06-23 thomas
1523 63915ee5 2022-06-23 thomas if (have_all_entries) {
1524 63915ee5 2022-06-23 thomas err = got_privsep_send_object_enumeration_done(ibuf);
1525 e71f1e62 2022-06-23 thomas if (err)
1526 e71f1e62 2022-06-23 thomas goto done;
1527 e71f1e62 2022-06-23 thomas } else {
1528 e71f1e62 2022-06-23 thomas err = got_privsep_send_object_enumeration_incomplete(ibuf);
1529 63915ee5 2022-06-23 thomas if (err)
1530 63915ee5 2022-06-23 thomas goto done;
1531 63915ee5 2022-06-23 thomas }
1532 63915ee5 2022-06-23 thomas done:
1533 63915ee5 2022-06-23 thomas if (obj)
1534 63915ee5 2022-06-23 thomas got_object_close(obj);
1535 63915ee5 2022-06-23 thomas if (commit)
1536 63915ee5 2022-06-23 thomas got_object_commit_close(commit);
1537 63915ee5 2022-06-23 thomas got_object_qid_free(qid);
1538 63915ee5 2022-06-23 thomas got_object_id_queue_free(&commit_ids);
1539 63915ee5 2022-06-23 thomas if (idset)
1540 63915ee5 2022-06-23 thomas got_object_idset_free(idset);
1541 63915ee5 2022-06-23 thomas for (i = 0; i < ntrees; i++) {
1542 63915ee5 2022-06-23 thomas struct enumerated_tree *tree = &trees[i];
1543 63915ee5 2022-06-23 thomas free(tree->buf);
1544 63915ee5 2022-06-23 thomas free(tree->path);
1545 63915ee5 2022-06-23 thomas free(tree->entries);
1546 63915ee5 2022-06-23 thomas }
1547 63915ee5 2022-06-23 thomas free(trees);
1548 63915ee5 2022-06-23 thomas return err;
1549 63915ee5 2022-06-23 thomas }
1550 63915ee5 2022-06-23 thomas
1551 ec2b23c5 2022-07-01 thomas enum findtwixt_color {
1552 ec2b23c5 2022-07-01 thomas COLOR_KEEP = 0,
1553 ec2b23c5 2022-07-01 thomas COLOR_DROP,
1554 ec2b23c5 2022-07-01 thomas COLOR_SKIP,
1555 ec2b23c5 2022-07-01 thomas COLOR_MAX,
1556 ec2b23c5 2022-07-01 thomas };
1557 ec2b23c5 2022-07-01 thomas
1558 63915ee5 2022-06-23 thomas static const struct got_error *
1559 ec2b23c5 2022-07-01 thomas paint_commit(struct got_object_qid *qid, intptr_t color)
1560 ec2b23c5 2022-07-01 thomas {
1561 ec2b23c5 2022-07-01 thomas if (color < 0 || color >= COLOR_MAX)
1562 ec2b23c5 2022-07-01 thomas return got_error(GOT_ERR_RANGE);
1563 ec2b23c5 2022-07-01 thomas
1564 ec2b23c5 2022-07-01 thomas qid->data = (void *)color;
1565 ec2b23c5 2022-07-01 thomas return NULL;
1566 ec2b23c5 2022-07-01 thomas }
1567 ec2b23c5 2022-07-01 thomas
1568 ec2b23c5 2022-07-01 thomas static const struct got_error *
1569 ec2b23c5 2022-07-01 thomas queue_commit_id(struct got_object_id_queue *ids, struct got_object_id *id,
1570 ec2b23c5 2022-07-01 thomas intptr_t color)
1571 ec2b23c5 2022-07-01 thomas {
1572 ec2b23c5 2022-07-01 thomas const struct got_error *err;
1573 ec2b23c5 2022-07-01 thomas struct got_object_qid *qid;
1574 ec2b23c5 2022-07-01 thomas
1575 ec2b23c5 2022-07-01 thomas err = got_object_qid_alloc_partial(&qid);
1576 ec2b23c5 2022-07-01 thomas if (err)
1577 ec2b23c5 2022-07-01 thomas return err;
1578 ec2b23c5 2022-07-01 thomas
1579 ec2b23c5 2022-07-01 thomas memcpy(&qid->id, id, sizeof(qid->id));
1580 ec2b23c5 2022-07-01 thomas STAILQ_INSERT_TAIL(ids, qid, entry);
1581 ec2b23c5 2022-07-01 thomas return paint_commit(qid, color);
1582 ec2b23c5 2022-07-01 thomas }
1583 ec2b23c5 2022-07-01 thomas
1584 ec2b23c5 2022-07-01 thomas static const struct got_error *
1585 ec2b23c5 2022-07-01 thomas paint_commits(struct got_object_id_queue *ids, int *nids,
1586 ec2b23c5 2022-07-01 thomas struct got_object_idset *keep, struct got_object_idset *drop,
1587 ec2b23c5 2022-07-01 thomas struct got_object_idset *skip, struct got_pack *pack,
1588 ec2b23c5 2022-07-01 thomas struct got_packidx *packidx, struct imsgbuf *ibuf,
1589 ec2b23c5 2022-07-01 thomas struct got_object_cache *objcache)
1590 ec2b23c5 2022-07-01 thomas {
1591 ec2b23c5 2022-07-01 thomas const struct got_error *err = NULL;
1592 ec2b23c5 2022-07-01 thomas struct got_commit_object *commit = NULL;
1593 ec2b23c5 2022-07-01 thomas struct got_object_id_queue painted;
1594 ec2b23c5 2022-07-01 thomas const struct got_object_id_queue *parents;
1595 ec2b23c5 2022-07-01 thomas struct got_object_qid *qid = NULL;
1596 ec2b23c5 2022-07-01 thomas int nqueued = *nids, nskip = 0, npainted = 0;
1597 ec2b23c5 2022-07-01 thomas
1598 ec2b23c5 2022-07-01 thomas STAILQ_INIT(&painted);
1599 ec2b23c5 2022-07-01 thomas
1600 ec2b23c5 2022-07-01 thomas while (!STAILQ_EMPTY(ids) && nskip != nqueued) {
1601 ec2b23c5 2022-07-01 thomas int idx;
1602 ec2b23c5 2022-07-01 thomas intptr_t color;
1603 ec2b23c5 2022-07-01 thomas
1604 ec2b23c5 2022-07-01 thomas if (sigint_received) {
1605 ec2b23c5 2022-07-01 thomas err = got_error(GOT_ERR_CANCELLED);
1606 ec2b23c5 2022-07-01 thomas goto done;
1607 ec2b23c5 2022-07-01 thomas }
1608 ec2b23c5 2022-07-01 thomas
1609 ec2b23c5 2022-07-01 thomas qid = STAILQ_FIRST(ids);
1610 ec2b23c5 2022-07-01 thomas idx = got_packidx_get_object_idx(packidx, &qid->id);
1611 ec2b23c5 2022-07-01 thomas if (idx == -1) {
1612 ec2b23c5 2022-07-01 thomas qid = NULL;
1613 ec2b23c5 2022-07-01 thomas break;
1614 ec2b23c5 2022-07-01 thomas }
1615 ec2b23c5 2022-07-01 thomas
1616 ec2b23c5 2022-07-01 thomas STAILQ_REMOVE_HEAD(ids, entry);
1617 ec2b23c5 2022-07-01 thomas nqueued--;
1618 ec2b23c5 2022-07-01 thomas color = (intptr_t)qid->data;
1619 ec2b23c5 2022-07-01 thomas if (color == COLOR_SKIP)
1620 ec2b23c5 2022-07-01 thomas nskip--;
1621 ec2b23c5 2022-07-01 thomas
1622 ec2b23c5 2022-07-01 thomas if (got_object_idset_contains(skip, &qid->id)) {
1623 ec2b23c5 2022-07-01 thomas got_object_qid_free(qid);
1624 ec2b23c5 2022-07-01 thomas qid = NULL;
1625 ec2b23c5 2022-07-01 thomas continue;
1626 ec2b23c5 2022-07-01 thomas }
1627 ec2b23c5 2022-07-01 thomas
1628 ec2b23c5 2022-07-01 thomas switch (color) {
1629 ec2b23c5 2022-07-01 thomas case COLOR_KEEP:
1630 ec2b23c5 2022-07-01 thomas if (got_object_idset_contains(keep, &qid->id)) {
1631 ec2b23c5 2022-07-01 thomas got_object_qid_free(qid);
1632 ec2b23c5 2022-07-01 thomas qid = NULL;
1633 ec2b23c5 2022-07-01 thomas continue;
1634 ec2b23c5 2022-07-01 thomas }
1635 ec2b23c5 2022-07-01 thomas if (got_object_idset_contains(drop, &qid->id)) {
1636 ec2b23c5 2022-07-01 thomas err = paint_commit(qid, COLOR_SKIP);
1637 ec2b23c5 2022-07-01 thomas if (err)
1638 ec2b23c5 2022-07-01 thomas goto done;
1639 ec2b23c5 2022-07-01 thomas }
1640 ec2b23c5 2022-07-01 thomas err = got_object_idset_add(keep, &qid->id, NULL);
1641 ec2b23c5 2022-07-01 thomas if (err)
1642 ec2b23c5 2022-07-01 thomas goto done;
1643 ec2b23c5 2022-07-01 thomas break;
1644 ec2b23c5 2022-07-01 thomas case COLOR_DROP:
1645 ec2b23c5 2022-07-01 thomas if (got_object_idset_contains(drop, &qid->id)) {
1646 ec2b23c5 2022-07-01 thomas got_object_qid_free(qid);
1647 ec2b23c5 2022-07-01 thomas qid = NULL;
1648 ec2b23c5 2022-07-01 thomas continue;
1649 ec2b23c5 2022-07-01 thomas }
1650 ec2b23c5 2022-07-01 thomas if (got_object_idset_contains(keep, &qid->id)) {
1651 ec2b23c5 2022-07-01 thomas err = paint_commit(qid, COLOR_SKIP);
1652 ec2b23c5 2022-07-01 thomas if (err)
1653 ec2b23c5 2022-07-01 thomas goto done;
1654 ec2b23c5 2022-07-01 thomas }
1655 ec2b23c5 2022-07-01 thomas err = got_object_idset_add(drop, &qid->id, NULL);
1656 ec2b23c5 2022-07-01 thomas if (err)
1657 ec2b23c5 2022-07-01 thomas goto done;
1658 ec2b23c5 2022-07-01 thomas break;
1659 ec2b23c5 2022-07-01 thomas case COLOR_SKIP:
1660 ec2b23c5 2022-07-01 thomas if (!got_object_idset_contains(skip, &qid->id)) {
1661 ec2b23c5 2022-07-01 thomas err = got_object_idset_add(skip, &qid->id,
1662 ec2b23c5 2022-07-01 thomas NULL);
1663 ec2b23c5 2022-07-01 thomas if (err)
1664 ec2b23c5 2022-07-01 thomas goto done;
1665 ec2b23c5 2022-07-01 thomas }
1666 ec2b23c5 2022-07-01 thomas break;
1667 ec2b23c5 2022-07-01 thomas default:
1668 ec2b23c5 2022-07-01 thomas /* should not happen */
1669 ec2b23c5 2022-07-01 thomas err = got_error_fmt(GOT_ERR_NOT_IMPL,
1670 60b94e7d 2022-07-19 thomas "%s invalid commit color %"PRIdPTR, __func__,
1671 60b94e7d 2022-07-19 thomas color);
1672 ec2b23c5 2022-07-01 thomas goto done;
1673 ec2b23c5 2022-07-01 thomas }
1674 ec2b23c5 2022-07-01 thomas
1675 ec2b23c5 2022-07-01 thomas err = open_commit(&commit, pack, packidx, idx, &qid->id,
1676 ec2b23c5 2022-07-01 thomas objcache);
1677 ec2b23c5 2022-07-01 thomas if (err)
1678 ec2b23c5 2022-07-01 thomas goto done;
1679 ec2b23c5 2022-07-01 thomas
1680 ec2b23c5 2022-07-01 thomas parents = got_object_commit_get_parent_ids(commit);
1681 ec2b23c5 2022-07-01 thomas if (parents) {
1682 ec2b23c5 2022-07-01 thomas struct got_object_qid *pid;
1683 ec2b23c5 2022-07-01 thomas color = (intptr_t)qid->data;
1684 ec2b23c5 2022-07-01 thomas STAILQ_FOREACH(pid, parents, entry) {
1685 ec2b23c5 2022-07-01 thomas err = queue_commit_id(ids, &pid->id, color);
1686 ec2b23c5 2022-07-01 thomas if (err)
1687 ec2b23c5 2022-07-01 thomas goto done;
1688 ec2b23c5 2022-07-01 thomas nqueued++;
1689 ec2b23c5 2022-07-01 thomas if (color == COLOR_SKIP)
1690 ec2b23c5 2022-07-01 thomas nskip++;
1691 ec2b23c5 2022-07-01 thomas }
1692 ec2b23c5 2022-07-01 thomas }
1693 ec2b23c5 2022-07-01 thomas
1694 ec2b23c5 2022-07-01 thomas got_object_commit_close(commit);
1695 ec2b23c5 2022-07-01 thomas commit = NULL;
1696 ec2b23c5 2022-07-01 thomas
1697 ec2b23c5 2022-07-01 thomas STAILQ_INSERT_TAIL(&painted, qid, entry);
1698 ec2b23c5 2022-07-01 thomas qid = NULL;
1699 ec2b23c5 2022-07-01 thomas npainted++;
1700 ec2b23c5 2022-07-01 thomas
1701 ec2b23c5 2022-07-01 thomas err = got_privsep_send_painted_commits(ibuf, &painted,
1702 ec2b23c5 2022-07-01 thomas &npainted, 1, 0);
1703 ec2b23c5 2022-07-01 thomas if (err)
1704 ec2b23c5 2022-07-01 thomas goto done;
1705 ec2b23c5 2022-07-01 thomas }
1706 ec2b23c5 2022-07-01 thomas
1707 ec2b23c5 2022-07-01 thomas err = got_privsep_send_painted_commits(ibuf, &painted, &npainted, 1, 1);
1708 ec2b23c5 2022-07-01 thomas if (err)
1709 ec2b23c5 2022-07-01 thomas goto done;
1710 ec2b23c5 2022-07-01 thomas
1711 ec2b23c5 2022-07-01 thomas *nids = nqueued;
1712 ec2b23c5 2022-07-01 thomas done:
1713 ec2b23c5 2022-07-01 thomas if (commit)
1714 ec2b23c5 2022-07-01 thomas got_object_commit_close(commit);
1715 ec2b23c5 2022-07-01 thomas got_object_qid_free(qid);
1716 ec2b23c5 2022-07-01 thomas return err;
1717 ec2b23c5 2022-07-01 thomas }
1718 ec2b23c5 2022-07-01 thomas
1719 ec2b23c5 2022-07-01 thomas static void
1720 ec2b23c5 2022-07-01 thomas commit_painting_free(struct got_object_idset **keep,
1721 ec2b23c5 2022-07-01 thomas struct got_object_idset **drop,
1722 ec2b23c5 2022-07-01 thomas struct got_object_idset **skip)
1723 ec2b23c5 2022-07-01 thomas {
1724 ec2b23c5 2022-07-01 thomas if (*keep) {
1725 ec2b23c5 2022-07-01 thomas got_object_idset_free(*keep);
1726 ec2b23c5 2022-07-01 thomas *keep = NULL;
1727 ec2b23c5 2022-07-01 thomas }
1728 ec2b23c5 2022-07-01 thomas if (*drop) {
1729 ec2b23c5 2022-07-01 thomas got_object_idset_free(*drop);
1730 ec2b23c5 2022-07-01 thomas *drop = NULL;
1731 ec2b23c5 2022-07-01 thomas }
1732 ec2b23c5 2022-07-01 thomas if (*skip) {
1733 b6b86fd1 2022-08-30 thomas got_object_idset_free(*skip);
1734 ec2b23c5 2022-07-01 thomas *skip = NULL;
1735 ec2b23c5 2022-07-01 thomas }
1736 ec2b23c5 2022-07-01 thomas }
1737 ec2b23c5 2022-07-01 thomas
1738 ec2b23c5 2022-07-01 thomas static const struct got_error *
1739 ec2b23c5 2022-07-01 thomas commit_painting_init(struct imsgbuf *ibuf, struct got_object_idset **keep,
1740 ec2b23c5 2022-07-01 thomas struct got_object_idset **drop, struct got_object_idset **skip)
1741 ec2b23c5 2022-07-01 thomas {
1742 ec2b23c5 2022-07-01 thomas const struct got_error *err = NULL;
1743 ec2b23c5 2022-07-01 thomas
1744 ec2b23c5 2022-07-01 thomas *keep = got_object_idset_alloc();
1745 ec2b23c5 2022-07-01 thomas if (*keep == NULL) {
1746 ec2b23c5 2022-07-01 thomas err = got_error_from_errno("got_object_idset_alloc");
1747 ec2b23c5 2022-07-01 thomas goto done;
1748 ec2b23c5 2022-07-01 thomas }
1749 ec2b23c5 2022-07-01 thomas *drop = got_object_idset_alloc();
1750 ec2b23c5 2022-07-01 thomas if (*drop == NULL) {
1751 ec2b23c5 2022-07-01 thomas err = got_error_from_errno("got_object_idset_alloc");
1752 ec2b23c5 2022-07-01 thomas goto done;
1753 ec2b23c5 2022-07-01 thomas }
1754 ec2b23c5 2022-07-01 thomas *skip = got_object_idset_alloc();
1755 ec2b23c5 2022-07-01 thomas if (*skip == NULL) {
1756 ec2b23c5 2022-07-01 thomas err = got_error_from_errno("got_object_idset_alloc");
1757 ec2b23c5 2022-07-01 thomas goto done;
1758 ec2b23c5 2022-07-01 thomas }
1759 ec2b23c5 2022-07-01 thomas
1760 ec2b23c5 2022-07-01 thomas err = recv_object_ids(*keep, ibuf);
1761 ec2b23c5 2022-07-01 thomas if (err)
1762 ec2b23c5 2022-07-01 thomas goto done;
1763 ec2b23c5 2022-07-01 thomas err = recv_object_ids(*drop, ibuf);
1764 ec2b23c5 2022-07-01 thomas if (err)
1765 ec2b23c5 2022-07-01 thomas goto done;
1766 ec2b23c5 2022-07-01 thomas err = recv_object_ids(*skip, ibuf);
1767 ec2b23c5 2022-07-01 thomas if (err)
1768 ec2b23c5 2022-07-01 thomas goto done;
1769 ec2b23c5 2022-07-01 thomas
1770 ec2b23c5 2022-07-01 thomas done:
1771 ec2b23c5 2022-07-01 thomas if (err)
1772 ec2b23c5 2022-07-01 thomas commit_painting_free(keep, drop, skip);
1773 ec2b23c5 2022-07-01 thomas
1774 ec2b23c5 2022-07-01 thomas return err;
1775 ec2b23c5 2022-07-01 thomas }
1776 ec2b23c5 2022-07-01 thomas
1777 ec2b23c5 2022-07-01 thomas static const struct got_error *
1778 ec2b23c5 2022-07-01 thomas commit_painting_request(struct imsg *imsg, struct imsgbuf *ibuf,
1779 ec2b23c5 2022-07-01 thomas struct got_pack *pack, struct got_packidx *packidx,
1780 ec2b23c5 2022-07-01 thomas struct got_object_cache *objcache, struct got_object_idset *keep,
1781 ec2b23c5 2022-07-01 thomas struct got_object_idset *drop, struct got_object_idset *skip)
1782 ec2b23c5 2022-07-01 thomas {
1783 ec2b23c5 2022-07-01 thomas const struct got_error *err = NULL;
1784 ec2b23c5 2022-07-01 thomas struct got_imsg_commit_painting_request ireq;
1785 ec2b23c5 2022-07-01 thomas struct got_object_id id;
1786 ec2b23c5 2022-07-01 thomas size_t datalen;
1787 ec2b23c5 2022-07-01 thomas struct got_object_id_queue ids;
1788 ec2b23c5 2022-07-01 thomas int nids = 0;
1789 ec2b23c5 2022-07-01 thomas
1790 ec2b23c5 2022-07-01 thomas STAILQ_INIT(&ids);
1791 ec2b23c5 2022-07-01 thomas
1792 ec2b23c5 2022-07-01 thomas datalen = imsg->hdr.len - IMSG_HEADER_SIZE;
1793 ec2b23c5 2022-07-01 thomas if (datalen != sizeof(ireq))
1794 ec2b23c5 2022-07-01 thomas return got_error(GOT_ERR_PRIVSEP_LEN);
1795 ec2b23c5 2022-07-01 thomas memcpy(&ireq, imsg->data, sizeof(ireq));
1796 ec2b23c5 2022-07-01 thomas memcpy(id.sha1, ireq.id, SHA1_DIGEST_LENGTH);
1797 ec2b23c5 2022-07-01 thomas
1798 ec2b23c5 2022-07-01 thomas err = queue_commit_id(&ids, &id, ireq.color);
1799 ec2b23c5 2022-07-01 thomas if (err)
1800 ec2b23c5 2022-07-01 thomas return err;
1801 ec2b23c5 2022-07-01 thomas nids = 1;
1802 ec2b23c5 2022-07-01 thomas
1803 ec2b23c5 2022-07-01 thomas err = paint_commits(&ids, &nids, keep, drop, skip,
1804 ec2b23c5 2022-07-01 thomas pack, packidx, ibuf, objcache);
1805 ec2b23c5 2022-07-01 thomas if (err)
1806 ec2b23c5 2022-07-01 thomas goto done;
1807 ec2b23c5 2022-07-01 thomas
1808 ec2b23c5 2022-07-01 thomas err = got_privsep_send_painted_commits(ibuf, &ids, &nids, 0, 1);
1809 ec2b23c5 2022-07-01 thomas if (err)
1810 ec2b23c5 2022-07-01 thomas goto done;
1811 ec2b23c5 2022-07-01 thomas
1812 ec2b23c5 2022-07-01 thomas err = got_privsep_send_painting_commits_done(ibuf);
1813 ec2b23c5 2022-07-01 thomas done:
1814 ec2b23c5 2022-07-01 thomas got_object_id_queue_free(&ids);
1815 ec2b23c5 2022-07-01 thomas return err;
1816 ec2b23c5 2022-07-01 thomas }
1817 ec2b23c5 2022-07-01 thomas
1818 ec2b23c5 2022-07-01 thomas static const struct got_error *
1819 876c234b 2018-09-10 stsp receive_pack(struct got_pack **packp, struct imsgbuf *ibuf)
1820 876c234b 2018-09-10 stsp {
1821 876c234b 2018-09-10 stsp const struct got_error *err = NULL;
1822 876c234b 2018-09-10 stsp struct imsg imsg;
1823 876c234b 2018-09-10 stsp struct got_imsg_pack ipack;
1824 876c234b 2018-09-10 stsp size_t datalen;
1825 876c234b 2018-09-10 stsp struct got_pack *pack;
1826 876c234b 2018-09-10 stsp
1827 876c234b 2018-09-10 stsp *packp = NULL;
1828 876c234b 2018-09-10 stsp
1829 876c234b 2018-09-10 stsp err = got_privsep_recv_imsg(&imsg, ibuf, 0);
1830 876c234b 2018-09-10 stsp if (err)
1831 876c234b 2018-09-10 stsp return err;
1832 876c234b 2018-09-10 stsp
1833 876c234b 2018-09-10 stsp pack = calloc(1, sizeof(*pack));
1834 876c234b 2018-09-10 stsp if (pack == NULL) {
1835 638f9024 2019-05-13 stsp err = got_error_from_errno("calloc");
1836 876c234b 2018-09-10 stsp goto done;
1837 876c234b 2018-09-10 stsp }
1838 876c234b 2018-09-10 stsp
1839 876c234b 2018-09-10 stsp if (imsg.hdr.type != GOT_IMSG_PACK) {
1840 876c234b 2018-09-10 stsp err = got_error(GOT_ERR_PRIVSEP_MSG);
1841 876c234b 2018-09-10 stsp goto done;
1842 876c234b 2018-09-10 stsp }
1843 876c234b 2018-09-10 stsp
1844 876c234b 2018-09-10 stsp if (imsg.fd == -1) {
1845 876c234b 2018-09-10 stsp err = got_error(GOT_ERR_PRIVSEP_NO_FD);
1846 876c234b 2018-09-10 stsp goto done;
1847 876c234b 2018-09-10 stsp }
1848 876c234b 2018-09-10 stsp
1849 876c234b 2018-09-10 stsp datalen = imsg.hdr.len - IMSG_HEADER_SIZE;
1850 876c234b 2018-09-10 stsp if (datalen != sizeof(ipack)) {
1851 876c234b 2018-09-10 stsp err = got_error(GOT_ERR_PRIVSEP_LEN);
1852 876c234b 2018-09-10 stsp goto done;
1853 876c234b 2018-09-10 stsp }
1854 876c234b 2018-09-10 stsp memcpy(&ipack, imsg.data, sizeof(ipack));
1855 876c234b 2018-09-10 stsp
1856 876c234b 2018-09-10 stsp pack->filesize = ipack.filesize;
1857 876c234b 2018-09-10 stsp pack->fd = dup(imsg.fd);
1858 876c234b 2018-09-10 stsp if (pack->fd == -1) {
1859 638f9024 2019-05-13 stsp err = got_error_from_errno("dup");
1860 876c234b 2018-09-10 stsp goto done;
1861 876c234b 2018-09-10 stsp }
1862 56bef47a 2018-09-15 stsp if (lseek(pack->fd, 0, SEEK_SET) == -1) {
1863 638f9024 2019-05-13 stsp err = got_error_from_errno("lseek");
1864 56bef47a 2018-09-15 stsp goto done;
1865 56bef47a 2018-09-15 stsp }
1866 876c234b 2018-09-10 stsp pack->path_packfile = strdup(ipack.path_packfile);
1867 876c234b 2018-09-10 stsp if (pack->path_packfile == NULL) {
1868 638f9024 2019-05-13 stsp err = got_error_from_errno("strdup");
1869 ab2f42e7 2019-11-10 stsp goto done;
1870 ab2f42e7 2019-11-10 stsp }
1871 ab2f42e7 2019-11-10 stsp
1872 a5061f77 2022-06-13 thomas err = got_delta_cache_alloc(&pack->delta_cache);
1873 a5061f77 2022-06-13 thomas if (err)
1874 876c234b 2018-09-10 stsp goto done;
1875 876c234b 2018-09-10 stsp
1876 876c234b 2018-09-10 stsp #ifndef GOT_PACK_NO_MMAP
1877 876c234b 2018-09-10 stsp pack->map = mmap(NULL, pack->filesize, PROT_READ, MAP_PRIVATE,
1878 876c234b 2018-09-10 stsp pack->fd, 0);
1879 876c234b 2018-09-10 stsp if (pack->map == MAP_FAILED)
1880 876c234b 2018-09-10 stsp pack->map = NULL; /* fall back to read(2) */
1881 876c234b 2018-09-10 stsp #endif
1882 876c234b 2018-09-10 stsp done:
1883 876c234b 2018-09-10 stsp if (err) {
1884 876c234b 2018-09-10 stsp if (imsg.fd != -1)
1885 876c234b 2018-09-10 stsp close(imsg.fd);
1886 876c234b 2018-09-10 stsp free(pack);
1887 876c234b 2018-09-10 stsp } else
1888 876c234b 2018-09-10 stsp *packp = pack;
1889 876c234b 2018-09-10 stsp imsg_free(&imsg);
1890 876c234b 2018-09-10 stsp return err;
1891 876c234b 2018-09-10 stsp }
1892 876c234b 2018-09-10 stsp
1893 876c234b 2018-09-10 stsp int
1894 876c234b 2018-09-10 stsp main(int argc, char *argv[])
1895 876c234b 2018-09-10 stsp {
1896 876c234b 2018-09-10 stsp const struct got_error *err = NULL;
1897 876c234b 2018-09-10 stsp struct imsgbuf ibuf;
1898 876c234b 2018-09-10 stsp struct imsg imsg;
1899 c59b3346 2018-09-11 stsp struct got_packidx *packidx = NULL;
1900 c59b3346 2018-09-11 stsp struct got_pack *pack = NULL;
1901 c59b3346 2018-09-11 stsp struct got_object_cache objcache;
1902 f9c2e8e5 2022-02-13 thomas FILE *basefile = NULL, *accumfile = NULL, *delta_outfile = NULL;
1903 ec2b23c5 2022-07-01 thomas struct got_object_idset *keep = NULL, *drop = NULL, *skip = NULL;
1904 c77e00b3 2022-10-18 thomas struct got_parsed_tree_entry *entries = NULL;
1905 c77e00b3 2022-10-18 thomas size_t nentries = 0, nentries_alloc = 0;
1906 876c234b 2018-09-10 stsp
1907 876c234b 2018-09-10 stsp //static int attached;
1908 876c234b 2018-09-10 stsp //while (!attached) sleep(1);
1909 876c234b 2018-09-10 stsp
1910 99437157 2018-11-11 stsp signal(SIGINT, catch_sigint);
1911 99437157 2018-11-11 stsp
1912 876c234b 2018-09-10 stsp imsg_init(&ibuf, GOT_IMSG_FD_CHILD);
1913 876c234b 2018-09-10 stsp
1914 c59b3346 2018-09-11 stsp err = got_object_cache_init(&objcache, GOT_OBJECT_CACHE_TYPE_OBJ);
1915 c59b3346 2018-09-11 stsp if (err) {
1916 638f9024 2019-05-13 stsp err = got_error_from_errno("got_object_cache_init");
1917 c59b3346 2018-09-11 stsp got_privsep_send_error(&ibuf, err);
1918 c59b3346 2018-09-11 stsp return 1;
1919 c59b3346 2018-09-11 stsp }
1920 c59b3346 2018-09-11 stsp
1921 2ff12563 2018-09-15 stsp #ifndef PROFILE
1922 876c234b 2018-09-10 stsp /* revoke access to most system calls */
1923 876c234b 2018-09-10 stsp if (pledge("stdio recvfd", NULL) == -1) {
1924 638f9024 2019-05-13 stsp err = got_error_from_errno("pledge");
1925 876c234b 2018-09-10 stsp got_privsep_send_error(&ibuf, err);
1926 876c234b 2018-09-10 stsp return 1;
1927 876c234b 2018-09-10 stsp }
1928 97799ccd 2022-02-06 thomas
1929 97799ccd 2022-02-06 thomas /* revoke fs access */
1930 97799ccd 2022-02-06 thomas if (landlock_no_fs() == -1) {
1931 97799ccd 2022-02-06 thomas err = got_error_from_errno("landlock_no_fs");
1932 97799ccd 2022-02-06 thomas got_privsep_send_error(&ibuf, err);
1933 97799ccd 2022-02-06 thomas return 1;
1934 97799ccd 2022-02-06 thomas }
1935 5d120ea8 2022-06-23 op if (cap_enter() == -1) {
1936 5d120ea8 2022-06-23 op err = got_error_from_errno("cap_enter");
1937 5d120ea8 2022-06-23 op got_privsep_send_error(&ibuf, err);
1938 5d120ea8 2022-06-23 op return 1;
1939 5d120ea8 2022-06-23 op }
1940 2ff12563 2018-09-15 stsp #endif
1941 876c234b 2018-09-10 stsp
1942 876c234b 2018-09-10 stsp err = receive_packidx(&packidx, &ibuf);
1943 876c234b 2018-09-10 stsp if (err) {
1944 876c234b 2018-09-10 stsp got_privsep_send_error(&ibuf, err);
1945 876c234b 2018-09-10 stsp return 1;
1946 876c234b 2018-09-10 stsp }
1947 876c234b 2018-09-10 stsp
1948 876c234b 2018-09-10 stsp err = receive_pack(&pack, &ibuf);
1949 876c234b 2018-09-10 stsp if (err) {
1950 876c234b 2018-09-10 stsp got_privsep_send_error(&ibuf, err);
1951 876c234b 2018-09-10 stsp return 1;
1952 876c234b 2018-09-10 stsp }
1953 876c234b 2018-09-10 stsp
1954 656b1f76 2019-05-11 jcs for (;;) {
1955 876c234b 2018-09-10 stsp imsg.fd = -1;
1956 99437157 2018-11-11 stsp
1957 99437157 2018-11-11 stsp if (sigint_received) {
1958 99437157 2018-11-11 stsp err = got_error(GOT_ERR_CANCELLED);
1959 99437157 2018-11-11 stsp break;
1960 99437157 2018-11-11 stsp }
1961 876c234b 2018-09-10 stsp
1962 876c234b 2018-09-10 stsp err = got_privsep_recv_imsg(&imsg, &ibuf, 0);
1963 876c234b 2018-09-10 stsp if (err) {
1964 876c234b 2018-09-10 stsp if (err->code == GOT_ERR_PRIVSEP_PIPE)
1965 876c234b 2018-09-10 stsp err = NULL;
1966 876c234b 2018-09-10 stsp break;
1967 876c234b 2018-09-10 stsp }
1968 876c234b 2018-09-10 stsp
1969 876c234b 2018-09-10 stsp if (imsg.hdr.type == GOT_IMSG_STOP)
1970 876c234b 2018-09-10 stsp break;
1971 876c234b 2018-09-10 stsp
1972 876c234b 2018-09-10 stsp switch (imsg.hdr.type) {
1973 bc1f382f 2022-01-05 thomas case GOT_IMSG_TMPFD:
1974 f9c2e8e5 2022-02-13 thomas if (basefile == NULL) {
1975 f9c2e8e5 2022-02-13 thomas err = receive_tempfile(&basefile, "w+",
1976 f9c2e8e5 2022-02-13 thomas &imsg, &ibuf);
1977 f9c2e8e5 2022-02-13 thomas } else if (accumfile == NULL) {
1978 f9c2e8e5 2022-02-13 thomas err = receive_tempfile(&accumfile, "w+",
1979 f9c2e8e5 2022-02-13 thomas &imsg, &ibuf);
1980 f9c2e8e5 2022-02-13 thomas } else
1981 f9c2e8e5 2022-02-13 thomas err = got_error(GOT_ERR_PRIVSEP_MSG);
1982 bc1f382f 2022-01-05 thomas break;
1983 876c234b 2018-09-10 stsp case GOT_IMSG_PACKED_OBJECT_REQUEST:
1984 c59b3346 2018-09-11 stsp err = object_request(&imsg, &ibuf, pack, packidx,
1985 c59b3346 2018-09-11 stsp &objcache);
1986 876c234b 2018-09-10 stsp break;
1987 59d1e4a0 2021-03-10 stsp case GOT_IMSG_PACKED_RAW_OBJECT_REQUEST:
1988 bc1f382f 2022-01-05 thomas if (basefile == NULL || accumfile == NULL) {
1989 bc1f382f 2022-01-05 thomas err = got_error(GOT_ERR_PRIVSEP_MSG);
1990 bc1f382f 2022-01-05 thomas break;
1991 bc1f382f 2022-01-05 thomas }
1992 59d1e4a0 2021-03-10 stsp err = raw_object_request(&imsg, &ibuf, pack, packidx,
1993 bc1f382f 2022-01-05 thomas &objcache, basefile, accumfile);
1994 59d1e4a0 2021-03-10 stsp break;
1995 f9c2e8e5 2022-02-13 thomas case GOT_IMSG_RAW_DELTA_OUTFD:
1996 f9c2e8e5 2022-02-13 thomas if (delta_outfile != NULL) {
1997 f9c2e8e5 2022-02-13 thomas err = got_error(GOT_ERR_PRIVSEP_MSG);
1998 f9c2e8e5 2022-02-13 thomas break;
1999 f9c2e8e5 2022-02-13 thomas }
2000 f9c2e8e5 2022-02-13 thomas err = receive_tempfile(&delta_outfile, "w",
2001 f9c2e8e5 2022-02-13 thomas &imsg, &ibuf);
2002 f9c2e8e5 2022-02-13 thomas break;
2003 f9c2e8e5 2022-02-13 thomas case GOT_IMSG_RAW_DELTA_REQUEST:
2004 f9c2e8e5 2022-02-13 thomas if (delta_outfile == NULL) {
2005 f9c2e8e5 2022-02-13 thomas err = got_error(GOT_ERR_PRIVSEP_NO_FD);
2006 f9c2e8e5 2022-02-13 thomas break;
2007 f9c2e8e5 2022-02-13 thomas }
2008 f9c2e8e5 2022-02-13 thomas err = raw_delta_request(&imsg, &ibuf, delta_outfile,
2009 f9c2e8e5 2022-02-13 thomas pack, packidx);
2010 f9c2e8e5 2022-02-13 thomas break;
2011 7d0d4920 2022-05-12 thomas case GOT_IMSG_DELTA_REUSE_REQUEST:
2012 7d0d4920 2022-05-12 thomas if (delta_outfile == NULL) {
2013 7d0d4920 2022-05-12 thomas err = got_error(GOT_ERR_PRIVSEP_NO_FD);
2014 7d0d4920 2022-05-12 thomas break;
2015 7d0d4920 2022-05-12 thomas }
2016 7d0d4920 2022-05-12 thomas err = delta_reuse_request(&imsg, &ibuf,
2017 7d0d4920 2022-05-12 thomas delta_outfile, pack, packidx);
2018 7d0d4920 2022-05-12 thomas break;
2019 876c234b 2018-09-10 stsp case GOT_IMSG_COMMIT_REQUEST:
2020 c59b3346 2018-09-11 stsp err = commit_request(&imsg, &ibuf, pack, packidx,
2021 7762fe12 2018-11-05 stsp &objcache);
2022 7762fe12 2018-11-05 stsp break;
2023 876c234b 2018-09-10 stsp case GOT_IMSG_TREE_REQUEST:
2024 c59b3346 2018-09-11 stsp err = tree_request(&imsg, &ibuf, pack, packidx,
2025 c77e00b3 2022-10-18 thomas &objcache, &entries, &nentries, &nentries_alloc);
2026 876c234b 2018-09-10 stsp break;
2027 876c234b 2018-09-10 stsp case GOT_IMSG_BLOB_REQUEST:
2028 bc1f382f 2022-01-05 thomas if (basefile == NULL || accumfile == NULL) {
2029 bc1f382f 2022-01-05 thomas err = got_error(GOT_ERR_PRIVSEP_MSG);
2030 bc1f382f 2022-01-05 thomas break;
2031 bc1f382f 2022-01-05 thomas }
2032 c59b3346 2018-09-11 stsp err = blob_request(&imsg, &ibuf, pack, packidx,
2033 bc1f382f 2022-01-05 thomas &objcache, basefile, accumfile);
2034 876c234b 2018-09-10 stsp break;
2035 f4a881ce 2018-11-17 stsp case GOT_IMSG_TAG_REQUEST:
2036 f4a881ce 2018-11-17 stsp err = tag_request(&imsg, &ibuf, pack, packidx,
2037 62d463ca 2020-10-20 naddy &objcache);
2038 f4a881ce 2018-11-17 stsp break;
2039 ca6e02ac 2020-01-07 stsp case GOT_IMSG_COMMIT_TRAVERSAL_REQUEST:
2040 ca6e02ac 2020-01-07 stsp err = commit_traversal_request(&imsg, &ibuf, pack,
2041 ca6e02ac 2020-01-07 stsp packidx, &objcache);
2042 ca6e02ac 2020-01-07 stsp break;
2043 63915ee5 2022-06-23 thomas case GOT_IMSG_OBJECT_ENUMERATION_REQUEST:
2044 63915ee5 2022-06-23 thomas err = enumeration_request(&imsg, &ibuf, pack,
2045 63915ee5 2022-06-23 thomas packidx, &objcache);
2046 63915ee5 2022-06-23 thomas break;
2047 ec2b23c5 2022-07-01 thomas case GOT_IMSG_COMMIT_PAINTING_INIT:
2048 ec2b23c5 2022-07-01 thomas commit_painting_free(&keep, &drop, &skip);
2049 ec2b23c5 2022-07-01 thomas err = commit_painting_init(&ibuf, &keep, &drop, &skip);
2050 ec2b23c5 2022-07-01 thomas break;
2051 ec2b23c5 2022-07-01 thomas case GOT_IMSG_COMMIT_PAINTING_REQUEST:
2052 ec2b23c5 2022-07-01 thomas if (keep == NULL || drop == NULL || skip == NULL) {
2053 ec2b23c5 2022-07-01 thomas err = got_error(GOT_ERR_PRIVSEP_MSG);
2054 ec2b23c5 2022-07-01 thomas break;
2055 ec2b23c5 2022-07-01 thomas }
2056 ec2b23c5 2022-07-01 thomas err = commit_painting_request(&imsg, &ibuf, pack,
2057 ec2b23c5 2022-07-01 thomas packidx, &objcache, keep, drop, skip);
2058 ec2b23c5 2022-07-01 thomas break;
2059 ec2b23c5 2022-07-01 thomas case GOT_IMSG_COMMIT_PAINTING_DONE:
2060 ec2b23c5 2022-07-01 thomas commit_painting_free(&keep, &drop, &skip);
2061 ec2b23c5 2022-07-01 thomas break;
2062 876c234b 2018-09-10 stsp default:
2063 876c234b 2018-09-10 stsp err = got_error(GOT_ERR_PRIVSEP_MSG);
2064 876c234b 2018-09-10 stsp break;
2065 876c234b 2018-09-10 stsp }
2066 876c234b 2018-09-10 stsp
2067 08578a35 2021-01-22 stsp if (imsg.fd != -1 && close(imsg.fd) == -1 && err == NULL)
2068 638f9024 2019-05-13 stsp err = got_error_from_errno("close");
2069 876c234b 2018-09-10 stsp imsg_free(&imsg);
2070 99437157 2018-11-11 stsp if (err)
2071 876c234b 2018-09-10 stsp break;
2072 876c234b 2018-09-10 stsp }
2073 876c234b 2018-09-10 stsp
2074 c77e00b3 2022-10-18 thomas free(entries);
2075 ec2b23c5 2022-07-01 thomas commit_painting_free(&keep, &drop, &skip);
2076 c59b3346 2018-09-11 stsp if (packidx)
2077 c59b3346 2018-09-11 stsp got_packidx_close(packidx);
2078 c59b3346 2018-09-11 stsp if (pack)
2079 c59b3346 2018-09-11 stsp got_pack_close(pack);
2080 48d5fe42 2018-09-15 stsp got_object_cache_close(&objcache);
2081 876c234b 2018-09-10 stsp imsg_clear(&ibuf);
2082 bc1f382f 2022-01-05 thomas if (basefile && fclose(basefile) == EOF && err == NULL)
2083 bc1f382f 2022-01-05 thomas err = got_error_from_errno("fclose");
2084 bc1f382f 2022-01-05 thomas if (accumfile && fclose(accumfile) == EOF && err == NULL)
2085 bc1f382f 2022-01-05 thomas err = got_error_from_errno("fclose");
2086 f9c2e8e5 2022-02-13 thomas if (delta_outfile && fclose(delta_outfile) == EOF && err == NULL)
2087 f9c2e8e5 2022-02-13 thomas err = got_error_from_errno("fclose");
2088 99437157 2018-11-11 stsp if (err) {
2089 80d5f134 2018-11-11 stsp if (!sigint_received && err->code != GOT_ERR_PRIVSEP_PIPE) {
2090 80d5f134 2018-11-11 stsp fprintf(stderr, "%s: %s\n", getprogname(), err->msg);
2091 99437157 2018-11-11 stsp got_privsep_send_error(&ibuf, err);
2092 80d5f134 2018-11-11 stsp }
2093 99437157 2018-11-11 stsp }
2094 08578a35 2021-01-22 stsp if (close(GOT_IMSG_FD_CHILD) == -1 && err == NULL)
2095 638f9024 2019-05-13 stsp err = got_error_from_errno("close");
2096 876c234b 2018-09-10 stsp return err ? 1 : 0;
2097 876c234b 2018-09-10 stsp }