Blame


1 ad242220 2018-09-08 stsp /*
2 ad242220 2018-09-08 stsp * Copyright (c) 2018 Stefan Sperling <stsp@openbsd.org>
3 ad242220 2018-09-08 stsp *
4 ad242220 2018-09-08 stsp * Permission to use, copy, modify, and distribute this software for any
5 ad242220 2018-09-08 stsp * purpose with or without fee is hereby granted, provided that the above
6 ad242220 2018-09-08 stsp * copyright notice and this permission notice appear in all copies.
7 ad242220 2018-09-08 stsp *
8 ad242220 2018-09-08 stsp * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
9 ad242220 2018-09-08 stsp * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
10 ad242220 2018-09-08 stsp * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
11 ad242220 2018-09-08 stsp * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
12 ad242220 2018-09-08 stsp * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
13 ad242220 2018-09-08 stsp * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
14 ad242220 2018-09-08 stsp * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
15 ad242220 2018-09-08 stsp */
16 ad242220 2018-09-08 stsp
17 ad242220 2018-09-08 stsp #include <sys/types.h>
18 ad242220 2018-09-08 stsp #include <sys/queue.h>
19 ad242220 2018-09-08 stsp #include <sys/uio.h>
20 ad242220 2018-09-08 stsp #include <sys/time.h>
21 ad242220 2018-09-08 stsp #include <sys/limits.h>
22 876c234b 2018-09-10 stsp #include <sys/syslimits.h>
23 ad242220 2018-09-08 stsp
24 ad242220 2018-09-08 stsp #include <stdint.h>
25 ad242220 2018-09-08 stsp #include <imsg.h>
26 99437157 2018-11-11 stsp #include <signal.h>
27 ad242220 2018-09-08 stsp #include <stdio.h>
28 ad242220 2018-09-08 stsp #include <stdlib.h>
29 ad242220 2018-09-08 stsp #include <string.h>
30 ad242220 2018-09-08 stsp #include <sha1.h>
31 ad242220 2018-09-08 stsp #include <zlib.h>
32 ad242220 2018-09-08 stsp
33 ad242220 2018-09-08 stsp #include "got_error.h"
34 ad242220 2018-09-08 stsp #include "got_object.h"
35 ad242220 2018-09-08 stsp
36 ad242220 2018-09-08 stsp #include "got_lib_delta.h"
37 ad242220 2018-09-08 stsp #include "got_lib_inflate.h"
38 ad242220 2018-09-08 stsp #include "got_lib_object.h"
39 ad242220 2018-09-08 stsp #include "got_lib_object_parse.h"
40 ad242220 2018-09-08 stsp #include "got_lib_privsep.h"
41 ad242220 2018-09-08 stsp
42 99437157 2018-11-11 stsp static volatile sig_atomic_t sigint_received;
43 99437157 2018-11-11 stsp
44 99437157 2018-11-11 stsp static void
45 99437157 2018-11-11 stsp catch_sigint(int signo)
46 99437157 2018-11-11 stsp {
47 99437157 2018-11-11 stsp sigint_received = 1;
48 99437157 2018-11-11 stsp }
49 99437157 2018-11-11 stsp
50 ad242220 2018-09-08 stsp static const struct got_error *
51 1785f84a 2018-12-23 stsp read_commit_object(struct got_commit_object **commit, FILE *f)
52 ad242220 2018-09-08 stsp {
53 1785f84a 2018-12-23 stsp struct got_object *obj;
54 41fa1437 2018-11-05 stsp const struct got_error *err = NULL;
55 41fa1437 2018-11-05 stsp size_t len;
56 41fa1437 2018-11-05 stsp uint8_t *p;
57 ad242220 2018-09-08 stsp
58 1785f84a 2018-12-23 stsp err = got_inflate_to_mem(&p, &len, f);
59 ad242220 2018-09-08 stsp if (err)
60 ad242220 2018-09-08 stsp return err;
61 ad242220 2018-09-08 stsp
62 1785f84a 2018-12-23 stsp err = got_object_parse_header(&obj, p, len);
63 1785f84a 2018-12-23 stsp if (err)
64 1785f84a 2018-12-23 stsp return err;
65 1785f84a 2018-12-23 stsp
66 41fa1437 2018-11-05 stsp if (len < obj->hdrlen + obj->size) {
67 41fa1437 2018-11-05 stsp err = got_error(GOT_ERR_BAD_OBJ_DATA);
68 41fa1437 2018-11-05 stsp goto done;
69 ad242220 2018-09-08 stsp }
70 ad242220 2018-09-08 stsp
71 1785f84a 2018-12-23 stsp if (obj->type != GOT_OBJ_TYPE_COMMIT) {
72 1785f84a 2018-12-23 stsp err = got_error(GOT_ERR_OBJ_TYPE);
73 1785f84a 2018-12-23 stsp goto done;
74 1785f84a 2018-12-23 stsp }
75 1785f84a 2018-12-23 stsp
76 ad242220 2018-09-08 stsp /* Skip object header. */
77 41fa1437 2018-11-05 stsp len -= obj->hdrlen;
78 ad242220 2018-09-08 stsp err = got_object_parse_commit(commit, p + obj->hdrlen, len);
79 41fa1437 2018-11-05 stsp done:
80 1785f84a 2018-12-23 stsp free(p);
81 6e72e6a3 2018-12-23 stsp got_object_close(obj);
82 ad242220 2018-09-08 stsp return err;
83 ad242220 2018-09-08 stsp }
84 ad242220 2018-09-08 stsp
85 ad242220 2018-09-08 stsp int
86 ad242220 2018-09-08 stsp main(int argc, char *argv[])
87 ad242220 2018-09-08 stsp {
88 ad242220 2018-09-08 stsp const struct got_error *err = NULL;
89 ad242220 2018-09-08 stsp struct imsgbuf ibuf;
90 ad242220 2018-09-08 stsp
91 99437157 2018-11-11 stsp signal(SIGINT, catch_sigint);
92 99437157 2018-11-11 stsp
93 ad242220 2018-09-08 stsp imsg_init(&ibuf, GOT_IMSG_FD_CHILD);
94 ad242220 2018-09-08 stsp
95 2ff12563 2018-09-15 stsp #ifndef PROFILE
96 ad242220 2018-09-08 stsp /* revoke access to most system calls */
97 ad242220 2018-09-08 stsp if (pledge("stdio recvfd", NULL) == -1) {
98 ad242220 2018-09-08 stsp err = got_error_from_errno();
99 ad242220 2018-09-08 stsp got_privsep_send_error(&ibuf, err);
100 ad242220 2018-09-08 stsp return 1;
101 ad242220 2018-09-08 stsp }
102 2ff12563 2018-09-15 stsp #endif
103 ad242220 2018-09-08 stsp
104 ad242220 2018-09-08 stsp while (1) {
105 ad242220 2018-09-08 stsp struct imsg imsg;
106 ad242220 2018-09-08 stsp FILE *f = NULL;
107 1785f84a 2018-12-23 stsp struct got_commit_object *commit = NULL;
108 99437157 2018-11-11 stsp
109 99437157 2018-11-11 stsp if (sigint_received) {
110 99437157 2018-11-11 stsp err = got_error(GOT_ERR_CANCELLED);
111 99437157 2018-11-11 stsp break;
112 99437157 2018-11-11 stsp }
113 ad242220 2018-09-08 stsp
114 ad242220 2018-09-08 stsp err = got_privsep_recv_imsg(&imsg, &ibuf, 0);
115 ad242220 2018-09-08 stsp if (err) {
116 876c234b 2018-09-10 stsp if (err->code == GOT_ERR_PRIVSEP_PIPE)
117 ad242220 2018-09-08 stsp err = NULL;
118 ad242220 2018-09-08 stsp break;
119 ad242220 2018-09-08 stsp }
120 ad242220 2018-09-08 stsp
121 ad242220 2018-09-08 stsp if (imsg.hdr.type == GOT_IMSG_STOP)
122 ad242220 2018-09-08 stsp break;
123 ad242220 2018-09-08 stsp
124 41fa1437 2018-11-05 stsp if (imsg.hdr.type != GOT_IMSG_COMMIT_REQUEST) {
125 41fa1437 2018-11-05 stsp err = got_error(GOT_ERR_PRIVSEP_MSG);
126 41fa1437 2018-11-05 stsp goto done;
127 ad242220 2018-09-08 stsp }
128 ad242220 2018-09-08 stsp
129 ad242220 2018-09-08 stsp if (imsg.fd == -1) {
130 ad242220 2018-09-08 stsp err = got_error(GOT_ERR_PRIVSEP_NO_FD);
131 ad242220 2018-09-08 stsp goto done;
132 ad242220 2018-09-08 stsp }
133 ad242220 2018-09-08 stsp
134 ad242220 2018-09-08 stsp /* Always assume file offset zero. */
135 ad242220 2018-09-08 stsp f = fdopen(imsg.fd, "rb");
136 ad242220 2018-09-08 stsp if (f == NULL) {
137 ad242220 2018-09-08 stsp err = got_error_from_errno();
138 ad242220 2018-09-08 stsp goto done;
139 ad242220 2018-09-08 stsp }
140 ad242220 2018-09-08 stsp
141 1785f84a 2018-12-23 stsp err = read_commit_object(&commit, f);
142 41fa1437 2018-11-05 stsp if (err)
143 41fa1437 2018-11-05 stsp goto done;
144 41fa1437 2018-11-05 stsp
145 41fa1437 2018-11-05 stsp err = got_privsep_send_commit(&ibuf, commit);
146 ad242220 2018-09-08 stsp done:
147 ad242220 2018-09-08 stsp if (f)
148 ad242220 2018-09-08 stsp fclose(f);
149 ad242220 2018-09-08 stsp else if (imsg.fd != -1)
150 ad242220 2018-09-08 stsp close(imsg.fd);
151 ad242220 2018-09-08 stsp imsg_free(&imsg);
152 99437157 2018-11-11 stsp if (err)
153 ad242220 2018-09-08 stsp break;
154 ad242220 2018-09-08 stsp }
155 ad242220 2018-09-08 stsp
156 ad242220 2018-09-08 stsp imsg_clear(&ibuf);
157 99437157 2018-11-11 stsp if (err) {
158 80d5f134 2018-11-11 stsp if (!sigint_received && err->code != GOT_ERR_PRIVSEP_PIPE) {
159 80d5f134 2018-11-11 stsp fprintf(stderr, "%s: %s\n", getprogname(), err->msg);
160 99437157 2018-11-11 stsp got_privsep_send_error(&ibuf, err);
161 80d5f134 2018-11-11 stsp }
162 99437157 2018-11-11 stsp }
163 ad242220 2018-09-08 stsp close(GOT_IMSG_FD_CHILD);
164 ad242220 2018-09-08 stsp return err ? 1 : 0;
165 ad242220 2018-09-08 stsp }