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 d1cda826 2017-11-06 stsp
24 a1fd68d8 2018-01-12 stsp #include <errno.h>
25 2178c42e 2018-04-22 stsp #include <fcntl.h>
26 d71d75ad 2017-11-05 stsp #include <stdio.h>
27 ab9a70b2 2017-11-06 stsp #include <stdlib.h>
28 ab9a70b2 2017-11-06 stsp #include <string.h>
29 2178c42e 2018-04-22 stsp #include <stdint.h>
30 d71d75ad 2017-11-05 stsp #include <sha1.h>
31 ab9a70b2 2017-11-06 stsp #include <zlib.h>
32 ab9a70b2 2017-11-06 stsp #include <ctype.h>
33 ab9a70b2 2017-11-06 stsp #include <limits.h>
34 2178c42e 2018-04-22 stsp #include <imsg.h>
35 d71d75ad 2017-11-05 stsp
36 ab9a70b2 2017-11-06 stsp #include "got_error.h"
37 d71d75ad 2017-11-05 stsp #include "got_object.h"
38 ab9a70b2 2017-11-06 stsp #include "got_repository.h"
39 511a516b 2018-05-19 stsp #include "got_opentemp.h"
40 d71d75ad 2017-11-05 stsp
41 718b3ab0 2018-03-17 stsp #include "got_lib_sha1.h"
42 718b3ab0 2018-03-17 stsp #include "got_lib_delta.h"
43 718b3ab0 2018-03-17 stsp #include "got_lib_pack.h"
44 2178c42e 2018-04-22 stsp #include "got_lib_path.h"
45 718b3ab0 2018-03-17 stsp #include "got_lib_zbuf.h"
46 718b3ab0 2018-03-17 stsp #include "got_lib_object.h"
47 2178c42e 2018-04-22 stsp #include "got_lib_privsep.h"
48 1411938b 2018-02-12 stsp
49 ab9a70b2 2017-11-06 stsp #ifndef MIN
50 ab9a70b2 2017-11-06 stsp #define MIN(_a,_b) ((_a) < (_b) ? (_a) : (_b))
51 ab9a70b2 2017-11-06 stsp #endif
52 ab9a70b2 2017-11-06 stsp
53 ab9a70b2 2017-11-06 stsp #ifndef nitems
54 ab9a70b2 2017-11-06 stsp #define nitems(_a) (sizeof(_a) / sizeof((_a)[0]))
55 ab9a70b2 2017-11-06 stsp #endif
56 ab9a70b2 2017-11-06 stsp
57 ab9a70b2 2017-11-06 stsp #define GOT_OBJ_TAG_COMMIT "commit"
58 ab9a70b2 2017-11-06 stsp #define GOT_OBJ_TAG_TREE "tree"
59 ab9a70b2 2017-11-06 stsp #define GOT_OBJ_TAG_BLOB "blob"
60 ab9a70b2 2017-11-06 stsp
61 d1cda826 2017-11-06 stsp #define GOT_COMMIT_TAG_TREE "tree "
62 d1cda826 2017-11-06 stsp #define GOT_COMMIT_TAG_PARENT "parent "
63 d1cda826 2017-11-06 stsp #define GOT_COMMIT_TAG_AUTHOR "author "
64 d1cda826 2017-11-06 stsp #define GOT_COMMIT_TAG_COMMITTER "committer "
65 d1cda826 2017-11-06 stsp
66 ef0981d5 2018-02-12 stsp const struct got_error *
67 ef0981d5 2018-02-12 stsp got_object_id_str(char **outbuf, struct got_object_id *id)
68 d71d75ad 2017-11-05 stsp {
69 ef0981d5 2018-02-12 stsp static const size_t len = SHA1_DIGEST_STRING_LENGTH;
70 ef0981d5 2018-02-12 stsp
71 ef0981d5 2018-02-12 stsp *outbuf = calloc(1, len);
72 ef0981d5 2018-02-12 stsp if (*outbuf == NULL)
73 0a585a0d 2018-03-17 stsp return got_error_from_errno();
74 ef0981d5 2018-02-12 stsp
75 ef0981d5 2018-02-12 stsp if (got_sha1_digest_to_str(id->sha1, *outbuf, len) == NULL) {
76 ef0981d5 2018-02-12 stsp free(*outbuf);
77 ef0981d5 2018-02-12 stsp *outbuf = NULL;
78 ef0981d5 2018-02-12 stsp return got_error(GOT_ERR_BAD_OBJ_ID_STR);
79 ef0981d5 2018-02-12 stsp }
80 ef0981d5 2018-02-12 stsp
81 ef0981d5 2018-02-12 stsp return NULL;
82 59ece79d 2018-02-12 stsp }
83 59ece79d 2018-02-12 stsp
84 a1fd68d8 2018-01-12 stsp int
85 a1fd68d8 2018-01-12 stsp got_object_id_cmp(struct got_object_id *id1, struct got_object_id *id2)
86 a1fd68d8 2018-01-12 stsp {
87 a1fd68d8 2018-01-12 stsp return memcmp(id1->sha1, id2->sha1, SHA1_DIGEST_LENGTH);
88 8bf5b3c9 2018-03-17 stsp }
89 8bf5b3c9 2018-03-17 stsp
90 8bf5b3c9 2018-03-17 stsp struct got_object_id *
91 8bf5b3c9 2018-03-17 stsp got_object_id_dup(struct got_object_id *id1)
92 8bf5b3c9 2018-03-17 stsp {
93 8bf5b3c9 2018-03-17 stsp struct got_object_id *id2;
94 8bf5b3c9 2018-03-17 stsp
95 8bf5b3c9 2018-03-17 stsp id2 = malloc(sizeof(*id2));
96 8bf5b3c9 2018-03-17 stsp if (id2 == NULL)
97 8bf5b3c9 2018-03-17 stsp return NULL;
98 8bf5b3c9 2018-03-17 stsp memcpy(id2, id1, sizeof(*id2));
99 8bf5b3c9 2018-03-17 stsp return id2;
100 3235492e 2018-04-01 stsp }
101 3235492e 2018-04-01 stsp
102 3235492e 2018-04-01 stsp struct got_object_id *
103 3235492e 2018-04-01 stsp got_object_get_id(struct got_object *obj)
104 3235492e 2018-04-01 stsp {
105 3235492e 2018-04-01 stsp return got_object_id_dup(&obj->id);
106 bacc9935 2018-05-20 stsp }
107 bacc9935 2018-05-20 stsp
108 bacc9935 2018-05-20 stsp const struct got_error *
109 bacc9935 2018-05-20 stsp got_object_get_id_str(char **outbuf, struct got_object *obj)
110 bacc9935 2018-05-20 stsp {
111 bacc9935 2018-05-20 stsp return got_object_id_str(outbuf, &obj->id);
112 a1fd68d8 2018-01-12 stsp }
113 d71d75ad 2017-11-05 stsp
114 b107e67f 2018-01-19 stsp int
115 b107e67f 2018-01-19 stsp got_object_get_type(struct got_object *obj)
116 a1fd68d8 2018-01-12 stsp {
117 b107e67f 2018-01-19 stsp switch (obj->type) {
118 a1fd68d8 2018-01-12 stsp case GOT_OBJ_TYPE_COMMIT:
119 a1fd68d8 2018-01-12 stsp case GOT_OBJ_TYPE_TREE:
120 a1fd68d8 2018-01-12 stsp case GOT_OBJ_TYPE_BLOB:
121 b107e67f 2018-01-19 stsp case GOT_OBJ_TYPE_TAG:
122 b107e67f 2018-01-19 stsp return obj->type;
123 96f5e8b3 2018-01-23 stsp default:
124 96f5e8b3 2018-01-23 stsp abort();
125 96f5e8b3 2018-01-23 stsp break;
126 d71d75ad 2017-11-05 stsp }
127 d71d75ad 2017-11-05 stsp
128 96f5e8b3 2018-01-23 stsp /* not reached */
129 96f5e8b3 2018-01-23 stsp return 0;
130 d71d75ad 2017-11-05 stsp }
131 ab9a70b2 2017-11-06 stsp
132 ab9a70b2 2017-11-06 stsp static const struct got_error *
133 d1cda826 2017-11-06 stsp parse_object_header(struct got_object **obj, char *buf, size_t len)
134 ab9a70b2 2017-11-06 stsp {
135 ab9a70b2 2017-11-06 stsp const char *obj_tags[] = {
136 ab9a70b2 2017-11-06 stsp GOT_OBJ_TAG_COMMIT,
137 ab9a70b2 2017-11-06 stsp GOT_OBJ_TAG_TREE,
138 ab9a70b2 2017-11-06 stsp GOT_OBJ_TAG_BLOB
139 ab9a70b2 2017-11-06 stsp };
140 ab9a70b2 2017-11-06 stsp const int obj_types[] = {
141 ab9a70b2 2017-11-06 stsp GOT_OBJ_TYPE_COMMIT,
142 ab9a70b2 2017-11-06 stsp GOT_OBJ_TYPE_TREE,
143 ab9a70b2 2017-11-06 stsp GOT_OBJ_TYPE_BLOB,
144 ab9a70b2 2017-11-06 stsp };
145 ab9a70b2 2017-11-06 stsp int type = 0;
146 d1cda826 2017-11-06 stsp size_t size = 0, hdrlen = 0;
147 ab9a70b2 2017-11-06 stsp int i;
148 ab9a70b2 2017-11-06 stsp char *p = strchr(buf, '\0');
149 ab9a70b2 2017-11-06 stsp
150 ab9a70b2 2017-11-06 stsp if (p == NULL)
151 ab9a70b2 2017-11-06 stsp return got_error(GOT_ERR_BAD_OBJ_HDR);
152 ab9a70b2 2017-11-06 stsp
153 d1cda826 2017-11-06 stsp hdrlen = strlen(buf) + 1 /* '\0' */;
154 d1cda826 2017-11-06 stsp
155 ab9a70b2 2017-11-06 stsp for (i = 0; i < nitems(obj_tags); i++) {
156 ab9a70b2 2017-11-06 stsp const char *tag = obj_tags[i];
157 63323519 2017-11-06 stsp size_t tlen = strlen(tag);
158 ab9a70b2 2017-11-06 stsp const char *errstr;
159 ab9a70b2 2017-11-06 stsp
160 63323519 2017-11-06 stsp if (strncmp(buf, tag, tlen) != 0)
161 ab9a70b2 2017-11-06 stsp continue;
162 ab9a70b2 2017-11-06 stsp
163 ab9a70b2 2017-11-06 stsp type = obj_types[i];
164 63323519 2017-11-06 stsp if (len <= tlen)
165 ab9a70b2 2017-11-06 stsp return got_error(GOT_ERR_BAD_OBJ_HDR);
166 63323519 2017-11-06 stsp size = strtonum(buf + tlen, 0, LONG_MAX, &errstr);
167 ab9a70b2 2017-11-06 stsp if (errstr != NULL)
168 ab9a70b2 2017-11-06 stsp return got_error(GOT_ERR_BAD_OBJ_HDR);
169 ab9a70b2 2017-11-06 stsp break;
170 ab9a70b2 2017-11-06 stsp }
171 ab9a70b2 2017-11-06 stsp
172 ab9a70b2 2017-11-06 stsp if (type == 0)
173 ab9a70b2 2017-11-06 stsp return got_error(GOT_ERR_BAD_OBJ_HDR);
174 ab9a70b2 2017-11-06 stsp
175 ab9a70b2 2017-11-06 stsp *obj = calloc(1, sizeof(**obj));
176 1db76ab5 2018-01-26 mpi if (*obj == NULL)
177 0a585a0d 2018-03-17 stsp return got_error_from_errno();
178 ab9a70b2 2017-11-06 stsp (*obj)->type = type;
179 d1cda826 2017-11-06 stsp (*obj)->hdrlen = hdrlen;
180 ab9a70b2 2017-11-06 stsp (*obj)->size = size;
181 ab9a70b2 2017-11-06 stsp return NULL;
182 ab9a70b2 2017-11-06 stsp }
183 ab9a70b2 2017-11-06 stsp
184 ab9a70b2 2017-11-06 stsp static const struct got_error *
185 2178c42e 2018-04-22 stsp read_object_header(struct got_object **obj, FILE *f)
186 ab9a70b2 2017-11-06 stsp {
187 ab9a70b2 2017-11-06 stsp const struct got_error *err;
188 ab9a70b2 2017-11-06 stsp struct got_zstream_buf zb;
189 a3e2cbea 2017-12-01 stsp char *buf;
190 a3e2cbea 2017-12-01 stsp const size_t zbsize = 64;
191 744d9326 2017-12-01 stsp size_t outlen, totlen;
192 25783624 2018-03-12 stsp int i;
193 ab9a70b2 2017-11-06 stsp
194 744d9326 2017-12-01 stsp buf = calloc(zbsize, sizeof(char));
195 a3e2cbea 2017-12-01 stsp if (buf == NULL)
196 0a585a0d 2018-03-17 stsp return got_error_from_errno();
197 a3e2cbea 2017-12-01 stsp
198 19d747f7 2018-03-16 stsp err = got_inflate_init(&zb, NULL, zbsize);
199 a1fd68d8 2018-01-12 stsp if (err)
200 ab9a70b2 2017-11-06 stsp return err;
201 ab9a70b2 2017-11-06 stsp
202 a3e2cbea 2017-12-01 stsp i = 0;
203 744d9326 2017-12-01 stsp totlen = 0;
204 a3e2cbea 2017-12-01 stsp do {
205 126ee060 2018-02-11 stsp err = got_inflate_read(&zb, f, &outlen);
206 a3e2cbea 2017-12-01 stsp if (err)
207 a3e2cbea 2017-12-01 stsp goto done;
208 e302c59e 2017-12-01 stsp if (strchr(zb.outbuf, '\0') == NULL) {
209 a3e2cbea 2017-12-01 stsp buf = recallocarray(buf, 1 + i, 2 + i, zbsize);
210 e302c59e 2017-12-01 stsp if (buf == NULL) {
211 0a585a0d 2018-03-17 stsp err = got_error_from_errno();
212 e302c59e 2017-12-01 stsp goto done;
213 e302c59e 2017-12-01 stsp }
214 e302c59e 2017-12-01 stsp }
215 c56976de 2017-12-01 stsp memcpy(buf + totlen, zb.outbuf, outlen);
216 744d9326 2017-12-01 stsp totlen += outlen;
217 a3e2cbea 2017-12-01 stsp i++;
218 a3e2cbea 2017-12-01 stsp } while (strchr(zb.outbuf, '\0') == NULL);
219 ab9a70b2 2017-11-06 stsp
220 744d9326 2017-12-01 stsp err = parse_object_header(obj, buf, totlen);
221 ab9a70b2 2017-11-06 stsp done:
222 4ca7b755 2018-01-26 stsp got_inflate_end(&zb);
223 2178c42e 2018-04-22 stsp return err;
224 302b7dd6 2018-04-23 stsp }
225 302b7dd6 2018-04-23 stsp
226 302b7dd6 2018-04-23 stsp static void
227 302b7dd6 2018-04-23 stsp read_object_header_privsep_child(int obj_fd, int imsg_fds[2])
228 302b7dd6 2018-04-23 stsp {
229 302b7dd6 2018-04-23 stsp const struct got_error *err = NULL;
230 e3306bd9 2018-04-23 stsp struct got_object *obj = NULL;
231 e3306bd9 2018-04-23 stsp struct imsgbuf ibuf;
232 302b7dd6 2018-04-23 stsp FILE *f = NULL;
233 302b7dd6 2018-04-23 stsp int status = 0;
234 302b7dd6 2018-04-23 stsp
235 be37c2e6 2018-04-24 stsp setproctitle("read object header");
236 302b7dd6 2018-04-23 stsp close(imsg_fds[0]);
237 e3306bd9 2018-04-23 stsp imsg_init(&ibuf, imsg_fds[1]);
238 302b7dd6 2018-04-23 stsp
239 302b7dd6 2018-04-23 stsp /* revoke access to most system calls */
240 302b7dd6 2018-04-23 stsp if (pledge("stdio", NULL) == -1) {
241 302b7dd6 2018-04-23 stsp err = got_error_from_errno();
242 302b7dd6 2018-04-23 stsp goto done;
243 302b7dd6 2018-04-23 stsp }
244 302b7dd6 2018-04-23 stsp
245 302b7dd6 2018-04-23 stsp f = fdopen(obj_fd, "rb");
246 302b7dd6 2018-04-23 stsp if (f == NULL) {
247 302b7dd6 2018-04-23 stsp err = got_error_from_errno();
248 302b7dd6 2018-04-23 stsp close(obj_fd);
249 302b7dd6 2018-04-23 stsp goto done;
250 302b7dd6 2018-04-23 stsp }
251 302b7dd6 2018-04-23 stsp
252 e3306bd9 2018-04-23 stsp err = read_object_header(&obj, f);
253 302b7dd6 2018-04-23 stsp if (err)
254 302b7dd6 2018-04-23 stsp goto done;
255 302b7dd6 2018-04-23 stsp
256 e3306bd9 2018-04-23 stsp err = got_privsep_send_obj(&ibuf, obj, 0);
257 302b7dd6 2018-04-23 stsp done:
258 e3306bd9 2018-04-23 stsp if (obj)
259 e3306bd9 2018-04-23 stsp got_object_close(obj);
260 302b7dd6 2018-04-23 stsp if (err) {
261 e3306bd9 2018-04-23 stsp got_privsep_send_error(&ibuf, err);
262 302b7dd6 2018-04-23 stsp status = 1;
263 302b7dd6 2018-04-23 stsp }
264 302b7dd6 2018-04-23 stsp if (f)
265 302b7dd6 2018-04-23 stsp fclose(f);
266 e3306bd9 2018-04-23 stsp imsg_clear(&ibuf);
267 302b7dd6 2018-04-23 stsp close(imsg_fds[1]);
268 302b7dd6 2018-04-23 stsp _exit(status);
269 b419fc47 2018-04-26 stsp }
270 b419fc47 2018-04-26 stsp
271 b419fc47 2018-04-26 stsp static const struct got_error *
272 b419fc47 2018-04-26 stsp wait_for_child(pid_t pid)
273 b419fc47 2018-04-26 stsp {
274 b419fc47 2018-04-26 stsp int child_status;
275 b419fc47 2018-04-26 stsp
276 b419fc47 2018-04-26 stsp waitpid(pid, &child_status, 0);
277 b419fc47 2018-04-26 stsp
278 b419fc47 2018-04-26 stsp if (!WIFEXITED(child_status))
279 b419fc47 2018-04-26 stsp return got_error(GOT_ERR_PRIVSEP_DIED);
280 b419fc47 2018-04-26 stsp
281 b419fc47 2018-04-26 stsp if (WEXITSTATUS(child_status) != 0)
282 b419fc47 2018-04-26 stsp return got_error(GOT_ERR_PRIVSEP_EXIT);
283 b419fc47 2018-04-26 stsp
284 b419fc47 2018-04-26 stsp return NULL;
285 2178c42e 2018-04-22 stsp }
286 2178c42e 2018-04-22 stsp
287 2178c42e 2018-04-22 stsp static const struct got_error *
288 2178c42e 2018-04-22 stsp read_object_header_privsep(struct got_object **obj, int fd)
289 2178c42e 2018-04-22 stsp {
290 2178c42e 2018-04-22 stsp struct imsgbuf parent_ibuf;
291 2178c42e 2018-04-22 stsp int imsg_fds[2];
292 b419fc47 2018-04-26 stsp const struct got_error *err = NULL, *err_child = NULL;
293 2178c42e 2018-04-22 stsp pid_t pid;
294 2178c42e 2018-04-22 stsp
295 2178c42e 2018-04-22 stsp if (socketpair(AF_UNIX, SOCK_STREAM, PF_UNSPEC, imsg_fds) == -1)
296 2178c42e 2018-04-22 stsp return got_error_from_errno();
297 2178c42e 2018-04-22 stsp
298 2178c42e 2018-04-22 stsp pid = fork();
299 2178c42e 2018-04-22 stsp if (pid == -1)
300 2178c42e 2018-04-22 stsp return got_error_from_errno();
301 2178c42e 2018-04-22 stsp else if (pid == 0) {
302 302b7dd6 2018-04-23 stsp read_object_header_privsep_child(fd, imsg_fds);
303 302b7dd6 2018-04-23 stsp /* not reached */
304 2178c42e 2018-04-22 stsp }
305 2178c42e 2018-04-22 stsp
306 2178c42e 2018-04-22 stsp close(imsg_fds[1]);
307 2178c42e 2018-04-22 stsp imsg_init(&parent_ibuf, imsg_fds[0]);
308 2178c42e 2018-04-22 stsp err = got_privsep_recv_obj(obj, &parent_ibuf);
309 2178c42e 2018-04-22 stsp imsg_clear(&parent_ibuf);
310 b419fc47 2018-04-26 stsp err_child = wait_for_child(pid);
311 2178c42e 2018-04-22 stsp close(imsg_fds[0]);
312 b419fc47 2018-04-26 stsp return err ? err : err_child;
313 ab9a70b2 2017-11-06 stsp }
314 ab9a70b2 2017-11-06 stsp
315 d1cda826 2017-11-06 stsp static const struct got_error *
316 4558fcd4 2018-01-14 stsp object_path(char **path, struct got_object_id *id, struct got_repository *repo)
317 ab9a70b2 2017-11-06 stsp {
318 ab9a70b2 2017-11-06 stsp const struct got_error *err = NULL;
319 ef0981d5 2018-02-12 stsp char *hex;
320 d1cda826 2017-11-06 stsp char *path_objects = got_repo_get_path_objects(repo);
321 e6b1056e 2018-04-22 stsp
322 e6b1056e 2018-04-22 stsp *path = NULL;
323 ab9a70b2 2017-11-06 stsp
324 ab9a70b2 2017-11-06 stsp if (path_objects == NULL)
325 0a585a0d 2018-03-17 stsp return got_error_from_errno();
326 ab9a70b2 2017-11-06 stsp
327 ef0981d5 2018-02-12 stsp err = got_object_id_str(&hex, id);
328 ef0981d5 2018-02-12 stsp if (err)
329 ef0981d5 2018-02-12 stsp return err;
330 ab9a70b2 2017-11-06 stsp
331 d1cda826 2017-11-06 stsp if (asprintf(path, "%s/%.2x/%s", path_objects,
332 d1cda826 2017-11-06 stsp id->sha1[0], hex + 2) == -1)
333 0a585a0d 2018-03-17 stsp err = got_error_from_errno();
334 ab9a70b2 2017-11-06 stsp
335 ef0981d5 2018-02-12 stsp free(hex);
336 d1cda826 2017-11-06 stsp free(path_objects);
337 d1cda826 2017-11-06 stsp return err;
338 d1cda826 2017-11-06 stsp }
339 d1cda826 2017-11-06 stsp
340 4ee4114f 2018-01-23 stsp static const struct got_error *
341 d5003b79 2018-04-22 stsp open_loose_object(int *fd, struct got_object *obj, struct got_repository *repo)
342 d1cda826 2017-11-06 stsp {
343 d1cda826 2017-11-06 stsp const struct got_error *err = NULL;
344 a1fd68d8 2018-01-12 stsp char *path;
345 6c00b545 2018-01-17 stsp
346 6c00b545 2018-01-17 stsp err = object_path(&path, &obj->id, repo);
347 d1cda826 2017-11-06 stsp if (err)
348 d1cda826 2017-11-06 stsp return err;
349 d5003b79 2018-04-22 stsp *fd = open(path, O_RDONLY | O_NOFOLLOW, GOT_DEFAULT_FILE_MODE);
350 d5003b79 2018-04-22 stsp if (*fd == -1) {
351 6c00b545 2018-01-17 stsp err = got_error_from_errno();
352 6c00b545 2018-01-17 stsp goto done;
353 a1fd68d8 2018-01-12 stsp }
354 4558fcd4 2018-01-14 stsp done:
355 4558fcd4 2018-01-14 stsp free(path);
356 4558fcd4 2018-01-14 stsp return err;
357 4558fcd4 2018-01-14 stsp }
358 a1fd68d8 2018-01-12 stsp
359 4558fcd4 2018-01-14 stsp const struct got_error *
360 4558fcd4 2018-01-14 stsp got_object_open(struct got_object **obj, struct got_repository *repo,
361 4558fcd4 2018-01-14 stsp struct got_object_id *id)
362 4558fcd4 2018-01-14 stsp {
363 6c00b545 2018-01-17 stsp const struct got_error *err = NULL;
364 6c00b545 2018-01-17 stsp char *path;
365 2178c42e 2018-04-22 stsp int fd;
366 4558fcd4 2018-01-14 stsp
367 6c00b545 2018-01-17 stsp err = object_path(&path, id, repo);
368 4558fcd4 2018-01-14 stsp if (err)
369 4558fcd4 2018-01-14 stsp return err;
370 4558fcd4 2018-01-14 stsp
371 2178c42e 2018-04-22 stsp fd = open(path, O_RDONLY | O_NOFOLLOW, GOT_DEFAULT_FILE_MODE);
372 2178c42e 2018-04-22 stsp if (fd == -1) {
373 6c00b545 2018-01-17 stsp if (errno != ENOENT) {
374 6c00b545 2018-01-17 stsp err = got_error_from_errno();
375 6c00b545 2018-01-17 stsp goto done;
376 6c00b545 2018-01-17 stsp }
377 6c00b545 2018-01-17 stsp err = got_packfile_open_object(obj, id, repo);
378 6c00b545 2018-01-17 stsp if (err)
379 6c00b545 2018-01-17 stsp goto done;
380 6c00b545 2018-01-17 stsp if (*obj == NULL)
381 6c00b545 2018-01-17 stsp err = got_error(GOT_ERR_NO_OBJ);
382 6c00b545 2018-01-17 stsp } else {
383 2178c42e 2018-04-22 stsp err = read_object_header_privsep(obj, fd);
384 6c00b545 2018-01-17 stsp if (err)
385 6c00b545 2018-01-17 stsp goto done;
386 ab9a70b2 2017-11-06 stsp memcpy((*obj)->id.sha1, id->sha1, SHA1_DIGEST_LENGTH);
387 6c00b545 2018-01-17 stsp }
388 6c00b545 2018-01-17 stsp done:
389 6c00b545 2018-01-17 stsp free(path);
390 2178c42e 2018-04-22 stsp if (fd != -1)
391 2178c42e 2018-04-22 stsp close(fd);
392 ab9a70b2 2017-11-06 stsp return err;
393 6c00b545 2018-01-17 stsp
394 ab9a70b2 2017-11-06 stsp }
395 ab9a70b2 2017-11-06 stsp
396 6dfa2fd3 2018-02-12 stsp const struct got_error *
397 6dfa2fd3 2018-02-12 stsp got_object_open_by_id_str(struct got_object **obj, struct got_repository *repo,
398 6dfa2fd3 2018-02-12 stsp const char *id_str)
399 6dfa2fd3 2018-02-12 stsp {
400 6dfa2fd3 2018-02-12 stsp struct got_object_id id;
401 6dfa2fd3 2018-02-12 stsp
402 6dfa2fd3 2018-02-12 stsp if (!got_parse_sha1_digest(id.sha1, id_str))
403 6dfa2fd3 2018-02-12 stsp return got_error(GOT_ERR_BAD_OBJ_ID_STR);
404 6dfa2fd3 2018-02-12 stsp
405 6dfa2fd3 2018-02-12 stsp return got_object_open(obj, repo, &id);
406 6dfa2fd3 2018-02-12 stsp }
407 6dfa2fd3 2018-02-12 stsp
408 ab9a70b2 2017-11-06 stsp void
409 ab9a70b2 2017-11-06 stsp got_object_close(struct got_object *obj)
410 ab9a70b2 2017-11-06 stsp {
411 96f5e8b3 2018-01-23 stsp if (obj->flags & GOT_OBJ_FLAG_DELTIFIED) {
412 c3703302 2018-01-23 stsp struct got_delta *delta;
413 96f5e8b3 2018-01-23 stsp while (!SIMPLEQ_EMPTY(&obj->deltas.entries)) {
414 c3703302 2018-01-23 stsp delta = SIMPLEQ_FIRST(&obj->deltas.entries);
415 96f5e8b3 2018-01-23 stsp SIMPLEQ_REMOVE_HEAD(&obj->deltas.entries, entry);
416 c3703302 2018-01-23 stsp got_delta_close(delta);
417 96f5e8b3 2018-01-23 stsp }
418 96f5e8b3 2018-01-23 stsp }
419 96f5e8b3 2018-01-23 stsp if (obj->flags & GOT_OBJ_FLAG_PACKED)
420 96f5e8b3 2018-01-23 stsp free(obj->path_packfile);
421 ab9a70b2 2017-11-06 stsp free(obj);
422 bff6ca00 2018-04-23 stsp }
423 bff6ca00 2018-04-23 stsp
424 bff6ca00 2018-04-23 stsp struct got_commit_object *
425 bff6ca00 2018-04-23 stsp got_object_commit_alloc_partial(void)
426 bff6ca00 2018-04-23 stsp {
427 bff6ca00 2018-04-23 stsp struct got_commit_object *commit;
428 bff6ca00 2018-04-23 stsp
429 bff6ca00 2018-04-23 stsp commit = calloc(1, sizeof(*commit));
430 bff6ca00 2018-04-23 stsp if (commit == NULL)
431 bff6ca00 2018-04-23 stsp return NULL;
432 bff6ca00 2018-04-23 stsp commit->tree_id = calloc(1, sizeof(*commit->tree_id));
433 bff6ca00 2018-04-23 stsp if (commit->tree_id == NULL) {
434 bff6ca00 2018-04-23 stsp free(commit);
435 bff6ca00 2018-04-23 stsp return NULL;
436 bff6ca00 2018-04-23 stsp }
437 bff6ca00 2018-04-23 stsp
438 bff6ca00 2018-04-23 stsp SIMPLEQ_INIT(&commit->parent_ids);
439 bff6ca00 2018-04-23 stsp
440 bff6ca00 2018-04-23 stsp return commit;
441 bff6ca00 2018-04-23 stsp }
442 bff6ca00 2018-04-23 stsp
443 bff6ca00 2018-04-23 stsp const struct got_error *
444 bff6ca00 2018-04-23 stsp got_object_commit_add_parent(struct got_commit_object *commit,
445 bff6ca00 2018-04-23 stsp const char *id_str)
446 bff6ca00 2018-04-23 stsp {
447 bff6ca00 2018-04-23 stsp const struct got_error *err = NULL;
448 bff6ca00 2018-04-23 stsp struct got_parent_id *pid;
449 bff6ca00 2018-04-23 stsp
450 bff6ca00 2018-04-23 stsp pid = calloc(1, sizeof(*pid));
451 bff6ca00 2018-04-23 stsp if (pid == NULL)
452 bff6ca00 2018-04-23 stsp return got_error_from_errno();
453 bff6ca00 2018-04-23 stsp
454 bff6ca00 2018-04-23 stsp pid->id = calloc(1, sizeof(*pid->id));
455 bff6ca00 2018-04-23 stsp if (pid->id == NULL) {
456 bff6ca00 2018-04-23 stsp err = got_error_from_errno();
457 bff6ca00 2018-04-23 stsp free(pid);
458 bff6ca00 2018-04-23 stsp return err;
459 bff6ca00 2018-04-23 stsp }
460 bff6ca00 2018-04-23 stsp
461 bff6ca00 2018-04-23 stsp if (!got_parse_sha1_digest(pid->id->sha1, id_str)) {
462 bff6ca00 2018-04-23 stsp err = got_error(GOT_ERR_BAD_OBJ_DATA);
463 bff6ca00 2018-04-23 stsp free(pid->id);
464 bff6ca00 2018-04-23 stsp free(pid);
465 bff6ca00 2018-04-23 stsp return err;
466 bff6ca00 2018-04-23 stsp }
467 bff6ca00 2018-04-23 stsp
468 bff6ca00 2018-04-23 stsp SIMPLEQ_INSERT_TAIL(&commit->parent_ids, pid, entry);
469 bff6ca00 2018-04-23 stsp commit->nparents++;
470 bff6ca00 2018-04-23 stsp
471 bff6ca00 2018-04-23 stsp return NULL;
472 d1cda826 2017-11-06 stsp }
473 d1cda826 2017-11-06 stsp
474 d1cda826 2017-11-06 stsp static const struct got_error *
475 d1cda826 2017-11-06 stsp parse_commit_object(struct got_commit_object **commit, char *buf, size_t len)
476 d1cda826 2017-11-06 stsp {
477 d1cda826 2017-11-06 stsp const struct got_error *err = NULL;
478 d1cda826 2017-11-06 stsp char *s = buf;
479 d1cda826 2017-11-06 stsp size_t tlen;
480 d1cda826 2017-11-06 stsp ssize_t remain = (ssize_t)len;
481 d1cda826 2017-11-06 stsp
482 bff6ca00 2018-04-23 stsp *commit = got_object_commit_alloc_partial();
483 d1cda826 2017-11-06 stsp if (*commit == NULL)
484 0a585a0d 2018-03-17 stsp return got_error_from_errno();
485 d1cda826 2017-11-06 stsp
486 d1cda826 2017-11-06 stsp tlen = strlen(GOT_COMMIT_TAG_TREE);
487 d1cda826 2017-11-06 stsp if (strncmp(s, GOT_COMMIT_TAG_TREE, tlen) == 0) {
488 d1cda826 2017-11-06 stsp remain -= tlen;
489 d1cda826 2017-11-06 stsp if (remain < SHA1_DIGEST_STRING_LENGTH) {
490 d1cda826 2017-11-06 stsp err = got_error(GOT_ERR_BAD_OBJ_DATA);
491 d1cda826 2017-11-06 stsp goto done;
492 d1cda826 2017-11-06 stsp }
493 d1cda826 2017-11-06 stsp s += tlen;
494 59ece79d 2018-02-12 stsp if (!got_parse_sha1_digest((*commit)->tree_id->sha1, s)) {
495 d1cda826 2017-11-06 stsp err = got_error(GOT_ERR_BAD_OBJ_DATA);
496 d1cda826 2017-11-06 stsp goto done;
497 d1cda826 2017-11-06 stsp }
498 d1cda826 2017-11-06 stsp remain -= SHA1_DIGEST_STRING_LENGTH;
499 d1cda826 2017-11-06 stsp s += SHA1_DIGEST_STRING_LENGTH;
500 d1cda826 2017-11-06 stsp } else {
501 d1cda826 2017-11-06 stsp err = got_error(GOT_ERR_BAD_OBJ_DATA);
502 d1cda826 2017-11-06 stsp goto done;
503 d1cda826 2017-11-06 stsp }
504 d1cda826 2017-11-06 stsp
505 d1cda826 2017-11-06 stsp tlen = strlen(GOT_COMMIT_TAG_PARENT);
506 d1cda826 2017-11-06 stsp while (strncmp(s, GOT_COMMIT_TAG_PARENT, tlen) == 0) {
507 d1cda826 2017-11-06 stsp remain -= tlen;
508 d1cda826 2017-11-06 stsp if (remain < SHA1_DIGEST_STRING_LENGTH) {
509 d1cda826 2017-11-06 stsp err = got_error(GOT_ERR_BAD_OBJ_DATA);
510 d1cda826 2017-11-06 stsp goto done;
511 ef0981d5 2018-02-12 stsp }
512 59ece79d 2018-02-12 stsp s += tlen;
513 bff6ca00 2018-04-23 stsp err = got_object_commit_add_parent(*commit, s);
514 bff6ca00 2018-04-23 stsp if (err)
515 d1cda826 2017-11-06 stsp goto done;
516 d1cda826 2017-11-06 stsp
517 eb651edf 2018-02-11 stsp remain -= SHA1_DIGEST_STRING_LENGTH;
518 d1cda826 2017-11-06 stsp s += SHA1_DIGEST_STRING_LENGTH;
519 d1cda826 2017-11-06 stsp }
520 d1cda826 2017-11-06 stsp
521 d1cda826 2017-11-06 stsp tlen = strlen(GOT_COMMIT_TAG_AUTHOR);
522 d1cda826 2017-11-06 stsp if (strncmp(s, GOT_COMMIT_TAG_AUTHOR, tlen) == 0) {
523 d1cda826 2017-11-06 stsp char *p;
524 d1cda826 2017-11-06 stsp
525 d1cda826 2017-11-06 stsp remain -= tlen;
526 d1cda826 2017-11-06 stsp if (remain <= 0) {
527 d1cda826 2017-11-06 stsp err = got_error(GOT_ERR_BAD_OBJ_DATA);
528 d1cda826 2017-11-06 stsp goto done;
529 d1cda826 2017-11-06 stsp }
530 d1cda826 2017-11-06 stsp s += tlen;
531 d1cda826 2017-11-06 stsp p = strchr(s, '\n');
532 d1cda826 2017-11-06 stsp if (p == NULL) {
533 d1cda826 2017-11-06 stsp err = got_error(GOT_ERR_BAD_OBJ_DATA);
534 d1cda826 2017-11-06 stsp goto done;
535 d1cda826 2017-11-06 stsp }
536 d1cda826 2017-11-06 stsp *p = '\0';
537 d1cda826 2017-11-06 stsp (*commit)->author = strdup(s);
538 d1cda826 2017-11-06 stsp if ((*commit)->author == NULL) {
539 0a585a0d 2018-03-17 stsp err = got_error_from_errno();
540 d1cda826 2017-11-06 stsp goto done;
541 d1cda826 2017-11-06 stsp }
542 d1cda826 2017-11-06 stsp s += strlen((*commit)->author) + 1;
543 eb651edf 2018-02-11 stsp remain -= strlen((*commit)->author) + 1;
544 d1cda826 2017-11-06 stsp }
545 d1cda826 2017-11-06 stsp
546 d1cda826 2017-11-06 stsp tlen = strlen(GOT_COMMIT_TAG_COMMITTER);
547 d1cda826 2017-11-06 stsp if (strncmp(s, GOT_COMMIT_TAG_COMMITTER, tlen) == 0) {
548 d1cda826 2017-11-06 stsp char *p;
549 d1cda826 2017-11-06 stsp
550 d1cda826 2017-11-06 stsp remain -= tlen;
551 d1cda826 2017-11-06 stsp if (remain <= 0) {
552 d1cda826 2017-11-06 stsp err = got_error(GOT_ERR_BAD_OBJ_DATA);
553 d1cda826 2017-11-06 stsp goto done;
554 d1cda826 2017-11-06 stsp }
555 d1cda826 2017-11-06 stsp s += tlen;
556 d1cda826 2017-11-06 stsp p = strchr(s, '\n');
557 d1cda826 2017-11-06 stsp if (p == NULL) {
558 d1cda826 2017-11-06 stsp err = got_error(GOT_ERR_BAD_OBJ_DATA);
559 d1cda826 2017-11-06 stsp goto done;
560 d1cda826 2017-11-06 stsp }
561 d1cda826 2017-11-06 stsp *p = '\0';
562 d1cda826 2017-11-06 stsp (*commit)->committer = strdup(s);
563 d1cda826 2017-11-06 stsp if ((*commit)->committer == NULL) {
564 0a585a0d 2018-03-17 stsp err = got_error_from_errno();
565 d1cda826 2017-11-06 stsp goto done;
566 d1cda826 2017-11-06 stsp }
567 d1cda826 2017-11-06 stsp s += strlen((*commit)->committer) + 1;
568 eb651edf 2018-02-11 stsp remain -= strlen((*commit)->committer) + 1;
569 d1cda826 2017-11-06 stsp }
570 d1cda826 2017-11-06 stsp
571 eb651edf 2018-02-11 stsp (*commit)->logmsg = strndup(s, remain);
572 eb651edf 2018-02-11 stsp if ((*commit)->logmsg == NULL) {
573 0a585a0d 2018-03-17 stsp err = got_error_from_errno();
574 eb651edf 2018-02-11 stsp goto done;
575 eb651edf 2018-02-11 stsp }
576 d1cda826 2017-11-06 stsp done:
577 59ece79d 2018-02-12 stsp if (err) {
578 d1cda826 2017-11-06 stsp got_object_commit_close(*commit);
579 59ece79d 2018-02-12 stsp *commit = NULL;
580 59ece79d 2018-02-12 stsp }
581 0ffeb3c2 2017-11-26 stsp return err;
582 0ffeb3c2 2017-11-26 stsp }
583 0ffeb3c2 2017-11-26 stsp
584 0ffeb3c2 2017-11-26 stsp static void
585 0ffeb3c2 2017-11-26 stsp tree_entry_close(struct got_tree_entry *te)
586 0ffeb3c2 2017-11-26 stsp {
587 59ece79d 2018-02-12 stsp free(te->id);
588 0ffeb3c2 2017-11-26 stsp free(te->name);
589 0ffeb3c2 2017-11-26 stsp free(te);
590 0ffeb3c2 2017-11-26 stsp }
591 0ffeb3c2 2017-11-26 stsp
592 e033d803 2018-04-23 stsp struct got_tree_entry *
593 e033d803 2018-04-23 stsp got_alloc_tree_entry_partial(void)
594 e033d803 2018-04-23 stsp {
595 e033d803 2018-04-23 stsp struct got_tree_entry *te;
596 e033d803 2018-04-23 stsp
597 e033d803 2018-04-23 stsp te = calloc(1, sizeof(*te));
598 e033d803 2018-04-23 stsp if (te == NULL)
599 e033d803 2018-04-23 stsp return NULL;
600 e033d803 2018-04-23 stsp
601 e033d803 2018-04-23 stsp te->id = calloc(1, sizeof(*te->id));
602 e033d803 2018-04-23 stsp if (te->id == NULL) {
603 e033d803 2018-04-23 stsp free(te);
604 e033d803 2018-04-23 stsp te = NULL;
605 e033d803 2018-04-23 stsp }
606 e033d803 2018-04-23 stsp return te;
607 e033d803 2018-04-23 stsp }
608 e033d803 2018-04-23 stsp
609 0ffeb3c2 2017-11-26 stsp static const struct got_error *
610 0ffeb3c2 2017-11-26 stsp parse_tree_entry(struct got_tree_entry **te, size_t *elen, char *buf,
611 0ffeb3c2 2017-11-26 stsp size_t maxlen)
612 0ffeb3c2 2017-11-26 stsp {
613 0ffeb3c2 2017-11-26 stsp char *p = buf, *space;
614 0ffeb3c2 2017-11-26 stsp const struct got_error *err = NULL;
615 0ffeb3c2 2017-11-26 stsp
616 e033d803 2018-04-23 stsp *te = got_alloc_tree_entry_partial();
617 0ffeb3c2 2017-11-26 stsp if (*te == NULL)
618 0a585a0d 2018-03-17 stsp return got_error_from_errno();
619 59ece79d 2018-02-12 stsp
620 0ffeb3c2 2017-11-26 stsp *elen = strlen(buf) + 1;
621 0ffeb3c2 2017-11-26 stsp if (*elen > maxlen) {
622 0ffeb3c2 2017-11-26 stsp free(*te);
623 59ece79d 2018-02-12 stsp *te = NULL;
624 0ffeb3c2 2017-11-26 stsp return got_error(GOT_ERR_BAD_OBJ_DATA);
625 0ffeb3c2 2017-11-26 stsp }
626 0ffeb3c2 2017-11-26 stsp
627 0ffeb3c2 2017-11-26 stsp space = strchr(buf, ' ');
628 0ffeb3c2 2017-11-26 stsp if (space == NULL) {
629 0a585a0d 2018-03-17 stsp err = got_error(GOT_ERR_BAD_OBJ_DATA);
630 0ffeb3c2 2017-11-26 stsp free(*te);
631 59ece79d 2018-02-12 stsp *te = NULL;
632 0a585a0d 2018-03-17 stsp return err;
633 0ffeb3c2 2017-11-26 stsp }
634 0ffeb3c2 2017-11-26 stsp while (*p != ' ') {
635 0ffeb3c2 2017-11-26 stsp if (*p < '0' && *p > '7') {
636 0ffeb3c2 2017-11-26 stsp err = got_error(GOT_ERR_BAD_OBJ_DATA);
637 0ffeb3c2 2017-11-26 stsp goto done;
638 0ffeb3c2 2017-11-26 stsp }
639 0ffeb3c2 2017-11-26 stsp (*te)->mode <<= 3;
640 0ffeb3c2 2017-11-26 stsp (*te)->mode |= *p - '0';
641 0ffeb3c2 2017-11-26 stsp p++;
642 0ffeb3c2 2017-11-26 stsp }
643 0ffeb3c2 2017-11-26 stsp
644 0ffeb3c2 2017-11-26 stsp (*te)->name = strdup(space + 1);
645 0ffeb3c2 2017-11-26 stsp if (*elen > maxlen || maxlen - *elen < SHA1_DIGEST_LENGTH) {
646 0ffeb3c2 2017-11-26 stsp err = got_error(GOT_ERR_BAD_OBJ_DATA);
647 0ffeb3c2 2017-11-26 stsp goto done;
648 0ffeb3c2 2017-11-26 stsp }
649 0ffeb3c2 2017-11-26 stsp buf += strlen(buf) + 1;
650 59ece79d 2018-02-12 stsp memcpy((*te)->id->sha1, buf, SHA1_DIGEST_LENGTH);
651 0ffeb3c2 2017-11-26 stsp *elen += SHA1_DIGEST_LENGTH;
652 0ffeb3c2 2017-11-26 stsp done:
653 59ece79d 2018-02-12 stsp if (err) {
654 0ffeb3c2 2017-11-26 stsp tree_entry_close(*te);
655 59ece79d 2018-02-12 stsp *te = NULL;
656 59ece79d 2018-02-12 stsp }
657 d1cda826 2017-11-06 stsp return err;
658 d1cda826 2017-11-06 stsp }
659 d1cda826 2017-11-06 stsp
660 d1cda826 2017-11-06 stsp static const struct got_error *
661 e033d803 2018-04-23 stsp parse_tree_object(struct got_tree_object **tree, uint8_t *buf, size_t len)
662 0ffeb3c2 2017-11-26 stsp {
663 90356acc 2018-01-27 stsp const struct got_error *err;
664 0ffeb3c2 2017-11-26 stsp size_t remain = len;
665 0ffeb3c2 2017-11-26 stsp
666 0ffeb3c2 2017-11-26 stsp *tree = calloc(1, sizeof(**tree));
667 0ffeb3c2 2017-11-26 stsp if (*tree == NULL)
668 0a585a0d 2018-03-17 stsp return got_error_from_errno();
669 0ffeb3c2 2017-11-26 stsp
670 0ffeb3c2 2017-11-26 stsp SIMPLEQ_INIT(&(*tree)->entries);
671 0ffeb3c2 2017-11-26 stsp
672 0ffeb3c2 2017-11-26 stsp while (remain > 0) {
673 0ffeb3c2 2017-11-26 stsp struct got_tree_entry *te;
674 0ffeb3c2 2017-11-26 stsp size_t elen;
675 0ffeb3c2 2017-11-26 stsp
676 90356acc 2018-01-27 stsp err = parse_tree_entry(&te, &elen, buf, remain);
677 90356acc 2018-01-27 stsp if (err)
678 90356acc 2018-01-27 stsp return err;
679 0ffeb3c2 2017-11-26 stsp (*tree)->nentries++;
680 0ffeb3c2 2017-11-26 stsp SIMPLEQ_INSERT_TAIL(&(*tree)->entries, te, entry);
681 0ffeb3c2 2017-11-26 stsp buf += elen;
682 0ffeb3c2 2017-11-26 stsp remain -= elen;
683 0ffeb3c2 2017-11-26 stsp }
684 0ffeb3c2 2017-11-26 stsp
685 0ffeb3c2 2017-11-26 stsp if (remain != 0) {
686 0ffeb3c2 2017-11-26 stsp got_object_tree_close(*tree);
687 0ffeb3c2 2017-11-26 stsp return got_error(GOT_ERR_BAD_OBJ_DATA);
688 0ffeb3c2 2017-11-26 stsp }
689 0ffeb3c2 2017-11-26 stsp
690 0ffeb3c2 2017-11-26 stsp return NULL;
691 0ffeb3c2 2017-11-26 stsp }
692 0ffeb3c2 2017-11-26 stsp
693 0ffeb3c2 2017-11-26 stsp static const struct got_error *
694 eb651edf 2018-02-11 stsp read_to_mem(uint8_t **outbuf, size_t *outlen, FILE *f)
695 eb651edf 2018-02-11 stsp {
696 eb651edf 2018-02-11 stsp const struct got_error *err = NULL;
697 eb651edf 2018-02-11 stsp static const size_t blocksize = 512;
698 eb651edf 2018-02-11 stsp size_t n, total, remain;
699 eb651edf 2018-02-11 stsp uint8_t *buf;
700 eb651edf 2018-02-11 stsp
701 eb651edf 2018-02-11 stsp *outbuf = NULL;
702 eb651edf 2018-02-11 stsp *outlen = 0;
703 eb651edf 2018-02-11 stsp
704 eb651edf 2018-02-11 stsp buf = calloc(1, blocksize);
705 eb651edf 2018-02-11 stsp if (buf == NULL)
706 0a585a0d 2018-03-17 stsp return got_error_from_errno();
707 eb651edf 2018-02-11 stsp
708 eb651edf 2018-02-11 stsp remain = blocksize;
709 eb651edf 2018-02-11 stsp total = 0;
710 eb651edf 2018-02-11 stsp while (1) {
711 eb651edf 2018-02-11 stsp if (remain == 0) {
712 eb651edf 2018-02-11 stsp uint8_t *newbuf;
713 eb651edf 2018-02-11 stsp newbuf = reallocarray(buf, 1, total + blocksize);
714 eb651edf 2018-02-11 stsp if (newbuf == NULL) {
715 0a585a0d 2018-03-17 stsp err = got_error_from_errno();
716 eb651edf 2018-02-11 stsp goto done;
717 eb651edf 2018-02-11 stsp }
718 eb651edf 2018-02-11 stsp buf = newbuf;
719 eb651edf 2018-02-11 stsp remain += blocksize;
720 eb651edf 2018-02-11 stsp }
721 be89e2b1 2018-03-03 stsp n = fread(buf + total, 1, remain, f);
722 eb651edf 2018-02-11 stsp if (n == 0) {
723 eb651edf 2018-02-11 stsp if (ferror(f)) {
724 eb651edf 2018-02-11 stsp err = got_ferror(f, GOT_ERR_IO);
725 eb651edf 2018-02-11 stsp goto done;
726 eb651edf 2018-02-11 stsp }
727 eb651edf 2018-02-11 stsp break; /* EOF */
728 eb651edf 2018-02-11 stsp }
729 eb651edf 2018-02-11 stsp remain -= n;
730 eb651edf 2018-02-11 stsp total += n;
731 eb651edf 2018-02-11 stsp };
732 eb651edf 2018-02-11 stsp
733 eb651edf 2018-02-11 stsp done:
734 eb651edf 2018-02-11 stsp if (err == NULL) {
735 eb651edf 2018-02-11 stsp *outbuf = buf;
736 eb651edf 2018-02-11 stsp *outlen = total;
737 eb651edf 2018-02-11 stsp } else
738 eb651edf 2018-02-11 stsp free(buf);
739 eb651edf 2018-02-11 stsp return err;
740 eb651edf 2018-02-11 stsp }
741 eb651edf 2018-02-11 stsp
742 eb651edf 2018-02-11 stsp static const struct got_error *
743 bff6ca00 2018-04-23 stsp read_commit_object(struct got_commit_object **commit, struct got_object *obj,
744 bff6ca00 2018-04-23 stsp FILE *f)
745 d1cda826 2017-11-06 stsp {
746 d1cda826 2017-11-06 stsp const struct got_error *err = NULL;
747 d1cda826 2017-11-06 stsp size_t len;
748 eb651edf 2018-02-11 stsp uint8_t *p;
749 d1cda826 2017-11-06 stsp
750 eb651edf 2018-02-11 stsp if (obj->flags & GOT_OBJ_FLAG_PACKED)
751 eb651edf 2018-02-11 stsp err = read_to_mem(&p, &len, f);
752 eb651edf 2018-02-11 stsp else
753 eb651edf 2018-02-11 stsp err = got_inflate_to_mem(&p, &len, f);
754 4558fcd4 2018-01-14 stsp if (err)
755 d1cda826 2017-11-06 stsp return err;
756 d1cda826 2017-11-06 stsp
757 d1cda826 2017-11-06 stsp if (len < obj->hdrlen + obj->size) {
758 d1cda826 2017-11-06 stsp err = got_error(GOT_ERR_BAD_OBJ_DATA);
759 d1cda826 2017-11-06 stsp goto done;
760 d1cda826 2017-11-06 stsp }
761 d1cda826 2017-11-06 stsp
762 d1cda826 2017-11-06 stsp /* Skip object header. */
763 d1cda826 2017-11-06 stsp len -= obj->hdrlen;
764 eb651edf 2018-02-11 stsp err = parse_commit_object(commit, p + obj->hdrlen, len);
765 eb651edf 2018-02-11 stsp free(p);
766 d1cda826 2017-11-06 stsp done:
767 d1cda826 2017-11-06 stsp return err;
768 d1cda826 2017-11-06 stsp }
769 d1cda826 2017-11-06 stsp
770 bff6ca00 2018-04-23 stsp static void
771 bff6ca00 2018-04-23 stsp read_commit_object_privsep_child(struct got_object *obj, int obj_fd,
772 bff6ca00 2018-04-23 stsp int imsg_fds[2])
773 bff6ca00 2018-04-23 stsp {
774 bff6ca00 2018-04-23 stsp const struct got_error *err = NULL;
775 bff6ca00 2018-04-23 stsp struct got_commit_object *commit = NULL;
776 bff6ca00 2018-04-23 stsp struct imsgbuf ibuf;
777 bff6ca00 2018-04-23 stsp FILE *f = NULL;
778 bff6ca00 2018-04-23 stsp int status = 0;
779 bff6ca00 2018-04-23 stsp
780 be37c2e6 2018-04-24 stsp setproctitle("read commit object");
781 bff6ca00 2018-04-23 stsp close(imsg_fds[0]);
782 bff6ca00 2018-04-23 stsp imsg_init(&ibuf, imsg_fds[1]);
783 bff6ca00 2018-04-23 stsp
784 bff6ca00 2018-04-23 stsp /* revoke access to most system calls */
785 bff6ca00 2018-04-23 stsp if (pledge("stdio", NULL) == -1) {
786 bff6ca00 2018-04-23 stsp err = got_error_from_errno();
787 bff6ca00 2018-04-23 stsp goto done;
788 bff6ca00 2018-04-23 stsp }
789 bff6ca00 2018-04-23 stsp
790 bff6ca00 2018-04-23 stsp f = fdopen(obj_fd, "rb");
791 bff6ca00 2018-04-23 stsp if (f == NULL) {
792 bff6ca00 2018-04-23 stsp err = got_error_from_errno();
793 bff6ca00 2018-04-23 stsp close(obj_fd);
794 bff6ca00 2018-04-23 stsp goto done;
795 bff6ca00 2018-04-23 stsp }
796 bff6ca00 2018-04-23 stsp
797 bff6ca00 2018-04-23 stsp err = read_commit_object(&commit, obj, f);
798 bff6ca00 2018-04-23 stsp if (err)
799 bff6ca00 2018-04-23 stsp goto done;
800 bff6ca00 2018-04-23 stsp
801 068fd2bf 2018-04-24 stsp err = got_privsep_send_commit(&ibuf, commit);
802 bff6ca00 2018-04-23 stsp done:
803 bff6ca00 2018-04-23 stsp if (commit)
804 bff6ca00 2018-04-23 stsp got_object_commit_close(commit);
805 bff6ca00 2018-04-23 stsp if (err) {
806 bff6ca00 2018-04-23 stsp got_privsep_send_error(&ibuf, err);
807 bff6ca00 2018-04-23 stsp status = 1;
808 bff6ca00 2018-04-23 stsp }
809 bff6ca00 2018-04-23 stsp if (f)
810 bff6ca00 2018-04-23 stsp fclose(f);
811 bff6ca00 2018-04-23 stsp imsg_clear(&ibuf);
812 bff6ca00 2018-04-23 stsp close(imsg_fds[1]);
813 bff6ca00 2018-04-23 stsp _exit(status);
814 bff6ca00 2018-04-23 stsp }
815 bff6ca00 2018-04-23 stsp
816 bff6ca00 2018-04-23 stsp static const struct got_error *
817 bff6ca00 2018-04-23 stsp read_commit_object_privsep(struct got_commit_object **commit,
818 bff6ca00 2018-04-23 stsp struct got_repository *repo, struct got_object *obj, int fd)
819 bff6ca00 2018-04-23 stsp {
820 b419fc47 2018-04-26 stsp const struct got_error *err = NULL, *err_child = NULL;
821 bff6ca00 2018-04-23 stsp struct imsgbuf parent_ibuf;
822 bff6ca00 2018-04-23 stsp int imsg_fds[2];
823 bff6ca00 2018-04-23 stsp pid_t pid;
824 bff6ca00 2018-04-23 stsp
825 bff6ca00 2018-04-23 stsp if (socketpair(AF_UNIX, SOCK_STREAM, PF_UNSPEC, imsg_fds) == -1)
826 bff6ca00 2018-04-23 stsp return got_error_from_errno();
827 bff6ca00 2018-04-23 stsp
828 bff6ca00 2018-04-23 stsp pid = fork();
829 bff6ca00 2018-04-23 stsp if (pid == -1)
830 bff6ca00 2018-04-23 stsp return got_error_from_errno();
831 bff6ca00 2018-04-23 stsp else if (pid == 0) {
832 bff6ca00 2018-04-23 stsp read_commit_object_privsep_child(obj, fd, imsg_fds);
833 e506bf32 2018-04-23 stsp /* not reached */
834 bff6ca00 2018-04-23 stsp }
835 bff6ca00 2018-04-23 stsp
836 bff6ca00 2018-04-23 stsp close(imsg_fds[1]);
837 bff6ca00 2018-04-23 stsp imsg_init(&parent_ibuf, imsg_fds[0]);
838 068fd2bf 2018-04-24 stsp err = got_privsep_recv_commit(commit, &parent_ibuf);
839 bff6ca00 2018-04-23 stsp imsg_clear(&parent_ibuf);
840 b419fc47 2018-04-26 stsp err_child = wait_for_child(pid);
841 bff6ca00 2018-04-23 stsp close(imsg_fds[0]);
842 b419fc47 2018-04-26 stsp return err ? err : err_child;
843 bff6ca00 2018-04-23 stsp }
844 bff6ca00 2018-04-23 stsp
845 d1cda826 2017-11-06 stsp const struct got_error *
846 d1cda826 2017-11-06 stsp got_object_commit_open(struct got_commit_object **commit,
847 d1cda826 2017-11-06 stsp struct got_repository *repo, struct got_object *obj)
848 d1cda826 2017-11-06 stsp {
849 d1cda826 2017-11-06 stsp const struct got_error *err = NULL;
850 d1cda826 2017-11-06 stsp
851 d1cda826 2017-11-06 stsp if (obj->type != GOT_OBJ_TYPE_COMMIT)
852 d1cda826 2017-11-06 stsp return got_error(GOT_ERR_OBJ_TYPE);
853 d1cda826 2017-11-06 stsp
854 ea35256b 2018-03-16 stsp if (obj->flags & GOT_OBJ_FLAG_PACKED) {
855 ea35256b 2018-03-16 stsp uint8_t *buf;
856 ea35256b 2018-03-16 stsp size_t len;
857 ea35256b 2018-03-16 stsp err = got_packfile_extract_object_to_mem(&buf, &len, obj, repo);
858 ea35256b 2018-03-16 stsp if (err)
859 ea35256b 2018-03-16 stsp return err;
860 b29656e2 2018-03-16 stsp obj->size = len;
861 b29656e2 2018-03-16 stsp err = parse_commit_object(commit, buf, len);
862 ea35256b 2018-03-16 stsp free(buf);
863 ea35256b 2018-03-16 stsp } else {
864 d5003b79 2018-04-22 stsp int fd;
865 d5003b79 2018-04-22 stsp err = open_loose_object(&fd, obj, repo);
866 ea35256b 2018-03-16 stsp if (err)
867 ea35256b 2018-03-16 stsp return err;
868 bff6ca00 2018-04-23 stsp err = read_commit_object_privsep(commit, repo, obj, fd);
869 bff6ca00 2018-04-23 stsp close(fd);
870 ea35256b 2018-03-16 stsp }
871 d1cda826 2017-11-06 stsp return err;
872 d1cda826 2017-11-06 stsp }
873 d1cda826 2017-11-06 stsp
874 d1cda826 2017-11-06 stsp void
875 d1cda826 2017-11-06 stsp got_object_commit_close(struct got_commit_object *commit)
876 d1cda826 2017-11-06 stsp {
877 d1cda826 2017-11-06 stsp struct got_parent_id *pid;
878 d1cda826 2017-11-06 stsp
879 d1cda826 2017-11-06 stsp while (!SIMPLEQ_EMPTY(&commit->parent_ids)) {
880 d1cda826 2017-11-06 stsp pid = SIMPLEQ_FIRST(&commit->parent_ids);
881 d1cda826 2017-11-06 stsp SIMPLEQ_REMOVE_HEAD(&commit->parent_ids, entry);
882 59ece79d 2018-02-12 stsp free(pid->id);
883 d1cda826 2017-11-06 stsp free(pid);
884 d1cda826 2017-11-06 stsp }
885 d1cda826 2017-11-06 stsp
886 59ece79d 2018-02-12 stsp free(commit->tree_id);
887 d1cda826 2017-11-06 stsp free(commit->author);
888 d1cda826 2017-11-06 stsp free(commit->committer);
889 d1cda826 2017-11-06 stsp free(commit->logmsg);
890 d1cda826 2017-11-06 stsp free(commit);
891 d1cda826 2017-11-06 stsp }
892 0ffeb3c2 2017-11-26 stsp
893 0ffeb3c2 2017-11-26 stsp static const struct got_error *
894 e033d803 2018-04-23 stsp read_tree_object(struct got_tree_object **tree, struct got_object *obj, FILE *f)
895 0ffeb3c2 2017-11-26 stsp {
896 0ffeb3c2 2017-11-26 stsp const struct got_error *err = NULL;
897 0ffeb3c2 2017-11-26 stsp size_t len;
898 eb651edf 2018-02-11 stsp uint8_t *p;
899 0ffeb3c2 2017-11-26 stsp
900 eb651edf 2018-02-11 stsp if (obj->flags & GOT_OBJ_FLAG_PACKED)
901 eb651edf 2018-02-11 stsp err = read_to_mem(&p, &len, f);
902 eb651edf 2018-02-11 stsp else
903 eb651edf 2018-02-11 stsp err = got_inflate_to_mem(&p, &len, f);
904 4558fcd4 2018-01-14 stsp if (err)
905 0ffeb3c2 2017-11-26 stsp return err;
906 0ffeb3c2 2017-11-26 stsp
907 0ffeb3c2 2017-11-26 stsp if (len < obj->hdrlen + obj->size) {
908 0ffeb3c2 2017-11-26 stsp err = got_error(GOT_ERR_BAD_OBJ_DATA);
909 0ffeb3c2 2017-11-26 stsp goto done;
910 0ffeb3c2 2017-11-26 stsp }
911 0ffeb3c2 2017-11-26 stsp
912 0ffeb3c2 2017-11-26 stsp /* Skip object header. */
913 0ffeb3c2 2017-11-26 stsp len -= obj->hdrlen;
914 e033d803 2018-04-23 stsp err = parse_tree_object(tree, p + obj->hdrlen, len);
915 eb651edf 2018-02-11 stsp free(p);
916 e033d803 2018-04-23 stsp done:
917 e033d803 2018-04-23 stsp return err;
918 e033d803 2018-04-23 stsp }
919 e033d803 2018-04-23 stsp
920 e033d803 2018-04-23 stsp static void
921 e033d803 2018-04-23 stsp read_tree_object_privsep_child(struct got_object *obj, int obj_fd,
922 e033d803 2018-04-23 stsp int imsg_fds[2])
923 e033d803 2018-04-23 stsp {
924 e033d803 2018-04-23 stsp const struct got_error *err = NULL;
925 e033d803 2018-04-23 stsp struct got_tree_object *tree = NULL;
926 e033d803 2018-04-23 stsp struct imsgbuf ibuf;
927 e033d803 2018-04-23 stsp FILE *f = NULL;
928 e033d803 2018-04-23 stsp int status = 0;
929 e033d803 2018-04-23 stsp
930 be37c2e6 2018-04-24 stsp setproctitle("read tree object");
931 e033d803 2018-04-23 stsp close(imsg_fds[0]);
932 e033d803 2018-04-23 stsp imsg_init(&ibuf, imsg_fds[1]);
933 e033d803 2018-04-23 stsp
934 e033d803 2018-04-23 stsp /* revoke access to most system calls */
935 e033d803 2018-04-23 stsp if (pledge("stdio", NULL) == -1) {
936 e033d803 2018-04-23 stsp err = got_error_from_errno();
937 e033d803 2018-04-23 stsp goto done;
938 e033d803 2018-04-23 stsp }
939 e033d803 2018-04-23 stsp
940 e033d803 2018-04-23 stsp f = fdopen(obj_fd, "rb");
941 e033d803 2018-04-23 stsp if (f == NULL) {
942 e033d803 2018-04-23 stsp err = got_error_from_errno();
943 e033d803 2018-04-23 stsp close(obj_fd);
944 e033d803 2018-04-23 stsp goto done;
945 e033d803 2018-04-23 stsp }
946 e033d803 2018-04-23 stsp
947 e033d803 2018-04-23 stsp err = read_tree_object(&tree, obj, f);
948 e033d803 2018-04-23 stsp if (err)
949 e033d803 2018-04-23 stsp goto done;
950 e033d803 2018-04-23 stsp
951 068fd2bf 2018-04-24 stsp err = got_privsep_send_tree(&ibuf, tree);
952 0ffeb3c2 2017-11-26 stsp done:
953 e033d803 2018-04-23 stsp if (tree)
954 e033d803 2018-04-23 stsp got_object_tree_close(tree);
955 e033d803 2018-04-23 stsp if (err) {
956 e033d803 2018-04-23 stsp got_privsep_send_error(&ibuf, err);
957 e033d803 2018-04-23 stsp status = 1;
958 e033d803 2018-04-23 stsp }
959 e033d803 2018-04-23 stsp if (f)
960 e033d803 2018-04-23 stsp fclose(f);
961 e033d803 2018-04-23 stsp imsg_clear(&ibuf);
962 e033d803 2018-04-23 stsp close(imsg_fds[1]);
963 e033d803 2018-04-23 stsp _exit(status);
964 e033d803 2018-04-23 stsp }
965 e033d803 2018-04-23 stsp
966 e033d803 2018-04-23 stsp static const struct got_error *
967 e033d803 2018-04-23 stsp read_tree_object_privsep(struct got_tree_object **tree, struct got_object *obj,
968 e033d803 2018-04-23 stsp int fd)
969 e033d803 2018-04-23 stsp {
970 b419fc47 2018-04-26 stsp const struct got_error *err = NULL, *err_child = NULL;
971 e033d803 2018-04-23 stsp struct imsgbuf parent_ibuf;
972 e033d803 2018-04-23 stsp int imsg_fds[2];
973 e033d803 2018-04-23 stsp pid_t pid;
974 e033d803 2018-04-23 stsp
975 e033d803 2018-04-23 stsp if (socketpair(AF_UNIX, SOCK_STREAM, PF_UNSPEC, imsg_fds) == -1)
976 e033d803 2018-04-23 stsp return got_error_from_errno();
977 e033d803 2018-04-23 stsp
978 e033d803 2018-04-23 stsp pid = fork();
979 e033d803 2018-04-23 stsp if (pid == -1)
980 e033d803 2018-04-23 stsp return got_error_from_errno();
981 e033d803 2018-04-23 stsp else if (pid == 0) {
982 e033d803 2018-04-23 stsp read_tree_object_privsep_child(obj, fd, imsg_fds);
983 e033d803 2018-04-23 stsp /* not reached */
984 e033d803 2018-04-23 stsp }
985 e033d803 2018-04-23 stsp
986 e033d803 2018-04-23 stsp close(imsg_fds[1]);
987 e033d803 2018-04-23 stsp imsg_init(&parent_ibuf, imsg_fds[0]);
988 068fd2bf 2018-04-24 stsp err = got_privsep_recv_tree(tree, &parent_ibuf);
989 e033d803 2018-04-23 stsp imsg_clear(&parent_ibuf);
990 b419fc47 2018-04-26 stsp err_child = wait_for_child(pid);
991 e033d803 2018-04-23 stsp close(imsg_fds[0]);
992 b419fc47 2018-04-26 stsp return err ? err : err_child;
993 0ffeb3c2 2017-11-26 stsp }
994 0ffeb3c2 2017-11-26 stsp
995 0ffeb3c2 2017-11-26 stsp const struct got_error *
996 0ffeb3c2 2017-11-26 stsp got_object_tree_open(struct got_tree_object **tree,
997 0ffeb3c2 2017-11-26 stsp struct got_repository *repo, struct got_object *obj)
998 0ffeb3c2 2017-11-26 stsp {
999 0ffeb3c2 2017-11-26 stsp const struct got_error *err = NULL;
1000 0ffeb3c2 2017-11-26 stsp
1001 0ffeb3c2 2017-11-26 stsp if (obj->type != GOT_OBJ_TYPE_TREE)
1002 0ffeb3c2 2017-11-26 stsp return got_error(GOT_ERR_OBJ_TYPE);
1003 0ffeb3c2 2017-11-26 stsp
1004 e0ab43e7 2018-03-16 stsp if (obj->flags & GOT_OBJ_FLAG_PACKED) {
1005 e0ab43e7 2018-03-16 stsp uint8_t *buf;
1006 e0ab43e7 2018-03-16 stsp size_t len;
1007 e0ab43e7 2018-03-16 stsp err = got_packfile_extract_object_to_mem(&buf, &len, obj, repo);
1008 e0ab43e7 2018-03-16 stsp if (err)
1009 e0ab43e7 2018-03-16 stsp return err;
1010 b29656e2 2018-03-16 stsp obj->size = len;
1011 e033d803 2018-04-23 stsp err = parse_tree_object(tree, buf, len);
1012 e0ab43e7 2018-03-16 stsp free(buf);
1013 e0ab43e7 2018-03-16 stsp } else {
1014 d5003b79 2018-04-22 stsp int fd;
1015 d5003b79 2018-04-22 stsp err = open_loose_object(&fd, obj, repo);
1016 e0ab43e7 2018-03-16 stsp if (err)
1017 e0ab43e7 2018-03-16 stsp return err;
1018 e033d803 2018-04-23 stsp err = read_tree_object_privsep(tree, obj, fd);
1019 d5003b79 2018-04-22 stsp close(fd);
1020 e0ab43e7 2018-03-16 stsp }
1021 0ffeb3c2 2017-11-26 stsp return err;
1022 0ffeb3c2 2017-11-26 stsp }
1023 0ffeb3c2 2017-11-26 stsp
1024 0ffeb3c2 2017-11-26 stsp void
1025 0ffeb3c2 2017-11-26 stsp got_object_tree_close(struct got_tree_object *tree)
1026 0ffeb3c2 2017-11-26 stsp {
1027 f715ca7f 2017-11-27 stsp struct got_tree_entry *te;
1028 f715ca7f 2017-11-27 stsp
1029 f715ca7f 2017-11-27 stsp while (!SIMPLEQ_EMPTY(&tree->entries)) {
1030 f715ca7f 2017-11-27 stsp te = SIMPLEQ_FIRST(&tree->entries);
1031 f715ca7f 2017-11-27 stsp SIMPLEQ_REMOVE_HEAD(&tree->entries, entry);
1032 f715ca7f 2017-11-27 stsp tree_entry_close(te);
1033 f715ca7f 2017-11-27 stsp }
1034 f715ca7f 2017-11-27 stsp
1035 f715ca7f 2017-11-27 stsp free(tree);
1036 57efb1af 2018-04-24 stsp }
1037 ff6b18f8 2018-04-24 stsp
1038 ff6b18f8 2018-04-24 stsp static const struct got_error *
1039 ff6b18f8 2018-04-24 stsp read_blob_object_privsep_child(int outfd, int infd, int imsg_fds[2])
1040 ff6b18f8 2018-04-24 stsp {
1041 ff6b18f8 2018-04-24 stsp const struct got_error *err = NULL;
1042 ff6b18f8 2018-04-24 stsp struct imsgbuf ibuf;
1043 ff6b18f8 2018-04-24 stsp int status = 0;
1044 2967a784 2018-04-24 stsp size_t size;
1045 8b2180d4 2018-04-26 stsp FILE *infile = NULL;
1046 ff6b18f8 2018-04-24 stsp
1047 be37c2e6 2018-04-24 stsp setproctitle("read blob object");
1048 ff6b18f8 2018-04-24 stsp close(imsg_fds[0]);
1049 ff6b18f8 2018-04-24 stsp imsg_init(&ibuf, imsg_fds[1]);
1050 57efb1af 2018-04-24 stsp
1051 ff6b18f8 2018-04-24 stsp /* revoke access to most system calls */
1052 ff6b18f8 2018-04-24 stsp if (pledge("stdio", NULL) == -1) {
1053 ff6b18f8 2018-04-24 stsp err = got_error_from_errno();
1054 ff6b18f8 2018-04-24 stsp goto done;
1055 ff6b18f8 2018-04-24 stsp }
1056 ff6b18f8 2018-04-24 stsp
1057 8b2180d4 2018-04-26 stsp infile = fdopen(infd, "rb");
1058 8b2180d4 2018-04-26 stsp if (infile == NULL) {
1059 8b2180d4 2018-04-26 stsp err = got_error_from_errno();
1060 8b2180d4 2018-04-26 stsp close(infd);
1061 8b2180d4 2018-04-26 stsp goto done;
1062 8b2180d4 2018-04-26 stsp }
1063 8b2180d4 2018-04-26 stsp err = got_inflate_to_fd(&size, infile, outfd);
1064 8b2180d4 2018-04-26 stsp fclose(infile);
1065 ff6b18f8 2018-04-24 stsp if (err)
1066 ff6b18f8 2018-04-24 stsp goto done;
1067 ff6b18f8 2018-04-24 stsp
1068 2967a784 2018-04-24 stsp err = got_privsep_send_blob(&ibuf, size);
1069 ff6b18f8 2018-04-24 stsp done:
1070 ff6b18f8 2018-04-24 stsp if (err) {
1071 ff6b18f8 2018-04-24 stsp got_privsep_send_error(&ibuf, err);
1072 ff6b18f8 2018-04-24 stsp status = 1;
1073 ff6b18f8 2018-04-24 stsp }
1074 ff6b18f8 2018-04-24 stsp close(outfd);
1075 ff6b18f8 2018-04-24 stsp imsg_clear(&ibuf);
1076 ff6b18f8 2018-04-24 stsp close(imsg_fds[1]);
1077 ff6b18f8 2018-04-24 stsp _exit(status);
1078 ff6b18f8 2018-04-24 stsp }
1079 ff6b18f8 2018-04-24 stsp
1080 ff6b18f8 2018-04-24 stsp static const struct got_error *
1081 2967a784 2018-04-24 stsp read_blob_object_privsep(size_t *size, int outfd, int infd)
1082 ff6b18f8 2018-04-24 stsp {
1083 ff6b18f8 2018-04-24 stsp struct imsgbuf parent_ibuf;
1084 ff6b18f8 2018-04-24 stsp int imsg_fds[2];
1085 b419fc47 2018-04-26 stsp const struct got_error *err = NULL, *err_child = NULL;
1086 ff6b18f8 2018-04-24 stsp pid_t pid;
1087 ff6b18f8 2018-04-24 stsp
1088 ff6b18f8 2018-04-24 stsp if (socketpair(AF_UNIX, SOCK_STREAM, PF_UNSPEC, imsg_fds) == -1)
1089 ff6b18f8 2018-04-24 stsp return got_error_from_errno();
1090 ff6b18f8 2018-04-24 stsp
1091 ff6b18f8 2018-04-24 stsp pid = fork();
1092 ff6b18f8 2018-04-24 stsp if (pid == -1)
1093 ff6b18f8 2018-04-24 stsp return got_error_from_errno();
1094 ff6b18f8 2018-04-24 stsp else if (pid == 0) {
1095 ff6b18f8 2018-04-24 stsp read_blob_object_privsep_child(outfd, infd, imsg_fds);
1096 ff6b18f8 2018-04-24 stsp /* not reached */
1097 ff6b18f8 2018-04-24 stsp }
1098 ff6b18f8 2018-04-24 stsp
1099 ff6b18f8 2018-04-24 stsp close(imsg_fds[1]);
1100 ff6b18f8 2018-04-24 stsp imsg_init(&parent_ibuf, imsg_fds[0]);
1101 2967a784 2018-04-24 stsp err = got_privsep_recv_blob(size, &parent_ibuf);
1102 ff6b18f8 2018-04-24 stsp imsg_clear(&parent_ibuf);
1103 b419fc47 2018-04-26 stsp err_child = wait_for_child(pid);
1104 ff6b18f8 2018-04-24 stsp close(imsg_fds[0]);
1105 ff6b18f8 2018-04-24 stsp if (lseek(outfd, SEEK_SET, 0) == -1)
1106 ff6b18f8 2018-04-24 stsp err = got_error_from_errno();
1107 b419fc47 2018-04-26 stsp return err ? err : err_child;
1108 ff6b18f8 2018-04-24 stsp }
1109 ff6b18f8 2018-04-24 stsp
1110 68482ea3 2017-11-27 stsp const struct got_error *
1111 68482ea3 2017-11-27 stsp got_object_blob_open(struct got_blob_object **blob,
1112 68482ea3 2017-11-27 stsp struct got_repository *repo, struct got_object *obj, size_t blocksize)
1113 68482ea3 2017-11-27 stsp {
1114 68482ea3 2017-11-27 stsp const struct got_error *err = NULL;
1115 68482ea3 2017-11-27 stsp
1116 68482ea3 2017-11-27 stsp if (obj->type != GOT_OBJ_TYPE_BLOB)
1117 68482ea3 2017-11-27 stsp return got_error(GOT_ERR_OBJ_TYPE);
1118 68482ea3 2017-11-27 stsp
1119 7d283eee 2017-11-29 stsp if (blocksize < obj->hdrlen)
1120 7d283eee 2017-11-29 stsp return got_error(GOT_ERR_NO_SPACE);
1121 7d283eee 2017-11-29 stsp
1122 68482ea3 2017-11-27 stsp *blob = calloc(1, sizeof(**blob));
1123 4558fcd4 2018-01-14 stsp if (*blob == NULL)
1124 0a585a0d 2018-03-17 stsp return got_error_from_errno();
1125 68482ea3 2017-11-27 stsp
1126 15c8b0e6 2018-04-24 stsp (*blob)->read_buf = calloc(1, blocksize);
1127 15c8b0e6 2018-04-24 stsp if ((*blob)->read_buf == NULL) {
1128 15c8b0e6 2018-04-24 stsp err = got_error_from_errno();
1129 c7254d79 2018-04-24 stsp goto done;
1130 15c8b0e6 2018-04-24 stsp }
1131 eb651edf 2018-02-11 stsp if (obj->flags & GOT_OBJ_FLAG_PACKED) {
1132 eb651edf 2018-02-11 stsp err = got_packfile_extract_object(&((*blob)->f), obj, repo);
1133 c7254d79 2018-04-24 stsp if (err)
1134 c7254d79 2018-04-24 stsp goto done;
1135 eb651edf 2018-02-11 stsp } else {
1136 3aca5731 2018-04-24 stsp int infd, outfd;
1137 2967a784 2018-04-24 stsp size_t size;
1138 2967a784 2018-04-24 stsp struct stat sb;
1139 c7254d79 2018-04-24 stsp
1140 3aca5731 2018-04-24 stsp err = open_loose_object(&infd, obj, repo);
1141 c7254d79 2018-04-24 stsp if (err)
1142 c7254d79 2018-04-24 stsp goto done;
1143 c7254d79 2018-04-24 stsp
1144 3aca5731 2018-04-24 stsp
1145 3aca5731 2018-04-24 stsp outfd = got_opentempfd();
1146 3aca5731 2018-04-24 stsp if (outfd == -1) {
1147 3aca5731 2018-04-24 stsp err = got_error_from_errno();
1148 3aca5731 2018-04-24 stsp close(infd);
1149 3aca5731 2018-04-24 stsp goto done;
1150 3aca5731 2018-04-24 stsp }
1151 3aca5731 2018-04-24 stsp
1152 2967a784 2018-04-24 stsp err = read_blob_object_privsep(&size, outfd, infd);
1153 3aca5731 2018-04-24 stsp close(infd);
1154 57efb1af 2018-04-24 stsp if (err)
1155 c7254d79 2018-04-24 stsp goto done;
1156 3aca5731 2018-04-24 stsp
1157 2967a784 2018-04-24 stsp if (size != obj->hdrlen + obj->size) {
1158 1a6b3ab7 2018-04-24 stsp err = got_error(GOT_ERR_PRIVSEP_LEN);
1159 2967a784 2018-04-24 stsp close(outfd);
1160 2967a784 2018-04-24 stsp goto done;
1161 2967a784 2018-04-24 stsp }
1162 2967a784 2018-04-24 stsp
1163 2967a784 2018-04-24 stsp if (fstat(outfd, &sb) == -1) {
1164 2967a784 2018-04-24 stsp err = got_error_from_errno();
1165 2967a784 2018-04-24 stsp close(outfd);
1166 2967a784 2018-04-24 stsp goto done;
1167 2967a784 2018-04-24 stsp }
1168 2967a784 2018-04-24 stsp
1169 2967a784 2018-04-24 stsp if (sb.st_size != size) {
1170 2967a784 2018-04-24 stsp err = got_error(GOT_ERR_PRIVSEP_LEN);
1171 2967a784 2018-04-24 stsp close(outfd);
1172 2967a784 2018-04-24 stsp goto done;
1173 2967a784 2018-04-24 stsp }
1174 2967a784 2018-04-24 stsp
1175 3aca5731 2018-04-24 stsp (*blob)->f = fdopen(outfd, "rb");
1176 3aca5731 2018-04-24 stsp if ((*blob)->f == NULL) {
1177 3aca5731 2018-04-24 stsp err = got_error_from_errno();
1178 3aca5731 2018-04-24 stsp close(outfd);
1179 3aca5731 2018-04-24 stsp goto done;
1180 3aca5731 2018-04-24 stsp }
1181 68482ea3 2017-11-27 stsp }
1182 68482ea3 2017-11-27 stsp
1183 7d283eee 2017-11-29 stsp (*blob)->hdrlen = obj->hdrlen;
1184 eb651edf 2018-02-11 stsp (*blob)->blocksize = blocksize;
1185 f78b0693 2017-11-29 stsp memcpy(&(*blob)->id.sha1, obj->id.sha1, SHA1_DIGEST_LENGTH);
1186 7d283eee 2017-11-29 stsp
1187 c7254d79 2018-04-24 stsp done:
1188 c7254d79 2018-04-24 stsp if (err && *blob) {
1189 c7254d79 2018-04-24 stsp if ((*blob)->f)
1190 c7254d79 2018-04-24 stsp fclose((*blob)->f);
1191 c7254d79 2018-04-24 stsp free((*blob)->read_buf);
1192 c7254d79 2018-04-24 stsp free(*blob);
1193 c7254d79 2018-04-24 stsp *blob = NULL;
1194 c7254d79 2018-04-24 stsp }
1195 68482ea3 2017-11-27 stsp return err;
1196 0ffeb3c2 2017-11-26 stsp }
1197 68482ea3 2017-11-27 stsp
1198 68482ea3 2017-11-27 stsp void
1199 68482ea3 2017-11-27 stsp got_object_blob_close(struct got_blob_object *blob)
1200 68482ea3 2017-11-27 stsp {
1201 15c8b0e6 2018-04-24 stsp free(blob->read_buf);
1202 68482ea3 2017-11-27 stsp fclose(blob->f);
1203 68482ea3 2017-11-27 stsp free(blob);
1204 f934cf2c 2018-02-12 stsp }
1205 f934cf2c 2018-02-12 stsp
1206 f934cf2c 2018-02-12 stsp char *
1207 f934cf2c 2018-02-12 stsp got_object_blob_id_str(struct got_blob_object *blob, char *buf, size_t size)
1208 f934cf2c 2018-02-12 stsp {
1209 f934cf2c 2018-02-12 stsp return got_sha1_digest_to_str(blob->id.sha1, buf, size);
1210 f934cf2c 2018-02-12 stsp }
1211 f934cf2c 2018-02-12 stsp
1212 f934cf2c 2018-02-12 stsp size_t
1213 f934cf2c 2018-02-12 stsp got_object_blob_get_hdrlen(struct got_blob_object *blob)
1214 f934cf2c 2018-02-12 stsp {
1215 f934cf2c 2018-02-12 stsp return blob->hdrlen;
1216 68482ea3 2017-11-27 stsp }
1217 68482ea3 2017-11-27 stsp
1218 f934cf2c 2018-02-12 stsp const uint8_t *
1219 f934cf2c 2018-02-12 stsp got_object_blob_get_read_buf(struct got_blob_object *blob)
1220 f934cf2c 2018-02-12 stsp {
1221 f934cf2c 2018-02-12 stsp return blob->read_buf;
1222 f934cf2c 2018-02-12 stsp }
1223 f934cf2c 2018-02-12 stsp
1224 68482ea3 2017-11-27 stsp const struct got_error *
1225 eb651edf 2018-02-11 stsp got_object_blob_read_block(size_t *outlenp, struct got_blob_object *blob)
1226 68482ea3 2017-11-27 stsp {
1227 eb651edf 2018-02-11 stsp size_t n;
1228 eb651edf 2018-02-11 stsp
1229 eb651edf 2018-02-11 stsp n = fread(blob->read_buf, 1, blob->blocksize, blob->f);
1230 eb651edf 2018-02-11 stsp if (n == 0 && ferror(blob->f))
1231 eb651edf 2018-02-11 stsp return got_ferror(blob->f, GOT_ERR_IO);
1232 eb651edf 2018-02-11 stsp *outlenp = n;
1233 eb651edf 2018-02-11 stsp return NULL;
1234 68482ea3 2017-11-27 stsp }