Blame


1 2178c42e 2018-04-22 stsp /*
2 5d56da81 2019-01-13 stsp * Copyright (c) 2018, 2019 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 3022d272 2019-11-14 stsp #include "got_path.h"
37 cd95becd 2019-11-29 stsp #include "got_repository.h"
38 2178c42e 2018-04-22 stsp
39 2178c42e 2018-04-22 stsp #include "got_lib_sha1.h"
40 2178c42e 2018-04-22 stsp #include "got_lib_delta.h"
41 63581804 2018-07-09 stsp #include "got_lib_inflate.h"
42 2178c42e 2018-04-22 stsp #include "got_lib_object.h"
43 a440fac0 2018-09-06 stsp #include "got_lib_object_parse.h"
44 2178c42e 2018-04-22 stsp #include "got_lib_privsep.h"
45 876c234b 2018-09-10 stsp #include "got_lib_pack.h"
46 2178c42e 2018-04-22 stsp
47 2178c42e 2018-04-22 stsp #ifndef MIN
48 2178c42e 2018-04-22 stsp #define MIN(_a,_b) ((_a) < (_b) ? (_a) : (_b))
49 c39c25dd 2019-08-09 stsp #endif
50 c39c25dd 2019-08-09 stsp
51 c39c25dd 2019-08-09 stsp #ifndef nitems
52 c39c25dd 2019-08-09 stsp #define nitems(_a) (sizeof((_a)) / sizeof((_a)[0]))
53 2178c42e 2018-04-22 stsp #endif
54 2178c42e 2018-04-22 stsp
55 2178c42e 2018-04-22 stsp static const struct got_error *
56 2178c42e 2018-04-22 stsp poll_fd(int fd, int events, int timeout)
57 2178c42e 2018-04-22 stsp {
58 2178c42e 2018-04-22 stsp struct pollfd pfd[1];
59 2178c42e 2018-04-22 stsp int n;
60 2178c42e 2018-04-22 stsp
61 2178c42e 2018-04-22 stsp pfd[0].fd = fd;
62 2178c42e 2018-04-22 stsp pfd[0].events = events;
63 2178c42e 2018-04-22 stsp
64 2178c42e 2018-04-22 stsp n = poll(pfd, 1, timeout);
65 2178c42e 2018-04-22 stsp if (n == -1)
66 638f9024 2019-05-13 stsp return got_error_from_errno("poll");
67 2178c42e 2018-04-22 stsp if (n == 0)
68 2178c42e 2018-04-22 stsp return got_error(GOT_ERR_TIMEOUT);
69 2178c42e 2018-04-22 stsp if (pfd[0].revents & (POLLERR | POLLNVAL))
70 638f9024 2019-05-13 stsp return got_error_from_errno("poll error");
71 2178c42e 2018-04-22 stsp if (pfd[0].revents & (events | POLLHUP))
72 2178c42e 2018-04-22 stsp return NULL;
73 2178c42e 2018-04-22 stsp
74 2178c42e 2018-04-22 stsp return got_error(GOT_ERR_INTERRUPT);
75 2178c42e 2018-04-22 stsp }
76 2178c42e 2018-04-22 stsp
77 c4eae628 2018-04-23 stsp static const struct got_error *
78 e033d803 2018-04-23 stsp read_imsg(struct imsgbuf *ibuf)
79 fe36cf76 2018-04-23 stsp {
80 fe36cf76 2018-04-23 stsp const struct got_error *err;
81 e033d803 2018-04-23 stsp size_t n;
82 fe36cf76 2018-04-23 stsp
83 fe36cf76 2018-04-23 stsp err = poll_fd(ibuf->fd, POLLIN, INFTIM);
84 fe36cf76 2018-04-23 stsp if (err)
85 fe36cf76 2018-04-23 stsp return err;
86 fe36cf76 2018-04-23 stsp
87 fe36cf76 2018-04-23 stsp n = imsg_read(ibuf);
88 fe36cf76 2018-04-23 stsp if (n == -1) {
89 fe36cf76 2018-04-23 stsp if (errno == EAGAIN) /* Could be a file-descriptor leak. */
90 fe36cf76 2018-04-23 stsp return got_error(GOT_ERR_PRIVSEP_NO_FD);
91 fe36cf76 2018-04-23 stsp return got_error(GOT_ERR_PRIVSEP_READ);
92 fe36cf76 2018-04-23 stsp }
93 fe36cf76 2018-04-23 stsp if (n == 0)
94 fe36cf76 2018-04-23 stsp return got_error(GOT_ERR_PRIVSEP_PIPE);
95 fe36cf76 2018-04-23 stsp
96 e033d803 2018-04-23 stsp return NULL;
97 e033d803 2018-04-23 stsp }
98 e033d803 2018-04-23 stsp
99 ad242220 2018-09-08 stsp const struct got_error *
100 876c234b 2018-09-10 stsp got_privsep_wait_for_child(pid_t pid)
101 876c234b 2018-09-10 stsp {
102 876c234b 2018-09-10 stsp int child_status;
103 876c234b 2018-09-10 stsp
104 2cb49fa8 2019-05-10 stsp if (waitpid(pid, &child_status, 0) == -1)
105 638f9024 2019-05-13 stsp return got_error_from_errno("waitpid");
106 876c234b 2018-09-10 stsp
107 876c234b 2018-09-10 stsp if (!WIFEXITED(child_status))
108 876c234b 2018-09-10 stsp return got_error(GOT_ERR_PRIVSEP_DIED);
109 876c234b 2018-09-10 stsp
110 876c234b 2018-09-10 stsp if (WEXITSTATUS(child_status) != 0)
111 876c234b 2018-09-10 stsp return got_error(GOT_ERR_PRIVSEP_EXIT);
112 876c234b 2018-09-10 stsp
113 876c234b 2018-09-10 stsp return NULL;
114 876c234b 2018-09-10 stsp }
115 876c234b 2018-09-10 stsp
116 73b7854a 2018-11-11 stsp static const struct got_error *
117 73b7854a 2018-11-11 stsp recv_imsg_error(struct imsg *imsg, size_t datalen)
118 73b7854a 2018-11-11 stsp {
119 73b7854a 2018-11-11 stsp struct got_imsg_error *ierr;
120 73b7854a 2018-11-11 stsp
121 73b7854a 2018-11-11 stsp if (datalen != sizeof(*ierr))
122 73b7854a 2018-11-11 stsp return got_error(GOT_ERR_PRIVSEP_LEN);
123 73b7854a 2018-11-11 stsp
124 73b7854a 2018-11-11 stsp ierr = imsg->data;
125 73b7854a 2018-11-11 stsp if (ierr->code == GOT_ERR_ERRNO) {
126 73b7854a 2018-11-11 stsp static struct got_error serr;
127 73b7854a 2018-11-11 stsp serr.code = GOT_ERR_ERRNO;
128 73b7854a 2018-11-11 stsp serr.msg = strerror(ierr->errno_code);
129 73b7854a 2018-11-11 stsp return &serr;
130 73b7854a 2018-11-11 stsp }
131 73b7854a 2018-11-11 stsp
132 73b7854a 2018-11-11 stsp return got_error(ierr->code);
133 73b7854a 2018-11-11 stsp }
134 73b7854a 2018-11-11 stsp
135 876c234b 2018-09-10 stsp const struct got_error *
136 46de5bfd 2018-11-11 stsp got_privsep_recv_imsg(struct imsg *imsg, struct imsgbuf *ibuf,
137 46de5bfd 2018-11-11 stsp size_t min_datalen)
138 e033d803 2018-04-23 stsp {
139 e033d803 2018-04-23 stsp const struct got_error *err;
140 e033d803 2018-04-23 stsp ssize_t n;
141 e033d803 2018-04-23 stsp
142 e033d803 2018-04-23 stsp n = imsg_get(ibuf, imsg);
143 876c234b 2018-09-10 stsp if (n == -1)
144 638f9024 2019-05-13 stsp return got_error_from_errno("imsg_get");
145 876c234b 2018-09-10 stsp
146 876c234b 2018-09-10 stsp while (n == 0) {
147 876c234b 2018-09-10 stsp err = read_imsg(ibuf);
148 876c234b 2018-09-10 stsp if (err)
149 876c234b 2018-09-10 stsp return err;
150 876c234b 2018-09-10 stsp n = imsg_get(ibuf, imsg);
151 876c234b 2018-09-10 stsp }
152 fe36cf76 2018-04-23 stsp
153 fe36cf76 2018-04-23 stsp if (imsg->hdr.len < IMSG_HEADER_SIZE + min_datalen)
154 c4eae628 2018-04-23 stsp return got_error(GOT_ERR_PRIVSEP_LEN);
155 c4eae628 2018-04-23 stsp
156 73b7854a 2018-11-11 stsp if (imsg->hdr.type == GOT_IMSG_ERROR) {
157 73b7854a 2018-11-11 stsp size_t datalen = imsg->hdr.len - IMSG_HEADER_SIZE;
158 73b7854a 2018-11-11 stsp return recv_imsg_error(imsg, datalen);
159 c4eae628 2018-04-23 stsp }
160 c4eae628 2018-04-23 stsp
161 73b7854a 2018-11-11 stsp return NULL;
162 c4eae628 2018-04-23 stsp }
163 c4eae628 2018-04-23 stsp
164 2178c42e 2018-04-22 stsp /* Attempt to send an error in an imsg. Complain on stderr as a last resort. */
165 2178c42e 2018-04-22 stsp void
166 2178c42e 2018-04-22 stsp got_privsep_send_error(struct imsgbuf *ibuf, const struct got_error *err)
167 2178c42e 2018-04-22 stsp {
168 2178c42e 2018-04-22 stsp const struct got_error *poll_err;
169 2178c42e 2018-04-22 stsp struct got_imsg_error ierr;
170 2178c42e 2018-04-22 stsp int ret;
171 2178c42e 2018-04-22 stsp
172 2178c42e 2018-04-22 stsp ierr.code = err->code;
173 2178c42e 2018-04-22 stsp if (err->code == GOT_ERR_ERRNO)
174 2178c42e 2018-04-22 stsp ierr.errno_code = errno;
175 2178c42e 2018-04-22 stsp else
176 2178c42e 2018-04-22 stsp ierr.errno_code = 0;
177 2178c42e 2018-04-22 stsp ret = imsg_compose(ibuf, GOT_IMSG_ERROR, 0, 0, -1, &ierr, sizeof(ierr));
178 e93cd828 2018-11-11 stsp if (ret == -1) {
179 2178c42e 2018-04-22 stsp fprintf(stderr, "%s: error %d \"%s\": imsg_compose: %s\n",
180 2178c42e 2018-04-22 stsp getprogname(), err->code, err->msg, strerror(errno));
181 5d43e84d 2018-04-23 stsp return;
182 2178c42e 2018-04-22 stsp }
183 2178c42e 2018-04-22 stsp
184 2178c42e 2018-04-22 stsp poll_err = poll_fd(ibuf->fd, POLLOUT, INFTIM);
185 5d43e84d 2018-04-23 stsp if (poll_err) {
186 2178c42e 2018-04-22 stsp fprintf(stderr, "%s: error %d \"%s\": poll: %s\n",
187 2178c42e 2018-04-22 stsp getprogname(), err->code, err->msg, poll_err->msg);
188 5d43e84d 2018-04-23 stsp return;
189 5d43e84d 2018-04-23 stsp }
190 2178c42e 2018-04-22 stsp
191 2178c42e 2018-04-22 stsp ret = imsg_flush(ibuf);
192 5d43e84d 2018-04-23 stsp if (ret == -1) {
193 2178c42e 2018-04-22 stsp fprintf(stderr, "%s: error %d \"%s\": imsg_flush: %s\n",
194 2178c42e 2018-04-22 stsp getprogname(), err->code, err->msg, strerror(errno));
195 5d43e84d 2018-04-23 stsp return;
196 5d43e84d 2018-04-23 stsp }
197 e033d803 2018-04-23 stsp }
198 e033d803 2018-04-23 stsp
199 e033d803 2018-04-23 stsp static const struct got_error *
200 e033d803 2018-04-23 stsp flush_imsg(struct imsgbuf *ibuf)
201 e033d803 2018-04-23 stsp {
202 e033d803 2018-04-23 stsp const struct got_error *err;
203 e033d803 2018-04-23 stsp
204 e033d803 2018-04-23 stsp err = poll_fd(ibuf->fd, POLLOUT, INFTIM);
205 e033d803 2018-04-23 stsp if (err)
206 e033d803 2018-04-23 stsp return err;
207 e033d803 2018-04-23 stsp
208 e033d803 2018-04-23 stsp if (imsg_flush(ibuf) == -1)
209 638f9024 2019-05-13 stsp return got_error_from_errno("imsg_flush");
210 e033d803 2018-04-23 stsp
211 e033d803 2018-04-23 stsp return NULL;
212 ad242220 2018-09-08 stsp }
213 ad242220 2018-09-08 stsp
214 ad242220 2018-09-08 stsp const struct got_error *
215 ad242220 2018-09-08 stsp got_privsep_send_stop(int fd)
216 ad242220 2018-09-08 stsp {
217 ad242220 2018-09-08 stsp const struct got_error *err = NULL;
218 ad242220 2018-09-08 stsp struct imsgbuf ibuf;
219 ad242220 2018-09-08 stsp
220 ad242220 2018-09-08 stsp imsg_init(&ibuf, fd);
221 ad242220 2018-09-08 stsp
222 ad242220 2018-09-08 stsp if (imsg_compose(&ibuf, GOT_IMSG_STOP, 0, 0, -1, NULL, 0) == -1)
223 638f9024 2019-05-13 stsp return got_error_from_errno("imsg_compose STOP");
224 ad242220 2018-09-08 stsp
225 ad242220 2018-09-08 stsp err = flush_imsg(&ibuf);
226 ad242220 2018-09-08 stsp imsg_clear(&ibuf);
227 ad242220 2018-09-08 stsp return err;
228 7762fe12 2018-11-05 stsp }
229 7762fe12 2018-11-05 stsp
230 ad242220 2018-09-08 stsp const struct got_error *
231 aea5f015 2018-12-24 stsp got_privsep_send_obj_req(struct imsgbuf *ibuf, int fd)
232 ad242220 2018-09-08 stsp {
233 aea5f015 2018-12-24 stsp if (imsg_compose(ibuf, GOT_IMSG_OBJECT_REQUEST, 0, 0, fd, NULL, 0)
234 aea5f015 2018-12-24 stsp == -1)
235 638f9024 2019-05-13 stsp return got_error_from_errno("imsg_compose OBJECT_REQUEST");
236 1785f84a 2018-12-23 stsp
237 1785f84a 2018-12-23 stsp return flush_imsg(ibuf);
238 1785f84a 2018-12-23 stsp }
239 1785f84a 2018-12-23 stsp
240 1785f84a 2018-12-23 stsp const struct got_error *
241 1785f84a 2018-12-23 stsp got_privsep_send_commit_req(struct imsgbuf *ibuf, int fd,
242 1785f84a 2018-12-23 stsp struct got_object_id *id, int pack_idx)
243 1785f84a 2018-12-23 stsp {
244 41496140 2019-02-21 stsp const struct got_error *err = NULL;
245 1785f84a 2018-12-23 stsp struct got_imsg_packed_object iobj, *iobjp;
246 1785f84a 2018-12-23 stsp size_t len;
247 1785f84a 2018-12-23 stsp
248 1785f84a 2018-12-23 stsp if (id) { /* commit is packed */
249 1785f84a 2018-12-23 stsp iobj.idx = pack_idx;
250 1785f84a 2018-12-23 stsp memcpy(iobj.id, id->sha1, sizeof(iobj.id));
251 1785f84a 2018-12-23 stsp iobjp = &iobj;
252 1785f84a 2018-12-23 stsp len = sizeof(iobj);
253 1785f84a 2018-12-23 stsp } else {
254 1785f84a 2018-12-23 stsp iobjp = NULL;
255 1785f84a 2018-12-23 stsp len = 0;
256 1785f84a 2018-12-23 stsp }
257 1785f84a 2018-12-23 stsp
258 1785f84a 2018-12-23 stsp if (imsg_compose(ibuf, GOT_IMSG_COMMIT_REQUEST, 0, 0, fd, iobjp, len)
259 41496140 2019-02-21 stsp == -1) {
260 638f9024 2019-05-13 stsp err = got_error_from_errno("imsg_compose COMMIT_REQUEST");
261 41496140 2019-02-21 stsp close(fd);
262 41496140 2019-02-21 stsp return err;
263 41496140 2019-02-21 stsp }
264 13c729f7 2018-12-24 stsp
265 13c729f7 2018-12-24 stsp return flush_imsg(ibuf);
266 13c729f7 2018-12-24 stsp }
267 13c729f7 2018-12-24 stsp
268 13c729f7 2018-12-24 stsp const struct got_error *
269 13c729f7 2018-12-24 stsp got_privsep_send_tree_req(struct imsgbuf *ibuf, int fd,
270 13c729f7 2018-12-24 stsp struct got_object_id *id, int pack_idx)
271 13c729f7 2018-12-24 stsp {
272 41496140 2019-02-21 stsp const struct got_error *err = NULL;
273 7f358e3b 2019-11-23 stsp struct ibuf *wbuf;
274 7f358e3b 2019-11-23 stsp size_t len = id ? sizeof(struct got_imsg_packed_object) : 0;
275 7f358e3b 2019-11-23 stsp
276 7f358e3b 2019-11-23 stsp wbuf = imsg_create(ibuf, GOT_IMSG_TREE_REQUEST, 0, 0, len);
277 7f358e3b 2019-11-23 stsp if (wbuf == NULL)
278 7f358e3b 2019-11-23 stsp return got_error_from_errno("imsg_create TREE_REQUEST");
279 13c729f7 2018-12-24 stsp
280 13c729f7 2018-12-24 stsp if (id) { /* tree is packed */
281 7f358e3b 2019-11-23 stsp if (imsg_add(wbuf, id->sha1, SHA1_DIGEST_LENGTH) == -1) {
282 7f358e3b 2019-11-23 stsp err = got_error_from_errno("imsg_add TREE_ENTRY");
283 7f358e3b 2019-11-23 stsp ibuf_free(wbuf);
284 7f358e3b 2019-11-23 stsp return err;
285 7f358e3b 2019-11-23 stsp }
286 13c729f7 2018-12-24 stsp
287 7f358e3b 2019-11-23 stsp if (imsg_add(wbuf, &pack_idx, sizeof(pack_idx)) == -1) {
288 7f358e3b 2019-11-23 stsp err = got_error_from_errno("imsg_add TREE_ENTRY");
289 7f358e3b 2019-11-23 stsp ibuf_free(wbuf);
290 7f358e3b 2019-11-23 stsp return err;
291 7f358e3b 2019-11-23 stsp }
292 41496140 2019-02-21 stsp }
293 268f7291 2018-12-24 stsp
294 7f358e3b 2019-11-23 stsp wbuf->fd = fd;
295 7f358e3b 2019-11-23 stsp imsg_close(ibuf, wbuf);
296 7f358e3b 2019-11-23 stsp
297 268f7291 2018-12-24 stsp return flush_imsg(ibuf);
298 268f7291 2018-12-24 stsp }
299 268f7291 2018-12-24 stsp
300 268f7291 2018-12-24 stsp const struct got_error *
301 268f7291 2018-12-24 stsp got_privsep_send_tag_req(struct imsgbuf *ibuf, int fd,
302 268f7291 2018-12-24 stsp struct got_object_id *id, int pack_idx)
303 268f7291 2018-12-24 stsp {
304 268f7291 2018-12-24 stsp struct got_imsg_packed_object iobj, *iobjp;
305 268f7291 2018-12-24 stsp size_t len;
306 268f7291 2018-12-24 stsp
307 268f7291 2018-12-24 stsp if (id) { /* tag is packed */
308 268f7291 2018-12-24 stsp iobj.idx = pack_idx;
309 268f7291 2018-12-24 stsp memcpy(iobj.id, id->sha1, sizeof(iobj.id));
310 268f7291 2018-12-24 stsp iobjp = &iobj;
311 268f7291 2018-12-24 stsp len = sizeof(iobj);
312 268f7291 2018-12-24 stsp } else {
313 268f7291 2018-12-24 stsp iobjp = NULL;
314 268f7291 2018-12-24 stsp len = 0;
315 268f7291 2018-12-24 stsp }
316 268f7291 2018-12-24 stsp
317 268f7291 2018-12-24 stsp if (imsg_compose(ibuf, GOT_IMSG_TAG_REQUEST, 0, 0, fd, iobjp, len)
318 1785f84a 2018-12-23 stsp == -1)
319 638f9024 2019-05-13 stsp return got_error_from_errno("imsg_compose TAG_REQUEST");
320 7762fe12 2018-11-05 stsp
321 7762fe12 2018-11-05 stsp return flush_imsg(ibuf);
322 7762fe12 2018-11-05 stsp }
323 7762fe12 2018-11-05 stsp
324 7762fe12 2018-11-05 stsp const struct got_error *
325 ebc55e2d 2018-12-24 stsp got_privsep_send_blob_req(struct imsgbuf *ibuf, int infd,
326 ebc55e2d 2018-12-24 stsp struct got_object_id *id, int pack_idx)
327 55da3778 2018-09-10 stsp {
328 41496140 2019-02-21 stsp const struct got_error *err = NULL;
329 ebc55e2d 2018-12-24 stsp struct got_imsg_packed_object iobj, *iobjp;
330 ebc55e2d 2018-12-24 stsp size_t len;
331 ebc55e2d 2018-12-24 stsp
332 ebc55e2d 2018-12-24 stsp if (id) { /* blob is packed */
333 ebc55e2d 2018-12-24 stsp iobj.idx = pack_idx;
334 ebc55e2d 2018-12-24 stsp memcpy(iobj.id, id->sha1, sizeof(iobj.id));
335 ebc55e2d 2018-12-24 stsp iobjp = &iobj;
336 ebc55e2d 2018-12-24 stsp len = sizeof(iobj);
337 ebc55e2d 2018-12-24 stsp } else {
338 ebc55e2d 2018-12-24 stsp iobjp = NULL;
339 ebc55e2d 2018-12-24 stsp len = 0;
340 ebc55e2d 2018-12-24 stsp }
341 ebc55e2d 2018-12-24 stsp
342 ebc55e2d 2018-12-24 stsp if (imsg_compose(ibuf, GOT_IMSG_BLOB_REQUEST, 0, 0, infd, iobjp, len)
343 41496140 2019-02-21 stsp == -1) {
344 638f9024 2019-05-13 stsp err = got_error_from_errno("imsg_compose BLOB_REQUEST");
345 41496140 2019-02-21 stsp close(infd);
346 41496140 2019-02-21 stsp return err;
347 41496140 2019-02-21 stsp }
348 ad242220 2018-09-08 stsp
349 55da3778 2018-09-10 stsp return flush_imsg(ibuf);
350 55da3778 2018-09-10 stsp }
351 ad242220 2018-09-08 stsp
352 55da3778 2018-09-10 stsp const struct got_error *
353 55da3778 2018-09-10 stsp got_privsep_send_blob_outfd(struct imsgbuf *ibuf, int outfd)
354 55da3778 2018-09-10 stsp {
355 41496140 2019-02-21 stsp const struct got_error *err = NULL;
356 41496140 2019-02-21 stsp
357 ad242220 2018-09-08 stsp if (imsg_compose(ibuf, GOT_IMSG_BLOB_OUTFD, 0, 0, outfd, NULL, 0)
358 41496140 2019-02-21 stsp == -1) {
359 638f9024 2019-05-13 stsp err = got_error_from_errno("imsg_compose BLOB_OUTFD");
360 41496140 2019-02-21 stsp close(outfd);
361 41496140 2019-02-21 stsp return err;
362 41496140 2019-02-21 stsp }
363 3840f4c9 2018-09-12 stsp
364 3840f4c9 2018-09-12 stsp return flush_imsg(ibuf);
365 3840f4c9 2018-09-12 stsp }
366 3840f4c9 2018-09-12 stsp
367 3840f4c9 2018-09-12 stsp const struct got_error *
368 3840f4c9 2018-09-12 stsp got_privsep_send_tmpfd(struct imsgbuf *ibuf, int fd)
369 3840f4c9 2018-09-12 stsp {
370 41496140 2019-02-21 stsp const struct got_error *err = NULL;
371 41496140 2019-02-21 stsp
372 3840f4c9 2018-09-12 stsp if (imsg_compose(ibuf, GOT_IMSG_TMPFD, 0, 0, fd, NULL, 0)
373 41496140 2019-02-21 stsp == -1) {
374 638f9024 2019-05-13 stsp err = got_error_from_errno("imsg_compose TMPFD");
375 41496140 2019-02-21 stsp close(fd);
376 41496140 2019-02-21 stsp return err;
377 41496140 2019-02-21 stsp }
378 ad242220 2018-09-08 stsp
379 ad242220 2018-09-08 stsp return flush_imsg(ibuf);
380 ad242220 2018-09-08 stsp }
381 ad242220 2018-09-08 stsp
382 ad242220 2018-09-08 stsp const struct got_error *
383 876c234b 2018-09-10 stsp got_privsep_send_obj(struct imsgbuf *ibuf, struct got_object *obj)
384 2178c42e 2018-04-22 stsp {
385 2178c42e 2018-04-22 stsp struct got_imsg_object iobj;
386 2178c42e 2018-04-22 stsp
387 c59b3346 2018-09-11 stsp memcpy(iobj.id, obj->id.sha1, sizeof(iobj.id));
388 2178c42e 2018-04-22 stsp iobj.type = obj->type;
389 2178c42e 2018-04-22 stsp iobj.flags = obj->flags;
390 2178c42e 2018-04-22 stsp iobj.hdrlen = obj->hdrlen;
391 2178c42e 2018-04-22 stsp iobj.size = obj->size;
392 c59b3346 2018-09-11 stsp if (iobj.flags & GOT_OBJ_FLAG_PACKED) {
393 876c234b 2018-09-10 stsp iobj.pack_offset = obj->pack_offset;
394 c59b3346 2018-09-11 stsp iobj.pack_idx = obj->pack_idx;
395 c59b3346 2018-09-11 stsp }
396 2178c42e 2018-04-22 stsp
397 2178c42e 2018-04-22 stsp if (imsg_compose(ibuf, GOT_IMSG_OBJECT, 0, 0, -1, &iobj, sizeof(iobj))
398 2178c42e 2018-04-22 stsp == -1)
399 638f9024 2019-05-13 stsp return got_error_from_errno("imsg_compose OBJECT");
400 2178c42e 2018-04-22 stsp
401 c59b3346 2018-09-11 stsp return flush_imsg(ibuf);
402 cfd633c2 2018-09-10 stsp }
403 cfd633c2 2018-09-10 stsp
404 cfd633c2 2018-09-10 stsp const struct got_error *
405 cfd633c2 2018-09-10 stsp got_privsep_get_imsg_obj(struct got_object **obj, struct imsg *imsg,
406 cfd633c2 2018-09-10 stsp struct imsgbuf *ibuf)
407 cfd633c2 2018-09-10 stsp {
408 cfd633c2 2018-09-10 stsp const struct got_error *err = NULL;
409 291624d8 2018-11-07 stsp struct got_imsg_object *iobj;
410 cfd633c2 2018-09-10 stsp size_t datalen = imsg->hdr.len - IMSG_HEADER_SIZE;
411 cfd633c2 2018-09-10 stsp
412 291624d8 2018-11-07 stsp if (datalen != sizeof(*iobj))
413 cfd633c2 2018-09-10 stsp return got_error(GOT_ERR_PRIVSEP_LEN);
414 291624d8 2018-11-07 stsp iobj = imsg->data;
415 cfd633c2 2018-09-10 stsp
416 cfd633c2 2018-09-10 stsp *obj = calloc(1, sizeof(**obj));
417 cfd633c2 2018-09-10 stsp if (*obj == NULL)
418 638f9024 2019-05-13 stsp return got_error_from_errno("calloc");
419 cfd633c2 2018-09-10 stsp
420 291624d8 2018-11-07 stsp memcpy((*obj)->id.sha1, iobj->id, SHA1_DIGEST_LENGTH);
421 291624d8 2018-11-07 stsp (*obj)->type = iobj->type;
422 291624d8 2018-11-07 stsp (*obj)->flags = iobj->flags;
423 291624d8 2018-11-07 stsp (*obj)->hdrlen = iobj->hdrlen;
424 291624d8 2018-11-07 stsp (*obj)->size = iobj->size;
425 c59b3346 2018-09-11 stsp /* path_packfile is handled by caller */
426 291624d8 2018-11-07 stsp if (iobj->flags & GOT_OBJ_FLAG_PACKED) {
427 291624d8 2018-11-07 stsp (*obj)->pack_offset = iobj->pack_offset;
428 291624d8 2018-11-07 stsp (*obj)->pack_idx = iobj->pack_idx;
429 876c234b 2018-09-10 stsp }
430 876c234b 2018-09-10 stsp
431 876c234b 2018-09-10 stsp return err;
432 876c234b 2018-09-10 stsp }
433 876c234b 2018-09-10 stsp
434 2178c42e 2018-04-22 stsp const struct got_error *
435 2178c42e 2018-04-22 stsp got_privsep_recv_obj(struct got_object **obj, struct imsgbuf *ibuf)
436 2178c42e 2018-04-22 stsp {
437 2178c42e 2018-04-22 stsp const struct got_error *err = NULL;
438 2178c42e 2018-04-22 stsp struct imsg imsg;
439 c4eae628 2018-04-23 stsp const size_t min_datalen =
440 c4eae628 2018-04-23 stsp MIN(sizeof(struct got_imsg_error), sizeof(struct got_imsg_object));
441 2178c42e 2018-04-22 stsp
442 2178c42e 2018-04-22 stsp *obj = NULL;
443 2178c42e 2018-04-22 stsp
444 ad242220 2018-09-08 stsp err = got_privsep_recv_imsg(&imsg, ibuf, min_datalen);
445 2178c42e 2018-04-22 stsp if (err)
446 2178c42e 2018-04-22 stsp return err;
447 2178c42e 2018-04-22 stsp
448 2178c42e 2018-04-22 stsp switch (imsg.hdr.type) {
449 2178c42e 2018-04-22 stsp case GOT_IMSG_OBJECT:
450 cfd633c2 2018-09-10 stsp err = got_privsep_get_imsg_obj(obj, &imsg, ibuf);
451 bff6ca00 2018-04-23 stsp break;
452 bff6ca00 2018-04-23 stsp default:
453 bff6ca00 2018-04-23 stsp err = got_error(GOT_ERR_PRIVSEP_MSG);
454 bff6ca00 2018-04-23 stsp break;
455 bff6ca00 2018-04-23 stsp }
456 bff6ca00 2018-04-23 stsp
457 bff6ca00 2018-04-23 stsp imsg_free(&imsg);
458 bff6ca00 2018-04-23 stsp
459 bff6ca00 2018-04-23 stsp return err;
460 c75f7264 2018-09-11 stsp }
461 c75f7264 2018-09-11 stsp
462 c75f7264 2018-09-11 stsp static const struct got_error *
463 c75f7264 2018-09-11 stsp send_commit_logmsg(struct imsgbuf *ibuf, struct got_commit_object *commit,
464 c75f7264 2018-09-11 stsp size_t logmsg_len)
465 c75f7264 2018-09-11 stsp {
466 fa4ffeb3 2018-11-04 stsp const struct got_error *err = NULL;
467 c75f7264 2018-09-11 stsp size_t offset, remain;
468 c75f7264 2018-09-11 stsp
469 c75f7264 2018-09-11 stsp offset = 0;
470 c75f7264 2018-09-11 stsp remain = logmsg_len;
471 c75f7264 2018-09-11 stsp while (remain > 0) {
472 c75f7264 2018-09-11 stsp size_t n = MIN(MAX_IMSGSIZE - IMSG_HEADER_SIZE, remain);
473 c75f7264 2018-09-11 stsp
474 c75f7264 2018-09-11 stsp if (imsg_compose(ibuf, GOT_IMSG_COMMIT_LOGMSG, 0, 0, -1,
475 fa4ffeb3 2018-11-04 stsp commit->logmsg + offset, n) == -1) {
476 638f9024 2019-05-13 stsp err = got_error_from_errno("imsg_compose "
477 230a42bd 2019-05-11 jcs "COMMIT_LOGMSG");
478 fa4ffeb3 2018-11-04 stsp break;
479 fa4ffeb3 2018-11-04 stsp }
480 c75f7264 2018-09-11 stsp
481 fa4ffeb3 2018-11-04 stsp err = flush_imsg(ibuf);
482 fa4ffeb3 2018-11-04 stsp if (err)
483 fa4ffeb3 2018-11-04 stsp break;
484 c75f7264 2018-09-11 stsp
485 c75f7264 2018-09-11 stsp offset += n;
486 c75f7264 2018-09-11 stsp remain -= n;
487 c75f7264 2018-09-11 stsp }
488 c75f7264 2018-09-11 stsp
489 fa4ffeb3 2018-11-04 stsp return err;
490 bff6ca00 2018-04-23 stsp }
491 bff6ca00 2018-04-23 stsp
492 bff6ca00 2018-04-23 stsp const struct got_error *
493 068fd2bf 2018-04-24 stsp got_privsep_send_commit(struct imsgbuf *ibuf, struct got_commit_object *commit)
494 bff6ca00 2018-04-23 stsp {
495 bff6ca00 2018-04-23 stsp const struct got_error *err = NULL;
496 b9c33926 2018-11-07 stsp struct got_imsg_commit_object *icommit;
497 bff6ca00 2018-04-23 stsp uint8_t *buf;
498 bff6ca00 2018-04-23 stsp size_t len, total;
499 79f35eb3 2018-06-11 stsp struct got_object_qid *qid;
500 b9c33926 2018-11-07 stsp size_t author_len = strlen(commit->author);
501 b9c33926 2018-11-07 stsp size_t committer_len = strlen(commit->committer);
502 c75f7264 2018-09-11 stsp size_t logmsg_len = strlen(commit->logmsg);
503 bff6ca00 2018-04-23 stsp
504 b9c33926 2018-11-07 stsp total = sizeof(*icommit) + author_len + committer_len +
505 b9c33926 2018-11-07 stsp commit->nparents * SHA1_DIGEST_LENGTH;
506 bff6ca00 2018-04-23 stsp
507 bff6ca00 2018-04-23 stsp buf = malloc(total);
508 bff6ca00 2018-04-23 stsp if (buf == NULL)
509 638f9024 2019-05-13 stsp return got_error_from_errno("malloc");
510 bff6ca00 2018-04-23 stsp
511 b9c33926 2018-11-07 stsp icommit = (struct got_imsg_commit_object *)buf;
512 a7403916 2018-12-24 stsp memcpy(icommit->tree_id, commit->tree_id->sha1,
513 a7403916 2018-12-24 stsp sizeof(icommit->tree_id));
514 b9c33926 2018-11-07 stsp icommit->author_len = author_len;
515 b9c33926 2018-11-07 stsp icommit->author_time = commit->author_time;
516 b9c33926 2018-11-07 stsp icommit->author_gmtoff = commit->author_gmtoff;
517 b9c33926 2018-11-07 stsp icommit->committer_len = committer_len;
518 b9c33926 2018-11-07 stsp icommit->committer_time = commit->committer_time;
519 b9c33926 2018-11-07 stsp icommit->committer_gmtoff = commit->committer_gmtoff;
520 b9c33926 2018-11-07 stsp icommit->logmsg_len = logmsg_len;
521 b9c33926 2018-11-07 stsp icommit->nparents = commit->nparents;
522 b9c33926 2018-11-07 stsp
523 b9c33926 2018-11-07 stsp len = sizeof(*icommit);
524 b9c33926 2018-11-07 stsp memcpy(buf + len, commit->author, author_len);
525 b9c33926 2018-11-07 stsp len += author_len;
526 b9c33926 2018-11-07 stsp memcpy(buf + len, commit->committer, committer_len);
527 b9c33926 2018-11-07 stsp len += committer_len;
528 79f35eb3 2018-06-11 stsp SIMPLEQ_FOREACH(qid, &commit->parent_ids, entry) {
529 79f35eb3 2018-06-11 stsp memcpy(buf + len, qid->id, SHA1_DIGEST_LENGTH);
530 86acc566 2018-04-23 stsp len += SHA1_DIGEST_LENGTH;
531 bff6ca00 2018-04-23 stsp }
532 bff6ca00 2018-04-23 stsp
533 bff6ca00 2018-04-23 stsp if (imsg_compose(ibuf, GOT_IMSG_COMMIT, 0, 0, -1, buf, len) == -1) {
534 638f9024 2019-05-13 stsp err = got_error_from_errno("imsg_compose COMMIT");
535 bff6ca00 2018-04-23 stsp goto done;
536 bff6ca00 2018-04-23 stsp }
537 bff6ca00 2018-04-23 stsp
538 904df868 2018-11-04 stsp if (logmsg_len == 0 ||
539 904df868 2018-11-04 stsp logmsg_len + len > MAX_IMSGSIZE - IMSG_HEADER_SIZE) {
540 904df868 2018-11-04 stsp err = flush_imsg(ibuf);
541 904df868 2018-11-04 stsp if (err)
542 904df868 2018-11-04 stsp goto done;
543 904df868 2018-11-04 stsp }
544 c75f7264 2018-09-11 stsp err = send_commit_logmsg(ibuf, commit, logmsg_len);
545 bff6ca00 2018-04-23 stsp done:
546 bff6ca00 2018-04-23 stsp free(buf);
547 bff6ca00 2018-04-23 stsp return err;
548 bff6ca00 2018-04-23 stsp }
549 cfd633c2 2018-09-10 stsp
550 bff6ca00 2018-04-23 stsp const struct got_error *
551 068fd2bf 2018-04-24 stsp got_privsep_recv_commit(struct got_commit_object **commit, struct imsgbuf *ibuf)
552 bff6ca00 2018-04-23 stsp {
553 bff6ca00 2018-04-23 stsp const struct got_error *err = NULL;
554 bff6ca00 2018-04-23 stsp struct imsg imsg;
555 291624d8 2018-11-07 stsp struct got_imsg_commit_object *icommit;
556 bff6ca00 2018-04-23 stsp size_t len, datalen;
557 bff6ca00 2018-04-23 stsp int i;
558 bff6ca00 2018-04-23 stsp const size_t min_datalen =
559 bff6ca00 2018-04-23 stsp MIN(sizeof(struct got_imsg_error),
560 bff6ca00 2018-04-23 stsp sizeof(struct got_imsg_commit_object));
561 bff6ca00 2018-04-23 stsp
562 bff6ca00 2018-04-23 stsp *commit = NULL;
563 bff6ca00 2018-04-23 stsp
564 ad242220 2018-09-08 stsp err = got_privsep_recv_imsg(&imsg, ibuf, min_datalen);
565 bff6ca00 2018-04-23 stsp if (err)
566 bff6ca00 2018-04-23 stsp return err;
567 bff6ca00 2018-04-23 stsp
568 bff6ca00 2018-04-23 stsp datalen = imsg.hdr.len - IMSG_HEADER_SIZE;
569 bff6ca00 2018-04-23 stsp len = 0;
570 bff6ca00 2018-04-23 stsp
571 bff6ca00 2018-04-23 stsp switch (imsg.hdr.type) {
572 bff6ca00 2018-04-23 stsp case GOT_IMSG_COMMIT:
573 291624d8 2018-11-07 stsp if (datalen < sizeof(*icommit)) {
574 bff6ca00 2018-04-23 stsp err = got_error(GOT_ERR_PRIVSEP_LEN);
575 bff6ca00 2018-04-23 stsp break;
576 2178c42e 2018-04-22 stsp }
577 291624d8 2018-11-07 stsp icommit = imsg.data;
578 291624d8 2018-11-07 stsp if (datalen != sizeof(*icommit) + icommit->author_len +
579 291624d8 2018-11-07 stsp icommit->committer_len +
580 291624d8 2018-11-07 stsp icommit->nparents * SHA1_DIGEST_LENGTH) {
581 bff6ca00 2018-04-23 stsp err = got_error(GOT_ERR_PRIVSEP_LEN);
582 bff6ca00 2018-04-23 stsp break;
583 bff6ca00 2018-04-23 stsp }
584 291624d8 2018-11-07 stsp if (icommit->nparents < 0) {
585 bff6ca00 2018-04-23 stsp err = got_error(GOT_ERR_PRIVSEP_LEN);
586 bff6ca00 2018-04-23 stsp break;
587 bff6ca00 2018-04-23 stsp }
588 291624d8 2018-11-07 stsp len += sizeof(*icommit);
589 bff6ca00 2018-04-23 stsp
590 bff6ca00 2018-04-23 stsp *commit = got_object_commit_alloc_partial();
591 bff6ca00 2018-04-23 stsp if (*commit == NULL) {
592 638f9024 2019-05-13 stsp err = got_error_from_errno(
593 230a42bd 2019-05-11 jcs "got_object_commit_alloc_partial");
594 bff6ca00 2018-04-23 stsp break;
595 bff6ca00 2018-04-23 stsp }
596 bff6ca00 2018-04-23 stsp
597 291624d8 2018-11-07 stsp memcpy((*commit)->tree_id->sha1, icommit->tree_id,
598 86acc566 2018-04-23 stsp SHA1_DIGEST_LENGTH);
599 291624d8 2018-11-07 stsp (*commit)->author_time = icommit->author_time;
600 291624d8 2018-11-07 stsp (*commit)->author_gmtoff = icommit->author_gmtoff;
601 291624d8 2018-11-07 stsp (*commit)->committer_time = icommit->committer_time;
602 291624d8 2018-11-07 stsp (*commit)->committer_gmtoff = icommit->committer_gmtoff;
603 bff6ca00 2018-04-23 stsp
604 291624d8 2018-11-07 stsp if (icommit->author_len == 0) {
605 bff6ca00 2018-04-23 stsp (*commit)->author = strdup("");
606 bff6ca00 2018-04-23 stsp if ((*commit)->author == NULL) {
607 638f9024 2019-05-13 stsp err = got_error_from_errno("strdup");
608 bff6ca00 2018-04-23 stsp break;
609 bff6ca00 2018-04-23 stsp }
610 bff6ca00 2018-04-23 stsp } else {
611 291624d8 2018-11-07 stsp (*commit)->author = malloc(icommit->author_len + 1);
612 bff6ca00 2018-04-23 stsp if ((*commit)->author == NULL) {
613 638f9024 2019-05-13 stsp err = got_error_from_errno("malloc");
614 bff6ca00 2018-04-23 stsp break;
615 bff6ca00 2018-04-23 stsp }
616 291624d8 2018-11-07 stsp memcpy((*commit)->author, imsg.data + len,
617 291624d8 2018-11-07 stsp icommit->author_len);
618 291624d8 2018-11-07 stsp (*commit)->author[icommit->author_len] = '\0';
619 bff6ca00 2018-04-23 stsp }
620 291624d8 2018-11-07 stsp len += icommit->author_len;
621 6c281f94 2018-06-11 stsp
622 291624d8 2018-11-07 stsp if (icommit->committer_len == 0) {
623 bff6ca00 2018-04-23 stsp (*commit)->committer = strdup("");
624 bff6ca00 2018-04-23 stsp if ((*commit)->committer == NULL) {
625 638f9024 2019-05-13 stsp err = got_error_from_errno("strdup");
626 bff6ca00 2018-04-23 stsp break;
627 bff6ca00 2018-04-23 stsp }
628 bff6ca00 2018-04-23 stsp } else {
629 bff6ca00 2018-04-23 stsp (*commit)->committer =
630 291624d8 2018-11-07 stsp malloc(icommit->committer_len + 1);
631 bff6ca00 2018-04-23 stsp if ((*commit)->committer == NULL) {
632 638f9024 2019-05-13 stsp err = got_error_from_errno("malloc");
633 bff6ca00 2018-04-23 stsp break;
634 bff6ca00 2018-04-23 stsp }
635 291624d8 2018-11-07 stsp memcpy((*commit)->committer, imsg.data + len,
636 291624d8 2018-11-07 stsp icommit->committer_len);
637 291624d8 2018-11-07 stsp (*commit)->committer[icommit->committer_len] = '\0';
638 bff6ca00 2018-04-23 stsp }
639 291624d8 2018-11-07 stsp len += icommit->committer_len;
640 bff6ca00 2018-04-23 stsp
641 291624d8 2018-11-07 stsp if (icommit->logmsg_len == 0) {
642 bff6ca00 2018-04-23 stsp (*commit)->logmsg = strdup("");
643 bff6ca00 2018-04-23 stsp if ((*commit)->logmsg == NULL) {
644 638f9024 2019-05-13 stsp err = got_error_from_errno("strdup");
645 bff6ca00 2018-04-23 stsp break;
646 bff6ca00 2018-04-23 stsp }
647 bff6ca00 2018-04-23 stsp } else {
648 291624d8 2018-11-07 stsp size_t offset = 0, remain = icommit->logmsg_len;
649 c75f7264 2018-09-11 stsp
650 291624d8 2018-11-07 stsp (*commit)->logmsg = malloc(icommit->logmsg_len + 1);
651 bff6ca00 2018-04-23 stsp if ((*commit)->logmsg == NULL) {
652 638f9024 2019-05-13 stsp err = got_error_from_errno("malloc");
653 bff6ca00 2018-04-23 stsp break;
654 bff6ca00 2018-04-23 stsp }
655 c75f7264 2018-09-11 stsp while (remain > 0) {
656 c75f7264 2018-09-11 stsp struct imsg imsg_log;
657 c75f7264 2018-09-11 stsp size_t n = MIN(MAX_IMSGSIZE - IMSG_HEADER_SIZE,
658 c75f7264 2018-09-11 stsp remain);
659 c75f7264 2018-09-11 stsp
660 c75f7264 2018-09-11 stsp err = got_privsep_recv_imsg(&imsg_log, ibuf, n);
661 c75f7264 2018-09-11 stsp if (err)
662 c75f7264 2018-09-11 stsp return err;
663 c75f7264 2018-09-11 stsp
664 c75f7264 2018-09-11 stsp if (imsg_log.hdr.type != GOT_IMSG_COMMIT_LOGMSG)
665 c75f7264 2018-09-11 stsp return got_error(GOT_ERR_PRIVSEP_MSG);
666 c75f7264 2018-09-11 stsp
667 c75f7264 2018-09-11 stsp memcpy((*commit)->logmsg + offset,
668 c75f7264 2018-09-11 stsp imsg_log.data, n);
669 c75f7264 2018-09-11 stsp imsg_free(&imsg_log);
670 c75f7264 2018-09-11 stsp offset += n;
671 c75f7264 2018-09-11 stsp remain -= n;
672 c75f7264 2018-09-11 stsp }
673 291624d8 2018-11-07 stsp (*commit)->logmsg[icommit->logmsg_len] = '\0';
674 bff6ca00 2018-04-23 stsp }
675 bff6ca00 2018-04-23 stsp
676 291624d8 2018-11-07 stsp for (i = 0; i < icommit->nparents; i++) {
677 79f35eb3 2018-06-11 stsp struct got_object_qid *qid;
678 86acc566 2018-04-23 stsp
679 5df4932d 2018-11-05 stsp err = got_object_qid_alloc_partial(&qid);
680 5df4932d 2018-11-05 stsp if (err)
681 41fa1437 2018-11-05 stsp break;
682 291624d8 2018-11-07 stsp memcpy(qid->id, imsg.data + len +
683 291624d8 2018-11-07 stsp i * SHA1_DIGEST_LENGTH, sizeof(*qid->id));
684 7762fe12 2018-11-05 stsp SIMPLEQ_INSERT_TAIL(&(*commit)->parent_ids, qid, entry);
685 7762fe12 2018-11-05 stsp (*commit)->nparents++;
686 7762fe12 2018-11-05 stsp }
687 2178c42e 2018-04-22 stsp break;
688 8c580685 2018-04-22 stsp default:
689 8c580685 2018-04-22 stsp err = got_error(GOT_ERR_PRIVSEP_MSG);
690 8c580685 2018-04-22 stsp break;
691 2178c42e 2018-04-22 stsp }
692 2178c42e 2018-04-22 stsp
693 2178c42e 2018-04-22 stsp imsg_free(&imsg);
694 e033d803 2018-04-23 stsp
695 e033d803 2018-04-23 stsp return err;
696 e033d803 2018-04-23 stsp }
697 e033d803 2018-04-23 stsp
698 e033d803 2018-04-23 stsp const struct got_error *
699 3022d272 2019-11-14 stsp got_privsep_send_tree(struct imsgbuf *ibuf, struct got_pathlist_head *entries,
700 3022d272 2019-11-14 stsp int nentries)
701 e033d803 2018-04-23 stsp {
702 e033d803 2018-04-23 stsp const struct got_error *err = NULL;
703 e033d803 2018-04-23 stsp struct got_imsg_tree_object itree;
704 3022d272 2019-11-14 stsp struct got_pathlist_entry *pe;
705 b00c9821 2018-11-04 stsp size_t totlen;
706 6eb07a17 2018-11-04 stsp int nimsg; /* number of imsg queued in ibuf */
707 e033d803 2018-04-23 stsp
708 3022d272 2019-11-14 stsp itree.nentries = nentries;
709 e033d803 2018-04-23 stsp if (imsg_compose(ibuf, GOT_IMSG_TREE, 0, 0, -1, &itree, sizeof(itree))
710 e033d803 2018-04-23 stsp == -1)
711 638f9024 2019-05-13 stsp return got_error_from_errno("imsg_compose TREE");
712 e033d803 2018-04-23 stsp
713 b00c9821 2018-11-04 stsp totlen = sizeof(itree);
714 6eb07a17 2018-11-04 stsp nimsg = 1;
715 3022d272 2019-11-14 stsp TAILQ_FOREACH(pe, entries, entry) {
716 3022d272 2019-11-14 stsp const char *name = pe->path;
717 3022d272 2019-11-14 stsp struct got_parsed_tree_entry *pte = pe->data;
718 3022d272 2019-11-14 stsp struct ibuf *wbuf;
719 3022d272 2019-11-14 stsp size_t namelen = strlen(name);
720 cd9e913a 2019-11-27 stsp size_t len = sizeof(struct got_imsg_tree_entry) + namelen;
721 e033d803 2018-04-23 stsp
722 e033d803 2018-04-23 stsp if (len > MAX_IMSGSIZE)
723 e033d803 2018-04-23 stsp return got_error(GOT_ERR_NO_SPACE);
724 e033d803 2018-04-23 stsp
725 6eb07a17 2018-11-04 stsp nimsg++;
726 6eb07a17 2018-11-04 stsp if (totlen + len >= MAX_IMSGSIZE - (IMSG_HEADER_SIZE * nimsg)) {
727 b00c9821 2018-11-04 stsp err = flush_imsg(ibuf);
728 b00c9821 2018-11-04 stsp if (err)
729 b00c9821 2018-11-04 stsp return err;
730 6eb07a17 2018-11-04 stsp nimsg = 0;
731 b00c9821 2018-11-04 stsp }
732 b00c9821 2018-11-04 stsp
733 3022d272 2019-11-14 stsp wbuf = imsg_create(ibuf, GOT_IMSG_TREE_ENTRY, 0, 0, len);
734 3022d272 2019-11-14 stsp if (wbuf == NULL)
735 3022d272 2019-11-14 stsp return got_error_from_errno("imsg_create TREE_ENTRY");
736 e033d803 2018-04-23 stsp
737 3022d272 2019-11-14 stsp /* Keep in sync with struct got_imsg_tree_object definition! */
738 3b647085 2019-11-23 stsp if (imsg_add(wbuf, pte->id, SHA1_DIGEST_LENGTH) == -1) {
739 3022d272 2019-11-14 stsp err = got_error_from_errno("imsg_add TREE_ENTRY");
740 3b647085 2019-11-23 stsp ibuf_free(wbuf);
741 e033d803 2018-04-23 stsp return err;
742 3b647085 2019-11-23 stsp }
743 3b647085 2019-11-23 stsp if (imsg_add(wbuf, &pte->mode, sizeof(pte->mode)) == -1) {
744 3022d272 2019-11-14 stsp err = got_error_from_errno("imsg_add TREE_ENTRY");
745 3b647085 2019-11-23 stsp ibuf_free(wbuf);
746 3022d272 2019-11-14 stsp return err;
747 3b647085 2019-11-23 stsp }
748 3022d272 2019-11-14 stsp
749 3b647085 2019-11-23 stsp if (imsg_add(wbuf, name, namelen) == -1) {
750 3022d272 2019-11-14 stsp err = got_error_from_errno("imsg_add TREE_ENTRY");
751 3b647085 2019-11-23 stsp ibuf_free(wbuf);
752 3022d272 2019-11-14 stsp return err;
753 3b647085 2019-11-23 stsp }
754 3022d272 2019-11-14 stsp
755 3022d272 2019-11-14 stsp wbuf->fd = -1;
756 3022d272 2019-11-14 stsp imsg_close(ibuf, wbuf);
757 3022d272 2019-11-14 stsp
758 b00c9821 2018-11-04 stsp totlen += len;
759 e033d803 2018-04-23 stsp }
760 e033d803 2018-04-23 stsp
761 b00c9821 2018-11-04 stsp return flush_imsg(ibuf);
762 e033d803 2018-04-23 stsp }
763 e033d803 2018-04-23 stsp
764 e033d803 2018-04-23 stsp const struct got_error *
765 068fd2bf 2018-04-24 stsp got_privsep_recv_tree(struct got_tree_object **tree, struct imsgbuf *ibuf)
766 e033d803 2018-04-23 stsp {
767 e033d803 2018-04-23 stsp const struct got_error *err = NULL;
768 e033d803 2018-04-23 stsp const size_t min_datalen =
769 e033d803 2018-04-23 stsp MIN(sizeof(struct got_imsg_error),
770 e033d803 2018-04-23 stsp sizeof(struct got_imsg_tree_object));
771 291624d8 2018-11-07 stsp struct got_imsg_tree_object *itree;
772 e033d803 2018-04-23 stsp int nentries = 0;
773 2178c42e 2018-04-22 stsp
774 e033d803 2018-04-23 stsp *tree = NULL;
775 e033d803 2018-04-23 stsp get_more:
776 e033d803 2018-04-23 stsp err = read_imsg(ibuf);
777 e033d803 2018-04-23 stsp if (err)
778 1e51f5b9 2018-04-23 stsp goto done;
779 e033d803 2018-04-23 stsp
780 656b1f76 2019-05-11 jcs for (;;) {
781 e033d803 2018-04-23 stsp struct imsg imsg;
782 e033d803 2018-04-23 stsp size_t n;
783 e033d803 2018-04-23 stsp size_t datalen;
784 c0588d8d 2018-11-07 stsp struct got_imsg_tree_entry *ite;
785 e033d803 2018-04-23 stsp struct got_tree_entry *te = NULL;
786 e033d803 2018-04-23 stsp
787 e033d803 2018-04-23 stsp n = imsg_get(ibuf, &imsg);
788 e033d803 2018-04-23 stsp if (n == 0) {
789 56e0773d 2019-11-28 stsp if (*tree && (*tree)->nentries != nentries)
790 e033d803 2018-04-23 stsp goto get_more;
791 e033d803 2018-04-23 stsp break;
792 e033d803 2018-04-23 stsp }
793 e033d803 2018-04-23 stsp
794 e033d803 2018-04-23 stsp if (imsg.hdr.len < IMSG_HEADER_SIZE + min_datalen)
795 e033d803 2018-04-23 stsp return got_error(GOT_ERR_PRIVSEP_LEN);
796 e033d803 2018-04-23 stsp
797 e033d803 2018-04-23 stsp datalen = imsg.hdr.len - IMSG_HEADER_SIZE;
798 e033d803 2018-04-23 stsp
799 e033d803 2018-04-23 stsp switch (imsg.hdr.type) {
800 e033d803 2018-04-23 stsp case GOT_IMSG_ERROR:
801 e033d803 2018-04-23 stsp err = recv_imsg_error(&imsg, datalen);
802 e033d803 2018-04-23 stsp break;
803 e033d803 2018-04-23 stsp case GOT_IMSG_TREE:
804 e033d803 2018-04-23 stsp /* This message should only appear once. */
805 e033d803 2018-04-23 stsp if (*tree != NULL) {
806 e033d803 2018-04-23 stsp err = got_error(GOT_ERR_PRIVSEP_MSG);
807 e033d803 2018-04-23 stsp break;
808 e033d803 2018-04-23 stsp }
809 291624d8 2018-11-07 stsp if (datalen != sizeof(*itree)) {
810 e033d803 2018-04-23 stsp err = got_error(GOT_ERR_PRIVSEP_LEN);
811 e033d803 2018-04-23 stsp break;
812 e033d803 2018-04-23 stsp }
813 291624d8 2018-11-07 stsp itree = imsg.data;
814 c3b78ecc 2018-11-07 stsp *tree = malloc(sizeof(**tree));
815 e033d803 2018-04-23 stsp if (*tree == NULL) {
816 638f9024 2019-05-13 stsp err = got_error_from_errno("malloc");
817 e033d803 2018-04-23 stsp break;
818 e033d803 2018-04-23 stsp }
819 56e0773d 2019-11-28 stsp (*tree)->entries = calloc(itree->nentries,
820 56e0773d 2019-11-28 stsp sizeof(struct got_tree_entry));
821 56e0773d 2019-11-28 stsp if ((*tree)->entries == NULL) {
822 56e0773d 2019-11-28 stsp err = got_error_from_errno("malloc");
823 56e0773d 2019-11-28 stsp break;
824 56e0773d 2019-11-28 stsp }
825 56e0773d 2019-11-28 stsp (*tree)->nentries = itree->nentries;
826 c3b78ecc 2018-11-07 stsp (*tree)->refcnt = 0;
827 e033d803 2018-04-23 stsp break;
828 e033d803 2018-04-23 stsp case GOT_IMSG_TREE_ENTRY:
829 e033d803 2018-04-23 stsp /* This message should be preceeded by GOT_IMSG_TREE. */
830 e033d803 2018-04-23 stsp if (*tree == NULL) {
831 e033d803 2018-04-23 stsp err = got_error(GOT_ERR_PRIVSEP_MSG);
832 e033d803 2018-04-23 stsp break;
833 e033d803 2018-04-23 stsp }
834 c0588d8d 2018-11-07 stsp if (datalen < sizeof(*ite) || datalen > MAX_IMSGSIZE) {
835 e033d803 2018-04-23 stsp err = got_error(GOT_ERR_PRIVSEP_LEN);
836 e033d803 2018-04-23 stsp break;
837 e033d803 2018-04-23 stsp }
838 e033d803 2018-04-23 stsp
839 e033d803 2018-04-23 stsp /* Remaining data contains the entry's name. */
840 c0588d8d 2018-11-07 stsp datalen -= sizeof(*ite);
841 e033d803 2018-04-23 stsp if (datalen == 0 || datalen > MAX_IMSGSIZE) {
842 e033d803 2018-04-23 stsp err = got_error(GOT_ERR_PRIVSEP_LEN);
843 e033d803 2018-04-23 stsp break;
844 e033d803 2018-04-23 stsp }
845 c0588d8d 2018-11-07 stsp ite = imsg.data;
846 052d4dc3 2018-04-23 stsp
847 56e0773d 2019-11-28 stsp if (datalen + 1 > sizeof(te->name)) {
848 56e0773d 2019-11-28 stsp err = got_error(GOT_ERR_NO_SPACE);
849 e033d803 2018-04-23 stsp break;
850 e033d803 2018-04-23 stsp }
851 56e0773d 2019-11-28 stsp te = &(*tree)->entries[nentries];
852 c0588d8d 2018-11-07 stsp memcpy(te->name, imsg.data + sizeof(*ite), datalen);
853 e033d803 2018-04-23 stsp te->name[datalen] = '\0';
854 e033d803 2018-04-23 stsp
855 56e0773d 2019-11-28 stsp memcpy(te->id.sha1, ite->id, SHA1_DIGEST_LENGTH);
856 c0588d8d 2018-11-07 stsp te->mode = ite->mode;
857 56e0773d 2019-11-28 stsp te->idx = nentries;
858 e033d803 2018-04-23 stsp nentries++;
859 e033d803 2018-04-23 stsp break;
860 e033d803 2018-04-23 stsp default:
861 e033d803 2018-04-23 stsp err = got_error(GOT_ERR_PRIVSEP_MSG);
862 e033d803 2018-04-23 stsp break;
863 e033d803 2018-04-23 stsp }
864 e033d803 2018-04-23 stsp
865 e033d803 2018-04-23 stsp imsg_free(&imsg);
866 e033d803 2018-04-23 stsp }
867 1e51f5b9 2018-04-23 stsp done:
868 56e0773d 2019-11-28 stsp if (*tree && (*tree)->nentries != nentries) {
869 1e51f5b9 2018-04-23 stsp if (err == NULL)
870 1e51f5b9 2018-04-23 stsp err = got_error(GOT_ERR_PRIVSEP_LEN);
871 e033d803 2018-04-23 stsp got_object_tree_close(*tree);
872 e033d803 2018-04-23 stsp *tree = NULL;
873 ff6b18f8 2018-04-24 stsp }
874 ff6b18f8 2018-04-24 stsp
875 ff6b18f8 2018-04-24 stsp return err;
876 ff6b18f8 2018-04-24 stsp }
877 ff6b18f8 2018-04-24 stsp
878 ff6b18f8 2018-04-24 stsp const struct got_error *
879 ac544f8c 2019-01-13 stsp got_privsep_send_blob(struct imsgbuf *ibuf, size_t size, size_t hdrlen,
880 ac544f8c 2019-01-13 stsp const uint8_t *data)
881 ff6b18f8 2018-04-24 stsp {
882 2967a784 2018-04-24 stsp struct got_imsg_blob iblob;
883 2967a784 2018-04-24 stsp
884 2967a784 2018-04-24 stsp iblob.size = size;
885 ebc55e2d 2018-12-24 stsp iblob.hdrlen = hdrlen;
886 2967a784 2018-04-24 stsp
887 ac544f8c 2019-01-13 stsp if (data) {
888 ac544f8c 2019-01-13 stsp uint8_t *buf;
889 ac544f8c 2019-01-13 stsp
890 ac544f8c 2019-01-13 stsp if (size > GOT_PRIVSEP_INLINE_BLOB_DATA_MAX)
891 ac544f8c 2019-01-13 stsp return got_error(GOT_ERR_NO_SPACE);
892 ac544f8c 2019-01-13 stsp
893 ac544f8c 2019-01-13 stsp buf = malloc(sizeof(iblob) + size);
894 ac544f8c 2019-01-13 stsp if (buf == NULL)
895 638f9024 2019-05-13 stsp return got_error_from_errno("malloc");
896 ff6b18f8 2018-04-24 stsp
897 ac544f8c 2019-01-13 stsp memcpy(buf, &iblob, sizeof(iblob));
898 ac544f8c 2019-01-13 stsp memcpy(buf + sizeof(iblob), data, size);
899 ac544f8c 2019-01-13 stsp if (imsg_compose(ibuf, GOT_IMSG_BLOB, 0, 0, -1, buf,
900 ac544f8c 2019-01-13 stsp sizeof(iblob) + size) == -1) {
901 ac544f8c 2019-01-13 stsp free(buf);
902 638f9024 2019-05-13 stsp return got_error_from_errno("imsg_compose BLOB");
903 ac544f8c 2019-01-13 stsp }
904 ac544f8c 2019-01-13 stsp free(buf);
905 ac544f8c 2019-01-13 stsp } else {
906 ac544f8c 2019-01-13 stsp /* Data has already been written to file descriptor. */
907 ac544f8c 2019-01-13 stsp if (imsg_compose(ibuf, GOT_IMSG_BLOB, 0, 0, -1, &iblob,
908 ac544f8c 2019-01-13 stsp sizeof(iblob)) == -1)
909 638f9024 2019-05-13 stsp return got_error_from_errno("imsg_compose BLOB");
910 ac544f8c 2019-01-13 stsp }
911 ac544f8c 2019-01-13 stsp
912 ac544f8c 2019-01-13 stsp
913 ff6b18f8 2018-04-24 stsp return flush_imsg(ibuf);
914 ff6b18f8 2018-04-24 stsp }
915 ff6b18f8 2018-04-24 stsp
916 ff6b18f8 2018-04-24 stsp const struct got_error *
917 ac544f8c 2019-01-13 stsp got_privsep_recv_blob(uint8_t **outbuf, size_t *size, size_t *hdrlen,
918 ac544f8c 2019-01-13 stsp struct imsgbuf *ibuf)
919 ff6b18f8 2018-04-24 stsp {
920 ff6b18f8 2018-04-24 stsp const struct got_error *err = NULL;
921 ff6b18f8 2018-04-24 stsp struct imsg imsg;
922 291624d8 2018-11-07 stsp struct got_imsg_blob *iblob;
923 ff6b18f8 2018-04-24 stsp size_t datalen;
924 ff6b18f8 2018-04-24 stsp
925 ac544f8c 2019-01-13 stsp *outbuf = NULL;
926 ac544f8c 2019-01-13 stsp
927 ad242220 2018-09-08 stsp err = got_privsep_recv_imsg(&imsg, ibuf, 0);
928 ff6b18f8 2018-04-24 stsp if (err)
929 ff6b18f8 2018-04-24 stsp return err;
930 ff6b18f8 2018-04-24 stsp
931 ff6b18f8 2018-04-24 stsp datalen = imsg.hdr.len - IMSG_HEADER_SIZE;
932 ff6b18f8 2018-04-24 stsp
933 ff6b18f8 2018-04-24 stsp switch (imsg.hdr.type) {
934 ff6b18f8 2018-04-24 stsp case GOT_IMSG_BLOB:
935 ac544f8c 2019-01-13 stsp if (datalen < sizeof(*iblob)) {
936 ff6b18f8 2018-04-24 stsp err = got_error(GOT_ERR_PRIVSEP_LEN);
937 18336eed 2018-11-04 stsp break;
938 18336eed 2018-11-04 stsp }
939 291624d8 2018-11-07 stsp iblob = imsg.data;
940 291624d8 2018-11-07 stsp *size = iblob->size;
941 ebc55e2d 2018-12-24 stsp *hdrlen = iblob->hdrlen;
942 ac544f8c 2019-01-13 stsp
943 ac544f8c 2019-01-13 stsp if (datalen == sizeof(*iblob)) {
944 ac544f8c 2019-01-13 stsp /* Data has been written to file descriptor. */
945 ac544f8c 2019-01-13 stsp break;
946 ac544f8c 2019-01-13 stsp }
947 ac544f8c 2019-01-13 stsp
948 ac544f8c 2019-01-13 stsp if (*size > GOT_PRIVSEP_INLINE_BLOB_DATA_MAX) {
949 ac544f8c 2019-01-13 stsp err = got_error(GOT_ERR_PRIVSEP_LEN);
950 ac544f8c 2019-01-13 stsp break;
951 ac544f8c 2019-01-13 stsp }
952 ac544f8c 2019-01-13 stsp
953 ac544f8c 2019-01-13 stsp *outbuf = malloc(*size);
954 ac544f8c 2019-01-13 stsp if (*outbuf == NULL) {
955 638f9024 2019-05-13 stsp err = got_error_from_errno("malloc");
956 ac544f8c 2019-01-13 stsp break;
957 ac544f8c 2019-01-13 stsp }
958 ac544f8c 2019-01-13 stsp memcpy(*outbuf, imsg.data + sizeof(*iblob), *size);
959 f4a881ce 2018-11-17 stsp break;
960 f4a881ce 2018-11-17 stsp default:
961 f4a881ce 2018-11-17 stsp err = got_error(GOT_ERR_PRIVSEP_MSG);
962 f4a881ce 2018-11-17 stsp break;
963 f4a881ce 2018-11-17 stsp }
964 f4a881ce 2018-11-17 stsp
965 f4a881ce 2018-11-17 stsp imsg_free(&imsg);
966 f4a881ce 2018-11-17 stsp
967 f4a881ce 2018-11-17 stsp return err;
968 f4a881ce 2018-11-17 stsp }
969 f4a881ce 2018-11-17 stsp
970 f4a881ce 2018-11-17 stsp static const struct got_error *
971 f4a881ce 2018-11-17 stsp send_tagmsg(struct imsgbuf *ibuf, struct got_tag_object *tag, size_t tagmsg_len)
972 f4a881ce 2018-11-17 stsp {
973 f4a881ce 2018-11-17 stsp const struct got_error *err = NULL;
974 f4a881ce 2018-11-17 stsp size_t offset, remain;
975 f4a881ce 2018-11-17 stsp
976 f4a881ce 2018-11-17 stsp offset = 0;
977 f4a881ce 2018-11-17 stsp remain = tagmsg_len;
978 f4a881ce 2018-11-17 stsp while (remain > 0) {
979 f4a881ce 2018-11-17 stsp size_t n = MIN(MAX_IMSGSIZE - IMSG_HEADER_SIZE, remain);
980 f4a881ce 2018-11-17 stsp
981 f4a881ce 2018-11-17 stsp if (imsg_compose(ibuf, GOT_IMSG_TAG_TAGMSG, 0, 0, -1,
982 f4a881ce 2018-11-17 stsp tag->tagmsg + offset, n) == -1) {
983 638f9024 2019-05-13 stsp err = got_error_from_errno("imsg_compose TAG_TAGMSG");
984 f4a881ce 2018-11-17 stsp break;
985 f4a881ce 2018-11-17 stsp }
986 f4a881ce 2018-11-17 stsp
987 f4a881ce 2018-11-17 stsp err = flush_imsg(ibuf);
988 f4a881ce 2018-11-17 stsp if (err)
989 f4a881ce 2018-11-17 stsp break;
990 f4a881ce 2018-11-17 stsp
991 f4a881ce 2018-11-17 stsp offset += n;
992 f4a881ce 2018-11-17 stsp remain -= n;
993 f4a881ce 2018-11-17 stsp }
994 f4a881ce 2018-11-17 stsp
995 f4a881ce 2018-11-17 stsp return err;
996 f4a881ce 2018-11-17 stsp }
997 f4a881ce 2018-11-17 stsp
998 f4a881ce 2018-11-17 stsp const struct got_error *
999 f4a881ce 2018-11-17 stsp got_privsep_send_tag(struct imsgbuf *ibuf, struct got_tag_object *tag)
1000 f4a881ce 2018-11-17 stsp {
1001 f4a881ce 2018-11-17 stsp const struct got_error *err = NULL;
1002 f4a881ce 2018-11-17 stsp struct got_imsg_tag_object *itag;
1003 f4a881ce 2018-11-17 stsp uint8_t *buf;
1004 f4a881ce 2018-11-17 stsp size_t len, total;
1005 f4a881ce 2018-11-17 stsp size_t tag_len = strlen(tag->tag);
1006 f4a881ce 2018-11-17 stsp size_t tagger_len = strlen(tag->tagger);
1007 f4a881ce 2018-11-17 stsp size_t tagmsg_len = strlen(tag->tagmsg);
1008 f4a881ce 2018-11-17 stsp
1009 f4a881ce 2018-11-17 stsp total = sizeof(*itag) + tag_len + tagger_len + tagmsg_len;
1010 f4a881ce 2018-11-17 stsp
1011 f4a881ce 2018-11-17 stsp buf = malloc(total);
1012 f4a881ce 2018-11-17 stsp if (buf == NULL)
1013 638f9024 2019-05-13 stsp return got_error_from_errno("malloc");
1014 f4a881ce 2018-11-17 stsp
1015 f4a881ce 2018-11-17 stsp itag = (struct got_imsg_tag_object *)buf;
1016 f4a881ce 2018-11-17 stsp memcpy(itag->id, tag->id.sha1, sizeof(itag->id));
1017 f4a881ce 2018-11-17 stsp itag->obj_type = tag->obj_type;
1018 f4a881ce 2018-11-17 stsp itag->tag_len = tag_len;
1019 f4a881ce 2018-11-17 stsp itag->tagger_len = tagger_len;
1020 f4a881ce 2018-11-17 stsp itag->tagger_time = tag->tagger_time;
1021 f4a881ce 2018-11-17 stsp itag->tagger_gmtoff = tag->tagger_gmtoff;
1022 f4a881ce 2018-11-17 stsp itag->tagmsg_len = tagmsg_len;
1023 f4a881ce 2018-11-17 stsp
1024 f4a881ce 2018-11-17 stsp len = sizeof(*itag);
1025 f4a881ce 2018-11-17 stsp memcpy(buf + len, tag->tag, tag_len);
1026 f4a881ce 2018-11-17 stsp len += tag_len;
1027 f4a881ce 2018-11-17 stsp memcpy(buf + len, tag->tagger, tagger_len);
1028 f4a881ce 2018-11-17 stsp len += tagger_len;
1029 f4a881ce 2018-11-17 stsp
1030 f4a881ce 2018-11-17 stsp if (imsg_compose(ibuf, GOT_IMSG_TAG, 0, 0, -1, buf, len) == -1) {
1031 638f9024 2019-05-13 stsp err = got_error_from_errno("imsg_compose TAG");
1032 f4a881ce 2018-11-17 stsp goto done;
1033 f4a881ce 2018-11-17 stsp }
1034 f4a881ce 2018-11-17 stsp
1035 f4a881ce 2018-11-17 stsp if (tagmsg_len == 0 ||
1036 f4a881ce 2018-11-17 stsp tagmsg_len + len > MAX_IMSGSIZE - IMSG_HEADER_SIZE) {
1037 f4a881ce 2018-11-17 stsp err = flush_imsg(ibuf);
1038 f4a881ce 2018-11-17 stsp if (err)
1039 f4a881ce 2018-11-17 stsp goto done;
1040 f4a881ce 2018-11-17 stsp }
1041 f4a881ce 2018-11-17 stsp err = send_tagmsg(ibuf, tag, tagmsg_len);
1042 f4a881ce 2018-11-17 stsp done:
1043 f4a881ce 2018-11-17 stsp free(buf);
1044 f4a881ce 2018-11-17 stsp return err;
1045 f4a881ce 2018-11-17 stsp }
1046 f4a881ce 2018-11-17 stsp
1047 f4a881ce 2018-11-17 stsp const struct got_error *
1048 f4a881ce 2018-11-17 stsp got_privsep_recv_tag(struct got_tag_object **tag, struct imsgbuf *ibuf)
1049 f4a881ce 2018-11-17 stsp {
1050 f4a881ce 2018-11-17 stsp const struct got_error *err = NULL;
1051 f4a881ce 2018-11-17 stsp struct imsg imsg;
1052 f4a881ce 2018-11-17 stsp struct got_imsg_tag_object *itag;
1053 f4a881ce 2018-11-17 stsp size_t len, datalen;
1054 f4a881ce 2018-11-17 stsp const size_t min_datalen =
1055 f4a881ce 2018-11-17 stsp MIN(sizeof(struct got_imsg_error),
1056 f4a881ce 2018-11-17 stsp sizeof(struct got_imsg_tag_object));
1057 f4a881ce 2018-11-17 stsp
1058 f4a881ce 2018-11-17 stsp *tag = NULL;
1059 f4a881ce 2018-11-17 stsp
1060 f4a881ce 2018-11-17 stsp err = got_privsep_recv_imsg(&imsg, ibuf, min_datalen);
1061 f4a881ce 2018-11-17 stsp if (err)
1062 f4a881ce 2018-11-17 stsp return err;
1063 f4a881ce 2018-11-17 stsp
1064 f4a881ce 2018-11-17 stsp datalen = imsg.hdr.len - IMSG_HEADER_SIZE;
1065 f4a881ce 2018-11-17 stsp len = 0;
1066 f4a881ce 2018-11-17 stsp
1067 f4a881ce 2018-11-17 stsp switch (imsg.hdr.type) {
1068 f4a881ce 2018-11-17 stsp case GOT_IMSG_TAG:
1069 f4a881ce 2018-11-17 stsp if (datalen < sizeof(*itag)) {
1070 f4a881ce 2018-11-17 stsp err = got_error(GOT_ERR_PRIVSEP_LEN);
1071 f4a881ce 2018-11-17 stsp break;
1072 f4a881ce 2018-11-17 stsp }
1073 f4a881ce 2018-11-17 stsp itag = imsg.data;
1074 f4a881ce 2018-11-17 stsp if (datalen != sizeof(*itag) + itag->tag_len +
1075 f4a881ce 2018-11-17 stsp itag->tagger_len) {
1076 f4a881ce 2018-11-17 stsp err = got_error(GOT_ERR_PRIVSEP_LEN);
1077 f4a881ce 2018-11-17 stsp break;
1078 f4a881ce 2018-11-17 stsp }
1079 f4a881ce 2018-11-17 stsp len += sizeof(*itag);
1080 f4a881ce 2018-11-17 stsp
1081 f4a881ce 2018-11-17 stsp *tag = calloc(1, sizeof(**tag));
1082 f4a881ce 2018-11-17 stsp if (*tag == NULL) {
1083 638f9024 2019-05-13 stsp err = got_error_from_errno("calloc");
1084 f4a881ce 2018-11-17 stsp break;
1085 f4a881ce 2018-11-17 stsp }
1086 f4a881ce 2018-11-17 stsp
1087 f4a881ce 2018-11-17 stsp memcpy((*tag)->id.sha1, itag->id, SHA1_DIGEST_LENGTH);
1088 f4a881ce 2018-11-17 stsp
1089 f4a881ce 2018-11-17 stsp if (itag->tag_len == 0) {
1090 f4a881ce 2018-11-17 stsp (*tag)->tag = strdup("");
1091 f4a881ce 2018-11-17 stsp if ((*tag)->tag == NULL) {
1092 638f9024 2019-05-13 stsp err = got_error_from_errno("strdup");
1093 f4a881ce 2018-11-17 stsp break;
1094 f4a881ce 2018-11-17 stsp }
1095 f4a881ce 2018-11-17 stsp } else {
1096 f4a881ce 2018-11-17 stsp (*tag)->tag = malloc(itag->tag_len + 1);
1097 f4a881ce 2018-11-17 stsp if ((*tag)->tag == NULL) {
1098 638f9024 2019-05-13 stsp err = got_error_from_errno("malloc");
1099 f4a881ce 2018-11-17 stsp break;
1100 f4a881ce 2018-11-17 stsp }
1101 f4a881ce 2018-11-17 stsp memcpy((*tag)->tag, imsg.data + len,
1102 f4a881ce 2018-11-17 stsp itag->tag_len);
1103 f4a881ce 2018-11-17 stsp (*tag)->tag[itag->tag_len] = '\0';
1104 f4a881ce 2018-11-17 stsp }
1105 f4a881ce 2018-11-17 stsp len += itag->tag_len;
1106 f4a881ce 2018-11-17 stsp
1107 f4a881ce 2018-11-17 stsp (*tag)->obj_type = itag->obj_type;
1108 f4a881ce 2018-11-17 stsp (*tag)->tagger_time = itag->tagger_time;
1109 f4a881ce 2018-11-17 stsp (*tag)->tagger_gmtoff = itag->tagger_gmtoff;
1110 f4a881ce 2018-11-17 stsp
1111 f4a881ce 2018-11-17 stsp if (itag->tagger_len == 0) {
1112 f4a881ce 2018-11-17 stsp (*tag)->tagger = strdup("");
1113 f4a881ce 2018-11-17 stsp if ((*tag)->tagger == NULL) {
1114 638f9024 2019-05-13 stsp err = got_error_from_errno("strdup");
1115 f4a881ce 2018-11-17 stsp break;
1116 f4a881ce 2018-11-17 stsp }
1117 f4a881ce 2018-11-17 stsp } else {
1118 f4a881ce 2018-11-17 stsp (*tag)->tagger = malloc(itag->tagger_len + 1);
1119 f4a881ce 2018-11-17 stsp if ((*tag)->tagger == NULL) {
1120 638f9024 2019-05-13 stsp err = got_error_from_errno("malloc");
1121 f4a881ce 2018-11-17 stsp break;
1122 f4a881ce 2018-11-17 stsp }
1123 f4a881ce 2018-11-17 stsp memcpy((*tag)->tagger, imsg.data + len,
1124 f4a881ce 2018-11-17 stsp itag->tagger_len);
1125 f4a881ce 2018-11-17 stsp (*tag)->tagger[itag->tagger_len] = '\0';
1126 f4a881ce 2018-11-17 stsp }
1127 f4a881ce 2018-11-17 stsp len += itag->tagger_len;
1128 f4a881ce 2018-11-17 stsp
1129 f4a881ce 2018-11-17 stsp if (itag->tagmsg_len == 0) {
1130 f4a881ce 2018-11-17 stsp (*tag)->tagmsg = strdup("");
1131 f4a881ce 2018-11-17 stsp if ((*tag)->tagmsg == NULL) {
1132 638f9024 2019-05-13 stsp err = got_error_from_errno("strdup");
1133 f4a881ce 2018-11-17 stsp break;
1134 f4a881ce 2018-11-17 stsp }
1135 f4a881ce 2018-11-17 stsp } else {
1136 f4a881ce 2018-11-17 stsp size_t offset = 0, remain = itag->tagmsg_len;
1137 f4a881ce 2018-11-17 stsp
1138 f4a881ce 2018-11-17 stsp (*tag)->tagmsg = malloc(itag->tagmsg_len + 1);
1139 f4a881ce 2018-11-17 stsp if ((*tag)->tagmsg == NULL) {
1140 638f9024 2019-05-13 stsp err = got_error_from_errno("malloc");
1141 f4a881ce 2018-11-17 stsp break;
1142 f4a881ce 2018-11-17 stsp }
1143 f4a881ce 2018-11-17 stsp while (remain > 0) {
1144 f4a881ce 2018-11-17 stsp struct imsg imsg_log;
1145 f4a881ce 2018-11-17 stsp size_t n = MIN(MAX_IMSGSIZE - IMSG_HEADER_SIZE,
1146 f4a881ce 2018-11-17 stsp remain);
1147 f4a881ce 2018-11-17 stsp
1148 f4a881ce 2018-11-17 stsp err = got_privsep_recv_imsg(&imsg_log, ibuf, n);
1149 f4a881ce 2018-11-17 stsp if (err)
1150 f4a881ce 2018-11-17 stsp return err;
1151 f4a881ce 2018-11-17 stsp
1152 f4a881ce 2018-11-17 stsp if (imsg_log.hdr.type != GOT_IMSG_TAG_TAGMSG)
1153 f4a881ce 2018-11-17 stsp return got_error(GOT_ERR_PRIVSEP_MSG);
1154 f4a881ce 2018-11-17 stsp
1155 f4a881ce 2018-11-17 stsp memcpy((*tag)->tagmsg + offset, imsg_log.data,
1156 f4a881ce 2018-11-17 stsp n);
1157 f4a881ce 2018-11-17 stsp imsg_free(&imsg_log);
1158 f4a881ce 2018-11-17 stsp offset += n;
1159 f4a881ce 2018-11-17 stsp remain -= n;
1160 f4a881ce 2018-11-17 stsp }
1161 f4a881ce 2018-11-17 stsp (*tag)->tagmsg[itag->tagmsg_len] = '\0';
1162 f4a881ce 2018-11-17 stsp }
1163 f4a881ce 2018-11-17 stsp
1164 ff6b18f8 2018-04-24 stsp break;
1165 ff6b18f8 2018-04-24 stsp default:
1166 ff6b18f8 2018-04-24 stsp err = got_error(GOT_ERR_PRIVSEP_MSG);
1167 ff6b18f8 2018-04-24 stsp break;
1168 e033d803 2018-04-23 stsp }
1169 e033d803 2018-04-23 stsp
1170 ff6b18f8 2018-04-24 stsp imsg_free(&imsg);
1171 ff6b18f8 2018-04-24 stsp
1172 2178c42e 2018-04-22 stsp return err;
1173 2178c42e 2018-04-22 stsp }
1174 876c234b 2018-09-10 stsp
1175 876c234b 2018-09-10 stsp const struct got_error *
1176 876c234b 2018-09-10 stsp got_privsep_init_pack_child(struct imsgbuf *ibuf, struct got_pack *pack,
1177 876c234b 2018-09-10 stsp struct got_packidx *packidx)
1178 876c234b 2018-09-10 stsp {
1179 41496140 2019-02-21 stsp const struct got_error *err = NULL;
1180 876c234b 2018-09-10 stsp struct got_imsg_packidx ipackidx;
1181 876c234b 2018-09-10 stsp struct got_imsg_pack ipack;
1182 876c234b 2018-09-10 stsp int fd;
1183 876c234b 2018-09-10 stsp
1184 876c234b 2018-09-10 stsp ipackidx.len = packidx->len;
1185 876c234b 2018-09-10 stsp fd = dup(packidx->fd);
1186 876c234b 2018-09-10 stsp if (fd == -1)
1187 638f9024 2019-05-13 stsp return got_error_from_errno("dup");
1188 876c234b 2018-09-10 stsp
1189 876c234b 2018-09-10 stsp if (imsg_compose(ibuf, GOT_IMSG_PACKIDX, 0, 0, fd, &ipackidx,
1190 41496140 2019-02-21 stsp sizeof(ipackidx)) == -1) {
1191 638f9024 2019-05-13 stsp err = got_error_from_errno("imsg_compose PACKIDX");
1192 41496140 2019-02-21 stsp close(fd);
1193 41496140 2019-02-21 stsp return err;
1194 41496140 2019-02-21 stsp }
1195 876c234b 2018-09-10 stsp
1196 876c234b 2018-09-10 stsp if (strlcpy(ipack.path_packfile, pack->path_packfile,
1197 876c234b 2018-09-10 stsp sizeof(ipack.path_packfile)) >= sizeof(ipack.path_packfile))
1198 876c234b 2018-09-10 stsp return got_error(GOT_ERR_NO_SPACE);
1199 876c234b 2018-09-10 stsp ipack.filesize = pack->filesize;
1200 876c234b 2018-09-10 stsp
1201 876c234b 2018-09-10 stsp fd = dup(pack->fd);
1202 876c234b 2018-09-10 stsp if (fd == -1)
1203 638f9024 2019-05-13 stsp return got_error_from_errno("dup");
1204 876c234b 2018-09-10 stsp
1205 876c234b 2018-09-10 stsp if (imsg_compose(ibuf, GOT_IMSG_PACK, 0, 0, fd, &ipack, sizeof(ipack))
1206 41496140 2019-02-21 stsp == -1) {
1207 638f9024 2019-05-13 stsp err = got_error_from_errno("imsg_compose PACK");
1208 41496140 2019-02-21 stsp close(fd);
1209 41496140 2019-02-21 stsp return err;
1210 41496140 2019-02-21 stsp }
1211 876c234b 2018-09-10 stsp
1212 876c234b 2018-09-10 stsp return flush_imsg(ibuf);
1213 876c234b 2018-09-10 stsp }
1214 876c234b 2018-09-10 stsp
1215 876c234b 2018-09-10 stsp const struct got_error *
1216 106807b4 2018-09-15 stsp got_privsep_send_packed_obj_req(struct imsgbuf *ibuf, int idx,
1217 106807b4 2018-09-15 stsp struct got_object_id *id)
1218 876c234b 2018-09-10 stsp {
1219 876c234b 2018-09-10 stsp struct got_imsg_packed_object iobj;
1220 876c234b 2018-09-10 stsp
1221 876c234b 2018-09-10 stsp iobj.idx = idx;
1222 106807b4 2018-09-15 stsp memcpy(iobj.id, id->sha1, sizeof(iobj.id));
1223 876c234b 2018-09-10 stsp
1224 876c234b 2018-09-10 stsp if (imsg_compose(ibuf, GOT_IMSG_PACKED_OBJECT_REQUEST, 0, 0, -1,
1225 876c234b 2018-09-10 stsp &iobj, sizeof(iobj)) == -1)
1226 638f9024 2019-05-13 stsp return got_error_from_errno("imsg_compose "
1227 230a42bd 2019-05-11 jcs "PACKED_OBJECT_REQUEST");
1228 aba9c984 2019-09-08 stsp
1229 aba9c984 2019-09-08 stsp return flush_imsg(ibuf);
1230 aba9c984 2019-09-08 stsp }
1231 aba9c984 2019-09-08 stsp
1232 aba9c984 2019-09-08 stsp const struct got_error *
1233 aba9c984 2019-09-08 stsp got_privsep_send_gitconfig_parse_req(struct imsgbuf *ibuf, int fd)
1234 aba9c984 2019-09-08 stsp {
1235 aba9c984 2019-09-08 stsp const struct got_error *err = NULL;
1236 aba9c984 2019-09-08 stsp
1237 aba9c984 2019-09-08 stsp if (imsg_compose(ibuf, GOT_IMSG_GITCONFIG_PARSE_REQUEST, 0, 0, fd,
1238 aba9c984 2019-09-08 stsp NULL, 0) == -1) {
1239 aba9c984 2019-09-08 stsp err = got_error_from_errno("imsg_compose "
1240 aba9c984 2019-09-08 stsp "GITCONFIG_PARSE_REQUEST");
1241 aba9c984 2019-09-08 stsp close(fd);
1242 aba9c984 2019-09-08 stsp return err;
1243 aba9c984 2019-09-08 stsp }
1244 aba9c984 2019-09-08 stsp
1245 aba9c984 2019-09-08 stsp return flush_imsg(ibuf);
1246 aba9c984 2019-09-08 stsp }
1247 aba9c984 2019-09-08 stsp
1248 aba9c984 2019-09-08 stsp const struct got_error *
1249 aba9c984 2019-09-08 stsp got_privsep_send_gitconfig_repository_format_version_req(struct imsgbuf *ibuf)
1250 aba9c984 2019-09-08 stsp {
1251 aba9c984 2019-09-08 stsp if (imsg_compose(ibuf,
1252 aba9c984 2019-09-08 stsp GOT_IMSG_GITCONFIG_REPOSITORY_FORMAT_VERSION_REQUEST, 0, 0, -1,
1253 aba9c984 2019-09-08 stsp NULL, 0) == -1)
1254 aba9c984 2019-09-08 stsp return got_error_from_errno("imsg_compose "
1255 aba9c984 2019-09-08 stsp "GITCONFIG_REPOSITORY_FORMAT_VERSION_REQUEST");
1256 aba9c984 2019-09-08 stsp
1257 aba9c984 2019-09-08 stsp return flush_imsg(ibuf);
1258 aba9c984 2019-09-08 stsp }
1259 aba9c984 2019-09-08 stsp
1260 aba9c984 2019-09-08 stsp const struct got_error *
1261 aba9c984 2019-09-08 stsp got_privsep_send_gitconfig_author_name_req(struct imsgbuf *ibuf)
1262 aba9c984 2019-09-08 stsp {
1263 aba9c984 2019-09-08 stsp if (imsg_compose(ibuf,
1264 aba9c984 2019-09-08 stsp GOT_IMSG_GITCONFIG_AUTHOR_NAME_REQUEST, 0, 0, -1, NULL, 0) == -1)
1265 aba9c984 2019-09-08 stsp return got_error_from_errno("imsg_compose "
1266 aba9c984 2019-09-08 stsp "GITCONFIG_AUTHOR_NAME_REQUEST");
1267 aba9c984 2019-09-08 stsp
1268 aba9c984 2019-09-08 stsp return flush_imsg(ibuf);
1269 aba9c984 2019-09-08 stsp }
1270 aba9c984 2019-09-08 stsp
1271 aba9c984 2019-09-08 stsp const struct got_error *
1272 aba9c984 2019-09-08 stsp got_privsep_send_gitconfig_author_email_req(struct imsgbuf *ibuf)
1273 aba9c984 2019-09-08 stsp {
1274 aba9c984 2019-09-08 stsp if (imsg_compose(ibuf,
1275 aba9c984 2019-09-08 stsp GOT_IMSG_GITCONFIG_AUTHOR_EMAIL_REQUEST, 0, 0, -1, NULL, 0) == -1)
1276 aba9c984 2019-09-08 stsp return got_error_from_errno("imsg_compose "
1277 aba9c984 2019-09-08 stsp "GITCONFIG_AUTHOR_EMAIL_REQUEST");
1278 cd95becd 2019-11-29 stsp
1279 cd95becd 2019-11-29 stsp return flush_imsg(ibuf);
1280 cd95becd 2019-11-29 stsp }
1281 cd95becd 2019-11-29 stsp
1282 cd95becd 2019-11-29 stsp const struct got_error *
1283 cd95becd 2019-11-29 stsp got_privsep_send_gitconfig_remotes_req(struct imsgbuf *ibuf)
1284 cd95becd 2019-11-29 stsp {
1285 cd95becd 2019-11-29 stsp if (imsg_compose(ibuf,
1286 cd95becd 2019-11-29 stsp GOT_IMSG_GITCONFIG_REMOTES_REQUEST, 0, 0, -1, NULL, 0) == -1)
1287 cd95becd 2019-11-29 stsp return got_error_from_errno("imsg_compose "
1288 cd95becd 2019-11-29 stsp "GITCONFIG_REMOTE_REQUEST");
1289 aba9c984 2019-09-08 stsp
1290 aba9c984 2019-09-08 stsp return flush_imsg(ibuf);
1291 aba9c984 2019-09-08 stsp }
1292 aba9c984 2019-09-08 stsp
1293 aba9c984 2019-09-08 stsp const struct got_error *
1294 aba9c984 2019-09-08 stsp got_privsep_send_gitconfig_str(struct imsgbuf *ibuf, const char *value)
1295 aba9c984 2019-09-08 stsp {
1296 aba9c984 2019-09-08 stsp size_t len = value ? strlen(value) + 1 : 0;
1297 aba9c984 2019-09-08 stsp
1298 aba9c984 2019-09-08 stsp if (imsg_compose(ibuf, GOT_IMSG_GITCONFIG_STR_VAL, 0, 0, -1,
1299 aba9c984 2019-09-08 stsp value, len) == -1)
1300 aba9c984 2019-09-08 stsp return got_error_from_errno("imsg_compose GITCONFIG_STR_VAL");
1301 aba9c984 2019-09-08 stsp
1302 aba9c984 2019-09-08 stsp return flush_imsg(ibuf);
1303 aba9c984 2019-09-08 stsp }
1304 aba9c984 2019-09-08 stsp
1305 aba9c984 2019-09-08 stsp const struct got_error *
1306 aba9c984 2019-09-08 stsp got_privsep_recv_gitconfig_str(char **str, struct imsgbuf *ibuf)
1307 aba9c984 2019-09-08 stsp {
1308 aba9c984 2019-09-08 stsp const struct got_error *err = NULL;
1309 aba9c984 2019-09-08 stsp struct imsg imsg;
1310 aba9c984 2019-09-08 stsp size_t datalen;
1311 aba9c984 2019-09-08 stsp const size_t min_datalen = 0;
1312 aba9c984 2019-09-08 stsp
1313 aba9c984 2019-09-08 stsp *str = NULL;
1314 aba9c984 2019-09-08 stsp
1315 aba9c984 2019-09-08 stsp err = got_privsep_recv_imsg(&imsg, ibuf, min_datalen);
1316 aba9c984 2019-09-08 stsp if (err)
1317 aba9c984 2019-09-08 stsp return err;
1318 aba9c984 2019-09-08 stsp datalen = imsg.hdr.len - IMSG_HEADER_SIZE;
1319 aba9c984 2019-09-08 stsp
1320 aba9c984 2019-09-08 stsp switch (imsg.hdr.type) {
1321 aba9c984 2019-09-08 stsp case GOT_IMSG_GITCONFIG_STR_VAL:
1322 aba9c984 2019-09-08 stsp if (datalen == 0)
1323 aba9c984 2019-09-08 stsp break;
1324 aba9c984 2019-09-08 stsp *str = malloc(datalen);
1325 aba9c984 2019-09-08 stsp if (*str == NULL) {
1326 aba9c984 2019-09-08 stsp err = got_error_from_errno("malloc");
1327 aba9c984 2019-09-08 stsp break;
1328 aba9c984 2019-09-08 stsp }
1329 aba9c984 2019-09-08 stsp if (strlcpy(*str, imsg.data, datalen) >= datalen)
1330 aba9c984 2019-09-08 stsp err = got_error(GOT_ERR_NO_SPACE);
1331 aba9c984 2019-09-08 stsp break;
1332 aba9c984 2019-09-08 stsp default:
1333 aba9c984 2019-09-08 stsp err = got_error(GOT_ERR_PRIVSEP_MSG);
1334 aba9c984 2019-09-08 stsp break;
1335 aba9c984 2019-09-08 stsp }
1336 876c234b 2018-09-10 stsp
1337 aba9c984 2019-09-08 stsp imsg_free(&imsg);
1338 aba9c984 2019-09-08 stsp return err;
1339 aba9c984 2019-09-08 stsp }
1340 aba9c984 2019-09-08 stsp
1341 aba9c984 2019-09-08 stsp const struct got_error *
1342 aba9c984 2019-09-08 stsp got_privsep_send_gitconfig_int(struct imsgbuf *ibuf, int value)
1343 aba9c984 2019-09-08 stsp {
1344 aba9c984 2019-09-08 stsp if (imsg_compose(ibuf, GOT_IMSG_GITCONFIG_INT_VAL, 0, 0, -1,
1345 aba9c984 2019-09-08 stsp &value, sizeof(value)) == -1)
1346 aba9c984 2019-09-08 stsp return got_error_from_errno("imsg_compose GITCONFIG_INT_VAL");
1347 aba9c984 2019-09-08 stsp
1348 876c234b 2018-09-10 stsp return flush_imsg(ibuf);
1349 63219cd2 2019-01-04 stsp }
1350 63219cd2 2019-01-04 stsp
1351 63219cd2 2019-01-04 stsp const struct got_error *
1352 aba9c984 2019-09-08 stsp got_privsep_recv_gitconfig_int(int *val, struct imsgbuf *ibuf)
1353 aba9c984 2019-09-08 stsp {
1354 aba9c984 2019-09-08 stsp const struct got_error *err = NULL;
1355 aba9c984 2019-09-08 stsp struct imsg imsg;
1356 aba9c984 2019-09-08 stsp size_t datalen;
1357 aba9c984 2019-09-08 stsp const size_t min_datalen =
1358 aba9c984 2019-09-08 stsp MIN(sizeof(struct got_imsg_error), sizeof(int));
1359 aba9c984 2019-09-08 stsp
1360 aba9c984 2019-09-08 stsp *val = 0;
1361 aba9c984 2019-09-08 stsp
1362 aba9c984 2019-09-08 stsp err = got_privsep_recv_imsg(&imsg, ibuf, min_datalen);
1363 aba9c984 2019-09-08 stsp if (err)
1364 aba9c984 2019-09-08 stsp return err;
1365 aba9c984 2019-09-08 stsp datalen = imsg.hdr.len - IMSG_HEADER_SIZE;
1366 aba9c984 2019-09-08 stsp
1367 aba9c984 2019-09-08 stsp switch (imsg.hdr.type) {
1368 aba9c984 2019-09-08 stsp case GOT_IMSG_GITCONFIG_INT_VAL:
1369 aba9c984 2019-09-08 stsp if (datalen != sizeof(*val)) {
1370 aba9c984 2019-09-08 stsp err = got_error(GOT_ERR_PRIVSEP_LEN);
1371 aba9c984 2019-09-08 stsp break;
1372 aba9c984 2019-09-08 stsp }
1373 aba9c984 2019-09-08 stsp memcpy(val, imsg.data, sizeof(*val));
1374 cd95becd 2019-11-29 stsp break;
1375 cd95becd 2019-11-29 stsp default:
1376 cd95becd 2019-11-29 stsp err = got_error(GOT_ERR_PRIVSEP_MSG);
1377 cd95becd 2019-11-29 stsp break;
1378 cd95becd 2019-11-29 stsp }
1379 cd95becd 2019-11-29 stsp
1380 cd95becd 2019-11-29 stsp imsg_free(&imsg);
1381 cd95becd 2019-11-29 stsp return err;
1382 cd95becd 2019-11-29 stsp }
1383 cd95becd 2019-11-29 stsp
1384 cd95becd 2019-11-29 stsp const struct got_error *
1385 cd95becd 2019-11-29 stsp got_privsep_send_gitconfig_remotes(struct imsgbuf *ibuf,
1386 cd95becd 2019-11-29 stsp struct got_remote_repo *remotes, int nremotes)
1387 cd95becd 2019-11-29 stsp {
1388 cd95becd 2019-11-29 stsp const struct got_error *err = NULL;
1389 cd95becd 2019-11-29 stsp struct got_imsg_remotes iremotes;
1390 cd95becd 2019-11-29 stsp int i;
1391 cd95becd 2019-11-29 stsp
1392 cd95becd 2019-11-29 stsp iremotes.nremotes = nremotes;
1393 cd95becd 2019-11-29 stsp if (imsg_compose(ibuf, GOT_IMSG_GITCONFIG_REMOTES, 0, 0, -1,
1394 cd95becd 2019-11-29 stsp &iremotes, sizeof(iremotes)) == -1)
1395 cd95becd 2019-11-29 stsp return got_error_from_errno("imsg_compose GITCONFIG_REMOTES");
1396 cd95becd 2019-11-29 stsp
1397 cd95becd 2019-11-29 stsp err = flush_imsg(ibuf);
1398 cd95becd 2019-11-29 stsp imsg_clear(ibuf);
1399 cd95becd 2019-11-29 stsp if (err)
1400 cd95becd 2019-11-29 stsp return err;
1401 cd95becd 2019-11-29 stsp
1402 cd95becd 2019-11-29 stsp for (i = 0; i < nremotes; i++) {
1403 cd95becd 2019-11-29 stsp struct got_imsg_remote iremote;
1404 cd95becd 2019-11-29 stsp size_t len = sizeof(iremote);
1405 cd95becd 2019-11-29 stsp struct ibuf *wbuf;
1406 cd95becd 2019-11-29 stsp
1407 cd95becd 2019-11-29 stsp iremote.name_len = strlen(remotes[i].name);
1408 cd95becd 2019-11-29 stsp len += iremote.name_len;
1409 cd95becd 2019-11-29 stsp iremote.url_len = strlen(remotes[i].url);
1410 cd95becd 2019-11-29 stsp len += iremote.url_len;
1411 cd95becd 2019-11-29 stsp
1412 cd95becd 2019-11-29 stsp wbuf = imsg_create(ibuf, GOT_IMSG_GITCONFIG_REMOTE, 0, 0, len);
1413 cd95becd 2019-11-29 stsp if (wbuf == NULL)
1414 cd95becd 2019-11-29 stsp return got_error_from_errno(
1415 cd95becd 2019-11-29 stsp "imsg_create GITCONFIG_REMOTE");
1416 cd95becd 2019-11-29 stsp
1417 cd95becd 2019-11-29 stsp if (imsg_add(wbuf, &iremote, sizeof(iremote)) == -1) {
1418 cd95becd 2019-11-29 stsp err = got_error_from_errno(
1419 cd95becd 2019-11-29 stsp "imsg_add GIITCONFIG_REMOTE");
1420 cd95becd 2019-11-29 stsp ibuf_free(wbuf);
1421 cd95becd 2019-11-29 stsp return err;
1422 cd95becd 2019-11-29 stsp }
1423 cd95becd 2019-11-29 stsp
1424 cd95becd 2019-11-29 stsp if (imsg_add(wbuf, remotes[i].name, iremote.name_len) == -1) {
1425 cd95becd 2019-11-29 stsp err = got_error_from_errno(
1426 cd95becd 2019-11-29 stsp "imsg_add GIITCONFIG_REMOTE");
1427 cd95becd 2019-11-29 stsp ibuf_free(wbuf);
1428 cd95becd 2019-11-29 stsp return err;
1429 cd95becd 2019-11-29 stsp }
1430 cd95becd 2019-11-29 stsp if (imsg_add(wbuf, remotes[i].url, iremote.url_len) == -1) {
1431 cd95becd 2019-11-29 stsp err = got_error_from_errno(
1432 cd95becd 2019-11-29 stsp "imsg_add GIITCONFIG_REMOTE");
1433 cd95becd 2019-11-29 stsp ibuf_free(wbuf);
1434 cd95becd 2019-11-29 stsp return err;
1435 cd95becd 2019-11-29 stsp }
1436 cd95becd 2019-11-29 stsp
1437 cd95becd 2019-11-29 stsp wbuf->fd = -1;
1438 cd95becd 2019-11-29 stsp imsg_close(ibuf, wbuf);
1439 cd95becd 2019-11-29 stsp err = flush_imsg(ibuf);
1440 cd95becd 2019-11-29 stsp if (err)
1441 cd95becd 2019-11-29 stsp return err;
1442 cd95becd 2019-11-29 stsp }
1443 cd95becd 2019-11-29 stsp
1444 cd95becd 2019-11-29 stsp return NULL;
1445 cd95becd 2019-11-29 stsp }
1446 cd95becd 2019-11-29 stsp
1447 cd95becd 2019-11-29 stsp const struct got_error *
1448 cd95becd 2019-11-29 stsp got_privsep_recv_gitconfig_remotes(struct got_remote_repo **remotes,
1449 cd95becd 2019-11-29 stsp int *nremotes, struct imsgbuf *ibuf)
1450 cd95becd 2019-11-29 stsp {
1451 cd95becd 2019-11-29 stsp const struct got_error *err = NULL;
1452 cd95becd 2019-11-29 stsp struct imsg imsg;
1453 cd95becd 2019-11-29 stsp size_t datalen;
1454 cd95becd 2019-11-29 stsp struct got_imsg_remotes iremotes;
1455 cd95becd 2019-11-29 stsp struct got_imsg_remote iremote;
1456 cd95becd 2019-11-29 stsp
1457 cd95becd 2019-11-29 stsp *remotes = NULL;
1458 cd95becd 2019-11-29 stsp *nremotes = 0;
1459 cd95becd 2019-11-29 stsp
1460 cd95becd 2019-11-29 stsp err = got_privsep_recv_imsg(&imsg, ibuf, sizeof(iremotes));
1461 cd95becd 2019-11-29 stsp if (err)
1462 cd95becd 2019-11-29 stsp return err;
1463 cd95becd 2019-11-29 stsp datalen = imsg.hdr.len - IMSG_HEADER_SIZE;
1464 cd95becd 2019-11-29 stsp
1465 cd95becd 2019-11-29 stsp switch (imsg.hdr.type) {
1466 cd95becd 2019-11-29 stsp case GOT_IMSG_GITCONFIG_REMOTES:
1467 cd95becd 2019-11-29 stsp if (datalen != sizeof(iremotes)) {
1468 cd95becd 2019-11-29 stsp err = got_error(GOT_ERR_PRIVSEP_LEN);
1469 cd95becd 2019-11-29 stsp break;
1470 cd95becd 2019-11-29 stsp }
1471 cd95becd 2019-11-29 stsp memcpy(&iremotes, imsg.data, sizeof(iremotes));
1472 cd95becd 2019-11-29 stsp if (iremotes.nremotes == 0) {
1473 cd95becd 2019-11-29 stsp imsg_free(&imsg);
1474 cd95becd 2019-11-29 stsp return NULL;
1475 cd95becd 2019-11-29 stsp }
1476 aba9c984 2019-09-08 stsp break;
1477 aba9c984 2019-09-08 stsp default:
1478 aba9c984 2019-09-08 stsp err = got_error(GOT_ERR_PRIVSEP_MSG);
1479 aba9c984 2019-09-08 stsp break;
1480 aba9c984 2019-09-08 stsp }
1481 aba9c984 2019-09-08 stsp
1482 aba9c984 2019-09-08 stsp imsg_free(&imsg);
1483 cd95becd 2019-11-29 stsp
1484 cd95becd 2019-11-29 stsp *remotes = recallocarray(NULL, 0, iremotes.nremotes, sizeof(iremote));
1485 cd95becd 2019-11-29 stsp if (*remotes == NULL)
1486 cd95becd 2019-11-29 stsp return got_error_from_errno("recallocarray");
1487 cd95becd 2019-11-29 stsp
1488 cd95becd 2019-11-29 stsp while (*nremotes < iremotes.nremotes) {
1489 cd95becd 2019-11-29 stsp struct got_remote_repo *remote;
1490 cd95becd 2019-11-29 stsp
1491 cd95becd 2019-11-29 stsp err = got_privsep_recv_imsg(&imsg, ibuf, sizeof(iremote));
1492 cd95becd 2019-11-29 stsp if (err)
1493 cd95becd 2019-11-29 stsp break;
1494 cd95becd 2019-11-29 stsp datalen = imsg.hdr.len - IMSG_HEADER_SIZE;
1495 cd95becd 2019-11-29 stsp
1496 cd95becd 2019-11-29 stsp switch (imsg.hdr.type) {
1497 cd95becd 2019-11-29 stsp case GOT_IMSG_GITCONFIG_REMOTE:
1498 cd95becd 2019-11-29 stsp remote = &(*remotes)[*nremotes];
1499 cd95becd 2019-11-29 stsp if (datalen < sizeof(iremote)) {
1500 cd95becd 2019-11-29 stsp err = got_error(GOT_ERR_PRIVSEP_LEN);
1501 cd95becd 2019-11-29 stsp break;
1502 cd95becd 2019-11-29 stsp }
1503 cd95becd 2019-11-29 stsp memcpy(&iremote, imsg.data, sizeof(iremote));
1504 cd95becd 2019-11-29 stsp if (iremote.name_len == 0 || iremote.url_len == 0 ||
1505 cd95becd 2019-11-29 stsp (sizeof(iremote) + iremote.name_len +
1506 cd95becd 2019-11-29 stsp iremote.url_len) > datalen) {
1507 cd95becd 2019-11-29 stsp err = got_error(GOT_ERR_PRIVSEP_LEN);
1508 cd95becd 2019-11-29 stsp break;
1509 cd95becd 2019-11-29 stsp }
1510 cd95becd 2019-11-29 stsp remote->name = strndup(imsg.data + sizeof(iremote),
1511 cd95becd 2019-11-29 stsp iremote.name_len);
1512 cd95becd 2019-11-29 stsp if (remote->name == NULL) {
1513 cd95becd 2019-11-29 stsp err = got_error_from_errno("strndup");
1514 cd95becd 2019-11-29 stsp break;
1515 cd95becd 2019-11-29 stsp }
1516 cd95becd 2019-11-29 stsp remote->url = strndup(imsg.data + sizeof(iremote) +
1517 cd95becd 2019-11-29 stsp iremote.name_len, iremote.url_len);
1518 cd95becd 2019-11-29 stsp if (remote->url == NULL) {
1519 cd95becd 2019-11-29 stsp err = got_error_from_errno("strndup");
1520 cd95becd 2019-11-29 stsp free(remote->name);
1521 cd95becd 2019-11-29 stsp break;
1522 cd95becd 2019-11-29 stsp }
1523 cd95becd 2019-11-29 stsp (*nremotes)++;
1524 cd95becd 2019-11-29 stsp break;
1525 cd95becd 2019-11-29 stsp default:
1526 cd95becd 2019-11-29 stsp err = got_error(GOT_ERR_PRIVSEP_MSG);
1527 cd95becd 2019-11-29 stsp break;
1528 cd95becd 2019-11-29 stsp }
1529 cd95becd 2019-11-29 stsp
1530 cd95becd 2019-11-29 stsp imsg_free(&imsg);
1531 cd95becd 2019-11-29 stsp if (err)
1532 cd95becd 2019-11-29 stsp break;
1533 cd95becd 2019-11-29 stsp }
1534 cd95becd 2019-11-29 stsp
1535 cd95becd 2019-11-29 stsp if (err) {
1536 cd95becd 2019-11-29 stsp int i;
1537 cd95becd 2019-11-29 stsp for (i = 0; i < *nremotes; i++) {
1538 cd95becd 2019-11-29 stsp free((*remotes)[i].name);
1539 cd95becd 2019-11-29 stsp free((*remotes)[i].url);
1540 cd95becd 2019-11-29 stsp }
1541 cd95becd 2019-11-29 stsp free(*remotes);
1542 cd95becd 2019-11-29 stsp *remotes = NULL;
1543 cd95becd 2019-11-29 stsp *nremotes = 0;
1544 cd95becd 2019-11-29 stsp }
1545 aba9c984 2019-09-08 stsp return err;
1546 aba9c984 2019-09-08 stsp }
1547 aba9c984 2019-09-08 stsp
1548 aba9c984 2019-09-08 stsp const struct got_error *
1549 63219cd2 2019-01-04 stsp got_privsep_unveil_exec_helpers(void)
1550 63219cd2 2019-01-04 stsp {
1551 c39c25dd 2019-08-09 stsp const char *helpers[] = {
1552 c39c25dd 2019-08-09 stsp GOT_PATH_PROG_READ_PACK,
1553 c39c25dd 2019-08-09 stsp GOT_PATH_PROG_READ_OBJECT,
1554 c39c25dd 2019-08-09 stsp GOT_PATH_PROG_READ_COMMIT,
1555 c39c25dd 2019-08-09 stsp GOT_PATH_PROG_READ_TREE,
1556 c39c25dd 2019-08-09 stsp GOT_PATH_PROG_READ_BLOB,
1557 c39c25dd 2019-08-09 stsp GOT_PATH_PROG_READ_TAG,
1558 aba9c984 2019-09-08 stsp GOT_PATH_PROG_READ_GITCONFIG,
1559 c39c25dd 2019-08-09 stsp };
1560 c39c25dd 2019-08-09 stsp int i;
1561 63219cd2 2019-01-04 stsp
1562 c39c25dd 2019-08-09 stsp for (i = 0; i < nitems(helpers); i++) {
1563 c39c25dd 2019-08-09 stsp if (unveil(helpers[i], "x") == 0)
1564 c39c25dd 2019-08-09 stsp continue;
1565 c39c25dd 2019-08-09 stsp return got_error_from_errno2("unveil", helpers[i]);
1566 c39c25dd 2019-08-09 stsp }
1567 c39c25dd 2019-08-09 stsp
1568 63219cd2 2019-01-04 stsp return NULL;
1569 876c234b 2018-09-10 stsp }
1570 aba9c984 2019-09-08 stsp
1571 aba9c984 2019-09-08 stsp void
1572 aba9c984 2019-09-08 stsp got_privsep_exec_child(int imsg_fds[2], const char *path, const char *repo_path)
1573 aba9c984 2019-09-08 stsp {
1574 aba9c984 2019-09-08 stsp if (close(imsg_fds[0]) != 0) {
1575 aba9c984 2019-09-08 stsp fprintf(stderr, "%s: %s\n", getprogname(), strerror(errno));
1576 aba9c984 2019-09-08 stsp _exit(1);
1577 aba9c984 2019-09-08 stsp }
1578 aba9c984 2019-09-08 stsp
1579 aba9c984 2019-09-08 stsp if (dup2(imsg_fds[1], GOT_IMSG_FD_CHILD) == -1) {
1580 aba9c984 2019-09-08 stsp fprintf(stderr, "%s: %s\n", getprogname(), strerror(errno));
1581 aba9c984 2019-09-08 stsp _exit(1);
1582 aba9c984 2019-09-08 stsp }
1583 aba9c984 2019-09-08 stsp if (closefrom(GOT_IMSG_FD_CHILD + 1) == -1) {
1584 aba9c984 2019-09-08 stsp fprintf(stderr, "%s: %s\n", getprogname(), strerror(errno));
1585 aba9c984 2019-09-08 stsp _exit(1);
1586 aba9c984 2019-09-08 stsp }
1587 aba9c984 2019-09-08 stsp
1588 aba9c984 2019-09-08 stsp if (execl(path, path, repo_path, (char *)NULL) == -1) {
1589 aba9c984 2019-09-08 stsp fprintf(stderr, "%s: %s: %s\n", getprogname(), path,
1590 aba9c984 2019-09-08 stsp strerror(errno));
1591 aba9c984 2019-09-08 stsp _exit(1);
1592 aba9c984 2019-09-08 stsp }
1593 aba9c984 2019-09-08 stsp }