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 #ifndef nitems
66 #define nitems(_a) (sizeof((_a)) / sizeof((_a)[0]))
67 #endif
69 #ifndef MIN
70 #define MIN(_a,_b) ((_a) < (_b) ? (_a) : (_b))
71 #endif
73 static int
74 hassuffix(char *base, char *suf)
75 {
76 int nb, ns;
78 nb = strlen(base);
79 ns = strlen(suf);
80 if (ns <= nb && strcmp(base + (nb - ns), suf) == 0)
81 return 1;
82 return 0;
83 }
85 static const struct got_error *
86 dial_ssh(int *fetchfd, const char *host, const char *port, const char *path,
87 const char *direction, int verbosity)
88 {
89 const struct got_error *error = NULL;
90 int pid, pfd[2];
91 char cmd[64];
92 char *argv[11];
93 int i = 0;
95 *fetchfd = -1;
97 if (port == NULL)
98 port = "22";
100 argv[0] = GOT_FETCH_PATH_SSH;
101 argv[1] = "-p";
102 argv[2] = (char *)port;
103 if (verbosity == -1) {
104 argv[3 + i++] = "-q";
105 } else {
106 /* ssh(1) allows up to 3 "-v" options. */
107 for (i = 0; i < MIN(3, verbosity); i++)
108 argv[3 + i] = "-v";
110 argv[3 + i] = "--";
111 argv[4 + i] = (char *)host;
112 argv[5 + i] = (char *)cmd;
113 argv[6 + i] = (char *)path;
114 argv[7 + i] = NULL;
116 if (pipe(pfd) == -1)
117 return got_error_from_errno("pipe");
119 pid = fork();
120 if (pid == -1) {
121 error = got_error_from_errno("fork");
122 close(pfd[0]);
123 close(pfd[1]);
124 return error;
125 } else if (pid == 0) {
126 int n;
127 close(pfd[1]);
128 dup2(pfd[0], 0);
129 dup2(pfd[0], 1);
130 n = snprintf(cmd, sizeof(cmd), "git-%s-pack", direction);
131 if (n < 0 || n >= sizeof(cmd))
132 err(1, "snprintf");
133 if (execv(GOT_FETCH_PATH_SSH, argv) == -1)
134 err(1, "execl");
135 abort(); /* not reached */
136 } else {
137 close(pfd[0]);
138 *fetchfd = pfd[1];
139 return NULL;
143 static const struct got_error *
144 dial_git(int *fetchfd, const char *host, const char *port, const char *path,
145 const char *direction)
147 const struct got_error *err = NULL;
148 struct addrinfo hints, *servinfo, *p;
149 char *cmd = NULL, *pkt = NULL;
150 int fd = -1, totlen, r, eaicode;
152 *fetchfd = -1;
154 if (port == NULL)
155 port = GOT_DEFAULT_GIT_PORT_STR;
157 memset(&hints, 0, sizeof hints);
158 hints.ai_family = AF_UNSPEC;
159 hints.ai_socktype = SOCK_STREAM;
160 eaicode = getaddrinfo(host, port, &hints, &servinfo);
161 if (eaicode) {
162 char msg[512];
163 snprintf(msg, sizeof(msg), "%s: %s", host,
164 gai_strerror(eaicode));
165 return got_error_msg(GOT_ERR_ADDRINFO, msg);
168 for (p = servinfo; p != NULL; p = p->ai_next) {
169 if ((fd = socket(p->ai_family, p->ai_socktype,
170 p->ai_protocol)) == -1)
171 continue;
172 if (connect(fd, p->ai_addr, p->ai_addrlen) == 0)
173 break;
174 err = got_error_from_errno("connect");
175 close(fd);
177 if (p == NULL)
178 goto done;
180 if (asprintf(&cmd, "git-%s-pack %s", direction, path) == -1) {
181 err = got_error_from_errno("asprintf");
182 goto done;
184 totlen = 4 + strlen(cmd) + 1 + strlen("host=") + strlen(host) + 1;
185 if (asprintf(&pkt, "%04x%s", totlen, cmd) == -1) {
186 err = got_error_from_errno("asprintf");
187 goto done;
189 r = write(fd, pkt, strlen(pkt) + 1);
190 if (r == -1) {
191 err = got_error_from_errno("write");
192 goto done;
194 if (asprintf(&pkt, "host=%s", host) == -1) {
195 err = got_error_from_errno("asprintf");
196 goto done;
198 r = write(fd, pkt, strlen(pkt) + 1);
199 if (r == -1) {
200 err = got_error_from_errno("write");
201 goto done;
203 done:
204 free(cmd);
205 free(pkt);
206 if (err) {
207 if (fd != -1)
208 close(fd);
209 } else
210 *fetchfd = fd;
211 return err;
214 const struct got_error *
215 got_fetch_connect(int *fetchfd, const char *proto, const char *host,
216 const char *port, const char *server_path, int verbosity)
218 const struct got_error *err = NULL;
220 *fetchfd = -1;
222 if (strcmp(proto, "ssh") == 0 || strcmp(proto, "git+ssh") == 0)
223 err = dial_ssh(fetchfd, host, port, server_path, "upload",
224 verbosity);
225 else if (strcmp(proto, "git") == 0)
226 err = dial_git(fetchfd, host, port, server_path, "upload");
227 else if (strcmp(proto, "http") == 0 || strcmp(proto, "git+http") == 0)
228 err = got_error_path(proto, GOT_ERR_NOT_IMPL);
229 else
230 err = got_error_path(proto, GOT_ERR_BAD_PROTO);
231 return err;
234 const struct got_error *
235 got_fetch_parse_uri(char **proto, char **host, char **port,
236 char **server_path, char **repo_name, const char *uri)
238 const struct got_error *err = NULL;
239 char *s, *p, *q;
240 int n;
242 *proto = *host = *port = *server_path = *repo_name = NULL;
244 p = strstr(uri, "://");
245 if (!p) {
246 /* Try parsing Git's "scp" style URL syntax. */
247 *proto = strdup("ssh");
248 if (proto == NULL) {
249 err = got_error_from_errno("strdup");
250 goto done;
252 s = (char *)uri;
253 q = strchr(s, ':');
254 if (q == NULL) {
255 err = got_error(GOT_ERR_PARSE_URI);
256 goto done;
258 /* No slashes allowed before first colon. */
259 p = strchr(s, '/');
260 if (p && q > p) {
261 err = got_error(GOT_ERR_PARSE_URI);
262 goto done;
264 *host = strndup(s, q - s);
265 if (*host == NULL) {
266 err = got_error_from_errno("strndup");
267 goto done;
269 p = q + 1;
270 } else {
271 *proto = strndup(uri, p - uri);
272 if (proto == NULL) {
273 err = got_error_from_errno("strndup");
274 goto done;
276 s = p + 3;
278 p = strstr(s, "/");
279 if (p == NULL || strlen(p) == 1) {
280 err = got_error(GOT_ERR_PARSE_URI);
281 goto done;
284 q = memchr(s, ':', p - s);
285 if (q) {
286 *host = strndup(s, q - s);
287 if (*host == NULL) {
288 err = got_error_from_errno("strndup");
289 goto done;
291 *port = strndup(q + 1, p - (q + 1));
292 if (*port == NULL) {
293 err = got_error_from_errno("strndup");
294 goto done;
296 } else {
297 *host = strndup(s, p - s);
298 if (*host == NULL) {
299 err = got_error_from_errno("strndup");
300 goto done;
305 *server_path = strdup(p);
306 if (*server_path == NULL) {
307 err = got_error_from_errno("strdup");
308 goto done;
311 p = strrchr(p, '/');
312 if (!p || strlen(p) <= 1) {
313 err = got_error(GOT_ERR_PARSE_URI);
314 goto done;
316 p++;
317 n = strlen(p);
318 if (n == 0) {
319 err = got_error(GOT_ERR_PARSE_URI);
320 goto done;
322 if (hassuffix(p, ".git"))
323 n -= 4;
324 *repo_name = strndup(p, (p + n) - p);
325 if (*repo_name == NULL) {
326 err = got_error_from_errno("strndup");
327 goto done;
329 done:
330 if (err) {
331 free(*proto);
332 *proto = NULL;
333 free(*host);
334 *host = NULL;
335 free(*port);
336 *port = NULL;
337 free(*server_path);
338 *server_path = NULL;
339 free(*repo_name);
340 *repo_name = NULL;
342 return err;
345 static const struct got_error *
346 check_pack_hash(int fd, size_t sz, uint8_t *hcomp)
348 SHA1_CTX ctx;
349 uint8_t hexpect[SHA1_DIGEST_LENGTH];
350 uint8_t buf[32 * 1024];
351 ssize_t n, r, nr;
353 if (sz < sizeof(struct got_packfile_hdr) + SHA1_DIGEST_LENGTH)
354 return got_error_msg(GOT_ERR_BAD_PACKFILE, "short packfile");
356 n = 0;
357 SHA1Init(&ctx);
358 while (n < sz - 20) {
359 nr = sizeof(buf);
360 if (sz - n - 20 < sizeof(buf))
361 nr = sz - n - 20;
362 r = read(fd, buf, nr);
363 if (r == -1)
364 return got_error_from_errno("read");
365 if (r != nr)
366 return got_error_msg(GOT_ERR_BAD_PACKFILE,
367 "short pack file");
368 SHA1Update(&ctx, buf, nr);
369 n += r;
371 SHA1Final(hcomp, &ctx);
373 r = read(fd, hexpect, sizeof(hexpect));
374 if (r == -1)
375 return got_error_from_errno("read");
376 if (r != sizeof(hexpect))
377 return got_error_msg(GOT_ERR_BAD_PACKFILE,
378 "short pack file");
380 if (memcmp(hcomp, hexpect, SHA1_DIGEST_LENGTH) != 0)
381 return got_error_msg(GOT_ERR_BAD_PACKFILE,
382 "packfile checksum mismatch");
384 return NULL;
387 const struct got_error*
388 got_fetch_pack(struct got_object_id **pack_hash, struct got_pathlist_head *refs,
389 struct got_pathlist_head *symrefs, const char *remote_name,
390 int mirror_references, int fetch_all_branches, int fetchfd,
391 struct got_repository *repo,
392 got_fetch_progress_cb progress_cb, void *progress_arg)
394 int imsg_fetchfds[2], imsg_idxfds[2];
395 int packfd = -1, npackfd = -1, idxfd = -1, nidxfd = -1, nfetchfd = -1;
396 int tmpfds[3], i;
397 int fetchstatus, idxstatus, done = 0;
398 const struct got_error *err;
399 struct imsgbuf fetchibuf, idxibuf;
400 pid_t fetchpid, idxpid;
401 char *tmppackpath = NULL, *tmpidxpath = NULL;
402 char *packpath = NULL, *idxpath = NULL, *id_str = NULL;
403 const char *repo_path = got_repo_get_path_git_dir(repo);
404 struct got_pathlist_head have_refs;
405 struct got_pathlist_entry *pe;
406 struct got_reflist_head my_refs;
407 struct got_reflist_entry *re;
408 off_t packfile_size = 0;
409 char *ref_prefix = NULL;
410 size_t ref_prefixlen = 0;
411 char *path;
412 char *progress = NULL;
414 *pack_hash = NULL;
415 for (i = 0; i < nitems(tmpfds); i++)
416 tmpfds[i] = -1;
418 TAILQ_INIT(&have_refs);
419 SIMPLEQ_INIT(&my_refs);
421 if (!mirror_references) {
422 if (asprintf(&ref_prefix, "refs/remotes/%s/",
423 remote_name) == -1)
424 return got_error_from_errno("asprintf");
425 ref_prefixlen = strlen(ref_prefix);
428 err = got_ref_list(&my_refs, repo, NULL, got_ref_cmp_by_name, NULL);
429 if (err)
430 goto done;
432 SIMPLEQ_FOREACH(re, &my_refs, entry) {
433 struct got_object_id *id;
434 const char *refname;
436 if (got_ref_is_symbolic(re->ref))
437 continue;
439 refname = got_ref_get_name(re->ref);
441 if (mirror_references) {
442 char *name;
443 err = got_ref_resolve(&id, repo, re->ref);
444 if (err)
445 goto done;
446 name = strdup(refname);
447 if (name == NULL) {
448 err = got_error_from_errno("strdup");
449 goto done;
451 err = got_pathlist_append(&have_refs, name, id);
452 if (err)
453 goto done;
454 continue;
457 if (strncmp("refs/tags/", refname, 10) == 0) {
458 char *tagname;
460 err = got_ref_resolve(&id, repo, re->ref);
461 if (err)
462 goto done;
463 tagname = strdup(refname);
464 if (tagname == NULL) {
465 err = got_error_from_errno("strdup");
466 goto done;
468 err = got_pathlist_append(&have_refs, tagname, id);
469 if (err) {
470 free(tagname);
471 goto done;
475 if (strncmp(ref_prefix, refname, ref_prefixlen) == 0) {
476 char *branchname;
478 err = got_ref_resolve(&id, repo, re->ref);
479 if (err)
480 goto done;
482 if (asprintf(&branchname, "refs/heads/%s",
483 refname + ref_prefixlen) == -1) {
484 err = got_error_from_errno("asprintf");
485 goto done;
487 err = got_pathlist_append(&have_refs, branchname, id);
488 if (err) {
489 free(branchname);
490 goto done;
495 if (asprintf(&path, "%s/%s/fetching.pack",
496 repo_path, GOT_OBJECTS_PACK_DIR) == -1) {
497 err = got_error_from_errno("asprintf");
498 goto done;
500 err = got_opentemp_named_fd(&tmppackpath, &packfd, path);
501 free(path);
502 if (err)
503 goto done;
504 npackfd = dup(packfd);
505 if (npackfd == -1) {
506 err = got_error_from_errno("dup");
507 goto done;
509 if (asprintf(&path, "%s/%s/fetching.idx",
510 repo_path, GOT_OBJECTS_PACK_DIR) == -1) {
511 err = got_error_from_errno("asprintf");
512 goto done;
514 err = got_opentemp_named_fd(&tmpidxpath, &idxfd, path);
515 free(path);
516 if (err)
517 goto done;
518 nidxfd = dup(idxfd);
519 if (nidxfd == -1) {
520 err = got_error_from_errno("dup");
521 goto done;
524 for (i = 0; i < nitems(tmpfds); i++) {
525 tmpfds[i] = got_opentempfd();
526 if (tmpfds[i] == -1) {
527 err = got_error_from_errno("got_opentempfd");
528 goto done;
532 if (socketpair(AF_UNIX, SOCK_STREAM, PF_UNSPEC, imsg_fetchfds) == -1) {
533 err = got_error_from_errno("socketpair");
534 goto done;
537 fetchpid = fork();
538 if (fetchpid == -1) {
539 err = got_error_from_errno("fork");
540 goto done;
541 } else if (fetchpid == 0){
542 got_privsep_exec_child(imsg_fetchfds,
543 GOT_PATH_PROG_FETCH_PACK, tmppackpath);
546 if (close(imsg_fetchfds[1]) != 0) {
547 err = got_error_from_errno("close");
548 goto done;
550 imsg_init(&fetchibuf, imsg_fetchfds[0]);
551 nfetchfd = dup(fetchfd);
552 if (nfetchfd == -1) {
553 err = got_error_from_errno("dup");
554 goto done;
556 err = got_privsep_send_fetch_req(&fetchibuf, nfetchfd, &have_refs,
557 fetch_all_branches);
558 if (err != NULL)
559 goto done;
560 nfetchfd = -1;
561 err = got_privsep_send_fetch_outfd(&fetchibuf, npackfd);
562 if (err != NULL)
563 goto done;
564 npackfd = dup(packfd);
565 if (npackfd == -1) {
566 err = got_error_from_errno("dup");
567 goto done;
570 packfile_size = 0;
571 progress = calloc(GOT_FETCH_PKTMAX, 1);
572 if (progress == NULL) {
573 err = got_error_from_errno("calloc");
574 goto done;
576 while (!done) {
577 struct got_object_id *id = NULL;
578 char *refname = NULL;
579 char *server_progress = NULL;
580 off_t packfile_size_cur = 0;
582 err = got_privsep_recv_fetch_progress(&done,
583 &id, &refname, symrefs, &server_progress,
584 &packfile_size_cur, &fetchibuf);
585 if (err != NULL)
586 goto done;
587 if (done) {
588 if (packfile_size > 0)
589 *pack_hash = id;
590 else
591 free(id);
592 } else if (refname && id) {
593 err = got_pathlist_append(refs, refname, id);
594 if (err)
595 goto done;
596 } else if (server_progress) {
597 char *p;
598 /*
599 * XXX git-daemon tends to send batched output with
600 * lines spanning separate packets. Buffer progress
601 * output until we see a CR or LF to avoid giving
602 * partial lines of progress output to the callback.
603 */
604 if (strlcat(progress, server_progress,
605 GOT_FETCH_PKTMAX) >= GOT_FETCH_PKTMAX) {
606 progress[0] = '\0'; /* discard */
607 continue;
609 while ((p = strchr(progress, '\r')) != NULL ||
610 (p = strchr(progress, '\n')) != NULL) {
611 char *s;
612 size_t n;
613 char c = *p;
614 *p = '\0';
615 if (asprintf(&s, "%s%s", progress,
616 c == '\n' ? "\n" : "") == -1) {
617 err = got_error_from_errno("asprintf");
618 goto done;
620 err = progress_cb(progress_arg, s,
621 packfile_size_cur, 0, 0, 0, 0);
622 free(s);
623 if (err)
624 break;
625 n = strlen(progress);
626 if (n < GOT_FETCH_PKTMAX - 1) {
627 memmove(progress, &progress[n + 1],
628 GOT_FETCH_PKTMAX - n - 1);
629 } else
630 progress[0] = '\0';
632 free(server_progress);
633 if (err)
634 goto done;
635 } else if (packfile_size_cur != packfile_size) {
636 err = progress_cb(progress_arg, NULL,
637 packfile_size_cur, 0, 0, 0, 0);
638 if (err)
639 break;
640 packfile_size = packfile_size_cur;
643 if (waitpid(fetchpid, &fetchstatus, 0) == -1) {
644 err = got_error_from_errno("waitpid");
645 goto done;
648 /* If zero data was fetched without error we are already up-to-date. */
649 if (packfile_size == 0)
650 goto done;
652 if (lseek(packfd, 0, SEEK_SET) == -1) {
653 err = got_error_from_errno("lseek");
654 goto done;
656 err = check_pack_hash(packfd, packfile_size, (*pack_hash)->sha1);
657 if (err)
658 goto done;
660 if (socketpair(AF_UNIX, SOCK_STREAM, PF_UNSPEC, imsg_idxfds) == -1) {
661 err = got_error_from_errno("socketpair");
662 goto done;
664 idxpid = fork();
665 if (idxpid == -1) {
666 err= got_error_from_errno("fork");
667 goto done;
668 } else if (idxpid == 0)
669 got_privsep_exec_child(imsg_idxfds,
670 GOT_PATH_PROG_INDEX_PACK, tmppackpath);
671 if (close(imsg_idxfds[1]) != 0) {
672 err = got_error_from_errno("close");
673 goto done;
675 imsg_init(&idxibuf, imsg_idxfds[0]);
677 err = got_privsep_send_index_pack_req(&idxibuf, (*pack_hash)->sha1,
678 npackfd);
679 if (err != NULL)
680 goto done;
681 npackfd = -1;
682 err = got_privsep_send_index_pack_outfd(&idxibuf, nidxfd);
683 if (err != NULL)
684 goto done;
685 nidxfd = -1;
686 for (i = 0; i < nitems(tmpfds); i++) {
687 err = got_privsep_send_tmpfd(&idxibuf, tmpfds[i]);
688 if (err != NULL)
689 goto done;
690 tmpfds[i] = -1;
692 done = 0;
693 while (!done) {
694 int nobj_total, nobj_indexed, nobj_loose, nobj_resolved;
696 err = got_privsep_recv_index_progress(&done, &nobj_total,
697 &nobj_indexed, &nobj_loose, &nobj_resolved,
698 &idxibuf);
699 if (err != NULL)
700 goto done;
701 if (nobj_indexed != 0) {
702 err = progress_cb(progress_arg, NULL,
703 packfile_size, nobj_total,
704 nobj_indexed, nobj_loose, nobj_resolved);
705 if (err)
706 break;
708 imsg_clear(&idxibuf);
710 if (close(imsg_idxfds[0]) == -1) {
711 err = got_error_from_errno("close");
712 goto done;
714 if (waitpid(idxpid, &idxstatus, 0) == -1) {
715 err = got_error_from_errno("waitpid");
716 goto done;
719 err = got_object_id_str(&id_str, *pack_hash);
720 if (err)
721 goto done;
722 if (asprintf(&packpath, "%s/%s/pack-%s.pack",
723 repo_path, GOT_OBJECTS_PACK_DIR, id_str) == -1) {
724 err = got_error_from_errno("asprintf");
725 goto done;
728 if (asprintf(&idxpath, "%s/%s/pack-%s.idx",
729 repo_path, GOT_OBJECTS_PACK_DIR, id_str) == -1) {
730 err = got_error_from_errno("asprintf");
731 goto done;
734 if (rename(tmppackpath, packpath) == -1) {
735 err = got_error_from_errno3("rename", tmppackpath, packpath);
736 goto done;
738 free(tmppackpath);
739 tmppackpath = NULL;
740 if (rename(tmpidxpath, idxpath) == -1) {
741 err = got_error_from_errno3("rename", tmpidxpath, idxpath);
742 goto done;
744 free(tmpidxpath);
745 tmpidxpath = NULL;
747 done:
748 if (tmppackpath && unlink(tmppackpath) == -1 && err == NULL)
749 err = got_error_from_errno2("unlink", tmppackpath);
750 if (tmpidxpath && unlink(tmpidxpath) == -1 && err == NULL)
751 err = got_error_from_errno2("unlink", tmpidxpath);
752 if (nfetchfd != -1 && close(nfetchfd) == -1 && err == NULL)
753 err = got_error_from_errno("close");
754 if (npackfd != -1 && close(npackfd) == -1 && err == NULL)
755 err = got_error_from_errno("close");
756 if (packfd != -1 && close(packfd) == -1 && err == NULL)
757 err = got_error_from_errno("close");
758 if (idxfd != -1 && close(idxfd) == -1 && err == NULL)
759 err = got_error_from_errno("close");
760 for (i = 0; i < nitems(tmpfds); i++) {
761 if (tmpfds[i] != -1 && close(tmpfds[i]) == -1 && err == NULL)
762 err = got_error_from_errno("close");
764 free(tmppackpath);
765 free(tmpidxpath);
766 free(idxpath);
767 free(packpath);
768 free(ref_prefix);
769 free(progress);
771 TAILQ_FOREACH(pe, &have_refs, entry) {
772 free((char *)pe->path);
773 free(pe->data);
775 got_pathlist_free(&have_refs);
776 got_ref_list_free(&my_refs);
777 if (err) {
778 free(*pack_hash);
779 *pack_hash = NULL;
780 TAILQ_FOREACH(pe, refs, entry) {
781 free((void *)pe->path);
782 free(pe->data);
784 got_pathlist_free(refs);
785 TAILQ_FOREACH(pe, symrefs, entry) {
786 free((void *)pe->path);
787 free(pe->data);
789 got_pathlist_free(symrefs);
791 return err;