2 * Copyright (c) 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>
23 #include <sys/socket.h>
36 #include "got_error.h"
37 #include "got_cancel.h"
38 #include "got_object.h"
39 #include "got_reference.h"
40 #include "got_repository.h"
41 #include "got_repository_admin.h"
42 #include "got_opentemp.h"
45 #include "got_lib_delta.h"
46 #include "got_lib_object.h"
47 #include "got_lib_object_idset.h"
48 #include "got_lib_object_cache.h"
49 #include "got_lib_pack.h"
50 #include "got_lib_privsep.h"
51 #include "got_lib_repository.h"
52 #include "got_lib_ratelimit.h"
53 #include "got_lib_pack_create.h"
54 #include "got_lib_hash.h"
55 #include "got_lib_lockfile.h"
58 #define nitems(_a) (sizeof((_a)) / sizeof((_a)[0]))
61 static const struct got_error
*
62 get_reflist_object_ids(struct got_object_id
***ids
, int *nobjects
,
63 unsigned int wanted_obj_type_mask
, struct got_reflist_head
*refs
,
64 struct got_repository
*repo
,
65 got_cancel_cb cancel_cb
, void *cancel_arg
)
67 const struct got_error
*err
= NULL
;
68 const size_t alloc_chunksz
= 256;
70 struct got_reflist_entry
*re
;
76 err
= got_reflist_sort(refs
,
77 got_ref_cmp_by_commit_timestamp_descending
, repo
);
81 *ids
= reallocarray(NULL
, alloc_chunksz
, sizeof(struct got_object_id
*));
83 return got_error_from_errno("reallocarray");
84 nalloc
= alloc_chunksz
;
86 TAILQ_FOREACH(re
, refs
, entry
) {
87 struct got_object_id
*id
;
90 err
= cancel_cb(cancel_arg
);
95 err
= got_ref_resolve(&id
, repo
, re
->ref
);
99 if (wanted_obj_type_mask
!= GOT_OBJ_TYPE_ANY
) {
101 err
= got_object_get_type(&obj_type
, repo
, id
);
104 if ((wanted_obj_type_mask
& (1 << obj_type
)) == 0) {
111 if (nalloc
<= *nobjects
) {
112 struct got_object_id
**new;
113 new = recallocarray(*ids
, nalloc
,
114 nalloc
+ alloc_chunksz
,
115 sizeof(struct got_object_id
*));
117 err
= got_error_from_errno(
122 nalloc
+= alloc_chunksz
;
124 (*ids
)[*nobjects
] = id
;
125 if ((*ids
)[*nobjects
] == NULL
) {
126 err
= got_error_from_errno("got_object_id_dup");
133 for (i
= 0; i
< *nobjects
; i
++)
142 const struct got_error
*
143 got_repo_pack_objects(FILE **packfile
, struct got_object_id
**pack_hash
,
144 struct got_reflist_head
*include_refs
,
145 struct got_reflist_head
*exclude_refs
, struct got_repository
*repo
,
146 int loose_obj_only
, int force_refdelta
,
147 got_pack_progress_cb progress_cb
, void *progress_arg
,
148 got_cancel_cb cancel_cb
, void *cancel_arg
)
150 const struct got_error
*err
= NULL
;
151 struct got_object_id
**ours
= NULL
, **theirs
= NULL
;
152 int nours
= 0, ntheirs
= 0, packfd
= -1, i
;
153 char *tmpfile_path
= NULL
, *path
= NULL
, *packfile_path
= NULL
;
154 char *sha1_str
= NULL
;
155 FILE *delta_cache
= NULL
;
156 struct got_ratelimit rl
;
161 got_ratelimit_init(&rl
, 0, 500);
163 if (asprintf(&path
, "%s/%s/packing.pack",
164 got_repo_get_path_git_dir(repo
), GOT_OBJECTS_PACK_DIR
) == -1) {
165 err
= got_error_from_errno("asprintf");
168 err
= got_opentemp_named_fd(&tmpfile_path
, &packfd
, path
, "");
172 if (fchmod(packfd
, GOT_DEFAULT_PACK_MODE
) == -1) {
173 err
= got_error_from_errno2("fchmod", tmpfile_path
);
177 delta_cache
= got_opentemp();
178 if (delta_cache
== NULL
) {
179 err
= got_error_from_errno("got_opentemp");
183 err
= get_reflist_object_ids(&ours
, &nours
,
184 (1 << GOT_OBJ_TYPE_COMMIT
) | (1 << GOT_OBJ_TYPE_TAG
),
185 include_refs
, repo
, cancel_cb
, cancel_arg
);
190 err
= got_error(GOT_ERR_CANNOT_PACK
);
194 if (!TAILQ_EMPTY(exclude_refs
)) {
195 err
= get_reflist_object_ids(&theirs
, &ntheirs
,
196 (1 << GOT_OBJ_TYPE_COMMIT
) | (1 << GOT_OBJ_TYPE_TAG
),
198 cancel_cb
, cancel_arg
);
203 *pack_hash
= calloc(1, sizeof(**pack_hash
));
204 if (*pack_hash
== NULL
) {
205 err
= got_error_from_errno("calloc");
209 err
= got_pack_create((*pack_hash
)->sha1
, packfd
, delta_cache
,
210 theirs
, ntheirs
, ours
, nours
, repo
, loose_obj_only
,
211 0, force_refdelta
, progress_cb
, progress_arg
, &rl
,
212 cancel_cb
, cancel_arg
);
216 err
= got_object_id_str(&sha1_str
, *pack_hash
);
219 if (asprintf(&packfile_path
, "%s/%s/pack-%s.pack",
220 got_repo_get_path_git_dir(repo
), GOT_OBJECTS_PACK_DIR
,
222 err
= got_error_from_errno("asprintf");
226 if (lseek(packfd
, 0L, SEEK_SET
) == -1) {
227 err
= got_error_from_errno("lseek");
230 if (rename(tmpfile_path
, packfile_path
) == -1) {
231 err
= got_error_from_errno3("rename", tmpfile_path
,
238 *packfile
= fdopen(packfd
, "w");
239 if (*packfile
== NULL
) {
240 err
= got_error_from_errno2("fdopen", tmpfile_path
);
245 for (i
= 0; i
< nours
; i
++)
248 for (i
= 0; i
< ntheirs
; i
++)
251 if (packfd
!= -1 && close(packfd
) == -1 && err
== NULL
)
252 err
= got_error_from_errno2("close", packfile_path
);
253 if (delta_cache
&& fclose(delta_cache
) == EOF
&& err
== NULL
)
254 err
= got_error_from_errno("fclose");
255 if (tmpfile_path
&& unlink(tmpfile_path
) == -1 && err
== NULL
)
256 err
= got_error_from_errno2("unlink", tmpfile_path
);
271 const struct got_error
*
272 got_repo_index_pack(FILE *packfile
, struct got_object_id
*pack_hash
,
273 struct got_repository
*repo
,
274 got_pack_index_progress_cb progress_cb
, void *progress_arg
,
275 got_cancel_cb cancel_cb
, void *cancel_arg
)
280 int npackfd
= -1, idxfd
= -1, nidxfd
= -1;
282 int idxstatus
, done
= 0;
283 const struct got_error
*err
;
284 struct imsgbuf idxibuf
;
286 char *tmpidxpath
= NULL
;
287 char *packfile_path
= NULL
, *idxpath
= NULL
, *id_str
= NULL
;
288 const char *repo_path
= got_repo_get_path_git_dir(repo
);
291 for (i
= 0; i
< nitems(tmpfds
); i
++)
294 if (asprintf(&path
, "%s/%s/indexing.idx",
295 repo_path
, GOT_OBJECTS_PACK_DIR
) == -1) {
296 err
= got_error_from_errno("asprintf");
299 err
= got_opentemp_named_fd(&tmpidxpath
, &idxfd
, path
, "");
303 if (fchmod(idxfd
, GOT_DEFAULT_PACK_MODE
) == -1) {
304 err
= got_error_from_errno2("fchmod", tmpidxpath
);
310 err
= got_error_from_errno("dup");
314 for (i
= 0; i
< nitems(tmpfds
); i
++) {
315 tmpfds
[i
] = got_opentempfd();
316 if (tmpfds
[i
] == -1) {
317 err
= got_error_from_errno("got_opentempfd");
322 err
= got_object_id_str(&id_str
, pack_hash
);
326 if (asprintf(&packfile_path
, "%s/%s/pack-%s.pack",
327 repo_path
, GOT_OBJECTS_PACK_DIR
, id_str
) == -1) {
328 err
= got_error_from_errno("asprintf");
332 if (fstat(fileno(packfile
), &sb
) == -1) {
333 err
= got_error_from_errno2("fstat", packfile_path
);
337 if (asprintf(&idxpath
, "%s/%s/pack-%s.idx",
338 repo_path
, GOT_OBJECTS_PACK_DIR
, id_str
) == -1) {
339 err
= got_error_from_errno("asprintf");
343 if (socketpair(AF_UNIX
, SOCK_STREAM
, PF_UNSPEC
, imsg_idxfds
) == -1) {
344 err
= got_error_from_errno("socketpair");
349 err
= got_error_from_errno("fork");
351 } else if (idxpid
== 0)
352 got_privsep_exec_child(imsg_idxfds
,
353 GOT_PATH_PROG_INDEX_PACK
, packfile_path
);
354 if (close(imsg_idxfds
[1]) == -1) {
355 err
= got_error_from_errno("close");
358 imsg_init(&idxibuf
, imsg_idxfds
[0]);
360 npackfd
= dup(fileno(packfile
));
362 err
= got_error_from_errno("dup");
365 err
= got_privsep_send_index_pack_req(&idxibuf
, pack_hash
->sha1
,
370 err
= got_privsep_send_index_pack_outfd(&idxibuf
, nidxfd
);
374 for (i
= 0; i
< nitems(tmpfds
); i
++) {
375 err
= got_privsep_send_tmpfd(&idxibuf
, tmpfds
[i
]);
382 int nobj_total
, nobj_indexed
, nobj_loose
, nobj_resolved
;
385 err
= cancel_cb(cancel_arg
);
390 err
= got_privsep_recv_index_progress(&done
, &nobj_total
,
391 &nobj_indexed
, &nobj_loose
, &nobj_resolved
,
395 if (nobj_indexed
!= 0) {
396 err
= progress_cb(progress_arg
, sb
.st_size
,
397 nobj_total
, nobj_indexed
, nobj_loose
,
403 if (close(imsg_idxfds
[0]) == -1) {
404 err
= got_error_from_errno("close");
407 if (waitpid(idxpid
, &idxstatus
, 0) == -1) {
408 err
= got_error_from_errno("waitpid");
412 if (rename(tmpidxpath
, idxpath
) == -1) {
413 err
= got_error_from_errno3("rename", tmpidxpath
, idxpath
);
420 if (tmpidxpath
&& unlink(tmpidxpath
) == -1 && err
== NULL
)
421 err
= got_error_from_errno2("unlink", tmpidxpath
);
422 if (npackfd
!= -1 && close(npackfd
) == -1 && err
== NULL
)
423 err
= got_error_from_errno("close");
424 if (idxfd
!= -1 && close(idxfd
) == -1 && err
== NULL
)
425 err
= got_error_from_errno("close");
426 for (i
= 0; i
< nitems(tmpfds
); i
++) {
427 if (tmpfds
[i
] != -1 && close(tmpfds
[i
]) == -1 && err
== NULL
)
428 err
= got_error_from_errno("close");
436 const struct got_error
*
437 got_repo_find_pack(FILE **packfile
, struct got_object_id
**pack_hash
,
438 struct got_repository
*repo
, const char *packfile_path
)
440 const struct got_error
*err
= NULL
;
441 const char *packdir_path
= NULL
;
442 char *packfile_name
= NULL
, *p
, *dot
;
443 struct got_object_id id
;
449 packdir_path
= got_repo_get_path_objects_pack(repo
);
450 if (packdir_path
== NULL
)
451 return got_error_from_errno("got_repo_get_path_objects_pack");
453 if (!got_path_is_child(packfile_path
, packdir_path
,
454 strlen(packdir_path
))) {
455 err
= got_error_path(packfile_path
, GOT_ERR_BAD_PATH
);
460 err
= got_path_basename(&packfile_name
, packfile_path
);
465 if (strncmp(p
, "pack-", 5) != 0) {
466 err
= got_error_fmt(GOT_ERR_BAD_PATH
,
467 "'%s' is not a valid pack file name",
472 dot
= strchr(p
, '.');
474 err
= got_error_fmt(GOT_ERR_BAD_PATH
,
475 "'%s' is not a valid pack file name",
479 if (strcmp(dot
+ 1, "pack") != 0) {
480 err
= got_error_fmt(GOT_ERR_BAD_PATH
,
481 "'%s' is not a valid pack file name",
486 if (!got_parse_object_id(&id
, p
, repo
->algo
)) {
487 err
= got_error_fmt(GOT_ERR_BAD_PATH
,
488 "'%s' is not a valid pack file name",
493 *pack_hash
= got_object_id_dup(&id
);
494 if (*pack_hash
== NULL
) {
495 err
= got_error_from_errno("got_object_id_dup");
499 packfd
= open(packfile_path
, O_RDONLY
| O_NOFOLLOW
| O_CLOEXEC
);
501 err
= got_error_from_errno2("open", packfile_path
);
505 *packfile
= fdopen(packfd
, "r");
506 if (*packfile
== NULL
) {
507 err
= got_error_from_errno2("fdopen", packfile_path
);
512 if (packfd
!= -1 && close(packfd
) == -1 && err
== NULL
)
513 err
= got_error_from_errno2("close", packfile_path
);
522 const struct got_error
*
523 got_repo_list_pack(FILE *packfile
, struct got_object_id
*pack_hash
,
524 struct got_repository
*repo
, got_pack_list_cb list_cb
, void *list_arg
,
525 got_cancel_cb cancel_cb
, void *cancel_arg
)
527 const struct got_error
*err
= NULL
;
528 char *id_str
= NULL
, *idxpath
= NULL
, *packpath
= NULL
;
529 struct got_packidx
*packidx
= NULL
;
530 struct got_pack
*pack
= NULL
;
533 err
= got_object_id_str(&id_str
, pack_hash
);
537 if (asprintf(&packpath
, "%s/pack-%s.pack",
538 GOT_OBJECTS_PACK_DIR
, id_str
) == -1) {
539 err
= got_error_from_errno("asprintf");
542 if (asprintf(&idxpath
, "%s/pack-%s.idx",
543 GOT_OBJECTS_PACK_DIR
, id_str
) == -1) {
544 err
= got_error_from_errno("asprintf");
548 err
= got_packidx_open(&packidx
, got_repo_get_fd(repo
), idxpath
, 1);
552 err
= got_repo_cache_pack(&pack
, repo
, packpath
, packidx
);
556 nobj
= be32toh(packidx
->hdr
.fanout_table
[0xff]);
557 for (i
= 0; i
< nobj
; i
++) {
558 struct got_packidx_object_id
*oid
;
559 struct got_object_id id
, base_id
;
560 off_t offset
, base_offset
= 0;
566 err
= cancel_cb(cancel_arg
);
570 oid
= &packidx
->hdr
.sorted_ids
[i
];
571 memcpy(id
.sha1
, oid
->sha1
, SHA1_DIGEST_LENGTH
);
573 offset
= got_packidx_get_object_offset(packidx
, i
);
575 err
= got_error(GOT_ERR_BAD_PACKIDX
);
579 err
= got_pack_parse_object_type_and_size(&type
, &size
, &tslen
,
585 case GOT_OBJ_TYPE_OFFSET_DELTA
:
586 err
= got_pack_parse_offset_delta(&base_offset
, &len
,
587 pack
, offset
, tslen
);
591 case GOT_OBJ_TYPE_REF_DELTA
:
592 err
= got_pack_parse_ref_delta(&base_id
,
593 pack
, offset
, tslen
);
598 err
= (*list_cb
)(list_arg
, &id
, type
, offset
, size
,
599 base_offset
, &base_id
);
609 got_packidx_close(packidx
);
613 static const struct got_error
*
614 report_cleanup_progress(got_cleanup_progress_cb progress_cb
,
615 void *progress_arg
, struct got_ratelimit
*rl
,
616 int nloose
, int ncommits
, int npurged
)
618 const struct got_error
*err
;
621 if (progress_cb
== NULL
)
624 err
= got_ratelimit_check(&elapsed
, rl
);
628 return progress_cb(progress_arg
, nloose
, ncommits
, npurged
);
631 static const struct got_error
*
632 get_loose_object_ids(struct got_object_idset
**loose_ids
, off_t
*ondisk_size
,
633 got_cleanup_progress_cb progress_cb
, void *progress_arg
,
634 struct got_ratelimit
*rl
, struct got_repository
*repo
)
636 const struct got_error
*err
= NULL
;
637 char *path_objects
= NULL
, *path
= NULL
;
639 struct got_object
*obj
= NULL
;
640 struct got_object_id id
;
645 *loose_ids
= got_object_idset_alloc();
646 if (*loose_ids
== NULL
)
647 return got_error_from_errno("got_object_idset_alloc");
649 path_objects
= got_repo_get_path_objects(repo
);
650 if (path_objects
== NULL
) {
651 err
= got_error_from_errno("got_repo_get_path_objects");
655 for (i
= 0; i
<= 0xff; i
++) {
658 if (asprintf(&path
, "%s/%.2x", path_objects
, i
) == -1) {
659 err
= got_error_from_errno("asprintf");
665 if (errno
== ENOENT
) {
669 err
= got_error_from_errno2("opendir", path
);
673 while ((dent
= readdir(dir
)) != NULL
) {
676 if (strcmp(dent
->d_name
, ".") == 0 ||
677 strcmp(dent
->d_name
, "..") == 0)
680 if (asprintf(&id_str
, "%.2x%s", i
, dent
->d_name
) == -1) {
681 err
= got_error_from_errno("asprintf");
685 if (!got_parse_object_id(&id
, id_str
, repo
->algo
)) {
691 err
= got_object_open_loose_fd(&fd
, &id
, repo
);
694 if (fstat(fd
, &sb
) == -1) {
695 err
= got_error_from_errno("fstat");
698 err
= got_object_read_header_privsep(&obj
, &id
, repo
,
702 fd
= -1; /* already closed */
705 case GOT_OBJ_TYPE_COMMIT
:
706 case GOT_OBJ_TYPE_TREE
:
707 case GOT_OBJ_TYPE_BLOB
:
708 case GOT_OBJ_TYPE_TAG
:
711 err
= got_error_fmt(GOT_ERR_OBJ_TYPE
,
715 got_object_close(obj
);
717 (*ondisk_size
) += sb
.st_size
;
718 err
= got_object_idset_add(*loose_ids
, &id
, NULL
);
721 err
= report_cleanup_progress(progress_cb
,
723 got_object_idset_num_elements(*loose_ids
), -1, -1);
728 if (closedir(dir
) != 0) {
729 err
= got_error_from_errno("closedir");
738 if (dir
&& closedir(dir
) != 0 && err
== NULL
)
739 err
= got_error_from_errno("closedir");
740 if (fd
!= -1 && close(fd
) == -1 && err
== NULL
)
741 err
= got_error_from_errno("close");
743 got_object_idset_free(*loose_ids
);
747 got_object_close(obj
);
753 static const struct got_error
*
754 preserve_loose_object(struct got_object_idset
*loose_ids
,
755 struct got_object_id
*id
, struct got_repository
*repo
, int *npacked
)
757 const struct got_error
*err
= NULL
;
758 struct got_object
*obj
;
760 if (!got_object_idset_contains(loose_ids
, id
))
764 * Try to open this object from a pack file. This ensures that
765 * we do in fact have a valid packed copy of the object. Otherwise
766 * we should not delete the loose representation of this object.
768 err
= got_object_open_packed(&obj
, id
, repo
);
770 got_object_close(obj
);
772 * The object is referenced and packed.
773 * We can purge the redundantly stored loose object.
777 } else if (err
->code
!= GOT_ERR_NO_OBJ
)
781 * This object is referenced and not packed.
782 * Remove it from our purge set.
784 return got_object_idset_remove(NULL
, loose_ids
, id
);
787 static const struct got_error
*
788 load_tree_entries(struct got_object_id_queue
*ids
,
789 struct got_object_idset
*loose_ids
,
790 struct got_object_idset
*traversed_ids
, struct got_object_id
*tree_id
,
791 const char *dpath
, struct got_repository
*repo
, int *npacked
,
792 got_cancel_cb cancel_cb
, void *cancel_arg
)
794 const struct got_error
*err
;
795 struct got_tree_object
*tree
;
799 err
= got_object_open_as_tree(&tree
, repo
, tree_id
);
803 for (i
= 0; i
< got_object_tree_get_nentries(tree
); i
++) {
804 struct got_tree_entry
*e
= got_object_tree_get_entry(tree
, i
);
805 struct got_object_id
*id
= got_tree_entry_get_id(e
);
806 mode_t mode
= got_tree_entry_get_mode(e
);
809 err
= (*cancel_cb
)(cancel_arg
);
814 if (got_object_tree_entry_is_symlink(e
) ||
815 got_object_tree_entry_is_submodule(e
) ||
816 got_object_idset_contains(traversed_ids
, id
))
819 if (asprintf(&p
, "%s%s%s", dpath
, dpath
[0] != '\0' ? "/" : "",
820 got_tree_entry_get_name(e
)) == -1) {
821 err
= got_error_from_errno("asprintf");
826 struct got_object_qid
*qid
;
827 err
= got_object_qid_alloc(&qid
, id
);
830 STAILQ_INSERT_TAIL(ids
, qid
, entry
);
831 } else if (S_ISREG(mode
)) {
832 /* This blob is referenced. */
833 err
= preserve_loose_object(loose_ids
, id
, repo
,
837 err
= got_object_idset_add(traversed_ids
, id
, NULL
);
845 got_object_tree_close(tree
);
850 static const struct got_error
*
851 load_tree(struct got_object_idset
*loose_ids
,
852 struct got_object_idset
*traversed_ids
, struct got_object_id
*tree_id
,
853 const char *dpath
, struct got_repository
*repo
, int *npacked
,
854 got_cancel_cb cancel_cb
, void *cancel_arg
)
856 const struct got_error
*err
= NULL
;
857 struct got_object_id_queue tree_ids
;
858 struct got_object_qid
*qid
;
860 err
= got_object_qid_alloc(&qid
, tree_id
);
864 STAILQ_INIT(&tree_ids
);
865 STAILQ_INSERT_TAIL(&tree_ids
, qid
, entry
);
867 while (!STAILQ_EMPTY(&tree_ids
)) {
869 err
= (*cancel_cb
)(cancel_arg
);
874 qid
= STAILQ_FIRST(&tree_ids
);
875 STAILQ_REMOVE_HEAD(&tree_ids
, entry
);
877 if (got_object_idset_contains(traversed_ids
, &qid
->id
)) {
878 got_object_qid_free(qid
);
882 err
= got_object_idset_add(traversed_ids
, &qid
->id
, NULL
);
884 got_object_qid_free(qid
);
888 /* This tree is referenced. */
889 err
= preserve_loose_object(loose_ids
, &qid
->id
, repo
, npacked
);
893 err
= load_tree_entries(&tree_ids
, loose_ids
, traversed_ids
,
894 &qid
->id
, dpath
, repo
, npacked
, cancel_cb
, cancel_arg
);
895 got_object_qid_free(qid
);
900 got_object_id_queue_free(&tree_ids
);
904 static const struct got_error
*
905 load_commit_or_tag(struct got_object_idset
*loose_ids
, int *ncommits
,
906 int *npacked
, struct got_object_idset
*traversed_ids
,
907 struct got_object_id
*id
, struct got_repository
*repo
,
908 got_cleanup_progress_cb progress_cb
, void *progress_arg
,
909 struct got_ratelimit
*rl
, int nloose
,
910 got_cancel_cb cancel_cb
, void *cancel_arg
)
912 const struct got_error
*err
;
913 struct got_commit_object
*commit
= NULL
;
914 struct got_tag_object
*tag
= NULL
;
915 struct got_object_id
*tree_id
= NULL
;
916 struct got_object_id_queue ids
;
917 struct got_object_qid
*qid
;
920 err
= got_object_qid_alloc(&qid
, id
);
925 STAILQ_INSERT_TAIL(&ids
, qid
, entry
);
927 while (!STAILQ_EMPTY(&ids
)) {
929 err
= (*cancel_cb
)(cancel_arg
);
934 qid
= STAILQ_FIRST(&ids
);
935 STAILQ_REMOVE_HEAD(&ids
, entry
);
937 if (got_object_idset_contains(traversed_ids
, &qid
->id
)) {
938 got_object_qid_free(qid
);
943 err
= got_object_idset_add(traversed_ids
, &qid
->id
, NULL
);
947 /* This commit or tag is referenced. */
948 err
= preserve_loose_object(loose_ids
, &qid
->id
, repo
, npacked
);
952 err
= got_object_get_type(&obj_type
, repo
, &qid
->id
);
956 case GOT_OBJ_TYPE_COMMIT
:
957 err
= got_object_open_as_commit(&commit
, repo
,
962 case GOT_OBJ_TYPE_TAG
:
963 err
= got_object_open_as_tag(&tag
, repo
, &qid
->id
);
968 /* should not happen */
969 err
= got_error(GOT_ERR_OBJ_TYPE
);
973 /* Find a tree object to scan. */
975 tree_id
= got_object_commit_get_tree_id(commit
);
977 obj_type
= got_object_tag_get_object_type(tag
);
979 case GOT_OBJ_TYPE_COMMIT
:
980 err
= got_object_open_as_commit(&commit
, repo
,
981 got_object_tag_get_object_id(tag
));
984 tree_id
= got_object_commit_get_tree_id(commit
);
986 case GOT_OBJ_TYPE_TREE
:
987 tree_id
= got_object_tag_get_object_id(tag
);
991 * Tag points at something other than a
992 * commit or tree. Leave this weird tag object
993 * and the object it points to on disk.
995 err
= got_object_idset_remove(NULL
, loose_ids
,
997 if (err
&& err
->code
!= GOT_ERR_NO_OBJ
)
999 err
= got_object_idset_remove(NULL
, loose_ids
,
1000 got_object_tag_get_object_id(tag
));
1001 if (err
&& err
->code
!= GOT_ERR_NO_OBJ
)
1009 err
= load_tree(loose_ids
, traversed_ids
, tree_id
, "",
1010 repo
, npacked
, cancel_cb
, cancel_arg
);
1016 (*ncommits
)++; /* scanned tags are counted as commits */
1018 err
= report_cleanup_progress(progress_cb
, progress_arg
, rl
,
1019 nloose
, *ncommits
, -1);
1024 /* Find parent commits to scan. */
1025 const struct got_object_id_queue
*parent_ids
;
1026 parent_ids
= got_object_commit_get_parent_ids(commit
);
1027 err
= got_object_id_queue_copy(parent_ids
, &ids
);
1030 got_object_commit_close(commit
);
1034 got_object_tag_close(tag
);
1037 got_object_qid_free(qid
);
1042 got_object_qid_free(qid
);
1044 got_object_commit_close(commit
);
1046 got_object_tag_close(tag
);
1047 got_object_id_queue_free(&ids
);
1051 struct purge_loose_object_arg
{
1052 struct got_repository
*repo
;
1053 got_cleanup_progress_cb progress_cb
;
1055 struct got_ratelimit
*rl
;
1065 static const struct got_error
*
1066 purge_loose_object(struct got_object_id
*id
, void *data
, void *arg
)
1068 struct purge_loose_object_arg
*a
= arg
;
1069 const struct got_error
*err
, *unlock_err
= NULL
;
1073 struct got_lockfile
*lf
= NULL
;
1075 err
= got_object_get_path(&path
, id
, a
->repo
);
1079 err
= got_object_open_loose_fd(&fd
, id
, a
->repo
);
1083 if (fstat(fd
, &sb
) == -1) {
1084 err
= got_error_from_errno("fstat");
1089 * Do not delete objects which are younger than our maximum
1090 * modification time threshold. This prevents a race where
1091 * new objects which are being added to the repository
1092 * concurrently would be deleted.
1094 if (a
->ignore_mtime
|| sb
.st_mtime
<= a
->max_mtime
) {
1096 err
= got_lockfile_lock(&lf
, path
, -1);
1099 if (unlink(path
) == -1) {
1100 err
= got_error_from_errno2("unlink", path
);
1106 a
->size_purged
+= sb
.st_size
;
1107 err
= report_cleanup_progress(a
->progress_cb
, a
->progress_arg
,
1108 a
->rl
, a
->nloose
, a
->ncommits
, a
->npurged
);
1113 if (fd
!= -1 && close(fd
) == -1 && err
== NULL
)
1114 err
= got_error_from_errno("close");
1117 unlock_err
= got_lockfile_unlock(lf
, -1);
1118 return err
? err
: unlock_err
;
1121 const struct got_error
*
1122 got_repo_purge_unreferenced_loose_objects(struct got_repository
*repo
,
1123 off_t
*size_before
, off_t
*size_after
, int *npacked
, int dry_run
,
1124 int ignore_mtime
, got_cleanup_progress_cb progress_cb
, void *progress_arg
,
1125 got_cancel_cb cancel_cb
, void *cancel_arg
)
1127 const struct got_error
*err
;
1128 struct got_object_idset
*loose_ids
;
1129 struct got_object_idset
*traversed_ids
;
1130 struct got_object_id
**referenced_ids
;
1131 int i
, nreferenced
, nloose
, ncommits
= 0;
1132 struct got_reflist_head refs
;
1133 struct got_reflist_entry
*re
;
1134 struct purge_loose_object_arg arg
;
1135 time_t max_mtime
= 0;
1136 struct got_ratelimit rl
;
1139 got_ratelimit_init(&rl
, 0, 500);
1145 err
= get_loose_object_ids(&loose_ids
, size_before
,
1146 progress_cb
, progress_arg
, &rl
, repo
);
1149 nloose
= got_object_idset_num_elements(loose_ids
);
1151 got_object_idset_free(loose_ids
);
1153 err
= progress_cb(progress_arg
, 0, 0, 0);
1160 traversed_ids
= got_object_idset_alloc();
1161 if (traversed_ids
== NULL
) {
1162 err
= got_error_from_errno("got_object_idset_alloc");
1166 err
= got_ref_list(&refs
, repo
, "", got_ref_cmp_by_name
, NULL
);
1169 if (!ignore_mtime
) {
1170 TAILQ_FOREACH(re
, &refs
, entry
) {
1171 time_t mtime
= got_ref_get_mtime(re
->ref
);
1172 if (mtime
> max_mtime
)
1176 * For safety, keep objects created within 10 minutes
1177 * before the youngest reference was created.
1179 if (max_mtime
>= 600)
1183 err
= get_reflist_object_ids(&referenced_ids
, &nreferenced
,
1184 (1 << GOT_OBJ_TYPE_COMMIT
) | (1 << GOT_OBJ_TYPE_TAG
),
1185 &refs
, repo
, cancel_cb
, cancel_arg
);
1189 for (i
= 0; i
< nreferenced
; i
++) {
1190 struct got_object_id
*id
= referenced_ids
[i
];
1191 err
= load_commit_or_tag(loose_ids
, &ncommits
, npacked
,
1192 traversed_ids
, id
, repo
, progress_cb
, progress_arg
, &rl
,
1193 nloose
, cancel_cb
, cancel_arg
);
1198 /* Any remaining loose objects are unreferenced and can be purged. */
1200 arg
.progress_arg
= progress_arg
;
1201 arg
.progress_cb
= progress_cb
;
1203 arg
.nloose
= nloose
;
1205 arg
.size_purged
= 0;
1206 arg
.ncommits
= ncommits
;
1207 arg
.dry_run
= dry_run
;
1208 arg
.max_mtime
= max_mtime
;
1209 arg
.ignore_mtime
= ignore_mtime
;
1210 err
= got_object_idset_for_each(loose_ids
, purge_loose_object
, &arg
);
1213 *size_after
= *size_before
- arg
.size_purged
;
1215 /* Produce a final progress report. */
1217 err
= progress_cb(progress_arg
, nloose
, ncommits
, arg
.npurged
);
1222 got_object_idset_free(loose_ids
);
1223 got_object_idset_free(traversed_ids
);
1227 static const struct got_error
*
1228 remove_packidx(int dir_fd
, const char *relpath
)
1230 const struct got_error
*err
, *unlock_err
;
1231 struct got_lockfile
*lf
;
1233 err
= got_lockfile_lock(&lf
, relpath
, dir_fd
);
1236 if (unlinkat(dir_fd
, relpath
, 0) == -1)
1237 err
= got_error_from_errno("unlinkat");
1238 unlock_err
= got_lockfile_unlock(lf
, dir_fd
);
1239 return err
? err
: unlock_err
;
1242 const struct got_error
*
1243 got_repo_remove_lonely_packidx(struct got_repository
*repo
, int dry_run
,
1244 got_lonely_packidx_progress_cb progress_cb
, void *progress_arg
,
1245 got_cancel_cb cancel_cb
, void *cancel_arg
)
1247 const struct got_error
*err
= NULL
;
1248 DIR *packdir
= NULL
;
1249 struct dirent
*dent
;
1250 char *pack_relpath
= NULL
;
1254 packdir_fd
= openat(got_repo_get_fd(repo
),
1255 GOT_OBJECTS_PACK_DIR
, O_DIRECTORY
| O_CLOEXEC
);
1256 if (packdir_fd
== -1) {
1257 if (errno
== ENOENT
)
1259 return got_error_from_errno_fmt("openat: %s/%s",
1260 got_repo_get_path_git_dir(repo
),
1261 GOT_OBJECTS_PACK_DIR
);
1264 packdir
= fdopendir(packdir_fd
);
1265 if (packdir
== NULL
) {
1266 err
= got_error_from_errno("fdopendir");
1270 while ((dent
= readdir(packdir
)) != NULL
) {
1272 err
= cancel_cb(cancel_arg
);
1277 if (!got_repo_is_packidx_filename(dent
->d_name
,
1278 strlen(dent
->d_name
)))
1281 err
= got_packidx_get_packfile_path(&pack_relpath
,
1286 if (fstatat(packdir_fd
, pack_relpath
, &sb
, 0) != -1) {
1288 pack_relpath
= NULL
;
1291 if (errno
!= ENOENT
) {
1292 err
= got_error_from_errno_fmt("fstatat: %s/%s/%s",
1293 got_repo_get_path_git_dir(repo
),
1294 GOT_OBJECTS_PACK_DIR
,
1300 err
= remove_packidx(packdir_fd
, dent
->d_name
);
1306 if (asprintf(&path
, "%s/%s/%s",
1307 got_repo_get_path_git_dir(repo
),
1308 GOT_OBJECTS_PACK_DIR
,
1309 dent
->d_name
) == -1) {
1310 err
= got_error_from_errno("asprintf");
1313 err
= progress_cb(progress_arg
, path
);
1319 pack_relpath
= NULL
;
1322 if (packdir
&& closedir(packdir
) != 0 && err
== NULL
)
1323 err
= got_error_from_errno("closedir");