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