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 <imsg.h>
24 #include <limits.h>
25 #include <signal.h>
26 #include <stdio.h>
27 #include <stdlib.h>
28 #include <string.h>
29 #include <sha1.h>
30 #include <sha2.h>
31 #include <unistd.h>
32 #include <zlib.h>
34 #include "got_error.h"
35 #include "got_object.h"
37 #include "got_lib_delta.h"
38 #include "got_lib_hash.h"
39 #include "got_lib_inflate.h"
40 #include "got_lib_object.h"
41 #include "got_lib_object_parse.h"
42 #include "got_lib_privsep.h"
44 static volatile sig_atomic_t sigint_received;
46 static void
47 catch_sigint(int signo)
48 {
49 sigint_received = 1;
50 }
52 int
53 main(int argc, char *argv[])
54 {
55 const struct got_error *err = NULL;
56 struct imsgbuf ibuf;
57 size_t datalen;
59 signal(SIGINT, catch_sigint);
61 imsg_init(&ibuf, GOT_IMSG_FD_CHILD);
63 #ifndef PROFILE
64 /* revoke access to most system calls */
65 if (pledge("stdio recvfd", NULL) == -1) {
66 err = got_error_from_errno("pledge");
67 got_privsep_send_error(&ibuf, err);
68 return 1;
69 }
70 #endif
72 for (;;) {
73 struct imsg imsg, imsg_outfd;
74 FILE *f = NULL;
75 size_t size;
76 struct got_object *obj = NULL;
77 uint8_t *buf = NULL;
78 struct got_object_id id;
79 struct got_object_id expected_id;
80 struct got_inflate_checksum csum;
81 struct got_hash ctx;
83 got_hash_init(&ctx, GOT_HASH_SHA1);
84 memset(&csum, 0, sizeof(csum));
85 csum.output_ctx = &ctx;
87 memset(&imsg, 0, sizeof(imsg));
88 imsg.fd = -1;
89 memset(&imsg_outfd, 0, sizeof(imsg_outfd));
90 imsg_outfd.fd = -1;
92 if (sigint_received) {
93 err = got_error(GOT_ERR_CANCELLED);
94 break;
95 }
97 err = got_privsep_recv_imsg(&imsg, &ibuf, 0);
98 if (err) {
99 if (err->code == GOT_ERR_PRIVSEP_PIPE)
100 err = NULL;
101 break;
104 if (imsg.hdr.type == GOT_IMSG_STOP)
105 break;
107 if (imsg.hdr.type != GOT_IMSG_BLOB_REQUEST) {
108 err = got_error(GOT_ERR_PRIVSEP_MSG);
109 goto done;
112 datalen = imsg.hdr.len - IMSG_HEADER_SIZE;
113 if (datalen != sizeof(expected_id)) {
114 err = got_error(GOT_ERR_PRIVSEP_LEN);
115 goto done;
117 memcpy(&expected_id, imsg.data, sizeof(expected_id));
119 if (imsg.fd == -1) {
120 err = got_error(GOT_ERR_PRIVSEP_NO_FD);
121 goto done;
124 err = got_privsep_recv_imsg(&imsg_outfd, &ibuf, 0);
125 if (err) {
126 if (imsg.hdr.len == 0)
127 err = NULL;
128 break;
131 if (imsg_outfd.hdr.type == GOT_IMSG_STOP)
132 break;
134 if (imsg_outfd.hdr.type != GOT_IMSG_BLOB_OUTFD) {
135 err = got_error(GOT_ERR_PRIVSEP_MSG);
136 goto done;
139 datalen = imsg_outfd.hdr.len - IMSG_HEADER_SIZE;
140 if (datalen != 0) {
141 err = got_error(GOT_ERR_PRIVSEP_LEN);
142 goto done;
144 if (imsg_outfd.fd == -1) {
145 err = got_error(GOT_ERR_PRIVSEP_NO_FD);
146 goto done;
149 err = got_object_read_header(&obj, imsg.fd);
150 if (err)
151 goto done;
153 if (lseek(imsg.fd, SEEK_SET, 0) == -1) {
154 err = got_error_from_errno("lseek");
155 goto done;
158 f = fdopen(imsg.fd, "rb");
159 if (f == NULL) {
160 err = got_error_from_errno("fdopen");
161 goto done;
164 if (obj->size + obj->hdrlen <=
165 GOT_PRIVSEP_INLINE_BLOB_DATA_MAX) {
166 err = got_inflate_to_mem(&buf, &size, NULL, &csum, f);
167 if (err)
168 goto done;
169 } else {
170 err = got_inflate_to_fd(&size, f, &csum, imsg_outfd.fd);
171 if (err)
172 goto done;
174 got_hash_final_object_id(&ctx, &id);
175 if (got_object_id_cmp(&expected_id, &id) != 0) {
176 err = got_error_checksum(&expected_id);
177 goto done;
180 if (size < obj->hdrlen) {
181 err = got_error(GOT_ERR_BAD_OBJ_HDR);
182 goto done;
185 err = got_privsep_send_blob(&ibuf, size, obj->hdrlen, buf);
186 done:
187 free(buf);
188 if (f) {
189 if (fclose(f) == EOF && err == NULL)
190 err = got_error_from_errno("fclose");
191 } else if (imsg.fd != -1) {
192 if (close(imsg.fd) == -1 && err == NULL)
193 err = got_error_from_errno("close");
195 if (imsg_outfd.fd != -1) {
196 if (close(imsg_outfd.fd) == -1 && err == NULL)
197 err = got_error_from_errno("close");
200 imsg_free(&imsg);
201 imsg_free(&imsg_outfd);
202 if (obj)
203 got_object_close(obj);
204 if (err)
205 break;
208 imsg_clear(&ibuf);
209 if (err) {
210 if (!sigint_received && err->code != GOT_ERR_PRIVSEP_PIPE) {
211 fprintf(stderr, "%s: %s\n", getprogname(), err->msg);
212 got_privsep_send_error(&ibuf, err);
215 if (close(GOT_IMSG_FD_CHILD) == -1 && err == NULL)
216 err = got_error_from_errno("close");
217 return err ? 1 : 0;