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)
304 int imsg_fetchfds[2], imsg_idxfds[2];
305 int packfd = -1, npackfd = -1, idxfd = -1, nidxfd = -1, nfetchfd = -1;
306 int status, done = 0;
307 const struct got_error *err;
308 struct imsgbuf ibuf;
309 pid_t pid;
310 char *tmppackpath = NULL, *tmpidxpath = NULL;
311 char *packpath = NULL, *idxpath = NULL, *id_str = NULL;
312 const char *repo_path = got_repo_get_path(repo);
313 struct got_pathlist_entry *pe;
314 char *path;
316 *pack_hash = NULL;
318 if (asprintf(&path, "%s/%s/fetching.pack",
319 repo_path, GOT_OBJECTS_PACK_DIR) == -1) {
320 err = got_error_from_errno("asprintf");
321 goto done;
323 err = got_opentemp_named_fd(&tmppackpath, &packfd, path);
324 free(path);
325 if (err)
326 goto done;
327 npackfd = dup(packfd);
328 if (npackfd == -1) {
329 err = got_error_from_errno("dup");
330 goto done;
332 if (asprintf(&path, "%s/%s/fetching.idx",
333 repo_path, GOT_OBJECTS_PACK_DIR) == -1) {
334 err = got_error_from_errno("asprintf");
335 goto done;
337 err = got_opentemp_named_fd(&tmpidxpath, &idxfd, path);
338 free(path);
339 if (err)
340 goto done;
341 nidxfd = dup(idxfd);
342 if (nidxfd == -1) {
343 err = got_error_from_errno("dup");
344 goto done;
347 if (socketpair(AF_UNIX, SOCK_STREAM, PF_UNSPEC, imsg_fetchfds) == -1) {
348 err = got_error_from_errno("socketpair");
349 goto done;
352 pid = fork();
353 if (pid == -1) {
354 err = got_error_from_errno("fork");
355 goto done;
356 } else if (pid == 0){
357 got_privsep_exec_child(imsg_fetchfds,
358 GOT_PATH_PROG_FETCH_PACK, ".");
361 if (close(imsg_fetchfds[1]) != 0) {
362 err = got_error_from_errno("close");
363 goto done;
365 imsg_init(&ibuf, imsg_fetchfds[0]);
366 nfetchfd = dup(fetchfd);
367 if (nfetchfd == -1) {
368 err = got_error_from_errno("dup");
369 goto done;
371 err = got_privsep_send_fetch_req(&ibuf, nfetchfd);
372 if (err != NULL)
373 goto done;
374 nfetchfd = -1;
375 err = got_privsep_send_tmpfd(&ibuf, npackfd);
376 if (err != NULL)
377 goto done;
378 npackfd = dup(packfd);
379 if (npackfd == -1) {
380 err = got_error_from_errno("dup");
381 goto done;
384 while (!done) {
385 struct got_object_id *id = NULL;
386 char *refname = NULL;
388 err = got_privsep_recv_fetch_progress(&done,
389 &id, &refname, symrefs, &ibuf);
390 if (err != NULL)
391 goto done;
392 if (done)
393 *pack_hash = id;
394 else if (refname && id) {
395 err = got_pathlist_append(refs, refname, id);
396 if (err)
397 goto done;
399 /* TODO remote status / download progress callback */
401 if (waitpid(pid, &status, 0) == -1) {
402 err = got_error_from_errno("waitpid");
403 goto done;
406 if (socketpair(AF_UNIX, SOCK_STREAM, PF_UNSPEC, imsg_idxfds) == -1) {
407 err = got_error_from_errno("socketpair");
408 goto done;
410 pid = fork();
411 if (pid == -1) {
412 err= got_error_from_errno("fork");
413 goto done;
414 } else if (pid == 0)
415 got_privsep_exec_child(imsg_idxfds,
416 GOT_PATH_PROG_INDEX_PACK, ".");
417 if (close(imsg_idxfds[1]) != 0) {
418 err = got_error_from_errno("close");
419 goto done;
421 imsg_init(&ibuf, imsg_idxfds[0]);
423 err = got_privsep_send_index_pack_req(&ibuf, npackfd, *pack_hash);
424 if (err != NULL)
425 goto done;
426 npackfd = -1;
427 err = got_privsep_send_tmpfd(&ibuf, nidxfd);
428 if (err != NULL)
429 goto done;
430 nidxfd = -1;
431 err = got_privsep_wait_index_pack_done(&ibuf);
432 if (err != NULL)
433 goto done;
434 imsg_clear(&ibuf);
435 if (close(imsg_idxfds[0]) == -1) {
436 err = got_error_from_errno("close");
437 goto done;
439 if (waitpid(pid, &status, 0) == -1) {
440 err = got_error_from_errno("waitpid");
441 goto done;
444 err = got_object_id_str(&id_str, *pack_hash);
445 if (err)
446 goto done;
447 if (asprintf(&packpath, "%s/%s/pack-%s.pack",
448 repo_path, GOT_OBJECTS_PACK_DIR, id_str) == -1) {
449 err = got_error_from_errno("asprintf");
450 goto done;
453 if (asprintf(&idxpath, "%s/%s/pack-%s.idx",
454 repo_path, GOT_OBJECTS_PACK_DIR, id_str) == -1) {
455 err = got_error_from_errno("asprintf");
456 goto done;
459 if (rename(tmppackpath, packpath) == -1) {
460 err = got_error_from_errno3("rename", tmppackpath, packpath);
461 goto done;
463 if (rename(tmpidxpath, idxpath) == -1) {
464 err = got_error_from_errno3("rename", tmpidxpath, idxpath);
465 goto done;
468 done:
469 if (nfetchfd != -1 && close(nfetchfd) == -1 && err == NULL)
470 err = got_error_from_errno("close");
471 if (npackfd != -1 && close(npackfd) == -1 && err == NULL)
472 err = got_error_from_errno("close");
473 if (packfd != -1 && close(packfd) == -1 && err == NULL)
474 err = got_error_from_errno("close");
475 if (idxfd != -1 && close(idxfd) == -1 && err == NULL)
476 err = got_error_from_errno("close");
477 free(tmppackpath);
478 free(tmpidxpath);
479 free(idxpath);
480 free(packpath);
482 if (err) {
483 free(*pack_hash);
484 *pack_hash = NULL;
485 TAILQ_FOREACH(pe, refs, entry) {
486 free((void *)pe->path);
487 free(pe->data);
489 got_pathlist_free(refs);
490 TAILQ_FOREACH(pe, symrefs, entry) {
491 free((void *)pe->path);
492 free(pe->data);
494 got_pathlist_free(symrefs);
496 return err;