Blob


1 /*
2 * Copyright (c) 2018, 2019 Ori Bernstein <ori@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/stat.h>
19 #include <sys/queue.h>
20 #include <sys/uio.h>
21 #include <sys/socket.h>
22 #include <sys/wait.h>
23 #include <sys/syslimits.h>
24 #include <sys/resource.h>
25 #include <sys/socket.h>
27 #include <errno.h>
28 #include <err.h>
29 #include <fcntl.h>
30 #include <stdio.h>
31 #include <stdlib.h>
32 #include <string.h>
33 #include <stdint.h>
34 #include <sha1.h>
35 #include <zlib.h>
36 #include <ctype.h>
37 #include <limits.h>
38 #include <imsg.h>
39 #include <time.h>
40 #include <uuid.h>
41 #include <netdb.h>
42 #include <netinet/in.h>
44 #include "got_error.h"
45 #include "got_reference.h"
46 #include "got_repository.h"
47 #include "got_path.h"
48 #include "got_cancel.h"
49 #include "got_worktree.h"
50 #include "got_object.h"
51 #include "got_opentemp.h"
52 #include "got_fetch.h"
54 #include "got_lib_delta.h"
55 #include "got_lib_inflate.h"
56 #include "got_lib_object.h"
57 #include "got_lib_object_parse.h"
58 #include "got_lib_object_create.h"
59 #include "got_lib_pack.h"
60 #include "got_lib_sha1.h"
61 #include "got_lib_privsep.h"
62 #include "got_lib_object_cache.h"
63 #include "got_lib_repository.h"
65 #define GOT_PROTOMAX 64
66 #define GOT_HOSTMAX 256
67 #define GOT_PATHMAX 512
68 #define GOT_REPOMAX 256
69 #define GOT_PORTMAX 16
70 #define GOT_URIMAX 1024
72 static int
73 hassuffix(char *base, char *suf)
74 {
75 int nb, ns;
77 nb = strlen(base);
78 ns = strlen(suf);
79 if (ns <= nb && strcmp(base + (nb - ns), suf) == 0)
80 return 1;
81 return 0;
82 }
84 static const struct got_error *
85 dial_ssh(int *fetchfd, const char *host, const char *port, const char *path,
86 const char *direction)
87 {
88 const struct got_error *error = NULL;
89 int pid, pfd[2];
90 char cmd[64];
92 *fetchfd = -1;
94 if (pipe(pfd) == -1)
95 return got_error_from_errno("pipe");
97 pid = fork();
98 if (pid == -1) {
99 error = got_error_from_errno("fork");
100 close(pfd[0]);
101 close(pfd[1]);
102 return error;
103 } else if (pid == 0) {
104 int n;
105 close(pfd[1]);
106 dup2(pfd[0], 0);
107 dup2(pfd[0], 1);
108 n = snprintf(cmd, sizeof(cmd), "git-%s-pack", direction);
109 if (n < 0 || n >= sizeof(cmd))
110 err(1, "snprintf");
111 if (execlp("ssh", "ssh", host, cmd, path, NULL) == -1)
112 err(1, "execlp");
113 abort(); /* not reached */
114 } else {
115 close(pfd[0]);
116 *fetchfd = pfd[1];
117 return NULL;
121 static const struct got_error *
122 dial_git(int *fetchfd, const char *host, const char *port, const char *path,
123 const char *direction)
125 const struct got_error *err = NULL;
126 struct addrinfo hints, *servinfo, *p;
127 char *cmd = NULL, *pkt = NULL;
128 int fd = -1, totlen, r, eaicode;
130 *fetchfd = -1;
132 memset(&hints, 0, sizeof hints);
133 hints.ai_family = AF_UNSPEC;
134 hints.ai_socktype = SOCK_STREAM;
135 eaicode = getaddrinfo(host, port, &hints, &servinfo);
136 if (eaicode)
137 return got_error_msg(GOT_ERR_ADDRINFO, gai_strerror(eaicode));
139 for (p = servinfo; p != NULL; p = p->ai_next) {
140 if ((fd = socket(p->ai_family, p->ai_socktype,
141 p->ai_protocol)) == -1)
142 continue;
143 if (connect(fd, p->ai_addr, p->ai_addrlen) == 0)
144 break;
145 err = got_error_from_errno("connect");
146 close(fd);
148 if (p == NULL)
149 goto done;
151 if (asprintf(&cmd, "git-%s-pack %s", direction, path) == -1) {
152 err = got_error_from_errno("asprintf");
153 goto done;
155 totlen = 4 + strlen(cmd) + 1 + strlen("host=") + strlen(host) + 1;
156 if (asprintf(&pkt, "%04x%s", totlen, cmd) == -1) {
157 err = got_error_from_errno("asprintf");
158 goto done;
160 r = write(fd, pkt, strlen(pkt) + 1);
161 if (r == -1) {
162 err = got_error_from_errno("write");
163 goto done;
165 if (asprintf(&pkt, "host=%s", host) == -1) {
166 err = got_error_from_errno("asprintf");
167 goto done;
169 r = write(fd, pkt, strlen(pkt) + 1);
170 if (r == -1) {
171 err = got_error_from_errno("write");
172 goto done;
174 done:
175 free(cmd);
176 free(pkt);
177 if (err) {
178 if (fd != -1)
179 close(fd);
180 } else
181 *fetchfd = fd;
182 return err;
185 const struct got_error *
186 got_fetch_connect(int *fetchfd, const char *proto, const char *host,
187 const char *port, const char *server_path)
189 const struct got_error *err = NULL;
191 *fetchfd = -1;
193 if (strcmp(proto, "ssh") == 0 || strcmp(proto, "git+ssh") == 0)
194 err = dial_ssh(fetchfd, host, port, server_path, "upload");
195 else if (strcmp(proto, "git") == 0)
196 err = dial_git(fetchfd, host, port, server_path, "upload");
197 else if (strcmp(proto, "http") == 0 || strcmp(proto, "git+http") == 0)
198 err = got_error_path(proto, GOT_ERR_NOT_IMPL);
199 else
200 err = got_error_path(proto, GOT_ERR_BAD_PROTO);
201 return err;
204 const struct got_error *
205 got_fetch_parse_uri(char **proto, char **host, char **port,
206 char **server_path, char **repo_name, const char *uri)
208 const struct got_error *err = NULL;
209 char *s, *p, *q;
210 int n, hasport;
212 *proto = *host = *port = *server_path = *repo_name = NULL;
214 p = strstr(uri, "://");
215 if (!p) {
216 return got_error(GOT_ERR_PARSE_URI);
218 *proto = strndup(uri, p - uri);
219 if (proto == NULL) {
220 err = got_error_from_errno("strndup");
221 goto done;
224 hasport = (strcmp(*proto, "git") == 0 ||
225 strstr(*proto, "http") == *proto);
226 s = p + 3;
227 p = NULL;
228 if (!hasport) {
229 p = strstr(s, ":");
230 if (p != NULL)
231 p++;
233 if (p == NULL)
234 p = strstr(s, "/");
235 if (p == NULL || strlen(p) == 1) {
236 err = got_error(GOT_ERR_PARSE_URI);
237 goto done;
240 q = memchr(s, ':', p - s);
241 if (q) {
242 *host = strndup(s, q - s);
243 if (*host == NULL) {
244 err = got_error_from_errno("strndup");
245 goto done;
247 *port = strndup(q + 1, p - (q + 1));
248 if (*port == NULL) {
249 err = got_error_from_errno("strndup");
250 goto done;
252 } else {
253 *host = strndup(s, p - s);
254 if (*host == NULL) {
255 err = got_error_from_errno("strndup");
256 goto done;
258 if (asprintf(port, "%u", GOT_DEFAULT_GIT_PORT) == -1) {
259 err = got_error_from_errno("asprintf");
260 goto done;
264 *server_path = strdup(p);
265 if (*server_path == NULL) {
266 err = got_error_from_errno("strdup");
267 goto done;
270 p = strrchr(p, '/') + 1;
271 if (!p || strlen(p) == 0) {
272 //werrstr("missing repository in uri");
273 err = got_error(GOT_ERR_PARSE_URI);
274 goto done;
276 n = strlen(p);
277 if (hassuffix(p, ".git"))
278 n -= 4;
279 *repo_name = strndup(p, (p + n) - p);
280 if (*repo_name == NULL) {
281 err = got_error_from_errno("strndup");
282 goto done;
284 done:
285 if (err) {
286 free(*proto);
287 *proto = NULL;
288 free(*host);
289 *host = NULL;
290 free(*port);
291 *port = NULL;
292 free(*server_path);
293 *server_path = NULL;
294 free(*repo_name);
295 *repo_name = NULL;
297 return err;
300 const struct got_error*
301 got_fetch_pack(struct got_object_id **pack_hash, struct got_pathlist_head *refs,
302 struct got_pathlist_head *symrefs, int fetchfd, struct got_repository *repo,
303 got_fetch_progress_cb progress_cb, void *progress_arg)
305 int imsg_fetchfds[2], imsg_idxfds[2];
306 int packfd = -1, npackfd = -1, idxfd = -1, nidxfd = -1, nfetchfd = -1;
307 int status, done = 0;
308 const struct got_error *err;
309 struct imsgbuf ibuf;
310 pid_t pid;
311 char *tmppackpath = NULL, *tmpidxpath = NULL;
312 char *packpath = NULL, *idxpath = NULL, *id_str = NULL;
313 const char *repo_path = got_repo_get_path(repo);
314 struct got_pathlist_head have_refs;
315 struct got_pathlist_entry *pe;
316 off_t packfile_size = 0;
317 char *path;
319 *pack_hash = NULL;
321 TAILQ_INIT(&have_refs);
323 if (asprintf(&path, "%s/%s/fetching.pack",
324 repo_path, GOT_OBJECTS_PACK_DIR) == -1) {
325 err = got_error_from_errno("asprintf");
326 goto done;
328 err = got_opentemp_named_fd(&tmppackpath, &packfd, path);
329 free(path);
330 if (err)
331 goto done;
332 npackfd = dup(packfd);
333 if (npackfd == -1) {
334 err = got_error_from_errno("dup");
335 goto done;
337 if (asprintf(&path, "%s/%s/fetching.idx",
338 repo_path, GOT_OBJECTS_PACK_DIR) == -1) {
339 err = got_error_from_errno("asprintf");
340 goto done;
342 err = got_opentemp_named_fd(&tmpidxpath, &idxfd, path);
343 free(path);
344 if (err)
345 goto done;
346 nidxfd = dup(idxfd);
347 if (nidxfd == -1) {
348 err = got_error_from_errno("dup");
349 goto done;
352 if (socketpair(AF_UNIX, SOCK_STREAM, PF_UNSPEC, imsg_fetchfds) == -1) {
353 err = got_error_from_errno("socketpair");
354 goto done;
357 pid = fork();
358 if (pid == -1) {
359 err = got_error_from_errno("fork");
360 goto done;
361 } else if (pid == 0){
362 got_privsep_exec_child(imsg_fetchfds,
363 GOT_PATH_PROG_FETCH_PACK, ".");
366 if (close(imsg_fetchfds[1]) != 0) {
367 err = got_error_from_errno("close");
368 goto done;
370 imsg_init(&ibuf, imsg_fetchfds[0]);
371 nfetchfd = dup(fetchfd);
372 if (nfetchfd == -1) {
373 err = got_error_from_errno("dup");
374 goto done;
376 err = got_privsep_send_fetch_req(&ibuf, nfetchfd, &have_refs);
377 if (err != NULL)
378 goto done;
379 nfetchfd = -1;
380 err = got_privsep_send_tmpfd(&ibuf, npackfd);
381 if (err != NULL)
382 goto done;
383 npackfd = dup(packfd);
384 if (npackfd == -1) {
385 err = got_error_from_errno("dup");
386 goto done;
389 packfile_size = 0;
390 while (!done) {
391 struct got_object_id *id = NULL;
392 char *refname = NULL;
393 char *server_progress = NULL;
394 off_t packfile_size_cur;
396 err = got_privsep_recv_fetch_progress(&done,
397 &id, &refname, symrefs, &server_progress,
398 &packfile_size_cur, &ibuf);
399 if (err != NULL)
400 goto done;
401 if (done)
402 *pack_hash = id;
403 else if (refname && id) {
404 err = got_pathlist_append(refs, refname, id);
405 if (err)
406 goto done;
407 } else if (server_progress) {
408 char *s, *s0 = server_progress;
409 while ((s = strsep(&s0, "\r")) != NULL) {
410 if (*s == '\0')
411 continue;
412 err = progress_cb(progress_arg, s, 0);
413 if (err)
414 break;
416 free(server_progress);
417 if (err)
418 goto done;
419 } else if (packfile_size_cur != packfile_size) {
420 err = progress_cb(progress_arg, NULL,
421 packfile_size_cur);
422 if (err)
423 break;
424 packfile_size = packfile_size_cur;
427 if (waitpid(pid, &status, 0) == -1) {
428 err = got_error_from_errno("waitpid");
429 goto done;
432 if (socketpair(AF_UNIX, SOCK_STREAM, PF_UNSPEC, imsg_idxfds) == -1) {
433 err = got_error_from_errno("socketpair");
434 goto done;
436 pid = fork();
437 if (pid == -1) {
438 err= got_error_from_errno("fork");
439 goto done;
440 } else if (pid == 0)
441 got_privsep_exec_child(imsg_idxfds,
442 GOT_PATH_PROG_INDEX_PACK, ".");
443 if (close(imsg_idxfds[1]) != 0) {
444 err = got_error_from_errno("close");
445 goto done;
447 imsg_init(&ibuf, imsg_idxfds[0]);
449 err = got_privsep_send_index_pack_req(&ibuf, npackfd, *pack_hash);
450 if (err != NULL)
451 goto done;
452 npackfd = -1;
453 err = got_privsep_send_tmpfd(&ibuf, nidxfd);
454 if (err != NULL)
455 goto done;
456 nidxfd = -1;
457 err = got_privsep_wait_index_pack_done(&ibuf);
458 if (err != NULL)
459 goto done;
460 imsg_clear(&ibuf);
461 if (close(imsg_idxfds[0]) == -1) {
462 err = got_error_from_errno("close");
463 goto done;
465 if (waitpid(pid, &status, 0) == -1) {
466 err = got_error_from_errno("waitpid");
467 goto done;
470 err = got_object_id_str(&id_str, *pack_hash);
471 if (err)
472 goto done;
473 if (asprintf(&packpath, "%s/%s/pack-%s.pack",
474 repo_path, GOT_OBJECTS_PACK_DIR, id_str) == -1) {
475 err = got_error_from_errno("asprintf");
476 goto done;
479 if (asprintf(&idxpath, "%s/%s/pack-%s.idx",
480 repo_path, GOT_OBJECTS_PACK_DIR, id_str) == -1) {
481 err = got_error_from_errno("asprintf");
482 goto done;
485 if (rename(tmppackpath, packpath) == -1) {
486 err = got_error_from_errno3("rename", tmppackpath, packpath);
487 goto done;
489 if (rename(tmpidxpath, idxpath) == -1) {
490 err = got_error_from_errno3("rename", tmpidxpath, idxpath);
491 goto done;
494 done:
495 if (nfetchfd != -1 && close(nfetchfd) == -1 && err == NULL)
496 err = got_error_from_errno("close");
497 if (npackfd != -1 && close(npackfd) == -1 && err == NULL)
498 err = got_error_from_errno("close");
499 if (packfd != -1 && close(packfd) == -1 && err == NULL)
500 err = got_error_from_errno("close");
501 if (idxfd != -1 && close(idxfd) == -1 && err == NULL)
502 err = got_error_from_errno("close");
503 free(tmppackpath);
504 free(tmpidxpath);
505 free(idxpath);
506 free(packpath);
508 if (err) {
509 free(*pack_hash);
510 *pack_hash = NULL;
511 TAILQ_FOREACH(pe, refs, entry) {
512 free((void *)pe->path);
513 free(pe->data);
515 got_pathlist_free(refs);
516 TAILQ_FOREACH(pe, symrefs, entry) {
517 free((void *)pe->path);
518 free(pe->data);
520 got_pathlist_free(symrefs);
522 return err;