blob: 2d6574a401198428969ae2db90745ceb2d0314a8 [file] [log] [blame]
Dieter Baronbbb63691999-07-26 22:04:20 +00001/*
Dieter Baron1f3803c2005-06-09 19:57:10 +00002 $NiH: zip_fread.c,v 1.15 2005/05/20 21:54:53 wiz Exp $
Dieter Baron1c5ffe22002-06-06 09:27:17 +00003
Dieter Baronbbb63691999-07-26 22:04:20 +00004 zip_fread.c -- read from file
Dieter Baron1f3803c2005-06-09 19:57:10 +00005 Copyright (C) 1999, 2004, 2005 Dieter Baron and Thomas Klausner
Dieter Baronbbb63691999-07-26 22:04:20 +00006
Dieter Barondd9afca2003-10-02 14:13:37 +00007 This file is part of libzip, a library to manipulate ZIP archives.
Dieter Baronbbb63691999-07-26 22:04:20 +00008 The authors can be contacted at <nih@giga.or.at>
9
Dieter Barondd9afca2003-10-02 14:13:37 +000010 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 Baronbbb63691999-07-26 22:04:20 +000034*/
35
36
37
Dieter Baronac15a5d1999-07-25 19:47:32 +000038#include "zip.h"
39#include "zipint.h"
40
41
42
Dieter Baronb2ed74d2004-04-14 14:01:31 +000043ssize_t
Thomas Klausner6be59812004-11-18 17:11:24 +000044zip_fread(struct zip_file *zf, void *outbuf, size_t toread)
Dieter Baronac15a5d1999-07-25 19:47:32 +000045{
46 int len, out_before, ret;
47
Thomas Klausner6be59812004-11-18 17:11:24 +000048 if (!zf)
Dieter Baronac15a5d1999-07-25 19:47:32 +000049 return -1;
50
Thomas Klausner6be59812004-11-18 17:11:24 +000051 if (zf->error.zip_err != 0)
Dieter Baronac15a5d1999-07-25 19:47:32 +000052 return -1;
53
Thomas Klausner6be59812004-11-18 17:11:24 +000054 if ((zf->flags & ZIP_ZF_EOF) || (toread == 0))
Dieter Baronb2ed74d2004-04-14 14:01:31 +000055 return 0;
56
Thomas Klausner6be59812004-11-18 17:11:24 +000057 if (zf->bytes_left == 0) {
58 zf->flags |= ZIP_ZF_EOF;
Thomas Klausner0cb69862005-01-11 19:52:24 +000059 if (zf->flags & ZIP_ZF_CRC) {
Thomas Klausner6be59812004-11-18 17:11:24 +000060 if (zf->crc != zf->crc_orig) {
61 _zip_error_set(&zf->error, ZIP_ER_CRC, 0);
Dieter Baron971fc1a2004-04-17 19:15:30 +000062 return -1;
63 }
Dieter Baronac15a5d1999-07-25 19:47:32 +000064 }
65 return 0;
66 }
67
Thomas Klausner0cb69862005-01-11 19:52:24 +000068 if ((zf->flags & ZIP_ZF_DECOMP) == 0) {
Thomas Klausner6be59812004-11-18 17:11:24 +000069 ret = _zip_file_fillbuf(outbuf, toread, zf);
Dieter Baronac15a5d1999-07-25 19:47:32 +000070 if (ret > 0) {
Thomas Klausner0cb69862005-01-11 19:52:24 +000071 if (zf->flags & ZIP_ZF_CRC)
72 zf->crc = crc32(zf->crc, outbuf, ret);
Thomas Klausner6be59812004-11-18 17:11:24 +000073 zf->bytes_left -= ret;
Dieter Baronac15a5d1999-07-25 19:47:32 +000074 }
75 return ret;
76 }
77
Thomas Klausner6be59812004-11-18 17:11:24 +000078 zf->zstr->next_out = outbuf;
79 zf->zstr->avail_out = toread;
80 out_before = zf->zstr->total_out;
Dieter Baronac15a5d1999-07-25 19:47:32 +000081
82 /* endless loop until something has been accomplished */
83 for (;;) {
Thomas Klausner6be59812004-11-18 17:11:24 +000084 ret = inflate(zf->zstr, Z_SYNC_FLUSH);
Dieter Baronac15a5d1999-07-25 19:47:32 +000085
86 switch (ret) {
87 case Z_OK:
88 case Z_STREAM_END:
89 /* all ok */
Thomas Klausneree97ace1999-09-23 19:29:25 +000090 /* Z_STREAM_END probably won't happen, since we didn't
Dieter Baronac15a5d1999-07-25 19:47:32 +000091 have a header */
Thomas Klausner6be59812004-11-18 17:11:24 +000092 len = zf->zstr->total_out - out_before;
93 if (len >= zf->bytes_left || len >= toread) {
Thomas Klausner0cb69862005-01-11 19:52:24 +000094 if (zf->flags & ZIP_ZF_CRC)
95 zf->crc = crc32(zf->crc, outbuf, len);
Thomas Klausner6be59812004-11-18 17:11:24 +000096 zf->bytes_left -= len;
Dieter Baronb2ed74d2004-04-14 14:01:31 +000097 return len;
Dieter Baronac15a5d1999-07-25 19:47:32 +000098 }
99 break;
100
101 case Z_BUF_ERROR:
Thomas Klausner6be59812004-11-18 17:11:24 +0000102 if (zf->zstr->avail_in == 0) {
103 len = _zip_file_fillbuf(zf->buffer, BUFSIZE, zf);
Thomas Klausneree97ace1999-09-23 19:29:25 +0000104 if (len == 0) {
Thomas Klausner6be59812004-11-18 17:11:24 +0000105 _zip_error_set(&zf->error, ZIP_ER_INCONS, 0);
Dieter Baronac15a5d1999-07-25 19:47:32 +0000106 return -1;
107 }
Thomas Klausneree97ace1999-09-23 19:29:25 +0000108 else if (len < 0)
109 return -1;
Thomas Klausner0ed6bea2005-05-20 21:54:53 +0000110 zf->zstr->next_in = (Bytef *)zf->buffer;
Thomas Klausner6be59812004-11-18 17:11:24 +0000111 zf->zstr->avail_in = len;
Dieter Baronac15a5d1999-07-25 19:47:32 +0000112 continue;
113 }
Dieter Baronb2ed74d2004-04-14 14:01:31 +0000114 /* fallthrough */
Dieter Baronac15a5d1999-07-25 19:47:32 +0000115 case Z_NEED_DICT:
116 case Z_DATA_ERROR:
117 case Z_STREAM_ERROR:
118 case Z_MEM_ERROR:
Thomas Klausner6be59812004-11-18 17:11:24 +0000119 _zip_error_set(&zf->error, ZIP_ER_ZLIB, ret);
Dieter Baronac15a5d1999-07-25 19:47:32 +0000120 return -1;
121 }
122 }
123}