Blame


1 2178c42e 2018-04-22 stsp /*
2 2178c42e 2018-04-22 stsp * Copyright (c) 2018 Stefan Sperling <stsp@openbsd.org>
3 2178c42e 2018-04-22 stsp *
4 2178c42e 2018-04-22 stsp * Permission to use, copy, modify, and distribute this software for any
5 2178c42e 2018-04-22 stsp * purpose with or without fee is hereby granted, provided that the above
6 2178c42e 2018-04-22 stsp * copyright notice and this permission notice appear in all copies.
7 2178c42e 2018-04-22 stsp *
8 2178c42e 2018-04-22 stsp * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
9 2178c42e 2018-04-22 stsp * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
10 2178c42e 2018-04-22 stsp * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
11 2178c42e 2018-04-22 stsp * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
12 2178c42e 2018-04-22 stsp * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
13 2178c42e 2018-04-22 stsp * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
14 2178c42e 2018-04-22 stsp * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
15 2178c42e 2018-04-22 stsp */
16 2178c42e 2018-04-22 stsp
17 2178c42e 2018-04-22 stsp #include <sys/types.h>
18 2178c42e 2018-04-22 stsp #include <sys/queue.h>
19 2178c42e 2018-04-22 stsp #include <sys/uio.h>
20 876c234b 2018-09-10 stsp #include <sys/syslimits.h>
21 876c234b 2018-09-10 stsp #include <sys/wait.h>
22 2178c42e 2018-04-22 stsp
23 2178c42e 2018-04-22 stsp #include <stdio.h>
24 2178c42e 2018-04-22 stsp #include <stdlib.h>
25 2178c42e 2018-04-22 stsp #include <string.h>
26 2178c42e 2018-04-22 stsp #include <errno.h>
27 2178c42e 2018-04-22 stsp #include <stdint.h>
28 2178c42e 2018-04-22 stsp #include <poll.h>
29 2178c42e 2018-04-22 stsp #include <imsg.h>
30 2178c42e 2018-04-22 stsp #include <sha1.h>
31 2178c42e 2018-04-22 stsp #include <zlib.h>
32 788c352e 2018-06-16 stsp #include <time.h>
33 2178c42e 2018-04-22 stsp
34 2178c42e 2018-04-22 stsp #include "got_object.h"
35 2178c42e 2018-04-22 stsp #include "got_error.h"
36 2178c42e 2018-04-22 stsp
37 2178c42e 2018-04-22 stsp #include "got_lib_sha1.h"
38 2178c42e 2018-04-22 stsp #include "got_lib_delta.h"
39 63581804 2018-07-09 stsp #include "got_lib_inflate.h"
40 2178c42e 2018-04-22 stsp #include "got_lib_object.h"
41 a440fac0 2018-09-06 stsp #include "got_lib_object_parse.h"
42 2178c42e 2018-04-22 stsp #include "got_lib_privsep.h"
43 876c234b 2018-09-10 stsp #include "got_lib_pack.h"
44 2178c42e 2018-04-22 stsp
45 2178c42e 2018-04-22 stsp #ifndef MIN
46 2178c42e 2018-04-22 stsp #define MIN(_a,_b) ((_a) < (_b) ? (_a) : (_b))
47 2178c42e 2018-04-22 stsp #endif
48 2178c42e 2018-04-22 stsp
49 2178c42e 2018-04-22 stsp static const struct got_error *
50 2178c42e 2018-04-22 stsp poll_fd(int fd, int events, int timeout)
51 2178c42e 2018-04-22 stsp {
52 2178c42e 2018-04-22 stsp struct pollfd pfd[1];
53 2178c42e 2018-04-22 stsp int n;
54 2178c42e 2018-04-22 stsp
55 2178c42e 2018-04-22 stsp pfd[0].fd = fd;
56 2178c42e 2018-04-22 stsp pfd[0].events = events;
57 2178c42e 2018-04-22 stsp
58 2178c42e 2018-04-22 stsp n = poll(pfd, 1, timeout);
59 2178c42e 2018-04-22 stsp if (n == -1)
60 2178c42e 2018-04-22 stsp return got_error_from_errno();
61 2178c42e 2018-04-22 stsp if (n == 0)
62 2178c42e 2018-04-22 stsp return got_error(GOT_ERR_TIMEOUT);
63 2178c42e 2018-04-22 stsp if (pfd[0].revents & (POLLERR | POLLNVAL))
64 2178c42e 2018-04-22 stsp return got_error_from_errno();
65 2178c42e 2018-04-22 stsp if (pfd[0].revents & (events | POLLHUP))
66 2178c42e 2018-04-22 stsp return NULL;
67 2178c42e 2018-04-22 stsp
68 2178c42e 2018-04-22 stsp return got_error(GOT_ERR_INTERRUPT);
69 2178c42e 2018-04-22 stsp }
70 2178c42e 2018-04-22 stsp
71 c4eae628 2018-04-23 stsp static const struct got_error *
72 e033d803 2018-04-23 stsp read_imsg(struct imsgbuf *ibuf)
73 fe36cf76 2018-04-23 stsp {
74 fe36cf76 2018-04-23 stsp const struct got_error *err;
75 e033d803 2018-04-23 stsp size_t n;
76 fe36cf76 2018-04-23 stsp
77 fe36cf76 2018-04-23 stsp err = poll_fd(ibuf->fd, POLLIN, INFTIM);
78 fe36cf76 2018-04-23 stsp if (err)
79 fe36cf76 2018-04-23 stsp return err;
80 fe36cf76 2018-04-23 stsp
81 fe36cf76 2018-04-23 stsp n = imsg_read(ibuf);
82 fe36cf76 2018-04-23 stsp if (n == -1) {
83 fe36cf76 2018-04-23 stsp if (errno == EAGAIN) /* Could be a file-descriptor leak. */
84 fe36cf76 2018-04-23 stsp return got_error(GOT_ERR_PRIVSEP_NO_FD);
85 fe36cf76 2018-04-23 stsp return got_error(GOT_ERR_PRIVSEP_READ);
86 fe36cf76 2018-04-23 stsp }
87 fe36cf76 2018-04-23 stsp if (n == 0)
88 fe36cf76 2018-04-23 stsp return got_error(GOT_ERR_PRIVSEP_PIPE);
89 fe36cf76 2018-04-23 stsp
90 e033d803 2018-04-23 stsp return NULL;
91 e033d803 2018-04-23 stsp }
92 e033d803 2018-04-23 stsp
93 ad242220 2018-09-08 stsp const struct got_error *
94 876c234b 2018-09-10 stsp got_privsep_wait_for_child(pid_t pid)
95 876c234b 2018-09-10 stsp {
96 876c234b 2018-09-10 stsp int child_status;
97 876c234b 2018-09-10 stsp
98 876c234b 2018-09-10 stsp waitpid(pid, &child_status, 0);
99 876c234b 2018-09-10 stsp
100 876c234b 2018-09-10 stsp if (!WIFEXITED(child_status))
101 876c234b 2018-09-10 stsp return got_error(GOT_ERR_PRIVSEP_DIED);
102 876c234b 2018-09-10 stsp
103 876c234b 2018-09-10 stsp if (WEXITSTATUS(child_status) != 0)
104 876c234b 2018-09-10 stsp return got_error(GOT_ERR_PRIVSEP_EXIT);
105 876c234b 2018-09-10 stsp
106 876c234b 2018-09-10 stsp return NULL;
107 876c234b 2018-09-10 stsp }
108 876c234b 2018-09-10 stsp
109 876c234b 2018-09-10 stsp const struct got_error *
110 46de5bfd 2018-11-11 stsp got_privsep_recv_imsg(struct imsg *imsg, struct imsgbuf *ibuf,
111 46de5bfd 2018-11-11 stsp size_t min_datalen)
112 e033d803 2018-04-23 stsp {
113 e033d803 2018-04-23 stsp const struct got_error *err;
114 e033d803 2018-04-23 stsp ssize_t n;
115 e033d803 2018-04-23 stsp
116 e033d803 2018-04-23 stsp n = imsg_get(ibuf, imsg);
117 876c234b 2018-09-10 stsp if (n == -1)
118 876c234b 2018-09-10 stsp return got_error_from_errno();
119 876c234b 2018-09-10 stsp
120 876c234b 2018-09-10 stsp while (n == 0) {
121 876c234b 2018-09-10 stsp err = read_imsg(ibuf);
122 876c234b 2018-09-10 stsp if (err)
123 876c234b 2018-09-10 stsp return err;
124 876c234b 2018-09-10 stsp n = imsg_get(ibuf, imsg);
125 876c234b 2018-09-10 stsp }
126 fe36cf76 2018-04-23 stsp
127 fe36cf76 2018-04-23 stsp if (imsg->hdr.len < IMSG_HEADER_SIZE + min_datalen)
128 fe36cf76 2018-04-23 stsp return got_error(GOT_ERR_PRIVSEP_LEN);
129 fe36cf76 2018-04-23 stsp
130 fe36cf76 2018-04-23 stsp return NULL;
131 fe36cf76 2018-04-23 stsp }
132 fe36cf76 2018-04-23 stsp
133 fe36cf76 2018-04-23 stsp static const struct got_error *
134 c4eae628 2018-04-23 stsp recv_imsg_error(struct imsg *imsg, size_t datalen)
135 c4eae628 2018-04-23 stsp {
136 291624d8 2018-11-07 stsp struct got_imsg_error *ierr;
137 c4eae628 2018-04-23 stsp
138 291624d8 2018-11-07 stsp if (datalen != sizeof(*ierr))
139 c4eae628 2018-04-23 stsp return got_error(GOT_ERR_PRIVSEP_LEN);
140 c4eae628 2018-04-23 stsp
141 291624d8 2018-11-07 stsp ierr = imsg->data;
142 291624d8 2018-11-07 stsp if (ierr->code == GOT_ERR_ERRNO) {
143 c4eae628 2018-04-23 stsp static struct got_error serr;
144 c4eae628 2018-04-23 stsp serr.code = GOT_ERR_ERRNO;
145 291624d8 2018-11-07 stsp serr.msg = strerror(ierr->errno_code);
146 c4eae628 2018-04-23 stsp return &serr;
147 c4eae628 2018-04-23 stsp }
148 c4eae628 2018-04-23 stsp
149 291624d8 2018-11-07 stsp return got_error(ierr->code);
150 c4eae628 2018-04-23 stsp }
151 c4eae628 2018-04-23 stsp
152 2178c42e 2018-04-22 stsp /* Attempt to send an error in an imsg. Complain on stderr as a last resort. */
153 2178c42e 2018-04-22 stsp void
154 2178c42e 2018-04-22 stsp got_privsep_send_error(struct imsgbuf *ibuf, const struct got_error *err)
155 2178c42e 2018-04-22 stsp {
156 2178c42e 2018-04-22 stsp const struct got_error *poll_err;
157 2178c42e 2018-04-22 stsp struct got_imsg_error ierr;
158 2178c42e 2018-04-22 stsp int ret;
159 2178c42e 2018-04-22 stsp
160 2178c42e 2018-04-22 stsp ierr.code = err->code;
161 2178c42e 2018-04-22 stsp if (err->code == GOT_ERR_ERRNO)
162 2178c42e 2018-04-22 stsp ierr.errno_code = errno;
163 2178c42e 2018-04-22 stsp else
164 2178c42e 2018-04-22 stsp ierr.errno_code = 0;
165 2178c42e 2018-04-22 stsp ret = imsg_compose(ibuf, GOT_IMSG_ERROR, 0, 0, -1, &ierr, sizeof(ierr));
166 e93cd828 2018-11-11 stsp if (ret == -1) {
167 2178c42e 2018-04-22 stsp fprintf(stderr, "%s: error %d \"%s\": imsg_compose: %s\n",
168 2178c42e 2018-04-22 stsp getprogname(), err->code, err->msg, strerror(errno));
169 5d43e84d 2018-04-23 stsp return;
170 2178c42e 2018-04-22 stsp }
171 2178c42e 2018-04-22 stsp
172 2178c42e 2018-04-22 stsp poll_err = poll_fd(ibuf->fd, POLLOUT, INFTIM);
173 5d43e84d 2018-04-23 stsp if (poll_err) {
174 2178c42e 2018-04-22 stsp fprintf(stderr, "%s: error %d \"%s\": poll: %s\n",
175 2178c42e 2018-04-22 stsp getprogname(), err->code, err->msg, poll_err->msg);
176 5d43e84d 2018-04-23 stsp return;
177 5d43e84d 2018-04-23 stsp }
178 2178c42e 2018-04-22 stsp
179 2178c42e 2018-04-22 stsp ret = imsg_flush(ibuf);
180 5d43e84d 2018-04-23 stsp if (ret == -1) {
181 2178c42e 2018-04-22 stsp fprintf(stderr, "%s: error %d \"%s\": imsg_flush: %s\n",
182 2178c42e 2018-04-22 stsp getprogname(), err->code, err->msg, strerror(errno));
183 5d43e84d 2018-04-23 stsp return;
184 5d43e84d 2018-04-23 stsp }
185 e033d803 2018-04-23 stsp }
186 e033d803 2018-04-23 stsp
187 e033d803 2018-04-23 stsp static const struct got_error *
188 e033d803 2018-04-23 stsp flush_imsg(struct imsgbuf *ibuf)
189 e033d803 2018-04-23 stsp {
190 e033d803 2018-04-23 stsp const struct got_error *err;
191 e033d803 2018-04-23 stsp
192 e033d803 2018-04-23 stsp err = poll_fd(ibuf->fd, POLLOUT, INFTIM);
193 e033d803 2018-04-23 stsp if (err)
194 e033d803 2018-04-23 stsp return err;
195 e033d803 2018-04-23 stsp
196 e033d803 2018-04-23 stsp if (imsg_flush(ibuf) == -1)
197 e033d803 2018-04-23 stsp return got_error_from_errno();
198 e033d803 2018-04-23 stsp
199 e033d803 2018-04-23 stsp return NULL;
200 ad242220 2018-09-08 stsp }
201 ad242220 2018-09-08 stsp
202 ad242220 2018-09-08 stsp const struct got_error *
203 ad242220 2018-09-08 stsp got_privsep_send_stop(int fd)
204 ad242220 2018-09-08 stsp {
205 ad242220 2018-09-08 stsp const struct got_error *err = NULL;
206 ad242220 2018-09-08 stsp struct imsgbuf ibuf;
207 ad242220 2018-09-08 stsp
208 ad242220 2018-09-08 stsp imsg_init(&ibuf, fd);
209 ad242220 2018-09-08 stsp
210 ad242220 2018-09-08 stsp if (imsg_compose(&ibuf, GOT_IMSG_STOP, 0, 0, -1, NULL, 0) == -1)
211 ad242220 2018-09-08 stsp return got_error_from_errno();
212 ad242220 2018-09-08 stsp
213 ad242220 2018-09-08 stsp err = flush_imsg(&ibuf);
214 ad242220 2018-09-08 stsp imsg_clear(&ibuf);
215 ad242220 2018-09-08 stsp return err;
216 7762fe12 2018-11-05 stsp }
217 7762fe12 2018-11-05 stsp
218 ad242220 2018-09-08 stsp const struct got_error *
219 ad242220 2018-09-08 stsp got_privsep_send_obj_req(struct imsgbuf *ibuf, int fd, struct got_object *obj)
220 ad242220 2018-09-08 stsp {
221 ad242220 2018-09-08 stsp struct got_imsg_object iobj, *iobjp = NULL;
222 ad242220 2018-09-08 stsp size_t iobj_size = 0;
223 ad242220 2018-09-08 stsp int imsg_code = GOT_IMSG_OBJECT_REQUEST;
224 ad242220 2018-09-08 stsp
225 ad242220 2018-09-08 stsp if (obj) {
226 ad242220 2018-09-08 stsp switch (obj->type) {
227 ad242220 2018-09-08 stsp case GOT_OBJ_TYPE_TREE:
228 ad242220 2018-09-08 stsp imsg_code = GOT_IMSG_TREE_REQUEST;
229 ad242220 2018-09-08 stsp break;
230 ad242220 2018-09-08 stsp case GOT_OBJ_TYPE_COMMIT:
231 ad242220 2018-09-08 stsp imsg_code = GOT_IMSG_COMMIT_REQUEST;
232 ad242220 2018-09-08 stsp break;
233 55da3778 2018-09-10 stsp case GOT_OBJ_TYPE_BLOB:
234 55da3778 2018-09-10 stsp imsg_code = GOT_IMSG_BLOB_REQUEST;
235 55da3778 2018-09-10 stsp break;
236 ad242220 2018-09-08 stsp default:
237 ad242220 2018-09-08 stsp return got_error(GOT_ERR_OBJ_TYPE);
238 ad242220 2018-09-08 stsp }
239 ad242220 2018-09-08 stsp
240 41fa1437 2018-11-05 stsp memcpy(iobj.id, obj->id.sha1, sizeof(iobj.id));
241 41fa1437 2018-11-05 stsp iobj.type = obj->type;
242 41fa1437 2018-11-05 stsp iobj.flags = obj->flags;
243 41fa1437 2018-11-05 stsp iobj.hdrlen = obj->hdrlen;
244 41fa1437 2018-11-05 stsp iobj.size = obj->size;
245 41fa1437 2018-11-05 stsp if (iobj.flags & GOT_OBJ_FLAG_PACKED) {
246 41fa1437 2018-11-05 stsp iobj.pack_offset = obj->pack_offset;
247 41fa1437 2018-11-05 stsp iobj.pack_idx = obj->pack_idx;
248 41fa1437 2018-11-05 stsp }
249 ad242220 2018-09-08 stsp
250 ad242220 2018-09-08 stsp iobjp = &iobj;
251 ad242220 2018-09-08 stsp iobj_size = sizeof(iobj);
252 ad242220 2018-09-08 stsp }
253 ad242220 2018-09-08 stsp
254 ad242220 2018-09-08 stsp if (imsg_compose(ibuf, imsg_code, 0, 0, fd, iobjp, iobj_size) == -1)
255 7762fe12 2018-11-05 stsp return got_error_from_errno();
256 7762fe12 2018-11-05 stsp
257 7762fe12 2018-11-05 stsp return flush_imsg(ibuf);
258 7762fe12 2018-11-05 stsp }
259 7762fe12 2018-11-05 stsp
260 7762fe12 2018-11-05 stsp const struct got_error *
261 55da3778 2018-09-10 stsp got_privsep_send_blob_req(struct imsgbuf *ibuf, int infd)
262 55da3778 2018-09-10 stsp {
263 ad242220 2018-09-08 stsp if (imsg_compose(ibuf, GOT_IMSG_BLOB_REQUEST, 0, 0, infd, NULL, 0)
264 55da3778 2018-09-10 stsp == -1)
265 ad242220 2018-09-08 stsp return got_error_from_errno();
266 ad242220 2018-09-08 stsp
267 55da3778 2018-09-10 stsp return flush_imsg(ibuf);
268 55da3778 2018-09-10 stsp }
269 ad242220 2018-09-08 stsp
270 55da3778 2018-09-10 stsp const struct got_error *
271 55da3778 2018-09-10 stsp got_privsep_send_blob_outfd(struct imsgbuf *ibuf, int outfd)
272 55da3778 2018-09-10 stsp {
273 ad242220 2018-09-08 stsp if (imsg_compose(ibuf, GOT_IMSG_BLOB_OUTFD, 0, 0, outfd, NULL, 0)
274 3840f4c9 2018-09-12 stsp == -1)
275 3840f4c9 2018-09-12 stsp return got_error_from_errno();
276 3840f4c9 2018-09-12 stsp
277 3840f4c9 2018-09-12 stsp return flush_imsg(ibuf);
278 3840f4c9 2018-09-12 stsp }
279 3840f4c9 2018-09-12 stsp
280 3840f4c9 2018-09-12 stsp const struct got_error *
281 3840f4c9 2018-09-12 stsp got_privsep_send_tmpfd(struct imsgbuf *ibuf, int fd)
282 3840f4c9 2018-09-12 stsp {
283 3840f4c9 2018-09-12 stsp if (imsg_compose(ibuf, GOT_IMSG_TMPFD, 0, 0, fd, NULL, 0)
284 55da3778 2018-09-10 stsp == -1)
285 ad242220 2018-09-08 stsp return got_error_from_errno();
286 ad242220 2018-09-08 stsp
287 ad242220 2018-09-08 stsp return flush_imsg(ibuf);
288 ad242220 2018-09-08 stsp }
289 ad242220 2018-09-08 stsp
290 ad242220 2018-09-08 stsp const struct got_error *
291 876c234b 2018-09-10 stsp got_privsep_send_obj(struct imsgbuf *ibuf, struct got_object *obj)
292 2178c42e 2018-04-22 stsp {
293 2178c42e 2018-04-22 stsp struct got_imsg_object iobj;
294 2178c42e 2018-04-22 stsp
295 c59b3346 2018-09-11 stsp memcpy(iobj.id, obj->id.sha1, sizeof(iobj.id));
296 2178c42e 2018-04-22 stsp iobj.type = obj->type;
297 2178c42e 2018-04-22 stsp iobj.flags = obj->flags;
298 2178c42e 2018-04-22 stsp iobj.hdrlen = obj->hdrlen;
299 2178c42e 2018-04-22 stsp iobj.size = obj->size;
300 c59b3346 2018-09-11 stsp if (iobj.flags & GOT_OBJ_FLAG_PACKED) {
301 876c234b 2018-09-10 stsp iobj.pack_offset = obj->pack_offset;
302 c59b3346 2018-09-11 stsp iobj.pack_idx = obj->pack_idx;
303 c59b3346 2018-09-11 stsp }
304 2178c42e 2018-04-22 stsp
305 2178c42e 2018-04-22 stsp if (imsg_compose(ibuf, GOT_IMSG_OBJECT, 0, 0, -1, &iobj, sizeof(iobj))
306 2178c42e 2018-04-22 stsp == -1)
307 2178c42e 2018-04-22 stsp return got_error_from_errno();
308 2178c42e 2018-04-22 stsp
309 c59b3346 2018-09-11 stsp return flush_imsg(ibuf);
310 cfd633c2 2018-09-10 stsp }
311 cfd633c2 2018-09-10 stsp
312 cfd633c2 2018-09-10 stsp const struct got_error *
313 cfd633c2 2018-09-10 stsp got_privsep_get_imsg_obj(struct got_object **obj, struct imsg *imsg,
314 cfd633c2 2018-09-10 stsp struct imsgbuf *ibuf)
315 cfd633c2 2018-09-10 stsp {
316 cfd633c2 2018-09-10 stsp const struct got_error *err = NULL;
317 291624d8 2018-11-07 stsp struct got_imsg_object *iobj;
318 cfd633c2 2018-09-10 stsp size_t datalen = imsg->hdr.len - IMSG_HEADER_SIZE;
319 cfd633c2 2018-09-10 stsp
320 291624d8 2018-11-07 stsp if (datalen != sizeof(*iobj))
321 cfd633c2 2018-09-10 stsp return got_error(GOT_ERR_PRIVSEP_LEN);
322 291624d8 2018-11-07 stsp iobj = imsg->data;
323 cfd633c2 2018-09-10 stsp
324 cfd633c2 2018-09-10 stsp *obj = calloc(1, sizeof(**obj));
325 cfd633c2 2018-09-10 stsp if (*obj == NULL)
326 cfd633c2 2018-09-10 stsp return got_error_from_errno();
327 cfd633c2 2018-09-10 stsp
328 291624d8 2018-11-07 stsp memcpy((*obj)->id.sha1, iobj->id, SHA1_DIGEST_LENGTH);
329 291624d8 2018-11-07 stsp (*obj)->type = iobj->type;
330 291624d8 2018-11-07 stsp (*obj)->flags = iobj->flags;
331 291624d8 2018-11-07 stsp (*obj)->hdrlen = iobj->hdrlen;
332 291624d8 2018-11-07 stsp (*obj)->size = iobj->size;
333 c59b3346 2018-09-11 stsp /* path_packfile is handled by caller */
334 291624d8 2018-11-07 stsp if (iobj->flags & GOT_OBJ_FLAG_PACKED) {
335 291624d8 2018-11-07 stsp (*obj)->pack_offset = iobj->pack_offset;
336 291624d8 2018-11-07 stsp (*obj)->pack_idx = iobj->pack_idx;
337 876c234b 2018-09-10 stsp }
338 876c234b 2018-09-10 stsp
339 876c234b 2018-09-10 stsp return err;
340 876c234b 2018-09-10 stsp }
341 876c234b 2018-09-10 stsp
342 2178c42e 2018-04-22 stsp const struct got_error *
343 2178c42e 2018-04-22 stsp got_privsep_recv_obj(struct got_object **obj, struct imsgbuf *ibuf)
344 2178c42e 2018-04-22 stsp {
345 2178c42e 2018-04-22 stsp const struct got_error *err = NULL;
346 2178c42e 2018-04-22 stsp struct imsg imsg;
347 2178c42e 2018-04-22 stsp size_t datalen;
348 c4eae628 2018-04-23 stsp const size_t min_datalen =
349 c4eae628 2018-04-23 stsp MIN(sizeof(struct got_imsg_error), sizeof(struct got_imsg_object));
350 2178c42e 2018-04-22 stsp
351 2178c42e 2018-04-22 stsp *obj = NULL;
352 2178c42e 2018-04-22 stsp
353 ad242220 2018-09-08 stsp err = got_privsep_recv_imsg(&imsg, ibuf, min_datalen);
354 2178c42e 2018-04-22 stsp if (err)
355 2178c42e 2018-04-22 stsp return err;
356 2178c42e 2018-04-22 stsp
357 2178c42e 2018-04-22 stsp datalen = imsg.hdr.len - IMSG_HEADER_SIZE;
358 2178c42e 2018-04-22 stsp
359 2178c42e 2018-04-22 stsp switch (imsg.hdr.type) {
360 2178c42e 2018-04-22 stsp case GOT_IMSG_ERROR:
361 c4eae628 2018-04-23 stsp err = recv_imsg_error(&imsg, datalen);
362 2178c42e 2018-04-22 stsp break;
363 2178c42e 2018-04-22 stsp case GOT_IMSG_OBJECT:
364 cfd633c2 2018-09-10 stsp err = got_privsep_get_imsg_obj(obj, &imsg, ibuf);
365 bff6ca00 2018-04-23 stsp break;
366 bff6ca00 2018-04-23 stsp default:
367 bff6ca00 2018-04-23 stsp err = got_error(GOT_ERR_PRIVSEP_MSG);
368 bff6ca00 2018-04-23 stsp break;
369 bff6ca00 2018-04-23 stsp }
370 bff6ca00 2018-04-23 stsp
371 bff6ca00 2018-04-23 stsp imsg_free(&imsg);
372 bff6ca00 2018-04-23 stsp
373 bff6ca00 2018-04-23 stsp return err;
374 c75f7264 2018-09-11 stsp }
375 c75f7264 2018-09-11 stsp
376 c75f7264 2018-09-11 stsp static const struct got_error *
377 c75f7264 2018-09-11 stsp send_commit_logmsg(struct imsgbuf *ibuf, struct got_commit_object *commit,
378 c75f7264 2018-09-11 stsp size_t logmsg_len)
379 c75f7264 2018-09-11 stsp {
380 fa4ffeb3 2018-11-04 stsp const struct got_error *err = NULL;
381 c75f7264 2018-09-11 stsp size_t offset, remain;
382 c75f7264 2018-09-11 stsp
383 c75f7264 2018-09-11 stsp offset = 0;
384 c75f7264 2018-09-11 stsp remain = logmsg_len;
385 c75f7264 2018-09-11 stsp while (remain > 0) {
386 c75f7264 2018-09-11 stsp size_t n = MIN(MAX_IMSGSIZE - IMSG_HEADER_SIZE, remain);
387 c75f7264 2018-09-11 stsp
388 c75f7264 2018-09-11 stsp if (imsg_compose(ibuf, GOT_IMSG_COMMIT_LOGMSG, 0, 0, -1,
389 fa4ffeb3 2018-11-04 stsp commit->logmsg + offset, n) == -1) {
390 fa4ffeb3 2018-11-04 stsp err = got_error_from_errno();
391 fa4ffeb3 2018-11-04 stsp break;
392 fa4ffeb3 2018-11-04 stsp }
393 c75f7264 2018-09-11 stsp
394 fa4ffeb3 2018-11-04 stsp err = flush_imsg(ibuf);
395 fa4ffeb3 2018-11-04 stsp if (err)
396 fa4ffeb3 2018-11-04 stsp break;
397 c75f7264 2018-09-11 stsp
398 c75f7264 2018-09-11 stsp offset += n;
399 c75f7264 2018-09-11 stsp remain -= n;
400 c75f7264 2018-09-11 stsp }
401 c75f7264 2018-09-11 stsp
402 fa4ffeb3 2018-11-04 stsp return err;
403 bff6ca00 2018-04-23 stsp }
404 bff6ca00 2018-04-23 stsp
405 bff6ca00 2018-04-23 stsp const struct got_error *
406 068fd2bf 2018-04-24 stsp got_privsep_send_commit(struct imsgbuf *ibuf, struct got_commit_object *commit)
407 bff6ca00 2018-04-23 stsp {
408 bff6ca00 2018-04-23 stsp const struct got_error *err = NULL;
409 b9c33926 2018-11-07 stsp struct got_imsg_commit_object *icommit;
410 bff6ca00 2018-04-23 stsp uint8_t *buf;
411 bff6ca00 2018-04-23 stsp size_t len, total;
412 79f35eb3 2018-06-11 stsp struct got_object_qid *qid;
413 b9c33926 2018-11-07 stsp size_t author_len = strlen(commit->author);
414 b9c33926 2018-11-07 stsp size_t committer_len = strlen(commit->committer);
415 c75f7264 2018-09-11 stsp size_t logmsg_len = strlen(commit->logmsg);
416 bff6ca00 2018-04-23 stsp
417 b9c33926 2018-11-07 stsp total = sizeof(*icommit) + author_len + committer_len +
418 b9c33926 2018-11-07 stsp commit->nparents * SHA1_DIGEST_LENGTH;
419 bff6ca00 2018-04-23 stsp
420 bff6ca00 2018-04-23 stsp buf = malloc(total);
421 bff6ca00 2018-04-23 stsp if (buf == NULL)
422 bff6ca00 2018-04-23 stsp return got_error_from_errno();
423 bff6ca00 2018-04-23 stsp
424 b9c33926 2018-11-07 stsp icommit = (struct got_imsg_commit_object *)buf;
425 b9c33926 2018-11-07 stsp memcpy(icommit->tree_id, commit->tree_id->sha1, sizeof(icommit->tree_id));
426 b9c33926 2018-11-07 stsp icommit->author_len = author_len;
427 b9c33926 2018-11-07 stsp icommit->author_time = commit->author_time;
428 b9c33926 2018-11-07 stsp icommit->author_gmtoff = commit->author_gmtoff;
429 b9c33926 2018-11-07 stsp icommit->committer_len = committer_len;
430 b9c33926 2018-11-07 stsp icommit->committer_time = commit->committer_time;
431 b9c33926 2018-11-07 stsp icommit->committer_gmtoff = commit->committer_gmtoff;
432 b9c33926 2018-11-07 stsp icommit->logmsg_len = logmsg_len;
433 b9c33926 2018-11-07 stsp icommit->nparents = commit->nparents;
434 b9c33926 2018-11-07 stsp
435 b9c33926 2018-11-07 stsp len = sizeof(*icommit);
436 b9c33926 2018-11-07 stsp memcpy(buf + len, commit->author, author_len);
437 b9c33926 2018-11-07 stsp len += author_len;
438 b9c33926 2018-11-07 stsp memcpy(buf + len, commit->committer, committer_len);
439 b9c33926 2018-11-07 stsp len += committer_len;
440 79f35eb3 2018-06-11 stsp SIMPLEQ_FOREACH(qid, &commit->parent_ids, entry) {
441 79f35eb3 2018-06-11 stsp memcpy(buf + len, qid->id, SHA1_DIGEST_LENGTH);
442 86acc566 2018-04-23 stsp len += SHA1_DIGEST_LENGTH;
443 bff6ca00 2018-04-23 stsp }
444 bff6ca00 2018-04-23 stsp
445 bff6ca00 2018-04-23 stsp if (imsg_compose(ibuf, GOT_IMSG_COMMIT, 0, 0, -1, buf, len) == -1) {
446 bff6ca00 2018-04-23 stsp err = got_error_from_errno();
447 bff6ca00 2018-04-23 stsp goto done;
448 bff6ca00 2018-04-23 stsp }
449 bff6ca00 2018-04-23 stsp
450 904df868 2018-11-04 stsp if (logmsg_len == 0 ||
451 904df868 2018-11-04 stsp logmsg_len + len > MAX_IMSGSIZE - IMSG_HEADER_SIZE) {
452 904df868 2018-11-04 stsp err = flush_imsg(ibuf);
453 904df868 2018-11-04 stsp if (err)
454 904df868 2018-11-04 stsp goto done;
455 904df868 2018-11-04 stsp }
456 c75f7264 2018-09-11 stsp err = send_commit_logmsg(ibuf, commit, logmsg_len);
457 bff6ca00 2018-04-23 stsp done:
458 bff6ca00 2018-04-23 stsp free(buf);
459 bff6ca00 2018-04-23 stsp return err;
460 bff6ca00 2018-04-23 stsp }
461 cfd633c2 2018-09-10 stsp
462 bff6ca00 2018-04-23 stsp const struct got_error *
463 068fd2bf 2018-04-24 stsp got_privsep_recv_commit(struct got_commit_object **commit, struct imsgbuf *ibuf)
464 bff6ca00 2018-04-23 stsp {
465 bff6ca00 2018-04-23 stsp const struct got_error *err = NULL;
466 bff6ca00 2018-04-23 stsp struct imsg imsg;
467 291624d8 2018-11-07 stsp struct got_imsg_commit_object *icommit;
468 bff6ca00 2018-04-23 stsp size_t len, datalen;
469 bff6ca00 2018-04-23 stsp int i;
470 bff6ca00 2018-04-23 stsp const size_t min_datalen =
471 bff6ca00 2018-04-23 stsp MIN(sizeof(struct got_imsg_error),
472 bff6ca00 2018-04-23 stsp sizeof(struct got_imsg_commit_object));
473 bff6ca00 2018-04-23 stsp
474 bff6ca00 2018-04-23 stsp *commit = NULL;
475 bff6ca00 2018-04-23 stsp
476 ad242220 2018-09-08 stsp err = got_privsep_recv_imsg(&imsg, ibuf, min_datalen);
477 bff6ca00 2018-04-23 stsp if (err)
478 bff6ca00 2018-04-23 stsp return err;
479 bff6ca00 2018-04-23 stsp
480 bff6ca00 2018-04-23 stsp datalen = imsg.hdr.len - IMSG_HEADER_SIZE;
481 bff6ca00 2018-04-23 stsp len = 0;
482 bff6ca00 2018-04-23 stsp
483 bff6ca00 2018-04-23 stsp switch (imsg.hdr.type) {
484 bff6ca00 2018-04-23 stsp case GOT_IMSG_ERROR:
485 bff6ca00 2018-04-23 stsp err = recv_imsg_error(&imsg, datalen);
486 bff6ca00 2018-04-23 stsp break;
487 bff6ca00 2018-04-23 stsp case GOT_IMSG_COMMIT:
488 291624d8 2018-11-07 stsp if (datalen < sizeof(*icommit)) {
489 bff6ca00 2018-04-23 stsp err = got_error(GOT_ERR_PRIVSEP_LEN);
490 bff6ca00 2018-04-23 stsp break;
491 2178c42e 2018-04-22 stsp }
492 291624d8 2018-11-07 stsp icommit = imsg.data;
493 291624d8 2018-11-07 stsp if (datalen != sizeof(*icommit) + icommit->author_len +
494 291624d8 2018-11-07 stsp icommit->committer_len +
495 291624d8 2018-11-07 stsp icommit->nparents * SHA1_DIGEST_LENGTH) {
496 bff6ca00 2018-04-23 stsp err = got_error(GOT_ERR_PRIVSEP_LEN);
497 bff6ca00 2018-04-23 stsp break;
498 bff6ca00 2018-04-23 stsp }
499 291624d8 2018-11-07 stsp if (icommit->nparents < 0) {
500 bff6ca00 2018-04-23 stsp err = got_error(GOT_ERR_PRIVSEP_LEN);
501 bff6ca00 2018-04-23 stsp break;
502 bff6ca00 2018-04-23 stsp }
503 291624d8 2018-11-07 stsp len += sizeof(*icommit);
504 bff6ca00 2018-04-23 stsp
505 bff6ca00 2018-04-23 stsp *commit = got_object_commit_alloc_partial();
506 bff6ca00 2018-04-23 stsp if (*commit == NULL) {
507 bff6ca00 2018-04-23 stsp err = got_error_from_errno();
508 bff6ca00 2018-04-23 stsp break;
509 bff6ca00 2018-04-23 stsp }
510 bff6ca00 2018-04-23 stsp
511 291624d8 2018-11-07 stsp memcpy((*commit)->tree_id->sha1, icommit->tree_id,
512 86acc566 2018-04-23 stsp SHA1_DIGEST_LENGTH);
513 291624d8 2018-11-07 stsp (*commit)->author_time = icommit->author_time;
514 291624d8 2018-11-07 stsp (*commit)->author_gmtoff = icommit->author_gmtoff;
515 291624d8 2018-11-07 stsp (*commit)->committer_time = icommit->committer_time;
516 291624d8 2018-11-07 stsp (*commit)->committer_gmtoff = icommit->committer_gmtoff;
517 bff6ca00 2018-04-23 stsp
518 291624d8 2018-11-07 stsp if (icommit->author_len == 0) {
519 bff6ca00 2018-04-23 stsp (*commit)->author = strdup("");
520 bff6ca00 2018-04-23 stsp if ((*commit)->author == NULL) {
521 bff6ca00 2018-04-23 stsp err = got_error_from_errno();
522 bff6ca00 2018-04-23 stsp break;
523 bff6ca00 2018-04-23 stsp }
524 bff6ca00 2018-04-23 stsp } else {
525 291624d8 2018-11-07 stsp (*commit)->author = malloc(icommit->author_len + 1);
526 bff6ca00 2018-04-23 stsp if ((*commit)->author == NULL) {
527 bff6ca00 2018-04-23 stsp err = got_error_from_errno();
528 bff6ca00 2018-04-23 stsp break;
529 bff6ca00 2018-04-23 stsp }
530 291624d8 2018-11-07 stsp memcpy((*commit)->author, imsg.data + len,
531 291624d8 2018-11-07 stsp icommit->author_len);
532 291624d8 2018-11-07 stsp (*commit)->author[icommit->author_len] = '\0';
533 bff6ca00 2018-04-23 stsp }
534 291624d8 2018-11-07 stsp len += icommit->author_len;
535 6c281f94 2018-06-11 stsp
536 291624d8 2018-11-07 stsp if (icommit->committer_len == 0) {
537 bff6ca00 2018-04-23 stsp (*commit)->committer = strdup("");
538 bff6ca00 2018-04-23 stsp if ((*commit)->committer == NULL) {
539 bff6ca00 2018-04-23 stsp err = got_error_from_errno();
540 bff6ca00 2018-04-23 stsp break;
541 bff6ca00 2018-04-23 stsp }
542 bff6ca00 2018-04-23 stsp } else {
543 bff6ca00 2018-04-23 stsp (*commit)->committer =
544 291624d8 2018-11-07 stsp malloc(icommit->committer_len + 1);
545 bff6ca00 2018-04-23 stsp if ((*commit)->committer == NULL) {
546 bff6ca00 2018-04-23 stsp err = got_error_from_errno();
547 bff6ca00 2018-04-23 stsp break;
548 bff6ca00 2018-04-23 stsp }
549 291624d8 2018-11-07 stsp memcpy((*commit)->committer, imsg.data + len,
550 291624d8 2018-11-07 stsp icommit->committer_len);
551 291624d8 2018-11-07 stsp (*commit)->committer[icommit->committer_len] = '\0';
552 bff6ca00 2018-04-23 stsp }
553 291624d8 2018-11-07 stsp len += icommit->committer_len;
554 bff6ca00 2018-04-23 stsp
555 291624d8 2018-11-07 stsp if (icommit->logmsg_len == 0) {
556 bff6ca00 2018-04-23 stsp (*commit)->logmsg = strdup("");
557 bff6ca00 2018-04-23 stsp if ((*commit)->logmsg == NULL) {
558 bff6ca00 2018-04-23 stsp err = got_error_from_errno();
559 bff6ca00 2018-04-23 stsp break;
560 bff6ca00 2018-04-23 stsp }
561 bff6ca00 2018-04-23 stsp } else {
562 291624d8 2018-11-07 stsp size_t offset = 0, remain = icommit->logmsg_len;
563 c75f7264 2018-09-11 stsp
564 291624d8 2018-11-07 stsp (*commit)->logmsg = malloc(icommit->logmsg_len + 1);
565 bff6ca00 2018-04-23 stsp if ((*commit)->logmsg == NULL) {
566 bff6ca00 2018-04-23 stsp err = got_error_from_errno();
567 bff6ca00 2018-04-23 stsp break;
568 bff6ca00 2018-04-23 stsp }
569 c75f7264 2018-09-11 stsp while (remain > 0) {
570 c75f7264 2018-09-11 stsp struct imsg imsg_log;
571 c75f7264 2018-09-11 stsp size_t n = MIN(MAX_IMSGSIZE - IMSG_HEADER_SIZE,
572 c75f7264 2018-09-11 stsp remain);
573 c75f7264 2018-09-11 stsp
574 c75f7264 2018-09-11 stsp err = got_privsep_recv_imsg(&imsg_log, ibuf, n);
575 c75f7264 2018-09-11 stsp if (err)
576 c75f7264 2018-09-11 stsp return err;
577 c75f7264 2018-09-11 stsp
578 c75f7264 2018-09-11 stsp if (imsg_log.hdr.type != GOT_IMSG_COMMIT_LOGMSG)
579 c75f7264 2018-09-11 stsp return got_error(GOT_ERR_PRIVSEP_MSG);
580 c75f7264 2018-09-11 stsp
581 c75f7264 2018-09-11 stsp memcpy((*commit)->logmsg + offset,
582 c75f7264 2018-09-11 stsp imsg_log.data, n);
583 c75f7264 2018-09-11 stsp imsg_free(&imsg_log);
584 c75f7264 2018-09-11 stsp offset += n;
585 c75f7264 2018-09-11 stsp remain -= n;
586 c75f7264 2018-09-11 stsp }
587 291624d8 2018-11-07 stsp (*commit)->logmsg[icommit->logmsg_len] = '\0';
588 bff6ca00 2018-04-23 stsp }
589 bff6ca00 2018-04-23 stsp
590 291624d8 2018-11-07 stsp for (i = 0; i < icommit->nparents; i++) {
591 79f35eb3 2018-06-11 stsp struct got_object_qid *qid;
592 86acc566 2018-04-23 stsp
593 5df4932d 2018-11-05 stsp err = got_object_qid_alloc_partial(&qid);
594 5df4932d 2018-11-05 stsp if (err)
595 41fa1437 2018-11-05 stsp break;
596 291624d8 2018-11-07 stsp memcpy(qid->id, imsg.data + len +
597 291624d8 2018-11-07 stsp i * SHA1_DIGEST_LENGTH, sizeof(*qid->id));
598 7762fe12 2018-11-05 stsp SIMPLEQ_INSERT_TAIL(&(*commit)->parent_ids, qid, entry);
599 7762fe12 2018-11-05 stsp (*commit)->nparents++;
600 7762fe12 2018-11-05 stsp }
601 2178c42e 2018-04-22 stsp break;
602 8c580685 2018-04-22 stsp default:
603 8c580685 2018-04-22 stsp err = got_error(GOT_ERR_PRIVSEP_MSG);
604 8c580685 2018-04-22 stsp break;
605 2178c42e 2018-04-22 stsp }
606 2178c42e 2018-04-22 stsp
607 2178c42e 2018-04-22 stsp imsg_free(&imsg);
608 e033d803 2018-04-23 stsp
609 e033d803 2018-04-23 stsp return err;
610 e033d803 2018-04-23 stsp }
611 e033d803 2018-04-23 stsp
612 e033d803 2018-04-23 stsp const struct got_error *
613 068fd2bf 2018-04-24 stsp got_privsep_send_tree(struct imsgbuf *ibuf, struct got_tree_object *tree)
614 e033d803 2018-04-23 stsp {
615 e033d803 2018-04-23 stsp const struct got_error *err = NULL;
616 e033d803 2018-04-23 stsp struct got_imsg_tree_object itree;
617 e033d803 2018-04-23 stsp struct got_tree_entry *te;
618 b00c9821 2018-11-04 stsp size_t totlen;
619 6eb07a17 2018-11-04 stsp int nimsg; /* number of imsg queued in ibuf */
620 e033d803 2018-04-23 stsp
621 883f0469 2018-06-23 stsp itree.nentries = tree->entries.nentries;
622 e033d803 2018-04-23 stsp if (imsg_compose(ibuf, GOT_IMSG_TREE, 0, 0, -1, &itree, sizeof(itree))
623 e033d803 2018-04-23 stsp == -1)
624 e033d803 2018-04-23 stsp return got_error_from_errno();
625 e033d803 2018-04-23 stsp
626 b00c9821 2018-11-04 stsp totlen = sizeof(itree);
627 6eb07a17 2018-11-04 stsp nimsg = 1;
628 883f0469 2018-06-23 stsp SIMPLEQ_FOREACH(te, &tree->entries.head, entry) {
629 a58a49db 2018-11-07 stsp struct got_imsg_tree_entry *ite;
630 e033d803 2018-04-23 stsp uint8_t *buf = NULL;
631 a58a49db 2018-11-07 stsp size_t len = sizeof(*ite) + strlen(te->name);
632 e033d803 2018-04-23 stsp
633 e033d803 2018-04-23 stsp if (len > MAX_IMSGSIZE)
634 e033d803 2018-04-23 stsp return got_error(GOT_ERR_NO_SPACE);
635 e033d803 2018-04-23 stsp
636 6eb07a17 2018-11-04 stsp nimsg++;
637 6eb07a17 2018-11-04 stsp if (totlen + len >= MAX_IMSGSIZE - (IMSG_HEADER_SIZE * nimsg)) {
638 b00c9821 2018-11-04 stsp err = flush_imsg(ibuf);
639 b00c9821 2018-11-04 stsp if (err)
640 b00c9821 2018-11-04 stsp return err;
641 6eb07a17 2018-11-04 stsp nimsg = 0;
642 b00c9821 2018-11-04 stsp }
643 b00c9821 2018-11-04 stsp
644 e033d803 2018-04-23 stsp buf = malloc(len);
645 e033d803 2018-04-23 stsp if (buf == NULL)
646 e033d803 2018-04-23 stsp return got_error_from_errno();
647 e033d803 2018-04-23 stsp
648 a58a49db 2018-11-07 stsp ite = (struct got_imsg_tree_entry *)buf;
649 a58a49db 2018-11-07 stsp memcpy(ite->id, te->id->sha1, sizeof(ite->id));
650 a58a49db 2018-11-07 stsp ite->mode = te->mode;
651 a58a49db 2018-11-07 stsp memcpy(buf + sizeof(*ite), te->name, strlen(te->name));
652 e033d803 2018-04-23 stsp
653 e033d803 2018-04-23 stsp if (imsg_compose(ibuf, GOT_IMSG_TREE_ENTRY, 0, 0, -1,
654 e033d803 2018-04-23 stsp buf, len) == -1)
655 e033d803 2018-04-23 stsp err = got_error_from_errno();
656 e033d803 2018-04-23 stsp free(buf);
657 e033d803 2018-04-23 stsp if (err)
658 e033d803 2018-04-23 stsp return err;
659 b00c9821 2018-11-04 stsp totlen += len;
660 e033d803 2018-04-23 stsp }
661 e033d803 2018-04-23 stsp
662 b00c9821 2018-11-04 stsp return flush_imsg(ibuf);
663 e033d803 2018-04-23 stsp }
664 e033d803 2018-04-23 stsp
665 e033d803 2018-04-23 stsp const struct got_error *
666 068fd2bf 2018-04-24 stsp got_privsep_recv_tree(struct got_tree_object **tree, struct imsgbuf *ibuf)
667 e033d803 2018-04-23 stsp {
668 e033d803 2018-04-23 stsp const struct got_error *err = NULL;
669 e033d803 2018-04-23 stsp const size_t min_datalen =
670 e033d803 2018-04-23 stsp MIN(sizeof(struct got_imsg_error),
671 e033d803 2018-04-23 stsp sizeof(struct got_imsg_tree_object));
672 291624d8 2018-11-07 stsp struct got_imsg_tree_object *itree;
673 e033d803 2018-04-23 stsp int nentries = 0;
674 2178c42e 2018-04-22 stsp
675 e033d803 2018-04-23 stsp *tree = NULL;
676 e033d803 2018-04-23 stsp get_more:
677 e033d803 2018-04-23 stsp err = read_imsg(ibuf);
678 e033d803 2018-04-23 stsp if (err)
679 1e51f5b9 2018-04-23 stsp goto done;
680 e033d803 2018-04-23 stsp
681 e033d803 2018-04-23 stsp while (1) {
682 e033d803 2018-04-23 stsp struct imsg imsg;
683 e033d803 2018-04-23 stsp size_t n;
684 e033d803 2018-04-23 stsp size_t datalen;
685 c0588d8d 2018-11-07 stsp struct got_imsg_tree_entry *ite;
686 e033d803 2018-04-23 stsp struct got_tree_entry *te = NULL;
687 e033d803 2018-04-23 stsp
688 e033d803 2018-04-23 stsp n = imsg_get(ibuf, &imsg);
689 e033d803 2018-04-23 stsp if (n == 0) {
690 883f0469 2018-06-23 stsp if (*tree && (*tree)->entries.nentries != nentries)
691 e033d803 2018-04-23 stsp goto get_more;
692 e033d803 2018-04-23 stsp break;
693 e033d803 2018-04-23 stsp }
694 e033d803 2018-04-23 stsp
695 e033d803 2018-04-23 stsp if (imsg.hdr.len < IMSG_HEADER_SIZE + min_datalen)
696 e033d803 2018-04-23 stsp return got_error(GOT_ERR_PRIVSEP_LEN);
697 e033d803 2018-04-23 stsp
698 e033d803 2018-04-23 stsp datalen = imsg.hdr.len - IMSG_HEADER_SIZE;
699 e033d803 2018-04-23 stsp
700 e033d803 2018-04-23 stsp switch (imsg.hdr.type) {
701 e033d803 2018-04-23 stsp case GOT_IMSG_ERROR:
702 e033d803 2018-04-23 stsp err = recv_imsg_error(&imsg, datalen);
703 e033d803 2018-04-23 stsp break;
704 e033d803 2018-04-23 stsp case GOT_IMSG_TREE:
705 e033d803 2018-04-23 stsp /* This message should only appear once. */
706 e033d803 2018-04-23 stsp if (*tree != NULL) {
707 e033d803 2018-04-23 stsp err = got_error(GOT_ERR_PRIVSEP_MSG);
708 e033d803 2018-04-23 stsp break;
709 e033d803 2018-04-23 stsp }
710 291624d8 2018-11-07 stsp if (datalen != sizeof(*itree)) {
711 e033d803 2018-04-23 stsp err = got_error(GOT_ERR_PRIVSEP_LEN);
712 e033d803 2018-04-23 stsp break;
713 e033d803 2018-04-23 stsp }
714 291624d8 2018-11-07 stsp itree = imsg.data;
715 c3b78ecc 2018-11-07 stsp *tree = malloc(sizeof(**tree));
716 e033d803 2018-04-23 stsp if (*tree == NULL) {
717 e033d803 2018-04-23 stsp err = got_error_from_errno();
718 e033d803 2018-04-23 stsp break;
719 e033d803 2018-04-23 stsp }
720 291624d8 2018-11-07 stsp (*tree)->entries.nentries = itree->nentries;
721 883f0469 2018-06-23 stsp SIMPLEQ_INIT(&(*tree)->entries.head);
722 c3b78ecc 2018-11-07 stsp (*tree)->refcnt = 0;
723 e033d803 2018-04-23 stsp break;
724 e033d803 2018-04-23 stsp case GOT_IMSG_TREE_ENTRY:
725 e033d803 2018-04-23 stsp /* This message should be preceeded by GOT_IMSG_TREE. */
726 e033d803 2018-04-23 stsp if (*tree == NULL) {
727 e033d803 2018-04-23 stsp err = got_error(GOT_ERR_PRIVSEP_MSG);
728 e033d803 2018-04-23 stsp break;
729 e033d803 2018-04-23 stsp }
730 c0588d8d 2018-11-07 stsp if (datalen < sizeof(*ite) || datalen > MAX_IMSGSIZE) {
731 e033d803 2018-04-23 stsp err = got_error(GOT_ERR_PRIVSEP_LEN);
732 e033d803 2018-04-23 stsp break;
733 e033d803 2018-04-23 stsp }
734 e033d803 2018-04-23 stsp
735 e033d803 2018-04-23 stsp /* Remaining data contains the entry's name. */
736 c0588d8d 2018-11-07 stsp datalen -= sizeof(*ite);
737 e033d803 2018-04-23 stsp if (datalen == 0 || datalen > MAX_IMSGSIZE) {
738 e033d803 2018-04-23 stsp err = got_error(GOT_ERR_PRIVSEP_LEN);
739 e033d803 2018-04-23 stsp break;
740 e033d803 2018-04-23 stsp }
741 c0588d8d 2018-11-07 stsp ite = imsg.data;
742 052d4dc3 2018-04-23 stsp
743 e033d803 2018-04-23 stsp te = got_alloc_tree_entry_partial();
744 e033d803 2018-04-23 stsp if (te == NULL) {
745 e033d803 2018-04-23 stsp err = got_error_from_errno();
746 e033d803 2018-04-23 stsp break;
747 e033d803 2018-04-23 stsp }
748 e033d803 2018-04-23 stsp te->name = malloc(datalen + 1);
749 e033d803 2018-04-23 stsp if (te->name == NULL) {
750 e033d803 2018-04-23 stsp free(te);
751 e033d803 2018-04-23 stsp err = got_error_from_errno();
752 e033d803 2018-04-23 stsp break;
753 e033d803 2018-04-23 stsp }
754 c0588d8d 2018-11-07 stsp memcpy(te->name, imsg.data + sizeof(*ite), datalen);
755 e033d803 2018-04-23 stsp te->name[datalen] = '\0';
756 e033d803 2018-04-23 stsp
757 c0588d8d 2018-11-07 stsp memcpy(te->id->sha1, ite->id, SHA1_DIGEST_LENGTH);
758 c0588d8d 2018-11-07 stsp te->mode = ite->mode;
759 883f0469 2018-06-23 stsp SIMPLEQ_INSERT_TAIL(&(*tree)->entries.head, te, entry);
760 e033d803 2018-04-23 stsp nentries++;
761 e033d803 2018-04-23 stsp break;
762 e033d803 2018-04-23 stsp default:
763 e033d803 2018-04-23 stsp err = got_error(GOT_ERR_PRIVSEP_MSG);
764 e033d803 2018-04-23 stsp break;
765 e033d803 2018-04-23 stsp }
766 e033d803 2018-04-23 stsp
767 e033d803 2018-04-23 stsp imsg_free(&imsg);
768 e033d803 2018-04-23 stsp }
769 1e51f5b9 2018-04-23 stsp done:
770 883f0469 2018-06-23 stsp if (*tree && (*tree)->entries.nentries != nentries) {
771 1e51f5b9 2018-04-23 stsp if (err == NULL)
772 1e51f5b9 2018-04-23 stsp err = got_error(GOT_ERR_PRIVSEP_LEN);
773 e033d803 2018-04-23 stsp got_object_tree_close(*tree);
774 e033d803 2018-04-23 stsp *tree = NULL;
775 ff6b18f8 2018-04-24 stsp }
776 ff6b18f8 2018-04-24 stsp
777 ff6b18f8 2018-04-24 stsp return err;
778 ff6b18f8 2018-04-24 stsp }
779 ff6b18f8 2018-04-24 stsp
780 ff6b18f8 2018-04-24 stsp const struct got_error *
781 2967a784 2018-04-24 stsp got_privsep_send_blob(struct imsgbuf *ibuf, size_t size)
782 ff6b18f8 2018-04-24 stsp {
783 2967a784 2018-04-24 stsp struct got_imsg_blob iblob;
784 2967a784 2018-04-24 stsp
785 2967a784 2018-04-24 stsp iblob.size = size;
786 ff6b18f8 2018-04-24 stsp /* Data has already been written to file descriptor. */
787 2967a784 2018-04-24 stsp
788 2967a784 2018-04-24 stsp if (imsg_compose(ibuf, GOT_IMSG_BLOB, 0, 0, -1, &iblob, sizeof(iblob))
789 2967a784 2018-04-24 stsp == -1)
790 ff6b18f8 2018-04-24 stsp return got_error_from_errno();
791 ff6b18f8 2018-04-24 stsp
792 ff6b18f8 2018-04-24 stsp return flush_imsg(ibuf);
793 ff6b18f8 2018-04-24 stsp }
794 ff6b18f8 2018-04-24 stsp
795 ff6b18f8 2018-04-24 stsp const struct got_error *
796 2967a784 2018-04-24 stsp got_privsep_recv_blob(size_t *size, struct imsgbuf *ibuf)
797 ff6b18f8 2018-04-24 stsp {
798 ff6b18f8 2018-04-24 stsp const struct got_error *err = NULL;
799 ff6b18f8 2018-04-24 stsp struct imsg imsg;
800 291624d8 2018-11-07 stsp struct got_imsg_blob *iblob;
801 ff6b18f8 2018-04-24 stsp size_t datalen;
802 ff6b18f8 2018-04-24 stsp
803 ad242220 2018-09-08 stsp err = got_privsep_recv_imsg(&imsg, ibuf, 0);
804 ff6b18f8 2018-04-24 stsp if (err)
805 ff6b18f8 2018-04-24 stsp return err;
806 ff6b18f8 2018-04-24 stsp
807 ff6b18f8 2018-04-24 stsp datalen = imsg.hdr.len - IMSG_HEADER_SIZE;
808 ff6b18f8 2018-04-24 stsp
809 ff6b18f8 2018-04-24 stsp switch (imsg.hdr.type) {
810 ff6b18f8 2018-04-24 stsp case GOT_IMSG_ERROR:
811 ff6b18f8 2018-04-24 stsp err = recv_imsg_error(&imsg, datalen);
812 ff6b18f8 2018-04-24 stsp break;
813 ff6b18f8 2018-04-24 stsp case GOT_IMSG_BLOB:
814 291624d8 2018-11-07 stsp if (datalen != sizeof(*iblob)) {
815 ff6b18f8 2018-04-24 stsp err = got_error(GOT_ERR_PRIVSEP_LEN);
816 18336eed 2018-11-04 stsp break;
817 18336eed 2018-11-04 stsp }
818 291624d8 2018-11-07 stsp iblob = imsg.data;
819 291624d8 2018-11-07 stsp *size = iblob->size;
820 ff6b18f8 2018-04-24 stsp /* Data has been written to file descriptor. */
821 ff6b18f8 2018-04-24 stsp break;
822 ff6b18f8 2018-04-24 stsp default:
823 ff6b18f8 2018-04-24 stsp err = got_error(GOT_ERR_PRIVSEP_MSG);
824 ff6b18f8 2018-04-24 stsp break;
825 e033d803 2018-04-23 stsp }
826 e033d803 2018-04-23 stsp
827 ff6b18f8 2018-04-24 stsp imsg_free(&imsg);
828 ff6b18f8 2018-04-24 stsp
829 2178c42e 2018-04-22 stsp return err;
830 2178c42e 2018-04-22 stsp }
831 876c234b 2018-09-10 stsp
832 876c234b 2018-09-10 stsp const struct got_error *
833 876c234b 2018-09-10 stsp got_privsep_init_pack_child(struct imsgbuf *ibuf, struct got_pack *pack,
834 876c234b 2018-09-10 stsp struct got_packidx *packidx)
835 876c234b 2018-09-10 stsp {
836 876c234b 2018-09-10 stsp struct got_imsg_packidx ipackidx;
837 876c234b 2018-09-10 stsp struct got_imsg_pack ipack;
838 876c234b 2018-09-10 stsp int fd;
839 876c234b 2018-09-10 stsp
840 876c234b 2018-09-10 stsp ipackidx.len = packidx->len;
841 876c234b 2018-09-10 stsp fd = dup(packidx->fd);
842 876c234b 2018-09-10 stsp if (fd == -1)
843 876c234b 2018-09-10 stsp return got_error_from_errno();
844 876c234b 2018-09-10 stsp
845 876c234b 2018-09-10 stsp if (imsg_compose(ibuf, GOT_IMSG_PACKIDX, 0, 0, fd, &ipackidx,
846 876c234b 2018-09-10 stsp sizeof(ipackidx)) == -1)
847 876c234b 2018-09-10 stsp return got_error_from_errno();
848 876c234b 2018-09-10 stsp
849 876c234b 2018-09-10 stsp if (strlcpy(ipack.path_packfile, pack->path_packfile,
850 876c234b 2018-09-10 stsp sizeof(ipack.path_packfile)) >= sizeof(ipack.path_packfile))
851 876c234b 2018-09-10 stsp return got_error(GOT_ERR_NO_SPACE);
852 876c234b 2018-09-10 stsp ipack.filesize = pack->filesize;
853 876c234b 2018-09-10 stsp
854 876c234b 2018-09-10 stsp fd = dup(pack->fd);
855 876c234b 2018-09-10 stsp if (fd == -1)
856 876c234b 2018-09-10 stsp return got_error_from_errno();
857 876c234b 2018-09-10 stsp
858 876c234b 2018-09-10 stsp if (imsg_compose(ibuf, GOT_IMSG_PACK, 0, 0, fd, &ipack, sizeof(ipack))
859 876c234b 2018-09-10 stsp == -1)
860 876c234b 2018-09-10 stsp return got_error_from_errno();
861 876c234b 2018-09-10 stsp
862 876c234b 2018-09-10 stsp return flush_imsg(ibuf);
863 876c234b 2018-09-10 stsp }
864 876c234b 2018-09-10 stsp
865 876c234b 2018-09-10 stsp const struct got_error *
866 106807b4 2018-09-15 stsp got_privsep_send_packed_obj_req(struct imsgbuf *ibuf, int idx,
867 106807b4 2018-09-15 stsp struct got_object_id *id)
868 876c234b 2018-09-10 stsp {
869 876c234b 2018-09-10 stsp struct got_imsg_packed_object iobj;
870 876c234b 2018-09-10 stsp
871 876c234b 2018-09-10 stsp iobj.idx = idx;
872 106807b4 2018-09-15 stsp memcpy(iobj.id, id->sha1, sizeof(iobj.id));
873 876c234b 2018-09-10 stsp
874 876c234b 2018-09-10 stsp if (imsg_compose(ibuf, GOT_IMSG_PACKED_OBJECT_REQUEST, 0, 0, -1,
875 876c234b 2018-09-10 stsp &iobj, sizeof(iobj)) == -1)
876 876c234b 2018-09-10 stsp return got_error_from_errno();
877 876c234b 2018-09-10 stsp
878 876c234b 2018-09-10 stsp return flush_imsg(ibuf);
879 876c234b 2018-09-10 stsp }