Blame


1 a440fac0 2018-09-06 stsp /*
2 5aa81393 2020-01-06 stsp * Copyright (c) 2018, 2019, 2020 Stefan Sperling <stsp@openbsd.org>
3 a440fac0 2018-09-06 stsp *
4 a440fac0 2018-09-06 stsp * Permission to use, copy, modify, and distribute this software for any
5 a440fac0 2018-09-06 stsp * purpose with or without fee is hereby granted, provided that the above
6 a440fac0 2018-09-06 stsp * copyright notice and this permission notice appear in all copies.
7 a440fac0 2018-09-06 stsp *
8 a440fac0 2018-09-06 stsp * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
9 a440fac0 2018-09-06 stsp * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
10 a440fac0 2018-09-06 stsp * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
11 a440fac0 2018-09-06 stsp * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
12 a440fac0 2018-09-06 stsp * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
13 a440fac0 2018-09-06 stsp * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
14 a440fac0 2018-09-06 stsp * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
15 a440fac0 2018-09-06 stsp */
16 a440fac0 2018-09-06 stsp
17 a440fac0 2018-09-06 stsp #include <sys/types.h>
18 a440fac0 2018-09-06 stsp #include <sys/stat.h>
19 a440fac0 2018-09-06 stsp #include <sys/uio.h>
20 a440fac0 2018-09-06 stsp #include <sys/socket.h>
21 a440fac0 2018-09-06 stsp #include <sys/wait.h>
22 a440fac0 2018-09-06 stsp
23 a440fac0 2018-09-06 stsp #include <errno.h>
24 a440fac0 2018-09-06 stsp #include <stdio.h>
25 a440fac0 2018-09-06 stsp #include <stdlib.h>
26 a440fac0 2018-09-06 stsp #include <string.h>
27 a440fac0 2018-09-06 stsp #include <stdint.h>
28 a440fac0 2018-09-06 stsp #include <zlib.h>
29 a440fac0 2018-09-06 stsp #include <ctype.h>
30 a440fac0 2018-09-06 stsp #include <limits.h>
31 a440fac0 2018-09-06 stsp #include <time.h>
32 ad242220 2018-09-08 stsp #include <unistd.h>
33 dd038bc6 2021-09-21 thomas.ad
34 dd038bc6 2021-09-21 thomas.ad #include "got_compat.h"
35 a440fac0 2018-09-06 stsp
36 a440fac0 2018-09-06 stsp #include "got_error.h"
37 a440fac0 2018-09-06 stsp #include "got_object.h"
38 a440fac0 2018-09-06 stsp #include "got_repository.h"
39 a440fac0 2018-09-06 stsp #include "got_opentemp.h"
40 324d37e7 2019-05-11 stsp #include "got_path.h"
41 a440fac0 2018-09-06 stsp
42 a440fac0 2018-09-06 stsp #include "got_lib_sha1.h"
43 a440fac0 2018-09-06 stsp #include "got_lib_delta.h"
44 41fa1437 2018-11-05 stsp #include "got_lib_inflate.h"
45 41fa1437 2018-11-05 stsp #include "got_lib_object.h"
46 3022d272 2019-11-14 stsp #include "got_lib_object_parse.h"
47 6bef87be 2018-09-11 stsp #include "got_lib_object_cache.h"
48 15a94983 2018-12-23 stsp #include "got_lib_pack.h"
49 15a94983 2018-12-23 stsp #include "got_lib_privsep.h"
50 ad242220 2018-09-08 stsp #include "got_lib_repository.h"
51 a440fac0 2018-09-06 stsp
52 a440fac0 2018-09-06 stsp #ifndef nitems
53 a440fac0 2018-09-06 stsp #define nitems(_a) (sizeof(_a) / sizeof((_a)[0]))
54 a440fac0 2018-09-06 stsp #endif
55 ca6e02ac 2020-01-07 stsp
56 ca6e02ac 2020-01-07 stsp struct got_object_id *
57 ca6e02ac 2020-01-07 stsp got_object_id_dup(struct got_object_id *id1)
58 ca6e02ac 2020-01-07 stsp {
59 ca6e02ac 2020-01-07 stsp struct got_object_id *id2;
60 ca6e02ac 2020-01-07 stsp
61 ca6e02ac 2020-01-07 stsp id2 = malloc(sizeof(*id2));
62 ca6e02ac 2020-01-07 stsp if (id2 == NULL)
63 ca6e02ac 2020-01-07 stsp return NULL;
64 ca6e02ac 2020-01-07 stsp memcpy(id2, id1, sizeof(*id2));
65 ca6e02ac 2020-01-07 stsp return id2;
66 ca6e02ac 2020-01-07 stsp }
67 a440fac0 2018-09-06 stsp
68 f054b67a 2018-11-05 stsp int
69 f054b67a 2018-11-05 stsp got_object_id_cmp(const struct got_object_id *id1,
70 f054b67a 2018-11-05 stsp const struct got_object_id *id2)
71 f054b67a 2018-11-05 stsp {
72 f054b67a 2018-11-05 stsp return memcmp(id1->sha1, id2->sha1, SHA1_DIGEST_LENGTH);
73 f054b67a 2018-11-05 stsp }
74 f054b67a 2018-11-05 stsp
75 2ff12563 2018-09-15 stsp const struct got_error *
76 5df4932d 2018-11-05 stsp got_object_qid_alloc_partial(struct got_object_qid **qid)
77 5df4932d 2018-11-05 stsp {
78 5df4932d 2018-11-05 stsp const struct got_error *err = NULL;
79 5df4932d 2018-11-05 stsp
80 5df4932d 2018-11-05 stsp *qid = malloc(sizeof(**qid));
81 5df4932d 2018-11-05 stsp if (*qid == NULL)
82 638f9024 2019-05-13 stsp return got_error_from_errno("malloc");
83 5df4932d 2018-11-05 stsp
84 5df4932d 2018-11-05 stsp (*qid)->id = malloc(sizeof(*((*qid)->id)));
85 5df4932d 2018-11-05 stsp if ((*qid)->id == NULL) {
86 638f9024 2019-05-13 stsp err = got_error_from_errno("malloc");
87 5df4932d 2018-11-05 stsp got_object_qid_free(*qid);
88 5df4932d 2018-11-05 stsp *qid = NULL;
89 5df4932d 2018-11-05 stsp return err;
90 5df4932d 2018-11-05 stsp }
91 74a2356f 2021-06-18 stsp (*qid)->data = NULL;
92 5df4932d 2018-11-05 stsp
93 5df4932d 2018-11-05 stsp return NULL;
94 5df4932d 2018-11-05 stsp }
95 5df4932d 2018-11-05 stsp
96 5df4932d 2018-11-05 stsp const struct got_error *
97 2ff12563 2018-09-15 stsp got_object_id_str(char **outbuf, struct got_object_id *id)
98 2ff12563 2018-09-15 stsp {
99 2ff12563 2018-09-15 stsp static const size_t len = SHA1_DIGEST_STRING_LENGTH;
100 2ff12563 2018-09-15 stsp
101 2ff12563 2018-09-15 stsp *outbuf = malloc(len);
102 2ff12563 2018-09-15 stsp if (*outbuf == NULL)
103 638f9024 2019-05-13 stsp return got_error_from_errno("malloc");
104 2ff12563 2018-09-15 stsp
105 2ff12563 2018-09-15 stsp if (got_sha1_digest_to_str(id->sha1, *outbuf, len) == NULL) {
106 2ff12563 2018-09-15 stsp free(*outbuf);
107 2ff12563 2018-09-15 stsp *outbuf = NULL;
108 2ff12563 2018-09-15 stsp return got_error(GOT_ERR_BAD_OBJ_ID_STR);
109 2ff12563 2018-09-15 stsp }
110 a440fac0 2018-09-06 stsp
111 2ff12563 2018-09-15 stsp return NULL;
112 2ff12563 2018-09-15 stsp }
113 2ff12563 2018-09-15 stsp
114 03fa71c8 2018-09-06 stsp void
115 03fa71c8 2018-09-06 stsp got_object_close(struct got_object *obj)
116 03fa71c8 2018-09-06 stsp {
117 03fa71c8 2018-09-06 stsp if (obj->refcnt > 0) {
118 03fa71c8 2018-09-06 stsp obj->refcnt--;
119 03fa71c8 2018-09-06 stsp if (obj->refcnt > 0)
120 03fa71c8 2018-09-06 stsp return;
121 03fa71c8 2018-09-06 stsp }
122 03fa71c8 2018-09-06 stsp
123 03fa71c8 2018-09-06 stsp if (obj->flags & GOT_OBJ_FLAG_DELTIFIED) {
124 03fa71c8 2018-09-06 stsp struct got_delta *delta;
125 dbdddfee 2021-06-23 naddy while (!STAILQ_EMPTY(&obj->deltas.entries)) {
126 dbdddfee 2021-06-23 naddy delta = STAILQ_FIRST(&obj->deltas.entries);
127 dbdddfee 2021-06-23 naddy STAILQ_REMOVE_HEAD(&obj->deltas.entries, entry);
128 2256993b 2019-07-15 stsp free(delta);
129 03fa71c8 2018-09-06 stsp }
130 03fa71c8 2018-09-06 stsp }
131 03fa71c8 2018-09-06 stsp free(obj);
132 03fa71c8 2018-09-06 stsp }
133 03fa71c8 2018-09-06 stsp
134 8ab9215c 2021-10-15 thomas const struct got_error *
135 8ab9215c 2021-10-15 thomas got_object_raw_close(struct got_raw_object *obj)
136 8ab9215c 2021-10-15 thomas {
137 8ab9215c 2021-10-15 thomas const struct got_error *err = NULL;
138 8ab9215c 2021-10-15 thomas
139 8ab9215c 2021-10-15 thomas if (obj->refcnt > 0) {
140 8ab9215c 2021-10-15 thomas obj->refcnt--;
141 8ab9215c 2021-10-15 thomas if (obj->refcnt > 0)
142 8ab9215c 2021-10-15 thomas return NULL;
143 8ab9215c 2021-10-15 thomas }
144 8ab9215c 2021-10-15 thomas
145 8ab9215c 2021-10-15 thomas if (obj->f != NULL && fclose(obj->f) == EOF && err == NULL)
146 8ab9215c 2021-10-15 thomas err = got_error_from_errno("fclose");
147 8ab9215c 2021-10-15 thomas free(obj->data);
148 8ab9215c 2021-10-15 thomas free(obj);
149 8ab9215c 2021-10-15 thomas return err;
150 8ab9215c 2021-10-15 thomas }
151 8ab9215c 2021-10-15 thomas
152 03fa71c8 2018-09-06 stsp void
153 03fa71c8 2018-09-06 stsp got_object_qid_free(struct got_object_qid *qid)
154 03fa71c8 2018-09-06 stsp {
155 03fa71c8 2018-09-06 stsp free(qid->id);
156 03fa71c8 2018-09-06 stsp free(qid);
157 1785f84a 2018-12-23 stsp }
158 1785f84a 2018-12-23 stsp
159 dd88155e 2019-06-29 stsp void
160 dd88155e 2019-06-29 stsp got_object_id_queue_free(struct got_object_id_queue *ids)
161 dd88155e 2019-06-29 stsp {
162 dd88155e 2019-06-29 stsp struct got_object_qid *qid;
163 dd88155e 2019-06-29 stsp
164 dbdddfee 2021-06-23 naddy while (!STAILQ_EMPTY(ids)) {
165 dbdddfee 2021-06-23 naddy qid = STAILQ_FIRST(ids);
166 dbdddfee 2021-06-23 naddy STAILQ_REMOVE_HEAD(ids, entry);
167 dd88155e 2019-06-29 stsp got_object_qid_free(qid);
168 dd88155e 2019-06-29 stsp }
169 dd88155e 2019-06-29 stsp }
170 dd88155e 2019-06-29 stsp
171 1785f84a 2018-12-23 stsp const struct got_error *
172 1785f84a 2018-12-23 stsp got_object_parse_header(struct got_object **obj, char *buf, size_t len)
173 1785f84a 2018-12-23 stsp {
174 ff2a4428 2019-03-19 stsp const char *obj_labels[] = {
175 ff2a4428 2019-03-19 stsp GOT_OBJ_LABEL_COMMIT,
176 ff2a4428 2019-03-19 stsp GOT_OBJ_LABEL_TREE,
177 ff2a4428 2019-03-19 stsp GOT_OBJ_LABEL_BLOB,
178 ff2a4428 2019-03-19 stsp GOT_OBJ_LABEL_TAG,
179 1785f84a 2018-12-23 stsp };
180 1785f84a 2018-12-23 stsp const int obj_types[] = {
181 1785f84a 2018-12-23 stsp GOT_OBJ_TYPE_COMMIT,
182 1785f84a 2018-12-23 stsp GOT_OBJ_TYPE_TREE,
183 1785f84a 2018-12-23 stsp GOT_OBJ_TYPE_BLOB,
184 1785f84a 2018-12-23 stsp GOT_OBJ_TYPE_TAG,
185 1785f84a 2018-12-23 stsp };
186 1785f84a 2018-12-23 stsp int type = 0;
187 1785f84a 2018-12-23 stsp size_t size = 0, hdrlen = 0;
188 16aeacf7 2020-11-26 stsp size_t i;
189 1785f84a 2018-12-23 stsp
190 1785f84a 2018-12-23 stsp *obj = NULL;
191 1785f84a 2018-12-23 stsp
192 9ef4ac16 2019-04-13 stsp hdrlen = strnlen(buf, len) + 1 /* '\0' */;
193 9ef4ac16 2019-04-13 stsp if (hdrlen > len)
194 9ef4ac16 2019-04-13 stsp return got_error(GOT_ERR_BAD_OBJ_HDR);
195 1785f84a 2018-12-23 stsp
196 ff2a4428 2019-03-19 stsp for (i = 0; i < nitems(obj_labels); i++) {
197 ff2a4428 2019-03-19 stsp const char *label = obj_labels[i];
198 ff2a4428 2019-03-19 stsp size_t label_len = strlen(label);
199 1785f84a 2018-12-23 stsp const char *errstr;
200 1785f84a 2018-12-23 stsp
201 ff2a4428 2019-03-19 stsp if (strncmp(buf, label, label_len) != 0)
202 1785f84a 2018-12-23 stsp continue;
203 1785f84a 2018-12-23 stsp
204 1785f84a 2018-12-23 stsp type = obj_types[i];
205 ff2a4428 2019-03-19 stsp if (len <= label_len)
206 1785f84a 2018-12-23 stsp return got_error(GOT_ERR_BAD_OBJ_HDR);
207 ff2a4428 2019-03-19 stsp size = strtonum(buf + label_len, 0, LONG_MAX, &errstr);
208 1785f84a 2018-12-23 stsp if (errstr != NULL)
209 1785f84a 2018-12-23 stsp return got_error(GOT_ERR_BAD_OBJ_HDR);
210 1785f84a 2018-12-23 stsp break;
211 1785f84a 2018-12-23 stsp }
212 1785f84a 2018-12-23 stsp
213 1785f84a 2018-12-23 stsp if (type == 0)
214 1785f84a 2018-12-23 stsp return got_error(GOT_ERR_BAD_OBJ_HDR);
215 1785f84a 2018-12-23 stsp
216 1785f84a 2018-12-23 stsp *obj = calloc(1, sizeof(**obj));
217 1785f84a 2018-12-23 stsp if (*obj == NULL)
218 638f9024 2019-05-13 stsp return got_error_from_errno("calloc");
219 1785f84a 2018-12-23 stsp (*obj)->type = type;
220 1785f84a 2018-12-23 stsp (*obj)->hdrlen = hdrlen;
221 1785f84a 2018-12-23 stsp (*obj)->size = size;
222 1785f84a 2018-12-23 stsp return NULL;
223 1785f84a 2018-12-23 stsp }
224 1785f84a 2018-12-23 stsp
225 1785f84a 2018-12-23 stsp const struct got_error *
226 1785f84a 2018-12-23 stsp got_object_read_header(struct got_object **obj, int fd)
227 1785f84a 2018-12-23 stsp {
228 1785f84a 2018-12-23 stsp const struct got_error *err;
229 23bc48a9 2019-03-19 stsp struct got_inflate_buf zb;
230 dbaa2362 2021-09-28 thomas uint8_t *buf;
231 1785f84a 2018-12-23 stsp const size_t zbsize = 64;
232 1785f84a 2018-12-23 stsp size_t outlen, totlen;
233 1785f84a 2018-12-23 stsp int nbuf = 1;
234 1785f84a 2018-12-23 stsp
235 1785f84a 2018-12-23 stsp *obj = NULL;
236 1785f84a 2018-12-23 stsp
237 1785f84a 2018-12-23 stsp buf = malloc(zbsize);
238 1785f84a 2018-12-23 stsp if (buf == NULL)
239 638f9024 2019-05-13 stsp return got_error_from_errno("malloc");
240 1785f84a 2018-12-23 stsp
241 1e87a3c3 2020-03-18 stsp err = got_inflate_init(&zb, buf, zbsize, NULL);
242 1785f84a 2018-12-23 stsp if (err)
243 1785f84a 2018-12-23 stsp return err;
244 1785f84a 2018-12-23 stsp
245 1785f84a 2018-12-23 stsp totlen = 0;
246 1785f84a 2018-12-23 stsp do {
247 3ab5e33c 2020-03-18 stsp err = got_inflate_read_fd(&zb, fd, &outlen, NULL);
248 1785f84a 2018-12-23 stsp if (err)
249 1785f84a 2018-12-23 stsp goto done;
250 1785f84a 2018-12-23 stsp if (outlen == 0)
251 1785f84a 2018-12-23 stsp break;
252 1785f84a 2018-12-23 stsp totlen += outlen;
253 dedbbd9d 2019-04-13 stsp if (memchr(zb.outbuf, '\0', outlen) == NULL) {
254 dbaa2362 2021-09-28 thomas uint8_t *newbuf;
255 1785f84a 2018-12-23 stsp nbuf++;
256 1785f84a 2018-12-23 stsp newbuf = recallocarray(buf, nbuf - 1, nbuf, zbsize);
257 1785f84a 2018-12-23 stsp if (newbuf == NULL) {
258 638f9024 2019-05-13 stsp err = got_error_from_errno("recallocarray");
259 1785f84a 2018-12-23 stsp goto done;
260 1785f84a 2018-12-23 stsp }
261 1785f84a 2018-12-23 stsp buf = newbuf;
262 1785f84a 2018-12-23 stsp zb.outbuf = newbuf + totlen;
263 1785f84a 2018-12-23 stsp zb.outlen = (nbuf * zbsize) - totlen;
264 1785f84a 2018-12-23 stsp }
265 dedbbd9d 2019-04-13 stsp } while (memchr(zb.outbuf, '\0', outlen) == NULL);
266 1785f84a 2018-12-23 stsp
267 1785f84a 2018-12-23 stsp err = got_object_parse_header(obj, buf, totlen);
268 1785f84a 2018-12-23 stsp done:
269 1785f84a 2018-12-23 stsp free(buf);
270 1785f84a 2018-12-23 stsp got_inflate_end(&zb);
271 1785f84a 2018-12-23 stsp return err;
272 876c234b 2018-09-10 stsp }
273 876c234b 2018-09-10 stsp
274 a440fac0 2018-09-06 stsp struct got_commit_object *
275 a440fac0 2018-09-06 stsp got_object_commit_alloc_partial(void)
276 a440fac0 2018-09-06 stsp {
277 a440fac0 2018-09-06 stsp struct got_commit_object *commit;
278 a440fac0 2018-09-06 stsp
279 a440fac0 2018-09-06 stsp commit = calloc(1, sizeof(*commit));
280 a440fac0 2018-09-06 stsp if (commit == NULL)
281 a440fac0 2018-09-06 stsp return NULL;
282 acf0c7c6 2018-11-05 stsp commit->tree_id = malloc(sizeof(*commit->tree_id));
283 a440fac0 2018-09-06 stsp if (commit->tree_id == NULL) {
284 a440fac0 2018-09-06 stsp free(commit);
285 a440fac0 2018-09-06 stsp return NULL;
286 a440fac0 2018-09-06 stsp }
287 a440fac0 2018-09-06 stsp
288 dbdddfee 2021-06-23 naddy STAILQ_INIT(&commit->parent_ids);
289 a440fac0 2018-09-06 stsp
290 a440fac0 2018-09-06 stsp return commit;
291 a440fac0 2018-09-06 stsp }
292 a440fac0 2018-09-06 stsp
293 a440fac0 2018-09-06 stsp const struct got_error *
294 a440fac0 2018-09-06 stsp got_object_commit_add_parent(struct got_commit_object *commit,
295 a440fac0 2018-09-06 stsp const char *id_str)
296 a440fac0 2018-09-06 stsp {
297 a440fac0 2018-09-06 stsp const struct got_error *err = NULL;
298 a440fac0 2018-09-06 stsp struct got_object_qid *qid;
299 a440fac0 2018-09-06 stsp
300 5df4932d 2018-11-05 stsp err = got_object_qid_alloc_partial(&qid);
301 5df4932d 2018-11-05 stsp if (err)
302 7762fe12 2018-11-05 stsp return err;
303 a440fac0 2018-09-06 stsp
304 a440fac0 2018-09-06 stsp if (!got_parse_sha1_digest(qid->id->sha1, id_str)) {
305 a440fac0 2018-09-06 stsp err = got_error(GOT_ERR_BAD_OBJ_DATA);
306 00eb6a1f 2019-07-15 stsp got_object_qid_free(qid);
307 a440fac0 2018-09-06 stsp return err;
308 a440fac0 2018-09-06 stsp }
309 a440fac0 2018-09-06 stsp
310 dbdddfee 2021-06-23 naddy STAILQ_INSERT_TAIL(&commit->parent_ids, qid, entry);
311 a440fac0 2018-09-06 stsp commit->nparents++;
312 a440fac0 2018-09-06 stsp
313 a440fac0 2018-09-06 stsp return NULL;
314 a440fac0 2018-09-06 stsp }
315 a440fac0 2018-09-06 stsp
316 a440fac0 2018-09-06 stsp static const struct got_error *
317 a440fac0 2018-09-06 stsp parse_gmtoff(time_t *gmtoff, const char *tzstr)
318 a440fac0 2018-09-06 stsp {
319 a440fac0 2018-09-06 stsp int sign = 1;
320 a440fac0 2018-09-06 stsp const char *p = tzstr;
321 a440fac0 2018-09-06 stsp time_t h, m;
322 a440fac0 2018-09-06 stsp
323 a440fac0 2018-09-06 stsp *gmtoff = 0;
324 a440fac0 2018-09-06 stsp
325 a440fac0 2018-09-06 stsp if (*p == '-')
326 a440fac0 2018-09-06 stsp sign = -1;
327 a440fac0 2018-09-06 stsp else if (*p != '+')
328 a440fac0 2018-09-06 stsp return got_error(GOT_ERR_BAD_OBJ_DATA);
329 a440fac0 2018-09-06 stsp p++;
330 a440fac0 2018-09-06 stsp if (!isdigit(*p) && !isdigit(*(p + 1)))
331 a440fac0 2018-09-06 stsp return got_error(GOT_ERR_BAD_OBJ_DATA);
332 a440fac0 2018-09-06 stsp h = (((*p - '0') * 10) + (*(p + 1) - '0'));
333 a440fac0 2018-09-06 stsp
334 a440fac0 2018-09-06 stsp p += 2;
335 a440fac0 2018-09-06 stsp if (!isdigit(*p) && !isdigit(*(p + 1)))
336 a440fac0 2018-09-06 stsp return got_error(GOT_ERR_BAD_OBJ_DATA);
337 a440fac0 2018-09-06 stsp m = ((*p - '0') * 10) + (*(p + 1) - '0');
338 a440fac0 2018-09-06 stsp
339 a440fac0 2018-09-06 stsp *gmtoff = (h * 60 * 60 + m * 60) * sign;
340 a440fac0 2018-09-06 stsp return NULL;
341 a440fac0 2018-09-06 stsp }
342 a440fac0 2018-09-06 stsp
343 a440fac0 2018-09-06 stsp static const struct got_error *
344 ccb26ccd 2018-11-05 stsp parse_commit_time(time_t *time, time_t *gmtoff, char *committer)
345 a440fac0 2018-09-06 stsp {
346 a440fac0 2018-09-06 stsp const struct got_error *err = NULL;
347 a440fac0 2018-09-06 stsp const char *errstr;
348 a440fac0 2018-09-06 stsp char *space, *tzstr;
349 a440fac0 2018-09-06 stsp
350 a440fac0 2018-09-06 stsp /* Parse and strip off trailing timezone indicator string. */
351 a440fac0 2018-09-06 stsp space = strrchr(committer, ' ');
352 a440fac0 2018-09-06 stsp if (space == NULL)
353 a440fac0 2018-09-06 stsp return got_error(GOT_ERR_BAD_OBJ_DATA);
354 a440fac0 2018-09-06 stsp tzstr = strdup(space + 1);
355 a440fac0 2018-09-06 stsp if (tzstr == NULL)
356 638f9024 2019-05-13 stsp return got_error_from_errno("strdup");
357 ccb26ccd 2018-11-05 stsp err = parse_gmtoff(gmtoff, tzstr);
358 a440fac0 2018-09-06 stsp free(tzstr);
359 9dbd8627 2021-02-04 stsp if (err) {
360 9dbd8627 2021-02-04 stsp if (err->code != GOT_ERR_BAD_OBJ_DATA)
361 9dbd8627 2021-02-04 stsp return err;
362 9dbd8627 2021-02-04 stsp /* Old versions of Git omitted the timestamp. */
363 9dbd8627 2021-02-04 stsp *time = 0;
364 9dbd8627 2021-02-04 stsp *gmtoff = 0;
365 9dbd8627 2021-02-04 stsp return NULL;
366 9dbd8627 2021-02-04 stsp }
367 a440fac0 2018-09-06 stsp *space = '\0';
368 a440fac0 2018-09-06 stsp
369 a440fac0 2018-09-06 stsp /* Timestamp is separated from committer name + email by space. */
370 a440fac0 2018-09-06 stsp space = strrchr(committer, ' ');
371 a440fac0 2018-09-06 stsp if (space == NULL)
372 a440fac0 2018-09-06 stsp return got_error(GOT_ERR_BAD_OBJ_DATA);
373 a440fac0 2018-09-06 stsp
374 09867e48 2019-08-13 stsp /* Timestamp parsed here is expressed as UNIX timestamp (UTC). */
375 ccb26ccd 2018-11-05 stsp *time = strtonum(space + 1, 0, INT64_MAX, &errstr);
376 a440fac0 2018-09-06 stsp if (errstr)
377 a440fac0 2018-09-06 stsp return got_error(GOT_ERR_BAD_OBJ_DATA);
378 a440fac0 2018-09-06 stsp
379 a440fac0 2018-09-06 stsp /* Strip off parsed time information, leaving just author and email. */
380 a440fac0 2018-09-06 stsp *space = '\0';
381 a440fac0 2018-09-06 stsp
382 a440fac0 2018-09-06 stsp return NULL;
383 a440fac0 2018-09-06 stsp }
384 a440fac0 2018-09-06 stsp
385 03fa71c8 2018-09-06 stsp void
386 03fa71c8 2018-09-06 stsp got_object_commit_close(struct got_commit_object *commit)
387 03fa71c8 2018-09-06 stsp {
388 03fa71c8 2018-09-06 stsp if (commit->refcnt > 0) {
389 03fa71c8 2018-09-06 stsp commit->refcnt--;
390 03fa71c8 2018-09-06 stsp if (commit->refcnt > 0)
391 03fa71c8 2018-09-06 stsp return;
392 03fa71c8 2018-09-06 stsp }
393 03fa71c8 2018-09-06 stsp
394 dd88155e 2019-06-29 stsp got_object_id_queue_free(&commit->parent_ids);
395 03fa71c8 2018-09-06 stsp free(commit->tree_id);
396 03fa71c8 2018-09-06 stsp free(commit->author);
397 03fa71c8 2018-09-06 stsp free(commit->committer);
398 03fa71c8 2018-09-06 stsp free(commit->logmsg);
399 03fa71c8 2018-09-06 stsp free(commit);
400 45d799e2 2018-12-23 stsp }
401 45d799e2 2018-12-23 stsp
402 45d799e2 2018-12-23 stsp struct got_object_id *
403 45d799e2 2018-12-23 stsp got_object_commit_get_tree_id(struct got_commit_object *commit)
404 45d799e2 2018-12-23 stsp {
405 45d799e2 2018-12-23 stsp return commit->tree_id;
406 45d799e2 2018-12-23 stsp }
407 45d799e2 2018-12-23 stsp
408 45d799e2 2018-12-23 stsp int
409 45d799e2 2018-12-23 stsp got_object_commit_get_nparents(struct got_commit_object *commit)
410 45d799e2 2018-12-23 stsp {
411 45d799e2 2018-12-23 stsp return commit->nparents;
412 03fa71c8 2018-09-06 stsp }
413 03fa71c8 2018-09-06 stsp
414 45d799e2 2018-12-23 stsp const struct got_object_id_queue *
415 45d799e2 2018-12-23 stsp got_object_commit_get_parent_ids(struct got_commit_object *commit)
416 45d799e2 2018-12-23 stsp {
417 45d799e2 2018-12-23 stsp return &commit->parent_ids;
418 45d799e2 2018-12-23 stsp }
419 45d799e2 2018-12-23 stsp
420 45d799e2 2018-12-23 stsp const char *
421 45d799e2 2018-12-23 stsp got_object_commit_get_author(struct got_commit_object *commit)
422 45d799e2 2018-12-23 stsp {
423 45d799e2 2018-12-23 stsp return commit->author;
424 45d799e2 2018-12-23 stsp }
425 45d799e2 2018-12-23 stsp
426 45d799e2 2018-12-23 stsp time_t
427 45d799e2 2018-12-23 stsp got_object_commit_get_author_time(struct got_commit_object *commit)
428 45d799e2 2018-12-23 stsp {
429 45d799e2 2018-12-23 stsp return commit->author_time;
430 45d799e2 2018-12-23 stsp }
431 45d799e2 2018-12-23 stsp
432 45d799e2 2018-12-23 stsp time_t got_object_commit_get_author_gmtoff(struct got_commit_object *commit)
433 45d799e2 2018-12-23 stsp {
434 45d799e2 2018-12-23 stsp return commit->author_gmtoff;
435 45d799e2 2018-12-23 stsp }
436 45d799e2 2018-12-23 stsp
437 45d799e2 2018-12-23 stsp const char *
438 45d799e2 2018-12-23 stsp got_object_commit_get_committer(struct got_commit_object *commit)
439 45d799e2 2018-12-23 stsp {
440 45d799e2 2018-12-23 stsp return commit->committer;
441 45d799e2 2018-12-23 stsp }
442 45d799e2 2018-12-23 stsp
443 45d799e2 2018-12-23 stsp time_t
444 45d799e2 2018-12-23 stsp got_object_commit_get_committer_time(struct got_commit_object *commit)
445 45d799e2 2018-12-23 stsp {
446 45d799e2 2018-12-23 stsp return commit->committer_time;
447 45d799e2 2018-12-23 stsp }
448 45d799e2 2018-12-23 stsp
449 45d799e2 2018-12-23 stsp time_t
450 45d799e2 2018-12-23 stsp got_object_commit_get_committer_gmtoff(struct got_commit_object *commit)
451 45d799e2 2018-12-23 stsp {
452 45d799e2 2018-12-23 stsp return commit->committer_gmtoff;
453 45d799e2 2018-12-23 stsp }
454 5943eee2 2019-08-13 stsp
455 5943eee2 2019-08-13 stsp const struct got_error *
456 5943eee2 2019-08-13 stsp got_object_commit_get_logmsg(char **logmsg, struct got_commit_object *commit)
457 45d799e2 2018-12-23 stsp {
458 5943eee2 2019-08-13 stsp const struct got_error *err = NULL;
459 b9c41b54 2021-08-03 stsp const char *src;
460 b9c41b54 2021-08-03 stsp char *dst;
461 5943eee2 2019-08-13 stsp size_t len;
462 5943eee2 2019-08-13 stsp
463 b9c41b54 2021-08-03 stsp len = strlen(commit->logmsg);
464 b9c41b54 2021-08-03 stsp *logmsg = malloc(len + 2); /* leave room for a trailing \n and \0 */
465 b9c41b54 2021-08-03 stsp if (*logmsg == NULL)
466 b9c41b54 2021-08-03 stsp return got_error_from_errno("malloc");
467 5943eee2 2019-08-13 stsp
468 b9c41b54 2021-08-03 stsp /*
469 b9c41b54 2021-08-03 stsp * Strip out unusual headers. Headers are separated from the commit
470 b9c41b54 2021-08-03 stsp * message body by a single empty line.
471 b9c41b54 2021-08-03 stsp */
472 b9c41b54 2021-08-03 stsp src = commit->logmsg;
473 b9c41b54 2021-08-03 stsp dst = *logmsg;
474 b9c41b54 2021-08-03 stsp while (*src != '\0' && *src != '\n') {
475 b9c41b54 2021-08-03 stsp int copy_header = 1, eol = 0;
476 b9c41b54 2021-08-03 stsp if (strncmp(src, GOT_COMMIT_LABEL_TREE,
477 b9c41b54 2021-08-03 stsp strlen(GOT_COMMIT_LABEL_TREE)) != 0 &&
478 b9c41b54 2021-08-03 stsp strncmp(src, GOT_COMMIT_LABEL_AUTHOR,
479 b9c41b54 2021-08-03 stsp strlen(GOT_COMMIT_LABEL_AUTHOR)) != 0 &&
480 b9c41b54 2021-08-03 stsp strncmp(src, GOT_COMMIT_LABEL_PARENT,
481 b9c41b54 2021-08-03 stsp strlen(GOT_COMMIT_LABEL_PARENT)) != 0 &&
482 b9c41b54 2021-08-03 stsp strncmp(src, GOT_COMMIT_LABEL_COMMITTER,
483 b9c41b54 2021-08-03 stsp strlen(GOT_COMMIT_LABEL_COMMITTER)) != 0)
484 b9c41b54 2021-08-03 stsp copy_header = 0;
485 13555e04 2019-09-28 semarie
486 b9c41b54 2021-08-03 stsp while (*src != '\0' && !eol) {
487 b9c41b54 2021-08-03 stsp if (copy_header) {
488 b9c41b54 2021-08-03 stsp *dst = *src;
489 b9c41b54 2021-08-03 stsp dst++;
490 b9c41b54 2021-08-03 stsp }
491 b9c41b54 2021-08-03 stsp if (*src == '\n')
492 b9c41b54 2021-08-03 stsp eol = 1;
493 b9c41b54 2021-08-03 stsp src++;
494 5943eee2 2019-08-13 stsp }
495 b9c41b54 2021-08-03 stsp }
496 b9c41b54 2021-08-03 stsp *dst = '\0';
497 13555e04 2019-09-28 semarie
498 b9c41b54 2021-08-03 stsp if (strlcat(*logmsg, src, len + 1) >= len + 1) {
499 b9c41b54 2021-08-03 stsp err = got_error(GOT_ERR_NO_SPACE);
500 b9c41b54 2021-08-03 stsp goto done;
501 ef744db3 2020-08-27 stsp }
502 ef744db3 2020-08-27 stsp
503 5943eee2 2019-08-13 stsp /* Trim redundant trailing whitespace. */
504 5943eee2 2019-08-13 stsp len = strlen(*logmsg);
505 5943eee2 2019-08-13 stsp while (len > 1 && isspace((unsigned char)(*logmsg)[len - 2]) &&
506 5943eee2 2019-08-13 stsp isspace((unsigned char)(*logmsg)[len - 1])) {
507 5943eee2 2019-08-13 stsp (*logmsg)[len - 1] = '\0';
508 5943eee2 2019-08-13 stsp len--;
509 5943eee2 2019-08-13 stsp }
510 b9c41b54 2021-08-03 stsp
511 b9c41b54 2021-08-03 stsp /* Append a trailing newline if missing. */
512 b9c41b54 2021-08-03 stsp if (len > 0 && (*logmsg)[len - 1] != '\n') {
513 b9c41b54 2021-08-03 stsp (*logmsg)[len] = '\n';
514 b9c41b54 2021-08-03 stsp (*logmsg)[len + 1] = '\0';
515 b9c41b54 2021-08-03 stsp }
516 5943eee2 2019-08-13 stsp done:
517 5943eee2 2019-08-13 stsp if (err) {
518 5943eee2 2019-08-13 stsp free(*logmsg);
519 5943eee2 2019-08-13 stsp *logmsg = NULL;
520 5943eee2 2019-08-13 stsp }
521 5943eee2 2019-08-13 stsp return err;
522 24ea5512 2019-08-22 stsp }
523 24ea5512 2019-08-22 stsp
524 24ea5512 2019-08-22 stsp const char *
525 24ea5512 2019-08-22 stsp got_object_commit_get_logmsg_raw(struct got_commit_object *commit)
526 24ea5512 2019-08-22 stsp {
527 24ea5512 2019-08-22 stsp return commit->logmsg;
528 45d799e2 2018-12-23 stsp }
529 45d799e2 2018-12-23 stsp
530 a440fac0 2018-09-06 stsp const struct got_error *
531 5e0b25c4 2018-12-24 stsp got_object_parse_commit(struct got_commit_object **commit, char *buf,
532 5e0b25c4 2018-12-24 stsp size_t len)
533 a440fac0 2018-09-06 stsp {
534 a440fac0 2018-09-06 stsp const struct got_error *err = NULL;
535 a440fac0 2018-09-06 stsp char *s = buf;
536 ff2a4428 2019-03-19 stsp size_t label_len;
537 a440fac0 2018-09-06 stsp ssize_t remain = (ssize_t)len;
538 4793d91b 2019-09-22 stsp
539 4793d91b 2019-09-22 stsp if (remain == 0)
540 4793d91b 2019-09-22 stsp return got_error(GOT_ERR_BAD_OBJ_DATA);
541 230a42bd 2019-05-11 jcs
542 a440fac0 2018-09-06 stsp *commit = got_object_commit_alloc_partial();
543 a440fac0 2018-09-06 stsp if (*commit == NULL)
544 638f9024 2019-05-13 stsp return got_error_from_errno("got_object_commit_alloc_partial");
545 a440fac0 2018-09-06 stsp
546 ff2a4428 2019-03-19 stsp label_len = strlen(GOT_COMMIT_LABEL_TREE);
547 ff2a4428 2019-03-19 stsp if (strncmp(s, GOT_COMMIT_LABEL_TREE, label_len) == 0) {
548 ff2a4428 2019-03-19 stsp remain -= label_len;
549 a440fac0 2018-09-06 stsp if (remain < SHA1_DIGEST_STRING_LENGTH) {
550 a440fac0 2018-09-06 stsp err = got_error(GOT_ERR_BAD_OBJ_DATA);
551 a440fac0 2018-09-06 stsp goto done;
552 a440fac0 2018-09-06 stsp }
553 ff2a4428 2019-03-19 stsp s += label_len;
554 a440fac0 2018-09-06 stsp if (!got_parse_sha1_digest((*commit)->tree_id->sha1, s)) {
555 a440fac0 2018-09-06 stsp err = got_error(GOT_ERR_BAD_OBJ_DATA);
556 a440fac0 2018-09-06 stsp goto done;
557 a440fac0 2018-09-06 stsp }
558 a440fac0 2018-09-06 stsp remain -= SHA1_DIGEST_STRING_LENGTH;
559 a440fac0 2018-09-06 stsp s += SHA1_DIGEST_STRING_LENGTH;
560 a440fac0 2018-09-06 stsp } else {
561 a440fac0 2018-09-06 stsp err = got_error(GOT_ERR_BAD_OBJ_DATA);
562 a440fac0 2018-09-06 stsp goto done;
563 a440fac0 2018-09-06 stsp }
564 a440fac0 2018-09-06 stsp
565 ff2a4428 2019-03-19 stsp label_len = strlen(GOT_COMMIT_LABEL_PARENT);
566 ff2a4428 2019-03-19 stsp while (strncmp(s, GOT_COMMIT_LABEL_PARENT, label_len) == 0) {
567 ff2a4428 2019-03-19 stsp remain -= label_len;
568 a440fac0 2018-09-06 stsp if (remain < SHA1_DIGEST_STRING_LENGTH) {
569 a440fac0 2018-09-06 stsp err = got_error(GOT_ERR_BAD_OBJ_DATA);
570 a440fac0 2018-09-06 stsp goto done;
571 a440fac0 2018-09-06 stsp }
572 ff2a4428 2019-03-19 stsp s += label_len;
573 a440fac0 2018-09-06 stsp err = got_object_commit_add_parent(*commit, s);
574 a440fac0 2018-09-06 stsp if (err)
575 a440fac0 2018-09-06 stsp goto done;
576 a440fac0 2018-09-06 stsp
577 a440fac0 2018-09-06 stsp remain -= SHA1_DIGEST_STRING_LENGTH;
578 a440fac0 2018-09-06 stsp s += SHA1_DIGEST_STRING_LENGTH;
579 a440fac0 2018-09-06 stsp }
580 a440fac0 2018-09-06 stsp
581 ff2a4428 2019-03-19 stsp label_len = strlen(GOT_COMMIT_LABEL_AUTHOR);
582 ff2a4428 2019-03-19 stsp if (strncmp(s, GOT_COMMIT_LABEL_AUTHOR, label_len) == 0) {
583 a440fac0 2018-09-06 stsp char *p;
584 a440fac0 2018-09-06 stsp size_t slen;
585 a440fac0 2018-09-06 stsp
586 ff2a4428 2019-03-19 stsp remain -= label_len;
587 a440fac0 2018-09-06 stsp if (remain <= 0) {
588 a440fac0 2018-09-06 stsp err = got_error(GOT_ERR_BAD_OBJ_DATA);
589 a440fac0 2018-09-06 stsp goto done;
590 a440fac0 2018-09-06 stsp }
591 ff2a4428 2019-03-19 stsp s += label_len;
592 dedbbd9d 2019-04-13 stsp p = memchr(s, '\n', remain);
593 a440fac0 2018-09-06 stsp if (p == NULL) {
594 a440fac0 2018-09-06 stsp err = got_error(GOT_ERR_BAD_OBJ_DATA);
595 a440fac0 2018-09-06 stsp goto done;
596 a440fac0 2018-09-06 stsp }
597 a440fac0 2018-09-06 stsp *p = '\0';
598 a440fac0 2018-09-06 stsp slen = strlen(s);
599 ccb26ccd 2018-11-05 stsp err = parse_commit_time(&(*commit)->author_time,
600 ccb26ccd 2018-11-05 stsp &(*commit)->author_gmtoff, s);
601 a440fac0 2018-09-06 stsp if (err)
602 a440fac0 2018-09-06 stsp goto done;
603 a440fac0 2018-09-06 stsp (*commit)->author = strdup(s);
604 a440fac0 2018-09-06 stsp if ((*commit)->author == NULL) {
605 638f9024 2019-05-13 stsp err = got_error_from_errno("strdup");
606 a440fac0 2018-09-06 stsp goto done;
607 a440fac0 2018-09-06 stsp }
608 a440fac0 2018-09-06 stsp s += slen + 1;
609 a440fac0 2018-09-06 stsp remain -= slen + 1;
610 a440fac0 2018-09-06 stsp }
611 a440fac0 2018-09-06 stsp
612 ff2a4428 2019-03-19 stsp label_len = strlen(GOT_COMMIT_LABEL_COMMITTER);
613 ff2a4428 2019-03-19 stsp if (strncmp(s, GOT_COMMIT_LABEL_COMMITTER, label_len) == 0) {
614 a440fac0 2018-09-06 stsp char *p;
615 a440fac0 2018-09-06 stsp size_t slen;
616 a440fac0 2018-09-06 stsp
617 ff2a4428 2019-03-19 stsp remain -= label_len;
618 a440fac0 2018-09-06 stsp if (remain <= 0) {
619 a440fac0 2018-09-06 stsp err = got_error(GOT_ERR_BAD_OBJ_DATA);
620 a440fac0 2018-09-06 stsp goto done;
621 a440fac0 2018-09-06 stsp }
622 ff2a4428 2019-03-19 stsp s += label_len;
623 dedbbd9d 2019-04-13 stsp p = memchr(s, '\n', remain);
624 a440fac0 2018-09-06 stsp if (p == NULL) {
625 a440fac0 2018-09-06 stsp err = got_error(GOT_ERR_BAD_OBJ_DATA);
626 a440fac0 2018-09-06 stsp goto done;
627 a440fac0 2018-09-06 stsp }
628 a440fac0 2018-09-06 stsp *p = '\0';
629 a440fac0 2018-09-06 stsp slen = strlen(s);
630 ccb26ccd 2018-11-05 stsp err = parse_commit_time(&(*commit)->committer_time,
631 ccb26ccd 2018-11-05 stsp &(*commit)->committer_gmtoff, s);
632 a440fac0 2018-09-06 stsp if (err)
633 a440fac0 2018-09-06 stsp goto done;
634 a440fac0 2018-09-06 stsp (*commit)->committer = strdup(s);
635 a440fac0 2018-09-06 stsp if ((*commit)->committer == NULL) {
636 638f9024 2019-05-13 stsp err = got_error_from_errno("strdup");
637 a440fac0 2018-09-06 stsp goto done;
638 a440fac0 2018-09-06 stsp }
639 a440fac0 2018-09-06 stsp s += slen + 1;
640 a440fac0 2018-09-06 stsp remain -= slen + 1;
641 a440fac0 2018-09-06 stsp }
642 a440fac0 2018-09-06 stsp
643 a440fac0 2018-09-06 stsp (*commit)->logmsg = strndup(s, remain);
644 a440fac0 2018-09-06 stsp if ((*commit)->logmsg == NULL) {
645 638f9024 2019-05-13 stsp err = got_error_from_errno("strndup");
646 a440fac0 2018-09-06 stsp goto done;
647 a440fac0 2018-09-06 stsp }
648 a440fac0 2018-09-06 stsp done:
649 a440fac0 2018-09-06 stsp if (err) {
650 a440fac0 2018-09-06 stsp got_object_commit_close(*commit);
651 a440fac0 2018-09-06 stsp *commit = NULL;
652 a440fac0 2018-09-06 stsp }
653 a440fac0 2018-09-06 stsp return err;
654 ed175427 2019-05-09 stsp }
655 ed175427 2019-05-09 stsp
656 ed175427 2019-05-09 stsp void
657 ed175427 2019-05-09 stsp got_object_tree_close(struct got_tree_object *tree)
658 ed175427 2019-05-09 stsp {
659 03fa71c8 2018-09-06 stsp if (tree->refcnt > 0) {
660 03fa71c8 2018-09-06 stsp tree->refcnt--;
661 03fa71c8 2018-09-06 stsp if (tree->refcnt > 0)
662 03fa71c8 2018-09-06 stsp return;
663 03fa71c8 2018-09-06 stsp }
664 03fa71c8 2018-09-06 stsp
665 56e0773d 2019-11-28 stsp free(tree->entries);
666 03fa71c8 2018-09-06 stsp free(tree);
667 03fa71c8 2018-09-06 stsp }
668 03fa71c8 2018-09-06 stsp
669 a440fac0 2018-09-06 stsp static const struct got_error *
670 3022d272 2019-11-14 stsp parse_tree_entry(struct got_parsed_tree_entry **pte, const char **name,
671 3022d272 2019-11-14 stsp size_t *elen, char *buf,
672 a440fac0 2018-09-06 stsp size_t maxlen)
673 a440fac0 2018-09-06 stsp {
674 8914529d 2019-04-13 stsp char *p, *space;
675 a440fac0 2018-09-06 stsp const struct got_error *err = NULL;
676 a0de39f3 2019-08-09 stsp
677 3022d272 2019-11-14 stsp *name = NULL;
678 a0de39f3 2019-08-09 stsp *elen = 0;
679 a440fac0 2018-09-06 stsp
680 3022d272 2019-11-14 stsp *pte = malloc(sizeof(**pte));
681 3022d272 2019-11-14 stsp if (*pte == NULL)
682 3022d272 2019-11-14 stsp return got_error_from_errno("malloc");
683 a440fac0 2018-09-06 stsp
684 9ef4ac16 2019-04-13 stsp *elen = strnlen(buf, maxlen) + 1;
685 a440fac0 2018-09-06 stsp if (*elen > maxlen) {
686 3022d272 2019-11-14 stsp free(*pte);
687 3022d272 2019-11-14 stsp *pte = NULL;
688 a440fac0 2018-09-06 stsp return got_error(GOT_ERR_BAD_OBJ_DATA);
689 a440fac0 2018-09-06 stsp }
690 a440fac0 2018-09-06 stsp
691 dedbbd9d 2019-04-13 stsp space = memchr(buf, ' ', *elen);
692 8914529d 2019-04-13 stsp if (space == NULL || space <= buf) {
693 a440fac0 2018-09-06 stsp err = got_error(GOT_ERR_BAD_OBJ_DATA);
694 3022d272 2019-11-14 stsp free(*pte);
695 3022d272 2019-11-14 stsp *pte = NULL;
696 a440fac0 2018-09-06 stsp return err;
697 a440fac0 2018-09-06 stsp }
698 3022d272 2019-11-14 stsp (*pte)->mode = 0;
699 8914529d 2019-04-13 stsp p = buf;
700 8914529d 2019-04-13 stsp while (p < space) {
701 a440fac0 2018-09-06 stsp if (*p < '0' && *p > '7') {
702 a440fac0 2018-09-06 stsp err = got_error(GOT_ERR_BAD_OBJ_DATA);
703 a440fac0 2018-09-06 stsp goto done;
704 a440fac0 2018-09-06 stsp }
705 3022d272 2019-11-14 stsp (*pte)->mode <<= 3;
706 3022d272 2019-11-14 stsp (*pte)->mode |= *p - '0';
707 a440fac0 2018-09-06 stsp p++;
708 a440fac0 2018-09-06 stsp }
709 a440fac0 2018-09-06 stsp
710 a440fac0 2018-09-06 stsp if (*elen > maxlen || maxlen - *elen < SHA1_DIGEST_LENGTH) {
711 a440fac0 2018-09-06 stsp err = got_error(GOT_ERR_BAD_OBJ_DATA);
712 a440fac0 2018-09-06 stsp goto done;
713 a440fac0 2018-09-06 stsp }
714 3022d272 2019-11-14 stsp *name = space + 1;
715 68bf1b1e 2018-11-07 stsp buf += *elen;
716 3022d272 2019-11-14 stsp (*pte)->id = buf;
717 a440fac0 2018-09-06 stsp *elen += SHA1_DIGEST_LENGTH;
718 a440fac0 2018-09-06 stsp done:
719 a440fac0 2018-09-06 stsp if (err) {
720 3022d272 2019-11-14 stsp free(*pte);
721 3022d272 2019-11-14 stsp *pte = NULL;
722 a440fac0 2018-09-06 stsp }
723 a440fac0 2018-09-06 stsp return err;
724 a440fac0 2018-09-06 stsp }
725 a440fac0 2018-09-06 stsp
726 a440fac0 2018-09-06 stsp const struct got_error *
727 3022d272 2019-11-14 stsp got_object_parse_tree(struct got_pathlist_head *entries, int *nentries,
728 3022d272 2019-11-14 stsp uint8_t *buf, size_t len)
729 a440fac0 2018-09-06 stsp {
730 3022d272 2019-11-14 stsp const struct got_error *err = NULL;
731 a440fac0 2018-09-06 stsp size_t remain = len;
732 f5d3d7af 2019-02-05 stsp
733 3022d272 2019-11-14 stsp *nentries = 0;
734 db1d3576 2019-10-04 stsp if (remain == 0)
735 db1d3576 2019-10-04 stsp return NULL; /* tree is empty */
736 db1d3576 2019-10-04 stsp
737 a440fac0 2018-09-06 stsp while (remain > 0) {
738 3022d272 2019-11-14 stsp struct got_parsed_tree_entry *pte;
739 f5d3d7af 2019-02-05 stsp struct got_pathlist_entry *new = NULL;
740 3022d272 2019-11-14 stsp const char *name;
741 a440fac0 2018-09-06 stsp size_t elen;
742 a440fac0 2018-09-06 stsp
743 3022d272 2019-11-14 stsp err = parse_tree_entry(&pte, &name, &elen, buf, remain);
744 a440fac0 2018-09-06 stsp if (err)
745 f5d3d7af 2019-02-05 stsp goto done;
746 3022d272 2019-11-14 stsp err = got_pathlist_insert(&new, entries, name, pte);
747 f5d3d7af 2019-02-05 stsp if (err)
748 f5d3d7af 2019-02-05 stsp goto done;
749 f5d3d7af 2019-02-05 stsp if (new == NULL) {
750 f5d3d7af 2019-02-05 stsp err = got_error(GOT_ERR_TREE_DUP_ENTRY);
751 f5d3d7af 2019-02-05 stsp goto done;
752 f5d3d7af 2019-02-05 stsp }
753 a440fac0 2018-09-06 stsp buf += elen;
754 a440fac0 2018-09-06 stsp remain -= elen;
755 3022d272 2019-11-14 stsp (*nentries)++;
756 a440fac0 2018-09-06 stsp }
757 a440fac0 2018-09-06 stsp
758 a440fac0 2018-09-06 stsp if (remain != 0) {
759 f5d3d7af 2019-02-05 stsp err = got_error(GOT_ERR_BAD_OBJ_DATA);
760 f5d3d7af 2019-02-05 stsp goto done;
761 a440fac0 2018-09-06 stsp }
762 3022d272 2019-11-14 stsp done:
763 3022d272 2019-11-14 stsp if (err) {
764 b87b4170 2020-01-06 stsp got_object_parsed_tree_entries_free(entries);
765 3022d272 2019-11-14 stsp *nentries = 0;
766 f5d3d7af 2019-02-05 stsp }
767 f5d3d7af 2019-02-05 stsp return err;
768 b64b1f95 2020-01-06 stsp }
769 b64b1f95 2020-01-06 stsp
770 b64b1f95 2020-01-06 stsp void
771 b87b4170 2020-01-06 stsp got_object_parsed_tree_entries_free(struct got_pathlist_head *entries)
772 b64b1f95 2020-01-06 stsp {
773 b64b1f95 2020-01-06 stsp struct got_pathlist_entry *pe;
774 b64b1f95 2020-01-06 stsp
775 b64b1f95 2020-01-06 stsp TAILQ_FOREACH(pe, entries, entry) {
776 b64b1f95 2020-01-06 stsp struct got_parsed_tree_entry *pte = pe->data;
777 b64b1f95 2020-01-06 stsp free(pte);
778 b64b1f95 2020-01-06 stsp }
779 b64b1f95 2020-01-06 stsp got_pathlist_free(entries);
780 a440fac0 2018-09-06 stsp }
781 a440fac0 2018-09-06 stsp
782 f4a881ce 2018-11-17 stsp void
783 f4a881ce 2018-11-17 stsp got_object_tag_close(struct got_tag_object *tag)
784 f4a881ce 2018-11-17 stsp {
785 ca0d469c 2019-08-13 stsp if (tag->refcnt > 0) {
786 ca0d469c 2019-08-13 stsp tag->refcnt--;
787 ca0d469c 2019-08-13 stsp if (tag->refcnt > 0)
788 ca0d469c 2019-08-13 stsp return;
789 ca0d469c 2019-08-13 stsp }
790 ca0d469c 2019-08-13 stsp
791 f4a881ce 2018-11-17 stsp free(tag->tag);
792 f4a881ce 2018-11-17 stsp free(tag->tagger);
793 f4a881ce 2018-11-17 stsp free(tag->tagmsg);
794 f4a881ce 2018-11-17 stsp free(tag);
795 f4a881ce 2018-11-17 stsp }
796 f4a881ce 2018-11-17 stsp
797 ad242220 2018-09-08 stsp const struct got_error *
798 f4a881ce 2018-11-17 stsp got_object_parse_tag(struct got_tag_object **tag, uint8_t *buf, size_t len)
799 f4a881ce 2018-11-17 stsp {
800 f4a881ce 2018-11-17 stsp const struct got_error *err = NULL;
801 f4a881ce 2018-11-17 stsp size_t remain = len;
802 f4a881ce 2018-11-17 stsp char *s = buf;
803 ff2a4428 2019-03-19 stsp size_t label_len;
804 4793d91b 2019-09-22 stsp
805 4793d91b 2019-09-22 stsp if (remain == 0)
806 4793d91b 2019-09-22 stsp return got_error(GOT_ERR_BAD_OBJ_DATA);
807 f4a881ce 2018-11-17 stsp
808 f4a881ce 2018-11-17 stsp *tag = calloc(1, sizeof(**tag));
809 f4a881ce 2018-11-17 stsp if (*tag == NULL)
810 638f9024 2019-05-13 stsp return got_error_from_errno("calloc");
811 f4a881ce 2018-11-17 stsp
812 ff2a4428 2019-03-19 stsp label_len = strlen(GOT_TAG_LABEL_OBJECT);
813 ff2a4428 2019-03-19 stsp if (strncmp(s, GOT_TAG_LABEL_OBJECT, label_len) == 0) {
814 ff2a4428 2019-03-19 stsp remain -= label_len;
815 f4a881ce 2018-11-17 stsp if (remain < SHA1_DIGEST_STRING_LENGTH) {
816 f4a881ce 2018-11-17 stsp err = got_error(GOT_ERR_BAD_OBJ_DATA);
817 f4a881ce 2018-11-17 stsp goto done;
818 f4a881ce 2018-11-17 stsp }
819 ff2a4428 2019-03-19 stsp s += label_len;
820 f4a881ce 2018-11-17 stsp if (!got_parse_sha1_digest((*tag)->id.sha1, s)) {
821 f4a881ce 2018-11-17 stsp err = got_error(GOT_ERR_BAD_OBJ_DATA);
822 f4a881ce 2018-11-17 stsp goto done;
823 f4a881ce 2018-11-17 stsp }
824 f4a881ce 2018-11-17 stsp remain -= SHA1_DIGEST_STRING_LENGTH;
825 f4a881ce 2018-11-17 stsp s += SHA1_DIGEST_STRING_LENGTH;
826 f4a881ce 2018-11-17 stsp } else {
827 f4a881ce 2018-11-17 stsp err = got_error(GOT_ERR_BAD_OBJ_DATA);
828 f4a881ce 2018-11-17 stsp goto done;
829 f4a881ce 2018-11-17 stsp }
830 f4a881ce 2018-11-17 stsp
831 f4a881ce 2018-11-17 stsp if (remain <= 0) {
832 f4a881ce 2018-11-17 stsp err = got_error(GOT_ERR_BAD_OBJ_DATA);
833 f4a881ce 2018-11-17 stsp goto done;
834 f4a881ce 2018-11-17 stsp }
835 f4a881ce 2018-11-17 stsp
836 ff2a4428 2019-03-19 stsp label_len = strlen(GOT_TAG_LABEL_TYPE);
837 ff2a4428 2019-03-19 stsp if (strncmp(s, GOT_TAG_LABEL_TYPE, label_len) == 0) {
838 ff2a4428 2019-03-19 stsp remain -= label_len;
839 f4a881ce 2018-11-17 stsp if (remain <= 0) {
840 f4a881ce 2018-11-17 stsp err = got_error(GOT_ERR_BAD_OBJ_DATA);
841 f4a881ce 2018-11-17 stsp goto done;
842 f4a881ce 2018-11-17 stsp }
843 ff2a4428 2019-03-19 stsp s += label_len;
844 ff2a4428 2019-03-19 stsp if (strncmp(s, GOT_OBJ_LABEL_COMMIT,
845 ff2a4428 2019-03-19 stsp strlen(GOT_OBJ_LABEL_COMMIT)) == 0) {
846 f4a881ce 2018-11-17 stsp (*tag)->obj_type = GOT_OBJ_TYPE_COMMIT;
847 ff2a4428 2019-03-19 stsp label_len = strlen(GOT_OBJ_LABEL_COMMIT);
848 ff2a4428 2019-03-19 stsp s += label_len;
849 ff2a4428 2019-03-19 stsp remain -= label_len;
850 ff2a4428 2019-03-19 stsp } else if (strncmp(s, GOT_OBJ_LABEL_TREE,
851 ff2a4428 2019-03-19 stsp strlen(GOT_OBJ_LABEL_TREE)) == 0) {
852 f4a881ce 2018-11-17 stsp (*tag)->obj_type = GOT_OBJ_TYPE_TREE;
853 ff2a4428 2019-03-19 stsp label_len = strlen(GOT_OBJ_LABEL_TREE);
854 ff2a4428 2019-03-19 stsp s += label_len;
855 ff2a4428 2019-03-19 stsp remain -= label_len;
856 ff2a4428 2019-03-19 stsp } else if (strncmp(s, GOT_OBJ_LABEL_BLOB,
857 ff2a4428 2019-03-19 stsp strlen(GOT_OBJ_LABEL_BLOB)) == 0) {
858 f4a881ce 2018-11-17 stsp (*tag)->obj_type = GOT_OBJ_TYPE_BLOB;
859 ff2a4428 2019-03-19 stsp label_len = strlen(GOT_OBJ_LABEL_BLOB);
860 ff2a4428 2019-03-19 stsp s += label_len;
861 ff2a4428 2019-03-19 stsp remain -= label_len;
862 ff2a4428 2019-03-19 stsp } else if (strncmp(s, GOT_OBJ_LABEL_TAG,
863 ff2a4428 2019-03-19 stsp strlen(GOT_OBJ_LABEL_TAG)) == 0) {
864 f4a881ce 2018-11-17 stsp (*tag)->obj_type = GOT_OBJ_TYPE_TAG;
865 ff2a4428 2019-03-19 stsp label_len = strlen(GOT_OBJ_LABEL_TAG);
866 ff2a4428 2019-03-19 stsp s += label_len;
867 ff2a4428 2019-03-19 stsp remain -= label_len;
868 f4a881ce 2018-11-17 stsp } else {
869 f4a881ce 2018-11-17 stsp err = got_error(GOT_ERR_BAD_OBJ_DATA);
870 f4a881ce 2018-11-17 stsp goto done;
871 f4a881ce 2018-11-17 stsp }
872 f4a881ce 2018-11-17 stsp
873 f4a881ce 2018-11-17 stsp if (remain <= 0 || *s != '\n') {
874 f4a881ce 2018-11-17 stsp err = got_error(GOT_ERR_BAD_OBJ_DATA);
875 f4a881ce 2018-11-17 stsp goto done;
876 f4a881ce 2018-11-17 stsp }
877 f4a881ce 2018-11-17 stsp s++;
878 f4a881ce 2018-11-17 stsp remain--;
879 f4a881ce 2018-11-17 stsp if (remain <= 0) {
880 f4a881ce 2018-11-17 stsp err = got_error(GOT_ERR_BAD_OBJ_DATA);
881 f4a881ce 2018-11-17 stsp goto done;
882 f4a881ce 2018-11-17 stsp }
883 f4a881ce 2018-11-17 stsp } else {
884 f4a881ce 2018-11-17 stsp err = got_error(GOT_ERR_BAD_OBJ_DATA);
885 f4a881ce 2018-11-17 stsp goto done;
886 f4a881ce 2018-11-17 stsp }
887 f4a881ce 2018-11-17 stsp
888 ff2a4428 2019-03-19 stsp label_len = strlen(GOT_TAG_LABEL_TAG);
889 ff2a4428 2019-03-19 stsp if (strncmp(s, GOT_TAG_LABEL_TAG, label_len) == 0) {
890 f4a881ce 2018-11-17 stsp char *p;
891 f4a881ce 2018-11-17 stsp size_t slen;
892 ff2a4428 2019-03-19 stsp remain -= label_len;
893 f4a881ce 2018-11-17 stsp if (remain <= 0) {
894 f4a881ce 2018-11-17 stsp err = got_error(GOT_ERR_BAD_OBJ_DATA);
895 f4a881ce 2018-11-17 stsp goto done;
896 f4a881ce 2018-11-17 stsp }
897 ff2a4428 2019-03-19 stsp s += label_len;
898 dedbbd9d 2019-04-13 stsp p = memchr(s, '\n', remain);
899 f4a881ce 2018-11-17 stsp if (p == NULL) {
900 f4a881ce 2018-11-17 stsp err = got_error(GOT_ERR_BAD_OBJ_DATA);
901 f4a881ce 2018-11-17 stsp goto done;
902 f4a881ce 2018-11-17 stsp }
903 f4a881ce 2018-11-17 stsp *p = '\0';
904 f4a881ce 2018-11-17 stsp slen = strlen(s);
905 f4a881ce 2018-11-17 stsp (*tag)->tag = strndup(s, slen);
906 f4a881ce 2018-11-17 stsp if ((*tag)->tag == NULL) {
907 638f9024 2019-05-13 stsp err = got_error_from_errno("strndup");
908 f4a881ce 2018-11-17 stsp goto done;
909 f4a881ce 2018-11-17 stsp }
910 f4a881ce 2018-11-17 stsp s += slen + 1;
911 f4a881ce 2018-11-17 stsp remain -= slen + 1;
912 f4a881ce 2018-11-17 stsp if (remain <= 0) {
913 f4a881ce 2018-11-17 stsp err = got_error(GOT_ERR_BAD_OBJ_DATA);
914 f4a881ce 2018-11-17 stsp goto done;
915 f4a881ce 2018-11-17 stsp }
916 f4a881ce 2018-11-17 stsp } else {
917 f4a881ce 2018-11-17 stsp err = got_error(GOT_ERR_BAD_OBJ_DATA);
918 f4a881ce 2018-11-17 stsp goto done;
919 f4a881ce 2018-11-17 stsp }
920 f4a881ce 2018-11-17 stsp
921 ff2a4428 2019-03-19 stsp label_len = strlen(GOT_TAG_LABEL_TAGGER);
922 ff2a4428 2019-03-19 stsp if (strncmp(s, GOT_TAG_LABEL_TAGGER, label_len) == 0) {
923 f4a881ce 2018-11-17 stsp char *p;
924 f4a881ce 2018-11-17 stsp size_t slen;
925 f4a881ce 2018-11-17 stsp
926 ff2a4428 2019-03-19 stsp remain -= label_len;
927 f4a881ce 2018-11-17 stsp if (remain <= 0) {
928 f4a881ce 2018-11-17 stsp err = got_error(GOT_ERR_BAD_OBJ_DATA);
929 f4a881ce 2018-11-17 stsp goto done;
930 f4a881ce 2018-11-17 stsp }
931 ff2a4428 2019-03-19 stsp s += label_len;
932 dedbbd9d 2019-04-13 stsp p = memchr(s, '\n', remain);
933 f4a881ce 2018-11-17 stsp if (p == NULL) {
934 f4a881ce 2018-11-17 stsp err = got_error(GOT_ERR_BAD_OBJ_DATA);
935 f4a881ce 2018-11-17 stsp goto done;
936 f4a881ce 2018-11-17 stsp }
937 f4a881ce 2018-11-17 stsp *p = '\0';
938 f4a881ce 2018-11-17 stsp slen = strlen(s);
939 f4a881ce 2018-11-17 stsp err = parse_commit_time(&(*tag)->tagger_time,
940 f4a881ce 2018-11-17 stsp &(*tag)->tagger_gmtoff, s);
941 f4a881ce 2018-11-17 stsp if (err)
942 f4a881ce 2018-11-17 stsp goto done;
943 f4a881ce 2018-11-17 stsp (*tag)->tagger = strdup(s);
944 f4a881ce 2018-11-17 stsp if ((*tag)->tagger == NULL) {
945 638f9024 2019-05-13 stsp err = got_error_from_errno("strdup");
946 f4a881ce 2018-11-17 stsp goto done;
947 f4a881ce 2018-11-17 stsp }
948 f4a881ce 2018-11-17 stsp s += slen + 1;
949 f4a881ce 2018-11-17 stsp remain -= slen + 1;
950 5a8b373c 2020-12-18 stsp if (remain < 0) {
951 f4a881ce 2018-11-17 stsp err = got_error(GOT_ERR_BAD_OBJ_DATA);
952 f4a881ce 2018-11-17 stsp goto done;
953 f4a881ce 2018-11-17 stsp }
954 f4a881ce 2018-11-17 stsp } else {
955 e0e55b50 2019-02-01 stsp /* Some old tags in the Linux git repo have no tagger. */
956 e0e55b50 2019-02-01 stsp (*tag)->tagger = strdup("");
957 e0e55b50 2019-02-01 stsp if ((*tag)->tagger == NULL) {
958 638f9024 2019-05-13 stsp err = got_error_from_errno("strdup");
959 e0e55b50 2019-02-01 stsp goto done;
960 e0e55b50 2019-02-01 stsp }
961 f4a881ce 2018-11-17 stsp }
962 f4a881ce 2018-11-17 stsp
963 f4a881ce 2018-11-17 stsp (*tag)->tagmsg = strndup(s, remain);
964 f4a881ce 2018-11-17 stsp if ((*tag)->tagmsg == NULL) {
965 638f9024 2019-05-13 stsp err = got_error_from_errno("strndup");
966 f4a881ce 2018-11-17 stsp goto done;
967 f4a881ce 2018-11-17 stsp }
968 f4a881ce 2018-11-17 stsp done:
969 f4a881ce 2018-11-17 stsp if (err) {
970 f4a881ce 2018-11-17 stsp got_object_tag_close(*tag);
971 f4a881ce 2018-11-17 stsp *tag = NULL;
972 f4a881ce 2018-11-17 stsp }
973 f4a881ce 2018-11-17 stsp return err;
974 f4a881ce 2018-11-17 stsp }
975 f4a881ce 2018-11-17 stsp
976 f4a881ce 2018-11-17 stsp const struct got_error *
977 ad242220 2018-09-08 stsp got_read_file_to_mem(uint8_t **outbuf, size_t *outlen, FILE *f)
978 a440fac0 2018-09-06 stsp {
979 a440fac0 2018-09-06 stsp const struct got_error *err = NULL;
980 a440fac0 2018-09-06 stsp static const size_t blocksize = 512;
981 a440fac0 2018-09-06 stsp size_t n, total, remain;
982 a440fac0 2018-09-06 stsp uint8_t *buf;
983 a440fac0 2018-09-06 stsp
984 a440fac0 2018-09-06 stsp *outbuf = NULL;
985 a440fac0 2018-09-06 stsp *outlen = 0;
986 a440fac0 2018-09-06 stsp
987 a440fac0 2018-09-06 stsp buf = malloc(blocksize);
988 a440fac0 2018-09-06 stsp if (buf == NULL)
989 638f9024 2019-05-13 stsp return got_error_from_errno("malloc");
990 a440fac0 2018-09-06 stsp
991 a440fac0 2018-09-06 stsp remain = blocksize;
992 a440fac0 2018-09-06 stsp total = 0;
993 656b1f76 2019-05-11 jcs for (;;) {
994 a440fac0 2018-09-06 stsp if (remain == 0) {
995 a440fac0 2018-09-06 stsp uint8_t *newbuf;
996 a440fac0 2018-09-06 stsp newbuf = reallocarray(buf, 1, total + blocksize);
997 a440fac0 2018-09-06 stsp if (newbuf == NULL) {
998 638f9024 2019-05-13 stsp err = got_error_from_errno("reallocarray");
999 a440fac0 2018-09-06 stsp goto done;
1000 a440fac0 2018-09-06 stsp }
1001 a440fac0 2018-09-06 stsp buf = newbuf;
1002 a440fac0 2018-09-06 stsp remain += blocksize;
1003 a440fac0 2018-09-06 stsp }
1004 a440fac0 2018-09-06 stsp n = fread(buf + total, 1, remain, f);
1005 a440fac0 2018-09-06 stsp if (n == 0) {
1006 a440fac0 2018-09-06 stsp if (ferror(f)) {
1007 a440fac0 2018-09-06 stsp err = got_ferror(f, GOT_ERR_IO);
1008 a440fac0 2018-09-06 stsp goto done;
1009 a440fac0 2018-09-06 stsp }
1010 a440fac0 2018-09-06 stsp break; /* EOF */
1011 a440fac0 2018-09-06 stsp }
1012 a440fac0 2018-09-06 stsp remain -= n;
1013 a440fac0 2018-09-06 stsp total += n;
1014 a440fac0 2018-09-06 stsp };
1015 a440fac0 2018-09-06 stsp
1016 a440fac0 2018-09-06 stsp done:
1017 a440fac0 2018-09-06 stsp if (err == NULL) {
1018 a440fac0 2018-09-06 stsp *outbuf = buf;
1019 a440fac0 2018-09-06 stsp *outlen = total;
1020 a440fac0 2018-09-06 stsp } else
1021 a440fac0 2018-09-06 stsp free(buf);
1022 ad242220 2018-09-08 stsp return err;
1023 a440fac0 2018-09-06 stsp }