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