Blob


1 /*
2 * Copyright (c) 2018, 2019 Stefan Sperling <stsp@openbsd.org>
3 *
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.
7 *
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.
15 */
17 #include <sys/types.h>
18 #include <sys/stat.h>
19 #include <sys/uio.h>
20 #include <sys/socket.h>
21 #include <sys/wait.h>
22 #include <sys/mman.h>
24 #include <errno.h>
25 #include <fcntl.h>
26 #include <stdio.h>
27 #include <stdlib.h>
28 #include <string.h>
29 #include <stdint.h>
30 #include <unistd.h>
31 #include <zlib.h>
32 #include <ctype.h>
33 #include <libgen.h>
34 #include <limits.h>
35 #include <time.h>
37 #include "got_compat.h"
39 #include "got_error.h"
40 #include "got_object.h"
41 #include "got_repository.h"
42 #include "got_opentemp.h"
43 #include "got_path.h"
45 #include "got_lib_sha1.h"
46 #include "got_lib_delta.h"
47 #include "got_lib_inflate.h"
48 #include "got_lib_object.h"
49 #include "got_lib_privsep.h"
50 #include "got_lib_object_idcache.h"
51 #include "got_lib_object_cache.h"
52 #include "got_lib_object_parse.h"
53 #include "got_lib_pack.h"
54 #include "got_lib_repository.h"
56 #ifndef MIN
57 #define MIN(_a,_b) ((_a) < (_b) ? (_a) : (_b))
58 #endif
60 #ifndef nitems
61 #define nitems(_a) (sizeof((_a)) / sizeof((_a)[0]))
62 #endif
64 struct got_object_id *
65 got_object_get_id(struct got_object *obj)
66 {
67 return &obj->id;
68 }
70 const struct got_error *
71 got_object_get_id_str(char **outbuf, struct got_object *obj)
72 {
73 return got_object_id_str(outbuf, &obj->id);
74 }
76 const struct got_error *
77 got_object_get_type(int *type, struct got_repository *repo,
78 struct got_object_id *id)
79 {
80 const struct got_error *err = NULL;
81 struct got_object *obj;
83 err = got_object_open(&obj, repo, id);
84 if (err)
85 return err;
87 switch (obj->type) {
88 case GOT_OBJ_TYPE_COMMIT:
89 case GOT_OBJ_TYPE_TREE:
90 case GOT_OBJ_TYPE_BLOB:
91 case GOT_OBJ_TYPE_TAG:
92 *type = obj->type;
93 break;
94 default:
95 err = got_error(GOT_ERR_OBJ_TYPE);
96 break;
97 }
99 got_object_close(obj);
100 return err;
103 const struct got_error *
104 got_object_get_path(char **path, struct got_object_id *id,
105 struct got_repository *repo)
107 const struct got_error *err = NULL;
108 char *hex = NULL;
109 char *path_objects;
111 *path = NULL;
113 path_objects = got_repo_get_path_objects(repo);
114 if (path_objects == NULL)
115 return got_error_from_errno("got_repo_get_path_objects");
117 err = got_object_id_str(&hex, id);
118 if (err)
119 goto done;
121 if (asprintf(path, "%s/%.2x/%s", path_objects,
122 id->sha1[0], hex + 2) == -1)
123 err = got_error_from_errno("asprintf");
125 done:
126 free(hex);
127 free(path_objects);
128 return err;
131 const struct got_error *
132 got_object_open_loose_fd(int *fd, struct got_object_id *id,
133 struct got_repository *repo)
135 const struct got_error *err = NULL;
136 char *path;
138 err = got_object_get_path(&path, id, repo);
139 if (err)
140 return err;
141 *fd = open(path, O_RDONLY | O_NOFOLLOW | O_CLOEXEC);
142 if (*fd == -1) {
143 err = got_error_from_errno2("open", path);
144 goto done;
146 done:
147 free(path);
148 return err;
151 static const struct got_error *
152 request_packed_object(struct got_object **obj, struct got_pack *pack, int idx,
153 struct got_object_id *id)
155 const struct got_error *err = NULL;
156 struct imsgbuf *ibuf = pack->privsep_child->ibuf;
158 err = got_privsep_send_packed_obj_req(ibuf, idx, id);
159 if (err)
160 return err;
162 err = got_privsep_recv_obj(obj, ibuf);
163 if (err)
164 return err;
166 memcpy(&(*obj)->id, id, sizeof((*obj)->id));
168 return NULL;
171 /* Create temporary files used during delta application. */
172 static const struct got_error *
173 pack_child_send_tempfiles(struct imsgbuf *ibuf, struct got_pack *pack)
175 const struct got_error *err;
176 int basefd = -1, accumfd = -1;
178 /*
179 * For performance reasons, the child will keep reusing the
180 * same temporary files during every object request.
181 * Opening and closing new files for every object request is
182 * too expensive during operations such as 'gotadmin pack'.
183 */
184 if (pack->child_has_tempfiles)
185 return NULL;
187 basefd = dup(pack->basefd);
188 if (basefd == -1)
189 return got_error_from_errno("dup");
191 accumfd = dup(pack->accumfd);
192 if (accumfd == -1) {
193 err = got_error_from_errno("dup");
194 goto done;
197 err = got_privsep_send_tmpfd(ibuf, basefd);
198 if (err)
199 goto done;
201 err = got_privsep_send_tmpfd(ibuf, accumfd);
202 done:
203 if (err) {
204 if (basefd != -1)
205 close(basefd);
206 if (accumfd != -1)
207 close(accumfd);
208 } else
209 pack->child_has_tempfiles = 1;
210 return NULL;
213 static const struct got_error *
214 request_packed_object_raw(uint8_t **outbuf, off_t *size, size_t *hdrlen,
215 int outfd, struct got_pack *pack, int idx, struct got_object_id *id)
217 const struct got_error *err = NULL;
218 struct imsgbuf *ibuf = pack->privsep_child->ibuf;
219 int outfd_child;
221 err = pack_child_send_tempfiles(ibuf, pack);
222 if (err)
223 return err;
225 outfd_child = dup(outfd);
226 if (outfd_child == -1)
227 return got_error_from_errno("dup");
229 err = got_privsep_send_packed_raw_obj_req(ibuf, idx, id);
230 if (err) {
231 close(outfd_child);
232 return err;
235 err = got_privsep_send_raw_obj_outfd(ibuf, outfd_child);
236 if (err)
237 return err;
239 err = got_privsep_recv_raw_obj(outbuf, size, hdrlen, ibuf);
240 if (err)
241 return err;
243 return NULL;
246 static const struct got_error *
247 read_packed_object_privsep(struct got_object **obj,
248 struct got_repository *repo, struct got_pack *pack,
249 struct got_packidx *packidx, int idx, struct got_object_id *id)
251 const struct got_error *err = NULL;
253 if (pack->privsep_child == NULL) {
254 err = got_pack_start_privsep_child(pack, packidx);
255 if (err)
256 return err;
259 return request_packed_object(obj, pack, idx, id);
262 static const struct got_error *
263 read_packed_object_raw_privsep(uint8_t **outbuf, off_t *size, size_t *hdrlen,
264 int outfd, struct got_pack *pack, struct got_packidx *packidx, int idx,
265 struct got_object_id *id)
267 const struct got_error *err = NULL;
269 if (pack->privsep_child == NULL) {
270 err = got_pack_start_privsep_child(pack, packidx);
271 if (err)
272 return err;
275 return request_packed_object_raw(outbuf, size, hdrlen, outfd, pack,
276 idx, id);
279 const struct got_error *
280 got_object_open_packed(struct got_object **obj, struct got_object_id *id,
281 struct got_repository *repo)
283 const struct got_error *err = NULL;
284 struct got_pack *pack = NULL;
285 struct got_packidx *packidx = NULL;
286 int idx;
287 char *path_packfile;
289 err = got_repo_search_packidx(&packidx, &idx, repo, id);
290 if (err)
291 return err;
293 err = got_packidx_get_packfile_path(&path_packfile,
294 packidx->path_packidx);
295 if (err)
296 return err;
298 pack = got_repo_get_cached_pack(repo, path_packfile);
299 if (pack == NULL) {
300 err = got_repo_cache_pack(&pack, repo, path_packfile, packidx);
301 if (err)
302 goto done;
305 err = read_packed_object_privsep(obj, repo, pack, packidx, idx, id);
306 if (err)
307 goto done;
308 done:
309 free(path_packfile);
310 return err;
313 const struct got_error *
314 got_object_open_from_packfile(struct got_object **obj, struct got_object_id *id,
315 struct got_pack *pack, struct got_packidx *packidx, int obj_idx,
316 struct got_repository *repo)
318 return read_packed_object_privsep(obj, repo, pack, packidx,
319 obj_idx, id);
322 const struct got_error *
323 got_object_read_raw_delta(uint64_t *base_size, uint64_t *result_size,
324 off_t *delta_size, off_t *delta_compressed_size, off_t *delta_offset,
325 off_t *delta_out_offset, struct got_object_id **base_id, int delta_cache_fd,
326 struct got_packidx *packidx, int obj_idx, struct got_object_id *id,
327 struct got_repository *repo)
329 const struct got_error *err = NULL;
330 struct got_pack *pack = NULL;
331 char *path_packfile;
333 *base_size = 0;
334 *result_size = 0;
335 *delta_size = 0;
336 *delta_compressed_size = 0;
337 *delta_offset = 0;
338 *delta_out_offset = 0;
340 err = got_packidx_get_packfile_path(&path_packfile,
341 packidx->path_packidx);
342 if (err)
343 return err;
345 pack = got_repo_get_cached_pack(repo, path_packfile);
346 if (pack == NULL) {
347 err = got_repo_cache_pack(&pack, repo, path_packfile, packidx);
348 if (err)
349 return err;
352 if (pack->privsep_child == NULL) {
353 err = got_pack_start_privsep_child(pack, packidx);
354 if (err)
355 return err;
358 if (!pack->child_has_delta_outfd) {
359 int outfd_child;
360 outfd_child = dup(delta_cache_fd);
361 if (outfd_child == -1)
362 return got_error_from_errno("dup");
363 err = got_privsep_send_raw_delta_outfd(
364 pack->privsep_child->ibuf, outfd_child);
365 if (err)
366 return err;
367 pack->child_has_delta_outfd = 1;
370 err = got_privsep_send_raw_delta_req(pack->privsep_child->ibuf,
371 obj_idx, id);
372 if (err)
373 return err;
375 return got_privsep_recv_raw_delta(base_size, result_size, delta_size,
376 delta_compressed_size, delta_offset, delta_out_offset, base_id,
377 pack->privsep_child->ibuf);
380 static const struct got_error *
381 request_object(struct got_object **obj, struct got_object_id *id,
382 struct got_repository *repo, int fd)
384 const struct got_error *err = NULL;
385 struct imsgbuf *ibuf;
387 ibuf = repo->privsep_children[GOT_REPO_PRIVSEP_CHILD_OBJECT].ibuf;
389 err = got_privsep_send_obj_req(ibuf, fd, id);
390 if (err)
391 return err;
393 return got_privsep_recv_obj(obj, ibuf);
396 static const struct got_error *
397 request_raw_object(uint8_t **outbuf, off_t *size, size_t *hdrlen, int outfd,
398 struct got_object_id *id, struct got_repository *repo, int infd)
400 const struct got_error *err = NULL;
401 struct imsgbuf *ibuf;
402 int outfd_child;
404 ibuf = repo->privsep_children[GOT_REPO_PRIVSEP_CHILD_OBJECT].ibuf;
406 outfd_child = dup(outfd);
407 if (outfd_child == -1)
408 return got_error_from_errno("dup");
410 err = got_privsep_send_raw_obj_req(ibuf, infd, id);
411 if (err)
412 return err;
414 err = got_privsep_send_raw_obj_outfd(ibuf, outfd_child);
415 if (err)
416 return err;
418 return got_privsep_recv_raw_obj(outbuf, size, hdrlen, ibuf);
421 static const struct got_error *
422 start_read_object_child(struct got_repository *repo)
424 const struct got_error *err = NULL;
425 int imsg_fds[2];
426 pid_t pid;
427 struct imsgbuf *ibuf;
429 ibuf = calloc(1, sizeof(*ibuf));
430 if (ibuf == NULL)
431 return got_error_from_errno("calloc");
433 if (socketpair(AF_UNIX, SOCK_STREAM, PF_UNSPEC, imsg_fds) == -1) {
434 err = got_error_from_errno("socketpair");
435 free(ibuf);
436 return err;
439 pid = fork();
440 if (pid == -1) {
441 err = got_error_from_errno("fork");
442 free(ibuf);
443 return err;
445 else if (pid == 0) {
446 got_privsep_exec_child(imsg_fds, GOT_PATH_PROG_READ_OBJECT,
447 repo->path);
448 /* not reached */
451 if (close(imsg_fds[1]) == -1) {
452 err = got_error_from_errno("close");
453 free(ibuf);
454 return err;
457 repo->privsep_children[GOT_REPO_PRIVSEP_CHILD_OBJECT].imsg_fd =
458 imsg_fds[0];
459 repo->privsep_children[GOT_REPO_PRIVSEP_CHILD_OBJECT].pid = pid;
460 imsg_init(ibuf, imsg_fds[0]);
461 repo->privsep_children[GOT_REPO_PRIVSEP_CHILD_OBJECT].ibuf = ibuf;
463 return NULL;
466 const struct got_error *
467 got_object_read_header_privsep(struct got_object **obj,
468 struct got_object_id *id, struct got_repository *repo, int obj_fd)
470 const struct got_error *err;
472 if (repo->privsep_children[GOT_REPO_PRIVSEP_CHILD_OBJECT].imsg_fd != -1)
473 return request_object(obj, id, repo, obj_fd);
475 err = start_read_object_child(repo);
476 if (err) {
477 close(obj_fd);
478 return err;
481 return request_object(obj, id, repo, obj_fd);
484 static const struct got_error *
485 read_object_raw_privsep(uint8_t **outbuf, off_t *size, size_t *hdrlen,
486 int outfd, struct got_object_id *id, struct got_repository *repo,
487 int obj_fd)
489 const struct got_error *err;
491 if (repo->privsep_children[GOT_REPO_PRIVSEP_CHILD_OBJECT].imsg_fd != -1)
492 return request_raw_object(outbuf, size, hdrlen, outfd, id,
493 repo, obj_fd);
495 err = start_read_object_child(repo);
496 if (err)
497 return err;
499 return request_raw_object(outbuf, size, hdrlen, outfd, id, repo,
500 obj_fd);
503 const struct got_error *
504 got_object_open(struct got_object **obj, struct got_repository *repo,
505 struct got_object_id *id)
507 const struct got_error *err = NULL;
508 int fd;
510 *obj = got_repo_get_cached_object(repo, id);
511 if (*obj != NULL) {
512 (*obj)->refcnt++;
513 return NULL;
516 err = got_object_open_packed(obj, id, repo);
517 if (err && err->code != GOT_ERR_NO_OBJ)
518 return err;
519 if (*obj) {
520 (*obj)->refcnt++;
521 return got_repo_cache_object(repo, id, *obj);
524 err = got_object_open_loose_fd(&fd, id, repo);
525 if (err) {
526 if (err->code == GOT_ERR_ERRNO && errno == ENOENT)
527 err = got_error_no_obj(id);
528 return err;
531 err = got_object_read_header_privsep(obj, id, repo, fd);
532 if (err)
533 return err;
535 memcpy((*obj)->id.sha1, id->sha1, SHA1_DIGEST_LENGTH);
537 (*obj)->refcnt++;
538 return got_repo_cache_object(repo, id, *obj);
541 /* *outfd must be initialized to -1 by caller */
542 const struct got_error *
543 got_object_raw_open(struct got_raw_object **obj, int *outfd,
544 struct got_repository *repo, struct got_object_id *id)
546 const struct got_error *err = NULL;
547 struct got_packidx *packidx = NULL;
548 int idx;
549 uint8_t *outbuf = NULL;
550 off_t size = 0;
551 size_t hdrlen = 0;
552 char *path_packfile = NULL;
554 *obj = got_repo_get_cached_raw_object(repo, id);
555 if (*obj != NULL) {
556 (*obj)->refcnt++;
557 return NULL;
560 if (*outfd == -1) {
561 *outfd = got_opentempfd();
562 if (*outfd == -1)
563 return got_error_from_errno("got_opentempfd");
566 err = got_repo_search_packidx(&packidx, &idx, repo, id);
567 if (err == NULL) {
568 struct got_pack *pack = NULL;
570 err = got_packidx_get_packfile_path(&path_packfile,
571 packidx->path_packidx);
572 if (err)
573 goto done;
575 pack = got_repo_get_cached_pack(repo, path_packfile);
576 if (pack == NULL) {
577 err = got_repo_cache_pack(&pack, repo, path_packfile,
578 packidx);
579 if (err)
580 goto done;
582 err = read_packed_object_raw_privsep(&outbuf, &size, &hdrlen,
583 *outfd, pack, packidx, idx, id);
584 if (err)
585 goto done;
586 } else if (err->code == GOT_ERR_NO_OBJ) {
587 int fd;
589 err = got_object_open_loose_fd(&fd, id, repo);
590 if (err)
591 goto done;
592 err = read_object_raw_privsep(&outbuf, &size, &hdrlen, *outfd,
593 id, repo, fd);
594 if (err)
595 goto done;
598 *obj = calloc(1, sizeof(**obj));
599 if (*obj == NULL) {
600 err = got_error_from_errno("calloc");
601 goto done;
603 (*obj)->fd = -1;
605 if (outbuf) {
606 (*obj)->data = outbuf;
607 } else {
608 struct stat sb;
609 if (fstat(*outfd, &sb) == -1) {
610 err = got_error_from_errno("fstat");
611 goto done;
614 if (sb.st_size != hdrlen + size) {
615 err = got_error(GOT_ERR_PRIVSEP_LEN);
616 goto done;
618 #ifndef GOT_PACK_NO_MMAP
619 if (hdrlen + size > 0) {
620 (*obj)->data = mmap(NULL, hdrlen + size, PROT_READ,
621 MAP_PRIVATE, *outfd, 0);
622 if ((*obj)->data == MAP_FAILED) {
623 if (errno != ENOMEM) {
624 err = got_error_from_errno("mmap");
625 goto done;
627 (*obj)->data = NULL;
628 } else {
629 (*obj)->fd = *outfd;
630 *outfd = -1;
633 #endif
634 if (*outfd != -1) {
635 (*obj)->f = fdopen(*outfd, "r");
636 if ((*obj)->f == NULL) {
637 err = got_error_from_errno("fdopen");
638 goto done;
640 *outfd = -1;
643 (*obj)->hdrlen = hdrlen;
644 (*obj)->size = size;
645 err = got_repo_cache_raw_object(repo, id, *obj);
646 done:
647 free(path_packfile);
648 if (err) {
649 if (*obj) {
650 got_object_raw_close(*obj);
651 *obj = NULL;
653 free(outbuf);
654 } else
655 (*obj)->refcnt++;
656 return err;
659 const struct got_error *
660 got_object_open_by_id_str(struct got_object **obj, struct got_repository *repo,
661 const char *id_str)
663 struct got_object_id id;
665 if (!got_parse_sha1_digest(id.sha1, id_str))
666 return got_error_path(id_str, GOT_ERR_BAD_OBJ_ID_STR);
668 return got_object_open(obj, repo, &id);
671 const struct got_error *
672 got_object_resolve_id_str(struct got_object_id **id,
673 struct got_repository *repo, const char *id_str)
675 const struct got_error *err = NULL;
676 struct got_object *obj;
678 err = got_object_open_by_id_str(&obj, repo, id_str);
679 if (err)
680 return err;
682 *id = got_object_id_dup(got_object_get_id(obj));
683 got_object_close(obj);
684 if (*id == NULL)
685 return got_error_from_errno("got_object_id_dup");
687 return NULL;
690 static const struct got_error *
691 request_packed_commit(struct got_commit_object **commit, struct got_pack *pack,
692 int pack_idx, struct got_object_id *id)
694 const struct got_error *err = NULL;
696 err = got_privsep_send_commit_req(pack->privsep_child->ibuf, -1, id,
697 pack_idx);
698 if (err)
699 return err;
701 err = got_privsep_recv_commit(commit, pack->privsep_child->ibuf);
702 if (err)
703 return err;
705 (*commit)->flags |= GOT_COMMIT_FLAG_PACKED;
706 return NULL;
709 static const struct got_error *
710 read_packed_commit_privsep(struct got_commit_object **commit,
711 struct got_pack *pack, struct got_packidx *packidx, int idx,
712 struct got_object_id *id)
714 const struct got_error *err = NULL;
716 if (pack->privsep_child)
717 return request_packed_commit(commit, pack, idx, id);
719 err = got_pack_start_privsep_child(pack, packidx);
720 if (err)
721 return err;
723 return request_packed_commit(commit, pack, idx, id);
726 static const struct got_error *
727 request_commit(struct got_commit_object **commit, struct got_repository *repo,
728 int fd, struct got_object_id *id)
730 const struct got_error *err = NULL;
731 struct imsgbuf *ibuf;
733 ibuf = repo->privsep_children[GOT_REPO_PRIVSEP_CHILD_COMMIT].ibuf;
735 err = got_privsep_send_commit_req(ibuf, fd, id, -1);
736 if (err)
737 return err;
739 return got_privsep_recv_commit(commit, ibuf);
742 static const struct got_error *
743 read_commit_privsep(struct got_commit_object **commit, int obj_fd,
744 struct got_object_id *id, struct got_repository *repo)
746 const struct got_error *err;
747 int imsg_fds[2];
748 pid_t pid;
749 struct imsgbuf *ibuf;
751 if (repo->privsep_children[GOT_REPO_PRIVSEP_CHILD_COMMIT].imsg_fd != -1)
752 return request_commit(commit, repo, obj_fd, id);
754 ibuf = calloc(1, sizeof(*ibuf));
755 if (ibuf == NULL)
756 return got_error_from_errno("calloc");
758 if (socketpair(AF_UNIX, SOCK_STREAM, PF_UNSPEC, imsg_fds) == -1) {
759 err = got_error_from_errno("socketpair");
760 free(ibuf);
761 return err;
764 pid = fork();
765 if (pid == -1) {
766 err = got_error_from_errno("fork");
767 free(ibuf);
768 return err;
770 else if (pid == 0) {
771 got_privsep_exec_child(imsg_fds, GOT_PATH_PROG_READ_COMMIT,
772 repo->path);
773 /* not reached */
776 if (close(imsg_fds[1]) == -1) {
777 err = got_error_from_errno("close");
778 free(ibuf);
779 return err;
781 repo->privsep_children[GOT_REPO_PRIVSEP_CHILD_COMMIT].imsg_fd =
782 imsg_fds[0];
783 repo->privsep_children[GOT_REPO_PRIVSEP_CHILD_COMMIT].pid = pid;
784 imsg_init(ibuf, imsg_fds[0]);
785 repo->privsep_children[GOT_REPO_PRIVSEP_CHILD_COMMIT].ibuf = ibuf;
787 return request_commit(commit, repo, obj_fd, id);
791 static const struct got_error *
792 open_commit(struct got_commit_object **commit,
793 struct got_repository *repo, struct got_object_id *id, int check_cache)
795 const struct got_error *err = NULL;
796 struct got_packidx *packidx = NULL;
797 int idx;
798 char *path_packfile = NULL;
800 if (check_cache) {
801 *commit = got_repo_get_cached_commit(repo, id);
802 if (*commit != NULL) {
803 (*commit)->refcnt++;
804 return NULL;
806 } else
807 *commit = NULL;
809 err = got_repo_search_packidx(&packidx, &idx, repo, id);
810 if (err == NULL) {
811 struct got_pack *pack = NULL;
813 err = got_packidx_get_packfile_path(&path_packfile,
814 packidx->path_packidx);
815 if (err)
816 return err;
818 pack = got_repo_get_cached_pack(repo, path_packfile);
819 if (pack == NULL) {
820 err = got_repo_cache_pack(&pack, repo, path_packfile,
821 packidx);
822 if (err)
823 goto done;
825 err = read_packed_commit_privsep(commit, pack,
826 packidx, idx, id);
827 } else if (err->code == GOT_ERR_NO_OBJ) {
828 int fd;
830 err = got_object_open_loose_fd(&fd, id, repo);
831 if (err)
832 return err;
833 err = read_commit_privsep(commit, fd, id, repo);
836 if (err == NULL) {
837 (*commit)->refcnt++;
838 err = got_repo_cache_commit(repo, id, *commit);
840 done:
841 free(path_packfile);
842 return err;
845 const struct got_error *
846 got_object_open_as_commit(struct got_commit_object **commit,
847 struct got_repository *repo, struct got_object_id *id)
849 *commit = got_repo_get_cached_commit(repo, id);
850 if (*commit != NULL) {
851 (*commit)->refcnt++;
852 return NULL;
855 return open_commit(commit, repo, id, 0);
858 const struct got_error *
859 got_object_commit_open(struct got_commit_object **commit,
860 struct got_repository *repo, struct got_object *obj)
862 return open_commit(commit, repo, got_object_get_id(obj), 1);
865 const struct got_error *
866 got_object_qid_alloc(struct got_object_qid **qid, struct got_object_id *id)
868 *qid = calloc(1, sizeof(**qid));
869 if (*qid == NULL)
870 return got_error_from_errno("calloc");
872 memcpy(&(*qid)->id, id, sizeof((*qid)->id));
873 return NULL;
876 const struct got_error *
877 got_object_id_queue_copy(const struct got_object_id_queue *src,
878 struct got_object_id_queue *dest)
880 const struct got_error *err;
881 struct got_object_qid *qid;
883 STAILQ_FOREACH(qid, src, entry) {
884 struct got_object_qid *new;
885 /*
886 * Deep-copy the object ID only. Let the caller deal
887 * with setting up the new->data pointer if needed.
888 */
889 err = got_object_qid_alloc(&new, &qid->id);
890 if (err) {
891 got_object_id_queue_free(dest);
892 return err;
894 STAILQ_INSERT_TAIL(dest, new, entry);
897 return NULL;
900 static const struct got_error *
901 request_packed_tree(struct got_tree_object **tree, struct got_pack *pack,
902 int pack_idx, struct got_object_id *id)
904 const struct got_error *err = NULL;
906 err = got_privsep_send_tree_req(pack->privsep_child->ibuf, -1, id,
907 pack_idx);
908 if (err)
909 return err;
911 return got_privsep_recv_tree(tree, pack->privsep_child->ibuf);
914 static const struct got_error *
915 read_packed_tree_privsep(struct got_tree_object **tree,
916 struct got_pack *pack, struct got_packidx *packidx, int idx,
917 struct got_object_id *id)
919 const struct got_error *err = NULL;
921 if (pack->privsep_child)
922 return request_packed_tree(tree, pack, idx, id);
924 err = got_pack_start_privsep_child(pack, packidx);
925 if (err)
926 return err;
928 return request_packed_tree(tree, pack, idx, id);
931 static const struct got_error *
932 request_tree(struct got_tree_object **tree, struct got_repository *repo,
933 int fd, struct got_object_id *id)
935 const struct got_error *err = NULL;
936 struct imsgbuf *ibuf;
938 ibuf = repo->privsep_children[GOT_REPO_PRIVSEP_CHILD_TREE].ibuf;
940 err = got_privsep_send_tree_req(ibuf, fd, id, -1);
941 if (err)
942 return err;
944 return got_privsep_recv_tree(tree, ibuf);
947 static const struct got_error *
948 read_tree_privsep(struct got_tree_object **tree, int obj_fd,
949 struct got_object_id *id, struct got_repository *repo)
951 const struct got_error *err;
952 int imsg_fds[2];
953 pid_t pid;
954 struct imsgbuf *ibuf;
956 if (repo->privsep_children[GOT_REPO_PRIVSEP_CHILD_TREE].imsg_fd != -1)
957 return request_tree(tree, repo, obj_fd, id);
959 ibuf = calloc(1, sizeof(*ibuf));
960 if (ibuf == NULL)
961 return got_error_from_errno("calloc");
963 if (socketpair(AF_UNIX, SOCK_STREAM, PF_UNSPEC, imsg_fds) == -1) {
964 err = got_error_from_errno("socketpair");
965 free(ibuf);
966 return err;
969 pid = fork();
970 if (pid == -1) {
971 err = got_error_from_errno("fork");
972 free(ibuf);
973 return err;
975 else if (pid == 0) {
976 got_privsep_exec_child(imsg_fds, GOT_PATH_PROG_READ_TREE,
977 repo->path);
978 /* not reached */
981 if (close(imsg_fds[1]) == -1) {
982 err = got_error_from_errno("close");
983 free(ibuf);
984 return err;
986 repo->privsep_children[GOT_REPO_PRIVSEP_CHILD_TREE].imsg_fd =
987 imsg_fds[0];
988 repo->privsep_children[GOT_REPO_PRIVSEP_CHILD_TREE].pid = pid;
989 imsg_init(ibuf, imsg_fds[0]);
990 repo->privsep_children[GOT_REPO_PRIVSEP_CHILD_TREE].ibuf = ibuf;
993 return request_tree(tree, repo, obj_fd, id);
996 static const struct got_error *
997 open_tree(struct got_tree_object **tree, struct got_repository *repo,
998 struct got_object_id *id, int check_cache)
1000 const struct got_error *err = NULL;
1001 struct got_packidx *packidx = NULL;
1002 int idx;
1003 char *path_packfile = NULL;
1005 if (check_cache) {
1006 *tree = got_repo_get_cached_tree(repo, id);
1007 if (*tree != NULL) {
1008 (*tree)->refcnt++;
1009 return NULL;
1011 } else
1012 *tree = NULL;
1014 err = got_repo_search_packidx(&packidx, &idx, repo, id);
1015 if (err == NULL) {
1016 struct got_pack *pack = NULL;
1018 err = got_packidx_get_packfile_path(&path_packfile,
1019 packidx->path_packidx);
1020 if (err)
1021 return err;
1023 pack = got_repo_get_cached_pack(repo, path_packfile);
1024 if (pack == NULL) {
1025 err = got_repo_cache_pack(&pack, repo, path_packfile,
1026 packidx);
1027 if (err)
1028 goto done;
1030 err = read_packed_tree_privsep(tree, pack,
1031 packidx, idx, id);
1032 } else if (err->code == GOT_ERR_NO_OBJ) {
1033 int fd;
1035 err = got_object_open_loose_fd(&fd, id, repo);
1036 if (err)
1037 return err;
1038 err = read_tree_privsep(tree, fd, id, repo);
1041 if (err == NULL) {
1042 (*tree)->refcnt++;
1043 err = got_repo_cache_tree(repo, id, *tree);
1045 done:
1046 free(path_packfile);
1047 return err;
1050 const struct got_error *
1051 got_object_open_as_tree(struct got_tree_object **tree,
1052 struct got_repository *repo, struct got_object_id *id)
1054 *tree = got_repo_get_cached_tree(repo, id);
1055 if (*tree != NULL) {
1056 (*tree)->refcnt++;
1057 return NULL;
1060 return open_tree(tree, repo, id, 0);
1063 const struct got_error *
1064 got_object_tree_open(struct got_tree_object **tree,
1065 struct got_repository *repo, struct got_object *obj)
1067 return open_tree(tree, repo, got_object_get_id(obj), 1);
1070 int
1071 got_object_tree_get_nentries(struct got_tree_object *tree)
1073 return tree->nentries;
1076 struct got_tree_entry *
1077 got_object_tree_get_first_entry(struct got_tree_object *tree)
1079 return got_object_tree_get_entry(tree, 0);
1082 struct got_tree_entry *
1083 got_object_tree_get_last_entry(struct got_tree_object *tree)
1085 return got_object_tree_get_entry(tree, tree->nentries - 1);
1088 struct got_tree_entry *
1089 got_object_tree_get_entry(struct got_tree_object *tree, int i)
1091 if (i < 0 || i >= tree->nentries)
1092 return NULL;
1093 return &tree->entries[i];
1096 mode_t
1097 got_tree_entry_get_mode(struct got_tree_entry *te)
1099 return te->mode;
1102 const char *
1103 got_tree_entry_get_name(struct got_tree_entry *te)
1105 return &te->name[0];
1108 struct got_object_id *
1109 got_tree_entry_get_id(struct got_tree_entry *te)
1111 return &te->id;
1114 const struct got_error *
1115 got_object_blob_read_to_str(char **s, struct got_blob_object *blob)
1117 const struct got_error *err = NULL;
1118 size_t len, totlen, hdrlen, offset;
1120 *s = NULL;
1122 hdrlen = got_object_blob_get_hdrlen(blob);
1123 totlen = 0;
1124 offset = 0;
1125 do {
1126 char *p;
1128 err = got_object_blob_read_block(&len, blob);
1129 if (err)
1130 return err;
1132 if (len == 0)
1133 break;
1135 totlen += len - hdrlen;
1136 p = realloc(*s, totlen + 1);
1137 if (p == NULL) {
1138 err = got_error_from_errno("realloc");
1139 free(*s);
1140 *s = NULL;
1141 return err;
1143 *s = p;
1144 /* Skip blob object header first time around. */
1145 memcpy(*s + offset,
1146 got_object_blob_get_read_buf(blob) + hdrlen, len - hdrlen);
1147 hdrlen = 0;
1148 offset = totlen;
1149 } while (len > 0);
1151 (*s)[totlen] = '\0';
1152 return NULL;
1155 const struct got_error *
1156 got_tree_entry_get_symlink_target(char **link_target, struct got_tree_entry *te,
1157 struct got_repository *repo)
1159 const struct got_error *err = NULL;
1160 struct got_blob_object *blob = NULL;
1161 int fd = -1;
1163 *link_target = NULL;
1165 if (!got_object_tree_entry_is_symlink(te))
1166 return got_error(GOT_ERR_TREE_ENTRY_TYPE);
1168 fd = got_opentempfd();
1169 if (fd == -1) {
1170 err = got_error_from_errno("got_opentempfd");
1171 goto done;
1174 err = got_object_open_as_blob(&blob, repo,
1175 got_tree_entry_get_id(te), PATH_MAX, fd);
1176 if (err)
1177 goto done;
1179 err = got_object_blob_read_to_str(link_target, blob);
1180 done:
1181 if (fd != -1 && close(fd) == -1 && err == NULL)
1182 err = got_error_from_errno("close");
1183 if (blob)
1184 got_object_blob_close(blob);
1185 if (err) {
1186 free(*link_target);
1187 *link_target = NULL;
1189 return err;
1192 int
1193 got_tree_entry_get_index(struct got_tree_entry *te)
1195 return te->idx;
1198 struct got_tree_entry *
1199 got_tree_entry_get_next(struct got_tree_object *tree,
1200 struct got_tree_entry *te)
1202 return got_object_tree_get_entry(tree, te->idx + 1);
1205 struct got_tree_entry *
1206 got_tree_entry_get_prev(struct got_tree_object *tree,
1207 struct got_tree_entry *te)
1209 return got_object_tree_get_entry(tree, te->idx - 1);
1212 static const struct got_error *
1213 request_packed_blob(uint8_t **outbuf, size_t *size, size_t *hdrlen, int outfd,
1214 struct got_pack *pack, struct got_packidx *packidx, int idx,
1215 struct got_object_id *id)
1217 const struct got_error *err = NULL;
1218 struct imsgbuf *ibuf = pack->privsep_child->ibuf;
1219 int outfd_child;
1221 err = pack_child_send_tempfiles(ibuf, pack);
1222 if (err)
1223 return err;
1225 outfd_child = dup(outfd);
1226 if (outfd_child == -1)
1227 return got_error_from_errno("dup");
1229 err = got_privsep_send_blob_req(pack->privsep_child->ibuf, -1, id, idx);
1230 if (err)
1231 return err;
1233 err = got_privsep_send_blob_outfd(pack->privsep_child->ibuf,
1234 outfd_child);
1235 if (err) {
1236 return err;
1239 err = got_privsep_recv_blob(outbuf, size, hdrlen,
1240 pack->privsep_child->ibuf);
1241 if (err)
1242 return err;
1244 if (lseek(outfd, SEEK_SET, 0) == -1)
1245 err = got_error_from_errno("lseek");
1247 return err;
1250 static const struct got_error *
1251 read_packed_blob_privsep(uint8_t **outbuf, size_t *size, size_t *hdrlen,
1252 int outfd, struct got_pack *pack, struct got_packidx *packidx, int idx,
1253 struct got_object_id *id)
1255 const struct got_error *err = NULL;
1257 if (pack->privsep_child == NULL) {
1258 err = got_pack_start_privsep_child(pack, packidx);
1259 if (err)
1260 return err;
1263 return request_packed_blob(outbuf, size, hdrlen, outfd, pack, packidx,
1264 idx, id);
1267 static const struct got_error *
1268 request_blob(uint8_t **outbuf, size_t *size, size_t *hdrlen, int outfd,
1269 int infd, struct got_object_id *id, struct imsgbuf *ibuf)
1271 const struct got_error *err = NULL;
1272 int outfd_child;
1274 outfd_child = dup(outfd);
1275 if (outfd_child == -1)
1276 return got_error_from_errno("dup");
1278 err = got_privsep_send_blob_req(ibuf, infd, id, -1);
1279 if (err)
1280 return err;
1282 err = got_privsep_send_blob_outfd(ibuf, outfd_child);
1283 if (err)
1284 return err;
1286 err = got_privsep_recv_blob(outbuf, size, hdrlen, ibuf);
1287 if (err)
1288 return err;
1290 if (lseek(outfd, SEEK_SET, 0) == -1)
1291 return got_error_from_errno("lseek");
1293 return err;
1296 static const struct got_error *
1297 read_blob_privsep(uint8_t **outbuf, size_t *size, size_t *hdrlen,
1298 int outfd, int infd, struct got_object_id *id, struct got_repository *repo)
1300 const struct got_error *err;
1301 int imsg_fds[2];
1302 pid_t pid;
1303 struct imsgbuf *ibuf;
1305 if (repo->privsep_children[GOT_REPO_PRIVSEP_CHILD_BLOB].imsg_fd != -1) {
1306 ibuf = repo->privsep_children[GOT_REPO_PRIVSEP_CHILD_BLOB].ibuf;
1307 return request_blob(outbuf, size, hdrlen, outfd, infd, id,
1308 ibuf);
1311 ibuf = calloc(1, sizeof(*ibuf));
1312 if (ibuf == NULL)
1313 return got_error_from_errno("calloc");
1315 if (socketpair(AF_UNIX, SOCK_STREAM, PF_UNSPEC, imsg_fds) == -1) {
1316 err = got_error_from_errno("socketpair");
1317 free(ibuf);
1318 return err;
1321 pid = fork();
1322 if (pid == -1) {
1323 err = got_error_from_errno("fork");
1324 free(ibuf);
1325 return err;
1327 else if (pid == 0) {
1328 got_privsep_exec_child(imsg_fds, GOT_PATH_PROG_READ_BLOB,
1329 repo->path);
1330 /* not reached */
1333 if (close(imsg_fds[1]) == -1) {
1334 err = got_error_from_errno("close");
1335 free(ibuf);
1336 return err;
1338 repo->privsep_children[GOT_REPO_PRIVSEP_CHILD_BLOB].imsg_fd =
1339 imsg_fds[0];
1340 repo->privsep_children[GOT_REPO_PRIVSEP_CHILD_BLOB].pid = pid;
1341 imsg_init(ibuf, imsg_fds[0]);
1342 repo->privsep_children[GOT_REPO_PRIVSEP_CHILD_BLOB].ibuf = ibuf;
1344 return request_blob(outbuf, size, hdrlen, outfd, infd, id, ibuf);
1347 static const struct got_error *
1348 open_blob(struct got_blob_object **blob, struct got_repository *repo,
1349 struct got_object_id *id, size_t blocksize, int outfd)
1351 const struct got_error *err = NULL;
1352 struct got_packidx *packidx = NULL;
1353 int idx, dfd = -1;
1354 char *path_packfile = NULL;
1355 uint8_t *outbuf;
1356 size_t size, hdrlen;
1357 struct stat sb;
1359 *blob = calloc(1, sizeof(**blob));
1360 if (*blob == NULL)
1361 return got_error_from_errno("calloc");
1363 (*blob)->read_buf = malloc(blocksize);
1364 if ((*blob)->read_buf == NULL) {
1365 err = got_error_from_errno("malloc");
1366 goto done;
1369 err = got_repo_search_packidx(&packidx, &idx, repo, id);
1370 if (err == NULL) {
1371 struct got_pack *pack = NULL;
1373 err = got_packidx_get_packfile_path(&path_packfile,
1374 packidx->path_packidx);
1375 if (err)
1376 goto done;
1378 pack = got_repo_get_cached_pack(repo, path_packfile);
1379 if (pack == NULL) {
1380 err = got_repo_cache_pack(&pack, repo, path_packfile,
1381 packidx);
1382 if (err)
1383 goto done;
1385 err = read_packed_blob_privsep(&outbuf, &size, &hdrlen, outfd,
1386 pack, packidx, idx, id);
1387 } else if (err->code == GOT_ERR_NO_OBJ) {
1388 int infd;
1390 err = got_object_open_loose_fd(&infd, id, repo);
1391 if (err)
1392 goto done;
1393 err = read_blob_privsep(&outbuf, &size, &hdrlen, outfd, infd,
1394 id, repo);
1396 if (err)
1397 goto done;
1399 if (hdrlen > size) {
1400 err = got_error(GOT_ERR_BAD_OBJ_HDR);
1401 goto done;
1404 if (outbuf) {
1405 (*blob)->f = fmemopen(outbuf, size, "rb");
1406 if ((*blob)->f == NULL) {
1407 err = got_error_from_errno("fmemopen");
1408 free(outbuf);
1409 goto done;
1411 (*blob)->data = outbuf;
1412 } else {
1413 if (fstat(outfd, &sb) == -1) {
1414 err = got_error_from_errno("fstat");
1415 goto done;
1418 if (sb.st_size != size) {
1419 err = got_error(GOT_ERR_PRIVSEP_LEN);
1420 goto done;
1423 dfd = dup(outfd);
1424 if (dfd == -1) {
1425 err = got_error_from_errno("dup");
1426 goto done;
1429 (*blob)->f = fdopen(dfd, "rb");
1430 if ((*blob)->f == NULL) {
1431 err = got_error_from_errno("fdopen");
1432 close(dfd);
1433 dfd = -1;
1434 goto done;
1438 (*blob)->hdrlen = hdrlen;
1439 (*blob)->blocksize = blocksize;
1440 memcpy(&(*blob)->id.sha1, id->sha1, SHA1_DIGEST_LENGTH);
1442 done:
1443 free(path_packfile);
1444 if (err) {
1445 if (*blob) {
1446 got_object_blob_close(*blob);
1447 *blob = NULL;
1450 return err;
1453 const struct got_error *
1454 got_object_open_as_blob(struct got_blob_object **blob,
1455 struct got_repository *repo, struct got_object_id *id, size_t blocksize,
1456 int outfd)
1458 return open_blob(blob, repo, id, blocksize, outfd);
1461 const struct got_error *
1462 got_object_blob_open(struct got_blob_object **blob,
1463 struct got_repository *repo, struct got_object *obj, size_t blocksize,
1464 int outfd)
1466 return open_blob(blob, repo, got_object_get_id(obj), blocksize, outfd);
1469 const struct got_error *
1470 got_object_blob_close(struct got_blob_object *blob)
1472 const struct got_error *err = NULL;
1473 free(blob->read_buf);
1474 if (blob->f && fclose(blob->f) == EOF)
1475 err = got_error_from_errno("fclose");
1476 free(blob->data);
1477 free(blob);
1478 return err;
1481 void
1482 got_object_blob_rewind(struct got_blob_object *blob)
1484 if (blob->f)
1485 rewind(blob->f);
1488 char *
1489 got_object_blob_id_str(struct got_blob_object *blob, char *buf, size_t size)
1491 return got_sha1_digest_to_str(blob->id.sha1, buf, size);
1494 size_t
1495 got_object_blob_get_hdrlen(struct got_blob_object *blob)
1497 return blob->hdrlen;
1500 const uint8_t *
1501 got_object_blob_get_read_buf(struct got_blob_object *blob)
1503 return blob->read_buf;
1506 const struct got_error *
1507 got_object_blob_read_block(size_t *outlenp, struct got_blob_object *blob)
1509 size_t n;
1511 n = fread(blob->read_buf, 1, blob->blocksize, blob->f);
1512 if (n == 0 && ferror(blob->f))
1513 return got_ferror(blob->f, GOT_ERR_IO);
1514 *outlenp = n;
1515 return NULL;
1518 const struct got_error *
1519 got_object_blob_dump_to_file(off_t *filesize, int *nlines,
1520 off_t **line_offsets, FILE *outfile, struct got_blob_object *blob)
1522 const struct got_error *err = NULL;
1523 size_t n, len, hdrlen;
1524 const uint8_t *buf;
1525 int i;
1526 const int alloc_chunksz = 512;
1527 size_t nalloc = 0;
1528 off_t off = 0, total_len = 0;
1530 if (line_offsets)
1531 *line_offsets = NULL;
1532 if (filesize)
1533 *filesize = 0;
1534 if (nlines)
1535 *nlines = 0;
1537 hdrlen = got_object_blob_get_hdrlen(blob);
1538 do {
1539 err = got_object_blob_read_block(&len, blob);
1540 if (err)
1541 return err;
1542 if (len == 0)
1543 break;
1544 buf = got_object_blob_get_read_buf(blob);
1545 i = hdrlen;
1546 if (nlines) {
1547 if (line_offsets && *line_offsets == NULL) {
1548 /* Have some data but perhaps no '\n'. */
1549 *nlines = 1;
1550 nalloc = alloc_chunksz;
1551 *line_offsets = calloc(nalloc,
1552 sizeof(**line_offsets));
1553 if (*line_offsets == NULL)
1554 return got_error_from_errno("calloc");
1556 /* Skip forward over end of first line. */
1557 while (i < len) {
1558 if (buf[i] == '\n')
1559 break;
1560 i++;
1563 /* Scan '\n' offsets in remaining chunk of data. */
1564 while (i < len) {
1565 if (buf[i] != '\n') {
1566 i++;
1567 continue;
1569 (*nlines)++;
1570 if (line_offsets && nalloc < *nlines) {
1571 size_t n = *nlines + alloc_chunksz;
1572 off_t *o = recallocarray(*line_offsets,
1573 nalloc, n, sizeof(**line_offsets));
1574 if (o == NULL) {
1575 free(*line_offsets);
1576 *line_offsets = NULL;
1577 return got_error_from_errno(
1578 "recallocarray");
1580 *line_offsets = o;
1581 nalloc = n;
1583 if (line_offsets) {
1584 off = total_len + i - hdrlen + 1;
1585 (*line_offsets)[*nlines - 1] = off;
1587 i++;
1590 /* Skip blob object header first time around. */
1591 n = fwrite(buf + hdrlen, 1, len - hdrlen, outfile);
1592 if (n != len - hdrlen)
1593 return got_ferror(outfile, GOT_ERR_IO);
1594 total_len += len - hdrlen;
1595 hdrlen = 0;
1596 } while (len != 0);
1598 if (fflush(outfile) != 0)
1599 return got_error_from_errno("fflush");
1600 rewind(outfile);
1602 if (filesize)
1603 *filesize = total_len;
1605 return NULL;
1608 static const struct got_error *
1609 request_packed_tag(struct got_tag_object **tag, struct got_pack *pack,
1610 int pack_idx, struct got_object_id *id)
1612 const struct got_error *err = NULL;
1614 err = got_privsep_send_tag_req(pack->privsep_child->ibuf, -1, id,
1615 pack_idx);
1616 if (err)
1617 return err;
1619 return got_privsep_recv_tag(tag, pack->privsep_child->ibuf);
1622 static const struct got_error *
1623 read_packed_tag_privsep(struct got_tag_object **tag,
1624 struct got_pack *pack, struct got_packidx *packidx, int idx,
1625 struct got_object_id *id)
1627 const struct got_error *err = NULL;
1629 if (pack->privsep_child)
1630 return request_packed_tag(tag, pack, idx, id);
1632 err = got_pack_start_privsep_child(pack, packidx);
1633 if (err)
1634 return err;
1636 return request_packed_tag(tag, pack, idx, id);
1639 static const struct got_error *
1640 request_tag(struct got_tag_object **tag, struct got_repository *repo,
1641 int fd, struct got_object_id *id)
1643 const struct got_error *err = NULL;
1644 struct imsgbuf *ibuf;
1646 ibuf = repo->privsep_children[GOT_REPO_PRIVSEP_CHILD_TAG].ibuf;
1648 err = got_privsep_send_tag_req(ibuf, fd, id, -1);
1649 if (err)
1650 return err;
1652 return got_privsep_recv_tag(tag, ibuf);
1655 static const struct got_error *
1656 read_tag_privsep(struct got_tag_object **tag, int obj_fd,
1657 struct got_object_id *id, struct got_repository *repo)
1659 const struct got_error *err;
1660 int imsg_fds[2];
1661 pid_t pid;
1662 struct imsgbuf *ibuf;
1664 if (repo->privsep_children[GOT_REPO_PRIVSEP_CHILD_TAG].imsg_fd != -1)
1665 return request_tag(tag, repo, obj_fd, id);
1667 ibuf = calloc(1, sizeof(*ibuf));
1668 if (ibuf == NULL)
1669 return got_error_from_errno("calloc");
1671 if (socketpair(AF_UNIX, SOCK_STREAM, PF_UNSPEC, imsg_fds) == -1) {
1672 err = got_error_from_errno("socketpair");
1673 free(ibuf);
1674 return err;
1677 pid = fork();
1678 if (pid == -1) {
1679 err = got_error_from_errno("fork");
1680 free(ibuf);
1681 return err;
1683 else if (pid == 0) {
1684 got_privsep_exec_child(imsg_fds, GOT_PATH_PROG_READ_TAG,
1685 repo->path);
1686 /* not reached */
1689 if (close(imsg_fds[1]) == -1) {
1690 err = got_error_from_errno("close");
1691 free(ibuf);
1692 return err;
1694 repo->privsep_children[GOT_REPO_PRIVSEP_CHILD_TAG].imsg_fd =
1695 imsg_fds[0];
1696 repo->privsep_children[GOT_REPO_PRIVSEP_CHILD_TAG].pid = pid;
1697 imsg_init(ibuf, imsg_fds[0]);
1698 repo->privsep_children[GOT_REPO_PRIVSEP_CHILD_TAG].ibuf = ibuf;
1700 return request_tag(tag, repo, obj_fd, id);
1703 static const struct got_error *
1704 open_tag(struct got_tag_object **tag, struct got_repository *repo,
1705 struct got_object_id *id, int check_cache)
1707 const struct got_error *err = NULL;
1708 struct got_packidx *packidx = NULL;
1709 int idx;
1710 char *path_packfile = NULL;
1711 struct got_object *obj = NULL;
1712 int obj_type = GOT_OBJ_TYPE_ANY;
1714 if (check_cache) {
1715 *tag = got_repo_get_cached_tag(repo, id);
1716 if (*tag != NULL) {
1717 (*tag)->refcnt++;
1718 return NULL;
1720 } else
1721 *tag = NULL;
1723 err = got_repo_search_packidx(&packidx, &idx, repo, id);
1724 if (err == NULL) {
1725 struct got_pack *pack = NULL;
1727 err = got_packidx_get_packfile_path(&path_packfile,
1728 packidx->path_packidx);
1729 if (err)
1730 return err;
1732 pack = got_repo_get_cached_pack(repo, path_packfile);
1733 if (pack == NULL) {
1734 err = got_repo_cache_pack(&pack, repo, path_packfile,
1735 packidx);
1736 if (err)
1737 goto done;
1740 /* Beware of "lightweight" tags: Check object type first. */
1741 err = read_packed_object_privsep(&obj, repo, pack, packidx,
1742 idx, id);
1743 if (err)
1744 goto done;
1745 obj_type = obj->type;
1746 got_object_close(obj);
1747 if (obj_type != GOT_OBJ_TYPE_TAG) {
1748 err = got_error(GOT_ERR_OBJ_TYPE);
1749 goto done;
1751 err = read_packed_tag_privsep(tag, pack, packidx, idx, id);
1752 } else if (err->code == GOT_ERR_NO_OBJ) {
1753 int fd;
1755 err = got_object_open_loose_fd(&fd, id, repo);
1756 if (err)
1757 return err;
1758 err = got_object_read_header_privsep(&obj, id, repo, fd);
1759 if (err)
1760 return err;
1761 obj_type = obj->type;
1762 got_object_close(obj);
1763 if (obj_type != GOT_OBJ_TYPE_TAG)
1764 return got_error(GOT_ERR_OBJ_TYPE);
1766 err = got_object_open_loose_fd(&fd, id, repo);
1767 if (err)
1768 return err;
1769 err = read_tag_privsep(tag, fd, id, repo);
1772 if (err == NULL) {
1773 (*tag)->refcnt++;
1774 err = got_repo_cache_tag(repo, id, *tag);
1776 done:
1777 free(path_packfile);
1778 return err;
1781 const struct got_error *
1782 got_object_open_as_tag(struct got_tag_object **tag,
1783 struct got_repository *repo, struct got_object_id *id)
1785 *tag = got_repo_get_cached_tag(repo, id);
1786 if (*tag != NULL) {
1787 (*tag)->refcnt++;
1788 return NULL;
1791 return open_tag(tag, repo, id, 0);
1794 const struct got_error *
1795 got_object_tag_open(struct got_tag_object **tag,
1796 struct got_repository *repo, struct got_object *obj)
1798 return open_tag(tag, repo, got_object_get_id(obj), 1);
1801 const char *
1802 got_object_tag_get_name(struct got_tag_object *tag)
1804 return tag->tag;
1807 int
1808 got_object_tag_get_object_type(struct got_tag_object *tag)
1810 return tag->obj_type;
1813 struct got_object_id *
1814 got_object_tag_get_object_id(struct got_tag_object *tag)
1816 return &tag->id;
1819 time_t
1820 got_object_tag_get_tagger_time(struct got_tag_object *tag)
1822 return tag->tagger_time;
1825 time_t
1826 got_object_tag_get_tagger_gmtoff(struct got_tag_object *tag)
1828 return tag->tagger_gmtoff;
1831 const char *
1832 got_object_tag_get_tagger(struct got_tag_object *tag)
1834 return tag->tagger;
1837 const char *
1838 got_object_tag_get_message(struct got_tag_object *tag)
1840 return tag->tagmsg;
1843 static struct got_tree_entry *
1844 find_entry_by_name(struct got_tree_object *tree, const char *name, size_t len)
1846 int i;
1848 /* Note that tree entries are sorted in strncmp() order. */
1849 for (i = 0; i < tree->nentries; i++) {
1850 struct got_tree_entry *te = &tree->entries[i];
1851 int cmp = strncmp(te->name, name, len);
1852 if (cmp < 0)
1853 continue;
1854 if (cmp > 0)
1855 break;
1856 if (te->name[len] == '\0')
1857 return te;
1859 return NULL;
1862 struct got_tree_entry *
1863 got_object_tree_find_entry(struct got_tree_object *tree, const char *name)
1865 return find_entry_by_name(tree, name, strlen(name));
1868 const struct got_error *
1869 got_object_tree_find_path(struct got_object_id **id, mode_t *mode,
1870 struct got_repository *repo, struct got_tree_object *tree,
1871 const char *path)
1873 const struct got_error *err = NULL;
1874 struct got_tree_object *subtree = NULL;
1875 struct got_tree_entry *te = NULL;
1876 const char *seg, *s;
1877 size_t seglen;
1879 *id = NULL;
1881 s = path;
1882 while (s[0] == '/')
1883 s++;
1884 seg = s;
1885 seglen = 0;
1886 subtree = tree;
1887 while (*s) {
1888 struct got_tree_object *next_tree;
1890 if (*s != '/') {
1891 s++;
1892 seglen++;
1893 if (*s)
1894 continue;
1897 te = find_entry_by_name(subtree, seg, seglen);
1898 if (te == NULL) {
1899 err = got_error_path(path, GOT_ERR_NO_TREE_ENTRY);
1900 goto done;
1903 if (*s == '\0')
1904 break;
1906 seg = s + 1;
1907 seglen = 0;
1908 s++;
1909 if (*s) {
1910 err = got_object_open_as_tree(&next_tree, repo,
1911 &te->id);
1912 te = NULL;
1913 if (err)
1914 goto done;
1915 if (subtree != tree)
1916 got_object_tree_close(subtree);
1917 subtree = next_tree;
1921 if (te) {
1922 *id = got_object_id_dup(&te->id);
1923 if (*id == NULL)
1924 return got_error_from_errno("got_object_id_dup");
1925 if (mode)
1926 *mode = te->mode;
1927 } else
1928 err = got_error_path(path, GOT_ERR_NO_TREE_ENTRY);
1929 done:
1930 if (subtree && subtree != tree)
1931 got_object_tree_close(subtree);
1932 return err;
1934 const struct got_error *
1935 got_object_id_by_path(struct got_object_id **id, struct got_repository *repo,
1936 struct got_commit_object *commit, const char *path)
1938 const struct got_error *err = NULL;
1939 struct got_tree_object *tree = NULL;
1941 *id = NULL;
1943 /* Handle opening of root of commit's tree. */
1944 if (got_path_is_root_dir(path)) {
1945 *id = got_object_id_dup(commit->tree_id);
1946 if (*id == NULL)
1947 err = got_error_from_errno("got_object_id_dup");
1948 } else {
1949 err = got_object_open_as_tree(&tree, repo, commit->tree_id);
1950 if (err)
1951 goto done;
1952 err = got_object_tree_find_path(id, NULL, repo, tree, path);
1954 done:
1955 if (tree)
1956 got_object_tree_close(tree);
1957 return err;
1961 * Normalize file mode bits to avoid false positive tree entry differences
1962 * in case tree entries have unexpected mode bits set.
1964 static mode_t
1965 normalize_mode_for_comparison(mode_t mode)
1968 * For directories, the only relevant bit is the IFDIR bit.
1969 * This allows us to detect paths changing from a directory
1970 * to a file and vice versa.
1972 if (S_ISDIR(mode))
1973 return mode & S_IFDIR;
1976 * For symlinks, the only relevant bit is the IFLNK bit.
1977 * This allows us to detect paths changing from a symlinks
1978 * to a file or directory and vice versa.
1980 if (S_ISLNK(mode))
1981 return mode & S_IFLNK;
1983 /* For files, the only change we care about is the executable bit. */
1984 return mode & S_IXUSR;
1987 const struct got_error *
1988 got_object_tree_path_changed(int *changed,
1989 struct got_tree_object *tree01, struct got_tree_object *tree02,
1990 const char *path, struct got_repository *repo)
1992 const struct got_error *err = NULL;
1993 struct got_tree_object *tree1 = NULL, *tree2 = NULL;
1994 struct got_tree_entry *te1 = NULL, *te2 = NULL;
1995 const char *seg, *s;
1996 size_t seglen;
1998 *changed = 0;
2000 /* We not do support comparing the root path. */
2001 if (got_path_is_root_dir(path))
2002 return got_error_path(path, GOT_ERR_BAD_PATH);
2004 tree1 = tree01;
2005 tree2 = tree02;
2006 s = path;
2007 while (*s == '/')
2008 s++;
2009 seg = s;
2010 seglen = 0;
2011 while (*s) {
2012 struct got_tree_object *next_tree1, *next_tree2;
2013 mode_t mode1, mode2;
2015 if (*s != '/') {
2016 s++;
2017 seglen++;
2018 if (*s)
2019 continue;
2022 te1 = find_entry_by_name(tree1, seg, seglen);
2023 if (te1 == NULL) {
2024 err = got_error(GOT_ERR_NO_OBJ);
2025 goto done;
2028 if (tree2)
2029 te2 = find_entry_by_name(tree2, seg, seglen);
2031 if (te2) {
2032 mode1 = normalize_mode_for_comparison(te1->mode);
2033 mode2 = normalize_mode_for_comparison(te2->mode);
2034 if (mode1 != mode2) {
2035 *changed = 1;
2036 goto done;
2039 if (got_object_id_cmp(&te1->id, &te2->id) == 0) {
2040 *changed = 0;
2041 goto done;
2045 if (*s == '\0') { /* final path element */
2046 *changed = 1;
2047 goto done;
2050 seg = s + 1;
2051 s++;
2052 seglen = 0;
2053 if (*s) {
2054 err = got_object_open_as_tree(&next_tree1, repo,
2055 &te1->id);
2056 te1 = NULL;
2057 if (err)
2058 goto done;
2059 if (tree1 != tree01)
2060 got_object_tree_close(tree1);
2061 tree1 = next_tree1;
2063 if (te2) {
2064 err = got_object_open_as_tree(&next_tree2, repo,
2065 &te2->id);
2066 te2 = NULL;
2067 if (err)
2068 goto done;
2069 if (tree2 != tree02)
2070 got_object_tree_close(tree2);
2071 tree2 = next_tree2;
2072 } else if (tree2) {
2073 if (tree2 != tree02)
2074 got_object_tree_close(tree2);
2075 tree2 = NULL;
2079 done:
2080 if (tree1 && tree1 != tree01)
2081 got_object_tree_close(tree1);
2082 if (tree2 && tree2 != tree02)
2083 got_object_tree_close(tree2);
2084 return err;
2087 const struct got_error *
2088 got_object_tree_entry_dup(struct got_tree_entry **new_te,
2089 struct got_tree_entry *te)
2091 const struct got_error *err = NULL;
2093 *new_te = calloc(1, sizeof(**new_te));
2094 if (*new_te == NULL)
2095 return got_error_from_errno("calloc");
2097 (*new_te)->mode = te->mode;
2098 memcpy((*new_te)->name, te->name, sizeof((*new_te)->name));
2099 memcpy(&(*new_te)->id, &te->id, sizeof((*new_te)->id));
2100 return err;
2103 int
2104 got_object_tree_entry_is_submodule(struct got_tree_entry *te)
2106 return (te->mode & S_IFMT) == (S_IFDIR | S_IFLNK);
2109 int
2110 got_object_tree_entry_is_symlink(struct got_tree_entry *te)
2112 /* S_IFDIR check avoids confusing symlinks with submodules. */
2113 return ((te->mode & (S_IFDIR | S_IFLNK)) == S_IFLNK);
2116 static const struct got_error *
2117 resolve_symlink(char **link_target, const char *path,
2118 struct got_commit_object *commit, struct got_repository *repo)
2120 const struct got_error *err = NULL;
2121 char buf[PATH_MAX];
2122 char *name, *parent_path = NULL;
2123 struct got_object_id *tree_obj_id = NULL;
2124 struct got_tree_object *tree = NULL;
2125 struct got_tree_entry *te = NULL;
2127 *link_target = NULL;
2129 if (strlcpy(buf, path, sizeof(buf)) >= sizeof(buf))
2130 return got_error(GOT_ERR_NO_SPACE);
2132 name = basename(buf);
2133 if (name == NULL)
2134 return got_error_from_errno2("basename", path);
2136 err = got_path_dirname(&parent_path, path);
2137 if (err)
2138 return err;
2140 err = got_object_id_by_path(&tree_obj_id, repo, commit,
2141 parent_path);
2142 if (err) {
2143 if (err->code == GOT_ERR_NO_TREE_ENTRY) {
2144 /* Display the complete path in error message. */
2145 err = got_error_path(path, err->code);
2147 goto done;
2150 err = got_object_open_as_tree(&tree, repo, tree_obj_id);
2151 if (err)
2152 goto done;
2154 te = got_object_tree_find_entry(tree, name);
2155 if (te == NULL) {
2156 err = got_error_path(path, GOT_ERR_NO_TREE_ENTRY);
2157 goto done;
2160 if (got_object_tree_entry_is_symlink(te)) {
2161 err = got_tree_entry_get_symlink_target(link_target, te, repo);
2162 if (err)
2163 goto done;
2164 if (!got_path_is_absolute(*link_target)) {
2165 char *abspath;
2166 if (asprintf(&abspath, "%s/%s", parent_path,
2167 *link_target) == -1) {
2168 err = got_error_from_errno("asprintf");
2169 goto done;
2171 free(*link_target);
2172 *link_target = malloc(PATH_MAX);
2173 if (*link_target == NULL) {
2174 err = got_error_from_errno("malloc");
2175 goto done;
2177 err = got_canonpath(abspath, *link_target, PATH_MAX);
2178 free(abspath);
2179 if (err)
2180 goto done;
2183 done:
2184 free(tree_obj_id);
2185 if (tree)
2186 got_object_tree_close(tree);
2187 if (err) {
2188 free(*link_target);
2189 *link_target = NULL;
2191 return err;
2194 const struct got_error *
2195 got_object_resolve_symlinks(char **link_target, const char *path,
2196 struct got_commit_object *commit, struct got_repository *repo)
2198 const struct got_error *err = NULL;
2199 char *next_target = NULL;
2200 int max_recursion = 40; /* matches Git */
2202 *link_target = NULL;
2204 do {
2205 err = resolve_symlink(&next_target,
2206 *link_target ? *link_target : path, commit, repo);
2207 if (err)
2208 break;
2209 if (next_target) {
2210 free(*link_target);
2211 if (--max_recursion == 0) {
2212 err = got_error_path(path, GOT_ERR_RECURSION);
2213 *link_target = NULL;
2214 break;
2216 *link_target = next_target;
2218 } while (next_target);
2220 return err;
2223 const struct got_error *
2224 got_traverse_packed_commits(struct got_object_id_queue *traversed_commits,
2225 struct got_object_id *commit_id, const char *path,
2226 struct got_repository *repo)
2228 const struct got_error *err = NULL;
2229 struct got_pack *pack = NULL;
2230 struct got_packidx *packidx = NULL;
2231 char *path_packfile = NULL;
2232 struct got_commit_object *changed_commit = NULL;
2233 struct got_object_id *changed_commit_id = NULL;
2234 int idx;
2236 err = got_repo_search_packidx(&packidx, &idx, repo, commit_id);
2237 if (err) {
2238 if (err->code != GOT_ERR_NO_OBJ)
2239 return err;
2240 return NULL;
2243 err = got_packidx_get_packfile_path(&path_packfile,
2244 packidx->path_packidx);
2245 if (err)
2246 return err;
2248 pack = got_repo_get_cached_pack(repo, path_packfile);
2249 if (pack == NULL) {
2250 err = got_repo_cache_pack(&pack, repo, path_packfile, packidx);
2251 if (err)
2252 goto done;
2255 if (pack->privsep_child == NULL) {
2256 err = got_pack_start_privsep_child(pack, packidx);
2257 if (err)
2258 goto done;
2261 err = got_privsep_send_commit_traversal_request(
2262 pack->privsep_child->ibuf, commit_id, idx, path);
2263 if (err)
2264 goto done;
2266 err = got_privsep_recv_traversed_commits(&changed_commit,
2267 &changed_commit_id, traversed_commits, pack->privsep_child->ibuf);
2268 if (err)
2269 goto done;
2271 if (changed_commit) {
2273 * Cache the commit in which the path was changed.
2274 * This commit might be opened again soon.
2276 changed_commit->refcnt++;
2277 err = got_repo_cache_commit(repo, changed_commit_id,
2278 changed_commit);
2279 got_object_commit_close(changed_commit);
2281 done:
2282 free(path_packfile);
2283 free(changed_commit_id);
2284 return err;
2287 const struct got_error *
2288 got_object_enumerate(int *found_all_objects,
2289 got_object_enumerate_commit_cb cb_commit,
2290 got_object_enumerate_tree_cb cb_tree, void *cb_arg,
2291 struct got_object_id **ours, int nours,
2292 struct got_object_id **theirs, int ntheirs,
2293 struct got_packidx *packidx, struct got_repository *repo)
2295 const struct got_error *err = NULL;
2296 struct got_pack *pack;
2297 char *path_packfile = NULL;
2299 err = got_packidx_get_packfile_path(&path_packfile,
2300 packidx->path_packidx);
2301 if (err)
2302 return err;
2304 pack = got_repo_get_cached_pack(repo, path_packfile);
2305 if (pack == NULL) {
2306 err = got_repo_cache_pack(&pack, repo, path_packfile, packidx);
2307 if (err)
2308 goto done;
2311 if (pack->privsep_child == NULL) {
2312 err = got_pack_start_privsep_child(pack, packidx);
2313 if (err)
2314 goto done;
2317 err = got_privsep_send_object_enumeration_request(
2318 pack->privsep_child->ibuf);
2319 if (err)
2320 goto done;
2322 err = got_privsep_send_object_idlist(pack->privsep_child->ibuf,
2323 ours, nours);
2324 if (err)
2325 goto done;
2326 err = got_privsep_send_object_idlist_done(pack->privsep_child->ibuf);
2327 if (err)
2328 goto done;
2330 err = got_privsep_send_object_idlist(pack->privsep_child->ibuf,
2331 theirs, ntheirs);
2332 if (err)
2333 goto done;
2334 err = got_privsep_send_object_idlist_done(pack->privsep_child->ibuf);
2335 if (err)
2336 goto done;
2338 err = got_privsep_recv_enumerated_objects(found_all_objects,
2339 pack->privsep_child->ibuf, cb_commit, cb_tree, cb_arg, repo);
2340 done:
2341 free(path_packfile);
2342 return err;