2 * Copyright (c) 2022 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/queue.h>
30 #include "got_error.h"
31 #include "got_object.h"
32 #include "got_repository.h"
35 #include "got_lib_delta.h"
36 #include "got_lib_hash.h"
37 #include "got_lib_object.h"
38 #include "got_lib_object_cache.h"
39 #include "got_lib_object_parse.h"
40 #include "got_lib_pack.h"
41 #include "got_lib_repository.h"
42 #include "got_lib_inflate.h"
44 const struct got_error
*
45 got_object_open_packed(struct got_object
**obj
, struct got_object_id
*id
,
46 struct got_repository
*repo
)
48 const struct got_error
*err
= NULL
;
49 struct got_pack
*pack
= NULL
;
50 struct got_packidx
*packidx
= NULL
;
54 err
= got_repo_search_packidx(&packidx
, &idx
, repo
, id
);
58 err
= got_packidx_get_packfile_path(&path_packfile
,
59 packidx
->path_packidx
);
63 pack
= got_repo_get_cached_pack(repo
, path_packfile
);
65 err
= got_repo_cache_pack(&pack
, repo
, path_packfile
, packidx
);
70 err
= got_packfile_open_object(obj
, pack
, packidx
, idx
, id
);
75 err
= got_repo_cache_object(repo
, id
, *obj
);
77 if (err
->code
== GOT_ERR_OBJ_EXISTS
||
78 err
->code
== GOT_ERR_OBJ_TOO_LARGE
)
86 const struct got_error
*
87 got_object_open_from_packfile(struct got_object
**obj
, struct got_object_id
*id
,
88 struct got_pack
*pack
, struct got_packidx
*packidx
, int obj_idx
,
89 struct got_repository
*repo
)
91 const struct got_error
*err
;
93 *obj
= got_repo_get_cached_object(repo
, id
);
99 err
= got_packfile_open_object(obj
, pack
, packidx
, obj_idx
, id
);
104 err
= got_repo_cache_object(repo
, id
, *obj
);
106 if (err
->code
== GOT_ERR_OBJ_EXISTS
||
107 err
->code
== GOT_ERR_OBJ_TOO_LARGE
)
115 const struct got_error
*
116 got_object_read_raw_delta(uint64_t *base_size
, uint64_t *result_size
,
117 off_t
*delta_size
, off_t
*delta_compressed_size
, off_t
*delta_offset
,
118 off_t
*delta_out_offset
, struct got_object_id
**base_id
, int delta_cache_fd
,
119 struct got_packidx
*packidx
, int obj_idx
, struct got_object_id
*id
,
120 struct got_repository
*repo
)
122 return got_error(GOT_ERR_NOT_IMPL
);
125 const struct got_error
*
126 got_object_open(struct got_object
**obj
, struct got_repository
*repo
,
127 struct got_object_id
*id
)
129 const struct got_error
*err
= NULL
;
132 *obj
= got_repo_get_cached_object(repo
, id
);
138 err
= got_object_open_packed(obj
, id
, repo
);
140 if (err
->code
!= GOT_ERR_NO_OBJ
)
145 err
= got_object_open_loose_fd(&fd
, id
, repo
);
149 err
= got_object_read_header(obj
, fd
);
153 memcpy(&(*obj
)->id
, id
, sizeof((*obj
)->id
));
156 err
= got_repo_cache_object(repo
, id
, *obj
);
158 if (err
->code
== GOT_ERR_OBJ_EXISTS
||
159 err
->code
== GOT_ERR_OBJ_TOO_LARGE
)
163 if (close(fd
) == -1 && err
== NULL
)
164 err
= got_error_from_errno("close");
168 static const struct got_error
*
169 wrap_fd(FILE **f
, int wrapped_fd
)
171 const struct got_error
*err
= NULL
;
174 if (ftruncate(wrapped_fd
, 0L) == -1)
175 return got_error_from_errno("ftruncate");
177 if (lseek(wrapped_fd
, 0L, SEEK_SET
) == -1)
178 return got_error_from_errno("lseek");
180 fd
= dup(wrapped_fd
);
182 return got_error_from_errno("dup");
184 *f
= fdopen(fd
, "w+");
186 err
= got_error_from_errno("fdopen");
192 static const struct got_error
*
193 read_packed_object_raw(uint8_t **outbuf
, off_t
*size
, size_t *hdrlen
,
194 int outfd
, struct got_pack
*pack
, struct got_packidx
*packidx
, int idx
,
195 struct got_object_id
*id
)
197 const struct got_error
*err
= NULL
;
198 uint64_t raw_size
= 0;
199 struct got_object
*obj
;
200 FILE *outfile
= NULL
, *basefile
= NULL
, *accumfile
= NULL
;
206 err
= got_packfile_open_object(&obj
, pack
, packidx
, idx
, id
);
210 if (obj
->flags
& GOT_OBJ_FLAG_DELTIFIED
) {
211 err
= got_pack_get_max_delta_object_size(&raw_size
, obj
, pack
);
215 raw_size
= obj
->size
;
217 if (raw_size
<= GOT_DELTA_RESULT_SIZE_CACHED_MAX
) {
219 err
= got_packfile_extract_object_to_mem(outbuf
, &len
,
226 * XXX This uses 3 file extra descriptors for no good reason.
227 * We should have got_packfile_extract_object_to_fd().
229 err
= wrap_fd(&outfile
, outfd
);
232 err
= wrap_fd(&basefile
, pack
->basefd
);
235 err
= wrap_fd(&accumfile
, pack
->accumfd
);
238 err
= got_packfile_extract_object(pack
, obj
, outfile
, basefile
,
245 *hdrlen
= obj
->hdrlen
;
247 got_object_close(obj
);
248 if (outfile
&& fclose(outfile
) == EOF
&& err
== NULL
)
249 err
= got_error_from_errno("fclose");
250 if (basefile
&& fclose(basefile
) == EOF
&& err
== NULL
)
251 err
= got_error_from_errno("fclose");
252 if (accumfile
&& fclose(accumfile
) == EOF
&& err
== NULL
)
253 err
= got_error_from_errno("fclose");
259 put_raw_object_tempfile(struct got_raw_object
*obj
)
261 struct got_repository
*repo
= obj
->close_arg
;
263 if (obj
->tempfile_idx
!= -1)
264 got_repo_temp_fds_put(obj
->tempfile_idx
, repo
);
267 /* *outfd must be initialized to -1 by caller */
268 const struct got_error
*
269 got_object_raw_open(struct got_raw_object
**obj
, int *outfd
,
270 struct got_repository
*repo
, struct got_object_id
*id
)
272 const struct got_error
*err
= NULL
;
273 struct got_packidx
*packidx
= NULL
;
274 int idx
, tempfd
, tempfile_idx
;
275 uint8_t *outbuf
= NULL
;
278 char *path_packfile
= NULL
;
280 *obj
= got_repo_get_cached_raw_object(repo
, id
);
286 err
= got_repo_temp_fds_get(&tempfd
, &tempfile_idx
, repo
);
290 err
= got_repo_search_packidx(&packidx
, &idx
, repo
, id
);
292 struct got_pack
*pack
= NULL
;
294 err
= got_packidx_get_packfile_path(&path_packfile
,
295 packidx
->path_packidx
);
299 pack
= got_repo_get_cached_pack(repo
, path_packfile
);
301 err
= got_repo_cache_pack(&pack
, repo
, path_packfile
,
306 err
= read_packed_object_raw(&outbuf
, &size
, &hdrlen
,
307 tempfd
, pack
, packidx
, idx
, id
);
310 } else if (err
->code
== GOT_ERR_NO_OBJ
) {
313 err
= got_object_open_loose_fd(&fd
, id
, repo
);
316 err
= got_object_read_raw(&outbuf
, &size
, &hdrlen
,
317 GOT_DELTA_RESULT_SIZE_CACHED_MAX
, tempfd
, id
, fd
);
318 if (close(fd
) == -1 && err
== NULL
)
319 err
= got_error_from_errno("close");
324 if (outbuf
== NULL
) {
326 err
= got_error_msg(GOT_ERR_NOT_IMPL
, "bad outfd");
331 * Duplicate tempfile descriptor to allow use of
332 * fdopen(3) inside got_object_raw_alloc().
334 *outfd
= dup(tempfd
);
336 err
= got_error_from_errno("dup");
341 err
= got_object_raw_alloc(obj
, outbuf
, outfd
,
342 GOT_DELTA_RESULT_SIZE_CACHED_MAX
, hdrlen
, size
);
346 err
= got_repo_cache_raw_object(repo
, id
, *obj
);
348 if (err
->code
== GOT_ERR_OBJ_EXISTS
||
349 err
->code
== GOT_ERR_OBJ_TOO_LARGE
)
356 got_object_raw_close(*obj
);
360 got_repo_temp_fds_put(tempfile_idx
, repo
);
366 if (((*obj
)->f
== NULL
&& (*obj
)->fd
== -1)) {
367 /* This raw object is not backed by a file. */
368 got_repo_temp_fds_put(tempfile_idx
, repo
);
374 (*obj
)->tempfile_idx
= tempfile_idx
;
375 (*obj
)->close_cb
= put_raw_object_tempfile
;
376 (*obj
)->close_arg
= repo
;
382 static const struct got_error
*
383 open_commit(struct got_commit_object
**commit
,
384 struct got_repository
*repo
, struct got_object_id
*id
, int check_cache
)
386 const struct got_error
*err
= NULL
;
387 struct got_packidx
*packidx
= NULL
;
389 char *path_packfile
= NULL
;
392 *commit
= got_repo_get_cached_commit(repo
, id
);
393 if (*commit
!= NULL
) {
400 err
= got_repo_search_packidx(&packidx
, &idx
, repo
, id
);
402 struct got_pack
*pack
= NULL
;
403 struct got_object
*obj
;
407 err
= got_packidx_get_packfile_path(&path_packfile
,
408 packidx
->path_packidx
);
412 pack
= got_repo_get_cached_pack(repo
, path_packfile
);
414 err
= got_repo_cache_pack(&pack
, repo
, path_packfile
,
419 err
= got_packfile_open_object(&obj
, pack
, packidx
, idx
, id
);
422 err
= got_packfile_extract_object_to_mem(&buf
, &len
,
424 got_object_close(obj
);
427 err
= got_object_parse_commit(commit
, buf
, len
,
428 got_repo_get_object_format(repo
));
430 } else if (err
->code
== GOT_ERR_NO_OBJ
) {
433 err
= got_object_open_loose_fd(&fd
, id
, repo
);
436 err
= got_object_read_commit(commit
, fd
, id
, 0);
437 if (close(fd
) == -1 && err
== NULL
)
438 err
= got_error_from_errno("close");
445 err
= got_repo_cache_commit(repo
, id
, *commit
);
447 if (err
->code
== GOT_ERR_OBJ_EXISTS
||
448 err
->code
== GOT_ERR_OBJ_TOO_LARGE
)
457 const struct got_error
*
458 got_object_open_as_commit(struct got_commit_object
**commit
,
459 struct got_repository
*repo
, struct got_object_id
*id
)
461 *commit
= got_repo_get_cached_commit(repo
, id
);
462 if (*commit
!= NULL
) {
467 return open_commit(commit
, repo
, id
, 0);
470 const struct got_error
*
471 got_object_commit_open(struct got_commit_object
**commit
,
472 struct got_repository
*repo
, struct got_object
*obj
)
474 return open_commit(commit
, repo
, got_object_get_id(obj
), 1);
477 static const struct got_error
*
478 open_tree(struct got_tree_object
**tree
,
479 struct got_repository
*repo
, struct got_object_id
*id
, int check_cache
)
481 const struct got_error
*err
= NULL
;
482 struct got_packidx
*packidx
= NULL
;
484 char *path_packfile
= NULL
;
485 struct got_parsed_tree_entry
*entries
= NULL
;
486 size_t nentries
= 0, nentries_alloc
= 0, i
;
490 *tree
= got_repo_get_cached_tree(repo
, id
);
498 err
= got_repo_search_packidx(&packidx
, &idx
, repo
, id
);
500 struct got_pack
*pack
= NULL
;
501 struct got_object
*obj
;
504 err
= got_packidx_get_packfile_path(&path_packfile
,
505 packidx
->path_packidx
);
509 pack
= got_repo_get_cached_pack(repo
, path_packfile
);
511 err
= got_repo_cache_pack(&pack
, repo
, path_packfile
,
516 err
= got_packfile_open_object(&obj
, pack
, packidx
, idx
, id
);
519 err
= got_packfile_extract_object_to_mem(&buf
, &len
,
521 got_object_close(obj
);
524 err
= got_object_parse_tree(&entries
, &nentries
,
525 &nentries_alloc
, buf
, len
,
526 got_repo_get_object_format(repo
));
529 } else if (err
->code
== GOT_ERR_NO_OBJ
) {
532 err
= got_object_open_loose_fd(&fd
, id
, repo
);
535 err
= got_object_read_tree(&entries
, &nentries
,
536 &nentries_alloc
, &buf
, fd
, id
);
537 if (close(fd
) == -1 && err
== NULL
)
538 err
= got_error_from_errno("close");
544 *tree
= malloc(sizeof(**tree
));
546 err
= got_error_from_errno("malloc");
549 (*tree
)->entries
= calloc(nentries
, sizeof(struct got_tree_entry
));
550 if ((*tree
)->entries
== NULL
) {
551 err
= got_error_from_errno("malloc");
554 (*tree
)->nentries
= nentries
;
557 for (i
= 0; i
< nentries
; i
++) {
558 struct got_parsed_tree_entry
*pe
= &entries
[i
];
559 struct got_tree_entry
*te
= &(*tree
)->entries
[i
];
561 if (strlcpy(te
->name
, pe
->name
,
562 sizeof(te
->name
)) >= sizeof(te
->name
)) {
563 err
= got_error(GOT_ERR_NO_SPACE
);
566 memcpy(te
->id
.hash
, pe
->id
, pe
->digest_len
);
567 te
->id
.algo
= pe
->algo
;
577 err
= got_repo_cache_tree(repo
, id
, *tree
);
579 if (err
->code
== GOT_ERR_OBJ_EXISTS
||
580 err
->code
== GOT_ERR_OBJ_TOO_LARGE
)
586 free((*tree
)->entries
);
593 const struct got_error
*
594 got_object_open_as_tree(struct got_tree_object
**tree
,
595 struct got_repository
*repo
, struct got_object_id
*id
)
597 *tree
= got_repo_get_cached_tree(repo
, id
);
603 return open_tree(tree
, repo
, id
, 0);
606 const struct got_error
*
607 got_object_tree_open(struct got_tree_object
**tree
,
608 struct got_repository
*repo
, struct got_object
*obj
)
610 return open_tree(tree
, repo
, got_object_get_id(obj
), 1);
613 static const struct got_error
*
614 read_packed_blob(uint8_t **outbuf
, size_t *size
, size_t *hdrlen
,
615 int outfd
, struct got_pack
*pack
, struct got_packidx
*packidx
, int idx
,
616 struct got_object_id
*id
, struct got_repository
*repo
)
618 const struct got_error
*err
= NULL
;
619 struct got_object
*obj
;
620 FILE *outfile
= NULL
, *basefile
= NULL
, *accumfile
= NULL
;
625 err
= got_object_open_from_packfile(&obj
, id
, pack
, packidx
, idx
,
630 if (obj
->flags
& GOT_OBJ_FLAG_DELTIFIED
) {
631 err
= got_pack_get_max_delta_object_size(&blob_size
, obj
,
636 blob_size
= obj
->size
;
638 if (blob_size
<= GOT_DELTA_RESULT_SIZE_CACHED_MAX
) {
639 err
= got_packfile_extract_object_to_mem(outbuf
, size
,
643 * XXX This uses 3 file extra descriptors for no good reason.
644 * We should have got_packfile_extract_object_to_fd().
646 err
= wrap_fd(&outfile
, outfd
);
649 err
= wrap_fd(&basefile
, pack
->basefd
);
652 err
= wrap_fd(&accumfile
, pack
->accumfd
);
655 err
= got_packfile_extract_object(pack
, obj
, outfile
, basefile
,
662 /* XXX verify checksum? */
664 got_object_close(obj
);
665 if (outfile
&& fclose(outfile
) == EOF
&& err
== NULL
)
666 err
= got_error_from_errno("fclose");
667 if (basefile
&& fclose(basefile
) == EOF
&& err
== NULL
)
668 err
= got_error_from_errno("fclose");
669 if (accumfile
&& fclose(accumfile
) == EOF
&& err
== NULL
)
670 err
= got_error_from_errno("fclose");
674 static const struct got_error
*
675 read_blob(uint8_t **outbuf
, size_t *size
, size_t *hdrlen
, int outfd
, int infd
,
676 struct got_object_id
*id
, struct got_repository
*repo
)
678 const struct got_error
*err
= NULL
;
679 struct got_object
*obj
= NULL
;
681 struct got_object_id expected_id
;
682 struct got_inflate_checksum csum
;
685 got_hash_init(&ctx
, got_repo_get_object_format(repo
));
686 memset(&csum
, 0, sizeof(csum
));
687 csum
.output_ctx
= &ctx
;
689 memcpy(&expected_id
, id
, sizeof(expected_id
));
691 err
= got_object_read_header(&obj
, infd
);
695 if (lseek(infd
, SEEK_SET
, 0) == -1) {
696 err
= got_error_from_errno("lseek");
700 f
= fdopen(infd
, "rb");
702 err
= got_error_from_errno("fdopen");
707 if (obj
->size
+ obj
->hdrlen
<= GOT_DELTA_RESULT_SIZE_CACHED_MAX
) {
708 err
= got_inflate_to_mem(outbuf
, size
, NULL
, &csum
, f
);
712 err
= got_inflate_to_fd(size
, f
, &csum
, outfd
);
717 if (*size
< obj
->hdrlen
) {
718 err
= got_error(GOT_ERR_BAD_OBJ_HDR
);
722 *hdrlen
= obj
->hdrlen
;
724 got_hash_final_object_id(&ctx
, id
);
725 if (got_object_id_cmp(&expected_id
, id
) != 0) {
726 err
= got_error_checksum(&expected_id
);
730 if (f
&& fclose(f
) == EOF
&& err
== NULL
)
731 err
= got_error_from_errno("fclose");
732 if (infd
!= -1 && close(infd
) == -1 && err
== NULL
)
733 err
= got_error_from_errno("close");
738 static const struct got_error
*
739 open_blob(struct got_blob_object
**blob
, struct got_repository
*repo
,
740 struct got_object_id
*id
, size_t blocksize
, int outfd
)
742 const struct got_error
*err
= NULL
;
743 struct got_packidx
*packidx
= NULL
;
745 char *path_packfile
= NULL
;
750 *blob
= calloc(1, sizeof(**blob
));
752 return got_error_from_errno("calloc");
754 (*blob
)->read_buf
= malloc(blocksize
);
755 if ((*blob
)->read_buf
== NULL
) {
756 err
= got_error_from_errno("malloc");
760 if (ftruncate(outfd
, 0L) == -1) {
761 err
= got_error_from_errno("ftruncate");
764 if (lseek(outfd
, SEEK_SET
, 0) == -1) {
765 err
= got_error_from_errno("lseek");
769 err
= got_repo_search_packidx(&packidx
, &idx
, repo
, id
);
771 struct got_pack
*pack
= NULL
;
773 err
= got_packidx_get_packfile_path(&path_packfile
,
774 packidx
->path_packidx
);
778 pack
= got_repo_get_cached_pack(repo
, path_packfile
);
780 err
= got_repo_cache_pack(&pack
, repo
, path_packfile
,
785 err
= read_packed_blob(&outbuf
, &size
, &hdrlen
, outfd
,
786 pack
, packidx
, idx
, id
, repo
);
787 } else if (err
->code
== GOT_ERR_NO_OBJ
) {
790 err
= got_object_open_loose_fd(&infd
, id
, repo
);
793 err
= read_blob(&outbuf
, &size
, &hdrlen
, outfd
, infd
,
800 err
= got_error(GOT_ERR_BAD_OBJ_HDR
);
804 if (outbuf
&& size
> 0) {
805 (*blob
)->f
= fmemopen(outbuf
, size
, "rb");
806 if ((*blob
)->f
== NULL
) {
807 err
= got_error_from_errno("fmemopen");
811 (*blob
)->data
= outbuf
;
813 if (fstat(outfd
, &sb
) == -1) {
814 err
= got_error_from_errno("fstat");
818 if (sb
.st_size
!= size
) {
819 err
= got_error(GOT_ERR_PRIVSEP_LEN
);
825 err
= got_error_from_errno("dup");
829 (*blob
)->f
= fdopen(dfd
, "rb");
830 if ((*blob
)->f
== NULL
) {
831 err
= got_error_from_errno("fdopen");
838 (*blob
)->hdrlen
= hdrlen
;
839 (*blob
)->blocksize
= blocksize
;
840 memcpy(&(*blob
)->id
, id
, sizeof(*id
));
846 got_object_blob_close(*blob
);
853 const struct got_error
*
854 got_object_open_as_blob(struct got_blob_object
**blob
,
855 struct got_repository
*repo
, struct got_object_id
*id
, size_t blocksize
,
858 return open_blob(blob
, repo
, id
, blocksize
, outfd
);
861 const struct got_error
*
862 got_object_blob_open(struct got_blob_object
**blob
,
863 struct got_repository
*repo
, struct got_object
*obj
, size_t blocksize
,
866 return open_blob(blob
, repo
, got_object_get_id(obj
), blocksize
, outfd
);
869 static const struct got_error
*
870 open_tag(struct got_tag_object
**tag
, struct got_repository
*repo
,
871 struct got_object_id
*id
, int check_cache
)
873 const struct got_error
*err
= NULL
;
874 struct got_packidx
*packidx
= NULL
;
876 char *path_packfile
= NULL
;
877 struct got_object
*obj
= NULL
;
878 int obj_type
= GOT_OBJ_TYPE_ANY
;
881 *tag
= got_repo_get_cached_tag(repo
, id
);
889 err
= got_repo_search_packidx(&packidx
, &idx
, repo
, id
);
891 struct got_pack
*pack
= NULL
;
895 err
= got_packidx_get_packfile_path(&path_packfile
,
896 packidx
->path_packidx
);
900 pack
= got_repo_get_cached_pack(repo
, path_packfile
);
902 err
= got_repo_cache_pack(&pack
, repo
, path_packfile
,
908 /* Beware of "lightweight" tags: Check object type first. */
909 err
= got_packfile_open_object(&obj
, pack
, packidx
, idx
, id
);
912 obj_type
= obj
->type
;
913 if (obj_type
!= GOT_OBJ_TYPE_TAG
) {
914 err
= got_error(GOT_ERR_OBJ_TYPE
);
915 got_object_close(obj
);
918 err
= got_packfile_extract_object_to_mem(&buf
, &len
,
920 got_object_close(obj
);
923 err
= got_object_parse_tag(tag
, buf
, len
,
924 got_repo_get_object_format(repo
));
926 } else if (err
->code
== GOT_ERR_NO_OBJ
) {
929 err
= got_object_open_loose_fd(&fd
, id
, repo
);
932 err
= got_object_read_header(&obj
, fd
);
933 if (close(fd
) == -1 && err
== NULL
)
934 err
= got_error_from_errno("close");
937 obj_type
= obj
->type
;
938 got_object_close(obj
);
939 if (obj_type
!= GOT_OBJ_TYPE_TAG
)
940 return got_error(GOT_ERR_OBJ_TYPE
);
942 err
= got_object_open_loose_fd(&fd
, id
, repo
);
945 err
= got_object_read_tag(tag
, fd
, id
, 0);
946 if (close(fd
) == -1 && err
== NULL
)
947 err
= got_error_from_errno("close");
954 err
= got_repo_cache_tag(repo
, id
, *tag
);
956 if (err
->code
== GOT_ERR_OBJ_EXISTS
||
957 err
->code
== GOT_ERR_OBJ_TOO_LARGE
)
966 const struct got_error
*
967 got_object_open_as_tag(struct got_tag_object
**tag
,
968 struct got_repository
*repo
, struct got_object_id
*id
)
970 *tag
= got_repo_get_cached_tag(repo
, id
);
976 return open_tag(tag
, repo
, id
, 0);
979 const struct got_error
*
980 got_object_tag_open(struct got_tag_object
**tag
,
981 struct got_repository
*repo
, struct got_object
*obj
)
983 return open_tag(tag
, repo
, got_object_get_id(obj
), 1);