Blob


1 /*
2 * Copyright (c) 2018 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>
21 #include <sys/limits.h>
22 #include <sys/syslimits.h>
24 #include <stdint.h>
25 #include <imsg.h>
26 #include <signal.h>
27 #include <stdio.h>
28 #include <stdlib.h>
29 #include <string.h>
30 #include <sha1.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();
65 got_privsep_send_error(&ibuf, err);
66 return 1;
67 }
68 #endif
70 while (1) {
71 struct imsg imsg, imsg_outfd;
72 FILE *f = NULL;
73 size_t size;
75 memset(&imsg, 0, sizeof(imsg));
76 imsg.fd = -1;
77 memset(&imsg_outfd, 0, sizeof(imsg_outfd));
78 imsg_outfd.fd = -1;
80 if (sigint_received) {
81 err = got_error(GOT_ERR_CANCELLED);
82 break;
83 }
85 err = got_privsep_recv_imsg(&imsg, &ibuf, 0);
86 if (err) {
87 if (err->code == GOT_ERR_PRIVSEP_PIPE)
88 err = NULL;
89 break;
90 }
92 if (imsg.hdr.type == GOT_IMSG_STOP)
93 break;
95 if (imsg.hdr.type != GOT_IMSG_BLOB_REQUEST) {
96 err = got_error(GOT_ERR_PRIVSEP_MSG);
97 goto done;
98 }
100 datalen = imsg.hdr.len - IMSG_HEADER_SIZE;
101 if (datalen != 0) {
102 err = got_error(GOT_ERR_PRIVSEP_LEN);
103 goto done;
105 if (imsg.fd == -1) {
106 err = got_error(GOT_ERR_PRIVSEP_NO_FD);
107 goto done;
110 err = got_privsep_recv_imsg(&imsg_outfd, &ibuf, 0);
111 if (err) {
112 if (imsg.hdr.len == 0)
113 err = NULL;
114 break;
117 if (imsg_outfd.hdr.type == GOT_IMSG_STOP)
118 break;
120 if (imsg_outfd.hdr.type != GOT_IMSG_BLOB_OUTFD) {
121 err = got_error(GOT_ERR_PRIVSEP_MSG);
122 goto done;
125 datalen = imsg_outfd.hdr.len - IMSG_HEADER_SIZE;
126 if (datalen != 0) {
127 err = got_error(GOT_ERR_PRIVSEP_LEN);
128 goto done;
130 if (imsg_outfd.fd == -1) {
131 err = got_error(GOT_ERR_PRIVSEP_NO_FD);
132 goto done;
135 f = fdopen(imsg.fd, "rb");
136 if (f == NULL) {
137 err = got_error_from_errno();
138 goto done;
141 err = got_inflate_to_fd(&size, f, imsg_outfd.fd);
142 if (err)
143 goto done;
145 err = got_privsep_send_blob(&ibuf, size);
146 done:
147 if (f)
148 fclose(f);
149 else if (imsg.fd != -1)
150 close(imsg.fd);
151 if (imsg_outfd.fd != -1)
152 close(imsg_outfd.fd);
153 imsg_free(&imsg);
154 imsg_free(&imsg_outfd);
155 if (err)
156 break;
159 imsg_clear(&ibuf);
160 if (err) {
161 if (!sigint_received && err->code != GOT_ERR_PRIVSEP_PIPE) {
162 fprintf(stderr, "%s: %s\n", getprogname(), err->msg);
163 got_privsep_send_error(&ibuf, err);
166 close(GOT_IMSG_FD_CHILD);
167 return err ? 1 : 0;