Blame


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