Blame


1 d71d75ad 2017-11-05 stsp /*
2 5d56da81 2019-01-13 stsp * Copyright (c) 2018, 2019 Stefan Sperling <stsp@openbsd.org>
3 d71d75ad 2017-11-05 stsp *
4 d71d75ad 2017-11-05 stsp * Permission to use, copy, modify, and distribute this software for any
5 d71d75ad 2017-11-05 stsp * purpose with or without fee is hereby granted, provided that the above
6 d71d75ad 2017-11-05 stsp * copyright notice and this permission notice appear in all copies.
7 d71d75ad 2017-11-05 stsp *
8 d71d75ad 2017-11-05 stsp * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
9 d71d75ad 2017-11-05 stsp * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
10 d71d75ad 2017-11-05 stsp * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
11 d71d75ad 2017-11-05 stsp * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
12 d71d75ad 2017-11-05 stsp * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
13 d71d75ad 2017-11-05 stsp * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
14 d71d75ad 2017-11-05 stsp * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
15 d71d75ad 2017-11-05 stsp */
16 d71d75ad 2017-11-05 stsp
17 2178c42e 2018-04-22 stsp #include <sys/types.h>
18 0ffeb3c2 2017-11-26 stsp #include <sys/stat.h>
19 d1cda826 2017-11-06 stsp #include <sys/queue.h>
20 2178c42e 2018-04-22 stsp #include <sys/uio.h>
21 2178c42e 2018-04-22 stsp #include <sys/socket.h>
22 2178c42e 2018-04-22 stsp #include <sys/wait.h>
23 876c234b 2018-09-10 stsp #include <sys/syslimits.h>
24 d1cda826 2017-11-06 stsp
25 a1fd68d8 2018-01-12 stsp #include <errno.h>
26 2178c42e 2018-04-22 stsp #include <fcntl.h>
27 d71d75ad 2017-11-05 stsp #include <stdio.h>
28 ab9a70b2 2017-11-06 stsp #include <stdlib.h>
29 ab9a70b2 2017-11-06 stsp #include <string.h>
30 2178c42e 2018-04-22 stsp #include <stdint.h>
31 d71d75ad 2017-11-05 stsp #include <sha1.h>
32 ab9a70b2 2017-11-06 stsp #include <zlib.h>
33 ab9a70b2 2017-11-06 stsp #include <ctype.h>
34 ab9a70b2 2017-11-06 stsp #include <limits.h>
35 2178c42e 2018-04-22 stsp #include <imsg.h>
36 788c352e 2018-06-16 stsp #include <time.h>
37 d71d75ad 2017-11-05 stsp
38 ab9a70b2 2017-11-06 stsp #include "got_error.h"
39 d71d75ad 2017-11-05 stsp #include "got_object.h"
40 ab9a70b2 2017-11-06 stsp #include "got_repository.h"
41 511a516b 2018-05-19 stsp #include "got_opentemp.h"
42 d71d75ad 2017-11-05 stsp
43 718b3ab0 2018-03-17 stsp #include "got_lib_sha1.h"
44 718b3ab0 2018-03-17 stsp #include "got_lib_delta.h"
45 2178c42e 2018-04-22 stsp #include "got_lib_path.h"
46 63581804 2018-07-09 stsp #include "got_lib_inflate.h"
47 718b3ab0 2018-03-17 stsp #include "got_lib_object.h"
48 2178c42e 2018-04-22 stsp #include "got_lib_privsep.h"
49 6bef87be 2018-09-11 stsp #include "got_lib_object_idcache.h"
50 6bef87be 2018-09-11 stsp #include "got_lib_object_cache.h"
51 ad242220 2018-09-08 stsp #include "got_lib_object_parse.h"
52 15a94983 2018-12-23 stsp #include "got_lib_pack.h"
53 7bb0daa1 2018-06-21 stsp #include "got_lib_repository.h"
54 1411938b 2018-02-12 stsp
55 ab9a70b2 2017-11-06 stsp #ifndef MIN
56 ab9a70b2 2017-11-06 stsp #define MIN(_a,_b) ((_a) < (_b) ? (_a) : (_b))
57 ab9a70b2 2017-11-06 stsp #endif
58 ef0981d5 2018-02-12 stsp
59 8bf5b3c9 2018-03-17 stsp struct got_object_id *
60 8bf5b3c9 2018-03-17 stsp got_object_id_dup(struct got_object_id *id1)
61 8bf5b3c9 2018-03-17 stsp {
62 8bf5b3c9 2018-03-17 stsp struct got_object_id *id2;
63 8bf5b3c9 2018-03-17 stsp
64 8bf5b3c9 2018-03-17 stsp id2 = malloc(sizeof(*id2));
65 8bf5b3c9 2018-03-17 stsp if (id2 == NULL)
66 8bf5b3c9 2018-03-17 stsp return NULL;
67 8bf5b3c9 2018-03-17 stsp memcpy(id2, id1, sizeof(*id2));
68 8bf5b3c9 2018-03-17 stsp return id2;
69 3235492e 2018-04-01 stsp }
70 3235492e 2018-04-01 stsp
71 3235492e 2018-04-01 stsp struct got_object_id *
72 3235492e 2018-04-01 stsp got_object_get_id(struct got_object *obj)
73 3235492e 2018-04-01 stsp {
74 6402fb3c 2018-09-15 stsp return &obj->id;
75 bacc9935 2018-05-20 stsp }
76 bacc9935 2018-05-20 stsp
77 bacc9935 2018-05-20 stsp const struct got_error *
78 bacc9935 2018-05-20 stsp got_object_get_id_str(char **outbuf, struct got_object *obj)
79 bacc9935 2018-05-20 stsp {
80 bacc9935 2018-05-20 stsp return got_object_id_str(outbuf, &obj->id);
81 a1fd68d8 2018-01-12 stsp }
82 d71d75ad 2017-11-05 stsp
83 15a94983 2018-12-23 stsp const struct got_error *
84 15a94983 2018-12-23 stsp got_object_get_type(int *type, struct got_repository *repo,
85 15a94983 2018-12-23 stsp struct got_object_id *id)
86 a1fd68d8 2018-01-12 stsp {
87 15a94983 2018-12-23 stsp const struct got_error *err = NULL;
88 15a94983 2018-12-23 stsp struct got_object *obj;
89 15a94983 2018-12-23 stsp
90 15a94983 2018-12-23 stsp err = got_object_open(&obj, repo, id);
91 15a94983 2018-12-23 stsp if (err)
92 15a94983 2018-12-23 stsp return err;
93 15a94983 2018-12-23 stsp
94 b107e67f 2018-01-19 stsp switch (obj->type) {
95 a1fd68d8 2018-01-12 stsp case GOT_OBJ_TYPE_COMMIT:
96 a1fd68d8 2018-01-12 stsp case GOT_OBJ_TYPE_TREE:
97 a1fd68d8 2018-01-12 stsp case GOT_OBJ_TYPE_BLOB:
98 b107e67f 2018-01-19 stsp case GOT_OBJ_TYPE_TAG:
99 15a94983 2018-12-23 stsp *type = obj->type;
100 15a94983 2018-12-23 stsp break;
101 96f5e8b3 2018-01-23 stsp default:
102 15a94983 2018-12-23 stsp err = got_error(GOT_ERR_OBJ_TYPE);
103 96f5e8b3 2018-01-23 stsp break;
104 d71d75ad 2017-11-05 stsp }
105 d71d75ad 2017-11-05 stsp
106 15a94983 2018-12-23 stsp got_object_close(obj);
107 15a94983 2018-12-23 stsp return err;
108 d71d75ad 2017-11-05 stsp }
109 ab9a70b2 2017-11-06 stsp
110 ab9a70b2 2017-11-06 stsp static const struct got_error *
111 4558fcd4 2018-01-14 stsp object_path(char **path, struct got_object_id *id, struct got_repository *repo)
112 ab9a70b2 2017-11-06 stsp {
113 ab9a70b2 2017-11-06 stsp const struct got_error *err = NULL;
114 7a132809 2018-07-23 stsp char *hex = NULL;
115 d1cda826 2017-11-06 stsp char *path_objects = got_repo_get_path_objects(repo);
116 e6b1056e 2018-04-22 stsp
117 e6b1056e 2018-04-22 stsp *path = NULL;
118 ab9a70b2 2017-11-06 stsp
119 ab9a70b2 2017-11-06 stsp if (path_objects == NULL)
120 0a585a0d 2018-03-17 stsp return got_error_from_errno();
121 ab9a70b2 2017-11-06 stsp
122 ef0981d5 2018-02-12 stsp err = got_object_id_str(&hex, id);
123 ef0981d5 2018-02-12 stsp if (err)
124 7a132809 2018-07-23 stsp goto done;
125 ab9a70b2 2017-11-06 stsp
126 d1cda826 2017-11-06 stsp if (asprintf(path, "%s/%.2x/%s", path_objects,
127 d1cda826 2017-11-06 stsp id->sha1[0], hex + 2) == -1)
128 0a585a0d 2018-03-17 stsp err = got_error_from_errno();
129 ab9a70b2 2017-11-06 stsp
130 7a132809 2018-07-23 stsp done:
131 ef0981d5 2018-02-12 stsp free(hex);
132 d1cda826 2017-11-06 stsp free(path_objects);
133 d1cda826 2017-11-06 stsp return err;
134 d1cda826 2017-11-06 stsp }
135 d1cda826 2017-11-06 stsp
136 4ee4114f 2018-01-23 stsp static const struct got_error *
137 4796fb13 2018-12-23 stsp open_loose_object(int *fd, struct got_object_id *id,
138 4796fb13 2018-12-23 stsp struct got_repository *repo)
139 d1cda826 2017-11-06 stsp {
140 d1cda826 2017-11-06 stsp const struct got_error *err = NULL;
141 a1fd68d8 2018-01-12 stsp char *path;
142 6c00b545 2018-01-17 stsp
143 4796fb13 2018-12-23 stsp err = object_path(&path, id, repo);
144 d1cda826 2017-11-06 stsp if (err)
145 d1cda826 2017-11-06 stsp return err;
146 d5003b79 2018-04-22 stsp *fd = open(path, O_RDONLY | O_NOFOLLOW, GOT_DEFAULT_FILE_MODE);
147 d5003b79 2018-04-22 stsp if (*fd == -1) {
148 6c00b545 2018-01-17 stsp err = got_error_from_errno();
149 6c00b545 2018-01-17 stsp goto done;
150 a1fd68d8 2018-01-12 stsp }
151 4558fcd4 2018-01-14 stsp done:
152 4558fcd4 2018-01-14 stsp free(path);
153 2090a03d 2018-09-09 stsp return err;
154 2090a03d 2018-09-09 stsp }
155 2090a03d 2018-09-09 stsp
156 2090a03d 2018-09-09 stsp static const struct got_error *
157 2090a03d 2018-09-09 stsp get_packfile_path(char **path_packfile, struct got_packidx *packidx)
158 2090a03d 2018-09-09 stsp {
159 2090a03d 2018-09-09 stsp size_t size;
160 2090a03d 2018-09-09 stsp
161 2090a03d 2018-09-09 stsp /* Packfile path contains ".pack" instead of ".idx", so add one byte. */
162 2090a03d 2018-09-09 stsp size = strlen(packidx->path_packidx) + 2;
163 2090a03d 2018-09-09 stsp if (size < GOT_PACKFILE_NAMELEN + 1)
164 2090a03d 2018-09-09 stsp return got_error(GOT_ERR_BAD_PATH);
165 2090a03d 2018-09-09 stsp
166 08451938 2018-11-05 stsp *path_packfile = malloc(size);
167 2090a03d 2018-09-09 stsp if (*path_packfile == NULL)
168 2090a03d 2018-09-09 stsp return got_error_from_errno();
169 2090a03d 2018-09-09 stsp
170 2090a03d 2018-09-09 stsp /* Copy up to and excluding ".idx". */
171 2090a03d 2018-09-09 stsp if (strlcpy(*path_packfile, packidx->path_packidx,
172 2090a03d 2018-09-09 stsp size - strlen(GOT_PACKIDX_SUFFIX) - 1) >= size)
173 2090a03d 2018-09-09 stsp return got_error(GOT_ERR_NO_SPACE);
174 2090a03d 2018-09-09 stsp
175 2090a03d 2018-09-09 stsp if (strlcat(*path_packfile, GOT_PACKFILE_SUFFIX, size) >= size)
176 2090a03d 2018-09-09 stsp return got_error(GOT_ERR_NO_SPACE);
177 2090a03d 2018-09-09 stsp
178 2090a03d 2018-09-09 stsp return NULL;
179 2090a03d 2018-09-09 stsp }
180 2090a03d 2018-09-09 stsp
181 a158c901 2018-12-23 stsp static void
182 a158c901 2018-12-23 stsp exec_privsep_child(int imsg_fds[2], const char *path, const char *repo_path)
183 a158c901 2018-12-23 stsp {
184 a158c901 2018-12-23 stsp close(imsg_fds[0]);
185 a158c901 2018-12-23 stsp
186 a158c901 2018-12-23 stsp if (dup2(imsg_fds[1], GOT_IMSG_FD_CHILD) == -1) {
187 a158c901 2018-12-23 stsp fprintf(stderr, "%s: %s\n", getprogname(),
188 a158c901 2018-12-23 stsp strerror(errno));
189 a158c901 2018-12-23 stsp _exit(1);
190 a158c901 2018-12-23 stsp }
191 a158c901 2018-12-23 stsp if (closefrom(GOT_IMSG_FD_CHILD + 1) == -1) {
192 a158c901 2018-12-23 stsp fprintf(stderr, "%s: %s\n", getprogname(),
193 a158c901 2018-12-23 stsp strerror(errno));
194 a158c901 2018-12-23 stsp _exit(1);
195 a158c901 2018-12-23 stsp }
196 a158c901 2018-12-23 stsp
197 a158c901 2018-12-23 stsp if (execl(path, path, repo_path, (char *)NULL) == -1) {
198 a158c901 2018-12-23 stsp fprintf(stderr, "%s: %s: %s\n", getprogname(), path,
199 a158c901 2018-12-23 stsp strerror(errno));
200 a158c901 2018-12-23 stsp _exit(1);
201 a158c901 2018-12-23 stsp }
202 a158c901 2018-12-23 stsp }
203 a158c901 2018-12-23 stsp
204 2090a03d 2018-09-09 stsp static const struct got_error *
205 a158c901 2018-12-23 stsp request_packed_object(struct got_object **obj, struct got_pack *pack, int idx,
206 a158c901 2018-12-23 stsp struct got_object_id *id)
207 a158c901 2018-12-23 stsp {
208 a158c901 2018-12-23 stsp const struct got_error *err = NULL;
209 a158c901 2018-12-23 stsp struct imsgbuf *ibuf = pack->privsep_child->ibuf;
210 a158c901 2018-12-23 stsp
211 a158c901 2018-12-23 stsp err = got_privsep_send_packed_obj_req(ibuf, idx, id);
212 a158c901 2018-12-23 stsp if (err)
213 a158c901 2018-12-23 stsp return err;
214 a158c901 2018-12-23 stsp
215 a158c901 2018-12-23 stsp err = got_privsep_recv_obj(obj, ibuf);
216 a158c901 2018-12-23 stsp if (err)
217 a158c901 2018-12-23 stsp return err;
218 a158c901 2018-12-23 stsp
219 a158c901 2018-12-23 stsp (*obj)->path_packfile = strdup(pack->path_packfile);
220 a158c901 2018-12-23 stsp if ((*obj)->path_packfile == NULL) {
221 a158c901 2018-12-23 stsp err = got_error_from_errno();
222 a158c901 2018-12-23 stsp return err;
223 a158c901 2018-12-23 stsp }
224 a158c901 2018-12-23 stsp memcpy(&(*obj)->id, id, sizeof((*obj)->id));
225 a158c901 2018-12-23 stsp
226 a158c901 2018-12-23 stsp return NULL;
227 a158c901 2018-12-23 stsp }
228 a158c901 2018-12-23 stsp
229 a158c901 2018-12-23 stsp static const struct got_error *
230 711fb6e8 2018-12-23 stsp start_pack_privsep_child(struct got_pack *pack, struct got_packidx *packidx)
231 a158c901 2018-12-23 stsp {
232 a158c901 2018-12-23 stsp const struct got_error *err = NULL;
233 a158c901 2018-12-23 stsp int imsg_fds[2];
234 a158c901 2018-12-23 stsp pid_t pid;
235 a158c901 2018-12-23 stsp struct imsgbuf *ibuf;
236 a158c901 2018-12-23 stsp
237 a158c901 2018-12-23 stsp ibuf = calloc(1, sizeof(*ibuf));
238 a158c901 2018-12-23 stsp if (ibuf == NULL)
239 a158c901 2018-12-23 stsp return got_error_from_errno();
240 a158c901 2018-12-23 stsp
241 a158c901 2018-12-23 stsp pack->privsep_child = calloc(1, sizeof(*pack->privsep_child));
242 a158c901 2018-12-23 stsp if (pack->privsep_child == NULL) {
243 a158c901 2018-12-23 stsp err = got_error_from_errno();
244 a158c901 2018-12-23 stsp free(ibuf);
245 a158c901 2018-12-23 stsp return err;
246 a158c901 2018-12-23 stsp }
247 a158c901 2018-12-23 stsp
248 a158c901 2018-12-23 stsp if (socketpair(AF_UNIX, SOCK_STREAM, PF_UNSPEC, imsg_fds) == -1) {
249 a158c901 2018-12-23 stsp err = got_error_from_errno();
250 a158c901 2018-12-23 stsp goto done;
251 a158c901 2018-12-23 stsp }
252 a158c901 2018-12-23 stsp
253 a158c901 2018-12-23 stsp pid = fork();
254 a158c901 2018-12-23 stsp if (pid == -1) {
255 a158c901 2018-12-23 stsp err = got_error_from_errno();
256 a158c901 2018-12-23 stsp goto done;
257 a158c901 2018-12-23 stsp } else if (pid == 0) {
258 a158c901 2018-12-23 stsp exec_privsep_child(imsg_fds, GOT_PATH_PROG_READ_PACK,
259 a158c901 2018-12-23 stsp pack->path_packfile);
260 a158c901 2018-12-23 stsp /* not reached */
261 a158c901 2018-12-23 stsp }
262 a158c901 2018-12-23 stsp
263 a158c901 2018-12-23 stsp close(imsg_fds[1]);
264 a158c901 2018-12-23 stsp pack->privsep_child->imsg_fd = imsg_fds[0];
265 a158c901 2018-12-23 stsp pack->privsep_child->pid = pid;
266 a158c901 2018-12-23 stsp imsg_init(ibuf, imsg_fds[0]);
267 a158c901 2018-12-23 stsp pack->privsep_child->ibuf = ibuf;
268 a158c901 2018-12-23 stsp
269 a158c901 2018-12-23 stsp err = got_privsep_init_pack_child(ibuf, pack, packidx);
270 a158c901 2018-12-23 stsp if (err) {
271 a158c901 2018-12-23 stsp const struct got_error *child_err;
272 a158c901 2018-12-23 stsp err = got_privsep_send_stop(pack->privsep_child->imsg_fd);
273 a158c901 2018-12-23 stsp child_err = got_privsep_wait_for_child(
274 a158c901 2018-12-23 stsp pack->privsep_child->pid);
275 a158c901 2018-12-23 stsp if (child_err && err == NULL)
276 a158c901 2018-12-23 stsp err = child_err;
277 a158c901 2018-12-23 stsp }
278 a158c901 2018-12-23 stsp done:
279 a158c901 2018-12-23 stsp if (err) {
280 a158c901 2018-12-23 stsp free(ibuf);
281 a158c901 2018-12-23 stsp free(pack->privsep_child);
282 a158c901 2018-12-23 stsp pack->privsep_child = NULL;
283 711fb6e8 2018-12-23 stsp }
284 a158c901 2018-12-23 stsp return err;
285 a158c901 2018-12-23 stsp }
286 a158c901 2018-12-23 stsp
287 711fb6e8 2018-12-23 stsp static const struct got_error *
288 711fb6e8 2018-12-23 stsp read_packed_object_privsep(struct got_object **obj,
289 711fb6e8 2018-12-23 stsp struct got_repository *repo, struct got_pack *pack,
290 711fb6e8 2018-12-23 stsp struct got_packidx *packidx, int idx, struct got_object_id *id)
291 711fb6e8 2018-12-23 stsp {
292 711fb6e8 2018-12-23 stsp const struct got_error *err = NULL;
293 a158c901 2018-12-23 stsp
294 711fb6e8 2018-12-23 stsp if (pack->privsep_child)
295 711fb6e8 2018-12-23 stsp return request_packed_object(obj, pack, idx, id);
296 711fb6e8 2018-12-23 stsp
297 711fb6e8 2018-12-23 stsp err = start_pack_privsep_child(pack, packidx);
298 711fb6e8 2018-12-23 stsp if (err)
299 711fb6e8 2018-12-23 stsp return err;
300 711fb6e8 2018-12-23 stsp
301 711fb6e8 2018-12-23 stsp return request_packed_object(obj, pack, idx, id);
302 711fb6e8 2018-12-23 stsp }
303 711fb6e8 2018-12-23 stsp
304 711fb6e8 2018-12-23 stsp
305 a158c901 2018-12-23 stsp static const struct got_error *
306 2090a03d 2018-09-09 stsp open_packed_object(struct got_object **obj, struct got_object_id *id,
307 2090a03d 2018-09-09 stsp struct got_repository *repo)
308 2090a03d 2018-09-09 stsp {
309 2090a03d 2018-09-09 stsp const struct got_error *err = NULL;
310 2090a03d 2018-09-09 stsp struct got_pack *pack = NULL;
311 2090a03d 2018-09-09 stsp struct got_packidx *packidx = NULL;
312 2090a03d 2018-09-09 stsp int idx;
313 2090a03d 2018-09-09 stsp char *path_packfile;
314 2090a03d 2018-09-09 stsp
315 2090a03d 2018-09-09 stsp err = got_repo_search_packidx(&packidx, &idx, repo, id);
316 2090a03d 2018-09-09 stsp if (err)
317 2090a03d 2018-09-09 stsp return err;
318 2090a03d 2018-09-09 stsp
319 2090a03d 2018-09-09 stsp err = get_packfile_path(&path_packfile, packidx);
320 2090a03d 2018-09-09 stsp if (err)
321 2090a03d 2018-09-09 stsp return err;
322 2090a03d 2018-09-09 stsp
323 2090a03d 2018-09-09 stsp pack = got_repo_get_cached_pack(repo, path_packfile);
324 2090a03d 2018-09-09 stsp if (pack == NULL) {
325 2090a03d 2018-09-09 stsp err = got_repo_cache_pack(&pack, repo, path_packfile, packidx);
326 2090a03d 2018-09-09 stsp if (err)
327 2090a03d 2018-09-09 stsp goto done;
328 2090a03d 2018-09-09 stsp }
329 2090a03d 2018-09-09 stsp
330 a158c901 2018-12-23 stsp err = read_packed_object_privsep(obj, repo, pack, packidx, idx, id);
331 2090a03d 2018-09-09 stsp if (err)
332 2090a03d 2018-09-09 stsp goto done;
333 2090a03d 2018-09-09 stsp
334 2090a03d 2018-09-09 stsp err = got_repo_cache_pack(NULL, repo, (*obj)->path_packfile, packidx);
335 2090a03d 2018-09-09 stsp done:
336 2090a03d 2018-09-09 stsp free(path_packfile);
337 4558fcd4 2018-01-14 stsp return err;
338 9f2369b0 2018-12-24 stsp }
339 9f2369b0 2018-12-24 stsp
340 9f2369b0 2018-12-24 stsp static const struct got_error *
341 9f2369b0 2018-12-24 stsp request_object(struct got_object **obj, struct got_repository *repo, int fd)
342 9f2369b0 2018-12-24 stsp {
343 9f2369b0 2018-12-24 stsp const struct got_error *err = NULL;
344 9f2369b0 2018-12-24 stsp struct imsgbuf *ibuf;
345 9f2369b0 2018-12-24 stsp
346 9f2369b0 2018-12-24 stsp ibuf = repo->privsep_children[GOT_REPO_PRIVSEP_CHILD_OBJECT].ibuf;
347 9f2369b0 2018-12-24 stsp
348 aea5f015 2018-12-24 stsp err = got_privsep_send_obj_req(ibuf, fd);
349 9f2369b0 2018-12-24 stsp if (err)
350 9f2369b0 2018-12-24 stsp return err;
351 9f2369b0 2018-12-24 stsp
352 9f2369b0 2018-12-24 stsp return got_privsep_recv_obj(obj, ibuf);
353 9f2369b0 2018-12-24 stsp }
354 9f2369b0 2018-12-24 stsp
355 9f2369b0 2018-12-24 stsp static const struct got_error *
356 9f2369b0 2018-12-24 stsp read_object_header_privsep(struct got_object **obj, struct got_repository *repo,
357 9f2369b0 2018-12-24 stsp int obj_fd)
358 9f2369b0 2018-12-24 stsp {
359 9f2369b0 2018-12-24 stsp int imsg_fds[2];
360 9f2369b0 2018-12-24 stsp pid_t pid;
361 9f2369b0 2018-12-24 stsp struct imsgbuf *ibuf;
362 9f2369b0 2018-12-24 stsp
363 9f2369b0 2018-12-24 stsp if (repo->privsep_children[GOT_REPO_PRIVSEP_CHILD_OBJECT].imsg_fd != -1)
364 9f2369b0 2018-12-24 stsp return request_object(obj, repo, obj_fd);
365 9f2369b0 2018-12-24 stsp
366 9f2369b0 2018-12-24 stsp ibuf = calloc(1, sizeof(*ibuf));
367 9f2369b0 2018-12-24 stsp if (ibuf == NULL)
368 9f2369b0 2018-12-24 stsp return got_error_from_errno();
369 9f2369b0 2018-12-24 stsp
370 9f2369b0 2018-12-24 stsp if (socketpair(AF_UNIX, SOCK_STREAM, PF_UNSPEC, imsg_fds) == -1)
371 9f2369b0 2018-12-24 stsp return got_error_from_errno();
372 9f2369b0 2018-12-24 stsp
373 9f2369b0 2018-12-24 stsp pid = fork();
374 9f2369b0 2018-12-24 stsp if (pid == -1)
375 9f2369b0 2018-12-24 stsp return got_error_from_errno();
376 9f2369b0 2018-12-24 stsp else if (pid == 0) {
377 9f2369b0 2018-12-24 stsp exec_privsep_child(imsg_fds, GOT_PATH_PROG_READ_OBJECT,
378 9f2369b0 2018-12-24 stsp repo->path);
379 9f2369b0 2018-12-24 stsp /* not reached */
380 9f2369b0 2018-12-24 stsp }
381 9f2369b0 2018-12-24 stsp
382 9f2369b0 2018-12-24 stsp close(imsg_fds[1]);
383 9f2369b0 2018-12-24 stsp repo->privsep_children[GOT_REPO_PRIVSEP_CHILD_OBJECT].imsg_fd =
384 9f2369b0 2018-12-24 stsp imsg_fds[0];
385 9f2369b0 2018-12-24 stsp repo->privsep_children[GOT_REPO_PRIVSEP_CHILD_OBJECT].pid = pid;
386 9f2369b0 2018-12-24 stsp imsg_init(ibuf, imsg_fds[0]);
387 9f2369b0 2018-12-24 stsp repo->privsep_children[GOT_REPO_PRIVSEP_CHILD_OBJECT].ibuf = ibuf;
388 9f2369b0 2018-12-24 stsp
389 9f2369b0 2018-12-24 stsp return request_object(obj, repo, obj_fd);
390 4558fcd4 2018-01-14 stsp }
391 a1fd68d8 2018-01-12 stsp
392 9f2369b0 2018-12-24 stsp
393 4558fcd4 2018-01-14 stsp const struct got_error *
394 4558fcd4 2018-01-14 stsp got_object_open(struct got_object **obj, struct got_repository *repo,
395 4558fcd4 2018-01-14 stsp struct got_object_id *id)
396 4558fcd4 2018-01-14 stsp {
397 6c00b545 2018-01-17 stsp const struct got_error *err = NULL;
398 6c00b545 2018-01-17 stsp char *path;
399 2178c42e 2018-04-22 stsp int fd;
400 7bb0daa1 2018-06-21 stsp
401 7bb0daa1 2018-06-21 stsp *obj = got_repo_get_cached_object(repo, id);
402 7bb0daa1 2018-06-21 stsp if (*obj != NULL) {
403 7bb0daa1 2018-06-21 stsp (*obj)->refcnt++;
404 7bb0daa1 2018-06-21 stsp return NULL;
405 7bb0daa1 2018-06-21 stsp }
406 4558fcd4 2018-01-14 stsp
407 59790a32 2018-09-15 stsp err = open_packed_object(obj, id, repo);
408 59790a32 2018-09-15 stsp if (err && err->code != GOT_ERR_NO_OBJ)
409 59790a32 2018-09-15 stsp return err;
410 59790a32 2018-09-15 stsp if (*obj) {
411 59790a32 2018-09-15 stsp (*obj)->refcnt++;
412 59790a32 2018-09-15 stsp return got_repo_cache_object(repo, id, *obj);
413 59790a32 2018-09-15 stsp }
414 59790a32 2018-09-15 stsp
415 6c00b545 2018-01-17 stsp err = object_path(&path, id, repo);
416 4558fcd4 2018-01-14 stsp if (err)
417 4558fcd4 2018-01-14 stsp return err;
418 4558fcd4 2018-01-14 stsp
419 2178c42e 2018-04-22 stsp fd = open(path, O_RDONLY | O_NOFOLLOW, GOT_DEFAULT_FILE_MODE);
420 2178c42e 2018-04-22 stsp if (fd == -1) {
421 59790a32 2018-09-15 stsp if (errno == ENOENT)
422 91a3d81f 2018-11-11 stsp err = got_error_no_obj(id);
423 59790a32 2018-09-15 stsp else
424 6c00b545 2018-01-17 stsp err = got_error_from_errno();
425 59790a32 2018-09-15 stsp goto done;
426 6c00b545 2018-01-17 stsp } else {
427 9f2369b0 2018-12-24 stsp err = read_object_header_privsep(obj, repo, fd);
428 6c00b545 2018-01-17 stsp if (err)
429 6c00b545 2018-01-17 stsp goto done;
430 ab9a70b2 2017-11-06 stsp memcpy((*obj)->id.sha1, id->sha1, SHA1_DIGEST_LENGTH);
431 6c00b545 2018-01-17 stsp }
432 7bb0daa1 2018-06-21 stsp
433 59790a32 2018-09-15 stsp (*obj)->refcnt++;
434 59790a32 2018-09-15 stsp err = got_repo_cache_object(repo, id, *obj);
435 6c00b545 2018-01-17 stsp done:
436 6c00b545 2018-01-17 stsp free(path);
437 2178c42e 2018-04-22 stsp if (fd != -1)
438 2178c42e 2018-04-22 stsp close(fd);
439 ab9a70b2 2017-11-06 stsp return err;
440 6c00b545 2018-01-17 stsp
441 ab9a70b2 2017-11-06 stsp }
442 ab9a70b2 2017-11-06 stsp
443 6dfa2fd3 2018-02-12 stsp const struct got_error *
444 6dfa2fd3 2018-02-12 stsp got_object_open_by_id_str(struct got_object **obj, struct got_repository *repo,
445 6dfa2fd3 2018-02-12 stsp const char *id_str)
446 6dfa2fd3 2018-02-12 stsp {
447 6dfa2fd3 2018-02-12 stsp struct got_object_id id;
448 6dfa2fd3 2018-02-12 stsp
449 6dfa2fd3 2018-02-12 stsp if (!got_parse_sha1_digest(id.sha1, id_str))
450 6dfa2fd3 2018-02-12 stsp return got_error(GOT_ERR_BAD_OBJ_ID_STR);
451 6dfa2fd3 2018-02-12 stsp
452 6dfa2fd3 2018-02-12 stsp return got_object_open(obj, repo, &id);
453 15a94983 2018-12-23 stsp }
454 15a94983 2018-12-23 stsp
455 15a94983 2018-12-23 stsp const struct got_error *
456 15a94983 2018-12-23 stsp got_object_resolve_id_str(struct got_object_id **id,
457 15a94983 2018-12-23 stsp struct got_repository *repo, const char *id_str)
458 15a94983 2018-12-23 stsp {
459 15a94983 2018-12-23 stsp const struct got_error *err = NULL;
460 15a94983 2018-12-23 stsp struct got_object *obj;
461 15a94983 2018-12-23 stsp
462 15a94983 2018-12-23 stsp err = got_object_open_by_id_str(&obj, repo, id_str);
463 15a94983 2018-12-23 stsp if (err)
464 15a94983 2018-12-23 stsp return err;
465 15a94983 2018-12-23 stsp
466 15a94983 2018-12-23 stsp *id = got_object_id_dup(got_object_get_id(obj));
467 15a94983 2018-12-23 stsp got_object_close(obj);
468 15a94983 2018-12-23 stsp if (*id == NULL)
469 15a94983 2018-12-23 stsp return got_error_from_errno();
470 15a94983 2018-12-23 stsp
471 15a94983 2018-12-23 stsp return NULL;
472 434025f3 2018-09-16 stsp }
473 434025f3 2018-09-16 stsp
474 434025f3 2018-09-16 stsp static const struct got_error *
475 a158c901 2018-12-23 stsp request_packed_commit(struct got_commit_object **commit, struct got_pack *pack,
476 a158c901 2018-12-23 stsp int pack_idx, struct got_object_id *id)
477 a158c901 2018-12-23 stsp {
478 a158c901 2018-12-23 stsp const struct got_error *err = NULL;
479 a158c901 2018-12-23 stsp
480 a158c901 2018-12-23 stsp err = got_privsep_send_commit_req(pack->privsep_child->ibuf, -1, id,
481 a158c901 2018-12-23 stsp pack_idx);
482 a158c901 2018-12-23 stsp if (err)
483 a158c901 2018-12-23 stsp return err;
484 a158c901 2018-12-23 stsp
485 a158c901 2018-12-23 stsp return got_privsep_recv_commit(commit, pack->privsep_child->ibuf);
486 a158c901 2018-12-23 stsp }
487 a158c901 2018-12-23 stsp
488 a158c901 2018-12-23 stsp static const struct got_error *
489 a158c901 2018-12-23 stsp read_packed_commit_privsep(struct got_commit_object **commit,
490 a158c901 2018-12-23 stsp struct got_pack *pack, struct got_packidx *packidx, int idx,
491 a158c901 2018-12-23 stsp struct got_object_id *id)
492 a158c901 2018-12-23 stsp {
493 a158c901 2018-12-23 stsp const struct got_error *err = NULL;
494 a158c901 2018-12-23 stsp
495 a158c901 2018-12-23 stsp if (pack->privsep_child)
496 a158c901 2018-12-23 stsp return request_packed_commit(commit, pack, idx, id);
497 a158c901 2018-12-23 stsp
498 711fb6e8 2018-12-23 stsp err = start_pack_privsep_child(pack, packidx);
499 711fb6e8 2018-12-23 stsp if (err)
500 a158c901 2018-12-23 stsp return err;
501 a158c901 2018-12-23 stsp
502 711fb6e8 2018-12-23 stsp return request_packed_commit(commit, pack, idx, id);
503 9f2369b0 2018-12-24 stsp }
504 9f2369b0 2018-12-24 stsp
505 9f2369b0 2018-12-24 stsp static const struct got_error *
506 9f2369b0 2018-12-24 stsp request_commit(struct got_commit_object **commit, struct got_repository *repo,
507 9f2369b0 2018-12-24 stsp int fd)
508 9f2369b0 2018-12-24 stsp {
509 9f2369b0 2018-12-24 stsp const struct got_error *err = NULL;
510 9f2369b0 2018-12-24 stsp struct imsgbuf *ibuf;
511 9f2369b0 2018-12-24 stsp
512 9f2369b0 2018-12-24 stsp ibuf = repo->privsep_children[GOT_REPO_PRIVSEP_CHILD_COMMIT].ibuf;
513 9f2369b0 2018-12-24 stsp
514 9f2369b0 2018-12-24 stsp err = got_privsep_send_commit_req(ibuf, fd, NULL, -1);
515 9f2369b0 2018-12-24 stsp if (err)
516 9f2369b0 2018-12-24 stsp return err;
517 9f2369b0 2018-12-24 stsp
518 9f2369b0 2018-12-24 stsp return got_privsep_recv_commit(commit, ibuf);
519 9f2369b0 2018-12-24 stsp }
520 9f2369b0 2018-12-24 stsp
521 9f2369b0 2018-12-24 stsp static const struct got_error *
522 9f2369b0 2018-12-24 stsp read_commit_privsep(struct got_commit_object **commit, int obj_fd,
523 9f2369b0 2018-12-24 stsp struct got_repository *repo)
524 9f2369b0 2018-12-24 stsp {
525 9f2369b0 2018-12-24 stsp int imsg_fds[2];
526 9f2369b0 2018-12-24 stsp pid_t pid;
527 9f2369b0 2018-12-24 stsp struct imsgbuf *ibuf;
528 9f2369b0 2018-12-24 stsp
529 9f2369b0 2018-12-24 stsp if (repo->privsep_children[GOT_REPO_PRIVSEP_CHILD_COMMIT].imsg_fd != -1)
530 9f2369b0 2018-12-24 stsp return request_commit(commit, repo, obj_fd);
531 9f2369b0 2018-12-24 stsp
532 9f2369b0 2018-12-24 stsp ibuf = calloc(1, sizeof(*ibuf));
533 9f2369b0 2018-12-24 stsp if (ibuf == NULL)
534 9f2369b0 2018-12-24 stsp return got_error_from_errno();
535 9f2369b0 2018-12-24 stsp
536 9f2369b0 2018-12-24 stsp if (socketpair(AF_UNIX, SOCK_STREAM, PF_UNSPEC, imsg_fds) == -1)
537 9f2369b0 2018-12-24 stsp return got_error_from_errno();
538 9f2369b0 2018-12-24 stsp
539 9f2369b0 2018-12-24 stsp pid = fork();
540 9f2369b0 2018-12-24 stsp if (pid == -1)
541 9f2369b0 2018-12-24 stsp return got_error_from_errno();
542 9f2369b0 2018-12-24 stsp else if (pid == 0) {
543 9f2369b0 2018-12-24 stsp exec_privsep_child(imsg_fds, GOT_PATH_PROG_READ_COMMIT,
544 9f2369b0 2018-12-24 stsp repo->path);
545 9f2369b0 2018-12-24 stsp /* not reached */
546 9f2369b0 2018-12-24 stsp }
547 9f2369b0 2018-12-24 stsp
548 9f2369b0 2018-12-24 stsp close(imsg_fds[1]);
549 9f2369b0 2018-12-24 stsp repo->privsep_children[GOT_REPO_PRIVSEP_CHILD_COMMIT].imsg_fd =
550 9f2369b0 2018-12-24 stsp imsg_fds[0];
551 9f2369b0 2018-12-24 stsp repo->privsep_children[GOT_REPO_PRIVSEP_CHILD_COMMIT].pid = pid;
552 9f2369b0 2018-12-24 stsp imsg_init(ibuf, imsg_fds[0]);
553 9f2369b0 2018-12-24 stsp repo->privsep_children[GOT_REPO_PRIVSEP_CHILD_COMMIT].ibuf = ibuf;
554 9f2369b0 2018-12-24 stsp
555 9f2369b0 2018-12-24 stsp return request_commit(commit, repo, obj_fd);
556 a158c901 2018-12-23 stsp }
557 a158c901 2018-12-23 stsp
558 9f2369b0 2018-12-24 stsp
559 a158c901 2018-12-23 stsp static const struct got_error *
560 434025f3 2018-09-16 stsp open_commit(struct got_commit_object **commit,
561 1785f84a 2018-12-23 stsp struct got_repository *repo, struct got_object_id *id, int check_cache)
562 434025f3 2018-09-16 stsp {
563 434025f3 2018-09-16 stsp const struct got_error *err = NULL;
564 1785f84a 2018-12-23 stsp struct got_packidx *packidx = NULL;
565 1785f84a 2018-12-23 stsp int idx;
566 1785f84a 2018-12-23 stsp char *path_packfile;
567 434025f3 2018-09-16 stsp
568 434025f3 2018-09-16 stsp if (check_cache) {
569 1785f84a 2018-12-23 stsp *commit = got_repo_get_cached_commit(repo, id);
570 434025f3 2018-09-16 stsp if (*commit != NULL) {
571 434025f3 2018-09-16 stsp (*commit)->refcnt++;
572 434025f3 2018-09-16 stsp return NULL;
573 434025f3 2018-09-16 stsp }
574 434025f3 2018-09-16 stsp } else
575 434025f3 2018-09-16 stsp *commit = NULL;
576 434025f3 2018-09-16 stsp
577 1785f84a 2018-12-23 stsp err = got_repo_search_packidx(&packidx, &idx, repo, id);
578 1785f84a 2018-12-23 stsp if (err == NULL) {
579 1785f84a 2018-12-23 stsp struct got_pack *pack = NULL;
580 434025f3 2018-09-16 stsp
581 1785f84a 2018-12-23 stsp err = get_packfile_path(&path_packfile, packidx);
582 1785f84a 2018-12-23 stsp if (err)
583 1785f84a 2018-12-23 stsp return err;
584 1785f84a 2018-12-23 stsp
585 1785f84a 2018-12-23 stsp pack = got_repo_get_cached_pack(repo, path_packfile);
586 434025f3 2018-09-16 stsp if (pack == NULL) {
587 1785f84a 2018-12-23 stsp err = got_repo_cache_pack(&pack, repo, path_packfile,
588 1785f84a 2018-12-23 stsp packidx);
589 434025f3 2018-09-16 stsp if (err)
590 434025f3 2018-09-16 stsp return err;
591 434025f3 2018-09-16 stsp }
592 a158c901 2018-12-23 stsp err = read_packed_commit_privsep(commit, pack,
593 1785f84a 2018-12-23 stsp packidx, idx, id);
594 1785f84a 2018-12-23 stsp } else if (err->code == GOT_ERR_NO_OBJ) {
595 434025f3 2018-09-16 stsp int fd;
596 1785f84a 2018-12-23 stsp
597 1785f84a 2018-12-23 stsp err = open_loose_object(&fd, id, repo);
598 434025f3 2018-09-16 stsp if (err)
599 434025f3 2018-09-16 stsp return err;
600 9f2369b0 2018-12-24 stsp err = read_commit_privsep(commit, fd, repo);
601 434025f3 2018-09-16 stsp close(fd);
602 434025f3 2018-09-16 stsp }
603 434025f3 2018-09-16 stsp
604 434025f3 2018-09-16 stsp if (err == NULL) {
605 434025f3 2018-09-16 stsp (*commit)->refcnt++;
606 1785f84a 2018-12-23 stsp err = got_repo_cache_commit(repo, id, *commit);
607 e32baab7 2018-11-05 stsp }
608 e32baab7 2018-11-05 stsp
609 e32baab7 2018-11-05 stsp return err;
610 e32baab7 2018-11-05 stsp }
611 e32baab7 2018-11-05 stsp
612 e32baab7 2018-11-05 stsp const struct got_error *
613 e32baab7 2018-11-05 stsp got_object_open_as_commit(struct got_commit_object **commit,
614 e32baab7 2018-11-05 stsp struct got_repository *repo, struct got_object_id *id)
615 e32baab7 2018-11-05 stsp {
616 e32baab7 2018-11-05 stsp *commit = got_repo_get_cached_commit(repo, id);
617 e32baab7 2018-11-05 stsp if (*commit != NULL) {
618 e32baab7 2018-11-05 stsp (*commit)->refcnt++;
619 e32baab7 2018-11-05 stsp return NULL;
620 e32baab7 2018-11-05 stsp }
621 e32baab7 2018-11-05 stsp
622 1785f84a 2018-12-23 stsp return open_commit(commit, repo, id, 0);
623 7762fe12 2018-11-05 stsp }
624 7762fe12 2018-11-05 stsp
625 e32baab7 2018-11-05 stsp const struct got_error *
626 e32baab7 2018-11-05 stsp got_object_commit_open(struct got_commit_object **commit,
627 e32baab7 2018-11-05 stsp struct got_repository *repo, struct got_object *obj)
628 e32baab7 2018-11-05 stsp {
629 1785f84a 2018-12-23 stsp return open_commit(commit, repo, got_object_get_id(obj), 1);
630 434025f3 2018-09-16 stsp }
631 434025f3 2018-09-16 stsp
632 434025f3 2018-09-16 stsp const struct got_error *
633 dbc6a6b6 2018-07-12 stsp got_object_qid_alloc(struct got_object_qid **qid, struct got_object_id *id)
634 dbc6a6b6 2018-07-12 stsp {
635 dbc6a6b6 2018-07-12 stsp const struct got_error *err = NULL;
636 dbc6a6b6 2018-07-12 stsp
637 dbc6a6b6 2018-07-12 stsp *qid = calloc(1, sizeof(**qid));
638 dbc6a6b6 2018-07-12 stsp if (*qid == NULL)
639 dbc6a6b6 2018-07-12 stsp return got_error_from_errno();
640 dbc6a6b6 2018-07-12 stsp
641 dbc6a6b6 2018-07-12 stsp (*qid)->id = got_object_id_dup(id);
642 dbc6a6b6 2018-07-12 stsp if ((*qid)->id == NULL) {
643 dbc6a6b6 2018-07-12 stsp err = got_error_from_errno();
644 fa2f6902 2018-07-23 stsp got_object_qid_free(*qid);
645 dbc6a6b6 2018-07-12 stsp *qid = NULL;
646 dbc6a6b6 2018-07-12 stsp return err;
647 dbc6a6b6 2018-07-12 stsp }
648 dbc6a6b6 2018-07-12 stsp
649 dbc6a6b6 2018-07-12 stsp return NULL;
650 a158c901 2018-12-23 stsp }
651 a158c901 2018-12-23 stsp
652 a158c901 2018-12-23 stsp static const struct got_error *
653 13c729f7 2018-12-24 stsp request_packed_tree(struct got_tree_object **tree, struct got_pack *pack,
654 13c729f7 2018-12-24 stsp int pack_idx, struct got_object_id *id)
655 a158c901 2018-12-23 stsp {
656 a158c901 2018-12-23 stsp const struct got_error *err = NULL;
657 a158c901 2018-12-23 stsp
658 13c729f7 2018-12-24 stsp err = got_privsep_send_tree_req(pack->privsep_child->ibuf, -1, id,
659 13c729f7 2018-12-24 stsp pack_idx);
660 a158c901 2018-12-23 stsp if (err)
661 a158c901 2018-12-23 stsp return err;
662 a158c901 2018-12-23 stsp
663 a158c901 2018-12-23 stsp return got_privsep_recv_tree(tree, pack->privsep_child->ibuf);
664 7e212e3d 2018-09-09 stsp }
665 7e212e3d 2018-09-09 stsp
666 71eb0e7f 2018-09-16 stsp static const struct got_error *
667 13c729f7 2018-12-24 stsp read_packed_tree_privsep(struct got_tree_object **tree,
668 13c729f7 2018-12-24 stsp struct got_pack *pack, struct got_packidx *packidx, int idx,
669 13c729f7 2018-12-24 stsp struct got_object_id *id)
670 13c729f7 2018-12-24 stsp {
671 13c729f7 2018-12-24 stsp const struct got_error *err = NULL;
672 13c729f7 2018-12-24 stsp
673 13c729f7 2018-12-24 stsp if (pack->privsep_child)
674 13c729f7 2018-12-24 stsp return request_packed_tree(tree, pack, idx, id);
675 13c729f7 2018-12-24 stsp
676 13c729f7 2018-12-24 stsp err = start_pack_privsep_child(pack, packidx);
677 13c729f7 2018-12-24 stsp if (err)
678 13c729f7 2018-12-24 stsp return err;
679 13c729f7 2018-12-24 stsp
680 13c729f7 2018-12-24 stsp return request_packed_tree(tree, pack, idx, id);
681 13c729f7 2018-12-24 stsp }
682 13c729f7 2018-12-24 stsp
683 13c729f7 2018-12-24 stsp static const struct got_error *
684 9f2369b0 2018-12-24 stsp request_tree(struct got_tree_object **tree, struct got_repository *repo,
685 9f2369b0 2018-12-24 stsp int fd)
686 9f2369b0 2018-12-24 stsp {
687 9f2369b0 2018-12-24 stsp const struct got_error *err = NULL;
688 9f2369b0 2018-12-24 stsp struct imsgbuf *ibuf;
689 9f2369b0 2018-12-24 stsp
690 9f2369b0 2018-12-24 stsp ibuf = repo->privsep_children[GOT_REPO_PRIVSEP_CHILD_TREE].ibuf;
691 9f2369b0 2018-12-24 stsp
692 9f2369b0 2018-12-24 stsp err = got_privsep_send_tree_req(ibuf, fd, NULL, -1);
693 9f2369b0 2018-12-24 stsp if (err)
694 9f2369b0 2018-12-24 stsp return err;
695 9f2369b0 2018-12-24 stsp
696 9f2369b0 2018-12-24 stsp return got_privsep_recv_tree(tree, ibuf);
697 9f2369b0 2018-12-24 stsp }
698 9f2369b0 2018-12-24 stsp
699 9f2369b0 2018-12-24 stsp const struct got_error *
700 9f2369b0 2018-12-24 stsp read_tree_privsep(struct got_tree_object **tree, int obj_fd,
701 9f2369b0 2018-12-24 stsp struct got_repository *repo)
702 9f2369b0 2018-12-24 stsp {
703 9f2369b0 2018-12-24 stsp int imsg_fds[2];
704 9f2369b0 2018-12-24 stsp pid_t pid;
705 9f2369b0 2018-12-24 stsp struct imsgbuf *ibuf;
706 9f2369b0 2018-12-24 stsp
707 9f2369b0 2018-12-24 stsp if (repo->privsep_children[GOT_REPO_PRIVSEP_CHILD_TREE].imsg_fd != -1)
708 9f2369b0 2018-12-24 stsp return request_tree(tree, repo, obj_fd);
709 9f2369b0 2018-12-24 stsp
710 9f2369b0 2018-12-24 stsp ibuf = calloc(1, sizeof(*ibuf));
711 9f2369b0 2018-12-24 stsp if (ibuf == NULL)
712 9f2369b0 2018-12-24 stsp return got_error_from_errno();
713 9f2369b0 2018-12-24 stsp
714 9f2369b0 2018-12-24 stsp if (socketpair(AF_UNIX, SOCK_STREAM, PF_UNSPEC, imsg_fds) == -1)
715 9f2369b0 2018-12-24 stsp return got_error_from_errno();
716 9f2369b0 2018-12-24 stsp
717 9f2369b0 2018-12-24 stsp pid = fork();
718 9f2369b0 2018-12-24 stsp if (pid == -1)
719 9f2369b0 2018-12-24 stsp return got_error_from_errno();
720 9f2369b0 2018-12-24 stsp else if (pid == 0) {
721 9f2369b0 2018-12-24 stsp exec_privsep_child(imsg_fds, GOT_PATH_PROG_READ_TREE,
722 9f2369b0 2018-12-24 stsp repo->path);
723 9f2369b0 2018-12-24 stsp /* not reached */
724 9f2369b0 2018-12-24 stsp }
725 9f2369b0 2018-12-24 stsp
726 9f2369b0 2018-12-24 stsp close(imsg_fds[1]);
727 9f2369b0 2018-12-24 stsp
728 9f2369b0 2018-12-24 stsp repo->privsep_children[GOT_REPO_PRIVSEP_CHILD_TREE].imsg_fd =
729 9f2369b0 2018-12-24 stsp imsg_fds[0];
730 9f2369b0 2018-12-24 stsp repo->privsep_children[GOT_REPO_PRIVSEP_CHILD_TREE].pid = pid;
731 9f2369b0 2018-12-24 stsp imsg_init(ibuf, imsg_fds[0]);
732 9f2369b0 2018-12-24 stsp repo->privsep_children[GOT_REPO_PRIVSEP_CHILD_TREE].ibuf = ibuf;
733 9f2369b0 2018-12-24 stsp
734 9f2369b0 2018-12-24 stsp
735 9f2369b0 2018-12-24 stsp return request_tree(tree, repo, obj_fd);
736 9f2369b0 2018-12-24 stsp }
737 9f2369b0 2018-12-24 stsp
738 9f2369b0 2018-12-24 stsp static const struct got_error *
739 13c729f7 2018-12-24 stsp open_tree(struct got_tree_object **tree, struct got_repository *repo,
740 13c729f7 2018-12-24 stsp struct got_object_id *id, int check_cache)
741 0ffeb3c2 2017-11-26 stsp {
742 0ffeb3c2 2017-11-26 stsp const struct got_error *err = NULL;
743 13c729f7 2018-12-24 stsp struct got_packidx *packidx = NULL;
744 13c729f7 2018-12-24 stsp int idx;
745 13c729f7 2018-12-24 stsp char *path_packfile;
746 f6be5c30 2018-06-22 stsp
747 71eb0e7f 2018-09-16 stsp if (check_cache) {
748 13c729f7 2018-12-24 stsp *tree = got_repo_get_cached_tree(repo, id);
749 71eb0e7f 2018-09-16 stsp if (*tree != NULL) {
750 71eb0e7f 2018-09-16 stsp (*tree)->refcnt++;
751 71eb0e7f 2018-09-16 stsp return NULL;
752 71eb0e7f 2018-09-16 stsp }
753 71eb0e7f 2018-09-16 stsp } else
754 71eb0e7f 2018-09-16 stsp *tree = NULL;
755 0ffeb3c2 2017-11-26 stsp
756 13c729f7 2018-12-24 stsp err = got_repo_search_packidx(&packidx, &idx, repo, id);
757 13c729f7 2018-12-24 stsp if (err == NULL) {
758 13c729f7 2018-12-24 stsp struct got_pack *pack = NULL;
759 0ffeb3c2 2017-11-26 stsp
760 13c729f7 2018-12-24 stsp err = get_packfile_path(&path_packfile, packidx);
761 13c729f7 2018-12-24 stsp if (err)
762 13c729f7 2018-12-24 stsp return err;
763 13c729f7 2018-12-24 stsp
764 13c729f7 2018-12-24 stsp pack = got_repo_get_cached_pack(repo, path_packfile);
765 e7885405 2018-09-10 stsp if (pack == NULL) {
766 13c729f7 2018-12-24 stsp err = got_repo_cache_pack(&pack, repo, path_packfile,
767 13c729f7 2018-12-24 stsp packidx);
768 e7885405 2018-09-10 stsp if (err)
769 e7885405 2018-09-10 stsp return err;
770 e7885405 2018-09-10 stsp }
771 13c729f7 2018-12-24 stsp err = read_packed_tree_privsep(tree, pack,
772 13c729f7 2018-12-24 stsp packidx, idx, id);
773 13c729f7 2018-12-24 stsp } else if (err->code == GOT_ERR_NO_OBJ) {
774 d5003b79 2018-04-22 stsp int fd;
775 13c729f7 2018-12-24 stsp
776 13c729f7 2018-12-24 stsp err = open_loose_object(&fd, id, repo);
777 e0ab43e7 2018-03-16 stsp if (err)
778 e0ab43e7 2018-03-16 stsp return err;
779 9f2369b0 2018-12-24 stsp err = read_tree_privsep(tree, fd, repo);
780 d5003b79 2018-04-22 stsp close(fd);
781 776d4d29 2018-06-17 stsp }
782 f6be5c30 2018-06-22 stsp
783 f6be5c30 2018-06-22 stsp if (err == NULL) {
784 f6be5c30 2018-06-22 stsp (*tree)->refcnt++;
785 13c729f7 2018-12-24 stsp err = got_repo_cache_tree(repo, id, *tree);
786 f6be5c30 2018-06-22 stsp }
787 f6be5c30 2018-06-22 stsp
788 776d4d29 2018-06-17 stsp return err;
789 776d4d29 2018-06-17 stsp }
790 776d4d29 2018-06-17 stsp
791 776d4d29 2018-06-17 stsp const struct got_error *
792 776d4d29 2018-06-17 stsp got_object_open_as_tree(struct got_tree_object **tree,
793 776d4d29 2018-06-17 stsp struct got_repository *repo, struct got_object_id *id)
794 776d4d29 2018-06-17 stsp {
795 e8eb494a 2018-09-16 stsp *tree = got_repo_get_cached_tree(repo, id);
796 e8eb494a 2018-09-16 stsp if (*tree != NULL) {
797 e8eb494a 2018-09-16 stsp (*tree)->refcnt++;
798 e8eb494a 2018-09-16 stsp return NULL;
799 e0ab43e7 2018-03-16 stsp }
800 776d4d29 2018-06-17 stsp
801 13c729f7 2018-12-24 stsp return open_tree(tree, repo, id, 0);
802 57efb1af 2018-04-24 stsp }
803 ff6b18f8 2018-04-24 stsp
804 71eb0e7f 2018-09-16 stsp const struct got_error *
805 71eb0e7f 2018-09-16 stsp got_object_tree_open(struct got_tree_object **tree,
806 71eb0e7f 2018-09-16 stsp struct got_repository *repo, struct got_object *obj)
807 71eb0e7f 2018-09-16 stsp {
808 13c729f7 2018-12-24 stsp return open_tree(tree, repo, got_object_get_id(obj), 1);
809 71eb0e7f 2018-09-16 stsp }
810 71eb0e7f 2018-09-16 stsp
811 883f0469 2018-06-23 stsp const struct got_tree_entries *
812 883f0469 2018-06-23 stsp got_object_tree_get_entries(struct got_tree_object *tree)
813 883f0469 2018-06-23 stsp {
814 883f0469 2018-06-23 stsp return &tree->entries;
815 883f0469 2018-06-23 stsp }
816 3840f4c9 2018-09-12 stsp
817 3840f4c9 2018-09-12 stsp static const struct got_error *
818 ac544f8c 2019-01-13 stsp request_packed_blob(uint8_t **outbuf, size_t *size, size_t *hdrlen, int outfd,
819 ebc55e2d 2018-12-24 stsp struct got_pack *pack, struct got_packidx *packidx, int idx,
820 ebc55e2d 2018-12-24 stsp struct got_object_id *id)
821 3840f4c9 2018-09-12 stsp {
822 3840f4c9 2018-09-12 stsp const struct got_error *err = NULL;
823 3840f4c9 2018-09-12 stsp int outfd_child;
824 3840f4c9 2018-09-12 stsp int basefd, accumfd; /* temporary files for delta application */
825 24140570 2018-09-09 stsp
826 3840f4c9 2018-09-12 stsp basefd = got_opentempfd();
827 3840f4c9 2018-09-12 stsp if (basefd == -1)
828 3840f4c9 2018-09-12 stsp return got_error_from_errno();
829 3840f4c9 2018-09-12 stsp accumfd = got_opentempfd();
830 3840f4c9 2018-09-12 stsp if (accumfd == -1)
831 3840f4c9 2018-09-12 stsp return got_error_from_errno();
832 3840f4c9 2018-09-12 stsp
833 3840f4c9 2018-09-12 stsp outfd_child = dup(outfd);
834 3840f4c9 2018-09-12 stsp if (outfd_child == -1)
835 3840f4c9 2018-09-12 stsp return got_error_from_errno();
836 3840f4c9 2018-09-12 stsp
837 ebc55e2d 2018-12-24 stsp err = got_privsep_send_blob_req(pack->privsep_child->ibuf, -1, id, idx);
838 3840f4c9 2018-09-12 stsp if (err)
839 3840f4c9 2018-09-12 stsp return err;
840 3840f4c9 2018-09-12 stsp
841 3840f4c9 2018-09-12 stsp err = got_privsep_send_blob_outfd(pack->privsep_child->ibuf,
842 3840f4c9 2018-09-12 stsp outfd_child);
843 3840f4c9 2018-09-12 stsp if (err) {
844 3840f4c9 2018-09-12 stsp close(outfd_child);
845 3840f4c9 2018-09-12 stsp return err;
846 3840f4c9 2018-09-12 stsp }
847 3840f4c9 2018-09-12 stsp err = got_privsep_send_tmpfd(pack->privsep_child->ibuf,
848 3840f4c9 2018-09-12 stsp basefd);
849 3840f4c9 2018-09-12 stsp if (err) {
850 3840f4c9 2018-09-12 stsp close(basefd);
851 3840f4c9 2018-09-12 stsp close(accumfd);
852 3840f4c9 2018-09-12 stsp close(outfd_child);
853 3840f4c9 2018-09-12 stsp return err;
854 3840f4c9 2018-09-12 stsp }
855 3840f4c9 2018-09-12 stsp
856 3840f4c9 2018-09-12 stsp err = got_privsep_send_tmpfd(pack->privsep_child->ibuf,
857 3840f4c9 2018-09-12 stsp accumfd);
858 3840f4c9 2018-09-12 stsp if (err) {
859 3840f4c9 2018-09-12 stsp close(accumfd);
860 3840f4c9 2018-09-12 stsp close(outfd_child);
861 3840f4c9 2018-09-12 stsp return err;
862 3840f4c9 2018-09-12 stsp }
863 3840f4c9 2018-09-12 stsp
864 ac544f8c 2019-01-13 stsp err = got_privsep_recv_blob(outbuf, size, hdrlen,
865 ebc55e2d 2018-12-24 stsp pack->privsep_child->ibuf);
866 3840f4c9 2018-09-12 stsp if (err)
867 3840f4c9 2018-09-12 stsp return err;
868 3840f4c9 2018-09-12 stsp
869 3840f4c9 2018-09-12 stsp if (lseek(outfd, SEEK_SET, 0) == -1)
870 3840f4c9 2018-09-12 stsp err = got_error_from_errno();
871 3840f4c9 2018-09-12 stsp
872 3840f4c9 2018-09-12 stsp return err;
873 3840f4c9 2018-09-12 stsp }
874 3840f4c9 2018-09-12 stsp
875 ebc55e2d 2018-12-24 stsp static const struct got_error *
876 ac544f8c 2019-01-13 stsp read_packed_blob_privsep(uint8_t **outbuf, size_t *size, size_t *hdrlen,
877 ac544f8c 2019-01-13 stsp int outfd, struct got_pack *pack, struct got_packidx *packidx, int idx,
878 ebc55e2d 2018-12-24 stsp struct got_object_id *id)
879 68482ea3 2017-11-27 stsp {
880 68482ea3 2017-11-27 stsp const struct got_error *err = NULL;
881 ebc55e2d 2018-12-24 stsp
882 ebc55e2d 2018-12-24 stsp if (pack->privsep_child == NULL) {
883 ebc55e2d 2018-12-24 stsp err = start_pack_privsep_child(pack, packidx);
884 ebc55e2d 2018-12-24 stsp if (err)
885 ebc55e2d 2018-12-24 stsp return err;
886 ebc55e2d 2018-12-24 stsp }
887 68482ea3 2017-11-27 stsp
888 ac544f8c 2019-01-13 stsp return request_packed_blob(outbuf, size, hdrlen, outfd, pack, packidx,
889 ac544f8c 2019-01-13 stsp idx, id);
890 9f2369b0 2018-12-24 stsp }
891 9f2369b0 2018-12-24 stsp
892 9f2369b0 2018-12-24 stsp static const struct got_error *
893 ac544f8c 2019-01-13 stsp request_blob(uint8_t **outbuf, size_t *size, size_t *hdrlen, int outfd,
894 ac544f8c 2019-01-13 stsp int infd, struct imsgbuf *ibuf)
895 9f2369b0 2018-12-24 stsp {
896 9f2369b0 2018-12-24 stsp const struct got_error *err = NULL;
897 9f2369b0 2018-12-24 stsp int outfd_child;
898 9f2369b0 2018-12-24 stsp
899 9f2369b0 2018-12-24 stsp outfd_child = dup(outfd);
900 9f2369b0 2018-12-24 stsp if (outfd_child == -1)
901 9f2369b0 2018-12-24 stsp return got_error_from_errno();
902 9f2369b0 2018-12-24 stsp
903 9f2369b0 2018-12-24 stsp err = got_privsep_send_blob_req(ibuf, infd, NULL, -1);
904 9f2369b0 2018-12-24 stsp if (err)
905 9f2369b0 2018-12-24 stsp return err;
906 9f2369b0 2018-12-24 stsp
907 9f2369b0 2018-12-24 stsp err = got_privsep_send_blob_outfd(ibuf, outfd_child);
908 9f2369b0 2018-12-24 stsp if (err) {
909 9f2369b0 2018-12-24 stsp close(outfd_child);
910 9f2369b0 2018-12-24 stsp return err;
911 9f2369b0 2018-12-24 stsp }
912 9f2369b0 2018-12-24 stsp
913 ac544f8c 2019-01-13 stsp err = got_privsep_recv_blob(outbuf, size, hdrlen, ibuf);
914 9f2369b0 2018-12-24 stsp if (err)
915 9f2369b0 2018-12-24 stsp return err;
916 9f2369b0 2018-12-24 stsp
917 9f2369b0 2018-12-24 stsp if (lseek(outfd, SEEK_SET, 0) == -1)
918 9f2369b0 2018-12-24 stsp return got_error_from_errno();
919 9f2369b0 2018-12-24 stsp
920 9f2369b0 2018-12-24 stsp return err;
921 9f2369b0 2018-12-24 stsp }
922 9f2369b0 2018-12-24 stsp
923 9f2369b0 2018-12-24 stsp static const struct got_error *
924 ac544f8c 2019-01-13 stsp read_blob_privsep(uint8_t **outbuf, size_t *size, size_t *hdrlen,
925 9f2369b0 2018-12-24 stsp int outfd, int infd, struct got_repository *repo)
926 9f2369b0 2018-12-24 stsp {
927 9f2369b0 2018-12-24 stsp int imsg_fds[2];
928 9f2369b0 2018-12-24 stsp pid_t pid;
929 9f2369b0 2018-12-24 stsp struct imsgbuf *ibuf;
930 9f2369b0 2018-12-24 stsp
931 9f2369b0 2018-12-24 stsp if (repo->privsep_children[GOT_REPO_PRIVSEP_CHILD_BLOB].imsg_fd != -1) {
932 9f2369b0 2018-12-24 stsp ibuf = repo->privsep_children[GOT_REPO_PRIVSEP_CHILD_BLOB].ibuf;
933 ac544f8c 2019-01-13 stsp return request_blob(outbuf, size, hdrlen, outfd, infd, ibuf);
934 9f2369b0 2018-12-24 stsp }
935 9f2369b0 2018-12-24 stsp
936 9f2369b0 2018-12-24 stsp ibuf = calloc(1, sizeof(*ibuf));
937 9f2369b0 2018-12-24 stsp if (ibuf == NULL)
938 9f2369b0 2018-12-24 stsp return got_error_from_errno();
939 9f2369b0 2018-12-24 stsp
940 9f2369b0 2018-12-24 stsp if (socketpair(AF_UNIX, SOCK_STREAM, PF_UNSPEC, imsg_fds) == -1)
941 9f2369b0 2018-12-24 stsp return got_error_from_errno();
942 9f2369b0 2018-12-24 stsp
943 9f2369b0 2018-12-24 stsp pid = fork();
944 9f2369b0 2018-12-24 stsp if (pid == -1)
945 9f2369b0 2018-12-24 stsp return got_error_from_errno();
946 9f2369b0 2018-12-24 stsp else if (pid == 0) {
947 9f2369b0 2018-12-24 stsp exec_privsep_child(imsg_fds, GOT_PATH_PROG_READ_BLOB,
948 9f2369b0 2018-12-24 stsp repo->path);
949 9f2369b0 2018-12-24 stsp /* not reached */
950 9f2369b0 2018-12-24 stsp }
951 9f2369b0 2018-12-24 stsp
952 9f2369b0 2018-12-24 stsp close(imsg_fds[1]);
953 9f2369b0 2018-12-24 stsp repo->privsep_children[GOT_REPO_PRIVSEP_CHILD_BLOB].imsg_fd =
954 9f2369b0 2018-12-24 stsp imsg_fds[0];
955 9f2369b0 2018-12-24 stsp repo->privsep_children[GOT_REPO_PRIVSEP_CHILD_BLOB].pid = pid;
956 9f2369b0 2018-12-24 stsp imsg_init(ibuf, imsg_fds[0]);
957 9f2369b0 2018-12-24 stsp repo->privsep_children[GOT_REPO_PRIVSEP_CHILD_BLOB].ibuf = ibuf;
958 9f2369b0 2018-12-24 stsp
959 ac544f8c 2019-01-13 stsp return request_blob(outbuf, size, hdrlen, outfd, infd, ibuf);
960 ebc55e2d 2018-12-24 stsp }
961 68482ea3 2017-11-27 stsp
962 ebc55e2d 2018-12-24 stsp static const struct got_error *
963 ebc55e2d 2018-12-24 stsp open_blob(struct got_blob_object **blob, struct got_repository *repo,
964 ebc55e2d 2018-12-24 stsp struct got_object_id *id, size_t blocksize)
965 ebc55e2d 2018-12-24 stsp {
966 ebc55e2d 2018-12-24 stsp const struct got_error *err = NULL;
967 ebc55e2d 2018-12-24 stsp struct got_packidx *packidx = NULL;
968 ebc55e2d 2018-12-24 stsp int idx;
969 ebc55e2d 2018-12-24 stsp char *path_packfile;
970 ac544f8c 2019-01-13 stsp uint8_t *outbuf;
971 ebc55e2d 2018-12-24 stsp int outfd;
972 ebc55e2d 2018-12-24 stsp size_t size, hdrlen;
973 ebc55e2d 2018-12-24 stsp struct stat sb;
974 ebc55e2d 2018-12-24 stsp
975 68482ea3 2017-11-27 stsp *blob = calloc(1, sizeof(**blob));
976 4558fcd4 2018-01-14 stsp if (*blob == NULL)
977 0a585a0d 2018-03-17 stsp return got_error_from_errno();
978 68482ea3 2017-11-27 stsp
979 55da3778 2018-09-10 stsp outfd = got_opentempfd();
980 55da3778 2018-09-10 stsp if (outfd == -1)
981 55da3778 2018-09-10 stsp return got_error_from_errno();
982 55da3778 2018-09-10 stsp
983 062ebb78 2018-07-12 stsp (*blob)->read_buf = malloc(blocksize);
984 15c8b0e6 2018-04-24 stsp if ((*blob)->read_buf == NULL) {
985 15c8b0e6 2018-04-24 stsp err = got_error_from_errno();
986 c7254d79 2018-04-24 stsp goto done;
987 15c8b0e6 2018-04-24 stsp }
988 ebc55e2d 2018-12-24 stsp
989 ebc55e2d 2018-12-24 stsp err = got_repo_search_packidx(&packidx, &idx, repo, id);
990 ebc55e2d 2018-12-24 stsp if (err == NULL) {
991 ebc55e2d 2018-12-24 stsp struct got_pack *pack = NULL;
992 ebc55e2d 2018-12-24 stsp
993 ebc55e2d 2018-12-24 stsp err = get_packfile_path(&path_packfile, packidx);
994 ebc55e2d 2018-12-24 stsp if (err)
995 ebc55e2d 2018-12-24 stsp goto done;
996 ebc55e2d 2018-12-24 stsp
997 ebc55e2d 2018-12-24 stsp pack = got_repo_get_cached_pack(repo, path_packfile);
998 55da3778 2018-09-10 stsp if (pack == NULL) {
999 ebc55e2d 2018-12-24 stsp err = got_repo_cache_pack(&pack, repo, path_packfile,
1000 ebc55e2d 2018-12-24 stsp packidx);
1001 55da3778 2018-09-10 stsp if (err)
1002 55da3778 2018-09-10 stsp goto done;
1003 55da3778 2018-09-10 stsp }
1004 ac544f8c 2019-01-13 stsp err = read_packed_blob_privsep(&outbuf, &size, &hdrlen, outfd,
1005 ac544f8c 2019-01-13 stsp pack, packidx, idx, id);
1006 ebc55e2d 2018-12-24 stsp } else if (err->code == GOT_ERR_NO_OBJ) {
1007 55da3778 2018-09-10 stsp int infd;
1008 c7254d79 2018-04-24 stsp
1009 ebc55e2d 2018-12-24 stsp err = open_loose_object(&infd, id, repo);
1010 57efb1af 2018-04-24 stsp if (err)
1011 c7254d79 2018-04-24 stsp goto done;
1012 ac544f8c 2019-01-13 stsp err = read_blob_privsep(&outbuf, &size, &hdrlen, outfd, infd,
1013 ac544f8c 2019-01-13 stsp repo);
1014 ebc55e2d 2018-12-24 stsp close(infd);
1015 55da3778 2018-09-10 stsp }
1016 ebc55e2d 2018-12-24 stsp if (err)
1017 55da3778 2018-09-10 stsp goto done;
1018 2967a784 2018-04-24 stsp
1019 de060dff 2018-12-24 stsp if (hdrlen > size) {
1020 ebc55e2d 2018-12-24 stsp err = got_error(GOT_ERR_BAD_OBJ_HDR);
1021 ebc55e2d 2018-12-24 stsp goto done;
1022 ebc55e2d 2018-12-24 stsp }
1023 ebc55e2d 2018-12-24 stsp
1024 ac544f8c 2019-01-13 stsp if (outbuf) {
1025 55da3778 2018-09-10 stsp close(outfd);
1026 ac544f8c 2019-01-13 stsp outfd = -1;
1027 ac544f8c 2019-01-13 stsp (*blob)->f = fmemopen(outbuf, size, "rb");
1028 ac544f8c 2019-01-13 stsp if ((*blob)->f == NULL) {
1029 ac544f8c 2019-01-13 stsp err = got_error_from_errno();
1030 ac544f8c 2019-01-13 stsp free(outbuf);
1031 ac544f8c 2019-01-13 stsp goto done;
1032 ac544f8c 2019-01-13 stsp }
1033 ac544f8c 2019-01-13 stsp (*blob)->data = outbuf;
1034 ac544f8c 2019-01-13 stsp } else {
1035 ac544f8c 2019-01-13 stsp if (fstat(outfd, &sb) == -1) {
1036 ac544f8c 2019-01-13 stsp err = got_error_from_errno();
1037 ac544f8c 2019-01-13 stsp goto done;
1038 ac544f8c 2019-01-13 stsp }
1039 ac544f8c 2019-01-13 stsp
1040 ac544f8c 2019-01-13 stsp if (sb.st_size != size) {
1041 ac544f8c 2019-01-13 stsp err = got_error(GOT_ERR_PRIVSEP_LEN);
1042 ac544f8c 2019-01-13 stsp goto done;
1043 ac544f8c 2019-01-13 stsp }
1044 ac544f8c 2019-01-13 stsp
1045 ac544f8c 2019-01-13 stsp (*blob)->f = fdopen(outfd, "rb");
1046 ac544f8c 2019-01-13 stsp if ((*blob)->f == NULL) {
1047 ac544f8c 2019-01-13 stsp err = got_error_from_errno();
1048 ac544f8c 2019-01-13 stsp close(outfd);
1049 ac544f8c 2019-01-13 stsp outfd = -1;
1050 ac544f8c 2019-01-13 stsp goto done;
1051 ac544f8c 2019-01-13 stsp }
1052 68482ea3 2017-11-27 stsp }
1053 68482ea3 2017-11-27 stsp
1054 ebc55e2d 2018-12-24 stsp (*blob)->hdrlen = hdrlen;
1055 eb651edf 2018-02-11 stsp (*blob)->blocksize = blocksize;
1056 ebc55e2d 2018-12-24 stsp memcpy(&(*blob)->id.sha1, id->sha1, SHA1_DIGEST_LENGTH);
1057 7d283eee 2017-11-29 stsp
1058 c7254d79 2018-04-24 stsp done:
1059 55da3778 2018-09-10 stsp if (err) {
1060 55da3778 2018-09-10 stsp if (*blob) {
1061 55da3778 2018-09-10 stsp if ((*blob)->f)
1062 55da3778 2018-09-10 stsp fclose((*blob)->f);
1063 55da3778 2018-09-10 stsp free((*blob)->read_buf);
1064 ac544f8c 2019-01-13 stsp free((*blob)->data);
1065 55da3778 2018-09-10 stsp free(*blob);
1066 55da3778 2018-09-10 stsp *blob = NULL;
1067 55da3778 2018-09-10 stsp } else if (outfd != -1)
1068 55da3778 2018-09-10 stsp close(outfd);
1069 a19581a2 2018-06-21 stsp }
1070 a19581a2 2018-06-21 stsp return err;
1071 a19581a2 2018-06-21 stsp }
1072 a19581a2 2018-06-21 stsp
1073 a19581a2 2018-06-21 stsp const struct got_error *
1074 a19581a2 2018-06-21 stsp got_object_open_as_blob(struct got_blob_object **blob,
1075 a19581a2 2018-06-21 stsp struct got_repository *repo, struct got_object_id *id,
1076 a19581a2 2018-06-21 stsp size_t blocksize)
1077 a19581a2 2018-06-21 stsp {
1078 ebc55e2d 2018-12-24 stsp return open_blob(blob, repo, id, blocksize);
1079 ebc55e2d 2018-12-24 stsp }
1080 835e0dbd 2018-06-21 stsp
1081 ebc55e2d 2018-12-24 stsp const struct got_error *
1082 ebc55e2d 2018-12-24 stsp got_object_blob_open(struct got_blob_object **blob,
1083 ebc55e2d 2018-12-24 stsp struct got_repository *repo, struct got_object *obj, size_t blocksize)
1084 ebc55e2d 2018-12-24 stsp {
1085 ebc55e2d 2018-12-24 stsp return open_blob(blob, repo, got_object_get_id(obj), blocksize);
1086 0ffeb3c2 2017-11-26 stsp }
1087 68482ea3 2017-11-27 stsp
1088 68482ea3 2017-11-27 stsp void
1089 68482ea3 2017-11-27 stsp got_object_blob_close(struct got_blob_object *blob)
1090 68482ea3 2017-11-27 stsp {
1091 15c8b0e6 2018-04-24 stsp free(blob->read_buf);
1092 68482ea3 2017-11-27 stsp fclose(blob->f);
1093 ac544f8c 2019-01-13 stsp free(blob->data);
1094 68482ea3 2017-11-27 stsp free(blob);
1095 f934cf2c 2018-02-12 stsp }
1096 f934cf2c 2018-02-12 stsp
1097 f934cf2c 2018-02-12 stsp char *
1098 f934cf2c 2018-02-12 stsp got_object_blob_id_str(struct got_blob_object *blob, char *buf, size_t size)
1099 f934cf2c 2018-02-12 stsp {
1100 f934cf2c 2018-02-12 stsp return got_sha1_digest_to_str(blob->id.sha1, buf, size);
1101 f934cf2c 2018-02-12 stsp }
1102 f934cf2c 2018-02-12 stsp
1103 f934cf2c 2018-02-12 stsp size_t
1104 f934cf2c 2018-02-12 stsp got_object_blob_get_hdrlen(struct got_blob_object *blob)
1105 f934cf2c 2018-02-12 stsp {
1106 f934cf2c 2018-02-12 stsp return blob->hdrlen;
1107 68482ea3 2017-11-27 stsp }
1108 68482ea3 2017-11-27 stsp
1109 f934cf2c 2018-02-12 stsp const uint8_t *
1110 f934cf2c 2018-02-12 stsp got_object_blob_get_read_buf(struct got_blob_object *blob)
1111 f934cf2c 2018-02-12 stsp {
1112 f934cf2c 2018-02-12 stsp return blob->read_buf;
1113 f934cf2c 2018-02-12 stsp }
1114 f934cf2c 2018-02-12 stsp
1115 68482ea3 2017-11-27 stsp const struct got_error *
1116 eb651edf 2018-02-11 stsp got_object_blob_read_block(size_t *outlenp, struct got_blob_object *blob)
1117 68482ea3 2017-11-27 stsp {
1118 eb651edf 2018-02-11 stsp size_t n;
1119 eb651edf 2018-02-11 stsp
1120 eb651edf 2018-02-11 stsp n = fread(blob->read_buf, 1, blob->blocksize, blob->f);
1121 eb651edf 2018-02-11 stsp if (n == 0 && ferror(blob->f))
1122 eb651edf 2018-02-11 stsp return got_ferror(blob->f, GOT_ERR_IO);
1123 eb651edf 2018-02-11 stsp *outlenp = n;
1124 35e9ba5d 2018-06-21 stsp return NULL;
1125 35e9ba5d 2018-06-21 stsp }
1126 35e9ba5d 2018-06-21 stsp
1127 35e9ba5d 2018-06-21 stsp const struct got_error *
1128 6fcac457 2018-11-19 stsp got_object_blob_dump_to_file(size_t *total_len, int *nlines,
1129 84451b3e 2018-07-10 stsp FILE *outfile, struct got_blob_object *blob)
1130 35e9ba5d 2018-06-21 stsp {
1131 35e9ba5d 2018-06-21 stsp const struct got_error *err = NULL;
1132 b6752625 2018-12-24 stsp size_t n, len, hdrlen;
1133 84451b3e 2018-07-10 stsp const uint8_t *buf;
1134 84451b3e 2018-07-10 stsp int i;
1135 84451b3e 2018-07-10 stsp
1136 84451b3e 2018-07-10 stsp if (total_len)
1137 84451b3e 2018-07-10 stsp *total_len = 0;
1138 84451b3e 2018-07-10 stsp if (nlines)
1139 84451b3e 2018-07-10 stsp *nlines = 0;
1140 35e9ba5d 2018-06-21 stsp
1141 35e9ba5d 2018-06-21 stsp hdrlen = got_object_blob_get_hdrlen(blob);
1142 35e9ba5d 2018-06-21 stsp do {
1143 35e9ba5d 2018-06-21 stsp err = got_object_blob_read_block(&len, blob);
1144 35e9ba5d 2018-06-21 stsp if (err)
1145 35e9ba5d 2018-06-21 stsp return err;
1146 35e9ba5d 2018-06-21 stsp if (len == 0)
1147 35e9ba5d 2018-06-21 stsp break;
1148 84451b3e 2018-07-10 stsp if (total_len)
1149 84451b3e 2018-07-10 stsp *total_len += len;
1150 84451b3e 2018-07-10 stsp buf = got_object_blob_get_read_buf(blob);
1151 84451b3e 2018-07-10 stsp if (nlines) {
1152 84451b3e 2018-07-10 stsp for (i = 0; i < len; i++) {
1153 84451b3e 2018-07-10 stsp if (buf[i] == '\n')
1154 84451b3e 2018-07-10 stsp (*nlines)++;
1155 84451b3e 2018-07-10 stsp }
1156 84451b3e 2018-07-10 stsp }
1157 35e9ba5d 2018-06-21 stsp /* Skip blob object header first time around. */
1158 454a6b59 2018-12-24 stsp n = fwrite(buf + hdrlen, 1, len - hdrlen, outfile);
1159 b6752625 2018-12-24 stsp if (n != len - hdrlen)
1160 b6752625 2018-12-24 stsp return got_ferror(outfile, GOT_ERR_IO);
1161 35e9ba5d 2018-06-21 stsp hdrlen = 0;
1162 35e9ba5d 2018-06-21 stsp } while (len != 0);
1163 35e9ba5d 2018-06-21 stsp
1164 35e9ba5d 2018-06-21 stsp fflush(outfile);
1165 35e9ba5d 2018-06-21 stsp rewind(outfile);
1166 35e9ba5d 2018-06-21 stsp
1167 776d4d29 2018-06-17 stsp return NULL;
1168 f4a881ce 2018-11-17 stsp }
1169 f4a881ce 2018-11-17 stsp
1170 f4a881ce 2018-11-17 stsp static const struct got_error *
1171 268f7291 2018-12-24 stsp request_packed_tag(struct got_tag_object **tag, struct got_pack *pack,
1172 268f7291 2018-12-24 stsp int pack_idx, struct got_object_id *id)
1173 a158c901 2018-12-23 stsp {
1174 a158c901 2018-12-23 stsp const struct got_error *err = NULL;
1175 a158c901 2018-12-23 stsp
1176 268f7291 2018-12-24 stsp err = got_privsep_send_tag_req(pack->privsep_child->ibuf, -1, id,
1177 268f7291 2018-12-24 stsp pack_idx);
1178 a158c901 2018-12-23 stsp if (err)
1179 a158c901 2018-12-23 stsp return err;
1180 a158c901 2018-12-23 stsp
1181 a158c901 2018-12-23 stsp return got_privsep_recv_tag(tag, pack->privsep_child->ibuf);
1182 268f7291 2018-12-24 stsp }
1183 268f7291 2018-12-24 stsp
1184 268f7291 2018-12-24 stsp static const struct got_error *
1185 268f7291 2018-12-24 stsp read_packed_tag_privsep(struct got_tag_object **tag,
1186 268f7291 2018-12-24 stsp struct got_pack *pack, struct got_packidx *packidx, int idx,
1187 268f7291 2018-12-24 stsp struct got_object_id *id)
1188 268f7291 2018-12-24 stsp {
1189 268f7291 2018-12-24 stsp const struct got_error *err = NULL;
1190 268f7291 2018-12-24 stsp
1191 268f7291 2018-12-24 stsp if (pack->privsep_child)
1192 268f7291 2018-12-24 stsp return request_packed_tag(tag, pack, idx, id);
1193 268f7291 2018-12-24 stsp
1194 268f7291 2018-12-24 stsp err = start_pack_privsep_child(pack, packidx);
1195 268f7291 2018-12-24 stsp if (err)
1196 268f7291 2018-12-24 stsp return err;
1197 268f7291 2018-12-24 stsp
1198 268f7291 2018-12-24 stsp return request_packed_tag(tag, pack, idx, id);
1199 a158c901 2018-12-23 stsp }
1200 9f2369b0 2018-12-24 stsp
1201 9f2369b0 2018-12-24 stsp static const struct got_error *
1202 9f2369b0 2018-12-24 stsp request_tag(struct got_tag_object **tag, struct got_repository *repo,
1203 9f2369b0 2018-12-24 stsp int fd)
1204 9f2369b0 2018-12-24 stsp {
1205 9f2369b0 2018-12-24 stsp const struct got_error *err = NULL;
1206 9f2369b0 2018-12-24 stsp struct imsgbuf *ibuf;
1207 9f2369b0 2018-12-24 stsp
1208 9f2369b0 2018-12-24 stsp ibuf = repo->privsep_children[GOT_REPO_PRIVSEP_CHILD_TAG].ibuf;
1209 9f2369b0 2018-12-24 stsp
1210 9f2369b0 2018-12-24 stsp err = got_privsep_send_tag_req(ibuf, fd, NULL, -1);
1211 9f2369b0 2018-12-24 stsp if (err)
1212 9f2369b0 2018-12-24 stsp return err;
1213 9f2369b0 2018-12-24 stsp
1214 9f2369b0 2018-12-24 stsp return got_privsep_recv_tag(tag, ibuf);
1215 9f2369b0 2018-12-24 stsp }
1216 9f2369b0 2018-12-24 stsp
1217 9f2369b0 2018-12-24 stsp static const struct got_error *
1218 9f2369b0 2018-12-24 stsp read_tag_privsep(struct got_tag_object **tag, int obj_fd,
1219 9f2369b0 2018-12-24 stsp struct got_repository *repo)
1220 9f2369b0 2018-12-24 stsp {
1221 9f2369b0 2018-12-24 stsp int imsg_fds[2];
1222 9f2369b0 2018-12-24 stsp pid_t pid;
1223 9f2369b0 2018-12-24 stsp struct imsgbuf *ibuf;
1224 9f2369b0 2018-12-24 stsp
1225 9f2369b0 2018-12-24 stsp if (repo->privsep_children[GOT_REPO_PRIVSEP_CHILD_TAG].imsg_fd != -1)
1226 9f2369b0 2018-12-24 stsp return request_tag(tag, repo, obj_fd);
1227 9f2369b0 2018-12-24 stsp
1228 9f2369b0 2018-12-24 stsp ibuf = calloc(1, sizeof(*ibuf));
1229 9f2369b0 2018-12-24 stsp if (ibuf == NULL)
1230 9f2369b0 2018-12-24 stsp return got_error_from_errno();
1231 9f2369b0 2018-12-24 stsp
1232 9f2369b0 2018-12-24 stsp if (socketpair(AF_UNIX, SOCK_STREAM, PF_UNSPEC, imsg_fds) == -1)
1233 9f2369b0 2018-12-24 stsp return got_error_from_errno();
1234 9f2369b0 2018-12-24 stsp
1235 9f2369b0 2018-12-24 stsp pid = fork();
1236 9f2369b0 2018-12-24 stsp if (pid == -1)
1237 9f2369b0 2018-12-24 stsp return got_error_from_errno();
1238 9f2369b0 2018-12-24 stsp else if (pid == 0) {
1239 9f2369b0 2018-12-24 stsp exec_privsep_child(imsg_fds, GOT_PATH_PROG_READ_TAG,
1240 9f2369b0 2018-12-24 stsp repo->path);
1241 9f2369b0 2018-12-24 stsp /* not reached */
1242 9f2369b0 2018-12-24 stsp }
1243 9f2369b0 2018-12-24 stsp
1244 9f2369b0 2018-12-24 stsp close(imsg_fds[1]);
1245 9f2369b0 2018-12-24 stsp repo->privsep_children[GOT_REPO_PRIVSEP_CHILD_TAG].imsg_fd =
1246 9f2369b0 2018-12-24 stsp imsg_fds[0];
1247 9f2369b0 2018-12-24 stsp repo->privsep_children[GOT_REPO_PRIVSEP_CHILD_TAG].pid = pid;
1248 9f2369b0 2018-12-24 stsp imsg_init(ibuf, imsg_fds[0]);
1249 9f2369b0 2018-12-24 stsp repo->privsep_children[GOT_REPO_PRIVSEP_CHILD_TAG].ibuf = ibuf;
1250 a158c901 2018-12-23 stsp
1251 9f2369b0 2018-12-24 stsp return request_tag(tag, repo, obj_fd);
1252 9f2369b0 2018-12-24 stsp }
1253 a158c901 2018-12-23 stsp
1254 a158c901 2018-12-23 stsp static const struct got_error *
1255 268f7291 2018-12-24 stsp open_tag(struct got_tag_object **tag, struct got_repository *repo,
1256 268f7291 2018-12-24 stsp struct got_object_id *id, int check_cache)
1257 f4a881ce 2018-11-17 stsp {
1258 f4a881ce 2018-11-17 stsp const struct got_error *err = NULL;
1259 268f7291 2018-12-24 stsp struct got_packidx *packidx = NULL;
1260 268f7291 2018-12-24 stsp int idx;
1261 268f7291 2018-12-24 stsp char *path_packfile;
1262 f4a881ce 2018-11-17 stsp
1263 f4a881ce 2018-11-17 stsp if (check_cache) {
1264 268f7291 2018-12-24 stsp *tag = got_repo_get_cached_tag(repo, id);
1265 f4a881ce 2018-11-17 stsp if (*tag != NULL) {
1266 f4a881ce 2018-11-17 stsp (*tag)->refcnt++;
1267 f4a881ce 2018-11-17 stsp return NULL;
1268 f4a881ce 2018-11-17 stsp }
1269 f4a881ce 2018-11-17 stsp } else
1270 f4a881ce 2018-11-17 stsp *tag = NULL;
1271 f4a881ce 2018-11-17 stsp
1272 268f7291 2018-12-24 stsp err = got_repo_search_packidx(&packidx, &idx, repo, id);
1273 268f7291 2018-12-24 stsp if (err == NULL) {
1274 268f7291 2018-12-24 stsp struct got_pack *pack = NULL;
1275 f4a881ce 2018-11-17 stsp
1276 268f7291 2018-12-24 stsp err = get_packfile_path(&path_packfile, packidx);
1277 268f7291 2018-12-24 stsp if (err)
1278 268f7291 2018-12-24 stsp return err;
1279 268f7291 2018-12-24 stsp
1280 268f7291 2018-12-24 stsp pack = got_repo_get_cached_pack(repo, path_packfile);
1281 f4a881ce 2018-11-17 stsp if (pack == NULL) {
1282 268f7291 2018-12-24 stsp err = got_repo_cache_pack(&pack, repo, path_packfile,
1283 268f7291 2018-12-24 stsp packidx);
1284 f4a881ce 2018-11-17 stsp if (err)
1285 f4a881ce 2018-11-17 stsp return err;
1286 f4a881ce 2018-11-17 stsp }
1287 268f7291 2018-12-24 stsp err = read_packed_tag_privsep(tag, pack,
1288 268f7291 2018-12-24 stsp packidx, idx, id);
1289 268f7291 2018-12-24 stsp } else if (err->code == GOT_ERR_NO_OBJ) {
1290 f4a881ce 2018-11-17 stsp int fd;
1291 268f7291 2018-12-24 stsp
1292 268f7291 2018-12-24 stsp err = open_loose_object(&fd, id, repo);
1293 f4a881ce 2018-11-17 stsp if (err)
1294 f4a881ce 2018-11-17 stsp return err;
1295 9f2369b0 2018-12-24 stsp err = read_tag_privsep(tag, fd, repo);
1296 f4a881ce 2018-11-17 stsp close(fd);
1297 f4a881ce 2018-11-17 stsp }
1298 f4a881ce 2018-11-17 stsp
1299 f4a881ce 2018-11-17 stsp if (err == NULL) {
1300 f4a881ce 2018-11-17 stsp (*tag)->refcnt++;
1301 268f7291 2018-12-24 stsp err = got_repo_cache_tag(repo, id, *tag);
1302 f4a881ce 2018-11-17 stsp }
1303 f4a881ce 2018-11-17 stsp
1304 f4a881ce 2018-11-17 stsp return err;
1305 f4a881ce 2018-11-17 stsp }
1306 f4a881ce 2018-11-17 stsp
1307 f4a881ce 2018-11-17 stsp const struct got_error *
1308 f4a881ce 2018-11-17 stsp got_object_open_as_tag(struct got_tag_object **tag,
1309 f4a881ce 2018-11-17 stsp struct got_repository *repo, struct got_object_id *id)
1310 f4a881ce 2018-11-17 stsp {
1311 f4a881ce 2018-11-17 stsp *tag = got_repo_get_cached_tag(repo, id);
1312 f4a881ce 2018-11-17 stsp if (*tag != NULL) {
1313 f4a881ce 2018-11-17 stsp (*tag)->refcnt++;
1314 f4a881ce 2018-11-17 stsp return NULL;
1315 f4a881ce 2018-11-17 stsp }
1316 f4a881ce 2018-11-17 stsp
1317 268f7291 2018-12-24 stsp return open_tag(tag, repo, id, 0);
1318 f4a881ce 2018-11-17 stsp }
1319 f4a881ce 2018-11-17 stsp
1320 f4a881ce 2018-11-17 stsp const struct got_error *
1321 f4a881ce 2018-11-17 stsp got_object_tag_open(struct got_tag_object **tag,
1322 f4a881ce 2018-11-17 stsp struct got_repository *repo, struct got_object *obj)
1323 f4a881ce 2018-11-17 stsp {
1324 268f7291 2018-12-24 stsp return open_tag(tag, repo, got_object_get_id(obj), 1);
1325 0bd18d37 2019-02-01 stsp }
1326 0bd18d37 2019-02-01 stsp
1327 0bd18d37 2019-02-01 stsp int
1328 0bd18d37 2019-02-01 stsp got_object_tag_get_object_type(struct got_tag_object *tag)
1329 0bd18d37 2019-02-01 stsp {
1330 0bd18d37 2019-02-01 stsp return tag->obj_type;
1331 0bd18d37 2019-02-01 stsp }
1332 0bd18d37 2019-02-01 stsp
1333 0bd18d37 2019-02-01 stsp struct got_object_id *
1334 0bd18d37 2019-02-01 stsp got_object_tag_get_object_id(struct got_tag_object *tag)
1335 0bd18d37 2019-02-01 stsp {
1336 0bd18d37 2019-02-01 stsp return &tag->id;
1337 776d4d29 2018-06-17 stsp }
1338 776d4d29 2018-06-17 stsp
1339 776d4d29 2018-06-17 stsp static struct got_tree_entry *
1340 65a9bbe9 2018-09-15 stsp find_entry_by_name(struct got_tree_object *tree, const char *name, size_t len)
1341 776d4d29 2018-06-17 stsp {
1342 776d4d29 2018-06-17 stsp struct got_tree_entry *te;
1343 776d4d29 2018-06-17 stsp
1344 63da309a 2018-11-07 stsp /* Note that tree entries are sorted in strncmp() order. */
1345 883f0469 2018-06-23 stsp SIMPLEQ_FOREACH(te, &tree->entries.head, entry) {
1346 63da309a 2018-11-07 stsp int cmp = strncmp(te->name, name, len);
1347 63da309a 2018-11-07 stsp if (cmp < 0)
1348 63da309a 2018-11-07 stsp continue;
1349 63da309a 2018-11-07 stsp if (cmp > 0)
1350 63da309a 2018-11-07 stsp break;
1351 63da309a 2018-11-07 stsp if (te->name[len] == '\0')
1352 776d4d29 2018-06-17 stsp return te;
1353 776d4d29 2018-06-17 stsp }
1354 eb651edf 2018-02-11 stsp return NULL;
1355 776d4d29 2018-06-17 stsp }
1356 776d4d29 2018-06-17 stsp
1357 776d4d29 2018-06-17 stsp const struct got_error *
1358 27d434c2 2018-09-15 stsp got_object_id_by_path(struct got_object_id **id, struct got_repository *repo,
1359 776d4d29 2018-06-17 stsp struct got_object_id *commit_id, const char *path)
1360 776d4d29 2018-06-17 stsp {
1361 776d4d29 2018-06-17 stsp const struct got_error *err = NULL;
1362 776d4d29 2018-06-17 stsp struct got_commit_object *commit = NULL;
1363 776d4d29 2018-06-17 stsp struct got_tree_object *tree = NULL;
1364 db37e2c0 2018-06-21 stsp struct got_tree_entry *te = NULL;
1365 65a9bbe9 2018-09-15 stsp const char *seg, *s;
1366 b7cd37e5 2018-11-18 stsp size_t seglen;
1367 776d4d29 2018-06-17 stsp
1368 27d434c2 2018-09-15 stsp *id = NULL;
1369 776d4d29 2018-06-17 stsp
1370 776d4d29 2018-06-17 stsp /* We are expecting an absolute in-repository path. */
1371 776d4d29 2018-06-17 stsp if (path[0] != '/')
1372 776d4d29 2018-06-17 stsp return got_error(GOT_ERR_NOT_ABSPATH);
1373 776d4d29 2018-06-17 stsp
1374 776d4d29 2018-06-17 stsp err = got_object_open_as_commit(&commit, repo, commit_id);
1375 776d4d29 2018-06-17 stsp if (err)
1376 776d4d29 2018-06-17 stsp goto done;
1377 776d4d29 2018-06-17 stsp
1378 776d4d29 2018-06-17 stsp /* Handle opening of root of commit's tree. */
1379 776d4d29 2018-06-17 stsp if (path[1] == '\0') {
1380 27d434c2 2018-09-15 stsp *id = got_object_id_dup(commit->tree_id);
1381 27d434c2 2018-09-15 stsp if (*id == NULL)
1382 27d434c2 2018-09-15 stsp err = got_error_from_errno();
1383 ca008b32 2018-07-22 stsp goto done;
1384 776d4d29 2018-06-17 stsp }
1385 776d4d29 2018-06-17 stsp
1386 776d4d29 2018-06-17 stsp err = got_object_open_as_tree(&tree, repo, commit->tree_id);
1387 776d4d29 2018-06-17 stsp if (err)
1388 776d4d29 2018-06-17 stsp goto done;
1389 776d4d29 2018-06-17 stsp
1390 65a9bbe9 2018-09-15 stsp s = path;
1391 776d4d29 2018-06-17 stsp s++; /* skip leading '/' */
1392 776d4d29 2018-06-17 stsp seg = s;
1393 65a9bbe9 2018-09-15 stsp seglen = 0;
1394 b7cd37e5 2018-11-18 stsp while (*s) {
1395 776d4d29 2018-06-17 stsp struct got_tree_object *next_tree;
1396 776d4d29 2018-06-17 stsp
1397 776d4d29 2018-06-17 stsp if (*s != '/') {
1398 776d4d29 2018-06-17 stsp s++;
1399 65a9bbe9 2018-09-15 stsp seglen++;
1400 00530cfb 2018-06-21 stsp if (*s)
1401 00530cfb 2018-06-21 stsp continue;
1402 776d4d29 2018-06-17 stsp }
1403 776d4d29 2018-06-17 stsp
1404 65a9bbe9 2018-09-15 stsp te = find_entry_by_name(tree, seg, seglen);
1405 db37e2c0 2018-06-21 stsp if (te == NULL) {
1406 d1451975 2018-11-11 stsp err = got_error(GOT_ERR_NO_TREE_ENTRY);
1407 776d4d29 2018-06-17 stsp goto done;
1408 776d4d29 2018-06-17 stsp }
1409 776d4d29 2018-06-17 stsp
1410 b7cd37e5 2018-11-18 stsp if (*s == '\0')
1411 67606321 2018-06-21 stsp break;
1412 67606321 2018-06-21 stsp
1413 776d4d29 2018-06-17 stsp seg = s + 1;
1414 65a9bbe9 2018-09-15 stsp seglen = 0;
1415 776d4d29 2018-06-17 stsp s++;
1416 776d4d29 2018-06-17 stsp if (*s) {
1417 776d4d29 2018-06-17 stsp err = got_object_open_as_tree(&next_tree, repo,
1418 db37e2c0 2018-06-21 stsp te->id);
1419 db37e2c0 2018-06-21 stsp te = NULL;
1420 776d4d29 2018-06-17 stsp if (err)
1421 776d4d29 2018-06-17 stsp goto done;
1422 776d4d29 2018-06-17 stsp got_object_tree_close(tree);
1423 776d4d29 2018-06-17 stsp tree = next_tree;
1424 776d4d29 2018-06-17 stsp }
1425 776d4d29 2018-06-17 stsp }
1426 776d4d29 2018-06-17 stsp
1427 27d434c2 2018-09-15 stsp if (te) {
1428 27d434c2 2018-09-15 stsp *id = got_object_id_dup(te->id);
1429 27d434c2 2018-09-15 stsp if (*id == NULL)
1430 27d434c2 2018-09-15 stsp return got_error_from_errno();
1431 27d434c2 2018-09-15 stsp } else
1432 d1451975 2018-11-11 stsp err = got_error(GOT_ERR_NO_TREE_ENTRY);
1433 776d4d29 2018-06-17 stsp done:
1434 776d4d29 2018-06-17 stsp if (commit)
1435 776d4d29 2018-06-17 stsp got_object_commit_close(commit);
1436 776d4d29 2018-06-17 stsp if (tree)
1437 776d4d29 2018-06-17 stsp got_object_tree_close(tree);
1438 776d4d29 2018-06-17 stsp return err;
1439 68482ea3 2017-11-27 stsp }
1440 07862c20 2018-09-15 stsp
1441 07862c20 2018-09-15 stsp const struct got_error *
1442 07862c20 2018-09-15 stsp got_object_tree_path_changed(int *changed,
1443 07862c20 2018-09-15 stsp struct got_tree_object *tree01, struct got_tree_object *tree02,
1444 07862c20 2018-09-15 stsp const char *path, struct got_repository *repo)
1445 07862c20 2018-09-15 stsp {
1446 07862c20 2018-09-15 stsp const struct got_error *err = NULL;
1447 07862c20 2018-09-15 stsp struct got_tree_object *tree1 = NULL, *tree2 = NULL;
1448 07862c20 2018-09-15 stsp struct got_tree_entry *te1 = NULL, *te2 = NULL;
1449 65a9bbe9 2018-09-15 stsp const char *seg, *s;
1450 3b7f9878 2018-11-18 stsp size_t seglen;
1451 07862c20 2018-09-15 stsp
1452 07862c20 2018-09-15 stsp *changed = 0;
1453 07862c20 2018-09-15 stsp
1454 07862c20 2018-09-15 stsp /* We are expecting an absolute in-repository path. */
1455 07862c20 2018-09-15 stsp if (path[0] != '/')
1456 07862c20 2018-09-15 stsp return got_error(GOT_ERR_NOT_ABSPATH);
1457 07862c20 2018-09-15 stsp
1458 07862c20 2018-09-15 stsp /* We not do support comparing the root path. */
1459 07862c20 2018-09-15 stsp if (path[1] == '\0')
1460 07862c20 2018-09-15 stsp return got_error(GOT_ERR_BAD_PATH);
1461 07862c20 2018-09-15 stsp
1462 07862c20 2018-09-15 stsp tree1 = tree01;
1463 07862c20 2018-09-15 stsp tree2 = tree02;
1464 65a9bbe9 2018-09-15 stsp s = path;
1465 07862c20 2018-09-15 stsp s++; /* skip leading '/' */
1466 07862c20 2018-09-15 stsp seg = s;
1467 65a9bbe9 2018-09-15 stsp seglen = 0;
1468 3b7f9878 2018-11-18 stsp while (*s) {
1469 07862c20 2018-09-15 stsp struct got_tree_object *next_tree1, *next_tree2;
1470 07862c20 2018-09-15 stsp
1471 07862c20 2018-09-15 stsp if (*s != '/') {
1472 07862c20 2018-09-15 stsp s++;
1473 65a9bbe9 2018-09-15 stsp seglen++;
1474 07862c20 2018-09-15 stsp if (*s)
1475 07862c20 2018-09-15 stsp continue;
1476 07862c20 2018-09-15 stsp }
1477 07862c20 2018-09-15 stsp
1478 65a9bbe9 2018-09-15 stsp te1 = find_entry_by_name(tree1, seg, seglen);
1479 07862c20 2018-09-15 stsp if (te1 == NULL) {
1480 07862c20 2018-09-15 stsp err = got_error(GOT_ERR_NO_OBJ);
1481 07862c20 2018-09-15 stsp goto done;
1482 07862c20 2018-09-15 stsp }
1483 07862c20 2018-09-15 stsp
1484 65a9bbe9 2018-09-15 stsp te2 = find_entry_by_name(tree2, seg, seglen);
1485 07862c20 2018-09-15 stsp if (te2 == NULL) {
1486 07862c20 2018-09-15 stsp *changed = 1;
1487 07862c20 2018-09-15 stsp goto done;
1488 07862c20 2018-09-15 stsp }
1489 07862c20 2018-09-15 stsp
1490 07862c20 2018-09-15 stsp if (te1->mode != te2->mode) {
1491 07862c20 2018-09-15 stsp *changed = 1;
1492 07862c20 2018-09-15 stsp goto done;
1493 07862c20 2018-09-15 stsp }
1494 07862c20 2018-09-15 stsp
1495 07862c20 2018-09-15 stsp if (got_object_id_cmp(te1->id, te2->id) == 0) {
1496 07862c20 2018-09-15 stsp *changed = 0;
1497 07862c20 2018-09-15 stsp goto done;
1498 07862c20 2018-09-15 stsp }
1499 07862c20 2018-09-15 stsp
1500 3b7f9878 2018-11-18 stsp if (*s == '\0') { /* final path element */
1501 07862c20 2018-09-15 stsp *changed = 1;
1502 07862c20 2018-09-15 stsp goto done;
1503 07862c20 2018-09-15 stsp }
1504 07862c20 2018-09-15 stsp
1505 07862c20 2018-09-15 stsp seg = s + 1;
1506 07862c20 2018-09-15 stsp s++;
1507 65a9bbe9 2018-09-15 stsp seglen = 0;
1508 07862c20 2018-09-15 stsp if (*s) {
1509 07862c20 2018-09-15 stsp err = got_object_open_as_tree(&next_tree1, repo,
1510 07862c20 2018-09-15 stsp te1->id);
1511 07862c20 2018-09-15 stsp te1 = NULL;
1512 07862c20 2018-09-15 stsp if (err)
1513 07862c20 2018-09-15 stsp goto done;
1514 a31cea73 2018-09-15 stsp if (tree1 != tree01)
1515 a31cea73 2018-09-15 stsp got_object_tree_close(tree1);
1516 07862c20 2018-09-15 stsp tree1 = next_tree1;
1517 07862c20 2018-09-15 stsp
1518 07862c20 2018-09-15 stsp err = got_object_open_as_tree(&next_tree2, repo,
1519 07862c20 2018-09-15 stsp te2->id);
1520 07862c20 2018-09-15 stsp te2 = NULL;
1521 07862c20 2018-09-15 stsp if (err)
1522 07862c20 2018-09-15 stsp goto done;
1523 a31cea73 2018-09-15 stsp if (tree2 != tree02)
1524 a31cea73 2018-09-15 stsp got_object_tree_close(tree2);
1525 07862c20 2018-09-15 stsp tree2 = next_tree2;
1526 07862c20 2018-09-15 stsp }
1527 07862c20 2018-09-15 stsp }
1528 07862c20 2018-09-15 stsp done:
1529 a31cea73 2018-09-15 stsp if (tree1 && tree1 != tree01)
1530 07862c20 2018-09-15 stsp got_object_tree_close(tree1);
1531 a31cea73 2018-09-15 stsp if (tree2 && tree2 != tree02)
1532 07862c20 2018-09-15 stsp got_object_tree_close(tree2);
1533 77880158 2018-11-04 stsp return err;
1534 77880158 2018-11-04 stsp }