Dieter Baron | bbb6369 | 1999-07-26 22:04:20 +0000 | [diff] [blame] | 1 | /* |
Dieter Baron | 1f3803c | 2005-06-09 19:57:10 +0000 | [diff] [blame] | 2 | $NiH: zip_fread.c,v 1.15 2005/05/20 21:54:53 wiz Exp $ |
Dieter Baron | 1c5ffe2 | 2002-06-06 09:27:17 +0000 | [diff] [blame] | 3 | |
Dieter Baron | bbb6369 | 1999-07-26 22:04:20 +0000 | [diff] [blame] | 4 | zip_fread.c -- read from file |
Dieter Baron | 1f3803c | 2005-06-09 19:57:10 +0000 | [diff] [blame] | 5 | Copyright (C) 1999, 2004, 2005 Dieter Baron and Thomas Klausner |
Dieter Baron | bbb6369 | 1999-07-26 22:04:20 +0000 | [diff] [blame] | 6 | |
Dieter Baron | dd9afca | 2003-10-02 14:13:37 +0000 | [diff] [blame] | 7 | This file is part of libzip, a library to manipulate ZIP archives. |
Dieter Baron | bbb6369 | 1999-07-26 22:04:20 +0000 | [diff] [blame] | 8 | The authors can be contacted at <nih@giga.or.at> |
| 9 | |
Dieter Baron | dd9afca | 2003-10-02 14:13:37 +0000 | [diff] [blame] | 10 | Redistribution and use in source and binary forms, with or without |
| 11 | modification, are permitted provided that the following conditions |
| 12 | are met: |
| 13 | 1. Redistributions of source code must retain the above copyright |
| 14 | notice, this list of conditions and the following disclaimer. |
| 15 | 2. Redistributions in binary form must reproduce the above copyright |
| 16 | notice, this list of conditions and the following disclaimer in |
| 17 | the documentation and/or other materials provided with the |
| 18 | distribution. |
| 19 | 3. The names of the authors may not be used to endorse or promote |
| 20 | products derived from this software without specific prior |
| 21 | written permission. |
| 22 | |
| 23 | THIS SOFTWARE IS PROVIDED BY THE AUTHORS ``AS IS'' AND ANY EXPRESS |
| 24 | OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED |
| 25 | WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 26 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY |
| 27 | DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 28 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE |
| 29 | GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS |
| 30 | INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER |
| 31 | IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR |
| 32 | OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN |
| 33 | IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
Dieter Baron | bbb6369 | 1999-07-26 22:04:20 +0000 | [diff] [blame] | 34 | */ |
| 35 | |
| 36 | |
| 37 | |
Dieter Baron | ac15a5d | 1999-07-25 19:47:32 +0000 | [diff] [blame] | 38 | #include "zip.h" |
| 39 | #include "zipint.h" |
| 40 | |
| 41 | |
| 42 | |
Dieter Baron | b2ed74d | 2004-04-14 14:01:31 +0000 | [diff] [blame] | 43 | ssize_t |
Thomas Klausner | 6be5981 | 2004-11-18 17:11:24 +0000 | [diff] [blame] | 44 | zip_fread(struct zip_file *zf, void *outbuf, size_t toread) |
Dieter Baron | ac15a5d | 1999-07-25 19:47:32 +0000 | [diff] [blame] | 45 | { |
| 46 | int len, out_before, ret; |
| 47 | |
Thomas Klausner | 6be5981 | 2004-11-18 17:11:24 +0000 | [diff] [blame] | 48 | if (!zf) |
Dieter Baron | ac15a5d | 1999-07-25 19:47:32 +0000 | [diff] [blame] | 49 | return -1; |
| 50 | |
Thomas Klausner | 6be5981 | 2004-11-18 17:11:24 +0000 | [diff] [blame] | 51 | if (zf->error.zip_err != 0) |
Dieter Baron | ac15a5d | 1999-07-25 19:47:32 +0000 | [diff] [blame] | 52 | return -1; |
| 53 | |
Thomas Klausner | 6be5981 | 2004-11-18 17:11:24 +0000 | [diff] [blame] | 54 | if ((zf->flags & ZIP_ZF_EOF) || (toread == 0)) |
Dieter Baron | b2ed74d | 2004-04-14 14:01:31 +0000 | [diff] [blame] | 55 | return 0; |
| 56 | |
Thomas Klausner | 6be5981 | 2004-11-18 17:11:24 +0000 | [diff] [blame] | 57 | if (zf->bytes_left == 0) { |
| 58 | zf->flags |= ZIP_ZF_EOF; |
Thomas Klausner | 0cb6986 | 2005-01-11 19:52:24 +0000 | [diff] [blame] | 59 | if (zf->flags & ZIP_ZF_CRC) { |
Thomas Klausner | 6be5981 | 2004-11-18 17:11:24 +0000 | [diff] [blame] | 60 | if (zf->crc != zf->crc_orig) { |
| 61 | _zip_error_set(&zf->error, ZIP_ER_CRC, 0); |
Dieter Baron | 971fc1a | 2004-04-17 19:15:30 +0000 | [diff] [blame] | 62 | return -1; |
| 63 | } |
Dieter Baron | ac15a5d | 1999-07-25 19:47:32 +0000 | [diff] [blame] | 64 | } |
| 65 | return 0; |
| 66 | } |
| 67 | |
Thomas Klausner | 0cb6986 | 2005-01-11 19:52:24 +0000 | [diff] [blame] | 68 | if ((zf->flags & ZIP_ZF_DECOMP) == 0) { |
Thomas Klausner | 6be5981 | 2004-11-18 17:11:24 +0000 | [diff] [blame] | 69 | ret = _zip_file_fillbuf(outbuf, toread, zf); |
Dieter Baron | ac15a5d | 1999-07-25 19:47:32 +0000 | [diff] [blame] | 70 | if (ret > 0) { |
Thomas Klausner | 0cb6986 | 2005-01-11 19:52:24 +0000 | [diff] [blame] | 71 | if (zf->flags & ZIP_ZF_CRC) |
| 72 | zf->crc = crc32(zf->crc, outbuf, ret); |
Thomas Klausner | 6be5981 | 2004-11-18 17:11:24 +0000 | [diff] [blame] | 73 | zf->bytes_left -= ret; |
Dieter Baron | ac15a5d | 1999-07-25 19:47:32 +0000 | [diff] [blame] | 74 | } |
| 75 | return ret; |
| 76 | } |
| 77 | |
Thomas Klausner | 6be5981 | 2004-11-18 17:11:24 +0000 | [diff] [blame] | 78 | zf->zstr->next_out = outbuf; |
| 79 | zf->zstr->avail_out = toread; |
| 80 | out_before = zf->zstr->total_out; |
Dieter Baron | ac15a5d | 1999-07-25 19:47:32 +0000 | [diff] [blame] | 81 | |
| 82 | /* endless loop until something has been accomplished */ |
| 83 | for (;;) { |
Thomas Klausner | 6be5981 | 2004-11-18 17:11:24 +0000 | [diff] [blame] | 84 | ret = inflate(zf->zstr, Z_SYNC_FLUSH); |
Dieter Baron | ac15a5d | 1999-07-25 19:47:32 +0000 | [diff] [blame] | 85 | |
| 86 | switch (ret) { |
| 87 | case Z_OK: |
| 88 | case Z_STREAM_END: |
| 89 | /* all ok */ |
Thomas Klausner | ee97ace | 1999-09-23 19:29:25 +0000 | [diff] [blame] | 90 | /* Z_STREAM_END probably won't happen, since we didn't |
Dieter Baron | ac15a5d | 1999-07-25 19:47:32 +0000 | [diff] [blame] | 91 | have a header */ |
Thomas Klausner | 6be5981 | 2004-11-18 17:11:24 +0000 | [diff] [blame] | 92 | len = zf->zstr->total_out - out_before; |
| 93 | if (len >= zf->bytes_left || len >= toread) { |
Thomas Klausner | 0cb6986 | 2005-01-11 19:52:24 +0000 | [diff] [blame] | 94 | if (zf->flags & ZIP_ZF_CRC) |
| 95 | zf->crc = crc32(zf->crc, outbuf, len); |
Thomas Klausner | 6be5981 | 2004-11-18 17:11:24 +0000 | [diff] [blame] | 96 | zf->bytes_left -= len; |
Dieter Baron | b2ed74d | 2004-04-14 14:01:31 +0000 | [diff] [blame] | 97 | return len; |
Dieter Baron | ac15a5d | 1999-07-25 19:47:32 +0000 | [diff] [blame] | 98 | } |
| 99 | break; |
| 100 | |
| 101 | case Z_BUF_ERROR: |
Thomas Klausner | 6be5981 | 2004-11-18 17:11:24 +0000 | [diff] [blame] | 102 | if (zf->zstr->avail_in == 0) { |
| 103 | len = _zip_file_fillbuf(zf->buffer, BUFSIZE, zf); |
Thomas Klausner | ee97ace | 1999-09-23 19:29:25 +0000 | [diff] [blame] | 104 | if (len == 0) { |
Thomas Klausner | 6be5981 | 2004-11-18 17:11:24 +0000 | [diff] [blame] | 105 | _zip_error_set(&zf->error, ZIP_ER_INCONS, 0); |
Dieter Baron | ac15a5d | 1999-07-25 19:47:32 +0000 | [diff] [blame] | 106 | return -1; |
| 107 | } |
Thomas Klausner | ee97ace | 1999-09-23 19:29:25 +0000 | [diff] [blame] | 108 | else if (len < 0) |
| 109 | return -1; |
Thomas Klausner | 0ed6bea | 2005-05-20 21:54:53 +0000 | [diff] [blame] | 110 | zf->zstr->next_in = (Bytef *)zf->buffer; |
Thomas Klausner | 6be5981 | 2004-11-18 17:11:24 +0000 | [diff] [blame] | 111 | zf->zstr->avail_in = len; |
Dieter Baron | ac15a5d | 1999-07-25 19:47:32 +0000 | [diff] [blame] | 112 | continue; |
| 113 | } |
Dieter Baron | b2ed74d | 2004-04-14 14:01:31 +0000 | [diff] [blame] | 114 | /* fallthrough */ |
Dieter Baron | ac15a5d | 1999-07-25 19:47:32 +0000 | [diff] [blame] | 115 | case Z_NEED_DICT: |
| 116 | case Z_DATA_ERROR: |
| 117 | case Z_STREAM_ERROR: |
| 118 | case Z_MEM_ERROR: |
Thomas Klausner | 6be5981 | 2004-11-18 17:11:24 +0000 | [diff] [blame] | 119 | _zip_error_set(&zf->error, ZIP_ER_ZLIB, ret); |
Dieter Baron | ac15a5d | 1999-07-25 19:47:32 +0000 | [diff] [blame] | 120 | return -1; |
| 121 | } |
| 122 | } |
| 123 | } |