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/resource.h>
24 #include <sys/socket.h>
26 #include <endian.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 <unistd.h>
36 #include <zlib.h>
37 #include <ctype.h>
38 #include <limits.h>
39 #include <imsg.h>
40 #include <time.h>
41 #include <uuid.h>
43 #include "got_error.h"
44 #include "got_reference.h"
45 #include "got_repository.h"
46 #include "got_path.h"
47 #include "got_cancel.h"
48 #include "got_worktree.h"
49 #include "got_object.h"
50 #include "got_opentemp.h"
51 #include "got_fetch.h"
53 #include "got_lib_delta.h"
54 #include "got_lib_inflate.h"
55 #include "got_lib_object.h"
56 #include "got_lib_object_parse.h"
57 #include "got_lib_object_create.h"
58 #include "got_lib_pack.h"
59 #include "got_lib_sha1.h"
60 #include "got_lib_privsep.h"
61 #include "got_lib_object_cache.h"
62 #include "got_lib_repository.h"
63 #include "got_lib_dial.h"
64 #include "got_lib_pkt.h"
66 #ifndef nitems
67 #define nitems(_a) (sizeof((_a)) / sizeof((_a)[0]))
68 #endif
70 #ifndef ssizeof
71 #define ssizeof(_x) ((ssize_t)(sizeof(_x)))
72 #endif
74 #ifndef MIN
75 #define MIN(_a,_b) ((_a) < (_b) ? (_a) : (_b))
76 #endif
78 const struct got_error *
79 got_fetch_connect(pid_t *fetchpid, int *fetchfd, const char *proto,
80 const char *host, const char *port, const char *server_path, int verbosity)
81 {
82 const struct got_error *err = NULL;
84 *fetchpid = -1;
85 *fetchfd = -1;
87 if (strcmp(proto, "ssh") == 0 || strcmp(proto, "git+ssh") == 0)
88 err = got_dial_ssh(fetchpid, fetchfd, host, port,
89 server_path, GOT_DIAL_DIRECTION_FETCH, verbosity);
90 else if (strcmp(proto, "git") == 0)
91 err = got_dial_git(fetchfd, host, port, server_path,
92 GOT_DIAL_DIRECTION_FETCH);
93 else if (strcmp(proto, "http") == 0 || strcmp(proto, "git+http") == 0)
94 err = got_error_path(proto, GOT_ERR_NOT_IMPL);
95 else
96 err = got_error_path(proto, GOT_ERR_BAD_PROTO);
97 return err;
98 }
100 const struct got_error*
101 got_fetch_pack(struct got_object_id **pack_hash, struct got_pathlist_head *refs,
102 struct got_pathlist_head *symrefs, const char *remote_name,
103 int mirror_references, int fetch_all_branches,
104 struct got_pathlist_head *wanted_branches,
105 struct got_pathlist_head *wanted_refs, int list_refs_only, int verbosity,
106 int fetchfd, struct got_repository *repo,
107 got_fetch_progress_cb progress_cb, void *progress_arg)
109 size_t i;
110 int imsg_fetchfds[2], imsg_idxfds[2];
111 int packfd = -1, npackfd = -1, idxfd = -1, nidxfd = -1, nfetchfd = -1;
112 int tmpfds[3];
113 int fetchstatus, idxstatus, done = 0;
114 const struct got_error *err;
115 struct imsgbuf fetchibuf, idxibuf;
116 pid_t fetchpid, idxpid;
117 char *tmppackpath = NULL, *tmpidxpath = NULL;
118 char *packpath = NULL, *idxpath = NULL, *id_str = NULL;
119 const char *repo_path = NULL;
120 struct got_pathlist_head have_refs;
121 struct got_pathlist_entry *pe;
122 struct got_reflist_head my_refs;
123 struct got_reflist_entry *re;
124 off_t packfile_size = 0;
125 struct got_packfile_hdr pack_hdr;
126 uint32_t nobj = 0;
127 char *path;
128 char *progress = NULL;
130 *pack_hash = NULL;
132 /*
133 * Prevent fetching of references that won't make any
134 * sense outside of the remote repository's context.
135 */
136 TAILQ_FOREACH(pe, wanted_refs, entry) {
137 const char *refname = pe->path;
138 if (strncmp(refname, "refs/got/", 9) == 0 ||
139 strncmp(refname, "got/", 4) == 0 ||
140 strncmp(refname, "refs/remotes/", 13) == 0 ||
141 strncmp(refname, "remotes/", 8) == 0)
142 return got_error_path(refname, GOT_ERR_FETCH_BAD_REF);
145 if (!list_refs_only)
146 repo_path = got_repo_get_path_git_dir(repo);
148 for (i = 0; i < nitems(tmpfds); i++)
149 tmpfds[i] = -1;
151 TAILQ_INIT(&have_refs);
152 TAILQ_INIT(&my_refs);
154 if (!list_refs_only) {
155 err = got_ref_list(&my_refs, repo, NULL,
156 got_ref_cmp_by_name, NULL);
157 if (err)
158 goto done;
161 TAILQ_FOREACH(re, &my_refs, entry) {
162 struct got_object_id *id;
163 const char *refname;
165 if (got_ref_is_symbolic(re->ref))
166 continue;
168 err = got_ref_resolve(&id, repo, re->ref);
169 if (err)
170 goto done;
171 refname = strdup(got_ref_get_name(re->ref));
172 if (refname == NULL) {
173 err = got_error_from_errno("strdup");
174 goto done;
176 err = got_pathlist_append(&have_refs, refname, id);
177 if (err)
178 goto done;
181 if (list_refs_only) {
182 packfd = got_opentempfd();
183 if (packfd == -1) {
184 err = got_error_from_errno("got_opentempfd");
185 goto done;
187 } else {
188 if (asprintf(&path, "%s/%s/fetching.pack",
189 repo_path, GOT_OBJECTS_PACK_DIR) == -1) {
190 err = got_error_from_errno("asprintf");
191 goto done;
193 err = got_opentemp_named_fd(&tmppackpath, &packfd, path);
194 free(path);
195 if (err)
196 goto done;
197 if (fchmod(packfd, GOT_DEFAULT_FILE_MODE) != 0) {
198 err = got_error_from_errno2("fchmod", tmppackpath);
199 goto done;
202 if (list_refs_only) {
203 idxfd = got_opentempfd();
204 if (idxfd == -1) {
205 err = got_error_from_errno("got_opentempfd");
206 goto done;
208 } else {
209 if (asprintf(&path, "%s/%s/fetching.idx",
210 repo_path, GOT_OBJECTS_PACK_DIR) == -1) {
211 err = got_error_from_errno("asprintf");
212 goto done;
214 err = got_opentemp_named_fd(&tmpidxpath, &idxfd, path);
215 free(path);
216 if (err)
217 goto done;
218 if (fchmod(idxfd, GOT_DEFAULT_FILE_MODE) != 0) {
219 err = got_error_from_errno2("fchmod", tmpidxpath);
220 goto done;
223 nidxfd = dup(idxfd);
224 if (nidxfd == -1) {
225 err = got_error_from_errno("dup");
226 goto done;
229 for (i = 0; i < nitems(tmpfds); i++) {
230 tmpfds[i] = got_opentempfd();
231 if (tmpfds[i] == -1) {
232 err = got_error_from_errno("got_opentempfd");
233 goto done;
237 if (socketpair(AF_UNIX, SOCK_STREAM, PF_UNSPEC, imsg_fetchfds) == -1) {
238 err = got_error_from_errno("socketpair");
239 goto done;
242 fetchpid = fork();
243 if (fetchpid == -1) {
244 err = got_error_from_errno("fork");
245 goto done;
246 } else if (fetchpid == 0){
247 got_privsep_exec_child(imsg_fetchfds,
248 GOT_PATH_PROG_FETCH_PACK, tmppackpath);
251 if (close(imsg_fetchfds[1]) == -1) {
252 err = got_error_from_errno("close");
253 goto done;
255 imsg_init(&fetchibuf, imsg_fetchfds[0]);
256 nfetchfd = dup(fetchfd);
257 if (nfetchfd == -1) {
258 err = got_error_from_errno("dup");
259 goto done;
261 err = got_privsep_send_fetch_req(&fetchibuf, nfetchfd, &have_refs,
262 fetch_all_branches, wanted_branches, wanted_refs,
263 list_refs_only, verbosity);
264 if (err != NULL)
265 goto done;
266 nfetchfd = -1;
267 npackfd = dup(packfd);
268 if (npackfd == -1) {
269 err = got_error_from_errno("dup");
270 goto done;
272 err = got_privsep_send_fetch_outfd(&fetchibuf, npackfd);
273 if (err != NULL)
274 goto done;
275 npackfd = -1;
277 packfile_size = 0;
278 progress = calloc(GOT_PKT_MAX, 1);
279 if (progress == NULL) {
280 err = got_error_from_errno("calloc");
281 goto done;
284 *pack_hash = calloc(1, sizeof(**pack_hash));
285 if (*pack_hash == NULL) {
286 err = got_error_from_errno("calloc");
287 goto done;
290 while (!done) {
291 struct got_object_id *id = NULL;
292 char *refname = NULL;
293 char *server_progress = NULL;
294 off_t packfile_size_cur = 0;
296 err = got_privsep_recv_fetch_progress(&done,
297 &id, &refname, symrefs, &server_progress,
298 &packfile_size_cur, (*pack_hash)->sha1, &fetchibuf);
299 if (err != NULL)
300 goto done;
301 /* Don't report size progress for an empty pack file. */
302 if (packfile_size_cur <= ssizeof(pack_hdr) + SHA1_DIGEST_LENGTH)
303 packfile_size_cur = 0;
304 if (!done && refname && id) {
305 err = got_pathlist_insert(NULL, refs, refname, id);
306 if (err)
307 goto done;
308 } else if (!done && server_progress) {
309 char *p;
310 /*
311 * XXX git-daemon tends to send batched output with
312 * lines spanning separate packets. Buffer progress
313 * output until we see a CR or LF to avoid giving
314 * partial lines of progress output to the callback.
315 */
316 if (strlcat(progress, server_progress,
317 GOT_PKT_MAX) >= GOT_PKT_MAX) {
318 progress[0] = '\0'; /* discard */
319 continue;
321 while ((p = strchr(progress, '\r')) != NULL ||
322 (p = strchr(progress, '\n')) != NULL) {
323 char *s;
324 size_t n;
325 char c = *p;
326 *p = '\0';
327 if (asprintf(&s, "%s%s", progress,
328 c == '\n' ? "\n" : "") == -1) {
329 err = got_error_from_errno("asprintf");
330 goto done;
332 err = progress_cb(progress_arg, s,
333 packfile_size_cur, 0, 0, 0, 0);
334 free(s);
335 if (err)
336 break;
337 n = strlen(progress);
338 if (n < GOT_PKT_MAX - 1) {
339 memmove(progress, &progress[n + 1],
340 GOT_PKT_MAX - n - 1);
341 } else
342 progress[0] = '\0';
344 free(server_progress);
345 if (err)
346 goto done;
347 } else if (!done && packfile_size_cur != packfile_size) {
348 err = progress_cb(progress_arg, NULL,
349 packfile_size_cur, 0, 0, 0, 0);
350 if (err)
351 break;
352 packfile_size = packfile_size_cur;
355 if (waitpid(fetchpid, &fetchstatus, 0) == -1) {
356 err = got_error_from_errno("waitpid");
357 goto done;
360 if (lseek(packfd, 0, SEEK_SET) == -1) {
361 err = got_error_from_errno("lseek");
362 goto done;
365 /* If zero data was fetched without error we are already up-to-date. */
366 if (packfile_size == 0) {
367 free(*pack_hash);
368 *pack_hash = NULL;
369 goto done;
370 } else if (packfile_size < ssizeof(pack_hdr) + SHA1_DIGEST_LENGTH) {
371 err = got_error_msg(GOT_ERR_BAD_PACKFILE, "short pack file");
372 goto done;
373 } else {
374 ssize_t n;
376 n = read(packfd, &pack_hdr, ssizeof(pack_hdr));
377 if (n == -1) {
378 err = got_error_from_errno("read");
379 goto done;
381 if (n != ssizeof(pack_hdr)) {
382 err = got_error(GOT_ERR_IO);
383 goto done;
385 if (pack_hdr.signature != htobe32(GOT_PACKFILE_SIGNATURE)) {
386 err = got_error_msg(GOT_ERR_BAD_PACKFILE,
387 "bad pack file signature");
388 goto done;
390 if (pack_hdr.version != htobe32(GOT_PACKFILE_VERSION)) {
391 err = got_error_msg(GOT_ERR_BAD_PACKFILE,
392 "bad pack file version");
393 goto done;
395 nobj = be32toh(pack_hdr.nobjects);
396 if (nobj == 0 &&
397 packfile_size > ssizeof(pack_hdr) + SHA1_DIGEST_LENGTH)
398 return got_error_msg(GOT_ERR_BAD_PACKFILE,
399 "bad pack file with zero objects");
400 if (nobj != 0 &&
401 packfile_size <= ssizeof(pack_hdr) + SHA1_DIGEST_LENGTH)
402 return got_error_msg(GOT_ERR_BAD_PACKFILE,
403 "empty pack file with non-zero object count");
406 /*
407 * If the pack file contains no objects, we may only need to update
408 * references in our repository. The caller will take care of that.
409 */
410 if (nobj == 0) {
411 free(*pack_hash);
412 *pack_hash = NULL;
413 goto done;
416 if (lseek(packfd, 0, SEEK_SET) == -1) {
417 err = got_error_from_errno("lseek");
418 goto done;
421 if (socketpair(AF_UNIX, SOCK_STREAM, PF_UNSPEC, imsg_idxfds) == -1) {
422 err = got_error_from_errno("socketpair");
423 goto done;
425 idxpid = fork();
426 if (idxpid == -1) {
427 err= got_error_from_errno("fork");
428 goto done;
429 } else if (idxpid == 0)
430 got_privsep_exec_child(imsg_idxfds,
431 GOT_PATH_PROG_INDEX_PACK, tmppackpath);
432 if (close(imsg_idxfds[1]) == -1) {
433 err = got_error_from_errno("close");
434 goto done;
436 imsg_init(&idxibuf, imsg_idxfds[0]);
438 npackfd = dup(packfd);
439 if (npackfd == -1) {
440 err = got_error_from_errno("dup");
441 goto done;
443 err = got_privsep_send_index_pack_req(&idxibuf, (*pack_hash)->sha1,
444 npackfd);
445 if (err != NULL)
446 goto done;
447 npackfd = -1;
448 err = got_privsep_send_index_pack_outfd(&idxibuf, nidxfd);
449 if (err != NULL)
450 goto done;
451 nidxfd = -1;
452 for (i = 0; i < nitems(tmpfds); i++) {
453 err = got_privsep_send_tmpfd(&idxibuf, tmpfds[i]);
454 if (err != NULL)
455 goto done;
456 tmpfds[i] = -1;
458 done = 0;
459 while (!done) {
460 int nobj_total, nobj_indexed, nobj_loose, nobj_resolved;
462 err = got_privsep_recv_index_progress(&done, &nobj_total,
463 &nobj_indexed, &nobj_loose, &nobj_resolved,
464 &idxibuf);
465 if (err != NULL)
466 goto done;
467 if (nobj_indexed != 0) {
468 err = progress_cb(progress_arg, NULL,
469 packfile_size, nobj_total,
470 nobj_indexed, nobj_loose, nobj_resolved);
471 if (err)
472 break;
474 imsg_clear(&idxibuf);
476 if (close(imsg_idxfds[0]) == -1) {
477 err = got_error_from_errno("close");
478 goto done;
480 if (waitpid(idxpid, &idxstatus, 0) == -1) {
481 err = got_error_from_errno("waitpid");
482 goto done;
485 err = got_object_id_str(&id_str, *pack_hash);
486 if (err)
487 goto done;
488 if (asprintf(&packpath, "%s/%s/pack-%s.pack",
489 repo_path, GOT_OBJECTS_PACK_DIR, id_str) == -1) {
490 err = got_error_from_errno("asprintf");
491 goto done;
494 if (asprintf(&idxpath, "%s/%s/pack-%s.idx",
495 repo_path, GOT_OBJECTS_PACK_DIR, id_str) == -1) {
496 err = got_error_from_errno("asprintf");
497 goto done;
500 if (rename(tmppackpath, packpath) == -1) {
501 err = got_error_from_errno3("rename", tmppackpath, packpath);
502 goto done;
504 free(tmppackpath);
505 tmppackpath = NULL;
506 if (rename(tmpidxpath, idxpath) == -1) {
507 err = got_error_from_errno3("rename", tmpidxpath, idxpath);
508 goto done;
510 free(tmpidxpath);
511 tmpidxpath = NULL;
513 done:
514 if (tmppackpath && unlink(tmppackpath) == -1 && err == NULL)
515 err = got_error_from_errno2("unlink", tmppackpath);
516 if (tmpidxpath && unlink(tmpidxpath) == -1 && err == NULL)
517 err = got_error_from_errno2("unlink", tmpidxpath);
518 if (nfetchfd != -1 && close(nfetchfd) == -1 && err == NULL)
519 err = got_error_from_errno("close");
520 if (npackfd != -1 && close(npackfd) == -1 && err == NULL)
521 err = got_error_from_errno("close");
522 if (packfd != -1 && close(packfd) == -1 && err == NULL)
523 err = got_error_from_errno("close");
524 if (idxfd != -1 && close(idxfd) == -1 && err == NULL)
525 err = got_error_from_errno("close");
526 for (i = 0; i < nitems(tmpfds); i++) {
527 if (tmpfds[i] != -1 && close(tmpfds[i]) == -1 && err == NULL)
528 err = got_error_from_errno("close");
530 free(tmppackpath);
531 free(tmpidxpath);
532 free(idxpath);
533 free(packpath);
534 free(progress);
536 TAILQ_FOREACH(pe, &have_refs, entry) {
537 free((char *)pe->path);
538 free(pe->data);
540 got_pathlist_free(&have_refs);
541 got_ref_list_free(&my_refs);
542 if (err) {
543 free(*pack_hash);
544 *pack_hash = NULL;
545 TAILQ_FOREACH(pe, refs, entry) {
546 free((void *)pe->path);
547 free(pe->data);
549 got_pathlist_free(refs);
550 TAILQ_FOREACH(pe, symrefs, entry) {
551 free((void *)pe->path);
552 free(pe->data);
554 got_pathlist_free(symrefs);
556 return err;