2 * Copyright (c) 2018, 2019, 2020 Stefan Sperling <stsp@openbsd.org>
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.
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.
17 #include "got_compat.h"
19 #include <sys/types.h>
20 #include <sys/queue.h>
22 #include <sys/socket.h>
25 #include <sys/resource.h>
44 #include "got_error.h"
45 #include "got_reference.h"
46 #include "got_repository.h"
48 #include "got_cancel.h"
49 #include "got_object.h"
50 #include "got_opentemp.h"
52 #include "got_lib_delta.h"
53 #include "got_lib_delta_cache.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_privsep.h"
60 #include "got_lib_hash.h"
61 #include "got_lib_object_cache.h"
62 #include "got_lib_repository.h"
63 #include "got_lib_gotconfig.h"
66 #define nitems(_a) (sizeof(_a) / sizeof((_a)[0]))
69 #define GOT_PACK_NUM_TEMPFILES GOT_PACK_CACHE_SIZE * 2
71 RB_PROTOTYPE(got_packidx_bloom_filter_tree
, got_packidx_bloom_filter
, entry
,
72 got_packidx_bloom_filter_cmp
);
75 is_boolean_val(const char *val
)
77 return (strcasecmp(val
, "true") == 0 ||
78 strcasecmp(val
, "false") == 0 ||
79 strcasecmp(val
, "on") == 0 ||
80 strcasecmp(val
, "off") == 0 ||
81 strcasecmp(val
, "yes") == 0 ||
82 strcasecmp(val
, "no") == 0 ||
83 strcasecmp(val
, "1") == 0 ||
84 strcasecmp(val
, "0") == 0);
88 get_boolean_val(const char *val
)
90 return (strcasecmp(val
, "true") == 0 ||
91 strcasecmp(val
, "on") == 0 ||
92 strcasecmp(val
, "yes") == 0 ||
93 strcasecmp(val
, "1") == 0);
97 got_repo_get_path(struct got_repository
*repo
)
103 got_repo_get_path_git_dir(struct got_repository
*repo
)
105 return repo
->path_git_dir
;
109 got_repo_get_fd(struct got_repository
*repo
)
111 return repo
->gitdir_fd
;
114 enum got_hash_algorithm
115 got_repo_get_object_format(struct got_repository
*repo
)
121 got_repo_get_gitconfig_author_name(struct got_repository
*repo
)
123 return repo
->gitconfig_author_name
;
127 got_repo_get_gitconfig_author_email(struct got_repository
*repo
)
129 return repo
->gitconfig_author_email
;
133 got_repo_get_global_gitconfig_author_name(struct got_repository
*repo
)
135 return repo
->global_gitconfig_author_name
;
139 got_repo_get_global_gitconfig_author_email(struct got_repository
*repo
)
141 return repo
->global_gitconfig_author_email
;
145 got_repo_get_gitconfig_owner(struct got_repository
*repo
)
147 return repo
->gitconfig_owner
;
151 got_repo_has_extension(struct got_repository
*repo
, const char *ext
)
155 for (i
= 0; i
< repo
->nextensions
; ++i
) {
156 if (!strcasecmp(ext
, repo
->extnames
[i
]))
157 return get_boolean_val(repo
->extvals
[i
]);
164 got_repo_is_bare(struct got_repository
*repo
)
166 return (strcmp(repo
->path
, repo
->path_git_dir
) == 0);
170 get_path_git_child(struct got_repository
*repo
, const char *basename
)
174 if (asprintf(&path_child
, "%s/%s", repo
->path_git_dir
,
182 got_repo_get_path_objects(struct got_repository
*repo
)
184 return get_path_git_child(repo
, GOT_OBJECTS_DIR
);
188 got_repo_get_path_objects_pack(struct got_repository
*repo
)
190 return get_path_git_child(repo
, GOT_OBJECTS_PACK_DIR
);
194 got_repo_get_path_refs(struct got_repository
*repo
)
196 return get_path_git_child(repo
, GOT_REFS_DIR
);
200 got_repo_get_path_packed_refs(struct got_repository
*repo
)
202 return get_path_git_child(repo
, GOT_PACKED_REFS_FILE
);
206 get_path_head(struct got_repository
*repo
)
208 return get_path_git_child(repo
, GOT_HEAD_FILE
);
212 got_repo_get_path_gitconfig(struct got_repository
*repo
)
214 return get_path_git_child(repo
, GOT_GITCONFIG
);
218 got_repo_get_path_gotconfig(struct got_repository
*repo
)
220 return get_path_git_child(repo
, GOT_GOTCONFIG_FILENAME
);
223 const struct got_gotconfig
*
224 got_repo_get_gotconfig(struct got_repository
*repo
)
226 return repo
->gotconfig
;
230 got_repo_get_gitconfig_remotes(int *nremotes
,
231 const struct got_remote_repo
**remotes
, struct got_repository
*repo
)
233 *nremotes
= repo
->ngitconfig_remotes
;
234 *remotes
= repo
->gitconfig_remotes
;
238 is_git_repo(struct got_repository
*repo
)
240 const char *path_git
= got_repo_get_path_git_dir(repo
);
241 char *path_objects
= got_repo_get_path_objects(repo
);
242 char *path_refs
= got_repo_get_path_refs(repo
);
243 char *path_head
= get_path_head(repo
);
246 struct got_reference
*head_ref
;
248 if (lstat(path_git
, &sb
) == -1)
250 if (!S_ISDIR(sb
.st_mode
))
253 if (lstat(path_objects
, &sb
) == -1)
255 if (!S_ISDIR(sb
.st_mode
))
258 if (lstat(path_refs
, &sb
) == -1)
260 if (!S_ISDIR(sb
.st_mode
))
263 if (lstat(path_head
, &sb
) == -1)
265 if (!S_ISREG(sb
.st_mode
))
268 /* Check if the HEAD reference can be opened. */
269 if (got_ref_open(&head_ref
, repo
, GOT_REF_HEAD
, 0) != NULL
)
271 got_ref_close(head_ref
);
282 static const struct got_error
*
283 close_tempfiles(int *fds
, size_t nfds
)
285 const struct got_error
*err
= NULL
;
288 for (i
= 0; i
< nfds
; i
++) {
291 if (close(fds
[i
]) == -1) {
292 err
= got_error_from_errno("close");
300 static const struct got_error
*
301 open_tempfiles(int **fds
, size_t array_size
, size_t nfds
)
303 const struct got_error
*err
= NULL
;
306 *fds
= calloc(array_size
, sizeof(**fds
));
308 return got_error_from_errno("calloc");
310 for (i
= 0; i
< array_size
; i
++)
313 for (i
= 0; i
< nfds
; i
++) {
314 (*fds
)[i
] = got_opentempfd();
315 if ((*fds
)[i
] == -1) {
316 err
= got_error_from_errno("got_opentempfd");
317 close_tempfiles(*fds
, nfds
);
326 static const struct got_error
*
327 get_pack_cache_size(int *pack_cache_size
)
331 if (getrlimit(RLIMIT_NOFILE
, &rl
) == -1)
332 return got_error_from_errno("getrlimit");
334 *pack_cache_size
= GOT_PACK_CACHE_SIZE
;
335 if (*pack_cache_size
> rl
.rlim_cur
/ 8)
336 *pack_cache_size
= rl
.rlim_cur
/ 8;
341 const struct got_error
*
342 got_repo_pack_fds_open(int **pack_fds
)
344 const struct got_error
*err
;
347 err
= get_pack_cache_size(&nfds
);
352 * We need one basefd and one accumfd per cached pack.
353 * Our constants should be set up in a way such that
354 * this error never triggers.
356 if (nfds
* 2 > GOT_PACK_NUM_TEMPFILES
)
357 return got_error(GOT_ERR_NO_SPACE
);
359 return open_tempfiles(pack_fds
, GOT_PACK_NUM_TEMPFILES
, nfds
* 2);
362 const struct got_error
*
363 got_repo_pack_fds_close(int *pack_fds
)
365 return close_tempfiles(pack_fds
, GOT_PACK_NUM_TEMPFILES
);
368 const struct got_error
*
369 got_repo_temp_fds_open(int **temp_fds
)
371 return open_tempfiles(temp_fds
, GOT_REPO_NUM_TEMPFILES
,
372 GOT_REPO_NUM_TEMPFILES
);
376 got_repo_temp_fds_set(struct got_repository
*repo
, int *temp_fds
)
380 for (i
= 0; i
< GOT_REPO_NUM_TEMPFILES
; i
++)
381 repo
->tempfiles
[i
] = temp_fds
[i
];
384 const struct got_error
*
385 got_repo_temp_fds_get(int *fd
, int *idx
, struct got_repository
*repo
)
392 for (i
= 0; i
< nitems(repo
->tempfiles
); i
++) {
393 if (repo
->tempfile_use_mask
& (1 << i
))
395 if (repo
->tempfiles
[i
] != -1) {
396 if (ftruncate(repo
->tempfiles
[i
], 0L) == -1)
397 return got_error_from_errno("ftruncate");
398 *fd
= repo
->tempfiles
[i
];
400 repo
->tempfile_use_mask
|= (1 << i
);
405 return got_error(GOT_ERR_REPO_TEMPFILE
);
409 got_repo_temp_fds_put(int idx
, struct got_repository
*repo
)
411 repo
->tempfile_use_mask
&= ~(1 << idx
);
414 const struct got_error
*
415 got_repo_temp_fds_close(int *temp_fds
)
417 return close_tempfiles(temp_fds
, GOT_REPO_NUM_TEMPFILES
);
420 const struct got_error
*
421 got_repo_cache_object(struct got_repository
*repo
, struct got_object_id
*id
,
422 struct got_object
*obj
)
424 #ifndef GOT_NO_OBJ_CACHE
425 const struct got_error
*err
= NULL
;
426 err
= got_object_cache_add(&repo
->objcache
, id
, obj
);
428 if (err
->code
== GOT_ERR_OBJ_EXISTS
||
429 err
->code
== GOT_ERR_OBJ_TOO_LARGE
)
439 got_repo_get_cached_object(struct got_repository
*repo
,
440 struct got_object_id
*id
)
442 return (struct got_object
*)got_object_cache_get(&repo
->objcache
, id
);
445 const struct got_error
*
446 got_repo_cache_tree(struct got_repository
*repo
, struct got_object_id
*id
,
447 struct got_tree_object
*tree
)
449 #ifndef GOT_NO_OBJ_CACHE
450 const struct got_error
*err
= NULL
;
451 err
= got_object_cache_add(&repo
->treecache
, id
, tree
);
453 if (err
->code
== GOT_ERR_OBJ_EXISTS
||
454 err
->code
== GOT_ERR_OBJ_TOO_LARGE
)
463 struct got_tree_object
*
464 got_repo_get_cached_tree(struct got_repository
*repo
,
465 struct got_object_id
*id
)
467 return (struct got_tree_object
*)got_object_cache_get(
468 &repo
->treecache
, id
);
471 const struct got_error
*
472 got_repo_cache_commit(struct got_repository
*repo
, struct got_object_id
*id
,
473 struct got_commit_object
*commit
)
475 #ifndef GOT_NO_OBJ_CACHE
476 const struct got_error
*err
= NULL
;
477 err
= got_object_cache_add(&repo
->commitcache
, id
, commit
);
479 if (err
->code
== GOT_ERR_OBJ_EXISTS
||
480 err
->code
== GOT_ERR_OBJ_TOO_LARGE
)
489 struct got_commit_object
*
490 got_repo_get_cached_commit(struct got_repository
*repo
,
491 struct got_object_id
*id
)
493 return (struct got_commit_object
*)got_object_cache_get(
494 &repo
->commitcache
, id
);
497 const struct got_error
*
498 got_repo_cache_tag(struct got_repository
*repo
, struct got_object_id
*id
,
499 struct got_tag_object
*tag
)
501 #ifndef GOT_NO_OBJ_CACHE
502 const struct got_error
*err
= NULL
;
503 err
= got_object_cache_add(&repo
->tagcache
, id
, tag
);
505 if (err
->code
== GOT_ERR_OBJ_EXISTS
||
506 err
->code
== GOT_ERR_OBJ_TOO_LARGE
)
515 struct got_tag_object
*
516 got_repo_get_cached_tag(struct got_repository
*repo
, struct got_object_id
*id
)
518 return (struct got_tag_object
*)got_object_cache_get(
519 &repo
->tagcache
, id
);
522 const struct got_error
*
523 got_repo_cache_raw_object(struct got_repository
*repo
, struct got_object_id
*id
,
524 struct got_raw_object
*raw
)
526 #ifndef GOT_NO_OBJ_CACHE
527 const struct got_error
*err
= NULL
;
528 err
= got_object_cache_add(&repo
->rawcache
, id
, raw
);
530 if (err
->code
== GOT_ERR_OBJ_EXISTS
||
531 err
->code
== GOT_ERR_OBJ_TOO_LARGE
)
541 struct got_raw_object
*
542 got_repo_get_cached_raw_object(struct got_repository
*repo
,
543 struct got_object_id
*id
)
545 return (struct got_raw_object
*)got_object_cache_get(&repo
->rawcache
, id
);
549 static const struct got_error
*
550 open_repo(struct got_repository
*repo
, const char *path
)
552 const struct got_error
*err
= NULL
;
554 repo
->gitdir_fd
= -1;
556 /* bare git repository? */
557 repo
->path_git_dir
= strdup(path
);
558 if (repo
->path_git_dir
== NULL
)
559 return got_error_from_errno("strdup");
560 if (is_git_repo(repo
)) {
561 repo
->path
= strdup(repo
->path_git_dir
);
562 if (repo
->path
== NULL
) {
563 err
= got_error_from_errno("strdup");
566 repo
->gitdir_fd
= open(repo
->path_git_dir
,
567 O_DIRECTORY
| O_CLOEXEC
);
568 if (repo
->gitdir_fd
== -1) {
569 err
= got_error_from_errno2("open",
576 /* git repository with working tree? */
577 free(repo
->path_git_dir
);
578 repo
->path_git_dir
= NULL
;
579 if (asprintf(&repo
->path_git_dir
, "%s/%s", path
, GOT_GIT_DIR
) == -1) {
580 err
= got_error_from_errno("asprintf");
583 if (is_git_repo(repo
)) {
584 repo
->path
= strdup(path
);
585 if (repo
->path
== NULL
) {
586 err
= got_error_from_errno("strdup");
589 repo
->gitdir_fd
= open(repo
->path_git_dir
,
590 O_DIRECTORY
| O_CLOEXEC
);
591 if (repo
->gitdir_fd
== -1) {
592 err
= got_error_from_errno2("open",
599 err
= got_error(GOT_ERR_NOT_GIT_REPO
);
604 free(repo
->path_git_dir
);
605 repo
->path_git_dir
= NULL
;
606 if (repo
->gitdir_fd
!= -1)
607 close(repo
->gitdir_fd
);
608 repo
->gitdir_fd
= -1;
614 static const struct got_error
*
615 read_gitconfig(struct got_repository
*repo
, const char *global_gitconfig_path
)
617 const struct got_error
*err
= NULL
;
618 char *repo_gitconfig_path
= NULL
;
620 if (global_gitconfig_path
) {
621 /* Read settings from ~/.gitconfig. */
622 int dummy_repo_version
;
623 err
= got_repo_read_gitconfig(&dummy_repo_version
,
624 &repo
->global_gitconfig_author_name
,
625 &repo
->global_gitconfig_author_email
,
626 NULL
, NULL
, NULL
, NULL
, NULL
, NULL
,
627 global_gitconfig_path
);
632 /* Read repository's .git/config file. */
633 repo_gitconfig_path
= got_repo_get_path_gitconfig(repo
);
634 if (repo_gitconfig_path
== NULL
)
635 return got_error_from_errno("got_repo_get_path_gitconfig");
637 err
= got_repo_read_gitconfig(
638 &repo
->gitconfig_repository_format_version
,
639 &repo
->gitconfig_author_name
, &repo
->gitconfig_author_email
,
640 &repo
->gitconfig_remotes
, &repo
->ngitconfig_remotes
,
641 &repo
->gitconfig_owner
, &repo
->extnames
, &repo
->extvals
,
642 &repo
->nextensions
, repo_gitconfig_path
);
646 if (getenv("GOT_IGNORE_GITCONFIG") != NULL
) {
649 for (i
= 0; i
< repo
->ngitconfig_remotes
; i
++) {
650 got_repo_free_remote_repo_data(
651 &repo
->gitconfig_remotes
[i
]);
653 free(repo
->gitconfig_remotes
);
654 repo
->gitconfig_remotes
= NULL
;
655 repo
->ngitconfig_remotes
= 0;
657 free(repo
->gitconfig_author_name
);
658 repo
->gitconfig_author_name
= NULL
;
659 free(repo
->gitconfig_author_email
);
660 repo
->gitconfig_author_email
= NULL
;
662 free(repo
->global_gitconfig_author_name
);
663 repo
->global_gitconfig_author_name
= NULL
;
664 free(repo
->global_gitconfig_author_email
);
665 repo
->global_gitconfig_author_email
= NULL
;
669 free(repo_gitconfig_path
);
673 static const struct got_error
*
674 read_gotconfig(struct got_repository
*repo
)
676 const struct got_error
*err
= NULL
;
677 char *gotconfig_path
;
679 gotconfig_path
= got_repo_get_path_gotconfig(repo
);
680 if (gotconfig_path
== NULL
)
681 return got_error_from_errno("got_repo_get_path_gotconfig");
683 err
= got_gotconfig_read(&repo
->gotconfig
, gotconfig_path
);
684 free(gotconfig_path
);
688 /* Supported repository format extensions. */
689 static const char *const repo_extensions
[] = {
690 "noop", /* Got supports repository format version 1. */
691 "preciousObjects", /* Supported by gotadmin cleanup. */
692 "worktreeConfig", /* Got does not care about Git work trees. */
695 const struct got_error
*
696 got_repo_open(struct got_repository
**repop
, const char *path
,
697 const char *global_gitconfig_path
, int *pack_fds
)
699 struct got_repository
*repo
= NULL
;
700 const struct got_error
*err
= NULL
;
701 char *repo_path
= NULL
;
706 repo
= calloc(1, sizeof(*repo
));
708 return got_error_from_errno("calloc");
710 RB_INIT(&repo
->packidx_bloom_filters
);
711 TAILQ_INIT(&repo
->packidx_paths
);
713 for (i
= 0; i
< nitems(repo
->privsep_children
); i
++) {
714 memset(&repo
->privsep_children
[i
], 0,
715 sizeof(repo
->privsep_children
[0]));
716 repo
->privsep_children
[i
].imsg_fd
= -1;
719 err
= got_object_cache_init(&repo
->objcache
,
720 GOT_OBJECT_CACHE_TYPE_OBJ
);
723 err
= got_object_cache_init(&repo
->treecache
,
724 GOT_OBJECT_CACHE_TYPE_TREE
);
727 err
= got_object_cache_init(&repo
->commitcache
,
728 GOT_OBJECT_CACHE_TYPE_COMMIT
);
731 err
= got_object_cache_init(&repo
->tagcache
,
732 GOT_OBJECT_CACHE_TYPE_TAG
);
735 err
= got_object_cache_init(&repo
->rawcache
,
736 GOT_OBJECT_CACHE_TYPE_RAW
);
740 err
= get_pack_cache_size(&repo
->pack_cache_size
);
743 for (i
= 0; i
< nitems(repo
->packs
); i
++) {
744 if (pack_fds
!= NULL
&& i
< repo
->pack_cache_size
) {
745 repo
->packs
[i
].basefd
= pack_fds
[j
++];
746 repo
->packs
[i
].accumfd
= pack_fds
[j
++];
748 repo
->packs
[i
].basefd
= -1;
749 repo
->packs
[i
].accumfd
= -1;
752 for (i
= 0; i
< nitems(repo
->tempfiles
); i
++)
753 repo
->tempfiles
[i
] = -1;
754 repo
->pinned_pack
= -1;
755 repo
->pinned_packidx
= -1;
756 repo
->pinned_pid
= 0;
758 repo_path
= realpath(path
, NULL
);
759 if (repo_path
== NULL
) {
760 err
= got_error_from_errno2("realpath", path
);
767 err
= open_repo(repo
, repo_path
);
770 if (err
->code
!= GOT_ERR_NOT_GIT_REPO
)
772 if (repo_path
[0] == '/' && repo_path
[1] == '\0') {
773 err
= got_error(GOT_ERR_NOT_GIT_REPO
);
776 err
= got_path_dirname(&parent_path
, repo_path
);
780 repo_path
= parent_path
;
783 err
= read_gotconfig(repo
);
787 err
= read_gitconfig(repo
, global_gitconfig_path
);
790 if (repo
->gitconfig_repository_format_version
!= 0) {
791 err
= got_error_path(path
, GOT_ERR_GIT_REPO_FORMAT
);
794 for (i
= 0; i
< repo
->nextensions
; i
++) {
795 char *ext
= repo
->extnames
[i
];
796 char *val
= repo
->extvals
[i
];
797 int j
, supported
= 0;
799 if (!is_boolean_val(val
)) {
800 err
= got_error_path(ext
, GOT_ERR_GIT_REPO_EXT
);
804 if (!get_boolean_val(val
))
807 for (j
= 0; j
< nitems(repo_extensions
); j
++) {
808 if (strcmp(ext
, repo_extensions
[j
]) == 0) {
814 err
= got_error_path(ext
, GOT_ERR_GIT_REPO_EXT
);
819 err
= got_repo_list_packidx(&repo
->packidx_paths
, repo
);
822 got_repo_close(repo
);
829 const struct got_error
*
830 got_repo_close(struct got_repository
*repo
)
832 const struct got_error
*err
= NULL
, *child_err
;
833 struct got_packidx_bloom_filter
*bf
;
836 for (i
= 0; i
< repo
->pack_cache_size
; i
++) {
837 if (repo
->packidx_cache
[i
] == NULL
)
839 got_packidx_close(repo
->packidx_cache
[i
]);
842 while ((bf
= RB_MIN(got_packidx_bloom_filter_tree
,
843 &repo
->packidx_bloom_filters
))) {
844 RB_REMOVE(got_packidx_bloom_filter_tree
,
845 &repo
->packidx_bloom_filters
, bf
);
846 bloom_free(bf
->bloom
);
851 for (i
= 0; i
< repo
->pack_cache_size
; i
++)
852 if (repo
->packs
[i
].path_packfile
)
853 if (repo
->packs
[i
].path_packfile
)
854 got_pack_close(&repo
->packs
[i
]);
857 free(repo
->path_git_dir
);
859 got_object_cache_close(&repo
->objcache
);
860 got_object_cache_close(&repo
->treecache
);
861 got_object_cache_close(&repo
->commitcache
);
862 got_object_cache_close(&repo
->tagcache
);
863 got_object_cache_close(&repo
->rawcache
);
865 for (i
= 0; i
< nitems(repo
->privsep_children
); i
++) {
866 if (repo
->privsep_children
[i
].imsg_fd
== -1)
868 imsg_clear(repo
->privsep_children
[i
].ibuf
);
869 free(repo
->privsep_children
[i
].ibuf
);
870 err
= got_privsep_send_stop(repo
->privsep_children
[i
].imsg_fd
);
871 child_err
= got_privsep_wait_for_child(
872 repo
->privsep_children
[i
].pid
);
873 if (child_err
&& err
== NULL
)
875 if (close(repo
->privsep_children
[i
].imsg_fd
) == -1 &&
877 err
= got_error_from_errno("close");
880 if (repo
->gitdir_fd
!= -1 && close(repo
->gitdir_fd
) == -1 &&
882 err
= got_error_from_errno("close");
885 got_gotconfig_free(repo
->gotconfig
);
886 free(repo
->gitconfig_author_name
);
887 free(repo
->gitconfig_author_email
);
888 for (i
= 0; i
< repo
->ngitconfig_remotes
; i
++)
889 got_repo_free_remote_repo_data(&repo
->gitconfig_remotes
[i
]);
890 free(repo
->gitconfig_remotes
);
891 for (i
= 0; i
< repo
->nextensions
; i
++) {
892 free(repo
->extnames
[i
]);
893 free(repo
->extvals
[i
]);
895 free(repo
->extnames
);
898 got_pathlist_free(&repo
->packidx_paths
, GOT_PATHLIST_FREE_PATH
);
905 got_repo_free_remote_repo_data(struct got_remote_repo
*repo
)
911 free(repo
->fetch_url
);
912 repo
->fetch_url
= NULL
;
913 free(repo
->send_url
);
914 repo
->send_url
= NULL
;
915 for (i
= 0; i
< repo
->nfetch_branches
; i
++)
916 free(repo
->fetch_branches
[i
]);
917 free(repo
->fetch_branches
);
918 repo
->fetch_branches
= NULL
;
919 repo
->nfetch_branches
= 0;
920 for (i
= 0; i
< repo
->nsend_branches
; i
++)
921 free(repo
->send_branches
[i
]);
922 free(repo
->send_branches
);
923 repo
->send_branches
= NULL
;
924 repo
->nsend_branches
= 0;
927 const struct got_error
*
928 got_repo_map_path(char **in_repo_path
, struct got_repository
*repo
,
929 const char *input_path
)
931 const struct got_error
*err
= NULL
;
932 const char *repo_abspath
= NULL
;
934 char *canonpath
, *path
= NULL
;
936 *in_repo_path
= NULL
;
938 canonpath
= strdup(input_path
);
939 if (canonpath
== NULL
) {
940 err
= got_error_from_errno("strdup");
943 err
= got_canonpath(input_path
, canonpath
, strlen(canonpath
) + 1);
947 repo_abspath
= got_repo_get_path(repo
);
949 if (canonpath
[0] == '\0') {
950 path
= strdup(canonpath
);
952 err
= got_error_from_errno("strdup");
956 path
= realpath(canonpath
, NULL
);
958 if (errno
!= ENOENT
) {
959 err
= got_error_from_errno2("realpath",
964 * Path is not on disk.
965 * Assume it is already relative to repository root.
967 path
= strdup(canonpath
);
969 err
= got_error_from_errno("strdup");
974 repolen
= strlen(repo_abspath
);
978 if (strcmp(path
, repo_abspath
) == 0) {
982 err
= got_error_from_errno("strdup");
985 } else if (len
> repolen
&&
986 got_path_is_child(path
, repo_abspath
, repolen
)) {
987 /* Matched an on-disk path inside repository. */
988 if (got_repo_is_bare(repo
)) {
990 * Matched an on-disk path inside repository
991 * database. Treat input as repository-relative.
998 /* Strip common prefix with repository path. */
999 err
= got_path_skip_common_ancestor(&child
,
1000 repo_abspath
, path
);
1008 * Matched unrelated on-disk path.
1009 * Treat input as repository-relative.
1017 /* Make in-repository path absolute */
1018 if (path
[0] != '/') {
1020 if (asprintf(&abspath
, "/%s", path
) == -1) {
1021 err
= got_error_from_errno("asprintf");
1033 *in_repo_path
= path
;
1037 static const struct got_error
*
1038 cache_packidx(struct got_repository
*repo
, struct got_packidx
*packidx
,
1039 const char *path_packidx
)
1041 const struct got_error
*err
= NULL
;
1044 for (i
= 0; i
< repo
->pack_cache_size
; i
++) {
1045 if (repo
->packidx_cache
[i
] == NULL
)
1047 if (strcmp(repo
->packidx_cache
[i
]->path_packidx
,
1048 path_packidx
) == 0) {
1049 return got_error(GOT_ERR_CACHE_DUP_ENTRY
);
1052 if (i
== repo
->pack_cache_size
) {
1055 } while (i
> 0 && repo
->pinned_packidx
>= 0 &&
1056 i
== repo
->pinned_packidx
);
1057 err
= got_packidx_close(repo
->packidx_cache
[i
]);
1062 repo
->packidx_cache
[i
] = packidx
;
1068 got_repo_is_packidx_filename(const char *name
, size_t len
)
1070 if (len
!= GOT_PACKIDX_NAMELEN
)
1073 if (strncmp(name
, GOT_PACK_PREFIX
, strlen(GOT_PACK_PREFIX
)) != 0)
1076 if (strcmp(name
+ strlen(GOT_PACK_PREFIX
) +
1077 SHA1_DIGEST_STRING_LENGTH
- 1, GOT_PACKIDX_SUFFIX
) != 0)
1083 static struct got_packidx_bloom_filter
*
1084 get_packidx_bloom_filter(struct got_repository
*repo
,
1085 const char *path
, size_t path_len
)
1087 struct got_packidx_bloom_filter key
;
1089 if (strlcpy(key
.path
, path
, sizeof(key
.path
)) >= sizeof(key
.path
))
1090 return NULL
; /* XXX */
1091 key
.path_len
= path_len
;
1093 return RB_FIND(got_packidx_bloom_filter_tree
,
1094 &repo
->packidx_bloom_filters
, &key
);
1098 got_repo_check_packidx_bloom_filter(struct got_repository
*repo
,
1099 const char *path_packidx
, struct got_object_id
*id
)
1101 struct got_packidx_bloom_filter
*bf
;
1103 bf
= get_packidx_bloom_filter(repo
, path_packidx
, strlen(path_packidx
));
1105 return bloom_check(bf
->bloom
, id
->sha1
, sizeof(id
->sha1
));
1107 /* No bloom filter means this pack index must be searched. */
1111 static const struct got_error
*
1112 add_packidx_bloom_filter(struct got_repository
*repo
,
1113 struct got_packidx
*packidx
, const char *path_packidx
)
1115 int i
, nobjects
= be32toh(packidx
->hdr
.fanout_table
[0xff]);
1116 struct got_packidx_bloom_filter
*bf
;
1120 * Don't use bloom filters for very large pack index files.
1121 * Large pack files will contain a relatively large fraction
1122 * of our objects so we will likely need to visit them anyway.
1123 * The more objects a pack file contains the higher the probability
1124 * of a false-positive match from the bloom filter. And reading
1125 * all object IDs from a large pack index file can be expensive.
1127 if (nobjects
> 100000) /* cut-off at about 2MB, at 20 bytes per ID */
1130 /* Do we already have a filter for this pack index? */
1131 if (get_packidx_bloom_filter(repo
, path_packidx
,
1132 strlen(path_packidx
)) != NULL
)
1135 bf
= calloc(1, sizeof(*bf
));
1137 return got_error_from_errno("calloc");
1138 bf
->bloom
= calloc(1, sizeof(*bf
->bloom
));
1139 if (bf
->bloom
== NULL
) {
1141 return got_error_from_errno("calloc");
1144 len
= strlcpy(bf
->path
, path_packidx
, sizeof(bf
->path
));
1145 if (len
>= sizeof(bf
->path
)) {
1148 return got_error(GOT_ERR_NO_SPACE
);
1152 /* Minimum size supported by our bloom filter is 1000 entries. */
1153 bloom_init(bf
->bloom
, nobjects
< 1000 ? 1000 : nobjects
, 0.1);
1154 for (i
= 0; i
< nobjects
; i
++) {
1155 struct got_packidx_object_id
*id
;
1156 id
= &packidx
->hdr
.sorted_ids
[i
];
1157 bloom_add(bf
->bloom
, id
->sha1
, sizeof(id
->sha1
));
1160 RB_INSERT(got_packidx_bloom_filter_tree
,
1161 &repo
->packidx_bloom_filters
, bf
);
1166 purge_packidx_paths(struct got_pathlist_head
*packidx_paths
)
1168 struct got_pathlist_entry
*pe
;
1170 while (!TAILQ_EMPTY(packidx_paths
)) {
1171 pe
= TAILQ_FIRST(packidx_paths
);
1172 TAILQ_REMOVE(packidx_paths
, pe
, entry
);
1173 free((char *)pe
->path
);
1178 static const struct got_error
*
1179 refresh_packidx_paths(struct got_repository
*repo
)
1181 const struct got_error
*err
= NULL
;
1182 char *objects_pack_dir
= NULL
;
1185 objects_pack_dir
= got_repo_get_path_objects_pack(repo
);
1186 if (objects_pack_dir
== NULL
)
1187 return got_error_from_errno("got_repo_get_path_objects_pack");
1189 if (stat(objects_pack_dir
, &sb
) == -1) {
1190 if (errno
!= ENOENT
) {
1191 err
= got_error_from_errno2("stat", objects_pack_dir
);
1194 } else if (TAILQ_EMPTY(&repo
->packidx_paths
) ||
1195 sb
.st_mtim
.tv_sec
!= repo
->pack_path_mtime
.tv_sec
||
1196 sb
.st_mtim
.tv_nsec
!= repo
->pack_path_mtime
.tv_nsec
) {
1197 purge_packidx_paths(&repo
->packidx_paths
);
1198 err
= got_repo_list_packidx(&repo
->packidx_paths
, repo
);
1203 free(objects_pack_dir
);
1207 const struct got_error
*
1208 got_repo_search_packidx(struct got_packidx
**packidx
, int *idx
,
1209 struct got_repository
*repo
, struct got_object_id
*id
)
1211 const struct got_error
*err
;
1212 struct got_pathlist_entry
*pe
;
1215 /* Search pack index cache. */
1216 for (i
= 0; i
< repo
->pack_cache_size
; i
++) {
1217 if (repo
->packidx_cache
[i
] == NULL
)
1219 if (!got_repo_check_packidx_bloom_filter(repo
,
1220 repo
->packidx_cache
[i
]->path_packidx
, id
))
1221 continue; /* object will not be found in this index */
1222 *idx
= got_packidx_get_object_idx(repo
->packidx_cache
[i
], id
);
1224 *packidx
= repo
->packidx_cache
[i
];
1226 * Move this cache entry to the front. Repeatedly
1227 * searching a wrong pack index can be expensive.
1230 memmove(&repo
->packidx_cache
[1],
1231 &repo
->packidx_cache
[0],
1232 i
* sizeof(repo
->packidx_cache
[0]));
1233 repo
->packidx_cache
[0] = *packidx
;
1234 if (repo
->pinned_packidx
>= 0 &&
1235 repo
->pinned_packidx
< i
)
1236 repo
->pinned_packidx
++;
1237 else if (repo
->pinned_packidx
== i
)
1238 repo
->pinned_packidx
= 0;
1243 /* No luck. Search the filesystem. */
1245 err
= refresh_packidx_paths(repo
);
1249 TAILQ_FOREACH(pe
, &repo
->packidx_paths
, entry
) {
1250 const char *path_packidx
= pe
->path
;
1253 if (!got_repo_check_packidx_bloom_filter(repo
,
1255 continue; /* object will not be found in this index */
1257 for (i
= 0; i
< repo
->pack_cache_size
; i
++) {
1258 if (repo
->packidx_cache
[i
] == NULL
)
1260 if (strcmp(repo
->packidx_cache
[i
]->path_packidx
,
1261 path_packidx
) == 0) {
1267 continue; /* already searched */
1269 err
= got_packidx_open(packidx
, got_repo_get_fd(repo
),
1274 err
= add_packidx_bloom_filter(repo
, *packidx
, path_packidx
);
1278 err
= cache_packidx(repo
, *packidx
, path_packidx
);
1282 *idx
= got_packidx_get_object_idx(*packidx
, id
);
1284 err
= NULL
; /* found the object */
1289 err
= got_error_no_obj(id
);
1294 const struct got_error
*
1295 got_repo_list_packidx(struct got_pathlist_head
*packidx_paths
,
1296 struct got_repository
*repo
)
1298 const struct got_error
*err
= NULL
;
1299 DIR *packdir
= NULL
;
1300 struct dirent
*dent
;
1301 char *path_packidx
= NULL
;
1305 packdir_fd
= openat(got_repo_get_fd(repo
),
1306 GOT_OBJECTS_PACK_DIR
, O_DIRECTORY
| O_CLOEXEC
);
1307 if (packdir_fd
== -1) {
1308 return got_error_from_errno_fmt("openat: %s/%s",
1309 got_repo_get_path_git_dir(repo
),
1310 GOT_OBJECTS_PACK_DIR
);
1313 packdir
= fdopendir(packdir_fd
);
1314 if (packdir
== NULL
) {
1315 err
= got_error_from_errno("fdopendir");
1319 if (fstat(packdir_fd
, &sb
) == -1) {
1320 err
= got_error_from_errno("fstat");
1323 repo
->pack_path_mtime
.tv_sec
= sb
.st_mtim
.tv_sec
;
1324 repo
->pack_path_mtime
.tv_nsec
= sb
.st_mtim
.tv_nsec
;
1326 while ((dent
= readdir(packdir
)) != NULL
) {
1327 if (!got_repo_is_packidx_filename(dent
->d_name
,
1328 strlen(dent
->d_name
)))
1331 if (asprintf(&path_packidx
, "%s/%s", GOT_OBJECTS_PACK_DIR
,
1332 dent
->d_name
) == -1) {
1333 err
= got_error_from_errno("asprintf");
1334 path_packidx
= NULL
;
1338 err
= got_pathlist_append(packidx_paths
, path_packidx
, NULL
);
1345 if (packdir
&& closedir(packdir
) != 0 && err
== NULL
)
1346 err
= got_error_from_errno("closedir");
1350 const struct got_error
*
1351 got_repo_get_packidx(struct got_packidx
**packidx
, const char *path_packidx
,
1352 struct got_repository
*repo
)
1354 const struct got_error
*err
;
1359 /* Search pack index cache. */
1360 for (i
= 0; i
< repo
->pack_cache_size
; i
++) {
1361 if (repo
->packidx_cache
[i
] == NULL
)
1363 if (strcmp(repo
->packidx_cache
[i
]->path_packidx
,
1364 path_packidx
) == 0) {
1365 *packidx
= repo
->packidx_cache
[i
];
1369 /* No luck. Search the filesystem. */
1371 err
= got_packidx_open(packidx
, got_repo_get_fd(repo
),
1376 err
= add_packidx_bloom_filter(repo
, *packidx
, path_packidx
);
1380 err
= cache_packidx(repo
, *packidx
, path_packidx
);
1383 got_packidx_close(*packidx
);
1389 static const struct got_error
*
1390 read_packfile_hdr(int fd
, struct got_packidx
*packidx
)
1392 const struct got_error
*err
= NULL
;
1393 uint32_t totobj
= be32toh(packidx
->hdr
.fanout_table
[0xff]);
1394 struct got_packfile_hdr hdr
;
1397 n
= read(fd
, &hdr
, sizeof(hdr
));
1399 return got_error_from_errno("read");
1400 if (n
!= sizeof(hdr
))
1401 return got_error(GOT_ERR_BAD_PACKFILE
);
1403 if (be32toh(hdr
.signature
) != GOT_PACKFILE_SIGNATURE
||
1404 be32toh(hdr
.version
) != GOT_PACKFILE_VERSION
||
1405 be32toh(hdr
.nobjects
) != totobj
)
1406 err
= got_error(GOT_ERR_BAD_PACKFILE
);
1411 static const struct got_error
*
1412 open_packfile(int *fd
, struct got_repository
*repo
,
1413 const char *relpath
, struct got_packidx
*packidx
)
1415 const struct got_error
*err
= NULL
;
1417 *fd
= openat(got_repo_get_fd(repo
), relpath
,
1418 O_RDONLY
| O_NOFOLLOW
| O_CLOEXEC
);
1420 return got_error_from_errno_fmt("openat: %s/%s",
1421 got_repo_get_path_git_dir(repo
), relpath
);
1424 err
= read_packfile_hdr(*fd
, packidx
);
1434 const struct got_error
*
1435 got_repo_cache_pack(struct got_pack
**packp
, struct got_repository
*repo
,
1436 const char *path_packfile
, struct got_packidx
*packidx
)
1438 const struct got_error
*err
= NULL
;
1439 struct got_pack
*pack
= NULL
;
1446 for (i
= 0; i
< repo
->pack_cache_size
; i
++) {
1447 pack
= &repo
->packs
[i
];
1448 if (pack
->path_packfile
== NULL
)
1450 if (strcmp(pack
->path_packfile
, path_packfile
) == 0)
1451 return got_error(GOT_ERR_CACHE_DUP_ENTRY
);
1454 if (i
== repo
->pack_cache_size
) {
1455 struct got_pack tmp
;
1458 } while (i
> 0 && repo
->pinned_pack
>= 0 &&
1459 i
== repo
->pinned_pack
);
1460 err
= got_pack_close(&repo
->packs
[i
]);
1463 if (ftruncate(repo
->packs
[i
].basefd
, 0L) == -1)
1464 return got_error_from_errno("ftruncate");
1465 if (ftruncate(repo
->packs
[i
].accumfd
, 0L) == -1)
1466 return got_error_from_errno("ftruncate");
1467 memcpy(&tmp
, &repo
->packs
[i
], sizeof(tmp
));
1468 memcpy(&repo
->packs
[i
], &repo
->packs
[0],
1469 sizeof(repo
->packs
[i
]));
1470 memcpy(&repo
->packs
[0], &tmp
, sizeof(repo
->packs
[0]));
1471 if (repo
->pinned_pack
== 0)
1472 repo
->pinned_pack
= i
;
1473 else if (repo
->pinned_pack
== i
)
1474 repo
->pinned_pack
= 0;
1478 pack
= &repo
->packs
[i
];
1480 pack
->path_packfile
= strdup(path_packfile
);
1481 if (pack
->path_packfile
== NULL
) {
1482 err
= got_error_from_errno("strdup");
1486 err
= open_packfile(&pack
->fd
, repo
, path_packfile
, packidx
);
1490 if (fstat(pack
->fd
, &sb
) != 0) {
1491 err
= got_error_from_errno("fstat");
1494 pack
->filesize
= sb
.st_size
;
1496 pack
->privsep_child
= NULL
;
1498 err
= got_delta_cache_alloc(&pack
->delta_cache
);
1502 #ifndef GOT_PACK_NO_MMAP
1503 if (pack
->filesize
> 0 && pack
->filesize
<= SIZE_MAX
) {
1504 pack
->map
= mmap(NULL
, pack
->filesize
, PROT_READ
, MAP_PRIVATE
,
1506 if (pack
->map
== MAP_FAILED
) {
1507 if (errno
!= ENOMEM
) {
1508 err
= got_error_from_errno("mmap");
1511 pack
->map
= NULL
; /* fall back to read(2) */
1518 got_pack_close(pack
);
1525 got_repo_get_cached_pack(struct got_repository
*repo
, const char *path_packfile
)
1527 struct got_pack
*pack
= NULL
;
1530 for (i
= 0; i
< repo
->pack_cache_size
; i
++) {
1531 pack
= &repo
->packs
[i
];
1532 if (pack
->path_packfile
== NULL
)
1534 if (strcmp(pack
->path_packfile
, path_packfile
) == 0)
1541 const struct got_error
*
1542 got_repo_pin_pack(struct got_repository
*repo
, struct got_packidx
*packidx
,
1543 struct got_pack
*pack
)
1546 int pinned_pack
= -1, pinned_packidx
= -1;
1548 for (i
= 0; i
< repo
->pack_cache_size
; i
++) {
1549 if (repo
->packidx_cache
[i
] &&
1550 strcmp(repo
->packidx_cache
[i
]->path_packidx
,
1551 packidx
->path_packidx
) == 0)
1553 if (repo
->packs
[i
].path_packfile
&&
1554 strcmp(repo
->packs
[i
].path_packfile
,
1555 pack
->path_packfile
) == 0)
1559 if (pinned_packidx
== -1 || pinned_pack
== -1)
1560 return got_error(GOT_ERR_PIN_PACK
);
1562 repo
->pinned_pack
= pinned_pack
;
1563 repo
->pinned_packidx
= pinned_packidx
;
1564 if (repo
->packs
[pinned_pack
].privsep_child
)
1565 repo
->pinned_pid
= repo
->packs
[pinned_pack
].privsep_child
->pid
;
1570 got_repo_get_pinned_pack(struct got_repository
*repo
)
1572 if (repo
->pinned_pack
>= 0 &&
1573 repo
->pinned_pack
< repo
->pack_cache_size
)
1574 return &repo
->packs
[repo
->pinned_pack
];
1580 got_repo_unpin_pack(struct got_repository
*repo
)
1582 repo
->pinned_packidx
= -1;
1583 repo
->pinned_pack
= -1;
1584 repo
->pinned_pid
= 0;
1587 const struct got_error
*
1588 got_repo_init(const char *repo_path
, const char *head_name
)
1590 const struct got_error
*err
= NULL
;
1591 const char *dirnames
[] = {
1593 GOT_OBJECTS_PACK_DIR
,
1596 const char *description_str
= "Unnamed repository; "
1597 "edit this file 'description' to name the repository.";
1598 const char *headref
= "ref: refs/heads/";
1599 const char *gitconfig_str
= "[core]\n"
1600 "\trepositoryformatversion = 0\n"
1601 "\tfilemode = true\n"
1603 char *headref_str
, *path
;
1606 if (!got_path_dir_is_empty(repo_path
))
1607 return got_error(GOT_ERR_DIR_NOT_EMPTY
);
1609 for (i
= 0; i
< nitems(dirnames
); i
++) {
1610 if (asprintf(&path
, "%s/%s", repo_path
, dirnames
[i
]) == -1) {
1611 return got_error_from_errno("asprintf");
1613 err
= got_path_mkdir(path
);
1619 if (asprintf(&path
, "%s/%s", repo_path
, "description") == -1)
1620 return got_error_from_errno("asprintf");
1621 err
= got_path_create_file(path
, description_str
);
1626 if (asprintf(&path
, "%s/%s", repo_path
, GOT_HEAD_FILE
) == -1)
1627 return got_error_from_errno("asprintf");
1628 if (asprintf(&headref_str
, "%s%s", headref
,
1629 head_name
? head_name
: "main") == -1) {
1631 return got_error_from_errno("asprintf");
1633 err
= got_path_create_file(path
, headref_str
);
1639 if (asprintf(&path
, "%s/%s", repo_path
, "config") == -1)
1640 return got_error_from_errno("asprintf");
1641 err
= got_path_create_file(path
, gitconfig_str
);
1649 static const struct got_error
*
1650 match_packed_object(struct got_object_id
**unique_id
,
1651 struct got_repository
*repo
, const char *id_str_prefix
, int obj_type
)
1653 const struct got_error
*err
= NULL
;
1654 struct got_object_id_queue matched_ids
;
1655 struct got_pathlist_entry
*pe
;
1657 STAILQ_INIT(&matched_ids
);
1659 err
= refresh_packidx_paths(repo
);
1663 TAILQ_FOREACH(pe
, &repo
->packidx_paths
, entry
) {
1664 const char *path_packidx
= pe
->path
;
1665 struct got_packidx
*packidx
;
1666 struct got_object_qid
*qid
;
1668 err
= got_packidx_open(&packidx
, got_repo_get_fd(repo
),
1673 err
= got_packidx_match_id_str_prefix(&matched_ids
,
1674 packidx
, id_str_prefix
);
1676 got_packidx_close(packidx
);
1679 err
= got_packidx_close(packidx
);
1683 STAILQ_FOREACH(qid
, &matched_ids
, entry
) {
1684 if (obj_type
!= GOT_OBJ_TYPE_ANY
) {
1686 err
= got_object_get_type(&matched_type
, repo
,
1690 if (matched_type
!= obj_type
)
1693 if (*unique_id
== NULL
) {
1694 *unique_id
= got_object_id_dup(&qid
->id
);
1695 if (*unique_id
== NULL
) {
1696 err
= got_error_from_errno("malloc");
1700 if (got_object_id_cmp(*unique_id
,
1702 continue; /* packed multiple times */
1703 err
= got_error(GOT_ERR_AMBIGUOUS_ID
);
1709 got_object_id_queue_free(&matched_ids
);
1717 static const struct got_error
*
1718 match_loose_object(struct got_object_id
**unique_id
, const char *path_objects
,
1719 const char *object_dir
, const char *id_str_prefix
, int obj_type
,
1720 struct got_repository
*repo
)
1722 const struct got_error
*err
= NULL
;
1723 char *path
, *id_str
= NULL
;
1725 struct dirent
*dent
;
1726 struct got_object_id id
;
1728 if (asprintf(&path
, "%s/%s", path_objects
, object_dir
) == -1) {
1729 err
= got_error_from_errno("asprintf");
1733 dir
= opendir(path
);
1735 if (errno
== ENOENT
) {
1739 err
= got_error_from_errno2("opendir", path
);
1742 while ((dent
= readdir(dir
)) != NULL
) {
1748 if (strcmp(dent
->d_name
, ".") == 0 ||
1749 strcmp(dent
->d_name
, "..") == 0)
1752 if (asprintf(&id_str
, "%s%s", object_dir
, dent
->d_name
) == -1) {
1753 err
= got_error_from_errno("asprintf");
1757 if (!got_parse_object_id(&id
, id_str
, repo
->algo
))
1761 * Directory entries do not necessarily appear in
1762 * sorted order, so we must iterate over all of them.
1764 cmp
= strncmp(id_str
, id_str_prefix
, strlen(id_str_prefix
));
1768 if (*unique_id
== NULL
) {
1769 if (obj_type
!= GOT_OBJ_TYPE_ANY
) {
1771 err
= got_object_get_type(&matched_type
, repo
,
1775 if (matched_type
!= obj_type
)
1778 *unique_id
= got_object_id_dup(&id
);
1779 if (*unique_id
== NULL
) {
1780 err
= got_error_from_errno("got_object_id_dup");
1784 if (got_object_id_cmp(*unique_id
, &id
) == 0)
1785 continue; /* both packed and loose */
1786 err
= got_error(GOT_ERR_AMBIGUOUS_ID
);
1791 if (dir
&& closedir(dir
) != 0 && err
== NULL
)
1792 err
= got_error_from_errno("closedir");
1802 const struct got_error
*
1803 got_repo_match_object_id_prefix(struct got_object_id
**id
,
1804 const char *id_str_prefix
, int obj_type
, struct got_repository
*repo
)
1806 const struct got_error
*err
= NULL
;
1807 char *path_objects
= NULL
, *object_dir
= NULL
;
1813 path_objects
= got_repo_get_path_objects(repo
);
1815 len
= strlen(id_str_prefix
);
1816 if (len
> SHA1_DIGEST_STRING_LENGTH
- 1) {
1817 err
= got_error_path(id_str_prefix
, GOT_ERR_BAD_OBJ_ID_STR
);
1821 for (i
= 0; i
< len
; i
++) {
1822 if (isxdigit((unsigned char)id_str_prefix
[i
]))
1824 err
= got_error_path(id_str_prefix
, GOT_ERR_BAD_OBJ_ID_STR
);
1829 err
= match_packed_object(id
, repo
, id_str_prefix
, obj_type
);
1832 object_dir
= strndup(id_str_prefix
, 2);
1833 if (object_dir
== NULL
) {
1834 err
= got_error_from_errno("strdup");
1837 err
= match_loose_object(id
, path_objects
, object_dir
,
1838 id_str_prefix
, obj_type
, repo
);
1839 } else if (len
== 1) {
1841 for (i
= 0; i
< 0xf; i
++) {
1842 if (asprintf(&object_dir
, "%s%.1x", id_str_prefix
, i
)
1844 err
= got_error_from_errno("asprintf");
1847 err
= match_packed_object(id
, repo
, object_dir
,
1851 err
= match_loose_object(id
, path_objects
, object_dir
,
1852 id_str_prefix
, obj_type
, repo
);
1857 err
= got_error_path(id_str_prefix
, GOT_ERR_BAD_OBJ_ID_STR
);
1866 } else if (*id
== NULL
) {
1868 case GOT_OBJ_TYPE_BLOB
:
1869 err
= got_error_fmt(GOT_ERR_NO_OBJ
, "%s %s",
1870 GOT_OBJ_LABEL_BLOB
, id_str_prefix
);
1872 case GOT_OBJ_TYPE_TREE
:
1873 err
= got_error_fmt(GOT_ERR_NO_OBJ
, "%s %s",
1874 GOT_OBJ_LABEL_TREE
, id_str_prefix
);
1876 case GOT_OBJ_TYPE_COMMIT
:
1877 err
= got_error_fmt(GOT_ERR_NO_OBJ
, "%s %s",
1878 GOT_OBJ_LABEL_COMMIT
, id_str_prefix
);
1880 case GOT_OBJ_TYPE_TAG
:
1881 err
= got_error_fmt(GOT_ERR_NO_OBJ
, "%s %s",
1882 GOT_OBJ_LABEL_TAG
, id_str_prefix
);
1885 err
= got_error_path(id_str_prefix
, GOT_ERR_NO_OBJ
);
1893 const struct got_error
*
1894 got_repo_match_object_id(struct got_object_id
**id
, char **label
,
1895 const char *id_str
, int obj_type
, struct got_reflist_head
*refs
,
1896 struct got_repository
*repo
)
1898 const struct got_error
*err
;
1899 struct got_tag_object
*tag
;
1900 struct got_reference
*ref
= NULL
;
1907 err
= got_repo_object_match_tag(&tag
, id_str
, obj_type
,
1910 *id
= got_object_id_dup(
1911 got_object_tag_get_object_id(tag
));
1913 err
= got_error_from_errno("got_object_id_dup");
1914 else if (label
&& asprintf(label
, "refs/tags/%s",
1915 got_object_tag_get_name(tag
)) == -1) {
1916 err
= got_error_from_errno("asprintf");
1920 got_object_tag_close(tag
);
1922 } else if (err
->code
!= GOT_ERR_OBJ_TYPE
&&
1923 err
->code
!= GOT_ERR_NO_OBJ
)
1927 err
= got_ref_open(&ref
, repo
, id_str
, 0);
1929 err
= got_ref_resolve(id
, repo
, ref
);
1933 *label
= strdup(got_ref_get_name(ref
));
1934 if (*label
== NULL
) {
1935 err
= got_error_from_errno("strdup");
1940 if (err
->code
!= GOT_ERR_NOT_REF
&&
1941 err
->code
!= GOT_ERR_BAD_REF_NAME
)
1943 err
= got_repo_match_object_id_prefix(id
, id_str
,
1946 if (err
->code
== GOT_ERR_BAD_OBJ_ID_STR
)
1947 err
= got_error_not_ref(id_str
);
1951 err
= got_object_id_str(label
, *id
);
1952 if (*label
== NULL
) {
1953 err
= got_error_from_errno("strdup");
1964 const struct got_error
*
1965 got_repo_object_match_tag(struct got_tag_object
**tag
, const char *name
,
1966 int obj_type
, struct got_reflist_head
*refs
, struct got_repository
*repo
)
1968 const struct got_error
*err
= NULL
;
1969 struct got_reflist_entry
*re
;
1970 struct got_object_id
*tag_id
;
1971 int name_is_absolute
= (strncmp(name
, "refs/", 5) == 0);
1975 TAILQ_FOREACH(re
, refs
, entry
) {
1976 const char *refname
;
1977 refname
= got_ref_get_name(re
->ref
);
1978 if (got_ref_is_symbolic(re
->ref
))
1980 if (strncmp(refname
, "refs/tags/", 10) != 0)
1982 if (!name_is_absolute
)
1983 refname
+= strlen("refs/tags/");
1984 if (strcmp(refname
, name
) != 0)
1986 err
= got_ref_resolve(&tag_id
, repo
, re
->ref
);
1989 err
= got_object_open_as_tag(tag
, repo
, tag_id
);
1993 if (obj_type
== GOT_OBJ_TYPE_ANY
||
1994 got_object_tag_get_object_type(*tag
) == obj_type
)
1996 got_object_tag_close(*tag
);
2000 if (err
== NULL
&& *tag
== NULL
)
2001 err
= got_error_fmt(GOT_ERR_NO_OBJ
, "%s %s",
2002 GOT_OBJ_LABEL_TAG
, name
);
2006 static const struct got_error
*
2007 alloc_added_blob_tree_entry(struct got_tree_entry
**new_te
,
2008 const char *name
, mode_t mode
, struct got_object_id
*blob_id
)
2010 const struct got_error
*err
= NULL
;
2014 *new_te
= calloc(1, sizeof(**new_te
));
2015 if (*new_te
== NULL
)
2016 return got_error_from_errno("calloc");
2018 if (strlcpy((*new_te
)->name
, name
, sizeof((*new_te
)->name
)) >=
2019 sizeof((*new_te
)->name
)) {
2020 err
= got_error(GOT_ERR_NO_SPACE
);
2024 if (S_ISLNK(mode
)) {
2025 (*new_te
)->mode
= S_IFLNK
;
2027 (*new_te
)->mode
= S_IFREG
;
2028 (*new_te
)->mode
|= (mode
& (S_IRWXU
| S_IRWXG
| S_IRWXO
));
2030 memcpy(&(*new_te
)->id
, blob_id
, sizeof((*new_te
)->id
));
2032 if (err
&& *new_te
) {
2039 static const struct got_error
*
2040 import_file(struct got_tree_entry
**new_te
, struct dirent
*de
,
2041 const char *path
, struct got_repository
*repo
)
2043 const struct got_error
*err
;
2044 struct got_object_id
*blob_id
= NULL
;
2048 if (asprintf(&filepath
, "%s%s%s", path
,
2049 path
[0] == '\0' ? "" : "/", de
->d_name
) == -1)
2050 return got_error_from_errno("asprintf");
2052 if (lstat(filepath
, &sb
) != 0) {
2053 err
= got_error_from_errno2("lstat", path
);
2057 err
= got_object_blob_create(&blob_id
, filepath
, repo
);
2061 err
= alloc_added_blob_tree_entry(new_te
, de
->d_name
, sb
.st_mode
,
2070 static const struct got_error
*
2071 insert_tree_entry(struct got_tree_entry
*new_te
,
2072 struct got_pathlist_head
*paths
)
2074 const struct got_error
*err
= NULL
;
2075 struct got_pathlist_entry
*new_pe
;
2077 err
= got_pathlist_insert(&new_pe
, paths
, new_te
->name
, new_te
);
2081 return got_error(GOT_ERR_TREE_DUP_ENTRY
);
2085 static const struct got_error
*write_tree(struct got_object_id
**,
2086 const char *, struct got_pathlist_head
*, struct got_repository
*,
2087 got_repo_import_cb progress_cb
, void *progress_arg
);
2089 static const struct got_error
*
2090 import_subdir(struct got_tree_entry
**new_te
, struct dirent
*de
,
2091 const char *path
, struct got_pathlist_head
*ignores
,
2092 struct got_repository
*repo
,
2093 got_repo_import_cb progress_cb
, void *progress_arg
)
2095 const struct got_error
*err
;
2096 struct got_object_id
*id
= NULL
;
2099 if (asprintf(&subdirpath
, "%s%s%s", path
,
2100 path
[0] == '\0' ? "" : "/", de
->d_name
) == -1)
2101 return got_error_from_errno("asprintf");
2103 (*new_te
) = calloc(1, sizeof(**new_te
));
2104 if (*new_te
== NULL
)
2105 return got_error_from_errno("calloc");
2106 (*new_te
)->mode
= S_IFDIR
;
2107 if (strlcpy((*new_te
)->name
, de
->d_name
, sizeof((*new_te
)->name
)) >=
2108 sizeof((*new_te
)->name
)) {
2109 err
= got_error(GOT_ERR_NO_SPACE
);
2112 err
= write_tree(&id
, subdirpath
, ignores
, repo
,
2113 progress_cb
, progress_arg
);
2116 memcpy(&(*new_te
)->id
, id
, sizeof((*new_te
)->id
));
2128 static const struct got_error
*
2129 write_tree(struct got_object_id
**new_tree_id
, const char *path_dir
,
2130 struct got_pathlist_head
*ignores
, struct got_repository
*repo
,
2131 got_repo_import_cb progress_cb
, void *progress_arg
)
2133 const struct got_error
*err
= NULL
;
2137 struct got_tree_entry
*new_te
= NULL
;
2138 struct got_pathlist_head paths
;
2139 struct got_pathlist_entry
*pe
;
2141 *new_tree_id
= NULL
;
2145 dir
= opendir(path_dir
);
2147 err
= got_error_from_errno2("opendir", path_dir
);
2152 while ((de
= readdir(dir
)) != NULL
) {
2156 if (strcmp(de
->d_name
, ".") == 0 ||
2157 strcmp(de
->d_name
, "..") == 0)
2160 err
= got_path_dirent_type(&type
, path_dir
, de
);
2164 TAILQ_FOREACH(pe
, ignores
, entry
) {
2165 if (type
== DT_DIR
&& pe
->path_len
> 0 &&
2166 pe
->path
[pe
->path_len
- 1] == '/') {
2167 char stripped
[PATH_MAX
];
2169 if (strlcpy(stripped
, pe
->path
,
2170 sizeof(stripped
)) >= sizeof(stripped
)) {
2171 err
= got_error(GOT_ERR_NO_SPACE
);
2174 got_path_strip_trailing_slashes(stripped
);
2175 if (fnmatch(stripped
, de
->d_name
, 0) == 0) {
2179 } else if (fnmatch(pe
->path
, de
->d_name
, 0) == 0) {
2187 if (type
== DT_DIR
) {
2188 err
= import_subdir(&new_te
, de
, path_dir
,
2189 ignores
, repo
, progress_cb
, progress_arg
);
2191 if (err
->code
!= GOT_ERR_NO_TREE_ENTRY
)
2196 } else if (type
== DT_REG
|| type
== DT_LNK
) {
2197 err
= import_file(&new_te
, de
, path_dir
, repo
);
2203 err
= insert_tree_entry(new_te
, &paths
);
2209 if (TAILQ_EMPTY(&paths
)) {
2210 err
= got_error_msg(GOT_ERR_NO_TREE_ENTRY
,
2211 "cannot create tree without any entries");
2215 TAILQ_FOREACH(pe
, &paths
, entry
) {
2216 struct got_tree_entry
*te
= pe
->data
;
2218 if (!S_ISREG(te
->mode
) && !S_ISLNK(te
->mode
))
2220 if (asprintf(&path
, "%s/%s", path_dir
, pe
->path
) == -1) {
2221 err
= got_error_from_errno("asprintf");
2224 err
= (*progress_cb
)(progress_arg
, path
);
2230 err
= got_object_tree_create(new_tree_id
, &paths
, nentries
, repo
);
2234 got_pathlist_free(&paths
, GOT_PATHLIST_FREE_NONE
);
2238 const struct got_error
*
2239 got_repo_import(struct got_object_id
**new_commit_id
, const char *path_dir
,
2240 const char *logmsg
, const char *author
, struct got_pathlist_head
*ignores
,
2241 struct got_repository
*repo
, got_repo_import_cb progress_cb
,
2244 const struct got_error
*err
;
2245 struct got_object_id
*new_tree_id
;
2247 err
= write_tree(&new_tree_id
, path_dir
, ignores
, repo
,
2248 progress_cb
, progress_arg
);
2252 err
= got_object_commit_create(new_commit_id
, new_tree_id
, NULL
, 0,
2253 author
, time(NULL
), author
, time(NULL
), logmsg
, repo
);
2258 const struct got_error
*
2259 got_repo_get_loose_object_info(int *nobjects
, off_t
*ondisk_size
,
2260 struct got_repository
*repo
)
2262 const struct got_error
*err
= NULL
;
2263 char *path_objects
= NULL
, *path
= NULL
;
2265 struct got_object_id id
;
2271 path_objects
= got_repo_get_path_objects(repo
);
2272 if (path_objects
== NULL
)
2273 return got_error_from_errno("got_repo_get_path_objects");
2275 for (i
= 0; i
<= 0xff; i
++) {
2276 struct dirent
*dent
;
2278 if (asprintf(&path
, "%s/%.2x", path_objects
, i
) == -1) {
2279 err
= got_error_from_errno("asprintf");
2283 dir
= opendir(path
);
2285 if (errno
== ENOENT
) {
2289 err
= got_error_from_errno2("opendir", path
);
2293 while ((dent
= readdir(dir
)) != NULL
) {
2298 if (strcmp(dent
->d_name
, ".") == 0 ||
2299 strcmp(dent
->d_name
, "..") == 0)
2302 if (asprintf(&id_str
, "%.2x%s", i
, dent
->d_name
) == -1) {
2303 err
= got_error_from_errno("asprintf");
2307 if (!got_parse_object_id(&id
, id_str
, repo
->algo
)) {
2313 err
= got_object_open_loose_fd(&fd
, &id
, repo
);
2317 if (fstat(fd
, &sb
) == -1) {
2318 err
= got_error_from_errno("fstat");
2323 (*ondisk_size
) += sb
.st_size
;
2325 if (close(fd
) == -1) {
2326 err
= got_error_from_errno("close");
2331 if (closedir(dir
) != 0) {
2332 err
= got_error_from_errno("closedir");
2341 if (dir
&& closedir(dir
) != 0 && err
== NULL
)
2342 err
= got_error_from_errno("closedir");
2353 const struct got_error
*
2354 got_repo_get_packfile_info(int *npackfiles
, int *nobjects
,
2355 off_t
*total_packsize
, struct got_repository
*repo
)
2357 const struct got_error
*err
= NULL
;
2358 DIR *packdir
= NULL
;
2359 struct dirent
*dent
;
2360 struct got_packidx
*packidx
= NULL
;
2362 char *path_packfile
;
2368 *total_packsize
= 0;
2370 packdir_fd
= openat(got_repo_get_fd(repo
),
2371 GOT_OBJECTS_PACK_DIR
, O_DIRECTORY
);
2372 if (packdir_fd
== -1) {
2373 return got_error_from_errno_fmt("openat: %s/%s",
2374 got_repo_get_path_git_dir(repo
),
2375 GOT_OBJECTS_PACK_DIR
);
2378 packdir
= fdopendir(packdir_fd
);
2379 if (packdir
== NULL
) {
2380 err
= got_error_from_errno("fdopendir");
2384 while ((dent
= readdir(packdir
)) != NULL
) {
2385 if (!got_repo_is_packidx_filename(dent
->d_name
,
2386 strlen(dent
->d_name
)))
2389 if (asprintf(&path_packidx
, "%s/%s", GOT_OBJECTS_PACK_DIR
,
2390 dent
->d_name
) == -1) {
2391 err
= got_error_from_errno("asprintf");
2395 err
= got_packidx_open(&packidx
, got_repo_get_fd(repo
),
2401 if (fstat(packidx
->fd
, &sb
) == -1)
2403 *total_packsize
+= sb
.st_size
;
2405 err
= got_packidx_get_packfile_path(&path_packfile
,
2406 packidx
->path_packidx
);
2410 if (fstatat(got_repo_get_fd(repo
), path_packfile
, &sb
,
2412 free(path_packfile
);
2415 free(path_packfile
);
2416 *total_packsize
+= sb
.st_size
;
2418 *nobjects
+= be32toh(packidx
->hdr
.fanout_table
[0xff]);
2422 got_packidx_close(packidx
);
2427 got_packidx_close(packidx
);
2428 if (packdir
&& closedir(packdir
) != 0 && err
== NULL
)
2429 err
= got_error_from_errno("closedir");
2433 *total_packsize
= 0;
2438 RB_GENERATE(got_packidx_bloom_filter_tree
, got_packidx_bloom_filter
, entry
,
2439 got_packidx_bloom_filter_cmp
);