2 * Copyright (c) 2018 Stefan Sperling <stsp@openbsd.org>
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.
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.
17 #include <sys/types.h>
18 #include <sys/queue.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_sha1.h"
43 static volatile sig_atomic_t sigint_received
;
46 catch_sigint(int signo
)
51 static const struct got_error
*
52 read_tag_object(struct got_tag_object
**tag
, FILE *f
,
53 struct got_object_id
*expected_id
)
55 const struct got_error
*err
= NULL
;
56 struct got_object
*obj
= NULL
;
59 struct got_inflate_checksum csum
;
61 struct got_object_id id
;
64 memset(&csum
, 0, sizeof(csum
));
65 csum
.output_sha1
= &sha1_ctx
;
67 err
= got_inflate_to_mem(&p
, &len
, NULL
, &csum
, f
);
71 SHA1Final(id
.sha1
, &sha1_ctx
);
72 if (memcmp(expected_id
->sha1
, id
.sha1
, SHA1_DIGEST_LENGTH
) != 0) {
73 char buf
[SHA1_DIGEST_STRING_LENGTH
];
74 err
= got_error_fmt(GOT_ERR_OBJ_CSUM
,
75 "checksum failure for object %s",
76 got_sha1_digest_to_str(expected_id
->sha1
, buf
,
81 err
= got_object_parse_header(&obj
, p
, len
);
85 if (len
< obj
->hdrlen
+ obj
->size
) {
86 err
= got_error(GOT_ERR_BAD_OBJ_DATA
);
90 /* Skip object header. */
92 err
= got_object_parse_tag(tag
, p
+ obj
->hdrlen
, len
);
96 got_object_close(obj
);
101 main(int argc
, char *argv
[])
103 const struct got_error
*err
= NULL
;
107 signal(SIGINT
, catch_sigint
);
109 imsg_init(&ibuf
, GOT_IMSG_FD_CHILD
);
112 /* revoke access to most system calls */
113 if (pledge("stdio recvfd", NULL
) == -1) {
114 err
= got_error_from_errno("pledge");
115 got_privsep_send_error(&ibuf
, err
);
119 /* revoke fs access */
120 if (landlock_no_fs() == -1) {
121 err
= got_error_from_errno("landlock_no_fs");
122 got_privsep_send_error(&ibuf
, err
);
125 if (cap_enter() == -1) {
126 err
= got_error_from_errno("cap_enter");
127 got_privsep_send_error(&ibuf
, err
);
135 struct got_tag_object
*tag
= NULL
;
136 struct got_object_id expected_id
;
138 if (sigint_received
) {
139 err
= got_error(GOT_ERR_CANCELLED
);
143 err
= got_privsep_recv_imsg(&imsg
, &ibuf
, 0);
145 if (err
->code
== GOT_ERR_PRIVSEP_PIPE
)
150 if (imsg
.hdr
.type
== GOT_IMSG_STOP
)
153 if (imsg
.hdr
.type
!= GOT_IMSG_TAG_REQUEST
) {
154 err
= got_error(GOT_ERR_PRIVSEP_MSG
);
158 datalen
= imsg
.hdr
.len
- IMSG_HEADER_SIZE
;
159 if (datalen
!= sizeof(expected_id
)) {
160 err
= got_error(GOT_ERR_PRIVSEP_LEN
);
163 memcpy(&expected_id
, imsg
.data
, sizeof(expected_id
));
166 err
= got_error(GOT_ERR_PRIVSEP_NO_FD
);
170 /* Always assume file offset zero. */
171 f
= fdopen(imsg
.fd
, "rb");
173 err
= got_error_from_errno("fdopen");
177 err
= read_tag_object(&tag
, f
, &expected_id
);
181 err
= got_privsep_send_tag(&ibuf
, tag
);
184 if (fclose(f
) == EOF
&& err
== NULL
)
185 err
= got_error_from_errno("fclose");
186 } else if (imsg
.fd
!= -1) {
187 if (close(imsg
.fd
) == -1 && err
== NULL
)
188 err
= got_error_from_errno("close");
197 if (!sigint_received
&& err
->code
!= GOT_ERR_PRIVSEP_PIPE
) {
198 fprintf(stderr
, "%s: %s\n", getprogname(), err
->msg
);
199 got_privsep_send_error(&ibuf
, err
);
202 if (close(GOT_IMSG_FD_CHILD
) == -1 && err
== NULL
)
203 err
= got_error_from_errno("close");