Blame


1 a440fac0 2018-09-06 stsp /*
2 a440fac0 2018-09-06 stsp * Copyright (c) 2018 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 a440fac0 2018-09-06 stsp #include <sys/uio.h>
21 a440fac0 2018-09-06 stsp #include <sys/socket.h>
22 876c234b 2018-09-10 stsp #include <sys/syslimits.h>
23 a440fac0 2018-09-06 stsp #include <sys/wait.h>
24 a440fac0 2018-09-06 stsp
25 a440fac0 2018-09-06 stsp #include <errno.h>
26 a440fac0 2018-09-06 stsp #include <stdio.h>
27 a440fac0 2018-09-06 stsp #include <stdlib.h>
28 a440fac0 2018-09-06 stsp #include <string.h>
29 a440fac0 2018-09-06 stsp #include <stdint.h>
30 a440fac0 2018-09-06 stsp #include <sha1.h>
31 a440fac0 2018-09-06 stsp #include <zlib.h>
32 a440fac0 2018-09-06 stsp #include <ctype.h>
33 a440fac0 2018-09-06 stsp #include <limits.h>
34 a440fac0 2018-09-06 stsp #include <imsg.h>
35 a440fac0 2018-09-06 stsp #include <time.h>
36 ad242220 2018-09-08 stsp #include <unistd.h>
37 a440fac0 2018-09-06 stsp
38 a440fac0 2018-09-06 stsp #include "got_error.h"
39 a440fac0 2018-09-06 stsp #include "got_object.h"
40 a440fac0 2018-09-06 stsp #include "got_repository.h"
41 a440fac0 2018-09-06 stsp #include "got_opentemp.h"
42 a440fac0 2018-09-06 stsp
43 a440fac0 2018-09-06 stsp #include "got_lib_sha1.h"
44 a440fac0 2018-09-06 stsp #include "got_lib_delta.h"
45 7762fe12 2018-11-05 stsp #include "got_lib_privsep.h"
46 7762fe12 2018-11-05 stsp #include "got_lib_pack.h"
47 41fa1437 2018-11-05 stsp #include "got_lib_inflate.h"
48 41fa1437 2018-11-05 stsp #include "got_lib_object.h"
49 6bef87be 2018-09-11 stsp #include "got_lib_object_cache.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 a440fac0 2018-09-06 stsp
56 f4a881ce 2018-11-17 stsp #define GOT_OBJ_TAG_COMMIT "commit"
57 f4a881ce 2018-11-17 stsp #define GOT_OBJ_TAG_TREE "tree"
58 f4a881ce 2018-11-17 stsp #define GOT_OBJ_TAG_BLOB "blob"
59 f4a881ce 2018-11-17 stsp #define GOT_OBJ_TAG_TAG "tag"
60 f4a881ce 2018-11-17 stsp
61 a440fac0 2018-09-06 stsp #define GOT_COMMIT_TAG_TREE "tree "
62 a440fac0 2018-09-06 stsp #define GOT_COMMIT_TAG_PARENT "parent "
63 a440fac0 2018-09-06 stsp #define GOT_COMMIT_TAG_AUTHOR "author "
64 a440fac0 2018-09-06 stsp #define GOT_COMMIT_TAG_COMMITTER "committer "
65 2ff12563 2018-09-15 stsp
66 f4a881ce 2018-11-17 stsp #define GOT_TAG_TAG_OBJECT "object "
67 f4a881ce 2018-11-17 stsp #define GOT_TAG_TAG_TYPE "type "
68 f4a881ce 2018-11-17 stsp #define GOT_TAG_TAG_TAG "tag "
69 f4a881ce 2018-11-17 stsp #define GOT_TAG_TAG_TAGGER "tagger "
70 f4a881ce 2018-11-17 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 5df4932d 2018-11-05 stsp return got_error_from_errno();
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 5df4932d 2018-11-05 stsp err = got_error_from_errno();
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 5df4932d 2018-11-05 stsp
95 5df4932d 2018-11-05 stsp return NULL;
96 5df4932d 2018-11-05 stsp }
97 5df4932d 2018-11-05 stsp
98 5df4932d 2018-11-05 stsp const struct got_error *
99 2ff12563 2018-09-15 stsp got_object_id_str(char **outbuf, struct got_object_id *id)
100 2ff12563 2018-09-15 stsp {
101 2ff12563 2018-09-15 stsp static const size_t len = SHA1_DIGEST_STRING_LENGTH;
102 2ff12563 2018-09-15 stsp
103 2ff12563 2018-09-15 stsp *outbuf = malloc(len);
104 2ff12563 2018-09-15 stsp if (*outbuf == NULL)
105 2ff12563 2018-09-15 stsp return got_error_from_errno();
106 2ff12563 2018-09-15 stsp
107 2ff12563 2018-09-15 stsp if (got_sha1_digest_to_str(id->sha1, *outbuf, len) == NULL) {
108 2ff12563 2018-09-15 stsp free(*outbuf);
109 2ff12563 2018-09-15 stsp *outbuf = NULL;
110 2ff12563 2018-09-15 stsp return got_error(GOT_ERR_BAD_OBJ_ID_STR);
111 2ff12563 2018-09-15 stsp }
112 a440fac0 2018-09-06 stsp
113 2ff12563 2018-09-15 stsp return NULL;
114 2ff12563 2018-09-15 stsp }
115 2ff12563 2018-09-15 stsp
116 03fa71c8 2018-09-06 stsp void
117 03fa71c8 2018-09-06 stsp got_object_close(struct got_object *obj)
118 03fa71c8 2018-09-06 stsp {
119 03fa71c8 2018-09-06 stsp if (obj->refcnt > 0) {
120 03fa71c8 2018-09-06 stsp obj->refcnt--;
121 03fa71c8 2018-09-06 stsp if (obj->refcnt > 0)
122 03fa71c8 2018-09-06 stsp return;
123 03fa71c8 2018-09-06 stsp }
124 03fa71c8 2018-09-06 stsp
125 03fa71c8 2018-09-06 stsp if (obj->flags & GOT_OBJ_FLAG_DELTIFIED) {
126 03fa71c8 2018-09-06 stsp struct got_delta *delta;
127 03fa71c8 2018-09-06 stsp while (!SIMPLEQ_EMPTY(&obj->deltas.entries)) {
128 03fa71c8 2018-09-06 stsp delta = SIMPLEQ_FIRST(&obj->deltas.entries);
129 03fa71c8 2018-09-06 stsp SIMPLEQ_REMOVE_HEAD(&obj->deltas.entries, entry);
130 03fa71c8 2018-09-06 stsp got_delta_close(delta);
131 03fa71c8 2018-09-06 stsp }
132 03fa71c8 2018-09-06 stsp }
133 03fa71c8 2018-09-06 stsp if (obj->flags & GOT_OBJ_FLAG_PACKED)
134 03fa71c8 2018-09-06 stsp free(obj->path_packfile);
135 03fa71c8 2018-09-06 stsp free(obj);
136 03fa71c8 2018-09-06 stsp }
137 03fa71c8 2018-09-06 stsp
138 03fa71c8 2018-09-06 stsp void
139 03fa71c8 2018-09-06 stsp got_object_qid_free(struct got_object_qid *qid)
140 03fa71c8 2018-09-06 stsp {
141 03fa71c8 2018-09-06 stsp free(qid->id);
142 03fa71c8 2018-09-06 stsp free(qid);
143 876c234b 2018-09-10 stsp }
144 876c234b 2018-09-10 stsp
145 a440fac0 2018-09-06 stsp struct got_commit_object *
146 a440fac0 2018-09-06 stsp got_object_commit_alloc_partial(void)
147 a440fac0 2018-09-06 stsp {
148 a440fac0 2018-09-06 stsp struct got_commit_object *commit;
149 a440fac0 2018-09-06 stsp
150 a440fac0 2018-09-06 stsp commit = calloc(1, sizeof(*commit));
151 a440fac0 2018-09-06 stsp if (commit == NULL)
152 a440fac0 2018-09-06 stsp return NULL;
153 acf0c7c6 2018-11-05 stsp commit->tree_id = malloc(sizeof(*commit->tree_id));
154 a440fac0 2018-09-06 stsp if (commit->tree_id == NULL) {
155 a440fac0 2018-09-06 stsp free(commit);
156 a440fac0 2018-09-06 stsp return NULL;
157 a440fac0 2018-09-06 stsp }
158 a440fac0 2018-09-06 stsp
159 a440fac0 2018-09-06 stsp SIMPLEQ_INIT(&commit->parent_ids);
160 a440fac0 2018-09-06 stsp
161 a440fac0 2018-09-06 stsp return commit;
162 a440fac0 2018-09-06 stsp }
163 a440fac0 2018-09-06 stsp
164 a440fac0 2018-09-06 stsp const struct got_error *
165 a440fac0 2018-09-06 stsp got_object_commit_add_parent(struct got_commit_object *commit,
166 a440fac0 2018-09-06 stsp const char *id_str)
167 a440fac0 2018-09-06 stsp {
168 a440fac0 2018-09-06 stsp const struct got_error *err = NULL;
169 a440fac0 2018-09-06 stsp struct got_object_qid *qid;
170 a440fac0 2018-09-06 stsp
171 5df4932d 2018-11-05 stsp err = got_object_qid_alloc_partial(&qid);
172 5df4932d 2018-11-05 stsp if (err)
173 7762fe12 2018-11-05 stsp return err;
174 a440fac0 2018-09-06 stsp
175 a440fac0 2018-09-06 stsp if (!got_parse_sha1_digest(qid->id->sha1, id_str)) {
176 a440fac0 2018-09-06 stsp err = got_error(GOT_ERR_BAD_OBJ_DATA);
177 a440fac0 2018-09-06 stsp free(qid->id);
178 a440fac0 2018-09-06 stsp free(qid);
179 a440fac0 2018-09-06 stsp return err;
180 a440fac0 2018-09-06 stsp }
181 a440fac0 2018-09-06 stsp
182 a440fac0 2018-09-06 stsp SIMPLEQ_INSERT_TAIL(&commit->parent_ids, qid, entry);
183 a440fac0 2018-09-06 stsp commit->nparents++;
184 a440fac0 2018-09-06 stsp
185 a440fac0 2018-09-06 stsp return NULL;
186 a440fac0 2018-09-06 stsp }
187 a440fac0 2018-09-06 stsp
188 a440fac0 2018-09-06 stsp static const struct got_error *
189 a440fac0 2018-09-06 stsp parse_gmtoff(time_t *gmtoff, const char *tzstr)
190 a440fac0 2018-09-06 stsp {
191 a440fac0 2018-09-06 stsp int sign = 1;
192 a440fac0 2018-09-06 stsp const char *p = tzstr;
193 a440fac0 2018-09-06 stsp time_t h, m;
194 a440fac0 2018-09-06 stsp
195 a440fac0 2018-09-06 stsp *gmtoff = 0;
196 a440fac0 2018-09-06 stsp
197 a440fac0 2018-09-06 stsp if (*p == '-')
198 a440fac0 2018-09-06 stsp sign = -1;
199 a440fac0 2018-09-06 stsp else if (*p != '+')
200 a440fac0 2018-09-06 stsp return got_error(GOT_ERR_BAD_OBJ_DATA);
201 a440fac0 2018-09-06 stsp p++;
202 a440fac0 2018-09-06 stsp if (!isdigit(*p) && !isdigit(*(p + 1)))
203 a440fac0 2018-09-06 stsp return got_error(GOT_ERR_BAD_OBJ_DATA);
204 a440fac0 2018-09-06 stsp h = (((*p - '0') * 10) + (*(p + 1) - '0'));
205 a440fac0 2018-09-06 stsp
206 a440fac0 2018-09-06 stsp p += 2;
207 a440fac0 2018-09-06 stsp if (!isdigit(*p) && !isdigit(*(p + 1)))
208 a440fac0 2018-09-06 stsp return got_error(GOT_ERR_BAD_OBJ_DATA);
209 a440fac0 2018-09-06 stsp m = ((*p - '0') * 10) + (*(p + 1) - '0');
210 a440fac0 2018-09-06 stsp
211 a440fac0 2018-09-06 stsp *gmtoff = (h * 60 * 60 + m * 60) * sign;
212 a440fac0 2018-09-06 stsp return NULL;
213 a440fac0 2018-09-06 stsp }
214 a440fac0 2018-09-06 stsp
215 a440fac0 2018-09-06 stsp static const struct got_error *
216 ccb26ccd 2018-11-05 stsp parse_commit_time(time_t *time, time_t *gmtoff, char *committer)
217 a440fac0 2018-09-06 stsp {
218 a440fac0 2018-09-06 stsp const struct got_error *err = NULL;
219 a440fac0 2018-09-06 stsp const char *errstr;
220 a440fac0 2018-09-06 stsp char *space, *tzstr;
221 a440fac0 2018-09-06 stsp
222 a440fac0 2018-09-06 stsp /* Parse and strip off trailing timezone indicator string. */
223 a440fac0 2018-09-06 stsp space = strrchr(committer, ' ');
224 a440fac0 2018-09-06 stsp if (space == NULL)
225 a440fac0 2018-09-06 stsp return got_error(GOT_ERR_BAD_OBJ_DATA);
226 a440fac0 2018-09-06 stsp tzstr = strdup(space + 1);
227 a440fac0 2018-09-06 stsp if (tzstr == NULL)
228 a440fac0 2018-09-06 stsp return got_error_from_errno();
229 ccb26ccd 2018-11-05 stsp err = parse_gmtoff(gmtoff, tzstr);
230 a440fac0 2018-09-06 stsp free(tzstr);
231 a440fac0 2018-09-06 stsp if (err)
232 a440fac0 2018-09-06 stsp return err;
233 a440fac0 2018-09-06 stsp *space = '\0';
234 a440fac0 2018-09-06 stsp
235 a440fac0 2018-09-06 stsp /* Timestamp is separated from committer name + email by space. */
236 a440fac0 2018-09-06 stsp space = strrchr(committer, ' ');
237 a440fac0 2018-09-06 stsp if (space == NULL)
238 a440fac0 2018-09-06 stsp return got_error(GOT_ERR_BAD_OBJ_DATA);
239 a440fac0 2018-09-06 stsp
240 a440fac0 2018-09-06 stsp /* Timestamp parsed here is expressed in comitter's local time. */
241 ccb26ccd 2018-11-05 stsp *time = strtonum(space + 1, 0, INT64_MAX, &errstr);
242 a440fac0 2018-09-06 stsp if (errstr)
243 a440fac0 2018-09-06 stsp return got_error(GOT_ERR_BAD_OBJ_DATA);
244 a440fac0 2018-09-06 stsp
245 a440fac0 2018-09-06 stsp /* Express the time stamp in UTC. */
246 ccb26ccd 2018-11-05 stsp *time -= *gmtoff;
247 a440fac0 2018-09-06 stsp
248 a440fac0 2018-09-06 stsp /* Strip off parsed time information, leaving just author and email. */
249 a440fac0 2018-09-06 stsp *space = '\0';
250 a440fac0 2018-09-06 stsp
251 a440fac0 2018-09-06 stsp return NULL;
252 a440fac0 2018-09-06 stsp }
253 a440fac0 2018-09-06 stsp
254 03fa71c8 2018-09-06 stsp void
255 03fa71c8 2018-09-06 stsp got_object_commit_close(struct got_commit_object *commit)
256 03fa71c8 2018-09-06 stsp {
257 03fa71c8 2018-09-06 stsp struct got_object_qid *qid;
258 03fa71c8 2018-09-06 stsp
259 03fa71c8 2018-09-06 stsp if (commit->refcnt > 0) {
260 03fa71c8 2018-09-06 stsp commit->refcnt--;
261 03fa71c8 2018-09-06 stsp if (commit->refcnt > 0)
262 03fa71c8 2018-09-06 stsp return;
263 03fa71c8 2018-09-06 stsp }
264 03fa71c8 2018-09-06 stsp
265 03fa71c8 2018-09-06 stsp while (!SIMPLEQ_EMPTY(&commit->parent_ids)) {
266 03fa71c8 2018-09-06 stsp qid = SIMPLEQ_FIRST(&commit->parent_ids);
267 03fa71c8 2018-09-06 stsp SIMPLEQ_REMOVE_HEAD(&commit->parent_ids, entry);
268 03fa71c8 2018-09-06 stsp got_object_qid_free(qid);
269 03fa71c8 2018-09-06 stsp }
270 03fa71c8 2018-09-06 stsp
271 03fa71c8 2018-09-06 stsp free(commit->tree_id);
272 03fa71c8 2018-09-06 stsp free(commit->author);
273 03fa71c8 2018-09-06 stsp free(commit->committer);
274 03fa71c8 2018-09-06 stsp free(commit->logmsg);
275 03fa71c8 2018-09-06 stsp free(commit);
276 03fa71c8 2018-09-06 stsp }
277 03fa71c8 2018-09-06 stsp
278 a440fac0 2018-09-06 stsp const struct got_error *
279 41fa1437 2018-11-05 stsp got_object_parse_commit(struct got_commit_object **commit, char *buf, size_t len)
280 a440fac0 2018-09-06 stsp {
281 a440fac0 2018-09-06 stsp const struct got_error *err = NULL;
282 a440fac0 2018-09-06 stsp char *s = buf;
283 a440fac0 2018-09-06 stsp size_t tlen;
284 a440fac0 2018-09-06 stsp ssize_t remain = (ssize_t)len;
285 41fa1437 2018-11-05 stsp
286 a440fac0 2018-09-06 stsp *commit = got_object_commit_alloc_partial();
287 a440fac0 2018-09-06 stsp if (*commit == NULL)
288 a440fac0 2018-09-06 stsp return got_error_from_errno();
289 a440fac0 2018-09-06 stsp
290 a440fac0 2018-09-06 stsp tlen = strlen(GOT_COMMIT_TAG_TREE);
291 a440fac0 2018-09-06 stsp if (strncmp(s, GOT_COMMIT_TAG_TREE, tlen) == 0) {
292 a440fac0 2018-09-06 stsp remain -= tlen;
293 a440fac0 2018-09-06 stsp if (remain < SHA1_DIGEST_STRING_LENGTH) {
294 a440fac0 2018-09-06 stsp err = got_error(GOT_ERR_BAD_OBJ_DATA);
295 a440fac0 2018-09-06 stsp goto done;
296 a440fac0 2018-09-06 stsp }
297 a440fac0 2018-09-06 stsp s += tlen;
298 a440fac0 2018-09-06 stsp if (!got_parse_sha1_digest((*commit)->tree_id->sha1, s)) {
299 a440fac0 2018-09-06 stsp err = got_error(GOT_ERR_BAD_OBJ_DATA);
300 a440fac0 2018-09-06 stsp goto done;
301 a440fac0 2018-09-06 stsp }
302 a440fac0 2018-09-06 stsp remain -= SHA1_DIGEST_STRING_LENGTH;
303 a440fac0 2018-09-06 stsp s += SHA1_DIGEST_STRING_LENGTH;
304 a440fac0 2018-09-06 stsp } else {
305 a440fac0 2018-09-06 stsp err = got_error(GOT_ERR_BAD_OBJ_DATA);
306 a440fac0 2018-09-06 stsp goto done;
307 a440fac0 2018-09-06 stsp }
308 a440fac0 2018-09-06 stsp
309 a440fac0 2018-09-06 stsp tlen = strlen(GOT_COMMIT_TAG_PARENT);
310 a440fac0 2018-09-06 stsp while (strncmp(s, GOT_COMMIT_TAG_PARENT, tlen) == 0) {
311 a440fac0 2018-09-06 stsp remain -= tlen;
312 a440fac0 2018-09-06 stsp if (remain < SHA1_DIGEST_STRING_LENGTH) {
313 a440fac0 2018-09-06 stsp err = got_error(GOT_ERR_BAD_OBJ_DATA);
314 a440fac0 2018-09-06 stsp goto done;
315 a440fac0 2018-09-06 stsp }
316 a440fac0 2018-09-06 stsp s += tlen;
317 a440fac0 2018-09-06 stsp err = got_object_commit_add_parent(*commit, s);
318 a440fac0 2018-09-06 stsp if (err)
319 a440fac0 2018-09-06 stsp goto done;
320 a440fac0 2018-09-06 stsp
321 a440fac0 2018-09-06 stsp remain -= SHA1_DIGEST_STRING_LENGTH;
322 a440fac0 2018-09-06 stsp s += SHA1_DIGEST_STRING_LENGTH;
323 a440fac0 2018-09-06 stsp }
324 a440fac0 2018-09-06 stsp
325 a440fac0 2018-09-06 stsp tlen = strlen(GOT_COMMIT_TAG_AUTHOR);
326 a440fac0 2018-09-06 stsp if (strncmp(s, GOT_COMMIT_TAG_AUTHOR, tlen) == 0) {
327 a440fac0 2018-09-06 stsp char *p;
328 a440fac0 2018-09-06 stsp size_t slen;
329 a440fac0 2018-09-06 stsp
330 a440fac0 2018-09-06 stsp remain -= tlen;
331 a440fac0 2018-09-06 stsp if (remain <= 0) {
332 a440fac0 2018-09-06 stsp err = got_error(GOT_ERR_BAD_OBJ_DATA);
333 a440fac0 2018-09-06 stsp goto done;
334 a440fac0 2018-09-06 stsp }
335 a440fac0 2018-09-06 stsp s += tlen;
336 a440fac0 2018-09-06 stsp p = strchr(s, '\n');
337 a440fac0 2018-09-06 stsp if (p == NULL) {
338 a440fac0 2018-09-06 stsp err = got_error(GOT_ERR_BAD_OBJ_DATA);
339 a440fac0 2018-09-06 stsp goto done;
340 a440fac0 2018-09-06 stsp }
341 a440fac0 2018-09-06 stsp *p = '\0';
342 a440fac0 2018-09-06 stsp slen = strlen(s);
343 ccb26ccd 2018-11-05 stsp err = parse_commit_time(&(*commit)->author_time,
344 ccb26ccd 2018-11-05 stsp &(*commit)->author_gmtoff, s);
345 a440fac0 2018-09-06 stsp if (err)
346 a440fac0 2018-09-06 stsp goto done;
347 a440fac0 2018-09-06 stsp (*commit)->author = strdup(s);
348 a440fac0 2018-09-06 stsp if ((*commit)->author == NULL) {
349 a440fac0 2018-09-06 stsp err = got_error_from_errno();
350 a440fac0 2018-09-06 stsp goto done;
351 a440fac0 2018-09-06 stsp }
352 a440fac0 2018-09-06 stsp s += slen + 1;
353 a440fac0 2018-09-06 stsp remain -= slen + 1;
354 a440fac0 2018-09-06 stsp }
355 a440fac0 2018-09-06 stsp
356 a440fac0 2018-09-06 stsp tlen = strlen(GOT_COMMIT_TAG_COMMITTER);
357 a440fac0 2018-09-06 stsp if (strncmp(s, GOT_COMMIT_TAG_COMMITTER, tlen) == 0) {
358 a440fac0 2018-09-06 stsp char *p;
359 a440fac0 2018-09-06 stsp size_t slen;
360 a440fac0 2018-09-06 stsp
361 a440fac0 2018-09-06 stsp remain -= tlen;
362 a440fac0 2018-09-06 stsp if (remain <= 0) {
363 a440fac0 2018-09-06 stsp err = got_error(GOT_ERR_BAD_OBJ_DATA);
364 a440fac0 2018-09-06 stsp goto done;
365 a440fac0 2018-09-06 stsp }
366 a440fac0 2018-09-06 stsp s += tlen;
367 a440fac0 2018-09-06 stsp p = strchr(s, '\n');
368 a440fac0 2018-09-06 stsp if (p == NULL) {
369 a440fac0 2018-09-06 stsp err = got_error(GOT_ERR_BAD_OBJ_DATA);
370 a440fac0 2018-09-06 stsp goto done;
371 a440fac0 2018-09-06 stsp }
372 a440fac0 2018-09-06 stsp *p = '\0';
373 a440fac0 2018-09-06 stsp slen = strlen(s);
374 ccb26ccd 2018-11-05 stsp err = parse_commit_time(&(*commit)->committer_time,
375 ccb26ccd 2018-11-05 stsp &(*commit)->committer_gmtoff, s);
376 a440fac0 2018-09-06 stsp if (err)
377 a440fac0 2018-09-06 stsp goto done;
378 a440fac0 2018-09-06 stsp (*commit)->committer = strdup(s);
379 a440fac0 2018-09-06 stsp if ((*commit)->committer == NULL) {
380 a440fac0 2018-09-06 stsp err = got_error_from_errno();
381 a440fac0 2018-09-06 stsp goto done;
382 a440fac0 2018-09-06 stsp }
383 a440fac0 2018-09-06 stsp s += slen + 1;
384 a440fac0 2018-09-06 stsp remain -= slen + 1;
385 a440fac0 2018-09-06 stsp }
386 a440fac0 2018-09-06 stsp
387 a440fac0 2018-09-06 stsp (*commit)->logmsg = strndup(s, remain);
388 a440fac0 2018-09-06 stsp if ((*commit)->logmsg == NULL) {
389 a440fac0 2018-09-06 stsp err = got_error_from_errno();
390 a440fac0 2018-09-06 stsp goto done;
391 a440fac0 2018-09-06 stsp }
392 a440fac0 2018-09-06 stsp done:
393 a440fac0 2018-09-06 stsp if (err) {
394 a440fac0 2018-09-06 stsp got_object_commit_close(*commit);
395 a440fac0 2018-09-06 stsp *commit = NULL;
396 a440fac0 2018-09-06 stsp }
397 a440fac0 2018-09-06 stsp return err;
398 a440fac0 2018-09-06 stsp }
399 a440fac0 2018-09-06 stsp
400 ad242220 2018-09-08 stsp void
401 ad242220 2018-09-08 stsp got_object_tree_entry_close(struct got_tree_entry *te)
402 a440fac0 2018-09-06 stsp {
403 a440fac0 2018-09-06 stsp free(te->id);
404 a440fac0 2018-09-06 stsp free(te->name);
405 a440fac0 2018-09-06 stsp free(te);
406 a440fac0 2018-09-06 stsp }
407 a440fac0 2018-09-06 stsp
408 03fa71c8 2018-09-06 stsp void
409 03fa71c8 2018-09-06 stsp got_object_tree_close(struct got_tree_object *tree)
410 03fa71c8 2018-09-06 stsp {
411 03fa71c8 2018-09-06 stsp struct got_tree_entry *te;
412 03fa71c8 2018-09-06 stsp
413 03fa71c8 2018-09-06 stsp if (tree->refcnt > 0) {
414 03fa71c8 2018-09-06 stsp tree->refcnt--;
415 03fa71c8 2018-09-06 stsp if (tree->refcnt > 0)
416 03fa71c8 2018-09-06 stsp return;
417 03fa71c8 2018-09-06 stsp }
418 03fa71c8 2018-09-06 stsp
419 03fa71c8 2018-09-06 stsp while (!SIMPLEQ_EMPTY(&tree->entries.head)) {
420 03fa71c8 2018-09-06 stsp te = SIMPLEQ_FIRST(&tree->entries.head);
421 03fa71c8 2018-09-06 stsp SIMPLEQ_REMOVE_HEAD(&tree->entries.head, entry);
422 ad242220 2018-09-08 stsp got_object_tree_entry_close(te);
423 03fa71c8 2018-09-06 stsp }
424 03fa71c8 2018-09-06 stsp
425 03fa71c8 2018-09-06 stsp free(tree);
426 03fa71c8 2018-09-06 stsp }
427 03fa71c8 2018-09-06 stsp
428 a440fac0 2018-09-06 stsp struct got_tree_entry *
429 a440fac0 2018-09-06 stsp got_alloc_tree_entry_partial(void)
430 a440fac0 2018-09-06 stsp {
431 a440fac0 2018-09-06 stsp struct got_tree_entry *te;
432 a440fac0 2018-09-06 stsp
433 32ac459c 2018-11-05 stsp te = malloc(sizeof(*te));
434 a440fac0 2018-09-06 stsp if (te == NULL)
435 a440fac0 2018-09-06 stsp return NULL;
436 a440fac0 2018-09-06 stsp
437 32ac459c 2018-11-05 stsp te->id = malloc(sizeof(*te->id));
438 a440fac0 2018-09-06 stsp if (te->id == NULL) {
439 a440fac0 2018-09-06 stsp free(te);
440 a440fac0 2018-09-06 stsp te = NULL;
441 a440fac0 2018-09-06 stsp }
442 a440fac0 2018-09-06 stsp return te;
443 a440fac0 2018-09-06 stsp }
444 a440fac0 2018-09-06 stsp
445 a440fac0 2018-09-06 stsp static const struct got_error *
446 a440fac0 2018-09-06 stsp parse_tree_entry(struct got_tree_entry **te, size_t *elen, char *buf,
447 a440fac0 2018-09-06 stsp size_t maxlen)
448 a440fac0 2018-09-06 stsp {
449 a440fac0 2018-09-06 stsp char *p = buf, *space;
450 a440fac0 2018-09-06 stsp const struct got_error *err = NULL;
451 a440fac0 2018-09-06 stsp
452 a440fac0 2018-09-06 stsp *te = got_alloc_tree_entry_partial();
453 a440fac0 2018-09-06 stsp if (*te == NULL)
454 a440fac0 2018-09-06 stsp return got_error_from_errno();
455 a440fac0 2018-09-06 stsp
456 a440fac0 2018-09-06 stsp *elen = strlen(buf) + 1;
457 a440fac0 2018-09-06 stsp if (*elen > maxlen) {
458 a440fac0 2018-09-06 stsp free(*te);
459 a440fac0 2018-09-06 stsp *te = NULL;
460 a440fac0 2018-09-06 stsp return got_error(GOT_ERR_BAD_OBJ_DATA);
461 a440fac0 2018-09-06 stsp }
462 a440fac0 2018-09-06 stsp
463 a440fac0 2018-09-06 stsp space = strchr(buf, ' ');
464 a440fac0 2018-09-06 stsp if (space == NULL) {
465 a440fac0 2018-09-06 stsp err = got_error(GOT_ERR_BAD_OBJ_DATA);
466 a440fac0 2018-09-06 stsp free(*te);
467 a440fac0 2018-09-06 stsp *te = NULL;
468 a440fac0 2018-09-06 stsp return err;
469 a440fac0 2018-09-06 stsp }
470 6dfaee02 2018-11-05 stsp (*te)->mode = 0;
471 a440fac0 2018-09-06 stsp while (*p != ' ') {
472 a440fac0 2018-09-06 stsp if (*p < '0' && *p > '7') {
473 a440fac0 2018-09-06 stsp err = got_error(GOT_ERR_BAD_OBJ_DATA);
474 a440fac0 2018-09-06 stsp goto done;
475 a440fac0 2018-09-06 stsp }
476 a440fac0 2018-09-06 stsp (*te)->mode <<= 3;
477 a440fac0 2018-09-06 stsp (*te)->mode |= *p - '0';
478 a440fac0 2018-09-06 stsp p++;
479 a440fac0 2018-09-06 stsp }
480 a440fac0 2018-09-06 stsp
481 a440fac0 2018-09-06 stsp (*te)->name = strdup(space + 1);
482 a440fac0 2018-09-06 stsp if (*elen > maxlen || maxlen - *elen < SHA1_DIGEST_LENGTH) {
483 a440fac0 2018-09-06 stsp err = got_error(GOT_ERR_BAD_OBJ_DATA);
484 a440fac0 2018-09-06 stsp goto done;
485 a440fac0 2018-09-06 stsp }
486 68bf1b1e 2018-11-07 stsp buf += *elen;
487 a440fac0 2018-09-06 stsp memcpy((*te)->id->sha1, buf, SHA1_DIGEST_LENGTH);
488 a440fac0 2018-09-06 stsp *elen += SHA1_DIGEST_LENGTH;
489 a440fac0 2018-09-06 stsp done:
490 a440fac0 2018-09-06 stsp if (err) {
491 ad242220 2018-09-08 stsp got_object_tree_entry_close(*te);
492 a440fac0 2018-09-06 stsp *te = NULL;
493 a440fac0 2018-09-06 stsp }
494 a440fac0 2018-09-06 stsp return err;
495 a440fac0 2018-09-06 stsp }
496 a440fac0 2018-09-06 stsp
497 a440fac0 2018-09-06 stsp const struct got_error *
498 a440fac0 2018-09-06 stsp got_object_parse_tree(struct got_tree_object **tree, uint8_t *buf, size_t len)
499 a440fac0 2018-09-06 stsp {
500 a440fac0 2018-09-06 stsp const struct got_error *err;
501 a440fac0 2018-09-06 stsp size_t remain = len;
502 a440fac0 2018-09-06 stsp
503 a440fac0 2018-09-06 stsp *tree = calloc(1, sizeof(**tree));
504 a440fac0 2018-09-06 stsp if (*tree == NULL)
505 a440fac0 2018-09-06 stsp return got_error_from_errno();
506 a440fac0 2018-09-06 stsp
507 a440fac0 2018-09-06 stsp SIMPLEQ_INIT(&(*tree)->entries.head);
508 a440fac0 2018-09-06 stsp
509 a440fac0 2018-09-06 stsp while (remain > 0) {
510 a440fac0 2018-09-06 stsp struct got_tree_entry *te;
511 a440fac0 2018-09-06 stsp size_t elen;
512 a440fac0 2018-09-06 stsp
513 a440fac0 2018-09-06 stsp err = parse_tree_entry(&te, &elen, buf, remain);
514 a440fac0 2018-09-06 stsp if (err)
515 a440fac0 2018-09-06 stsp return err;
516 a440fac0 2018-09-06 stsp (*tree)->entries.nentries++;
517 a440fac0 2018-09-06 stsp SIMPLEQ_INSERT_TAIL(&(*tree)->entries.head, te, entry);
518 a440fac0 2018-09-06 stsp buf += elen;
519 a440fac0 2018-09-06 stsp remain -= elen;
520 a440fac0 2018-09-06 stsp }
521 a440fac0 2018-09-06 stsp
522 a440fac0 2018-09-06 stsp if (remain != 0) {
523 a440fac0 2018-09-06 stsp got_object_tree_close(*tree);
524 13f977b4 2018-11-17 stsp *tree = NULL;
525 a440fac0 2018-09-06 stsp return got_error(GOT_ERR_BAD_OBJ_DATA);
526 a440fac0 2018-09-06 stsp }
527 a440fac0 2018-09-06 stsp
528 a440fac0 2018-09-06 stsp return NULL;
529 a440fac0 2018-09-06 stsp }
530 a440fac0 2018-09-06 stsp
531 f4a881ce 2018-11-17 stsp void
532 f4a881ce 2018-11-17 stsp got_object_tag_close(struct got_tag_object *tag)
533 f4a881ce 2018-11-17 stsp {
534 f4a881ce 2018-11-17 stsp free(tag->tag);
535 f4a881ce 2018-11-17 stsp free(tag->tagger);
536 f4a881ce 2018-11-17 stsp free(tag->tagmsg);
537 f4a881ce 2018-11-17 stsp free(tag);
538 f4a881ce 2018-11-17 stsp }
539 f4a881ce 2018-11-17 stsp
540 ad242220 2018-09-08 stsp const struct got_error *
541 f4a881ce 2018-11-17 stsp got_object_parse_tag(struct got_tag_object **tag, uint8_t *buf, size_t len)
542 f4a881ce 2018-11-17 stsp {
543 f4a881ce 2018-11-17 stsp const struct got_error *err = NULL;
544 f4a881ce 2018-11-17 stsp size_t remain = len;
545 f4a881ce 2018-11-17 stsp char *s = buf;
546 f4a881ce 2018-11-17 stsp size_t tlen;
547 f4a881ce 2018-11-17 stsp
548 f4a881ce 2018-11-17 stsp *tag = calloc(1, sizeof(**tag));
549 f4a881ce 2018-11-17 stsp if (*tag == NULL)
550 f4a881ce 2018-11-17 stsp return got_error_from_errno();
551 f4a881ce 2018-11-17 stsp
552 f4a881ce 2018-11-17 stsp tlen = strlen(GOT_TAG_TAG_OBJECT);
553 f4a881ce 2018-11-17 stsp if (strncmp(s, GOT_TAG_TAG_OBJECT, tlen) == 0) {
554 f4a881ce 2018-11-17 stsp remain -= tlen;
555 f4a881ce 2018-11-17 stsp if (remain < SHA1_DIGEST_STRING_LENGTH) {
556 f4a881ce 2018-11-17 stsp err = got_error(GOT_ERR_BAD_OBJ_DATA);
557 f4a881ce 2018-11-17 stsp goto done;
558 f4a881ce 2018-11-17 stsp }
559 f4a881ce 2018-11-17 stsp s += tlen;
560 f4a881ce 2018-11-17 stsp if (!got_parse_sha1_digest((*tag)->id.sha1, s)) {
561 f4a881ce 2018-11-17 stsp err = got_error(GOT_ERR_BAD_OBJ_DATA);
562 f4a881ce 2018-11-17 stsp goto done;
563 f4a881ce 2018-11-17 stsp }
564 f4a881ce 2018-11-17 stsp remain -= SHA1_DIGEST_STRING_LENGTH;
565 f4a881ce 2018-11-17 stsp s += SHA1_DIGEST_STRING_LENGTH;
566 f4a881ce 2018-11-17 stsp } else {
567 f4a881ce 2018-11-17 stsp err = got_error(GOT_ERR_BAD_OBJ_DATA);
568 f4a881ce 2018-11-17 stsp goto done;
569 f4a881ce 2018-11-17 stsp }
570 f4a881ce 2018-11-17 stsp
571 f4a881ce 2018-11-17 stsp if (remain <= 0) {
572 f4a881ce 2018-11-17 stsp err = got_error(GOT_ERR_BAD_OBJ_DATA);
573 f4a881ce 2018-11-17 stsp goto done;
574 f4a881ce 2018-11-17 stsp }
575 f4a881ce 2018-11-17 stsp
576 f4a881ce 2018-11-17 stsp tlen = strlen(GOT_TAG_TAG_TYPE);
577 f4a881ce 2018-11-17 stsp if (strncmp(s, GOT_TAG_TAG_TYPE, tlen) == 0) {
578 f4a881ce 2018-11-17 stsp remain -= tlen;
579 f4a881ce 2018-11-17 stsp if (remain <= 0) {
580 f4a881ce 2018-11-17 stsp err = got_error(GOT_ERR_BAD_OBJ_DATA);
581 f4a881ce 2018-11-17 stsp goto done;
582 f4a881ce 2018-11-17 stsp }
583 f4a881ce 2018-11-17 stsp s += tlen;
584 f4a881ce 2018-11-17 stsp if (strncmp(s, GOT_OBJ_TAG_COMMIT,
585 f4a881ce 2018-11-17 stsp strlen(GOT_OBJ_TAG_COMMIT)) == 0) {
586 f4a881ce 2018-11-17 stsp (*tag)->obj_type = GOT_OBJ_TYPE_COMMIT;
587 f4a881ce 2018-11-17 stsp tlen = strlen(GOT_OBJ_TAG_COMMIT);
588 f4a881ce 2018-11-17 stsp s += tlen;
589 f4a881ce 2018-11-17 stsp remain -= tlen;
590 f4a881ce 2018-11-17 stsp } else if (strncmp(s, GOT_OBJ_TAG_TREE,
591 f4a881ce 2018-11-17 stsp strlen(GOT_OBJ_TAG_TREE)) == 0) {
592 f4a881ce 2018-11-17 stsp (*tag)->obj_type = GOT_OBJ_TYPE_TREE;
593 f4a881ce 2018-11-17 stsp tlen = strlen(GOT_OBJ_TAG_TREE);
594 f4a881ce 2018-11-17 stsp s += tlen;
595 f4a881ce 2018-11-17 stsp remain -= tlen;
596 f4a881ce 2018-11-17 stsp } else if (strncmp(s, GOT_OBJ_TAG_BLOB,
597 f4a881ce 2018-11-17 stsp strlen(GOT_OBJ_TAG_BLOB)) == 0) {
598 f4a881ce 2018-11-17 stsp (*tag)->obj_type = GOT_OBJ_TYPE_BLOB;
599 f4a881ce 2018-11-17 stsp tlen = strlen(GOT_OBJ_TAG_BLOB);
600 f4a881ce 2018-11-17 stsp s += tlen;
601 f4a881ce 2018-11-17 stsp remain -= tlen;
602 f4a881ce 2018-11-17 stsp } else if (strncmp(s, GOT_OBJ_TAG_TAG,
603 f4a881ce 2018-11-17 stsp strlen(GOT_OBJ_TAG_TAG)) == 0) {
604 f4a881ce 2018-11-17 stsp (*tag)->obj_type = GOT_OBJ_TYPE_TAG;
605 f4a881ce 2018-11-17 stsp tlen = strlen(GOT_OBJ_TAG_TAG);
606 f4a881ce 2018-11-17 stsp s += tlen;
607 f4a881ce 2018-11-17 stsp remain -= tlen;
608 f4a881ce 2018-11-17 stsp } else {
609 f4a881ce 2018-11-17 stsp err = got_error(GOT_ERR_BAD_OBJ_DATA);
610 f4a881ce 2018-11-17 stsp goto done;
611 f4a881ce 2018-11-17 stsp }
612 f4a881ce 2018-11-17 stsp
613 f4a881ce 2018-11-17 stsp if (remain <= 0 || *s != '\n') {
614 f4a881ce 2018-11-17 stsp err = got_error(GOT_ERR_BAD_OBJ_DATA);
615 f4a881ce 2018-11-17 stsp goto done;
616 f4a881ce 2018-11-17 stsp }
617 f4a881ce 2018-11-17 stsp s++;
618 f4a881ce 2018-11-17 stsp remain--;
619 f4a881ce 2018-11-17 stsp if (remain <= 0) {
620 f4a881ce 2018-11-17 stsp err = got_error(GOT_ERR_BAD_OBJ_DATA);
621 f4a881ce 2018-11-17 stsp goto done;
622 f4a881ce 2018-11-17 stsp }
623 f4a881ce 2018-11-17 stsp } else {
624 f4a881ce 2018-11-17 stsp err = got_error(GOT_ERR_BAD_OBJ_DATA);
625 f4a881ce 2018-11-17 stsp goto done;
626 f4a881ce 2018-11-17 stsp }
627 f4a881ce 2018-11-17 stsp
628 f4a881ce 2018-11-17 stsp tlen = strlen(GOT_TAG_TAG_TAG);
629 f4a881ce 2018-11-17 stsp if (strncmp(s, GOT_TAG_TAG_TAG, tlen) == 0) {
630 f4a881ce 2018-11-17 stsp char *p;
631 f4a881ce 2018-11-17 stsp size_t slen;
632 f4a881ce 2018-11-17 stsp remain -= tlen;
633 f4a881ce 2018-11-17 stsp if (remain <= 0) {
634 f4a881ce 2018-11-17 stsp err = got_error(GOT_ERR_BAD_OBJ_DATA);
635 f4a881ce 2018-11-17 stsp goto done;
636 f4a881ce 2018-11-17 stsp }
637 f4a881ce 2018-11-17 stsp s += tlen;
638 f4a881ce 2018-11-17 stsp p = strchr(s, '\n');
639 f4a881ce 2018-11-17 stsp if (p == NULL) {
640 f4a881ce 2018-11-17 stsp err = got_error(GOT_ERR_BAD_OBJ_DATA);
641 f4a881ce 2018-11-17 stsp goto done;
642 f4a881ce 2018-11-17 stsp }
643 f4a881ce 2018-11-17 stsp *p = '\0';
644 f4a881ce 2018-11-17 stsp slen = strlen(s);
645 f4a881ce 2018-11-17 stsp (*tag)->tag = strndup(s, slen);
646 f4a881ce 2018-11-17 stsp if ((*tag)->tag == NULL) {
647 f4a881ce 2018-11-17 stsp err = got_error_from_errno();
648 f4a881ce 2018-11-17 stsp goto done;
649 f4a881ce 2018-11-17 stsp }
650 f4a881ce 2018-11-17 stsp s += slen + 1;
651 f4a881ce 2018-11-17 stsp remain -= slen + 1;
652 f4a881ce 2018-11-17 stsp if (remain <= 0) {
653 f4a881ce 2018-11-17 stsp err = got_error(GOT_ERR_BAD_OBJ_DATA);
654 f4a881ce 2018-11-17 stsp goto done;
655 f4a881ce 2018-11-17 stsp }
656 f4a881ce 2018-11-17 stsp } else {
657 f4a881ce 2018-11-17 stsp err = got_error(GOT_ERR_BAD_OBJ_DATA);
658 f4a881ce 2018-11-17 stsp goto done;
659 f4a881ce 2018-11-17 stsp }
660 f4a881ce 2018-11-17 stsp
661 f4a881ce 2018-11-17 stsp tlen = strlen(GOT_TAG_TAG_TAGGER);
662 f4a881ce 2018-11-17 stsp if (strncmp(s, GOT_TAG_TAG_TAGGER, tlen) == 0) {
663 f4a881ce 2018-11-17 stsp char *p;
664 f4a881ce 2018-11-17 stsp size_t slen;
665 f4a881ce 2018-11-17 stsp
666 f4a881ce 2018-11-17 stsp remain -= tlen;
667 f4a881ce 2018-11-17 stsp if (remain <= 0) {
668 f4a881ce 2018-11-17 stsp err = got_error(GOT_ERR_BAD_OBJ_DATA);
669 f4a881ce 2018-11-17 stsp goto done;
670 f4a881ce 2018-11-17 stsp }
671 f4a881ce 2018-11-17 stsp s += tlen;
672 f4a881ce 2018-11-17 stsp p = strchr(s, '\n');
673 f4a881ce 2018-11-17 stsp if (p == NULL) {
674 f4a881ce 2018-11-17 stsp err = got_error(GOT_ERR_BAD_OBJ_DATA);
675 f4a881ce 2018-11-17 stsp goto done;
676 f4a881ce 2018-11-17 stsp }
677 f4a881ce 2018-11-17 stsp *p = '\0';
678 f4a881ce 2018-11-17 stsp slen = strlen(s);
679 f4a881ce 2018-11-17 stsp err = parse_commit_time(&(*tag)->tagger_time,
680 f4a881ce 2018-11-17 stsp &(*tag)->tagger_gmtoff, s);
681 f4a881ce 2018-11-17 stsp if (err)
682 f4a881ce 2018-11-17 stsp goto done;
683 f4a881ce 2018-11-17 stsp (*tag)->tagger = strdup(s);
684 f4a881ce 2018-11-17 stsp if ((*tag)->tagger == NULL) {
685 f4a881ce 2018-11-17 stsp err = got_error_from_errno();
686 f4a881ce 2018-11-17 stsp goto done;
687 f4a881ce 2018-11-17 stsp }
688 f4a881ce 2018-11-17 stsp s += slen + 1;
689 f4a881ce 2018-11-17 stsp remain -= slen + 1;
690 f4a881ce 2018-11-17 stsp if (remain <= 0) {
691 f4a881ce 2018-11-17 stsp err = got_error(GOT_ERR_BAD_OBJ_DATA);
692 f4a881ce 2018-11-17 stsp goto done;
693 f4a881ce 2018-11-17 stsp }
694 f4a881ce 2018-11-17 stsp } else {
695 f4a881ce 2018-11-17 stsp err = got_error(GOT_ERR_BAD_OBJ_DATA);
696 f4a881ce 2018-11-17 stsp goto done;
697 f4a881ce 2018-11-17 stsp }
698 f4a881ce 2018-11-17 stsp
699 f4a881ce 2018-11-17 stsp (*tag)->tagmsg = strndup(s, remain);
700 f4a881ce 2018-11-17 stsp if ((*tag)->tagmsg == NULL) {
701 f4a881ce 2018-11-17 stsp err = got_error_from_errno();
702 f4a881ce 2018-11-17 stsp goto done;
703 f4a881ce 2018-11-17 stsp }
704 f4a881ce 2018-11-17 stsp done:
705 f4a881ce 2018-11-17 stsp if (err) {
706 f4a881ce 2018-11-17 stsp got_object_tag_close(*tag);
707 f4a881ce 2018-11-17 stsp *tag = NULL;
708 f4a881ce 2018-11-17 stsp }
709 f4a881ce 2018-11-17 stsp return err;
710 f4a881ce 2018-11-17 stsp }
711 f4a881ce 2018-11-17 stsp
712 f4a881ce 2018-11-17 stsp const struct got_error *
713 ad242220 2018-09-08 stsp got_read_file_to_mem(uint8_t **outbuf, size_t *outlen, FILE *f)
714 a440fac0 2018-09-06 stsp {
715 a440fac0 2018-09-06 stsp const struct got_error *err = NULL;
716 a440fac0 2018-09-06 stsp static const size_t blocksize = 512;
717 a440fac0 2018-09-06 stsp size_t n, total, remain;
718 a440fac0 2018-09-06 stsp uint8_t *buf;
719 a440fac0 2018-09-06 stsp
720 a440fac0 2018-09-06 stsp *outbuf = NULL;
721 a440fac0 2018-09-06 stsp *outlen = 0;
722 a440fac0 2018-09-06 stsp
723 a440fac0 2018-09-06 stsp buf = malloc(blocksize);
724 a440fac0 2018-09-06 stsp if (buf == NULL)
725 a440fac0 2018-09-06 stsp return got_error_from_errno();
726 a440fac0 2018-09-06 stsp
727 a440fac0 2018-09-06 stsp remain = blocksize;
728 a440fac0 2018-09-06 stsp total = 0;
729 a440fac0 2018-09-06 stsp while (1) {
730 a440fac0 2018-09-06 stsp if (remain == 0) {
731 a440fac0 2018-09-06 stsp uint8_t *newbuf;
732 a440fac0 2018-09-06 stsp newbuf = reallocarray(buf, 1, total + blocksize);
733 a440fac0 2018-09-06 stsp if (newbuf == NULL) {
734 a440fac0 2018-09-06 stsp err = got_error_from_errno();
735 a440fac0 2018-09-06 stsp goto done;
736 a440fac0 2018-09-06 stsp }
737 a440fac0 2018-09-06 stsp buf = newbuf;
738 a440fac0 2018-09-06 stsp remain += blocksize;
739 a440fac0 2018-09-06 stsp }
740 a440fac0 2018-09-06 stsp n = fread(buf + total, 1, remain, f);
741 a440fac0 2018-09-06 stsp if (n == 0) {
742 a440fac0 2018-09-06 stsp if (ferror(f)) {
743 a440fac0 2018-09-06 stsp err = got_ferror(f, GOT_ERR_IO);
744 a440fac0 2018-09-06 stsp goto done;
745 a440fac0 2018-09-06 stsp }
746 a440fac0 2018-09-06 stsp break; /* EOF */
747 a440fac0 2018-09-06 stsp }
748 a440fac0 2018-09-06 stsp remain -= n;
749 a440fac0 2018-09-06 stsp total += n;
750 a440fac0 2018-09-06 stsp };
751 a440fac0 2018-09-06 stsp
752 a440fac0 2018-09-06 stsp done:
753 a440fac0 2018-09-06 stsp if (err == NULL) {
754 a440fac0 2018-09-06 stsp *outbuf = buf;
755 a440fac0 2018-09-06 stsp *outlen = total;
756 a440fac0 2018-09-06 stsp } else
757 a440fac0 2018-09-06 stsp free(buf);
758 ad242220 2018-09-08 stsp return err;
759 a440fac0 2018-09-06 stsp }