Blame


1 2178c42e 2018-04-22 stsp /*
2 5aa81393 2020-01-06 stsp * Copyright (c) 2018, 2019, 2020 Stefan Sperling <stsp@openbsd.org>
3 93658fb9 2020-03-18 stsp * Copyright (c) 2020 Ori Bernstein <ori@openbsd.org>
4 2178c42e 2018-04-22 stsp *
5 2178c42e 2018-04-22 stsp * Permission to use, copy, modify, and distribute this software for any
6 2178c42e 2018-04-22 stsp * purpose with or without fee is hereby granted, provided that the above
7 2178c42e 2018-04-22 stsp * copyright notice and this permission notice appear in all copies.
8 2178c42e 2018-04-22 stsp *
9 2178c42e 2018-04-22 stsp * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
10 2178c42e 2018-04-22 stsp * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
11 2178c42e 2018-04-22 stsp * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
12 2178c42e 2018-04-22 stsp * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
13 2178c42e 2018-04-22 stsp * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
14 2178c42e 2018-04-22 stsp * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
15 2178c42e 2018-04-22 stsp * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
16 2178c42e 2018-04-22 stsp */
17 2178c42e 2018-04-22 stsp
18 2178c42e 2018-04-22 stsp #include <sys/types.h>
19 2178c42e 2018-04-22 stsp #include <sys/uio.h>
20 876c234b 2018-09-10 stsp #include <sys/wait.h>
21 2178c42e 2018-04-22 stsp
22 531c3985 2020-03-18 stsp #include <ctype.h>
23 23c57b28 2020-09-11 naddy #include <limits.h>
24 a486b62b 2021-05-18 stsp #include <signal.h>
25 2178c42e 2018-04-22 stsp #include <stdio.h>
26 2178c42e 2018-04-22 stsp #include <stdlib.h>
27 2178c42e 2018-04-22 stsp #include <string.h>
28 2178c42e 2018-04-22 stsp #include <errno.h>
29 2178c42e 2018-04-22 stsp #include <stdint.h>
30 2178c42e 2018-04-22 stsp #include <poll.h>
31 81a12da5 2020-09-09 naddy #include <unistd.h>
32 2178c42e 2018-04-22 stsp #include <zlib.h>
33 788c352e 2018-06-16 stsp #include <time.h>
34 dd038bc6 2021-09-21 thomas.ad
35 dd038bc6 2021-09-21 thomas.ad #include "got_compat.h"
36 2178c42e 2018-04-22 stsp
37 2178c42e 2018-04-22 stsp #include "got_object.h"
38 2178c42e 2018-04-22 stsp #include "got_error.h"
39 3022d272 2019-11-14 stsp #include "got_path.h"
40 cd95becd 2019-11-29 stsp #include "got_repository.h"
41 2178c42e 2018-04-22 stsp
42 2178c42e 2018-04-22 stsp #include "got_lib_sha1.h"
43 2178c42e 2018-04-22 stsp #include "got_lib_delta.h"
44 63581804 2018-07-09 stsp #include "got_lib_inflate.h"
45 2178c42e 2018-04-22 stsp #include "got_lib_object.h"
46 a440fac0 2018-09-06 stsp #include "got_lib_object_parse.h"
47 2178c42e 2018-04-22 stsp #include "got_lib_privsep.h"
48 876c234b 2018-09-10 stsp #include "got_lib_pack.h"
49 2178c42e 2018-04-22 stsp
50 2178c42e 2018-04-22 stsp #ifndef MIN
51 2178c42e 2018-04-22 stsp #define MIN(_a,_b) ((_a) < (_b) ? (_a) : (_b))
52 c39c25dd 2019-08-09 stsp #endif
53 c39c25dd 2019-08-09 stsp
54 c39c25dd 2019-08-09 stsp #ifndef nitems
55 c39c25dd 2019-08-09 stsp #define nitems(_a) (sizeof((_a)) / sizeof((_a)[0]))
56 2178c42e 2018-04-22 stsp #endif
57 2178c42e 2018-04-22 stsp
58 2178c42e 2018-04-22 stsp static const struct got_error *
59 2178c42e 2018-04-22 stsp poll_fd(int fd, int events, int timeout)
60 2178c42e 2018-04-22 stsp {
61 2178c42e 2018-04-22 stsp struct pollfd pfd[1];
62 a486b62b 2021-05-18 stsp struct timespec ts;
63 a486b62b 2021-05-18 stsp sigset_t sigset;
64 2178c42e 2018-04-22 stsp int n;
65 2178c42e 2018-04-22 stsp
66 2178c42e 2018-04-22 stsp pfd[0].fd = fd;
67 2178c42e 2018-04-22 stsp pfd[0].events = events;
68 2178c42e 2018-04-22 stsp
69 a486b62b 2021-05-18 stsp ts.tv_sec = timeout;
70 a486b62b 2021-05-18 stsp ts.tv_nsec = 0;
71 a486b62b 2021-05-18 stsp
72 a486b62b 2021-05-18 stsp if (sigemptyset(&sigset) == -1)
73 a486b62b 2021-05-18 stsp return got_error_from_errno("sigemptyset");
74 a486b62b 2021-05-18 stsp if (sigaddset(&sigset, SIGWINCH) == -1)
75 a486b62b 2021-05-18 stsp return got_error_from_errno("sigaddset");
76 a486b62b 2021-05-18 stsp
77 a486b62b 2021-05-18 stsp n = ppoll(pfd, 1, timeout == INFTIM ? NULL : &ts, &sigset);
78 2178c42e 2018-04-22 stsp if (n == -1)
79 932dbee7 2021-05-19 stsp return got_error_from_errno("ppoll");
80 2178c42e 2018-04-22 stsp if (n == 0)
81 2178c42e 2018-04-22 stsp return got_error(GOT_ERR_TIMEOUT);
82 2178c42e 2018-04-22 stsp if (pfd[0].revents & (POLLERR | POLLNVAL))
83 638f9024 2019-05-13 stsp return got_error_from_errno("poll error");
84 2178c42e 2018-04-22 stsp if (pfd[0].revents & (events | POLLHUP))
85 2178c42e 2018-04-22 stsp return NULL;
86 2178c42e 2018-04-22 stsp
87 2178c42e 2018-04-22 stsp return got_error(GOT_ERR_INTERRUPT);
88 2178c42e 2018-04-22 stsp }
89 2178c42e 2018-04-22 stsp
90 c4eae628 2018-04-23 stsp static const struct got_error *
91 e033d803 2018-04-23 stsp read_imsg(struct imsgbuf *ibuf)
92 fe36cf76 2018-04-23 stsp {
93 fe36cf76 2018-04-23 stsp const struct got_error *err;
94 e033d803 2018-04-23 stsp size_t n;
95 fe36cf76 2018-04-23 stsp
96 ff470224 2022-05-19 thomas err = poll_fd(ibuf->fd, POLLIN, INFTIM);
97 ff470224 2022-05-19 thomas if (err)
98 ff470224 2022-05-19 thomas return err;
99 fe36cf76 2018-04-23 stsp
100 fe36cf76 2018-04-23 stsp n = imsg_read(ibuf);
101 fe36cf76 2018-04-23 stsp if (n == -1) {
102 fe36cf76 2018-04-23 stsp if (errno == EAGAIN) /* Could be a file-descriptor leak. */
103 fe36cf76 2018-04-23 stsp return got_error(GOT_ERR_PRIVSEP_NO_FD);
104 fe36cf76 2018-04-23 stsp return got_error(GOT_ERR_PRIVSEP_READ);
105 fe36cf76 2018-04-23 stsp }
106 fe36cf76 2018-04-23 stsp if (n == 0)
107 fe36cf76 2018-04-23 stsp return got_error(GOT_ERR_PRIVSEP_PIPE);
108 fe36cf76 2018-04-23 stsp
109 e033d803 2018-04-23 stsp return NULL;
110 e033d803 2018-04-23 stsp }
111 e033d803 2018-04-23 stsp
112 ad242220 2018-09-08 stsp const struct got_error *
113 876c234b 2018-09-10 stsp got_privsep_wait_for_child(pid_t pid)
114 876c234b 2018-09-10 stsp {
115 876c234b 2018-09-10 stsp int child_status;
116 876c234b 2018-09-10 stsp
117 2cb49fa8 2019-05-10 stsp if (waitpid(pid, &child_status, 0) == -1)
118 638f9024 2019-05-13 stsp return got_error_from_errno("waitpid");
119 876c234b 2018-09-10 stsp
120 876c234b 2018-09-10 stsp if (!WIFEXITED(child_status))
121 876c234b 2018-09-10 stsp return got_error(GOT_ERR_PRIVSEP_DIED);
122 876c234b 2018-09-10 stsp
123 876c234b 2018-09-10 stsp if (WEXITSTATUS(child_status) != 0)
124 876c234b 2018-09-10 stsp return got_error(GOT_ERR_PRIVSEP_EXIT);
125 876c234b 2018-09-10 stsp
126 876c234b 2018-09-10 stsp return NULL;
127 876c234b 2018-09-10 stsp }
128 876c234b 2018-09-10 stsp
129 73b7854a 2018-11-11 stsp static const struct got_error *
130 73b7854a 2018-11-11 stsp recv_imsg_error(struct imsg *imsg, size_t datalen)
131 73b7854a 2018-11-11 stsp {
132 73b7854a 2018-11-11 stsp struct got_imsg_error *ierr;
133 73b7854a 2018-11-11 stsp
134 73b7854a 2018-11-11 stsp if (datalen != sizeof(*ierr))
135 73b7854a 2018-11-11 stsp return got_error(GOT_ERR_PRIVSEP_LEN);
136 73b7854a 2018-11-11 stsp
137 73b7854a 2018-11-11 stsp ierr = imsg->data;
138 73b7854a 2018-11-11 stsp if (ierr->code == GOT_ERR_ERRNO) {
139 73b7854a 2018-11-11 stsp static struct got_error serr;
140 73b7854a 2018-11-11 stsp serr.code = GOT_ERR_ERRNO;
141 73b7854a 2018-11-11 stsp serr.msg = strerror(ierr->errno_code);
142 73b7854a 2018-11-11 stsp return &serr;
143 73b7854a 2018-11-11 stsp }
144 73b7854a 2018-11-11 stsp
145 73b7854a 2018-11-11 stsp return got_error(ierr->code);
146 73b7854a 2018-11-11 stsp }
147 73b7854a 2018-11-11 stsp
148 876c234b 2018-09-10 stsp const struct got_error *
149 46de5bfd 2018-11-11 stsp got_privsep_recv_imsg(struct imsg *imsg, struct imsgbuf *ibuf,
150 46de5bfd 2018-11-11 stsp size_t min_datalen)
151 e033d803 2018-04-23 stsp {
152 e033d803 2018-04-23 stsp const struct got_error *err;
153 e033d803 2018-04-23 stsp ssize_t n;
154 e033d803 2018-04-23 stsp
155 e033d803 2018-04-23 stsp n = imsg_get(ibuf, imsg);
156 876c234b 2018-09-10 stsp if (n == -1)
157 638f9024 2019-05-13 stsp return got_error_from_errno("imsg_get");
158 876c234b 2018-09-10 stsp
159 876c234b 2018-09-10 stsp while (n == 0) {
160 876c234b 2018-09-10 stsp err = read_imsg(ibuf);
161 876c234b 2018-09-10 stsp if (err)
162 876c234b 2018-09-10 stsp return err;
163 876c234b 2018-09-10 stsp n = imsg_get(ibuf, imsg);
164 cbfaaf20 2020-01-06 stsp if (n == -1)
165 cbfaaf20 2020-01-06 stsp return got_error_from_errno("imsg_get");
166 876c234b 2018-09-10 stsp }
167 fe36cf76 2018-04-23 stsp
168 fe36cf76 2018-04-23 stsp if (imsg->hdr.len < IMSG_HEADER_SIZE + min_datalen)
169 c4eae628 2018-04-23 stsp return got_error(GOT_ERR_PRIVSEP_LEN);
170 c4eae628 2018-04-23 stsp
171 73b7854a 2018-11-11 stsp if (imsg->hdr.type == GOT_IMSG_ERROR) {
172 73b7854a 2018-11-11 stsp size_t datalen = imsg->hdr.len - IMSG_HEADER_SIZE;
173 73b7854a 2018-11-11 stsp return recv_imsg_error(imsg, datalen);
174 c4eae628 2018-04-23 stsp }
175 c4eae628 2018-04-23 stsp
176 73b7854a 2018-11-11 stsp return NULL;
177 c4eae628 2018-04-23 stsp }
178 c4eae628 2018-04-23 stsp
179 2178c42e 2018-04-22 stsp /* Attempt to send an error in an imsg. Complain on stderr as a last resort. */
180 2178c42e 2018-04-22 stsp void
181 2178c42e 2018-04-22 stsp got_privsep_send_error(struct imsgbuf *ibuf, const struct got_error *err)
182 2178c42e 2018-04-22 stsp {
183 2178c42e 2018-04-22 stsp const struct got_error *poll_err;
184 2178c42e 2018-04-22 stsp struct got_imsg_error ierr;
185 2178c42e 2018-04-22 stsp int ret;
186 2178c42e 2018-04-22 stsp
187 2178c42e 2018-04-22 stsp ierr.code = err->code;
188 2178c42e 2018-04-22 stsp if (err->code == GOT_ERR_ERRNO)
189 2178c42e 2018-04-22 stsp ierr.errno_code = errno;
190 2178c42e 2018-04-22 stsp else
191 2178c42e 2018-04-22 stsp ierr.errno_code = 0;
192 2178c42e 2018-04-22 stsp ret = imsg_compose(ibuf, GOT_IMSG_ERROR, 0, 0, -1, &ierr, sizeof(ierr));
193 e93cd828 2018-11-11 stsp if (ret == -1) {
194 2178c42e 2018-04-22 stsp fprintf(stderr, "%s: error %d \"%s\": imsg_compose: %s\n",
195 2178c42e 2018-04-22 stsp getprogname(), err->code, err->msg, strerror(errno));
196 5d43e84d 2018-04-23 stsp return;
197 2178c42e 2018-04-22 stsp }
198 2178c42e 2018-04-22 stsp
199 2178c42e 2018-04-22 stsp poll_err = poll_fd(ibuf->fd, POLLOUT, INFTIM);
200 5d43e84d 2018-04-23 stsp if (poll_err) {
201 2178c42e 2018-04-22 stsp fprintf(stderr, "%s: error %d \"%s\": poll: %s\n",
202 2178c42e 2018-04-22 stsp getprogname(), err->code, err->msg, poll_err->msg);
203 5d43e84d 2018-04-23 stsp return;
204 5d43e84d 2018-04-23 stsp }
205 2178c42e 2018-04-22 stsp
206 2178c42e 2018-04-22 stsp ret = imsg_flush(ibuf);
207 5d43e84d 2018-04-23 stsp if (ret == -1) {
208 2178c42e 2018-04-22 stsp fprintf(stderr, "%s: error %d \"%s\": imsg_flush: %s\n",
209 2178c42e 2018-04-22 stsp getprogname(), err->code, err->msg, strerror(errno));
210 e2752401 2022-02-16 thomas imsg_clear(ibuf);
211 5d43e84d 2018-04-23 stsp return;
212 5d43e84d 2018-04-23 stsp }
213 e033d803 2018-04-23 stsp }
214 e033d803 2018-04-23 stsp
215 e033d803 2018-04-23 stsp static const struct got_error *
216 e033d803 2018-04-23 stsp flush_imsg(struct imsgbuf *ibuf)
217 e033d803 2018-04-23 stsp {
218 e033d803 2018-04-23 stsp const struct got_error *err;
219 e033d803 2018-04-23 stsp
220 e033d803 2018-04-23 stsp err = poll_fd(ibuf->fd, POLLOUT, INFTIM);
221 e033d803 2018-04-23 stsp if (err)
222 e033d803 2018-04-23 stsp return err;
223 e033d803 2018-04-23 stsp
224 e2752401 2022-02-16 thomas if (imsg_flush(ibuf) == -1) {
225 e2752401 2022-02-16 thomas imsg_clear(ibuf);
226 638f9024 2019-05-13 stsp return got_error_from_errno("imsg_flush");
227 e2752401 2022-02-16 thomas }
228 e033d803 2018-04-23 stsp
229 e033d803 2018-04-23 stsp return NULL;
230 ad242220 2018-09-08 stsp }
231 ad242220 2018-09-08 stsp
232 ad242220 2018-09-08 stsp const struct got_error *
233 e70bf110 2020-03-22 stsp got_privsep_flush_imsg(struct imsgbuf *ibuf)
234 e70bf110 2020-03-22 stsp {
235 e70bf110 2020-03-22 stsp return flush_imsg(ibuf);
236 e70bf110 2020-03-22 stsp }
237 e70bf110 2020-03-22 stsp
238 e70bf110 2020-03-22 stsp const struct got_error *
239 ad242220 2018-09-08 stsp got_privsep_send_stop(int fd)
240 ad242220 2018-09-08 stsp {
241 ad242220 2018-09-08 stsp const struct got_error *err = NULL;
242 ad242220 2018-09-08 stsp struct imsgbuf ibuf;
243 ad242220 2018-09-08 stsp
244 ad242220 2018-09-08 stsp imsg_init(&ibuf, fd);
245 ad242220 2018-09-08 stsp
246 ad242220 2018-09-08 stsp if (imsg_compose(&ibuf, GOT_IMSG_STOP, 0, 0, -1, NULL, 0) == -1)
247 638f9024 2019-05-13 stsp return got_error_from_errno("imsg_compose STOP");
248 ad242220 2018-09-08 stsp
249 ad242220 2018-09-08 stsp err = flush_imsg(&ibuf);
250 ad242220 2018-09-08 stsp return err;
251 7762fe12 2018-11-05 stsp }
252 93658fb9 2020-03-18 stsp
253 93658fb9 2020-03-18 stsp const struct got_error *
254 d5c81d44 2021-07-08 stsp got_privsep_send_obj_req(struct imsgbuf *ibuf, int fd,
255 d5c81d44 2021-07-08 stsp struct got_object_id *id)
256 ad242220 2018-09-08 stsp {
257 d5c81d44 2021-07-08 stsp if (imsg_compose(ibuf, GOT_IMSG_OBJECT_REQUEST, 0, 0, fd,
258 d5c81d44 2021-07-08 stsp id, sizeof(*id)) == -1)
259 638f9024 2019-05-13 stsp return got_error_from_errno("imsg_compose OBJECT_REQUEST");
260 59d1e4a0 2021-03-10 stsp
261 59d1e4a0 2021-03-10 stsp return flush_imsg(ibuf);
262 59d1e4a0 2021-03-10 stsp }
263 59d1e4a0 2021-03-10 stsp
264 59d1e4a0 2021-03-10 stsp const struct got_error *
265 d5c81d44 2021-07-08 stsp got_privsep_send_raw_obj_req(struct imsgbuf *ibuf, int fd,
266 d5c81d44 2021-07-08 stsp struct got_object_id *id)
267 59d1e4a0 2021-03-10 stsp {
268 d5c81d44 2021-07-08 stsp if (imsg_compose(ibuf, GOT_IMSG_RAW_OBJECT_REQUEST, 0, 0, fd,
269 d5c81d44 2021-07-08 stsp id, sizeof(*id)) == -1)
270 59d1e4a0 2021-03-10 stsp return got_error_from_errno("imsg_compose RAW_OBJECT_REQUEST");
271 59d1e4a0 2021-03-10 stsp
272 59d1e4a0 2021-03-10 stsp return flush_imsg(ibuf);
273 59d1e4a0 2021-03-10 stsp }
274 59d1e4a0 2021-03-10 stsp
275 59d1e4a0 2021-03-10 stsp const struct got_error *
276 59d1e4a0 2021-03-10 stsp got_privsep_send_raw_obj_outfd(struct imsgbuf *ibuf, int outfd)
277 59d1e4a0 2021-03-10 stsp {
278 59d1e4a0 2021-03-10 stsp const struct got_error *err = NULL;
279 59d1e4a0 2021-03-10 stsp
280 59d1e4a0 2021-03-10 stsp if (imsg_compose(ibuf, GOT_IMSG_RAW_OBJECT_OUTFD, 0, 0, outfd, NULL, 0)
281 59d1e4a0 2021-03-10 stsp == -1) {
282 59d1e4a0 2021-03-10 stsp err = got_error_from_errno("imsg_compose RAW_OBJECT_OUTFD");
283 59d1e4a0 2021-03-10 stsp close(outfd);
284 59d1e4a0 2021-03-10 stsp return err;
285 59d1e4a0 2021-03-10 stsp }
286 59d1e4a0 2021-03-10 stsp
287 59d1e4a0 2021-03-10 stsp return flush_imsg(ibuf);
288 59d1e4a0 2021-03-10 stsp }
289 59d1e4a0 2021-03-10 stsp
290 59d1e4a0 2021-03-10 stsp const struct got_error *
291 59d1e4a0 2021-03-10 stsp got_privsep_send_raw_obj(struct imsgbuf *ibuf, off_t size, size_t hdrlen,
292 59d1e4a0 2021-03-10 stsp uint8_t *data)
293 59d1e4a0 2021-03-10 stsp {
294 59d1e4a0 2021-03-10 stsp const struct got_error *err = NULL;
295 59d1e4a0 2021-03-10 stsp struct got_imsg_raw_obj iobj;
296 59d1e4a0 2021-03-10 stsp size_t len = sizeof(iobj);
297 59d1e4a0 2021-03-10 stsp struct ibuf *wbuf;
298 1785f84a 2018-12-23 stsp
299 59d1e4a0 2021-03-10 stsp iobj.hdrlen = hdrlen;
300 59d1e4a0 2021-03-10 stsp iobj.size = size;
301 59d1e4a0 2021-03-10 stsp
302 a8591711 2021-06-18 stsp if (data && size + hdrlen <= GOT_PRIVSEP_INLINE_OBJECT_DATA_MAX)
303 a8591711 2021-06-18 stsp len += (size_t)size + hdrlen;
304 59d1e4a0 2021-03-10 stsp
305 59d1e4a0 2021-03-10 stsp wbuf = imsg_create(ibuf, GOT_IMSG_RAW_OBJECT, 0, 0, len);
306 59d1e4a0 2021-03-10 stsp if (wbuf == NULL) {
307 59d1e4a0 2021-03-10 stsp err = got_error_from_errno("imsg_create RAW_OBJECT");
308 59d1e4a0 2021-03-10 stsp return err;
309 59d1e4a0 2021-03-10 stsp }
310 59d1e4a0 2021-03-10 stsp
311 e9f1a409 2022-05-19 thomas if (imsg_add(wbuf, &iobj, sizeof(iobj)) == -1)
312 e9f1a409 2022-05-19 thomas return got_error_from_errno("imsg_add RAW_OBJECT");
313 59d1e4a0 2021-03-10 stsp
314 a8591711 2021-06-18 stsp if (data && size + hdrlen <= GOT_PRIVSEP_INLINE_OBJECT_DATA_MAX) {
315 e9f1a409 2022-05-19 thomas if (imsg_add(wbuf, data, size + hdrlen) == -1)
316 e9f1a409 2022-05-19 thomas return got_error_from_errno("imsg_add RAW_OBJECT");
317 59d1e4a0 2021-03-10 stsp }
318 59d1e4a0 2021-03-10 stsp
319 59d1e4a0 2021-03-10 stsp wbuf->fd = -1;
320 59d1e4a0 2021-03-10 stsp imsg_close(ibuf, wbuf);
321 59d1e4a0 2021-03-10 stsp
322 1785f84a 2018-12-23 stsp return flush_imsg(ibuf);
323 1785f84a 2018-12-23 stsp }
324 1785f84a 2018-12-23 stsp
325 1785f84a 2018-12-23 stsp const struct got_error *
326 59d1e4a0 2021-03-10 stsp got_privsep_recv_raw_obj(uint8_t **outbuf, off_t *size, size_t *hdrlen,
327 59d1e4a0 2021-03-10 stsp struct imsgbuf *ibuf)
328 59d1e4a0 2021-03-10 stsp {
329 59d1e4a0 2021-03-10 stsp const struct got_error *err = NULL;
330 59d1e4a0 2021-03-10 stsp struct imsg imsg;
331 59d1e4a0 2021-03-10 stsp struct got_imsg_raw_obj *iobj;
332 59d1e4a0 2021-03-10 stsp size_t datalen;
333 59d1e4a0 2021-03-10 stsp
334 59d1e4a0 2021-03-10 stsp *outbuf = NULL;
335 59d1e4a0 2021-03-10 stsp
336 59d1e4a0 2021-03-10 stsp err = got_privsep_recv_imsg(&imsg, ibuf, 0);
337 59d1e4a0 2021-03-10 stsp if (err)
338 59d1e4a0 2021-03-10 stsp return err;
339 59d1e4a0 2021-03-10 stsp
340 59d1e4a0 2021-03-10 stsp datalen = imsg.hdr.len - IMSG_HEADER_SIZE;
341 59d1e4a0 2021-03-10 stsp
342 59d1e4a0 2021-03-10 stsp switch (imsg.hdr.type) {
343 59d1e4a0 2021-03-10 stsp case GOT_IMSG_RAW_OBJECT:
344 59d1e4a0 2021-03-10 stsp if (datalen < sizeof(*iobj)) {
345 59d1e4a0 2021-03-10 stsp err = got_error(GOT_ERR_PRIVSEP_LEN);
346 59d1e4a0 2021-03-10 stsp break;
347 59d1e4a0 2021-03-10 stsp }
348 59d1e4a0 2021-03-10 stsp iobj = imsg.data;
349 59d1e4a0 2021-03-10 stsp *size = iobj->size;
350 59d1e4a0 2021-03-10 stsp *hdrlen = iobj->hdrlen;
351 59d1e4a0 2021-03-10 stsp
352 59d1e4a0 2021-03-10 stsp if (datalen == sizeof(*iobj)) {
353 59d1e4a0 2021-03-10 stsp /* Data has been written to file descriptor. */
354 59d1e4a0 2021-03-10 stsp break;
355 59d1e4a0 2021-03-10 stsp }
356 59d1e4a0 2021-03-10 stsp
357 a8591711 2021-06-18 stsp if (*size + *hdrlen > GOT_PRIVSEP_INLINE_OBJECT_DATA_MAX) {
358 59d1e4a0 2021-03-10 stsp err = got_error(GOT_ERR_PRIVSEP_LEN);
359 59d1e4a0 2021-03-10 stsp break;
360 59d1e4a0 2021-03-10 stsp }
361 59d1e4a0 2021-03-10 stsp
362 a8591711 2021-06-18 stsp *outbuf = malloc(*size + *hdrlen);
363 59d1e4a0 2021-03-10 stsp if (*outbuf == NULL) {
364 59d1e4a0 2021-03-10 stsp err = got_error_from_errno("malloc");
365 59d1e4a0 2021-03-10 stsp break;
366 59d1e4a0 2021-03-10 stsp }
367 a8591711 2021-06-18 stsp memcpy(*outbuf, imsg.data + sizeof(*iobj), *size + *hdrlen);
368 59d1e4a0 2021-03-10 stsp break;
369 59d1e4a0 2021-03-10 stsp default:
370 59d1e4a0 2021-03-10 stsp err = got_error(GOT_ERR_PRIVSEP_MSG);
371 59d1e4a0 2021-03-10 stsp break;
372 59d1e4a0 2021-03-10 stsp }
373 59d1e4a0 2021-03-10 stsp
374 59d1e4a0 2021-03-10 stsp imsg_free(&imsg);
375 59d1e4a0 2021-03-10 stsp
376 59d1e4a0 2021-03-10 stsp return err;
377 59d1e4a0 2021-03-10 stsp }
378 59d1e4a0 2021-03-10 stsp
379 59d1e4a0 2021-03-10 stsp const struct got_error *
380 1785f84a 2018-12-23 stsp got_privsep_send_commit_req(struct imsgbuf *ibuf, int fd,
381 1785f84a 2018-12-23 stsp struct got_object_id *id, int pack_idx)
382 1785f84a 2018-12-23 stsp {
383 41496140 2019-02-21 stsp const struct got_error *err = NULL;
384 d5c81d44 2021-07-08 stsp struct got_imsg_packed_object iobj;
385 d5c81d44 2021-07-08 stsp void *data;
386 1785f84a 2018-12-23 stsp size_t len;
387 1785f84a 2018-12-23 stsp
388 d5c81d44 2021-07-08 stsp if (pack_idx != -1) { /* commit is packed */
389 1785f84a 2018-12-23 stsp iobj.idx = pack_idx;
390 1785f84a 2018-12-23 stsp memcpy(iobj.id, id->sha1, sizeof(iobj.id));
391 d5c81d44 2021-07-08 stsp data = &iobj;
392 1785f84a 2018-12-23 stsp len = sizeof(iobj);
393 1785f84a 2018-12-23 stsp } else {
394 d5c81d44 2021-07-08 stsp data = id;
395 d5c81d44 2021-07-08 stsp len = sizeof(*id);
396 1785f84a 2018-12-23 stsp }
397 1785f84a 2018-12-23 stsp
398 d5c81d44 2021-07-08 stsp if (imsg_compose(ibuf, GOT_IMSG_COMMIT_REQUEST, 0, 0, fd, data, len)
399 41496140 2019-02-21 stsp == -1) {
400 638f9024 2019-05-13 stsp err = got_error_from_errno("imsg_compose COMMIT_REQUEST");
401 41496140 2019-02-21 stsp close(fd);
402 41496140 2019-02-21 stsp return err;
403 41496140 2019-02-21 stsp }
404 13c729f7 2018-12-24 stsp
405 13c729f7 2018-12-24 stsp return flush_imsg(ibuf);
406 13c729f7 2018-12-24 stsp }
407 13c729f7 2018-12-24 stsp
408 13c729f7 2018-12-24 stsp const struct got_error *
409 13c729f7 2018-12-24 stsp got_privsep_send_tree_req(struct imsgbuf *ibuf, int fd,
410 13c729f7 2018-12-24 stsp struct got_object_id *id, int pack_idx)
411 13c729f7 2018-12-24 stsp {
412 7f358e3b 2019-11-23 stsp struct ibuf *wbuf;
413 d5c81d44 2021-07-08 stsp size_t len;
414 7f358e3b 2019-11-23 stsp
415 d5c81d44 2021-07-08 stsp if (pack_idx != -1)
416 d5c81d44 2021-07-08 stsp len = sizeof(struct got_imsg_packed_object);
417 d5c81d44 2021-07-08 stsp else
418 d5c81d44 2021-07-08 stsp len = sizeof(*id);
419 d5c81d44 2021-07-08 stsp
420 7f358e3b 2019-11-23 stsp wbuf = imsg_create(ibuf, GOT_IMSG_TREE_REQUEST, 0, 0, len);
421 7f358e3b 2019-11-23 stsp if (wbuf == NULL)
422 7f358e3b 2019-11-23 stsp return got_error_from_errno("imsg_create TREE_REQUEST");
423 13c729f7 2018-12-24 stsp
424 e9f1a409 2022-05-19 thomas if (imsg_add(wbuf, id->sha1, SHA1_DIGEST_LENGTH) == -1)
425 e9f1a409 2022-05-19 thomas return got_error_from_errno("imsg_add TREE_REQUEST");
426 13c729f7 2018-12-24 stsp
427 d5c81d44 2021-07-08 stsp if (pack_idx != -1) { /* tree is packed */
428 e9f1a409 2022-05-19 thomas if (imsg_add(wbuf, &pack_idx, sizeof(pack_idx)) == -1)
429 e9f1a409 2022-05-19 thomas return got_error_from_errno("imsg_add TREE_REQUEST");
430 41496140 2019-02-21 stsp }
431 268f7291 2018-12-24 stsp
432 7f358e3b 2019-11-23 stsp wbuf->fd = fd;
433 7f358e3b 2019-11-23 stsp imsg_close(ibuf, wbuf);
434 7f358e3b 2019-11-23 stsp
435 268f7291 2018-12-24 stsp return flush_imsg(ibuf);
436 268f7291 2018-12-24 stsp }
437 268f7291 2018-12-24 stsp
438 268f7291 2018-12-24 stsp const struct got_error *
439 268f7291 2018-12-24 stsp got_privsep_send_tag_req(struct imsgbuf *ibuf, int fd,
440 268f7291 2018-12-24 stsp struct got_object_id *id, int pack_idx)
441 268f7291 2018-12-24 stsp {
442 d5c81d44 2021-07-08 stsp struct got_imsg_packed_object iobj;
443 d5c81d44 2021-07-08 stsp void *data;
444 268f7291 2018-12-24 stsp size_t len;
445 268f7291 2018-12-24 stsp
446 d5c81d44 2021-07-08 stsp if (pack_idx != -1) { /* tag is packed */
447 268f7291 2018-12-24 stsp iobj.idx = pack_idx;
448 268f7291 2018-12-24 stsp memcpy(iobj.id, id->sha1, sizeof(iobj.id));
449 d5c81d44 2021-07-08 stsp data = &iobj;
450 268f7291 2018-12-24 stsp len = sizeof(iobj);
451 268f7291 2018-12-24 stsp } else {
452 d5c81d44 2021-07-08 stsp data = id;
453 d5c81d44 2021-07-08 stsp len = sizeof(*id);
454 268f7291 2018-12-24 stsp }
455 268f7291 2018-12-24 stsp
456 d5c81d44 2021-07-08 stsp if (imsg_compose(ibuf, GOT_IMSG_TAG_REQUEST, 0, 0, fd, data, len)
457 1785f84a 2018-12-23 stsp == -1)
458 638f9024 2019-05-13 stsp return got_error_from_errno("imsg_compose TAG_REQUEST");
459 7762fe12 2018-11-05 stsp
460 7762fe12 2018-11-05 stsp return flush_imsg(ibuf);
461 7762fe12 2018-11-05 stsp }
462 7762fe12 2018-11-05 stsp
463 7762fe12 2018-11-05 stsp const struct got_error *
464 ebc55e2d 2018-12-24 stsp got_privsep_send_blob_req(struct imsgbuf *ibuf, int infd,
465 ebc55e2d 2018-12-24 stsp struct got_object_id *id, int pack_idx)
466 55da3778 2018-09-10 stsp {
467 41496140 2019-02-21 stsp const struct got_error *err = NULL;
468 d5c81d44 2021-07-08 stsp struct got_imsg_packed_object iobj;
469 d5c81d44 2021-07-08 stsp void *data;
470 ebc55e2d 2018-12-24 stsp size_t len;
471 ebc55e2d 2018-12-24 stsp
472 d5c81d44 2021-07-08 stsp if (pack_idx != -1) { /* blob is packed */
473 ebc55e2d 2018-12-24 stsp iobj.idx = pack_idx;
474 ebc55e2d 2018-12-24 stsp memcpy(iobj.id, id->sha1, sizeof(iobj.id));
475 d5c81d44 2021-07-08 stsp data = &iobj;
476 ebc55e2d 2018-12-24 stsp len = sizeof(iobj);
477 ebc55e2d 2018-12-24 stsp } else {
478 d5c81d44 2021-07-08 stsp data = id;
479 d5c81d44 2021-07-08 stsp len = sizeof(*id);
480 ebc55e2d 2018-12-24 stsp }
481 ebc55e2d 2018-12-24 stsp
482 d5c81d44 2021-07-08 stsp if (imsg_compose(ibuf, GOT_IMSG_BLOB_REQUEST, 0, 0, infd, data, len)
483 41496140 2019-02-21 stsp == -1) {
484 638f9024 2019-05-13 stsp err = got_error_from_errno("imsg_compose BLOB_REQUEST");
485 41496140 2019-02-21 stsp close(infd);
486 41496140 2019-02-21 stsp return err;
487 41496140 2019-02-21 stsp }
488 ad242220 2018-09-08 stsp
489 55da3778 2018-09-10 stsp return flush_imsg(ibuf);
490 55da3778 2018-09-10 stsp }
491 ad242220 2018-09-08 stsp
492 55da3778 2018-09-10 stsp const struct got_error *
493 55da3778 2018-09-10 stsp got_privsep_send_blob_outfd(struct imsgbuf *ibuf, int outfd)
494 55da3778 2018-09-10 stsp {
495 41496140 2019-02-21 stsp const struct got_error *err = NULL;
496 41496140 2019-02-21 stsp
497 ad242220 2018-09-08 stsp if (imsg_compose(ibuf, GOT_IMSG_BLOB_OUTFD, 0, 0, outfd, NULL, 0)
498 41496140 2019-02-21 stsp == -1) {
499 638f9024 2019-05-13 stsp err = got_error_from_errno("imsg_compose BLOB_OUTFD");
500 41496140 2019-02-21 stsp close(outfd);
501 41496140 2019-02-21 stsp return err;
502 41496140 2019-02-21 stsp }
503 3840f4c9 2018-09-12 stsp
504 3840f4c9 2018-09-12 stsp return flush_imsg(ibuf);
505 3840f4c9 2018-09-12 stsp }
506 3840f4c9 2018-09-12 stsp
507 73ab1060 2020-03-18 stsp static const struct got_error *
508 73ab1060 2020-03-18 stsp send_fd(struct imsgbuf *ibuf, int imsg_code, int fd)
509 3840f4c9 2018-09-12 stsp {
510 41496140 2019-02-21 stsp const struct got_error *err = NULL;
511 41496140 2019-02-21 stsp
512 73ab1060 2020-03-18 stsp if (imsg_compose(ibuf, imsg_code, 0, 0, fd, NULL, 0) == -1) {
513 638f9024 2019-05-13 stsp err = got_error_from_errno("imsg_compose TMPFD");
514 41496140 2019-02-21 stsp close(fd);
515 41496140 2019-02-21 stsp return err;
516 41496140 2019-02-21 stsp }
517 ad242220 2018-09-08 stsp
518 ad242220 2018-09-08 stsp return flush_imsg(ibuf);
519 ad242220 2018-09-08 stsp }
520 ad242220 2018-09-08 stsp
521 ad242220 2018-09-08 stsp const struct got_error *
522 73ab1060 2020-03-18 stsp got_privsep_send_tmpfd(struct imsgbuf *ibuf, int fd)
523 73ab1060 2020-03-18 stsp {
524 73ab1060 2020-03-18 stsp return send_fd(ibuf, GOT_IMSG_TMPFD, fd);
525 73ab1060 2020-03-18 stsp }
526 73ab1060 2020-03-18 stsp
527 73ab1060 2020-03-18 stsp const struct got_error *
528 876c234b 2018-09-10 stsp got_privsep_send_obj(struct imsgbuf *ibuf, struct got_object *obj)
529 2178c42e 2018-04-22 stsp {
530 2178c42e 2018-04-22 stsp struct got_imsg_object iobj;
531 2178c42e 2018-04-22 stsp
532 c59b3346 2018-09-11 stsp memcpy(iobj.id, obj->id.sha1, sizeof(iobj.id));
533 2178c42e 2018-04-22 stsp iobj.type = obj->type;
534 2178c42e 2018-04-22 stsp iobj.flags = obj->flags;
535 2178c42e 2018-04-22 stsp iobj.hdrlen = obj->hdrlen;
536 2178c42e 2018-04-22 stsp iobj.size = obj->size;
537 c59b3346 2018-09-11 stsp if (iobj.flags & GOT_OBJ_FLAG_PACKED) {
538 876c234b 2018-09-10 stsp iobj.pack_offset = obj->pack_offset;
539 c59b3346 2018-09-11 stsp iobj.pack_idx = obj->pack_idx;
540 c59b3346 2018-09-11 stsp }
541 2178c42e 2018-04-22 stsp
542 2178c42e 2018-04-22 stsp if (imsg_compose(ibuf, GOT_IMSG_OBJECT, 0, 0, -1, &iobj, sizeof(iobj))
543 2178c42e 2018-04-22 stsp == -1)
544 638f9024 2019-05-13 stsp return got_error_from_errno("imsg_compose OBJECT");
545 2178c42e 2018-04-22 stsp
546 c59b3346 2018-09-11 stsp return flush_imsg(ibuf);
547 cfd633c2 2018-09-10 stsp }
548 cfd633c2 2018-09-10 stsp
549 cfd633c2 2018-09-10 stsp const struct got_error *
550 33501562 2020-03-18 stsp got_privsep_send_fetch_req(struct imsgbuf *ibuf, int fd,
551 abc59930 2021-09-05 naddy struct got_pathlist_head *have_refs, int fetch_all_branches,
552 abc59930 2021-09-05 naddy struct got_pathlist_head *wanted_branches,
553 abc59930 2021-09-05 naddy struct got_pathlist_head *wanted_refs, int list_refs_only, int verbosity)
554 93658fb9 2020-03-18 stsp {
555 93658fb9 2020-03-18 stsp const struct got_error *err = NULL;
556 33501562 2020-03-18 stsp struct ibuf *wbuf;
557 4ba14133 2020-03-20 stsp size_t len;
558 33501562 2020-03-18 stsp struct got_pathlist_entry *pe;
559 4ba14133 2020-03-20 stsp struct got_imsg_fetch_request fetchreq;
560 93658fb9 2020-03-18 stsp
561 4ba14133 2020-03-20 stsp memset(&fetchreq, 0, sizeof(fetchreq));
562 4ba14133 2020-03-20 stsp fetchreq.fetch_all_branches = fetch_all_branches;
563 41b0de12 2020-03-21 stsp fetchreq.list_refs_only = list_refs_only;
564 2690194b 2020-03-21 stsp fetchreq.verbosity = verbosity;
565 4ba14133 2020-03-20 stsp TAILQ_FOREACH(pe, have_refs, entry)
566 4ba14133 2020-03-20 stsp fetchreq.n_have_refs++;
567 4ba14133 2020-03-20 stsp TAILQ_FOREACH(pe, wanted_branches, entry)
568 4ba14133 2020-03-20 stsp fetchreq.n_wanted_branches++;
569 0e4002ca 2020-03-21 stsp TAILQ_FOREACH(pe, wanted_refs, entry)
570 0e4002ca 2020-03-21 stsp fetchreq.n_wanted_refs++;
571 659e7fbd 2020-03-20 stsp len = sizeof(struct got_imsg_fetch_request);
572 33501562 2020-03-18 stsp if (len >= MAX_IMSGSIZE - IMSG_HEADER_SIZE) {
573 33501562 2020-03-18 stsp close(fd);
574 33501562 2020-03-18 stsp return got_error(GOT_ERR_NO_SPACE);
575 33501562 2020-03-18 stsp }
576 33501562 2020-03-18 stsp
577 4ba14133 2020-03-20 stsp if (imsg_compose(ibuf, GOT_IMSG_FETCH_REQUEST, 0, 0, fd,
578 4ba14133 2020-03-20 stsp &fetchreq, sizeof(fetchreq)) == -1)
579 4ba14133 2020-03-20 stsp return got_error_from_errno(
580 4ba14133 2020-03-20 stsp "imsg_compose FETCH_SERVER_PROGRESS");
581 33501562 2020-03-18 stsp
582 4ba14133 2020-03-20 stsp err = flush_imsg(ibuf);
583 4ba14133 2020-03-20 stsp if (err) {
584 659e7fbd 2020-03-20 stsp close(fd);
585 659e7fbd 2020-03-20 stsp return err;
586 659e7fbd 2020-03-20 stsp }
587 4ba14133 2020-03-20 stsp fd = -1;
588 33501562 2020-03-18 stsp
589 33501562 2020-03-18 stsp TAILQ_FOREACH(pe, have_refs, entry) {
590 33501562 2020-03-18 stsp const char *name = pe->path;
591 33501562 2020-03-18 stsp size_t name_len = pe->path_len;
592 33501562 2020-03-18 stsp struct got_object_id *id = pe->data;
593 33501562 2020-03-18 stsp
594 4ba14133 2020-03-20 stsp len = sizeof(struct got_imsg_fetch_have_ref) + name_len;
595 4ba14133 2020-03-20 stsp wbuf = imsg_create(ibuf, GOT_IMSG_FETCH_HAVE_REF, 0, 0, len);
596 4ba14133 2020-03-20 stsp if (wbuf == NULL)
597 4ba14133 2020-03-20 stsp return got_error_from_errno("imsg_create FETCH_HAVE_REF");
598 4ba14133 2020-03-20 stsp
599 33501562 2020-03-18 stsp /* Keep in sync with struct got_imsg_fetch_have_ref! */
600 e9f1a409 2022-05-19 thomas if (imsg_add(wbuf, id->sha1, sizeof(id->sha1)) == -1)
601 e9f1a409 2022-05-19 thomas return got_error_from_errno("imsg_add FETCH_HAVE_REF");
602 e9f1a409 2022-05-19 thomas if (imsg_add(wbuf, &name_len, sizeof(name_len)) == -1)
603 e9f1a409 2022-05-19 thomas return got_error_from_errno("imsg_add FETCH_HAVE_REF");
604 e9f1a409 2022-05-19 thomas if (imsg_add(wbuf, name, name_len) == -1)
605 e9f1a409 2022-05-19 thomas return got_error_from_errno("imsg_add FETCH_HAVE_REF");
606 4ba14133 2020-03-20 stsp
607 4ba14133 2020-03-20 stsp wbuf->fd = -1;
608 4ba14133 2020-03-20 stsp imsg_close(ibuf, wbuf);
609 4ba14133 2020-03-20 stsp err = flush_imsg(ibuf);
610 4ba14133 2020-03-20 stsp if (err)
611 4ba14133 2020-03-20 stsp return err;
612 33501562 2020-03-18 stsp }
613 33501562 2020-03-18 stsp
614 4ba14133 2020-03-20 stsp TAILQ_FOREACH(pe, wanted_branches, entry) {
615 4ba14133 2020-03-20 stsp const char *name = pe->path;
616 4ba14133 2020-03-20 stsp size_t name_len = pe->path_len;
617 4ba14133 2020-03-20 stsp
618 4ba14133 2020-03-20 stsp len = sizeof(struct got_imsg_fetch_wanted_branch) + name_len;
619 4ba14133 2020-03-20 stsp wbuf = imsg_create(ibuf, GOT_IMSG_FETCH_WANTED_BRANCH, 0, 0,
620 4ba14133 2020-03-20 stsp len);
621 4ba14133 2020-03-20 stsp if (wbuf == NULL)
622 4ba14133 2020-03-20 stsp return got_error_from_errno(
623 62d463ca 2020-10-20 naddy "imsg_create FETCH_WANTED_BRANCH");
624 4ba14133 2020-03-20 stsp
625 4ba14133 2020-03-20 stsp /* Keep in sync with struct got_imsg_fetch_wanted_branch! */
626 e9f1a409 2022-05-19 thomas if (imsg_add(wbuf, &name_len, sizeof(name_len)) == -1)
627 e9f1a409 2022-05-19 thomas return got_error_from_errno(
628 4ba14133 2020-03-20 stsp "imsg_add FETCH_WANTED_BRANCH");
629 e9f1a409 2022-05-19 thomas if (imsg_add(wbuf, name, name_len) == -1)
630 e9f1a409 2022-05-19 thomas return got_error_from_errno(
631 62d463ca 2020-10-20 naddy "imsg_add FETCH_WANTED_BRANCH");
632 4ba14133 2020-03-20 stsp
633 4ba14133 2020-03-20 stsp wbuf->fd = -1;
634 4ba14133 2020-03-20 stsp imsg_close(ibuf, wbuf);
635 4ba14133 2020-03-20 stsp err = flush_imsg(ibuf);
636 4ba14133 2020-03-20 stsp if (err)
637 4ba14133 2020-03-20 stsp return err;
638 4ba14133 2020-03-20 stsp }
639 4ba14133 2020-03-20 stsp
640 0e4002ca 2020-03-21 stsp TAILQ_FOREACH(pe, wanted_refs, entry) {
641 0e4002ca 2020-03-21 stsp const char *name = pe->path;
642 0e4002ca 2020-03-21 stsp size_t name_len = pe->path_len;
643 0e4002ca 2020-03-21 stsp
644 0e4002ca 2020-03-21 stsp len = sizeof(struct got_imsg_fetch_wanted_ref) + name_len;
645 0e4002ca 2020-03-21 stsp wbuf = imsg_create(ibuf, GOT_IMSG_FETCH_WANTED_REF, 0, 0,
646 0e4002ca 2020-03-21 stsp len);
647 0e4002ca 2020-03-21 stsp if (wbuf == NULL)
648 0e4002ca 2020-03-21 stsp return got_error_from_errno(
649 62d463ca 2020-10-20 naddy "imsg_create FETCH_WANTED_REF");
650 0e4002ca 2020-03-21 stsp
651 0e4002ca 2020-03-21 stsp /* Keep in sync with struct got_imsg_fetch_wanted_ref! */
652 e9f1a409 2022-05-19 thomas if (imsg_add(wbuf, &name_len, sizeof(name_len)) == -1)
653 e9f1a409 2022-05-19 thomas return got_error_from_errno(
654 0e4002ca 2020-03-21 stsp "imsg_add FETCH_WANTED_REF");
655 e9f1a409 2022-05-19 thomas if (imsg_add(wbuf, name, name_len) == -1)
656 e9f1a409 2022-05-19 thomas return got_error_from_errno(
657 62d463ca 2020-10-20 naddy "imsg_add FETCH_WANTED_REF");
658 0e4002ca 2020-03-21 stsp
659 0e4002ca 2020-03-21 stsp wbuf->fd = -1;
660 0e4002ca 2020-03-21 stsp imsg_close(ibuf, wbuf);
661 0e4002ca 2020-03-21 stsp err = flush_imsg(ibuf);
662 0e4002ca 2020-03-21 stsp if (err)
663 0e4002ca 2020-03-21 stsp return err;
664 0e4002ca 2020-03-21 stsp }
665 0e4002ca 2020-03-21 stsp
666 0e4002ca 2020-03-21 stsp
667 4ba14133 2020-03-20 stsp return NULL;
668 4ba14133 2020-03-20 stsp
669 93658fb9 2020-03-18 stsp }
670 93658fb9 2020-03-18 stsp
671 93658fb9 2020-03-18 stsp const struct got_error *
672 f826addf 2020-03-18 stsp got_privsep_send_fetch_outfd(struct imsgbuf *ibuf, int fd)
673 f826addf 2020-03-18 stsp {
674 f826addf 2020-03-18 stsp return send_fd(ibuf, GOT_IMSG_FETCH_OUTFD, fd);
675 531c3985 2020-03-18 stsp }
676 531c3985 2020-03-18 stsp
677 531c3985 2020-03-18 stsp const struct got_error *
678 8f2d01a6 2020-03-18 stsp got_privsep_recv_fetch_progress(int *done, struct got_object_id **id,
679 531c3985 2020-03-18 stsp char **refname, struct got_pathlist_head *symrefs, char **server_progress,
680 1d72a2a0 2020-03-24 stsp off_t *packfile_size, uint8_t *pack_sha1, struct imsgbuf *ibuf)
681 b9f99abf 2020-03-18 stsp {
682 b9f99abf 2020-03-18 stsp const struct got_error *err = NULL;
683 b9f99abf 2020-03-18 stsp struct imsg imsg;
684 b9f99abf 2020-03-18 stsp size_t datalen;
685 abe0f35f 2020-03-18 stsp struct got_imsg_fetch_symrefs *isymrefs = NULL;
686 abe0f35f 2020-03-18 stsp size_t n, remain;
687 abe0f35f 2020-03-18 stsp off_t off;
688 531c3985 2020-03-18 stsp int i;
689 b9f99abf 2020-03-18 stsp
690 8f2d01a6 2020-03-18 stsp *done = 0;
691 8f2d01a6 2020-03-18 stsp *id = NULL;
692 b9f99abf 2020-03-18 stsp *refname = NULL;
693 531c3985 2020-03-18 stsp *server_progress = NULL;
694 5a489642 2020-03-19 stsp *packfile_size = 0;
695 1d72a2a0 2020-03-24 stsp memset(pack_sha1, 0, SHA1_DIGEST_LENGTH);
696 b9f99abf 2020-03-18 stsp
697 531c3985 2020-03-18 stsp err = got_privsep_recv_imsg(&imsg, ibuf, 0);
698 b9f99abf 2020-03-18 stsp if (err)
699 b9f99abf 2020-03-18 stsp return err;
700 b9f99abf 2020-03-18 stsp
701 b9f99abf 2020-03-18 stsp datalen = imsg.hdr.len - IMSG_HEADER_SIZE;
702 b9f99abf 2020-03-18 stsp switch (imsg.hdr.type) {
703 b9f99abf 2020-03-18 stsp case GOT_IMSG_ERROR:
704 531c3985 2020-03-18 stsp if (datalen < sizeof(struct got_imsg_error)) {
705 531c3985 2020-03-18 stsp err = got_error(GOT_ERR_PRIVSEP_LEN);
706 531c3985 2020-03-18 stsp break;
707 531c3985 2020-03-18 stsp }
708 b9f99abf 2020-03-18 stsp err = recv_imsg_error(&imsg, datalen);
709 b9f99abf 2020-03-18 stsp break;
710 abe0f35f 2020-03-18 stsp case GOT_IMSG_FETCH_SYMREFS:
711 abe0f35f 2020-03-18 stsp if (datalen < sizeof(*isymrefs)) {
712 abe0f35f 2020-03-18 stsp err = got_error(GOT_ERR_PRIVSEP_LEN);
713 abe0f35f 2020-03-18 stsp break;
714 abe0f35f 2020-03-18 stsp }
715 abe0f35f 2020-03-18 stsp if (isymrefs != NULL) {
716 abe0f35f 2020-03-18 stsp err = got_error(GOT_ERR_PRIVSEP_MSG);
717 abe0f35f 2020-03-18 stsp break;
718 abe0f35f 2020-03-18 stsp }
719 abe0f35f 2020-03-18 stsp isymrefs = (struct got_imsg_fetch_symrefs *)imsg.data;
720 abe0f35f 2020-03-18 stsp off = sizeof(*isymrefs);
721 abe0f35f 2020-03-18 stsp remain = datalen - off;
722 abe0f35f 2020-03-18 stsp for (n = 0; n < isymrefs->nsymrefs; n++) {
723 abe0f35f 2020-03-18 stsp struct got_imsg_fetch_symref *s;
724 abe0f35f 2020-03-18 stsp char *name, *target;
725 abe0f35f 2020-03-18 stsp if (remain < sizeof(struct got_imsg_fetch_symref)) {
726 abe0f35f 2020-03-18 stsp err = got_error(GOT_ERR_PRIVSEP_LEN);
727 abe0f35f 2020-03-18 stsp goto done;
728 abe0f35f 2020-03-18 stsp }
729 abe0f35f 2020-03-18 stsp s = (struct got_imsg_fetch_symref *)(imsg.data + off);
730 abe0f35f 2020-03-18 stsp off += sizeof(*s);
731 abe0f35f 2020-03-18 stsp remain -= sizeof(*s);
732 abe0f35f 2020-03-18 stsp if (remain < s->name_len) {
733 abe0f35f 2020-03-18 stsp err = got_error(GOT_ERR_PRIVSEP_LEN);
734 abe0f35f 2020-03-18 stsp goto done;
735 abe0f35f 2020-03-18 stsp }
736 abe0f35f 2020-03-18 stsp name = strndup(imsg.data + off, s->name_len);
737 abe0f35f 2020-03-18 stsp if (name == NULL) {
738 abe0f35f 2020-03-18 stsp err = got_error_from_errno("strndup");
739 abe0f35f 2020-03-18 stsp goto done;
740 abe0f35f 2020-03-18 stsp }
741 abe0f35f 2020-03-18 stsp off += s->name_len;
742 abe0f35f 2020-03-18 stsp remain -= s->name_len;
743 abe0f35f 2020-03-18 stsp if (remain < s->target_len) {
744 abe0f35f 2020-03-18 stsp err = got_error(GOT_ERR_PRIVSEP_LEN);
745 abe0f35f 2020-03-18 stsp free(name);
746 abe0f35f 2020-03-18 stsp goto done;
747 abe0f35f 2020-03-18 stsp }
748 abe0f35f 2020-03-18 stsp target = strndup(imsg.data + off, s->target_len);
749 abe0f35f 2020-03-18 stsp if (target == NULL) {
750 abe0f35f 2020-03-18 stsp err = got_error_from_errno("strndup");
751 abe0f35f 2020-03-18 stsp free(name);
752 abe0f35f 2020-03-18 stsp goto done;
753 abe0f35f 2020-03-18 stsp }
754 abe0f35f 2020-03-18 stsp off += s->target_len;
755 abe0f35f 2020-03-18 stsp remain -= s->target_len;
756 abe0f35f 2020-03-18 stsp err = got_pathlist_append(symrefs, name, target);
757 abe0f35f 2020-03-18 stsp if (err) {
758 abe0f35f 2020-03-18 stsp free(name);
759 abe0f35f 2020-03-18 stsp free(target);
760 abe0f35f 2020-03-18 stsp goto done;
761 abe0f35f 2020-03-18 stsp }
762 abe0f35f 2020-03-18 stsp }
763 abe0f35f 2020-03-18 stsp break;
764 ea7396b9 2020-03-18 stsp case GOT_IMSG_FETCH_REF:
765 531c3985 2020-03-18 stsp if (datalen <= SHA1_DIGEST_LENGTH) {
766 531c3985 2020-03-18 stsp err = got_error(GOT_ERR_PRIVSEP_MSG);
767 531c3985 2020-03-18 stsp break;
768 531c3985 2020-03-18 stsp }
769 8f2d01a6 2020-03-18 stsp *id = malloc(sizeof(**id));
770 8f2d01a6 2020-03-18 stsp if (*id == NULL) {
771 b9f99abf 2020-03-18 stsp err = got_error_from_errno("malloc");
772 b9f99abf 2020-03-18 stsp break;
773 b9f99abf 2020-03-18 stsp }
774 8f2d01a6 2020-03-18 stsp memcpy((*id)->sha1, imsg.data, SHA1_DIGEST_LENGTH);
775 b9f99abf 2020-03-18 stsp *refname = strndup(imsg.data + SHA1_DIGEST_LENGTH,
776 b9f99abf 2020-03-18 stsp datalen - SHA1_DIGEST_LENGTH);
777 b9f99abf 2020-03-18 stsp if (*refname == NULL) {
778 b9f99abf 2020-03-18 stsp err = got_error_from_errno("strndup");
779 8f2d01a6 2020-03-18 stsp break;
780 8f2d01a6 2020-03-18 stsp }
781 8f2d01a6 2020-03-18 stsp break;
782 531c3985 2020-03-18 stsp case GOT_IMSG_FETCH_SERVER_PROGRESS:
783 531c3985 2020-03-18 stsp if (datalen == 0) {
784 531c3985 2020-03-18 stsp err = got_error(GOT_ERR_PRIVSEP_LEN);
785 531c3985 2020-03-18 stsp break;
786 531c3985 2020-03-18 stsp }
787 531c3985 2020-03-18 stsp *server_progress = strndup(imsg.data, datalen);
788 531c3985 2020-03-18 stsp if (*server_progress == NULL) {
789 531c3985 2020-03-18 stsp err = got_error_from_errno("strndup");
790 531c3985 2020-03-18 stsp break;
791 531c3985 2020-03-18 stsp }
792 531c3985 2020-03-18 stsp for (i = 0; i < datalen; i++) {
793 531c3985 2020-03-18 stsp if (!isprint((unsigned char)(*server_progress)[i]) &&
794 531c3985 2020-03-18 stsp !isspace((unsigned char)(*server_progress)[i])) {
795 531c3985 2020-03-18 stsp err = got_error(GOT_ERR_PRIVSEP_MSG);
796 531c3985 2020-03-18 stsp free(*server_progress);
797 531c3985 2020-03-18 stsp *server_progress = NULL;
798 531c3985 2020-03-18 stsp goto done;
799 531c3985 2020-03-18 stsp }
800 531c3985 2020-03-18 stsp }
801 531c3985 2020-03-18 stsp break;
802 d2cdc636 2020-03-18 stsp case GOT_IMSG_FETCH_DOWNLOAD_PROGRESS:
803 d2cdc636 2020-03-18 stsp if (datalen < sizeof(*packfile_size)) {
804 d2cdc636 2020-03-18 stsp err = got_error(GOT_ERR_PRIVSEP_MSG);
805 d2cdc636 2020-03-18 stsp break;
806 d2cdc636 2020-03-18 stsp }
807 d2cdc636 2020-03-18 stsp memcpy(packfile_size, imsg.data, sizeof(*packfile_size));
808 d2cdc636 2020-03-18 stsp break;
809 8f2d01a6 2020-03-18 stsp case GOT_IMSG_FETCH_DONE:
810 8f2d01a6 2020-03-18 stsp if (datalen != SHA1_DIGEST_LENGTH) {
811 8f2d01a6 2020-03-18 stsp err = got_error(GOT_ERR_PRIVSEP_MSG);
812 8f2d01a6 2020-03-18 stsp break;
813 8f2d01a6 2020-03-18 stsp }
814 1d72a2a0 2020-03-24 stsp memcpy(pack_sha1, imsg.data, SHA1_DIGEST_LENGTH);
815 8f2d01a6 2020-03-18 stsp *done = 1;
816 b9f99abf 2020-03-18 stsp break;
817 b9f99abf 2020-03-18 stsp default:
818 b887aab6 2020-03-18 stsp err = got_error(GOT_ERR_PRIVSEP_MSG);
819 b887aab6 2020-03-18 stsp break;
820 b9f99abf 2020-03-18 stsp }
821 abe0f35f 2020-03-18 stsp done:
822 b887aab6 2020-03-18 stsp if (err) {
823 8f2d01a6 2020-03-18 stsp free(*id);
824 8f2d01a6 2020-03-18 stsp *id = NULL;
825 b887aab6 2020-03-18 stsp free(*refname);
826 b887aab6 2020-03-18 stsp *refname = NULL;
827 f8a36e22 2021-08-26 stsp }
828 f8a36e22 2021-08-26 stsp imsg_free(&imsg);
829 f8a36e22 2021-08-26 stsp return err;
830 f8a36e22 2021-08-26 stsp }
831 f8a36e22 2021-08-26 stsp
832 f8a36e22 2021-08-26 stsp static const struct got_error *
833 f8a36e22 2021-08-26 stsp send_send_ref(const char *name, size_t name_len, struct got_object_id *id,
834 f8a36e22 2021-08-26 stsp int delete, struct imsgbuf *ibuf)
835 f8a36e22 2021-08-26 stsp {
836 f8a36e22 2021-08-26 stsp size_t len;
837 f8a36e22 2021-08-26 stsp struct ibuf *wbuf;
838 f8a36e22 2021-08-26 stsp
839 f8a36e22 2021-08-26 stsp len = sizeof(struct got_imsg_send_ref) + name_len;
840 f8a36e22 2021-08-26 stsp wbuf = imsg_create(ibuf, GOT_IMSG_SEND_REF, 0, 0, len);
841 f8a36e22 2021-08-26 stsp if (wbuf == NULL)
842 f8a36e22 2021-08-26 stsp return got_error_from_errno("imsg_create SEND_REF");
843 f8a36e22 2021-08-26 stsp
844 f8a36e22 2021-08-26 stsp /* Keep in sync with struct got_imsg_send_ref! */
845 e9f1a409 2022-05-19 thomas if (imsg_add(wbuf, id->sha1, sizeof(id->sha1)) == -1)
846 e9f1a409 2022-05-19 thomas return got_error_from_errno("imsg_add SEND_REF");
847 e9f1a409 2022-05-19 thomas if (imsg_add(wbuf, &delete, sizeof(delete)) == -1)
848 e9f1a409 2022-05-19 thomas return got_error_from_errno("imsg_add SEND_REF");
849 e9f1a409 2022-05-19 thomas if (imsg_add(wbuf, &name_len, sizeof(name_len)) == -1)
850 e9f1a409 2022-05-19 thomas return got_error_from_errno("imsg_add SEND_REF");
851 e9f1a409 2022-05-19 thomas if (imsg_add(wbuf, name, name_len) == -1)
852 e9f1a409 2022-05-19 thomas return got_error_from_errno("imsg_add SEND_REF");
853 f8a36e22 2021-08-26 stsp
854 f8a36e22 2021-08-26 stsp wbuf->fd = -1;
855 f8a36e22 2021-08-26 stsp imsg_close(ibuf, wbuf);
856 f8a36e22 2021-08-26 stsp return flush_imsg(ibuf);
857 f8a36e22 2021-08-26 stsp }
858 f8a36e22 2021-08-26 stsp
859 f8a36e22 2021-08-26 stsp const struct got_error *
860 f8a36e22 2021-08-26 stsp got_privsep_send_send_req(struct imsgbuf *ibuf, int fd,
861 abc59930 2021-09-05 naddy struct got_pathlist_head *have_refs,
862 abc59930 2021-09-05 naddy struct got_pathlist_head *delete_refs,
863 abc59930 2021-09-05 naddy int verbosity)
864 f8a36e22 2021-08-26 stsp {
865 f8a36e22 2021-08-26 stsp const struct got_error *err = NULL;
866 f8a36e22 2021-08-26 stsp struct got_pathlist_entry *pe;
867 f8a36e22 2021-08-26 stsp struct got_imsg_send_request sendreq;
868 f8a36e22 2021-08-26 stsp struct got_object_id zero_id;
869 f8a36e22 2021-08-26 stsp
870 f8a36e22 2021-08-26 stsp memset(&zero_id, 0, sizeof(zero_id));
871 f8a36e22 2021-08-26 stsp memset(&sendreq, 0, sizeof(sendreq));
872 f8a36e22 2021-08-26 stsp sendreq.verbosity = verbosity;
873 f8a36e22 2021-08-26 stsp TAILQ_FOREACH(pe, have_refs, entry)
874 f8a36e22 2021-08-26 stsp sendreq.nrefs++;
875 f8a36e22 2021-08-26 stsp TAILQ_FOREACH(pe, delete_refs, entry)
876 f8a36e22 2021-08-26 stsp sendreq.nrefs++;
877 f8a36e22 2021-08-26 stsp if (imsg_compose(ibuf, GOT_IMSG_SEND_REQUEST, 0, 0, fd,
878 f8a36e22 2021-08-26 stsp &sendreq, sizeof(sendreq)) == -1) {
879 f8a36e22 2021-08-26 stsp err = got_error_from_errno(
880 f8a36e22 2021-08-26 stsp "imsg_compose FETCH_SERVER_PROGRESS");
881 f8a36e22 2021-08-26 stsp goto done;
882 f8a36e22 2021-08-26 stsp }
883 f8a36e22 2021-08-26 stsp
884 f8a36e22 2021-08-26 stsp err = flush_imsg(ibuf);
885 f8a36e22 2021-08-26 stsp if (err)
886 f8a36e22 2021-08-26 stsp goto done;
887 f8a36e22 2021-08-26 stsp fd = -1;
888 f8a36e22 2021-08-26 stsp
889 f8a36e22 2021-08-26 stsp TAILQ_FOREACH(pe, have_refs, entry) {
890 f8a36e22 2021-08-26 stsp const char *name = pe->path;
891 f8a36e22 2021-08-26 stsp size_t name_len = pe->path_len;
892 f8a36e22 2021-08-26 stsp struct got_object_id *id = pe->data;
893 f8a36e22 2021-08-26 stsp err = send_send_ref(name, name_len, id, 0, ibuf);
894 f8a36e22 2021-08-26 stsp if (err)
895 f8a36e22 2021-08-26 stsp goto done;
896 f8a36e22 2021-08-26 stsp }
897 f8a36e22 2021-08-26 stsp
898 f8a36e22 2021-08-26 stsp TAILQ_FOREACH(pe, delete_refs, entry) {
899 f8a36e22 2021-08-26 stsp const char *name = pe->path;
900 f8a36e22 2021-08-26 stsp size_t name_len = pe->path_len;
901 f8a36e22 2021-08-26 stsp err = send_send_ref(name, name_len, &zero_id, 1, ibuf);
902 f8a36e22 2021-08-26 stsp if (err)
903 f8a36e22 2021-08-26 stsp goto done;
904 f8a36e22 2021-08-26 stsp }
905 f8a36e22 2021-08-26 stsp done:
906 f8a36e22 2021-08-26 stsp if (fd != -1 && close(fd) == -1 && err == NULL)
907 f8a36e22 2021-08-26 stsp err = got_error_from_errno("close");
908 f8a36e22 2021-08-26 stsp return err;
909 f8a36e22 2021-08-26 stsp
910 f8a36e22 2021-08-26 stsp }
911 f8a36e22 2021-08-26 stsp
912 f8a36e22 2021-08-26 stsp const struct got_error *
913 f8a36e22 2021-08-26 stsp got_privsep_recv_send_remote_refs(struct got_pathlist_head *remote_refs,
914 f8a36e22 2021-08-26 stsp struct imsgbuf *ibuf)
915 f8a36e22 2021-08-26 stsp {
916 f8a36e22 2021-08-26 stsp const struct got_error *err = NULL;
917 f8a36e22 2021-08-26 stsp struct imsg imsg;
918 f8a36e22 2021-08-26 stsp size_t datalen;
919 f8a36e22 2021-08-26 stsp int done = 0;
920 f8a36e22 2021-08-26 stsp struct got_imsg_send_remote_ref iremote_ref;
921 f8a36e22 2021-08-26 stsp struct got_object_id *id = NULL;
922 f8a36e22 2021-08-26 stsp char *refname = NULL;
923 f8a36e22 2021-08-26 stsp struct got_pathlist_entry *new;
924 f8a36e22 2021-08-26 stsp
925 f8a36e22 2021-08-26 stsp while (!done) {
926 f8a36e22 2021-08-26 stsp err = got_privsep_recv_imsg(&imsg, ibuf, 0);
927 f8a36e22 2021-08-26 stsp if (err)
928 f8a36e22 2021-08-26 stsp return err;
929 f8a36e22 2021-08-26 stsp datalen = imsg.hdr.len - IMSG_HEADER_SIZE;
930 f8a36e22 2021-08-26 stsp switch (imsg.hdr.type) {
931 f8a36e22 2021-08-26 stsp case GOT_IMSG_ERROR:
932 f8a36e22 2021-08-26 stsp if (datalen < sizeof(struct got_imsg_error)) {
933 f8a36e22 2021-08-26 stsp err = got_error(GOT_ERR_PRIVSEP_LEN);
934 f8a36e22 2021-08-26 stsp goto done;
935 f8a36e22 2021-08-26 stsp }
936 f8a36e22 2021-08-26 stsp err = recv_imsg_error(&imsg, datalen);
937 f8a36e22 2021-08-26 stsp goto done;
938 f8a36e22 2021-08-26 stsp case GOT_IMSG_SEND_REMOTE_REF:
939 f8a36e22 2021-08-26 stsp if (datalen < sizeof(iremote_ref)) {
940 f8a36e22 2021-08-26 stsp err = got_error(GOT_ERR_PRIVSEP_MSG);
941 f8a36e22 2021-08-26 stsp goto done;
942 f8a36e22 2021-08-26 stsp }
943 f8a36e22 2021-08-26 stsp memcpy(&iremote_ref, imsg.data, sizeof(iremote_ref));
944 f8a36e22 2021-08-26 stsp if (datalen != sizeof(iremote_ref) +
945 f8a36e22 2021-08-26 stsp iremote_ref.name_len) {
946 f8a36e22 2021-08-26 stsp err = got_error(GOT_ERR_PRIVSEP_MSG);
947 f8a36e22 2021-08-26 stsp goto done;
948 f8a36e22 2021-08-26 stsp }
949 f8a36e22 2021-08-26 stsp id = malloc(sizeof(*id));
950 f8a36e22 2021-08-26 stsp if (id == NULL) {
951 f8a36e22 2021-08-26 stsp err = got_error_from_errno("malloc");
952 f8a36e22 2021-08-26 stsp goto done;
953 f8a36e22 2021-08-26 stsp }
954 f8a36e22 2021-08-26 stsp memcpy(id->sha1, iremote_ref.id, SHA1_DIGEST_LENGTH);
955 f8a36e22 2021-08-26 stsp refname = strndup(imsg.data + sizeof(iremote_ref),
956 f8a36e22 2021-08-26 stsp datalen - sizeof(iremote_ref));
957 f8a36e22 2021-08-26 stsp if (refname == NULL) {
958 f8a36e22 2021-08-26 stsp err = got_error_from_errno("strndup");
959 f8a36e22 2021-08-26 stsp goto done;
960 f8a36e22 2021-08-26 stsp }
961 f8a36e22 2021-08-26 stsp err = got_pathlist_insert(&new, remote_refs,
962 f8a36e22 2021-08-26 stsp refname, id);
963 f8a36e22 2021-08-26 stsp if (err)
964 f8a36e22 2021-08-26 stsp goto done;
965 f8a36e22 2021-08-26 stsp if (new == NULL) { /* duplicate which wasn't inserted */
966 f8a36e22 2021-08-26 stsp free(id);
967 f8a36e22 2021-08-26 stsp free(refname);
968 f8a36e22 2021-08-26 stsp }
969 f8a36e22 2021-08-26 stsp id = NULL;
970 f8a36e22 2021-08-26 stsp refname = NULL;
971 f8a36e22 2021-08-26 stsp break;
972 f8a36e22 2021-08-26 stsp case GOT_IMSG_SEND_PACK_REQUEST:
973 f8a36e22 2021-08-26 stsp if (datalen != 0) {
974 f8a36e22 2021-08-26 stsp err = got_error(GOT_ERR_PRIVSEP_MSG);
975 f8a36e22 2021-08-26 stsp goto done;
976 f8a36e22 2021-08-26 stsp }
977 f8a36e22 2021-08-26 stsp /* got-send-pack is now waiting for a pack file. */
978 f8a36e22 2021-08-26 stsp done = 1;
979 f8a36e22 2021-08-26 stsp break;
980 f8a36e22 2021-08-26 stsp default:
981 f8a36e22 2021-08-26 stsp err = got_error(GOT_ERR_PRIVSEP_MSG);
982 f8a36e22 2021-08-26 stsp break;
983 f8a36e22 2021-08-26 stsp }
984 b887aab6 2020-03-18 stsp }
985 f8a36e22 2021-08-26 stsp done:
986 f8a36e22 2021-08-26 stsp free(id);
987 f8a36e22 2021-08-26 stsp free(refname);
988 b9f99abf 2020-03-18 stsp imsg_free(&imsg);
989 b9f99abf 2020-03-18 stsp return err;
990 93658fb9 2020-03-18 stsp }
991 93658fb9 2020-03-18 stsp
992 93658fb9 2020-03-18 stsp const struct got_error *
993 f8a36e22 2021-08-26 stsp got_privsep_send_packfd(struct imsgbuf *ibuf, int fd)
994 f8a36e22 2021-08-26 stsp {
995 f8a36e22 2021-08-26 stsp return send_fd(ibuf, GOT_IMSG_SEND_PACKFD, fd);
996 f8a36e22 2021-08-26 stsp }
997 f8a36e22 2021-08-26 stsp
998 f8a36e22 2021-08-26 stsp const struct got_error *
999 f8a36e22 2021-08-26 stsp got_privsep_recv_send_progress(int *done, off_t *bytes_sent,
1000 f8a36e22 2021-08-26 stsp int *success, char **refname, struct imsgbuf *ibuf)
1001 f8a36e22 2021-08-26 stsp {
1002 f8a36e22 2021-08-26 stsp const struct got_error *err = NULL;
1003 f8a36e22 2021-08-26 stsp struct imsg imsg;
1004 f8a36e22 2021-08-26 stsp size_t datalen;
1005 f8a36e22 2021-08-26 stsp struct got_imsg_send_ref_status iref_status;
1006 f8a36e22 2021-08-26 stsp
1007 f8a36e22 2021-08-26 stsp /* Do not reset the current value of 'bytes_sent', it accumulates. */
1008 f8a36e22 2021-08-26 stsp *done = 0;
1009 f8a36e22 2021-08-26 stsp *success = 0;
1010 f8a36e22 2021-08-26 stsp *refname = NULL;
1011 f8a36e22 2021-08-26 stsp
1012 f8a36e22 2021-08-26 stsp err = got_privsep_recv_imsg(&imsg, ibuf, 0);
1013 f8a36e22 2021-08-26 stsp if (err)
1014 f8a36e22 2021-08-26 stsp return err;
1015 f8a36e22 2021-08-26 stsp
1016 f8a36e22 2021-08-26 stsp datalen = imsg.hdr.len - IMSG_HEADER_SIZE;
1017 f8a36e22 2021-08-26 stsp switch (imsg.hdr.type) {
1018 f8a36e22 2021-08-26 stsp case GOT_IMSG_ERROR:
1019 f8a36e22 2021-08-26 stsp if (datalen < sizeof(struct got_imsg_error)) {
1020 f8a36e22 2021-08-26 stsp err = got_error(GOT_ERR_PRIVSEP_LEN);
1021 f8a36e22 2021-08-26 stsp break;
1022 f8a36e22 2021-08-26 stsp }
1023 f8a36e22 2021-08-26 stsp err = recv_imsg_error(&imsg, datalen);
1024 f8a36e22 2021-08-26 stsp break;
1025 f8a36e22 2021-08-26 stsp case GOT_IMSG_SEND_UPLOAD_PROGRESS:
1026 f8a36e22 2021-08-26 stsp if (datalen < sizeof(*bytes_sent)) {
1027 f8a36e22 2021-08-26 stsp err = got_error(GOT_ERR_PRIVSEP_MSG);
1028 f8a36e22 2021-08-26 stsp break;
1029 f8a36e22 2021-08-26 stsp }
1030 f8a36e22 2021-08-26 stsp memcpy(bytes_sent, imsg.data, sizeof(*bytes_sent));
1031 f8a36e22 2021-08-26 stsp break;
1032 f8a36e22 2021-08-26 stsp case GOT_IMSG_SEND_REF_STATUS:
1033 f8a36e22 2021-08-26 stsp if (datalen < sizeof(iref_status)) {
1034 f8a36e22 2021-08-26 stsp err = got_error(GOT_ERR_PRIVSEP_MSG);
1035 f8a36e22 2021-08-26 stsp break;
1036 f8a36e22 2021-08-26 stsp }
1037 f8a36e22 2021-08-26 stsp memcpy(&iref_status, imsg.data, sizeof(iref_status));
1038 f8a36e22 2021-08-26 stsp if (datalen != sizeof(iref_status) + iref_status.name_len) {
1039 f8a36e22 2021-08-26 stsp err = got_error(GOT_ERR_PRIVSEP_MSG);
1040 f8a36e22 2021-08-26 stsp break;
1041 f8a36e22 2021-08-26 stsp }
1042 f8a36e22 2021-08-26 stsp *success = iref_status.success;
1043 f8a36e22 2021-08-26 stsp *refname = strndup(imsg.data + sizeof(iref_status),
1044 f8a36e22 2021-08-26 stsp iref_status.name_len);
1045 f8a36e22 2021-08-26 stsp break;
1046 f8a36e22 2021-08-26 stsp case GOT_IMSG_SEND_DONE:
1047 f8a36e22 2021-08-26 stsp if (datalen != 0) {
1048 f8a36e22 2021-08-26 stsp err = got_error(GOT_ERR_PRIVSEP_MSG);
1049 f8a36e22 2021-08-26 stsp break;
1050 f8a36e22 2021-08-26 stsp }
1051 f8a36e22 2021-08-26 stsp *done = 1;
1052 f8a36e22 2021-08-26 stsp break;
1053 f8a36e22 2021-08-26 stsp default:
1054 f8a36e22 2021-08-26 stsp err = got_error(GOT_ERR_PRIVSEP_MSG);
1055 f8a36e22 2021-08-26 stsp break;
1056 f8a36e22 2021-08-26 stsp }
1057 f8a36e22 2021-08-26 stsp
1058 f8a36e22 2021-08-26 stsp imsg_free(&imsg);
1059 f8a36e22 2021-08-26 stsp return err;
1060 f8a36e22 2021-08-26 stsp }
1061 f8a36e22 2021-08-26 stsp
1062 f8a36e22 2021-08-26 stsp const struct got_error *
1063 fd251256 2020-03-24 stsp got_privsep_send_index_pack_req(struct imsgbuf *ibuf, uint8_t *pack_sha1,
1064 668a20f6 2020-03-18 stsp int fd)
1065 93658fb9 2020-03-18 stsp {
1066 93658fb9 2020-03-18 stsp const struct got_error *err = NULL;
1067 93658fb9 2020-03-18 stsp
1068 668a20f6 2020-03-18 stsp /* Keep in sync with struct got_imsg_index_pack_request */
1069 93658fb9 2020-03-18 stsp if (imsg_compose(ibuf, GOT_IMSG_IDXPACK_REQUEST, 0, 0, fd,
1070 fd251256 2020-03-24 stsp pack_sha1, SHA1_DIGEST_LENGTH) == -1) {
1071 93658fb9 2020-03-18 stsp err = got_error_from_errno("imsg_compose INDEX_REQUEST");
1072 93658fb9 2020-03-18 stsp close(fd);
1073 93658fb9 2020-03-18 stsp return err;
1074 93658fb9 2020-03-18 stsp }
1075 baa9fea0 2020-03-18 stsp return flush_imsg(ibuf);
1076 baa9fea0 2020-03-18 stsp }
1077 baa9fea0 2020-03-18 stsp
1078 baa9fea0 2020-03-18 stsp const struct got_error *
1079 73ab1060 2020-03-18 stsp got_privsep_send_index_pack_outfd(struct imsgbuf *ibuf, int fd)
1080 73ab1060 2020-03-18 stsp {
1081 73ab1060 2020-03-18 stsp return send_fd(ibuf, GOT_IMSG_IDXPACK_OUTFD, fd);
1082 73ab1060 2020-03-18 stsp }
1083 73ab1060 2020-03-18 stsp
1084 73ab1060 2020-03-18 stsp const struct got_error *
1085 668a20f6 2020-03-18 stsp got_privsep_recv_index_progress(int *done, int *nobj_total,
1086 668a20f6 2020-03-18 stsp int *nobj_indexed, int *nobj_loose, int *nobj_resolved,
1087 668a20f6 2020-03-18 stsp struct imsgbuf *ibuf)
1088 93658fb9 2020-03-18 stsp {
1089 93658fb9 2020-03-18 stsp const struct got_error *err = NULL;
1090 93658fb9 2020-03-18 stsp struct imsg imsg;
1091 baa9fea0 2020-03-18 stsp struct got_imsg_index_pack_progress *iprogress;
1092 baa9fea0 2020-03-18 stsp size_t datalen;
1093 93658fb9 2020-03-18 stsp
1094 baa9fea0 2020-03-18 stsp *done = 0;
1095 668a20f6 2020-03-18 stsp *nobj_total = 0;
1096 668a20f6 2020-03-18 stsp *nobj_indexed = 0;
1097 668a20f6 2020-03-18 stsp *nobj_resolved = 0;
1098 baa9fea0 2020-03-18 stsp
1099 93658fb9 2020-03-18 stsp err = got_privsep_recv_imsg(&imsg, ibuf, 0);
1100 93658fb9 2020-03-18 stsp if (err)
1101 93658fb9 2020-03-18 stsp return err;
1102 baa9fea0 2020-03-18 stsp
1103 baa9fea0 2020-03-18 stsp datalen = imsg.hdr.len - IMSG_HEADER_SIZE;
1104 baa9fea0 2020-03-18 stsp switch (imsg.hdr.type) {
1105 baa9fea0 2020-03-18 stsp case GOT_IMSG_ERROR:
1106 baa9fea0 2020-03-18 stsp if (datalen < sizeof(struct got_imsg_error)) {
1107 baa9fea0 2020-03-18 stsp err = got_error(GOT_ERR_PRIVSEP_LEN);
1108 baa9fea0 2020-03-18 stsp break;
1109 baa9fea0 2020-03-18 stsp }
1110 baa9fea0 2020-03-18 stsp err = recv_imsg_error(&imsg, datalen);
1111 baa9fea0 2020-03-18 stsp break;
1112 baa9fea0 2020-03-18 stsp case GOT_IMSG_IDXPACK_PROGRESS:
1113 baa9fea0 2020-03-18 stsp if (datalen < sizeof(*iprogress)) {
1114 baa9fea0 2020-03-18 stsp err = got_error(GOT_ERR_PRIVSEP_LEN);
1115 baa9fea0 2020-03-18 stsp break;
1116 baa9fea0 2020-03-18 stsp }
1117 baa9fea0 2020-03-18 stsp iprogress = (struct got_imsg_index_pack_progress *)imsg.data;
1118 668a20f6 2020-03-18 stsp *nobj_total = iprogress->nobj_total;
1119 668a20f6 2020-03-18 stsp *nobj_indexed = iprogress->nobj_indexed;
1120 668a20f6 2020-03-18 stsp *nobj_loose = iprogress->nobj_loose;
1121 668a20f6 2020-03-18 stsp *nobj_resolved = iprogress->nobj_resolved;
1122 baa9fea0 2020-03-18 stsp break;
1123 baa9fea0 2020-03-18 stsp case GOT_IMSG_IDXPACK_DONE:
1124 baa9fea0 2020-03-18 stsp if (datalen != 0) {
1125 baa9fea0 2020-03-18 stsp err = got_error(GOT_ERR_PRIVSEP_LEN);
1126 baa9fea0 2020-03-18 stsp break;
1127 baa9fea0 2020-03-18 stsp }
1128 baa9fea0 2020-03-18 stsp *done = 1;
1129 baa9fea0 2020-03-18 stsp break;
1130 baa9fea0 2020-03-18 stsp default:
1131 baa9fea0 2020-03-18 stsp err = got_error(GOT_ERR_PRIVSEP_MSG);
1132 baa9fea0 2020-03-18 stsp break;
1133 baa9fea0 2020-03-18 stsp }
1134 baa9fea0 2020-03-18 stsp
1135 93658fb9 2020-03-18 stsp imsg_free(&imsg);
1136 baa9fea0 2020-03-18 stsp return err;
1137 93658fb9 2020-03-18 stsp }
1138 93658fb9 2020-03-18 stsp
1139 93658fb9 2020-03-18 stsp const struct got_error *
1140 cfd633c2 2018-09-10 stsp got_privsep_get_imsg_obj(struct got_object **obj, struct imsg *imsg,
1141 cfd633c2 2018-09-10 stsp struct imsgbuf *ibuf)
1142 cfd633c2 2018-09-10 stsp {
1143 291624d8 2018-11-07 stsp struct got_imsg_object *iobj;
1144 cfd633c2 2018-09-10 stsp size_t datalen = imsg->hdr.len - IMSG_HEADER_SIZE;
1145 cfd633c2 2018-09-10 stsp
1146 291624d8 2018-11-07 stsp if (datalen != sizeof(*iobj))
1147 cfd633c2 2018-09-10 stsp return got_error(GOT_ERR_PRIVSEP_LEN);
1148 291624d8 2018-11-07 stsp iobj = imsg->data;
1149 cfd633c2 2018-09-10 stsp
1150 cfd633c2 2018-09-10 stsp *obj = calloc(1, sizeof(**obj));
1151 cfd633c2 2018-09-10 stsp if (*obj == NULL)
1152 638f9024 2019-05-13 stsp return got_error_from_errno("calloc");
1153 cfd633c2 2018-09-10 stsp
1154 291624d8 2018-11-07 stsp memcpy((*obj)->id.sha1, iobj->id, SHA1_DIGEST_LENGTH);
1155 291624d8 2018-11-07 stsp (*obj)->type = iobj->type;
1156 291624d8 2018-11-07 stsp (*obj)->flags = iobj->flags;
1157 291624d8 2018-11-07 stsp (*obj)->hdrlen = iobj->hdrlen;
1158 291624d8 2018-11-07 stsp (*obj)->size = iobj->size;
1159 c59b3346 2018-09-11 stsp /* path_packfile is handled by caller */
1160 291624d8 2018-11-07 stsp if (iobj->flags & GOT_OBJ_FLAG_PACKED) {
1161 291624d8 2018-11-07 stsp (*obj)->pack_offset = iobj->pack_offset;
1162 291624d8 2018-11-07 stsp (*obj)->pack_idx = iobj->pack_idx;
1163 876c234b 2018-09-10 stsp }
1164 772802ae 2022-01-27 thomas STAILQ_INIT(&(*obj)->deltas.entries);
1165 772802ae 2022-01-27 thomas return NULL;
1166 876c234b 2018-09-10 stsp }
1167 876c234b 2018-09-10 stsp
1168 2178c42e 2018-04-22 stsp const struct got_error *
1169 2178c42e 2018-04-22 stsp got_privsep_recv_obj(struct got_object **obj, struct imsgbuf *ibuf)
1170 2178c42e 2018-04-22 stsp {
1171 2178c42e 2018-04-22 stsp const struct got_error *err = NULL;
1172 2178c42e 2018-04-22 stsp struct imsg imsg;
1173 c4eae628 2018-04-23 stsp const size_t min_datalen =
1174 c4eae628 2018-04-23 stsp MIN(sizeof(struct got_imsg_error), sizeof(struct got_imsg_object));
1175 2178c42e 2018-04-22 stsp
1176 2178c42e 2018-04-22 stsp *obj = NULL;
1177 2178c42e 2018-04-22 stsp
1178 ad242220 2018-09-08 stsp err = got_privsep_recv_imsg(&imsg, ibuf, min_datalen);
1179 2178c42e 2018-04-22 stsp if (err)
1180 2178c42e 2018-04-22 stsp return err;
1181 2178c42e 2018-04-22 stsp
1182 2178c42e 2018-04-22 stsp switch (imsg.hdr.type) {
1183 2178c42e 2018-04-22 stsp case GOT_IMSG_OBJECT:
1184 cfd633c2 2018-09-10 stsp err = got_privsep_get_imsg_obj(obj, &imsg, ibuf);
1185 bff6ca00 2018-04-23 stsp break;
1186 bff6ca00 2018-04-23 stsp default:
1187 bff6ca00 2018-04-23 stsp err = got_error(GOT_ERR_PRIVSEP_MSG);
1188 bff6ca00 2018-04-23 stsp break;
1189 bff6ca00 2018-04-23 stsp }
1190 bff6ca00 2018-04-23 stsp
1191 bff6ca00 2018-04-23 stsp imsg_free(&imsg);
1192 bff6ca00 2018-04-23 stsp
1193 bff6ca00 2018-04-23 stsp return err;
1194 c75f7264 2018-09-11 stsp }
1195 c75f7264 2018-09-11 stsp
1196 c75f7264 2018-09-11 stsp static const struct got_error *
1197 c75f7264 2018-09-11 stsp send_commit_logmsg(struct imsgbuf *ibuf, struct got_commit_object *commit,
1198 c75f7264 2018-09-11 stsp size_t logmsg_len)
1199 c75f7264 2018-09-11 stsp {
1200 fa4ffeb3 2018-11-04 stsp const struct got_error *err = NULL;
1201 c75f7264 2018-09-11 stsp size_t offset, remain;
1202 c75f7264 2018-09-11 stsp
1203 c75f7264 2018-09-11 stsp offset = 0;
1204 c75f7264 2018-09-11 stsp remain = logmsg_len;
1205 c75f7264 2018-09-11 stsp while (remain > 0) {
1206 c75f7264 2018-09-11 stsp size_t n = MIN(MAX_IMSGSIZE - IMSG_HEADER_SIZE, remain);
1207 c75f7264 2018-09-11 stsp
1208 c75f7264 2018-09-11 stsp if (imsg_compose(ibuf, GOT_IMSG_COMMIT_LOGMSG, 0, 0, -1,
1209 fa4ffeb3 2018-11-04 stsp commit->logmsg + offset, n) == -1) {
1210 638f9024 2019-05-13 stsp err = got_error_from_errno("imsg_compose "
1211 230a42bd 2019-05-11 jcs "COMMIT_LOGMSG");
1212 fa4ffeb3 2018-11-04 stsp break;
1213 fa4ffeb3 2018-11-04 stsp }
1214 c75f7264 2018-09-11 stsp
1215 fa4ffeb3 2018-11-04 stsp err = flush_imsg(ibuf);
1216 fa4ffeb3 2018-11-04 stsp if (err)
1217 fa4ffeb3 2018-11-04 stsp break;
1218 c75f7264 2018-09-11 stsp
1219 c75f7264 2018-09-11 stsp offset += n;
1220 c75f7264 2018-09-11 stsp remain -= n;
1221 c75f7264 2018-09-11 stsp }
1222 c75f7264 2018-09-11 stsp
1223 fa4ffeb3 2018-11-04 stsp return err;
1224 bff6ca00 2018-04-23 stsp }
1225 bff6ca00 2018-04-23 stsp
1226 bff6ca00 2018-04-23 stsp const struct got_error *
1227 068fd2bf 2018-04-24 stsp got_privsep_send_commit(struct imsgbuf *ibuf, struct got_commit_object *commit)
1228 bff6ca00 2018-04-23 stsp {
1229 bff6ca00 2018-04-23 stsp const struct got_error *err = NULL;
1230 b9c33926 2018-11-07 stsp struct got_imsg_commit_object *icommit;
1231 bff6ca00 2018-04-23 stsp uint8_t *buf;
1232 bff6ca00 2018-04-23 stsp size_t len, total;
1233 79f35eb3 2018-06-11 stsp struct got_object_qid *qid;
1234 b9c33926 2018-11-07 stsp size_t author_len = strlen(commit->author);
1235 b9c33926 2018-11-07 stsp size_t committer_len = strlen(commit->committer);
1236 c75f7264 2018-09-11 stsp size_t logmsg_len = strlen(commit->logmsg);
1237 bff6ca00 2018-04-23 stsp
1238 b9c33926 2018-11-07 stsp total = sizeof(*icommit) + author_len + committer_len +
1239 b9c33926 2018-11-07 stsp commit->nparents * SHA1_DIGEST_LENGTH;
1240 bff6ca00 2018-04-23 stsp
1241 bff6ca00 2018-04-23 stsp buf = malloc(total);
1242 bff6ca00 2018-04-23 stsp if (buf == NULL)
1243 638f9024 2019-05-13 stsp return got_error_from_errno("malloc");
1244 bff6ca00 2018-04-23 stsp
1245 b9c33926 2018-11-07 stsp icommit = (struct got_imsg_commit_object *)buf;
1246 a7403916 2018-12-24 stsp memcpy(icommit->tree_id, commit->tree_id->sha1,
1247 a7403916 2018-12-24 stsp sizeof(icommit->tree_id));
1248 b9c33926 2018-11-07 stsp icommit->author_len = author_len;
1249 b9c33926 2018-11-07 stsp icommit->author_time = commit->author_time;
1250 b9c33926 2018-11-07 stsp icommit->author_gmtoff = commit->author_gmtoff;
1251 b9c33926 2018-11-07 stsp icommit->committer_len = committer_len;
1252 b9c33926 2018-11-07 stsp icommit->committer_time = commit->committer_time;
1253 b9c33926 2018-11-07 stsp icommit->committer_gmtoff = commit->committer_gmtoff;
1254 b9c33926 2018-11-07 stsp icommit->logmsg_len = logmsg_len;
1255 b9c33926 2018-11-07 stsp icommit->nparents = commit->nparents;
1256 b9c33926 2018-11-07 stsp
1257 b9c33926 2018-11-07 stsp len = sizeof(*icommit);
1258 b9c33926 2018-11-07 stsp memcpy(buf + len, commit->author, author_len);
1259 b9c33926 2018-11-07 stsp len += author_len;
1260 b9c33926 2018-11-07 stsp memcpy(buf + len, commit->committer, committer_len);
1261 b9c33926 2018-11-07 stsp len += committer_len;
1262 dbdddfee 2021-06-23 naddy STAILQ_FOREACH(qid, &commit->parent_ids, entry) {
1263 ec242592 2022-04-22 thomas memcpy(buf + len, &qid->id, SHA1_DIGEST_LENGTH);
1264 86acc566 2018-04-23 stsp len += SHA1_DIGEST_LENGTH;
1265 bff6ca00 2018-04-23 stsp }
1266 bff6ca00 2018-04-23 stsp
1267 bff6ca00 2018-04-23 stsp if (imsg_compose(ibuf, GOT_IMSG_COMMIT, 0, 0, -1, buf, len) == -1) {
1268 638f9024 2019-05-13 stsp err = got_error_from_errno("imsg_compose COMMIT");
1269 bff6ca00 2018-04-23 stsp goto done;
1270 bff6ca00 2018-04-23 stsp }
1271 bff6ca00 2018-04-23 stsp
1272 904df868 2018-11-04 stsp if (logmsg_len == 0 ||
1273 904df868 2018-11-04 stsp logmsg_len + len > MAX_IMSGSIZE - IMSG_HEADER_SIZE) {
1274 904df868 2018-11-04 stsp err = flush_imsg(ibuf);
1275 904df868 2018-11-04 stsp if (err)
1276 904df868 2018-11-04 stsp goto done;
1277 904df868 2018-11-04 stsp }
1278 c75f7264 2018-09-11 stsp err = send_commit_logmsg(ibuf, commit, logmsg_len);
1279 bff6ca00 2018-04-23 stsp done:
1280 bff6ca00 2018-04-23 stsp free(buf);
1281 bff6ca00 2018-04-23 stsp return err;
1282 bff6ca00 2018-04-23 stsp }
1283 cfd633c2 2018-09-10 stsp
1284 ca6e02ac 2020-01-07 stsp static const struct got_error *
1285 ca6e02ac 2020-01-07 stsp get_commit_from_imsg(struct got_commit_object **commit,
1286 ca6e02ac 2020-01-07 stsp struct imsg *imsg, size_t datalen, struct imsgbuf *ibuf)
1287 bff6ca00 2018-04-23 stsp {
1288 bff6ca00 2018-04-23 stsp const struct got_error *err = NULL;
1289 291624d8 2018-11-07 stsp struct got_imsg_commit_object *icommit;
1290 ca6e02ac 2020-01-07 stsp size_t len = 0;
1291 bff6ca00 2018-04-23 stsp int i;
1292 bff6ca00 2018-04-23 stsp
1293 ca6e02ac 2020-01-07 stsp if (datalen < sizeof(*icommit))
1294 ca6e02ac 2020-01-07 stsp return got_error(GOT_ERR_PRIVSEP_LEN);
1295 bff6ca00 2018-04-23 stsp
1296 ca6e02ac 2020-01-07 stsp icommit = imsg->data;
1297 ca6e02ac 2020-01-07 stsp if (datalen != sizeof(*icommit) + icommit->author_len +
1298 ca6e02ac 2020-01-07 stsp icommit->committer_len +
1299 ca6e02ac 2020-01-07 stsp icommit->nparents * SHA1_DIGEST_LENGTH)
1300 ca6e02ac 2020-01-07 stsp return got_error(GOT_ERR_PRIVSEP_LEN);
1301 bff6ca00 2018-04-23 stsp
1302 ca6e02ac 2020-01-07 stsp if (icommit->nparents < 0)
1303 ca6e02ac 2020-01-07 stsp return got_error(GOT_ERR_PRIVSEP_LEN);
1304 ca6e02ac 2020-01-07 stsp
1305 ca6e02ac 2020-01-07 stsp len += sizeof(*icommit);
1306 bff6ca00 2018-04-23 stsp
1307 ca6e02ac 2020-01-07 stsp *commit = got_object_commit_alloc_partial();
1308 ca6e02ac 2020-01-07 stsp if (*commit == NULL)
1309 ca6e02ac 2020-01-07 stsp return got_error_from_errno(
1310 ca6e02ac 2020-01-07 stsp "got_object_commit_alloc_partial");
1311 ca6e02ac 2020-01-07 stsp
1312 ca6e02ac 2020-01-07 stsp memcpy((*commit)->tree_id->sha1, icommit->tree_id,
1313 ca6e02ac 2020-01-07 stsp SHA1_DIGEST_LENGTH);
1314 ca6e02ac 2020-01-07 stsp (*commit)->author_time = icommit->author_time;
1315 ca6e02ac 2020-01-07 stsp (*commit)->author_gmtoff = icommit->author_gmtoff;
1316 ca6e02ac 2020-01-07 stsp (*commit)->committer_time = icommit->committer_time;
1317 ca6e02ac 2020-01-07 stsp (*commit)->committer_gmtoff = icommit->committer_gmtoff;
1318 ca6e02ac 2020-01-07 stsp
1319 ca6e02ac 2020-01-07 stsp if (icommit->author_len == 0) {
1320 ca6e02ac 2020-01-07 stsp (*commit)->author = strdup("");
1321 ca6e02ac 2020-01-07 stsp if ((*commit)->author == NULL) {
1322 ca6e02ac 2020-01-07 stsp err = got_error_from_errno("strdup");
1323 ca6e02ac 2020-01-07 stsp goto done;
1324 bff6ca00 2018-04-23 stsp }
1325 ca6e02ac 2020-01-07 stsp } else {
1326 ca6e02ac 2020-01-07 stsp (*commit)->author = malloc(icommit->author_len + 1);
1327 ca6e02ac 2020-01-07 stsp if ((*commit)->author == NULL) {
1328 ca6e02ac 2020-01-07 stsp err = got_error_from_errno("malloc");
1329 ca6e02ac 2020-01-07 stsp goto done;
1330 ca6e02ac 2020-01-07 stsp }
1331 ca6e02ac 2020-01-07 stsp memcpy((*commit)->author, imsg->data + len,
1332 ca6e02ac 2020-01-07 stsp icommit->author_len);
1333 ca6e02ac 2020-01-07 stsp (*commit)->author[icommit->author_len] = '\0';
1334 ca6e02ac 2020-01-07 stsp }
1335 ca6e02ac 2020-01-07 stsp len += icommit->author_len;
1336 bff6ca00 2018-04-23 stsp
1337 ca6e02ac 2020-01-07 stsp if (icommit->committer_len == 0) {
1338 ca6e02ac 2020-01-07 stsp (*commit)->committer = strdup("");
1339 ca6e02ac 2020-01-07 stsp if ((*commit)->committer == NULL) {
1340 ca6e02ac 2020-01-07 stsp err = got_error_from_errno("strdup");
1341 ca6e02ac 2020-01-07 stsp goto done;
1342 ca6e02ac 2020-01-07 stsp }
1343 ca6e02ac 2020-01-07 stsp } else {
1344 ca6e02ac 2020-01-07 stsp (*commit)->committer =
1345 ca6e02ac 2020-01-07 stsp malloc(icommit->committer_len + 1);
1346 ca6e02ac 2020-01-07 stsp if ((*commit)->committer == NULL) {
1347 ca6e02ac 2020-01-07 stsp err = got_error_from_errno("malloc");
1348 ca6e02ac 2020-01-07 stsp goto done;
1349 ca6e02ac 2020-01-07 stsp }
1350 ca6e02ac 2020-01-07 stsp memcpy((*commit)->committer, imsg->data + len,
1351 ca6e02ac 2020-01-07 stsp icommit->committer_len);
1352 ca6e02ac 2020-01-07 stsp (*commit)->committer[icommit->committer_len] = '\0';
1353 ca6e02ac 2020-01-07 stsp }
1354 ca6e02ac 2020-01-07 stsp len += icommit->committer_len;
1355 ca6e02ac 2020-01-07 stsp
1356 ca6e02ac 2020-01-07 stsp if (icommit->logmsg_len == 0) {
1357 ca6e02ac 2020-01-07 stsp (*commit)->logmsg = strdup("");
1358 ca6e02ac 2020-01-07 stsp if ((*commit)->logmsg == NULL) {
1359 ca6e02ac 2020-01-07 stsp err = got_error_from_errno("strdup");
1360 ca6e02ac 2020-01-07 stsp goto done;
1361 ca6e02ac 2020-01-07 stsp }
1362 ca6e02ac 2020-01-07 stsp } else {
1363 ca6e02ac 2020-01-07 stsp size_t offset = 0, remain = icommit->logmsg_len;
1364 ca6e02ac 2020-01-07 stsp
1365 ca6e02ac 2020-01-07 stsp (*commit)->logmsg = malloc(icommit->logmsg_len + 1);
1366 ca6e02ac 2020-01-07 stsp if ((*commit)->logmsg == NULL) {
1367 ca6e02ac 2020-01-07 stsp err = got_error_from_errno("malloc");
1368 ca6e02ac 2020-01-07 stsp goto done;
1369 bff6ca00 2018-04-23 stsp }
1370 ca6e02ac 2020-01-07 stsp while (remain > 0) {
1371 ca6e02ac 2020-01-07 stsp struct imsg imsg_log;
1372 ca6e02ac 2020-01-07 stsp size_t n = MIN(MAX_IMSGSIZE - IMSG_HEADER_SIZE,
1373 ca6e02ac 2020-01-07 stsp remain);
1374 6c281f94 2018-06-11 stsp
1375 ca6e02ac 2020-01-07 stsp err = got_privsep_recv_imsg(&imsg_log, ibuf, n);
1376 ca6e02ac 2020-01-07 stsp if (err)
1377 ca6e02ac 2020-01-07 stsp goto done;
1378 bff6ca00 2018-04-23 stsp
1379 ca6e02ac 2020-01-07 stsp if (imsg_log.hdr.type != GOT_IMSG_COMMIT_LOGMSG) {
1380 ca6e02ac 2020-01-07 stsp err = got_error(GOT_ERR_PRIVSEP_MSG);
1381 ca6e02ac 2020-01-07 stsp goto done;
1382 bff6ca00 2018-04-23 stsp }
1383 c75f7264 2018-09-11 stsp
1384 ca6e02ac 2020-01-07 stsp memcpy((*commit)->logmsg + offset,
1385 ca6e02ac 2020-01-07 stsp imsg_log.data, n);
1386 ca6e02ac 2020-01-07 stsp imsg_free(&imsg_log);
1387 ca6e02ac 2020-01-07 stsp offset += n;
1388 ca6e02ac 2020-01-07 stsp remain -= n;
1389 bff6ca00 2018-04-23 stsp }
1390 ca6e02ac 2020-01-07 stsp (*commit)->logmsg[icommit->logmsg_len] = '\0';
1391 ca6e02ac 2020-01-07 stsp }
1392 bff6ca00 2018-04-23 stsp
1393 ca6e02ac 2020-01-07 stsp for (i = 0; i < icommit->nparents; i++) {
1394 ca6e02ac 2020-01-07 stsp struct got_object_qid *qid;
1395 86acc566 2018-04-23 stsp
1396 ca6e02ac 2020-01-07 stsp err = got_object_qid_alloc_partial(&qid);
1397 ca6e02ac 2020-01-07 stsp if (err)
1398 ca6e02ac 2020-01-07 stsp break;
1399 ec242592 2022-04-22 thomas memcpy(&qid->id, imsg->data + len +
1400 ec242592 2022-04-22 thomas i * SHA1_DIGEST_LENGTH, sizeof(qid->id));
1401 dbdddfee 2021-06-23 naddy STAILQ_INSERT_TAIL(&(*commit)->parent_ids, qid, entry);
1402 ca6e02ac 2020-01-07 stsp (*commit)->nparents++;
1403 ca6e02ac 2020-01-07 stsp }
1404 ca6e02ac 2020-01-07 stsp done:
1405 ca6e02ac 2020-01-07 stsp if (err) {
1406 ca6e02ac 2020-01-07 stsp got_object_commit_close(*commit);
1407 ca6e02ac 2020-01-07 stsp *commit = NULL;
1408 ca6e02ac 2020-01-07 stsp }
1409 ca6e02ac 2020-01-07 stsp return err;
1410 ca6e02ac 2020-01-07 stsp }
1411 ca6e02ac 2020-01-07 stsp
1412 ca6e02ac 2020-01-07 stsp const struct got_error *
1413 ca6e02ac 2020-01-07 stsp got_privsep_recv_commit(struct got_commit_object **commit, struct imsgbuf *ibuf)
1414 ca6e02ac 2020-01-07 stsp {
1415 ca6e02ac 2020-01-07 stsp const struct got_error *err = NULL;
1416 ca6e02ac 2020-01-07 stsp struct imsg imsg;
1417 ca6e02ac 2020-01-07 stsp size_t datalen;
1418 ca6e02ac 2020-01-07 stsp const size_t min_datalen =
1419 ca6e02ac 2020-01-07 stsp MIN(sizeof(struct got_imsg_error),
1420 ca6e02ac 2020-01-07 stsp sizeof(struct got_imsg_commit_object));
1421 ca6e02ac 2020-01-07 stsp
1422 ca6e02ac 2020-01-07 stsp *commit = NULL;
1423 ca6e02ac 2020-01-07 stsp
1424 ca6e02ac 2020-01-07 stsp err = got_privsep_recv_imsg(&imsg, ibuf, min_datalen);
1425 ca6e02ac 2020-01-07 stsp if (err)
1426 ca6e02ac 2020-01-07 stsp return err;
1427 ca6e02ac 2020-01-07 stsp
1428 ca6e02ac 2020-01-07 stsp datalen = imsg.hdr.len - IMSG_HEADER_SIZE;
1429 ca6e02ac 2020-01-07 stsp
1430 ca6e02ac 2020-01-07 stsp switch (imsg.hdr.type) {
1431 ca6e02ac 2020-01-07 stsp case GOT_IMSG_COMMIT:
1432 ca6e02ac 2020-01-07 stsp err = get_commit_from_imsg(commit, &imsg, datalen, ibuf);
1433 2178c42e 2018-04-22 stsp break;
1434 8c580685 2018-04-22 stsp default:
1435 8c580685 2018-04-22 stsp err = got_error(GOT_ERR_PRIVSEP_MSG);
1436 8c580685 2018-04-22 stsp break;
1437 2178c42e 2018-04-22 stsp }
1438 2178c42e 2018-04-22 stsp
1439 2178c42e 2018-04-22 stsp imsg_free(&imsg);
1440 e033d803 2018-04-23 stsp
1441 e033d803 2018-04-23 stsp return err;
1442 e033d803 2018-04-23 stsp }
1443 e033d803 2018-04-23 stsp
1444 06de99ad 2022-05-19 thomas static const struct got_error *
1445 13280750 2022-06-13 thomas send_tree_entries_batch(struct imsgbuf *ibuf,
1446 13280750 2022-06-13 thomas struct got_parsed_tree_entry *entries, int idx0, int idxN, size_t len)
1447 e033d803 2018-04-23 stsp {
1448 06de99ad 2022-05-19 thomas struct ibuf *wbuf;
1449 06de99ad 2022-05-19 thomas struct got_imsg_tree_entries ientries;
1450 06de99ad 2022-05-19 thomas int i;
1451 e033d803 2018-04-23 stsp
1452 06de99ad 2022-05-19 thomas wbuf = imsg_create(ibuf, GOT_IMSG_TREE_ENTRIES, 0, 0, len);
1453 06de99ad 2022-05-19 thomas if (wbuf == NULL)
1454 06de99ad 2022-05-19 thomas return got_error_from_errno("imsg_create TREE_ENTRY");
1455 e033d803 2018-04-23 stsp
1456 06de99ad 2022-05-19 thomas ientries.nentries = idxN - idx0 + 1;
1457 e9f1a409 2022-05-19 thomas if (imsg_add(wbuf, &ientries, sizeof(ientries)) == -1)
1458 e9f1a409 2022-05-19 thomas return got_error_from_errno("imsg_add TREE_ENTRY");
1459 e033d803 2018-04-23 stsp
1460 06de99ad 2022-05-19 thomas for (i = idx0; i <= idxN; i++) {
1461 06de99ad 2022-05-19 thomas struct got_parsed_tree_entry *pte = &entries[i];
1462 e033d803 2018-04-23 stsp
1463 3022d272 2019-11-14 stsp /* Keep in sync with struct got_imsg_tree_object definition! */
1464 e9f1a409 2022-05-19 thomas if (imsg_add(wbuf, pte->id, SHA1_DIGEST_LENGTH) == -1)
1465 e9f1a409 2022-05-19 thomas return got_error_from_errno("imsg_add TREE_ENTRY");
1466 e9f1a409 2022-05-19 thomas if (imsg_add(wbuf, &pte->mode, sizeof(pte->mode)) == -1)
1467 e9f1a409 2022-05-19 thomas return got_error_from_errno("imsg_add TREE_ENTRY");
1468 e9f1a409 2022-05-19 thomas if (imsg_add(wbuf, &pte->namelen, sizeof(pte->namelen)) == -1)
1469 e9f1a409 2022-05-19 thomas return got_error_from_errno("imsg_add TREE_ENTRY");
1470 06de99ad 2022-05-19 thomas
1471 06de99ad 2022-05-19 thomas /* Remaining bytes are the entry's name. */
1472 e9f1a409 2022-05-19 thomas if (imsg_add(wbuf, pte->name, pte->namelen) == -1)
1473 e9f1a409 2022-05-19 thomas return got_error_from_errno("imsg_add TREE_ENTRY");
1474 06de99ad 2022-05-19 thomas }
1475 3022d272 2019-11-14 stsp
1476 06de99ad 2022-05-19 thomas wbuf->fd = -1;
1477 06de99ad 2022-05-19 thomas imsg_close(ibuf, wbuf);
1478 06de99ad 2022-05-19 thomas return NULL;
1479 06de99ad 2022-05-19 thomas }
1480 3022d272 2019-11-14 stsp
1481 13280750 2022-06-13 thomas static const struct got_error *
1482 13280750 2022-06-13 thomas send_tree_entries(struct imsgbuf *ibuf, struct got_parsed_tree_entry *entries,
1483 13280750 2022-06-13 thomas int nentries)
1484 06de99ad 2022-05-19 thomas {
1485 06de99ad 2022-05-19 thomas const struct got_error *err = NULL;
1486 06de99ad 2022-05-19 thomas int i, j;
1487 13280750 2022-06-13 thomas size_t entries_len = sizeof(struct got_imsg_tree_entries);
1488 06de99ad 2022-05-19 thomas
1489 06de99ad 2022-05-19 thomas i = 0;
1490 06de99ad 2022-05-19 thomas for (j = 0; j < nentries; j++) {
1491 06de99ad 2022-05-19 thomas struct got_parsed_tree_entry *pte = &entries[j];
1492 06de99ad 2022-05-19 thomas size_t len = sizeof(*pte) + pte->namelen;
1493 06de99ad 2022-05-19 thomas
1494 06de99ad 2022-05-19 thomas if (j > 0 &&
1495 06de99ad 2022-05-19 thomas entries_len + len > MAX_IMSGSIZE - IMSG_HEADER_SIZE) {
1496 13280750 2022-06-13 thomas err = send_tree_entries_batch(ibuf, entries,
1497 06de99ad 2022-05-19 thomas i, j - 1, entries_len);
1498 06de99ad 2022-05-19 thomas if (err)
1499 06de99ad 2022-05-19 thomas return err;
1500 06de99ad 2022-05-19 thomas i = j;
1501 06de99ad 2022-05-19 thomas entries_len = sizeof(struct got_imsg_tree_entries);
1502 06de99ad 2022-05-19 thomas }
1503 06de99ad 2022-05-19 thomas
1504 06de99ad 2022-05-19 thomas entries_len += len;
1505 e033d803 2018-04-23 stsp }
1506 e033d803 2018-04-23 stsp
1507 06de99ad 2022-05-19 thomas if (j > 0) {
1508 13280750 2022-06-13 thomas err = send_tree_entries_batch(ibuf, entries, i, j - 1,
1509 13280750 2022-06-13 thomas entries_len);
1510 06de99ad 2022-05-19 thomas if (err)
1511 06de99ad 2022-05-19 thomas return err;
1512 06de99ad 2022-05-19 thomas }
1513 13280750 2022-06-13 thomas
1514 13280750 2022-06-13 thomas return NULL;
1515 13280750 2022-06-13 thomas }
1516 13280750 2022-06-13 thomas
1517 13280750 2022-06-13 thomas const struct got_error *
1518 13280750 2022-06-13 thomas got_privsep_send_tree(struct imsgbuf *ibuf,
1519 13280750 2022-06-13 thomas struct got_parsed_tree_entry *entries, int nentries)
1520 13280750 2022-06-13 thomas {
1521 13280750 2022-06-13 thomas const struct got_error *err = NULL;
1522 13280750 2022-06-13 thomas struct got_imsg_tree_object itree;
1523 06de99ad 2022-05-19 thomas
1524 13280750 2022-06-13 thomas itree.nentries = nentries;
1525 13280750 2022-06-13 thomas if (imsg_compose(ibuf, GOT_IMSG_TREE, 0, 0, -1, &itree, sizeof(itree))
1526 13280750 2022-06-13 thomas == -1)
1527 13280750 2022-06-13 thomas return got_error_from_errno("imsg_compose TREE");
1528 13280750 2022-06-13 thomas
1529 13280750 2022-06-13 thomas err = send_tree_entries(ibuf, entries, nentries);
1530 13280750 2022-06-13 thomas if (err)
1531 13280750 2022-06-13 thomas return err;
1532 13280750 2022-06-13 thomas
1533 b00c9821 2018-11-04 stsp return flush_imsg(ibuf);
1534 e033d803 2018-04-23 stsp }
1535 e033d803 2018-04-23 stsp
1536 13280750 2022-06-13 thomas
1537 13280750 2022-06-13 thomas static const struct got_error *
1538 13280750 2022-06-13 thomas recv_tree_entries(void *data, size_t datalen, struct got_tree_object *tree,
1539 13280750 2022-06-13 thomas int *nentries)
1540 13280750 2022-06-13 thomas {
1541 13280750 2022-06-13 thomas const struct got_error *err = NULL;
1542 13280750 2022-06-13 thomas struct got_imsg_tree_entries *ientries;
1543 13280750 2022-06-13 thomas struct got_tree_entry *te;
1544 13280750 2022-06-13 thomas size_t te_offset;
1545 13280750 2022-06-13 thomas size_t i;
1546 13280750 2022-06-13 thomas
1547 13280750 2022-06-13 thomas if (datalen <= sizeof(*ientries) ||
1548 13280750 2022-06-13 thomas datalen > MAX_IMSGSIZE - IMSG_HEADER_SIZE)
1549 13280750 2022-06-13 thomas return got_error(GOT_ERR_PRIVSEP_LEN);
1550 13280750 2022-06-13 thomas
1551 13280750 2022-06-13 thomas ientries = (struct got_imsg_tree_entries *)data;
1552 13280750 2022-06-13 thomas if (ientries->nentries > INT_MAX) {
1553 13280750 2022-06-13 thomas return got_error_msg(GOT_ERR_NO_SPACE,
1554 13280750 2022-06-13 thomas "too many tree entries");
1555 13280750 2022-06-13 thomas }
1556 13280750 2022-06-13 thomas
1557 13280750 2022-06-13 thomas te_offset = sizeof(*ientries);
1558 13280750 2022-06-13 thomas for (i = 0; i < ientries->nentries; i++) {
1559 13280750 2022-06-13 thomas struct got_imsg_tree_entry ite;
1560 13280750 2022-06-13 thomas const char *te_name;
1561 13280750 2022-06-13 thomas uint8_t *buf = (uint8_t *)data + te_offset;
1562 13280750 2022-06-13 thomas
1563 13280750 2022-06-13 thomas if (te_offset >= datalen) {
1564 13280750 2022-06-13 thomas err = got_error(GOT_ERR_PRIVSEP_LEN);
1565 13280750 2022-06-13 thomas break;
1566 13280750 2022-06-13 thomas }
1567 13280750 2022-06-13 thomas
1568 13280750 2022-06-13 thomas /* Might not be aligned, size is ~32 bytes. */
1569 13280750 2022-06-13 thomas memcpy(&ite, buf, sizeof(ite));
1570 13280750 2022-06-13 thomas
1571 13280750 2022-06-13 thomas if (ite.namelen >= sizeof(te->name)) {
1572 13280750 2022-06-13 thomas err = got_error(GOT_ERR_PRIVSEP_LEN);
1573 13280750 2022-06-13 thomas break;
1574 13280750 2022-06-13 thomas }
1575 c8fa56b3 2022-06-13 thomas if (te_offset + sizeof(ite) + ite.namelen > datalen) {
1576 13280750 2022-06-13 thomas err = got_error(GOT_ERR_PRIVSEP_LEN);
1577 13280750 2022-06-13 thomas break;
1578 13280750 2022-06-13 thomas }
1579 13280750 2022-06-13 thomas
1580 13280750 2022-06-13 thomas if (*nentries >= tree->nentries) {
1581 13280750 2022-06-13 thomas err = got_error(GOT_ERR_PRIVSEP_LEN);
1582 13280750 2022-06-13 thomas break;
1583 13280750 2022-06-13 thomas }
1584 13280750 2022-06-13 thomas te = &tree->entries[*nentries];
1585 13280750 2022-06-13 thomas te_name = buf + sizeof(ite);
1586 13280750 2022-06-13 thomas memcpy(te->name, te_name, ite.namelen);
1587 13280750 2022-06-13 thomas te->name[ite.namelen] = '\0';
1588 13280750 2022-06-13 thomas memcpy(te->id.sha1, ite.id, SHA1_DIGEST_LENGTH);
1589 13280750 2022-06-13 thomas te->mode = ite.mode;
1590 13280750 2022-06-13 thomas te->idx = *nentries;
1591 13280750 2022-06-13 thomas (*nentries)++;
1592 13280750 2022-06-13 thomas
1593 13280750 2022-06-13 thomas te_offset += sizeof(ite) + ite.namelen;
1594 13280750 2022-06-13 thomas }
1595 13280750 2022-06-13 thomas
1596 13280750 2022-06-13 thomas return err;
1597 13280750 2022-06-13 thomas }
1598 13280750 2022-06-13 thomas
1599 e033d803 2018-04-23 stsp const struct got_error *
1600 068fd2bf 2018-04-24 stsp got_privsep_recv_tree(struct got_tree_object **tree, struct imsgbuf *ibuf)
1601 e033d803 2018-04-23 stsp {
1602 e033d803 2018-04-23 stsp const struct got_error *err = NULL;
1603 e033d803 2018-04-23 stsp const size_t min_datalen =
1604 e033d803 2018-04-23 stsp MIN(sizeof(struct got_imsg_error),
1605 e033d803 2018-04-23 stsp sizeof(struct got_imsg_tree_object));
1606 291624d8 2018-11-07 stsp struct got_imsg_tree_object *itree;
1607 e033d803 2018-04-23 stsp int nentries = 0;
1608 2178c42e 2018-04-22 stsp
1609 e033d803 2018-04-23 stsp *tree = NULL;
1610 8767bb94 2022-05-19 thomas
1611 e033d803 2018-04-23 stsp err = read_imsg(ibuf);
1612 e033d803 2018-04-23 stsp if (err)
1613 1e51f5b9 2018-04-23 stsp goto done;
1614 e033d803 2018-04-23 stsp
1615 656b1f76 2019-05-11 jcs for (;;) {
1616 e033d803 2018-04-23 stsp struct imsg imsg;
1617 e033d803 2018-04-23 stsp size_t n;
1618 e033d803 2018-04-23 stsp size_t datalen;
1619 e033d803 2018-04-23 stsp
1620 e033d803 2018-04-23 stsp n = imsg_get(ibuf, &imsg);
1621 e033d803 2018-04-23 stsp if (n == 0) {
1622 8767bb94 2022-05-19 thomas if ((*tree)) {
1623 8767bb94 2022-05-19 thomas if (nentries < (*tree)->nentries) {
1624 8767bb94 2022-05-19 thomas err = read_imsg(ibuf);
1625 8767bb94 2022-05-19 thomas if (err)
1626 8767bb94 2022-05-19 thomas break;
1627 8767bb94 2022-05-19 thomas continue;
1628 8767bb94 2022-05-19 thomas } else
1629 8767bb94 2022-05-19 thomas break;
1630 8767bb94 2022-05-19 thomas } else {
1631 8767bb94 2022-05-19 thomas err = got_error(GOT_ERR_PRIVSEP_MSG);
1632 8767bb94 2022-05-19 thomas break;
1633 8767bb94 2022-05-19 thomas }
1634 e033d803 2018-04-23 stsp }
1635 e033d803 2018-04-23 stsp
1636 fca1f6ad 2020-08-27 stsp if (imsg.hdr.len < IMSG_HEADER_SIZE + min_datalen) {
1637 fca1f6ad 2020-08-27 stsp imsg_free(&imsg);
1638 fca1f6ad 2020-08-27 stsp err = got_error(GOT_ERR_PRIVSEP_LEN);
1639 fca1f6ad 2020-08-27 stsp break;
1640 fca1f6ad 2020-08-27 stsp }
1641 e033d803 2018-04-23 stsp
1642 e033d803 2018-04-23 stsp datalen = imsg.hdr.len - IMSG_HEADER_SIZE;
1643 e033d803 2018-04-23 stsp
1644 e033d803 2018-04-23 stsp switch (imsg.hdr.type) {
1645 e033d803 2018-04-23 stsp case GOT_IMSG_ERROR:
1646 e033d803 2018-04-23 stsp err = recv_imsg_error(&imsg, datalen);
1647 e033d803 2018-04-23 stsp break;
1648 e033d803 2018-04-23 stsp case GOT_IMSG_TREE:
1649 e033d803 2018-04-23 stsp /* This message should only appear once. */
1650 e033d803 2018-04-23 stsp if (*tree != NULL) {
1651 e033d803 2018-04-23 stsp err = got_error(GOT_ERR_PRIVSEP_MSG);
1652 e033d803 2018-04-23 stsp break;
1653 e033d803 2018-04-23 stsp }
1654 291624d8 2018-11-07 stsp if (datalen != sizeof(*itree)) {
1655 e033d803 2018-04-23 stsp err = got_error(GOT_ERR_PRIVSEP_LEN);
1656 e033d803 2018-04-23 stsp break;
1657 e033d803 2018-04-23 stsp }
1658 291624d8 2018-11-07 stsp itree = imsg.data;
1659 ace4d4e7 2022-05-19 thomas if (itree->nentries < 0) {
1660 ace4d4e7 2022-05-19 thomas err = got_error(GOT_ERR_PRIVSEP_LEN);
1661 ace4d4e7 2022-05-19 thomas break;
1662 ace4d4e7 2022-05-19 thomas }
1663 c3b78ecc 2018-11-07 stsp *tree = malloc(sizeof(**tree));
1664 e033d803 2018-04-23 stsp if (*tree == NULL) {
1665 638f9024 2019-05-13 stsp err = got_error_from_errno("malloc");
1666 e033d803 2018-04-23 stsp break;
1667 e033d803 2018-04-23 stsp }
1668 56e0773d 2019-11-28 stsp (*tree)->entries = calloc(itree->nentries,
1669 56e0773d 2019-11-28 stsp sizeof(struct got_tree_entry));
1670 56e0773d 2019-11-28 stsp if ((*tree)->entries == NULL) {
1671 56e0773d 2019-11-28 stsp err = got_error_from_errno("malloc");
1672 c3bacae2 2022-05-19 thomas free(*tree);
1673 c3bacae2 2022-05-19 thomas *tree = NULL;
1674 56e0773d 2019-11-28 stsp break;
1675 56e0773d 2019-11-28 stsp }
1676 56e0773d 2019-11-28 stsp (*tree)->nentries = itree->nentries;
1677 c3b78ecc 2018-11-07 stsp (*tree)->refcnt = 0;
1678 e033d803 2018-04-23 stsp break;
1679 06de99ad 2022-05-19 thomas case GOT_IMSG_TREE_ENTRIES:
1680 e033d803 2018-04-23 stsp /* This message should be preceeded by GOT_IMSG_TREE. */
1681 e033d803 2018-04-23 stsp if (*tree == NULL) {
1682 e033d803 2018-04-23 stsp err = got_error(GOT_ERR_PRIVSEP_MSG);
1683 e033d803 2018-04-23 stsp break;
1684 e033d803 2018-04-23 stsp }
1685 13280750 2022-06-13 thomas err = recv_tree_entries(imsg.data, datalen,
1686 13280750 2022-06-13 thomas *tree, &nentries);
1687 e033d803 2018-04-23 stsp break;
1688 e033d803 2018-04-23 stsp default:
1689 e033d803 2018-04-23 stsp err = got_error(GOT_ERR_PRIVSEP_MSG);
1690 e033d803 2018-04-23 stsp break;
1691 e033d803 2018-04-23 stsp }
1692 e033d803 2018-04-23 stsp
1693 e033d803 2018-04-23 stsp imsg_free(&imsg);
1694 d6b7d054 2020-08-27 stsp if (err)
1695 d6b7d054 2020-08-27 stsp break;
1696 e033d803 2018-04-23 stsp }
1697 1e51f5b9 2018-04-23 stsp done:
1698 56e0773d 2019-11-28 stsp if (*tree && (*tree)->nentries != nentries) {
1699 1e51f5b9 2018-04-23 stsp if (err == NULL)
1700 1e51f5b9 2018-04-23 stsp err = got_error(GOT_ERR_PRIVSEP_LEN);
1701 e033d803 2018-04-23 stsp got_object_tree_close(*tree);
1702 e033d803 2018-04-23 stsp *tree = NULL;
1703 ff6b18f8 2018-04-24 stsp }
1704 ff6b18f8 2018-04-24 stsp
1705 ff6b18f8 2018-04-24 stsp return err;
1706 ff6b18f8 2018-04-24 stsp }
1707 ff6b18f8 2018-04-24 stsp
1708 ff6b18f8 2018-04-24 stsp const struct got_error *
1709 ac544f8c 2019-01-13 stsp got_privsep_send_blob(struct imsgbuf *ibuf, size_t size, size_t hdrlen,
1710 ac544f8c 2019-01-13 stsp const uint8_t *data)
1711 ff6b18f8 2018-04-24 stsp {
1712 2967a784 2018-04-24 stsp struct got_imsg_blob iblob;
1713 2967a784 2018-04-24 stsp
1714 2967a784 2018-04-24 stsp iblob.size = size;
1715 ebc55e2d 2018-12-24 stsp iblob.hdrlen = hdrlen;
1716 2967a784 2018-04-24 stsp
1717 ac544f8c 2019-01-13 stsp if (data) {
1718 ac544f8c 2019-01-13 stsp uint8_t *buf;
1719 ac544f8c 2019-01-13 stsp
1720 ac544f8c 2019-01-13 stsp if (size > GOT_PRIVSEP_INLINE_BLOB_DATA_MAX)
1721 ac544f8c 2019-01-13 stsp return got_error(GOT_ERR_NO_SPACE);
1722 ac544f8c 2019-01-13 stsp
1723 ac544f8c 2019-01-13 stsp buf = malloc(sizeof(iblob) + size);
1724 ac544f8c 2019-01-13 stsp if (buf == NULL)
1725 638f9024 2019-05-13 stsp return got_error_from_errno("malloc");
1726 ff6b18f8 2018-04-24 stsp
1727 ac544f8c 2019-01-13 stsp memcpy(buf, &iblob, sizeof(iblob));
1728 ac544f8c 2019-01-13 stsp memcpy(buf + sizeof(iblob), data, size);
1729 ac544f8c 2019-01-13 stsp if (imsg_compose(ibuf, GOT_IMSG_BLOB, 0, 0, -1, buf,
1730 62d463ca 2020-10-20 naddy sizeof(iblob) + size) == -1) {
1731 ac544f8c 2019-01-13 stsp free(buf);
1732 638f9024 2019-05-13 stsp return got_error_from_errno("imsg_compose BLOB");
1733 ac544f8c 2019-01-13 stsp }
1734 ac544f8c 2019-01-13 stsp free(buf);
1735 ac544f8c 2019-01-13 stsp } else {
1736 ac544f8c 2019-01-13 stsp /* Data has already been written to file descriptor. */
1737 ac544f8c 2019-01-13 stsp if (imsg_compose(ibuf, GOT_IMSG_BLOB, 0, 0, -1, &iblob,
1738 ac544f8c 2019-01-13 stsp sizeof(iblob)) == -1)
1739 638f9024 2019-05-13 stsp return got_error_from_errno("imsg_compose BLOB");
1740 ac544f8c 2019-01-13 stsp }
1741 ac544f8c 2019-01-13 stsp
1742 ac544f8c 2019-01-13 stsp
1743 ff6b18f8 2018-04-24 stsp return flush_imsg(ibuf);
1744 ff6b18f8 2018-04-24 stsp }
1745 ff6b18f8 2018-04-24 stsp
1746 ff6b18f8 2018-04-24 stsp const struct got_error *
1747 ac544f8c 2019-01-13 stsp got_privsep_recv_blob(uint8_t **outbuf, size_t *size, size_t *hdrlen,
1748 ac544f8c 2019-01-13 stsp struct imsgbuf *ibuf)
1749 ff6b18f8 2018-04-24 stsp {
1750 ff6b18f8 2018-04-24 stsp const struct got_error *err = NULL;
1751 ff6b18f8 2018-04-24 stsp struct imsg imsg;
1752 291624d8 2018-11-07 stsp struct got_imsg_blob *iblob;
1753 ff6b18f8 2018-04-24 stsp size_t datalen;
1754 ff6b18f8 2018-04-24 stsp
1755 ac544f8c 2019-01-13 stsp *outbuf = NULL;
1756 ac544f8c 2019-01-13 stsp
1757 ad242220 2018-09-08 stsp err = got_privsep_recv_imsg(&imsg, ibuf, 0);
1758 ff6b18f8 2018-04-24 stsp if (err)
1759 ff6b18f8 2018-04-24 stsp return err;
1760 ff6b18f8 2018-04-24 stsp
1761 ff6b18f8 2018-04-24 stsp datalen = imsg.hdr.len - IMSG_HEADER_SIZE;
1762 ff6b18f8 2018-04-24 stsp
1763 ff6b18f8 2018-04-24 stsp switch (imsg.hdr.type) {
1764 ff6b18f8 2018-04-24 stsp case GOT_IMSG_BLOB:
1765 ac544f8c 2019-01-13 stsp if (datalen < sizeof(*iblob)) {
1766 ff6b18f8 2018-04-24 stsp err = got_error(GOT_ERR_PRIVSEP_LEN);
1767 18336eed 2018-11-04 stsp break;
1768 18336eed 2018-11-04 stsp }
1769 291624d8 2018-11-07 stsp iblob = imsg.data;
1770 291624d8 2018-11-07 stsp *size = iblob->size;
1771 ebc55e2d 2018-12-24 stsp *hdrlen = iblob->hdrlen;
1772 ac544f8c 2019-01-13 stsp
1773 ac544f8c 2019-01-13 stsp if (datalen == sizeof(*iblob)) {
1774 ac544f8c 2019-01-13 stsp /* Data has been written to file descriptor. */
1775 ac544f8c 2019-01-13 stsp break;
1776 ac544f8c 2019-01-13 stsp }
1777 ac544f8c 2019-01-13 stsp
1778 ac544f8c 2019-01-13 stsp if (*size > GOT_PRIVSEP_INLINE_BLOB_DATA_MAX) {
1779 ac544f8c 2019-01-13 stsp err = got_error(GOT_ERR_PRIVSEP_LEN);
1780 ac544f8c 2019-01-13 stsp break;
1781 ac544f8c 2019-01-13 stsp }
1782 ac544f8c 2019-01-13 stsp
1783 ac544f8c 2019-01-13 stsp *outbuf = malloc(*size);
1784 ac544f8c 2019-01-13 stsp if (*outbuf == NULL) {
1785 638f9024 2019-05-13 stsp err = got_error_from_errno("malloc");
1786 ac544f8c 2019-01-13 stsp break;
1787 ac544f8c 2019-01-13 stsp }
1788 ac544f8c 2019-01-13 stsp memcpy(*outbuf, imsg.data + sizeof(*iblob), *size);
1789 f4a881ce 2018-11-17 stsp break;
1790 f4a881ce 2018-11-17 stsp default:
1791 f4a881ce 2018-11-17 stsp err = got_error(GOT_ERR_PRIVSEP_MSG);
1792 f4a881ce 2018-11-17 stsp break;
1793 f4a881ce 2018-11-17 stsp }
1794 f4a881ce 2018-11-17 stsp
1795 f4a881ce 2018-11-17 stsp imsg_free(&imsg);
1796 f4a881ce 2018-11-17 stsp
1797 f4a881ce 2018-11-17 stsp return err;
1798 f4a881ce 2018-11-17 stsp }
1799 f4a881ce 2018-11-17 stsp
1800 f4a881ce 2018-11-17 stsp static const struct got_error *
1801 f4a881ce 2018-11-17 stsp send_tagmsg(struct imsgbuf *ibuf, struct got_tag_object *tag, size_t tagmsg_len)
1802 f4a881ce 2018-11-17 stsp {
1803 f4a881ce 2018-11-17 stsp const struct got_error *err = NULL;
1804 f4a881ce 2018-11-17 stsp size_t offset, remain;
1805 f4a881ce 2018-11-17 stsp
1806 f4a881ce 2018-11-17 stsp offset = 0;
1807 f4a881ce 2018-11-17 stsp remain = tagmsg_len;
1808 f4a881ce 2018-11-17 stsp while (remain > 0) {
1809 f4a881ce 2018-11-17 stsp size_t n = MIN(MAX_IMSGSIZE - IMSG_HEADER_SIZE, remain);
1810 f4a881ce 2018-11-17 stsp
1811 f4a881ce 2018-11-17 stsp if (imsg_compose(ibuf, GOT_IMSG_TAG_TAGMSG, 0, 0, -1,
1812 f4a881ce 2018-11-17 stsp tag->tagmsg + offset, n) == -1) {
1813 638f9024 2019-05-13 stsp err = got_error_from_errno("imsg_compose TAG_TAGMSG");
1814 f4a881ce 2018-11-17 stsp break;
1815 f4a881ce 2018-11-17 stsp }
1816 f4a881ce 2018-11-17 stsp
1817 f4a881ce 2018-11-17 stsp err = flush_imsg(ibuf);
1818 f4a881ce 2018-11-17 stsp if (err)
1819 f4a881ce 2018-11-17 stsp break;
1820 f4a881ce 2018-11-17 stsp
1821 f4a881ce 2018-11-17 stsp offset += n;
1822 f4a881ce 2018-11-17 stsp remain -= n;
1823 f4a881ce 2018-11-17 stsp }
1824 f4a881ce 2018-11-17 stsp
1825 f4a881ce 2018-11-17 stsp return err;
1826 f4a881ce 2018-11-17 stsp }
1827 f4a881ce 2018-11-17 stsp
1828 f4a881ce 2018-11-17 stsp const struct got_error *
1829 f4a881ce 2018-11-17 stsp got_privsep_send_tag(struct imsgbuf *ibuf, struct got_tag_object *tag)
1830 f4a881ce 2018-11-17 stsp {
1831 f4a881ce 2018-11-17 stsp const struct got_error *err = NULL;
1832 f4a881ce 2018-11-17 stsp struct got_imsg_tag_object *itag;
1833 f4a881ce 2018-11-17 stsp uint8_t *buf;
1834 f4a881ce 2018-11-17 stsp size_t len, total;
1835 f4a881ce 2018-11-17 stsp size_t tag_len = strlen(tag->tag);
1836 f4a881ce 2018-11-17 stsp size_t tagger_len = strlen(tag->tagger);
1837 f4a881ce 2018-11-17 stsp size_t tagmsg_len = strlen(tag->tagmsg);
1838 f4a881ce 2018-11-17 stsp
1839 f4a881ce 2018-11-17 stsp total = sizeof(*itag) + tag_len + tagger_len + tagmsg_len;
1840 f4a881ce 2018-11-17 stsp
1841 f4a881ce 2018-11-17 stsp buf = malloc(total);
1842 f4a881ce 2018-11-17 stsp if (buf == NULL)
1843 638f9024 2019-05-13 stsp return got_error_from_errno("malloc");
1844 f4a881ce 2018-11-17 stsp
1845 f4a881ce 2018-11-17 stsp itag = (struct got_imsg_tag_object *)buf;
1846 f4a881ce 2018-11-17 stsp memcpy(itag->id, tag->id.sha1, sizeof(itag->id));
1847 f4a881ce 2018-11-17 stsp itag->obj_type = tag->obj_type;
1848 f4a881ce 2018-11-17 stsp itag->tag_len = tag_len;
1849 f4a881ce 2018-11-17 stsp itag->tagger_len = tagger_len;
1850 f4a881ce 2018-11-17 stsp itag->tagger_time = tag->tagger_time;
1851 f4a881ce 2018-11-17 stsp itag->tagger_gmtoff = tag->tagger_gmtoff;
1852 f4a881ce 2018-11-17 stsp itag->tagmsg_len = tagmsg_len;
1853 f4a881ce 2018-11-17 stsp
1854 f4a881ce 2018-11-17 stsp len = sizeof(*itag);
1855 f4a881ce 2018-11-17 stsp memcpy(buf + len, tag->tag, tag_len);
1856 f4a881ce 2018-11-17 stsp len += tag_len;
1857 f4a881ce 2018-11-17 stsp memcpy(buf + len, tag->tagger, tagger_len);
1858 f4a881ce 2018-11-17 stsp len += tagger_len;
1859 f4a881ce 2018-11-17 stsp
1860 f4a881ce 2018-11-17 stsp if (imsg_compose(ibuf, GOT_IMSG_TAG, 0, 0, -1, buf, len) == -1) {
1861 638f9024 2019-05-13 stsp err = got_error_from_errno("imsg_compose TAG");
1862 f4a881ce 2018-11-17 stsp goto done;
1863 f4a881ce 2018-11-17 stsp }
1864 f4a881ce 2018-11-17 stsp
1865 f4a881ce 2018-11-17 stsp if (tagmsg_len == 0 ||
1866 f4a881ce 2018-11-17 stsp tagmsg_len + len > MAX_IMSGSIZE - IMSG_HEADER_SIZE) {
1867 f4a881ce 2018-11-17 stsp err = flush_imsg(ibuf);
1868 f4a881ce 2018-11-17 stsp if (err)
1869 f4a881ce 2018-11-17 stsp goto done;
1870 f4a881ce 2018-11-17 stsp }
1871 f4a881ce 2018-11-17 stsp err = send_tagmsg(ibuf, tag, tagmsg_len);
1872 f4a881ce 2018-11-17 stsp done:
1873 f4a881ce 2018-11-17 stsp free(buf);
1874 f4a881ce 2018-11-17 stsp return err;
1875 f4a881ce 2018-11-17 stsp }
1876 f4a881ce 2018-11-17 stsp
1877 f4a881ce 2018-11-17 stsp const struct got_error *
1878 f4a881ce 2018-11-17 stsp got_privsep_recv_tag(struct got_tag_object **tag, struct imsgbuf *ibuf)
1879 f4a881ce 2018-11-17 stsp {
1880 f4a881ce 2018-11-17 stsp const struct got_error *err = NULL;
1881 f4a881ce 2018-11-17 stsp struct imsg imsg;
1882 f4a881ce 2018-11-17 stsp struct got_imsg_tag_object *itag;
1883 f4a881ce 2018-11-17 stsp size_t len, datalen;
1884 f4a881ce 2018-11-17 stsp const size_t min_datalen =
1885 f4a881ce 2018-11-17 stsp MIN(sizeof(struct got_imsg_error),
1886 f4a881ce 2018-11-17 stsp sizeof(struct got_imsg_tag_object));
1887 f4a881ce 2018-11-17 stsp
1888 f4a881ce 2018-11-17 stsp *tag = NULL;
1889 f4a881ce 2018-11-17 stsp
1890 f4a881ce 2018-11-17 stsp err = got_privsep_recv_imsg(&imsg, ibuf, min_datalen);
1891 f4a881ce 2018-11-17 stsp if (err)
1892 f4a881ce 2018-11-17 stsp return err;
1893 f4a881ce 2018-11-17 stsp
1894 f4a881ce 2018-11-17 stsp datalen = imsg.hdr.len - IMSG_HEADER_SIZE;
1895 f4a881ce 2018-11-17 stsp len = 0;
1896 f4a881ce 2018-11-17 stsp
1897 f4a881ce 2018-11-17 stsp switch (imsg.hdr.type) {
1898 f4a881ce 2018-11-17 stsp case GOT_IMSG_TAG:
1899 f4a881ce 2018-11-17 stsp if (datalen < sizeof(*itag)) {
1900 f4a881ce 2018-11-17 stsp err = got_error(GOT_ERR_PRIVSEP_LEN);
1901 f4a881ce 2018-11-17 stsp break;
1902 f4a881ce 2018-11-17 stsp }
1903 f4a881ce 2018-11-17 stsp itag = imsg.data;
1904 f4a881ce 2018-11-17 stsp if (datalen != sizeof(*itag) + itag->tag_len +
1905 f4a881ce 2018-11-17 stsp itag->tagger_len) {
1906 f4a881ce 2018-11-17 stsp err = got_error(GOT_ERR_PRIVSEP_LEN);
1907 f4a881ce 2018-11-17 stsp break;
1908 f4a881ce 2018-11-17 stsp }
1909 f4a881ce 2018-11-17 stsp len += sizeof(*itag);
1910 f4a881ce 2018-11-17 stsp
1911 f4a881ce 2018-11-17 stsp *tag = calloc(1, sizeof(**tag));
1912 f4a881ce 2018-11-17 stsp if (*tag == NULL) {
1913 638f9024 2019-05-13 stsp err = got_error_from_errno("calloc");
1914 f4a881ce 2018-11-17 stsp break;
1915 f4a881ce 2018-11-17 stsp }
1916 f4a881ce 2018-11-17 stsp
1917 f4a881ce 2018-11-17 stsp memcpy((*tag)->id.sha1, itag->id, SHA1_DIGEST_LENGTH);
1918 f4a881ce 2018-11-17 stsp
1919 f4a881ce 2018-11-17 stsp if (itag->tag_len == 0) {
1920 f4a881ce 2018-11-17 stsp (*tag)->tag = strdup("");
1921 f4a881ce 2018-11-17 stsp if ((*tag)->tag == NULL) {
1922 638f9024 2019-05-13 stsp err = got_error_from_errno("strdup");
1923 f4a881ce 2018-11-17 stsp break;
1924 f4a881ce 2018-11-17 stsp }
1925 f4a881ce 2018-11-17 stsp } else {
1926 f4a881ce 2018-11-17 stsp (*tag)->tag = malloc(itag->tag_len + 1);
1927 f4a881ce 2018-11-17 stsp if ((*tag)->tag == NULL) {
1928 638f9024 2019-05-13 stsp err = got_error_from_errno("malloc");
1929 f4a881ce 2018-11-17 stsp break;
1930 f4a881ce 2018-11-17 stsp }
1931 f4a881ce 2018-11-17 stsp memcpy((*tag)->tag, imsg.data + len,
1932 f4a881ce 2018-11-17 stsp itag->tag_len);
1933 f4a881ce 2018-11-17 stsp (*tag)->tag[itag->tag_len] = '\0';
1934 f4a881ce 2018-11-17 stsp }
1935 f4a881ce 2018-11-17 stsp len += itag->tag_len;
1936 f4a881ce 2018-11-17 stsp
1937 f4a881ce 2018-11-17 stsp (*tag)->obj_type = itag->obj_type;
1938 f4a881ce 2018-11-17 stsp (*tag)->tagger_time = itag->tagger_time;
1939 f4a881ce 2018-11-17 stsp (*tag)->tagger_gmtoff = itag->tagger_gmtoff;
1940 f4a881ce 2018-11-17 stsp
1941 f4a881ce 2018-11-17 stsp if (itag->tagger_len == 0) {
1942 f4a881ce 2018-11-17 stsp (*tag)->tagger = strdup("");
1943 f4a881ce 2018-11-17 stsp if ((*tag)->tagger == NULL) {
1944 638f9024 2019-05-13 stsp err = got_error_from_errno("strdup");
1945 f4a881ce 2018-11-17 stsp break;
1946 f4a881ce 2018-11-17 stsp }
1947 f4a881ce 2018-11-17 stsp } else {
1948 f4a881ce 2018-11-17 stsp (*tag)->tagger = malloc(itag->tagger_len + 1);
1949 f4a881ce 2018-11-17 stsp if ((*tag)->tagger == NULL) {
1950 638f9024 2019-05-13 stsp err = got_error_from_errno("malloc");
1951 f4a881ce 2018-11-17 stsp break;
1952 f4a881ce 2018-11-17 stsp }
1953 f4a881ce 2018-11-17 stsp memcpy((*tag)->tagger, imsg.data + len,
1954 f4a881ce 2018-11-17 stsp itag->tagger_len);
1955 f4a881ce 2018-11-17 stsp (*tag)->tagger[itag->tagger_len] = '\0';
1956 f4a881ce 2018-11-17 stsp }
1957 f4a881ce 2018-11-17 stsp len += itag->tagger_len;
1958 f4a881ce 2018-11-17 stsp
1959 f4a881ce 2018-11-17 stsp if (itag->tagmsg_len == 0) {
1960 f4a881ce 2018-11-17 stsp (*tag)->tagmsg = strdup("");
1961 f4a881ce 2018-11-17 stsp if ((*tag)->tagmsg == NULL) {
1962 638f9024 2019-05-13 stsp err = got_error_from_errno("strdup");
1963 f4a881ce 2018-11-17 stsp break;
1964 f4a881ce 2018-11-17 stsp }
1965 f4a881ce 2018-11-17 stsp } else {
1966 f4a881ce 2018-11-17 stsp size_t offset = 0, remain = itag->tagmsg_len;
1967 f4a881ce 2018-11-17 stsp
1968 f4a881ce 2018-11-17 stsp (*tag)->tagmsg = malloc(itag->tagmsg_len + 1);
1969 f4a881ce 2018-11-17 stsp if ((*tag)->tagmsg == NULL) {
1970 638f9024 2019-05-13 stsp err = got_error_from_errno("malloc");
1971 f4a881ce 2018-11-17 stsp break;
1972 f4a881ce 2018-11-17 stsp }
1973 f4a881ce 2018-11-17 stsp while (remain > 0) {
1974 f4a881ce 2018-11-17 stsp struct imsg imsg_log;
1975 f4a881ce 2018-11-17 stsp size_t n = MIN(MAX_IMSGSIZE - IMSG_HEADER_SIZE,
1976 f4a881ce 2018-11-17 stsp remain);
1977 f4a881ce 2018-11-17 stsp
1978 f4a881ce 2018-11-17 stsp err = got_privsep_recv_imsg(&imsg_log, ibuf, n);
1979 f4a881ce 2018-11-17 stsp if (err)
1980 f4a881ce 2018-11-17 stsp return err;
1981 f4a881ce 2018-11-17 stsp
1982 f4a881ce 2018-11-17 stsp if (imsg_log.hdr.type != GOT_IMSG_TAG_TAGMSG)
1983 f4a881ce 2018-11-17 stsp return got_error(GOT_ERR_PRIVSEP_MSG);
1984 f4a881ce 2018-11-17 stsp
1985 f4a881ce 2018-11-17 stsp memcpy((*tag)->tagmsg + offset, imsg_log.data,
1986 f4a881ce 2018-11-17 stsp n);
1987 f4a881ce 2018-11-17 stsp imsg_free(&imsg_log);
1988 f4a881ce 2018-11-17 stsp offset += n;
1989 f4a881ce 2018-11-17 stsp remain -= n;
1990 f4a881ce 2018-11-17 stsp }
1991 f4a881ce 2018-11-17 stsp (*tag)->tagmsg[itag->tagmsg_len] = '\0';
1992 f4a881ce 2018-11-17 stsp }
1993 f4a881ce 2018-11-17 stsp
1994 ff6b18f8 2018-04-24 stsp break;
1995 ff6b18f8 2018-04-24 stsp default:
1996 ff6b18f8 2018-04-24 stsp err = got_error(GOT_ERR_PRIVSEP_MSG);
1997 ff6b18f8 2018-04-24 stsp break;
1998 e033d803 2018-04-23 stsp }
1999 e033d803 2018-04-23 stsp
2000 ff6b18f8 2018-04-24 stsp imsg_free(&imsg);
2001 ff6b18f8 2018-04-24 stsp
2002 2178c42e 2018-04-22 stsp return err;
2003 2178c42e 2018-04-22 stsp }
2004 876c234b 2018-09-10 stsp
2005 876c234b 2018-09-10 stsp const struct got_error *
2006 876c234b 2018-09-10 stsp got_privsep_init_pack_child(struct imsgbuf *ibuf, struct got_pack *pack,
2007 876c234b 2018-09-10 stsp struct got_packidx *packidx)
2008 876c234b 2018-09-10 stsp {
2009 41496140 2019-02-21 stsp const struct got_error *err = NULL;
2010 876c234b 2018-09-10 stsp struct got_imsg_packidx ipackidx;
2011 876c234b 2018-09-10 stsp struct got_imsg_pack ipack;
2012 876c234b 2018-09-10 stsp int fd;
2013 876c234b 2018-09-10 stsp
2014 876c234b 2018-09-10 stsp ipackidx.len = packidx->len;
2015 c3564dfa 2021-07-15 stsp ipackidx.packfile_size = pack->filesize;
2016 876c234b 2018-09-10 stsp fd = dup(packidx->fd);
2017 876c234b 2018-09-10 stsp if (fd == -1)
2018 638f9024 2019-05-13 stsp return got_error_from_errno("dup");
2019 876c234b 2018-09-10 stsp
2020 876c234b 2018-09-10 stsp if (imsg_compose(ibuf, GOT_IMSG_PACKIDX, 0, 0, fd, &ipackidx,
2021 41496140 2019-02-21 stsp sizeof(ipackidx)) == -1) {
2022 638f9024 2019-05-13 stsp err = got_error_from_errno("imsg_compose PACKIDX");
2023 41496140 2019-02-21 stsp close(fd);
2024 41496140 2019-02-21 stsp return err;
2025 41496140 2019-02-21 stsp }
2026 876c234b 2018-09-10 stsp
2027 876c234b 2018-09-10 stsp if (strlcpy(ipack.path_packfile, pack->path_packfile,
2028 876c234b 2018-09-10 stsp sizeof(ipack.path_packfile)) >= sizeof(ipack.path_packfile))
2029 876c234b 2018-09-10 stsp return got_error(GOT_ERR_NO_SPACE);
2030 876c234b 2018-09-10 stsp ipack.filesize = pack->filesize;
2031 876c234b 2018-09-10 stsp
2032 876c234b 2018-09-10 stsp fd = dup(pack->fd);
2033 876c234b 2018-09-10 stsp if (fd == -1)
2034 638f9024 2019-05-13 stsp return got_error_from_errno("dup");
2035 876c234b 2018-09-10 stsp
2036 876c234b 2018-09-10 stsp if (imsg_compose(ibuf, GOT_IMSG_PACK, 0, 0, fd, &ipack, sizeof(ipack))
2037 41496140 2019-02-21 stsp == -1) {
2038 638f9024 2019-05-13 stsp err = got_error_from_errno("imsg_compose PACK");
2039 41496140 2019-02-21 stsp close(fd);
2040 41496140 2019-02-21 stsp return err;
2041 41496140 2019-02-21 stsp }
2042 876c234b 2018-09-10 stsp
2043 876c234b 2018-09-10 stsp return flush_imsg(ibuf);
2044 876c234b 2018-09-10 stsp }
2045 876c234b 2018-09-10 stsp
2046 876c234b 2018-09-10 stsp const struct got_error *
2047 106807b4 2018-09-15 stsp got_privsep_send_packed_obj_req(struct imsgbuf *ibuf, int idx,
2048 106807b4 2018-09-15 stsp struct got_object_id *id)
2049 876c234b 2018-09-10 stsp {
2050 876c234b 2018-09-10 stsp struct got_imsg_packed_object iobj;
2051 876c234b 2018-09-10 stsp
2052 876c234b 2018-09-10 stsp iobj.idx = idx;
2053 106807b4 2018-09-15 stsp memcpy(iobj.id, id->sha1, sizeof(iobj.id));
2054 876c234b 2018-09-10 stsp
2055 876c234b 2018-09-10 stsp if (imsg_compose(ibuf, GOT_IMSG_PACKED_OBJECT_REQUEST, 0, 0, -1,
2056 876c234b 2018-09-10 stsp &iobj, sizeof(iobj)) == -1)
2057 638f9024 2019-05-13 stsp return got_error_from_errno("imsg_compose "
2058 230a42bd 2019-05-11 jcs "PACKED_OBJECT_REQUEST");
2059 aba9c984 2019-09-08 stsp
2060 aba9c984 2019-09-08 stsp return flush_imsg(ibuf);
2061 aba9c984 2019-09-08 stsp }
2062 aba9c984 2019-09-08 stsp
2063 aba9c984 2019-09-08 stsp const struct got_error *
2064 59d1e4a0 2021-03-10 stsp got_privsep_send_packed_raw_obj_req(struct imsgbuf *ibuf, int idx,
2065 59d1e4a0 2021-03-10 stsp struct got_object_id *id)
2066 59d1e4a0 2021-03-10 stsp {
2067 59d1e4a0 2021-03-10 stsp struct got_imsg_packed_object iobj;
2068 59d1e4a0 2021-03-10 stsp
2069 59d1e4a0 2021-03-10 stsp iobj.idx = idx;
2070 59d1e4a0 2021-03-10 stsp memcpy(iobj.id, id->sha1, sizeof(iobj.id));
2071 59d1e4a0 2021-03-10 stsp
2072 59d1e4a0 2021-03-10 stsp if (imsg_compose(ibuf, GOT_IMSG_PACKED_RAW_OBJECT_REQUEST, 0, 0, -1,
2073 59d1e4a0 2021-03-10 stsp &iobj, sizeof(iobj)) == -1)
2074 59d1e4a0 2021-03-10 stsp return got_error_from_errno("imsg_compose "
2075 59d1e4a0 2021-03-10 stsp "PACKED_OBJECT_REQUEST");
2076 59d1e4a0 2021-03-10 stsp
2077 59d1e4a0 2021-03-10 stsp return flush_imsg(ibuf);
2078 59d1e4a0 2021-03-10 stsp }
2079 59d1e4a0 2021-03-10 stsp
2080 59d1e4a0 2021-03-10 stsp const struct got_error *
2081 aba9c984 2019-09-08 stsp got_privsep_send_gitconfig_parse_req(struct imsgbuf *ibuf, int fd)
2082 aba9c984 2019-09-08 stsp {
2083 aba9c984 2019-09-08 stsp const struct got_error *err = NULL;
2084 aba9c984 2019-09-08 stsp
2085 aba9c984 2019-09-08 stsp if (imsg_compose(ibuf, GOT_IMSG_GITCONFIG_PARSE_REQUEST, 0, 0, fd,
2086 aba9c984 2019-09-08 stsp NULL, 0) == -1) {
2087 aba9c984 2019-09-08 stsp err = got_error_from_errno("imsg_compose "
2088 aba9c984 2019-09-08 stsp "GITCONFIG_PARSE_REQUEST");
2089 aba9c984 2019-09-08 stsp close(fd);
2090 aba9c984 2019-09-08 stsp return err;
2091 aba9c984 2019-09-08 stsp }
2092 aba9c984 2019-09-08 stsp
2093 aba9c984 2019-09-08 stsp return flush_imsg(ibuf);
2094 aba9c984 2019-09-08 stsp }
2095 aba9c984 2019-09-08 stsp
2096 aba9c984 2019-09-08 stsp const struct got_error *
2097 aba9c984 2019-09-08 stsp got_privsep_send_gitconfig_repository_format_version_req(struct imsgbuf *ibuf)
2098 aba9c984 2019-09-08 stsp {
2099 aba9c984 2019-09-08 stsp if (imsg_compose(ibuf,
2100 aba9c984 2019-09-08 stsp GOT_IMSG_GITCONFIG_REPOSITORY_FORMAT_VERSION_REQUEST, 0, 0, -1,
2101 aba9c984 2019-09-08 stsp NULL, 0) == -1)
2102 aba9c984 2019-09-08 stsp return got_error_from_errno("imsg_compose "
2103 aba9c984 2019-09-08 stsp "GITCONFIG_REPOSITORY_FORMAT_VERSION_REQUEST");
2104 aba9c984 2019-09-08 stsp
2105 aba9c984 2019-09-08 stsp return flush_imsg(ibuf);
2106 aba9c984 2019-09-08 stsp }
2107 aba9c984 2019-09-08 stsp
2108 aba9c984 2019-09-08 stsp const struct got_error *
2109 20b7abb3 2020-10-22 stsp got_privsep_send_gitconfig_repository_extensions_req(struct imsgbuf *ibuf)
2110 20b7abb3 2020-10-22 stsp {
2111 20b7abb3 2020-10-22 stsp if (imsg_compose(ibuf,
2112 20b7abb3 2020-10-22 stsp GOT_IMSG_GITCONFIG_REPOSITORY_EXTENSIONS_REQUEST, 0, 0, -1,
2113 20b7abb3 2020-10-22 stsp NULL, 0) == -1)
2114 20b7abb3 2020-10-22 stsp return got_error_from_errno("imsg_compose "
2115 20b7abb3 2020-10-22 stsp "GITCONFIG_REPOSITORY_EXTENSIONS_REQUEST");
2116 20b7abb3 2020-10-22 stsp
2117 20b7abb3 2020-10-22 stsp return flush_imsg(ibuf);
2118 20b7abb3 2020-10-22 stsp }
2119 20b7abb3 2020-10-22 stsp
2120 20b7abb3 2020-10-22 stsp
2121 20b7abb3 2020-10-22 stsp const struct got_error *
2122 aba9c984 2019-09-08 stsp got_privsep_send_gitconfig_author_name_req(struct imsgbuf *ibuf)
2123 aba9c984 2019-09-08 stsp {
2124 aba9c984 2019-09-08 stsp if (imsg_compose(ibuf,
2125 aba9c984 2019-09-08 stsp GOT_IMSG_GITCONFIG_AUTHOR_NAME_REQUEST, 0, 0, -1, NULL, 0) == -1)
2126 aba9c984 2019-09-08 stsp return got_error_from_errno("imsg_compose "
2127 aba9c984 2019-09-08 stsp "GITCONFIG_AUTHOR_NAME_REQUEST");
2128 aba9c984 2019-09-08 stsp
2129 aba9c984 2019-09-08 stsp return flush_imsg(ibuf);
2130 aba9c984 2019-09-08 stsp }
2131 aba9c984 2019-09-08 stsp
2132 aba9c984 2019-09-08 stsp const struct got_error *
2133 aba9c984 2019-09-08 stsp got_privsep_send_gitconfig_author_email_req(struct imsgbuf *ibuf)
2134 aba9c984 2019-09-08 stsp {
2135 aba9c984 2019-09-08 stsp if (imsg_compose(ibuf,
2136 aba9c984 2019-09-08 stsp GOT_IMSG_GITCONFIG_AUTHOR_EMAIL_REQUEST, 0, 0, -1, NULL, 0) == -1)
2137 aba9c984 2019-09-08 stsp return got_error_from_errno("imsg_compose "
2138 aba9c984 2019-09-08 stsp "GITCONFIG_AUTHOR_EMAIL_REQUEST");
2139 cd95becd 2019-11-29 stsp
2140 cd95becd 2019-11-29 stsp return flush_imsg(ibuf);
2141 cd95becd 2019-11-29 stsp }
2142 cd95becd 2019-11-29 stsp
2143 cd95becd 2019-11-29 stsp const struct got_error *
2144 cd95becd 2019-11-29 stsp got_privsep_send_gitconfig_remotes_req(struct imsgbuf *ibuf)
2145 cd95becd 2019-11-29 stsp {
2146 cd95becd 2019-11-29 stsp if (imsg_compose(ibuf,
2147 cd95becd 2019-11-29 stsp GOT_IMSG_GITCONFIG_REMOTES_REQUEST, 0, 0, -1, NULL, 0) == -1)
2148 cd95becd 2019-11-29 stsp return got_error_from_errno("imsg_compose "
2149 cd95becd 2019-11-29 stsp "GITCONFIG_REMOTE_REQUEST");
2150 aba9c984 2019-09-08 stsp
2151 aba9c984 2019-09-08 stsp return flush_imsg(ibuf);
2152 aba9c984 2019-09-08 stsp }
2153 aba9c984 2019-09-08 stsp
2154 aba9c984 2019-09-08 stsp const struct got_error *
2155 9a1cc63f 2020-02-03 stsp got_privsep_send_gitconfig_owner_req(struct imsgbuf *ibuf)
2156 9a1cc63f 2020-02-03 stsp {
2157 9a1cc63f 2020-02-03 stsp if (imsg_compose(ibuf,
2158 9a1cc63f 2020-02-03 stsp GOT_IMSG_GITCONFIG_OWNER_REQUEST, 0, 0, -1, NULL, 0) == -1)
2159 9a1cc63f 2020-02-03 stsp return got_error_from_errno("imsg_compose "
2160 9a1cc63f 2020-02-03 stsp "GITCONFIG_OWNER_REQUEST");
2161 9a1cc63f 2020-02-03 stsp
2162 9a1cc63f 2020-02-03 stsp return flush_imsg(ibuf);
2163 9a1cc63f 2020-02-03 stsp }
2164 9a1cc63f 2020-02-03 stsp
2165 9a1cc63f 2020-02-03 stsp const struct got_error *
2166 aba9c984 2019-09-08 stsp got_privsep_recv_gitconfig_str(char **str, struct imsgbuf *ibuf)
2167 aba9c984 2019-09-08 stsp {
2168 aba9c984 2019-09-08 stsp const struct got_error *err = NULL;
2169 aba9c984 2019-09-08 stsp struct imsg imsg;
2170 aba9c984 2019-09-08 stsp size_t datalen;
2171 aba9c984 2019-09-08 stsp const size_t min_datalen = 0;
2172 aba9c984 2019-09-08 stsp
2173 aba9c984 2019-09-08 stsp *str = NULL;
2174 aba9c984 2019-09-08 stsp
2175 aba9c984 2019-09-08 stsp err = got_privsep_recv_imsg(&imsg, ibuf, min_datalen);
2176 aba9c984 2019-09-08 stsp if (err)
2177 aba9c984 2019-09-08 stsp return err;
2178 aba9c984 2019-09-08 stsp datalen = imsg.hdr.len - IMSG_HEADER_SIZE;
2179 aba9c984 2019-09-08 stsp
2180 aba9c984 2019-09-08 stsp switch (imsg.hdr.type) {
2181 aba9c984 2019-09-08 stsp case GOT_IMSG_GITCONFIG_STR_VAL:
2182 aba9c984 2019-09-08 stsp if (datalen == 0)
2183 aba9c984 2019-09-08 stsp break;
2184 6c13dcd2 2020-09-18 stsp /* datalen does not include terminating \0 */
2185 6c13dcd2 2020-09-18 stsp *str = malloc(datalen + 1);
2186 aba9c984 2019-09-08 stsp if (*str == NULL) {
2187 aba9c984 2019-09-08 stsp err = got_error_from_errno("malloc");
2188 aba9c984 2019-09-08 stsp break;
2189 aba9c984 2019-09-08 stsp }
2190 6c13dcd2 2020-09-18 stsp memcpy(*str, imsg.data, datalen);
2191 6c13dcd2 2020-09-18 stsp (*str)[datalen] = '\0';
2192 aba9c984 2019-09-08 stsp break;
2193 aba9c984 2019-09-08 stsp default:
2194 aba9c984 2019-09-08 stsp err = got_error(GOT_ERR_PRIVSEP_MSG);
2195 aba9c984 2019-09-08 stsp break;
2196 aba9c984 2019-09-08 stsp }
2197 876c234b 2018-09-10 stsp
2198 aba9c984 2019-09-08 stsp imsg_free(&imsg);
2199 aba9c984 2019-09-08 stsp return err;
2200 aba9c984 2019-09-08 stsp }
2201 aba9c984 2019-09-08 stsp
2202 aba9c984 2019-09-08 stsp const struct got_error *
2203 aba9c984 2019-09-08 stsp got_privsep_recv_gitconfig_int(int *val, struct imsgbuf *ibuf)
2204 aba9c984 2019-09-08 stsp {
2205 aba9c984 2019-09-08 stsp const struct got_error *err = NULL;
2206 aba9c984 2019-09-08 stsp struct imsg imsg;
2207 aba9c984 2019-09-08 stsp size_t datalen;
2208 aba9c984 2019-09-08 stsp const size_t min_datalen =
2209 aba9c984 2019-09-08 stsp MIN(sizeof(struct got_imsg_error), sizeof(int));
2210 aba9c984 2019-09-08 stsp
2211 aba9c984 2019-09-08 stsp *val = 0;
2212 aba9c984 2019-09-08 stsp
2213 aba9c984 2019-09-08 stsp err = got_privsep_recv_imsg(&imsg, ibuf, min_datalen);
2214 aba9c984 2019-09-08 stsp if (err)
2215 aba9c984 2019-09-08 stsp return err;
2216 aba9c984 2019-09-08 stsp datalen = imsg.hdr.len - IMSG_HEADER_SIZE;
2217 aba9c984 2019-09-08 stsp
2218 aba9c984 2019-09-08 stsp switch (imsg.hdr.type) {
2219 aba9c984 2019-09-08 stsp case GOT_IMSG_GITCONFIG_INT_VAL:
2220 aba9c984 2019-09-08 stsp if (datalen != sizeof(*val)) {
2221 aba9c984 2019-09-08 stsp err = got_error(GOT_ERR_PRIVSEP_LEN);
2222 aba9c984 2019-09-08 stsp break;
2223 aba9c984 2019-09-08 stsp }
2224 aba9c984 2019-09-08 stsp memcpy(val, imsg.data, sizeof(*val));
2225 cd95becd 2019-11-29 stsp break;
2226 cd95becd 2019-11-29 stsp default:
2227 cd95becd 2019-11-29 stsp err = got_error(GOT_ERR_PRIVSEP_MSG);
2228 cd95becd 2019-11-29 stsp break;
2229 cd95becd 2019-11-29 stsp }
2230 cd95becd 2019-11-29 stsp
2231 cd95becd 2019-11-29 stsp imsg_free(&imsg);
2232 cd95becd 2019-11-29 stsp return err;
2233 b8adfa55 2020-09-25 stsp }
2234 b8adfa55 2020-09-25 stsp
2235 b8adfa55 2020-09-25 stsp static void
2236 b8adfa55 2020-09-25 stsp free_remote_data(struct got_remote_repo *remote)
2237 b8adfa55 2020-09-25 stsp {
2238 b8adfa55 2020-09-25 stsp int i;
2239 b8adfa55 2020-09-25 stsp
2240 b8adfa55 2020-09-25 stsp free(remote->name);
2241 6480c871 2021-08-30 stsp free(remote->fetch_url);
2242 6480c871 2021-08-30 stsp free(remote->send_url);
2243 6480c871 2021-08-30 stsp for (i = 0; i < remote->nfetch_branches; i++)
2244 6480c871 2021-08-30 stsp free(remote->fetch_branches[i]);
2245 6480c871 2021-08-30 stsp free(remote->fetch_branches);
2246 6480c871 2021-08-30 stsp for (i = 0; i < remote->nsend_branches; i++)
2247 6480c871 2021-08-30 stsp free(remote->send_branches[i]);
2248 6480c871 2021-08-30 stsp free(remote->send_branches);
2249 6480c871 2021-08-30 stsp for (i = 0; i < remote->nfetch_refs; i++)
2250 6480c871 2021-08-30 stsp free(remote->fetch_refs[i]);
2251 6480c871 2021-08-30 stsp free(remote->fetch_refs);
2252 cd95becd 2019-11-29 stsp }
2253 cd95becd 2019-11-29 stsp
2254 cd95becd 2019-11-29 stsp const struct got_error *
2255 cd95becd 2019-11-29 stsp got_privsep_recv_gitconfig_remotes(struct got_remote_repo **remotes,
2256 cd95becd 2019-11-29 stsp int *nremotes, struct imsgbuf *ibuf)
2257 cd95becd 2019-11-29 stsp {
2258 cd95becd 2019-11-29 stsp const struct got_error *err = NULL;
2259 cd95becd 2019-11-29 stsp struct imsg imsg;
2260 cd95becd 2019-11-29 stsp size_t datalen;
2261 cd95becd 2019-11-29 stsp struct got_imsg_remotes iremotes;
2262 cd95becd 2019-11-29 stsp struct got_imsg_remote iremote;
2263 cd95becd 2019-11-29 stsp
2264 cd95becd 2019-11-29 stsp *remotes = NULL;
2265 cd95becd 2019-11-29 stsp *nremotes = 0;
2266 d669b9c9 2020-02-22 stsp iremotes.nremotes = 0;
2267 cd95becd 2019-11-29 stsp
2268 cd95becd 2019-11-29 stsp err = got_privsep_recv_imsg(&imsg, ibuf, sizeof(iremotes));
2269 cd95becd 2019-11-29 stsp if (err)
2270 cd95becd 2019-11-29 stsp return err;
2271 cd95becd 2019-11-29 stsp datalen = imsg.hdr.len - IMSG_HEADER_SIZE;
2272 cd95becd 2019-11-29 stsp
2273 cd95becd 2019-11-29 stsp switch (imsg.hdr.type) {
2274 cd95becd 2019-11-29 stsp case GOT_IMSG_GITCONFIG_REMOTES:
2275 cd95becd 2019-11-29 stsp if (datalen != sizeof(iremotes)) {
2276 cd95becd 2019-11-29 stsp err = got_error(GOT_ERR_PRIVSEP_LEN);
2277 cd95becd 2019-11-29 stsp break;
2278 cd95becd 2019-11-29 stsp }
2279 cd95becd 2019-11-29 stsp memcpy(&iremotes, imsg.data, sizeof(iremotes));
2280 cd95becd 2019-11-29 stsp if (iremotes.nremotes == 0) {
2281 cd95becd 2019-11-29 stsp imsg_free(&imsg);
2282 cd95becd 2019-11-29 stsp return NULL;
2283 cd95becd 2019-11-29 stsp }
2284 aba9c984 2019-09-08 stsp break;
2285 aba9c984 2019-09-08 stsp default:
2286 54b1c5b5 2020-02-22 stsp imsg_free(&imsg);
2287 54b1c5b5 2020-02-22 stsp return got_error(GOT_ERR_PRIVSEP_MSG);
2288 aba9c984 2019-09-08 stsp }
2289 aba9c984 2019-09-08 stsp
2290 aba9c984 2019-09-08 stsp imsg_free(&imsg);
2291 cd95becd 2019-11-29 stsp
2292 5146eb39 2020-03-20 stsp *remotes = recallocarray(NULL, 0, iremotes.nremotes, sizeof(**remotes));
2293 cd95becd 2019-11-29 stsp if (*remotes == NULL)
2294 cd95becd 2019-11-29 stsp return got_error_from_errno("recallocarray");
2295 cd95becd 2019-11-29 stsp
2296 cd95becd 2019-11-29 stsp while (*nremotes < iremotes.nremotes) {
2297 cd95becd 2019-11-29 stsp struct got_remote_repo *remote;
2298 3168e5da 2020-09-10 stsp
2299 cd95becd 2019-11-29 stsp err = got_privsep_recv_imsg(&imsg, ibuf, sizeof(iremote));
2300 cd95becd 2019-11-29 stsp if (err)
2301 cd95becd 2019-11-29 stsp break;
2302 cd95becd 2019-11-29 stsp datalen = imsg.hdr.len - IMSG_HEADER_SIZE;
2303 cd95becd 2019-11-29 stsp
2304 cd95becd 2019-11-29 stsp switch (imsg.hdr.type) {
2305 cd95becd 2019-11-29 stsp case GOT_IMSG_GITCONFIG_REMOTE:
2306 cd95becd 2019-11-29 stsp remote = &(*remotes)[*nremotes];
2307 b8adfa55 2020-09-25 stsp memset(remote, 0, sizeof(*remote));
2308 cd95becd 2019-11-29 stsp if (datalen < sizeof(iremote)) {
2309 cd95becd 2019-11-29 stsp err = got_error(GOT_ERR_PRIVSEP_LEN);
2310 cd95becd 2019-11-29 stsp break;
2311 cd95becd 2019-11-29 stsp }
2312 cd95becd 2019-11-29 stsp memcpy(&iremote, imsg.data, sizeof(iremote));
2313 6480c871 2021-08-30 stsp if (iremote.name_len == 0 ||
2314 6480c871 2021-08-30 stsp iremote.fetch_url_len == 0 ||
2315 6480c871 2021-08-30 stsp iremote.send_url_len == 0 ||
2316 cd95becd 2019-11-29 stsp (sizeof(iremote) + iremote.name_len +
2317 6480c871 2021-08-30 stsp iremote.fetch_url_len + iremote.send_url_len) > datalen) {
2318 cd95becd 2019-11-29 stsp err = got_error(GOT_ERR_PRIVSEP_LEN);
2319 cd95becd 2019-11-29 stsp break;
2320 cd95becd 2019-11-29 stsp }
2321 cd95becd 2019-11-29 stsp remote->name = strndup(imsg.data + sizeof(iremote),
2322 cd95becd 2019-11-29 stsp iremote.name_len);
2323 cd95becd 2019-11-29 stsp if (remote->name == NULL) {
2324 cd95becd 2019-11-29 stsp err = got_error_from_errno("strndup");
2325 cd95becd 2019-11-29 stsp break;
2326 cd95becd 2019-11-29 stsp }
2327 6480c871 2021-08-30 stsp remote->fetch_url = strndup(imsg.data + sizeof(iremote) +
2328 6480c871 2021-08-30 stsp iremote.name_len, iremote.fetch_url_len);
2329 6480c871 2021-08-30 stsp if (remote->fetch_url == NULL) {
2330 cd95becd 2019-11-29 stsp err = got_error_from_errno("strndup");
2331 b8adfa55 2020-09-25 stsp free_remote_data(remote);
2332 cd95becd 2019-11-29 stsp break;
2333 cd95becd 2019-11-29 stsp }
2334 6480c871 2021-08-30 stsp remote->send_url = strndup(imsg.data + sizeof(iremote) +
2335 6480c871 2021-08-30 stsp iremote.name_len + iremote.fetch_url_len,
2336 6480c871 2021-08-30 stsp iremote.send_url_len);
2337 6480c871 2021-08-30 stsp if (remote->send_url == NULL) {
2338 6480c871 2021-08-30 stsp err = got_error_from_errno("strndup");
2339 6480c871 2021-08-30 stsp free_remote_data(remote);
2340 6480c871 2021-08-30 stsp break;
2341 6480c871 2021-08-30 stsp }
2342 469dd726 2020-03-20 stsp remote->mirror_references = iremote.mirror_references;
2343 0c8b29c5 2021-01-05 stsp remote->fetch_all_branches = iremote.fetch_all_branches;
2344 6480c871 2021-08-30 stsp remote->nfetch_branches = 0;
2345 6480c871 2021-08-30 stsp remote->fetch_branches = NULL;
2346 6480c871 2021-08-30 stsp remote->nsend_branches = 0;
2347 6480c871 2021-08-30 stsp remote->send_branches = NULL;
2348 6480c871 2021-08-30 stsp remote->nfetch_refs = 0;
2349 6480c871 2021-08-30 stsp remote->fetch_refs = NULL;
2350 cd95becd 2019-11-29 stsp (*nremotes)++;
2351 cd95becd 2019-11-29 stsp break;
2352 cd95becd 2019-11-29 stsp default:
2353 cd95becd 2019-11-29 stsp err = got_error(GOT_ERR_PRIVSEP_MSG);
2354 cd95becd 2019-11-29 stsp break;
2355 cd95becd 2019-11-29 stsp }
2356 cd95becd 2019-11-29 stsp
2357 cd95becd 2019-11-29 stsp imsg_free(&imsg);
2358 cd95becd 2019-11-29 stsp if (err)
2359 cd95becd 2019-11-29 stsp break;
2360 cd95becd 2019-11-29 stsp }
2361 cd95becd 2019-11-29 stsp
2362 cd95becd 2019-11-29 stsp if (err) {
2363 cd95becd 2019-11-29 stsp int i;
2364 b8adfa55 2020-09-25 stsp for (i = 0; i < *nremotes; i++)
2365 b8adfa55 2020-09-25 stsp free_remote_data(&(*remotes)[i]);
2366 cd95becd 2019-11-29 stsp free(*remotes);
2367 cd95becd 2019-11-29 stsp *remotes = NULL;
2368 cd95becd 2019-11-29 stsp *nremotes = 0;
2369 cd95becd 2019-11-29 stsp }
2370 aba9c984 2019-09-08 stsp return err;
2371 257add31 2020-09-09 stsp }
2372 257add31 2020-09-09 stsp
2373 257add31 2020-09-09 stsp const struct got_error *
2374 257add31 2020-09-09 stsp got_privsep_send_gotconfig_parse_req(struct imsgbuf *ibuf, int fd)
2375 257add31 2020-09-09 stsp {
2376 257add31 2020-09-09 stsp const struct got_error *err = NULL;
2377 257add31 2020-09-09 stsp
2378 257add31 2020-09-09 stsp if (imsg_compose(ibuf, GOT_IMSG_GOTCONFIG_PARSE_REQUEST, 0, 0, fd,
2379 257add31 2020-09-09 stsp NULL, 0) == -1) {
2380 257add31 2020-09-09 stsp err = got_error_from_errno("imsg_compose "
2381 257add31 2020-09-09 stsp "GOTCONFIG_PARSE_REQUEST");
2382 257add31 2020-09-09 stsp close(fd);
2383 257add31 2020-09-09 stsp return err;
2384 257add31 2020-09-09 stsp }
2385 257add31 2020-09-09 stsp
2386 257add31 2020-09-09 stsp return flush_imsg(ibuf);
2387 257add31 2020-09-09 stsp }
2388 257add31 2020-09-09 stsp
2389 257add31 2020-09-09 stsp const struct got_error *
2390 257add31 2020-09-09 stsp got_privsep_send_gotconfig_author_req(struct imsgbuf *ibuf)
2391 257add31 2020-09-09 stsp {
2392 257add31 2020-09-09 stsp if (imsg_compose(ibuf,
2393 257add31 2020-09-09 stsp GOT_IMSG_GOTCONFIG_AUTHOR_REQUEST, 0, 0, -1, NULL, 0) == -1)
2394 257add31 2020-09-09 stsp return got_error_from_errno("imsg_compose "
2395 257add31 2020-09-09 stsp "GOTCONFIG_AUTHOR_REQUEST");
2396 257add31 2020-09-09 stsp
2397 257add31 2020-09-09 stsp return flush_imsg(ibuf);
2398 ca6e02ac 2020-01-07 stsp }
2399 ca6e02ac 2020-01-07 stsp
2400 ca6e02ac 2020-01-07 stsp const struct got_error *
2401 257add31 2020-09-09 stsp got_privsep_send_gotconfig_remotes_req(struct imsgbuf *ibuf)
2402 257add31 2020-09-09 stsp {
2403 257add31 2020-09-09 stsp if (imsg_compose(ibuf,
2404 257add31 2020-09-09 stsp GOT_IMSG_GOTCONFIG_REMOTES_REQUEST, 0, 0, -1, NULL, 0) == -1)
2405 257add31 2020-09-09 stsp return got_error_from_errno("imsg_compose "
2406 257add31 2020-09-09 stsp "GOTCONFIG_REMOTE_REQUEST");
2407 257add31 2020-09-09 stsp
2408 257add31 2020-09-09 stsp return flush_imsg(ibuf);
2409 257add31 2020-09-09 stsp }
2410 257add31 2020-09-09 stsp
2411 257add31 2020-09-09 stsp const struct got_error *
2412 257add31 2020-09-09 stsp got_privsep_recv_gotconfig_str(char **str, struct imsgbuf *ibuf)
2413 257add31 2020-09-09 stsp {
2414 257add31 2020-09-09 stsp const struct got_error *err = NULL;
2415 257add31 2020-09-09 stsp struct imsg imsg;
2416 257add31 2020-09-09 stsp size_t datalen;
2417 257add31 2020-09-09 stsp const size_t min_datalen = 0;
2418 257add31 2020-09-09 stsp
2419 257add31 2020-09-09 stsp *str = NULL;
2420 257add31 2020-09-09 stsp
2421 257add31 2020-09-09 stsp err = got_privsep_recv_imsg(&imsg, ibuf, min_datalen);
2422 257add31 2020-09-09 stsp if (err)
2423 257add31 2020-09-09 stsp return err;
2424 257add31 2020-09-09 stsp datalen = imsg.hdr.len - IMSG_HEADER_SIZE;
2425 257add31 2020-09-09 stsp
2426 257add31 2020-09-09 stsp switch (imsg.hdr.type) {
2427 257add31 2020-09-09 stsp case GOT_IMSG_ERROR:
2428 257add31 2020-09-09 stsp if (datalen < sizeof(struct got_imsg_error)) {
2429 257add31 2020-09-09 stsp err = got_error(GOT_ERR_PRIVSEP_LEN);
2430 257add31 2020-09-09 stsp break;
2431 257add31 2020-09-09 stsp }
2432 257add31 2020-09-09 stsp err = recv_imsg_error(&imsg, datalen);
2433 257add31 2020-09-09 stsp break;
2434 257add31 2020-09-09 stsp case GOT_IMSG_GOTCONFIG_STR_VAL:
2435 257add31 2020-09-09 stsp if (datalen == 0)
2436 257add31 2020-09-09 stsp break;
2437 5874ea87 2020-09-18 stsp /* datalen does not include terminating \0 */
2438 5874ea87 2020-09-18 stsp *str = malloc(datalen + 1);
2439 257add31 2020-09-09 stsp if (*str == NULL) {
2440 257add31 2020-09-09 stsp err = got_error_from_errno("malloc");
2441 257add31 2020-09-09 stsp break;
2442 257add31 2020-09-09 stsp }
2443 5874ea87 2020-09-18 stsp memcpy(*str, imsg.data, datalen);
2444 5874ea87 2020-09-18 stsp (*str)[datalen] = '\0';
2445 257add31 2020-09-09 stsp break;
2446 257add31 2020-09-09 stsp default:
2447 257add31 2020-09-09 stsp err = got_error(GOT_ERR_PRIVSEP_MSG);
2448 257add31 2020-09-09 stsp break;
2449 257add31 2020-09-09 stsp }
2450 257add31 2020-09-09 stsp
2451 257add31 2020-09-09 stsp imsg_free(&imsg);
2452 257add31 2020-09-09 stsp return err;
2453 257add31 2020-09-09 stsp }
2454 257add31 2020-09-09 stsp
2455 257add31 2020-09-09 stsp const struct got_error *
2456 257add31 2020-09-09 stsp got_privsep_recv_gotconfig_remotes(struct got_remote_repo **remotes,
2457 257add31 2020-09-09 stsp int *nremotes, struct imsgbuf *ibuf)
2458 257add31 2020-09-09 stsp {
2459 257add31 2020-09-09 stsp const struct got_error *err = NULL;
2460 257add31 2020-09-09 stsp struct imsg imsg;
2461 257add31 2020-09-09 stsp size_t datalen;
2462 257add31 2020-09-09 stsp struct got_imsg_remotes iremotes;
2463 257add31 2020-09-09 stsp struct got_imsg_remote iremote;
2464 257add31 2020-09-09 stsp const size_t min_datalen =
2465 257add31 2020-09-09 stsp MIN(sizeof(struct got_imsg_error), sizeof(iremotes));
2466 257add31 2020-09-09 stsp
2467 257add31 2020-09-09 stsp *remotes = NULL;
2468 257add31 2020-09-09 stsp *nremotes = 0;
2469 257add31 2020-09-09 stsp iremotes.nremotes = 0;
2470 257add31 2020-09-09 stsp
2471 257add31 2020-09-09 stsp err = got_privsep_recv_imsg(&imsg, ibuf, min_datalen);
2472 257add31 2020-09-09 stsp if (err)
2473 257add31 2020-09-09 stsp return err;
2474 257add31 2020-09-09 stsp datalen = imsg.hdr.len - IMSG_HEADER_SIZE;
2475 257add31 2020-09-09 stsp
2476 257add31 2020-09-09 stsp switch (imsg.hdr.type) {
2477 257add31 2020-09-09 stsp case GOT_IMSG_ERROR:
2478 257add31 2020-09-09 stsp if (datalen < sizeof(struct got_imsg_error)) {
2479 257add31 2020-09-09 stsp err = got_error(GOT_ERR_PRIVSEP_LEN);
2480 257add31 2020-09-09 stsp break;
2481 257add31 2020-09-09 stsp }
2482 257add31 2020-09-09 stsp err = recv_imsg_error(&imsg, datalen);
2483 257add31 2020-09-09 stsp break;
2484 257add31 2020-09-09 stsp case GOT_IMSG_GOTCONFIG_REMOTES:
2485 257add31 2020-09-09 stsp if (datalen != sizeof(iremotes)) {
2486 257add31 2020-09-09 stsp err = got_error(GOT_ERR_PRIVSEP_LEN);
2487 257add31 2020-09-09 stsp break;
2488 257add31 2020-09-09 stsp }
2489 257add31 2020-09-09 stsp memcpy(&iremotes, imsg.data, sizeof(iremotes));
2490 257add31 2020-09-09 stsp if (iremotes.nremotes == 0) {
2491 257add31 2020-09-09 stsp imsg_free(&imsg);
2492 257add31 2020-09-09 stsp return NULL;
2493 257add31 2020-09-09 stsp }
2494 257add31 2020-09-09 stsp break;
2495 257add31 2020-09-09 stsp default:
2496 257add31 2020-09-09 stsp imsg_free(&imsg);
2497 257add31 2020-09-09 stsp return got_error(GOT_ERR_PRIVSEP_MSG);
2498 257add31 2020-09-09 stsp }
2499 257add31 2020-09-09 stsp
2500 257add31 2020-09-09 stsp imsg_free(&imsg);
2501 257add31 2020-09-09 stsp
2502 257add31 2020-09-09 stsp *remotes = recallocarray(NULL, 0, iremotes.nremotes, sizeof(**remotes));
2503 257add31 2020-09-09 stsp if (*remotes == NULL)
2504 257add31 2020-09-09 stsp return got_error_from_errno("recallocarray");
2505 257add31 2020-09-09 stsp
2506 257add31 2020-09-09 stsp while (*nremotes < iremotes.nremotes) {
2507 257add31 2020-09-09 stsp struct got_remote_repo *remote;
2508 257add31 2020-09-09 stsp const size_t min_datalen =
2509 257add31 2020-09-09 stsp MIN(sizeof(struct got_imsg_error), sizeof(iremote));
2510 b8adfa55 2020-09-25 stsp int i;
2511 257add31 2020-09-09 stsp
2512 257add31 2020-09-09 stsp err = got_privsep_recv_imsg(&imsg, ibuf, min_datalen);
2513 257add31 2020-09-09 stsp if (err)
2514 257add31 2020-09-09 stsp break;
2515 257add31 2020-09-09 stsp datalen = imsg.hdr.len - IMSG_HEADER_SIZE;
2516 257add31 2020-09-09 stsp
2517 257add31 2020-09-09 stsp switch (imsg.hdr.type) {
2518 257add31 2020-09-09 stsp case GOT_IMSG_ERROR:
2519 257add31 2020-09-09 stsp if (datalen < sizeof(struct got_imsg_error)) {
2520 257add31 2020-09-09 stsp err = got_error(GOT_ERR_PRIVSEP_LEN);
2521 257add31 2020-09-09 stsp break;
2522 257add31 2020-09-09 stsp }
2523 257add31 2020-09-09 stsp err = recv_imsg_error(&imsg, datalen);
2524 257add31 2020-09-09 stsp break;
2525 257add31 2020-09-09 stsp case GOT_IMSG_GOTCONFIG_REMOTE:
2526 257add31 2020-09-09 stsp remote = &(*remotes)[*nremotes];
2527 b8adfa55 2020-09-25 stsp memset(remote, 0, sizeof(*remote));
2528 257add31 2020-09-09 stsp if (datalen < sizeof(iremote)) {
2529 257add31 2020-09-09 stsp err = got_error(GOT_ERR_PRIVSEP_LEN);
2530 257add31 2020-09-09 stsp break;
2531 257add31 2020-09-09 stsp }
2532 257add31 2020-09-09 stsp memcpy(&iremote, imsg.data, sizeof(iremote));
2533 6480c871 2021-08-30 stsp if (iremote.name_len == 0 ||
2534 6480c871 2021-08-30 stsp (iremote.fetch_url_len == 0 &&
2535 6480c871 2021-08-30 stsp iremote.send_url_len == 0) ||
2536 257add31 2020-09-09 stsp (sizeof(iremote) + iremote.name_len +
2537 6480c871 2021-08-30 stsp iremote.fetch_url_len + iremote.send_url_len) >
2538 6480c871 2021-08-30 stsp datalen) {
2539 257add31 2020-09-09 stsp err = got_error(GOT_ERR_PRIVSEP_LEN);
2540 257add31 2020-09-09 stsp break;
2541 257add31 2020-09-09 stsp }
2542 257add31 2020-09-09 stsp remote->name = strndup(imsg.data + sizeof(iremote),
2543 257add31 2020-09-09 stsp iremote.name_len);
2544 257add31 2020-09-09 stsp if (remote->name == NULL) {
2545 257add31 2020-09-09 stsp err = got_error_from_errno("strndup");
2546 257add31 2020-09-09 stsp break;
2547 257add31 2020-09-09 stsp }
2548 6480c871 2021-08-30 stsp remote->fetch_url = strndup(imsg.data +
2549 6480c871 2021-08-30 stsp sizeof(iremote) + iremote.name_len,
2550 6480c871 2021-08-30 stsp iremote.fetch_url_len);
2551 6480c871 2021-08-30 stsp if (remote->fetch_url == NULL) {
2552 6480c871 2021-08-30 stsp err = got_error_from_errno("strndup");
2553 6480c871 2021-08-30 stsp free_remote_data(remote);
2554 6480c871 2021-08-30 stsp break;
2555 6480c871 2021-08-30 stsp }
2556 6480c871 2021-08-30 stsp remote->send_url = strndup(imsg.data +
2557 6480c871 2021-08-30 stsp sizeof(iremote) + iremote.name_len +
2558 6480c871 2021-08-30 stsp iremote.fetch_url_len, iremote.send_url_len);
2559 6480c871 2021-08-30 stsp if (remote->send_url == NULL) {
2560 257add31 2020-09-09 stsp err = got_error_from_errno("strndup");
2561 b8adfa55 2020-09-25 stsp free_remote_data(remote);
2562 257add31 2020-09-09 stsp break;
2563 257add31 2020-09-09 stsp }
2564 257add31 2020-09-09 stsp remote->mirror_references = iremote.mirror_references;
2565 0c8b29c5 2021-01-05 stsp remote->fetch_all_branches = iremote.fetch_all_branches;
2566 6480c871 2021-08-30 stsp if (iremote.nfetch_branches > 0) {
2567 6480c871 2021-08-30 stsp remote->fetch_branches = recallocarray(NULL, 0,
2568 6480c871 2021-08-30 stsp iremote.nfetch_branches, sizeof(char *));
2569 6480c871 2021-08-30 stsp if (remote->fetch_branches == NULL) {
2570 b8adfa55 2020-09-25 stsp err = got_error_from_errno("calloc");
2571 b8adfa55 2020-09-25 stsp free_remote_data(remote);
2572 b8adfa55 2020-09-25 stsp break;
2573 b8adfa55 2020-09-25 stsp }
2574 b8adfa55 2020-09-25 stsp }
2575 6480c871 2021-08-30 stsp remote->nfetch_branches = 0;
2576 6480c871 2021-08-30 stsp for (i = 0; i < iremote.nfetch_branches; i++) {
2577 b8adfa55 2020-09-25 stsp char *branch;
2578 b8adfa55 2020-09-25 stsp err = got_privsep_recv_gotconfig_str(&branch,
2579 b8adfa55 2020-09-25 stsp ibuf);
2580 b8adfa55 2020-09-25 stsp if (err) {
2581 b8adfa55 2020-09-25 stsp free_remote_data(remote);
2582 b8adfa55 2020-09-25 stsp goto done;
2583 b8adfa55 2020-09-25 stsp }
2584 6480c871 2021-08-30 stsp remote->fetch_branches[i] = branch;
2585 6480c871 2021-08-30 stsp remote->nfetch_branches++;
2586 99495ddb 2021-01-10 stsp }
2587 6480c871 2021-08-30 stsp if (iremote.nsend_branches > 0) {
2588 6480c871 2021-08-30 stsp remote->send_branches = recallocarray(NULL, 0,
2589 6480c871 2021-08-30 stsp iremote.nsend_branches, sizeof(char *));
2590 6480c871 2021-08-30 stsp if (remote->send_branches == NULL) {
2591 99495ddb 2021-01-10 stsp err = got_error_from_errno("calloc");
2592 99495ddb 2021-01-10 stsp free_remote_data(remote);
2593 99495ddb 2021-01-10 stsp break;
2594 99495ddb 2021-01-10 stsp }
2595 b8adfa55 2020-09-25 stsp }
2596 6480c871 2021-08-30 stsp remote->nsend_branches = 0;
2597 6480c871 2021-08-30 stsp for (i = 0; i < iremote.nsend_branches; i++) {
2598 6480c871 2021-08-30 stsp char *branch;
2599 6480c871 2021-08-30 stsp err = got_privsep_recv_gotconfig_str(&branch,
2600 6480c871 2021-08-30 stsp ibuf);
2601 6480c871 2021-08-30 stsp if (err) {
2602 6480c871 2021-08-30 stsp free_remote_data(remote);
2603 6480c871 2021-08-30 stsp goto done;
2604 6480c871 2021-08-30 stsp }
2605 6480c871 2021-08-30 stsp remote->send_branches[i] = branch;
2606 6480c871 2021-08-30 stsp remote->nsend_branches++;
2607 6480c871 2021-08-30 stsp }
2608 6480c871 2021-08-30 stsp if (iremote.nfetch_refs > 0) {
2609 6480c871 2021-08-30 stsp remote->fetch_refs = recallocarray(NULL, 0,
2610 6480c871 2021-08-30 stsp iremote.nfetch_refs, sizeof(char *));
2611 6480c871 2021-08-30 stsp if (remote->fetch_refs == NULL) {
2612 6480c871 2021-08-30 stsp err = got_error_from_errno("calloc");
2613 6480c871 2021-08-30 stsp free_remote_data(remote);
2614 6480c871 2021-08-30 stsp break;
2615 6480c871 2021-08-30 stsp }
2616 6480c871 2021-08-30 stsp }
2617 6480c871 2021-08-30 stsp remote->nfetch_refs = 0;
2618 6480c871 2021-08-30 stsp for (i = 0; i < iremote.nfetch_refs; i++) {
2619 99495ddb 2021-01-10 stsp char *ref;
2620 99495ddb 2021-01-10 stsp err = got_privsep_recv_gotconfig_str(&ref,
2621 99495ddb 2021-01-10 stsp ibuf);
2622 99495ddb 2021-01-10 stsp if (err) {
2623 99495ddb 2021-01-10 stsp free_remote_data(remote);
2624 99495ddb 2021-01-10 stsp goto done;
2625 99495ddb 2021-01-10 stsp }
2626 6480c871 2021-08-30 stsp remote->fetch_refs[i] = ref;
2627 6480c871 2021-08-30 stsp remote->nfetch_refs++;
2628 99495ddb 2021-01-10 stsp }
2629 257add31 2020-09-09 stsp (*nremotes)++;
2630 257add31 2020-09-09 stsp break;
2631 257add31 2020-09-09 stsp default:
2632 257add31 2020-09-09 stsp err = got_error(GOT_ERR_PRIVSEP_MSG);
2633 257add31 2020-09-09 stsp break;
2634 257add31 2020-09-09 stsp }
2635 257add31 2020-09-09 stsp
2636 257add31 2020-09-09 stsp imsg_free(&imsg);
2637 257add31 2020-09-09 stsp if (err)
2638 257add31 2020-09-09 stsp break;
2639 257add31 2020-09-09 stsp }
2640 b8adfa55 2020-09-25 stsp done:
2641 257add31 2020-09-09 stsp if (err) {
2642 257add31 2020-09-09 stsp int i;
2643 b8adfa55 2020-09-25 stsp for (i = 0; i < *nremotes; i++)
2644 b8adfa55 2020-09-25 stsp free_remote_data(&(*remotes)[i]);
2645 257add31 2020-09-09 stsp free(*remotes);
2646 257add31 2020-09-09 stsp *remotes = NULL;
2647 257add31 2020-09-09 stsp *nremotes = 0;
2648 257add31 2020-09-09 stsp }
2649 257add31 2020-09-09 stsp return err;
2650 257add31 2020-09-09 stsp }
2651 257add31 2020-09-09 stsp
2652 257add31 2020-09-09 stsp const struct got_error *
2653 ca6e02ac 2020-01-07 stsp got_privsep_send_commit_traversal_request(struct imsgbuf *ibuf,
2654 abc59930 2021-09-05 naddy struct got_object_id *id, int idx, const char *path)
2655 ca6e02ac 2020-01-07 stsp {
2656 ca6e02ac 2020-01-07 stsp struct ibuf *wbuf;
2657 ca6e02ac 2020-01-07 stsp size_t path_len = strlen(path) + 1;
2658 ca6e02ac 2020-01-07 stsp
2659 ca6e02ac 2020-01-07 stsp wbuf = imsg_create(ibuf, GOT_IMSG_COMMIT_TRAVERSAL_REQUEST, 0, 0,
2660 ca6e02ac 2020-01-07 stsp sizeof(struct got_imsg_commit_traversal_request) + path_len);
2661 ca6e02ac 2020-01-07 stsp if (wbuf == NULL)
2662 ca6e02ac 2020-01-07 stsp return got_error_from_errno(
2663 ca6e02ac 2020-01-07 stsp "imsg_create COMMIT_TRAVERSAL_REQUEST");
2664 e9f1a409 2022-05-19 thomas if (imsg_add(wbuf, id->sha1, SHA1_DIGEST_LENGTH) == -1)
2665 e9f1a409 2022-05-19 thomas return got_error_from_errno("imsg_add "
2666 e9f1a409 2022-05-19 thomas "COMMIT_TRAVERSAL_REQUEST");
2667 e9f1a409 2022-05-19 thomas if (imsg_add(wbuf, &idx, sizeof(idx)) == -1)
2668 e9f1a409 2022-05-19 thomas return got_error_from_errno("imsg_add "
2669 e9f1a409 2022-05-19 thomas "COMMIT_TRAVERSAL_REQUEST");
2670 e9f1a409 2022-05-19 thomas if (imsg_add(wbuf, path, path_len) == -1)
2671 e9f1a409 2022-05-19 thomas return got_error_from_errno("imsg_add "
2672 e9f1a409 2022-05-19 thomas "COMMIT_TRAVERSAL_REQUEST");
2673 ca6e02ac 2020-01-07 stsp
2674 ca6e02ac 2020-01-07 stsp wbuf->fd = -1;
2675 ca6e02ac 2020-01-07 stsp imsg_close(ibuf, wbuf);
2676 ca6e02ac 2020-01-07 stsp
2677 ca6e02ac 2020-01-07 stsp return flush_imsg(ibuf);
2678 ca6e02ac 2020-01-07 stsp }
2679 ca6e02ac 2020-01-07 stsp
2680 ca6e02ac 2020-01-07 stsp const struct got_error *
2681 ca6e02ac 2020-01-07 stsp got_privsep_recv_traversed_commits(struct got_commit_object **changed_commit,
2682 ca6e02ac 2020-01-07 stsp struct got_object_id **changed_commit_id,
2683 ca6e02ac 2020-01-07 stsp struct got_object_id_queue *commit_ids, struct imsgbuf *ibuf)
2684 ca6e02ac 2020-01-07 stsp {
2685 ca6e02ac 2020-01-07 stsp const struct got_error *err = NULL;
2686 ca6e02ac 2020-01-07 stsp struct imsg imsg;
2687 ca6e02ac 2020-01-07 stsp struct got_imsg_traversed_commits *icommits;
2688 ca6e02ac 2020-01-07 stsp size_t datalen;
2689 ca6e02ac 2020-01-07 stsp int i, done = 0;
2690 ca6e02ac 2020-01-07 stsp
2691 ca6e02ac 2020-01-07 stsp *changed_commit = NULL;
2692 ca6e02ac 2020-01-07 stsp *changed_commit_id = NULL;
2693 ca6e02ac 2020-01-07 stsp
2694 ca6e02ac 2020-01-07 stsp while (!done) {
2695 ca6e02ac 2020-01-07 stsp err = got_privsep_recv_imsg(&imsg, ibuf, 0);
2696 ca6e02ac 2020-01-07 stsp if (err)
2697 ca6e02ac 2020-01-07 stsp return err;
2698 ca6e02ac 2020-01-07 stsp
2699 ca6e02ac 2020-01-07 stsp datalen = imsg.hdr.len - IMSG_HEADER_SIZE;
2700 ca6e02ac 2020-01-07 stsp switch (imsg.hdr.type) {
2701 ca6e02ac 2020-01-07 stsp case GOT_IMSG_TRAVERSED_COMMITS:
2702 ca6e02ac 2020-01-07 stsp icommits = imsg.data;
2703 ca6e02ac 2020-01-07 stsp if (datalen != sizeof(*icommits) +
2704 ca6e02ac 2020-01-07 stsp icommits->ncommits * SHA1_DIGEST_LENGTH) {
2705 ca6e02ac 2020-01-07 stsp err = got_error(GOT_ERR_PRIVSEP_LEN);
2706 ca6e02ac 2020-01-07 stsp break;
2707 ca6e02ac 2020-01-07 stsp }
2708 ca6e02ac 2020-01-07 stsp for (i = 0; i < icommits->ncommits; i++) {
2709 ca6e02ac 2020-01-07 stsp struct got_object_qid *qid;
2710 ca6e02ac 2020-01-07 stsp uint8_t *sha1 = (uint8_t *)imsg.data +
2711 ca6e02ac 2020-01-07 stsp sizeof(*icommits) + i * SHA1_DIGEST_LENGTH;
2712 ca6e02ac 2020-01-07 stsp err = got_object_qid_alloc_partial(&qid);
2713 ca6e02ac 2020-01-07 stsp if (err)
2714 ca6e02ac 2020-01-07 stsp break;
2715 ec242592 2022-04-22 thomas memcpy(qid->id.sha1, sha1, SHA1_DIGEST_LENGTH);
2716 dbdddfee 2021-06-23 naddy STAILQ_INSERT_TAIL(commit_ids, qid, entry);
2717 ca6e02ac 2020-01-07 stsp
2718 ca6e02ac 2020-01-07 stsp /* The last commit may contain a change. */
2719 ca6e02ac 2020-01-07 stsp if (i == icommits->ncommits - 1) {
2720 ca6e02ac 2020-01-07 stsp *changed_commit_id =
2721 ec242592 2022-04-22 thomas got_object_id_dup(&qid->id);
2722 ca6e02ac 2020-01-07 stsp if (*changed_commit_id == NULL) {
2723 ca6e02ac 2020-01-07 stsp err = got_error_from_errno(
2724 ca6e02ac 2020-01-07 stsp "got_object_id_dup");
2725 ca6e02ac 2020-01-07 stsp break;
2726 ca6e02ac 2020-01-07 stsp }
2727 ca6e02ac 2020-01-07 stsp }
2728 ca6e02ac 2020-01-07 stsp }
2729 ca6e02ac 2020-01-07 stsp break;
2730 ca6e02ac 2020-01-07 stsp case GOT_IMSG_COMMIT:
2731 ca6e02ac 2020-01-07 stsp if (*changed_commit_id == NULL) {
2732 ca6e02ac 2020-01-07 stsp err = got_error(GOT_ERR_PRIVSEP_MSG);
2733 ca6e02ac 2020-01-07 stsp break;
2734 ca6e02ac 2020-01-07 stsp }
2735 ca6e02ac 2020-01-07 stsp err = get_commit_from_imsg(changed_commit, &imsg,
2736 ca6e02ac 2020-01-07 stsp datalen, ibuf);
2737 ca6e02ac 2020-01-07 stsp break;
2738 ca6e02ac 2020-01-07 stsp case GOT_IMSG_COMMIT_TRAVERSAL_DONE:
2739 ca6e02ac 2020-01-07 stsp done = 1;
2740 ca6e02ac 2020-01-07 stsp break;
2741 ca6e02ac 2020-01-07 stsp default:
2742 ca6e02ac 2020-01-07 stsp err = got_error(GOT_ERR_PRIVSEP_MSG);
2743 ca6e02ac 2020-01-07 stsp break;
2744 ca6e02ac 2020-01-07 stsp }
2745 ca6e02ac 2020-01-07 stsp
2746 ca6e02ac 2020-01-07 stsp imsg_free(&imsg);
2747 ca6e02ac 2020-01-07 stsp if (err)
2748 ca6e02ac 2020-01-07 stsp break;
2749 ca6e02ac 2020-01-07 stsp }
2750 ca6e02ac 2020-01-07 stsp
2751 ca6e02ac 2020-01-07 stsp if (err)
2752 ca6e02ac 2020-01-07 stsp got_object_id_queue_free(commit_ids);
2753 13280750 2022-06-13 thomas return err;
2754 13280750 2022-06-13 thomas }
2755 13280750 2022-06-13 thomas
2756 13280750 2022-06-13 thomas const struct got_error *
2757 13280750 2022-06-13 thomas got_privsep_send_enumerated_tree(size_t *totlen, struct imsgbuf *ibuf,
2758 13280750 2022-06-13 thomas struct got_object_id *tree_id, const char *path,
2759 13280750 2022-06-13 thomas struct got_parsed_tree_entry *entries, int nentries)
2760 13280750 2022-06-13 thomas {
2761 13280750 2022-06-13 thomas const struct got_error *err = NULL;
2762 13280750 2022-06-13 thomas struct ibuf *wbuf;
2763 13280750 2022-06-13 thomas size_t path_len = strlen(path);
2764 13280750 2022-06-13 thomas size_t msglen;
2765 13280750 2022-06-13 thomas
2766 13280750 2022-06-13 thomas msglen = sizeof(struct got_imsg_enumerated_tree) + path_len;
2767 13280750 2022-06-13 thomas wbuf = imsg_create(ibuf, GOT_IMSG_ENUMERATED_TREE, 0, 0, msglen);
2768 13280750 2022-06-13 thomas if (wbuf == NULL)
2769 13280750 2022-06-13 thomas return got_error_from_errno("imsg_create ENUMERATED_TREE");
2770 13280750 2022-06-13 thomas
2771 98b30215 2022-06-13 thomas if (imsg_add(wbuf, tree_id->sha1, SHA1_DIGEST_LENGTH) == -1)
2772 98b30215 2022-06-13 thomas return got_error_from_errno("imsg_add ENUMERATED_TREE");
2773 98b30215 2022-06-13 thomas if (imsg_add(wbuf, &nentries, sizeof(nentries)) == -1)
2774 98b30215 2022-06-13 thomas return got_error_from_errno("imsg_add ENUMERATED_TREE");
2775 98b30215 2022-06-13 thomas if (imsg_add(wbuf, path, path_len) == -1)
2776 98b30215 2022-06-13 thomas return got_error_from_errno("imsg_add ENUMERATED_TREE");
2777 13280750 2022-06-13 thomas
2778 13280750 2022-06-13 thomas wbuf->fd = -1;
2779 13280750 2022-06-13 thomas imsg_close(ibuf, wbuf);
2780 13280750 2022-06-13 thomas
2781 13280750 2022-06-13 thomas if (entries) {
2782 13280750 2022-06-13 thomas err = send_tree_entries(ibuf, entries, nentries);
2783 13280750 2022-06-13 thomas if (err)
2784 13280750 2022-06-13 thomas return err;
2785 13280750 2022-06-13 thomas }
2786 13280750 2022-06-13 thomas
2787 13280750 2022-06-13 thomas return flush_imsg(ibuf);
2788 13280750 2022-06-13 thomas }
2789 13280750 2022-06-13 thomas
2790 13280750 2022-06-13 thomas const struct got_error *
2791 13280750 2022-06-13 thomas got_privsep_send_object_enumeration_request(struct imsgbuf *ibuf)
2792 13280750 2022-06-13 thomas {
2793 13280750 2022-06-13 thomas if (imsg_compose(ibuf, GOT_IMSG_OBJECT_ENUMERATION_REQUEST,
2794 13280750 2022-06-13 thomas 0, 0, -1, NULL, 0) == -1)
2795 13280750 2022-06-13 thomas return got_error_from_errno("imsg_compose "
2796 13280750 2022-06-13 thomas "OBJECT_ENUMERATION_REQUEST");
2797 13280750 2022-06-13 thomas
2798 13280750 2022-06-13 thomas return flush_imsg(ibuf);
2799 13280750 2022-06-13 thomas }
2800 13280750 2022-06-13 thomas
2801 13280750 2022-06-13 thomas const struct got_error *
2802 13280750 2022-06-13 thomas got_privsep_send_object_enumeration_done(struct imsgbuf *ibuf)
2803 13280750 2022-06-13 thomas {
2804 13280750 2022-06-13 thomas if (imsg_compose(ibuf, GOT_IMSG_OBJECT_ENUMERATION_DONE,
2805 13280750 2022-06-13 thomas 0, 0, -1, NULL, 0) == -1)
2806 13280750 2022-06-13 thomas return got_error_from_errno("imsg_compose "
2807 13280750 2022-06-13 thomas "OBJECT_ENUMERATION_DONE");
2808 13280750 2022-06-13 thomas
2809 13280750 2022-06-13 thomas return flush_imsg(ibuf);
2810 13280750 2022-06-13 thomas }
2811 13280750 2022-06-13 thomas
2812 13280750 2022-06-13 thomas const struct got_error *
2813 13280750 2022-06-13 thomas got_privsep_send_enumerated_commit(struct imsgbuf *ibuf,
2814 13280750 2022-06-13 thomas struct got_object_id *id, time_t mtime)
2815 13280750 2022-06-13 thomas {
2816 13280750 2022-06-13 thomas struct ibuf *wbuf;
2817 13280750 2022-06-13 thomas
2818 13280750 2022-06-13 thomas wbuf = imsg_create(ibuf, GOT_IMSG_ENUMERATED_COMMIT, 0, 0,
2819 13280750 2022-06-13 thomas sizeof(struct got_imsg_enumerated_commit) + SHA1_DIGEST_LENGTH);
2820 13280750 2022-06-13 thomas if (wbuf == NULL)
2821 13280750 2022-06-13 thomas return got_error_from_errno("imsg_create ENUMERATED_COMMIT");
2822 13280750 2022-06-13 thomas
2823 13280750 2022-06-13 thomas /* Keep in sync with struct got_imsg_enumerated_commit! */
2824 13280750 2022-06-13 thomas if (imsg_add(wbuf, id, SHA1_DIGEST_LENGTH) == -1)
2825 13280750 2022-06-13 thomas return got_error_from_errno("imsg_add ENUMERATED_COMMIT");
2826 13280750 2022-06-13 thomas if (imsg_add(wbuf, &mtime, sizeof(mtime)) == -1)
2827 13280750 2022-06-13 thomas return got_error_from_errno("imsg_add ENUMERATED_COMMIT");
2828 13280750 2022-06-13 thomas
2829 13280750 2022-06-13 thomas wbuf->fd = -1;
2830 13280750 2022-06-13 thomas imsg_close(ibuf, wbuf);
2831 13280750 2022-06-13 thomas /* Don't flush yet, tree entries or ENUMERATION_DONE will follow. */
2832 13280750 2022-06-13 thomas return NULL;
2833 13280750 2022-06-13 thomas }
2834 13280750 2022-06-13 thomas
2835 13280750 2022-06-13 thomas const struct got_error *
2836 13280750 2022-06-13 thomas got_privsep_recv_enumerated_objects(struct imsgbuf *ibuf,
2837 13280750 2022-06-13 thomas got_object_enumerate_commit_cb cb_commit,
2838 13280750 2022-06-13 thomas got_object_enumerate_tree_cb cb_tree, void *cb_arg,
2839 13280750 2022-06-13 thomas struct got_repository *repo)
2840 13280750 2022-06-13 thomas {
2841 13280750 2022-06-13 thomas const struct got_error *err = NULL;
2842 13280750 2022-06-13 thomas struct imsg imsg;
2843 13280750 2022-06-13 thomas struct got_imsg_enumerated_commit *icommit = NULL;
2844 13280750 2022-06-13 thomas struct got_object_id commit_id;
2845 13280750 2022-06-13 thomas int have_commit = 0;
2846 13280750 2022-06-13 thomas time_t mtime = 0;
2847 13280750 2022-06-13 thomas struct got_tree_object tree;
2848 13280750 2022-06-13 thomas struct got_imsg_enumerated_tree *itree;
2849 13280750 2022-06-13 thomas struct got_object_id tree_id;
2850 13280750 2022-06-13 thomas char *path = NULL, *canon_path = NULL;
2851 13280750 2022-06-13 thomas size_t datalen, path_len;
2852 13280750 2022-06-13 thomas int nentries = -1;
2853 13280750 2022-06-13 thomas int done = 0;
2854 13280750 2022-06-13 thomas
2855 13280750 2022-06-13 thomas memset(&tree, 0, sizeof(tree));
2856 13280750 2022-06-13 thomas
2857 13280750 2022-06-13 thomas while (!done) {
2858 13280750 2022-06-13 thomas err = got_privsep_recv_imsg(&imsg, ibuf, 0);
2859 13280750 2022-06-13 thomas if (err)
2860 13280750 2022-06-13 thomas break;
2861 13280750 2022-06-13 thomas
2862 13280750 2022-06-13 thomas datalen = imsg.hdr.len - IMSG_HEADER_SIZE;
2863 13280750 2022-06-13 thomas switch (imsg.hdr.type) {
2864 13280750 2022-06-13 thomas case GOT_IMSG_ENUMERATED_COMMIT:
2865 13280750 2022-06-13 thomas if (have_commit && nentries != -1) {
2866 13280750 2022-06-13 thomas err = got_error(GOT_ERR_PRIVSEP_MSG);
2867 13280750 2022-06-13 thomas break;
2868 13280750 2022-06-13 thomas }
2869 13280750 2022-06-13 thomas if (datalen != sizeof(*icommit)) {
2870 13280750 2022-06-13 thomas err = got_error(GOT_ERR_PRIVSEP_LEN);
2871 13280750 2022-06-13 thomas break;
2872 13280750 2022-06-13 thomas }
2873 13280750 2022-06-13 thomas icommit = (struct got_imsg_enumerated_commit *)imsg.data;
2874 13280750 2022-06-13 thomas memcpy(commit_id.sha1, icommit->id, SHA1_DIGEST_LENGTH);
2875 13280750 2022-06-13 thomas mtime = icommit->mtime;
2876 13280750 2022-06-13 thomas err = cb_commit(cb_arg, mtime, &commit_id, repo);
2877 13280750 2022-06-13 thomas if (err)
2878 13280750 2022-06-13 thomas break;
2879 13280750 2022-06-13 thomas have_commit = 1;
2880 13280750 2022-06-13 thomas break;
2881 13280750 2022-06-13 thomas case GOT_IMSG_ENUMERATED_TREE:
2882 13280750 2022-06-13 thomas /* Should be preceeded by GOT_IMSG_ENUMERATED_COMMIT. */
2883 13280750 2022-06-13 thomas if (!have_commit) {
2884 13280750 2022-06-13 thomas err = got_error(GOT_ERR_PRIVSEP_MSG);
2885 13280750 2022-06-13 thomas break;
2886 13280750 2022-06-13 thomas }
2887 13280750 2022-06-13 thomas if (datalen < sizeof(*itree)) {
2888 13280750 2022-06-13 thomas err = got_error(GOT_ERR_PRIVSEP_LEN);
2889 13280750 2022-06-13 thomas break;
2890 13280750 2022-06-13 thomas }
2891 13280750 2022-06-13 thomas itree = imsg.data;
2892 13280750 2022-06-13 thomas path_len = datalen - sizeof(*itree);
2893 13280750 2022-06-13 thomas if (path_len == 0) {
2894 13280750 2022-06-13 thomas err = got_error(GOT_ERR_PRIVSEP_LEN);
2895 13280750 2022-06-13 thomas break;
2896 13280750 2022-06-13 thomas }
2897 13280750 2022-06-13 thomas memcpy(tree_id.sha1, itree->id, sizeof(tree_id.sha1));
2898 13280750 2022-06-13 thomas free(path);
2899 13280750 2022-06-13 thomas path = malloc(path_len + 1);
2900 13280750 2022-06-13 thomas if (path == NULL) {
2901 13280750 2022-06-13 thomas err = got_error_from_errno("malloc");
2902 13280750 2022-06-13 thomas break;
2903 13280750 2022-06-13 thomas }
2904 13280750 2022-06-13 thomas free(canon_path);
2905 13280750 2022-06-13 thomas canon_path = malloc(path_len + 1);
2906 13280750 2022-06-13 thomas if (canon_path == NULL) {
2907 13280750 2022-06-13 thomas err = got_error_from_errno("malloc");
2908 13280750 2022-06-13 thomas break;
2909 13280750 2022-06-13 thomas }
2910 13280750 2022-06-13 thomas memcpy(path, (uint8_t *)imsg.data + sizeof(*itree),
2911 13280750 2022-06-13 thomas path_len);
2912 13280750 2022-06-13 thomas path[path_len] = '\0';
2913 13280750 2022-06-13 thomas if (!got_path_is_absolute(path)) {
2914 13280750 2022-06-13 thomas err = got_error(GOT_ERR_BAD_PATH);
2915 13280750 2022-06-13 thomas break;
2916 13280750 2022-06-13 thomas }
2917 13280750 2022-06-13 thomas if (got_path_is_root_dir(path)) {
2918 13280750 2022-06-13 thomas /* XXX check what got_canonpath() does wrong */
2919 13280750 2022-06-13 thomas canon_path[0] = '/';
2920 13280750 2022-06-13 thomas canon_path[1] = '\0';
2921 13280750 2022-06-13 thomas } else {
2922 13280750 2022-06-13 thomas err = got_canonpath(path, canon_path,
2923 13280750 2022-06-13 thomas path_len + 1);
2924 13280750 2022-06-13 thomas if (err)
2925 13280750 2022-06-13 thomas break;
2926 13280750 2022-06-13 thomas }
2927 13280750 2022-06-13 thomas if (strcmp(path, canon_path) != 0) {
2928 13280750 2022-06-13 thomas err = got_error(GOT_ERR_BAD_PATH);
2929 13280750 2022-06-13 thomas break;
2930 13280750 2022-06-13 thomas }
2931 13280750 2022-06-13 thomas if (nentries != -1) {
2932 13280750 2022-06-13 thomas err = got_error(GOT_ERR_PRIVSEP_MSG);
2933 13280750 2022-06-13 thomas break;
2934 13280750 2022-06-13 thomas }
2935 13280750 2022-06-13 thomas if (itree->nentries < -1) {
2936 13280750 2022-06-13 thomas err = got_error(GOT_ERR_PRIVSEP_MSG);
2937 13280750 2022-06-13 thomas break;
2938 13280750 2022-06-13 thomas }
2939 13280750 2022-06-13 thomas if (itree->nentries == -1) {
2940 13280750 2022-06-13 thomas /* Tree was not found in pack file. */
2941 13280750 2022-06-13 thomas err = cb_tree(cb_arg, NULL, mtime, &tree_id,
2942 13280750 2022-06-13 thomas path, repo);
2943 13280750 2022-06-13 thomas break;
2944 13280750 2022-06-13 thomas }
2945 13280750 2022-06-13 thomas if (itree->nentries > INT_MAX) {
2946 13280750 2022-06-13 thomas err = got_error(GOT_ERR_PRIVSEP_LEN);
2947 13280750 2022-06-13 thomas break;
2948 13280750 2022-06-13 thomas }
2949 13280750 2022-06-13 thomas tree.entries = calloc(itree->nentries,
2950 13280750 2022-06-13 thomas sizeof(struct got_tree_entry));
2951 13280750 2022-06-13 thomas if (tree.entries == NULL) {
2952 13280750 2022-06-13 thomas err = got_error_from_errno("calloc");
2953 13280750 2022-06-13 thomas break;
2954 13280750 2022-06-13 thomas }
2955 13280750 2022-06-13 thomas if (itree->nentries == 0) {
2956 13280750 2022-06-13 thomas err = cb_tree(cb_arg, &tree, mtime, &tree_id,
2957 13280750 2022-06-13 thomas path, repo);
2958 13280750 2022-06-13 thomas if (err)
2959 13280750 2022-06-13 thomas break;
2960 13280750 2022-06-13 thomas
2961 13280750 2022-06-13 thomas /* Prepare for next tree. */
2962 13280750 2022-06-13 thomas free(tree.entries);
2963 13280750 2022-06-13 thomas memset(&tree, 0, sizeof(tree));
2964 13280750 2022-06-13 thomas nentries = -1;
2965 13280750 2022-06-13 thomas } else {
2966 13280750 2022-06-13 thomas tree.nentries = itree->nentries;
2967 13280750 2022-06-13 thomas nentries = 0;
2968 13280750 2022-06-13 thomas }
2969 13280750 2022-06-13 thomas break;
2970 13280750 2022-06-13 thomas case GOT_IMSG_TREE_ENTRIES:
2971 13280750 2022-06-13 thomas /* Should be preceeded by GOT_IMSG_ENUMERATED_TREE. */
2972 13280750 2022-06-13 thomas if (nentries <= -1) {
2973 13280750 2022-06-13 thomas err = got_error(GOT_ERR_PRIVSEP_MSG);
2974 13280750 2022-06-13 thomas break;
2975 13280750 2022-06-13 thomas }
2976 13280750 2022-06-13 thomas err = recv_tree_entries(imsg.data, datalen,
2977 13280750 2022-06-13 thomas &tree, &nentries);
2978 13280750 2022-06-13 thomas if (err)
2979 13280750 2022-06-13 thomas break;
2980 13280750 2022-06-13 thomas if (tree.nentries == nentries) {
2981 13280750 2022-06-13 thomas err = cb_tree(cb_arg, &tree, mtime, &tree_id,
2982 13280750 2022-06-13 thomas path, repo);
2983 13280750 2022-06-13 thomas if (err)
2984 13280750 2022-06-13 thomas break;
2985 13280750 2022-06-13 thomas
2986 13280750 2022-06-13 thomas /* Prepare for next tree. */
2987 13280750 2022-06-13 thomas free(tree.entries);
2988 13280750 2022-06-13 thomas memset(&tree, 0, sizeof(tree));
2989 13280750 2022-06-13 thomas nentries = -1;
2990 13280750 2022-06-13 thomas }
2991 13280750 2022-06-13 thomas break;
2992 13280750 2022-06-13 thomas case GOT_IMSG_TREE_ENUMERATION_DONE:
2993 13280750 2022-06-13 thomas /* All trees have been found and traversed. */
2994 13280750 2022-06-13 thomas if (path == NULL || nentries != -1) {
2995 13280750 2022-06-13 thomas err = got_error(GOT_ERR_PRIVSEP_MSG);
2996 13280750 2022-06-13 thomas break;
2997 13280750 2022-06-13 thomas }
2998 13280750 2022-06-13 thomas have_commit = 0;
2999 13280750 2022-06-13 thomas break;
3000 13280750 2022-06-13 thomas case GOT_IMSG_OBJECT_ENUMERATION_DONE:
3001 13280750 2022-06-13 thomas done = 1;
3002 13280750 2022-06-13 thomas break;
3003 13280750 2022-06-13 thomas default:
3004 13280750 2022-06-13 thomas err = got_error(GOT_ERR_PRIVSEP_MSG);
3005 13280750 2022-06-13 thomas break;
3006 13280750 2022-06-13 thomas }
3007 13280750 2022-06-13 thomas
3008 13280750 2022-06-13 thomas imsg_free(&imsg);
3009 13280750 2022-06-13 thomas if (err)
3010 13280750 2022-06-13 thomas break;
3011 13280750 2022-06-13 thomas }
3012 13280750 2022-06-13 thomas
3013 13280750 2022-06-13 thomas free(path);
3014 13280750 2022-06-13 thomas free(canon_path);
3015 13280750 2022-06-13 thomas free(tree.entries);
3016 ca6e02ac 2020-01-07 stsp return err;
3017 f9c2e8e5 2022-02-13 thomas }
3018 f9c2e8e5 2022-02-13 thomas
3019 f9c2e8e5 2022-02-13 thomas const struct got_error *
3020 f9c2e8e5 2022-02-13 thomas got_privsep_send_raw_delta_req(struct imsgbuf *ibuf, int idx,
3021 f9c2e8e5 2022-02-13 thomas struct got_object_id *id)
3022 f9c2e8e5 2022-02-13 thomas {
3023 f9c2e8e5 2022-02-13 thomas struct got_imsg_raw_delta_request dreq;
3024 f9c2e8e5 2022-02-13 thomas
3025 f9c2e8e5 2022-02-13 thomas dreq.idx = idx;
3026 f9c2e8e5 2022-02-13 thomas memcpy(dreq.id, id->sha1, SHA1_DIGEST_LENGTH);
3027 f9c2e8e5 2022-02-13 thomas
3028 f9c2e8e5 2022-02-13 thomas if (imsg_compose(ibuf, GOT_IMSG_RAW_DELTA_REQUEST, 0, 0, -1,
3029 f9c2e8e5 2022-02-13 thomas &dreq, sizeof(dreq)) == -1)
3030 f9c2e8e5 2022-02-13 thomas return got_error_from_errno("imsg_compose RAW_DELTA_REQUEST");
3031 f9c2e8e5 2022-02-13 thomas
3032 f9c2e8e5 2022-02-13 thomas return flush_imsg(ibuf);
3033 f9c2e8e5 2022-02-13 thomas }
3034 f9c2e8e5 2022-02-13 thomas
3035 f9c2e8e5 2022-02-13 thomas const struct got_error *
3036 f9c2e8e5 2022-02-13 thomas got_privsep_send_raw_delta_outfd(struct imsgbuf *ibuf, int fd)
3037 f9c2e8e5 2022-02-13 thomas {
3038 f9c2e8e5 2022-02-13 thomas return send_fd(ibuf, GOT_IMSG_RAW_DELTA_OUTFD, fd);
3039 f9c2e8e5 2022-02-13 thomas }
3040 f9c2e8e5 2022-02-13 thomas
3041 f9c2e8e5 2022-02-13 thomas const struct got_error *
3042 f9c2e8e5 2022-02-13 thomas got_privsep_send_raw_delta(struct imsgbuf *ibuf, uint64_t base_size,
3043 9249e7e3 2022-05-12 thomas uint64_t result_size, off_t delta_size, off_t delta_compressed_size,
3044 9249e7e3 2022-05-12 thomas off_t delta_offset, off_t delta_out_offset, struct got_object_id *base_id)
3045 f9c2e8e5 2022-02-13 thomas {
3046 f9c2e8e5 2022-02-13 thomas struct got_imsg_raw_delta idelta;
3047 f9c2e8e5 2022-02-13 thomas int ret;
3048 f9c2e8e5 2022-02-13 thomas
3049 f9c2e8e5 2022-02-13 thomas idelta.base_size = base_size;
3050 f9c2e8e5 2022-02-13 thomas idelta.result_size = result_size;
3051 f9c2e8e5 2022-02-13 thomas idelta.delta_size = delta_size;
3052 9249e7e3 2022-05-12 thomas idelta.delta_compressed_size = delta_compressed_size;
3053 f9c2e8e5 2022-02-13 thomas idelta.delta_offset = delta_offset;
3054 f9c2e8e5 2022-02-13 thomas idelta.delta_out_offset = delta_out_offset;
3055 f9c2e8e5 2022-02-13 thomas memcpy(idelta.base_id, base_id->sha1, SHA1_DIGEST_LENGTH);
3056 f9c2e8e5 2022-02-13 thomas
3057 f9c2e8e5 2022-02-13 thomas ret = imsg_compose(ibuf, GOT_IMSG_RAW_DELTA, 0, 0, -1,
3058 f9c2e8e5 2022-02-13 thomas &idelta, sizeof(idelta));
3059 f9c2e8e5 2022-02-13 thomas if (ret == -1)
3060 f9c2e8e5 2022-02-13 thomas return got_error_from_errno("imsg_compose RAW_DELTA");
3061 f9c2e8e5 2022-02-13 thomas
3062 f9c2e8e5 2022-02-13 thomas return flush_imsg(ibuf);
3063 ca6e02ac 2020-01-07 stsp }
3064 ca6e02ac 2020-01-07 stsp
3065 ca6e02ac 2020-01-07 stsp const struct got_error *
3066 f9c2e8e5 2022-02-13 thomas got_privsep_recv_raw_delta(uint64_t *base_size, uint64_t *result_size,
3067 9249e7e3 2022-05-12 thomas off_t *delta_size, off_t *delta_compressed_size, off_t *delta_offset,
3068 9249e7e3 2022-05-12 thomas off_t *delta_out_offset, struct got_object_id **base_id, struct imsgbuf *ibuf)
3069 f9c2e8e5 2022-02-13 thomas {
3070 f9c2e8e5 2022-02-13 thomas const struct got_error *err = NULL;
3071 f9c2e8e5 2022-02-13 thomas struct imsg imsg;
3072 f9c2e8e5 2022-02-13 thomas struct got_imsg_raw_delta *delta;
3073 f9c2e8e5 2022-02-13 thomas size_t datalen;
3074 f9c2e8e5 2022-02-13 thomas
3075 f9c2e8e5 2022-02-13 thomas *base_size = 0;
3076 f9c2e8e5 2022-02-13 thomas *result_size = 0;
3077 f9c2e8e5 2022-02-13 thomas *delta_size = 0;
3078 9249e7e3 2022-05-12 thomas *delta_compressed_size = 0;
3079 f9c2e8e5 2022-02-13 thomas *delta_offset = 0;
3080 f9c2e8e5 2022-02-13 thomas *delta_out_offset = 0;
3081 f9c2e8e5 2022-02-13 thomas *base_id = NULL;
3082 f9c2e8e5 2022-02-13 thomas
3083 f9c2e8e5 2022-02-13 thomas err = got_privsep_recv_imsg(&imsg, ibuf, 0);
3084 f9c2e8e5 2022-02-13 thomas if (err)
3085 f9c2e8e5 2022-02-13 thomas return err;
3086 f9c2e8e5 2022-02-13 thomas
3087 f9c2e8e5 2022-02-13 thomas datalen = imsg.hdr.len - IMSG_HEADER_SIZE;
3088 f9c2e8e5 2022-02-13 thomas
3089 f9c2e8e5 2022-02-13 thomas switch (imsg.hdr.type) {
3090 f9c2e8e5 2022-02-13 thomas case GOT_IMSG_RAW_DELTA:
3091 f9c2e8e5 2022-02-13 thomas if (datalen != sizeof(*delta)) {
3092 f9c2e8e5 2022-02-13 thomas err = got_error(GOT_ERR_PRIVSEP_LEN);
3093 f9c2e8e5 2022-02-13 thomas break;
3094 f9c2e8e5 2022-02-13 thomas }
3095 f9c2e8e5 2022-02-13 thomas delta = imsg.data;
3096 f9c2e8e5 2022-02-13 thomas *base_size = delta->base_size;
3097 f9c2e8e5 2022-02-13 thomas *result_size = delta->result_size;
3098 f9c2e8e5 2022-02-13 thomas *delta_size = delta->delta_size;
3099 9249e7e3 2022-05-12 thomas *delta_compressed_size = delta->delta_compressed_size;
3100 f9c2e8e5 2022-02-13 thomas *delta_offset = delta->delta_offset;
3101 f9c2e8e5 2022-02-13 thomas *delta_out_offset = delta->delta_out_offset;
3102 f9c2e8e5 2022-02-13 thomas *base_id = calloc(1, sizeof(**base_id));
3103 f9c2e8e5 2022-02-13 thomas if (*base_id == NULL) {
3104 f9c2e8e5 2022-02-13 thomas err = got_error_from_errno("malloc");
3105 f9c2e8e5 2022-02-13 thomas break;
3106 f9c2e8e5 2022-02-13 thomas }
3107 f9c2e8e5 2022-02-13 thomas memcpy((*base_id)->sha1, delta->base_id, SHA1_DIGEST_LENGTH);
3108 f9c2e8e5 2022-02-13 thomas break;
3109 f9c2e8e5 2022-02-13 thomas default:
3110 f9c2e8e5 2022-02-13 thomas err = got_error(GOT_ERR_PRIVSEP_MSG);
3111 f9c2e8e5 2022-02-13 thomas break;
3112 f9c2e8e5 2022-02-13 thomas }
3113 f9c2e8e5 2022-02-13 thomas
3114 f9c2e8e5 2022-02-13 thomas imsg_free(&imsg);
3115 f9c2e8e5 2022-02-13 thomas
3116 f9c2e8e5 2022-02-13 thomas if (err) {
3117 f9c2e8e5 2022-02-13 thomas free(*base_id);
3118 f9c2e8e5 2022-02-13 thomas *base_id = NULL;
3119 7d0d4920 2022-05-12 thomas }
3120 7d0d4920 2022-05-12 thomas return err;
3121 7d0d4920 2022-05-12 thomas }
3122 7d0d4920 2022-05-12 thomas
3123 13280750 2022-06-13 thomas static const struct got_error *
3124 13280750 2022-06-13 thomas send_idlist(struct imsgbuf *ibuf, struct got_object_id **ids, size_t nids)
3125 7d0d4920 2022-05-12 thomas {
3126 7d0d4920 2022-05-12 thomas const struct got_error *err = NULL;
3127 7d0d4920 2022-05-12 thomas struct got_imsg_object_idlist idlist;
3128 7d0d4920 2022-05-12 thomas struct ibuf *wbuf;
3129 7d0d4920 2022-05-12 thomas size_t i;
3130 7d0d4920 2022-05-12 thomas
3131 7d0d4920 2022-05-12 thomas if (nids > GOT_IMSG_OBJ_ID_LIST_MAX_NIDS)
3132 7d0d4920 2022-05-12 thomas return got_error(GOT_ERR_NO_SPACE);
3133 7d0d4920 2022-05-12 thomas
3134 7d0d4920 2022-05-12 thomas wbuf = imsg_create(ibuf, GOT_IMSG_OBJ_ID_LIST, 0, 0,
3135 7d0d4920 2022-05-12 thomas sizeof(idlist) + nids * sizeof(**ids));
3136 7d0d4920 2022-05-12 thomas if (wbuf == NULL) {
3137 7d0d4920 2022-05-12 thomas err = got_error_from_errno("imsg_create OBJ_ID_LIST");
3138 7d0d4920 2022-05-12 thomas return err;
3139 7d0d4920 2022-05-12 thomas }
3140 7d0d4920 2022-05-12 thomas
3141 7d0d4920 2022-05-12 thomas idlist.nids = nids;
3142 e9f1a409 2022-05-19 thomas if (imsg_add(wbuf, &idlist, sizeof(idlist)) == -1)
3143 e9f1a409 2022-05-19 thomas return got_error_from_errno("imsg_add OBJ_ID_LIST");
3144 7d0d4920 2022-05-12 thomas
3145 7d0d4920 2022-05-12 thomas for (i = 0; i < nids; i++) {
3146 7d0d4920 2022-05-12 thomas struct got_object_id *id = ids[i];
3147 e9f1a409 2022-05-19 thomas if (imsg_add(wbuf, id, sizeof(*id)) == -1)
3148 e9f1a409 2022-05-19 thomas return got_error_from_errno("imsg_add OBJ_ID_LIST");
3149 7d0d4920 2022-05-12 thomas }
3150 7d0d4920 2022-05-12 thomas
3151 7d0d4920 2022-05-12 thomas wbuf->fd = -1;
3152 7d0d4920 2022-05-12 thomas imsg_close(ibuf, wbuf);
3153 7d0d4920 2022-05-12 thomas
3154 7d0d4920 2022-05-12 thomas return flush_imsg(ibuf);
3155 7d0d4920 2022-05-12 thomas }
3156 7d0d4920 2022-05-12 thomas
3157 7d0d4920 2022-05-12 thomas const struct got_error *
3158 13280750 2022-06-13 thomas got_privsep_send_object_idlist(struct imsgbuf *ibuf,
3159 13280750 2022-06-13 thomas struct got_object_id **ids, size_t nids)
3160 13280750 2022-06-13 thomas {
3161 13280750 2022-06-13 thomas const struct got_error *err = NULL;
3162 13280750 2022-06-13 thomas struct got_object_id *idlist[GOT_IMSG_OBJ_ID_LIST_MAX_NIDS];
3163 13280750 2022-06-13 thomas int i, j = 0;
3164 13280750 2022-06-13 thomas
3165 13280750 2022-06-13 thomas for (i = 0; i < nids; i++) {
3166 13280750 2022-06-13 thomas j = i % nitems(idlist);
3167 13280750 2022-06-13 thomas idlist[j] = ids[i];
3168 13280750 2022-06-13 thomas if (j >= nitems(idlist) - 1) {
3169 13280750 2022-06-13 thomas err = send_idlist(ibuf, idlist, j + 1);
3170 13280750 2022-06-13 thomas if (err)
3171 13280750 2022-06-13 thomas return err;
3172 13280750 2022-06-13 thomas j = 0;
3173 13280750 2022-06-13 thomas }
3174 13280750 2022-06-13 thomas }
3175 13280750 2022-06-13 thomas
3176 13280750 2022-06-13 thomas if (j > 0) {
3177 13280750 2022-06-13 thomas err = send_idlist(ibuf, idlist, j + 1);
3178 13280750 2022-06-13 thomas if (err)
3179 13280750 2022-06-13 thomas return err;
3180 13280750 2022-06-13 thomas }
3181 13280750 2022-06-13 thomas
3182 13280750 2022-06-13 thomas return NULL;
3183 13280750 2022-06-13 thomas }
3184 13280750 2022-06-13 thomas
3185 13280750 2022-06-13 thomas const struct got_error *
3186 7d0d4920 2022-05-12 thomas got_privsep_send_object_idlist_done(struct imsgbuf *ibuf)
3187 7d0d4920 2022-05-12 thomas {
3188 7d0d4920 2022-05-12 thomas if (imsg_compose(ibuf, GOT_IMSG_OBJ_ID_LIST_DONE, 0, 0, -1, NULL, 0)
3189 7d0d4920 2022-05-12 thomas == -1)
3190 7d0d4920 2022-05-12 thomas return got_error_from_errno("imsg_compose OBJ_ID_LIST_DONE");
3191 7d0d4920 2022-05-12 thomas
3192 7d0d4920 2022-05-12 thomas return flush_imsg(ibuf);
3193 7d0d4920 2022-05-12 thomas }
3194 7d0d4920 2022-05-12 thomas
3195 7d0d4920 2022-05-12 thomas const struct got_error *
3196 7d0d4920 2022-05-12 thomas got_privsep_recv_object_idlist(int *done, struct got_object_id **ids,
3197 7d0d4920 2022-05-12 thomas size_t *nids, struct imsgbuf *ibuf)
3198 7d0d4920 2022-05-12 thomas {
3199 7d0d4920 2022-05-12 thomas const struct got_error *err = NULL;
3200 7d0d4920 2022-05-12 thomas struct imsg imsg;
3201 7d0d4920 2022-05-12 thomas struct got_imsg_object_idlist *idlist;
3202 7d0d4920 2022-05-12 thomas size_t datalen;
3203 7d0d4920 2022-05-12 thomas
3204 7d0d4920 2022-05-12 thomas *ids = NULL;
3205 7d0d4920 2022-05-12 thomas *done = 0;
3206 7d0d4920 2022-05-12 thomas *nids = 0;
3207 7d0d4920 2022-05-12 thomas
3208 7d0d4920 2022-05-12 thomas err = got_privsep_recv_imsg(&imsg, ibuf, 0);
3209 7d0d4920 2022-05-12 thomas if (err)
3210 7d0d4920 2022-05-12 thomas return err;
3211 7d0d4920 2022-05-12 thomas
3212 7d0d4920 2022-05-12 thomas datalen = imsg.hdr.len - IMSG_HEADER_SIZE;
3213 7d0d4920 2022-05-12 thomas switch (imsg.hdr.type) {
3214 7d0d4920 2022-05-12 thomas case GOT_IMSG_OBJ_ID_LIST:
3215 7d0d4920 2022-05-12 thomas if (datalen < sizeof(*idlist)) {
3216 7d0d4920 2022-05-12 thomas err = got_error(GOT_ERR_PRIVSEP_LEN);
3217 7d0d4920 2022-05-12 thomas break;
3218 7d0d4920 2022-05-12 thomas }
3219 7d0d4920 2022-05-12 thomas idlist = imsg.data;
3220 7d0d4920 2022-05-12 thomas if (idlist->nids > GOT_IMSG_OBJ_ID_LIST_MAX_NIDS) {
3221 7d0d4920 2022-05-12 thomas err = got_error(GOT_ERR_PRIVSEP_LEN);
3222 7d0d4920 2022-05-12 thomas break;
3223 7d0d4920 2022-05-12 thomas }
3224 7d0d4920 2022-05-12 thomas *nids = idlist->nids;
3225 7d0d4920 2022-05-12 thomas *ids = calloc(*nids, sizeof(**ids));
3226 7d0d4920 2022-05-12 thomas if (*ids == NULL) {
3227 7d0d4920 2022-05-12 thomas err = got_error_from_errno("calloc");
3228 7d0d4920 2022-05-12 thomas break;
3229 7d0d4920 2022-05-12 thomas }
3230 7d0d4920 2022-05-12 thomas memcpy(*ids, (uint8_t *)imsg.data + sizeof(idlist),
3231 7d0d4920 2022-05-12 thomas *nids * sizeof(**ids));
3232 7d0d4920 2022-05-12 thomas break;
3233 7d0d4920 2022-05-12 thomas case GOT_IMSG_OBJ_ID_LIST_DONE:
3234 7d0d4920 2022-05-12 thomas *done = 1;
3235 7d0d4920 2022-05-12 thomas break;
3236 7d0d4920 2022-05-12 thomas default:
3237 7d0d4920 2022-05-12 thomas err = got_error(GOT_ERR_PRIVSEP_MSG);
3238 7d0d4920 2022-05-12 thomas break;
3239 7d0d4920 2022-05-12 thomas }
3240 7d0d4920 2022-05-12 thomas
3241 7d0d4920 2022-05-12 thomas imsg_free(&imsg);
3242 7d0d4920 2022-05-12 thomas
3243 7d0d4920 2022-05-12 thomas return err;
3244 7d0d4920 2022-05-12 thomas }
3245 7d0d4920 2022-05-12 thomas
3246 7d0d4920 2022-05-12 thomas const struct got_error *
3247 7d0d4920 2022-05-12 thomas got_privsep_send_delta_reuse_req(struct imsgbuf *ibuf)
3248 7d0d4920 2022-05-12 thomas {
3249 7d0d4920 2022-05-12 thomas if (imsg_compose(ibuf, GOT_IMSG_DELTA_REUSE_REQUEST, 0, 0, -1, NULL, 0)
3250 7d0d4920 2022-05-12 thomas == -1)
3251 7d0d4920 2022-05-12 thomas return got_error_from_errno("imsg_compose DELTA_REUSE_REQUEST");
3252 7d0d4920 2022-05-12 thomas
3253 7d0d4920 2022-05-12 thomas return flush_imsg(ibuf);
3254 7d0d4920 2022-05-12 thomas }
3255 7d0d4920 2022-05-12 thomas
3256 7d0d4920 2022-05-12 thomas const struct got_error *
3257 7d0d4920 2022-05-12 thomas got_privsep_send_reused_deltas(struct imsgbuf *ibuf,
3258 7d0d4920 2022-05-12 thomas struct got_imsg_reused_delta *deltas, size_t ndeltas)
3259 7d0d4920 2022-05-12 thomas {
3260 7d0d4920 2022-05-12 thomas const struct got_error *err = NULL;
3261 7d0d4920 2022-05-12 thomas struct ibuf *wbuf;
3262 7d0d4920 2022-05-12 thomas struct got_imsg_reused_deltas ideltas;
3263 7d0d4920 2022-05-12 thomas size_t i;
3264 7d0d4920 2022-05-12 thomas
3265 7d0d4920 2022-05-12 thomas if (ndeltas > GOT_IMSG_REUSED_DELTAS_MAX_NDELTAS)
3266 7d0d4920 2022-05-12 thomas return got_error(GOT_ERR_NO_SPACE);
3267 7d0d4920 2022-05-12 thomas
3268 7d0d4920 2022-05-12 thomas wbuf = imsg_create(ibuf, GOT_IMSG_REUSED_DELTAS, 0, 0,
3269 7d0d4920 2022-05-12 thomas sizeof(ideltas) + ndeltas * sizeof(*deltas));
3270 7d0d4920 2022-05-12 thomas if (wbuf == NULL) {
3271 7d0d4920 2022-05-12 thomas err = got_error_from_errno("imsg_create REUSED_DELTAS");
3272 7d0d4920 2022-05-12 thomas return err;
3273 f9c2e8e5 2022-02-13 thomas }
3274 7d0d4920 2022-05-12 thomas
3275 7d0d4920 2022-05-12 thomas ideltas.ndeltas = ndeltas;
3276 e9f1a409 2022-05-19 thomas if (imsg_add(wbuf, &ideltas, sizeof(ideltas)) == -1)
3277 e9f1a409 2022-05-19 thomas return got_error_from_errno("imsg_add REUSED_DELTAS");
3278 7d0d4920 2022-05-12 thomas
3279 7d0d4920 2022-05-12 thomas for (i = 0; i < ndeltas; i++) {
3280 7d0d4920 2022-05-12 thomas struct got_imsg_reused_delta *delta = &deltas[i];
3281 e9f1a409 2022-05-19 thomas if (imsg_add(wbuf, delta, sizeof(*delta)) == -1)
3282 e9f1a409 2022-05-19 thomas return got_error_from_errno("imsg_add REUSED_DELTAS");
3283 7d0d4920 2022-05-12 thomas }
3284 7d0d4920 2022-05-12 thomas
3285 7d0d4920 2022-05-12 thomas wbuf->fd = -1;
3286 7d0d4920 2022-05-12 thomas imsg_close(ibuf, wbuf);
3287 7d0d4920 2022-05-12 thomas
3288 7d0d4920 2022-05-12 thomas return flush_imsg(ibuf);
3289 7d0d4920 2022-05-12 thomas }
3290 7d0d4920 2022-05-12 thomas
3291 7d0d4920 2022-05-12 thomas const struct got_error *
3292 7d0d4920 2022-05-12 thomas got_privsep_send_reused_deltas_done(struct imsgbuf *ibuf)
3293 7d0d4920 2022-05-12 thomas {
3294 7d0d4920 2022-05-12 thomas if (imsg_compose(ibuf, GOT_IMSG_DELTA_REUSE_DONE, 0, 0, -1, NULL, 0)
3295 7d0d4920 2022-05-12 thomas == -1)
3296 7d0d4920 2022-05-12 thomas return got_error_from_errno("imsg_compose DELTA_REUSE_DONE");
3297 7d0d4920 2022-05-12 thomas
3298 7d0d4920 2022-05-12 thomas return flush_imsg(ibuf);
3299 7d0d4920 2022-05-12 thomas }
3300 7d0d4920 2022-05-12 thomas
3301 7d0d4920 2022-05-12 thomas const struct got_error *
3302 7d0d4920 2022-05-12 thomas got_privsep_recv_reused_deltas(int *done, struct got_imsg_reused_delta *deltas,
3303 7d0d4920 2022-05-12 thomas size_t *ndeltas, struct imsgbuf *ibuf)
3304 7d0d4920 2022-05-12 thomas {
3305 7d0d4920 2022-05-12 thomas const struct got_error *err = NULL;
3306 7d0d4920 2022-05-12 thomas struct imsg imsg;
3307 7d0d4920 2022-05-12 thomas struct got_imsg_reused_deltas *ideltas;
3308 7d0d4920 2022-05-12 thomas size_t datalen;
3309 7d0d4920 2022-05-12 thomas
3310 7d0d4920 2022-05-12 thomas *done = 0;
3311 7d0d4920 2022-05-12 thomas *ndeltas = 0;
3312 7d0d4920 2022-05-12 thomas
3313 7d0d4920 2022-05-12 thomas err = got_privsep_recv_imsg(&imsg, ibuf, 0);
3314 7d0d4920 2022-05-12 thomas if (err)
3315 7d0d4920 2022-05-12 thomas return err;
3316 7d0d4920 2022-05-12 thomas
3317 7d0d4920 2022-05-12 thomas datalen = imsg.hdr.len - IMSG_HEADER_SIZE;
3318 7d0d4920 2022-05-12 thomas switch (imsg.hdr.type) {
3319 7d0d4920 2022-05-12 thomas case GOT_IMSG_REUSED_DELTAS:
3320 7d0d4920 2022-05-12 thomas if (datalen < sizeof(*ideltas)) {
3321 7d0d4920 2022-05-12 thomas err = got_error(GOT_ERR_PRIVSEP_LEN);
3322 7d0d4920 2022-05-12 thomas break;
3323 7d0d4920 2022-05-12 thomas }
3324 7d0d4920 2022-05-12 thomas ideltas = imsg.data;
3325 7d0d4920 2022-05-12 thomas if (ideltas->ndeltas > GOT_IMSG_OBJ_ID_LIST_MAX_NIDS) {
3326 7d0d4920 2022-05-12 thomas err = got_error(GOT_ERR_PRIVSEP_LEN);
3327 7d0d4920 2022-05-12 thomas break;
3328 7d0d4920 2022-05-12 thomas }
3329 7d0d4920 2022-05-12 thomas *ndeltas = ideltas->ndeltas;
3330 7d0d4920 2022-05-12 thomas memcpy(deltas, (uint8_t *)imsg.data + sizeof(ideltas),
3331 7d0d4920 2022-05-12 thomas *ndeltas * sizeof(*deltas));
3332 7d0d4920 2022-05-12 thomas break;
3333 7d0d4920 2022-05-12 thomas case GOT_IMSG_DELTA_REUSE_DONE:
3334 7d0d4920 2022-05-12 thomas *done = 1;
3335 7d0d4920 2022-05-12 thomas break;
3336 7d0d4920 2022-05-12 thomas default:
3337 7d0d4920 2022-05-12 thomas err = got_error(GOT_ERR_PRIVSEP_MSG);
3338 7d0d4920 2022-05-12 thomas break;
3339 7d0d4920 2022-05-12 thomas }
3340 7d0d4920 2022-05-12 thomas
3341 7d0d4920 2022-05-12 thomas imsg_free(&imsg);
3342 7d0d4920 2022-05-12 thomas
3343 f9c2e8e5 2022-02-13 thomas return err;
3344 f9c2e8e5 2022-02-13 thomas }
3345 f9c2e8e5 2022-02-13 thomas
3346 f9c2e8e5 2022-02-13 thomas const struct got_error *
3347 63219cd2 2019-01-04 stsp got_privsep_unveil_exec_helpers(void)
3348 63219cd2 2019-01-04 stsp {
3349 c39c25dd 2019-08-09 stsp const char *helpers[] = {
3350 c39c25dd 2019-08-09 stsp GOT_PATH_PROG_READ_PACK,
3351 c39c25dd 2019-08-09 stsp GOT_PATH_PROG_READ_OBJECT,
3352 c39c25dd 2019-08-09 stsp GOT_PATH_PROG_READ_COMMIT,
3353 c39c25dd 2019-08-09 stsp GOT_PATH_PROG_READ_TREE,
3354 c39c25dd 2019-08-09 stsp GOT_PATH_PROG_READ_BLOB,
3355 c39c25dd 2019-08-09 stsp GOT_PATH_PROG_READ_TAG,
3356 aba9c984 2019-09-08 stsp GOT_PATH_PROG_READ_GITCONFIG,
3357 257add31 2020-09-09 stsp GOT_PATH_PROG_READ_GOTCONFIG,
3358 069bbb86 2022-03-07 thomas GOT_PATH_PROG_READ_PATCH,
3359 ee448f5f 2020-03-18 stsp GOT_PATH_PROG_FETCH_PACK,
3360 ee448f5f 2020-03-18 stsp GOT_PATH_PROG_INDEX_PACK,
3361 f8a36e22 2021-08-26 stsp GOT_PATH_PROG_SEND_PACK,
3362 c39c25dd 2019-08-09 stsp };
3363 16aeacf7 2020-11-26 stsp size_t i;
3364 63219cd2 2019-01-04 stsp
3365 c39c25dd 2019-08-09 stsp for (i = 0; i < nitems(helpers); i++) {
3366 c39c25dd 2019-08-09 stsp if (unveil(helpers[i], "x") == 0)
3367 c39c25dd 2019-08-09 stsp continue;
3368 c39c25dd 2019-08-09 stsp return got_error_from_errno2("unveil", helpers[i]);
3369 c39c25dd 2019-08-09 stsp }
3370 c39c25dd 2019-08-09 stsp
3371 63219cd2 2019-01-04 stsp return NULL;
3372 876c234b 2018-09-10 stsp }
3373 aba9c984 2019-09-08 stsp
3374 aba9c984 2019-09-08 stsp void
3375 aba9c984 2019-09-08 stsp got_privsep_exec_child(int imsg_fds[2], const char *path, const char *repo_path)
3376 aba9c984 2019-09-08 stsp {
3377 08578a35 2021-01-22 stsp if (close(imsg_fds[0]) == -1) {
3378 aba9c984 2019-09-08 stsp fprintf(stderr, "%s: %s\n", getprogname(), strerror(errno));
3379 aba9c984 2019-09-08 stsp _exit(1);
3380 aba9c984 2019-09-08 stsp }
3381 aba9c984 2019-09-08 stsp
3382 aba9c984 2019-09-08 stsp if (dup2(imsg_fds[1], GOT_IMSG_FD_CHILD) == -1) {
3383 aba9c984 2019-09-08 stsp fprintf(stderr, "%s: %s\n", getprogname(), strerror(errno));
3384 aba9c984 2019-09-08 stsp _exit(1);
3385 aba9c984 2019-09-08 stsp }
3386 aba9c984 2019-09-08 stsp
3387 ce95518e 2021-12-10 thomas closefrom(GOT_IMSG_FD_CHILD + 1);
3388 ce95518e 2021-12-10 thomas
3389 aba9c984 2019-09-08 stsp if (execl(path, path, repo_path, (char *)NULL) == -1) {
3390 aba9c984 2019-09-08 stsp fprintf(stderr, "%s: %s: %s\n", getprogname(), path,
3391 aba9c984 2019-09-08 stsp strerror(errno));
3392 aba9c984 2019-09-08 stsp _exit(1);
3393 aba9c984 2019-09-08 stsp }
3394 aba9c984 2019-09-08 stsp }