Blame


1 93658fb9 2020-03-18 stsp /*
2 93658fb9 2020-03-18 stsp * Copyright (c) 2018, 2019 Ori Bernstein <ori@openbsd.org>
3 93658fb9 2020-03-18 stsp *
4 93658fb9 2020-03-18 stsp * Permission to use, copy, modify, and distribute this software for any
5 93658fb9 2020-03-18 stsp * purpose with or without fee is hereby granted, provided that the above
6 93658fb9 2020-03-18 stsp * copyright notice and this permission notice appear in all copies.
7 93658fb9 2020-03-18 stsp *
8 93658fb9 2020-03-18 stsp * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
9 93658fb9 2020-03-18 stsp * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
10 93658fb9 2020-03-18 stsp * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
11 93658fb9 2020-03-18 stsp * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
12 93658fb9 2020-03-18 stsp * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
13 93658fb9 2020-03-18 stsp * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
14 93658fb9 2020-03-18 stsp * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
15 93658fb9 2020-03-18 stsp */
16 93658fb9 2020-03-18 stsp
17 93658fb9 2020-03-18 stsp #include <sys/types.h>
18 93658fb9 2020-03-18 stsp #include <sys/stat.h>
19 93658fb9 2020-03-18 stsp #include <sys/queue.h>
20 93658fb9 2020-03-18 stsp #include <sys/uio.h>
21 93658fb9 2020-03-18 stsp #include <sys/socket.h>
22 93658fb9 2020-03-18 stsp #include <sys/wait.h>
23 93658fb9 2020-03-18 stsp #include <sys/syslimits.h>
24 93658fb9 2020-03-18 stsp #include <sys/resource.h>
25 93658fb9 2020-03-18 stsp #include <sys/socket.h>
26 93658fb9 2020-03-18 stsp
27 93658fb9 2020-03-18 stsp #include <errno.h>
28 5cc27ede 2020-03-18 stsp #include <err.h>
29 93658fb9 2020-03-18 stsp #include <fcntl.h>
30 93658fb9 2020-03-18 stsp #include <stdio.h>
31 93658fb9 2020-03-18 stsp #include <stdlib.h>
32 93658fb9 2020-03-18 stsp #include <string.h>
33 93658fb9 2020-03-18 stsp #include <stdint.h>
34 93658fb9 2020-03-18 stsp #include <sha1.h>
35 93658fb9 2020-03-18 stsp #include <zlib.h>
36 93658fb9 2020-03-18 stsp #include <ctype.h>
37 93658fb9 2020-03-18 stsp #include <limits.h>
38 93658fb9 2020-03-18 stsp #include <imsg.h>
39 93658fb9 2020-03-18 stsp #include <time.h>
40 93658fb9 2020-03-18 stsp #include <uuid.h>
41 93658fb9 2020-03-18 stsp #include <netdb.h>
42 93658fb9 2020-03-18 stsp #include <netinet/in.h>
43 93658fb9 2020-03-18 stsp
44 93658fb9 2020-03-18 stsp #include "got_error.h"
45 93658fb9 2020-03-18 stsp #include "got_reference.h"
46 93658fb9 2020-03-18 stsp #include "got_repository.h"
47 93658fb9 2020-03-18 stsp #include "got_path.h"
48 93658fb9 2020-03-18 stsp #include "got_cancel.h"
49 93658fb9 2020-03-18 stsp #include "got_worktree.h"
50 93658fb9 2020-03-18 stsp #include "got_object.h"
51 fe4e1501 2020-03-18 stsp #include "got_opentemp.h"
52 82ebf666 2020-03-18 stsp #include "got_fetch.h"
53 93658fb9 2020-03-18 stsp
54 93658fb9 2020-03-18 stsp #include "got_lib_delta.h"
55 93658fb9 2020-03-18 stsp #include "got_lib_inflate.h"
56 93658fb9 2020-03-18 stsp #include "got_lib_object.h"
57 93658fb9 2020-03-18 stsp #include "got_lib_object_parse.h"
58 93658fb9 2020-03-18 stsp #include "got_lib_object_create.h"
59 93658fb9 2020-03-18 stsp #include "got_lib_pack.h"
60 93658fb9 2020-03-18 stsp #include "got_lib_sha1.h"
61 93658fb9 2020-03-18 stsp #include "got_lib_privsep.h"
62 93658fb9 2020-03-18 stsp #include "got_lib_object_cache.h"
63 93658fb9 2020-03-18 stsp #include "got_lib_repository.h"
64 d582f26c 2020-03-18 stsp
65 d582f26c 2020-03-18 stsp #ifndef nitems
66 d582f26c 2020-03-18 stsp #define nitems(_a) (sizeof((_a)) / sizeof((_a)[0]))
67 d582f26c 2020-03-18 stsp #endif
68 93658fb9 2020-03-18 stsp
69 68999b92 2020-03-18 stsp #ifndef MIN
70 68999b92 2020-03-18 stsp #define MIN(_a,_b) ((_a) < (_b) ? (_a) : (_b))
71 68999b92 2020-03-18 stsp #endif
72 68999b92 2020-03-18 stsp
73 93658fb9 2020-03-18 stsp static int
74 93658fb9 2020-03-18 stsp hassuffix(char *base, char *suf)
75 93658fb9 2020-03-18 stsp {
76 93658fb9 2020-03-18 stsp int nb, ns;
77 93658fb9 2020-03-18 stsp
78 93658fb9 2020-03-18 stsp nb = strlen(base);
79 93658fb9 2020-03-18 stsp ns = strlen(suf);
80 93658fb9 2020-03-18 stsp if (ns <= nb && strcmp(base + (nb - ns), suf) == 0)
81 93658fb9 2020-03-18 stsp return 1;
82 93658fb9 2020-03-18 stsp return 0;
83 93658fb9 2020-03-18 stsp }
84 93658fb9 2020-03-18 stsp
85 5cc27ede 2020-03-18 stsp static const struct got_error *
86 09838ffc 2020-03-18 stsp dial_ssh(int *fetchfd, const char *host, const char *port, const char *path,
87 68999b92 2020-03-18 stsp const char *direction, int verbosity)
88 93658fb9 2020-03-18 stsp {
89 5cc27ede 2020-03-18 stsp const struct got_error *error = NULL;
90 93658fb9 2020-03-18 stsp int pid, pfd[2];
91 93658fb9 2020-03-18 stsp char cmd[64];
92 68999b92 2020-03-18 stsp char *argv[9];
93 68999b92 2020-03-18 stsp int i = 0;
94 93658fb9 2020-03-18 stsp
95 5cc27ede 2020-03-18 stsp *fetchfd = -1;
96 68999b92 2020-03-18 stsp
97 68999b92 2020-03-18 stsp argv[0] = GOT_FETCH_PATH_SSH;
98 68999b92 2020-03-18 stsp if (verbosity == -1) {
99 68999b92 2020-03-18 stsp argv[1 + i++] = "-q";
100 68999b92 2020-03-18 stsp } else {
101 68999b92 2020-03-18 stsp /* ssh(1) allows up to 3 "-v" options. */
102 68999b92 2020-03-18 stsp for (i = 0; i < MIN(3, verbosity); i++)
103 68999b92 2020-03-18 stsp argv[1 + i] = "-v";
104 68999b92 2020-03-18 stsp }
105 68999b92 2020-03-18 stsp argv[1 + i] = "--";
106 68999b92 2020-03-18 stsp argv[2 + i] = (char *)host;
107 68999b92 2020-03-18 stsp argv[3 + i] = (char *)cmd;
108 68999b92 2020-03-18 stsp argv[4 + i] = (char *)path;
109 68999b92 2020-03-18 stsp argv[5 + i] = NULL;
110 5cc27ede 2020-03-18 stsp
111 93658fb9 2020-03-18 stsp if (pipe(pfd) == -1)
112 5cc27ede 2020-03-18 stsp return got_error_from_errno("pipe");
113 5cc27ede 2020-03-18 stsp
114 93658fb9 2020-03-18 stsp pid = fork();
115 5cc27ede 2020-03-18 stsp if (pid == -1) {
116 5cc27ede 2020-03-18 stsp error = got_error_from_errno("fork");
117 5cc27ede 2020-03-18 stsp close(pfd[0]);
118 93658fb9 2020-03-18 stsp close(pfd[1]);
119 5cc27ede 2020-03-18 stsp return error;
120 5cc27ede 2020-03-18 stsp } else if (pid == 0) {
121 5cc27ede 2020-03-18 stsp int n;
122 5cc27ede 2020-03-18 stsp close(pfd[1]);
123 93658fb9 2020-03-18 stsp dup2(pfd[0], 0);
124 93658fb9 2020-03-18 stsp dup2(pfd[0], 1);
125 5cc27ede 2020-03-18 stsp n = snprintf(cmd, sizeof(cmd), "git-%s-pack", direction);
126 5cc27ede 2020-03-18 stsp if (n < 0 || n >= sizeof(cmd))
127 5cc27ede 2020-03-18 stsp err(1, "snprintf");
128 68999b92 2020-03-18 stsp if (execv(GOT_FETCH_PATH_SSH, argv) == -1)
129 ee448f5f 2020-03-18 stsp err(1, "execl");
130 5cc27ede 2020-03-18 stsp abort(); /* not reached */
131 5cc27ede 2020-03-18 stsp } else {
132 93658fb9 2020-03-18 stsp close(pfd[0]);
133 5cc27ede 2020-03-18 stsp *fetchfd = pfd[1];
134 5cc27ede 2020-03-18 stsp return NULL;
135 93658fb9 2020-03-18 stsp }
136 93658fb9 2020-03-18 stsp }
137 93658fb9 2020-03-18 stsp
138 5cc27ede 2020-03-18 stsp static const struct got_error *
139 09838ffc 2020-03-18 stsp dial_git(int *fetchfd, const char *host, const char *port, const char *path,
140 09838ffc 2020-03-18 stsp const char *direction)
141 93658fb9 2020-03-18 stsp {
142 5cc27ede 2020-03-18 stsp const struct got_error *err = NULL;
143 93658fb9 2020-03-18 stsp struct addrinfo hints, *servinfo, *p;
144 5cc27ede 2020-03-18 stsp char *cmd = NULL, *pkt = NULL;
145 4312a498 2020-03-18 stsp int fd = -1, totlen, r, eaicode;
146 5cc27ede 2020-03-18 stsp
147 5cc27ede 2020-03-18 stsp *fetchfd = -1;
148 93658fb9 2020-03-18 stsp
149 93658fb9 2020-03-18 stsp memset(&hints, 0, sizeof hints);
150 93658fb9 2020-03-18 stsp hints.ai_family = AF_UNSPEC;
151 93658fb9 2020-03-18 stsp hints.ai_socktype = SOCK_STREAM;
152 5cc27ede 2020-03-18 stsp eaicode = getaddrinfo(host, port, &hints, &servinfo);
153 a117fd10 2020-03-18 stsp if (eaicode) {
154 a117fd10 2020-03-18 stsp char msg[512];
155 a117fd10 2020-03-18 stsp snprintf(msg, sizeof(msg), "%s: %s", host,
156 a117fd10 2020-03-18 stsp gai_strerror(eaicode));
157 a117fd10 2020-03-18 stsp return got_error_msg(GOT_ERR_ADDRINFO, msg);
158 a117fd10 2020-03-18 stsp }
159 93658fb9 2020-03-18 stsp
160 93658fb9 2020-03-18 stsp for (p = servinfo; p != NULL; p = p->ai_next) {
161 93658fb9 2020-03-18 stsp if ((fd = socket(p->ai_family, p->ai_socktype,
162 93658fb9 2020-03-18 stsp p->ai_protocol)) == -1)
163 93658fb9 2020-03-18 stsp continue;
164 93658fb9 2020-03-18 stsp if (connect(fd, p->ai_addr, p->ai_addrlen) == 0)
165 93658fb9 2020-03-18 stsp break;
166 5cc27ede 2020-03-18 stsp err = got_error_from_errno("connect");
167 93658fb9 2020-03-18 stsp close(fd);
168 93658fb9 2020-03-18 stsp }
169 93658fb9 2020-03-18 stsp if (p == NULL)
170 5cc27ede 2020-03-18 stsp goto done;
171 93658fb9 2020-03-18 stsp
172 4312a498 2020-03-18 stsp if (asprintf(&cmd, "git-%s-pack %s", direction, path) == -1) {
173 5cc27ede 2020-03-18 stsp err = got_error_from_errno("asprintf");
174 5cc27ede 2020-03-18 stsp goto done;
175 5cc27ede 2020-03-18 stsp }
176 4312a498 2020-03-18 stsp totlen = 4 + strlen(cmd) + 1 + strlen("host=") + strlen(host) + 1;
177 4312a498 2020-03-18 stsp if (asprintf(&pkt, "%04x%s", totlen, cmd) == -1) {
178 5cc27ede 2020-03-18 stsp err = got_error_from_errno("asprintf");
179 5cc27ede 2020-03-18 stsp goto done;
180 5cc27ede 2020-03-18 stsp }
181 4312a498 2020-03-18 stsp r = write(fd, pkt, strlen(pkt) + 1);
182 4312a498 2020-03-18 stsp if (r == -1) {
183 4312a498 2020-03-18 stsp err = got_error_from_errno("write");
184 4312a498 2020-03-18 stsp goto done;
185 4312a498 2020-03-18 stsp }
186 4312a498 2020-03-18 stsp if (asprintf(&pkt, "host=%s", host) == -1) {
187 4312a498 2020-03-18 stsp err = got_error_from_errno("asprintf");
188 4312a498 2020-03-18 stsp goto done;
189 4312a498 2020-03-18 stsp }
190 4312a498 2020-03-18 stsp r = write(fd, pkt, strlen(pkt) + 1);
191 4312a498 2020-03-18 stsp if (r == -1) {
192 5cc27ede 2020-03-18 stsp err = got_error_from_errno("write");
193 4312a498 2020-03-18 stsp goto done;
194 4312a498 2020-03-18 stsp }
195 5cc27ede 2020-03-18 stsp done:
196 93658fb9 2020-03-18 stsp free(cmd);
197 93658fb9 2020-03-18 stsp free(pkt);
198 5cc27ede 2020-03-18 stsp if (err) {
199 5cc27ede 2020-03-18 stsp if (fd != -1)
200 5cc27ede 2020-03-18 stsp close(fd);
201 5cc27ede 2020-03-18 stsp } else
202 5cc27ede 2020-03-18 stsp *fetchfd = fd;
203 20eb36d0 2020-03-18 stsp return err;
204 20eb36d0 2020-03-18 stsp }
205 20eb36d0 2020-03-18 stsp
206 20eb36d0 2020-03-18 stsp const struct got_error *
207 20eb36d0 2020-03-18 stsp got_fetch_connect(int *fetchfd, const char *proto, const char *host,
208 68999b92 2020-03-18 stsp const char *port, const char *server_path, int verbosity)
209 20eb36d0 2020-03-18 stsp {
210 20eb36d0 2020-03-18 stsp const struct got_error *err = NULL;
211 20eb36d0 2020-03-18 stsp
212 20eb36d0 2020-03-18 stsp *fetchfd = -1;
213 20eb36d0 2020-03-18 stsp
214 20eb36d0 2020-03-18 stsp if (strcmp(proto, "ssh") == 0 || strcmp(proto, "git+ssh") == 0)
215 68999b92 2020-03-18 stsp err = dial_ssh(fetchfd, host, port, server_path, "upload",
216 68999b92 2020-03-18 stsp verbosity);
217 20eb36d0 2020-03-18 stsp else if (strcmp(proto, "git") == 0)
218 20eb36d0 2020-03-18 stsp err = dial_git(fetchfd, host, port, server_path, "upload");
219 20eb36d0 2020-03-18 stsp else if (strcmp(proto, "http") == 0 || strcmp(proto, "git+http") == 0)
220 20eb36d0 2020-03-18 stsp err = got_error_path(proto, GOT_ERR_NOT_IMPL);
221 20eb36d0 2020-03-18 stsp else
222 20eb36d0 2020-03-18 stsp err = got_error_path(proto, GOT_ERR_BAD_PROTO);
223 5cc27ede 2020-03-18 stsp return err;
224 93658fb9 2020-03-18 stsp }
225 93658fb9 2020-03-18 stsp
226 82ebf666 2020-03-18 stsp const struct got_error *
227 82ebf666 2020-03-18 stsp got_fetch_parse_uri(char **proto, char **host, char **port,
228 82ebf666 2020-03-18 stsp char **server_path, char **repo_name, const char *uri)
229 93658fb9 2020-03-18 stsp {
230 82ebf666 2020-03-18 stsp const struct got_error *err = NULL;
231 93658fb9 2020-03-18 stsp char *s, *p, *q;
232 9a682fbe 2020-03-19 stsp int n;
233 93658fb9 2020-03-18 stsp
234 82ebf666 2020-03-18 stsp *proto = *host = *port = *server_path = *repo_name = NULL;
235 82ebf666 2020-03-18 stsp
236 93658fb9 2020-03-18 stsp p = strstr(uri, "://");
237 93658fb9 2020-03-18 stsp if (!p) {
238 9a682fbe 2020-03-19 stsp /* Try parsing Git's "scp" style URL syntax. */
239 9a682fbe 2020-03-19 stsp *proto = strdup("ssh");
240 9a682fbe 2020-03-19 stsp if (proto == NULL) {
241 9a682fbe 2020-03-19 stsp err = got_error_from_errno("strdup");
242 9a682fbe 2020-03-19 stsp goto done;
243 9a682fbe 2020-03-19 stsp }
244 9a682fbe 2020-03-19 stsp *port = strdup("22");
245 9a682fbe 2020-03-19 stsp if (*port == NULL) {
246 9a682fbe 2020-03-19 stsp err = got_error_from_errno("strdup");
247 9a682fbe 2020-03-19 stsp goto done;
248 9a682fbe 2020-03-19 stsp }
249 9a682fbe 2020-03-19 stsp s = (char *)uri;
250 9a682fbe 2020-03-19 stsp q = strchr(s, ':');
251 9a682fbe 2020-03-19 stsp if (q == NULL) {
252 9a682fbe 2020-03-19 stsp err = got_error(GOT_ERR_PARSE_URI);
253 9a682fbe 2020-03-19 stsp goto done;
254 9a682fbe 2020-03-19 stsp }
255 9a682fbe 2020-03-19 stsp /* No slashes allowed before first colon. */
256 9a682fbe 2020-03-19 stsp p = strchr(s, '/');
257 9a682fbe 2020-03-19 stsp if (p && q > p) {
258 9a682fbe 2020-03-19 stsp err = got_error(GOT_ERR_PARSE_URI);
259 9a682fbe 2020-03-19 stsp goto done;
260 9a682fbe 2020-03-19 stsp }
261 82ebf666 2020-03-18 stsp *host = strndup(s, q - s);
262 82ebf666 2020-03-18 stsp if (*host == NULL) {
263 82ebf666 2020-03-18 stsp err = got_error_from_errno("strndup");
264 82ebf666 2020-03-18 stsp goto done;
265 82ebf666 2020-03-18 stsp }
266 9a682fbe 2020-03-19 stsp p = q + 1;
267 82ebf666 2020-03-18 stsp } else {
268 9a682fbe 2020-03-19 stsp *proto = strndup(uri, p - uri);
269 9a682fbe 2020-03-19 stsp if (proto == NULL) {
270 82ebf666 2020-03-18 stsp err = got_error_from_errno("strndup");
271 82ebf666 2020-03-18 stsp goto done;
272 82ebf666 2020-03-18 stsp }
273 9a682fbe 2020-03-19 stsp s = p + 3;
274 9a682fbe 2020-03-19 stsp
275 9a682fbe 2020-03-19 stsp p = strstr(s, "/");
276 9a682fbe 2020-03-19 stsp if (p == NULL || strlen(p) == 1) {
277 9a682fbe 2020-03-19 stsp err = got_error(GOT_ERR_PARSE_URI);
278 82ebf666 2020-03-18 stsp goto done;
279 82ebf666 2020-03-18 stsp }
280 9a682fbe 2020-03-19 stsp
281 9a682fbe 2020-03-19 stsp q = memchr(s, ':', p - s);
282 9a682fbe 2020-03-19 stsp if (q) {
283 9a682fbe 2020-03-19 stsp *host = strndup(s, q - s);
284 9a682fbe 2020-03-19 stsp if (*host == NULL) {
285 9a682fbe 2020-03-19 stsp err = got_error_from_errno("strndup");
286 9a682fbe 2020-03-19 stsp goto done;
287 9a682fbe 2020-03-19 stsp }
288 9a682fbe 2020-03-19 stsp *port = strndup(q + 1, p - (q + 1));
289 9a682fbe 2020-03-19 stsp if (*port == NULL) {
290 9a682fbe 2020-03-19 stsp err = got_error_from_errno("strndup");
291 9a682fbe 2020-03-19 stsp goto done;
292 9a682fbe 2020-03-19 stsp }
293 9a682fbe 2020-03-19 stsp } else {
294 9a682fbe 2020-03-19 stsp *host = strndup(s, p - s);
295 9a682fbe 2020-03-19 stsp if (*host == NULL) {
296 9a682fbe 2020-03-19 stsp err = got_error_from_errno("strndup");
297 9a682fbe 2020-03-19 stsp goto done;
298 9a682fbe 2020-03-19 stsp }
299 9a682fbe 2020-03-19 stsp if (asprintf(port, "%u", GOT_DEFAULT_GIT_PORT) == -1) {
300 9a682fbe 2020-03-19 stsp err = got_error_from_errno("asprintf");
301 9a682fbe 2020-03-19 stsp goto done;
302 9a682fbe 2020-03-19 stsp }
303 9a682fbe 2020-03-19 stsp }
304 93658fb9 2020-03-18 stsp }
305 93658fb9 2020-03-18 stsp
306 82ebf666 2020-03-18 stsp *server_path = strdup(p);
307 82ebf666 2020-03-18 stsp if (*server_path == NULL) {
308 82ebf666 2020-03-18 stsp err = got_error_from_errno("strdup");
309 82ebf666 2020-03-18 stsp goto done;
310 82ebf666 2020-03-18 stsp }
311 82ebf666 2020-03-18 stsp
312 9a682fbe 2020-03-19 stsp p = strrchr(p, '/');
313 9a682fbe 2020-03-19 stsp if (!p || strlen(p) <= 1) {
314 82ebf666 2020-03-18 stsp err = got_error(GOT_ERR_PARSE_URI);
315 82ebf666 2020-03-18 stsp goto done;
316 93658fb9 2020-03-18 stsp }
317 9a682fbe 2020-03-19 stsp p++;
318 93658fb9 2020-03-18 stsp n = strlen(p);
319 9a682fbe 2020-03-19 stsp if (n == 0) {
320 9a682fbe 2020-03-19 stsp err = got_error(GOT_ERR_PARSE_URI);
321 9a682fbe 2020-03-19 stsp goto done;
322 9a682fbe 2020-03-19 stsp }
323 93658fb9 2020-03-18 stsp if (hassuffix(p, ".git"))
324 93658fb9 2020-03-18 stsp n -= 4;
325 82ebf666 2020-03-18 stsp *repo_name = strndup(p, (p + n) - p);
326 82ebf666 2020-03-18 stsp if (*repo_name == NULL) {
327 82ebf666 2020-03-18 stsp err = got_error_from_errno("strndup");
328 82ebf666 2020-03-18 stsp goto done;
329 82ebf666 2020-03-18 stsp }
330 82ebf666 2020-03-18 stsp done:
331 82ebf666 2020-03-18 stsp if (err) {
332 82ebf666 2020-03-18 stsp free(*proto);
333 82ebf666 2020-03-18 stsp *proto = NULL;
334 82ebf666 2020-03-18 stsp free(*host);
335 82ebf666 2020-03-18 stsp *host = NULL;
336 82ebf666 2020-03-18 stsp free(*port);
337 82ebf666 2020-03-18 stsp *port = NULL;
338 82ebf666 2020-03-18 stsp free(*server_path);
339 82ebf666 2020-03-18 stsp *server_path = NULL;
340 82ebf666 2020-03-18 stsp free(*repo_name);
341 82ebf666 2020-03-18 stsp *repo_name = NULL;
342 82ebf666 2020-03-18 stsp }
343 82ebf666 2020-03-18 stsp return err;
344 849f7557 2020-03-18 stsp }
345 849f7557 2020-03-18 stsp
346 849f7557 2020-03-18 stsp static const struct got_error *
347 849f7557 2020-03-18 stsp check_pack_hash(int fd, size_t sz, uint8_t *hcomp)
348 849f7557 2020-03-18 stsp {
349 849f7557 2020-03-18 stsp SHA1_CTX ctx;
350 849f7557 2020-03-18 stsp uint8_t hexpect[SHA1_DIGEST_LENGTH];
351 849f7557 2020-03-18 stsp uint8_t buf[32 * 1024];
352 849f7557 2020-03-18 stsp ssize_t n, r, nr;
353 849f7557 2020-03-18 stsp
354 849f7557 2020-03-18 stsp if (sz < sizeof(struct got_packfile_hdr) + SHA1_DIGEST_LENGTH)
355 849f7557 2020-03-18 stsp return got_error_msg(GOT_ERR_BAD_PACKFILE, "short packfile");
356 849f7557 2020-03-18 stsp
357 849f7557 2020-03-18 stsp n = 0;
358 849f7557 2020-03-18 stsp SHA1Init(&ctx);
359 849f7557 2020-03-18 stsp while (n < sz - 20) {
360 849f7557 2020-03-18 stsp nr = sizeof(buf);
361 849f7557 2020-03-18 stsp if (sz - n - 20 < sizeof(buf))
362 849f7557 2020-03-18 stsp nr = sz - n - 20;
363 849f7557 2020-03-18 stsp r = read(fd, buf, nr);
364 849f7557 2020-03-18 stsp if (r == -1)
365 849f7557 2020-03-18 stsp return got_error_from_errno("read");
366 849f7557 2020-03-18 stsp if (r != nr)
367 849f7557 2020-03-18 stsp return got_error_msg(GOT_ERR_BAD_PACKFILE,
368 849f7557 2020-03-18 stsp "short pack file");
369 849f7557 2020-03-18 stsp SHA1Update(&ctx, buf, nr);
370 849f7557 2020-03-18 stsp n += r;
371 849f7557 2020-03-18 stsp }
372 849f7557 2020-03-18 stsp SHA1Final(hcomp, &ctx);
373 849f7557 2020-03-18 stsp
374 849f7557 2020-03-18 stsp r = read(fd, hexpect, sizeof(hexpect));
375 849f7557 2020-03-18 stsp if (r == -1)
376 849f7557 2020-03-18 stsp return got_error_from_errno("read");
377 849f7557 2020-03-18 stsp if (r != sizeof(hexpect))
378 849f7557 2020-03-18 stsp return got_error_msg(GOT_ERR_BAD_PACKFILE,
379 849f7557 2020-03-18 stsp "short pack file");
380 849f7557 2020-03-18 stsp
381 849f7557 2020-03-18 stsp if (memcmp(hcomp, hexpect, SHA1_DIGEST_LENGTH) != 0)
382 849f7557 2020-03-18 stsp return got_error_msg(GOT_ERR_BAD_PACKFILE,
383 849f7557 2020-03-18 stsp "packfile checksum mismatch");
384 849f7557 2020-03-18 stsp
385 849f7557 2020-03-18 stsp return NULL;
386 93658fb9 2020-03-18 stsp }
387 93658fb9 2020-03-18 stsp
388 93658fb9 2020-03-18 stsp const struct got_error*
389 07e52fce 2020-03-18 stsp got_fetch_pack(struct got_object_id **pack_hash, struct got_pathlist_head *refs,
390 531c3985 2020-03-18 stsp struct got_pathlist_head *symrefs, int fetchfd, struct got_repository *repo,
391 531c3985 2020-03-18 stsp got_fetch_progress_cb progress_cb, void *progress_arg)
392 93658fb9 2020-03-18 stsp {
393 20eb36d0 2020-03-18 stsp int imsg_fetchfds[2], imsg_idxfds[2];
394 20eb36d0 2020-03-18 stsp int packfd = -1, npackfd = -1, idxfd = -1, nidxfd = -1, nfetchfd = -1;
395 d582f26c 2020-03-18 stsp int tmpfds[3], i;
396 85e8591f 2020-03-18 stsp int fetchstatus, idxstatus, done = 0;
397 93658fb9 2020-03-18 stsp const struct got_error *err;
398 85e8591f 2020-03-18 stsp struct imsgbuf fetchibuf, idxibuf;
399 85e8591f 2020-03-18 stsp pid_t fetchpid, idxpid;
400 bb64b798 2020-03-18 stsp char *tmppackpath = NULL, *tmpidxpath = NULL;
401 afa77e03 2020-03-18 stsp char *packpath = NULL, *idxpath = NULL, *id_str = NULL;
402 bb64b798 2020-03-18 stsp const char *repo_path = got_repo_get_path(repo);
403 33501562 2020-03-18 stsp struct got_pathlist_head have_refs;
404 abe0f35f 2020-03-18 stsp struct got_pathlist_entry *pe;
405 d2cdc636 2020-03-18 stsp off_t packfile_size = 0;
406 ee61b6d3 2020-03-18 stsp char *path;
407 abe0f35f 2020-03-18 stsp
408 d9b4d0c0 2020-03-18 stsp *pack_hash = NULL;
409 d582f26c 2020-03-18 stsp for (i = 0; i < nitems(tmpfds); i++)
410 d582f26c 2020-03-18 stsp tmpfds[i] = -1;
411 93658fb9 2020-03-18 stsp
412 33501562 2020-03-18 stsp TAILQ_INIT(&have_refs);
413 33501562 2020-03-18 stsp
414 66cba96f 2020-03-18 stsp if (asprintf(&path, "%s/%s/fetching.pack",
415 66cba96f 2020-03-18 stsp repo_path, GOT_OBJECTS_PACK_DIR) == -1) {
416 ee61b6d3 2020-03-18 stsp err = got_error_from_errno("asprintf");
417 ee61b6d3 2020-03-18 stsp goto done;
418 8e278d17 2020-03-18 stsp }
419 ee61b6d3 2020-03-18 stsp err = got_opentemp_named_fd(&tmppackpath, &packfd, path);
420 ee61b6d3 2020-03-18 stsp free(path);
421 fe4e1501 2020-03-18 stsp if (err)
422 8e278d17 2020-03-18 stsp goto done;
423 93658fb9 2020-03-18 stsp npackfd = dup(packfd);
424 8e278d17 2020-03-18 stsp if (npackfd == -1) {
425 8e278d17 2020-03-18 stsp err = got_error_from_errno("dup");
426 8e278d17 2020-03-18 stsp goto done;
427 8e278d17 2020-03-18 stsp }
428 66cba96f 2020-03-18 stsp if (asprintf(&path, "%s/%s/fetching.idx",
429 66cba96f 2020-03-18 stsp repo_path, GOT_OBJECTS_PACK_DIR) == -1) {
430 ee61b6d3 2020-03-18 stsp err = got_error_from_errno("asprintf");
431 ee61b6d3 2020-03-18 stsp goto done;
432 ee61b6d3 2020-03-18 stsp }
433 ee61b6d3 2020-03-18 stsp err = got_opentemp_named_fd(&tmpidxpath, &idxfd, path);
434 ee61b6d3 2020-03-18 stsp free(path);
435 fe4e1501 2020-03-18 stsp if (err)
436 8e278d17 2020-03-18 stsp goto done;
437 93658fb9 2020-03-18 stsp nidxfd = dup(idxfd);
438 8e278d17 2020-03-18 stsp if (nidxfd == -1) {
439 8e278d17 2020-03-18 stsp err = got_error_from_errno("dup");
440 8e278d17 2020-03-18 stsp goto done;
441 8e278d17 2020-03-18 stsp }
442 93658fb9 2020-03-18 stsp
443 d582f26c 2020-03-18 stsp for (i = 0; i < nitems(tmpfds); i++) {
444 d582f26c 2020-03-18 stsp tmpfds[i] = got_opentempfd();
445 d582f26c 2020-03-18 stsp if (tmpfds[i] == -1) {
446 d582f26c 2020-03-18 stsp err = got_error_from_errno("got_opentempfd");
447 d582f26c 2020-03-18 stsp goto done;
448 d582f26c 2020-03-18 stsp }
449 4788f1ce 2020-03-18 stsp }
450 4788f1ce 2020-03-18 stsp
451 8e278d17 2020-03-18 stsp if (socketpair(AF_UNIX, SOCK_STREAM, PF_UNSPEC, imsg_fetchfds) == -1) {
452 8e278d17 2020-03-18 stsp err = got_error_from_errno("socketpair");
453 8e278d17 2020-03-18 stsp goto done;
454 8e278d17 2020-03-18 stsp }
455 93658fb9 2020-03-18 stsp
456 85e8591f 2020-03-18 stsp fetchpid = fork();
457 85e8591f 2020-03-18 stsp if (fetchpid == -1) {
458 8e278d17 2020-03-18 stsp err = got_error_from_errno("fork");
459 8e278d17 2020-03-18 stsp goto done;
460 85e8591f 2020-03-18 stsp } else if (fetchpid == 0){
461 8e278d17 2020-03-18 stsp got_privsep_exec_child(imsg_fetchfds,
462 12491971 2020-03-18 stsp GOT_PATH_PROG_FETCH_PACK, tmppackpath);
463 93658fb9 2020-03-18 stsp }
464 93658fb9 2020-03-18 stsp
465 8e278d17 2020-03-18 stsp if (close(imsg_fetchfds[1]) != 0) {
466 8e278d17 2020-03-18 stsp err = got_error_from_errno("close");
467 8e278d17 2020-03-18 stsp goto done;
468 8e278d17 2020-03-18 stsp }
469 85e8591f 2020-03-18 stsp imsg_init(&fetchibuf, imsg_fetchfds[0]);
470 20eb36d0 2020-03-18 stsp nfetchfd = dup(fetchfd);
471 20eb36d0 2020-03-18 stsp if (nfetchfd == -1) {
472 20eb36d0 2020-03-18 stsp err = got_error_from_errno("dup");
473 20eb36d0 2020-03-18 stsp goto done;
474 20eb36d0 2020-03-18 stsp }
475 85e8591f 2020-03-18 stsp err = got_privsep_send_fetch_req(&fetchibuf, nfetchfd, &have_refs);
476 93658fb9 2020-03-18 stsp if (err != NULL)
477 8e278d17 2020-03-18 stsp goto done;
478 20eb36d0 2020-03-18 stsp nfetchfd = -1;
479 f826addf 2020-03-18 stsp err = got_privsep_send_fetch_outfd(&fetchibuf, npackfd);
480 93658fb9 2020-03-18 stsp if (err != NULL)
481 8e278d17 2020-03-18 stsp goto done;
482 93658fb9 2020-03-18 stsp npackfd = dup(packfd);
483 8e278d17 2020-03-18 stsp if (npackfd == -1) {
484 8e278d17 2020-03-18 stsp err = got_error_from_errno("dup");
485 8e278d17 2020-03-18 stsp goto done;
486 8e278d17 2020-03-18 stsp }
487 8e278d17 2020-03-18 stsp
488 d2cdc636 2020-03-18 stsp packfile_size = 0;
489 8f2d01a6 2020-03-18 stsp while (!done) {
490 d9b4d0c0 2020-03-18 stsp struct got_object_id *id = NULL;
491 d9b4d0c0 2020-03-18 stsp char *refname = NULL;
492 531c3985 2020-03-18 stsp char *server_progress = NULL;
493 d2cdc636 2020-03-18 stsp off_t packfile_size_cur;
494 8e278d17 2020-03-18 stsp
495 8f2d01a6 2020-03-18 stsp err = got_privsep_recv_fetch_progress(&done,
496 d2cdc636 2020-03-18 stsp &id, &refname, symrefs, &server_progress,
497 85e8591f 2020-03-18 stsp &packfile_size_cur, &fetchibuf);
498 8f2d01a6 2020-03-18 stsp if (err != NULL)
499 8e278d17 2020-03-18 stsp goto done;
500 d9b4d0c0 2020-03-18 stsp if (done)
501 d9b4d0c0 2020-03-18 stsp *pack_hash = id;
502 d9b4d0c0 2020-03-18 stsp else if (refname && id) {
503 d9b4d0c0 2020-03-18 stsp err = got_pathlist_append(refs, refname, id);
504 8f2d01a6 2020-03-18 stsp if (err)
505 8e278d17 2020-03-18 stsp goto done;
506 531c3985 2020-03-18 stsp } else if (server_progress) {
507 531c3985 2020-03-18 stsp char *s, *s0 = server_progress;
508 531c3985 2020-03-18 stsp while ((s = strsep(&s0, "\r")) != NULL) {
509 531c3985 2020-03-18 stsp if (*s == '\0')
510 531c3985 2020-03-18 stsp continue;
511 668a20f6 2020-03-18 stsp err = progress_cb(progress_arg, s,
512 668a20f6 2020-03-18 stsp packfile_size_cur, 0, 0, 0, 0);
513 531c3985 2020-03-18 stsp if (err)
514 531c3985 2020-03-18 stsp break;
515 531c3985 2020-03-18 stsp }
516 531c3985 2020-03-18 stsp free(server_progress);
517 531c3985 2020-03-18 stsp if (err)
518 531c3985 2020-03-18 stsp goto done;
519 d2cdc636 2020-03-18 stsp } else if (packfile_size_cur != packfile_size) {
520 d2cdc636 2020-03-18 stsp err = progress_cb(progress_arg, NULL,
521 668a20f6 2020-03-18 stsp packfile_size_cur, 0, 0, 0, 0);
522 d2cdc636 2020-03-18 stsp if (err)
523 d2cdc636 2020-03-18 stsp break;
524 d2cdc636 2020-03-18 stsp packfile_size = packfile_size_cur;
525 8f2d01a6 2020-03-18 stsp }
526 8f2d01a6 2020-03-18 stsp }
527 85e8591f 2020-03-18 stsp if (waitpid(fetchpid, &fetchstatus, 0) == -1) {
528 8e278d17 2020-03-18 stsp err = got_error_from_errno("waitpid");
529 8e278d17 2020-03-18 stsp goto done;
530 8e278d17 2020-03-18 stsp }
531 849f7557 2020-03-18 stsp
532 849f7557 2020-03-18 stsp if (lseek(packfd, 0, SEEK_SET) == -1) {
533 849f7557 2020-03-18 stsp err = got_error_from_errno("lseek");
534 849f7557 2020-03-18 stsp goto done;
535 849f7557 2020-03-18 stsp }
536 849f7557 2020-03-18 stsp err = check_pack_hash(packfd, packfile_size, (*pack_hash)->sha1);
537 849f7557 2020-03-18 stsp if (err)
538 849f7557 2020-03-18 stsp goto done;
539 531c3985 2020-03-18 stsp
540 8e278d17 2020-03-18 stsp if (socketpair(AF_UNIX, SOCK_STREAM, PF_UNSPEC, imsg_idxfds) == -1) {
541 8e278d17 2020-03-18 stsp err = got_error_from_errno("socketpair");
542 8e278d17 2020-03-18 stsp goto done;
543 8e278d17 2020-03-18 stsp }
544 85e8591f 2020-03-18 stsp idxpid = fork();
545 85e8591f 2020-03-18 stsp if (idxpid == -1) {
546 8e278d17 2020-03-18 stsp err= got_error_from_errno("fork");
547 8e278d17 2020-03-18 stsp goto done;
548 85e8591f 2020-03-18 stsp } else if (idxpid == 0)
549 8e278d17 2020-03-18 stsp got_privsep_exec_child(imsg_idxfds,
550 12491971 2020-03-18 stsp GOT_PATH_PROG_INDEX_PACK, tmppackpath);
551 8e278d17 2020-03-18 stsp if (close(imsg_idxfds[1]) != 0) {
552 8e278d17 2020-03-18 stsp err = got_error_from_errno("close");
553 8e278d17 2020-03-18 stsp goto done;
554 8e278d17 2020-03-18 stsp }
555 85e8591f 2020-03-18 stsp imsg_init(&idxibuf, imsg_idxfds[0]);
556 93658fb9 2020-03-18 stsp
557 668a20f6 2020-03-18 stsp err = got_privsep_send_index_pack_req(&idxibuf, (*pack_hash)->sha1,
558 668a20f6 2020-03-18 stsp npackfd);
559 93658fb9 2020-03-18 stsp if (err != NULL)
560 8e278d17 2020-03-18 stsp goto done;
561 8e278d17 2020-03-18 stsp npackfd = -1;
562 73ab1060 2020-03-18 stsp err = got_privsep_send_index_pack_outfd(&idxibuf, nidxfd);
563 93658fb9 2020-03-18 stsp if (err != NULL)
564 8e278d17 2020-03-18 stsp goto done;
565 8e278d17 2020-03-18 stsp nidxfd = -1;
566 d582f26c 2020-03-18 stsp for (i = 0; i < nitems(tmpfds); i++) {
567 d582f26c 2020-03-18 stsp err = got_privsep_send_tmpfd(&idxibuf, tmpfds[i]);
568 d582f26c 2020-03-18 stsp if (err != NULL)
569 d582f26c 2020-03-18 stsp goto done;
570 d582f26c 2020-03-18 stsp tmpfds[i] = -1;
571 d582f26c 2020-03-18 stsp }
572 baa9fea0 2020-03-18 stsp done = 0;
573 baa9fea0 2020-03-18 stsp while (!done) {
574 668a20f6 2020-03-18 stsp int nobj_total, nobj_indexed, nobj_loose, nobj_resolved;
575 668a20f6 2020-03-18 stsp
576 668a20f6 2020-03-18 stsp err = got_privsep_recv_index_progress(&done, &nobj_total,
577 668a20f6 2020-03-18 stsp &nobj_indexed, &nobj_loose, &nobj_resolved,
578 668a20f6 2020-03-18 stsp &idxibuf);
579 baa9fea0 2020-03-18 stsp if (err != NULL)
580 baa9fea0 2020-03-18 stsp goto done;
581 668a20f6 2020-03-18 stsp if (nobj_indexed != 0) {
582 baa9fea0 2020-03-18 stsp err = progress_cb(progress_arg, NULL,
583 668a20f6 2020-03-18 stsp packfile_size, nobj_total,
584 668a20f6 2020-03-18 stsp nobj_indexed, nobj_loose, nobj_resolved);
585 baa9fea0 2020-03-18 stsp if (err)
586 baa9fea0 2020-03-18 stsp break;
587 baa9fea0 2020-03-18 stsp }
588 baa9fea0 2020-03-18 stsp imsg_clear(&idxibuf);
589 baa9fea0 2020-03-18 stsp }
590 8e278d17 2020-03-18 stsp if (close(imsg_idxfds[0]) == -1) {
591 8e278d17 2020-03-18 stsp err = got_error_from_errno("close");
592 8e278d17 2020-03-18 stsp goto done;
593 8e278d17 2020-03-18 stsp }
594 85e8591f 2020-03-18 stsp if (waitpid(idxpid, &idxstatus, 0) == -1) {
595 8e278d17 2020-03-18 stsp err = got_error_from_errno("waitpid");
596 8e278d17 2020-03-18 stsp goto done;
597 8e278d17 2020-03-18 stsp }
598 93658fb9 2020-03-18 stsp
599 d9b4d0c0 2020-03-18 stsp err = got_object_id_str(&id_str, *pack_hash);
600 afa77e03 2020-03-18 stsp if (err)
601 8e278d17 2020-03-18 stsp goto done;
602 66cba96f 2020-03-18 stsp if (asprintf(&packpath, "%s/%s/pack-%s.pack",
603 66cba96f 2020-03-18 stsp repo_path, GOT_OBJECTS_PACK_DIR, id_str) == -1) {
604 8e278d17 2020-03-18 stsp err = got_error_from_errno("asprintf");
605 8e278d17 2020-03-18 stsp goto done;
606 8e278d17 2020-03-18 stsp }
607 93658fb9 2020-03-18 stsp
608 66cba96f 2020-03-18 stsp if (asprintf(&idxpath, "%s/%s/pack-%s.idx",
609 66cba96f 2020-03-18 stsp repo_path, GOT_OBJECTS_PACK_DIR, id_str) == -1) {
610 8e278d17 2020-03-18 stsp err = got_error_from_errno("asprintf");
611 8e278d17 2020-03-18 stsp goto done;
612 8e278d17 2020-03-18 stsp }
613 afa77e03 2020-03-18 stsp
614 8e278d17 2020-03-18 stsp if (rename(tmppackpath, packpath) == -1) {
615 8e278d17 2020-03-18 stsp err = got_error_from_errno3("rename", tmppackpath, packpath);
616 8e278d17 2020-03-18 stsp goto done;
617 8e278d17 2020-03-18 stsp }
618 8e278d17 2020-03-18 stsp if (rename(tmpidxpath, idxpath) == -1) {
619 8e278d17 2020-03-18 stsp err = got_error_from_errno3("rename", tmpidxpath, idxpath);
620 8e278d17 2020-03-18 stsp goto done;
621 8e278d17 2020-03-18 stsp }
622 ee61b6d3 2020-03-18 stsp
623 8e278d17 2020-03-18 stsp done:
624 20eb36d0 2020-03-18 stsp if (nfetchfd != -1 && close(nfetchfd) == -1 && err == NULL)
625 8e278d17 2020-03-18 stsp err = got_error_from_errno("close");
626 8e278d17 2020-03-18 stsp if (npackfd != -1 && close(npackfd) == -1 && err == NULL)
627 8e278d17 2020-03-18 stsp err = got_error_from_errno("close");
628 8e278d17 2020-03-18 stsp if (packfd != -1 && close(packfd) == -1 && err == NULL)
629 8e278d17 2020-03-18 stsp err = got_error_from_errno("close");
630 8e278d17 2020-03-18 stsp if (idxfd != -1 && close(idxfd) == -1 && err == NULL)
631 8e278d17 2020-03-18 stsp err = got_error_from_errno("close");
632 d582f26c 2020-03-18 stsp for (i = 0; i < nitems(tmpfds); i++) {
633 d582f26c 2020-03-18 stsp if (tmpfds[i] != -1 && close(tmpfds[i]) == -1 && err == NULL)
634 d582f26c 2020-03-18 stsp err = got_error_from_errno("close");
635 d582f26c 2020-03-18 stsp }
636 afa77e03 2020-03-18 stsp free(tmppackpath);
637 afa77e03 2020-03-18 stsp free(tmpidxpath);
638 fe4e1501 2020-03-18 stsp free(idxpath);
639 afa77e03 2020-03-18 stsp free(packpath);
640 fe4e1501 2020-03-18 stsp
641 d9b4d0c0 2020-03-18 stsp if (err) {
642 d9b4d0c0 2020-03-18 stsp free(*pack_hash);
643 d9b4d0c0 2020-03-18 stsp *pack_hash = NULL;
644 d9b4d0c0 2020-03-18 stsp TAILQ_FOREACH(pe, refs, entry) {
645 d9b4d0c0 2020-03-18 stsp free((void *)pe->path);
646 d9b4d0c0 2020-03-18 stsp free(pe->data);
647 d9b4d0c0 2020-03-18 stsp }
648 d9b4d0c0 2020-03-18 stsp got_pathlist_free(refs);
649 d9b4d0c0 2020-03-18 stsp TAILQ_FOREACH(pe, symrefs, entry) {
650 d9b4d0c0 2020-03-18 stsp free((void *)pe->path);
651 d9b4d0c0 2020-03-18 stsp free(pe->data);
652 d9b4d0c0 2020-03-18 stsp }
653 d9b4d0c0 2020-03-18 stsp got_pathlist_free(symrefs);
654 d9b4d0c0 2020-03-18 stsp }
655 8e278d17 2020-03-18 stsp return err;
656 93658fb9 2020-03-18 stsp }