Blob


1 /*
2 * Copyright (c) 2018, 2019, 2020 Stefan Sperling <stsp@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/queue.h>
19 #include <sys/uio.h>
20 #include <sys/socket.h>
21 #include <sys/stat.h>
22 #include <sys/mman.h>
23 #include <sys/resource.h>
25 #include <ctype.h>
26 #include <fcntl.h>
27 #include <fnmatch.h>
28 #include <limits.h>
29 #include <dirent.h>
30 #include <stdlib.h>
31 #include <stdio.h>
32 #include <string.h>
33 #include <time.h>
34 #include <unistd.h>
35 #include <zlib.h>
36 #include <errno.h>
37 #include <libgen.h>
38 #include <stdint.h>
40 #include "bloom.h"
42 #include "got_error.h"
43 #include "got_reference.h"
44 #include "got_repository.h"
45 #include "got_path.h"
46 #include "got_cancel.h"
47 #include "got_object.h"
48 #include "got_opentemp.h"
50 #include "got_lib_delta.h"
51 #include "got_lib_inflate.h"
52 #include "got_lib_object.h"
53 #include "got_lib_object_parse.h"
54 #include "got_lib_object_create.h"
55 #include "got_lib_pack.h"
56 #include "got_lib_privsep.h"
57 #include "got_lib_sha1.h"
58 #include "got_lib_object_cache.h"
59 #include "got_lib_repository.h"
60 #include "got_lib_gotconfig.h"
62 #ifndef nitems
63 #define nitems(_a) (sizeof(_a) / sizeof((_a)[0]))
64 #endif
66 #define GOT_PACK_NUM_TEMPFILES GOT_PACK_CACHE_SIZE * 2
68 RB_PROTOTYPE(got_packidx_bloom_filter_tree, got_packidx_bloom_filter, entry,
69 got_packidx_bloom_filter_cmp);
71 const char *
72 got_repo_get_path(struct got_repository *repo)
73 {
74 return repo->path;
75 }
77 const char *
78 got_repo_get_path_git_dir(struct got_repository *repo)
79 {
80 return repo->path_git_dir;
81 }
83 int
84 got_repo_get_fd(struct got_repository *repo)
85 {
86 return repo->gitdir_fd;
87 }
89 const char *
90 got_repo_get_gitconfig_author_name(struct got_repository *repo)
91 {
92 return repo->gitconfig_author_name;
93 }
95 const char *
96 got_repo_get_gitconfig_author_email(struct got_repository *repo)
97 {
98 return repo->gitconfig_author_email;
99 }
101 const char *
102 got_repo_get_global_gitconfig_author_name(struct got_repository *repo)
104 return repo->global_gitconfig_author_name;
107 const char *
108 got_repo_get_global_gitconfig_author_email(struct got_repository *repo)
110 return repo->global_gitconfig_author_email;
113 const char *
114 got_repo_get_gitconfig_owner(struct got_repository *repo)
116 return repo->gitconfig_owner;
119 void
120 got_repo_get_gitconfig_extensions(char ***extensions, int *nextensions,
121 struct got_repository *repo)
123 *extensions = repo->extensions;
124 *nextensions = repo->nextensions;
127 int
128 got_repo_is_bare(struct got_repository *repo)
130 return (strcmp(repo->path, repo->path_git_dir) == 0);
133 static char *
134 get_path_git_child(struct got_repository *repo, const char *basename)
136 char *path_child;
138 if (asprintf(&path_child, "%s/%s", repo->path_git_dir,
139 basename) == -1)
140 return NULL;
142 return path_child;
145 char *
146 got_repo_get_path_objects(struct got_repository *repo)
148 return get_path_git_child(repo, GOT_OBJECTS_DIR);
151 char *
152 got_repo_get_path_objects_pack(struct got_repository *repo)
154 return get_path_git_child(repo, GOT_OBJECTS_PACK_DIR);
157 char *
158 got_repo_get_path_refs(struct got_repository *repo)
160 return get_path_git_child(repo, GOT_REFS_DIR);
163 char *
164 got_repo_get_path_packed_refs(struct got_repository *repo)
166 return get_path_git_child(repo, GOT_PACKED_REFS_FILE);
169 static char *
170 get_path_head(struct got_repository *repo)
172 return get_path_git_child(repo, GOT_HEAD_FILE);
175 char *
176 got_repo_get_path_gitconfig(struct got_repository *repo)
178 return get_path_git_child(repo, GOT_GITCONFIG);
181 char *
182 got_repo_get_path_gotconfig(struct got_repository *repo)
184 return get_path_git_child(repo, GOT_GOTCONFIG_FILENAME);
187 const struct got_gotconfig *
188 got_repo_get_gotconfig(struct got_repository *repo)
190 return repo->gotconfig;
193 void
194 got_repo_get_gitconfig_remotes(int *nremotes,
195 const struct got_remote_repo **remotes, struct got_repository *repo)
197 *nremotes = repo->ngitconfig_remotes;
198 *remotes = repo->gitconfig_remotes;
201 static int
202 is_git_repo(struct got_repository *repo)
204 const char *path_git = got_repo_get_path_git_dir(repo);
205 char *path_objects = got_repo_get_path_objects(repo);
206 char *path_refs = got_repo_get_path_refs(repo);
207 char *path_head = get_path_head(repo);
208 int ret = 0;
209 struct stat sb;
210 struct got_reference *head_ref;
212 if (lstat(path_git, &sb) == -1)
213 goto done;
214 if (!S_ISDIR(sb.st_mode))
215 goto done;
217 if (lstat(path_objects, &sb) == -1)
218 goto done;
219 if (!S_ISDIR(sb.st_mode))
220 goto done;
222 if (lstat(path_refs, &sb) == -1)
223 goto done;
224 if (!S_ISDIR(sb.st_mode))
225 goto done;
227 if (lstat(path_head, &sb) == -1)
228 goto done;
229 if (!S_ISREG(sb.st_mode))
230 goto done;
232 /* Check if the HEAD reference can be opened. */
233 if (got_ref_open(&head_ref, repo, GOT_REF_HEAD, 0) != NULL)
234 goto done;
235 got_ref_close(head_ref);
237 ret = 1;
238 done:
239 free(path_objects);
240 free(path_refs);
241 free(path_head);
242 return ret;
246 const struct got_error *
247 got_repo_pack_fds_open(int **pack_fds)
249 const struct got_error *err = NULL;
250 int i, *pack_fds_tmp;
252 pack_fds_tmp = calloc(GOT_PACK_NUM_TEMPFILES, sizeof(int));
253 if (pack_fds_tmp == NULL)
254 return got_error_from_errno("calloc");
255 *pack_fds = calloc(GOT_PACK_NUM_TEMPFILES, sizeof(**pack_fds));
256 if (*pack_fds == NULL) {
257 free(pack_fds_tmp);
258 return got_error_from_errno("calloc");
261 /*
262 * got_repo_pack_fds_close will try to close all of the
263 * GOT_PACK_NUM_TEMPFILES fds, even the ones that didn't manage to get
264 * a value from got_opentempfd(), which would result in a close(0) if
265 * we do not initialize to -1 here.
266 */
267 for (i = 0; i < GOT_PACK_NUM_TEMPFILES; i++)
268 pack_fds_tmp[i] = -1;
270 for (i = 0; i < GOT_PACK_NUM_TEMPFILES; i++) {
271 pack_fds_tmp[i] = got_opentempfd();
272 if (pack_fds_tmp[i] == -1) {
273 err = got_error_from_errno("got_opentempfd");
274 got_repo_pack_fds_close(pack_fds_tmp);
275 return err;
278 memcpy(*pack_fds, pack_fds_tmp, GOT_PACK_NUM_TEMPFILES * sizeof(int));
279 return err;
282 const struct got_error *
283 got_repo_pack_fds_close(int *pack_fds)
285 const struct got_error *err = NULL;
286 int i;
288 for (i = 0; i < GOT_PACK_NUM_TEMPFILES; i++) {
289 if (pack_fds[i] == -1)
290 continue;
291 if (close(pack_fds[i]) == -1) {
292 err = got_error_from_errno("close");
293 break;
296 free(pack_fds);
297 return err;
300 const struct got_error *
301 got_repo_cache_object(struct got_repository *repo, struct got_object_id *id,
302 struct got_object *obj)
304 #ifndef GOT_NO_OBJ_CACHE
305 const struct got_error *err = NULL;
306 err = got_object_cache_add(&repo->objcache, id, obj);
307 if (err) {
308 if (err->code == GOT_ERR_OBJ_EXISTS ||
309 err->code == GOT_ERR_OBJ_TOO_LARGE)
310 err = NULL;
311 return err;
313 obj->refcnt++;
314 #endif
315 return NULL;
318 struct got_object *
319 got_repo_get_cached_object(struct got_repository *repo,
320 struct got_object_id *id)
322 return (struct got_object *)got_object_cache_get(&repo->objcache, id);
325 const struct got_error *
326 got_repo_cache_tree(struct got_repository *repo, struct got_object_id *id,
327 struct got_tree_object *tree)
329 #ifndef GOT_NO_OBJ_CACHE
330 const struct got_error *err = NULL;
331 err = got_object_cache_add(&repo->treecache, id, tree);
332 if (err) {
333 if (err->code == GOT_ERR_OBJ_EXISTS ||
334 err->code == GOT_ERR_OBJ_TOO_LARGE)
335 err = NULL;
336 return err;
338 tree->refcnt++;
339 #endif
340 return NULL;
343 struct got_tree_object *
344 got_repo_get_cached_tree(struct got_repository *repo,
345 struct got_object_id *id)
347 return (struct got_tree_object *)got_object_cache_get(
348 &repo->treecache, id);
351 const struct got_error *
352 got_repo_cache_commit(struct got_repository *repo, struct got_object_id *id,
353 struct got_commit_object *commit)
355 #ifndef GOT_NO_OBJ_CACHE
356 const struct got_error *err = NULL;
357 err = got_object_cache_add(&repo->commitcache, id, commit);
358 if (err) {
359 if (err->code == GOT_ERR_OBJ_EXISTS ||
360 err->code == GOT_ERR_OBJ_TOO_LARGE)
361 err = NULL;
362 return err;
364 commit->refcnt++;
365 #endif
366 return NULL;
369 struct got_commit_object *
370 got_repo_get_cached_commit(struct got_repository *repo,
371 struct got_object_id *id)
373 return (struct got_commit_object *)got_object_cache_get(
374 &repo->commitcache, id);
377 const struct got_error *
378 got_repo_cache_tag(struct got_repository *repo, struct got_object_id *id,
379 struct got_tag_object *tag)
381 #ifndef GOT_NO_OBJ_CACHE
382 const struct got_error *err = NULL;
383 err = got_object_cache_add(&repo->tagcache, id, tag);
384 if (err) {
385 if (err->code == GOT_ERR_OBJ_EXISTS ||
386 err->code == GOT_ERR_OBJ_TOO_LARGE)
387 err = NULL;
388 return err;
390 tag->refcnt++;
391 #endif
392 return NULL;
395 struct got_tag_object *
396 got_repo_get_cached_tag(struct got_repository *repo, struct got_object_id *id)
398 return (struct got_tag_object *)got_object_cache_get(
399 &repo->tagcache, id);
402 const struct got_error *
403 got_repo_cache_raw_object(struct got_repository *repo, struct got_object_id *id,
404 struct got_raw_object *raw)
406 #ifndef GOT_NO_OBJ_CACHE
407 const struct got_error *err = NULL;
408 err = got_object_cache_add(&repo->rawcache, id, raw);
409 if (err) {
410 if (err->code == GOT_ERR_OBJ_EXISTS ||
411 err->code == GOT_ERR_OBJ_TOO_LARGE)
412 err = NULL;
413 return err;
415 raw->refcnt++;
416 #endif
417 return NULL;
421 struct got_raw_object *
422 got_repo_get_cached_raw_object(struct got_repository *repo,
423 struct got_object_id *id)
425 return (struct got_raw_object *)got_object_cache_get(&repo->rawcache, id);
429 static const struct got_error *
430 open_repo(struct got_repository *repo, const char *path)
432 const struct got_error *err = NULL;
434 repo->gitdir_fd = -1;
436 /* bare git repository? */
437 repo->path_git_dir = strdup(path);
438 if (repo->path_git_dir == NULL)
439 return got_error_from_errno("strdup");
440 if (is_git_repo(repo)) {
441 repo->path = strdup(repo->path_git_dir);
442 if (repo->path == NULL) {
443 err = got_error_from_errno("strdup");
444 goto done;
446 repo->gitdir_fd = open(repo->path_git_dir,
447 O_DIRECTORY | O_CLOEXEC);
448 if (repo->gitdir_fd == -1) {
449 err = got_error_from_errno2("open",
450 repo->path_git_dir);
451 goto done;
453 return NULL;
456 /* git repository with working tree? */
457 free(repo->path_git_dir);
458 repo->path_git_dir = NULL;
459 if (asprintf(&repo->path_git_dir, "%s/%s", path, GOT_GIT_DIR) == -1) {
460 err = got_error_from_errno("asprintf");
461 goto done;
463 if (is_git_repo(repo)) {
464 repo->path = strdup(path);
465 if (repo->path == NULL) {
466 err = got_error_from_errno("strdup");
467 goto done;
469 repo->gitdir_fd = open(repo->path_git_dir,
470 O_DIRECTORY | O_CLOEXEC);
471 if (repo->gitdir_fd == -1) {
472 err = got_error_from_errno2("open",
473 repo->path_git_dir);
474 goto done;
476 return NULL;
479 err = got_error(GOT_ERR_NOT_GIT_REPO);
480 done:
481 if (err) {
482 free(repo->path);
483 repo->path = NULL;
484 free(repo->path_git_dir);
485 repo->path_git_dir = NULL;
486 if (repo->gitdir_fd != -1)
487 close(repo->gitdir_fd);
488 repo->gitdir_fd = -1;
491 return err;
494 static const struct got_error *
495 parse_gitconfig_file(int *gitconfig_repository_format_version,
496 char **gitconfig_author_name, char **gitconfig_author_email,
497 struct got_remote_repo **remotes, int *nremotes,
498 char **gitconfig_owner, char ***extensions, int *nextensions,
499 const char *gitconfig_path)
501 const struct got_error *err = NULL, *child_err = NULL;
502 int fd = -1;
503 int imsg_fds[2] = { -1, -1 };
504 pid_t pid;
505 struct imsgbuf *ibuf;
507 *gitconfig_repository_format_version = 0;
508 if (extensions)
509 *extensions = NULL;
510 if (nextensions)
511 *nextensions = 0;
512 *gitconfig_author_name = NULL;
513 *gitconfig_author_email = NULL;
514 if (remotes)
515 *remotes = NULL;
516 if (nremotes)
517 *nremotes = 0;
518 if (gitconfig_owner)
519 *gitconfig_owner = NULL;
521 fd = open(gitconfig_path, O_RDONLY | O_CLOEXEC);
522 if (fd == -1) {
523 if (errno == ENOENT)
524 return NULL;
525 return got_error_from_errno2("open", gitconfig_path);
528 ibuf = calloc(1, sizeof(*ibuf));
529 if (ibuf == NULL) {
530 err = got_error_from_errno("calloc");
531 goto done;
534 if (socketpair(AF_UNIX, SOCK_STREAM, PF_UNSPEC, imsg_fds) == -1) {
535 err = got_error_from_errno("socketpair");
536 goto done;
539 pid = fork();
540 if (pid == -1) {
541 err = got_error_from_errno("fork");
542 goto done;
543 } else if (pid == 0) {
544 got_privsep_exec_child(imsg_fds, GOT_PATH_PROG_READ_GITCONFIG,
545 gitconfig_path);
546 /* not reached */
549 if (close(imsg_fds[1]) == -1) {
550 err = got_error_from_errno("close");
551 goto done;
553 imsg_fds[1] = -1;
554 imsg_init(ibuf, imsg_fds[0]);
556 err = got_privsep_send_gitconfig_parse_req(ibuf, fd);
557 if (err)
558 goto done;
559 fd = -1;
561 err = got_privsep_send_gitconfig_repository_format_version_req(ibuf);
562 if (err)
563 goto done;
565 err = got_privsep_recv_gitconfig_int(
566 gitconfig_repository_format_version, ibuf);
567 if (err)
568 goto done;
570 if (extensions && nextensions) {
571 err = got_privsep_send_gitconfig_repository_extensions_req(
572 ibuf);
573 if (err)
574 goto done;
575 err = got_privsep_recv_gitconfig_int(nextensions, ibuf);
576 if (err)
577 goto done;
578 if (*nextensions > 0) {
579 int i;
580 *extensions = calloc(*nextensions, sizeof(char *));
581 if (*extensions == NULL) {
582 err = got_error_from_errno("calloc");
583 goto done;
585 for (i = 0; i < *nextensions; i++) {
586 char *ext;
587 err = got_privsep_recv_gitconfig_str(&ext,
588 ibuf);
589 if (err)
590 goto done;
591 (*extensions)[i] = ext;
596 err = got_privsep_send_gitconfig_author_name_req(ibuf);
597 if (err)
598 goto done;
600 err = got_privsep_recv_gitconfig_str(gitconfig_author_name, ibuf);
601 if (err)
602 goto done;
604 err = got_privsep_send_gitconfig_author_email_req(ibuf);
605 if (err)
606 goto done;
608 err = got_privsep_recv_gitconfig_str(gitconfig_author_email, ibuf);
609 if (err)
610 goto done;
612 if (remotes && nremotes) {
613 err = got_privsep_send_gitconfig_remotes_req(ibuf);
614 if (err)
615 goto done;
617 err = got_privsep_recv_gitconfig_remotes(remotes,
618 nremotes, ibuf);
619 if (err)
620 goto done;
623 if (gitconfig_owner) {
624 err = got_privsep_send_gitconfig_owner_req(ibuf);
625 if (err)
626 goto done;
627 err = got_privsep_recv_gitconfig_str(gitconfig_owner, ibuf);
628 if (err)
629 goto done;
632 err = got_privsep_send_stop(imsg_fds[0]);
633 child_err = got_privsep_wait_for_child(pid);
634 if (child_err && err == NULL)
635 err = child_err;
636 done:
637 if (imsg_fds[0] != -1 && close(imsg_fds[0]) == -1 && err == NULL)
638 err = got_error_from_errno("close");
639 if (imsg_fds[1] != -1 && close(imsg_fds[1]) == -1 && err == NULL)
640 err = got_error_from_errno("close");
641 if (fd != -1 && close(fd) == -1 && err == NULL)
642 err = got_error_from_errno2("close", gitconfig_path);
643 free(ibuf);
644 return err;
647 static const struct got_error *
648 read_gitconfig(struct got_repository *repo, const char *global_gitconfig_path)
650 const struct got_error *err = NULL;
651 char *repo_gitconfig_path = NULL;
653 if (global_gitconfig_path) {
654 /* Read settings from ~/.gitconfig. */
655 int dummy_repo_version;
656 err = parse_gitconfig_file(&dummy_repo_version,
657 &repo->global_gitconfig_author_name,
658 &repo->global_gitconfig_author_email,
659 NULL, NULL, NULL, NULL, NULL, global_gitconfig_path);
660 if (err)
661 return err;
664 /* Read repository's .git/config file. */
665 repo_gitconfig_path = got_repo_get_path_gitconfig(repo);
666 if (repo_gitconfig_path == NULL)
667 return got_error_from_errno("got_repo_get_path_gitconfig");
669 err = parse_gitconfig_file(&repo->gitconfig_repository_format_version,
670 &repo->gitconfig_author_name, &repo->gitconfig_author_email,
671 &repo->gitconfig_remotes, &repo->ngitconfig_remotes,
672 &repo->gitconfig_owner, &repo->extensions, &repo->nextensions,
673 repo_gitconfig_path);
674 if (err)
675 goto done;
677 if (getenv("GOT_IGNORE_GITCONFIG") != NULL) {
678 int i;
680 for (i = 0; i < repo->ngitconfig_remotes; i++) {
681 got_repo_free_remote_repo_data(
682 &repo->gitconfig_remotes[i]);
684 free(repo->gitconfig_remotes);
685 repo->gitconfig_remotes = NULL;
686 repo->ngitconfig_remotes = 0;
688 free(repo->gitconfig_author_name);
689 repo->gitconfig_author_name = NULL;
690 free(repo->gitconfig_author_email);
691 repo->gitconfig_author_email = NULL;
693 free(repo->global_gitconfig_author_name);
694 repo->global_gitconfig_author_name = NULL;
695 free(repo->global_gitconfig_author_email);
696 repo->global_gitconfig_author_email = NULL;
699 done:
700 free(repo_gitconfig_path);
701 return err;
704 static const struct got_error *
705 read_gotconfig(struct got_repository *repo)
707 const struct got_error *err = NULL;
708 char *gotconfig_path;
710 gotconfig_path = got_repo_get_path_gotconfig(repo);
711 if (gotconfig_path == NULL)
712 return got_error_from_errno("got_repo_get_path_gotconfig");
714 err = got_gotconfig_read(&repo->gotconfig, gotconfig_path);
715 free(gotconfig_path);
716 return err;
719 /* Supported repository format extensions. */
720 static const char *const repo_extensions[] = {
721 "noop", /* Got supports repository format version 1. */
722 "preciousObjects", /* Supported by gotadmin cleanup. */
723 "worktreeConfig", /* Got does not care about Git work trees. */
724 };
726 const struct got_error *
727 got_repo_open(struct got_repository **repop, const char *path,
728 const char *global_gitconfig_path, int *pack_fds)
730 struct got_repository *repo = NULL;
731 const struct got_error *err = NULL;
732 char *repo_path = NULL;
733 size_t i, j = 0;
734 struct rlimit rl;
736 *repop = NULL;
738 if (getrlimit(RLIMIT_NOFILE, &rl) == -1)
739 return got_error_from_errno("getrlimit");
741 repo = calloc(1, sizeof(*repo));
742 if (repo == NULL)
743 return got_error_from_errno("calloc");
745 RB_INIT(&repo->packidx_bloom_filters);
746 TAILQ_INIT(&repo->packidx_paths);
748 for (i = 0; i < nitems(repo->privsep_children); i++) {
749 memset(&repo->privsep_children[i], 0,
750 sizeof(repo->privsep_children[0]));
751 repo->privsep_children[i].imsg_fd = -1;
754 err = got_object_cache_init(&repo->objcache,
755 GOT_OBJECT_CACHE_TYPE_OBJ);
756 if (err)
757 goto done;
758 err = got_object_cache_init(&repo->treecache,
759 GOT_OBJECT_CACHE_TYPE_TREE);
760 if (err)
761 goto done;
762 err = got_object_cache_init(&repo->commitcache,
763 GOT_OBJECT_CACHE_TYPE_COMMIT);
764 if (err)
765 goto done;
766 err = got_object_cache_init(&repo->tagcache,
767 GOT_OBJECT_CACHE_TYPE_TAG);
768 if (err)
769 goto done;
770 err = got_object_cache_init(&repo->rawcache,
771 GOT_OBJECT_CACHE_TYPE_RAW);
772 if (err)
773 goto done;
775 repo->pack_cache_size = GOT_PACK_CACHE_SIZE;
776 if (repo->pack_cache_size > rl.rlim_cur / 8)
777 repo->pack_cache_size = rl.rlim_cur / 8;
778 for (i = 0; i < nitems(repo->packs); i++) {
779 if (i < repo->pack_cache_size) {
780 repo->packs[i].basefd = pack_fds[j++];
781 repo->packs[i].accumfd = pack_fds[j++];
782 } else {
783 repo->packs[i].basefd = -1;
784 repo->packs[i].accumfd = -1;
787 repo->pinned_pack = -1;
788 repo->pinned_packidx = -1;
789 repo->pinned_pid = 0;
791 repo_path = realpath(path, NULL);
792 if (repo_path == NULL) {
793 err = got_error_from_errno2("realpath", path);
794 goto done;
797 for (;;) {
798 char *parent_path;
800 err = open_repo(repo, repo_path);
801 if (err == NULL)
802 break;
803 if (err->code != GOT_ERR_NOT_GIT_REPO)
804 goto done;
805 if (repo_path[0] == '/' && repo_path[1] == '\0') {
806 err = got_error(GOT_ERR_NOT_GIT_REPO);
807 goto done;
809 err = got_path_dirname(&parent_path, repo_path);
810 if (err)
811 goto done;
812 free(repo_path);
813 repo_path = parent_path;
816 err = read_gotconfig(repo);
817 if (err)
818 goto done;
820 err = read_gitconfig(repo, global_gitconfig_path);
821 if (err)
822 goto done;
823 if (repo->gitconfig_repository_format_version != 0) {
824 err = got_error_path(path, GOT_ERR_GIT_REPO_FORMAT);
825 goto done;
827 for (i = 0; i < repo->nextensions; i++) {
828 char *ext = repo->extensions[i];
829 int j, supported = 0;
830 for (j = 0; j < nitems(repo_extensions); j++) {
831 if (strcmp(ext, repo_extensions[j]) == 0) {
832 supported = 1;
833 break;
836 if (!supported) {
837 err = got_error_path(ext, GOT_ERR_GIT_REPO_EXT);
838 goto done;
842 err = got_repo_list_packidx(&repo->packidx_paths, repo);
843 done:
844 if (err)
845 got_repo_close(repo);
846 else
847 *repop = repo;
848 free(repo_path);
849 return err;
852 const struct got_error *
853 got_repo_close(struct got_repository *repo)
855 const struct got_error *err = NULL, *child_err;
856 struct got_packidx_bloom_filter *bf;
857 struct got_pathlist_entry *pe;
858 size_t i;
860 for (i = 0; i < repo->pack_cache_size; i++) {
861 if (repo->packidx_cache[i] == NULL)
862 break;
863 got_packidx_close(repo->packidx_cache[i]);
866 while ((bf = RB_MIN(got_packidx_bloom_filter_tree,
867 &repo->packidx_bloom_filters))) {
868 RB_REMOVE(got_packidx_bloom_filter_tree,
869 &repo->packidx_bloom_filters, bf);
870 bloom_free(bf->bloom);
871 free(bf->bloom);
872 free(bf);
875 for (i = 0; i < repo->pack_cache_size; i++)
876 if (repo->packs[i].path_packfile)
877 if (repo->packs[i].path_packfile)
878 got_pack_close(&repo->packs[i]);
880 free(repo->path);
881 free(repo->path_git_dir);
883 got_object_cache_close(&repo->objcache);
884 got_object_cache_close(&repo->treecache);
885 got_object_cache_close(&repo->commitcache);
886 got_object_cache_close(&repo->tagcache);
887 got_object_cache_close(&repo->rawcache);
889 for (i = 0; i < nitems(repo->privsep_children); i++) {
890 if (repo->privsep_children[i].imsg_fd == -1)
891 continue;
892 imsg_clear(repo->privsep_children[i].ibuf);
893 free(repo->privsep_children[i].ibuf);
894 err = got_privsep_send_stop(repo->privsep_children[i].imsg_fd);
895 child_err = got_privsep_wait_for_child(
896 repo->privsep_children[i].pid);
897 if (child_err && err == NULL)
898 err = child_err;
899 if (close(repo->privsep_children[i].imsg_fd) == -1 &&
900 err == NULL)
901 err = got_error_from_errno("close");
904 if (repo->gitdir_fd != -1 && close(repo->gitdir_fd) == -1 &&
905 err == NULL)
906 err = got_error_from_errno("close");
908 if (repo->gotconfig)
909 got_gotconfig_free(repo->gotconfig);
910 free(repo->gitconfig_author_name);
911 free(repo->gitconfig_author_email);
912 for (i = 0; i < repo->ngitconfig_remotes; i++)
913 got_repo_free_remote_repo_data(&repo->gitconfig_remotes[i]);
914 free(repo->gitconfig_remotes);
915 for (i = 0; i < repo->nextensions; i++)
916 free(repo->extensions[i]);
917 free(repo->extensions);
919 TAILQ_FOREACH(pe, &repo->packidx_paths, entry)
920 free((void *)pe->path);
921 got_pathlist_free(&repo->packidx_paths);
922 free(repo);
924 return err;
927 void
928 got_repo_free_remote_repo_data(struct got_remote_repo *repo)
930 int i;
932 free(repo->name);
933 repo->name = NULL;
934 free(repo->fetch_url);
935 repo->fetch_url = NULL;
936 free(repo->send_url);
937 repo->send_url = NULL;
938 for (i = 0; i < repo->nfetch_branches; i++)
939 free(repo->fetch_branches[i]);
940 free(repo->fetch_branches);
941 repo->fetch_branches = NULL;
942 repo->nfetch_branches = 0;
943 for (i = 0; i < repo->nsend_branches; i++)
944 free(repo->send_branches[i]);
945 free(repo->send_branches);
946 repo->send_branches = NULL;
947 repo->nsend_branches = 0;
950 const struct got_error *
951 got_repo_map_path(char **in_repo_path, struct got_repository *repo,
952 const char *input_path)
954 const struct got_error *err = NULL;
955 const char *repo_abspath = NULL;
956 size_t repolen, len;
957 char *canonpath, *path = NULL;
959 *in_repo_path = NULL;
961 canonpath = strdup(input_path);
962 if (canonpath == NULL) {
963 err = got_error_from_errno("strdup");
964 goto done;
966 err = got_canonpath(input_path, canonpath, strlen(canonpath) + 1);
967 if (err)
968 goto done;
970 repo_abspath = got_repo_get_path(repo);
972 if (canonpath[0] == '\0') {
973 path = strdup(canonpath);
974 if (path == NULL) {
975 err = got_error_from_errno("strdup");
976 goto done;
978 } else {
979 path = realpath(canonpath, NULL);
980 if (path == NULL) {
981 if (errno != ENOENT) {
982 err = got_error_from_errno2("realpath",
983 canonpath);
984 goto done;
986 /*
987 * Path is not on disk.
988 * Assume it is already relative to repository root.
989 */
990 path = strdup(canonpath);
991 if (path == NULL) {
992 err = got_error_from_errno("strdup");
993 goto done;
997 repolen = strlen(repo_abspath);
998 len = strlen(path);
1001 if (strcmp(path, repo_abspath) == 0) {
1002 free(path);
1003 path = strdup("");
1004 if (path == NULL) {
1005 err = got_error_from_errno("strdup");
1006 goto done;
1008 } else if (len > repolen &&
1009 got_path_is_child(path, repo_abspath, repolen)) {
1010 /* Matched an on-disk path inside repository. */
1011 if (got_repo_is_bare(repo)) {
1013 * Matched an on-disk path inside repository
1014 * database. Treat input as repository-relative.
1016 free(path);
1017 path = canonpath;
1018 canonpath = NULL;
1019 } else {
1020 char *child;
1021 /* Strip common prefix with repository path. */
1022 err = got_path_skip_common_ancestor(&child,
1023 repo_abspath, path);
1024 if (err)
1025 goto done;
1026 free(path);
1027 path = child;
1029 } else {
1031 * Matched unrelated on-disk path.
1032 * Treat input as repository-relative.
1034 free(path);
1035 path = canonpath;
1036 canonpath = NULL;
1040 /* Make in-repository path absolute */
1041 if (path[0] != '/') {
1042 char *abspath;
1043 if (asprintf(&abspath, "/%s", path) == -1) {
1044 err = got_error_from_errno("asprintf");
1045 goto done;
1047 free(path);
1048 path = abspath;
1051 done:
1052 free(canonpath);
1053 if (err)
1054 free(path);
1055 else
1056 *in_repo_path = path;
1057 return err;
1060 static const struct got_error *
1061 cache_packidx(struct got_repository *repo, struct got_packidx *packidx,
1062 const char *path_packidx)
1064 const struct got_error *err = NULL;
1065 size_t i;
1067 for (i = 0; i < repo->pack_cache_size; i++) {
1068 if (repo->packidx_cache[i] == NULL)
1069 break;
1070 if (strcmp(repo->packidx_cache[i]->path_packidx,
1071 path_packidx) == 0) {
1072 return got_error(GOT_ERR_CACHE_DUP_ENTRY);
1075 if (i == repo->pack_cache_size) {
1076 do {
1077 i--;
1078 } while (i > 0 && repo->pinned_packidx >= 0 &&
1079 i == repo->pinned_packidx);
1080 err = got_packidx_close(repo->packidx_cache[i]);
1081 if (err)
1082 return err;
1085 repo->packidx_cache[i] = packidx;
1087 return NULL;
1090 int
1091 got_repo_is_packidx_filename(const char *name, size_t len)
1093 if (len != GOT_PACKIDX_NAMELEN)
1094 return 0;
1096 if (strncmp(name, GOT_PACK_PREFIX, strlen(GOT_PACK_PREFIX)) != 0)
1097 return 0;
1099 if (strcmp(name + strlen(GOT_PACK_PREFIX) +
1100 SHA1_DIGEST_STRING_LENGTH - 1, GOT_PACKIDX_SUFFIX) != 0)
1101 return 0;
1103 return 1;
1106 static struct got_packidx_bloom_filter *
1107 get_packidx_bloom_filter(struct got_repository *repo,
1108 const char *path, size_t path_len)
1110 struct got_packidx_bloom_filter key;
1112 if (strlcpy(key.path, path, sizeof(key.path)) >= sizeof(key.path))
1113 return NULL; /* XXX */
1114 key.path_len = path_len;
1116 return RB_FIND(got_packidx_bloom_filter_tree,
1117 &repo->packidx_bloom_filters, &key);
1120 int
1121 got_repo_check_packidx_bloom_filter(struct got_repository *repo,
1122 const char *path_packidx, struct got_object_id *id)
1124 struct got_packidx_bloom_filter *bf;
1126 bf = get_packidx_bloom_filter(repo, path_packidx, strlen(path_packidx));
1127 if (bf)
1128 return bloom_check(bf->bloom, id->sha1, sizeof(id->sha1));
1130 /* No bloom filter means this pack index must be searched. */
1131 return 1;
1134 static const struct got_error *
1135 add_packidx_bloom_filter(struct got_repository *repo,
1136 struct got_packidx *packidx, const char *path_packidx)
1138 int i, nobjects = be32toh(packidx->hdr.fanout_table[0xff]);
1139 struct got_packidx_bloom_filter *bf;
1140 size_t len;
1143 * Don't use bloom filters for very large pack index files.
1144 * Large pack files will contain a relatively large fraction
1145 * of our objects so we will likely need to visit them anyway.
1146 * The more objects a pack file contains the higher the probability
1147 * of a false-positive match from the bloom filter. And reading
1148 * all object IDs from a large pack index file can be expensive.
1150 if (nobjects > 100000) /* cut-off at about 2MB, at 20 bytes per ID */
1151 return NULL;
1153 /* Do we already have a filter for this pack index? */
1154 if (get_packidx_bloom_filter(repo, path_packidx,
1155 strlen(path_packidx)) != NULL)
1156 return NULL;
1158 bf = calloc(1, sizeof(*bf));
1159 if (bf == NULL)
1160 return got_error_from_errno("calloc");
1161 bf->bloom = calloc(1, sizeof(*bf->bloom));
1162 if (bf->bloom == NULL) {
1163 free(bf);
1164 return got_error_from_errno("calloc");
1167 len = strlcpy(bf->path, path_packidx, sizeof(bf->path));
1168 if (len >= sizeof(bf->path)) {
1169 free(bf->bloom);
1170 free(bf);
1171 return got_error(GOT_ERR_NO_SPACE);
1173 bf->path_len = len;
1175 /* Minimum size supported by our bloom filter is 1000 entries. */
1176 bloom_init(bf->bloom, nobjects < 1000 ? 1000 : nobjects, 0.1);
1177 for (i = 0; i < nobjects; i++) {
1178 struct got_packidx_object_id *id;
1179 id = &packidx->hdr.sorted_ids[i];
1180 bloom_add(bf->bloom, id->sha1, sizeof(id->sha1));
1183 RB_INSERT(got_packidx_bloom_filter_tree,
1184 &repo->packidx_bloom_filters, bf);
1185 return NULL;
1188 const struct got_error *
1189 got_repo_search_packidx(struct got_packidx **packidx, int *idx,
1190 struct got_repository *repo, struct got_object_id *id)
1192 const struct got_error *err;
1193 struct got_pathlist_entry *pe;
1194 size_t i;
1196 /* Search pack index cache. */
1197 for (i = 0; i < repo->pack_cache_size; i++) {
1198 if (repo->packidx_cache[i] == NULL)
1199 break;
1200 if (!got_repo_check_packidx_bloom_filter(repo,
1201 repo->packidx_cache[i]->path_packidx, id))
1202 continue; /* object will not be found in this index */
1203 *idx = got_packidx_get_object_idx(repo->packidx_cache[i], id);
1204 if (*idx != -1) {
1205 *packidx = repo->packidx_cache[i];
1207 * Move this cache entry to the front. Repeatedly
1208 * searching a wrong pack index can be expensive.
1210 if (i > 0) {
1211 memmove(&repo->packidx_cache[1],
1212 &repo->packidx_cache[0],
1213 i * sizeof(repo->packidx_cache[0]));
1214 repo->packidx_cache[0] = *packidx;
1215 if (repo->pinned_packidx >= 0 &&
1216 repo->pinned_packidx < i)
1217 repo->pinned_packidx++;
1218 else if (repo->pinned_packidx == i)
1219 repo->pinned_packidx = 0;
1221 return NULL;
1224 /* No luck. Search the filesystem. */
1226 TAILQ_FOREACH(pe, &repo->packidx_paths, entry) {
1227 const char *path_packidx = pe->path;
1228 int is_cached = 0;
1230 if (!got_repo_check_packidx_bloom_filter(repo,
1231 pe->path, id))
1232 continue; /* object will not be found in this index */
1234 for (i = 0; i < repo->pack_cache_size; i++) {
1235 if (repo->packidx_cache[i] == NULL)
1236 break;
1237 if (strcmp(repo->packidx_cache[i]->path_packidx,
1238 path_packidx) == 0) {
1239 is_cached = 1;
1240 break;
1243 if (is_cached)
1244 continue; /* already searched */
1246 err = got_packidx_open(packidx, got_repo_get_fd(repo),
1247 path_packidx, 0);
1248 if (err)
1249 goto done;
1251 err = add_packidx_bloom_filter(repo, *packidx, path_packidx);
1252 if (err)
1253 goto done;
1255 err = cache_packidx(repo, *packidx, path_packidx);
1256 if (err)
1257 goto done;
1259 *idx = got_packidx_get_object_idx(*packidx, id);
1260 if (*idx != -1) {
1261 err = NULL; /* found the object */
1262 goto done;
1266 err = got_error_no_obj(id);
1267 done:
1268 return err;
1271 const struct got_error *
1272 got_repo_list_packidx(struct got_pathlist_head *packidx_paths,
1273 struct got_repository *repo)
1275 const struct got_error *err = NULL;
1276 DIR *packdir = NULL;
1277 struct dirent *dent;
1278 char *path_packidx = NULL;
1279 int packdir_fd;
1281 packdir_fd = openat(got_repo_get_fd(repo),
1282 GOT_OBJECTS_PACK_DIR, O_DIRECTORY | O_CLOEXEC);
1283 if (packdir_fd == -1) {
1284 return got_error_from_errno_fmt("openat: %s/%s",
1285 got_repo_get_path_git_dir(repo),
1286 GOT_OBJECTS_PACK_DIR);
1289 packdir = fdopendir(packdir_fd);
1290 if (packdir == NULL) {
1291 err = got_error_from_errno("fdopendir");
1292 goto done;
1295 while ((dent = readdir(packdir)) != NULL) {
1296 if (!got_repo_is_packidx_filename(dent->d_name,
1297 strlen(dent->d_name)))
1298 continue;
1300 if (asprintf(&path_packidx, "%s/%s", GOT_OBJECTS_PACK_DIR,
1301 dent->d_name) == -1) {
1302 err = got_error_from_errno("asprintf");
1303 path_packidx = NULL;
1304 break;
1307 err = got_pathlist_append(packidx_paths, path_packidx, NULL);
1308 if (err)
1309 break;
1311 done:
1312 if (err)
1313 free(path_packidx);
1314 if (packdir && closedir(packdir) != 0 && err == NULL)
1315 err = got_error_from_errno("closedir");
1316 return err;
1319 const struct got_error *
1320 got_repo_get_packidx(struct got_packidx **packidx, const char *path_packidx,
1321 struct got_repository *repo)
1323 const struct got_error *err;
1324 size_t i;
1326 *packidx = NULL;
1328 /* Search pack index cache. */
1329 for (i = 0; i < repo->pack_cache_size; i++) {
1330 if (repo->packidx_cache[i] == NULL)
1331 break;
1332 if (strcmp(repo->packidx_cache[i]->path_packidx,
1333 path_packidx) == 0) {
1334 *packidx = repo->packidx_cache[i];
1335 return NULL;
1338 /* No luck. Search the filesystem. */
1340 err = got_packidx_open(packidx, got_repo_get_fd(repo),
1341 path_packidx, 0);
1342 if (err)
1343 return err;
1345 err = add_packidx_bloom_filter(repo, *packidx, path_packidx);
1346 if (err)
1347 goto done;
1349 err = cache_packidx(repo, *packidx, path_packidx);
1350 done:
1351 if (err) {
1352 got_packidx_close(*packidx);
1353 *packidx = NULL;
1355 return err;
1358 static const struct got_error *
1359 read_packfile_hdr(int fd, struct got_packidx *packidx)
1361 const struct got_error *err = NULL;
1362 uint32_t totobj = be32toh(packidx->hdr.fanout_table[0xff]);
1363 struct got_packfile_hdr hdr;
1364 ssize_t n;
1366 n = read(fd, &hdr, sizeof(hdr));
1367 if (n < 0)
1368 return got_error_from_errno("read");
1369 if (n != sizeof(hdr))
1370 return got_error(GOT_ERR_BAD_PACKFILE);
1372 if (be32toh(hdr.signature) != GOT_PACKFILE_SIGNATURE ||
1373 be32toh(hdr.version) != GOT_PACKFILE_VERSION ||
1374 be32toh(hdr.nobjects) != totobj)
1375 err = got_error(GOT_ERR_BAD_PACKFILE);
1377 return err;
1380 static const struct got_error *
1381 open_packfile(int *fd, struct got_repository *repo,
1382 const char *relpath, struct got_packidx *packidx)
1384 const struct got_error *err = NULL;
1386 *fd = openat(got_repo_get_fd(repo), relpath,
1387 O_RDONLY | O_NOFOLLOW | O_CLOEXEC);
1388 if (*fd == -1)
1389 return got_error_from_errno_fmt("openat: %s/%s",
1390 got_repo_get_path_git_dir(repo), relpath);
1392 if (packidx) {
1393 err = read_packfile_hdr(*fd, packidx);
1394 if (err) {
1395 close(*fd);
1396 *fd = -1;
1400 return err;
1403 const struct got_error *
1404 got_repo_cache_pack(struct got_pack **packp, struct got_repository *repo,
1405 const char *path_packfile, struct got_packidx *packidx)
1407 const struct got_error *err = NULL;
1408 struct got_pack *pack = NULL;
1409 struct stat sb;
1410 size_t i;
1412 if (packp)
1413 *packp = NULL;
1415 for (i = 0; i < repo->pack_cache_size; i++) {
1416 pack = &repo->packs[i];
1417 if (pack->path_packfile == NULL)
1418 break;
1419 if (strcmp(pack->path_packfile, path_packfile) == 0)
1420 return got_error(GOT_ERR_CACHE_DUP_ENTRY);
1423 if (i == repo->pack_cache_size) {
1424 struct got_pack tmp;
1425 do {
1426 i--;
1427 } while (i > 0 && repo->pinned_pack >= 0 &&
1428 i == repo->pinned_pack);
1429 err = got_pack_close(&repo->packs[i]);
1430 if (err)
1431 return err;
1432 if (ftruncate(repo->packs[i].basefd, 0L) == -1)
1433 return got_error_from_errno("ftruncate");
1434 if (ftruncate(repo->packs[i].accumfd, 0L) == -1)
1435 return got_error_from_errno("ftruncate");
1436 memcpy(&tmp, &repo->packs[i], sizeof(tmp));
1437 memcpy(&repo->packs[i], &repo->packs[0],
1438 sizeof(repo->packs[i]));
1439 memcpy(&repo->packs[0], &tmp, sizeof(repo->packs[0]));
1440 if (repo->pinned_pack == 0)
1441 repo->pinned_pack = i;
1442 else if (repo->pinned_pack == i)
1443 repo->pinned_pack = 0;
1444 i = 0;
1447 pack = &repo->packs[i];
1449 pack->path_packfile = strdup(path_packfile);
1450 if (pack->path_packfile == NULL) {
1451 err = got_error_from_errno("strdup");
1452 goto done;
1455 err = open_packfile(&pack->fd, repo, path_packfile, packidx);
1456 if (err)
1457 goto done;
1459 if (fstat(pack->fd, &sb) != 0) {
1460 err = got_error_from_errno("fstat");
1461 goto done;
1463 pack->filesize = sb.st_size;
1465 pack->privsep_child = NULL;
1467 #ifndef GOT_PACK_NO_MMAP
1468 pack->map = mmap(NULL, pack->filesize, PROT_READ, MAP_PRIVATE,
1469 pack->fd, 0);
1470 if (pack->map == MAP_FAILED) {
1471 if (errno != ENOMEM) {
1472 err = got_error_from_errno("mmap");
1473 goto done;
1475 pack->map = NULL; /* fall back to read(2) */
1477 #endif
1478 done:
1479 if (err) {
1480 if (pack) {
1481 free(pack->path_packfile);
1482 memset(pack, 0, sizeof(*pack));
1484 } else if (packp)
1485 *packp = pack;
1486 return err;
1489 struct got_pack *
1490 got_repo_get_cached_pack(struct got_repository *repo, const char *path_packfile)
1492 struct got_pack *pack = NULL;
1493 size_t i;
1495 for (i = 0; i < repo->pack_cache_size; i++) {
1496 pack = &repo->packs[i];
1497 if (pack->path_packfile == NULL)
1498 break;
1499 if (strcmp(pack->path_packfile, path_packfile) == 0)
1500 return pack;
1503 return NULL;
1506 const struct got_error *
1507 got_repo_pin_pack(struct got_repository *repo, struct got_packidx *packidx,
1508 struct got_pack *pack)
1510 size_t i;
1511 int pinned_pack = -1, pinned_packidx = -1;
1513 for (i = 0; i < repo->pack_cache_size; i++) {
1514 if (repo->packidx_cache[i] &&
1515 strcmp(repo->packidx_cache[i]->path_packidx,
1516 packidx->path_packidx) == 0)
1517 pinned_packidx = i;
1518 if (repo->packs[i].path_packfile &&
1519 strcmp(repo->packs[i].path_packfile,
1520 pack->path_packfile) == 0)
1521 pinned_pack = i;
1524 if (pinned_packidx == -1 || pinned_pack == -1)
1525 return got_error(GOT_ERR_PIN_PACK);
1527 repo->pinned_pack = pinned_pack;
1528 repo->pinned_packidx = pinned_packidx;
1529 repo->pinned_pid = repo->packs[pinned_pack].privsep_child->pid;
1530 return NULL;
1533 struct got_pack *
1534 got_repo_get_pinned_pack(struct got_repository *repo)
1536 if (repo->pinned_pack >= 0 &&
1537 repo->pinned_pack < repo->pack_cache_size)
1538 return &repo->packs[repo->pinned_pack];
1540 return NULL;
1543 void
1544 got_repo_unpin_pack(struct got_repository *repo)
1546 repo->pinned_packidx = -1;
1547 repo->pinned_pack = -1;
1548 repo->pinned_pid = 0;
1551 const struct got_error *
1552 got_repo_init(const char *repo_path)
1554 const struct got_error *err = NULL;
1555 const char *dirnames[] = {
1556 GOT_OBJECTS_DIR,
1557 GOT_OBJECTS_PACK_DIR,
1558 GOT_REFS_DIR,
1560 const char *description_str = "Unnamed repository; "
1561 "edit this file 'description' to name the repository.";
1562 const char *headref_str = "ref: refs/heads/main";
1563 const char *gitconfig_str = "[core]\n"
1564 "\trepositoryformatversion = 0\n"
1565 "\tfilemode = true\n"
1566 "\tbare = true\n";
1567 char *path;
1568 size_t i;
1570 if (!got_path_dir_is_empty(repo_path))
1571 return got_error(GOT_ERR_DIR_NOT_EMPTY);
1573 for (i = 0; i < nitems(dirnames); i++) {
1574 if (asprintf(&path, "%s/%s", repo_path, dirnames[i]) == -1) {
1575 return got_error_from_errno("asprintf");
1577 err = got_path_mkdir(path);
1578 free(path);
1579 if (err)
1580 return err;
1583 if (asprintf(&path, "%s/%s", repo_path, "description") == -1)
1584 return got_error_from_errno("asprintf");
1585 err = got_path_create_file(path, description_str);
1586 free(path);
1587 if (err)
1588 return err;
1590 if (asprintf(&path, "%s/%s", repo_path, GOT_HEAD_FILE) == -1)
1591 return got_error_from_errno("asprintf");
1592 err = got_path_create_file(path, headref_str);
1593 free(path);
1594 if (err)
1595 return err;
1597 if (asprintf(&path, "%s/%s", repo_path, "config") == -1)
1598 return got_error_from_errno("asprintf");
1599 err = got_path_create_file(path, gitconfig_str);
1600 free(path);
1601 if (err)
1602 return err;
1604 return NULL;
1607 static const struct got_error *
1608 match_packed_object(struct got_object_id **unique_id,
1609 struct got_repository *repo, const char *id_str_prefix, int obj_type)
1611 const struct got_error *err = NULL;
1612 struct got_object_id_queue matched_ids;
1613 struct got_pathlist_entry *pe;
1615 STAILQ_INIT(&matched_ids);
1617 TAILQ_FOREACH(pe, &repo->packidx_paths, entry) {
1618 const char *path_packidx = pe->path;
1619 struct got_packidx *packidx;
1620 struct got_object_qid *qid;
1622 err = got_packidx_open(&packidx, got_repo_get_fd(repo),
1623 path_packidx, 0);
1624 if (err)
1625 break;
1627 err = got_packidx_match_id_str_prefix(&matched_ids,
1628 packidx, id_str_prefix);
1629 if (err) {
1630 got_packidx_close(packidx);
1631 break;
1633 err = got_packidx_close(packidx);
1634 if (err)
1635 break;
1637 STAILQ_FOREACH(qid, &matched_ids, entry) {
1638 if (obj_type != GOT_OBJ_TYPE_ANY) {
1639 int matched_type;
1640 err = got_object_get_type(&matched_type, repo,
1641 &qid->id);
1642 if (err)
1643 goto done;
1644 if (matched_type != obj_type)
1645 continue;
1647 if (*unique_id == NULL) {
1648 *unique_id = got_object_id_dup(&qid->id);
1649 if (*unique_id == NULL) {
1650 err = got_error_from_errno("malloc");
1651 goto done;
1653 } else {
1654 if (got_object_id_cmp(*unique_id,
1655 &qid->id) == 0)
1656 continue; /* packed multiple times */
1657 err = got_error(GOT_ERR_AMBIGUOUS_ID);
1658 goto done;
1662 done:
1663 got_object_id_queue_free(&matched_ids);
1664 if (err) {
1665 free(*unique_id);
1666 *unique_id = NULL;
1668 return err;
1671 static const struct got_error *
1672 match_loose_object(struct got_object_id **unique_id, const char *path_objects,
1673 const char *object_dir, const char *id_str_prefix, int obj_type,
1674 struct got_repository *repo)
1676 const struct got_error *err = NULL;
1677 char *path;
1678 DIR *dir = NULL;
1679 struct dirent *dent;
1680 struct got_object_id id;
1682 if (asprintf(&path, "%s/%s", path_objects, object_dir) == -1) {
1683 err = got_error_from_errno("asprintf");
1684 goto done;
1687 dir = opendir(path);
1688 if (dir == NULL) {
1689 if (errno == ENOENT) {
1690 err = NULL;
1691 goto done;
1693 err = got_error_from_errno2("opendir", path);
1694 goto done;
1696 while ((dent = readdir(dir)) != NULL) {
1697 char *id_str;
1698 int cmp;
1700 if (strcmp(dent->d_name, ".") == 0 ||
1701 strcmp(dent->d_name, "..") == 0)
1702 continue;
1704 if (asprintf(&id_str, "%s%s", object_dir, dent->d_name) == -1) {
1705 err = got_error_from_errno("asprintf");
1706 goto done;
1709 if (!got_parse_sha1_digest(id.sha1, id_str))
1710 continue;
1713 * Directory entries do not necessarily appear in
1714 * sorted order, so we must iterate over all of them.
1716 cmp = strncmp(id_str, id_str_prefix, strlen(id_str_prefix));
1717 if (cmp != 0) {
1718 free(id_str);
1719 continue;
1722 if (*unique_id == NULL) {
1723 if (obj_type != GOT_OBJ_TYPE_ANY) {
1724 int matched_type;
1725 err = got_object_get_type(&matched_type, repo,
1726 &id);
1727 if (err)
1728 goto done;
1729 if (matched_type != obj_type)
1730 continue;
1732 *unique_id = got_object_id_dup(&id);
1733 if (*unique_id == NULL) {
1734 err = got_error_from_errno("got_object_id_dup");
1735 free(id_str);
1736 goto done;
1738 } else {
1739 if (got_object_id_cmp(*unique_id, &id) == 0)
1740 continue; /* both packed and loose */
1741 err = got_error(GOT_ERR_AMBIGUOUS_ID);
1742 free(id_str);
1743 goto done;
1746 done:
1747 if (dir && closedir(dir) != 0 && err == NULL)
1748 err = got_error_from_errno("closedir");
1749 if (err) {
1750 free(*unique_id);
1751 *unique_id = NULL;
1753 free(path);
1754 return err;
1757 const struct got_error *
1758 got_repo_match_object_id_prefix(struct got_object_id **id,
1759 const char *id_str_prefix, int obj_type, struct got_repository *repo)
1761 const struct got_error *err = NULL;
1762 char *path_objects = got_repo_get_path_objects(repo);
1763 char *object_dir = NULL;
1764 size_t len;
1765 int i;
1767 *id = NULL;
1769 len = strlen(id_str_prefix);
1770 if (len > SHA1_DIGEST_STRING_LENGTH - 1)
1771 return got_error_path(id_str_prefix, GOT_ERR_BAD_OBJ_ID_STR);
1773 for (i = 0; i < len; i++) {
1774 if (isxdigit((unsigned char)id_str_prefix[i]))
1775 continue;
1776 return got_error_path(id_str_prefix, GOT_ERR_BAD_OBJ_ID_STR);
1779 if (len >= 2) {
1780 err = match_packed_object(id, repo, id_str_prefix, obj_type);
1781 if (err)
1782 goto done;
1783 object_dir = strndup(id_str_prefix, 2);
1784 if (object_dir == NULL) {
1785 err = got_error_from_errno("strdup");
1786 goto done;
1788 err = match_loose_object(id, path_objects, object_dir,
1789 id_str_prefix, obj_type, repo);
1790 } else if (len == 1) {
1791 int i;
1792 for (i = 0; i < 0xf; i++) {
1793 if (asprintf(&object_dir, "%s%.1x", id_str_prefix, i)
1794 == -1) {
1795 err = got_error_from_errno("asprintf");
1796 goto done;
1798 err = match_packed_object(id, repo, object_dir,
1799 obj_type);
1800 if (err)
1801 goto done;
1802 err = match_loose_object(id, path_objects, object_dir,
1803 id_str_prefix, obj_type, repo);
1804 if (err)
1805 goto done;
1807 } else {
1808 err = got_error_path(id_str_prefix, GOT_ERR_BAD_OBJ_ID_STR);
1809 goto done;
1811 done:
1812 free(object_dir);
1813 if (err) {
1814 free(*id);
1815 *id = NULL;
1816 } else if (*id == NULL) {
1817 switch (obj_type) {
1818 case GOT_OBJ_TYPE_BLOB:
1819 err = got_error_fmt(GOT_ERR_NO_OBJ, "%s %s",
1820 GOT_OBJ_LABEL_BLOB, id_str_prefix);
1821 break;
1822 case GOT_OBJ_TYPE_TREE:
1823 err = got_error_fmt(GOT_ERR_NO_OBJ, "%s %s",
1824 GOT_OBJ_LABEL_TREE, id_str_prefix);
1825 break;
1826 case GOT_OBJ_TYPE_COMMIT:
1827 err = got_error_fmt(GOT_ERR_NO_OBJ, "%s %s",
1828 GOT_OBJ_LABEL_COMMIT, id_str_prefix);
1829 break;
1830 case GOT_OBJ_TYPE_TAG:
1831 err = got_error_fmt(GOT_ERR_NO_OBJ, "%s %s",
1832 GOT_OBJ_LABEL_TAG, id_str_prefix);
1833 break;
1834 default:
1835 err = got_error_path(id_str_prefix, GOT_ERR_NO_OBJ);
1836 break;
1840 return err;
1843 const struct got_error *
1844 got_repo_match_object_id(struct got_object_id **id, char **label,
1845 const char *id_str, int obj_type, struct got_reflist_head *refs,
1846 struct got_repository *repo)
1848 const struct got_error *err;
1849 struct got_tag_object *tag;
1850 struct got_reference *ref = NULL;
1852 *id = NULL;
1853 if (label)
1854 *label = NULL;
1856 if (refs) {
1857 err = got_repo_object_match_tag(&tag, id_str, obj_type,
1858 refs, repo);
1859 if (err == NULL) {
1860 *id = got_object_id_dup(
1861 got_object_tag_get_object_id(tag));
1862 if (*id == NULL)
1863 err = got_error_from_errno("got_object_id_dup");
1864 else if (label && asprintf(label, "refs/tags/%s",
1865 got_object_tag_get_name(tag)) == -1) {
1866 err = got_error_from_errno("asprintf");
1867 free(*id);
1868 *id = NULL;
1870 got_object_tag_close(tag);
1871 return err;
1872 } else if (err->code != GOT_ERR_OBJ_TYPE &&
1873 err->code != GOT_ERR_NO_OBJ)
1874 return err;
1877 err = got_ref_open(&ref, repo, id_str, 0);
1878 if (err == NULL) {
1879 err = got_ref_resolve(id, repo, ref);
1880 if (err)
1881 goto done;
1882 if (label) {
1883 *label = strdup(got_ref_get_name(ref));
1884 if (*label == NULL) {
1885 err = got_error_from_errno("strdup");
1886 goto done;
1889 } else {
1890 if (err->code != GOT_ERR_NOT_REF &&
1891 err->code != GOT_ERR_BAD_REF_NAME)
1892 goto done;
1893 err = got_repo_match_object_id_prefix(id, id_str,
1894 obj_type, repo);
1895 if (err) {
1896 if (err->code == GOT_ERR_BAD_OBJ_ID_STR)
1897 err = got_error_not_ref(id_str);
1898 goto done;
1900 if (label) {
1901 err = got_object_id_str(label, *id);
1902 if (*label == NULL) {
1903 err = got_error_from_errno("strdup");
1904 goto done;
1908 done:
1909 if (ref)
1910 got_ref_close(ref);
1911 return err;
1914 const struct got_error *
1915 got_repo_object_match_tag(struct got_tag_object **tag, const char *name,
1916 int obj_type, struct got_reflist_head *refs, struct got_repository *repo)
1918 const struct got_error *err = NULL;
1919 struct got_reflist_entry *re;
1920 struct got_object_id *tag_id;
1921 int name_is_absolute = (strncmp(name, "refs/", 5) == 0);
1923 *tag = NULL;
1925 TAILQ_FOREACH(re, refs, entry) {
1926 const char *refname;
1927 refname = got_ref_get_name(re->ref);
1928 if (got_ref_is_symbolic(re->ref))
1929 continue;
1930 if (strncmp(refname, "refs/tags/", 10) != 0)
1931 continue;
1932 if (!name_is_absolute)
1933 refname += strlen("refs/tags/");
1934 if (strcmp(refname, name) != 0)
1935 continue;
1936 err = got_ref_resolve(&tag_id, repo, re->ref);
1937 if (err)
1938 break;
1939 err = got_object_open_as_tag(tag, repo, tag_id);
1940 free(tag_id);
1941 if (err)
1942 break;
1943 if (obj_type == GOT_OBJ_TYPE_ANY ||
1944 got_object_tag_get_object_type(*tag) == obj_type)
1945 break;
1946 got_object_tag_close(*tag);
1947 *tag = NULL;
1950 if (err == NULL && *tag == NULL)
1951 err = got_error_fmt(GOT_ERR_NO_OBJ, "%s %s",
1952 GOT_OBJ_LABEL_TAG, name);
1953 return err;
1956 static const struct got_error *
1957 alloc_added_blob_tree_entry(struct got_tree_entry **new_te,
1958 const char *name, mode_t mode, struct got_object_id *blob_id)
1960 const struct got_error *err = NULL;
1962 *new_te = NULL;
1964 *new_te = calloc(1, sizeof(**new_te));
1965 if (*new_te == NULL)
1966 return got_error_from_errno("calloc");
1968 if (strlcpy((*new_te)->name, name, sizeof((*new_te)->name)) >=
1969 sizeof((*new_te)->name)) {
1970 err = got_error(GOT_ERR_NO_SPACE);
1971 goto done;
1974 if (S_ISLNK(mode)) {
1975 (*new_te)->mode = S_IFLNK;
1976 } else {
1977 (*new_te)->mode = S_IFREG;
1978 (*new_te)->mode |= (mode & (S_IRWXU | S_IRWXG | S_IRWXO));
1980 memcpy(&(*new_te)->id, blob_id, sizeof((*new_te)->id));
1981 done:
1982 if (err && *new_te) {
1983 free(*new_te);
1984 *new_te = NULL;
1986 return err;
1989 static const struct got_error *
1990 import_file(struct got_tree_entry **new_te, struct dirent *de,
1991 const char *path, struct got_repository *repo)
1993 const struct got_error *err;
1994 struct got_object_id *blob_id = NULL;
1995 char *filepath;
1996 struct stat sb;
1998 if (asprintf(&filepath, "%s%s%s", path,
1999 path[0] == '\0' ? "" : "/", de->d_name) == -1)
2000 return got_error_from_errno("asprintf");
2002 if (lstat(filepath, &sb) != 0) {
2003 err = got_error_from_errno2("lstat", path);
2004 goto done;
2007 err = got_object_blob_create(&blob_id, filepath, repo);
2008 if (err)
2009 goto done;
2011 err = alloc_added_blob_tree_entry(new_te, de->d_name, sb.st_mode,
2012 blob_id);
2013 done:
2014 free(filepath);
2015 if (err)
2016 free(blob_id);
2017 return err;
2020 static const struct got_error *
2021 insert_tree_entry(struct got_tree_entry *new_te,
2022 struct got_pathlist_head *paths)
2024 const struct got_error *err = NULL;
2025 struct got_pathlist_entry *new_pe;
2027 err = got_pathlist_insert(&new_pe, paths, new_te->name, new_te);
2028 if (err)
2029 return err;
2030 if (new_pe == NULL)
2031 return got_error(GOT_ERR_TREE_DUP_ENTRY);
2032 return NULL;
2035 static const struct got_error *write_tree(struct got_object_id **,
2036 const char *, struct got_pathlist_head *, struct got_repository *,
2037 got_repo_import_cb progress_cb, void *progress_arg);
2039 static const struct got_error *
2040 import_subdir(struct got_tree_entry **new_te, struct dirent *de,
2041 const char *path, struct got_pathlist_head *ignores,
2042 struct got_repository *repo,
2043 got_repo_import_cb progress_cb, void *progress_arg)
2045 const struct got_error *err;
2046 struct got_object_id *id = NULL;
2047 char *subdirpath;
2049 if (asprintf(&subdirpath, "%s%s%s", path,
2050 path[0] == '\0' ? "" : "/", de->d_name) == -1)
2051 return got_error_from_errno("asprintf");
2053 (*new_te) = calloc(1, sizeof(**new_te));
2054 if (*new_te == NULL)
2055 return got_error_from_errno("calloc");
2056 (*new_te)->mode = S_IFDIR;
2057 if (strlcpy((*new_te)->name, de->d_name, sizeof((*new_te)->name)) >=
2058 sizeof((*new_te)->name)) {
2059 err = got_error(GOT_ERR_NO_SPACE);
2060 goto done;
2062 err = write_tree(&id, subdirpath, ignores, repo,
2063 progress_cb, progress_arg);
2064 if (err)
2065 goto done;
2066 memcpy(&(*new_te)->id, id, sizeof((*new_te)->id));
2068 done:
2069 free(id);
2070 free(subdirpath);
2071 if (err) {
2072 free(*new_te);
2073 *new_te = NULL;
2075 return err;
2078 static const struct got_error *
2079 write_tree(struct got_object_id **new_tree_id, const char *path_dir,
2080 struct got_pathlist_head *ignores, struct got_repository *repo,
2081 got_repo_import_cb progress_cb, void *progress_arg)
2083 const struct got_error *err = NULL;
2084 DIR *dir;
2085 struct dirent *de;
2086 int nentries;
2087 struct got_tree_entry *new_te = NULL;
2088 struct got_pathlist_head paths;
2089 struct got_pathlist_entry *pe;
2091 *new_tree_id = NULL;
2093 TAILQ_INIT(&paths);
2095 dir = opendir(path_dir);
2096 if (dir == NULL) {
2097 err = got_error_from_errno2("opendir", path_dir);
2098 goto done;
2101 nentries = 0;
2102 while ((de = readdir(dir)) != NULL) {
2103 int ignore = 0;
2104 int type;
2106 if (strcmp(de->d_name, ".") == 0 ||
2107 strcmp(de->d_name, "..") == 0)
2108 continue;
2110 TAILQ_FOREACH(pe, ignores, entry) {
2111 if (fnmatch(pe->path, de->d_name, 0) == 0) {
2112 ignore = 1;
2113 break;
2116 if (ignore)
2117 continue;
2119 err = got_path_dirent_type(&type, path_dir, de);
2120 if (err)
2121 goto done;
2123 if (type == DT_DIR) {
2124 err = import_subdir(&new_te, de, path_dir,
2125 ignores, repo, progress_cb, progress_arg);
2126 if (err) {
2127 if (err->code != GOT_ERR_NO_TREE_ENTRY)
2128 goto done;
2129 err = NULL;
2130 continue;
2132 } else if (type == DT_REG || type == DT_LNK) {
2133 err = import_file(&new_te, de, path_dir, repo);
2134 if (err)
2135 goto done;
2136 } else
2137 continue;
2139 err = insert_tree_entry(new_te, &paths);
2140 if (err)
2141 goto done;
2142 nentries++;
2145 if (TAILQ_EMPTY(&paths)) {
2146 err = got_error_msg(GOT_ERR_NO_TREE_ENTRY,
2147 "cannot create tree without any entries");
2148 goto done;
2151 TAILQ_FOREACH(pe, &paths, entry) {
2152 struct got_tree_entry *te = pe->data;
2153 char *path;
2154 if (!S_ISREG(te->mode) && !S_ISLNK(te->mode))
2155 continue;
2156 if (asprintf(&path, "%s/%s", path_dir, pe->path) == -1) {
2157 err = got_error_from_errno("asprintf");
2158 goto done;
2160 err = (*progress_cb)(progress_arg, path);
2161 free(path);
2162 if (err)
2163 goto done;
2166 err = got_object_tree_create(new_tree_id, &paths, nentries, repo);
2167 done:
2168 if (dir)
2169 closedir(dir);
2170 got_pathlist_free(&paths);
2171 return err;
2174 const struct got_error *
2175 got_repo_import(struct got_object_id **new_commit_id, const char *path_dir,
2176 const char *logmsg, const char *author, struct got_pathlist_head *ignores,
2177 struct got_repository *repo, got_repo_import_cb progress_cb,
2178 void *progress_arg)
2180 const struct got_error *err;
2181 struct got_object_id *new_tree_id;
2183 err = write_tree(&new_tree_id, path_dir, ignores, repo,
2184 progress_cb, progress_arg);
2185 if (err)
2186 return err;
2188 err = got_object_commit_create(new_commit_id, new_tree_id, NULL, 0,
2189 author, time(NULL), author, time(NULL), logmsg, repo);
2190 free(new_tree_id);
2191 return err;
2194 const struct got_error *
2195 got_repo_get_loose_object_info(int *nobjects, off_t *ondisk_size,
2196 struct got_repository *repo)
2198 const struct got_error *err = NULL;
2199 char *path_objects = NULL, *path = NULL;
2200 DIR *dir = NULL;
2201 struct got_object_id id;
2202 int i;
2204 *nobjects = 0;
2205 *ondisk_size = 0;
2207 path_objects = got_repo_get_path_objects(repo);
2208 if (path_objects == NULL)
2209 return got_error_from_errno("got_repo_get_path_objects");
2211 for (i = 0; i <= 0xff; i++) {
2212 struct dirent *dent;
2214 if (asprintf(&path, "%s/%.2x", path_objects, i) == -1) {
2215 err = got_error_from_errno("asprintf");
2216 break;
2219 dir = opendir(path);
2220 if (dir == NULL) {
2221 if (errno == ENOENT) {
2222 err = NULL;
2223 continue;
2225 err = got_error_from_errno2("opendir", path);
2226 break;
2229 while ((dent = readdir(dir)) != NULL) {
2230 char *id_str;
2231 int fd;
2232 struct stat sb;
2234 if (strcmp(dent->d_name, ".") == 0 ||
2235 strcmp(dent->d_name, "..") == 0)
2236 continue;
2238 if (asprintf(&id_str, "%.2x%s", i, dent->d_name) == -1) {
2239 err = got_error_from_errno("asprintf");
2240 goto done;
2243 if (!got_parse_sha1_digest(id.sha1, id_str)) {
2244 free(id_str);
2245 continue;
2247 free(id_str);
2249 err = got_object_open_loose_fd(&fd, &id, repo);
2250 if (err)
2251 goto done;
2253 if (fstat(fd, &sb) == -1) {
2254 err = got_error_from_errno("fstat");
2255 close(fd);
2256 goto done;
2258 (*nobjects)++;
2259 (*ondisk_size) += sb.st_size;
2261 if (close(fd) == -1) {
2262 err = got_error_from_errno("close");
2263 goto done;
2267 if (closedir(dir) != 0) {
2268 err = got_error_from_errno("closedir");
2269 goto done;
2271 dir = NULL;
2273 free(path);
2274 path = NULL;
2276 done:
2277 if (dir && closedir(dir) != 0 && err == NULL)
2278 err = got_error_from_errno("closedir");
2280 if (err) {
2281 *nobjects = 0;
2282 *ondisk_size = 0;
2284 free(path_objects);
2285 free(path);
2286 return err;
2289 const struct got_error *
2290 got_repo_get_packfile_info(int *npackfiles, int *nobjects,
2291 off_t *total_packsize, struct got_repository *repo)
2293 const struct got_error *err = NULL;
2294 DIR *packdir = NULL;
2295 struct dirent *dent;
2296 struct got_packidx *packidx = NULL;
2297 char *path_packidx;
2298 char *path_packfile;
2299 int packdir_fd;
2300 struct stat sb;
2302 *npackfiles = 0;
2303 *nobjects = 0;
2304 *total_packsize = 0;
2306 packdir_fd = openat(got_repo_get_fd(repo),
2307 GOT_OBJECTS_PACK_DIR, O_DIRECTORY);
2308 if (packdir_fd == -1) {
2309 return got_error_from_errno_fmt("openat: %s/%s",
2310 got_repo_get_path_git_dir(repo),
2311 GOT_OBJECTS_PACK_DIR);
2314 packdir = fdopendir(packdir_fd);
2315 if (packdir == NULL) {
2316 err = got_error_from_errno("fdopendir");
2317 goto done;
2320 while ((dent = readdir(packdir)) != NULL) {
2321 if (!got_repo_is_packidx_filename(dent->d_name,
2322 strlen(dent->d_name)))
2323 continue;
2325 if (asprintf(&path_packidx, "%s/%s", GOT_OBJECTS_PACK_DIR,
2326 dent->d_name) == -1) {
2327 err = got_error_from_errno("asprintf");
2328 goto done;
2331 err = got_packidx_open(&packidx, got_repo_get_fd(repo),
2332 path_packidx, 0);
2333 free(path_packidx);
2334 if (err)
2335 goto done;
2337 if (fstat(packidx->fd, &sb) == -1)
2338 goto done;
2339 *total_packsize += sb.st_size;
2341 err = got_packidx_get_packfile_path(&path_packfile,
2342 packidx->path_packidx);
2343 if (err)
2344 goto done;
2346 if (fstatat(got_repo_get_fd(repo), path_packfile, &sb,
2347 0) == -1) {
2348 free(path_packfile);
2349 goto done;
2351 free(path_packfile);
2352 *total_packsize += sb.st_size;
2354 *nobjects += be32toh(packidx->hdr.fanout_table[0xff]);
2356 (*npackfiles)++;
2358 got_packidx_close(packidx);
2359 packidx = NULL;
2361 done:
2362 if (packidx)
2363 got_packidx_close(packidx);
2364 if (packdir && closedir(packdir) != 0 && err == NULL)
2365 err = got_error_from_errno("closedir");
2366 if (err) {
2367 *npackfiles = 0;
2368 *nobjects = 0;
2369 *total_packsize = 0;
2371 return err;
2374 RB_GENERATE(got_packidx_bloom_filter_tree, got_packidx_bloom_filter, entry,
2375 got_packidx_bloom_filter_cmp);