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 <sys/types.h>
18 #include <sys/queue.h>
33 #include "got_compat.h"
35 #include "got_error.h"
36 #include "got_object.h"
37 #include "got_repository.h"
38 #include "got_reference.h"
39 #include "got_opentemp.h"
42 #include "got_lib_sha1.h"
43 #include "got_lib_delta.h"
44 #include "got_lib_inflate.h"
45 #include "got_lib_object.h"
46 #include "got_lib_object_idset.h"
47 #include "got_lib_lockfile.h"
50 #define nitems(_a) (sizeof(_a) / sizeof((_a)[0]))
53 #define GOT_REF_HEADS "heads"
54 #define GOT_REF_TAGS "tags"
55 #define GOT_REF_REMOTES "remotes"
58 * We do not resolve tags yet, and don't yet care about sorting refs either,
59 * so packed-refs files we write contain a minimal header which disables all
60 * packed-refs "traits" supported by Git.
62 #define GOT_PACKED_REFS_HEADER "# pack-refs with:"
64 /* A symbolic reference. */
70 #define GOT_REF_RECURSE_MAX 20
72 /* A non-symbolic reference (there is no better designation). */
75 u_int8_t sha1
[SHA1_DIGEST_LENGTH
];
78 /* A reference which points to an arbitrary object. */
79 struct got_reference
{
81 #define GOT_REF_IS_SYMBOLIC 0x01
82 #define GOT_REF_IS_PACKED 0x02
86 struct got_symref symref
;
89 struct got_lockfile
*lf
;
92 /* Cached timestamp for got_ref_cmp_by_commit_timestamp_descending() */
93 time_t committer_time
;
96 static const struct got_error
*
97 alloc_ref(struct got_reference
**ref
, const char *name
,
98 struct got_object_id
*id
, int flags
, time_t mtime
)
100 const struct got_error
*err
= NULL
;
102 *ref
= calloc(1, sizeof(**ref
));
104 return got_error_from_errno("calloc");
106 memcpy((*ref
)->ref
.ref
.sha1
, id
->sha1
, sizeof((*ref
)->ref
.ref
.sha1
));
107 (*ref
)->flags
= flags
;
108 (*ref
)->ref
.ref
.name
= strdup(name
);
109 (*ref
)->mtime
= mtime
;
110 if ((*ref
)->ref
.ref
.name
== NULL
) {
111 err
= got_error_from_errno("strdup");
118 static const struct got_error
*
119 alloc_symref(struct got_reference
**ref
, const char *name
,
120 const char *target_ref
, int flags
)
122 const struct got_error
*err
= NULL
;
124 *ref
= calloc(1, sizeof(**ref
));
126 return got_error_from_errno("calloc");
128 (*ref
)->flags
= GOT_REF_IS_SYMBOLIC
| flags
;
129 (*ref
)->ref
.symref
.name
= strdup(name
);
130 if ((*ref
)->ref
.symref
.name
== NULL
) {
131 err
= got_error_from_errno("strdup");
136 (*ref
)->ref
.symref
.ref
= strdup(target_ref
);
137 if ((*ref
)->ref
.symref
.ref
== NULL
) {
138 err
= got_error_from_errno("strdup");
145 static const struct got_error
*
146 parse_symref(struct got_reference
**ref
, const char *name
, const char *line
)
149 return got_error(GOT_ERR_BAD_REF_DATA
);
151 return alloc_symref(ref
, name
, line
, 0);
154 static const struct got_error
*
155 parse_ref_line(struct got_reference
**ref
, const char *name
, const char *line
,
158 struct got_object_id id
;
160 if (strncmp(line
, "ref: ", 5) == 0) {
162 return parse_symref(ref
, name
, line
);
165 if (!got_parse_sha1_digest(id
.sha1
, line
))
166 return got_error(GOT_ERR_BAD_REF_DATA
);
168 return alloc_ref(ref
, name
, &id
, 0, mtime
);
171 static const struct got_error
*
172 parse_ref_file(struct got_reference
**ref
, const char *name
,
173 const char *absname
, const char *abspath
, int lock
)
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
);
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
);
272 got_ref_name_is_valid(const char *name
)
275 const char forbidden
[] = { ' ', '~', '^', ':', '?', '*', '[' , '\\' };
276 const char *forbidden_seq
[] = { "//", "..", "@{" };
277 const char *lfs
= GOT_LOCKFILE_SUFFIX
;
278 const size_t lfs_len
= sizeof(GOT_LOCKFILE_SUFFIX
) - 1;
281 if (name
[0] == '@' && name
[1] == '\0')
286 if (seg
[0] == '\0' || seg
[0] == '.' || seg
[0] == '/')
289 for (i
= 0; i
< nitems(forbidden
); i
++) {
290 if (*s
== forbidden
[i
])
293 for (i
= 0; i
< nitems(forbidden_seq
); i
++) {
294 if (s
[0] == forbidden_seq
[i
][0] &&
295 s
[1] == forbidden_seq
[i
][1])
298 if (iscntrl((unsigned char)s
[0]))
300 if (s
[0] == '.' && s
[1] == '\0')
303 const char *nextseg
= s
+ 1;
304 if (nextseg
[0] == '\0' || nextseg
[0] == '.' ||
307 if (seg
<= s
- lfs_len
&&
308 strncmp(s
- lfs_len
, lfs
, lfs_len
) == 0)
315 if (seg
<= s
- lfs_len
&&
316 strncmp(s
- lfs_len
, lfs
, lfs_len
) == 0)
322 const struct got_error
*
323 got_ref_alloc(struct got_reference
**ref
, const char *name
,
324 struct got_object_id
*id
)
326 if (!got_ref_name_is_valid(name
))
327 return got_error_path(name
, GOT_ERR_BAD_REF_NAME
);
329 return alloc_ref(ref
, name
, id
, 0, 0);
332 const struct got_error
*
333 got_ref_alloc_symref(struct got_reference
**ref
, const char *name
,
334 struct got_reference
*target_ref
)
336 if (!got_ref_name_is_valid(name
))
337 return got_error_path(name
, GOT_ERR_BAD_REF_NAME
);
339 return alloc_symref(ref
, name
, got_ref_get_name(target_ref
), 0);
342 static const struct got_error
*
343 parse_packed_ref_line(struct got_reference
**ref
, const char *abs_refname
,
344 const char *line
, time_t mtime
)
346 struct got_object_id id
;
351 if (line
[0] == '#' || line
[0] == '^')
354 if (!got_parse_sha1_digest(id
.sha1
, line
))
355 return got_error(GOT_ERR_BAD_REF_DATA
);
358 if (strcmp(line
+ SHA1_DIGEST_STRING_LENGTH
, abs_refname
) != 0)
362 name
= line
+ SHA1_DIGEST_STRING_LENGTH
;
364 return alloc_ref(ref
, name
, &id
, GOT_REF_IS_PACKED
, mtime
);
367 static const struct got_error
*
368 open_packed_ref(struct got_reference
**ref
, FILE *f
, const char **subdirs
,
369 int nsubdirs
, const char *refname
, time_t mtime
)
371 const struct got_error
*err
= NULL
;
376 int i
, ref_is_absolute
= (strncmp(refname
, "refs/", 5) == 0);
381 abs_refname
= (char *)refname
;
383 linelen
= getline(&line
, &linesize
, f
);
387 err
= got_ferror(f
, GOT_ERR_BAD_REF_DATA
);
390 if (linelen
> 0 && line
[linelen
- 1] == '\n')
391 line
[linelen
- 1] = '\0';
392 for (i
= 0; i
< nsubdirs
; i
++) {
393 if (!ref_is_absolute
&&
394 asprintf(&abs_refname
, "refs/%s/%s", subdirs
[i
],
396 return got_error_from_errno("asprintf");
397 err
= parse_packed_ref_line(ref
, abs_refname
, line
,
399 if (!ref_is_absolute
)
401 if (err
|| *ref
!= NULL
)
406 } while (*ref
== NULL
);
412 static const struct got_error
*
413 open_ref(struct got_reference
**ref
, const char *path_refs
, const char *subdir
,
414 const char *name
, int lock
)
416 const struct got_error
*err
= NULL
;
418 char *absname
= NULL
;
419 int ref_is_absolute
= (strncmp(name
, "refs/", 5) == 0);
420 int ref_is_well_known
= (subdir
[0] == '\0' && is_well_known_ref(name
));
424 if (!got_ref_name_is_valid(name
))
425 return got_error_path(name
, GOT_ERR_BAD_REF_NAME
);
427 if (ref_is_absolute
|| ref_is_well_known
) {
428 if (asprintf(&path
, "%s/%s", path_refs
, name
) == -1)
429 return got_error_from_errno("asprintf");
430 absname
= (char *)name
;
432 if (asprintf(&path
, "%s/%s%s%s", path_refs
, subdir
,
433 subdir
[0] ? "/" : "", name
) == -1)
434 return got_error_from_errno("asprintf");
436 if (asprintf(&absname
, "refs/%s%s%s",
437 subdir
, subdir
[0] ? "/" : "", name
) == -1) {
438 err
= got_error_from_errno("asprintf");
443 err
= parse_ref_file(ref
, name
, absname
, path
, lock
);
445 if (!ref_is_absolute
&& !ref_is_well_known
)
451 const struct got_error
*
452 got_ref_open(struct got_reference
**ref
, struct got_repository
*repo
,
453 const char *refname
, int lock
)
455 const struct got_error
*err
= NULL
;
456 char *path_refs
= NULL
;
457 const char *subdirs
[] = {
458 GOT_REF_HEADS
, GOT_REF_TAGS
, GOT_REF_REMOTES
461 int well_known
= is_well_known_ref(refname
);
462 struct got_lockfile
*lf
= NULL
;
466 path_refs
= get_refs_dir_path(repo
, refname
);
467 if (path_refs
== NULL
) {
468 err
= got_error_from_errno2("get_refs_dir_path", refname
);
473 err
= open_ref(ref
, path_refs
, "", refname
, lock
);
475 char *packed_refs_path
;
478 /* Search on-disk refs before packed refs! */
479 for (i
= 0; i
< nitems(subdirs
); i
++) {
480 err
= open_ref(ref
, path_refs
, subdirs
[i
], refname
,
482 if ((err
&& err
->code
!= GOT_ERR_NOT_REF
) || *ref
)
486 packed_refs_path
= got_repo_get_path_packed_refs(repo
);
487 if (packed_refs_path
== NULL
) {
488 err
= got_error_from_errno(
489 "got_repo_get_path_packed_refs");
494 err
= got_lockfile_lock(&lf
, packed_refs_path
, -1);
498 f
= fopen(packed_refs_path
, "rbe");
499 free(packed_refs_path
);
502 if (fstat(fileno(f
), &sb
) == -1) {
503 err
= got_error_from_errno2("fstat",
507 err
= open_packed_ref(ref
, f
, subdirs
, nitems(subdirs
),
508 refname
, sb
.st_mtime
);
510 if (fclose(f
) == EOF
) {
511 err
= got_error_from_errno("fclose");
520 if (!err
&& *ref
== NULL
)
521 err
= got_error_not_ref(refname
);
523 got_lockfile_unlock(lf
, -1);
529 got_ref_close(struct got_reference
*ref
)
531 if (ref
->flags
& GOT_REF_IS_SYMBOLIC
) {
532 free(ref
->ref
.symref
.name
);
533 free(ref
->ref
.symref
.ref
);
535 free(ref
->ref
.ref
.name
);
539 struct got_reference
*
540 got_ref_dup(struct got_reference
*ref
)
542 struct got_reference
*ret
;
544 ret
= calloc(1, sizeof(*ret
));
548 ret
->flags
= ref
->flags
;
549 if (ref
->flags
& GOT_REF_IS_SYMBOLIC
) {
550 ret
->ref
.symref
.name
= strdup(ref
->ref
.symref
.name
);
551 if (ret
->ref
.symref
.name
== NULL
) {
555 ret
->ref
.symref
.ref
= strdup(ref
->ref
.symref
.ref
);
556 if (ret
->ref
.symref
.ref
== NULL
) {
557 free(ret
->ref
.symref
.name
);
562 ret
->ref
.ref
.name
= strdup(ref
->ref
.ref
.name
);
563 if (ret
->ref
.ref
.name
== NULL
) {
567 memcpy(ret
->ref
.ref
.sha1
, ref
->ref
.ref
.sha1
,
568 sizeof(ret
->ref
.ref
.sha1
));
574 const struct got_error
*
575 got_reflist_entry_dup(struct got_reflist_entry
**newp
,
576 struct got_reflist_entry
*re
)
578 const struct got_error
*err
= NULL
;
579 struct got_reflist_entry
*new;
583 new = malloc(sizeof(*new));
585 return got_error_from_errno("malloc");
587 new->ref
= got_ref_dup(re
->ref
);
588 if (new->ref
== NULL
) {
589 err
= got_error_from_errno("got_ref_dup");
598 const struct got_error
*
599 got_ref_resolve_symbolic(struct got_reference
**resolved
,
600 struct got_repository
*repo
, struct got_reference
*ref
)
602 struct got_reference
*nextref
;
603 const struct got_error
*err
;
605 err
= got_ref_open(&nextref
, repo
, ref
->ref
.symref
.ref
, 0);
609 if (nextref
->flags
& GOT_REF_IS_SYMBOLIC
)
610 err
= got_ref_resolve_symbolic(resolved
, repo
, nextref
);
612 *resolved
= got_ref_dup(nextref
);
614 got_ref_close(nextref
);
618 static const struct got_error
*
619 ref_resolve(struct got_object_id
**id
, struct got_repository
*repo
,
620 struct got_reference
*ref
, int recursion
)
622 const struct got_error
*err
;
625 return got_error_msg(GOT_ERR_RECURSION
,
626 "reference recursion limit reached");
628 if (ref
->flags
& GOT_REF_IS_SYMBOLIC
) {
629 struct got_reference
*resolved
= NULL
;
630 err
= got_ref_resolve_symbolic(&resolved
, repo
, ref
);
632 err
= ref_resolve(id
, repo
, resolved
, --recursion
);
634 got_ref_close(resolved
);
638 *id
= calloc(1, sizeof(**id
));
640 return got_error_from_errno("calloc");
641 memcpy((*id
)->sha1
, ref
->ref
.ref
.sha1
, sizeof((*id
)->sha1
));
645 const struct got_error
*
646 got_ref_resolve(struct got_object_id
**id
, struct got_repository
*repo
,
647 struct got_reference
*ref
)
649 return ref_resolve(id
, repo
, ref
, GOT_REF_RECURSE_MAX
);
653 got_ref_to_str(struct got_reference
*ref
)
657 if (ref
->flags
& GOT_REF_IS_SYMBOLIC
)
658 return strdup(ref
->ref
.symref
.ref
);
660 str
= malloc(SHA1_DIGEST_STRING_LENGTH
);
664 if (got_sha1_digest_to_str(ref
->ref
.ref
.sha1
, str
,
665 SHA1_DIGEST_STRING_LENGTH
) == NULL
) {
674 got_ref_get_name(struct got_reference
*ref
)
676 if (ref
->flags
& GOT_REF_IS_SYMBOLIC
)
677 return ref
->ref
.symref
.name
;
679 return ref
->ref
.ref
.name
;
683 got_ref_get_symref_target(struct got_reference
*ref
)
685 if (ref
->flags
& GOT_REF_IS_SYMBOLIC
)
686 return ref
->ref
.symref
.ref
;
692 got_ref_get_mtime(struct got_reference
*ref
)
697 const struct got_error
*
698 got_ref_cmp_by_name(void *arg
, int *cmp
, struct got_reference
*re1
,
699 struct got_reference
* re2
)
701 const char *name1
= got_ref_get_name(re1
);
702 const char *name2
= got_ref_get_name(re2
);
704 *cmp
= got_path_cmp(name1
, name2
, strlen(name1
), strlen(name2
));
708 const struct got_error
*
709 got_ref_cmp_tags(void *arg
, int *cmp
, struct got_reference
*ref1
,
710 struct got_reference
*ref2
)
712 const struct got_error
*err
= NULL
;
713 struct got_repository
*repo
= arg
;
714 struct got_object_id
*id1
, *id2
= NULL
;
715 struct got_tag_object
*tag1
= NULL
, *tag2
= NULL
;
716 struct got_commit_object
*commit1
= NULL
, *commit2
= NULL
;
721 err
= got_ref_resolve(&id1
, repo
, ref1
);
724 err
= got_object_open_as_tag(&tag1
, repo
, id1
);
726 if (err
->code
!= GOT_ERR_OBJ_TYPE
)
728 /* "lightweight" tag */
729 err
= got_object_open_as_commit(&commit1
, repo
, id1
);
732 time1
= got_object_commit_get_committer_time(commit1
);
734 time1
= got_object_tag_get_tagger_time(tag1
);
736 err
= got_ref_resolve(&id2
, repo
, ref2
);
739 err
= got_object_open_as_tag(&tag2
, repo
, id2
);
741 if (err
->code
!= GOT_ERR_OBJ_TYPE
)
743 /* "lightweight" tag */
744 err
= got_object_open_as_commit(&commit2
, repo
, id2
);
747 time2
= got_object_commit_get_committer_time(commit2
);
749 time2
= got_object_tag_get_tagger_time(tag2
);
751 /* Put latest tags first. */
754 else if (time1
> time2
)
757 err
= got_ref_cmp_by_name(NULL
, cmp
, ref2
, ref1
);
762 got_object_tag_close(tag1
);
764 got_object_tag_close(tag2
);
766 got_object_commit_close(commit1
);
768 got_object_commit_close(commit2
);
772 static const struct got_error
*
773 get_committer_time(struct got_reference
*ref
, struct got_repository
*repo
)
775 const struct got_error
*err
= NULL
;
777 struct got_commit_object
*commit
= NULL
;
778 struct got_tag_object
*tag
= NULL
;
779 struct got_object_id
*id
= NULL
;
781 err
= got_ref_resolve(&id
, repo
, ref
);
785 err
= got_object_get_type(&obj_type
, repo
, id
);
790 case GOT_OBJ_TYPE_COMMIT
:
791 err
= got_object_open_as_commit(&commit
, repo
, id
);
794 ref
->committer_time
=
795 got_object_commit_get_committer_time(commit
);
797 case GOT_OBJ_TYPE_TAG
:
798 err
= got_object_open_as_tag(&tag
, repo
, id
);
801 ref
->committer_time
= got_object_tag_get_tagger_time(tag
);
804 /* best effort for other object types */
805 ref
->committer_time
= got_ref_get_mtime(ref
);
811 got_object_commit_close(commit
);
813 got_object_tag_close(tag
);
817 const struct got_error
*
818 got_ref_cmp_by_commit_timestamp_descending(void *arg
, int *cmp
,
819 struct got_reference
*ref1
, struct got_reference
*ref2
)
821 const struct got_error
*err
= NULL
;
822 struct got_repository
*repo
= arg
;
826 if (ref1
->committer_time
== 0) {
827 err
= get_committer_time(ref1
, repo
);
831 if (ref2
->committer_time
== 0) {
832 err
= get_committer_time(ref2
, repo
);
837 if (ref1
->committer_time
< ref2
->committer_time
)
839 else if (ref2
->committer_time
< ref1
->committer_time
)
842 return got_ref_cmp_by_name(arg
, cmp
, ref1
, ref2
);
847 const struct got_error
*
848 got_reflist_insert(struct got_reflist_entry
**newp
,
849 struct got_reflist_head
*refs
, struct got_reference
*ref
,
850 got_ref_cmp_cb cmp_cb
, void *cmp_arg
)
852 const struct got_error
*err
;
853 struct got_reflist_entry
*new, *re
;
858 new = malloc(sizeof(*new));
860 return got_error_from_errno("malloc");
865 * We must de-duplicate entries on insert because packed-refs may
866 * contain redundant entries. On-disk refs take precedence.
867 * This code assumes that on-disk revs are read before packed-refs.
868 * We're iterating the list anyway, so insert elements sorted by name.
870 * Many callers will provide paths in a somewhat sorted order.
871 * Iterating backwards from the tail of the list should be more
872 * efficient than traversing through the entire list each time
873 * an element is inserted.
875 re
= TAILQ_LAST(refs
, got_reflist_head
);
877 err
= (*cmp_cb
)(cmp_arg
, &cmp
, re
->ref
, new->ref
);
885 } else if (cmp
< 0) {
886 TAILQ_INSERT_AFTER(refs
, re
, new, entry
);
889 re
= TAILQ_PREV(re
, got_reflist_head
, entry
);
892 TAILQ_INSERT_HEAD(refs
, new, entry
);
896 const struct got_error
*
897 got_reflist_sort(struct got_reflist_head
*refs
,
898 got_ref_cmp_cb cmp_cb
, void *cmp_arg
)
900 const struct got_error
*err
= NULL
;
901 struct got_reflist_entry
*re
, *tmp
, *new;
902 struct got_reflist_head sorted
;
906 TAILQ_FOREACH_SAFE(re
, refs
, entry
, tmp
) {
907 struct got_reference
*ref
= re
->ref
;
908 TAILQ_REMOVE(refs
, re
, entry
);
910 err
= got_reflist_insert(&new, &sorted
, ref
, cmp_cb
, cmp_arg
);
911 if (err
|| new == NULL
/* duplicate */)
917 TAILQ_CONCAT(refs
, &sorted
, entry
);
921 static const struct got_error
*
922 gather_on_disk_refs(struct got_reflist_head
*refs
, const char *path_refs
,
923 const char *subdir
, struct got_repository
*repo
,
924 got_ref_cmp_cb cmp_cb
, void *cmp_arg
)
926 const struct got_error
*err
= NULL
;
930 while (subdir
[0] == '/')
933 if (asprintf(&path_subdir
, "%s/%s", path_refs
, subdir
) == -1)
934 return got_error_from_errno("asprintf");
936 d
= opendir(path_subdir
);
942 struct got_reference
*ref
;
950 if (strcmp(dent
->d_name
, ".") == 0 ||
951 strcmp(dent
->d_name
, "..") == 0)
954 err
= got_path_dirent_type(&type
, path_subdir
, dent
);
960 err
= open_ref(&ref
, path_refs
, subdir
, dent
->d_name
,
965 struct got_reflist_entry
*new;
966 err
= got_reflist_insert(&new, refs
, ref
,
968 if (err
|| new == NULL
/* duplicate */)
975 if (asprintf(&child
, "%s%s%s", subdir
,
976 subdir
[0] == '\0' ? "" : "/", dent
->d_name
) == -1) {
977 err
= got_error_from_errno("asprintf");
980 err
= gather_on_disk_refs(refs
, path_refs
, child
, repo
,
995 const struct got_error
*
996 got_ref_list(struct got_reflist_head
*refs
, struct got_repository
*repo
,
997 const char *ref_namespace
, got_ref_cmp_cb cmp_cb
, void *cmp_arg
)
999 const struct got_error
*err
;
1000 char *packed_refs_path
, *path_refs
= NULL
;
1001 char *abs_namespace
= NULL
, *buf
= NULL
;
1002 const char *ondisk_ref_namespace
= NULL
;
1005 struct got_reference
*ref
;
1006 struct got_reflist_entry
*new;
1008 if (ref_namespace
== NULL
|| ref_namespace
[0] == '\0') {
1009 path_refs
= get_refs_dir_path(repo
, GOT_REF_HEAD
);
1010 if (path_refs
== NULL
) {
1011 err
= got_error_from_errno("get_refs_dir_path");
1014 err
= open_ref(&ref
, path_refs
, "", GOT_REF_HEAD
, 0);
1017 err
= got_reflist_insert(&new, refs
, ref
, cmp_cb
, cmp_arg
);
1018 if (err
|| new == NULL
/* duplicate */)
1020 if (err
&& err
->code
!= GOT_ERR_NOT_REF
)
1023 /* Try listing a single reference. */
1024 const char *refname
= ref_namespace
;
1025 path_refs
= get_refs_dir_path(repo
, refname
);
1026 if (path_refs
== NULL
) {
1027 err
= got_error_from_errno("get_refs_dir_path");
1030 err
= open_ref(&ref
, path_refs
, "", refname
, 0);
1032 if (err
->code
!= GOT_ERR_NOT_REF
)
1034 /* Try to look up references in a given namespace. */
1036 err
= got_reflist_insert(&new, refs
, ref
,
1038 if (err
|| new == NULL
/* duplicate */)
1044 if (ref_namespace
) {
1046 /* Canonicalize the path to eliminate double-slashes if any. */
1047 if (asprintf(&abs_namespace
, "/%s", ref_namespace
) == -1) {
1048 err
= got_error_from_errno("asprintf");
1051 len
= strlen(abs_namespace
) + 1;
1054 err
= got_error_from_errno("malloc");
1057 err
= got_canonpath(abs_namespace
, buf
, len
);
1060 ondisk_ref_namespace
= buf
;
1061 while (ondisk_ref_namespace
[0] == '/')
1062 ondisk_ref_namespace
++;
1063 if (strncmp(ondisk_ref_namespace
, "refs/", 5) == 0)
1064 ondisk_ref_namespace
+= 5;
1065 else if (strcmp(ondisk_ref_namespace
, "refs") == 0)
1066 ondisk_ref_namespace
= "";
1069 /* Gather on-disk refs before parsing packed-refs. */
1071 path_refs
= get_refs_dir_path(repo
, "");
1072 if (path_refs
== NULL
) {
1073 err
= got_error_from_errno("get_refs_dir_path");
1076 err
= gather_on_disk_refs(refs
, path_refs
,
1077 ondisk_ref_namespace
? ondisk_ref_namespace
: "", repo
,
1083 * The packed-refs file may contain redundant entries, in which
1084 * case on-disk refs take precedence.
1086 packed_refs_path
= got_repo_get_path_packed_refs(repo
);
1087 if (packed_refs_path
== NULL
) {
1088 err
= got_error_from_errno("got_repo_get_path_packed_refs");
1092 f
= fopen(packed_refs_path
, "re");
1093 free(packed_refs_path
);
1095 size_t linesize
= 0;
1099 if (fstat(fileno(f
), &sb
) == -1) {
1100 err
= got_error_from_errno2("fstat", packed_refs_path
);
1104 linelen
= getline(&line
, &linesize
, f
);
1105 if (linelen
== -1) {
1108 err
= got_ferror(f
, GOT_ERR_BAD_REF_DATA
);
1111 if (linelen
> 0 && line
[linelen
- 1] == '\n')
1112 line
[linelen
- 1] = '\0';
1113 err
= parse_packed_ref_line(&ref
, NULL
, line
,
1118 if (ref_namespace
) {
1120 name
= got_ref_get_name(ref
);
1121 if (!got_path_is_child(name
,
1123 strlen(ref_namespace
))) {
1128 err
= got_reflist_insert(&new, refs
, ref
,
1130 if (err
|| new == NULL
/* duplicate */)
1138 free(abs_namespace
);
1142 if (f
&& fclose(f
) == EOF
&& err
== NULL
)
1143 err
= got_error_from_errno("fclose");
1148 got_ref_list_free(struct got_reflist_head
*refs
)
1150 struct got_reflist_entry
*re
;
1152 while ((re
= TAILQ_FIRST(refs
))) {
1153 TAILQ_REMOVE(refs
, re
, entry
);
1154 got_ref_close(re
->ref
);
1161 got_ref_is_symbolic(struct got_reference
*ref
)
1163 return (ref
->flags
& GOT_REF_IS_SYMBOLIC
);
1166 const struct got_error
*
1167 got_ref_change_ref(struct got_reference
*ref
, struct got_object_id
*id
)
1169 if (ref
->flags
& GOT_REF_IS_SYMBOLIC
)
1170 return got_error(GOT_ERR_BAD_REF_TYPE
);
1172 memcpy(ref
->ref
.ref
.sha1
, id
->sha1
, sizeof(ref
->ref
.ref
.sha1
));
1176 const struct got_error
*
1177 got_ref_change_symref(struct got_reference
*ref
, const char *refname
)
1181 if ((ref
->flags
& GOT_REF_IS_SYMBOLIC
) == 0)
1182 return got_error(GOT_ERR_BAD_REF_TYPE
);
1184 new_name
= strdup(refname
);
1185 if (new_name
== NULL
)
1186 return got_error_from_errno("strdup");
1188 free(ref
->ref
.symref
.ref
);
1189 ref
->ref
.symref
.ref
= new_name
;
1193 const struct got_error
*
1194 got_ref_change_symref_to_ref(struct got_reference
*symref
,
1195 struct got_object_id
*id
)
1197 if ((symref
->flags
& GOT_REF_IS_SYMBOLIC
) == 0)
1198 return got_error(GOT_ERR_BAD_REF_TYPE
);
1200 symref
->ref
.ref
.name
= symref
->ref
.symref
.name
;
1201 memcpy(symref
->ref
.ref
.sha1
, id
->sha1
, SHA1_DIGEST_LENGTH
);
1202 symref
->flags
&= ~GOT_REF_IS_SYMBOLIC
;
1206 const struct got_error
*
1207 got_ref_write(struct got_reference
*ref
, struct got_repository
*repo
)
1209 const struct got_error
*err
= NULL
, *unlock_err
= NULL
;
1210 const char *name
= got_ref_get_name(ref
);
1211 char *path_refs
= NULL
, *path
= NULL
, *tmppath
= NULL
;
1212 struct got_lockfile
*lf
= NULL
;
1217 path_refs
= get_refs_dir_path(repo
, name
);
1218 if (path_refs
== NULL
) {
1219 err
= got_error_from_errno2("get_refs_dir_path", name
);
1223 if (asprintf(&path
, "%s/%s", path_refs
, name
) == -1) {
1224 err
= got_error_from_errno("asprintf");
1228 err
= got_opentemp_named(&tmppath
, &f
, path
);
1231 if (!(err
->code
== GOT_ERR_ERRNO
&& errno
== ENOENT
))
1233 err
= got_path_dirname(&parent
, path
);
1236 err
= got_path_mkdir(parent
);
1240 err
= got_opentemp_named(&tmppath
, &f
, path
);
1245 if (ref
->flags
& GOT_REF_IS_SYMBOLIC
) {
1246 n
= fprintf(f
, "ref: %s\n", ref
->ref
.symref
.ref
);
1247 if (n
!= strlen(ref
->ref
.symref
.ref
) + 6) {
1248 err
= got_ferror(f
, GOT_ERR_IO
);
1252 char hex
[SHA1_DIGEST_STRING_LENGTH
];
1253 if (got_sha1_digest_to_str(ref
->ref
.ref
.sha1
, hex
,
1254 sizeof(hex
)) == NULL
) {
1255 err
= got_error(GOT_ERR_BAD_REF_DATA
);
1258 n
= fprintf(f
, "%s\n", hex
);
1259 if (n
!= sizeof(hex
)) {
1260 err
= got_ferror(f
, GOT_ERR_IO
);
1265 if (ref
->lf
== NULL
) {
1266 err
= got_lockfile_lock(&lf
, path
, -1);
1271 /* XXX: check if old content matches our expectations? */
1273 if (stat(path
, &sb
) != 0) {
1274 if (errno
!= ENOENT
) {
1275 err
= got_error_from_errno2("stat", path
);
1278 sb
.st_mode
= GOT_DEFAULT_FILE_MODE
;
1281 if (fchmod(fileno(f
), sb
.st_mode
) != 0) {
1282 err
= got_error_from_errno2("fchmod", tmppath
);
1286 if (rename(tmppath
, path
) != 0) {
1287 err
= got_error_from_errno3("rename", tmppath
, path
);
1293 if (stat(path
, &sb
) == -1) {
1294 err
= got_error_from_errno2("stat", path
);
1297 ref
->mtime
= sb
.st_mtime
;
1299 if (ref
->lf
== NULL
&& lf
)
1300 unlock_err
= got_lockfile_unlock(lf
, -1);
1302 if (fclose(f
) == EOF
&& err
== NULL
)
1303 err
= got_error_from_errno("fclose");
1308 if (unlink(tmppath
) != 0 && err
== NULL
)
1309 err
= got_error_from_errno2("unlink", tmppath
);
1312 return err
? err
: unlock_err
;
1315 static const struct got_error
*
1316 delete_packed_ref(struct got_reference
*delref
, struct got_repository
*repo
)
1318 const struct got_error
*err
= NULL
, *unlock_err
= NULL
;
1319 struct got_lockfile
*lf
= NULL
;
1320 FILE *f
= NULL
, *tmpf
= NULL
;
1321 char *line
= NULL
, *packed_refs_path
, *tmppath
= NULL
;
1322 size_t linesize
= 0;
1323 struct got_reflist_head refs
;
1324 int found_delref
= 0;
1326 /* The packed-refs file does not cotain symbolic references. */
1327 if (delref
->flags
& GOT_REF_IS_SYMBOLIC
)
1328 return got_error(GOT_ERR_BAD_REF_DATA
);
1332 packed_refs_path
= got_repo_get_path_packed_refs(repo
);
1333 if (packed_refs_path
== NULL
)
1334 return got_error_from_errno("got_repo_get_path_packed_refs");
1336 err
= got_opentemp_named(&tmppath
, &tmpf
, packed_refs_path
);
1340 if (delref
->lf
== NULL
) {
1341 err
= got_lockfile_lock(&lf
, packed_refs_path
, -1);
1346 f
= fopen(packed_refs_path
, "re");
1348 err
= got_error_from_errno2("fopen", packed_refs_path
);
1353 struct got_reference
*ref
;
1354 struct got_reflist_entry
*new;
1356 linelen
= getline(&line
, &linesize
, f
);
1357 if (linelen
== -1) {
1360 err
= got_ferror(f
, GOT_ERR_BAD_REF_DATA
);
1363 if (linelen
> 0 && line
[linelen
- 1] == '\n')
1364 line
[linelen
- 1] = '\0';
1365 err
= parse_packed_ref_line(&ref
, NULL
, line
, 0);
1371 if (strcmp(ref
->ref
.ref
.name
, delref
->ref
.ref
.name
) == 0 &&
1372 memcmp(ref
->ref
.ref
.sha1
, delref
->ref
.ref
.sha1
,
1373 sizeof(delref
->ref
.ref
.sha1
)) == 0) {
1379 err
= got_reflist_insert(&new, &refs
, ref
,
1380 got_ref_cmp_by_name
, NULL
);
1381 if (err
|| new == NULL
/* duplicate */)
1388 struct got_reflist_entry
*re
;
1392 n
= fprintf(tmpf
, "%s\n", GOT_PACKED_REFS_HEADER
);
1393 if (n
!= sizeof(GOT_PACKED_REFS_HEADER
)) {
1394 err
= got_ferror(f
, GOT_ERR_IO
);
1398 TAILQ_FOREACH(re
, &refs
, entry
) {
1399 char hex
[SHA1_DIGEST_STRING_LENGTH
];
1401 if (got_sha1_digest_to_str(re
->ref
->ref
.ref
.sha1
, hex
,
1402 sizeof(hex
)) == NULL
) {
1403 err
= got_error(GOT_ERR_BAD_REF_DATA
);
1406 n
= fprintf(tmpf
, "%s ", hex
);
1407 if (n
!= sizeof(hex
)) {
1408 err
= got_ferror(f
, GOT_ERR_IO
);
1411 n
= fprintf(tmpf
, "%s\n", re
->ref
->ref
.ref
.name
);
1412 if (n
!= strlen(re
->ref
->ref
.ref
.name
) + 1) {
1413 err
= got_ferror(f
, GOT_ERR_IO
);
1418 if (fflush(tmpf
) != 0) {
1419 err
= got_error_from_errno("fflush");
1423 if (fstat(fileno(f
), &sb
) != 0) {
1424 if (errno
!= ENOENT
) {
1425 err
= got_error_from_errno2("fstat",
1429 sb
.st_mode
= GOT_DEFAULT_FILE_MODE
;
1432 if (fchmod(fileno(tmpf
), sb
.st_mode
) != 0) {
1433 err
= got_error_from_errno2("fchmod", tmppath
);
1437 if (rename(tmppath
, packed_refs_path
) != 0) {
1438 err
= got_error_from_errno3("rename", tmppath
,
1444 if (delref
->lf
== NULL
&& lf
)
1445 unlock_err
= got_lockfile_unlock(lf
, -1);
1447 if (fclose(f
) == EOF
&& err
== NULL
)
1448 err
= got_error_from_errno("fclose");
1452 if (fclose(tmpf
) == EOF
&& err
== NULL
)
1453 err
= got_error_from_errno("fclose");
1456 free(packed_refs_path
);
1458 got_ref_list_free(&refs
);
1459 return err
? err
: unlock_err
;
1462 static const struct got_error
*
1463 delete_loose_ref(struct got_reference
*ref
, struct got_repository
*repo
)
1465 const struct got_error
*err
= NULL
, *unlock_err
= NULL
;
1466 const char *name
= got_ref_get_name(ref
);
1467 char *path_refs
= NULL
, *path
= NULL
;
1468 struct got_lockfile
*lf
= NULL
;
1470 path_refs
= get_refs_dir_path(repo
, name
);
1471 if (path_refs
== NULL
) {
1472 err
= got_error_from_errno2("get_refs_dir_path", name
);
1476 if (asprintf(&path
, "%s/%s", path_refs
, name
) == -1) {
1477 err
= got_error_from_errno("asprintf");
1481 if (ref
->lf
== NULL
) {
1482 err
= got_lockfile_lock(&lf
, path
, -1);
1487 /* XXX: check if old content matches our expectations? */
1489 if (unlink(path
) != 0)
1490 err
= got_error_from_errno2("unlink", path
);
1492 if (ref
->lf
== NULL
&& lf
)
1493 unlock_err
= got_lockfile_unlock(lf
, -1);
1497 return err
? err
: unlock_err
;
1500 const struct got_error
*
1501 got_ref_delete(struct got_reference
*ref
, struct got_repository
*repo
)
1503 const struct got_error
*err
= NULL
;
1504 struct got_reference
*ref2
;
1506 if (ref
->flags
& GOT_REF_IS_PACKED
) {
1507 err
= delete_packed_ref(ref
, repo
);
1511 err
= got_ref_open(&ref2
, repo
, got_ref_get_name(ref
), 0);
1513 if (err
->code
== GOT_ERR_NOT_REF
)
1518 err
= delete_loose_ref(ref2
, repo
);
1519 got_ref_close(ref2
);
1522 err
= delete_loose_ref(ref
, repo
);
1526 err
= got_ref_open(&ref2
, repo
, got_ref_get_name(ref
), 0);
1528 if (err
->code
== GOT_ERR_NOT_REF
)
1533 err
= delete_packed_ref(ref2
, repo
);
1534 got_ref_close(ref2
);
1539 const struct got_error
*
1540 got_ref_unlock(struct got_reference
*ref
)
1542 const struct got_error
*err
;
1543 err
= got_lockfile_unlock(ref
->lf
, -1);
1548 struct got_reflist_object_id_map
{
1549 struct got_object_idset
*idset
;
1552 struct got_reflist_object_id_map_entry
{
1553 struct got_reflist_head refs
;
1556 static const struct got_error
*
1557 add_object_id_map_entry(struct got_object_idset
*idset
,
1558 struct got_object_id
*id
, struct got_reflist_entry
*re
)
1560 const struct got_error
*err
= NULL
;
1561 struct got_reflist_object_id_map_entry
*ent
;
1562 struct got_reflist_entry
*new;
1564 ent
= got_object_idset_get(idset
, id
);
1566 ent
= malloc(sizeof(*ent
));
1568 return got_error_from_errno("malloc");
1570 TAILQ_INIT(&ent
->refs
);
1571 err
= got_object_idset_add(idset
, id
, ent
);
1578 err
= got_reflist_entry_dup(&new, re
);
1582 TAILQ_INSERT_TAIL(&ent
->refs
, new, entry
);
1586 const struct got_error
*
1587 got_reflist_object_id_map_create(struct got_reflist_object_id_map
**map
,
1588 struct got_reflist_head
*refs
, struct got_repository
*repo
)
1590 const struct got_error
*err
= NULL
;
1591 struct got_object_idset
*idset
;
1592 struct got_object_id
*id
= NULL
;
1593 struct got_reflist_entry
*re
;
1595 idset
= got_object_idset_alloc();
1597 return got_error_from_errno("got_object_idset_alloc");
1599 *map
= malloc(sizeof(**map
));
1601 got_object_idset_free(idset
);
1602 return got_error_from_errno("malloc");
1604 (*map
)->idset
= idset
;
1606 TAILQ_FOREACH(re
, refs
, entry
) {
1607 struct got_tag_object
*tag
= NULL
;
1609 err
= got_ref_resolve(&id
, repo
, re
->ref
);
1613 err
= add_object_id_map_entry(idset
, id
, re
);
1617 if (strstr(got_ref_get_name(re
->ref
), "/tags/") == NULL
) {
1623 err
= got_object_open_as_tag(&tag
, repo
, id
);
1625 if (err
->code
!= GOT_ERR_OBJ_TYPE
)
1627 /* Ref points at something other than a tag. */
1635 err
= add_object_id_map_entry(idset
,
1636 got_object_tag_get_object_id(tag
), re
);
1637 got_object_tag_close(tag
);
1647 got_reflist_object_id_map_free(*map
);
1653 struct got_reflist_head
*
1654 got_reflist_object_id_map_lookup(struct got_reflist_object_id_map
*map
,
1655 struct got_object_id
*id
)
1657 struct got_reflist_object_id_map_entry
*ent
;
1658 ent
= got_object_idset_get(map
->idset
, id
);
1664 static const struct got_error
*
1665 free_id_map_entry(struct got_object_id
*id
, void *data
, void *arg
)
1667 struct got_reflist_object_id_map_entry
*ent
= data
;
1669 got_ref_list_free(&ent
->refs
);
1675 got_reflist_object_id_map_free(struct got_reflist_object_id_map
*map
)
1677 got_object_idset_for_each(map
->idset
, free_id_map_entry
, NULL
);
1678 got_object_idset_free(map
->idset
);