2 * Copyright (c) 2018, 2019 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>
34 #include "got_error.h"
35 #include "got_object.h"
36 #include "got_repository.h"
37 #include "got_reference.h"
38 #include "got_opentemp.h"
41 #include "got_lib_hash.h"
42 #include "got_lib_delta.h"
43 #include "got_lib_inflate.h"
44 #include "got_lib_object.h"
45 #include "got_lib_object_idset.h"
46 #include "got_lib_lockfile.h"
49 #define nitems(_a) (sizeof(_a) / sizeof((_a)[0]))
52 #define GOT_REF_HEADS "heads"
53 #define GOT_REF_TAGS "tags"
54 #define GOT_REF_REMOTES "remotes"
57 * We do not resolve tags yet, and don't yet care about sorting refs either,
58 * so packed-refs files we write contain a minimal header which disables all
59 * packed-refs "traits" supported by Git.
61 #define GOT_PACKED_REFS_HEADER "# pack-refs with:"
63 /* A symbolic reference. */
69 #define GOT_REF_RECURSE_MAX 20
71 /* A non-symbolic reference (there is no better designation). */
74 struct got_object_id id
;
77 /* A reference which points to an arbitrary object. */
78 struct got_reference
{
80 #define GOT_REF_IS_SYMBOLIC 0x01
81 #define GOT_REF_IS_PACKED 0x02
85 struct got_symref symref
;
88 struct got_lockfile
*lf
;
91 /* Cached timestamp for got_ref_cmp_by_commit_timestamp_descending() */
92 time_t committer_time
;
95 static const struct got_error
*
96 alloc_ref(struct got_reference
**ref
, const char *name
,
97 struct got_object_id
*id
, int flags
, time_t mtime
)
99 const struct got_error
*err
= NULL
;
101 *ref
= calloc(1, sizeof(**ref
));
103 return got_error_from_errno("calloc");
105 memcpy(&(*ref
)->ref
.ref
.id
, id
, sizeof((*ref
)->ref
.ref
.id
));
106 (*ref
)->flags
= flags
;
107 (*ref
)->ref
.ref
.name
= strdup(name
);
108 (*ref
)->mtime
= mtime
;
109 if ((*ref
)->ref
.ref
.name
== NULL
) {
110 err
= got_error_from_errno("strdup");
117 static const struct got_error
*
118 alloc_symref(struct got_reference
**ref
, const char *name
,
119 const char *target_ref
, int flags
)
121 const struct got_error
*err
= NULL
;
123 *ref
= calloc(1, sizeof(**ref
));
125 return got_error_from_errno("calloc");
127 (*ref
)->flags
= GOT_REF_IS_SYMBOLIC
| flags
;
128 (*ref
)->ref
.symref
.name
= strdup(name
);
129 if ((*ref
)->ref
.symref
.name
== NULL
) {
130 err
= got_error_from_errno("strdup");
135 (*ref
)->ref
.symref
.ref
= strdup(target_ref
);
136 if ((*ref
)->ref
.symref
.ref
== NULL
) {
137 err
= got_error_from_errno("strdup");
144 static const struct got_error
*
145 parse_symref(struct got_reference
**ref
, const char *name
, const char *line
)
148 return got_error(GOT_ERR_BAD_REF_DATA
);
150 return alloc_symref(ref
, name
, line
, 0);
153 static const struct got_error
*
154 parse_ref_line(struct got_reference
**ref
, const char *name
, const char *line
,
155 time_t mtime
, enum got_hash_algorithm algo
)
157 struct got_object_id id
;
159 if (strncmp(line
, "ref: ", 5) == 0) {
161 return parse_symref(ref
, name
, line
);
164 if (!got_parse_object_id(&id
, line
, algo
))
165 return got_error(GOT_ERR_BAD_REF_DATA
);
167 return alloc_ref(ref
, name
, &id
, 0, mtime
);
170 static const struct got_error
*
171 parse_ref_file(struct got_reference
**ref
, const char *name
,
172 const char *absname
, const char *abspath
, int lock
,
173 enum got_hash_algorithm algo
)
175 const struct got_error
*err
= NULL
;
180 struct got_lockfile
*lf
= NULL
;
184 err
= got_lockfile_lock(&lf
, abspath
, -1);
186 if (err
->code
== GOT_ERR_ERRNO
&& errno
== ENOENT
)
187 err
= got_error_not_ref(name
);
192 f
= fopen(abspath
, "rbe");
194 if (errno
!= ENOTDIR
&& errno
!= ENOENT
)
195 err
= got_error_from_errno2("fopen", abspath
);
197 err
= got_error_not_ref(name
);
199 got_lockfile_unlock(lf
, -1);
202 if (fstat(fileno(f
), &sb
) == -1) {
203 err
= got_error_from_errno2("fstat", abspath
);
207 linelen
= getline(&line
, &linesize
, f
);
210 err
= NULL
; /* ignore empty files (could be locks) */
213 err
= got_error(GOT_ERR_NOT_REF
);
215 err
= got_ferror(f
, GOT_ERR_IO
);
217 err
= got_error_from_errno2("getline", abspath
);
220 got_lockfile_unlock(lf
, -1);
223 while (linelen
> 0 && line
[linelen
- 1] == '\n') {
224 line
[linelen
- 1] = '\0';
228 err
= parse_ref_line(ref
, absname
, line
, sb
.st_mtime
, algo
);
231 got_lockfile_unlock(lf
, -1);
236 got_lockfile_unlock(lf
, -1);
241 if (fclose(f
) == EOF
&& err
== NULL
) {
242 err
= got_error_from_errno("fclose");
245 got_ref_unlock(*ref
);
254 is_well_known_ref(const char *refname
)
256 return (strcmp(refname
, GOT_REF_HEAD
) == 0 ||
257 strcmp(refname
, GOT_REF_ORIG_HEAD
) == 0 ||
258 strcmp(refname
, GOT_REF_MERGE_HEAD
) == 0 ||
259 strcmp(refname
, GOT_REF_FETCH_HEAD
) == 0);
263 get_refs_dir_path(struct got_repository
*repo
, const char *refname
)
265 if (is_well_known_ref(refname
) || strncmp(refname
, "refs/", 5) == 0)
266 return strdup(got_repo_get_path_git_dir(repo
));
268 return got_repo_get_path_refs(repo
);
271 const struct got_error
*
272 got_ref_alloc(struct got_reference
**ref
, const char *name
,
273 struct got_object_id
*id
)
275 if (!got_ref_name_is_valid(name
))
276 return got_error_path(name
, GOT_ERR_BAD_REF_NAME
);
278 return alloc_ref(ref
, name
, id
, 0, 0);
281 const struct got_error
*
282 got_ref_alloc_symref(struct got_reference
**ref
, const char *name
,
283 struct got_reference
*target_ref
)
285 if (!got_ref_name_is_valid(name
))
286 return got_error_path(name
, GOT_ERR_BAD_REF_NAME
);
288 return alloc_symref(ref
, name
, got_ref_get_name(target_ref
), 0);
291 static const struct got_error
*
292 parse_packed_ref_line(struct got_reference
**ref
, const char *abs_refname
,
293 const char *line
, time_t mtime
, enum got_hash_algorithm algo
)
295 struct got_object_id id
;
300 if (line
[0] == '#' || line
[0] == '^')
303 if (!got_parse_object_id(&id
, line
, algo
))
304 return got_error(GOT_ERR_BAD_REF_DATA
);
307 if (strcmp(line
+ SHA1_DIGEST_STRING_LENGTH
, abs_refname
) != 0)
311 name
= line
+ SHA1_DIGEST_STRING_LENGTH
;
313 return alloc_ref(ref
, name
, &id
, GOT_REF_IS_PACKED
, mtime
);
316 static const struct got_error
*
317 open_packed_ref(struct got_reference
**ref
, FILE *f
, const char **subdirs
,
318 int nsubdirs
, const char *refname
, time_t mtime
,
319 enum got_hash_algorithm algo
)
321 const struct got_error
*err
= NULL
;
326 int i
, ref_is_absolute
= (strncmp(refname
, "refs/", 5) == 0);
331 abs_refname
= (char *)refname
;
333 linelen
= getline(&line
, &linesize
, f
);
337 err
= got_ferror(f
, GOT_ERR_BAD_REF_DATA
);
340 if (linelen
> 0 && line
[linelen
- 1] == '\n')
341 line
[linelen
- 1] = '\0';
342 for (i
= 0; i
< nsubdirs
; i
++) {
343 if (!ref_is_absolute
&&
344 asprintf(&abs_refname
, "refs/%s/%s", subdirs
[i
],
346 return got_error_from_errno("asprintf");
347 err
= parse_packed_ref_line(ref
, abs_refname
, line
,
349 if (!ref_is_absolute
)
351 if (err
|| *ref
!= NULL
)
356 } while (*ref
== NULL
);
362 static const struct got_error
*
363 open_ref(struct got_reference
**ref
, const char *path_refs
, const char *subdir
,
364 const char *name
, int lock
, enum got_hash_algorithm algo
)
366 const struct got_error
*err
= NULL
;
368 char *absname
= NULL
;
369 int ref_is_absolute
= (strncmp(name
, "refs/", 5) == 0);
370 int ref_is_well_known
= (subdir
[0] == '\0' && is_well_known_ref(name
));
374 if (!got_ref_name_is_valid(name
))
375 return got_error_path(name
, GOT_ERR_BAD_REF_NAME
);
377 if (ref_is_absolute
|| ref_is_well_known
) {
378 if (asprintf(&path
, "%s/%s", path_refs
, name
) == -1)
379 return got_error_from_errno("asprintf");
380 absname
= (char *)name
;
382 if (asprintf(&path
, "%s/%s%s%s", path_refs
, subdir
,
383 subdir
[0] ? "/" : "", name
) == -1)
384 return got_error_from_errno("asprintf");
386 if (asprintf(&absname
, "refs/%s%s%s",
387 subdir
, subdir
[0] ? "/" : "", name
) == -1) {
388 err
= got_error_from_errno("asprintf");
393 err
= parse_ref_file(ref
, name
, absname
, path
, lock
, algo
);
395 if (!ref_is_absolute
&& !ref_is_well_known
)
401 const struct got_error
*
402 got_ref_open(struct got_reference
**ref
, struct got_repository
*repo
,
403 const char *refname
, int lock
)
405 const struct got_error
*err
= NULL
;
406 char *packed_refs_path
= NULL
, *path_refs
= NULL
;
407 const char *subdirs
[] = {
408 GOT_REF_HEADS
, GOT_REF_TAGS
, GOT_REF_REMOTES
411 int well_known
= is_well_known_ref(refname
);
412 struct got_lockfile
*lf
= NULL
;
416 path_refs
= get_refs_dir_path(repo
, refname
);
417 if (path_refs
== NULL
) {
418 err
= got_error_from_errno2("get_refs_dir_path", refname
);
423 err
= open_ref(ref
, path_refs
, "", refname
, lock
,
424 got_repo_get_object_format(repo
));
428 /* Search on-disk refs before packed refs! */
429 for (i
= 0; i
< nitems(subdirs
); i
++) {
430 err
= open_ref(ref
, path_refs
, subdirs
[i
], refname
,
431 lock
, got_repo_get_object_format(repo
));
432 if ((err
&& err
->code
!= GOT_ERR_NOT_REF
) || *ref
)
436 packed_refs_path
= got_repo_get_path_packed_refs(repo
);
437 if (packed_refs_path
== NULL
) {
438 err
= got_error_from_errno(
439 "got_repo_get_path_packed_refs");
444 err
= got_lockfile_lock(&lf
, packed_refs_path
, -1);
448 f
= fopen(packed_refs_path
, "rbe");
451 if (fstat(fileno(f
), &sb
) == -1) {
452 err
= got_error_from_errno2("fstat",
456 err
= open_packed_ref(ref
, f
, subdirs
, nitems(subdirs
),
457 refname
, sb
.st_mtime
,
458 got_repo_get_object_format(repo
));
460 if (fclose(f
) == EOF
) {
461 err
= got_error_from_errno("fclose");
470 if (!err
&& *ref
== NULL
)
471 err
= got_error_not_ref(refname
);
473 got_lockfile_unlock(lf
, -1);
474 free(packed_refs_path
);
480 got_ref_close(struct got_reference
*ref
)
482 if (ref
->flags
& GOT_REF_IS_SYMBOLIC
) {
483 free(ref
->ref
.symref
.name
);
484 free(ref
->ref
.symref
.ref
);
486 free(ref
->ref
.ref
.name
);
490 struct got_reference
*
491 got_ref_dup(struct got_reference
*ref
)
493 struct got_reference
*ret
;
495 ret
= calloc(1, sizeof(*ret
));
499 ret
->flags
= ref
->flags
;
500 if (ref
->flags
& GOT_REF_IS_SYMBOLIC
) {
501 ret
->ref
.symref
.name
= strdup(ref
->ref
.symref
.name
);
502 if (ret
->ref
.symref
.name
== NULL
) {
506 ret
->ref
.symref
.ref
= strdup(ref
->ref
.symref
.ref
);
507 if (ret
->ref
.symref
.ref
== NULL
) {
508 free(ret
->ref
.symref
.name
);
513 ret
->ref
.ref
.name
= strdup(ref
->ref
.ref
.name
);
514 if (ret
->ref
.ref
.name
== NULL
) {
518 memcpy(&ret
->ref
.ref
.id
, &ref
->ref
.ref
.id
,
519 sizeof(ret
->ref
.ref
.id
));
525 const struct got_error
*
526 got_reflist_entry_dup(struct got_reflist_entry
**newp
,
527 struct got_reflist_entry
*re
)
529 const struct got_error
*err
= NULL
;
530 struct got_reflist_entry
*new;
534 new = malloc(sizeof(*new));
536 return got_error_from_errno("malloc");
538 new->ref
= got_ref_dup(re
->ref
);
539 if (new->ref
== NULL
) {
540 err
= got_error_from_errno("got_ref_dup");
549 const struct got_error
*
550 got_ref_resolve_symbolic(struct got_reference
**resolved
,
551 struct got_repository
*repo
, struct got_reference
*ref
)
553 struct got_reference
*nextref
;
554 const struct got_error
*err
;
556 err
= got_ref_open(&nextref
, repo
, ref
->ref
.symref
.ref
, 0);
560 if (nextref
->flags
& GOT_REF_IS_SYMBOLIC
)
561 err
= got_ref_resolve_symbolic(resolved
, repo
, nextref
);
563 *resolved
= got_ref_dup(nextref
);
565 got_ref_close(nextref
);
569 static const struct got_error
*
570 ref_resolve(struct got_object_id
**id
, struct got_repository
*repo
,
571 struct got_reference
*ref
, int recursion
)
573 const struct got_error
*err
;
576 return got_error_msg(GOT_ERR_RECURSION
,
577 "reference recursion limit reached");
579 if (ref
->flags
& GOT_REF_IS_SYMBOLIC
) {
580 struct got_reference
*resolved
= NULL
;
581 err
= got_ref_resolve_symbolic(&resolved
, repo
, ref
);
583 err
= ref_resolve(id
, repo
, resolved
, --recursion
);
585 got_ref_close(resolved
);
589 *id
= calloc(1, sizeof(**id
));
591 return got_error_from_errno("calloc");
592 memcpy(*id
, &ref
->ref
.ref
.id
, sizeof(**id
));
596 const struct got_error
*
597 got_ref_resolve(struct got_object_id
**id
, struct got_repository
*repo
,
598 struct got_reference
*ref
)
600 return ref_resolve(id
, repo
, ref
, GOT_REF_RECURSE_MAX
);
604 got_ref_to_str(struct got_reference
*ref
)
608 if (ref
->flags
& GOT_REF_IS_SYMBOLIC
)
609 return strdup(ref
->ref
.symref
.ref
);
611 if (got_object_id_str(&str
, &ref
->ref
.ref
.id
) != NULL
)
618 got_ref_get_name(struct got_reference
*ref
)
620 if (ref
->flags
& GOT_REF_IS_SYMBOLIC
)
621 return ref
->ref
.symref
.name
;
623 return ref
->ref
.ref
.name
;
627 got_ref_get_symref_target(struct got_reference
*ref
)
629 if (ref
->flags
& GOT_REF_IS_SYMBOLIC
)
630 return ref
->ref
.symref
.ref
;
636 got_ref_get_mtime(struct got_reference
*ref
)
641 const struct got_error
*
642 got_ref_cmp_by_name(void *arg
, int *cmp
, struct got_reference
*re1
,
643 struct got_reference
* re2
)
645 const char *name1
= got_ref_get_name(re1
);
646 const char *name2
= got_ref_get_name(re2
);
648 *cmp
= got_path_cmp(name1
, name2
, strlen(name1
), strlen(name2
));
652 const struct got_error
*
653 got_ref_cmp_tags(void *arg
, int *cmp
, struct got_reference
*ref1
,
654 struct got_reference
*ref2
)
656 const struct got_error
*err
= NULL
;
657 struct got_repository
*repo
= arg
;
658 struct got_object_id
*id1
, *id2
= NULL
;
659 struct got_tag_object
*tag1
= NULL
, *tag2
= NULL
;
660 struct got_commit_object
*commit1
= NULL
, *commit2
= NULL
;
665 err
= got_ref_resolve(&id1
, repo
, ref1
);
668 err
= got_object_open_as_tag(&tag1
, repo
, id1
);
670 if (err
->code
!= GOT_ERR_OBJ_TYPE
)
672 /* "lightweight" tag */
673 err
= got_object_open_as_commit(&commit1
, repo
, id1
);
676 time1
= got_object_commit_get_committer_time(commit1
);
678 time1
= got_object_tag_get_tagger_time(tag1
);
680 err
= got_ref_resolve(&id2
, repo
, ref2
);
683 err
= got_object_open_as_tag(&tag2
, repo
, id2
);
685 if (err
->code
!= GOT_ERR_OBJ_TYPE
)
687 /* "lightweight" tag */
688 err
= got_object_open_as_commit(&commit2
, repo
, id2
);
691 time2
= got_object_commit_get_committer_time(commit2
);
693 time2
= got_object_tag_get_tagger_time(tag2
);
695 /* Put latest tags first. */
698 else if (time1
> time2
)
701 err
= got_ref_cmp_by_name(NULL
, cmp
, ref2
, ref1
);
706 got_object_tag_close(tag1
);
708 got_object_tag_close(tag2
);
710 got_object_commit_close(commit1
);
712 got_object_commit_close(commit2
);
716 static const struct got_error
*
717 get_committer_time(struct got_reference
*ref
, struct got_repository
*repo
)
719 const struct got_error
*err
= NULL
;
721 struct got_commit_object
*commit
= NULL
;
722 struct got_tag_object
*tag
= NULL
;
723 struct got_object_id
*id
= NULL
;
725 err
= got_ref_resolve(&id
, repo
, ref
);
729 err
= got_object_get_type(&obj_type
, repo
, id
);
734 case GOT_OBJ_TYPE_COMMIT
:
735 err
= got_object_open_as_commit(&commit
, repo
, id
);
738 ref
->committer_time
=
739 got_object_commit_get_committer_time(commit
);
741 case GOT_OBJ_TYPE_TAG
:
742 err
= got_object_open_as_tag(&tag
, repo
, id
);
745 ref
->committer_time
= got_object_tag_get_tagger_time(tag
);
748 /* best effort for other object types */
749 ref
->committer_time
= got_ref_get_mtime(ref
);
755 got_object_commit_close(commit
);
757 got_object_tag_close(tag
);
761 const struct got_error
*
762 got_ref_cmp_by_commit_timestamp_descending(void *arg
, int *cmp
,
763 struct got_reference
*ref1
, struct got_reference
*ref2
)
765 const struct got_error
*err
= NULL
;
766 struct got_repository
*repo
= arg
;
770 if (ref1
->committer_time
== 0) {
771 err
= get_committer_time(ref1
, repo
);
775 if (ref2
->committer_time
== 0) {
776 err
= get_committer_time(ref2
, repo
);
781 if (ref1
->committer_time
< ref2
->committer_time
)
783 else if (ref2
->committer_time
< ref1
->committer_time
)
786 return got_ref_cmp_by_name(arg
, cmp
, ref1
, ref2
);
791 const struct got_error
*
792 got_reflist_insert(struct got_reflist_entry
**newp
,
793 struct got_reflist_head
*refs
, struct got_reference
*ref
,
794 got_ref_cmp_cb cmp_cb
, void *cmp_arg
)
796 const struct got_error
*err
;
797 struct got_reflist_entry
*new, *re
;
802 if (cmp_cb
!= got_ref_cmp_by_name
&& (ref
->flags
& GOT_REF_IS_PACKED
)) {
804 * If we are not sorting elements by name then we must still
805 * detect collisions between a packed ref and an on-disk ref
806 * using the same name. On-disk refs take precedence and are
807 * already present on the list before packed refs get added.
809 TAILQ_FOREACH(re
, refs
, entry
) {
810 err
= got_ref_cmp_by_name(NULL
, &cmp
, re
->ref
, ref
);
818 new = malloc(sizeof(*new));
820 return got_error_from_errno("malloc");
825 * We must de-duplicate entries on insert because packed-refs may
826 * contain redundant entries. On-disk refs take precedence.
827 * This code assumes that on-disk revs are read before packed-refs.
828 * We're iterating the list anyway, so insert elements sorted by name.
830 * Many callers will provide paths in a somewhat sorted order.
831 * Iterating backwards from the tail of the list should be more
832 * efficient than traversing through the entire list each time
833 * an element is inserted.
835 re
= TAILQ_LAST(refs
, got_reflist_head
);
837 err
= (*cmp_cb
)(cmp_arg
, &cmp
, re
->ref
, new->ref
);
845 } else if (cmp
< 0) {
846 TAILQ_INSERT_AFTER(refs
, re
, new, entry
);
849 re
= TAILQ_PREV(re
, got_reflist_head
, entry
);
852 TAILQ_INSERT_HEAD(refs
, new, entry
);
856 const struct got_error
*
857 got_reflist_sort(struct got_reflist_head
*refs
,
858 got_ref_cmp_cb cmp_cb
, void *cmp_arg
)
860 const struct got_error
*err
= NULL
;
861 struct got_reflist_entry
*re
, *tmp
, *new;
862 struct got_reflist_head sorted
;
866 TAILQ_FOREACH_SAFE(re
, refs
, entry
, tmp
) {
867 struct got_reference
*ref
= re
->ref
;
868 TAILQ_REMOVE(refs
, re
, entry
);
870 err
= got_reflist_insert(&new, &sorted
, ref
, cmp_cb
, cmp_arg
);
871 if (err
|| new == NULL
/* duplicate */)
877 TAILQ_CONCAT(refs
, &sorted
, entry
);
881 static const struct got_error
*
882 gather_on_disk_refs(struct got_reflist_head
*refs
, const char *path_refs
,
883 const char *subdir
, struct got_repository
*repo
,
884 got_ref_cmp_cb cmp_cb
, void *cmp_arg
)
886 const struct got_error
*err
= NULL
;
890 while (subdir
[0] == '/')
893 if (asprintf(&path_subdir
, "%s/%s", path_refs
, subdir
) == -1)
894 return got_error_from_errno("asprintf");
896 d
= opendir(path_subdir
);
902 struct got_reference
*ref
;
910 if (strcmp(dent
->d_name
, ".") == 0 ||
911 strcmp(dent
->d_name
, "..") == 0)
914 err
= got_path_dirent_type(&type
, path_subdir
, dent
);
920 err
= open_ref(&ref
, path_refs
, subdir
, dent
->d_name
,
921 0, got_repo_get_object_format(repo
));
925 struct got_reflist_entry
*new;
926 err
= got_reflist_insert(&new, refs
, ref
,
928 if (err
|| new == NULL
/* duplicate */)
935 if (asprintf(&child
, "%s%s%s", subdir
,
936 subdir
[0] == '\0' ? "" : "/", dent
->d_name
) == -1) {
937 err
= got_error_from_errno("asprintf");
940 err
= gather_on_disk_refs(refs
, path_refs
, child
, repo
,
955 const struct got_error
*
956 got_ref_list(struct got_reflist_head
*refs
, struct got_repository
*repo
,
957 const char *ref_namespace
, got_ref_cmp_cb cmp_cb
, void *cmp_arg
)
959 const struct got_error
*err
;
960 char *packed_refs_path
= NULL
, *path_refs
= NULL
;
961 char *abs_namespace
= NULL
, *buf
= NULL
;
962 const char *ondisk_ref_namespace
= NULL
;
965 struct got_reference
*ref
;
966 struct got_reflist_entry
*new;
968 if (ref_namespace
== NULL
|| ref_namespace
[0] == '\0') {
969 path_refs
= get_refs_dir_path(repo
, GOT_REF_HEAD
);
970 if (path_refs
== NULL
) {
971 err
= got_error_from_errno("get_refs_dir_path");
974 err
= open_ref(&ref
, path_refs
, "", GOT_REF_HEAD
, 0,
975 got_repo_get_object_format(repo
));
978 err
= got_reflist_insert(&new, refs
, ref
, cmp_cb
, cmp_arg
);
979 if (err
|| new == NULL
/* duplicate */)
981 if (err
&& err
->code
!= GOT_ERR_NOT_REF
)
984 /* Try listing a single reference. */
985 const char *refname
= ref_namespace
;
986 path_refs
= get_refs_dir_path(repo
, refname
);
987 if (path_refs
== NULL
) {
988 err
= got_error_from_errno("get_refs_dir_path");
991 err
= open_ref(&ref
, path_refs
, "", refname
, 0,
992 got_repo_get_object_format(repo
));
994 if (err
->code
!= GOT_ERR_NOT_REF
)
996 /* Try to look up references in a given namespace. */
998 err
= got_reflist_insert(&new, refs
, ref
,
1000 if (err
|| new == NULL
/* duplicate */)
1006 if (ref_namespace
) {
1008 /* Canonicalize the path to eliminate double-slashes if any. */
1009 if (asprintf(&abs_namespace
, "/%s", ref_namespace
) == -1) {
1010 err
= got_error_from_errno("asprintf");
1013 len
= strlen(abs_namespace
) + 1;
1016 err
= got_error_from_errno("malloc");
1019 err
= got_canonpath(abs_namespace
, buf
, len
);
1022 ondisk_ref_namespace
= buf
;
1023 while (ondisk_ref_namespace
[0] == '/')
1024 ondisk_ref_namespace
++;
1025 if (strncmp(ondisk_ref_namespace
, "refs/", 5) == 0)
1026 ondisk_ref_namespace
+= 5;
1027 else if (strcmp(ondisk_ref_namespace
, "refs") == 0)
1028 ondisk_ref_namespace
= "";
1031 /* Gather on-disk refs before parsing packed-refs. */
1033 path_refs
= get_refs_dir_path(repo
, "");
1034 if (path_refs
== NULL
) {
1035 err
= got_error_from_errno("get_refs_dir_path");
1038 err
= gather_on_disk_refs(refs
, path_refs
,
1039 ondisk_ref_namespace
? ondisk_ref_namespace
: "", repo
,
1045 * The packed-refs file may contain redundant entries, in which
1046 * case on-disk refs take precedence.
1048 packed_refs_path
= got_repo_get_path_packed_refs(repo
);
1049 if (packed_refs_path
== NULL
) {
1050 err
= got_error_from_errno("got_repo_get_path_packed_refs");
1054 f
= fopen(packed_refs_path
, "re");
1056 size_t linesize
= 0;
1060 if (fstat(fileno(f
), &sb
) == -1) {
1061 err
= got_error_from_errno2("fstat", packed_refs_path
);
1065 linelen
= getline(&line
, &linesize
, f
);
1066 if (linelen
== -1) {
1069 err
= got_ferror(f
, GOT_ERR_BAD_REF_DATA
);
1072 if (linelen
> 0 && line
[linelen
- 1] == '\n')
1073 line
[linelen
- 1] = '\0';
1074 err
= parse_packed_ref_line(&ref
, NULL
, line
,
1075 sb
.st_mtime
, got_repo_get_object_format(repo
));
1079 if (ref_namespace
) {
1081 name
= got_ref_get_name(ref
);
1082 if (!got_path_is_child(name
,
1084 strlen(ref_namespace
))) {
1089 err
= got_reflist_insert(&new, refs
, ref
,
1091 if (err
|| new == NULL
/* duplicate */)
1099 free(packed_refs_path
);
1100 free(abs_namespace
);
1104 if (f
&& fclose(f
) == EOF
&& err
== NULL
)
1105 err
= got_error_from_errno("fclose");
1110 got_ref_list_free(struct got_reflist_head
*refs
)
1112 struct got_reflist_entry
*re
;
1114 while ((re
= TAILQ_FIRST(refs
))) {
1115 TAILQ_REMOVE(refs
, re
, entry
);
1116 got_ref_close(re
->ref
);
1122 got_ref_is_symbolic(struct got_reference
*ref
)
1124 return (ref
->flags
& GOT_REF_IS_SYMBOLIC
);
1127 const struct got_error
*
1128 got_ref_change_ref(struct got_reference
*ref
, struct got_object_id
*id
)
1130 if (ref
->flags
& GOT_REF_IS_SYMBOLIC
)
1131 return got_error(GOT_ERR_BAD_REF_TYPE
);
1133 memcpy(&ref
->ref
.ref
.id
, id
, sizeof(ref
->ref
.ref
.id
));
1137 const struct got_error
*
1138 got_ref_change_symref(struct got_reference
*ref
, const char *refname
)
1142 if ((ref
->flags
& GOT_REF_IS_SYMBOLIC
) == 0)
1143 return got_error(GOT_ERR_BAD_REF_TYPE
);
1145 new_name
= strdup(refname
);
1146 if (new_name
== NULL
)
1147 return got_error_from_errno("strdup");
1149 free(ref
->ref
.symref
.ref
);
1150 ref
->ref
.symref
.ref
= new_name
;
1154 const struct got_error
*
1155 got_ref_change_symref_to_ref(struct got_reference
*symref
,
1156 struct got_object_id
*id
)
1158 if ((symref
->flags
& GOT_REF_IS_SYMBOLIC
) == 0)
1159 return got_error(GOT_ERR_BAD_REF_TYPE
);
1161 symref
->ref
.ref
.name
= symref
->ref
.symref
.name
;
1162 memcpy(&symref
->ref
.ref
.id
, id
, sizeof(symref
->ref
.ref
.id
));
1163 symref
->flags
&= ~GOT_REF_IS_SYMBOLIC
;
1167 const struct got_error
*
1168 got_ref_write(struct got_reference
*ref
, struct got_repository
*repo
)
1170 const struct got_error
*err
= NULL
, *unlock_err
= NULL
;
1171 const char *name
= got_ref_get_name(ref
);
1172 char *path_refs
= NULL
, *path
= NULL
, *tmppath
= NULL
;
1173 struct got_lockfile
*lf
= NULL
;
1178 path_refs
= get_refs_dir_path(repo
, name
);
1179 if (path_refs
== NULL
) {
1180 err
= got_error_from_errno2("get_refs_dir_path", name
);
1184 if (asprintf(&path
, "%s/%s", path_refs
, name
) == -1) {
1185 err
= got_error_from_errno("asprintf");
1189 err
= got_opentemp_named(&tmppath
, &f
, path
, "");
1192 if (!(err
->code
== GOT_ERR_ERRNO
&& errno
== ENOENT
))
1194 err
= got_path_dirname(&parent
, path
);
1197 err
= got_path_mkdir(parent
);
1201 err
= got_opentemp_named(&tmppath
, &f
, path
, "");
1206 if (ref
->flags
& GOT_REF_IS_SYMBOLIC
) {
1207 n
= fprintf(f
, "ref: %s\n", ref
->ref
.symref
.ref
);
1208 if (n
!= strlen(ref
->ref
.symref
.ref
) + 6) {
1209 err
= got_ferror(f
, GOT_ERR_IO
);
1216 err
= got_object_id_str(&hex
, &ref
->ref
.ref
.id
);
1220 n
= fprintf(f
, "%s\n", hex
);
1223 err
= got_ferror(f
, GOT_ERR_IO
);
1228 if (ref
->lf
== NULL
) {
1229 err
= got_lockfile_lock(&lf
, path
, -1);
1234 /* XXX: check if old content matches our expectations? */
1236 if (stat(path
, &sb
) != 0) {
1237 if (errno
!= ENOENT
) {
1238 err
= got_error_from_errno2("stat", path
);
1241 sb
.st_mode
= GOT_DEFAULT_FILE_MODE
;
1244 if (fchmod(fileno(f
), sb
.st_mode
) != 0) {
1245 err
= got_error_from_errno2("fchmod", tmppath
);
1249 if (rename(tmppath
, path
) != 0) {
1250 err
= got_error_from_errno3("rename", tmppath
, path
);
1256 if (stat(path
, &sb
) == -1) {
1257 err
= got_error_from_errno2("stat", path
);
1260 ref
->mtime
= sb
.st_mtime
;
1262 if (ref
->lf
== NULL
&& lf
)
1263 unlock_err
= got_lockfile_unlock(lf
, -1);
1265 if (fclose(f
) == EOF
&& err
== NULL
)
1266 err
= got_error_from_errno("fclose");
1271 if (unlink(tmppath
) == -1 && err
== NULL
)
1272 err
= got_error_from_errno2("unlink", tmppath
);
1275 return err
? err
: unlock_err
;
1278 static const struct got_error
*
1279 delete_packed_ref(struct got_reference
*delref
, struct got_repository
*repo
)
1281 const struct got_error
*err
= NULL
, *unlock_err
= NULL
;
1282 struct got_lockfile
*lf
= NULL
;
1283 FILE *f
= NULL
, *tmpf
= NULL
;
1284 char *line
= NULL
, *packed_refs_path
, *tmppath
= NULL
;
1285 size_t linesize
= 0;
1286 struct got_reflist_head refs
;
1287 int found_delref
= 0;
1289 /* The packed-refs file does not cotain symbolic references. */
1290 if (delref
->flags
& GOT_REF_IS_SYMBOLIC
)
1291 return got_error(GOT_ERR_BAD_REF_DATA
);
1295 packed_refs_path
= got_repo_get_path_packed_refs(repo
);
1296 if (packed_refs_path
== NULL
)
1297 return got_error_from_errno("got_repo_get_path_packed_refs");
1299 err
= got_opentemp_named(&tmppath
, &tmpf
, packed_refs_path
, "");
1303 if (delref
->lf
== NULL
) {
1304 err
= got_lockfile_lock(&lf
, packed_refs_path
, -1);
1309 f
= fopen(packed_refs_path
, "re");
1311 err
= got_error_from_errno2("fopen", packed_refs_path
);
1316 struct got_reference
*ref
;
1317 struct got_reflist_entry
*new;
1319 linelen
= getline(&line
, &linesize
, f
);
1320 if (linelen
== -1) {
1323 err
= got_ferror(f
, GOT_ERR_BAD_REF_DATA
);
1326 if (linelen
> 0 && line
[linelen
- 1] == '\n')
1327 line
[linelen
- 1] = '\0';
1328 err
= parse_packed_ref_line(&ref
, NULL
, line
, 0,
1329 got_repo_get_object_format(repo
));
1335 if (strcmp(ref
->ref
.ref
.name
, delref
->ref
.ref
.name
) == 0 &&
1336 got_object_id_cmp(&ref
->ref
.ref
.id
,
1337 &delref
->ref
.ref
.id
) == 0) {
1343 err
= got_reflist_insert(&new, &refs
, ref
,
1344 got_ref_cmp_by_name
, NULL
);
1345 if (err
|| new == NULL
/* duplicate */)
1352 struct got_reflist_entry
*re
;
1356 n
= fprintf(tmpf
, "%s\n", GOT_PACKED_REFS_HEADER
);
1357 if (n
!= sizeof(GOT_PACKED_REFS_HEADER
)) {
1358 err
= got_ferror(f
, GOT_ERR_IO
);
1362 TAILQ_FOREACH(re
, &refs
, entry
) {
1366 err
= got_object_id_str(&hex
, &re
->ref
->ref
.ref
.id
);
1370 n
= fprintf(tmpf
, "%s ", hex
);
1373 err
= got_ferror(f
, GOT_ERR_IO
);
1377 n
= fprintf(tmpf
, "%s\n", re
->ref
->ref
.ref
.name
);
1378 if (n
!= strlen(re
->ref
->ref
.ref
.name
) + 1) {
1379 err
= got_ferror(f
, GOT_ERR_IO
);
1384 if (fflush(tmpf
) != 0) {
1385 err
= got_error_from_errno("fflush");
1389 if (fstat(fileno(f
), &sb
) != 0) {
1390 if (errno
!= ENOENT
) {
1391 err
= got_error_from_errno2("fstat",
1395 sb
.st_mode
= GOT_DEFAULT_FILE_MODE
;
1398 if (fchmod(fileno(tmpf
), sb
.st_mode
) != 0) {
1399 err
= got_error_from_errno2("fchmod", tmppath
);
1403 if (rename(tmppath
, packed_refs_path
) != 0) {
1404 err
= got_error_from_errno3("rename", tmppath
,
1412 if (delref
->lf
== NULL
&& lf
)
1413 unlock_err
= got_lockfile_unlock(lf
, -1);
1415 if (fclose(f
) == EOF
&& err
== NULL
)
1416 err
= got_error_from_errno("fclose");
1418 if (tmppath
&& unlink(tmppath
) == -1 && err
== NULL
)
1419 err
= got_error_from_errno2("unlink", tmppath
);
1420 if (tmpf
&& fclose(tmpf
) == EOF
&& err
== NULL
)
1421 err
= got_error_from_errno("fclose");
1423 free(packed_refs_path
);
1425 got_ref_list_free(&refs
);
1426 return err
? err
: unlock_err
;
1429 static const struct got_error
*
1430 delete_loose_ref(struct got_reference
*ref
, struct got_repository
*repo
)
1432 const struct got_error
*err
= NULL
, *unlock_err
= NULL
;
1433 const char *name
= got_ref_get_name(ref
);
1434 char *path_refs
= NULL
, *path
= NULL
;
1435 struct got_lockfile
*lf
= NULL
;
1437 path_refs
= get_refs_dir_path(repo
, name
);
1438 if (path_refs
== NULL
) {
1439 err
= got_error_from_errno2("get_refs_dir_path", name
);
1443 if (asprintf(&path
, "%s/%s", path_refs
, name
) == -1) {
1444 err
= got_error_from_errno("asprintf");
1448 if (ref
->lf
== NULL
) {
1449 err
= got_lockfile_lock(&lf
, path
, -1);
1454 /* XXX: check if old content matches our expectations? */
1456 if (unlink(path
) == -1)
1457 err
= got_error_from_errno2("unlink", path
);
1459 if (ref
->lf
== NULL
&& lf
)
1460 unlock_err
= got_lockfile_unlock(lf
, -1);
1464 return err
? err
: unlock_err
;
1467 const struct got_error
*
1468 got_ref_delete(struct got_reference
*ref
, struct got_repository
*repo
)
1470 const struct got_error
*err
= NULL
;
1471 struct got_reference
*ref2
;
1473 if (ref
->flags
& GOT_REF_IS_PACKED
) {
1474 err
= delete_packed_ref(ref
, repo
);
1478 err
= got_ref_open(&ref2
, repo
, got_ref_get_name(ref
), 0);
1480 if (err
->code
== GOT_ERR_NOT_REF
)
1485 err
= delete_loose_ref(ref2
, repo
);
1486 got_ref_close(ref2
);
1489 err
= delete_loose_ref(ref
, repo
);
1493 err
= got_ref_open(&ref2
, repo
, got_ref_get_name(ref
), 0);
1495 if (err
->code
== GOT_ERR_NOT_REF
)
1500 err
= delete_packed_ref(ref2
, repo
);
1501 got_ref_close(ref2
);
1506 const struct got_error
*
1507 got_ref_unlock(struct got_reference
*ref
)
1509 const struct got_error
*err
;
1510 err
= got_lockfile_unlock(ref
->lf
, -1);
1515 struct got_reflist_object_id_map
{
1516 struct got_object_idset
*idset
;
1519 struct got_reflist_object_id_map_entry
{
1520 struct got_reflist_head refs
;
1523 static const struct got_error
*
1524 add_object_id_map_entry(struct got_object_idset
*idset
,
1525 struct got_object_id
*id
, struct got_reflist_entry
*re
)
1527 const struct got_error
*err
= NULL
;
1528 struct got_reflist_object_id_map_entry
*ent
;
1529 struct got_reflist_entry
*new;
1531 ent
= got_object_idset_get(idset
, id
);
1533 ent
= malloc(sizeof(*ent
));
1535 return got_error_from_errno("malloc");
1537 TAILQ_INIT(&ent
->refs
);
1538 err
= got_object_idset_add(idset
, id
, ent
);
1545 err
= got_reflist_entry_dup(&new, re
);
1549 TAILQ_INSERT_TAIL(&ent
->refs
, new, entry
);
1553 const struct got_error
*
1554 got_reflist_object_id_map_create(struct got_reflist_object_id_map
**map
,
1555 struct got_reflist_head
*refs
, struct got_repository
*repo
)
1557 const struct got_error
*err
= NULL
;
1558 struct got_object_idset
*idset
;
1559 struct got_object_id
*id
= NULL
;
1560 struct got_reflist_entry
*re
;
1562 idset
= got_object_idset_alloc();
1564 return got_error_from_errno("got_object_idset_alloc");
1566 *map
= malloc(sizeof(**map
));
1568 got_object_idset_free(idset
);
1569 return got_error_from_errno("malloc");
1571 (*map
)->idset
= idset
;
1573 TAILQ_FOREACH(re
, refs
, entry
) {
1574 struct got_tag_object
*tag
= NULL
;
1576 err
= got_ref_resolve(&id
, repo
, re
->ref
);
1580 err
= add_object_id_map_entry(idset
, id
, re
);
1584 if (strstr(got_ref_get_name(re
->ref
), "/tags/") == NULL
) {
1590 err
= got_object_open_as_tag(&tag
, repo
, id
);
1592 if (err
->code
!= GOT_ERR_OBJ_TYPE
)
1594 /* Ref points at something other than a tag. */
1602 err
= add_object_id_map_entry(idset
,
1603 got_object_tag_get_object_id(tag
), re
);
1604 got_object_tag_close(tag
);
1614 got_reflist_object_id_map_free(*map
);
1620 struct got_reflist_head
*
1621 got_reflist_object_id_map_lookup(struct got_reflist_object_id_map
*map
,
1622 struct got_object_id
*id
)
1624 struct got_reflist_object_id_map_entry
*ent
;
1625 ent
= got_object_idset_get(map
->idset
, id
);
1631 static const struct got_error
*
1632 free_id_map_entry(struct got_object_id
*id
, void *data
, void *arg
)
1634 struct got_reflist_object_id_map_entry
*ent
= data
;
1636 got_ref_list_free(&ent
->refs
);
1642 got_reflist_object_id_map_free(struct got_reflist_object_id_map
*map
)
1644 got_object_idset_for_each(map
->idset
, free_id_map_entry
, NULL
);
1645 got_object_idset_free(map
->idset
);