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 2178c42e 2018-04-22 stsp
21 2178c42e 2018-04-22 stsp #include <stdio.h>
22 2178c42e 2018-04-22 stsp #include <stdlib.h>
23 2178c42e 2018-04-22 stsp #include <string.h>
24 2178c42e 2018-04-22 stsp #include <errno.h>
25 2178c42e 2018-04-22 stsp #include <stdint.h>
26 2178c42e 2018-04-22 stsp #include <poll.h>
27 2178c42e 2018-04-22 stsp #include <imsg.h>
28 2178c42e 2018-04-22 stsp #include <sha1.h>
29 2178c42e 2018-04-22 stsp #include <zlib.h>
30 2178c42e 2018-04-22 stsp
31 2178c42e 2018-04-22 stsp #include "got_object.h"
32 2178c42e 2018-04-22 stsp #include "got_error.h"
33 2178c42e 2018-04-22 stsp
34 2178c42e 2018-04-22 stsp #include "got_lib_sha1.h"
35 2178c42e 2018-04-22 stsp #include "got_lib_delta.h"
36 2178c42e 2018-04-22 stsp #include "got_lib_zbuf.h"
37 2178c42e 2018-04-22 stsp #include "got_lib_object.h"
38 2178c42e 2018-04-22 stsp #include "got_lib_privsep.h"
39 2178c42e 2018-04-22 stsp
40 2178c42e 2018-04-22 stsp #ifndef MIN
41 2178c42e 2018-04-22 stsp #define MIN(_a,_b) ((_a) < (_b) ? (_a) : (_b))
42 2178c42e 2018-04-22 stsp #endif
43 2178c42e 2018-04-22 stsp
44 2178c42e 2018-04-22 stsp static const struct got_error *
45 2178c42e 2018-04-22 stsp poll_fd(int fd, int events, int timeout)
46 2178c42e 2018-04-22 stsp {
47 2178c42e 2018-04-22 stsp struct pollfd pfd[1];
48 2178c42e 2018-04-22 stsp int n;
49 2178c42e 2018-04-22 stsp
50 2178c42e 2018-04-22 stsp pfd[0].fd = fd;
51 2178c42e 2018-04-22 stsp pfd[0].events = events;
52 2178c42e 2018-04-22 stsp
53 2178c42e 2018-04-22 stsp n = poll(pfd, 1, timeout);
54 2178c42e 2018-04-22 stsp if (n == -1)
55 2178c42e 2018-04-22 stsp return got_error_from_errno();
56 2178c42e 2018-04-22 stsp if (n == 0)
57 2178c42e 2018-04-22 stsp return got_error(GOT_ERR_TIMEOUT);
58 2178c42e 2018-04-22 stsp if (pfd[0].revents & (POLLERR | POLLNVAL))
59 2178c42e 2018-04-22 stsp return got_error_from_errno();
60 2178c42e 2018-04-22 stsp if (pfd[0].revents & (events | POLLHUP))
61 2178c42e 2018-04-22 stsp return NULL;
62 2178c42e 2018-04-22 stsp
63 2178c42e 2018-04-22 stsp return got_error(GOT_ERR_INTERRUPT);
64 2178c42e 2018-04-22 stsp }
65 2178c42e 2018-04-22 stsp
66 c4eae628 2018-04-23 stsp static const struct got_error *
67 e033d803 2018-04-23 stsp read_imsg(struct imsgbuf *ibuf)
68 fe36cf76 2018-04-23 stsp {
69 fe36cf76 2018-04-23 stsp const struct got_error *err;
70 e033d803 2018-04-23 stsp size_t n;
71 fe36cf76 2018-04-23 stsp
72 fe36cf76 2018-04-23 stsp err = poll_fd(ibuf->fd, POLLIN, INFTIM);
73 fe36cf76 2018-04-23 stsp if (err)
74 fe36cf76 2018-04-23 stsp return err;
75 fe36cf76 2018-04-23 stsp
76 fe36cf76 2018-04-23 stsp n = imsg_read(ibuf);
77 fe36cf76 2018-04-23 stsp if (n == -1) {
78 fe36cf76 2018-04-23 stsp if (errno == EAGAIN) /* Could be a file-descriptor leak. */
79 fe36cf76 2018-04-23 stsp return got_error(GOT_ERR_PRIVSEP_NO_FD);
80 fe36cf76 2018-04-23 stsp return got_error(GOT_ERR_PRIVSEP_READ);
81 fe36cf76 2018-04-23 stsp }
82 fe36cf76 2018-04-23 stsp if (n == 0)
83 fe36cf76 2018-04-23 stsp return got_error(GOT_ERR_PRIVSEP_PIPE);
84 fe36cf76 2018-04-23 stsp
85 e033d803 2018-04-23 stsp return NULL;
86 e033d803 2018-04-23 stsp }
87 e033d803 2018-04-23 stsp
88 e033d803 2018-04-23 stsp static const struct got_error *
89 e033d803 2018-04-23 stsp recv_one_imsg(struct imsg *imsg, struct imsgbuf *ibuf, size_t min_datalen)
90 e033d803 2018-04-23 stsp {
91 e033d803 2018-04-23 stsp const struct got_error *err;
92 e033d803 2018-04-23 stsp ssize_t n;
93 e033d803 2018-04-23 stsp
94 e033d803 2018-04-23 stsp err = read_imsg(ibuf);
95 e033d803 2018-04-23 stsp if (err)
96 e033d803 2018-04-23 stsp return err;
97 e033d803 2018-04-23 stsp
98 e033d803 2018-04-23 stsp n = imsg_get(ibuf, imsg);
99 e033d803 2018-04-23 stsp if (n == 0)
100 fe36cf76 2018-04-23 stsp return got_error(GOT_ERR_PRIVSEP_READ);
101 fe36cf76 2018-04-23 stsp
102 fe36cf76 2018-04-23 stsp if (imsg->hdr.len < IMSG_HEADER_SIZE + min_datalen)
103 fe36cf76 2018-04-23 stsp return got_error(GOT_ERR_PRIVSEP_LEN);
104 fe36cf76 2018-04-23 stsp
105 fe36cf76 2018-04-23 stsp return NULL;
106 fe36cf76 2018-04-23 stsp }
107 fe36cf76 2018-04-23 stsp
108 fe36cf76 2018-04-23 stsp static const struct got_error *
109 c4eae628 2018-04-23 stsp recv_imsg_error(struct imsg *imsg, size_t datalen)
110 c4eae628 2018-04-23 stsp {
111 c4eae628 2018-04-23 stsp struct got_imsg_error ierr;
112 c4eae628 2018-04-23 stsp
113 c4eae628 2018-04-23 stsp if (datalen != sizeof(ierr))
114 c4eae628 2018-04-23 stsp return got_error(GOT_ERR_PRIVSEP_LEN);
115 c4eae628 2018-04-23 stsp
116 c4eae628 2018-04-23 stsp memcpy(&ierr, imsg->data, sizeof(ierr));
117 c4eae628 2018-04-23 stsp if (ierr.code == GOT_ERR_ERRNO) {
118 c4eae628 2018-04-23 stsp static struct got_error serr;
119 c4eae628 2018-04-23 stsp serr.code = GOT_ERR_ERRNO;
120 c4eae628 2018-04-23 stsp serr.msg = strerror(ierr.errno_code);
121 c4eae628 2018-04-23 stsp return &serr;
122 c4eae628 2018-04-23 stsp }
123 c4eae628 2018-04-23 stsp
124 c4eae628 2018-04-23 stsp return got_error(ierr.code);
125 c4eae628 2018-04-23 stsp }
126 c4eae628 2018-04-23 stsp
127 2178c42e 2018-04-22 stsp /* Attempt to send an error in an imsg. Complain on stderr as a last resort. */
128 2178c42e 2018-04-22 stsp void
129 2178c42e 2018-04-22 stsp got_privsep_send_error(struct imsgbuf *ibuf, const struct got_error *err)
130 2178c42e 2018-04-22 stsp {
131 2178c42e 2018-04-22 stsp const struct got_error *poll_err;
132 2178c42e 2018-04-22 stsp struct got_imsg_error ierr;
133 2178c42e 2018-04-22 stsp int ret;
134 2178c42e 2018-04-22 stsp
135 2178c42e 2018-04-22 stsp ierr.code = err->code;
136 2178c42e 2018-04-22 stsp if (err->code == GOT_ERR_ERRNO)
137 2178c42e 2018-04-22 stsp ierr.errno_code = errno;
138 2178c42e 2018-04-22 stsp else
139 2178c42e 2018-04-22 stsp ierr.errno_code = 0;
140 2178c42e 2018-04-22 stsp ret = imsg_compose(ibuf, GOT_IMSG_ERROR, 0, 0, -1, &ierr, sizeof(ierr));
141 2178c42e 2018-04-22 stsp if (ret != -1) {
142 2178c42e 2018-04-22 stsp fprintf(stderr, "%s: error %d \"%s\": imsg_compose: %s\n",
143 2178c42e 2018-04-22 stsp getprogname(), err->code, err->msg, strerror(errno));
144 5d43e84d 2018-04-23 stsp return;
145 2178c42e 2018-04-22 stsp }
146 2178c42e 2018-04-22 stsp
147 2178c42e 2018-04-22 stsp poll_err = poll_fd(ibuf->fd, POLLOUT, INFTIM);
148 5d43e84d 2018-04-23 stsp if (poll_err) {
149 2178c42e 2018-04-22 stsp fprintf(stderr, "%s: error %d \"%s\": poll: %s\n",
150 2178c42e 2018-04-22 stsp getprogname(), err->code, err->msg, poll_err->msg);
151 5d43e84d 2018-04-23 stsp return;
152 5d43e84d 2018-04-23 stsp }
153 2178c42e 2018-04-22 stsp
154 2178c42e 2018-04-22 stsp ret = imsg_flush(ibuf);
155 5d43e84d 2018-04-23 stsp if (ret == -1) {
156 2178c42e 2018-04-22 stsp fprintf(stderr, "%s: error %d \"%s\": imsg_flush: %s\n",
157 2178c42e 2018-04-22 stsp getprogname(), err->code, err->msg, strerror(errno));
158 5d43e84d 2018-04-23 stsp return;
159 5d43e84d 2018-04-23 stsp }
160 e033d803 2018-04-23 stsp }
161 e033d803 2018-04-23 stsp
162 e033d803 2018-04-23 stsp static const struct got_error *
163 e033d803 2018-04-23 stsp flush_imsg(struct imsgbuf *ibuf)
164 e033d803 2018-04-23 stsp {
165 e033d803 2018-04-23 stsp const struct got_error *err;
166 e033d803 2018-04-23 stsp
167 e033d803 2018-04-23 stsp err = poll_fd(ibuf->fd, POLLOUT, INFTIM);
168 e033d803 2018-04-23 stsp if (err)
169 e033d803 2018-04-23 stsp return err;
170 e033d803 2018-04-23 stsp
171 e033d803 2018-04-23 stsp if (imsg_flush(ibuf) == -1)
172 e033d803 2018-04-23 stsp return got_error_from_errno();
173 e033d803 2018-04-23 stsp
174 e033d803 2018-04-23 stsp return NULL;
175 2178c42e 2018-04-22 stsp }
176 2178c42e 2018-04-22 stsp
177 2178c42e 2018-04-22 stsp const struct got_error *
178 2178c42e 2018-04-22 stsp got_privsep_send_obj(struct imsgbuf *ibuf, struct got_object *obj, int ndeltas)
179 2178c42e 2018-04-22 stsp {
180 2178c42e 2018-04-22 stsp struct got_imsg_object iobj;
181 2178c42e 2018-04-22 stsp
182 2178c42e 2018-04-22 stsp iobj.type = obj->type;
183 2178c42e 2018-04-22 stsp iobj.flags = obj->flags;
184 2178c42e 2018-04-22 stsp iobj.hdrlen = obj->hdrlen;
185 2178c42e 2018-04-22 stsp iobj.size = obj->size;
186 2178c42e 2018-04-22 stsp iobj.ndeltas = ndeltas;
187 2178c42e 2018-04-22 stsp
188 2178c42e 2018-04-22 stsp if (ndeltas > 0) {
189 2178c42e 2018-04-22 stsp /* TODO: Handle deltas */
190 2178c42e 2018-04-22 stsp }
191 2178c42e 2018-04-22 stsp
192 2178c42e 2018-04-22 stsp if (imsg_compose(ibuf, GOT_IMSG_OBJECT, 0, 0, -1, &iobj, sizeof(iobj))
193 2178c42e 2018-04-22 stsp == -1)
194 2178c42e 2018-04-22 stsp return got_error_from_errno();
195 2178c42e 2018-04-22 stsp
196 e033d803 2018-04-23 stsp return flush_imsg(ibuf);
197 2178c42e 2018-04-22 stsp }
198 2178c42e 2018-04-22 stsp
199 2178c42e 2018-04-22 stsp const struct got_error *
200 2178c42e 2018-04-22 stsp got_privsep_recv_obj(struct got_object **obj, struct imsgbuf *ibuf)
201 2178c42e 2018-04-22 stsp {
202 2178c42e 2018-04-22 stsp const struct got_error *err = NULL;
203 2178c42e 2018-04-22 stsp struct imsg imsg;
204 2178c42e 2018-04-22 stsp struct got_imsg_object iobj;
205 2178c42e 2018-04-22 stsp size_t datalen;
206 2178c42e 2018-04-22 stsp int i;
207 c4eae628 2018-04-23 stsp const size_t min_datalen =
208 c4eae628 2018-04-23 stsp MIN(sizeof(struct got_imsg_error), sizeof(struct got_imsg_object));
209 2178c42e 2018-04-22 stsp
210 2178c42e 2018-04-22 stsp *obj = NULL;
211 2178c42e 2018-04-22 stsp
212 fe36cf76 2018-04-23 stsp err = recv_one_imsg(&imsg, ibuf, min_datalen);
213 2178c42e 2018-04-22 stsp if (err)
214 2178c42e 2018-04-22 stsp return err;
215 2178c42e 2018-04-22 stsp
216 2178c42e 2018-04-22 stsp datalen = imsg.hdr.len - IMSG_HEADER_SIZE;
217 2178c42e 2018-04-22 stsp
218 2178c42e 2018-04-22 stsp switch (imsg.hdr.type) {
219 2178c42e 2018-04-22 stsp case GOT_IMSG_ERROR:
220 c4eae628 2018-04-23 stsp err = recv_imsg_error(&imsg, datalen);
221 2178c42e 2018-04-22 stsp break;
222 2178c42e 2018-04-22 stsp case GOT_IMSG_OBJECT:
223 2178c42e 2018-04-22 stsp if (datalen != sizeof(iobj)) {
224 2178c42e 2018-04-22 stsp err = got_error(GOT_ERR_PRIVSEP_LEN);
225 2178c42e 2018-04-22 stsp break;
226 2178c42e 2018-04-22 stsp }
227 2178c42e 2018-04-22 stsp
228 2178c42e 2018-04-22 stsp memcpy(&iobj, imsg.data, sizeof(iobj));
229 2178c42e 2018-04-22 stsp if (iobj.ndeltas < 0 ||
230 2178c42e 2018-04-22 stsp iobj.ndeltas > GOT_DELTA_CHAIN_RECURSION_MAX) {
231 2178c42e 2018-04-22 stsp err = got_error(GOT_ERR_PRIVSEP_LEN);
232 2178c42e 2018-04-22 stsp break;
233 2178c42e 2018-04-22 stsp }
234 2178c42e 2018-04-22 stsp
235 2178c42e 2018-04-22 stsp *obj = calloc(1, sizeof(**obj));
236 2178c42e 2018-04-22 stsp if (*obj == NULL) {
237 2178c42e 2018-04-22 stsp err = got_error_from_errno();
238 2178c42e 2018-04-22 stsp break;
239 2178c42e 2018-04-22 stsp }
240 2178c42e 2018-04-22 stsp
241 2178c42e 2018-04-22 stsp (*obj)->type = iobj.type;
242 2178c42e 2018-04-22 stsp (*obj)->hdrlen = iobj.hdrlen;
243 2178c42e 2018-04-22 stsp (*obj)->size = iobj.size;
244 2178c42e 2018-04-22 stsp for (i = 0; i < iobj.ndeltas; i++) {
245 2178c42e 2018-04-22 stsp /* TODO: Handle deltas */
246 bff6ca00 2018-04-23 stsp }
247 bff6ca00 2018-04-23 stsp break;
248 bff6ca00 2018-04-23 stsp default:
249 bff6ca00 2018-04-23 stsp err = got_error(GOT_ERR_PRIVSEP_MSG);
250 bff6ca00 2018-04-23 stsp break;
251 bff6ca00 2018-04-23 stsp }
252 bff6ca00 2018-04-23 stsp
253 bff6ca00 2018-04-23 stsp imsg_free(&imsg);
254 bff6ca00 2018-04-23 stsp
255 bff6ca00 2018-04-23 stsp return err;
256 bff6ca00 2018-04-23 stsp }
257 bff6ca00 2018-04-23 stsp
258 bff6ca00 2018-04-23 stsp const struct got_error *
259 068fd2bf 2018-04-24 stsp got_privsep_send_commit(struct imsgbuf *ibuf, struct got_commit_object *commit)
260 bff6ca00 2018-04-23 stsp {
261 bff6ca00 2018-04-23 stsp const struct got_error *err = NULL;
262 bff6ca00 2018-04-23 stsp struct got_imsg_commit_object icommit;
263 bff6ca00 2018-04-23 stsp uint8_t *buf;
264 bff6ca00 2018-04-23 stsp size_t len, total;
265 bff6ca00 2018-04-23 stsp struct got_parent_id *pid;
266 bff6ca00 2018-04-23 stsp
267 86acc566 2018-04-23 stsp memcpy(icommit.tree_id, commit->tree_id->sha1, sizeof(icommit.tree_id));
268 bff6ca00 2018-04-23 stsp icommit.author_len = strlen(commit->author);
269 bff6ca00 2018-04-23 stsp icommit.committer_len = strlen(commit->committer);
270 bff6ca00 2018-04-23 stsp icommit.logmsg_len = strlen(commit->logmsg);
271 bff6ca00 2018-04-23 stsp icommit.nparents = commit->nparents;
272 bff6ca00 2018-04-23 stsp
273 bff6ca00 2018-04-23 stsp total = sizeof(icommit) + icommit.author_len +
274 bff6ca00 2018-04-23 stsp icommit.committer_len + icommit.logmsg_len +
275 86acc566 2018-04-23 stsp icommit.nparents * SHA1_DIGEST_LENGTH;
276 bff6ca00 2018-04-23 stsp /* XXX TODO support very large log messages properly */
277 bff6ca00 2018-04-23 stsp if (total > MAX_IMSGSIZE)
278 bff6ca00 2018-04-23 stsp return got_error(GOT_ERR_NO_SPACE);
279 bff6ca00 2018-04-23 stsp
280 bff6ca00 2018-04-23 stsp buf = malloc(total);
281 bff6ca00 2018-04-23 stsp if (buf == NULL)
282 bff6ca00 2018-04-23 stsp return got_error_from_errno();
283 bff6ca00 2018-04-23 stsp
284 bff6ca00 2018-04-23 stsp len = 0;
285 bff6ca00 2018-04-23 stsp memcpy(buf + len, &icommit, sizeof(icommit));
286 bff6ca00 2018-04-23 stsp len += sizeof(icommit);
287 bff6ca00 2018-04-23 stsp memcpy(buf + len, commit->author, icommit.author_len);
288 bff6ca00 2018-04-23 stsp len += icommit.author_len;
289 bff6ca00 2018-04-23 stsp memcpy(buf + len, commit->committer, icommit.committer_len);
290 bff6ca00 2018-04-23 stsp len += icommit.committer_len;
291 bff6ca00 2018-04-23 stsp memcpy(buf + len, commit->logmsg, icommit.logmsg_len);
292 bff6ca00 2018-04-23 stsp len += icommit.logmsg_len;
293 bff6ca00 2018-04-23 stsp SIMPLEQ_FOREACH(pid, &commit->parent_ids, entry) {
294 86acc566 2018-04-23 stsp memcpy(buf + len, pid->id, SHA1_DIGEST_LENGTH);
295 86acc566 2018-04-23 stsp len += SHA1_DIGEST_LENGTH;
296 bff6ca00 2018-04-23 stsp }
297 bff6ca00 2018-04-23 stsp
298 bff6ca00 2018-04-23 stsp if (imsg_compose(ibuf, GOT_IMSG_COMMIT, 0, 0, -1, buf, len) == -1) {
299 bff6ca00 2018-04-23 stsp err = got_error_from_errno();
300 bff6ca00 2018-04-23 stsp goto done;
301 bff6ca00 2018-04-23 stsp }
302 bff6ca00 2018-04-23 stsp
303 e033d803 2018-04-23 stsp err = flush_imsg(ibuf);
304 bff6ca00 2018-04-23 stsp done:
305 bff6ca00 2018-04-23 stsp free(buf);
306 bff6ca00 2018-04-23 stsp return err;
307 bff6ca00 2018-04-23 stsp }
308 bff6ca00 2018-04-23 stsp const struct got_error *
309 068fd2bf 2018-04-24 stsp got_privsep_recv_commit(struct got_commit_object **commit, struct imsgbuf *ibuf)
310 bff6ca00 2018-04-23 stsp {
311 bff6ca00 2018-04-23 stsp const struct got_error *err = NULL;
312 bff6ca00 2018-04-23 stsp struct imsg imsg;
313 bff6ca00 2018-04-23 stsp struct got_imsg_commit_object icommit;
314 bff6ca00 2018-04-23 stsp size_t len, datalen;
315 bff6ca00 2018-04-23 stsp int i;
316 bff6ca00 2018-04-23 stsp const size_t min_datalen =
317 bff6ca00 2018-04-23 stsp MIN(sizeof(struct got_imsg_error),
318 bff6ca00 2018-04-23 stsp sizeof(struct got_imsg_commit_object));
319 bff6ca00 2018-04-23 stsp uint8_t *data;
320 bff6ca00 2018-04-23 stsp
321 bff6ca00 2018-04-23 stsp *commit = NULL;
322 bff6ca00 2018-04-23 stsp
323 bff6ca00 2018-04-23 stsp err = recv_one_imsg(&imsg, ibuf, min_datalen);
324 bff6ca00 2018-04-23 stsp if (err)
325 bff6ca00 2018-04-23 stsp return err;
326 bff6ca00 2018-04-23 stsp
327 bff6ca00 2018-04-23 stsp data = imsg.data;
328 bff6ca00 2018-04-23 stsp datalen = imsg.hdr.len - IMSG_HEADER_SIZE;
329 bff6ca00 2018-04-23 stsp len = 0;
330 bff6ca00 2018-04-23 stsp
331 bff6ca00 2018-04-23 stsp switch (imsg.hdr.type) {
332 bff6ca00 2018-04-23 stsp case GOT_IMSG_ERROR:
333 bff6ca00 2018-04-23 stsp err = recv_imsg_error(&imsg, datalen);
334 bff6ca00 2018-04-23 stsp break;
335 bff6ca00 2018-04-23 stsp case GOT_IMSG_COMMIT:
336 bff6ca00 2018-04-23 stsp if (datalen < sizeof(icommit)) {
337 bff6ca00 2018-04-23 stsp err = got_error(GOT_ERR_PRIVSEP_LEN);
338 bff6ca00 2018-04-23 stsp break;
339 2178c42e 2018-04-22 stsp }
340 bff6ca00 2018-04-23 stsp
341 bff6ca00 2018-04-23 stsp memcpy(&icommit, data, sizeof(icommit));
342 bff6ca00 2018-04-23 stsp if (datalen != sizeof(icommit) + icommit.author_len +
343 bff6ca00 2018-04-23 stsp icommit.committer_len + icommit.logmsg_len +
344 86acc566 2018-04-23 stsp icommit.nparents * SHA1_DIGEST_LENGTH) {
345 bff6ca00 2018-04-23 stsp err = got_error(GOT_ERR_PRIVSEP_LEN);
346 bff6ca00 2018-04-23 stsp break;
347 bff6ca00 2018-04-23 stsp }
348 bff6ca00 2018-04-23 stsp if (icommit.nparents < 0) {
349 bff6ca00 2018-04-23 stsp err = got_error(GOT_ERR_PRIVSEP_LEN);
350 bff6ca00 2018-04-23 stsp break;
351 bff6ca00 2018-04-23 stsp }
352 bff6ca00 2018-04-23 stsp len += sizeof(icommit);
353 bff6ca00 2018-04-23 stsp
354 bff6ca00 2018-04-23 stsp *commit = got_object_commit_alloc_partial();
355 bff6ca00 2018-04-23 stsp if (*commit == NULL) {
356 bff6ca00 2018-04-23 stsp err = got_error_from_errno();
357 bff6ca00 2018-04-23 stsp break;
358 bff6ca00 2018-04-23 stsp }
359 bff6ca00 2018-04-23 stsp
360 86acc566 2018-04-23 stsp memcpy((*commit)->tree_id->sha1, icommit.tree_id,
361 86acc566 2018-04-23 stsp SHA1_DIGEST_LENGTH);
362 bff6ca00 2018-04-23 stsp
363 bff6ca00 2018-04-23 stsp if (icommit.author_len == 0) {
364 bff6ca00 2018-04-23 stsp (*commit)->author = strdup("");
365 bff6ca00 2018-04-23 stsp if ((*commit)->author == NULL) {
366 bff6ca00 2018-04-23 stsp err = got_error_from_errno();
367 bff6ca00 2018-04-23 stsp break;
368 bff6ca00 2018-04-23 stsp }
369 bff6ca00 2018-04-23 stsp } else {
370 bff6ca00 2018-04-23 stsp (*commit)->author = malloc(icommit.author_len + 1);
371 bff6ca00 2018-04-23 stsp if ((*commit)->author == NULL) {
372 bff6ca00 2018-04-23 stsp err = got_error_from_errno();
373 bff6ca00 2018-04-23 stsp break;
374 bff6ca00 2018-04-23 stsp }
375 bff6ca00 2018-04-23 stsp memcpy((*commit)->author, data + len,
376 bff6ca00 2018-04-23 stsp icommit.author_len);
377 bff6ca00 2018-04-23 stsp (*commit)->author[icommit.author_len] = '\0';
378 bff6ca00 2018-04-23 stsp }
379 bff6ca00 2018-04-23 stsp len += icommit.author_len;
380 bff6ca00 2018-04-23 stsp
381 bff6ca00 2018-04-23 stsp if (icommit.committer_len == 0) {
382 bff6ca00 2018-04-23 stsp (*commit)->committer = strdup("");
383 bff6ca00 2018-04-23 stsp if ((*commit)->committer == NULL) {
384 bff6ca00 2018-04-23 stsp err = got_error_from_errno();
385 bff6ca00 2018-04-23 stsp break;
386 bff6ca00 2018-04-23 stsp }
387 bff6ca00 2018-04-23 stsp } else {
388 bff6ca00 2018-04-23 stsp (*commit)->committer =
389 bff6ca00 2018-04-23 stsp malloc(icommit.committer_len + 1);
390 bff6ca00 2018-04-23 stsp if ((*commit)->committer == NULL) {
391 bff6ca00 2018-04-23 stsp err = got_error_from_errno();
392 bff6ca00 2018-04-23 stsp break;
393 bff6ca00 2018-04-23 stsp }
394 bff6ca00 2018-04-23 stsp memcpy((*commit)->committer, data + len,
395 bff6ca00 2018-04-23 stsp icommit.committer_len);
396 bff6ca00 2018-04-23 stsp (*commit)->committer[icommit.committer_len] = '\0';
397 bff6ca00 2018-04-23 stsp }
398 bff6ca00 2018-04-23 stsp len += icommit.committer_len;
399 bff6ca00 2018-04-23 stsp
400 bff6ca00 2018-04-23 stsp if (icommit.logmsg_len == 0) {
401 bff6ca00 2018-04-23 stsp (*commit)->logmsg = strdup("");
402 bff6ca00 2018-04-23 stsp if ((*commit)->logmsg == NULL) {
403 bff6ca00 2018-04-23 stsp err = got_error_from_errno();
404 bff6ca00 2018-04-23 stsp break;
405 bff6ca00 2018-04-23 stsp }
406 bff6ca00 2018-04-23 stsp } else {
407 bff6ca00 2018-04-23 stsp (*commit)->logmsg = malloc(icommit.logmsg_len + 1);
408 bff6ca00 2018-04-23 stsp if ((*commit)->logmsg == NULL) {
409 bff6ca00 2018-04-23 stsp err = got_error_from_errno();
410 bff6ca00 2018-04-23 stsp break;
411 bff6ca00 2018-04-23 stsp }
412 bff6ca00 2018-04-23 stsp memcpy((*commit)->logmsg, data + len,
413 bff6ca00 2018-04-23 stsp icommit.logmsg_len);
414 bff6ca00 2018-04-23 stsp (*commit)->logmsg[icommit.logmsg_len] = '\0';
415 bff6ca00 2018-04-23 stsp }
416 bff6ca00 2018-04-23 stsp len += icommit.logmsg_len;
417 bff6ca00 2018-04-23 stsp
418 bff6ca00 2018-04-23 stsp for (i = 0; i < icommit.nparents; i++) {
419 86acc566 2018-04-23 stsp struct got_parent_id *pid;
420 86acc566 2018-04-23 stsp
421 86acc566 2018-04-23 stsp pid = calloc(1, sizeof(*pid));
422 86acc566 2018-04-23 stsp if (pid == NULL) {
423 86acc566 2018-04-23 stsp err = got_error_from_errno();
424 bff6ca00 2018-04-23 stsp break;
425 86acc566 2018-04-23 stsp }
426 86acc566 2018-04-23 stsp pid->id = calloc(1, sizeof(*pid->id));
427 86acc566 2018-04-23 stsp if (pid->id == NULL) {
428 86acc566 2018-04-23 stsp err = got_error_from_errno();
429 86acc566 2018-04-23 stsp free(pid);
430 86acc566 2018-04-23 stsp break;
431 86acc566 2018-04-23 stsp }
432 86acc566 2018-04-23 stsp
433 86acc566 2018-04-23 stsp memcpy(pid->id, data + len + i * SHA1_DIGEST_LENGTH,
434 86acc566 2018-04-23 stsp sizeof(*pid->id));
435 86acc566 2018-04-23 stsp SIMPLEQ_INSERT_TAIL(&(*commit)->parent_ids, pid, entry);
436 86acc566 2018-04-23 stsp (*commit)->nparents++;
437 bff6ca00 2018-04-23 stsp }
438 2178c42e 2018-04-22 stsp break;
439 8c580685 2018-04-22 stsp default:
440 8c580685 2018-04-22 stsp err = got_error(GOT_ERR_PRIVSEP_MSG);
441 8c580685 2018-04-22 stsp break;
442 2178c42e 2018-04-22 stsp }
443 2178c42e 2018-04-22 stsp
444 2178c42e 2018-04-22 stsp imsg_free(&imsg);
445 e033d803 2018-04-23 stsp
446 e033d803 2018-04-23 stsp return err;
447 e033d803 2018-04-23 stsp }
448 e033d803 2018-04-23 stsp
449 e033d803 2018-04-23 stsp const struct got_error *
450 068fd2bf 2018-04-24 stsp got_privsep_send_tree(struct imsgbuf *ibuf, struct got_tree_object *tree)
451 e033d803 2018-04-23 stsp {
452 e033d803 2018-04-23 stsp const struct got_error *err = NULL;
453 e033d803 2018-04-23 stsp struct got_imsg_tree_object itree;
454 e033d803 2018-04-23 stsp struct got_tree_entry *te;
455 e033d803 2018-04-23 stsp
456 e033d803 2018-04-23 stsp itree.nentries = tree->nentries;
457 e033d803 2018-04-23 stsp if (imsg_compose(ibuf, GOT_IMSG_TREE, 0, 0, -1, &itree, sizeof(itree))
458 e033d803 2018-04-23 stsp == -1)
459 e033d803 2018-04-23 stsp return got_error_from_errno();
460 e033d803 2018-04-23 stsp
461 e033d803 2018-04-23 stsp err = flush_imsg(ibuf);
462 e033d803 2018-04-23 stsp if (err)
463 e033d803 2018-04-23 stsp return err;
464 e033d803 2018-04-23 stsp
465 e033d803 2018-04-23 stsp SIMPLEQ_FOREACH(te, &tree->entries, entry) {
466 e033d803 2018-04-23 stsp struct got_imsg_tree_entry ite;
467 e033d803 2018-04-23 stsp uint8_t *buf = NULL;
468 e033d803 2018-04-23 stsp size_t len = sizeof(ite) + strlen(te->name);
469 e033d803 2018-04-23 stsp
470 e033d803 2018-04-23 stsp if (len > MAX_IMSGSIZE)
471 e033d803 2018-04-23 stsp return got_error(GOT_ERR_NO_SPACE);
472 e033d803 2018-04-23 stsp
473 e033d803 2018-04-23 stsp buf = malloc(len);
474 e033d803 2018-04-23 stsp if (buf == NULL)
475 e033d803 2018-04-23 stsp return got_error_from_errno();
476 e033d803 2018-04-23 stsp
477 e033d803 2018-04-23 stsp memcpy(ite.id, te->id->sha1, sizeof(ite.id));
478 e033d803 2018-04-23 stsp ite.mode = te->mode;
479 e033d803 2018-04-23 stsp memcpy(buf, &ite, sizeof(ite));
480 e033d803 2018-04-23 stsp memcpy(buf + sizeof(ite), te->name, strlen(te->name));
481 e033d803 2018-04-23 stsp
482 e033d803 2018-04-23 stsp if (imsg_compose(ibuf, GOT_IMSG_TREE_ENTRY, 0, 0, -1,
483 e033d803 2018-04-23 stsp buf, len) == -1)
484 e033d803 2018-04-23 stsp err = got_error_from_errno();
485 e033d803 2018-04-23 stsp free(buf);
486 e033d803 2018-04-23 stsp if (err)
487 e033d803 2018-04-23 stsp return err;
488 e033d803 2018-04-23 stsp
489 e033d803 2018-04-23 stsp err = flush_imsg(ibuf);
490 e033d803 2018-04-23 stsp if (err)
491 e033d803 2018-04-23 stsp return err;
492 e033d803 2018-04-23 stsp }
493 e033d803 2018-04-23 stsp
494 e033d803 2018-04-23 stsp return NULL;
495 e033d803 2018-04-23 stsp }
496 e033d803 2018-04-23 stsp
497 e033d803 2018-04-23 stsp const struct got_error *
498 068fd2bf 2018-04-24 stsp got_privsep_recv_tree(struct got_tree_object **tree, struct imsgbuf *ibuf)
499 e033d803 2018-04-23 stsp {
500 e033d803 2018-04-23 stsp const struct got_error *err = NULL;
501 e033d803 2018-04-23 stsp const size_t min_datalen =
502 e033d803 2018-04-23 stsp MIN(sizeof(struct got_imsg_error),
503 e033d803 2018-04-23 stsp sizeof(struct got_imsg_tree_object));
504 e033d803 2018-04-23 stsp struct got_imsg_tree_object itree = { 0 };
505 e033d803 2018-04-23 stsp int nentries = 0;
506 2178c42e 2018-04-22 stsp
507 e033d803 2018-04-23 stsp *tree = NULL;
508 e033d803 2018-04-23 stsp get_more:
509 e033d803 2018-04-23 stsp err = read_imsg(ibuf);
510 e033d803 2018-04-23 stsp if (err)
511 1e51f5b9 2018-04-23 stsp goto done;
512 e033d803 2018-04-23 stsp
513 e033d803 2018-04-23 stsp while (1) {
514 e033d803 2018-04-23 stsp struct imsg imsg;
515 e033d803 2018-04-23 stsp size_t n;
516 e033d803 2018-04-23 stsp size_t datalen;
517 e033d803 2018-04-23 stsp struct got_imsg_tree_entry ite;
518 e033d803 2018-04-23 stsp struct got_tree_entry *te = NULL;
519 e033d803 2018-04-23 stsp
520 e033d803 2018-04-23 stsp n = imsg_get(ibuf, &imsg);
521 e033d803 2018-04-23 stsp if (n == 0) {
522 e033d803 2018-04-23 stsp if (*tree && (*tree)->nentries != nentries)
523 e033d803 2018-04-23 stsp goto get_more;
524 e033d803 2018-04-23 stsp break;
525 e033d803 2018-04-23 stsp }
526 e033d803 2018-04-23 stsp
527 e033d803 2018-04-23 stsp if (imsg.hdr.len < IMSG_HEADER_SIZE + min_datalen)
528 e033d803 2018-04-23 stsp return got_error(GOT_ERR_PRIVSEP_LEN);
529 e033d803 2018-04-23 stsp
530 e033d803 2018-04-23 stsp datalen = imsg.hdr.len - IMSG_HEADER_SIZE;
531 e033d803 2018-04-23 stsp
532 e033d803 2018-04-23 stsp switch (imsg.hdr.type) {
533 e033d803 2018-04-23 stsp case GOT_IMSG_ERROR:
534 e033d803 2018-04-23 stsp err = recv_imsg_error(&imsg, datalen);
535 e033d803 2018-04-23 stsp break;
536 e033d803 2018-04-23 stsp case GOT_IMSG_TREE:
537 e033d803 2018-04-23 stsp /* This message should only appear once. */
538 e033d803 2018-04-23 stsp if (*tree != NULL) {
539 e033d803 2018-04-23 stsp err = got_error(GOT_ERR_PRIVSEP_MSG);
540 e033d803 2018-04-23 stsp break;
541 e033d803 2018-04-23 stsp }
542 e033d803 2018-04-23 stsp if (datalen != sizeof(itree)) {
543 e033d803 2018-04-23 stsp err = got_error(GOT_ERR_PRIVSEP_LEN);
544 e033d803 2018-04-23 stsp break;
545 e033d803 2018-04-23 stsp }
546 e033d803 2018-04-23 stsp memcpy(&itree, imsg.data, sizeof(itree));
547 e033d803 2018-04-23 stsp *tree = calloc(1, sizeof(**tree));
548 e033d803 2018-04-23 stsp if (*tree == NULL) {
549 e033d803 2018-04-23 stsp err = got_error_from_errno();
550 e033d803 2018-04-23 stsp break;
551 e033d803 2018-04-23 stsp }
552 e033d803 2018-04-23 stsp (*tree)->nentries = itree.nentries;
553 e033d803 2018-04-23 stsp SIMPLEQ_INIT(&(*tree)->entries);
554 e033d803 2018-04-23 stsp break;
555 e033d803 2018-04-23 stsp case GOT_IMSG_TREE_ENTRY:
556 e033d803 2018-04-23 stsp /* This message should be preceeded by GOT_IMSG_TREE. */
557 e033d803 2018-04-23 stsp if (*tree == NULL) {
558 e033d803 2018-04-23 stsp err = got_error(GOT_ERR_PRIVSEP_MSG);
559 e033d803 2018-04-23 stsp break;
560 e033d803 2018-04-23 stsp }
561 e033d803 2018-04-23 stsp if (datalen < sizeof(ite) || datalen > MAX_IMSGSIZE) {
562 e033d803 2018-04-23 stsp err = got_error(GOT_ERR_PRIVSEP_LEN);
563 e033d803 2018-04-23 stsp break;
564 e033d803 2018-04-23 stsp }
565 e033d803 2018-04-23 stsp
566 e033d803 2018-04-23 stsp /* Remaining data contains the entry's name. */
567 e033d803 2018-04-23 stsp datalen -= sizeof(ite);
568 e033d803 2018-04-23 stsp memcpy(&ite, imsg.data, sizeof(ite));
569 e033d803 2018-04-23 stsp if (datalen == 0 || datalen > MAX_IMSGSIZE) {
570 e033d803 2018-04-23 stsp err = got_error(GOT_ERR_PRIVSEP_LEN);
571 e033d803 2018-04-23 stsp break;
572 e033d803 2018-04-23 stsp }
573 052d4dc3 2018-04-23 stsp
574 e033d803 2018-04-23 stsp te = got_alloc_tree_entry_partial();
575 e033d803 2018-04-23 stsp if (te == NULL) {
576 e033d803 2018-04-23 stsp err = got_error_from_errno();
577 e033d803 2018-04-23 stsp break;
578 e033d803 2018-04-23 stsp }
579 e033d803 2018-04-23 stsp te->name = malloc(datalen + 1);
580 e033d803 2018-04-23 stsp if (te->name == NULL) {
581 e033d803 2018-04-23 stsp free(te);
582 e033d803 2018-04-23 stsp err = got_error_from_errno();
583 e033d803 2018-04-23 stsp break;
584 e033d803 2018-04-23 stsp }
585 052d4dc3 2018-04-23 stsp memcpy(te->name, imsg.data + sizeof(ite), datalen);
586 e033d803 2018-04-23 stsp te->name[datalen] = '\0';
587 e033d803 2018-04-23 stsp
588 e033d803 2018-04-23 stsp memcpy(te->id->sha1, ite.id, SHA1_DIGEST_LENGTH);
589 e033d803 2018-04-23 stsp te->mode = ite.mode;
590 e033d803 2018-04-23 stsp SIMPLEQ_INSERT_TAIL(&(*tree)->entries, te, entry);
591 e033d803 2018-04-23 stsp nentries++;
592 e033d803 2018-04-23 stsp break;
593 e033d803 2018-04-23 stsp default:
594 e033d803 2018-04-23 stsp err = got_error(GOT_ERR_PRIVSEP_MSG);
595 e033d803 2018-04-23 stsp break;
596 e033d803 2018-04-23 stsp }
597 e033d803 2018-04-23 stsp
598 e033d803 2018-04-23 stsp imsg_free(&imsg);
599 e033d803 2018-04-23 stsp }
600 1e51f5b9 2018-04-23 stsp done:
601 e033d803 2018-04-23 stsp if (*tree && (*tree)->nentries != nentries) {
602 1e51f5b9 2018-04-23 stsp if (err == NULL)
603 1e51f5b9 2018-04-23 stsp err = got_error(GOT_ERR_PRIVSEP_LEN);
604 e033d803 2018-04-23 stsp got_object_tree_close(*tree);
605 e033d803 2018-04-23 stsp *tree = NULL;
606 ff6b18f8 2018-04-24 stsp }
607 ff6b18f8 2018-04-24 stsp
608 ff6b18f8 2018-04-24 stsp return err;
609 ff6b18f8 2018-04-24 stsp }
610 ff6b18f8 2018-04-24 stsp
611 ff6b18f8 2018-04-24 stsp const struct got_error *
612 2967a784 2018-04-24 stsp got_privsep_send_blob(struct imsgbuf *ibuf, size_t size)
613 ff6b18f8 2018-04-24 stsp {
614 2967a784 2018-04-24 stsp struct got_imsg_blob iblob;
615 2967a784 2018-04-24 stsp
616 2967a784 2018-04-24 stsp iblob.size = size;
617 ff6b18f8 2018-04-24 stsp /* Data has already been written to file descriptor. */
618 2967a784 2018-04-24 stsp
619 2967a784 2018-04-24 stsp if (imsg_compose(ibuf, GOT_IMSG_BLOB, 0, 0, -1, &iblob, sizeof(iblob))
620 2967a784 2018-04-24 stsp == -1)
621 ff6b18f8 2018-04-24 stsp return got_error_from_errno();
622 ff6b18f8 2018-04-24 stsp
623 ff6b18f8 2018-04-24 stsp return flush_imsg(ibuf);
624 ff6b18f8 2018-04-24 stsp }
625 ff6b18f8 2018-04-24 stsp
626 ff6b18f8 2018-04-24 stsp const struct got_error *
627 2967a784 2018-04-24 stsp got_privsep_recv_blob(size_t *size, struct imsgbuf *ibuf)
628 ff6b18f8 2018-04-24 stsp {
629 ff6b18f8 2018-04-24 stsp const struct got_error *err = NULL;
630 ff6b18f8 2018-04-24 stsp struct imsg imsg;
631 2967a784 2018-04-24 stsp struct got_imsg_blob iblob;
632 ff6b18f8 2018-04-24 stsp size_t datalen;
633 ff6b18f8 2018-04-24 stsp
634 ff6b18f8 2018-04-24 stsp err = recv_one_imsg(&imsg, ibuf, 0);
635 ff6b18f8 2018-04-24 stsp if (err)
636 ff6b18f8 2018-04-24 stsp return err;
637 ff6b18f8 2018-04-24 stsp
638 ff6b18f8 2018-04-24 stsp datalen = imsg.hdr.len - IMSG_HEADER_SIZE;
639 ff6b18f8 2018-04-24 stsp
640 ff6b18f8 2018-04-24 stsp switch (imsg.hdr.type) {
641 ff6b18f8 2018-04-24 stsp case GOT_IMSG_ERROR:
642 ff6b18f8 2018-04-24 stsp err = recv_imsg_error(&imsg, datalen);
643 ff6b18f8 2018-04-24 stsp break;
644 ff6b18f8 2018-04-24 stsp case GOT_IMSG_BLOB:
645 2967a784 2018-04-24 stsp if (datalen != sizeof(iblob))
646 ff6b18f8 2018-04-24 stsp err = got_error(GOT_ERR_PRIVSEP_LEN);
647 2967a784 2018-04-24 stsp memcpy(&iblob, imsg.data, sizeof(iblob));
648 2967a784 2018-04-24 stsp *size = iblob.size;
649 ff6b18f8 2018-04-24 stsp /* Data has been written to file descriptor. */
650 ff6b18f8 2018-04-24 stsp break;
651 ff6b18f8 2018-04-24 stsp default:
652 ff6b18f8 2018-04-24 stsp err = got_error(GOT_ERR_PRIVSEP_MSG);
653 ff6b18f8 2018-04-24 stsp break;
654 e033d803 2018-04-23 stsp }
655 e033d803 2018-04-23 stsp
656 ff6b18f8 2018-04-24 stsp imsg_free(&imsg);
657 ff6b18f8 2018-04-24 stsp
658 2178c42e 2018-04-22 stsp return err;
659 2178c42e 2018-04-22 stsp }