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 <unistd.h>
31 #include <zlib.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 }
68 #endif
70 for (;;) {
71 struct imsg imsg, imsg_outfd;
72 FILE *f = NULL;
73 size_t size;
74 struct got_object *obj = NULL;
75 uint8_t *buf = NULL;
77 memset(&imsg, 0, sizeof(imsg));
78 imsg.fd = -1;
79 memset(&imsg_outfd, 0, sizeof(imsg_outfd));
80 imsg_outfd.fd = -1;
82 if (sigint_received) {
83 err = got_error(GOT_ERR_CANCELLED);
84 break;
85 }
87 err = got_privsep_recv_imsg(&imsg, &ibuf, 0);
88 if (err) {
89 if (err->code == GOT_ERR_PRIVSEP_PIPE)
90 err = NULL;
91 break;
92 }
94 if (imsg.hdr.type == GOT_IMSG_STOP)
95 break;
97 if (imsg.hdr.type != GOT_IMSG_BLOB_REQUEST) {
98 err = got_error(GOT_ERR_PRIVSEP_MSG);
99 goto done;
102 if (imsg.fd == -1) {
103 err = got_error(GOT_ERR_PRIVSEP_NO_FD);
104 goto done;
107 err = got_privsep_recv_imsg(&imsg_outfd, &ibuf, 0);
108 if (err) {
109 if (imsg.hdr.len == 0)
110 err = NULL;
111 break;
114 if (imsg_outfd.hdr.type == GOT_IMSG_STOP)
115 break;
117 if (imsg_outfd.hdr.type != GOT_IMSG_BLOB_OUTFD) {
118 err = got_error(GOT_ERR_PRIVSEP_MSG);
119 goto done;
122 datalen = imsg_outfd.hdr.len - IMSG_HEADER_SIZE;
123 if (datalen != 0) {
124 err = got_error(GOT_ERR_PRIVSEP_LEN);
125 goto done;
127 if (imsg_outfd.fd == -1) {
128 err = got_error(GOT_ERR_PRIVSEP_NO_FD);
129 goto done;
132 err = got_object_read_header(&obj, imsg.fd);
133 if (err)
134 goto done;
136 if (lseek(imsg.fd, SEEK_SET, 0) == -1) {
137 err = got_error_from_errno("lseek");
138 goto done;
141 f = fdopen(imsg.fd, "rb");
142 if (f == NULL) {
143 err = got_error_from_errno("fdopen");
144 goto done;
147 if (obj->size + obj->hdrlen <=
148 GOT_PRIVSEP_INLINE_BLOB_DATA_MAX) {
149 err = got_inflate_to_mem(&buf, &size, NULL, f);
150 if (err)
151 goto done;
152 } else {
153 err = got_inflate_to_fd(&size, f, imsg_outfd.fd);
154 if (err)
155 goto done;
158 if (size < obj->hdrlen) {
159 err = got_error(GOT_ERR_BAD_OBJ_HDR);
160 goto done;
163 err = got_privsep_send_blob(&ibuf, size, obj->hdrlen, buf);
164 done:
165 free(buf);
166 if (f) {
167 if (fclose(f) == EOF && err == NULL)
168 err = got_error_from_errno("fclose");
169 } else if (imsg.fd != -1) {
170 if (close(imsg.fd) == -1 && err == NULL)
171 err = got_error_from_errno("close");
173 if (imsg_outfd.fd != -1) {
174 if (close(imsg_outfd.fd) == -1 && err == NULL)
175 err = got_error_from_errno("close");
178 imsg_free(&imsg);
179 imsg_free(&imsg_outfd);
180 if (obj)
181 got_object_close(obj);
182 if (err)
183 break;
186 imsg_clear(&ibuf);
187 if (err) {
188 if (!sigint_received && err->code != GOT_ERR_PRIVSEP_PIPE) {
189 fprintf(stderr, "%s: %s\n", getprogname(), err->msg);
190 got_privsep_send_error(&ibuf, err);
193 if (close(GOT_IMSG_FD_CHILD) == -1 && err == NULL)
194 err = got_error_from_errno("close");
195 return err ? 1 : 0;