/src/perfetto/buildtools/zlib/gzread.c
Line | Count | Source |
1 | | /* gzread.c -- zlib functions for reading gzip files |
2 | | * Copyright (C) 2004-2017 Mark Adler |
3 | | * For conditions of distribution and use, see copyright notice in zlib.h |
4 | | */ |
5 | | |
6 | | #include "gzguts.h" |
7 | | |
8 | | /* Local functions */ |
9 | | local int gz_load OF((gz_statep, unsigned char *, unsigned, unsigned *)); |
10 | | local int gz_avail OF((gz_statep)); |
11 | | local int gz_look OF((gz_statep)); |
12 | | local int gz_decomp OF((gz_statep)); |
13 | | local int gz_fetch OF((gz_statep)); |
14 | | local int gz_skip OF((gz_statep, z_off64_t)); |
15 | | local z_size_t gz_read OF((gz_statep, voidp, z_size_t)); |
16 | | |
17 | | /* Use read() to load a buffer -- return -1 on error, otherwise 0. Read from |
18 | | state->fd, and update state->eof, state->err, and state->msg as appropriate. |
19 | | This function needs to loop on read(), since read() is not guaranteed to |
20 | | read the number of bytes requested, depending on the type of descriptor. */ |
21 | | local int gz_load(state, buf, len, have) |
22 | | gz_statep state; |
23 | | unsigned char *buf; |
24 | | unsigned len; |
25 | | unsigned *have; |
26 | 0 | { |
27 | 0 | int ret; |
28 | 0 | unsigned get, max = ((unsigned)-1 >> 2) + 1; |
29 | |
|
30 | 0 | *have = 0; |
31 | 0 | do { |
32 | 0 | get = len - *have; |
33 | 0 | if (get > max) |
34 | 0 | get = max; |
35 | 0 | ret = read(state->fd, buf + *have, get); |
36 | 0 | if (ret <= 0) |
37 | 0 | break; |
38 | 0 | *have += (unsigned)ret; |
39 | 0 | } while (*have < len); |
40 | 0 | if (ret < 0) { |
41 | 0 | gz_error(state, Z_ERRNO, zstrerror()); |
42 | 0 | return -1; |
43 | 0 | } |
44 | 0 | if (ret == 0) |
45 | 0 | state->eof = 1; |
46 | 0 | return 0; |
47 | 0 | } |
48 | | |
49 | | /* Load up input buffer and set eof flag if last data loaded -- return -1 on |
50 | | error, 0 otherwise. Note that the eof flag is set when the end of the input |
51 | | file is reached, even though there may be unused data in the buffer. Once |
52 | | that data has been used, no more attempts will be made to read the file. |
53 | | If strm->avail_in != 0, then the current data is moved to the beginning of |
54 | | the input buffer, and then the remainder of the buffer is loaded with the |
55 | | available data from the input file. */ |
56 | | local int gz_avail(state) |
57 | | gz_statep state; |
58 | 0 | { |
59 | 0 | unsigned got; |
60 | 0 | z_streamp strm = &(state->strm); |
61 | |
|
62 | 0 | if (state->err != Z_OK && state->err != Z_BUF_ERROR) |
63 | 0 | return -1; |
64 | 0 | if (state->eof == 0) { |
65 | 0 | if (strm->avail_in) { /* copy what's there to the start */ |
66 | 0 | unsigned char *p = state->in; |
67 | 0 | unsigned const char *q = strm->next_in; |
68 | 0 | unsigned n = strm->avail_in; |
69 | 0 | do { |
70 | 0 | *p++ = *q++; |
71 | 0 | } while (--n); |
72 | 0 | } |
73 | 0 | if (gz_load(state, state->in + strm->avail_in, |
74 | 0 | state->size - strm->avail_in, &got) == -1) |
75 | 0 | return -1; |
76 | 0 | strm->avail_in += got; |
77 | 0 | strm->next_in = state->in; |
78 | 0 | } |
79 | 0 | return 0; |
80 | 0 | } |
81 | | |
82 | | /* Look for gzip header, set up for inflate or copy. state->x.have must be 0. |
83 | | If this is the first time in, allocate required memory. state->how will be |
84 | | left unchanged if there is no more input data available, will be set to COPY |
85 | | if there is no gzip header and direct copying will be performed, or it will |
86 | | be set to GZIP for decompression. If direct copying, then leftover input |
87 | | data from the input buffer will be copied to the output buffer. In that |
88 | | case, all further file reads will be directly to either the output buffer or |
89 | | a user buffer. If decompressing, the inflate state will be initialized. |
90 | | gz_look() will return 0 on success or -1 on failure. */ |
91 | | local int gz_look(state) |
92 | | gz_statep state; |
93 | 0 | { |
94 | 0 | z_streamp strm = &(state->strm); |
95 | | |
96 | | /* allocate read buffers and inflate memory */ |
97 | 0 | if (state->size == 0) { |
98 | | /* allocate buffers */ |
99 | 0 | state->in = (unsigned char *)malloc(state->want); |
100 | 0 | state->out = (unsigned char *)malloc(state->want << 1); |
101 | 0 | if (state->in == NULL || state->out == NULL) { |
102 | 0 | free(state->out); |
103 | 0 | free(state->in); |
104 | 0 | gz_error(state, Z_MEM_ERROR, "out of memory"); |
105 | 0 | return -1; |
106 | 0 | } |
107 | 0 | state->size = state->want; |
108 | | |
109 | | /* allocate inflate memory */ |
110 | 0 | state->strm.zalloc = Z_NULL; |
111 | 0 | state->strm.zfree = Z_NULL; |
112 | 0 | state->strm.opaque = Z_NULL; |
113 | 0 | state->strm.avail_in = 0; |
114 | 0 | state->strm.next_in = Z_NULL; |
115 | 0 | if (inflateInit2(&(state->strm), 15 + 16) != Z_OK) { /* gunzip */ |
116 | 0 | free(state->out); |
117 | 0 | free(state->in); |
118 | 0 | state->size = 0; |
119 | 0 | gz_error(state, Z_MEM_ERROR, "out of memory"); |
120 | 0 | return -1; |
121 | 0 | } |
122 | 0 | } |
123 | | |
124 | | /* get at least the magic bytes in the input buffer */ |
125 | 0 | if (strm->avail_in < 2) { |
126 | 0 | if (gz_avail(state) == -1) |
127 | 0 | return -1; |
128 | 0 | if (strm->avail_in == 0) |
129 | 0 | return 0; |
130 | 0 | } |
131 | | |
132 | | /* look for gzip magic bytes -- if there, do gzip decoding (note: there is |
133 | | a logical dilemma here when considering the case of a partially written |
134 | | gzip file, to wit, if a single 31 byte is written, then we cannot tell |
135 | | whether this is a single-byte file, or just a partially written gzip |
136 | | file -- for here we assume that if a gzip file is being written, then |
137 | | the header will be written in a single operation, so that reading a |
138 | | single byte is sufficient indication that it is not a gzip file) */ |
139 | 0 | if (strm->avail_in > 1 && |
140 | 0 | strm->next_in[0] == 31 && strm->next_in[1] == 139) { |
141 | 0 | inflateReset(strm); |
142 | 0 | state->how = GZIP; |
143 | 0 | state->direct = 0; |
144 | 0 | return 0; |
145 | 0 | } |
146 | | |
147 | | /* no gzip header -- if we were decoding gzip before, then this is trailing |
148 | | garbage. Ignore the trailing garbage and finish. */ |
149 | 0 | if (state->direct == 0) { |
150 | 0 | strm->avail_in = 0; |
151 | 0 | state->eof = 1; |
152 | 0 | state->x.have = 0; |
153 | 0 | return 0; |
154 | 0 | } |
155 | | |
156 | | /* doing raw i/o, copy any leftover input to output -- this assumes that |
157 | | the output buffer is larger than the input buffer, which also assures |
158 | | space for gzungetc() */ |
159 | 0 | state->x.next = state->out; |
160 | 0 | memcpy(state->x.next, strm->next_in, strm->avail_in); |
161 | 0 | state->x.have = strm->avail_in; |
162 | 0 | strm->avail_in = 0; |
163 | 0 | state->how = COPY; |
164 | 0 | state->direct = 1; |
165 | 0 | return 0; |
166 | 0 | } |
167 | | |
168 | | /* Decompress from input to the provided next_out and avail_out in the state. |
169 | | On return, state->x.have and state->x.next point to the just decompressed |
170 | | data. If the gzip stream completes, state->how is reset to LOOK to look for |
171 | | the next gzip stream or raw data, once state->x.have is depleted. Returns 0 |
172 | | on success, -1 on failure. */ |
173 | | local int gz_decomp(state) |
174 | | gz_statep state; |
175 | 0 | { |
176 | 0 | int ret = Z_OK; |
177 | 0 | unsigned had; |
178 | 0 | z_streamp strm = &(state->strm); |
179 | | |
180 | | /* fill output buffer up to end of deflate stream */ |
181 | 0 | had = strm->avail_out; |
182 | 0 | do { |
183 | | /* get more input for inflate() */ |
184 | 0 | if (strm->avail_in == 0 && gz_avail(state) == -1) |
185 | 0 | return -1; |
186 | 0 | if (strm->avail_in == 0) { |
187 | 0 | gz_error(state, Z_BUF_ERROR, "unexpected end of file"); |
188 | 0 | break; |
189 | 0 | } |
190 | | |
191 | | /* decompress and handle errors */ |
192 | 0 | ret = inflate(strm, Z_NO_FLUSH); |
193 | 0 | if (ret == Z_STREAM_ERROR || ret == Z_NEED_DICT) { |
194 | 0 | gz_error(state, Z_STREAM_ERROR, |
195 | 0 | "internal error: inflate stream corrupt"); |
196 | 0 | return -1; |
197 | 0 | } |
198 | 0 | if (ret == Z_MEM_ERROR) { |
199 | 0 | gz_error(state, Z_MEM_ERROR, "out of memory"); |
200 | 0 | return -1; |
201 | 0 | } |
202 | 0 | if (ret == Z_DATA_ERROR) { /* deflate stream invalid */ |
203 | 0 | gz_error(state, Z_DATA_ERROR, |
204 | 0 | strm->msg == NULL ? "compressed data error" : strm->msg); |
205 | 0 | return -1; |
206 | 0 | } |
207 | 0 | } while (strm->avail_out && ret != Z_STREAM_END); |
208 | | |
209 | | /* update available output */ |
210 | 0 | state->x.have = had - strm->avail_out; |
211 | 0 | state->x.next = strm->next_out - state->x.have; |
212 | | |
213 | | /* if the gzip stream completed successfully, look for another */ |
214 | 0 | if (ret == Z_STREAM_END) |
215 | 0 | state->how = LOOK; |
216 | | |
217 | | /* good decompression */ |
218 | 0 | return 0; |
219 | 0 | } |
220 | | |
221 | | /* Fetch data and put it in the output buffer. Assumes state->x.have is 0. |
222 | | Data is either copied from the input file or decompressed from the input |
223 | | file depending on state->how. If state->how is LOOK, then a gzip header is |
224 | | looked for to determine whether to copy or decompress. Returns -1 on error, |
225 | | otherwise 0. gz_fetch() will leave state->how as COPY or GZIP unless the |
226 | | end of the input file has been reached and all data has been processed. */ |
227 | | local int gz_fetch(state) |
228 | | gz_statep state; |
229 | 0 | { |
230 | 0 | z_streamp strm = &(state->strm); |
231 | |
|
232 | 0 | do { |
233 | 0 | switch(state->how) { |
234 | 0 | case LOOK: /* -> LOOK, COPY (only if never GZIP), or GZIP */ |
235 | 0 | if (gz_look(state) == -1) |
236 | 0 | return -1; |
237 | 0 | if (state->how == LOOK) |
238 | 0 | return 0; |
239 | 0 | break; |
240 | 0 | case COPY: /* -> COPY */ |
241 | 0 | if (gz_load(state, state->out, state->size << 1, &(state->x.have)) |
242 | 0 | == -1) |
243 | 0 | return -1; |
244 | 0 | state->x.next = state->out; |
245 | 0 | return 0; |
246 | 0 | case GZIP: /* -> GZIP or LOOK (if end of gzip stream) */ |
247 | 0 | strm->avail_out = state->size << 1; |
248 | 0 | strm->next_out = state->out; |
249 | 0 | if (gz_decomp(state) == -1) |
250 | 0 | return -1; |
251 | 0 | } |
252 | 0 | } while (state->x.have == 0 && (!state->eof || strm->avail_in)); |
253 | 0 | return 0; |
254 | 0 | } |
255 | | |
256 | | /* Skip len uncompressed bytes of output. Return -1 on error, 0 on success. */ |
257 | | local int gz_skip(state, len) |
258 | | gz_statep state; |
259 | | z_off64_t len; |
260 | 0 | { |
261 | 0 | unsigned n; |
262 | | |
263 | | /* skip over len bytes or reach end-of-file, whichever comes first */ |
264 | 0 | while (len) |
265 | | /* skip over whatever is in output buffer */ |
266 | 0 | if (state->x.have) { |
267 | 0 | n = GT_OFF(state->x.have) || (z_off64_t)state->x.have > len ? |
268 | 0 | (unsigned)len : state->x.have; |
269 | 0 | state->x.have -= n; |
270 | 0 | state->x.next += n; |
271 | 0 | state->x.pos += n; |
272 | 0 | len -= n; |
273 | 0 | } |
274 | | |
275 | | /* output buffer empty -- return if we're at the end of the input */ |
276 | 0 | else if (state->eof && state->strm.avail_in == 0) |
277 | 0 | break; |
278 | | |
279 | | /* need more data to skip -- load up output buffer */ |
280 | 0 | else { |
281 | | /* get more output, looking for header if required */ |
282 | 0 | if (gz_fetch(state) == -1) |
283 | 0 | return -1; |
284 | 0 | } |
285 | 0 | return 0; |
286 | 0 | } |
287 | | |
288 | | /* Read len bytes into buf from file, or less than len up to the end of the |
289 | | input. Return the number of bytes read. If zero is returned, either the |
290 | | end of file was reached, or there was an error. state->err must be |
291 | | consulted in that case to determine which. */ |
292 | | local z_size_t gz_read(state, buf, len) |
293 | | gz_statep state; |
294 | | voidp buf; |
295 | | z_size_t len; |
296 | 0 | { |
297 | 0 | z_size_t got; |
298 | 0 | unsigned n; |
299 | | |
300 | | /* if len is zero, avoid unnecessary operations */ |
301 | 0 | if (len == 0) |
302 | 0 | return 0; |
303 | | |
304 | | /* process a skip request */ |
305 | 0 | if (state->seek) { |
306 | 0 | state->seek = 0; |
307 | 0 | if (gz_skip(state, state->skip) == -1) |
308 | 0 | return 0; |
309 | 0 | } |
310 | | |
311 | | /* get len bytes to buf, or less than len if at the end */ |
312 | 0 | got = 0; |
313 | 0 | do { |
314 | | /* set n to the maximum amount of len that fits in an unsigned int */ |
315 | 0 | n = (unsigned)-1; |
316 | 0 | if (n > len) |
317 | 0 | n = (unsigned)len; |
318 | | |
319 | | /* first just try copying data from the output buffer */ |
320 | 0 | if (state->x.have) { |
321 | 0 | if (state->x.have < n) |
322 | 0 | n = state->x.have; |
323 | 0 | memcpy(buf, state->x.next, n); |
324 | 0 | state->x.next += n; |
325 | 0 | state->x.have -= n; |
326 | 0 | } |
327 | | |
328 | | /* output buffer empty -- return if we're at the end of the input */ |
329 | 0 | else if (state->eof && state->strm.avail_in == 0) { |
330 | 0 | state->past = 1; /* tried to read past end */ |
331 | 0 | break; |
332 | 0 | } |
333 | | |
334 | | /* need output data -- for small len or new stream load up our output |
335 | | buffer */ |
336 | 0 | else if (state->how == LOOK || n < (state->size << 1)) { |
337 | | /* get more output, looking for header if required */ |
338 | 0 | if (gz_fetch(state) == -1) |
339 | 0 | return 0; |
340 | 0 | continue; /* no progress yet -- go back to copy above */ |
341 | | /* the copy above assures that we will leave with space in the |
342 | | output buffer, allowing at least one gzungetc() to succeed */ |
343 | 0 | } |
344 | | |
345 | | /* large len -- read directly into user buffer */ |
346 | 0 | else if (state->how == COPY) { /* read directly */ |
347 | 0 | if (gz_load(state, (unsigned char *)buf, n, &n) == -1) |
348 | 0 | return 0; |
349 | 0 | } |
350 | | |
351 | | /* large len -- decompress directly into user buffer */ |
352 | 0 | else { /* state->how == GZIP */ |
353 | 0 | state->strm.avail_out = n; |
354 | 0 | state->strm.next_out = (unsigned char *)buf; |
355 | 0 | if (gz_decomp(state) == -1) |
356 | 0 | return 0; |
357 | 0 | n = state->x.have; |
358 | 0 | state->x.have = 0; |
359 | 0 | } |
360 | | |
361 | | /* update progress */ |
362 | 0 | len -= n; |
363 | 0 | buf = (char *)buf + n; |
364 | 0 | got += n; |
365 | 0 | state->x.pos += n; |
366 | 0 | } while (len); |
367 | | |
368 | | /* return number of bytes read into user buffer */ |
369 | 0 | return got; |
370 | 0 | } |
371 | | |
372 | | /* -- see zlib.h -- */ |
373 | | int ZEXPORT gzread(file, buf, len) |
374 | | gzFile file; |
375 | | voidp buf; |
376 | | unsigned len; |
377 | 0 | { |
378 | 0 | gz_statep state; |
379 | | |
380 | | /* get internal structure */ |
381 | 0 | if (file == NULL) |
382 | 0 | return -1; |
383 | 0 | state = (gz_statep)file; |
384 | | |
385 | | /* check that we're reading and that there's no (serious) error */ |
386 | 0 | if (state->mode != GZ_READ || |
387 | 0 | (state->err != Z_OK && state->err != Z_BUF_ERROR)) |
388 | 0 | return -1; |
389 | | |
390 | | /* since an int is returned, make sure len fits in one, otherwise return |
391 | | with an error (this avoids a flaw in the interface) */ |
392 | 0 | if ((int)len < 0) { |
393 | 0 | gz_error(state, Z_STREAM_ERROR, "request does not fit in an int"); |
394 | 0 | return -1; |
395 | 0 | } |
396 | | |
397 | | /* read len or fewer bytes to buf */ |
398 | 0 | len = (unsigned)gz_read(state, buf, len); |
399 | | |
400 | | /* check for an error */ |
401 | 0 | if (len == 0 && state->err != Z_OK && state->err != Z_BUF_ERROR) |
402 | 0 | return -1; |
403 | | |
404 | | /* return the number of bytes read (this is assured to fit in an int) */ |
405 | 0 | return (int)len; |
406 | 0 | } |
407 | | |
408 | | /* -- see zlib.h -- */ |
409 | | z_size_t ZEXPORT gzfread(buf, size, nitems, file) |
410 | | voidp buf; |
411 | | z_size_t size; |
412 | | z_size_t nitems; |
413 | | gzFile file; |
414 | 0 | { |
415 | 0 | z_size_t len; |
416 | 0 | gz_statep state; |
417 | | |
418 | | /* get internal structure */ |
419 | 0 | if (file == NULL) |
420 | 0 | return 0; |
421 | 0 | state = (gz_statep)file; |
422 | | |
423 | | /* check that we're reading and that there's no (serious) error */ |
424 | 0 | if (state->mode != GZ_READ || |
425 | 0 | (state->err != Z_OK && state->err != Z_BUF_ERROR)) |
426 | 0 | return 0; |
427 | | |
428 | | /* compute bytes to read -- error on overflow */ |
429 | 0 | len = nitems * size; |
430 | 0 | if (size && len / size != nitems) { |
431 | 0 | gz_error(state, Z_STREAM_ERROR, "request does not fit in a size_t"); |
432 | 0 | return 0; |
433 | 0 | } |
434 | | |
435 | | /* read len or fewer bytes to buf, return the number of full items read */ |
436 | 0 | return len ? gz_read(state, buf, len) / size : 0; |
437 | 0 | } |
438 | | |
439 | | /* -- see zlib.h -- */ |
440 | | #ifdef Z_PREFIX_SET |
441 | | # undef z_gzgetc |
442 | | #else |
443 | | # undef gzgetc |
444 | | # ifdef Z_CR_PREFIX_SET |
445 | | # define gzgetc Cr_z_gzgetc |
446 | | # endif |
447 | | #endif |
448 | | |
449 | | int ZEXPORT gzgetc(file) |
450 | | gzFile file; |
451 | 0 | { |
452 | 0 | unsigned char buf[1]; |
453 | 0 | gz_statep state; |
454 | | |
455 | | /* get internal structure */ |
456 | 0 | if (file == NULL) |
457 | 0 | return -1; |
458 | 0 | state = (gz_statep)file; |
459 | | |
460 | | /* check that we're reading and that there's no (serious) error */ |
461 | 0 | if (state->mode != GZ_READ || |
462 | 0 | (state->err != Z_OK && state->err != Z_BUF_ERROR)) |
463 | 0 | return -1; |
464 | | |
465 | | /* try output buffer (no need to check for skip request) */ |
466 | 0 | if (state->x.have) { |
467 | 0 | state->x.have--; |
468 | 0 | state->x.pos++; |
469 | 0 | return *(state->x.next)++; |
470 | 0 | } |
471 | | |
472 | | /* nothing there -- try gz_read() */ |
473 | 0 | return gz_read(state, buf, 1) < 1 ? -1 : buf[0]; |
474 | 0 | } |
475 | | |
476 | | int ZEXPORT gzgetc_(file) |
477 | | gzFile file; |
478 | 0 | { |
479 | 0 | return gzgetc(file); |
480 | 0 | } |
481 | | |
482 | | /* -- see zlib.h -- */ |
483 | | int ZEXPORT gzungetc(c, file) |
484 | | int c; |
485 | | gzFile file; |
486 | 0 | { |
487 | 0 | gz_statep state; |
488 | | |
489 | | /* get internal structure */ |
490 | 0 | if (file == NULL) |
491 | 0 | return -1; |
492 | 0 | state = (gz_statep)file; |
493 | | |
494 | | /* check that we're reading and that there's no (serious) error */ |
495 | 0 | if (state->mode != GZ_READ || |
496 | 0 | (state->err != Z_OK && state->err != Z_BUF_ERROR)) |
497 | 0 | return -1; |
498 | | |
499 | | /* process a skip request */ |
500 | 0 | if (state->seek) { |
501 | 0 | state->seek = 0; |
502 | 0 | if (gz_skip(state, state->skip) == -1) |
503 | 0 | return -1; |
504 | 0 | } |
505 | | |
506 | | /* can't push EOF */ |
507 | 0 | if (c < 0) |
508 | 0 | return -1; |
509 | | |
510 | | /* if output buffer empty, put byte at end (allows more pushing) */ |
511 | 0 | if (state->x.have == 0) { |
512 | 0 | state->x.have = 1; |
513 | 0 | state->x.next = state->out + (state->size << 1) - 1; |
514 | 0 | state->x.next[0] = (unsigned char)c; |
515 | 0 | state->x.pos--; |
516 | 0 | state->past = 0; |
517 | 0 | return c; |
518 | 0 | } |
519 | | |
520 | | /* if no room, give up (must have already done a gzungetc()) */ |
521 | 0 | if (state->x.have == (state->size << 1)) { |
522 | 0 | gz_error(state, Z_DATA_ERROR, "out of room to push characters"); |
523 | 0 | return -1; |
524 | 0 | } |
525 | | |
526 | | /* slide output data if needed and insert byte before existing data */ |
527 | 0 | if (state->x.next == state->out) { |
528 | 0 | unsigned char *src = state->out + state->x.have; |
529 | 0 | unsigned char *dest = state->out + (state->size << 1); |
530 | 0 | while (src > state->out) |
531 | 0 | *--dest = *--src; |
532 | 0 | state->x.next = dest; |
533 | 0 | } |
534 | 0 | state->x.have++; |
535 | 0 | state->x.next--; |
536 | 0 | state->x.next[0] = (unsigned char)c; |
537 | 0 | state->x.pos--; |
538 | 0 | state->past = 0; |
539 | 0 | return c; |
540 | 0 | } |
541 | | |
542 | | /* -- see zlib.h -- */ |
543 | | char * ZEXPORT gzgets(file, buf, len) |
544 | | gzFile file; |
545 | | char *buf; |
546 | | int len; |
547 | 0 | { |
548 | 0 | unsigned left, n; |
549 | 0 | char *str; |
550 | 0 | unsigned char *eol; |
551 | 0 | gz_statep state; |
552 | | |
553 | | /* check parameters and get internal structure */ |
554 | 0 | if (file == NULL || buf == NULL || len < 1) |
555 | 0 | return NULL; |
556 | 0 | state = (gz_statep)file; |
557 | | |
558 | | /* check that we're reading and that there's no (serious) error */ |
559 | 0 | if (state->mode != GZ_READ || |
560 | 0 | (state->err != Z_OK && state->err != Z_BUF_ERROR)) |
561 | 0 | return NULL; |
562 | | |
563 | | /* process a skip request */ |
564 | 0 | if (state->seek) { |
565 | 0 | state->seek = 0; |
566 | 0 | if (gz_skip(state, state->skip) == -1) |
567 | 0 | return NULL; |
568 | 0 | } |
569 | | |
570 | | /* copy output bytes up to new line or len - 1, whichever comes first -- |
571 | | append a terminating zero to the string (we don't check for a zero in |
572 | | the contents, let the user worry about that) */ |
573 | 0 | str = buf; |
574 | 0 | left = (unsigned)len - 1; |
575 | 0 | if (left) do { |
576 | | /* assure that something is in the output buffer */ |
577 | 0 | if (state->x.have == 0 && gz_fetch(state) == -1) |
578 | 0 | return NULL; /* error */ |
579 | 0 | if (state->x.have == 0) { /* end of file */ |
580 | 0 | state->past = 1; /* read past end */ |
581 | 0 | break; /* return what we have */ |
582 | 0 | } |
583 | | |
584 | | /* look for end-of-line in current output buffer */ |
585 | 0 | n = state->x.have > left ? left : state->x.have; |
586 | 0 | eol = (unsigned char *)memchr(state->x.next, '\n', n); |
587 | 0 | if (eol != NULL) |
588 | 0 | n = (unsigned)(eol - state->x.next) + 1; |
589 | | |
590 | | /* copy through end-of-line, or remainder if not found */ |
591 | 0 | memcpy(buf, state->x.next, n); |
592 | 0 | state->x.have -= n; |
593 | 0 | state->x.next += n; |
594 | 0 | state->x.pos += n; |
595 | 0 | left -= n; |
596 | 0 | buf += n; |
597 | 0 | } while (left && eol == NULL); |
598 | | |
599 | | /* return terminated string, or if nothing, end of file */ |
600 | 0 | if (buf == str) |
601 | 0 | return NULL; |
602 | 0 | buf[0] = 0; |
603 | 0 | return str; |
604 | 0 | } |
605 | | |
606 | | /* -- see zlib.h -- */ |
607 | | int ZEXPORT gzdirect(file) |
608 | | gzFile file; |
609 | 0 | { |
610 | 0 | gz_statep state; |
611 | | |
612 | | /* get internal structure */ |
613 | 0 | if (file == NULL) |
614 | 0 | return 0; |
615 | 0 | state = (gz_statep)file; |
616 | | |
617 | | /* if the state is not known, but we can find out, then do so (this is |
618 | | mainly for right after a gzopen() or gzdopen()) */ |
619 | 0 | if (state->mode == GZ_READ && state->how == LOOK && state->x.have == 0) |
620 | 0 | (void)gz_look(state); |
621 | | |
622 | | /* return 1 if transparent, 0 if processing a gzip stream */ |
623 | 0 | return state->direct; |
624 | 0 | } |
625 | | |
626 | | /* -- see zlib.h -- */ |
627 | | int ZEXPORT gzclose_r(file) |
628 | | gzFile file; |
629 | 0 | { |
630 | 0 | int ret, err; |
631 | 0 | gz_statep state; |
632 | | |
633 | | /* get internal structure */ |
634 | 0 | if (file == NULL) |
635 | 0 | return Z_STREAM_ERROR; |
636 | 0 | state = (gz_statep)file; |
637 | | |
638 | | /* check that we're reading */ |
639 | 0 | if (state->mode != GZ_READ) |
640 | 0 | return Z_STREAM_ERROR; |
641 | | |
642 | | /* free memory and close file */ |
643 | 0 | if (state->size) { |
644 | 0 | inflateEnd(&(state->strm)); |
645 | 0 | free(state->out); |
646 | 0 | free(state->in); |
647 | 0 | } |
648 | 0 | err = state->err == Z_BUF_ERROR ? Z_BUF_ERROR : Z_OK; |
649 | 0 | gz_error(state, Z_OK, NULL); |
650 | 0 | free(state->path); |
651 | 0 | ret = close(state->fd); |
652 | 0 | free(state); |
653 | 0 | return ret ? Z_ERRNO : err; |
654 | 0 | } |