/* * Copyright (c) 2018, 2019 Stefan Sperling * * Permission to use, copy, modify, and distribute this software for any * purpose with or without fee is hereby granted, provided that the above * copyright notice and this permission notice appear in all copies. * * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include "got_error.h" #include "got_object.h" #include "got_repository.h" #include "got_opentemp.h" #include "got_path.h" #include "got_lib_sha1.h" #include "got_lib_delta.h" #include "got_lib_inflate.h" #include "got_lib_object.h" #include "got_lib_privsep.h" #include "got_lib_object_idcache.h" #include "got_lib_object_cache.h" #include "got_lib_object_parse.h" #include "got_lib_pack.h" #include "got_lib_repository.h" #ifndef MIN #define MIN(_a,_b) ((_a) < (_b) ? (_a) : (_b)) #endif #ifndef nitems #define nitems(_a) (sizeof((_a)) / sizeof((_a)[0])) #endif struct got_object_id * got_object_get_id(struct got_object *obj) { return &obj->id; } const struct got_error * got_object_get_id_str(char **outbuf, struct got_object *obj) { return got_object_id_str(outbuf, &obj->id); } const struct got_error * got_object_get_type(int *type, struct got_repository *repo, struct got_object_id *id) { const struct got_error *err = NULL; struct got_object *obj; err = got_object_open(&obj, repo, id); if (err) return err; switch (obj->type) { case GOT_OBJ_TYPE_COMMIT: case GOT_OBJ_TYPE_TREE: case GOT_OBJ_TYPE_BLOB: case GOT_OBJ_TYPE_TAG: *type = obj->type; break; default: err = got_error(GOT_ERR_OBJ_TYPE); break; } got_object_close(obj); return err; } const struct got_error * got_object_get_path(char **path, struct got_object_id *id, struct got_repository *repo) { const struct got_error *err = NULL; char *hex = NULL; char *path_objects; *path = NULL; path_objects = got_repo_get_path_objects(repo); if (path_objects == NULL) return got_error_from_errno("got_repo_get_path_objects"); err = got_object_id_str(&hex, id); if (err) goto done; if (asprintf(path, "%s/%.2x/%s", path_objects, id->sha1[0], hex + 2) == -1) err = got_error_from_errno("asprintf"); done: free(hex); free(path_objects); return err; } const struct got_error * got_object_open_loose_fd(int *fd, struct got_object_id *id, struct got_repository *repo) { const struct got_error *err = NULL; char *path; err = got_object_get_path(&path, id, repo); if (err) return err; *fd = open(path, O_RDONLY | O_NOFOLLOW | O_CLOEXEC); if (*fd == -1) { err = got_error_from_errno2("open", path); goto done; } done: free(path); return err; } static const struct got_error * request_packed_object(struct got_object **obj, struct got_pack *pack, int idx, struct got_object_id *id) { const struct got_error *err = NULL; struct imsgbuf *ibuf = pack->privsep_child->ibuf; err = got_privsep_send_packed_obj_req(ibuf, idx, id); if (err) return err; err = got_privsep_recv_obj(obj, ibuf); if (err) return err; memcpy(&(*obj)->id, id, sizeof((*obj)->id)); return NULL; } /* Create temporary files used during delta application. */ static const struct got_error * pack_child_send_tempfiles(struct imsgbuf *ibuf, struct got_pack *pack) { const struct got_error *err; int basefd = -1, accumfd = -1; /* * For performance reasons, the child will keep reusing the * same temporary files during every object request. * Opening and closing new files for every object request is * too expensive during operations such as 'gotadmin pack'. */ if (pack->child_has_tempfiles) return NULL; basefd = dup(pack->basefd); if (basefd == -1) return got_error_from_errno("dup"); accumfd = dup(pack->accumfd); if (accumfd == -1) { err = got_error_from_errno("dup"); goto done; } err = got_privsep_send_tmpfd(ibuf, basefd); if (err) goto done; err = got_privsep_send_tmpfd(ibuf, accumfd); done: if (err) { if (basefd != -1) close(basefd); if (accumfd != -1) close(accumfd); } else pack->child_has_tempfiles = 1; return NULL; } static const struct got_error * request_packed_object_raw(uint8_t **outbuf, off_t *size, size_t *hdrlen, int outfd, struct got_pack *pack, int idx, struct got_object_id *id) { const struct got_error *err = NULL; struct imsgbuf *ibuf = pack->privsep_child->ibuf; int outfd_child; err = pack_child_send_tempfiles(ibuf, pack); if (err) return err; outfd_child = dup(outfd); if (outfd_child == -1) return got_error_from_errno("dup"); err = got_privsep_send_packed_raw_obj_req(ibuf, idx, id); if (err) { close(outfd_child); return err; } err = got_privsep_send_raw_obj_outfd(ibuf, outfd_child); if (err) return err; err = got_privsep_recv_raw_obj(outbuf, size, hdrlen, ibuf); if (err) return err; return NULL; } static const struct got_error * read_packed_object_privsep(struct got_object **obj, struct got_repository *repo, struct got_pack *pack, struct got_packidx *packidx, int idx, struct got_object_id *id) { const struct got_error *err = NULL; if (pack->privsep_child == NULL) { err = got_pack_start_privsep_child(pack, packidx); if (err) return err; } return request_packed_object(obj, pack, idx, id); } static const struct got_error * read_packed_object_raw_privsep(uint8_t **outbuf, off_t *size, size_t *hdrlen, int outfd, struct got_pack *pack, struct got_packidx *packidx, int idx, struct got_object_id *id) { const struct got_error *err = NULL; if (pack->privsep_child == NULL) { err = got_pack_start_privsep_child(pack, packidx); if (err) return err; } return request_packed_object_raw(outbuf, size, hdrlen, outfd, pack, idx, id); } const struct got_error * got_object_open_packed(struct got_object **obj, struct got_object_id *id, struct got_repository *repo) { const struct got_error *err = NULL; struct got_pack *pack = NULL; struct got_packidx *packidx = NULL; int idx; char *path_packfile; err = got_repo_search_packidx(&packidx, &idx, repo, id); if (err) return err; err = got_packidx_get_packfile_path(&path_packfile, packidx->path_packidx); if (err) return err; pack = got_repo_get_cached_pack(repo, path_packfile); if (pack == NULL) { err = got_repo_cache_pack(&pack, repo, path_packfile, packidx); if (err) goto done; } err = read_packed_object_privsep(obj, repo, pack, packidx, idx, id); if (err) goto done; done: free(path_packfile); return err; } const struct got_error * got_object_open_from_packfile(struct got_object **obj, struct got_object_id *id, struct got_pack *pack, struct got_packidx *packidx, int obj_idx, struct got_repository *repo) { return read_packed_object_privsep(obj, repo, pack, packidx, obj_idx, id); } const struct got_error * got_object_read_raw_delta(uint64_t *base_size, uint64_t *result_size, off_t *delta_size, off_t *delta_compressed_size, off_t *delta_offset, off_t *delta_out_offset, struct got_object_id **base_id, int delta_cache_fd, struct got_packidx *packidx, int obj_idx, struct got_object_id *id, struct got_repository *repo) { const struct got_error *err = NULL; struct got_pack *pack = NULL; char *path_packfile; *base_size = 0; *result_size = 0; *delta_size = 0; *delta_compressed_size = 0; *delta_offset = 0; *delta_out_offset = 0; err = got_packidx_get_packfile_path(&path_packfile, packidx->path_packidx); if (err) return err; pack = got_repo_get_cached_pack(repo, path_packfile); if (pack == NULL) { err = got_repo_cache_pack(&pack, repo, path_packfile, packidx); if (err) return err; } if (pack->privsep_child == NULL) { err = got_pack_start_privsep_child(pack, packidx); if (err) return err; } if (!pack->child_has_delta_outfd) { int outfd_child; outfd_child = dup(delta_cache_fd); if (outfd_child == -1) return got_error_from_errno("dup"); err = got_privsep_send_raw_delta_outfd( pack->privsep_child->ibuf, outfd_child); if (err) return err; pack->child_has_delta_outfd = 1; } err = got_privsep_send_raw_delta_req(pack->privsep_child->ibuf, obj_idx, id); if (err) return err; return got_privsep_recv_raw_delta(base_size, result_size, delta_size, delta_compressed_size, delta_offset, delta_out_offset, base_id, pack->privsep_child->ibuf); } static const struct got_error * request_object(struct got_object **obj, struct got_object_id *id, struct got_repository *repo, int fd) { const struct got_error *err = NULL; struct imsgbuf *ibuf; ibuf = repo->privsep_children[GOT_REPO_PRIVSEP_CHILD_OBJECT].ibuf; err = got_privsep_send_obj_req(ibuf, fd, id); if (err) return err; return got_privsep_recv_obj(obj, ibuf); } static const struct got_error * request_raw_object(uint8_t **outbuf, off_t *size, size_t *hdrlen, int outfd, struct got_object_id *id, struct got_repository *repo, int infd) { const struct got_error *err = NULL; struct imsgbuf *ibuf; int outfd_child; ibuf = repo->privsep_children[GOT_REPO_PRIVSEP_CHILD_OBJECT].ibuf; outfd_child = dup(outfd); if (outfd_child == -1) return got_error_from_errno("dup"); err = got_privsep_send_raw_obj_req(ibuf, infd, id); if (err) return err; err = got_privsep_send_raw_obj_outfd(ibuf, outfd_child); if (err) return err; return got_privsep_recv_raw_obj(outbuf, size, hdrlen, ibuf); } static const struct got_error * start_read_object_child(struct got_repository *repo) { const struct got_error *err = NULL; int imsg_fds[2]; pid_t pid; struct imsgbuf *ibuf; ibuf = calloc(1, sizeof(*ibuf)); if (ibuf == NULL) return got_error_from_errno("calloc"); if (socketpair(AF_UNIX, SOCK_STREAM, PF_UNSPEC, imsg_fds) == -1) { err = got_error_from_errno("socketpair"); free(ibuf); return err; } pid = fork(); if (pid == -1) { err = got_error_from_errno("fork"); free(ibuf); return err; } else if (pid == 0) { got_privsep_exec_child(imsg_fds, GOT_PATH_PROG_READ_OBJECT, repo->path); /* not reached */ } if (close(imsg_fds[1]) == -1) { err = got_error_from_errno("close"); free(ibuf); return err; } repo->privsep_children[GOT_REPO_PRIVSEP_CHILD_OBJECT].imsg_fd = imsg_fds[0]; repo->privsep_children[GOT_REPO_PRIVSEP_CHILD_OBJECT].pid = pid; imsg_init(ibuf, imsg_fds[0]); repo->privsep_children[GOT_REPO_PRIVSEP_CHILD_OBJECT].ibuf = ibuf; return NULL; } const struct got_error * got_object_read_header_privsep(struct got_object **obj, struct got_object_id *id, struct got_repository *repo, int obj_fd) { const struct got_error *err; if (repo->privsep_children[GOT_REPO_PRIVSEP_CHILD_OBJECT].imsg_fd != -1) return request_object(obj, id, repo, obj_fd); err = start_read_object_child(repo); if (err) { close(obj_fd); return err; } return request_object(obj, id, repo, obj_fd); } static const struct got_error * read_object_raw_privsep(uint8_t **outbuf, off_t *size, size_t *hdrlen, int outfd, struct got_object_id *id, struct got_repository *repo, int obj_fd) { const struct got_error *err; if (repo->privsep_children[GOT_REPO_PRIVSEP_CHILD_OBJECT].imsg_fd != -1) return request_raw_object(outbuf, size, hdrlen, outfd, id, repo, obj_fd); err = start_read_object_child(repo); if (err) return err; return request_raw_object(outbuf, size, hdrlen, outfd, id, repo, obj_fd); } const struct got_error * got_object_open(struct got_object **obj, struct got_repository *repo, struct got_object_id *id) { const struct got_error *err = NULL; int fd; *obj = got_repo_get_cached_object(repo, id); if (*obj != NULL) { (*obj)->refcnt++; return NULL; } err = got_object_open_packed(obj, id, repo); if (err && err->code != GOT_ERR_NO_OBJ) return err; if (*obj) { (*obj)->refcnt++; return got_repo_cache_object(repo, id, *obj); } err = got_object_open_loose_fd(&fd, id, repo); if (err) { if (err->code == GOT_ERR_ERRNO && errno == ENOENT) err = got_error_no_obj(id); return err; } err = got_object_read_header_privsep(obj, id, repo, fd); if (err) return err; memcpy((*obj)->id.sha1, id->sha1, SHA1_DIGEST_LENGTH); (*obj)->refcnt++; return got_repo_cache_object(repo, id, *obj); } /* *outfd must be initialized to -1 by caller */ const struct got_error * got_object_raw_open(struct got_raw_object **obj, int *outfd, struct got_repository *repo, struct got_object_id *id) { const struct got_error *err = NULL; struct got_packidx *packidx = NULL; int idx; uint8_t *outbuf = NULL; off_t size = 0; size_t hdrlen = 0; char *path_packfile = NULL; *obj = got_repo_get_cached_raw_object(repo, id); if (*obj != NULL) { (*obj)->refcnt++; return NULL; } if (*outfd == -1) { *outfd = got_opentempfd(); if (*outfd == -1) return got_error_from_errno("got_opentempfd"); } err = got_repo_search_packidx(&packidx, &idx, repo, id); if (err == NULL) { struct got_pack *pack = NULL; err = got_packidx_get_packfile_path(&path_packfile, packidx->path_packidx); if (err) goto done; pack = got_repo_get_cached_pack(repo, path_packfile); if (pack == NULL) { err = got_repo_cache_pack(&pack, repo, path_packfile, packidx); if (err) goto done; } err = read_packed_object_raw_privsep(&outbuf, &size, &hdrlen, *outfd, pack, packidx, idx, id); if (err) goto done; } else if (err->code == GOT_ERR_NO_OBJ) { int fd; err = got_object_open_loose_fd(&fd, id, repo); if (err) goto done; err = read_object_raw_privsep(&outbuf, &size, &hdrlen, *outfd, id, repo, fd); if (err) goto done; } *obj = calloc(1, sizeof(**obj)); if (*obj == NULL) { err = got_error_from_errno("calloc"); goto done; } (*obj)->fd = -1; if (outbuf) { (*obj)->data = outbuf; } else { struct stat sb; if (fstat(*outfd, &sb) == -1) { err = got_error_from_errno("fstat"); goto done; } if (sb.st_size != hdrlen + size) { err = got_error(GOT_ERR_PRIVSEP_LEN); goto done; } #ifndef GOT_PACK_NO_MMAP if (hdrlen + size > 0) { (*obj)->data = mmap(NULL, hdrlen + size, PROT_READ, MAP_PRIVATE, *outfd, 0); if ((*obj)->data == MAP_FAILED) { if (errno != ENOMEM) { err = got_error_from_errno("mmap"); goto done; } (*obj)->data = NULL; } else { (*obj)->fd = *outfd; *outfd = -1; } } #endif if (*outfd != -1) { (*obj)->f = fdopen(*outfd, "r"); if ((*obj)->f == NULL) { err = got_error_from_errno("fdopen"); goto done; } *outfd = -1; } } (*obj)->hdrlen = hdrlen; (*obj)->size = size; err = got_repo_cache_raw_object(repo, id, *obj); done: free(path_packfile); if (err) { if (*obj) { got_object_raw_close(*obj); *obj = NULL; } free(outbuf); } else (*obj)->refcnt++; return err; } const struct got_error * got_object_open_by_id_str(struct got_object **obj, struct got_repository *repo, const char *id_str) { struct got_object_id id; if (!got_parse_sha1_digest(id.sha1, id_str)) return got_error_path(id_str, GOT_ERR_BAD_OBJ_ID_STR); return got_object_open(obj, repo, &id); } const struct got_error * got_object_resolve_id_str(struct got_object_id **id, struct got_repository *repo, const char *id_str) { const struct got_error *err = NULL; struct got_object *obj; err = got_object_open_by_id_str(&obj, repo, id_str); if (err) return err; *id = got_object_id_dup(got_object_get_id(obj)); got_object_close(obj); if (*id == NULL) return got_error_from_errno("got_object_id_dup"); return NULL; } static const struct got_error * request_packed_commit(struct got_commit_object **commit, struct got_pack *pack, int pack_idx, struct got_object_id *id) { const struct got_error *err = NULL; err = got_privsep_send_commit_req(pack->privsep_child->ibuf, -1, id, pack_idx); if (err) return err; err = got_privsep_recv_commit(commit, pack->privsep_child->ibuf); if (err) return err; (*commit)->flags |= GOT_COMMIT_FLAG_PACKED; return NULL; } static const struct got_error * read_packed_commit_privsep(struct got_commit_object **commit, struct got_pack *pack, struct got_packidx *packidx, int idx, struct got_object_id *id) { const struct got_error *err = NULL; if (pack->privsep_child) return request_packed_commit(commit, pack, idx, id); err = got_pack_start_privsep_child(pack, packidx); if (err) return err; return request_packed_commit(commit, pack, idx, id); } static const struct got_error * request_commit(struct got_commit_object **commit, struct got_repository *repo, int fd, struct got_object_id *id) { const struct got_error *err = NULL; struct imsgbuf *ibuf; ibuf = repo->privsep_children[GOT_REPO_PRIVSEP_CHILD_COMMIT].ibuf; err = got_privsep_send_commit_req(ibuf, fd, id, -1); if (err) return err; return got_privsep_recv_commit(commit, ibuf); } static const struct got_error * read_commit_privsep(struct got_commit_object **commit, int obj_fd, struct got_object_id *id, struct got_repository *repo) { const struct got_error *err; int imsg_fds[2]; pid_t pid; struct imsgbuf *ibuf; if (repo->privsep_children[GOT_REPO_PRIVSEP_CHILD_COMMIT].imsg_fd != -1) return request_commit(commit, repo, obj_fd, id); ibuf = calloc(1, sizeof(*ibuf)); if (ibuf == NULL) return got_error_from_errno("calloc"); if (socketpair(AF_UNIX, SOCK_STREAM, PF_UNSPEC, imsg_fds) == -1) { err = got_error_from_errno("socketpair"); free(ibuf); return err; } pid = fork(); if (pid == -1) { err = got_error_from_errno("fork"); free(ibuf); return err; } else if (pid == 0) { got_privsep_exec_child(imsg_fds, GOT_PATH_PROG_READ_COMMIT, repo->path); /* not reached */ } if (close(imsg_fds[1]) == -1) { err = got_error_from_errno("close"); free(ibuf); return err; } repo->privsep_children[GOT_REPO_PRIVSEP_CHILD_COMMIT].imsg_fd = imsg_fds[0]; repo->privsep_children[GOT_REPO_PRIVSEP_CHILD_COMMIT].pid = pid; imsg_init(ibuf, imsg_fds[0]); repo->privsep_children[GOT_REPO_PRIVSEP_CHILD_COMMIT].ibuf = ibuf; return request_commit(commit, repo, obj_fd, id); } static const struct got_error * open_commit(struct got_commit_object **commit, struct got_repository *repo, struct got_object_id *id, int check_cache) { const struct got_error *err = NULL; struct got_packidx *packidx = NULL; int idx; char *path_packfile = NULL; if (check_cache) { *commit = got_repo_get_cached_commit(repo, id); if (*commit != NULL) { (*commit)->refcnt++; return NULL; } } else *commit = NULL; err = got_repo_search_packidx(&packidx, &idx, repo, id); if (err == NULL) { struct got_pack *pack = NULL; err = got_packidx_get_packfile_path(&path_packfile, packidx->path_packidx); if (err) return err; pack = got_repo_get_cached_pack(repo, path_packfile); if (pack == NULL) { err = got_repo_cache_pack(&pack, repo, path_packfile, packidx); if (err) goto done; } err = read_packed_commit_privsep(commit, pack, packidx, idx, id); } else if (err->code == GOT_ERR_NO_OBJ) { int fd; err = got_object_open_loose_fd(&fd, id, repo); if (err) return err; err = read_commit_privsep(commit, fd, id, repo); } if (err == NULL) { (*commit)->refcnt++; err = got_repo_cache_commit(repo, id, *commit); } done: free(path_packfile); return err; } const struct got_error * got_object_open_as_commit(struct got_commit_object **commit, struct got_repository *repo, struct got_object_id *id) { *commit = got_repo_get_cached_commit(repo, id); if (*commit != NULL) { (*commit)->refcnt++; return NULL; } return open_commit(commit, repo, id, 0); } const struct got_error * got_object_commit_open(struct got_commit_object **commit, struct got_repository *repo, struct got_object *obj) { return open_commit(commit, repo, got_object_get_id(obj), 1); } const struct got_error * got_object_qid_alloc(struct got_object_qid **qid, struct got_object_id *id) { *qid = calloc(1, sizeof(**qid)); if (*qid == NULL) return got_error_from_errno("calloc"); memcpy(&(*qid)->id, id, sizeof((*qid)->id)); return NULL; } const struct got_error * got_object_id_queue_copy(const struct got_object_id_queue *src, struct got_object_id_queue *dest) { const struct got_error *err; struct got_object_qid *qid; STAILQ_FOREACH(qid, src, entry) { struct got_object_qid *new; /* * Deep-copy the object ID only. Let the caller deal * with setting up the new->data pointer if needed. */ err = got_object_qid_alloc(&new, &qid->id); if (err) { got_object_id_queue_free(dest); return err; } STAILQ_INSERT_TAIL(dest, new, entry); } return NULL; } static const struct got_error * request_packed_tree(struct got_tree_object **tree, struct got_pack *pack, int pack_idx, struct got_object_id *id) { const struct got_error *err = NULL; err = got_privsep_send_tree_req(pack->privsep_child->ibuf, -1, id, pack_idx); if (err) return err; return got_privsep_recv_tree(tree, pack->privsep_child->ibuf); } static const struct got_error * read_packed_tree_privsep(struct got_tree_object **tree, struct got_pack *pack, struct got_packidx *packidx, int idx, struct got_object_id *id) { const struct got_error *err = NULL; if (pack->privsep_child) return request_packed_tree(tree, pack, idx, id); err = got_pack_start_privsep_child(pack, packidx); if (err) return err; return request_packed_tree(tree, pack, idx, id); } static const struct got_error * request_tree(struct got_tree_object **tree, struct got_repository *repo, int fd, struct got_object_id *id) { const struct got_error *err = NULL; struct imsgbuf *ibuf; ibuf = repo->privsep_children[GOT_REPO_PRIVSEP_CHILD_TREE].ibuf; err = got_privsep_send_tree_req(ibuf, fd, id, -1); if (err) return err; return got_privsep_recv_tree(tree, ibuf); } static const struct got_error * read_tree_privsep(struct got_tree_object **tree, int obj_fd, struct got_object_id *id, struct got_repository *repo) { const struct got_error *err; int imsg_fds[2]; pid_t pid; struct imsgbuf *ibuf; if (repo->privsep_children[GOT_REPO_PRIVSEP_CHILD_TREE].imsg_fd != -1) return request_tree(tree, repo, obj_fd, id); ibuf = calloc(1, sizeof(*ibuf)); if (ibuf == NULL) return got_error_from_errno("calloc"); if (socketpair(AF_UNIX, SOCK_STREAM, PF_UNSPEC, imsg_fds) == -1) { err = got_error_from_errno("socketpair"); free(ibuf); return err; } pid = fork(); if (pid == -1) { err = got_error_from_errno("fork"); free(ibuf); return err; } else if (pid == 0) { got_privsep_exec_child(imsg_fds, GOT_PATH_PROG_READ_TREE, repo->path); /* not reached */ } if (close(imsg_fds[1]) == -1) { err = got_error_from_errno("close"); free(ibuf); return err; } repo->privsep_children[GOT_REPO_PRIVSEP_CHILD_TREE].imsg_fd = imsg_fds[0]; repo->privsep_children[GOT_REPO_PRIVSEP_CHILD_TREE].pid = pid; imsg_init(ibuf, imsg_fds[0]); repo->privsep_children[GOT_REPO_PRIVSEP_CHILD_TREE].ibuf = ibuf; return request_tree(tree, repo, obj_fd, id); } static const struct got_error * open_tree(struct got_tree_object **tree, struct got_repository *repo, struct got_object_id *id, int check_cache) { const struct got_error *err = NULL; struct got_packidx *packidx = NULL; int idx; char *path_packfile = NULL; if (check_cache) { *tree = got_repo_get_cached_tree(repo, id); if (*tree != NULL) { (*tree)->refcnt++; return NULL; } } else *tree = NULL; err = got_repo_search_packidx(&packidx, &idx, repo, id); if (err == NULL) { struct got_pack *pack = NULL; err = got_packidx_get_packfile_path(&path_packfile, packidx->path_packidx); if (err) return err; pack = got_repo_get_cached_pack(repo, path_packfile); if (pack == NULL) { err = got_repo_cache_pack(&pack, repo, path_packfile, packidx); if (err) goto done; } err = read_packed_tree_privsep(tree, pack, packidx, idx, id); } else if (err->code == GOT_ERR_NO_OBJ) { int fd; err = got_object_open_loose_fd(&fd, id, repo); if (err) return err; err = read_tree_privsep(tree, fd, id, repo); } if (err == NULL) { (*tree)->refcnt++; err = got_repo_cache_tree(repo, id, *tree); } done: free(path_packfile); return err; } const struct got_error * got_object_open_as_tree(struct got_tree_object **tree, struct got_repository *repo, struct got_object_id *id) { *tree = got_repo_get_cached_tree(repo, id); if (*tree != NULL) { (*tree)->refcnt++; return NULL; } return open_tree(tree, repo, id, 0); } const struct got_error * got_object_tree_open(struct got_tree_object **tree, struct got_repository *repo, struct got_object *obj) { return open_tree(tree, repo, got_object_get_id(obj), 1); } int got_object_tree_get_nentries(struct got_tree_object *tree) { return tree->nentries; } struct got_tree_entry * got_object_tree_get_first_entry(struct got_tree_object *tree) { return got_object_tree_get_entry(tree, 0); } struct got_tree_entry * got_object_tree_get_last_entry(struct got_tree_object *tree) { return got_object_tree_get_entry(tree, tree->nentries - 1); } struct got_tree_entry * got_object_tree_get_entry(struct got_tree_object *tree, int i) { if (i < 0 || i >= tree->nentries) return NULL; return &tree->entries[i]; } mode_t got_tree_entry_get_mode(struct got_tree_entry *te) { return te->mode; } const char * got_tree_entry_get_name(struct got_tree_entry *te) { return &te->name[0]; } struct got_object_id * got_tree_entry_get_id(struct got_tree_entry *te) { return &te->id; } const struct got_error * got_object_blob_read_to_str(char **s, struct got_blob_object *blob) { const struct got_error *err = NULL; size_t len, totlen, hdrlen, offset; *s = NULL; hdrlen = got_object_blob_get_hdrlen(blob); totlen = 0; offset = 0; do { char *p; err = got_object_blob_read_block(&len, blob); if (err) return err; if (len == 0) break; totlen += len - hdrlen; p = realloc(*s, totlen + 1); if (p == NULL) { err = got_error_from_errno("realloc"); free(*s); *s = NULL; return err; } *s = p; /* Skip blob object header first time around. */ memcpy(*s + offset, got_object_blob_get_read_buf(blob) + hdrlen, len - hdrlen); hdrlen = 0; offset = totlen; } while (len > 0); (*s)[totlen] = '\0'; return NULL; } const struct got_error * got_tree_entry_get_symlink_target(char **link_target, struct got_tree_entry *te, struct got_repository *repo) { const struct got_error *err = NULL; struct got_blob_object *blob = NULL; int fd = -1; *link_target = NULL; if (!got_object_tree_entry_is_symlink(te)) return got_error(GOT_ERR_TREE_ENTRY_TYPE); fd = got_opentempfd(); if (fd == -1) { err = got_error_from_errno("got_opentempfd"); goto done; } err = got_object_open_as_blob(&blob, repo, got_tree_entry_get_id(te), PATH_MAX, fd); if (err) goto done; err = got_object_blob_read_to_str(link_target, blob); done: if (fd != -1 && close(fd) == -1 && err == NULL) err = got_error_from_errno("close"); if (blob) got_object_blob_close(blob); if (err) { free(*link_target); *link_target = NULL; } return err; } int got_tree_entry_get_index(struct got_tree_entry *te) { return te->idx; } struct got_tree_entry * got_tree_entry_get_next(struct got_tree_object *tree, struct got_tree_entry *te) { return got_object_tree_get_entry(tree, te->idx + 1); } struct got_tree_entry * got_tree_entry_get_prev(struct got_tree_object *tree, struct got_tree_entry *te) { return got_object_tree_get_entry(tree, te->idx - 1); } static const struct got_error * request_packed_blob(uint8_t **outbuf, size_t *size, size_t *hdrlen, int outfd, struct got_pack *pack, struct got_packidx *packidx, int idx, struct got_object_id *id) { const struct got_error *err = NULL; struct imsgbuf *ibuf = pack->privsep_child->ibuf; int outfd_child; err = pack_child_send_tempfiles(ibuf, pack); if (err) return err; outfd_child = dup(outfd); if (outfd_child == -1) return got_error_from_errno("dup"); err = got_privsep_send_blob_req(pack->privsep_child->ibuf, -1, id, idx); if (err) return err; err = got_privsep_send_blob_outfd(pack->privsep_child->ibuf, outfd_child); if (err) { return err; } err = got_privsep_recv_blob(outbuf, size, hdrlen, pack->privsep_child->ibuf); if (err) return err; if (lseek(outfd, SEEK_SET, 0) == -1) err = got_error_from_errno("lseek"); return err; } static const struct got_error * read_packed_blob_privsep(uint8_t **outbuf, size_t *size, size_t *hdrlen, int outfd, struct got_pack *pack, struct got_packidx *packidx, int idx, struct got_object_id *id) { const struct got_error *err = NULL; if (pack->privsep_child == NULL) { err = got_pack_start_privsep_child(pack, packidx); if (err) return err; } return request_packed_blob(outbuf, size, hdrlen, outfd, pack, packidx, idx, id); } static const struct got_error * request_blob(uint8_t **outbuf, size_t *size, size_t *hdrlen, int outfd, int infd, struct got_object_id *id, struct imsgbuf *ibuf) { const struct got_error *err = NULL; int outfd_child; outfd_child = dup(outfd); if (outfd_child == -1) return got_error_from_errno("dup"); err = got_privsep_send_blob_req(ibuf, infd, id, -1); if (err) return err; err = got_privsep_send_blob_outfd(ibuf, outfd_child); if (err) return err; err = got_privsep_recv_blob(outbuf, size, hdrlen, ibuf); if (err) return err; if (lseek(outfd, SEEK_SET, 0) == -1) return got_error_from_errno("lseek"); return err; } static const struct got_error * read_blob_privsep(uint8_t **outbuf, size_t *size, size_t *hdrlen, int outfd, int infd, struct got_object_id *id, struct got_repository *repo) { const struct got_error *err; int imsg_fds[2]; pid_t pid; struct imsgbuf *ibuf; if (repo->privsep_children[GOT_REPO_PRIVSEP_CHILD_BLOB].imsg_fd != -1) { ibuf = repo->privsep_children[GOT_REPO_PRIVSEP_CHILD_BLOB].ibuf; return request_blob(outbuf, size, hdrlen, outfd, infd, id, ibuf); } ibuf = calloc(1, sizeof(*ibuf)); if (ibuf == NULL) return got_error_from_errno("calloc"); if (socketpair(AF_UNIX, SOCK_STREAM, PF_UNSPEC, imsg_fds) == -1) { err = got_error_from_errno("socketpair"); free(ibuf); return err; } pid = fork(); if (pid == -1) { err = got_error_from_errno("fork"); free(ibuf); return err; } else if (pid == 0) { got_privsep_exec_child(imsg_fds, GOT_PATH_PROG_READ_BLOB, repo->path); /* not reached */ } if (close(imsg_fds[1]) == -1) { err = got_error_from_errno("close"); free(ibuf); return err; } repo->privsep_children[GOT_REPO_PRIVSEP_CHILD_BLOB].imsg_fd = imsg_fds[0]; repo->privsep_children[GOT_REPO_PRIVSEP_CHILD_BLOB].pid = pid; imsg_init(ibuf, imsg_fds[0]); repo->privsep_children[GOT_REPO_PRIVSEP_CHILD_BLOB].ibuf = ibuf; return request_blob(outbuf, size, hdrlen, outfd, infd, id, ibuf); } static const struct got_error * open_blob(struct got_blob_object **blob, struct got_repository *repo, struct got_object_id *id, size_t blocksize, int outfd) { const struct got_error *err = NULL; struct got_packidx *packidx = NULL; int idx, dfd = -1; char *path_packfile = NULL; uint8_t *outbuf; size_t size, hdrlen; struct stat sb; *blob = calloc(1, sizeof(**blob)); if (*blob == NULL) return got_error_from_errno("calloc"); (*blob)->read_buf = malloc(blocksize); if ((*blob)->read_buf == NULL) { err = got_error_from_errno("malloc"); goto done; } if (ftruncate(outfd, 0L) == -1) { err = got_error_from_errno("ftruncate"); goto done; } if (lseek(outfd, SEEK_SET, 0) == -1) { err = got_error_from_errno("lseek"); goto done; } err = got_repo_search_packidx(&packidx, &idx, repo, id); if (err == NULL) { struct got_pack *pack = NULL; err = got_packidx_get_packfile_path(&path_packfile, packidx->path_packidx); if (err) goto done; pack = got_repo_get_cached_pack(repo, path_packfile); if (pack == NULL) { err = got_repo_cache_pack(&pack, repo, path_packfile, packidx); if (err) goto done; } err = read_packed_blob_privsep(&outbuf, &size, &hdrlen, outfd, pack, packidx, idx, id); } else if (err->code == GOT_ERR_NO_OBJ) { int infd; err = got_object_open_loose_fd(&infd, id, repo); if (err) goto done; err = read_blob_privsep(&outbuf, &size, &hdrlen, outfd, infd, id, repo); } if (err) goto done; if (hdrlen > size) { err = got_error(GOT_ERR_BAD_OBJ_HDR); goto done; } if (outbuf) { (*blob)->f = fmemopen(outbuf, size, "rb"); if ((*blob)->f == NULL) { err = got_error_from_errno("fmemopen"); free(outbuf); goto done; } (*blob)->data = outbuf; } else { if (fstat(outfd, &sb) == -1) { err = got_error_from_errno("fstat"); goto done; } if (sb.st_size != size) { err = got_error(GOT_ERR_PRIVSEP_LEN); goto done; } dfd = dup(outfd); if (dfd == -1) { err = got_error_from_errno("dup"); goto done; } (*blob)->f = fdopen(dfd, "rb"); if ((*blob)->f == NULL) { err = got_error_from_errno("fdopen"); close(dfd); dfd = -1; goto done; } } (*blob)->hdrlen = hdrlen; (*blob)->blocksize = blocksize; memcpy(&(*blob)->id.sha1, id->sha1, SHA1_DIGEST_LENGTH); done: free(path_packfile); if (err) { if (*blob) { got_object_blob_close(*blob); *blob = NULL; } } return err; } const struct got_error * got_object_open_as_blob(struct got_blob_object **blob, struct got_repository *repo, struct got_object_id *id, size_t blocksize, int outfd) { return open_blob(blob, repo, id, blocksize, outfd); } const struct got_error * got_object_blob_open(struct got_blob_object **blob, struct got_repository *repo, struct got_object *obj, size_t blocksize, int outfd) { return open_blob(blob, repo, got_object_get_id(obj), blocksize, outfd); } const struct got_error * got_object_blob_close(struct got_blob_object *blob) { const struct got_error *err = NULL; free(blob->read_buf); if (blob->f && fclose(blob->f) == EOF) err = got_error_from_errno("fclose"); free(blob->data); free(blob); return err; } void got_object_blob_rewind(struct got_blob_object *blob) { if (blob->f) rewind(blob->f); } char * got_object_blob_id_str(struct got_blob_object *blob, char *buf, size_t size) { return got_sha1_digest_to_str(blob->id.sha1, buf, size); } size_t got_object_blob_get_hdrlen(struct got_blob_object *blob) { return blob->hdrlen; } const uint8_t * got_object_blob_get_read_buf(struct got_blob_object *blob) { return blob->read_buf; } const struct got_error * got_object_blob_read_block(size_t *outlenp, struct got_blob_object *blob) { size_t n; n = fread(blob->read_buf, 1, blob->blocksize, blob->f); if (n == 0 && ferror(blob->f)) return got_ferror(blob->f, GOT_ERR_IO); *outlenp = n; return NULL; } const struct got_error * got_object_blob_dump_to_file(off_t *filesize, int *nlines, off_t **line_offsets, FILE *outfile, struct got_blob_object *blob) { const struct got_error *err = NULL; size_t n, len, hdrlen; const uint8_t *buf; int i; const int alloc_chunksz = 512; size_t nalloc = 0; off_t off = 0, total_len = 0; if (line_offsets) *line_offsets = NULL; if (filesize) *filesize = 0; if (nlines) *nlines = 0; hdrlen = got_object_blob_get_hdrlen(blob); do { err = got_object_blob_read_block(&len, blob); if (err) return err; if (len == 0) break; buf = got_object_blob_get_read_buf(blob); i = hdrlen; if (nlines) { if (line_offsets && *line_offsets == NULL) { /* Have some data but perhaps no '\n'. */ *nlines = 1; nalloc = alloc_chunksz; *line_offsets = calloc(nalloc, sizeof(**line_offsets)); if (*line_offsets == NULL) return got_error_from_errno("calloc"); /* Skip forward over end of first line. */ while (i < len) { if (buf[i] == '\n') break; i++; } } /* Scan '\n' offsets in remaining chunk of data. */ while (i < len) { if (buf[i] != '\n') { i++; continue; } (*nlines)++; if (line_offsets && nalloc < *nlines) { size_t n = *nlines + alloc_chunksz; off_t *o = recallocarray(*line_offsets, nalloc, n, sizeof(**line_offsets)); if (o == NULL) { free(*line_offsets); *line_offsets = NULL; return got_error_from_errno( "recallocarray"); } *line_offsets = o; nalloc = n; } if (line_offsets) { off = total_len + i - hdrlen + 1; (*line_offsets)[*nlines - 1] = off; } i++; } } /* Skip blob object header first time around. */ n = fwrite(buf + hdrlen, 1, len - hdrlen, outfile); if (n != len - hdrlen) return got_ferror(outfile, GOT_ERR_IO); total_len += len - hdrlen; hdrlen = 0; } while (len != 0); if (fflush(outfile) != 0) return got_error_from_errno("fflush"); rewind(outfile); if (filesize) *filesize = total_len; return NULL; } static const struct got_error * request_packed_tag(struct got_tag_object **tag, struct got_pack *pack, int pack_idx, struct got_object_id *id) { const struct got_error *err = NULL; err = got_privsep_send_tag_req(pack->privsep_child->ibuf, -1, id, pack_idx); if (err) return err; return got_privsep_recv_tag(tag, pack->privsep_child->ibuf); } static const struct got_error * read_packed_tag_privsep(struct got_tag_object **tag, struct got_pack *pack, struct got_packidx *packidx, int idx, struct got_object_id *id) { const struct got_error *err = NULL; if (pack->privsep_child) return request_packed_tag(tag, pack, idx, id); err = got_pack_start_privsep_child(pack, packidx); if (err) return err; return request_packed_tag(tag, pack, idx, id); } static const struct got_error * request_tag(struct got_tag_object **tag, struct got_repository *repo, int fd, struct got_object_id *id) { const struct got_error *err = NULL; struct imsgbuf *ibuf; ibuf = repo->privsep_children[GOT_REPO_PRIVSEP_CHILD_TAG].ibuf; err = got_privsep_send_tag_req(ibuf, fd, id, -1); if (err) return err; return got_privsep_recv_tag(tag, ibuf); } static const struct got_error * read_tag_privsep(struct got_tag_object **tag, int obj_fd, struct got_object_id *id, struct got_repository *repo) { const struct got_error *err; int imsg_fds[2]; pid_t pid; struct imsgbuf *ibuf; if (repo->privsep_children[GOT_REPO_PRIVSEP_CHILD_TAG].imsg_fd != -1) return request_tag(tag, repo, obj_fd, id); ibuf = calloc(1, sizeof(*ibuf)); if (ibuf == NULL) return got_error_from_errno("calloc"); if (socketpair(AF_UNIX, SOCK_STREAM, PF_UNSPEC, imsg_fds) == -1) { err = got_error_from_errno("socketpair"); free(ibuf); return err; } pid = fork(); if (pid == -1) { err = got_error_from_errno("fork"); free(ibuf); return err; } else if (pid == 0) { got_privsep_exec_child(imsg_fds, GOT_PATH_PROG_READ_TAG, repo->path); /* not reached */ } if (close(imsg_fds[1]) == -1) { err = got_error_from_errno("close"); free(ibuf); return err; } repo->privsep_children[GOT_REPO_PRIVSEP_CHILD_TAG].imsg_fd = imsg_fds[0]; repo->privsep_children[GOT_REPO_PRIVSEP_CHILD_TAG].pid = pid; imsg_init(ibuf, imsg_fds[0]); repo->privsep_children[GOT_REPO_PRIVSEP_CHILD_TAG].ibuf = ibuf; return request_tag(tag, repo, obj_fd, id); } static const struct got_error * open_tag(struct got_tag_object **tag, struct got_repository *repo, struct got_object_id *id, int check_cache) { const struct got_error *err = NULL; struct got_packidx *packidx = NULL; int idx; char *path_packfile = NULL; struct got_object *obj = NULL; int obj_type = GOT_OBJ_TYPE_ANY; if (check_cache) { *tag = got_repo_get_cached_tag(repo, id); if (*tag != NULL) { (*tag)->refcnt++; return NULL; } } else *tag = NULL; err = got_repo_search_packidx(&packidx, &idx, repo, id); if (err == NULL) { struct got_pack *pack = NULL; err = got_packidx_get_packfile_path(&path_packfile, packidx->path_packidx); if (err) return err; pack = got_repo_get_cached_pack(repo, path_packfile); if (pack == NULL) { err = got_repo_cache_pack(&pack, repo, path_packfile, packidx); if (err) goto done; } /* Beware of "lightweight" tags: Check object type first. */ err = read_packed_object_privsep(&obj, repo, pack, packidx, idx, id); if (err) goto done; obj_type = obj->type; got_object_close(obj); if (obj_type != GOT_OBJ_TYPE_TAG) { err = got_error(GOT_ERR_OBJ_TYPE); goto done; } err = read_packed_tag_privsep(tag, pack, packidx, idx, id); } else if (err->code == GOT_ERR_NO_OBJ) { int fd; err = got_object_open_loose_fd(&fd, id, repo); if (err) return err; err = got_object_read_header_privsep(&obj, id, repo, fd); if (err) return err; obj_type = obj->type; got_object_close(obj); if (obj_type != GOT_OBJ_TYPE_TAG) return got_error(GOT_ERR_OBJ_TYPE); err = got_object_open_loose_fd(&fd, id, repo); if (err) return err; err = read_tag_privsep(tag, fd, id, repo); } if (err == NULL) { (*tag)->refcnt++; err = got_repo_cache_tag(repo, id, *tag); } done: free(path_packfile); return err; } const struct got_error * got_object_open_as_tag(struct got_tag_object **tag, struct got_repository *repo, struct got_object_id *id) { *tag = got_repo_get_cached_tag(repo, id); if (*tag != NULL) { (*tag)->refcnt++; return NULL; } return open_tag(tag, repo, id, 0); } const struct got_error * got_object_tag_open(struct got_tag_object **tag, struct got_repository *repo, struct got_object *obj) { return open_tag(tag, repo, got_object_get_id(obj), 1); } const char * got_object_tag_get_name(struct got_tag_object *tag) { return tag->tag; } int got_object_tag_get_object_type(struct got_tag_object *tag) { return tag->obj_type; } struct got_object_id * got_object_tag_get_object_id(struct got_tag_object *tag) { return &tag->id; } time_t got_object_tag_get_tagger_time(struct got_tag_object *tag) { return tag->tagger_time; } time_t got_object_tag_get_tagger_gmtoff(struct got_tag_object *tag) { return tag->tagger_gmtoff; } const char * got_object_tag_get_tagger(struct got_tag_object *tag) { return tag->tagger; } const char * got_object_tag_get_message(struct got_tag_object *tag) { return tag->tagmsg; } static struct got_tree_entry * find_entry_by_name(struct got_tree_object *tree, const char *name, size_t len) { int i; /* Note that tree entries are sorted in strncmp() order. */ for (i = 0; i < tree->nentries; i++) { struct got_tree_entry *te = &tree->entries[i]; int cmp = strncmp(te->name, name, len); if (cmp < 0) continue; if (cmp > 0) break; if (te->name[len] == '\0') return te; } return NULL; } struct got_tree_entry * got_object_tree_find_entry(struct got_tree_object *tree, const char *name) { return find_entry_by_name(tree, name, strlen(name)); } const struct got_error * got_object_tree_find_path(struct got_object_id **id, mode_t *mode, struct got_repository *repo, struct got_tree_object *tree, const char *path) { const struct got_error *err = NULL; struct got_tree_object *subtree = NULL; struct got_tree_entry *te = NULL; const char *seg, *s; size_t seglen; *id = NULL; s = path; while (s[0] == '/') s++; seg = s; seglen = 0; subtree = tree; while (*s) { struct got_tree_object *next_tree; if (*s != '/') { s++; seglen++; if (*s) continue; } te = find_entry_by_name(subtree, seg, seglen); if (te == NULL) { err = got_error_path(path, GOT_ERR_NO_TREE_ENTRY); goto done; } if (*s == '\0') break; seg = s + 1; seglen = 0; s++; if (*s) { err = got_object_open_as_tree(&next_tree, repo, &te->id); te = NULL; if (err) goto done; if (subtree != tree) got_object_tree_close(subtree); subtree = next_tree; } } if (te) { *id = got_object_id_dup(&te->id); if (*id == NULL) return got_error_from_errno("got_object_id_dup"); if (mode) *mode = te->mode; } else err = got_error_path(path, GOT_ERR_NO_TREE_ENTRY); done: if (subtree && subtree != tree) got_object_tree_close(subtree); return err; } const struct got_error * got_object_id_by_path(struct got_object_id **id, struct got_repository *repo, struct got_commit_object *commit, const char *path) { const struct got_error *err = NULL; struct got_tree_object *tree = NULL; *id = NULL; /* Handle opening of root of commit's tree. */ if (got_path_is_root_dir(path)) { *id = got_object_id_dup(commit->tree_id); if (*id == NULL) err = got_error_from_errno("got_object_id_dup"); } else { err = got_object_open_as_tree(&tree, repo, commit->tree_id); if (err) goto done; err = got_object_tree_find_path(id, NULL, repo, tree, path); } done: if (tree) got_object_tree_close(tree); return err; } /* * Normalize file mode bits to avoid false positive tree entry differences * in case tree entries have unexpected mode bits set. */ static mode_t normalize_mode_for_comparison(mode_t mode) { /* * For directories, the only relevant bit is the IFDIR bit. * This allows us to detect paths changing from a directory * to a file and vice versa. */ if (S_ISDIR(mode)) return mode & S_IFDIR; /* * For symlinks, the only relevant bit is the IFLNK bit. * This allows us to detect paths changing from a symlinks * to a file or directory and vice versa. */ if (S_ISLNK(mode)) return mode & S_IFLNK; /* For files, the only change we care about is the executable bit. */ return mode & S_IXUSR; } const struct got_error * got_object_tree_path_changed(int *changed, struct got_tree_object *tree01, struct got_tree_object *tree02, const char *path, struct got_repository *repo) { const struct got_error *err = NULL; struct got_tree_object *tree1 = NULL, *tree2 = NULL; struct got_tree_entry *te1 = NULL, *te2 = NULL; const char *seg, *s; size_t seglen; *changed = 0; /* We not do support comparing the root path. */ if (got_path_is_root_dir(path)) return got_error_path(path, GOT_ERR_BAD_PATH); tree1 = tree01; tree2 = tree02; s = path; while (*s == '/') s++; seg = s; seglen = 0; while (*s) { struct got_tree_object *next_tree1, *next_tree2; mode_t mode1, mode2; if (*s != '/') { s++; seglen++; if (*s) continue; } te1 = find_entry_by_name(tree1, seg, seglen); if (te1 == NULL) { err = got_error(GOT_ERR_NO_OBJ); goto done; } if (tree2) te2 = find_entry_by_name(tree2, seg, seglen); if (te2) { mode1 = normalize_mode_for_comparison(te1->mode); mode2 = normalize_mode_for_comparison(te2->mode); if (mode1 != mode2) { *changed = 1; goto done; } if (got_object_id_cmp(&te1->id, &te2->id) == 0) { *changed = 0; goto done; } } if (*s == '\0') { /* final path element */ *changed = 1; goto done; } seg = s + 1; s++; seglen = 0; if (*s) { err = got_object_open_as_tree(&next_tree1, repo, &te1->id); te1 = NULL; if (err) goto done; if (tree1 != tree01) got_object_tree_close(tree1); tree1 = next_tree1; if (te2) { err = got_object_open_as_tree(&next_tree2, repo, &te2->id); te2 = NULL; if (err) goto done; if (tree2 != tree02) got_object_tree_close(tree2); tree2 = next_tree2; } else if (tree2) { if (tree2 != tree02) got_object_tree_close(tree2); tree2 = NULL; } } } done: if (tree1 && tree1 != tree01) got_object_tree_close(tree1); if (tree2 && tree2 != tree02) got_object_tree_close(tree2); return err; } const struct got_error * got_object_tree_entry_dup(struct got_tree_entry **new_te, struct got_tree_entry *te) { const struct got_error *err = NULL; *new_te = calloc(1, sizeof(**new_te)); if (*new_te == NULL) return got_error_from_errno("calloc"); (*new_te)->mode = te->mode; memcpy((*new_te)->name, te->name, sizeof((*new_te)->name)); memcpy(&(*new_te)->id, &te->id, sizeof((*new_te)->id)); return err; } int got_object_tree_entry_is_submodule(struct got_tree_entry *te) { return (te->mode & S_IFMT) == (S_IFDIR | S_IFLNK); } int got_object_tree_entry_is_symlink(struct got_tree_entry *te) { /* S_IFDIR check avoids confusing symlinks with submodules. */ return ((te->mode & (S_IFDIR | S_IFLNK)) == S_IFLNK); } static const struct got_error * resolve_symlink(char **link_target, const char *path, struct got_commit_object *commit, struct got_repository *repo) { const struct got_error *err = NULL; char buf[PATH_MAX]; char *name, *parent_path = NULL; struct got_object_id *tree_obj_id = NULL; struct got_tree_object *tree = NULL; struct got_tree_entry *te = NULL; *link_target = NULL; if (strlcpy(buf, path, sizeof(buf)) >= sizeof(buf)) return got_error(GOT_ERR_NO_SPACE); name = basename(buf); if (name == NULL) return got_error_from_errno2("basename", path); err = got_path_dirname(&parent_path, path); if (err) return err; err = got_object_id_by_path(&tree_obj_id, repo, commit, parent_path); if (err) { if (err->code == GOT_ERR_NO_TREE_ENTRY) { /* Display the complete path in error message. */ err = got_error_path(path, err->code); } goto done; } err = got_object_open_as_tree(&tree, repo, tree_obj_id); if (err) goto done; te = got_object_tree_find_entry(tree, name); if (te == NULL) { err = got_error_path(path, GOT_ERR_NO_TREE_ENTRY); goto done; } if (got_object_tree_entry_is_symlink(te)) { err = got_tree_entry_get_symlink_target(link_target, te, repo); if (err) goto done; if (!got_path_is_absolute(*link_target)) { char *abspath; if (asprintf(&abspath, "%s/%s", parent_path, *link_target) == -1) { err = got_error_from_errno("asprintf"); goto done; } free(*link_target); *link_target = malloc(PATH_MAX); if (*link_target == NULL) { err = got_error_from_errno("malloc"); goto done; } err = got_canonpath(abspath, *link_target, PATH_MAX); free(abspath); if (err) goto done; } } done: free(tree_obj_id); if (tree) got_object_tree_close(tree); if (err) { free(*link_target); *link_target = NULL; } return err; } const struct got_error * got_object_resolve_symlinks(char **link_target, const char *path, struct got_commit_object *commit, struct got_repository *repo) { const struct got_error *err = NULL; char *next_target = NULL; int max_recursion = 40; /* matches Git */ *link_target = NULL; do { err = resolve_symlink(&next_target, *link_target ? *link_target : path, commit, repo); if (err) break; if (next_target) { free(*link_target); if (--max_recursion == 0) { err = got_error_path(path, GOT_ERR_RECURSION); *link_target = NULL; break; } *link_target = next_target; } } while (next_target); return err; } const struct got_error * got_traverse_packed_commits(struct got_object_id_queue *traversed_commits, struct got_object_id *commit_id, const char *path, struct got_repository *repo) { const struct got_error *err = NULL; struct got_pack *pack = NULL; struct got_packidx *packidx = NULL; char *path_packfile = NULL; struct got_commit_object *changed_commit = NULL; struct got_object_id *changed_commit_id = NULL; int idx; err = got_repo_search_packidx(&packidx, &idx, repo, commit_id); if (err) { if (err->code != GOT_ERR_NO_OBJ) return err; return NULL; } err = got_packidx_get_packfile_path(&path_packfile, packidx->path_packidx); if (err) return err; pack = got_repo_get_cached_pack(repo, path_packfile); if (pack == NULL) { err = got_repo_cache_pack(&pack, repo, path_packfile, packidx); if (err) goto done; } if (pack->privsep_child == NULL) { err = got_pack_start_privsep_child(pack, packidx); if (err) goto done; } err = got_privsep_send_commit_traversal_request( pack->privsep_child->ibuf, commit_id, idx, path); if (err) goto done; err = got_privsep_recv_traversed_commits(&changed_commit, &changed_commit_id, traversed_commits, pack->privsep_child->ibuf); if (err) goto done; if (changed_commit) { /* * Cache the commit in which the path was changed. * This commit might be opened again soon. */ changed_commit->refcnt++; err = got_repo_cache_commit(repo, changed_commit_id, changed_commit); got_object_commit_close(changed_commit); } done: free(path_packfile); free(changed_commit_id); return err; } const struct got_error * got_object_enumerate(int *found_all_objects, got_object_enumerate_commit_cb cb_commit, got_object_enumerate_tree_cb cb_tree, void *cb_arg, struct got_object_id **ours, int nours, struct got_object_id **theirs, int ntheirs, struct got_packidx *packidx, struct got_repository *repo) { const struct got_error *err = NULL; struct got_pack *pack; char *path_packfile = NULL; err = got_packidx_get_packfile_path(&path_packfile, packidx->path_packidx); if (err) return err; pack = got_repo_get_cached_pack(repo, path_packfile); if (pack == NULL) { err = got_repo_cache_pack(&pack, repo, path_packfile, packidx); if (err) goto done; } if (pack->privsep_child == NULL) { err = got_pack_start_privsep_child(pack, packidx); if (err) goto done; } err = got_privsep_send_object_enumeration_request( pack->privsep_child->ibuf); if (err) goto done; err = got_privsep_send_object_idlist(pack->privsep_child->ibuf, ours, nours); if (err) goto done; err = got_privsep_send_object_idlist_done(pack->privsep_child->ibuf); if (err) goto done; err = got_privsep_send_object_idlist(pack->privsep_child->ibuf, theirs, ntheirs); if (err) goto done; err = got_privsep_send_object_idlist_done(pack->privsep_child->ibuf); if (err) goto done; err = got_privsep_recv_enumerated_objects(found_all_objects, pack->privsep_child->ibuf, cb_commit, cb_tree, cb_arg, repo); done: free(path_packfile); return err; }