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/queue.h>
20 2178c42e 2018-04-22 stsp #include <sys/uio.h>
21 876c234b 2018-09-10 stsp #include <sys/syslimits.h>
22 876c234b 2018-09-10 stsp #include <sys/wait.h>
23 2178c42e 2018-04-22 stsp
24 531c3985 2020-03-18 stsp #include <ctype.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 2178c42e 2018-04-22 stsp #include <imsg.h>
32 2178c42e 2018-04-22 stsp #include <sha1.h>
33 2178c42e 2018-04-22 stsp #include <zlib.h>
34 788c352e 2018-06-16 stsp #include <time.h>
35 2178c42e 2018-04-22 stsp
36 2178c42e 2018-04-22 stsp #include "got_object.h"
37 2178c42e 2018-04-22 stsp #include "got_error.h"
38 3022d272 2019-11-14 stsp #include "got_path.h"
39 cd95becd 2019-11-29 stsp #include "got_repository.h"
40 2178c42e 2018-04-22 stsp
41 2178c42e 2018-04-22 stsp #include "got_lib_sha1.h"
42 2178c42e 2018-04-22 stsp #include "got_lib_delta.h"
43 63581804 2018-07-09 stsp #include "got_lib_inflate.h"
44 2178c42e 2018-04-22 stsp #include "got_lib_object.h"
45 a440fac0 2018-09-06 stsp #include "got_lib_object_parse.h"
46 2178c42e 2018-04-22 stsp #include "got_lib_privsep.h"
47 876c234b 2018-09-10 stsp #include "got_lib_pack.h"
48 2178c42e 2018-04-22 stsp
49 2178c42e 2018-04-22 stsp #ifndef MIN
50 2178c42e 2018-04-22 stsp #define MIN(_a,_b) ((_a) < (_b) ? (_a) : (_b))
51 c39c25dd 2019-08-09 stsp #endif
52 c39c25dd 2019-08-09 stsp
53 c39c25dd 2019-08-09 stsp #ifndef nitems
54 c39c25dd 2019-08-09 stsp #define nitems(_a) (sizeof((_a)) / sizeof((_a)[0]))
55 2178c42e 2018-04-22 stsp #endif
56 2178c42e 2018-04-22 stsp
57 2178c42e 2018-04-22 stsp static const struct got_error *
58 2178c42e 2018-04-22 stsp poll_fd(int fd, int events, int timeout)
59 2178c42e 2018-04-22 stsp {
60 2178c42e 2018-04-22 stsp struct pollfd pfd[1];
61 2178c42e 2018-04-22 stsp int n;
62 2178c42e 2018-04-22 stsp
63 2178c42e 2018-04-22 stsp pfd[0].fd = fd;
64 2178c42e 2018-04-22 stsp pfd[0].events = events;
65 2178c42e 2018-04-22 stsp
66 2178c42e 2018-04-22 stsp n = poll(pfd, 1, timeout);
67 2178c42e 2018-04-22 stsp if (n == -1)
68 638f9024 2019-05-13 stsp return got_error_from_errno("poll");
69 2178c42e 2018-04-22 stsp if (n == 0)
70 2178c42e 2018-04-22 stsp return got_error(GOT_ERR_TIMEOUT);
71 2178c42e 2018-04-22 stsp if (pfd[0].revents & (POLLERR | POLLNVAL))
72 638f9024 2019-05-13 stsp return got_error_from_errno("poll error");
73 2178c42e 2018-04-22 stsp if (pfd[0].revents & (events | POLLHUP))
74 2178c42e 2018-04-22 stsp return NULL;
75 2178c42e 2018-04-22 stsp
76 2178c42e 2018-04-22 stsp return got_error(GOT_ERR_INTERRUPT);
77 2178c42e 2018-04-22 stsp }
78 2178c42e 2018-04-22 stsp
79 c4eae628 2018-04-23 stsp static const struct got_error *
80 e033d803 2018-04-23 stsp read_imsg(struct imsgbuf *ibuf)
81 fe36cf76 2018-04-23 stsp {
82 fe36cf76 2018-04-23 stsp const struct got_error *err;
83 e033d803 2018-04-23 stsp size_t n;
84 fe36cf76 2018-04-23 stsp
85 fe36cf76 2018-04-23 stsp err = poll_fd(ibuf->fd, POLLIN, INFTIM);
86 fe36cf76 2018-04-23 stsp if (err)
87 fe36cf76 2018-04-23 stsp return err;
88 fe36cf76 2018-04-23 stsp
89 fe36cf76 2018-04-23 stsp n = imsg_read(ibuf);
90 fe36cf76 2018-04-23 stsp if (n == -1) {
91 fe36cf76 2018-04-23 stsp if (errno == EAGAIN) /* Could be a file-descriptor leak. */
92 fe36cf76 2018-04-23 stsp return got_error(GOT_ERR_PRIVSEP_NO_FD);
93 fe36cf76 2018-04-23 stsp return got_error(GOT_ERR_PRIVSEP_READ);
94 fe36cf76 2018-04-23 stsp }
95 fe36cf76 2018-04-23 stsp if (n == 0)
96 fe36cf76 2018-04-23 stsp return got_error(GOT_ERR_PRIVSEP_PIPE);
97 fe36cf76 2018-04-23 stsp
98 e033d803 2018-04-23 stsp return NULL;
99 e033d803 2018-04-23 stsp }
100 e033d803 2018-04-23 stsp
101 ad242220 2018-09-08 stsp const struct got_error *
102 876c234b 2018-09-10 stsp got_privsep_wait_for_child(pid_t pid)
103 876c234b 2018-09-10 stsp {
104 876c234b 2018-09-10 stsp int child_status;
105 876c234b 2018-09-10 stsp
106 2cb49fa8 2019-05-10 stsp if (waitpid(pid, &child_status, 0) == -1)
107 638f9024 2019-05-13 stsp return got_error_from_errno("waitpid");
108 876c234b 2018-09-10 stsp
109 876c234b 2018-09-10 stsp if (!WIFEXITED(child_status))
110 876c234b 2018-09-10 stsp return got_error(GOT_ERR_PRIVSEP_DIED);
111 876c234b 2018-09-10 stsp
112 876c234b 2018-09-10 stsp if (WEXITSTATUS(child_status) != 0)
113 876c234b 2018-09-10 stsp return got_error(GOT_ERR_PRIVSEP_EXIT);
114 876c234b 2018-09-10 stsp
115 876c234b 2018-09-10 stsp return NULL;
116 876c234b 2018-09-10 stsp }
117 876c234b 2018-09-10 stsp
118 73b7854a 2018-11-11 stsp static const struct got_error *
119 73b7854a 2018-11-11 stsp recv_imsg_error(struct imsg *imsg, size_t datalen)
120 73b7854a 2018-11-11 stsp {
121 73b7854a 2018-11-11 stsp struct got_imsg_error *ierr;
122 73b7854a 2018-11-11 stsp
123 73b7854a 2018-11-11 stsp if (datalen != sizeof(*ierr))
124 73b7854a 2018-11-11 stsp return got_error(GOT_ERR_PRIVSEP_LEN);
125 73b7854a 2018-11-11 stsp
126 73b7854a 2018-11-11 stsp ierr = imsg->data;
127 73b7854a 2018-11-11 stsp if (ierr->code == GOT_ERR_ERRNO) {
128 73b7854a 2018-11-11 stsp static struct got_error serr;
129 73b7854a 2018-11-11 stsp serr.code = GOT_ERR_ERRNO;
130 73b7854a 2018-11-11 stsp serr.msg = strerror(ierr->errno_code);
131 73b7854a 2018-11-11 stsp return &serr;
132 73b7854a 2018-11-11 stsp }
133 73b7854a 2018-11-11 stsp
134 73b7854a 2018-11-11 stsp return got_error(ierr->code);
135 73b7854a 2018-11-11 stsp }
136 73b7854a 2018-11-11 stsp
137 876c234b 2018-09-10 stsp const struct got_error *
138 46de5bfd 2018-11-11 stsp got_privsep_recv_imsg(struct imsg *imsg, struct imsgbuf *ibuf,
139 46de5bfd 2018-11-11 stsp size_t min_datalen)
140 e033d803 2018-04-23 stsp {
141 e033d803 2018-04-23 stsp const struct got_error *err;
142 e033d803 2018-04-23 stsp ssize_t n;
143 e033d803 2018-04-23 stsp
144 e033d803 2018-04-23 stsp n = imsg_get(ibuf, imsg);
145 876c234b 2018-09-10 stsp if (n == -1)
146 638f9024 2019-05-13 stsp return got_error_from_errno("imsg_get");
147 876c234b 2018-09-10 stsp
148 876c234b 2018-09-10 stsp while (n == 0) {
149 876c234b 2018-09-10 stsp err = read_imsg(ibuf);
150 876c234b 2018-09-10 stsp if (err)
151 876c234b 2018-09-10 stsp return err;
152 876c234b 2018-09-10 stsp n = imsg_get(ibuf, imsg);
153 cbfaaf20 2020-01-06 stsp if (n == -1)
154 cbfaaf20 2020-01-06 stsp return got_error_from_errno("imsg_get");
155 876c234b 2018-09-10 stsp }
156 fe36cf76 2018-04-23 stsp
157 fe36cf76 2018-04-23 stsp if (imsg->hdr.len < IMSG_HEADER_SIZE + min_datalen)
158 c4eae628 2018-04-23 stsp return got_error(GOT_ERR_PRIVSEP_LEN);
159 c4eae628 2018-04-23 stsp
160 73b7854a 2018-11-11 stsp if (imsg->hdr.type == GOT_IMSG_ERROR) {
161 73b7854a 2018-11-11 stsp size_t datalen = imsg->hdr.len - IMSG_HEADER_SIZE;
162 73b7854a 2018-11-11 stsp return recv_imsg_error(imsg, datalen);
163 c4eae628 2018-04-23 stsp }
164 c4eae628 2018-04-23 stsp
165 73b7854a 2018-11-11 stsp return NULL;
166 c4eae628 2018-04-23 stsp }
167 c4eae628 2018-04-23 stsp
168 2178c42e 2018-04-22 stsp /* Attempt to send an error in an imsg. Complain on stderr as a last resort. */
169 2178c42e 2018-04-22 stsp void
170 2178c42e 2018-04-22 stsp got_privsep_send_error(struct imsgbuf *ibuf, const struct got_error *err)
171 2178c42e 2018-04-22 stsp {
172 2178c42e 2018-04-22 stsp const struct got_error *poll_err;
173 2178c42e 2018-04-22 stsp struct got_imsg_error ierr;
174 2178c42e 2018-04-22 stsp int ret;
175 2178c42e 2018-04-22 stsp
176 2178c42e 2018-04-22 stsp ierr.code = err->code;
177 2178c42e 2018-04-22 stsp if (err->code == GOT_ERR_ERRNO)
178 2178c42e 2018-04-22 stsp ierr.errno_code = errno;
179 2178c42e 2018-04-22 stsp else
180 2178c42e 2018-04-22 stsp ierr.errno_code = 0;
181 2178c42e 2018-04-22 stsp ret = imsg_compose(ibuf, GOT_IMSG_ERROR, 0, 0, -1, &ierr, sizeof(ierr));
182 e93cd828 2018-11-11 stsp if (ret == -1) {
183 2178c42e 2018-04-22 stsp fprintf(stderr, "%s: error %d \"%s\": imsg_compose: %s\n",
184 2178c42e 2018-04-22 stsp getprogname(), err->code, err->msg, strerror(errno));
185 5d43e84d 2018-04-23 stsp return;
186 2178c42e 2018-04-22 stsp }
187 2178c42e 2018-04-22 stsp
188 2178c42e 2018-04-22 stsp poll_err = poll_fd(ibuf->fd, POLLOUT, INFTIM);
189 5d43e84d 2018-04-23 stsp if (poll_err) {
190 2178c42e 2018-04-22 stsp fprintf(stderr, "%s: error %d \"%s\": poll: %s\n",
191 2178c42e 2018-04-22 stsp getprogname(), err->code, err->msg, poll_err->msg);
192 5d43e84d 2018-04-23 stsp return;
193 5d43e84d 2018-04-23 stsp }
194 2178c42e 2018-04-22 stsp
195 2178c42e 2018-04-22 stsp ret = imsg_flush(ibuf);
196 5d43e84d 2018-04-23 stsp if (ret == -1) {
197 2178c42e 2018-04-22 stsp fprintf(stderr, "%s: error %d \"%s\": imsg_flush: %s\n",
198 2178c42e 2018-04-22 stsp getprogname(), err->code, err->msg, strerror(errno));
199 5d43e84d 2018-04-23 stsp return;
200 5d43e84d 2018-04-23 stsp }
201 e033d803 2018-04-23 stsp }
202 e033d803 2018-04-23 stsp
203 e033d803 2018-04-23 stsp static const struct got_error *
204 e033d803 2018-04-23 stsp flush_imsg(struct imsgbuf *ibuf)
205 e033d803 2018-04-23 stsp {
206 e033d803 2018-04-23 stsp const struct got_error *err;
207 e033d803 2018-04-23 stsp
208 e033d803 2018-04-23 stsp err = poll_fd(ibuf->fd, POLLOUT, INFTIM);
209 e033d803 2018-04-23 stsp if (err)
210 e033d803 2018-04-23 stsp return err;
211 e033d803 2018-04-23 stsp
212 e033d803 2018-04-23 stsp if (imsg_flush(ibuf) == -1)
213 638f9024 2019-05-13 stsp return got_error_from_errno("imsg_flush");
214 e033d803 2018-04-23 stsp
215 e033d803 2018-04-23 stsp return NULL;
216 ad242220 2018-09-08 stsp }
217 ad242220 2018-09-08 stsp
218 ad242220 2018-09-08 stsp const struct got_error *
219 ad242220 2018-09-08 stsp got_privsep_send_stop(int fd)
220 ad242220 2018-09-08 stsp {
221 ad242220 2018-09-08 stsp const struct got_error *err = NULL;
222 ad242220 2018-09-08 stsp struct imsgbuf ibuf;
223 ad242220 2018-09-08 stsp
224 ad242220 2018-09-08 stsp imsg_init(&ibuf, fd);
225 ad242220 2018-09-08 stsp
226 ad242220 2018-09-08 stsp if (imsg_compose(&ibuf, GOT_IMSG_STOP, 0, 0, -1, NULL, 0) == -1)
227 638f9024 2019-05-13 stsp return got_error_from_errno("imsg_compose STOP");
228 ad242220 2018-09-08 stsp
229 ad242220 2018-09-08 stsp err = flush_imsg(&ibuf);
230 ad242220 2018-09-08 stsp imsg_clear(&ibuf);
231 ad242220 2018-09-08 stsp return err;
232 7762fe12 2018-11-05 stsp }
233 93658fb9 2020-03-18 stsp
234 93658fb9 2020-03-18 stsp const struct got_error *
235 aea5f015 2018-12-24 stsp got_privsep_send_obj_req(struct imsgbuf *ibuf, int fd)
236 ad242220 2018-09-08 stsp {
237 aea5f015 2018-12-24 stsp if (imsg_compose(ibuf, GOT_IMSG_OBJECT_REQUEST, 0, 0, fd, NULL, 0)
238 aea5f015 2018-12-24 stsp == -1)
239 638f9024 2019-05-13 stsp return got_error_from_errno("imsg_compose OBJECT_REQUEST");
240 1785f84a 2018-12-23 stsp
241 1785f84a 2018-12-23 stsp return flush_imsg(ibuf);
242 1785f84a 2018-12-23 stsp }
243 1785f84a 2018-12-23 stsp
244 1785f84a 2018-12-23 stsp const struct got_error *
245 1785f84a 2018-12-23 stsp got_privsep_send_commit_req(struct imsgbuf *ibuf, int fd,
246 1785f84a 2018-12-23 stsp struct got_object_id *id, int pack_idx)
247 1785f84a 2018-12-23 stsp {
248 41496140 2019-02-21 stsp const struct got_error *err = NULL;
249 1785f84a 2018-12-23 stsp struct got_imsg_packed_object iobj, *iobjp;
250 1785f84a 2018-12-23 stsp size_t len;
251 1785f84a 2018-12-23 stsp
252 1785f84a 2018-12-23 stsp if (id) { /* commit is packed */
253 1785f84a 2018-12-23 stsp iobj.idx = pack_idx;
254 1785f84a 2018-12-23 stsp memcpy(iobj.id, id->sha1, sizeof(iobj.id));
255 1785f84a 2018-12-23 stsp iobjp = &iobj;
256 1785f84a 2018-12-23 stsp len = sizeof(iobj);
257 1785f84a 2018-12-23 stsp } else {
258 1785f84a 2018-12-23 stsp iobjp = NULL;
259 1785f84a 2018-12-23 stsp len = 0;
260 1785f84a 2018-12-23 stsp }
261 1785f84a 2018-12-23 stsp
262 1785f84a 2018-12-23 stsp if (imsg_compose(ibuf, GOT_IMSG_COMMIT_REQUEST, 0, 0, fd, iobjp, len)
263 41496140 2019-02-21 stsp == -1) {
264 638f9024 2019-05-13 stsp err = got_error_from_errno("imsg_compose COMMIT_REQUEST");
265 41496140 2019-02-21 stsp close(fd);
266 41496140 2019-02-21 stsp return err;
267 41496140 2019-02-21 stsp }
268 13c729f7 2018-12-24 stsp
269 13c729f7 2018-12-24 stsp return flush_imsg(ibuf);
270 13c729f7 2018-12-24 stsp }
271 13c729f7 2018-12-24 stsp
272 13c729f7 2018-12-24 stsp const struct got_error *
273 13c729f7 2018-12-24 stsp got_privsep_send_tree_req(struct imsgbuf *ibuf, int fd,
274 13c729f7 2018-12-24 stsp struct got_object_id *id, int pack_idx)
275 13c729f7 2018-12-24 stsp {
276 41496140 2019-02-21 stsp const struct got_error *err = NULL;
277 7f358e3b 2019-11-23 stsp struct ibuf *wbuf;
278 7f358e3b 2019-11-23 stsp size_t len = id ? sizeof(struct got_imsg_packed_object) : 0;
279 7f358e3b 2019-11-23 stsp
280 7f358e3b 2019-11-23 stsp wbuf = imsg_create(ibuf, GOT_IMSG_TREE_REQUEST, 0, 0, len);
281 7f358e3b 2019-11-23 stsp if (wbuf == NULL)
282 7f358e3b 2019-11-23 stsp return got_error_from_errno("imsg_create TREE_REQUEST");
283 13c729f7 2018-12-24 stsp
284 13c729f7 2018-12-24 stsp if (id) { /* tree is packed */
285 7f358e3b 2019-11-23 stsp if (imsg_add(wbuf, id->sha1, SHA1_DIGEST_LENGTH) == -1) {
286 7f358e3b 2019-11-23 stsp err = got_error_from_errno("imsg_add TREE_ENTRY");
287 7f358e3b 2019-11-23 stsp ibuf_free(wbuf);
288 7f358e3b 2019-11-23 stsp return err;
289 7f358e3b 2019-11-23 stsp }
290 13c729f7 2018-12-24 stsp
291 7f358e3b 2019-11-23 stsp if (imsg_add(wbuf, &pack_idx, sizeof(pack_idx)) == -1) {
292 7f358e3b 2019-11-23 stsp err = got_error_from_errno("imsg_add TREE_ENTRY");
293 7f358e3b 2019-11-23 stsp ibuf_free(wbuf);
294 7f358e3b 2019-11-23 stsp return err;
295 7f358e3b 2019-11-23 stsp }
296 41496140 2019-02-21 stsp }
297 268f7291 2018-12-24 stsp
298 7f358e3b 2019-11-23 stsp wbuf->fd = fd;
299 7f358e3b 2019-11-23 stsp imsg_close(ibuf, wbuf);
300 7f358e3b 2019-11-23 stsp
301 268f7291 2018-12-24 stsp return flush_imsg(ibuf);
302 268f7291 2018-12-24 stsp }
303 268f7291 2018-12-24 stsp
304 268f7291 2018-12-24 stsp const struct got_error *
305 268f7291 2018-12-24 stsp got_privsep_send_tag_req(struct imsgbuf *ibuf, int fd,
306 268f7291 2018-12-24 stsp struct got_object_id *id, int pack_idx)
307 268f7291 2018-12-24 stsp {
308 268f7291 2018-12-24 stsp struct got_imsg_packed_object iobj, *iobjp;
309 268f7291 2018-12-24 stsp size_t len;
310 268f7291 2018-12-24 stsp
311 268f7291 2018-12-24 stsp if (id) { /* tag is packed */
312 268f7291 2018-12-24 stsp iobj.idx = pack_idx;
313 268f7291 2018-12-24 stsp memcpy(iobj.id, id->sha1, sizeof(iobj.id));
314 268f7291 2018-12-24 stsp iobjp = &iobj;
315 268f7291 2018-12-24 stsp len = sizeof(iobj);
316 268f7291 2018-12-24 stsp } else {
317 268f7291 2018-12-24 stsp iobjp = NULL;
318 268f7291 2018-12-24 stsp len = 0;
319 268f7291 2018-12-24 stsp }
320 268f7291 2018-12-24 stsp
321 268f7291 2018-12-24 stsp if (imsg_compose(ibuf, GOT_IMSG_TAG_REQUEST, 0, 0, fd, iobjp, len)
322 1785f84a 2018-12-23 stsp == -1)
323 638f9024 2019-05-13 stsp return got_error_from_errno("imsg_compose TAG_REQUEST");
324 7762fe12 2018-11-05 stsp
325 7762fe12 2018-11-05 stsp return flush_imsg(ibuf);
326 7762fe12 2018-11-05 stsp }
327 7762fe12 2018-11-05 stsp
328 7762fe12 2018-11-05 stsp const struct got_error *
329 ebc55e2d 2018-12-24 stsp got_privsep_send_blob_req(struct imsgbuf *ibuf, int infd,
330 ebc55e2d 2018-12-24 stsp struct got_object_id *id, int pack_idx)
331 55da3778 2018-09-10 stsp {
332 41496140 2019-02-21 stsp const struct got_error *err = NULL;
333 ebc55e2d 2018-12-24 stsp struct got_imsg_packed_object iobj, *iobjp;
334 ebc55e2d 2018-12-24 stsp size_t len;
335 ebc55e2d 2018-12-24 stsp
336 ebc55e2d 2018-12-24 stsp if (id) { /* blob is packed */
337 ebc55e2d 2018-12-24 stsp iobj.idx = pack_idx;
338 ebc55e2d 2018-12-24 stsp memcpy(iobj.id, id->sha1, sizeof(iobj.id));
339 ebc55e2d 2018-12-24 stsp iobjp = &iobj;
340 ebc55e2d 2018-12-24 stsp len = sizeof(iobj);
341 ebc55e2d 2018-12-24 stsp } else {
342 ebc55e2d 2018-12-24 stsp iobjp = NULL;
343 ebc55e2d 2018-12-24 stsp len = 0;
344 ebc55e2d 2018-12-24 stsp }
345 ebc55e2d 2018-12-24 stsp
346 ebc55e2d 2018-12-24 stsp if (imsg_compose(ibuf, GOT_IMSG_BLOB_REQUEST, 0, 0, infd, iobjp, len)
347 41496140 2019-02-21 stsp == -1) {
348 638f9024 2019-05-13 stsp err = got_error_from_errno("imsg_compose BLOB_REQUEST");
349 41496140 2019-02-21 stsp close(infd);
350 41496140 2019-02-21 stsp return err;
351 41496140 2019-02-21 stsp }
352 ad242220 2018-09-08 stsp
353 55da3778 2018-09-10 stsp return flush_imsg(ibuf);
354 55da3778 2018-09-10 stsp }
355 ad242220 2018-09-08 stsp
356 55da3778 2018-09-10 stsp const struct got_error *
357 55da3778 2018-09-10 stsp got_privsep_send_blob_outfd(struct imsgbuf *ibuf, int outfd)
358 55da3778 2018-09-10 stsp {
359 41496140 2019-02-21 stsp const struct got_error *err = NULL;
360 41496140 2019-02-21 stsp
361 ad242220 2018-09-08 stsp if (imsg_compose(ibuf, GOT_IMSG_BLOB_OUTFD, 0, 0, outfd, NULL, 0)
362 41496140 2019-02-21 stsp == -1) {
363 638f9024 2019-05-13 stsp err = got_error_from_errno("imsg_compose BLOB_OUTFD");
364 41496140 2019-02-21 stsp close(outfd);
365 41496140 2019-02-21 stsp return err;
366 41496140 2019-02-21 stsp }
367 3840f4c9 2018-09-12 stsp
368 3840f4c9 2018-09-12 stsp return flush_imsg(ibuf);
369 3840f4c9 2018-09-12 stsp }
370 3840f4c9 2018-09-12 stsp
371 73ab1060 2020-03-18 stsp static const struct got_error *
372 73ab1060 2020-03-18 stsp send_fd(struct imsgbuf *ibuf, int imsg_code, int fd)
373 3840f4c9 2018-09-12 stsp {
374 41496140 2019-02-21 stsp const struct got_error *err = NULL;
375 41496140 2019-02-21 stsp
376 73ab1060 2020-03-18 stsp if (imsg_compose(ibuf, imsg_code, 0, 0, fd, NULL, 0) == -1) {
377 638f9024 2019-05-13 stsp err = got_error_from_errno("imsg_compose TMPFD");
378 41496140 2019-02-21 stsp close(fd);
379 41496140 2019-02-21 stsp return err;
380 41496140 2019-02-21 stsp }
381 ad242220 2018-09-08 stsp
382 ad242220 2018-09-08 stsp return flush_imsg(ibuf);
383 ad242220 2018-09-08 stsp }
384 ad242220 2018-09-08 stsp
385 ad242220 2018-09-08 stsp const struct got_error *
386 73ab1060 2020-03-18 stsp got_privsep_send_tmpfd(struct imsgbuf *ibuf, int fd)
387 73ab1060 2020-03-18 stsp {
388 73ab1060 2020-03-18 stsp return send_fd(ibuf, GOT_IMSG_TMPFD, fd);
389 73ab1060 2020-03-18 stsp }
390 73ab1060 2020-03-18 stsp
391 73ab1060 2020-03-18 stsp const struct got_error *
392 876c234b 2018-09-10 stsp got_privsep_send_obj(struct imsgbuf *ibuf, struct got_object *obj)
393 2178c42e 2018-04-22 stsp {
394 2178c42e 2018-04-22 stsp struct got_imsg_object iobj;
395 2178c42e 2018-04-22 stsp
396 c59b3346 2018-09-11 stsp memcpy(iobj.id, obj->id.sha1, sizeof(iobj.id));
397 2178c42e 2018-04-22 stsp iobj.type = obj->type;
398 2178c42e 2018-04-22 stsp iobj.flags = obj->flags;
399 2178c42e 2018-04-22 stsp iobj.hdrlen = obj->hdrlen;
400 2178c42e 2018-04-22 stsp iobj.size = obj->size;
401 c59b3346 2018-09-11 stsp if (iobj.flags & GOT_OBJ_FLAG_PACKED) {
402 876c234b 2018-09-10 stsp iobj.pack_offset = obj->pack_offset;
403 c59b3346 2018-09-11 stsp iobj.pack_idx = obj->pack_idx;
404 c59b3346 2018-09-11 stsp }
405 2178c42e 2018-04-22 stsp
406 2178c42e 2018-04-22 stsp if (imsg_compose(ibuf, GOT_IMSG_OBJECT, 0, 0, -1, &iobj, sizeof(iobj))
407 2178c42e 2018-04-22 stsp == -1)
408 638f9024 2019-05-13 stsp return got_error_from_errno("imsg_compose OBJECT");
409 2178c42e 2018-04-22 stsp
410 c59b3346 2018-09-11 stsp return flush_imsg(ibuf);
411 cfd633c2 2018-09-10 stsp }
412 cfd633c2 2018-09-10 stsp
413 cfd633c2 2018-09-10 stsp const struct got_error *
414 33501562 2020-03-18 stsp got_privsep_send_fetch_req(struct imsgbuf *ibuf, int fd,
415 4ba14133 2020-03-20 stsp struct got_pathlist_head *have_refs, int fetch_all_branches,
416 0e4002ca 2020-03-21 stsp struct got_pathlist_head *wanted_branches,
417 0e4002ca 2020-03-21 stsp struct got_pathlist_head *wanted_refs, int list_refs_only, int verbosity)
418 93658fb9 2020-03-18 stsp {
419 93658fb9 2020-03-18 stsp const struct got_error *err = NULL;
420 33501562 2020-03-18 stsp struct ibuf *wbuf;
421 4ba14133 2020-03-20 stsp size_t len;
422 33501562 2020-03-18 stsp struct got_pathlist_entry *pe;
423 4ba14133 2020-03-20 stsp struct got_imsg_fetch_request fetchreq;
424 93658fb9 2020-03-18 stsp
425 4ba14133 2020-03-20 stsp memset(&fetchreq, 0, sizeof(fetchreq));
426 4ba14133 2020-03-20 stsp fetchreq.fetch_all_branches = fetch_all_branches;
427 41b0de12 2020-03-21 stsp fetchreq.list_refs_only = list_refs_only;
428 2690194b 2020-03-21 stsp fetchreq.verbosity = verbosity;
429 4ba14133 2020-03-20 stsp TAILQ_FOREACH(pe, have_refs, entry)
430 4ba14133 2020-03-20 stsp fetchreq.n_have_refs++;
431 4ba14133 2020-03-20 stsp TAILQ_FOREACH(pe, wanted_branches, entry)
432 4ba14133 2020-03-20 stsp fetchreq.n_wanted_branches++;
433 0e4002ca 2020-03-21 stsp TAILQ_FOREACH(pe, wanted_refs, entry)
434 0e4002ca 2020-03-21 stsp fetchreq.n_wanted_refs++;
435 659e7fbd 2020-03-20 stsp len = sizeof(struct got_imsg_fetch_request);
436 33501562 2020-03-18 stsp if (len >= MAX_IMSGSIZE - IMSG_HEADER_SIZE) {
437 33501562 2020-03-18 stsp close(fd);
438 33501562 2020-03-18 stsp return got_error(GOT_ERR_NO_SPACE);
439 33501562 2020-03-18 stsp }
440 33501562 2020-03-18 stsp
441 4ba14133 2020-03-20 stsp if (imsg_compose(ibuf, GOT_IMSG_FETCH_REQUEST, 0, 0, fd,
442 4ba14133 2020-03-20 stsp &fetchreq, sizeof(fetchreq)) == -1)
443 4ba14133 2020-03-20 stsp return got_error_from_errno(
444 4ba14133 2020-03-20 stsp "imsg_compose FETCH_SERVER_PROGRESS");
445 33501562 2020-03-18 stsp
446 4ba14133 2020-03-20 stsp err = flush_imsg(ibuf);
447 4ba14133 2020-03-20 stsp if (err) {
448 659e7fbd 2020-03-20 stsp close(fd);
449 659e7fbd 2020-03-20 stsp return err;
450 659e7fbd 2020-03-20 stsp }
451 4ba14133 2020-03-20 stsp fd = -1;
452 33501562 2020-03-18 stsp
453 33501562 2020-03-18 stsp TAILQ_FOREACH(pe, have_refs, entry) {
454 33501562 2020-03-18 stsp const char *name = pe->path;
455 33501562 2020-03-18 stsp size_t name_len = pe->path_len;
456 33501562 2020-03-18 stsp struct got_object_id *id = pe->data;
457 33501562 2020-03-18 stsp
458 4ba14133 2020-03-20 stsp len = sizeof(struct got_imsg_fetch_have_ref) + name_len;
459 4ba14133 2020-03-20 stsp wbuf = imsg_create(ibuf, GOT_IMSG_FETCH_HAVE_REF, 0, 0, len);
460 4ba14133 2020-03-20 stsp if (wbuf == NULL)
461 4ba14133 2020-03-20 stsp return got_error_from_errno("imsg_create FETCH_HAVE_REF");
462 4ba14133 2020-03-20 stsp
463 33501562 2020-03-18 stsp /* Keep in sync with struct got_imsg_fetch_have_ref! */
464 33501562 2020-03-18 stsp if (imsg_add(wbuf, id->sha1, sizeof(id->sha1)) == -1) {
465 4ba14133 2020-03-20 stsp err = got_error_from_errno("imsg_add FETCH_HAVE_REF");
466 33501562 2020-03-18 stsp ibuf_free(wbuf);
467 33501562 2020-03-18 stsp return err;
468 33501562 2020-03-18 stsp }
469 33501562 2020-03-18 stsp if (imsg_add(wbuf, &name_len, sizeof(name_len)) == -1) {
470 4ba14133 2020-03-20 stsp err = got_error_from_errno("imsg_add FETCH_HAVE_REF");
471 33501562 2020-03-18 stsp ibuf_free(wbuf);
472 33501562 2020-03-18 stsp return err;
473 33501562 2020-03-18 stsp }
474 33501562 2020-03-18 stsp if (imsg_add(wbuf, name, name_len) == -1) {
475 4ba14133 2020-03-20 stsp err = got_error_from_errno("imsg_add FETCH_HAVE_REF");
476 33501562 2020-03-18 stsp ibuf_free(wbuf);
477 33501562 2020-03-18 stsp return err;
478 33501562 2020-03-18 stsp }
479 4ba14133 2020-03-20 stsp
480 4ba14133 2020-03-20 stsp wbuf->fd = -1;
481 4ba14133 2020-03-20 stsp imsg_close(ibuf, wbuf);
482 4ba14133 2020-03-20 stsp err = flush_imsg(ibuf);
483 4ba14133 2020-03-20 stsp if (err)
484 4ba14133 2020-03-20 stsp return err;
485 33501562 2020-03-18 stsp }
486 33501562 2020-03-18 stsp
487 4ba14133 2020-03-20 stsp TAILQ_FOREACH(pe, wanted_branches, entry) {
488 4ba14133 2020-03-20 stsp const char *name = pe->path;
489 4ba14133 2020-03-20 stsp size_t name_len = pe->path_len;
490 4ba14133 2020-03-20 stsp
491 4ba14133 2020-03-20 stsp len = sizeof(struct got_imsg_fetch_wanted_branch) + name_len;
492 4ba14133 2020-03-20 stsp wbuf = imsg_create(ibuf, GOT_IMSG_FETCH_WANTED_BRANCH, 0, 0,
493 4ba14133 2020-03-20 stsp len);
494 4ba14133 2020-03-20 stsp if (wbuf == NULL)
495 4ba14133 2020-03-20 stsp return got_error_from_errno(
496 4ba14133 2020-03-20 stsp "imsg_create FETCH_WANTED_BRANCH");
497 4ba14133 2020-03-20 stsp
498 4ba14133 2020-03-20 stsp /* Keep in sync with struct got_imsg_fetch_wanted_branch! */
499 4ba14133 2020-03-20 stsp if (imsg_add(wbuf, &name_len, sizeof(name_len)) == -1) {
500 4ba14133 2020-03-20 stsp err = got_error_from_errno(
501 4ba14133 2020-03-20 stsp "imsg_add FETCH_WANTED_BRANCH");
502 4ba14133 2020-03-20 stsp ibuf_free(wbuf);
503 4ba14133 2020-03-20 stsp return err;
504 4ba14133 2020-03-20 stsp }
505 4ba14133 2020-03-20 stsp if (imsg_add(wbuf, name, name_len) == -1) {
506 4ba14133 2020-03-20 stsp err = got_error_from_errno(
507 4ba14133 2020-03-20 stsp "imsg_add FETCH_WANTED_BRANCH");
508 4ba14133 2020-03-20 stsp ibuf_free(wbuf);
509 4ba14133 2020-03-20 stsp return err;
510 4ba14133 2020-03-20 stsp }
511 4ba14133 2020-03-20 stsp
512 4ba14133 2020-03-20 stsp wbuf->fd = -1;
513 4ba14133 2020-03-20 stsp imsg_close(ibuf, wbuf);
514 4ba14133 2020-03-20 stsp err = flush_imsg(ibuf);
515 4ba14133 2020-03-20 stsp if (err)
516 4ba14133 2020-03-20 stsp return err;
517 4ba14133 2020-03-20 stsp }
518 4ba14133 2020-03-20 stsp
519 0e4002ca 2020-03-21 stsp TAILQ_FOREACH(pe, wanted_refs, entry) {
520 0e4002ca 2020-03-21 stsp const char *name = pe->path;
521 0e4002ca 2020-03-21 stsp size_t name_len = pe->path_len;
522 0e4002ca 2020-03-21 stsp
523 0e4002ca 2020-03-21 stsp len = sizeof(struct got_imsg_fetch_wanted_ref) + name_len;
524 0e4002ca 2020-03-21 stsp wbuf = imsg_create(ibuf, GOT_IMSG_FETCH_WANTED_REF, 0, 0,
525 0e4002ca 2020-03-21 stsp len);
526 0e4002ca 2020-03-21 stsp if (wbuf == NULL)
527 0e4002ca 2020-03-21 stsp return got_error_from_errno(
528 0e4002ca 2020-03-21 stsp "imsg_create FETCH_WANTED_REF");
529 0e4002ca 2020-03-21 stsp
530 0e4002ca 2020-03-21 stsp /* Keep in sync with struct got_imsg_fetch_wanted_ref! */
531 0e4002ca 2020-03-21 stsp if (imsg_add(wbuf, &name_len, sizeof(name_len)) == -1) {
532 0e4002ca 2020-03-21 stsp err = got_error_from_errno(
533 0e4002ca 2020-03-21 stsp "imsg_add FETCH_WANTED_REF");
534 0e4002ca 2020-03-21 stsp ibuf_free(wbuf);
535 0e4002ca 2020-03-21 stsp return err;
536 0e4002ca 2020-03-21 stsp }
537 0e4002ca 2020-03-21 stsp if (imsg_add(wbuf, name, name_len) == -1) {
538 0e4002ca 2020-03-21 stsp err = got_error_from_errno(
539 0e4002ca 2020-03-21 stsp "imsg_add FETCH_WANTED_REF");
540 0e4002ca 2020-03-21 stsp ibuf_free(wbuf);
541 0e4002ca 2020-03-21 stsp return err;
542 0e4002ca 2020-03-21 stsp }
543 0e4002ca 2020-03-21 stsp
544 0e4002ca 2020-03-21 stsp wbuf->fd = -1;
545 0e4002ca 2020-03-21 stsp imsg_close(ibuf, wbuf);
546 0e4002ca 2020-03-21 stsp err = flush_imsg(ibuf);
547 0e4002ca 2020-03-21 stsp if (err)
548 0e4002ca 2020-03-21 stsp return err;
549 0e4002ca 2020-03-21 stsp }
550 0e4002ca 2020-03-21 stsp
551 0e4002ca 2020-03-21 stsp
552 4ba14133 2020-03-20 stsp return NULL;
553 4ba14133 2020-03-20 stsp
554 93658fb9 2020-03-18 stsp }
555 93658fb9 2020-03-18 stsp
556 93658fb9 2020-03-18 stsp const struct got_error *
557 f826addf 2020-03-18 stsp got_privsep_send_fetch_outfd(struct imsgbuf *ibuf, int fd)
558 f826addf 2020-03-18 stsp {
559 f826addf 2020-03-18 stsp return send_fd(ibuf, GOT_IMSG_FETCH_OUTFD, fd);
560 f826addf 2020-03-18 stsp }
561 f826addf 2020-03-18 stsp
562 f826addf 2020-03-18 stsp
563 f826addf 2020-03-18 stsp const struct got_error *
564 abe0f35f 2020-03-18 stsp got_privsep_send_fetch_symrefs(struct imsgbuf *ibuf,
565 abe0f35f 2020-03-18 stsp struct got_pathlist_head *symrefs)
566 abe0f35f 2020-03-18 stsp {
567 abe0f35f 2020-03-18 stsp const struct got_error *err = NULL;
568 abe0f35f 2020-03-18 stsp struct ibuf *wbuf;
569 abe0f35f 2020-03-18 stsp size_t len, nsymrefs = 0;
570 abe0f35f 2020-03-18 stsp struct got_pathlist_entry *pe;
571 abe0f35f 2020-03-18 stsp
572 abe0f35f 2020-03-18 stsp len = sizeof(struct got_imsg_fetch_symrefs);
573 abe0f35f 2020-03-18 stsp TAILQ_FOREACH(pe, symrefs, entry) {
574 abe0f35f 2020-03-18 stsp const char *target = pe->data;
575 abe0f35f 2020-03-18 stsp len += sizeof(struct got_imsg_fetch_symref) +
576 abe0f35f 2020-03-18 stsp pe->path_len + strlen(target);
577 abe0f35f 2020-03-18 stsp nsymrefs++;
578 abe0f35f 2020-03-18 stsp }
579 abe0f35f 2020-03-18 stsp
580 abe0f35f 2020-03-18 stsp if (len >= MAX_IMSGSIZE - IMSG_HEADER_SIZE)
581 abe0f35f 2020-03-18 stsp return got_error(GOT_ERR_NO_SPACE);
582 abe0f35f 2020-03-18 stsp
583 abe0f35f 2020-03-18 stsp wbuf = imsg_create(ibuf, GOT_IMSG_FETCH_SYMREFS, 0, 0, len);
584 abe0f35f 2020-03-18 stsp if (wbuf == NULL)
585 abe0f35f 2020-03-18 stsp return got_error_from_errno("imsg_create FETCH_SYMREFS");
586 abe0f35f 2020-03-18 stsp
587 abe0f35f 2020-03-18 stsp /* Keep in sync with struct got_imsg_fetch_symrefs definition! */
588 abe0f35f 2020-03-18 stsp if (imsg_add(wbuf, &nsymrefs, sizeof(nsymrefs)) == -1) {
589 abe0f35f 2020-03-18 stsp err = got_error_from_errno("imsg_add FETCH_SYMREFS");
590 abe0f35f 2020-03-18 stsp ibuf_free(wbuf);
591 abe0f35f 2020-03-18 stsp return err;
592 abe0f35f 2020-03-18 stsp }
593 abe0f35f 2020-03-18 stsp
594 abe0f35f 2020-03-18 stsp TAILQ_FOREACH(pe, symrefs, entry) {
595 abe0f35f 2020-03-18 stsp const char *name = pe->path;
596 abe0f35f 2020-03-18 stsp size_t name_len = pe->path_len;
597 abe0f35f 2020-03-18 stsp const char *target = pe->data;
598 abe0f35f 2020-03-18 stsp size_t target_len = strlen(target);
599 abe0f35f 2020-03-18 stsp
600 abe0f35f 2020-03-18 stsp /* Keep in sync with struct got_imsg_fetch_symref definition! */
601 abe0f35f 2020-03-18 stsp if (imsg_add(wbuf, &name_len, sizeof(name_len)) == -1) {
602 abe0f35f 2020-03-18 stsp err = got_error_from_errno("imsg_add FETCH_SYMREFS");
603 abe0f35f 2020-03-18 stsp ibuf_free(wbuf);
604 abe0f35f 2020-03-18 stsp return err;
605 abe0f35f 2020-03-18 stsp }
606 abe0f35f 2020-03-18 stsp if (imsg_add(wbuf, &target_len, sizeof(target_len)) == -1) {
607 abe0f35f 2020-03-18 stsp err = got_error_from_errno("imsg_add FETCH_SYMREFS");
608 abe0f35f 2020-03-18 stsp ibuf_free(wbuf);
609 abe0f35f 2020-03-18 stsp return err;
610 abe0f35f 2020-03-18 stsp }
611 abe0f35f 2020-03-18 stsp if (imsg_add(wbuf, name, name_len) == -1) {
612 abe0f35f 2020-03-18 stsp err = got_error_from_errno("imsg_add FETCH_SYMREFS");
613 abe0f35f 2020-03-18 stsp ibuf_free(wbuf);
614 abe0f35f 2020-03-18 stsp return err;
615 abe0f35f 2020-03-18 stsp }
616 abe0f35f 2020-03-18 stsp if (imsg_add(wbuf, target, target_len) == -1) {
617 abe0f35f 2020-03-18 stsp err = got_error_from_errno("imsg_add FETCH_SYMREFS");
618 abe0f35f 2020-03-18 stsp ibuf_free(wbuf);
619 abe0f35f 2020-03-18 stsp return err;
620 abe0f35f 2020-03-18 stsp }
621 abe0f35f 2020-03-18 stsp }
622 abe0f35f 2020-03-18 stsp
623 abe0f35f 2020-03-18 stsp wbuf->fd = -1;
624 abe0f35f 2020-03-18 stsp imsg_close(ibuf, wbuf);
625 abe0f35f 2020-03-18 stsp return flush_imsg(ibuf);
626 abe0f35f 2020-03-18 stsp }
627 abe0f35f 2020-03-18 stsp
628 abe0f35f 2020-03-18 stsp const struct got_error *
629 ea7396b9 2020-03-18 stsp got_privsep_send_fetch_ref(struct imsgbuf *ibuf,
630 b9f99abf 2020-03-18 stsp struct got_object_id *refid, const char *refname)
631 b9f99abf 2020-03-18 stsp {
632 b9f99abf 2020-03-18 stsp const struct got_error *err = NULL;
633 b9f99abf 2020-03-18 stsp struct ibuf *wbuf;
634 b9f99abf 2020-03-18 stsp size_t len, reflen = strlen(refname);
635 b9f99abf 2020-03-18 stsp
636 ea7396b9 2020-03-18 stsp len = sizeof(struct got_imsg_fetch_ref) + reflen;
637 b9f99abf 2020-03-18 stsp if (len >= MAX_IMSGSIZE - IMSG_HEADER_SIZE)
638 b9f99abf 2020-03-18 stsp return got_error(GOT_ERR_NO_SPACE);
639 b9f99abf 2020-03-18 stsp
640 ea7396b9 2020-03-18 stsp wbuf = imsg_create(ibuf, GOT_IMSG_FETCH_REF, 0, 0, len);
641 b9f99abf 2020-03-18 stsp if (wbuf == NULL)
642 ea7396b9 2020-03-18 stsp return got_error_from_errno("imsg_create FETCH_REF");
643 ea7396b9 2020-03-18 stsp
644 ea7396b9 2020-03-18 stsp /* Keep in sync with struct got_imsg_fetch_ref definition! */
645 b9f99abf 2020-03-18 stsp if (imsg_add(wbuf, refid->sha1, SHA1_DIGEST_LENGTH) == -1) {
646 ea7396b9 2020-03-18 stsp err = got_error_from_errno("imsg_add FETCH_REF");
647 b9f99abf 2020-03-18 stsp ibuf_free(wbuf);
648 b9f99abf 2020-03-18 stsp return err;
649 b9f99abf 2020-03-18 stsp }
650 b9f99abf 2020-03-18 stsp if (imsg_add(wbuf, refname, reflen) == -1) {
651 ea7396b9 2020-03-18 stsp err = got_error_from_errno("imsg_add FETCH_REF");
652 b9f99abf 2020-03-18 stsp ibuf_free(wbuf);
653 b9f99abf 2020-03-18 stsp return err;
654 b9f99abf 2020-03-18 stsp }
655 b9f99abf 2020-03-18 stsp
656 b9f99abf 2020-03-18 stsp wbuf->fd = -1;
657 b9f99abf 2020-03-18 stsp imsg_close(ibuf, wbuf);
658 531c3985 2020-03-18 stsp return flush_imsg(ibuf);
659 531c3985 2020-03-18 stsp }
660 531c3985 2020-03-18 stsp
661 531c3985 2020-03-18 stsp const struct got_error *
662 531c3985 2020-03-18 stsp got_privsep_send_fetch_server_progress(struct imsgbuf *ibuf, const char *msg,
663 531c3985 2020-03-18 stsp size_t msglen)
664 531c3985 2020-03-18 stsp {
665 531c3985 2020-03-18 stsp if (msglen > MAX_IMSGSIZE - IMSG_HEADER_SIZE)
666 531c3985 2020-03-18 stsp return got_error(GOT_ERR_NO_SPACE);
667 531c3985 2020-03-18 stsp
668 531c3985 2020-03-18 stsp if (msglen == 0)
669 531c3985 2020-03-18 stsp return NULL;
670 531c3985 2020-03-18 stsp
671 531c3985 2020-03-18 stsp if (imsg_compose(ibuf, GOT_IMSG_FETCH_SERVER_PROGRESS, 0, 0, -1,
672 531c3985 2020-03-18 stsp msg, msglen) == -1)
673 531c3985 2020-03-18 stsp return got_error_from_errno(
674 531c3985 2020-03-18 stsp "imsg_compose FETCH_SERVER_PROGRESS");
675 d2cdc636 2020-03-18 stsp
676 d2cdc636 2020-03-18 stsp return flush_imsg(ibuf);
677 d2cdc636 2020-03-18 stsp }
678 d2cdc636 2020-03-18 stsp
679 d2cdc636 2020-03-18 stsp const struct got_error *
680 d2cdc636 2020-03-18 stsp got_privsep_send_fetch_download_progress(struct imsgbuf *ibuf, off_t bytes)
681 d2cdc636 2020-03-18 stsp {
682 d2cdc636 2020-03-18 stsp if (imsg_compose(ibuf, GOT_IMSG_FETCH_DOWNLOAD_PROGRESS, 0, 0, -1,
683 d2cdc636 2020-03-18 stsp &bytes, sizeof(bytes)) == -1)
684 d2cdc636 2020-03-18 stsp return got_error_from_errno(
685 d2cdc636 2020-03-18 stsp "imsg_compose FETCH_DOWNLOAD_PROGRESS");
686 531c3985 2020-03-18 stsp
687 b9f99abf 2020-03-18 stsp return flush_imsg(ibuf);
688 b9f99abf 2020-03-18 stsp }
689 b9f99abf 2020-03-18 stsp
690 b9f99abf 2020-03-18 stsp const struct got_error *
691 93658fb9 2020-03-18 stsp got_privsep_send_fetch_done(struct imsgbuf *ibuf, struct got_object_id hash)
692 93658fb9 2020-03-18 stsp {
693 93658fb9 2020-03-18 stsp if (imsg_compose(ibuf, GOT_IMSG_FETCH_DONE, 0, 0, -1,
694 93658fb9 2020-03-18 stsp hash.sha1, SHA1_DIGEST_LENGTH) == -1)
695 93658fb9 2020-03-18 stsp return got_error_from_errno("imsg_compose FETCH");
696 93658fb9 2020-03-18 stsp return flush_imsg(ibuf);
697 93658fb9 2020-03-18 stsp }
698 93658fb9 2020-03-18 stsp
699 b9f99abf 2020-03-18 stsp
700 93658fb9 2020-03-18 stsp const struct got_error *
701 8f2d01a6 2020-03-18 stsp got_privsep_recv_fetch_progress(int *done, struct got_object_id **id,
702 531c3985 2020-03-18 stsp char **refname, struct got_pathlist_head *symrefs, char **server_progress,
703 d2cdc636 2020-03-18 stsp off_t *packfile_size, struct imsgbuf *ibuf)
704 b9f99abf 2020-03-18 stsp {
705 b9f99abf 2020-03-18 stsp const struct got_error *err = NULL;
706 b9f99abf 2020-03-18 stsp struct imsg imsg;
707 b9f99abf 2020-03-18 stsp size_t datalen;
708 abe0f35f 2020-03-18 stsp struct got_imsg_fetch_symrefs *isymrefs = NULL;
709 abe0f35f 2020-03-18 stsp size_t n, remain;
710 abe0f35f 2020-03-18 stsp off_t off;
711 531c3985 2020-03-18 stsp int i;
712 b9f99abf 2020-03-18 stsp
713 8f2d01a6 2020-03-18 stsp *done = 0;
714 8f2d01a6 2020-03-18 stsp *id = NULL;
715 b9f99abf 2020-03-18 stsp *refname = NULL;
716 531c3985 2020-03-18 stsp *server_progress = NULL;
717 5a489642 2020-03-19 stsp *packfile_size = 0;
718 b9f99abf 2020-03-18 stsp
719 531c3985 2020-03-18 stsp err = got_privsep_recv_imsg(&imsg, ibuf, 0);
720 b9f99abf 2020-03-18 stsp if (err)
721 b9f99abf 2020-03-18 stsp return err;
722 b9f99abf 2020-03-18 stsp
723 b9f99abf 2020-03-18 stsp datalen = imsg.hdr.len - IMSG_HEADER_SIZE;
724 b9f99abf 2020-03-18 stsp switch (imsg.hdr.type) {
725 b9f99abf 2020-03-18 stsp case GOT_IMSG_ERROR:
726 531c3985 2020-03-18 stsp if (datalen < sizeof(struct got_imsg_error)) {
727 531c3985 2020-03-18 stsp err = got_error(GOT_ERR_PRIVSEP_LEN);
728 531c3985 2020-03-18 stsp break;
729 531c3985 2020-03-18 stsp }
730 b9f99abf 2020-03-18 stsp err = recv_imsg_error(&imsg, datalen);
731 b9f99abf 2020-03-18 stsp break;
732 abe0f35f 2020-03-18 stsp case GOT_IMSG_FETCH_SYMREFS:
733 abe0f35f 2020-03-18 stsp if (datalen < sizeof(*isymrefs)) {
734 abe0f35f 2020-03-18 stsp err = got_error(GOT_ERR_PRIVSEP_LEN);
735 abe0f35f 2020-03-18 stsp break;
736 abe0f35f 2020-03-18 stsp }
737 abe0f35f 2020-03-18 stsp if (isymrefs != NULL) {
738 abe0f35f 2020-03-18 stsp err = got_error(GOT_ERR_PRIVSEP_MSG);
739 abe0f35f 2020-03-18 stsp break;
740 abe0f35f 2020-03-18 stsp }
741 abe0f35f 2020-03-18 stsp isymrefs = (struct got_imsg_fetch_symrefs *)imsg.data;
742 abe0f35f 2020-03-18 stsp off = sizeof(*isymrefs);
743 abe0f35f 2020-03-18 stsp remain = datalen - off;
744 abe0f35f 2020-03-18 stsp for (n = 0; n < isymrefs->nsymrefs; n++) {
745 abe0f35f 2020-03-18 stsp struct got_imsg_fetch_symref *s;
746 abe0f35f 2020-03-18 stsp char *name, *target;
747 abe0f35f 2020-03-18 stsp if (remain < sizeof(struct got_imsg_fetch_symref)) {
748 abe0f35f 2020-03-18 stsp err = got_error(GOT_ERR_PRIVSEP_LEN);
749 abe0f35f 2020-03-18 stsp goto done;
750 abe0f35f 2020-03-18 stsp }
751 abe0f35f 2020-03-18 stsp s = (struct got_imsg_fetch_symref *)(imsg.data + off);
752 abe0f35f 2020-03-18 stsp off += sizeof(*s);
753 abe0f35f 2020-03-18 stsp remain -= sizeof(*s);
754 abe0f35f 2020-03-18 stsp if (remain < s->name_len) {
755 abe0f35f 2020-03-18 stsp err = got_error(GOT_ERR_PRIVSEP_LEN);
756 abe0f35f 2020-03-18 stsp goto done;
757 abe0f35f 2020-03-18 stsp }
758 abe0f35f 2020-03-18 stsp name = strndup(imsg.data + off, s->name_len);
759 abe0f35f 2020-03-18 stsp if (name == NULL) {
760 abe0f35f 2020-03-18 stsp err = got_error_from_errno("strndup");
761 abe0f35f 2020-03-18 stsp goto done;
762 abe0f35f 2020-03-18 stsp }
763 abe0f35f 2020-03-18 stsp off += s->name_len;
764 abe0f35f 2020-03-18 stsp remain -= s->name_len;
765 abe0f35f 2020-03-18 stsp if (remain < s->target_len) {
766 abe0f35f 2020-03-18 stsp err = got_error(GOT_ERR_PRIVSEP_LEN);
767 abe0f35f 2020-03-18 stsp free(name);
768 abe0f35f 2020-03-18 stsp goto done;
769 abe0f35f 2020-03-18 stsp }
770 abe0f35f 2020-03-18 stsp target = strndup(imsg.data + off, s->target_len);
771 abe0f35f 2020-03-18 stsp if (target == NULL) {
772 abe0f35f 2020-03-18 stsp err = got_error_from_errno("strndup");
773 abe0f35f 2020-03-18 stsp free(name);
774 abe0f35f 2020-03-18 stsp goto done;
775 abe0f35f 2020-03-18 stsp }
776 abe0f35f 2020-03-18 stsp off += s->target_len;
777 abe0f35f 2020-03-18 stsp remain -= s->target_len;
778 abe0f35f 2020-03-18 stsp err = got_pathlist_append(symrefs, name, target);
779 abe0f35f 2020-03-18 stsp if (err) {
780 abe0f35f 2020-03-18 stsp free(name);
781 abe0f35f 2020-03-18 stsp free(target);
782 abe0f35f 2020-03-18 stsp goto done;
783 abe0f35f 2020-03-18 stsp }
784 abe0f35f 2020-03-18 stsp }
785 abe0f35f 2020-03-18 stsp break;
786 ea7396b9 2020-03-18 stsp case GOT_IMSG_FETCH_REF:
787 531c3985 2020-03-18 stsp if (datalen <= SHA1_DIGEST_LENGTH) {
788 531c3985 2020-03-18 stsp err = got_error(GOT_ERR_PRIVSEP_MSG);
789 531c3985 2020-03-18 stsp break;
790 531c3985 2020-03-18 stsp }
791 8f2d01a6 2020-03-18 stsp *id = malloc(sizeof(**id));
792 8f2d01a6 2020-03-18 stsp if (*id == NULL) {
793 b9f99abf 2020-03-18 stsp err = got_error_from_errno("malloc");
794 b9f99abf 2020-03-18 stsp break;
795 b9f99abf 2020-03-18 stsp }
796 8f2d01a6 2020-03-18 stsp memcpy((*id)->sha1, imsg.data, SHA1_DIGEST_LENGTH);
797 b9f99abf 2020-03-18 stsp *refname = strndup(imsg.data + SHA1_DIGEST_LENGTH,
798 b9f99abf 2020-03-18 stsp datalen - SHA1_DIGEST_LENGTH);
799 b9f99abf 2020-03-18 stsp if (*refname == NULL) {
800 b9f99abf 2020-03-18 stsp err = got_error_from_errno("strndup");
801 8f2d01a6 2020-03-18 stsp break;
802 8f2d01a6 2020-03-18 stsp }
803 8f2d01a6 2020-03-18 stsp break;
804 531c3985 2020-03-18 stsp case GOT_IMSG_FETCH_SERVER_PROGRESS:
805 531c3985 2020-03-18 stsp if (datalen == 0) {
806 531c3985 2020-03-18 stsp err = got_error(GOT_ERR_PRIVSEP_LEN);
807 531c3985 2020-03-18 stsp break;
808 531c3985 2020-03-18 stsp }
809 531c3985 2020-03-18 stsp *server_progress = strndup(imsg.data, datalen);
810 531c3985 2020-03-18 stsp if (*server_progress == NULL) {
811 531c3985 2020-03-18 stsp err = got_error_from_errno("strndup");
812 531c3985 2020-03-18 stsp break;
813 531c3985 2020-03-18 stsp }
814 531c3985 2020-03-18 stsp for (i = 0; i < datalen; i++) {
815 531c3985 2020-03-18 stsp if (!isprint((unsigned char)(*server_progress)[i]) &&
816 531c3985 2020-03-18 stsp !isspace((unsigned char)(*server_progress)[i])) {
817 531c3985 2020-03-18 stsp err = got_error(GOT_ERR_PRIVSEP_MSG);
818 531c3985 2020-03-18 stsp free(*server_progress);
819 531c3985 2020-03-18 stsp *server_progress = NULL;
820 531c3985 2020-03-18 stsp goto done;
821 531c3985 2020-03-18 stsp }
822 531c3985 2020-03-18 stsp }
823 531c3985 2020-03-18 stsp break;
824 d2cdc636 2020-03-18 stsp case GOT_IMSG_FETCH_DOWNLOAD_PROGRESS:
825 d2cdc636 2020-03-18 stsp if (datalen < sizeof(*packfile_size)) {
826 d2cdc636 2020-03-18 stsp err = got_error(GOT_ERR_PRIVSEP_MSG);
827 d2cdc636 2020-03-18 stsp break;
828 d2cdc636 2020-03-18 stsp }
829 d2cdc636 2020-03-18 stsp memcpy(packfile_size, imsg.data, sizeof(*packfile_size));
830 d2cdc636 2020-03-18 stsp break;
831 8f2d01a6 2020-03-18 stsp case GOT_IMSG_FETCH_DONE:
832 8f2d01a6 2020-03-18 stsp *id = malloc(sizeof(**id));
833 8f2d01a6 2020-03-18 stsp if (*id == NULL) {
834 8f2d01a6 2020-03-18 stsp err = got_error_from_errno("malloc");
835 b9f99abf 2020-03-18 stsp break;
836 b9f99abf 2020-03-18 stsp }
837 8f2d01a6 2020-03-18 stsp if (datalen != SHA1_DIGEST_LENGTH) {
838 8f2d01a6 2020-03-18 stsp err = got_error(GOT_ERR_PRIVSEP_MSG);
839 8f2d01a6 2020-03-18 stsp break;
840 8f2d01a6 2020-03-18 stsp }
841 8f2d01a6 2020-03-18 stsp memcpy((*id)->sha1, imsg.data, SHA1_DIGEST_LENGTH);
842 8f2d01a6 2020-03-18 stsp *done = 1;
843 b9f99abf 2020-03-18 stsp break;
844 b9f99abf 2020-03-18 stsp default:
845 b887aab6 2020-03-18 stsp err = got_error(GOT_ERR_PRIVSEP_MSG);
846 b887aab6 2020-03-18 stsp break;
847 b9f99abf 2020-03-18 stsp }
848 abe0f35f 2020-03-18 stsp done:
849 b887aab6 2020-03-18 stsp if (err) {
850 8f2d01a6 2020-03-18 stsp free(*id);
851 8f2d01a6 2020-03-18 stsp *id = NULL;
852 b887aab6 2020-03-18 stsp free(*refname);
853 b887aab6 2020-03-18 stsp *refname = NULL;
854 b887aab6 2020-03-18 stsp }
855 b9f99abf 2020-03-18 stsp imsg_free(&imsg);
856 b9f99abf 2020-03-18 stsp return err;
857 93658fb9 2020-03-18 stsp }
858 93658fb9 2020-03-18 stsp
859 93658fb9 2020-03-18 stsp const struct got_error *
860 668a20f6 2020-03-18 stsp got_privsep_send_index_pack_req(struct imsgbuf *ibuf, uint8_t *pack_hash,
861 668a20f6 2020-03-18 stsp int fd)
862 93658fb9 2020-03-18 stsp {
863 93658fb9 2020-03-18 stsp const struct got_error *err = NULL;
864 93658fb9 2020-03-18 stsp
865 668a20f6 2020-03-18 stsp /* Keep in sync with struct got_imsg_index_pack_request */
866 93658fb9 2020-03-18 stsp if (imsg_compose(ibuf, GOT_IMSG_IDXPACK_REQUEST, 0, 0, fd,
867 668a20f6 2020-03-18 stsp pack_hash, SHA1_DIGEST_LENGTH) == -1) {
868 93658fb9 2020-03-18 stsp err = got_error_from_errno("imsg_compose INDEX_REQUEST");
869 93658fb9 2020-03-18 stsp close(fd);
870 93658fb9 2020-03-18 stsp return err;
871 93658fb9 2020-03-18 stsp }
872 baa9fea0 2020-03-18 stsp return flush_imsg(ibuf);
873 baa9fea0 2020-03-18 stsp }
874 baa9fea0 2020-03-18 stsp
875 baa9fea0 2020-03-18 stsp const struct got_error *
876 73ab1060 2020-03-18 stsp got_privsep_send_index_pack_outfd(struct imsgbuf *ibuf, int fd)
877 73ab1060 2020-03-18 stsp {
878 73ab1060 2020-03-18 stsp return send_fd(ibuf, GOT_IMSG_IDXPACK_OUTFD, fd);
879 73ab1060 2020-03-18 stsp }
880 73ab1060 2020-03-18 stsp
881 73ab1060 2020-03-18 stsp const struct got_error *
882 668a20f6 2020-03-18 stsp got_privsep_send_index_pack_progress(struct imsgbuf *ibuf, int nobj_total,
883 668a20f6 2020-03-18 stsp int nobj_indexed, int nobj_loose, int nobj_resolved)
884 baa9fea0 2020-03-18 stsp {
885 baa9fea0 2020-03-18 stsp struct got_imsg_index_pack_progress iprogress;
886 baa9fea0 2020-03-18 stsp
887 668a20f6 2020-03-18 stsp iprogress.nobj_total = nobj_total;
888 668a20f6 2020-03-18 stsp iprogress.nobj_indexed = nobj_indexed;
889 668a20f6 2020-03-18 stsp iprogress.nobj_loose = nobj_loose;
890 668a20f6 2020-03-18 stsp iprogress.nobj_resolved = nobj_resolved;
891 baa9fea0 2020-03-18 stsp
892 baa9fea0 2020-03-18 stsp if (imsg_compose(ibuf, GOT_IMSG_IDXPACK_PROGRESS, 0, 0, -1,
893 baa9fea0 2020-03-18 stsp &iprogress, sizeof(iprogress)) == -1)
894 baa9fea0 2020-03-18 stsp return got_error_from_errno("imsg_compose IDXPACK_PROGRESS");
895 baa9fea0 2020-03-18 stsp
896 93658fb9 2020-03-18 stsp return flush_imsg(ibuf);
897 93658fb9 2020-03-18 stsp }
898 93658fb9 2020-03-18 stsp
899 93658fb9 2020-03-18 stsp const struct got_error *
900 93658fb9 2020-03-18 stsp got_privsep_send_index_pack_done(struct imsgbuf *ibuf)
901 93658fb9 2020-03-18 stsp {
902 93658fb9 2020-03-18 stsp if (imsg_compose(ibuf, GOT_IMSG_IDXPACK_DONE, 0, 0, -1, NULL, 0) == -1)
903 93658fb9 2020-03-18 stsp return got_error_from_errno("imsg_compose FETCH");
904 93658fb9 2020-03-18 stsp return flush_imsg(ibuf);
905 93658fb9 2020-03-18 stsp }
906 93658fb9 2020-03-18 stsp
907 93658fb9 2020-03-18 stsp const struct got_error *
908 668a20f6 2020-03-18 stsp got_privsep_recv_index_progress(int *done, int *nobj_total,
909 668a20f6 2020-03-18 stsp int *nobj_indexed, int *nobj_loose, int *nobj_resolved,
910 668a20f6 2020-03-18 stsp struct imsgbuf *ibuf)
911 93658fb9 2020-03-18 stsp {
912 93658fb9 2020-03-18 stsp const struct got_error *err = NULL;
913 93658fb9 2020-03-18 stsp struct imsg imsg;
914 baa9fea0 2020-03-18 stsp struct got_imsg_index_pack_progress *iprogress;
915 baa9fea0 2020-03-18 stsp size_t datalen;
916 93658fb9 2020-03-18 stsp
917 baa9fea0 2020-03-18 stsp *done = 0;
918 668a20f6 2020-03-18 stsp *nobj_total = 0;
919 668a20f6 2020-03-18 stsp *nobj_indexed = 0;
920 668a20f6 2020-03-18 stsp *nobj_resolved = 0;
921 baa9fea0 2020-03-18 stsp
922 93658fb9 2020-03-18 stsp err = got_privsep_recv_imsg(&imsg, ibuf, 0);
923 93658fb9 2020-03-18 stsp if (err)
924 93658fb9 2020-03-18 stsp return err;
925 baa9fea0 2020-03-18 stsp
926 baa9fea0 2020-03-18 stsp datalen = imsg.hdr.len - IMSG_HEADER_SIZE;
927 baa9fea0 2020-03-18 stsp switch (imsg.hdr.type) {
928 baa9fea0 2020-03-18 stsp case GOT_IMSG_ERROR:
929 baa9fea0 2020-03-18 stsp if (datalen < sizeof(struct got_imsg_error)) {
930 baa9fea0 2020-03-18 stsp err = got_error(GOT_ERR_PRIVSEP_LEN);
931 baa9fea0 2020-03-18 stsp break;
932 baa9fea0 2020-03-18 stsp }
933 baa9fea0 2020-03-18 stsp err = recv_imsg_error(&imsg, datalen);
934 baa9fea0 2020-03-18 stsp break;
935 baa9fea0 2020-03-18 stsp case GOT_IMSG_IDXPACK_PROGRESS:
936 baa9fea0 2020-03-18 stsp if (datalen < sizeof(*iprogress)) {
937 baa9fea0 2020-03-18 stsp err = got_error(GOT_ERR_PRIVSEP_LEN);
938 baa9fea0 2020-03-18 stsp break;
939 baa9fea0 2020-03-18 stsp }
940 baa9fea0 2020-03-18 stsp iprogress = (struct got_imsg_index_pack_progress *)imsg.data;
941 668a20f6 2020-03-18 stsp *nobj_total = iprogress->nobj_total;
942 668a20f6 2020-03-18 stsp *nobj_indexed = iprogress->nobj_indexed;
943 668a20f6 2020-03-18 stsp *nobj_loose = iprogress->nobj_loose;
944 668a20f6 2020-03-18 stsp *nobj_resolved = iprogress->nobj_resolved;
945 baa9fea0 2020-03-18 stsp break;
946 baa9fea0 2020-03-18 stsp case GOT_IMSG_IDXPACK_DONE:
947 baa9fea0 2020-03-18 stsp if (datalen != 0) {
948 baa9fea0 2020-03-18 stsp err = got_error(GOT_ERR_PRIVSEP_LEN);
949 baa9fea0 2020-03-18 stsp break;
950 baa9fea0 2020-03-18 stsp }
951 baa9fea0 2020-03-18 stsp *done = 1;
952 baa9fea0 2020-03-18 stsp break;
953 baa9fea0 2020-03-18 stsp default:
954 baa9fea0 2020-03-18 stsp err = got_error(GOT_ERR_PRIVSEP_MSG);
955 baa9fea0 2020-03-18 stsp break;
956 baa9fea0 2020-03-18 stsp }
957 baa9fea0 2020-03-18 stsp
958 93658fb9 2020-03-18 stsp imsg_free(&imsg);
959 baa9fea0 2020-03-18 stsp return err;
960 93658fb9 2020-03-18 stsp }
961 93658fb9 2020-03-18 stsp
962 93658fb9 2020-03-18 stsp const struct got_error *
963 cfd633c2 2018-09-10 stsp got_privsep_get_imsg_obj(struct got_object **obj, struct imsg *imsg,
964 cfd633c2 2018-09-10 stsp struct imsgbuf *ibuf)
965 cfd633c2 2018-09-10 stsp {
966 cfd633c2 2018-09-10 stsp const struct got_error *err = NULL;
967 291624d8 2018-11-07 stsp struct got_imsg_object *iobj;
968 cfd633c2 2018-09-10 stsp size_t datalen = imsg->hdr.len - IMSG_HEADER_SIZE;
969 cfd633c2 2018-09-10 stsp
970 291624d8 2018-11-07 stsp if (datalen != sizeof(*iobj))
971 cfd633c2 2018-09-10 stsp return got_error(GOT_ERR_PRIVSEP_LEN);
972 291624d8 2018-11-07 stsp iobj = imsg->data;
973 cfd633c2 2018-09-10 stsp
974 cfd633c2 2018-09-10 stsp *obj = calloc(1, sizeof(**obj));
975 cfd633c2 2018-09-10 stsp if (*obj == NULL)
976 638f9024 2019-05-13 stsp return got_error_from_errno("calloc");
977 cfd633c2 2018-09-10 stsp
978 291624d8 2018-11-07 stsp memcpy((*obj)->id.sha1, iobj->id, SHA1_DIGEST_LENGTH);
979 291624d8 2018-11-07 stsp (*obj)->type = iobj->type;
980 291624d8 2018-11-07 stsp (*obj)->flags = iobj->flags;
981 291624d8 2018-11-07 stsp (*obj)->hdrlen = iobj->hdrlen;
982 291624d8 2018-11-07 stsp (*obj)->size = iobj->size;
983 c59b3346 2018-09-11 stsp /* path_packfile is handled by caller */
984 291624d8 2018-11-07 stsp if (iobj->flags & GOT_OBJ_FLAG_PACKED) {
985 291624d8 2018-11-07 stsp (*obj)->pack_offset = iobj->pack_offset;
986 291624d8 2018-11-07 stsp (*obj)->pack_idx = iobj->pack_idx;
987 876c234b 2018-09-10 stsp }
988 876c234b 2018-09-10 stsp
989 876c234b 2018-09-10 stsp return err;
990 876c234b 2018-09-10 stsp }
991 876c234b 2018-09-10 stsp
992 2178c42e 2018-04-22 stsp const struct got_error *
993 2178c42e 2018-04-22 stsp got_privsep_recv_obj(struct got_object **obj, struct imsgbuf *ibuf)
994 2178c42e 2018-04-22 stsp {
995 2178c42e 2018-04-22 stsp const struct got_error *err = NULL;
996 2178c42e 2018-04-22 stsp struct imsg imsg;
997 c4eae628 2018-04-23 stsp const size_t min_datalen =
998 c4eae628 2018-04-23 stsp MIN(sizeof(struct got_imsg_error), sizeof(struct got_imsg_object));
999 2178c42e 2018-04-22 stsp
1000 2178c42e 2018-04-22 stsp *obj = NULL;
1001 2178c42e 2018-04-22 stsp
1002 ad242220 2018-09-08 stsp err = got_privsep_recv_imsg(&imsg, ibuf, min_datalen);
1003 2178c42e 2018-04-22 stsp if (err)
1004 2178c42e 2018-04-22 stsp return err;
1005 2178c42e 2018-04-22 stsp
1006 2178c42e 2018-04-22 stsp switch (imsg.hdr.type) {
1007 2178c42e 2018-04-22 stsp case GOT_IMSG_OBJECT:
1008 cfd633c2 2018-09-10 stsp err = got_privsep_get_imsg_obj(obj, &imsg, ibuf);
1009 bff6ca00 2018-04-23 stsp break;
1010 bff6ca00 2018-04-23 stsp default:
1011 bff6ca00 2018-04-23 stsp err = got_error(GOT_ERR_PRIVSEP_MSG);
1012 bff6ca00 2018-04-23 stsp break;
1013 bff6ca00 2018-04-23 stsp }
1014 bff6ca00 2018-04-23 stsp
1015 bff6ca00 2018-04-23 stsp imsg_free(&imsg);
1016 bff6ca00 2018-04-23 stsp
1017 bff6ca00 2018-04-23 stsp return err;
1018 c75f7264 2018-09-11 stsp }
1019 c75f7264 2018-09-11 stsp
1020 c75f7264 2018-09-11 stsp static const struct got_error *
1021 c75f7264 2018-09-11 stsp send_commit_logmsg(struct imsgbuf *ibuf, struct got_commit_object *commit,
1022 c75f7264 2018-09-11 stsp size_t logmsg_len)
1023 c75f7264 2018-09-11 stsp {
1024 fa4ffeb3 2018-11-04 stsp const struct got_error *err = NULL;
1025 c75f7264 2018-09-11 stsp size_t offset, remain;
1026 c75f7264 2018-09-11 stsp
1027 c75f7264 2018-09-11 stsp offset = 0;
1028 c75f7264 2018-09-11 stsp remain = logmsg_len;
1029 c75f7264 2018-09-11 stsp while (remain > 0) {
1030 c75f7264 2018-09-11 stsp size_t n = MIN(MAX_IMSGSIZE - IMSG_HEADER_SIZE, remain);
1031 c75f7264 2018-09-11 stsp
1032 c75f7264 2018-09-11 stsp if (imsg_compose(ibuf, GOT_IMSG_COMMIT_LOGMSG, 0, 0, -1,
1033 fa4ffeb3 2018-11-04 stsp commit->logmsg + offset, n) == -1) {
1034 638f9024 2019-05-13 stsp err = got_error_from_errno("imsg_compose "
1035 230a42bd 2019-05-11 jcs "COMMIT_LOGMSG");
1036 fa4ffeb3 2018-11-04 stsp break;
1037 fa4ffeb3 2018-11-04 stsp }
1038 c75f7264 2018-09-11 stsp
1039 fa4ffeb3 2018-11-04 stsp err = flush_imsg(ibuf);
1040 fa4ffeb3 2018-11-04 stsp if (err)
1041 fa4ffeb3 2018-11-04 stsp break;
1042 c75f7264 2018-09-11 stsp
1043 c75f7264 2018-09-11 stsp offset += n;
1044 c75f7264 2018-09-11 stsp remain -= n;
1045 c75f7264 2018-09-11 stsp }
1046 c75f7264 2018-09-11 stsp
1047 fa4ffeb3 2018-11-04 stsp return err;
1048 bff6ca00 2018-04-23 stsp }
1049 bff6ca00 2018-04-23 stsp
1050 bff6ca00 2018-04-23 stsp const struct got_error *
1051 068fd2bf 2018-04-24 stsp got_privsep_send_commit(struct imsgbuf *ibuf, struct got_commit_object *commit)
1052 bff6ca00 2018-04-23 stsp {
1053 bff6ca00 2018-04-23 stsp const struct got_error *err = NULL;
1054 b9c33926 2018-11-07 stsp struct got_imsg_commit_object *icommit;
1055 bff6ca00 2018-04-23 stsp uint8_t *buf;
1056 bff6ca00 2018-04-23 stsp size_t len, total;
1057 79f35eb3 2018-06-11 stsp struct got_object_qid *qid;
1058 b9c33926 2018-11-07 stsp size_t author_len = strlen(commit->author);
1059 b9c33926 2018-11-07 stsp size_t committer_len = strlen(commit->committer);
1060 c75f7264 2018-09-11 stsp size_t logmsg_len = strlen(commit->logmsg);
1061 bff6ca00 2018-04-23 stsp
1062 b9c33926 2018-11-07 stsp total = sizeof(*icommit) + author_len + committer_len +
1063 b9c33926 2018-11-07 stsp commit->nparents * SHA1_DIGEST_LENGTH;
1064 bff6ca00 2018-04-23 stsp
1065 bff6ca00 2018-04-23 stsp buf = malloc(total);
1066 bff6ca00 2018-04-23 stsp if (buf == NULL)
1067 638f9024 2019-05-13 stsp return got_error_from_errno("malloc");
1068 bff6ca00 2018-04-23 stsp
1069 b9c33926 2018-11-07 stsp icommit = (struct got_imsg_commit_object *)buf;
1070 a7403916 2018-12-24 stsp memcpy(icommit->tree_id, commit->tree_id->sha1,
1071 a7403916 2018-12-24 stsp sizeof(icommit->tree_id));
1072 b9c33926 2018-11-07 stsp icommit->author_len = author_len;
1073 b9c33926 2018-11-07 stsp icommit->author_time = commit->author_time;
1074 b9c33926 2018-11-07 stsp icommit->author_gmtoff = commit->author_gmtoff;
1075 b9c33926 2018-11-07 stsp icommit->committer_len = committer_len;
1076 b9c33926 2018-11-07 stsp icommit->committer_time = commit->committer_time;
1077 b9c33926 2018-11-07 stsp icommit->committer_gmtoff = commit->committer_gmtoff;
1078 b9c33926 2018-11-07 stsp icommit->logmsg_len = logmsg_len;
1079 b9c33926 2018-11-07 stsp icommit->nparents = commit->nparents;
1080 b9c33926 2018-11-07 stsp
1081 b9c33926 2018-11-07 stsp len = sizeof(*icommit);
1082 b9c33926 2018-11-07 stsp memcpy(buf + len, commit->author, author_len);
1083 b9c33926 2018-11-07 stsp len += author_len;
1084 b9c33926 2018-11-07 stsp memcpy(buf + len, commit->committer, committer_len);
1085 b9c33926 2018-11-07 stsp len += committer_len;
1086 79f35eb3 2018-06-11 stsp SIMPLEQ_FOREACH(qid, &commit->parent_ids, entry) {
1087 79f35eb3 2018-06-11 stsp memcpy(buf + len, qid->id, SHA1_DIGEST_LENGTH);
1088 86acc566 2018-04-23 stsp len += SHA1_DIGEST_LENGTH;
1089 bff6ca00 2018-04-23 stsp }
1090 bff6ca00 2018-04-23 stsp
1091 bff6ca00 2018-04-23 stsp if (imsg_compose(ibuf, GOT_IMSG_COMMIT, 0, 0, -1, buf, len) == -1) {
1092 638f9024 2019-05-13 stsp err = got_error_from_errno("imsg_compose COMMIT");
1093 bff6ca00 2018-04-23 stsp goto done;
1094 bff6ca00 2018-04-23 stsp }
1095 bff6ca00 2018-04-23 stsp
1096 904df868 2018-11-04 stsp if (logmsg_len == 0 ||
1097 904df868 2018-11-04 stsp logmsg_len + len > MAX_IMSGSIZE - IMSG_HEADER_SIZE) {
1098 904df868 2018-11-04 stsp err = flush_imsg(ibuf);
1099 904df868 2018-11-04 stsp if (err)
1100 904df868 2018-11-04 stsp goto done;
1101 904df868 2018-11-04 stsp }
1102 c75f7264 2018-09-11 stsp err = send_commit_logmsg(ibuf, commit, logmsg_len);
1103 bff6ca00 2018-04-23 stsp done:
1104 bff6ca00 2018-04-23 stsp free(buf);
1105 bff6ca00 2018-04-23 stsp return err;
1106 bff6ca00 2018-04-23 stsp }
1107 cfd633c2 2018-09-10 stsp
1108 ca6e02ac 2020-01-07 stsp static const struct got_error *
1109 ca6e02ac 2020-01-07 stsp get_commit_from_imsg(struct got_commit_object **commit,
1110 ca6e02ac 2020-01-07 stsp struct imsg *imsg, size_t datalen, struct imsgbuf *ibuf)
1111 bff6ca00 2018-04-23 stsp {
1112 bff6ca00 2018-04-23 stsp const struct got_error *err = NULL;
1113 291624d8 2018-11-07 stsp struct got_imsg_commit_object *icommit;
1114 ca6e02ac 2020-01-07 stsp size_t len = 0;
1115 bff6ca00 2018-04-23 stsp int i;
1116 bff6ca00 2018-04-23 stsp
1117 ca6e02ac 2020-01-07 stsp if (datalen < sizeof(*icommit))
1118 ca6e02ac 2020-01-07 stsp return got_error(GOT_ERR_PRIVSEP_LEN);
1119 bff6ca00 2018-04-23 stsp
1120 ca6e02ac 2020-01-07 stsp icommit = imsg->data;
1121 ca6e02ac 2020-01-07 stsp if (datalen != sizeof(*icommit) + icommit->author_len +
1122 ca6e02ac 2020-01-07 stsp icommit->committer_len +
1123 ca6e02ac 2020-01-07 stsp icommit->nparents * SHA1_DIGEST_LENGTH)
1124 ca6e02ac 2020-01-07 stsp return got_error(GOT_ERR_PRIVSEP_LEN);
1125 bff6ca00 2018-04-23 stsp
1126 ca6e02ac 2020-01-07 stsp if (icommit->nparents < 0)
1127 ca6e02ac 2020-01-07 stsp return got_error(GOT_ERR_PRIVSEP_LEN);
1128 ca6e02ac 2020-01-07 stsp
1129 ca6e02ac 2020-01-07 stsp len += sizeof(*icommit);
1130 bff6ca00 2018-04-23 stsp
1131 ca6e02ac 2020-01-07 stsp *commit = got_object_commit_alloc_partial();
1132 ca6e02ac 2020-01-07 stsp if (*commit == NULL)
1133 ca6e02ac 2020-01-07 stsp return got_error_from_errno(
1134 ca6e02ac 2020-01-07 stsp "got_object_commit_alloc_partial");
1135 ca6e02ac 2020-01-07 stsp
1136 ca6e02ac 2020-01-07 stsp memcpy((*commit)->tree_id->sha1, icommit->tree_id,
1137 ca6e02ac 2020-01-07 stsp SHA1_DIGEST_LENGTH);
1138 ca6e02ac 2020-01-07 stsp (*commit)->author_time = icommit->author_time;
1139 ca6e02ac 2020-01-07 stsp (*commit)->author_gmtoff = icommit->author_gmtoff;
1140 ca6e02ac 2020-01-07 stsp (*commit)->committer_time = icommit->committer_time;
1141 ca6e02ac 2020-01-07 stsp (*commit)->committer_gmtoff = icommit->committer_gmtoff;
1142 ca6e02ac 2020-01-07 stsp
1143 ca6e02ac 2020-01-07 stsp if (icommit->author_len == 0) {
1144 ca6e02ac 2020-01-07 stsp (*commit)->author = strdup("");
1145 ca6e02ac 2020-01-07 stsp if ((*commit)->author == NULL) {
1146 ca6e02ac 2020-01-07 stsp err = got_error_from_errno("strdup");
1147 ca6e02ac 2020-01-07 stsp goto done;
1148 bff6ca00 2018-04-23 stsp }
1149 ca6e02ac 2020-01-07 stsp } else {
1150 ca6e02ac 2020-01-07 stsp (*commit)->author = malloc(icommit->author_len + 1);
1151 ca6e02ac 2020-01-07 stsp if ((*commit)->author == NULL) {
1152 ca6e02ac 2020-01-07 stsp err = got_error_from_errno("malloc");
1153 ca6e02ac 2020-01-07 stsp goto done;
1154 ca6e02ac 2020-01-07 stsp }
1155 ca6e02ac 2020-01-07 stsp memcpy((*commit)->author, imsg->data + len,
1156 ca6e02ac 2020-01-07 stsp icommit->author_len);
1157 ca6e02ac 2020-01-07 stsp (*commit)->author[icommit->author_len] = '\0';
1158 ca6e02ac 2020-01-07 stsp }
1159 ca6e02ac 2020-01-07 stsp len += icommit->author_len;
1160 bff6ca00 2018-04-23 stsp
1161 ca6e02ac 2020-01-07 stsp if (icommit->committer_len == 0) {
1162 ca6e02ac 2020-01-07 stsp (*commit)->committer = strdup("");
1163 ca6e02ac 2020-01-07 stsp if ((*commit)->committer == NULL) {
1164 ca6e02ac 2020-01-07 stsp err = got_error_from_errno("strdup");
1165 ca6e02ac 2020-01-07 stsp goto done;
1166 ca6e02ac 2020-01-07 stsp }
1167 ca6e02ac 2020-01-07 stsp } else {
1168 ca6e02ac 2020-01-07 stsp (*commit)->committer =
1169 ca6e02ac 2020-01-07 stsp malloc(icommit->committer_len + 1);
1170 ca6e02ac 2020-01-07 stsp if ((*commit)->committer == NULL) {
1171 ca6e02ac 2020-01-07 stsp err = got_error_from_errno("malloc");
1172 ca6e02ac 2020-01-07 stsp goto done;
1173 ca6e02ac 2020-01-07 stsp }
1174 ca6e02ac 2020-01-07 stsp memcpy((*commit)->committer, imsg->data + len,
1175 ca6e02ac 2020-01-07 stsp icommit->committer_len);
1176 ca6e02ac 2020-01-07 stsp (*commit)->committer[icommit->committer_len] = '\0';
1177 ca6e02ac 2020-01-07 stsp }
1178 ca6e02ac 2020-01-07 stsp len += icommit->committer_len;
1179 ca6e02ac 2020-01-07 stsp
1180 ca6e02ac 2020-01-07 stsp if (icommit->logmsg_len == 0) {
1181 ca6e02ac 2020-01-07 stsp (*commit)->logmsg = strdup("");
1182 ca6e02ac 2020-01-07 stsp if ((*commit)->logmsg == NULL) {
1183 ca6e02ac 2020-01-07 stsp err = got_error_from_errno("strdup");
1184 ca6e02ac 2020-01-07 stsp goto done;
1185 ca6e02ac 2020-01-07 stsp }
1186 ca6e02ac 2020-01-07 stsp } else {
1187 ca6e02ac 2020-01-07 stsp size_t offset = 0, remain = icommit->logmsg_len;
1188 ca6e02ac 2020-01-07 stsp
1189 ca6e02ac 2020-01-07 stsp (*commit)->logmsg = malloc(icommit->logmsg_len + 1);
1190 ca6e02ac 2020-01-07 stsp if ((*commit)->logmsg == NULL) {
1191 ca6e02ac 2020-01-07 stsp err = got_error_from_errno("malloc");
1192 ca6e02ac 2020-01-07 stsp goto done;
1193 bff6ca00 2018-04-23 stsp }
1194 ca6e02ac 2020-01-07 stsp while (remain > 0) {
1195 ca6e02ac 2020-01-07 stsp struct imsg imsg_log;
1196 ca6e02ac 2020-01-07 stsp size_t n = MIN(MAX_IMSGSIZE - IMSG_HEADER_SIZE,
1197 ca6e02ac 2020-01-07 stsp remain);
1198 6c281f94 2018-06-11 stsp
1199 ca6e02ac 2020-01-07 stsp err = got_privsep_recv_imsg(&imsg_log, ibuf, n);
1200 ca6e02ac 2020-01-07 stsp if (err)
1201 ca6e02ac 2020-01-07 stsp goto done;
1202 bff6ca00 2018-04-23 stsp
1203 ca6e02ac 2020-01-07 stsp if (imsg_log.hdr.type != GOT_IMSG_COMMIT_LOGMSG) {
1204 ca6e02ac 2020-01-07 stsp err = got_error(GOT_ERR_PRIVSEP_MSG);
1205 ca6e02ac 2020-01-07 stsp goto done;
1206 bff6ca00 2018-04-23 stsp }
1207 c75f7264 2018-09-11 stsp
1208 ca6e02ac 2020-01-07 stsp memcpy((*commit)->logmsg + offset,
1209 ca6e02ac 2020-01-07 stsp imsg_log.data, n);
1210 ca6e02ac 2020-01-07 stsp imsg_free(&imsg_log);
1211 ca6e02ac 2020-01-07 stsp offset += n;
1212 ca6e02ac 2020-01-07 stsp remain -= n;
1213 bff6ca00 2018-04-23 stsp }
1214 ca6e02ac 2020-01-07 stsp (*commit)->logmsg[icommit->logmsg_len] = '\0';
1215 ca6e02ac 2020-01-07 stsp }
1216 bff6ca00 2018-04-23 stsp
1217 ca6e02ac 2020-01-07 stsp for (i = 0; i < icommit->nparents; i++) {
1218 ca6e02ac 2020-01-07 stsp struct got_object_qid *qid;
1219 86acc566 2018-04-23 stsp
1220 ca6e02ac 2020-01-07 stsp err = got_object_qid_alloc_partial(&qid);
1221 ca6e02ac 2020-01-07 stsp if (err)
1222 ca6e02ac 2020-01-07 stsp break;
1223 ca6e02ac 2020-01-07 stsp memcpy(qid->id, imsg->data + len +
1224 ca6e02ac 2020-01-07 stsp i * SHA1_DIGEST_LENGTH, sizeof(*qid->id));
1225 ca6e02ac 2020-01-07 stsp SIMPLEQ_INSERT_TAIL(&(*commit)->parent_ids, qid, entry);
1226 ca6e02ac 2020-01-07 stsp (*commit)->nparents++;
1227 ca6e02ac 2020-01-07 stsp }
1228 ca6e02ac 2020-01-07 stsp done:
1229 ca6e02ac 2020-01-07 stsp if (err) {
1230 ca6e02ac 2020-01-07 stsp got_object_commit_close(*commit);
1231 ca6e02ac 2020-01-07 stsp *commit = NULL;
1232 ca6e02ac 2020-01-07 stsp }
1233 ca6e02ac 2020-01-07 stsp return err;
1234 ca6e02ac 2020-01-07 stsp }
1235 ca6e02ac 2020-01-07 stsp
1236 ca6e02ac 2020-01-07 stsp const struct got_error *
1237 ca6e02ac 2020-01-07 stsp got_privsep_recv_commit(struct got_commit_object **commit, struct imsgbuf *ibuf)
1238 ca6e02ac 2020-01-07 stsp {
1239 ca6e02ac 2020-01-07 stsp const struct got_error *err = NULL;
1240 ca6e02ac 2020-01-07 stsp struct imsg imsg;
1241 ca6e02ac 2020-01-07 stsp size_t datalen;
1242 ca6e02ac 2020-01-07 stsp const size_t min_datalen =
1243 ca6e02ac 2020-01-07 stsp MIN(sizeof(struct got_imsg_error),
1244 ca6e02ac 2020-01-07 stsp sizeof(struct got_imsg_commit_object));
1245 ca6e02ac 2020-01-07 stsp
1246 ca6e02ac 2020-01-07 stsp *commit = NULL;
1247 ca6e02ac 2020-01-07 stsp
1248 ca6e02ac 2020-01-07 stsp err = got_privsep_recv_imsg(&imsg, ibuf, min_datalen);
1249 ca6e02ac 2020-01-07 stsp if (err)
1250 ca6e02ac 2020-01-07 stsp return err;
1251 ca6e02ac 2020-01-07 stsp
1252 ca6e02ac 2020-01-07 stsp datalen = imsg.hdr.len - IMSG_HEADER_SIZE;
1253 ca6e02ac 2020-01-07 stsp
1254 ca6e02ac 2020-01-07 stsp switch (imsg.hdr.type) {
1255 ca6e02ac 2020-01-07 stsp case GOT_IMSG_COMMIT:
1256 ca6e02ac 2020-01-07 stsp err = get_commit_from_imsg(commit, &imsg, datalen, ibuf);
1257 2178c42e 2018-04-22 stsp break;
1258 8c580685 2018-04-22 stsp default:
1259 8c580685 2018-04-22 stsp err = got_error(GOT_ERR_PRIVSEP_MSG);
1260 8c580685 2018-04-22 stsp break;
1261 2178c42e 2018-04-22 stsp }
1262 2178c42e 2018-04-22 stsp
1263 2178c42e 2018-04-22 stsp imsg_free(&imsg);
1264 e033d803 2018-04-23 stsp
1265 e033d803 2018-04-23 stsp return err;
1266 e033d803 2018-04-23 stsp }
1267 e033d803 2018-04-23 stsp
1268 e033d803 2018-04-23 stsp const struct got_error *
1269 3022d272 2019-11-14 stsp got_privsep_send_tree(struct imsgbuf *ibuf, struct got_pathlist_head *entries,
1270 3022d272 2019-11-14 stsp int nentries)
1271 e033d803 2018-04-23 stsp {
1272 e033d803 2018-04-23 stsp const struct got_error *err = NULL;
1273 e033d803 2018-04-23 stsp struct got_imsg_tree_object itree;
1274 3022d272 2019-11-14 stsp struct got_pathlist_entry *pe;
1275 b00c9821 2018-11-04 stsp size_t totlen;
1276 6eb07a17 2018-11-04 stsp int nimsg; /* number of imsg queued in ibuf */
1277 e033d803 2018-04-23 stsp
1278 3022d272 2019-11-14 stsp itree.nentries = nentries;
1279 e033d803 2018-04-23 stsp if (imsg_compose(ibuf, GOT_IMSG_TREE, 0, 0, -1, &itree, sizeof(itree))
1280 e033d803 2018-04-23 stsp == -1)
1281 638f9024 2019-05-13 stsp return got_error_from_errno("imsg_compose TREE");
1282 e033d803 2018-04-23 stsp
1283 b00c9821 2018-11-04 stsp totlen = sizeof(itree);
1284 6eb07a17 2018-11-04 stsp nimsg = 1;
1285 3022d272 2019-11-14 stsp TAILQ_FOREACH(pe, entries, entry) {
1286 3022d272 2019-11-14 stsp const char *name = pe->path;
1287 3022d272 2019-11-14 stsp struct got_parsed_tree_entry *pte = pe->data;
1288 3022d272 2019-11-14 stsp struct ibuf *wbuf;
1289 3022d272 2019-11-14 stsp size_t namelen = strlen(name);
1290 cd9e913a 2019-11-27 stsp size_t len = sizeof(struct got_imsg_tree_entry) + namelen;
1291 e033d803 2018-04-23 stsp
1292 e033d803 2018-04-23 stsp if (len > MAX_IMSGSIZE)
1293 e033d803 2018-04-23 stsp return got_error(GOT_ERR_NO_SPACE);
1294 e033d803 2018-04-23 stsp
1295 6eb07a17 2018-11-04 stsp nimsg++;
1296 6eb07a17 2018-11-04 stsp if (totlen + len >= MAX_IMSGSIZE - (IMSG_HEADER_SIZE * nimsg)) {
1297 b00c9821 2018-11-04 stsp err = flush_imsg(ibuf);
1298 b00c9821 2018-11-04 stsp if (err)
1299 b00c9821 2018-11-04 stsp return err;
1300 6eb07a17 2018-11-04 stsp nimsg = 0;
1301 b00c9821 2018-11-04 stsp }
1302 b00c9821 2018-11-04 stsp
1303 3022d272 2019-11-14 stsp wbuf = imsg_create(ibuf, GOT_IMSG_TREE_ENTRY, 0, 0, len);
1304 3022d272 2019-11-14 stsp if (wbuf == NULL)
1305 3022d272 2019-11-14 stsp return got_error_from_errno("imsg_create TREE_ENTRY");
1306 e033d803 2018-04-23 stsp
1307 3022d272 2019-11-14 stsp /* Keep in sync with struct got_imsg_tree_object definition! */
1308 3b647085 2019-11-23 stsp if (imsg_add(wbuf, pte->id, SHA1_DIGEST_LENGTH) == -1) {
1309 3022d272 2019-11-14 stsp err = got_error_from_errno("imsg_add TREE_ENTRY");
1310 3b647085 2019-11-23 stsp ibuf_free(wbuf);
1311 e033d803 2018-04-23 stsp return err;
1312 3b647085 2019-11-23 stsp }
1313 3b647085 2019-11-23 stsp if (imsg_add(wbuf, &pte->mode, sizeof(pte->mode)) == -1) {
1314 3022d272 2019-11-14 stsp err = got_error_from_errno("imsg_add TREE_ENTRY");
1315 3b647085 2019-11-23 stsp ibuf_free(wbuf);
1316 3022d272 2019-11-14 stsp return err;
1317 3b647085 2019-11-23 stsp }
1318 3022d272 2019-11-14 stsp
1319 3b647085 2019-11-23 stsp if (imsg_add(wbuf, name, namelen) == -1) {
1320 3022d272 2019-11-14 stsp err = got_error_from_errno("imsg_add TREE_ENTRY");
1321 3b647085 2019-11-23 stsp ibuf_free(wbuf);
1322 3022d272 2019-11-14 stsp return err;
1323 3b647085 2019-11-23 stsp }
1324 3022d272 2019-11-14 stsp
1325 3022d272 2019-11-14 stsp wbuf->fd = -1;
1326 3022d272 2019-11-14 stsp imsg_close(ibuf, wbuf);
1327 3022d272 2019-11-14 stsp
1328 b00c9821 2018-11-04 stsp totlen += len;
1329 e033d803 2018-04-23 stsp }
1330 e033d803 2018-04-23 stsp
1331 b00c9821 2018-11-04 stsp return flush_imsg(ibuf);
1332 e033d803 2018-04-23 stsp }
1333 e033d803 2018-04-23 stsp
1334 e033d803 2018-04-23 stsp const struct got_error *
1335 068fd2bf 2018-04-24 stsp got_privsep_recv_tree(struct got_tree_object **tree, struct imsgbuf *ibuf)
1336 e033d803 2018-04-23 stsp {
1337 e033d803 2018-04-23 stsp const struct got_error *err = NULL;
1338 e033d803 2018-04-23 stsp const size_t min_datalen =
1339 e033d803 2018-04-23 stsp MIN(sizeof(struct got_imsg_error),
1340 e033d803 2018-04-23 stsp sizeof(struct got_imsg_tree_object));
1341 291624d8 2018-11-07 stsp struct got_imsg_tree_object *itree;
1342 e033d803 2018-04-23 stsp int nentries = 0;
1343 2178c42e 2018-04-22 stsp
1344 e033d803 2018-04-23 stsp *tree = NULL;
1345 e033d803 2018-04-23 stsp get_more:
1346 e033d803 2018-04-23 stsp err = read_imsg(ibuf);
1347 e033d803 2018-04-23 stsp if (err)
1348 1e51f5b9 2018-04-23 stsp goto done;
1349 e033d803 2018-04-23 stsp
1350 656b1f76 2019-05-11 jcs for (;;) {
1351 e033d803 2018-04-23 stsp struct imsg imsg;
1352 e033d803 2018-04-23 stsp size_t n;
1353 e033d803 2018-04-23 stsp size_t datalen;
1354 c0588d8d 2018-11-07 stsp struct got_imsg_tree_entry *ite;
1355 e033d803 2018-04-23 stsp struct got_tree_entry *te = NULL;
1356 e033d803 2018-04-23 stsp
1357 e033d803 2018-04-23 stsp n = imsg_get(ibuf, &imsg);
1358 e033d803 2018-04-23 stsp if (n == 0) {
1359 56e0773d 2019-11-28 stsp if (*tree && (*tree)->nentries != nentries)
1360 e033d803 2018-04-23 stsp goto get_more;
1361 e033d803 2018-04-23 stsp break;
1362 e033d803 2018-04-23 stsp }
1363 e033d803 2018-04-23 stsp
1364 e033d803 2018-04-23 stsp if (imsg.hdr.len < IMSG_HEADER_SIZE + min_datalen)
1365 e033d803 2018-04-23 stsp return got_error(GOT_ERR_PRIVSEP_LEN);
1366 e033d803 2018-04-23 stsp
1367 e033d803 2018-04-23 stsp datalen = imsg.hdr.len - IMSG_HEADER_SIZE;
1368 e033d803 2018-04-23 stsp
1369 e033d803 2018-04-23 stsp switch (imsg.hdr.type) {
1370 e033d803 2018-04-23 stsp case GOT_IMSG_ERROR:
1371 e033d803 2018-04-23 stsp err = recv_imsg_error(&imsg, datalen);
1372 e033d803 2018-04-23 stsp break;
1373 e033d803 2018-04-23 stsp case GOT_IMSG_TREE:
1374 e033d803 2018-04-23 stsp /* This message should only appear once. */
1375 e033d803 2018-04-23 stsp if (*tree != NULL) {
1376 e033d803 2018-04-23 stsp err = got_error(GOT_ERR_PRIVSEP_MSG);
1377 e033d803 2018-04-23 stsp break;
1378 e033d803 2018-04-23 stsp }
1379 291624d8 2018-11-07 stsp if (datalen != sizeof(*itree)) {
1380 e033d803 2018-04-23 stsp err = got_error(GOT_ERR_PRIVSEP_LEN);
1381 e033d803 2018-04-23 stsp break;
1382 e033d803 2018-04-23 stsp }
1383 291624d8 2018-11-07 stsp itree = imsg.data;
1384 c3b78ecc 2018-11-07 stsp *tree = malloc(sizeof(**tree));
1385 e033d803 2018-04-23 stsp if (*tree == NULL) {
1386 638f9024 2019-05-13 stsp err = got_error_from_errno("malloc");
1387 e033d803 2018-04-23 stsp break;
1388 e033d803 2018-04-23 stsp }
1389 56e0773d 2019-11-28 stsp (*tree)->entries = calloc(itree->nentries,
1390 56e0773d 2019-11-28 stsp sizeof(struct got_tree_entry));
1391 56e0773d 2019-11-28 stsp if ((*tree)->entries == NULL) {
1392 56e0773d 2019-11-28 stsp err = got_error_from_errno("malloc");
1393 56e0773d 2019-11-28 stsp break;
1394 56e0773d 2019-11-28 stsp }
1395 56e0773d 2019-11-28 stsp (*tree)->nentries = itree->nentries;
1396 c3b78ecc 2018-11-07 stsp (*tree)->refcnt = 0;
1397 e033d803 2018-04-23 stsp break;
1398 e033d803 2018-04-23 stsp case GOT_IMSG_TREE_ENTRY:
1399 e033d803 2018-04-23 stsp /* This message should be preceeded by GOT_IMSG_TREE. */
1400 e033d803 2018-04-23 stsp if (*tree == NULL) {
1401 e033d803 2018-04-23 stsp err = got_error(GOT_ERR_PRIVSEP_MSG);
1402 e033d803 2018-04-23 stsp break;
1403 e033d803 2018-04-23 stsp }
1404 c0588d8d 2018-11-07 stsp if (datalen < sizeof(*ite) || datalen > MAX_IMSGSIZE) {
1405 e033d803 2018-04-23 stsp err = got_error(GOT_ERR_PRIVSEP_LEN);
1406 e033d803 2018-04-23 stsp break;
1407 e033d803 2018-04-23 stsp }
1408 e033d803 2018-04-23 stsp
1409 e033d803 2018-04-23 stsp /* Remaining data contains the entry's name. */
1410 c0588d8d 2018-11-07 stsp datalen -= sizeof(*ite);
1411 e033d803 2018-04-23 stsp if (datalen == 0 || datalen > MAX_IMSGSIZE) {
1412 e033d803 2018-04-23 stsp err = got_error(GOT_ERR_PRIVSEP_LEN);
1413 e033d803 2018-04-23 stsp break;
1414 e033d803 2018-04-23 stsp }
1415 c0588d8d 2018-11-07 stsp ite = imsg.data;
1416 052d4dc3 2018-04-23 stsp
1417 56e0773d 2019-11-28 stsp if (datalen + 1 > sizeof(te->name)) {
1418 56e0773d 2019-11-28 stsp err = got_error(GOT_ERR_NO_SPACE);
1419 e033d803 2018-04-23 stsp break;
1420 e033d803 2018-04-23 stsp }
1421 56e0773d 2019-11-28 stsp te = &(*tree)->entries[nentries];
1422 c0588d8d 2018-11-07 stsp memcpy(te->name, imsg.data + sizeof(*ite), datalen);
1423 e033d803 2018-04-23 stsp te->name[datalen] = '\0';
1424 e033d803 2018-04-23 stsp
1425 56e0773d 2019-11-28 stsp memcpy(te->id.sha1, ite->id, SHA1_DIGEST_LENGTH);
1426 c0588d8d 2018-11-07 stsp te->mode = ite->mode;
1427 56e0773d 2019-11-28 stsp te->idx = nentries;
1428 e033d803 2018-04-23 stsp nentries++;
1429 e033d803 2018-04-23 stsp break;
1430 e033d803 2018-04-23 stsp default:
1431 e033d803 2018-04-23 stsp err = got_error(GOT_ERR_PRIVSEP_MSG);
1432 e033d803 2018-04-23 stsp break;
1433 e033d803 2018-04-23 stsp }
1434 e033d803 2018-04-23 stsp
1435 e033d803 2018-04-23 stsp imsg_free(&imsg);
1436 e033d803 2018-04-23 stsp }
1437 1e51f5b9 2018-04-23 stsp done:
1438 56e0773d 2019-11-28 stsp if (*tree && (*tree)->nentries != nentries) {
1439 1e51f5b9 2018-04-23 stsp if (err == NULL)
1440 1e51f5b9 2018-04-23 stsp err = got_error(GOT_ERR_PRIVSEP_LEN);
1441 e033d803 2018-04-23 stsp got_object_tree_close(*tree);
1442 e033d803 2018-04-23 stsp *tree = NULL;
1443 ff6b18f8 2018-04-24 stsp }
1444 ff6b18f8 2018-04-24 stsp
1445 ff6b18f8 2018-04-24 stsp return err;
1446 ff6b18f8 2018-04-24 stsp }
1447 ff6b18f8 2018-04-24 stsp
1448 ff6b18f8 2018-04-24 stsp const struct got_error *
1449 ac544f8c 2019-01-13 stsp got_privsep_send_blob(struct imsgbuf *ibuf, size_t size, size_t hdrlen,
1450 ac544f8c 2019-01-13 stsp const uint8_t *data)
1451 ff6b18f8 2018-04-24 stsp {
1452 2967a784 2018-04-24 stsp struct got_imsg_blob iblob;
1453 2967a784 2018-04-24 stsp
1454 2967a784 2018-04-24 stsp iblob.size = size;
1455 ebc55e2d 2018-12-24 stsp iblob.hdrlen = hdrlen;
1456 2967a784 2018-04-24 stsp
1457 ac544f8c 2019-01-13 stsp if (data) {
1458 ac544f8c 2019-01-13 stsp uint8_t *buf;
1459 ac544f8c 2019-01-13 stsp
1460 ac544f8c 2019-01-13 stsp if (size > GOT_PRIVSEP_INLINE_BLOB_DATA_MAX)
1461 ac544f8c 2019-01-13 stsp return got_error(GOT_ERR_NO_SPACE);
1462 ac544f8c 2019-01-13 stsp
1463 ac544f8c 2019-01-13 stsp buf = malloc(sizeof(iblob) + size);
1464 ac544f8c 2019-01-13 stsp if (buf == NULL)
1465 638f9024 2019-05-13 stsp return got_error_from_errno("malloc");
1466 ff6b18f8 2018-04-24 stsp
1467 ac544f8c 2019-01-13 stsp memcpy(buf, &iblob, sizeof(iblob));
1468 ac544f8c 2019-01-13 stsp memcpy(buf + sizeof(iblob), data, size);
1469 ac544f8c 2019-01-13 stsp if (imsg_compose(ibuf, GOT_IMSG_BLOB, 0, 0, -1, buf,
1470 ac544f8c 2019-01-13 stsp sizeof(iblob) + size) == -1) {
1471 ac544f8c 2019-01-13 stsp free(buf);
1472 638f9024 2019-05-13 stsp return got_error_from_errno("imsg_compose BLOB");
1473 ac544f8c 2019-01-13 stsp }
1474 ac544f8c 2019-01-13 stsp free(buf);
1475 ac544f8c 2019-01-13 stsp } else {
1476 ac544f8c 2019-01-13 stsp /* Data has already been written to file descriptor. */
1477 ac544f8c 2019-01-13 stsp if (imsg_compose(ibuf, GOT_IMSG_BLOB, 0, 0, -1, &iblob,
1478 ac544f8c 2019-01-13 stsp sizeof(iblob)) == -1)
1479 638f9024 2019-05-13 stsp return got_error_from_errno("imsg_compose BLOB");
1480 ac544f8c 2019-01-13 stsp }
1481 ac544f8c 2019-01-13 stsp
1482 ac544f8c 2019-01-13 stsp
1483 ff6b18f8 2018-04-24 stsp return flush_imsg(ibuf);
1484 ff6b18f8 2018-04-24 stsp }
1485 ff6b18f8 2018-04-24 stsp
1486 ff6b18f8 2018-04-24 stsp const struct got_error *
1487 ac544f8c 2019-01-13 stsp got_privsep_recv_blob(uint8_t **outbuf, size_t *size, size_t *hdrlen,
1488 ac544f8c 2019-01-13 stsp struct imsgbuf *ibuf)
1489 ff6b18f8 2018-04-24 stsp {
1490 ff6b18f8 2018-04-24 stsp const struct got_error *err = NULL;
1491 ff6b18f8 2018-04-24 stsp struct imsg imsg;
1492 291624d8 2018-11-07 stsp struct got_imsg_blob *iblob;
1493 ff6b18f8 2018-04-24 stsp size_t datalen;
1494 ff6b18f8 2018-04-24 stsp
1495 ac544f8c 2019-01-13 stsp *outbuf = NULL;
1496 ac544f8c 2019-01-13 stsp
1497 ad242220 2018-09-08 stsp err = got_privsep_recv_imsg(&imsg, ibuf, 0);
1498 ff6b18f8 2018-04-24 stsp if (err)
1499 ff6b18f8 2018-04-24 stsp return err;
1500 ff6b18f8 2018-04-24 stsp
1501 ff6b18f8 2018-04-24 stsp datalen = imsg.hdr.len - IMSG_HEADER_SIZE;
1502 ff6b18f8 2018-04-24 stsp
1503 ff6b18f8 2018-04-24 stsp switch (imsg.hdr.type) {
1504 ff6b18f8 2018-04-24 stsp case GOT_IMSG_BLOB:
1505 ac544f8c 2019-01-13 stsp if (datalen < sizeof(*iblob)) {
1506 ff6b18f8 2018-04-24 stsp err = got_error(GOT_ERR_PRIVSEP_LEN);
1507 18336eed 2018-11-04 stsp break;
1508 18336eed 2018-11-04 stsp }
1509 291624d8 2018-11-07 stsp iblob = imsg.data;
1510 291624d8 2018-11-07 stsp *size = iblob->size;
1511 ebc55e2d 2018-12-24 stsp *hdrlen = iblob->hdrlen;
1512 ac544f8c 2019-01-13 stsp
1513 ac544f8c 2019-01-13 stsp if (datalen == sizeof(*iblob)) {
1514 ac544f8c 2019-01-13 stsp /* Data has been written to file descriptor. */
1515 ac544f8c 2019-01-13 stsp break;
1516 ac544f8c 2019-01-13 stsp }
1517 ac544f8c 2019-01-13 stsp
1518 ac544f8c 2019-01-13 stsp if (*size > GOT_PRIVSEP_INLINE_BLOB_DATA_MAX) {
1519 ac544f8c 2019-01-13 stsp err = got_error(GOT_ERR_PRIVSEP_LEN);
1520 ac544f8c 2019-01-13 stsp break;
1521 ac544f8c 2019-01-13 stsp }
1522 ac544f8c 2019-01-13 stsp
1523 ac544f8c 2019-01-13 stsp *outbuf = malloc(*size);
1524 ac544f8c 2019-01-13 stsp if (*outbuf == NULL) {
1525 638f9024 2019-05-13 stsp err = got_error_from_errno("malloc");
1526 ac544f8c 2019-01-13 stsp break;
1527 ac544f8c 2019-01-13 stsp }
1528 ac544f8c 2019-01-13 stsp memcpy(*outbuf, imsg.data + sizeof(*iblob), *size);
1529 f4a881ce 2018-11-17 stsp break;
1530 f4a881ce 2018-11-17 stsp default:
1531 f4a881ce 2018-11-17 stsp err = got_error(GOT_ERR_PRIVSEP_MSG);
1532 f4a881ce 2018-11-17 stsp break;
1533 f4a881ce 2018-11-17 stsp }
1534 f4a881ce 2018-11-17 stsp
1535 f4a881ce 2018-11-17 stsp imsg_free(&imsg);
1536 f4a881ce 2018-11-17 stsp
1537 f4a881ce 2018-11-17 stsp return err;
1538 f4a881ce 2018-11-17 stsp }
1539 f4a881ce 2018-11-17 stsp
1540 f4a881ce 2018-11-17 stsp static const struct got_error *
1541 f4a881ce 2018-11-17 stsp send_tagmsg(struct imsgbuf *ibuf, struct got_tag_object *tag, size_t tagmsg_len)
1542 f4a881ce 2018-11-17 stsp {
1543 f4a881ce 2018-11-17 stsp const struct got_error *err = NULL;
1544 f4a881ce 2018-11-17 stsp size_t offset, remain;
1545 f4a881ce 2018-11-17 stsp
1546 f4a881ce 2018-11-17 stsp offset = 0;
1547 f4a881ce 2018-11-17 stsp remain = tagmsg_len;
1548 f4a881ce 2018-11-17 stsp while (remain > 0) {
1549 f4a881ce 2018-11-17 stsp size_t n = MIN(MAX_IMSGSIZE - IMSG_HEADER_SIZE, remain);
1550 f4a881ce 2018-11-17 stsp
1551 f4a881ce 2018-11-17 stsp if (imsg_compose(ibuf, GOT_IMSG_TAG_TAGMSG, 0, 0, -1,
1552 f4a881ce 2018-11-17 stsp tag->tagmsg + offset, n) == -1) {
1553 638f9024 2019-05-13 stsp err = got_error_from_errno("imsg_compose TAG_TAGMSG");
1554 f4a881ce 2018-11-17 stsp break;
1555 f4a881ce 2018-11-17 stsp }
1556 f4a881ce 2018-11-17 stsp
1557 f4a881ce 2018-11-17 stsp err = flush_imsg(ibuf);
1558 f4a881ce 2018-11-17 stsp if (err)
1559 f4a881ce 2018-11-17 stsp break;
1560 f4a881ce 2018-11-17 stsp
1561 f4a881ce 2018-11-17 stsp offset += n;
1562 f4a881ce 2018-11-17 stsp remain -= n;
1563 f4a881ce 2018-11-17 stsp }
1564 f4a881ce 2018-11-17 stsp
1565 f4a881ce 2018-11-17 stsp return err;
1566 f4a881ce 2018-11-17 stsp }
1567 f4a881ce 2018-11-17 stsp
1568 f4a881ce 2018-11-17 stsp const struct got_error *
1569 f4a881ce 2018-11-17 stsp got_privsep_send_tag(struct imsgbuf *ibuf, struct got_tag_object *tag)
1570 f4a881ce 2018-11-17 stsp {
1571 f4a881ce 2018-11-17 stsp const struct got_error *err = NULL;
1572 f4a881ce 2018-11-17 stsp struct got_imsg_tag_object *itag;
1573 f4a881ce 2018-11-17 stsp uint8_t *buf;
1574 f4a881ce 2018-11-17 stsp size_t len, total;
1575 f4a881ce 2018-11-17 stsp size_t tag_len = strlen(tag->tag);
1576 f4a881ce 2018-11-17 stsp size_t tagger_len = strlen(tag->tagger);
1577 f4a881ce 2018-11-17 stsp size_t tagmsg_len = strlen(tag->tagmsg);
1578 f4a881ce 2018-11-17 stsp
1579 f4a881ce 2018-11-17 stsp total = sizeof(*itag) + tag_len + tagger_len + tagmsg_len;
1580 f4a881ce 2018-11-17 stsp
1581 f4a881ce 2018-11-17 stsp buf = malloc(total);
1582 f4a881ce 2018-11-17 stsp if (buf == NULL)
1583 638f9024 2019-05-13 stsp return got_error_from_errno("malloc");
1584 f4a881ce 2018-11-17 stsp
1585 f4a881ce 2018-11-17 stsp itag = (struct got_imsg_tag_object *)buf;
1586 f4a881ce 2018-11-17 stsp memcpy(itag->id, tag->id.sha1, sizeof(itag->id));
1587 f4a881ce 2018-11-17 stsp itag->obj_type = tag->obj_type;
1588 f4a881ce 2018-11-17 stsp itag->tag_len = tag_len;
1589 f4a881ce 2018-11-17 stsp itag->tagger_len = tagger_len;
1590 f4a881ce 2018-11-17 stsp itag->tagger_time = tag->tagger_time;
1591 f4a881ce 2018-11-17 stsp itag->tagger_gmtoff = tag->tagger_gmtoff;
1592 f4a881ce 2018-11-17 stsp itag->tagmsg_len = tagmsg_len;
1593 f4a881ce 2018-11-17 stsp
1594 f4a881ce 2018-11-17 stsp len = sizeof(*itag);
1595 f4a881ce 2018-11-17 stsp memcpy(buf + len, tag->tag, tag_len);
1596 f4a881ce 2018-11-17 stsp len += tag_len;
1597 f4a881ce 2018-11-17 stsp memcpy(buf + len, tag->tagger, tagger_len);
1598 f4a881ce 2018-11-17 stsp len += tagger_len;
1599 f4a881ce 2018-11-17 stsp
1600 f4a881ce 2018-11-17 stsp if (imsg_compose(ibuf, GOT_IMSG_TAG, 0, 0, -1, buf, len) == -1) {
1601 638f9024 2019-05-13 stsp err = got_error_from_errno("imsg_compose TAG");
1602 f4a881ce 2018-11-17 stsp goto done;
1603 f4a881ce 2018-11-17 stsp }
1604 f4a881ce 2018-11-17 stsp
1605 f4a881ce 2018-11-17 stsp if (tagmsg_len == 0 ||
1606 f4a881ce 2018-11-17 stsp tagmsg_len + len > MAX_IMSGSIZE - IMSG_HEADER_SIZE) {
1607 f4a881ce 2018-11-17 stsp err = flush_imsg(ibuf);
1608 f4a881ce 2018-11-17 stsp if (err)
1609 f4a881ce 2018-11-17 stsp goto done;
1610 f4a881ce 2018-11-17 stsp }
1611 f4a881ce 2018-11-17 stsp err = send_tagmsg(ibuf, tag, tagmsg_len);
1612 f4a881ce 2018-11-17 stsp done:
1613 f4a881ce 2018-11-17 stsp free(buf);
1614 f4a881ce 2018-11-17 stsp return err;
1615 f4a881ce 2018-11-17 stsp }
1616 f4a881ce 2018-11-17 stsp
1617 f4a881ce 2018-11-17 stsp const struct got_error *
1618 f4a881ce 2018-11-17 stsp got_privsep_recv_tag(struct got_tag_object **tag, struct imsgbuf *ibuf)
1619 f4a881ce 2018-11-17 stsp {
1620 f4a881ce 2018-11-17 stsp const struct got_error *err = NULL;
1621 f4a881ce 2018-11-17 stsp struct imsg imsg;
1622 f4a881ce 2018-11-17 stsp struct got_imsg_tag_object *itag;
1623 f4a881ce 2018-11-17 stsp size_t len, datalen;
1624 f4a881ce 2018-11-17 stsp const size_t min_datalen =
1625 f4a881ce 2018-11-17 stsp MIN(sizeof(struct got_imsg_error),
1626 f4a881ce 2018-11-17 stsp sizeof(struct got_imsg_tag_object));
1627 f4a881ce 2018-11-17 stsp
1628 f4a881ce 2018-11-17 stsp *tag = NULL;
1629 f4a881ce 2018-11-17 stsp
1630 f4a881ce 2018-11-17 stsp err = got_privsep_recv_imsg(&imsg, ibuf, min_datalen);
1631 f4a881ce 2018-11-17 stsp if (err)
1632 f4a881ce 2018-11-17 stsp return err;
1633 f4a881ce 2018-11-17 stsp
1634 f4a881ce 2018-11-17 stsp datalen = imsg.hdr.len - IMSG_HEADER_SIZE;
1635 f4a881ce 2018-11-17 stsp len = 0;
1636 f4a881ce 2018-11-17 stsp
1637 f4a881ce 2018-11-17 stsp switch (imsg.hdr.type) {
1638 f4a881ce 2018-11-17 stsp case GOT_IMSG_TAG:
1639 f4a881ce 2018-11-17 stsp if (datalen < sizeof(*itag)) {
1640 f4a881ce 2018-11-17 stsp err = got_error(GOT_ERR_PRIVSEP_LEN);
1641 f4a881ce 2018-11-17 stsp break;
1642 f4a881ce 2018-11-17 stsp }
1643 f4a881ce 2018-11-17 stsp itag = imsg.data;
1644 f4a881ce 2018-11-17 stsp if (datalen != sizeof(*itag) + itag->tag_len +
1645 f4a881ce 2018-11-17 stsp itag->tagger_len) {
1646 f4a881ce 2018-11-17 stsp err = got_error(GOT_ERR_PRIVSEP_LEN);
1647 f4a881ce 2018-11-17 stsp break;
1648 f4a881ce 2018-11-17 stsp }
1649 f4a881ce 2018-11-17 stsp len += sizeof(*itag);
1650 f4a881ce 2018-11-17 stsp
1651 f4a881ce 2018-11-17 stsp *tag = calloc(1, sizeof(**tag));
1652 f4a881ce 2018-11-17 stsp if (*tag == NULL) {
1653 638f9024 2019-05-13 stsp err = got_error_from_errno("calloc");
1654 f4a881ce 2018-11-17 stsp break;
1655 f4a881ce 2018-11-17 stsp }
1656 f4a881ce 2018-11-17 stsp
1657 f4a881ce 2018-11-17 stsp memcpy((*tag)->id.sha1, itag->id, SHA1_DIGEST_LENGTH);
1658 f4a881ce 2018-11-17 stsp
1659 f4a881ce 2018-11-17 stsp if (itag->tag_len == 0) {
1660 f4a881ce 2018-11-17 stsp (*tag)->tag = strdup("");
1661 f4a881ce 2018-11-17 stsp if ((*tag)->tag == NULL) {
1662 638f9024 2019-05-13 stsp err = got_error_from_errno("strdup");
1663 f4a881ce 2018-11-17 stsp break;
1664 f4a881ce 2018-11-17 stsp }
1665 f4a881ce 2018-11-17 stsp } else {
1666 f4a881ce 2018-11-17 stsp (*tag)->tag = malloc(itag->tag_len + 1);
1667 f4a881ce 2018-11-17 stsp if ((*tag)->tag == NULL) {
1668 638f9024 2019-05-13 stsp err = got_error_from_errno("malloc");
1669 f4a881ce 2018-11-17 stsp break;
1670 f4a881ce 2018-11-17 stsp }
1671 f4a881ce 2018-11-17 stsp memcpy((*tag)->tag, imsg.data + len,
1672 f4a881ce 2018-11-17 stsp itag->tag_len);
1673 f4a881ce 2018-11-17 stsp (*tag)->tag[itag->tag_len] = '\0';
1674 f4a881ce 2018-11-17 stsp }
1675 f4a881ce 2018-11-17 stsp len += itag->tag_len;
1676 f4a881ce 2018-11-17 stsp
1677 f4a881ce 2018-11-17 stsp (*tag)->obj_type = itag->obj_type;
1678 f4a881ce 2018-11-17 stsp (*tag)->tagger_time = itag->tagger_time;
1679 f4a881ce 2018-11-17 stsp (*tag)->tagger_gmtoff = itag->tagger_gmtoff;
1680 f4a881ce 2018-11-17 stsp
1681 f4a881ce 2018-11-17 stsp if (itag->tagger_len == 0) {
1682 f4a881ce 2018-11-17 stsp (*tag)->tagger = strdup("");
1683 f4a881ce 2018-11-17 stsp if ((*tag)->tagger == NULL) {
1684 638f9024 2019-05-13 stsp err = got_error_from_errno("strdup");
1685 f4a881ce 2018-11-17 stsp break;
1686 f4a881ce 2018-11-17 stsp }
1687 f4a881ce 2018-11-17 stsp } else {
1688 f4a881ce 2018-11-17 stsp (*tag)->tagger = malloc(itag->tagger_len + 1);
1689 f4a881ce 2018-11-17 stsp if ((*tag)->tagger == NULL) {
1690 638f9024 2019-05-13 stsp err = got_error_from_errno("malloc");
1691 f4a881ce 2018-11-17 stsp break;
1692 f4a881ce 2018-11-17 stsp }
1693 f4a881ce 2018-11-17 stsp memcpy((*tag)->tagger, imsg.data + len,
1694 f4a881ce 2018-11-17 stsp itag->tagger_len);
1695 f4a881ce 2018-11-17 stsp (*tag)->tagger[itag->tagger_len] = '\0';
1696 f4a881ce 2018-11-17 stsp }
1697 f4a881ce 2018-11-17 stsp len += itag->tagger_len;
1698 f4a881ce 2018-11-17 stsp
1699 f4a881ce 2018-11-17 stsp if (itag->tagmsg_len == 0) {
1700 f4a881ce 2018-11-17 stsp (*tag)->tagmsg = strdup("");
1701 f4a881ce 2018-11-17 stsp if ((*tag)->tagmsg == NULL) {
1702 638f9024 2019-05-13 stsp err = got_error_from_errno("strdup");
1703 f4a881ce 2018-11-17 stsp break;
1704 f4a881ce 2018-11-17 stsp }
1705 f4a881ce 2018-11-17 stsp } else {
1706 f4a881ce 2018-11-17 stsp size_t offset = 0, remain = itag->tagmsg_len;
1707 f4a881ce 2018-11-17 stsp
1708 f4a881ce 2018-11-17 stsp (*tag)->tagmsg = malloc(itag->tagmsg_len + 1);
1709 f4a881ce 2018-11-17 stsp if ((*tag)->tagmsg == NULL) {
1710 638f9024 2019-05-13 stsp err = got_error_from_errno("malloc");
1711 f4a881ce 2018-11-17 stsp break;
1712 f4a881ce 2018-11-17 stsp }
1713 f4a881ce 2018-11-17 stsp while (remain > 0) {
1714 f4a881ce 2018-11-17 stsp struct imsg imsg_log;
1715 f4a881ce 2018-11-17 stsp size_t n = MIN(MAX_IMSGSIZE - IMSG_HEADER_SIZE,
1716 f4a881ce 2018-11-17 stsp remain);
1717 f4a881ce 2018-11-17 stsp
1718 f4a881ce 2018-11-17 stsp err = got_privsep_recv_imsg(&imsg_log, ibuf, n);
1719 f4a881ce 2018-11-17 stsp if (err)
1720 f4a881ce 2018-11-17 stsp return err;
1721 f4a881ce 2018-11-17 stsp
1722 f4a881ce 2018-11-17 stsp if (imsg_log.hdr.type != GOT_IMSG_TAG_TAGMSG)
1723 f4a881ce 2018-11-17 stsp return got_error(GOT_ERR_PRIVSEP_MSG);
1724 f4a881ce 2018-11-17 stsp
1725 f4a881ce 2018-11-17 stsp memcpy((*tag)->tagmsg + offset, imsg_log.data,
1726 f4a881ce 2018-11-17 stsp n);
1727 f4a881ce 2018-11-17 stsp imsg_free(&imsg_log);
1728 f4a881ce 2018-11-17 stsp offset += n;
1729 f4a881ce 2018-11-17 stsp remain -= n;
1730 f4a881ce 2018-11-17 stsp }
1731 f4a881ce 2018-11-17 stsp (*tag)->tagmsg[itag->tagmsg_len] = '\0';
1732 f4a881ce 2018-11-17 stsp }
1733 f4a881ce 2018-11-17 stsp
1734 ff6b18f8 2018-04-24 stsp break;
1735 ff6b18f8 2018-04-24 stsp default:
1736 ff6b18f8 2018-04-24 stsp err = got_error(GOT_ERR_PRIVSEP_MSG);
1737 ff6b18f8 2018-04-24 stsp break;
1738 e033d803 2018-04-23 stsp }
1739 e033d803 2018-04-23 stsp
1740 ff6b18f8 2018-04-24 stsp imsg_free(&imsg);
1741 ff6b18f8 2018-04-24 stsp
1742 2178c42e 2018-04-22 stsp return err;
1743 2178c42e 2018-04-22 stsp }
1744 876c234b 2018-09-10 stsp
1745 876c234b 2018-09-10 stsp const struct got_error *
1746 876c234b 2018-09-10 stsp got_privsep_init_pack_child(struct imsgbuf *ibuf, struct got_pack *pack,
1747 876c234b 2018-09-10 stsp struct got_packidx *packidx)
1748 876c234b 2018-09-10 stsp {
1749 41496140 2019-02-21 stsp const struct got_error *err = NULL;
1750 876c234b 2018-09-10 stsp struct got_imsg_packidx ipackidx;
1751 876c234b 2018-09-10 stsp struct got_imsg_pack ipack;
1752 876c234b 2018-09-10 stsp int fd;
1753 876c234b 2018-09-10 stsp
1754 876c234b 2018-09-10 stsp ipackidx.len = packidx->len;
1755 876c234b 2018-09-10 stsp fd = dup(packidx->fd);
1756 876c234b 2018-09-10 stsp if (fd == -1)
1757 638f9024 2019-05-13 stsp return got_error_from_errno("dup");
1758 876c234b 2018-09-10 stsp
1759 876c234b 2018-09-10 stsp if (imsg_compose(ibuf, GOT_IMSG_PACKIDX, 0, 0, fd, &ipackidx,
1760 41496140 2019-02-21 stsp sizeof(ipackidx)) == -1) {
1761 638f9024 2019-05-13 stsp err = got_error_from_errno("imsg_compose PACKIDX");
1762 41496140 2019-02-21 stsp close(fd);
1763 41496140 2019-02-21 stsp return err;
1764 41496140 2019-02-21 stsp }
1765 876c234b 2018-09-10 stsp
1766 876c234b 2018-09-10 stsp if (strlcpy(ipack.path_packfile, pack->path_packfile,
1767 876c234b 2018-09-10 stsp sizeof(ipack.path_packfile)) >= sizeof(ipack.path_packfile))
1768 876c234b 2018-09-10 stsp return got_error(GOT_ERR_NO_SPACE);
1769 876c234b 2018-09-10 stsp ipack.filesize = pack->filesize;
1770 876c234b 2018-09-10 stsp
1771 876c234b 2018-09-10 stsp fd = dup(pack->fd);
1772 876c234b 2018-09-10 stsp if (fd == -1)
1773 638f9024 2019-05-13 stsp return got_error_from_errno("dup");
1774 876c234b 2018-09-10 stsp
1775 876c234b 2018-09-10 stsp if (imsg_compose(ibuf, GOT_IMSG_PACK, 0, 0, fd, &ipack, sizeof(ipack))
1776 41496140 2019-02-21 stsp == -1) {
1777 638f9024 2019-05-13 stsp err = got_error_from_errno("imsg_compose PACK");
1778 41496140 2019-02-21 stsp close(fd);
1779 41496140 2019-02-21 stsp return err;
1780 41496140 2019-02-21 stsp }
1781 876c234b 2018-09-10 stsp
1782 876c234b 2018-09-10 stsp return flush_imsg(ibuf);
1783 876c234b 2018-09-10 stsp }
1784 876c234b 2018-09-10 stsp
1785 876c234b 2018-09-10 stsp const struct got_error *
1786 106807b4 2018-09-15 stsp got_privsep_send_packed_obj_req(struct imsgbuf *ibuf, int idx,
1787 106807b4 2018-09-15 stsp struct got_object_id *id)
1788 876c234b 2018-09-10 stsp {
1789 876c234b 2018-09-10 stsp struct got_imsg_packed_object iobj;
1790 876c234b 2018-09-10 stsp
1791 876c234b 2018-09-10 stsp iobj.idx = idx;
1792 106807b4 2018-09-15 stsp memcpy(iobj.id, id->sha1, sizeof(iobj.id));
1793 876c234b 2018-09-10 stsp
1794 876c234b 2018-09-10 stsp if (imsg_compose(ibuf, GOT_IMSG_PACKED_OBJECT_REQUEST, 0, 0, -1,
1795 876c234b 2018-09-10 stsp &iobj, sizeof(iobj)) == -1)
1796 638f9024 2019-05-13 stsp return got_error_from_errno("imsg_compose "
1797 230a42bd 2019-05-11 jcs "PACKED_OBJECT_REQUEST");
1798 aba9c984 2019-09-08 stsp
1799 aba9c984 2019-09-08 stsp return flush_imsg(ibuf);
1800 aba9c984 2019-09-08 stsp }
1801 aba9c984 2019-09-08 stsp
1802 aba9c984 2019-09-08 stsp const struct got_error *
1803 aba9c984 2019-09-08 stsp got_privsep_send_gitconfig_parse_req(struct imsgbuf *ibuf, int fd)
1804 aba9c984 2019-09-08 stsp {
1805 aba9c984 2019-09-08 stsp const struct got_error *err = NULL;
1806 aba9c984 2019-09-08 stsp
1807 aba9c984 2019-09-08 stsp if (imsg_compose(ibuf, GOT_IMSG_GITCONFIG_PARSE_REQUEST, 0, 0, fd,
1808 aba9c984 2019-09-08 stsp NULL, 0) == -1) {
1809 aba9c984 2019-09-08 stsp err = got_error_from_errno("imsg_compose "
1810 aba9c984 2019-09-08 stsp "GITCONFIG_PARSE_REQUEST");
1811 aba9c984 2019-09-08 stsp close(fd);
1812 aba9c984 2019-09-08 stsp return err;
1813 aba9c984 2019-09-08 stsp }
1814 aba9c984 2019-09-08 stsp
1815 aba9c984 2019-09-08 stsp return flush_imsg(ibuf);
1816 aba9c984 2019-09-08 stsp }
1817 aba9c984 2019-09-08 stsp
1818 aba9c984 2019-09-08 stsp const struct got_error *
1819 aba9c984 2019-09-08 stsp got_privsep_send_gitconfig_repository_format_version_req(struct imsgbuf *ibuf)
1820 aba9c984 2019-09-08 stsp {
1821 aba9c984 2019-09-08 stsp if (imsg_compose(ibuf,
1822 aba9c984 2019-09-08 stsp GOT_IMSG_GITCONFIG_REPOSITORY_FORMAT_VERSION_REQUEST, 0, 0, -1,
1823 aba9c984 2019-09-08 stsp NULL, 0) == -1)
1824 aba9c984 2019-09-08 stsp return got_error_from_errno("imsg_compose "
1825 aba9c984 2019-09-08 stsp "GITCONFIG_REPOSITORY_FORMAT_VERSION_REQUEST");
1826 aba9c984 2019-09-08 stsp
1827 aba9c984 2019-09-08 stsp return flush_imsg(ibuf);
1828 aba9c984 2019-09-08 stsp }
1829 aba9c984 2019-09-08 stsp
1830 aba9c984 2019-09-08 stsp const struct got_error *
1831 aba9c984 2019-09-08 stsp got_privsep_send_gitconfig_author_name_req(struct imsgbuf *ibuf)
1832 aba9c984 2019-09-08 stsp {
1833 aba9c984 2019-09-08 stsp if (imsg_compose(ibuf,
1834 aba9c984 2019-09-08 stsp GOT_IMSG_GITCONFIG_AUTHOR_NAME_REQUEST, 0, 0, -1, NULL, 0) == -1)
1835 aba9c984 2019-09-08 stsp return got_error_from_errno("imsg_compose "
1836 aba9c984 2019-09-08 stsp "GITCONFIG_AUTHOR_NAME_REQUEST");
1837 aba9c984 2019-09-08 stsp
1838 aba9c984 2019-09-08 stsp return flush_imsg(ibuf);
1839 aba9c984 2019-09-08 stsp }
1840 aba9c984 2019-09-08 stsp
1841 aba9c984 2019-09-08 stsp const struct got_error *
1842 aba9c984 2019-09-08 stsp got_privsep_send_gitconfig_author_email_req(struct imsgbuf *ibuf)
1843 aba9c984 2019-09-08 stsp {
1844 aba9c984 2019-09-08 stsp if (imsg_compose(ibuf,
1845 aba9c984 2019-09-08 stsp GOT_IMSG_GITCONFIG_AUTHOR_EMAIL_REQUEST, 0, 0, -1, NULL, 0) == -1)
1846 aba9c984 2019-09-08 stsp return got_error_from_errno("imsg_compose "
1847 aba9c984 2019-09-08 stsp "GITCONFIG_AUTHOR_EMAIL_REQUEST");
1848 cd95becd 2019-11-29 stsp
1849 cd95becd 2019-11-29 stsp return flush_imsg(ibuf);
1850 cd95becd 2019-11-29 stsp }
1851 cd95becd 2019-11-29 stsp
1852 cd95becd 2019-11-29 stsp const struct got_error *
1853 cd95becd 2019-11-29 stsp got_privsep_send_gitconfig_remotes_req(struct imsgbuf *ibuf)
1854 cd95becd 2019-11-29 stsp {
1855 cd95becd 2019-11-29 stsp if (imsg_compose(ibuf,
1856 cd95becd 2019-11-29 stsp GOT_IMSG_GITCONFIG_REMOTES_REQUEST, 0, 0, -1, NULL, 0) == -1)
1857 cd95becd 2019-11-29 stsp return got_error_from_errno("imsg_compose "
1858 cd95becd 2019-11-29 stsp "GITCONFIG_REMOTE_REQUEST");
1859 aba9c984 2019-09-08 stsp
1860 aba9c984 2019-09-08 stsp return flush_imsg(ibuf);
1861 aba9c984 2019-09-08 stsp }
1862 aba9c984 2019-09-08 stsp
1863 aba9c984 2019-09-08 stsp const struct got_error *
1864 9a1cc63f 2020-02-03 stsp got_privsep_send_gitconfig_owner_req(struct imsgbuf *ibuf)
1865 9a1cc63f 2020-02-03 stsp {
1866 9a1cc63f 2020-02-03 stsp if (imsg_compose(ibuf,
1867 9a1cc63f 2020-02-03 stsp GOT_IMSG_GITCONFIG_OWNER_REQUEST, 0, 0, -1, NULL, 0) == -1)
1868 9a1cc63f 2020-02-03 stsp return got_error_from_errno("imsg_compose "
1869 9a1cc63f 2020-02-03 stsp "GITCONFIG_OWNER_REQUEST");
1870 9a1cc63f 2020-02-03 stsp
1871 9a1cc63f 2020-02-03 stsp return flush_imsg(ibuf);
1872 9a1cc63f 2020-02-03 stsp }
1873 9a1cc63f 2020-02-03 stsp
1874 9a1cc63f 2020-02-03 stsp const struct got_error *
1875 aba9c984 2019-09-08 stsp got_privsep_send_gitconfig_str(struct imsgbuf *ibuf, const char *value)
1876 aba9c984 2019-09-08 stsp {
1877 aba9c984 2019-09-08 stsp size_t len = value ? strlen(value) + 1 : 0;
1878 aba9c984 2019-09-08 stsp
1879 aba9c984 2019-09-08 stsp if (imsg_compose(ibuf, GOT_IMSG_GITCONFIG_STR_VAL, 0, 0, -1,
1880 aba9c984 2019-09-08 stsp value, len) == -1)
1881 aba9c984 2019-09-08 stsp return got_error_from_errno("imsg_compose GITCONFIG_STR_VAL");
1882 aba9c984 2019-09-08 stsp
1883 aba9c984 2019-09-08 stsp return flush_imsg(ibuf);
1884 aba9c984 2019-09-08 stsp }
1885 aba9c984 2019-09-08 stsp
1886 aba9c984 2019-09-08 stsp const struct got_error *
1887 aba9c984 2019-09-08 stsp got_privsep_recv_gitconfig_str(char **str, struct imsgbuf *ibuf)
1888 aba9c984 2019-09-08 stsp {
1889 aba9c984 2019-09-08 stsp const struct got_error *err = NULL;
1890 aba9c984 2019-09-08 stsp struct imsg imsg;
1891 aba9c984 2019-09-08 stsp size_t datalen;
1892 aba9c984 2019-09-08 stsp const size_t min_datalen = 0;
1893 aba9c984 2019-09-08 stsp
1894 aba9c984 2019-09-08 stsp *str = NULL;
1895 aba9c984 2019-09-08 stsp
1896 aba9c984 2019-09-08 stsp err = got_privsep_recv_imsg(&imsg, ibuf, min_datalen);
1897 aba9c984 2019-09-08 stsp if (err)
1898 aba9c984 2019-09-08 stsp return err;
1899 aba9c984 2019-09-08 stsp datalen = imsg.hdr.len - IMSG_HEADER_SIZE;
1900 aba9c984 2019-09-08 stsp
1901 aba9c984 2019-09-08 stsp switch (imsg.hdr.type) {
1902 aba9c984 2019-09-08 stsp case GOT_IMSG_GITCONFIG_STR_VAL:
1903 aba9c984 2019-09-08 stsp if (datalen == 0)
1904 aba9c984 2019-09-08 stsp break;
1905 aba9c984 2019-09-08 stsp *str = malloc(datalen);
1906 aba9c984 2019-09-08 stsp if (*str == NULL) {
1907 aba9c984 2019-09-08 stsp err = got_error_from_errno("malloc");
1908 aba9c984 2019-09-08 stsp break;
1909 aba9c984 2019-09-08 stsp }
1910 aba9c984 2019-09-08 stsp if (strlcpy(*str, imsg.data, datalen) >= datalen)
1911 aba9c984 2019-09-08 stsp err = got_error(GOT_ERR_NO_SPACE);
1912 aba9c984 2019-09-08 stsp break;
1913 aba9c984 2019-09-08 stsp default:
1914 aba9c984 2019-09-08 stsp err = got_error(GOT_ERR_PRIVSEP_MSG);
1915 aba9c984 2019-09-08 stsp break;
1916 aba9c984 2019-09-08 stsp }
1917 876c234b 2018-09-10 stsp
1918 aba9c984 2019-09-08 stsp imsg_free(&imsg);
1919 aba9c984 2019-09-08 stsp return err;
1920 aba9c984 2019-09-08 stsp }
1921 aba9c984 2019-09-08 stsp
1922 aba9c984 2019-09-08 stsp const struct got_error *
1923 aba9c984 2019-09-08 stsp got_privsep_send_gitconfig_int(struct imsgbuf *ibuf, int value)
1924 aba9c984 2019-09-08 stsp {
1925 aba9c984 2019-09-08 stsp if (imsg_compose(ibuf, GOT_IMSG_GITCONFIG_INT_VAL, 0, 0, -1,
1926 aba9c984 2019-09-08 stsp &value, sizeof(value)) == -1)
1927 aba9c984 2019-09-08 stsp return got_error_from_errno("imsg_compose GITCONFIG_INT_VAL");
1928 aba9c984 2019-09-08 stsp
1929 876c234b 2018-09-10 stsp return flush_imsg(ibuf);
1930 63219cd2 2019-01-04 stsp }
1931 63219cd2 2019-01-04 stsp
1932 63219cd2 2019-01-04 stsp const struct got_error *
1933 aba9c984 2019-09-08 stsp got_privsep_recv_gitconfig_int(int *val, struct imsgbuf *ibuf)
1934 aba9c984 2019-09-08 stsp {
1935 aba9c984 2019-09-08 stsp const struct got_error *err = NULL;
1936 aba9c984 2019-09-08 stsp struct imsg imsg;
1937 aba9c984 2019-09-08 stsp size_t datalen;
1938 aba9c984 2019-09-08 stsp const size_t min_datalen =
1939 aba9c984 2019-09-08 stsp MIN(sizeof(struct got_imsg_error), sizeof(int));
1940 aba9c984 2019-09-08 stsp
1941 aba9c984 2019-09-08 stsp *val = 0;
1942 aba9c984 2019-09-08 stsp
1943 aba9c984 2019-09-08 stsp err = got_privsep_recv_imsg(&imsg, ibuf, min_datalen);
1944 aba9c984 2019-09-08 stsp if (err)
1945 aba9c984 2019-09-08 stsp return err;
1946 aba9c984 2019-09-08 stsp datalen = imsg.hdr.len - IMSG_HEADER_SIZE;
1947 aba9c984 2019-09-08 stsp
1948 aba9c984 2019-09-08 stsp switch (imsg.hdr.type) {
1949 aba9c984 2019-09-08 stsp case GOT_IMSG_GITCONFIG_INT_VAL:
1950 aba9c984 2019-09-08 stsp if (datalen != sizeof(*val)) {
1951 aba9c984 2019-09-08 stsp err = got_error(GOT_ERR_PRIVSEP_LEN);
1952 aba9c984 2019-09-08 stsp break;
1953 aba9c984 2019-09-08 stsp }
1954 aba9c984 2019-09-08 stsp memcpy(val, imsg.data, sizeof(*val));
1955 cd95becd 2019-11-29 stsp break;
1956 cd95becd 2019-11-29 stsp default:
1957 cd95becd 2019-11-29 stsp err = got_error(GOT_ERR_PRIVSEP_MSG);
1958 cd95becd 2019-11-29 stsp break;
1959 cd95becd 2019-11-29 stsp }
1960 cd95becd 2019-11-29 stsp
1961 cd95becd 2019-11-29 stsp imsg_free(&imsg);
1962 cd95becd 2019-11-29 stsp return err;
1963 cd95becd 2019-11-29 stsp }
1964 cd95becd 2019-11-29 stsp
1965 cd95becd 2019-11-29 stsp const struct got_error *
1966 cd95becd 2019-11-29 stsp got_privsep_send_gitconfig_remotes(struct imsgbuf *ibuf,
1967 cd95becd 2019-11-29 stsp struct got_remote_repo *remotes, int nremotes)
1968 cd95becd 2019-11-29 stsp {
1969 cd95becd 2019-11-29 stsp const struct got_error *err = NULL;
1970 cd95becd 2019-11-29 stsp struct got_imsg_remotes iremotes;
1971 cd95becd 2019-11-29 stsp int i;
1972 cd95becd 2019-11-29 stsp
1973 cd95becd 2019-11-29 stsp iremotes.nremotes = nremotes;
1974 cd95becd 2019-11-29 stsp if (imsg_compose(ibuf, GOT_IMSG_GITCONFIG_REMOTES, 0, 0, -1,
1975 cd95becd 2019-11-29 stsp &iremotes, sizeof(iremotes)) == -1)
1976 cd95becd 2019-11-29 stsp return got_error_from_errno("imsg_compose GITCONFIG_REMOTES");
1977 cd95becd 2019-11-29 stsp
1978 cd95becd 2019-11-29 stsp err = flush_imsg(ibuf);
1979 cd95becd 2019-11-29 stsp imsg_clear(ibuf);
1980 cd95becd 2019-11-29 stsp if (err)
1981 cd95becd 2019-11-29 stsp return err;
1982 cd95becd 2019-11-29 stsp
1983 cd95becd 2019-11-29 stsp for (i = 0; i < nremotes; i++) {
1984 cd95becd 2019-11-29 stsp struct got_imsg_remote iremote;
1985 cd95becd 2019-11-29 stsp size_t len = sizeof(iremote);
1986 cd95becd 2019-11-29 stsp struct ibuf *wbuf;
1987 cd95becd 2019-11-29 stsp
1988 fe6043b8 2020-03-20 stsp iremote.mirror_references = remotes[i].mirror_references;
1989 cd95becd 2019-11-29 stsp iremote.name_len = strlen(remotes[i].name);
1990 cd95becd 2019-11-29 stsp len += iremote.name_len;
1991 cd95becd 2019-11-29 stsp iremote.url_len = strlen(remotes[i].url);
1992 cd95becd 2019-11-29 stsp len += iremote.url_len;
1993 cd95becd 2019-11-29 stsp
1994 cd95becd 2019-11-29 stsp wbuf = imsg_create(ibuf, GOT_IMSG_GITCONFIG_REMOTE, 0, 0, len);
1995 cd95becd 2019-11-29 stsp if (wbuf == NULL)
1996 cd95becd 2019-11-29 stsp return got_error_from_errno(
1997 cd95becd 2019-11-29 stsp "imsg_create GITCONFIG_REMOTE");
1998 cd95becd 2019-11-29 stsp
1999 cd95becd 2019-11-29 stsp if (imsg_add(wbuf, &iremote, sizeof(iremote)) == -1) {
2000 cd95becd 2019-11-29 stsp err = got_error_from_errno(
2001 b364b1c2 2020-03-20 stsp "imsg_add GITCONFIG_REMOTE");
2002 cd95becd 2019-11-29 stsp ibuf_free(wbuf);
2003 cd95becd 2019-11-29 stsp return err;
2004 cd95becd 2019-11-29 stsp }
2005 cd95becd 2019-11-29 stsp
2006 cd95becd 2019-11-29 stsp if (imsg_add(wbuf, remotes[i].name, iremote.name_len) == -1) {
2007 cd95becd 2019-11-29 stsp err = got_error_from_errno(
2008 b364b1c2 2020-03-20 stsp "imsg_add GITCONFIG_REMOTE");
2009 cd95becd 2019-11-29 stsp ibuf_free(wbuf);
2010 cd95becd 2019-11-29 stsp return err;
2011 cd95becd 2019-11-29 stsp }
2012 cd95becd 2019-11-29 stsp if (imsg_add(wbuf, remotes[i].url, iremote.url_len) == -1) {
2013 cd95becd 2019-11-29 stsp err = got_error_from_errno(
2014 b364b1c2 2020-03-20 stsp "imsg_add GITCONFIG_REMOTE");
2015 cd95becd 2019-11-29 stsp ibuf_free(wbuf);
2016 cd95becd 2019-11-29 stsp return err;
2017 cd95becd 2019-11-29 stsp }
2018 cd95becd 2019-11-29 stsp
2019 cd95becd 2019-11-29 stsp wbuf->fd = -1;
2020 cd95becd 2019-11-29 stsp imsg_close(ibuf, wbuf);
2021 cd95becd 2019-11-29 stsp err = flush_imsg(ibuf);
2022 cd95becd 2019-11-29 stsp if (err)
2023 cd95becd 2019-11-29 stsp return err;
2024 cd95becd 2019-11-29 stsp }
2025 cd95becd 2019-11-29 stsp
2026 cd95becd 2019-11-29 stsp return NULL;
2027 cd95becd 2019-11-29 stsp }
2028 cd95becd 2019-11-29 stsp
2029 cd95becd 2019-11-29 stsp const struct got_error *
2030 cd95becd 2019-11-29 stsp got_privsep_recv_gitconfig_remotes(struct got_remote_repo **remotes,
2031 cd95becd 2019-11-29 stsp int *nremotes, struct imsgbuf *ibuf)
2032 cd95becd 2019-11-29 stsp {
2033 cd95becd 2019-11-29 stsp const struct got_error *err = NULL;
2034 cd95becd 2019-11-29 stsp struct imsg imsg;
2035 cd95becd 2019-11-29 stsp size_t datalen;
2036 cd95becd 2019-11-29 stsp struct got_imsg_remotes iremotes;
2037 cd95becd 2019-11-29 stsp struct got_imsg_remote iremote;
2038 cd95becd 2019-11-29 stsp
2039 cd95becd 2019-11-29 stsp *remotes = NULL;
2040 cd95becd 2019-11-29 stsp *nremotes = 0;
2041 d669b9c9 2020-02-22 stsp iremotes.nremotes = 0;
2042 cd95becd 2019-11-29 stsp
2043 cd95becd 2019-11-29 stsp err = got_privsep_recv_imsg(&imsg, ibuf, sizeof(iremotes));
2044 cd95becd 2019-11-29 stsp if (err)
2045 cd95becd 2019-11-29 stsp return err;
2046 cd95becd 2019-11-29 stsp datalen = imsg.hdr.len - IMSG_HEADER_SIZE;
2047 cd95becd 2019-11-29 stsp
2048 cd95becd 2019-11-29 stsp switch (imsg.hdr.type) {
2049 cd95becd 2019-11-29 stsp case GOT_IMSG_GITCONFIG_REMOTES:
2050 cd95becd 2019-11-29 stsp if (datalen != sizeof(iremotes)) {
2051 cd95becd 2019-11-29 stsp err = got_error(GOT_ERR_PRIVSEP_LEN);
2052 cd95becd 2019-11-29 stsp break;
2053 cd95becd 2019-11-29 stsp }
2054 cd95becd 2019-11-29 stsp memcpy(&iremotes, imsg.data, sizeof(iremotes));
2055 cd95becd 2019-11-29 stsp if (iremotes.nremotes == 0) {
2056 cd95becd 2019-11-29 stsp imsg_free(&imsg);
2057 cd95becd 2019-11-29 stsp return NULL;
2058 cd95becd 2019-11-29 stsp }
2059 aba9c984 2019-09-08 stsp break;
2060 aba9c984 2019-09-08 stsp default:
2061 54b1c5b5 2020-02-22 stsp imsg_free(&imsg);
2062 54b1c5b5 2020-02-22 stsp return got_error(GOT_ERR_PRIVSEP_MSG);
2063 aba9c984 2019-09-08 stsp }
2064 aba9c984 2019-09-08 stsp
2065 aba9c984 2019-09-08 stsp imsg_free(&imsg);
2066 cd95becd 2019-11-29 stsp
2067 5146eb39 2020-03-20 stsp *remotes = recallocarray(NULL, 0, iremotes.nremotes, sizeof(**remotes));
2068 cd95becd 2019-11-29 stsp if (*remotes == NULL)
2069 cd95becd 2019-11-29 stsp return got_error_from_errno("recallocarray");
2070 cd95becd 2019-11-29 stsp
2071 cd95becd 2019-11-29 stsp while (*nremotes < iremotes.nremotes) {
2072 cd95becd 2019-11-29 stsp struct got_remote_repo *remote;
2073 cd95becd 2019-11-29 stsp
2074 cd95becd 2019-11-29 stsp err = got_privsep_recv_imsg(&imsg, ibuf, sizeof(iremote));
2075 cd95becd 2019-11-29 stsp if (err)
2076 cd95becd 2019-11-29 stsp break;
2077 cd95becd 2019-11-29 stsp datalen = imsg.hdr.len - IMSG_HEADER_SIZE;
2078 cd95becd 2019-11-29 stsp
2079 cd95becd 2019-11-29 stsp switch (imsg.hdr.type) {
2080 cd95becd 2019-11-29 stsp case GOT_IMSG_GITCONFIG_REMOTE:
2081 cd95becd 2019-11-29 stsp remote = &(*remotes)[*nremotes];
2082 cd95becd 2019-11-29 stsp if (datalen < sizeof(iremote)) {
2083 cd95becd 2019-11-29 stsp err = got_error(GOT_ERR_PRIVSEP_LEN);
2084 cd95becd 2019-11-29 stsp break;
2085 cd95becd 2019-11-29 stsp }
2086 cd95becd 2019-11-29 stsp memcpy(&iremote, imsg.data, sizeof(iremote));
2087 cd95becd 2019-11-29 stsp if (iremote.name_len == 0 || iremote.url_len == 0 ||
2088 cd95becd 2019-11-29 stsp (sizeof(iremote) + iremote.name_len +
2089 cd95becd 2019-11-29 stsp iremote.url_len) > datalen) {
2090 cd95becd 2019-11-29 stsp err = got_error(GOT_ERR_PRIVSEP_LEN);
2091 cd95becd 2019-11-29 stsp break;
2092 cd95becd 2019-11-29 stsp }
2093 cd95becd 2019-11-29 stsp remote->name = strndup(imsg.data + sizeof(iremote),
2094 cd95becd 2019-11-29 stsp iremote.name_len);
2095 cd95becd 2019-11-29 stsp if (remote->name == NULL) {
2096 cd95becd 2019-11-29 stsp err = got_error_from_errno("strndup");
2097 cd95becd 2019-11-29 stsp break;
2098 cd95becd 2019-11-29 stsp }
2099 cd95becd 2019-11-29 stsp remote->url = strndup(imsg.data + sizeof(iremote) +
2100 cd95becd 2019-11-29 stsp iremote.name_len, iremote.url_len);
2101 cd95becd 2019-11-29 stsp if (remote->url == NULL) {
2102 cd95becd 2019-11-29 stsp err = got_error_from_errno("strndup");
2103 cd95becd 2019-11-29 stsp free(remote->name);
2104 cd95becd 2019-11-29 stsp break;
2105 cd95becd 2019-11-29 stsp }
2106 469dd726 2020-03-20 stsp remote->mirror_references = iremote.mirror_references;
2107 cd95becd 2019-11-29 stsp (*nremotes)++;
2108 cd95becd 2019-11-29 stsp break;
2109 cd95becd 2019-11-29 stsp default:
2110 cd95becd 2019-11-29 stsp err = got_error(GOT_ERR_PRIVSEP_MSG);
2111 cd95becd 2019-11-29 stsp break;
2112 cd95becd 2019-11-29 stsp }
2113 cd95becd 2019-11-29 stsp
2114 cd95becd 2019-11-29 stsp imsg_free(&imsg);
2115 cd95becd 2019-11-29 stsp if (err)
2116 cd95becd 2019-11-29 stsp break;
2117 cd95becd 2019-11-29 stsp }
2118 cd95becd 2019-11-29 stsp
2119 cd95becd 2019-11-29 stsp if (err) {
2120 cd95becd 2019-11-29 stsp int i;
2121 cd95becd 2019-11-29 stsp for (i = 0; i < *nremotes; i++) {
2122 cd95becd 2019-11-29 stsp free((*remotes)[i].name);
2123 cd95becd 2019-11-29 stsp free((*remotes)[i].url);
2124 cd95becd 2019-11-29 stsp }
2125 cd95becd 2019-11-29 stsp free(*remotes);
2126 cd95becd 2019-11-29 stsp *remotes = NULL;
2127 cd95becd 2019-11-29 stsp *nremotes = 0;
2128 cd95becd 2019-11-29 stsp }
2129 aba9c984 2019-09-08 stsp return err;
2130 ca6e02ac 2020-01-07 stsp }
2131 ca6e02ac 2020-01-07 stsp
2132 ca6e02ac 2020-01-07 stsp const struct got_error *
2133 ca6e02ac 2020-01-07 stsp got_privsep_send_commit_traversal_request(struct imsgbuf *ibuf,
2134 ca6e02ac 2020-01-07 stsp struct got_object_id *id, int idx, const char *path)
2135 ca6e02ac 2020-01-07 stsp {
2136 ca6e02ac 2020-01-07 stsp const struct got_error *err = NULL;
2137 ca6e02ac 2020-01-07 stsp struct ibuf *wbuf;
2138 ca6e02ac 2020-01-07 stsp size_t path_len = strlen(path) + 1;
2139 ca6e02ac 2020-01-07 stsp
2140 ca6e02ac 2020-01-07 stsp wbuf = imsg_create(ibuf, GOT_IMSG_COMMIT_TRAVERSAL_REQUEST, 0, 0,
2141 ca6e02ac 2020-01-07 stsp sizeof(struct got_imsg_commit_traversal_request) + path_len);
2142 ca6e02ac 2020-01-07 stsp if (wbuf == NULL)
2143 ca6e02ac 2020-01-07 stsp return got_error_from_errno(
2144 ca6e02ac 2020-01-07 stsp "imsg_create COMMIT_TRAVERSAL_REQUEST");
2145 ca6e02ac 2020-01-07 stsp if (imsg_add(wbuf, id->sha1, SHA1_DIGEST_LENGTH) == -1) {
2146 ca6e02ac 2020-01-07 stsp err = got_error_from_errno("imsg_add COMMIT_TRAVERSAL_REQUEST");
2147 ca6e02ac 2020-01-07 stsp ibuf_free(wbuf);
2148 ca6e02ac 2020-01-07 stsp return err;
2149 ca6e02ac 2020-01-07 stsp }
2150 ca6e02ac 2020-01-07 stsp if (imsg_add(wbuf, &idx, sizeof(idx)) == -1) {
2151 ca6e02ac 2020-01-07 stsp err = got_error_from_errno("imsg_add COMMIT_TRAVERSAL_REQUEST");
2152 ca6e02ac 2020-01-07 stsp ibuf_free(wbuf);
2153 ca6e02ac 2020-01-07 stsp return err;
2154 ca6e02ac 2020-01-07 stsp }
2155 ca6e02ac 2020-01-07 stsp if (imsg_add(wbuf, path, path_len) == -1) {
2156 ca6e02ac 2020-01-07 stsp err = got_error_from_errno("imsg_add COMMIT_TRAVERSAL_REQUEST");
2157 ca6e02ac 2020-01-07 stsp ibuf_free(wbuf);
2158 ca6e02ac 2020-01-07 stsp return err;
2159 ca6e02ac 2020-01-07 stsp }
2160 ca6e02ac 2020-01-07 stsp
2161 ca6e02ac 2020-01-07 stsp wbuf->fd = -1;
2162 ca6e02ac 2020-01-07 stsp imsg_close(ibuf, wbuf);
2163 ca6e02ac 2020-01-07 stsp
2164 ca6e02ac 2020-01-07 stsp return flush_imsg(ibuf);
2165 aba9c984 2019-09-08 stsp }
2166 aba9c984 2019-09-08 stsp
2167 aba9c984 2019-09-08 stsp const struct got_error *
2168 ca6e02ac 2020-01-07 stsp got_privsep_send_traversed_commits(struct got_object_id *commit_ids,
2169 ca6e02ac 2020-01-07 stsp size_t ncommits, struct imsgbuf *ibuf)
2170 ca6e02ac 2020-01-07 stsp {
2171 ca6e02ac 2020-01-07 stsp const struct got_error *err;
2172 ca6e02ac 2020-01-07 stsp struct ibuf *wbuf;
2173 ca6e02ac 2020-01-07 stsp int i;
2174 ca6e02ac 2020-01-07 stsp
2175 ca6e02ac 2020-01-07 stsp wbuf = imsg_create(ibuf, GOT_IMSG_TRAVERSED_COMMITS, 0, 0,
2176 ca6e02ac 2020-01-07 stsp sizeof(struct got_imsg_traversed_commits) +
2177 ca6e02ac 2020-01-07 stsp ncommits * SHA1_DIGEST_LENGTH);
2178 ca6e02ac 2020-01-07 stsp if (wbuf == NULL)
2179 ca6e02ac 2020-01-07 stsp return got_error_from_errno("imsg_create TRAVERSED_COMMITS");
2180 ca6e02ac 2020-01-07 stsp
2181 ca6e02ac 2020-01-07 stsp if (imsg_add(wbuf, &ncommits, sizeof(ncommits)) == -1) {
2182 ca6e02ac 2020-01-07 stsp err = got_error_from_errno("imsg_add TRAVERSED_COMMITS");
2183 ca6e02ac 2020-01-07 stsp ibuf_free(wbuf);
2184 ca6e02ac 2020-01-07 stsp return err;
2185 ca6e02ac 2020-01-07 stsp }
2186 ca6e02ac 2020-01-07 stsp for (i = 0; i < ncommits; i++) {
2187 ca6e02ac 2020-01-07 stsp struct got_object_id *id = &commit_ids[i];
2188 ca6e02ac 2020-01-07 stsp if (imsg_add(wbuf, id->sha1, SHA1_DIGEST_LENGTH) == -1) {
2189 ca6e02ac 2020-01-07 stsp err = got_error_from_errno(
2190 ca6e02ac 2020-01-07 stsp "imsg_add TRAVERSED_COMMITS");
2191 ca6e02ac 2020-01-07 stsp ibuf_free(wbuf);
2192 ca6e02ac 2020-01-07 stsp return err;
2193 ca6e02ac 2020-01-07 stsp }
2194 ca6e02ac 2020-01-07 stsp }
2195 ca6e02ac 2020-01-07 stsp
2196 ca6e02ac 2020-01-07 stsp wbuf->fd = -1;
2197 ca6e02ac 2020-01-07 stsp imsg_close(ibuf, wbuf);
2198 ca6e02ac 2020-01-07 stsp
2199 ca6e02ac 2020-01-07 stsp return flush_imsg(ibuf);
2200 ca6e02ac 2020-01-07 stsp }
2201 ca6e02ac 2020-01-07 stsp
2202 ca6e02ac 2020-01-07 stsp const struct got_error *
2203 ca6e02ac 2020-01-07 stsp got_privsep_recv_traversed_commits(struct got_commit_object **changed_commit,
2204 ca6e02ac 2020-01-07 stsp struct got_object_id **changed_commit_id,
2205 ca6e02ac 2020-01-07 stsp struct got_object_id_queue *commit_ids, struct imsgbuf *ibuf)
2206 ca6e02ac 2020-01-07 stsp {
2207 ca6e02ac 2020-01-07 stsp const struct got_error *err = NULL;
2208 ca6e02ac 2020-01-07 stsp struct imsg imsg;
2209 ca6e02ac 2020-01-07 stsp struct got_imsg_traversed_commits *icommits;
2210 ca6e02ac 2020-01-07 stsp size_t datalen;
2211 ca6e02ac 2020-01-07 stsp int i, done = 0;
2212 ca6e02ac 2020-01-07 stsp
2213 ca6e02ac 2020-01-07 stsp *changed_commit = NULL;
2214 ca6e02ac 2020-01-07 stsp *changed_commit_id = NULL;
2215 ca6e02ac 2020-01-07 stsp
2216 ca6e02ac 2020-01-07 stsp while (!done) {
2217 ca6e02ac 2020-01-07 stsp err = got_privsep_recv_imsg(&imsg, ibuf, 0);
2218 ca6e02ac 2020-01-07 stsp if (err)
2219 ca6e02ac 2020-01-07 stsp return err;
2220 ca6e02ac 2020-01-07 stsp
2221 ca6e02ac 2020-01-07 stsp datalen = imsg.hdr.len - IMSG_HEADER_SIZE;
2222 ca6e02ac 2020-01-07 stsp switch (imsg.hdr.type) {
2223 ca6e02ac 2020-01-07 stsp case GOT_IMSG_TRAVERSED_COMMITS:
2224 ca6e02ac 2020-01-07 stsp icommits = imsg.data;
2225 ca6e02ac 2020-01-07 stsp if (datalen != sizeof(*icommits) +
2226 ca6e02ac 2020-01-07 stsp icommits->ncommits * SHA1_DIGEST_LENGTH) {
2227 ca6e02ac 2020-01-07 stsp err = got_error(GOT_ERR_PRIVSEP_LEN);
2228 ca6e02ac 2020-01-07 stsp break;
2229 ca6e02ac 2020-01-07 stsp }
2230 ca6e02ac 2020-01-07 stsp for (i = 0; i < icommits->ncommits; i++) {
2231 ca6e02ac 2020-01-07 stsp struct got_object_qid *qid;
2232 ca6e02ac 2020-01-07 stsp uint8_t *sha1 = (uint8_t *)imsg.data +
2233 ca6e02ac 2020-01-07 stsp sizeof(*icommits) + i * SHA1_DIGEST_LENGTH;
2234 ca6e02ac 2020-01-07 stsp err = got_object_qid_alloc_partial(&qid);
2235 ca6e02ac 2020-01-07 stsp if (err)
2236 ca6e02ac 2020-01-07 stsp break;
2237 ca6e02ac 2020-01-07 stsp memcpy(qid->id->sha1, sha1, SHA1_DIGEST_LENGTH);
2238 ca6e02ac 2020-01-07 stsp SIMPLEQ_INSERT_TAIL(commit_ids, qid, entry);
2239 ca6e02ac 2020-01-07 stsp
2240 ca6e02ac 2020-01-07 stsp /* The last commit may contain a change. */
2241 ca6e02ac 2020-01-07 stsp if (i == icommits->ncommits - 1) {
2242 ca6e02ac 2020-01-07 stsp *changed_commit_id =
2243 ca6e02ac 2020-01-07 stsp got_object_id_dup(qid->id);
2244 ca6e02ac 2020-01-07 stsp if (*changed_commit_id == NULL) {
2245 ca6e02ac 2020-01-07 stsp err = got_error_from_errno(
2246 ca6e02ac 2020-01-07 stsp "got_object_id_dup");
2247 ca6e02ac 2020-01-07 stsp break;
2248 ca6e02ac 2020-01-07 stsp }
2249 ca6e02ac 2020-01-07 stsp }
2250 ca6e02ac 2020-01-07 stsp }
2251 ca6e02ac 2020-01-07 stsp break;
2252 ca6e02ac 2020-01-07 stsp case GOT_IMSG_COMMIT:
2253 ca6e02ac 2020-01-07 stsp if (*changed_commit_id == NULL) {
2254 ca6e02ac 2020-01-07 stsp err = got_error(GOT_ERR_PRIVSEP_MSG);
2255 ca6e02ac 2020-01-07 stsp break;
2256 ca6e02ac 2020-01-07 stsp }
2257 ca6e02ac 2020-01-07 stsp err = get_commit_from_imsg(changed_commit, &imsg,
2258 ca6e02ac 2020-01-07 stsp datalen, ibuf);
2259 ca6e02ac 2020-01-07 stsp break;
2260 ca6e02ac 2020-01-07 stsp case GOT_IMSG_COMMIT_TRAVERSAL_DONE:
2261 ca6e02ac 2020-01-07 stsp done = 1;
2262 ca6e02ac 2020-01-07 stsp break;
2263 ca6e02ac 2020-01-07 stsp default:
2264 ca6e02ac 2020-01-07 stsp err = got_error(GOT_ERR_PRIVSEP_MSG);
2265 ca6e02ac 2020-01-07 stsp break;
2266 ca6e02ac 2020-01-07 stsp }
2267 ca6e02ac 2020-01-07 stsp
2268 ca6e02ac 2020-01-07 stsp imsg_free(&imsg);
2269 ca6e02ac 2020-01-07 stsp if (err)
2270 ca6e02ac 2020-01-07 stsp break;
2271 ca6e02ac 2020-01-07 stsp }
2272 ca6e02ac 2020-01-07 stsp
2273 ca6e02ac 2020-01-07 stsp if (err)
2274 ca6e02ac 2020-01-07 stsp got_object_id_queue_free(commit_ids);
2275 ca6e02ac 2020-01-07 stsp return err;
2276 ca6e02ac 2020-01-07 stsp }
2277 ca6e02ac 2020-01-07 stsp
2278 ca6e02ac 2020-01-07 stsp const struct got_error *
2279 ca6e02ac 2020-01-07 stsp got_privsep_send_commit_traversal_done(struct imsgbuf *ibuf)
2280 ca6e02ac 2020-01-07 stsp {
2281 ca6e02ac 2020-01-07 stsp if (imsg_compose(ibuf, GOT_IMSG_COMMIT_TRAVERSAL_DONE, 0, 0, -1,
2282 ca6e02ac 2020-01-07 stsp NULL, 0) == -1)
2283 ca6e02ac 2020-01-07 stsp return got_error_from_errno("imsg_compose TRAVERSAL_DONE");
2284 ca6e02ac 2020-01-07 stsp
2285 ca6e02ac 2020-01-07 stsp return flush_imsg(ibuf);
2286 ca6e02ac 2020-01-07 stsp }
2287 ca6e02ac 2020-01-07 stsp
2288 ca6e02ac 2020-01-07 stsp const struct got_error *
2289 63219cd2 2019-01-04 stsp got_privsep_unveil_exec_helpers(void)
2290 63219cd2 2019-01-04 stsp {
2291 c39c25dd 2019-08-09 stsp const char *helpers[] = {
2292 c39c25dd 2019-08-09 stsp GOT_PATH_PROG_READ_PACK,
2293 c39c25dd 2019-08-09 stsp GOT_PATH_PROG_READ_OBJECT,
2294 c39c25dd 2019-08-09 stsp GOT_PATH_PROG_READ_COMMIT,
2295 c39c25dd 2019-08-09 stsp GOT_PATH_PROG_READ_TREE,
2296 c39c25dd 2019-08-09 stsp GOT_PATH_PROG_READ_BLOB,
2297 c39c25dd 2019-08-09 stsp GOT_PATH_PROG_READ_TAG,
2298 aba9c984 2019-09-08 stsp GOT_PATH_PROG_READ_GITCONFIG,
2299 ee448f5f 2020-03-18 stsp GOT_PATH_PROG_FETCH_PACK,
2300 ee448f5f 2020-03-18 stsp GOT_PATH_PROG_INDEX_PACK,
2301 c39c25dd 2019-08-09 stsp };
2302 c39c25dd 2019-08-09 stsp int i;
2303 63219cd2 2019-01-04 stsp
2304 c39c25dd 2019-08-09 stsp for (i = 0; i < nitems(helpers); i++) {
2305 c39c25dd 2019-08-09 stsp if (unveil(helpers[i], "x") == 0)
2306 c39c25dd 2019-08-09 stsp continue;
2307 c39c25dd 2019-08-09 stsp return got_error_from_errno2("unveil", helpers[i]);
2308 c39c25dd 2019-08-09 stsp }
2309 c39c25dd 2019-08-09 stsp
2310 63219cd2 2019-01-04 stsp return NULL;
2311 876c234b 2018-09-10 stsp }
2312 aba9c984 2019-09-08 stsp
2313 aba9c984 2019-09-08 stsp void
2314 aba9c984 2019-09-08 stsp got_privsep_exec_child(int imsg_fds[2], const char *path, const char *repo_path)
2315 aba9c984 2019-09-08 stsp {
2316 aba9c984 2019-09-08 stsp if (close(imsg_fds[0]) != 0) {
2317 aba9c984 2019-09-08 stsp fprintf(stderr, "%s: %s\n", getprogname(), strerror(errno));
2318 aba9c984 2019-09-08 stsp _exit(1);
2319 aba9c984 2019-09-08 stsp }
2320 aba9c984 2019-09-08 stsp
2321 aba9c984 2019-09-08 stsp if (dup2(imsg_fds[1], GOT_IMSG_FD_CHILD) == -1) {
2322 aba9c984 2019-09-08 stsp fprintf(stderr, "%s: %s\n", getprogname(), strerror(errno));
2323 aba9c984 2019-09-08 stsp _exit(1);
2324 aba9c984 2019-09-08 stsp }
2325 aba9c984 2019-09-08 stsp if (closefrom(GOT_IMSG_FD_CHILD + 1) == -1) {
2326 aba9c984 2019-09-08 stsp fprintf(stderr, "%s: %s\n", getprogname(), strerror(errno));
2327 aba9c984 2019-09-08 stsp _exit(1);
2328 aba9c984 2019-09-08 stsp }
2329 aba9c984 2019-09-08 stsp
2330 aba9c984 2019-09-08 stsp if (execl(path, path, repo_path, (char *)NULL) == -1) {
2331 aba9c984 2019-09-08 stsp fprintf(stderr, "%s: %s: %s\n", getprogname(), path,
2332 aba9c984 2019-09-08 stsp strerror(errno));
2333 aba9c984 2019-09-08 stsp _exit(1);
2334 aba9c984 2019-09-08 stsp }
2335 aba9c984 2019-09-08 stsp }