Blob


1 /*
2 * Copyright (c) 2018, 2019, 2020 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"
41 #include "got_lib_hash.h"
43 static volatile sig_atomic_t sigint_received;
45 static void
46 catch_sigint(int signo)
47 {
48 sigint_received = 1;
49 }
51 int
52 main(int argc, char *argv[])
53 {
54 const struct got_error *err = NULL;
55 struct imsgbuf ibuf;
56 size_t datalen;
58 signal(SIGINT, catch_sigint);
60 imsg_init(&ibuf, GOT_IMSG_FD_CHILD);
62 #ifndef PROFILE
63 /* revoke access to most system calls */
64 if (pledge("stdio recvfd", NULL) == -1) {
65 err = got_error_from_errno("pledge");
66 got_privsep_send_error(&ibuf, err);
67 return 1;
68 }
70 /* revoke fs access */
71 if (landlock_no_fs() == -1) {
72 err = got_error_from_errno("landlock_no_fs");
73 got_privsep_send_error(&ibuf, err);
74 return 1;
75 }
76 if (cap_enter() == -1) {
77 err = got_error_from_errno("cap_enter");
78 got_privsep_send_error(&ibuf, err);
79 return 1;
80 }
81 #endif
83 for (;;) {
84 struct imsg imsg;
85 struct got_commit_object *commit = NULL;
86 struct got_object_id expected_id;
88 if (sigint_received) {
89 err = got_error(GOT_ERR_CANCELLED);
90 break;
91 }
93 err = got_privsep_recv_imsg(&imsg, &ibuf, 0);
94 if (err) {
95 if (err->code == GOT_ERR_PRIVSEP_PIPE)
96 err = NULL;
97 break;
98 }
100 if (imsg.hdr.type == GOT_IMSG_STOP)
101 break;
103 if (imsg.hdr.type != GOT_IMSG_COMMIT_REQUEST) {
104 err = got_error(GOT_ERR_PRIVSEP_MSG);
105 goto done;
108 datalen = imsg.hdr.len - IMSG_HEADER_SIZE;
109 if (datalen != sizeof(expected_id)) {
110 err = got_error(GOT_ERR_PRIVSEP_LEN);
111 goto done;
113 memcpy(&expected_id, imsg.data, sizeof(expected_id));
115 if (imsg.fd == -1) {
116 err = got_error(GOT_ERR_PRIVSEP_NO_FD);
117 goto done;
120 err = got_object_read_commit(&commit, imsg.fd, &expected_id, 0);
121 if (err)
122 goto done;
124 err = got_privsep_send_commit(&ibuf, commit);
125 got_object_commit_close(commit);
126 done:
127 if (imsg.fd != -1 && close(imsg.fd) == -1 && err == NULL)
128 err = got_error_from_errno("close");
129 imsg_free(&imsg);
130 if (err)
131 break;
134 imsg_clear(&ibuf);
135 if (err) {
136 if (!sigint_received && err->code != GOT_ERR_PRIVSEP_PIPE) {
137 fprintf(stderr, "%s: %s\n", getprogname(), err->msg);
138 got_privsep_send_error(&ibuf, err);
141 if (close(GOT_IMSG_FD_CHILD) == -1 && err == NULL)
142 err = got_error_from_errno("close");
143 return err ? 1 : 0;