Blob


1 /*
2 * Copyright (c) 2018, 2019 Stefan Sperling <stsp@openbsd.org>
3 *
4 * Permission to use, copy, modify, and distribute this software for any
5 * purpose with or without fee is hereby granted, provided that the above
6 * copyright notice and this permission notice appear in all copies.
7 *
8 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
9 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
10 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
11 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
12 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
13 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
14 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
15 */
17 #include <sys/types.h>
18 #include <sys/queue.h>
19 #include <sys/uio.h>
20 #include <sys/time.h>
22 #include <stdint.h>
23 #include <limits.h>
24 #include <signal.h>
25 #include <stdio.h>
26 #include <stdlib.h>
27 #include <string.h>
28 #include <unistd.h>
29 #include <zlib.h>
31 #include "got_compat.h"
33 #include "got_error.h"
34 #include "got_object.h"
36 #include "got_lib_delta.h"
37 #include "got_lib_inflate.h"
38 #include "got_lib_object.h"
39 #include "got_lib_object_parse.h"
40 #include "got_lib_privsep.h"
42 static volatile sig_atomic_t sigint_received;
44 static void
45 catch_sigint(int signo)
46 {
47 sigint_received = 1;
48 }
50 int
51 main(int argc, char *argv[])
52 {
53 const struct got_error *err = NULL;
54 struct imsgbuf ibuf;
55 size_t datalen;
57 signal(SIGINT, catch_sigint);
59 imsg_init(&ibuf, GOT_IMSG_FD_CHILD);
61 #ifndef PROFILE
62 /* revoke access to most system calls */
63 if (pledge("stdio recvfd", NULL) == -1) {
64 err = got_error_from_errno("pledge");
65 got_privsep_send_error(&ibuf, err);
66 return 1;
67 }
69 /* revoke fs access */
70 if (landlock_no_fs() == -1) {
71 err = got_error_from_errno("landlock_no_fs");
72 got_privsep_send_error(&ibuf, err);
73 return 1;
74 }
75 if (cap_enter() == -1) {
76 err = got_error_from_errno("cap_enter");
77 got_privsep_send_error(&ibuf, err);
78 return 1;
79 }
80 #endif
82 for (;;) {
83 struct imsg imsg, imsg_outfd;
84 FILE *f = NULL;
85 size_t size;
86 struct got_object *obj = NULL;
87 uint8_t *buf = NULL;
88 struct got_object_id id;
89 struct got_object_id expected_id;
90 struct got_inflate_checksum csum;
91 SHA1_CTX sha1_ctx;
93 SHA1Init(&sha1_ctx);
94 memset(&csum, 0, sizeof(csum));
95 csum.output_sha1 = &sha1_ctx;
97 memset(&imsg, 0, sizeof(imsg));
98 imsg.fd = -1;
99 memset(&imsg_outfd, 0, sizeof(imsg_outfd));
100 imsg_outfd.fd = -1;
102 if (sigint_received) {
103 err = got_error(GOT_ERR_CANCELLED);
104 break;
107 err = got_privsep_recv_imsg(&imsg, &ibuf, 0);
108 if (err) {
109 if (err->code == GOT_ERR_PRIVSEP_PIPE)
110 err = NULL;
111 break;
114 if (imsg.hdr.type == GOT_IMSG_STOP)
115 break;
117 if (imsg.hdr.type != GOT_IMSG_BLOB_REQUEST) {
118 err = got_error(GOT_ERR_PRIVSEP_MSG);
119 goto done;
122 datalen = imsg.hdr.len - IMSG_HEADER_SIZE;
123 if (datalen != sizeof(expected_id)) {
124 err = got_error(GOT_ERR_PRIVSEP_LEN);
125 goto done;
127 memcpy(&expected_id, imsg.data, sizeof(expected_id));
129 if (imsg.fd == -1) {
130 err = got_error(GOT_ERR_PRIVSEP_NO_FD);
131 goto done;
134 err = got_privsep_recv_imsg(&imsg_outfd, &ibuf, 0);
135 if (err) {
136 if (imsg.hdr.len == 0)
137 err = NULL;
138 break;
141 if (imsg_outfd.hdr.type == GOT_IMSG_STOP)
142 break;
144 if (imsg_outfd.hdr.type != GOT_IMSG_BLOB_OUTFD) {
145 err = got_error(GOT_ERR_PRIVSEP_MSG);
146 goto done;
149 datalen = imsg_outfd.hdr.len - IMSG_HEADER_SIZE;
150 if (datalen != 0) {
151 err = got_error(GOT_ERR_PRIVSEP_LEN);
152 goto done;
154 if (imsg_outfd.fd == -1) {
155 err = got_error(GOT_ERR_PRIVSEP_NO_FD);
156 goto done;
159 err = got_object_read_header(&obj, imsg.fd);
160 if (err)
161 goto done;
163 if (lseek(imsg.fd, SEEK_SET, 0) == -1) {
164 err = got_error_from_errno("lseek");
165 goto done;
168 f = fdopen(imsg.fd, "rb");
169 if (f == NULL) {
170 err = got_error_from_errno("fdopen");
171 goto done;
174 if (obj->size + obj->hdrlen <=
175 GOT_PRIVSEP_INLINE_BLOB_DATA_MAX) {
176 err = got_inflate_to_mem(&buf, &size, NULL, &csum, f);
177 if (err)
178 goto done;
179 } else {
180 err = got_inflate_to_fd(&size, f, &csum, imsg_outfd.fd);
181 if (err)
182 goto done;
184 SHA1Final(id.sha1, &sha1_ctx);
185 if (got_object_id_cmp(&expected_id, &id) != 0) {
186 err = got_error_checksum(&expected_id);
187 goto done;
190 if (size < obj->hdrlen) {
191 err = got_error(GOT_ERR_BAD_OBJ_HDR);
192 goto done;
195 err = got_privsep_send_blob(&ibuf, size, obj->hdrlen, buf);
196 done:
197 free(buf);
198 if (f) {
199 if (fclose(f) == EOF && err == NULL)
200 err = got_error_from_errno("fclose");
201 } else if (imsg.fd != -1) {
202 if (close(imsg.fd) == -1 && err == NULL)
203 err = got_error_from_errno("close");
205 if (imsg_outfd.fd != -1) {
206 if (close(imsg_outfd.fd) == -1 && err == NULL)
207 err = got_error_from_errno("close");
210 imsg_free(&imsg);
211 imsg_free(&imsg_outfd);
212 if (obj)
213 got_object_close(obj);
214 if (err)
215 break;
218 imsg_clear(&ibuf);
219 if (err) {
220 if (!sigint_received && err->code != GOT_ERR_PRIVSEP_PIPE) {
221 fprintf(stderr, "%s: %s\n", getprogname(), err->msg);
222 got_privsep_send_error(&ibuf, err);
225 if (close(GOT_IMSG_FD_CHILD) == -1 && err == NULL)
226 err = got_error_from_errno("close");
227 return err ? 1 : 0;