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