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