Blame


1 63581804 2018-07-09 stsp /*
2 63581804 2018-07-09 stsp * Copyright (c) 2018 Stefan Sperling <stsp@openbsd.org>
3 63581804 2018-07-09 stsp *
4 63581804 2018-07-09 stsp * Permission to use, copy, modify, and distribute this software for any
5 63581804 2018-07-09 stsp * purpose with or without fee is hereby granted, provided that the above
6 63581804 2018-07-09 stsp * copyright notice and this permission notice appear in all copies.
7 63581804 2018-07-09 stsp *
8 63581804 2018-07-09 stsp * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
9 63581804 2018-07-09 stsp * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
10 63581804 2018-07-09 stsp * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
11 63581804 2018-07-09 stsp * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
12 63581804 2018-07-09 stsp * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
13 63581804 2018-07-09 stsp * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
14 63581804 2018-07-09 stsp * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
15 63581804 2018-07-09 stsp */
16 63581804 2018-07-09 stsp
17 63581804 2018-07-09 stsp
18 5211b8c8 2019-03-19 stsp #include <errno.h>
19 63581804 2018-07-09 stsp #include <stdio.h>
20 63581804 2018-07-09 stsp #include <stdlib.h>
21 63581804 2018-07-09 stsp #include <string.h>
22 81a12da5 2020-09-09 naddy #include <unistd.h>
23 63581804 2018-07-09 stsp #include <zlib.h>
24 63581804 2018-07-09 stsp #include <time.h>
25 63581804 2018-07-09 stsp
26 63581804 2018-07-09 stsp #include "got_error.h"
27 63581804 2018-07-09 stsp #include "got_object.h"
28 324d37e7 2019-05-11 stsp #include "got_path.h"
29 63581804 2018-07-09 stsp
30 63581804 2018-07-09 stsp #include "got_lib_inflate.h"
31 63581804 2018-07-09 stsp
32 63581804 2018-07-09 stsp #ifndef MIN
33 63581804 2018-07-09 stsp #define MIN(_a,_b) ((_a) < (_b) ? (_a) : (_b))
34 63581804 2018-07-09 stsp #endif
35 63581804 2018-07-09 stsp
36 63581804 2018-07-09 stsp const struct got_error *
37 1e87a3c3 2020-03-18 stsp got_inflate_init(struct got_inflate_buf *zb, uint8_t *outbuf, size_t bufsize,
38 6ad68bce 2020-03-24 stsp struct got_inflate_checksum *csum)
39 63581804 2018-07-09 stsp {
40 63581804 2018-07-09 stsp const struct got_error *err = NULL;
41 5211b8c8 2019-03-19 stsp int zerr;
42 63581804 2018-07-09 stsp
43 63581804 2018-07-09 stsp memset(&zb->z, 0, sizeof(zb->z));
44 63581804 2018-07-09 stsp
45 63581804 2018-07-09 stsp zb->z.zalloc = Z_NULL;
46 63581804 2018-07-09 stsp zb->z.zfree = Z_NULL;
47 5211b8c8 2019-03-19 stsp zerr = inflateInit(&zb->z);
48 5211b8c8 2019-03-19 stsp if (zerr != Z_OK) {
49 5211b8c8 2019-03-19 stsp if (zerr == Z_ERRNO)
50 638f9024 2019-05-13 stsp return got_error_from_errno("inflateInit");
51 5211b8c8 2019-03-19 stsp if (zerr == Z_MEM_ERROR) {
52 5211b8c8 2019-03-19 stsp errno = ENOMEM;
53 638f9024 2019-05-13 stsp return got_error_from_errno("inflateInit");
54 5211b8c8 2019-03-19 stsp }
55 5211b8c8 2019-03-19 stsp return got_error(GOT_ERR_DECOMPRESSION);
56 63581804 2018-07-09 stsp }
57 63581804 2018-07-09 stsp
58 63581804 2018-07-09 stsp zb->inlen = zb->outlen = bufsize;
59 63581804 2018-07-09 stsp
60 63581804 2018-07-09 stsp zb->inbuf = calloc(1, zb->inlen);
61 63581804 2018-07-09 stsp if (zb->inbuf == NULL) {
62 638f9024 2019-05-13 stsp err = got_error_from_errno("calloc");
63 63581804 2018-07-09 stsp goto done;
64 63581804 2018-07-09 stsp }
65 63581804 2018-07-09 stsp
66 63581804 2018-07-09 stsp zb->flags = 0;
67 63581804 2018-07-09 stsp if (outbuf == NULL) {
68 63581804 2018-07-09 stsp zb->outbuf = calloc(1, zb->outlen);
69 63581804 2018-07-09 stsp if (zb->outbuf == NULL) {
70 638f9024 2019-05-13 stsp err = got_error_from_errno("calloc");
71 63581804 2018-07-09 stsp goto done;
72 63581804 2018-07-09 stsp }
73 23bc48a9 2019-03-19 stsp zb->flags |= GOT_INFLATE_F_OWN_OUTBUF;
74 63581804 2018-07-09 stsp } else
75 63581804 2018-07-09 stsp zb->outbuf = outbuf;
76 63581804 2018-07-09 stsp
77 6ad68bce 2020-03-24 stsp zb->csum = csum;
78 63581804 2018-07-09 stsp done:
79 63581804 2018-07-09 stsp if (err)
80 63581804 2018-07-09 stsp got_inflate_end(zb);
81 63581804 2018-07-09 stsp return err;
82 63581804 2018-07-09 stsp }
83 63581804 2018-07-09 stsp
84 6ad68bce 2020-03-24 stsp static void
85 dbaa2362 2021-09-28 thomas csum_input(struct got_inflate_checksum *csum, const uint8_t *buf, size_t len)
86 6ad68bce 2020-03-24 stsp {
87 6ad68bce 2020-03-24 stsp if (csum->input_crc)
88 6ad68bce 2020-03-24 stsp *csum->input_crc = crc32(*csum->input_crc, buf, len);
89 6ad68bce 2020-03-24 stsp
90 6ad68bce 2020-03-24 stsp if (csum->input_sha1)
91 6ad68bce 2020-03-24 stsp SHA1Update(csum->input_sha1, buf, len);
92 6ad68bce 2020-03-24 stsp }
93 6ad68bce 2020-03-24 stsp
94 d5c81d44 2021-07-08 stsp static void
95 dbaa2362 2021-09-28 thomas csum_output(struct got_inflate_checksum *csum, const uint8_t *buf, size_t len)
96 d5c81d44 2021-07-08 stsp {
97 d5c81d44 2021-07-08 stsp if (csum->output_crc)
98 d5c81d44 2021-07-08 stsp *csum->output_crc = crc32(*csum->output_crc, buf, len);
99 d5c81d44 2021-07-08 stsp
100 d5c81d44 2021-07-08 stsp if (csum->output_sha1)
101 d5c81d44 2021-07-08 stsp SHA1Update(csum->output_sha1, buf, len);
102 d5c81d44 2021-07-08 stsp }
103 d5c81d44 2021-07-08 stsp
104 63581804 2018-07-09 stsp const struct got_error *
105 6fb3a497 2020-03-18 stsp got_inflate_read(struct got_inflate_buf *zb, FILE *f, size_t *outlenp,
106 abc59930 2021-09-05 naddy size_t *consumed)
107 63581804 2018-07-09 stsp {
108 63581804 2018-07-09 stsp size_t last_total_out = zb->z.total_out;
109 6fb3a497 2020-03-18 stsp size_t last_total_in = zb->z.total_in;
110 63581804 2018-07-09 stsp z_stream *z = &zb->z;
111 63581804 2018-07-09 stsp int ret = Z_ERRNO;
112 63581804 2018-07-09 stsp
113 63581804 2018-07-09 stsp z->next_out = zb->outbuf;
114 63581804 2018-07-09 stsp z->avail_out = zb->outlen;
115 63581804 2018-07-09 stsp
116 63581804 2018-07-09 stsp *outlenp = 0;
117 6fb3a497 2020-03-18 stsp if (consumed)
118 6fb3a497 2020-03-18 stsp *consumed = 0;
119 63581804 2018-07-09 stsp do {
120 dbaa2362 2021-09-28 thomas uint8_t *csum_in = NULL, *csum_out = NULL;
121 d5c81d44 2021-07-08 stsp size_t csum_avail_in = 0, csum_avail_out = 0;
122 1e87a3c3 2020-03-18 stsp
123 63581804 2018-07-09 stsp if (z->avail_in == 0) {
124 63581804 2018-07-09 stsp size_t n = fread(zb->inbuf, 1, zb->inlen, f);
125 63581804 2018-07-09 stsp if (n == 0) {
126 63581804 2018-07-09 stsp if (ferror(f))
127 63581804 2018-07-09 stsp return got_ferror(f, GOT_ERR_IO);
128 63581804 2018-07-09 stsp /* EOF */
129 63581804 2018-07-09 stsp ret = Z_STREAM_END;
130 63581804 2018-07-09 stsp break;
131 63581804 2018-07-09 stsp }
132 63581804 2018-07-09 stsp z->next_in = zb->inbuf;
133 63581804 2018-07-09 stsp z->avail_in = n;
134 63581804 2018-07-09 stsp }
135 6ad68bce 2020-03-24 stsp if (zb->csum) {
136 6ad68bce 2020-03-24 stsp csum_in = z->next_in;
137 d5c81d44 2021-07-08 stsp csum_avail_in = z->avail_in;
138 d5c81d44 2021-07-08 stsp csum_out = z->next_out;
139 d5c81d44 2021-07-08 stsp csum_avail_out = z->avail_out;
140 1e87a3c3 2020-03-18 stsp }
141 63581804 2018-07-09 stsp ret = inflate(z, Z_SYNC_FLUSH);
142 d5c81d44 2021-07-08 stsp if (zb->csum) {
143 d5c81d44 2021-07-08 stsp csum_input(zb->csum, csum_in,
144 d5c81d44 2021-07-08 stsp csum_avail_in - z->avail_in);
145 d5c81d44 2021-07-08 stsp csum_output(zb->csum, csum_out,
146 d5c81d44 2021-07-08 stsp csum_avail_out - z->avail_out);
147 d5c81d44 2021-07-08 stsp }
148 63581804 2018-07-09 stsp } while (ret == Z_OK && z->avail_out > 0);
149 63581804 2018-07-09 stsp
150 8baa7d26 2020-03-17 stsp if (ret == Z_OK || ret == Z_BUF_ERROR) {
151 23bc48a9 2019-03-19 stsp zb->flags |= GOT_INFLATE_F_HAVE_MORE;
152 63581804 2018-07-09 stsp } else {
153 63581804 2018-07-09 stsp if (ret != Z_STREAM_END)
154 63581804 2018-07-09 stsp return got_error(GOT_ERR_DECOMPRESSION);
155 23bc48a9 2019-03-19 stsp zb->flags &= ~GOT_INFLATE_F_HAVE_MORE;
156 63581804 2018-07-09 stsp }
157 63581804 2018-07-09 stsp
158 63581804 2018-07-09 stsp *outlenp = z->total_out - last_total_out;
159 6fb3a497 2020-03-18 stsp if (consumed)
160 6fb3a497 2020-03-18 stsp *consumed += z->total_in - last_total_in;
161 63581804 2018-07-09 stsp return NULL;
162 63581804 2018-07-09 stsp }
163 63581804 2018-07-09 stsp
164 63581804 2018-07-09 stsp const struct got_error *
165 3ab5e33c 2020-03-18 stsp got_inflate_read_fd(struct got_inflate_buf *zb, int fd, size_t *outlenp,
166 3ab5e33c 2020-03-18 stsp size_t *consumed)
167 63581804 2018-07-09 stsp {
168 63581804 2018-07-09 stsp size_t last_total_out = zb->z.total_out;
169 3ab5e33c 2020-03-18 stsp size_t last_total_in = zb->z.total_in;
170 63581804 2018-07-09 stsp z_stream *z = &zb->z;
171 63581804 2018-07-09 stsp int ret = Z_ERRNO;
172 63581804 2018-07-09 stsp
173 63581804 2018-07-09 stsp z->next_out = zb->outbuf;
174 63581804 2018-07-09 stsp z->avail_out = zb->outlen;
175 63581804 2018-07-09 stsp
176 63581804 2018-07-09 stsp *outlenp = 0;
177 3ab5e33c 2020-03-18 stsp if (consumed)
178 3ab5e33c 2020-03-18 stsp *consumed = 0;
179 63581804 2018-07-09 stsp do {
180 dbaa2362 2021-09-28 thomas uint8_t *csum_in = NULL, *csum_out = NULL;
181 d5c81d44 2021-07-08 stsp size_t csum_avail_in = 0, csum_avail_out = 0;
182 1e87a3c3 2020-03-18 stsp
183 63581804 2018-07-09 stsp if (z->avail_in == 0) {
184 63581804 2018-07-09 stsp ssize_t n = read(fd, zb->inbuf, zb->inlen);
185 63581804 2018-07-09 stsp if (n < 0)
186 638f9024 2019-05-13 stsp return got_error_from_errno("read");
187 63581804 2018-07-09 stsp else if (n == 0) {
188 63581804 2018-07-09 stsp /* EOF */
189 63581804 2018-07-09 stsp ret = Z_STREAM_END;
190 63581804 2018-07-09 stsp break;
191 63581804 2018-07-09 stsp }
192 63581804 2018-07-09 stsp z->next_in = zb->inbuf;
193 63581804 2018-07-09 stsp z->avail_in = n;
194 63581804 2018-07-09 stsp }
195 6ad68bce 2020-03-24 stsp if (zb->csum) {
196 6ad68bce 2020-03-24 stsp csum_in = z->next_in;
197 d5c81d44 2021-07-08 stsp csum_avail_in = z->avail_in;
198 d5c81d44 2021-07-08 stsp csum_out = z->next_out;
199 d5c81d44 2021-07-08 stsp csum_avail_out = z->avail_out;
200 1e87a3c3 2020-03-18 stsp }
201 63581804 2018-07-09 stsp ret = inflate(z, Z_SYNC_FLUSH);
202 d5c81d44 2021-07-08 stsp if (zb->csum) {
203 d5c81d44 2021-07-08 stsp csum_input(zb->csum, csum_in,
204 d5c81d44 2021-07-08 stsp csum_avail_in - z->avail_in);
205 d5c81d44 2021-07-08 stsp csum_output(zb->csum, csum_out,
206 d5c81d44 2021-07-08 stsp csum_avail_out - z->avail_out);
207 d5c81d44 2021-07-08 stsp }
208 63581804 2018-07-09 stsp } while (ret == Z_OK && z->avail_out > 0);
209 63581804 2018-07-09 stsp
210 686d24ff 2020-03-15 stsp if (ret == Z_OK || ret == Z_BUF_ERROR) {
211 23bc48a9 2019-03-19 stsp zb->flags |= GOT_INFLATE_F_HAVE_MORE;
212 63581804 2018-07-09 stsp } else {
213 63581804 2018-07-09 stsp if (ret != Z_STREAM_END)
214 63581804 2018-07-09 stsp return got_error(GOT_ERR_DECOMPRESSION);
215 23bc48a9 2019-03-19 stsp zb->flags &= ~GOT_INFLATE_F_HAVE_MORE;
216 63581804 2018-07-09 stsp }
217 63581804 2018-07-09 stsp
218 63581804 2018-07-09 stsp *outlenp = z->total_out - last_total_out;
219 3ab5e33c 2020-03-18 stsp if (consumed)
220 3ab5e33c 2020-03-18 stsp *consumed += z->total_in - last_total_in;
221 63581804 2018-07-09 stsp return NULL;
222 63581804 2018-07-09 stsp }
223 63581804 2018-07-09 stsp
224 63581804 2018-07-09 stsp const struct got_error *
225 23bc48a9 2019-03-19 stsp got_inflate_read_mmap(struct got_inflate_buf *zb, uint8_t *map, size_t offset,
226 63581804 2018-07-09 stsp size_t len, size_t *outlenp, size_t *consumed)
227 63581804 2018-07-09 stsp {
228 63581804 2018-07-09 stsp size_t last_total_out = zb->z.total_out;
229 63581804 2018-07-09 stsp z_stream *z = &zb->z;
230 63581804 2018-07-09 stsp int ret = Z_ERRNO;
231 63581804 2018-07-09 stsp
232 63581804 2018-07-09 stsp z->next_out = zb->outbuf;
233 63581804 2018-07-09 stsp z->avail_out = zb->outlen;
234 63581804 2018-07-09 stsp
235 63581804 2018-07-09 stsp *outlenp = 0;
236 63581804 2018-07-09 stsp *consumed = 0;
237 63581804 2018-07-09 stsp
238 63581804 2018-07-09 stsp do {
239 dbaa2362 2021-09-28 thomas uint8_t *csum_in = NULL, *csum_out = NULL;
240 d5c81d44 2021-07-08 stsp size_t csum_avail_in = 0, csum_avail_out = 0;
241 37bd7602 2018-07-23 stsp size_t last_total_in = zb->z.total_in;
242 1e87a3c3 2020-03-18 stsp
243 63581804 2018-07-09 stsp if (z->avail_in == 0) {
244 63581804 2018-07-09 stsp if (len == 0) {
245 63581804 2018-07-09 stsp /* EOF */
246 63581804 2018-07-09 stsp ret = Z_STREAM_END;
247 63581804 2018-07-09 stsp break;
248 63581804 2018-07-09 stsp }
249 37bd7602 2018-07-23 stsp z->next_in = map + offset + *consumed;
250 ee0cb6f2 2020-03-17 stsp z->avail_in = len - *consumed;
251 63581804 2018-07-09 stsp }
252 6ad68bce 2020-03-24 stsp if (zb->csum) {
253 6ad68bce 2020-03-24 stsp csum_in = z->next_in;
254 d5c81d44 2021-07-08 stsp csum_avail_in = z->avail_in;
255 d5c81d44 2021-07-08 stsp csum_out = z->next_out;
256 d5c81d44 2021-07-08 stsp csum_avail_out = z->avail_out;
257 1e87a3c3 2020-03-18 stsp }
258 63581804 2018-07-09 stsp ret = inflate(z, Z_SYNC_FLUSH);
259 d5c81d44 2021-07-08 stsp if (zb->csum) {
260 d5c81d44 2021-07-08 stsp csum_input(zb->csum, csum_in,
261 d5c81d44 2021-07-08 stsp csum_avail_in - z->avail_in);
262 d5c81d44 2021-07-08 stsp csum_output(zb->csum, csum_out,
263 d5c81d44 2021-07-08 stsp csum_avail_out - z->avail_out);
264 d5c81d44 2021-07-08 stsp }
265 37bd7602 2018-07-23 stsp *consumed += z->total_in - last_total_in;
266 63581804 2018-07-09 stsp } while (ret == Z_OK && z->avail_out > 0);
267 63581804 2018-07-09 stsp
268 686d24ff 2020-03-15 stsp if (ret == Z_OK || ret == Z_BUF_ERROR) {
269 23bc48a9 2019-03-19 stsp zb->flags |= GOT_INFLATE_F_HAVE_MORE;
270 63581804 2018-07-09 stsp } else {
271 63581804 2018-07-09 stsp if (ret != Z_STREAM_END)
272 63581804 2018-07-09 stsp return got_error(GOT_ERR_DECOMPRESSION);
273 23bc48a9 2019-03-19 stsp zb->flags &= ~GOT_INFLATE_F_HAVE_MORE;
274 63581804 2018-07-09 stsp }
275 63581804 2018-07-09 stsp
276 63581804 2018-07-09 stsp *outlenp = z->total_out - last_total_out;
277 63581804 2018-07-09 stsp return NULL;
278 63581804 2018-07-09 stsp }
279 63581804 2018-07-09 stsp
280 63581804 2018-07-09 stsp void
281 23bc48a9 2019-03-19 stsp got_inflate_end(struct got_inflate_buf *zb)
282 63581804 2018-07-09 stsp {
283 63581804 2018-07-09 stsp free(zb->inbuf);
284 23bc48a9 2019-03-19 stsp if (zb->flags & GOT_INFLATE_F_OWN_OUTBUF)
285 63581804 2018-07-09 stsp free(zb->outbuf);
286 63581804 2018-07-09 stsp inflateEnd(&zb->z);
287 63581804 2018-07-09 stsp }
288 63581804 2018-07-09 stsp
289 63581804 2018-07-09 stsp const struct got_error *
290 6fb3a497 2020-03-18 stsp got_inflate_to_mem(uint8_t **outbuf, size_t *outlen,
291 12f2167a 2021-07-04 stsp size_t *consumed_total, struct got_inflate_checksum *csum, FILE *f)
292 63581804 2018-07-09 stsp {
293 63581804 2018-07-09 stsp const struct got_error *err;
294 6fb3a497 2020-03-18 stsp size_t avail, consumed;
295 23bc48a9 2019-03-19 stsp struct got_inflate_buf zb;
296 63581804 2018-07-09 stsp void *newbuf;
297 17d745b8 2018-07-23 stsp int nbuf = 1;
298 63581804 2018-07-09 stsp
299 2decf4c6 2020-03-18 stsp if (outbuf) {
300 2decf4c6 2020-03-18 stsp *outbuf = malloc(GOT_INFLATE_BUFSIZE);
301 2decf4c6 2020-03-18 stsp if (*outbuf == NULL)
302 2decf4c6 2020-03-18 stsp return got_error_from_errno("malloc");
303 12f2167a 2021-07-04 stsp err = got_inflate_init(&zb, *outbuf, GOT_INFLATE_BUFSIZE, csum);
304 2decf4c6 2020-03-18 stsp } else
305 12f2167a 2021-07-04 stsp err = got_inflate_init(&zb, NULL, GOT_INFLATE_BUFSIZE, csum);
306 63581804 2018-07-09 stsp if (err)
307 63581804 2018-07-09 stsp return err;
308 63581804 2018-07-09 stsp
309 63581804 2018-07-09 stsp *outlen = 0;
310 6fb3a497 2020-03-18 stsp if (consumed_total)
311 6fb3a497 2020-03-18 stsp *consumed_total = 0;
312 63581804 2018-07-09 stsp
313 63581804 2018-07-09 stsp do {
314 6fb3a497 2020-03-18 stsp err = got_inflate_read(&zb, f, &avail, &consumed);
315 63581804 2018-07-09 stsp if (err)
316 5aef3967 2018-07-22 stsp goto done;
317 63581804 2018-07-09 stsp *outlen += avail;
318 6fb3a497 2020-03-18 stsp if (consumed_total)
319 6fb3a497 2020-03-18 stsp *consumed_total += consumed;
320 23bc48a9 2019-03-19 stsp if (zb.flags & GOT_INFLATE_F_HAVE_MORE) {
321 2decf4c6 2020-03-18 stsp if (outbuf == NULL)
322 2decf4c6 2020-03-18 stsp continue;
323 5eddcd60 2020-03-18 stsp zb.outlen = (nbuf * GOT_INFLATE_BUFSIZE) - *outlen;
324 6dc3b75a 2019-05-22 stsp newbuf = reallocarray(*outbuf, ++nbuf,
325 62d463ca 2020-10-20 naddy GOT_INFLATE_BUFSIZE);
326 63581804 2018-07-09 stsp if (newbuf == NULL) {
327 6dc3b75a 2019-05-22 stsp err = got_error_from_errno("reallocarray");
328 63581804 2018-07-09 stsp free(*outbuf);
329 63581804 2018-07-09 stsp *outbuf = NULL;
330 63581804 2018-07-09 stsp *outlen = 0;
331 63581804 2018-07-09 stsp goto done;
332 63581804 2018-07-09 stsp }
333 63581804 2018-07-09 stsp *outbuf = newbuf;
334 63581804 2018-07-09 stsp zb.outbuf = newbuf + *outlen;
335 63581804 2018-07-09 stsp }
336 23bc48a9 2019-03-19 stsp } while (zb.flags & GOT_INFLATE_F_HAVE_MORE);
337 63581804 2018-07-09 stsp
338 63581804 2018-07-09 stsp done:
339 63581804 2018-07-09 stsp got_inflate_end(&zb);
340 63581804 2018-07-09 stsp return err;
341 63581804 2018-07-09 stsp }
342 63581804 2018-07-09 stsp
343 63581804 2018-07-09 stsp const struct got_error *
344 3ab5e33c 2020-03-18 stsp got_inflate_to_mem_fd(uint8_t **outbuf, size_t *outlen,
345 6ad68bce 2020-03-24 stsp size_t *consumed_total, struct got_inflate_checksum *csum,
346 6ad68bce 2020-03-24 stsp size_t expected_size, int infd)
347 63581804 2018-07-09 stsp {
348 63581804 2018-07-09 stsp const struct got_error *err;
349 3ab5e33c 2020-03-18 stsp size_t avail, consumed;
350 23bc48a9 2019-03-19 stsp struct got_inflate_buf zb;
351 63581804 2018-07-09 stsp void *newbuf;
352 17d745b8 2018-07-23 stsp int nbuf = 1;
353 55fdd257 2020-03-18 stsp size_t bufsize = GOT_INFLATE_BUFSIZE;
354 63581804 2018-07-09 stsp
355 55fdd257 2020-03-18 stsp /* Optimize buffer size in case short reads should suffice. */
356 55fdd257 2020-03-18 stsp if (expected_size > 0 && expected_size < bufsize)
357 55fdd257 2020-03-18 stsp bufsize = expected_size;
358 3168e5da 2020-09-10 stsp
359 2decf4c6 2020-03-18 stsp if (outbuf) {
360 55fdd257 2020-03-18 stsp *outbuf = malloc(bufsize);
361 2decf4c6 2020-03-18 stsp if (*outbuf == NULL)
362 2decf4c6 2020-03-18 stsp return got_error_from_errno("malloc");
363 6ad68bce 2020-03-24 stsp err = got_inflate_init(&zb, *outbuf, GOT_INFLATE_BUFSIZE, csum);
364 2decf4c6 2020-03-18 stsp } else
365 6ad68bce 2020-03-24 stsp err = got_inflate_init(&zb, NULL, bufsize, csum);
366 63581804 2018-07-09 stsp if (err)
367 5aef3967 2018-07-22 stsp goto done;
368 63581804 2018-07-09 stsp
369 63581804 2018-07-09 stsp *outlen = 0;
370 3ab5e33c 2020-03-18 stsp if (consumed_total)
371 3ab5e33c 2020-03-18 stsp *consumed_total = 0;
372 63581804 2018-07-09 stsp
373 63581804 2018-07-09 stsp do {
374 3ab5e33c 2020-03-18 stsp err = got_inflate_read_fd(&zb, infd, &avail, &consumed);
375 63581804 2018-07-09 stsp if (err)
376 5aef3967 2018-07-22 stsp goto done;
377 63581804 2018-07-09 stsp *outlen += avail;
378 3ab5e33c 2020-03-18 stsp if (consumed_total)
379 3ab5e33c 2020-03-18 stsp *consumed_total += consumed;
380 23bc48a9 2019-03-19 stsp if (zb.flags & GOT_INFLATE_F_HAVE_MORE) {
381 2decf4c6 2020-03-18 stsp if (outbuf == NULL)
382 2decf4c6 2020-03-18 stsp continue;
383 5eddcd60 2020-03-18 stsp zb.outlen = (nbuf * GOT_INFLATE_BUFSIZE) - *outlen;
384 f2c5fe0e 2019-05-22 stsp newbuf = reallocarray(*outbuf, ++nbuf,
385 23bc48a9 2019-03-19 stsp GOT_INFLATE_BUFSIZE);
386 63581804 2018-07-09 stsp if (newbuf == NULL) {
387 f2c5fe0e 2019-05-22 stsp err = got_error_from_errno("reallocarray");
388 63581804 2018-07-09 stsp free(*outbuf);
389 63581804 2018-07-09 stsp *outbuf = NULL;
390 63581804 2018-07-09 stsp *outlen = 0;
391 63581804 2018-07-09 stsp goto done;
392 63581804 2018-07-09 stsp }
393 63581804 2018-07-09 stsp *outbuf = newbuf;
394 63581804 2018-07-09 stsp zb.outbuf = newbuf + *outlen;
395 63581804 2018-07-09 stsp }
396 23bc48a9 2019-03-19 stsp } while (zb.flags & GOT_INFLATE_F_HAVE_MORE);
397 63581804 2018-07-09 stsp
398 63581804 2018-07-09 stsp done:
399 63581804 2018-07-09 stsp got_inflate_end(&zb);
400 63581804 2018-07-09 stsp return err;
401 63581804 2018-07-09 stsp }
402 63581804 2018-07-09 stsp
403 63581804 2018-07-09 stsp const struct got_error *
404 2e5a6fad 2020-03-18 stsp got_inflate_to_mem_mmap(uint8_t **outbuf, size_t *outlen,
405 6ad68bce 2020-03-24 stsp size_t *consumed_total, struct got_inflate_checksum *csum, uint8_t *map,
406 6ad68bce 2020-03-24 stsp size_t offset, size_t len)
407 63581804 2018-07-09 stsp {
408 63581804 2018-07-09 stsp const struct got_error *err;
409 37bd7602 2018-07-23 stsp size_t avail, consumed;
410 23bc48a9 2019-03-19 stsp struct got_inflate_buf zb;
411 63581804 2018-07-09 stsp void *newbuf;
412 37bd7602 2018-07-23 stsp int nbuf = 1;
413 63581804 2018-07-09 stsp
414 2e5a6fad 2020-03-18 stsp if (outbuf) {
415 2e5a6fad 2020-03-18 stsp *outbuf = malloc(GOT_INFLATE_BUFSIZE);
416 2e5a6fad 2020-03-18 stsp if (*outbuf == NULL)
417 2e5a6fad 2020-03-18 stsp return got_error_from_errno("malloc");
418 6ad68bce 2020-03-24 stsp err = got_inflate_init(&zb, *outbuf, GOT_INFLATE_BUFSIZE, csum);
419 2e5a6fad 2020-03-18 stsp if (err) {
420 2e5a6fad 2020-03-18 stsp free(*outbuf);
421 2e5a6fad 2020-03-18 stsp *outbuf = NULL;
422 2e5a6fad 2020-03-18 stsp return err;
423 2e5a6fad 2020-03-18 stsp }
424 2e5a6fad 2020-03-18 stsp } else {
425 6ad68bce 2020-03-24 stsp err = got_inflate_init(&zb, NULL, GOT_INFLATE_BUFSIZE, csum);
426 d94c35b0 2022-01-23 thomas if (err)
427 d94c35b0 2022-01-23 thomas return err;
428 60507209 2018-07-13 stsp }
429 63581804 2018-07-09 stsp
430 63581804 2018-07-09 stsp *outlen = 0;
431 2e5a6fad 2020-03-18 stsp if (consumed_total)
432 2e5a6fad 2020-03-18 stsp *consumed_total = 0;
433 63581804 2018-07-09 stsp do {
434 63581804 2018-07-09 stsp err = got_inflate_read_mmap(&zb, map, offset, len, &avail,
435 63581804 2018-07-09 stsp &consumed);
436 63581804 2018-07-09 stsp if (err)
437 3efa19e7 2018-07-13 stsp goto done;
438 63581804 2018-07-09 stsp offset += consumed;
439 2e5a6fad 2020-03-18 stsp if (consumed_total)
440 2e5a6fad 2020-03-18 stsp *consumed_total += consumed;
441 63581804 2018-07-09 stsp len -= consumed;
442 63581804 2018-07-09 stsp *outlen += avail;
443 63581804 2018-07-09 stsp if (len == 0)
444 63581804 2018-07-09 stsp break;
445 23bc48a9 2019-03-19 stsp if (zb.flags & GOT_INFLATE_F_HAVE_MORE) {
446 2e5a6fad 2020-03-18 stsp if (outbuf == NULL)
447 2e5a6fad 2020-03-18 stsp continue;
448 b3a605ce 2019-05-22 stsp newbuf = reallocarray(*outbuf, ++nbuf,
449 23bc48a9 2019-03-19 stsp GOT_INFLATE_BUFSIZE);
450 63581804 2018-07-09 stsp if (newbuf == NULL) {
451 b3a605ce 2019-05-22 stsp err = got_error_from_errno("reallocarray");
452 63581804 2018-07-09 stsp free(*outbuf);
453 63581804 2018-07-09 stsp *outbuf = NULL;
454 63581804 2018-07-09 stsp *outlen = 0;
455 63581804 2018-07-09 stsp goto done;
456 63581804 2018-07-09 stsp }
457 63581804 2018-07-09 stsp *outbuf = newbuf;
458 63581804 2018-07-09 stsp zb.outbuf = newbuf + *outlen;
459 23bc48a9 2019-03-19 stsp zb.outlen = (nbuf * GOT_INFLATE_BUFSIZE) - *outlen;
460 63581804 2018-07-09 stsp }
461 23bc48a9 2019-03-19 stsp } while (zb.flags & GOT_INFLATE_F_HAVE_MORE);
462 63581804 2018-07-09 stsp done:
463 63581804 2018-07-09 stsp got_inflate_end(&zb);
464 63581804 2018-07-09 stsp return err;
465 63581804 2018-07-09 stsp }
466 63581804 2018-07-09 stsp
467 63581804 2018-07-09 stsp const struct got_error *
468 12f2167a 2021-07-04 stsp got_inflate_to_fd(size_t *outlen, FILE *infile,
469 12f2167a 2021-07-04 stsp struct got_inflate_checksum *csum, int outfd)
470 63581804 2018-07-09 stsp {
471 63581804 2018-07-09 stsp const struct got_error *err = NULL;
472 63581804 2018-07-09 stsp size_t avail;
473 23bc48a9 2019-03-19 stsp struct got_inflate_buf zb;
474 63581804 2018-07-09 stsp
475 12f2167a 2021-07-04 stsp err = got_inflate_init(&zb, NULL, GOT_INFLATE_BUFSIZE, csum);
476 63581804 2018-07-09 stsp if (err)
477 63581804 2018-07-09 stsp goto done;
478 63581804 2018-07-09 stsp
479 63581804 2018-07-09 stsp *outlen = 0;
480 63581804 2018-07-09 stsp
481 63581804 2018-07-09 stsp do {
482 6fb3a497 2020-03-18 stsp err = got_inflate_read(&zb, infile, &avail, NULL);
483 63581804 2018-07-09 stsp if (err)
484 5aef3967 2018-07-22 stsp goto done;
485 63581804 2018-07-09 stsp if (avail > 0) {
486 63581804 2018-07-09 stsp ssize_t n;
487 63581804 2018-07-09 stsp n = write(outfd, zb.outbuf, avail);
488 63581804 2018-07-09 stsp if (n != avail) {
489 638f9024 2019-05-13 stsp err = got_error_from_errno("write");
490 63581804 2018-07-09 stsp goto done;
491 63581804 2018-07-09 stsp }
492 63581804 2018-07-09 stsp *outlen += avail;
493 63581804 2018-07-09 stsp }
494 23bc48a9 2019-03-19 stsp } while (zb.flags & GOT_INFLATE_F_HAVE_MORE);
495 63581804 2018-07-09 stsp
496 63581804 2018-07-09 stsp done:
497 63581804 2018-07-09 stsp if (err == NULL) {
498 63581804 2018-07-09 stsp if (lseek(outfd, SEEK_SET, 0) == -1)
499 638f9024 2019-05-13 stsp err = got_error_from_errno("lseek");
500 63581804 2018-07-09 stsp }
501 63581804 2018-07-09 stsp got_inflate_end(&zb);
502 63581804 2018-07-09 stsp return err;
503 63581804 2018-07-09 stsp }
504 63581804 2018-07-09 stsp
505 63581804 2018-07-09 stsp const struct got_error *
506 12f2167a 2021-07-04 stsp got_inflate_to_file(size_t *outlen, FILE *infile,
507 12f2167a 2021-07-04 stsp struct got_inflate_checksum *csum, FILE *outfile)
508 63581804 2018-07-09 stsp {
509 63581804 2018-07-09 stsp const struct got_error *err;
510 63581804 2018-07-09 stsp size_t avail;
511 23bc48a9 2019-03-19 stsp struct got_inflate_buf zb;
512 63581804 2018-07-09 stsp
513 12f2167a 2021-07-04 stsp err = got_inflate_init(&zb, NULL, GOT_INFLATE_BUFSIZE, csum);
514 63581804 2018-07-09 stsp if (err)
515 63581804 2018-07-09 stsp goto done;
516 63581804 2018-07-09 stsp
517 63581804 2018-07-09 stsp *outlen = 0;
518 63581804 2018-07-09 stsp
519 63581804 2018-07-09 stsp do {
520 6fb3a497 2020-03-18 stsp err = got_inflate_read(&zb, infile, &avail, NULL);
521 63581804 2018-07-09 stsp if (err)
522 5aef3967 2018-07-22 stsp goto done;
523 63581804 2018-07-09 stsp if (avail > 0) {
524 63581804 2018-07-09 stsp size_t n;
525 63581804 2018-07-09 stsp n = fwrite(zb.outbuf, avail, 1, outfile);
526 63581804 2018-07-09 stsp if (n != 1) {
527 63581804 2018-07-09 stsp err = got_ferror(outfile, GOT_ERR_IO);
528 63581804 2018-07-09 stsp goto done;
529 63581804 2018-07-09 stsp }
530 63581804 2018-07-09 stsp *outlen += avail;
531 63581804 2018-07-09 stsp }
532 23bc48a9 2019-03-19 stsp } while (zb.flags & GOT_INFLATE_F_HAVE_MORE);
533 63581804 2018-07-09 stsp
534 63581804 2018-07-09 stsp done:
535 63581804 2018-07-09 stsp if (err == NULL)
536 63581804 2018-07-09 stsp rewind(outfile);
537 63581804 2018-07-09 stsp got_inflate_end(&zb);
538 63581804 2018-07-09 stsp return err;
539 63581804 2018-07-09 stsp }
540 63581804 2018-07-09 stsp
541 63581804 2018-07-09 stsp const struct got_error *
542 4788f1ce 2020-03-18 stsp got_inflate_to_file_fd(size_t *outlen, size_t *consumed_total,
543 6ad68bce 2020-03-24 stsp struct got_inflate_checksum *csum, int infd, FILE *outfile)
544 63581804 2018-07-09 stsp {
545 63581804 2018-07-09 stsp const struct got_error *err;
546 4788f1ce 2020-03-18 stsp size_t avail, consumed;
547 23bc48a9 2019-03-19 stsp struct got_inflate_buf zb;
548 63581804 2018-07-09 stsp
549 6ad68bce 2020-03-24 stsp err = got_inflate_init(&zb, NULL, GOT_INFLATE_BUFSIZE, csum);
550 63581804 2018-07-09 stsp if (err)
551 63581804 2018-07-09 stsp goto done;
552 63581804 2018-07-09 stsp
553 63581804 2018-07-09 stsp *outlen = 0;
554 4788f1ce 2020-03-18 stsp if (consumed_total)
555 4788f1ce 2020-03-18 stsp *consumed_total = 0;
556 63581804 2018-07-09 stsp do {
557 4788f1ce 2020-03-18 stsp err = got_inflate_read_fd(&zb, infd, &avail, &consumed);
558 63581804 2018-07-09 stsp if (err)
559 5aef3967 2018-07-22 stsp goto done;
560 63581804 2018-07-09 stsp if (avail > 0) {
561 63581804 2018-07-09 stsp size_t n;
562 63581804 2018-07-09 stsp n = fwrite(zb.outbuf, avail, 1, outfile);
563 63581804 2018-07-09 stsp if (n != 1) {
564 63581804 2018-07-09 stsp err = got_ferror(outfile, GOT_ERR_IO);
565 63581804 2018-07-09 stsp goto done;
566 63581804 2018-07-09 stsp }
567 63581804 2018-07-09 stsp *outlen += avail;
568 4788f1ce 2020-03-18 stsp if (consumed_total)
569 4788f1ce 2020-03-18 stsp *consumed_total += consumed;
570 63581804 2018-07-09 stsp }
571 23bc48a9 2019-03-19 stsp } while (zb.flags & GOT_INFLATE_F_HAVE_MORE);
572 63581804 2018-07-09 stsp
573 63581804 2018-07-09 stsp done:
574 63581804 2018-07-09 stsp if (err == NULL)
575 63581804 2018-07-09 stsp rewind(outfile);
576 63581804 2018-07-09 stsp got_inflate_end(&zb);
577 63581804 2018-07-09 stsp return err;
578 63581804 2018-07-09 stsp }
579 63581804 2018-07-09 stsp
580 63581804 2018-07-09 stsp const struct got_error *
581 4788f1ce 2020-03-18 stsp got_inflate_to_file_mmap(size_t *outlen, size_t *consumed_total,
582 6ad68bce 2020-03-24 stsp struct got_inflate_checksum *csum, uint8_t *map, size_t offset,
583 6ad68bce 2020-03-24 stsp size_t len, FILE *outfile)
584 63581804 2018-07-09 stsp {
585 63581804 2018-07-09 stsp const struct got_error *err;
586 4788f1ce 2020-03-18 stsp size_t avail, consumed;
587 23bc48a9 2019-03-19 stsp struct got_inflate_buf zb;
588 63581804 2018-07-09 stsp
589 6ad68bce 2020-03-24 stsp err = got_inflate_init(&zb, NULL, GOT_INFLATE_BUFSIZE, csum);
590 63581804 2018-07-09 stsp if (err)
591 63581804 2018-07-09 stsp goto done;
592 63581804 2018-07-09 stsp
593 63581804 2018-07-09 stsp *outlen = 0;
594 4788f1ce 2020-03-18 stsp if (consumed_total)
595 4788f1ce 2020-03-18 stsp *consumed_total = 0;
596 63581804 2018-07-09 stsp do {
597 63581804 2018-07-09 stsp err = got_inflate_read_mmap(&zb, map, offset, len, &avail,
598 63581804 2018-07-09 stsp &consumed);
599 63581804 2018-07-09 stsp if (err)
600 5aef3967 2018-07-22 stsp goto done;
601 63581804 2018-07-09 stsp offset += consumed;
602 4788f1ce 2020-03-18 stsp if (consumed_total)
603 4788f1ce 2020-03-18 stsp *consumed_total += consumed;
604 63581804 2018-07-09 stsp len -= consumed;
605 63581804 2018-07-09 stsp if (avail > 0) {
606 63581804 2018-07-09 stsp size_t n;
607 63581804 2018-07-09 stsp n = fwrite(zb.outbuf, avail, 1, outfile);
608 63581804 2018-07-09 stsp if (n != 1) {
609 63581804 2018-07-09 stsp err = got_ferror(outfile, GOT_ERR_IO);
610 63581804 2018-07-09 stsp goto done;
611 63581804 2018-07-09 stsp }
612 63581804 2018-07-09 stsp *outlen += avail;
613 63581804 2018-07-09 stsp }
614 23bc48a9 2019-03-19 stsp } while (zb.flags & GOT_INFLATE_F_HAVE_MORE);
615 63581804 2018-07-09 stsp
616 63581804 2018-07-09 stsp done:
617 63581804 2018-07-09 stsp if (err == NULL)
618 63581804 2018-07-09 stsp rewind(outfile);
619 63581804 2018-07-09 stsp got_inflate_end(&zb);
620 63581804 2018-07-09 stsp return err;
621 63581804 2018-07-09 stsp }