aboutsummaryrefslogtreecommitdiff
path: root/libjava/java/util/zip/GZIPInputStream.java
diff options
context:
space:
mode:
authorTom Tromey <tromey@redhat.com>2002-11-16 00:41:32 +0000
committerTom Tromey <tromey@gcc.gnu.org>2002-11-16 00:41:32 +0000
commit401d536248fc3802c619902fc9877faae173047a (patch)
tree6889fc71c9afc4e5f5cf4829fb7d77efdbbfd18b /libjava/java/util/zip/GZIPInputStream.java
parent6368a493210d49dc5be62ad0da59112d23dfd3ee (diff)
downloadgcc-401d536248fc3802c619902fc9877faae173047a.zip
gcc-401d536248fc3802c619902fc9877faae173047a.tar.gz
gcc-401d536248fc3802c619902fc9877faae173047a.tar.bz2
For PR libgcj/8593:
* java/util/zip/GZIPInputStream.java (read): Check file size. Look in inflater for remaining input bytes. (read4): Added buf and offset arguments. From-SVN: r59145
Diffstat (limited to 'libjava/java/util/zip/GZIPInputStream.java')
-rw-r--r--libjava/java/util/zip/GZIPInputStream.java36
1 files changed, 21 insertions, 15 deletions
diff --git a/libjava/java/util/zip/GZIPInputStream.java b/libjava/java/util/zip/GZIPInputStream.java
index 07e4959..68fda79 100644
--- a/libjava/java/util/zip/GZIPInputStream.java
+++ b/libjava/java/util/zip/GZIPInputStream.java
@@ -1,5 +1,5 @@
/* GZIPInputStream.java - Input filter for reading gzip file
- Copyright (C) 1999, 2000 Free Software Foundation, Inc.
+ Copyright (C) 1999, 2000, 2002 Free Software Foundation, Inc.
This file is part of GNU Classpath.
@@ -141,28 +141,34 @@ public class GZIPInputStream extends InflaterInputStream
if (r == -1)
{
eos = true;
- int header_crc = read4 ();
+
+ byte[] tmp = new byte[8];
+ // First copy remaining bytes from inflater input buffer.
+ int avail = inf.getRemaining ();
+ System.arraycopy (this.buf, this.len - avail, tmp, 0, avail);
+
+ // Now read remaining bytes from wrapped input stream.
+ for (int i = avail; i < 8; ++i)
+ {
+ tmp[i] = (byte) eof_read ();
+ }
+
+ int header_crc = read4 (tmp, 0);
if (crc.getValue() != header_crc)
- throw new ZipException ("corrupted gzip file");
- // Read final `ISIZE' field.
- // FIXME: should we check this length?
- read4 ();
+ throw new ZipException ("corrupted gzip file - crc mismatch");
+ int isize = read4 (tmp, 4);
+ if (inf.getTotalOut() != isize)
+ throw new ZipException ("corrupted gzip file - size mismatch");
return -1;
}
crc.update(buf, off, r);
return r;
}
- private final int read4 () throws IOException
+ private final int read4 (byte[] buf, int offset) throws IOException
{
- int byte0 = in.read();
- int byte1 = in.read();
- int byte2 = in.read();
- int byte3 = in.read();
- if (byte3 < 0)
- throw new ZipException (".zip archive ended prematurely");
- return ((byte3 & 0xFF) << 24) + ((byte2 & 0xFF) << 16)
- + ((byte1 & 0xFF) << 8) + (byte0 & 0xFF);
+ return (((buf[offset + 3] & 0xFF) << 24) + ((buf[offset + 2] & 0xFF) << 16)
+ + ((buf[offset + 1] & 0xFF) << 8) + (buf[offset] & 0xFF));
}
// Checksum used by this input stream.