123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675 |
- using System;
- using System.IO;
- using CommonMPQ.SharpZipLib.Checksums;
- using CommonMPQ.SharpZipLib.Zip.Compression;
- using CommonMPQ.SharpZipLib.Zip.Compression.Streams;
- #if !NETCF_1_0
- using CommonMPQ.SharpZipLib.Encryption;
- #endif
- namespace CommonMPQ.SharpZipLib.Zip
- {
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- public class ZipInputStream : InflaterInputStream
- {
- #region Instance Fields
-
-
-
- delegate int ReadDataHandler(byte[] b, int offset, int length);
-
-
-
-
- ReadDataHandler internalReader;
-
- Crc32 crc = new Crc32();
- ZipEntry entry;
-
- long size;
- int method;
- int flags;
- string password;
- #endregion
- #region Constructors
-
-
-
-
- public ZipInputStream(Stream baseInputStream)
- : base(baseInputStream, new Inflater(true))
- {
- internalReader = new ReadDataHandler(ReadingNotAvailable);
- }
-
-
-
-
-
- public ZipInputStream( Stream baseInputStream, int bufferSize )
- : base(baseInputStream, new Inflater(true), bufferSize)
- {
- internalReader = new ReadDataHandler(ReadingNotAvailable);
- }
- #endregion
-
-
-
-
-
- public string Password
- {
- get {
- return password;
- }
- set {
- password = value;
- }
- }
-
-
-
-
-
-
-
-
-
- public bool CanDecompressEntry {
- get {
- return (entry != null) && entry.CanDecompress;
- }
- }
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- public ZipEntry GetNextEntry()
- {
- if (crc == null) {
- throw new InvalidOperationException("Closed.");
- }
-
- if (entry != null) {
- CloseEntry();
- }
-
- int header = inputBuffer.ReadLeInt();
-
- if (header == ZipConstants.CentralHeaderSignature ||
- header == ZipConstants.EndOfCentralDirectorySignature ||
- header == ZipConstants.CentralHeaderDigitalSignature ||
- header == ZipConstants.ArchiveExtraDataSignature ||
- header == ZipConstants.Zip64CentralFileHeaderSignature) {
-
- Close();
- return null;
- }
-
-
-
- if ( (header == ZipConstants.SpanningTempSignature) || (header == ZipConstants.SpanningSignature) ) {
- header = inputBuffer.ReadLeInt();
- }
-
- if (header != ZipConstants.LocalHeaderSignature) {
- throw new ZipException("Wrong Local header signature: 0x" + String.Format("{0:X}", header));
- }
-
- short versionRequiredToExtract = (short)inputBuffer.ReadLeShort();
-
- flags = inputBuffer.ReadLeShort();
- method = inputBuffer.ReadLeShort();
- uint dostime = (uint)inputBuffer.ReadLeInt();
- int crc2 = inputBuffer.ReadLeInt();
- csize = inputBuffer.ReadLeInt();
- size = inputBuffer.ReadLeInt();
- int nameLen = inputBuffer.ReadLeShort();
- int extraLen = inputBuffer.ReadLeShort();
-
- bool isCrypted = (flags & 1) == 1;
-
- byte[] buffer = new byte[nameLen];
- inputBuffer.ReadRawBuffer(buffer);
-
- string name = ZipConstants.ConvertToStringExt(flags, buffer);
-
- entry = new ZipEntry(name, versionRequiredToExtract);
- entry.Flags = flags;
-
- entry.CompressionMethod = (CompressionMethod)method;
-
- if ((flags & 8) == 0) {
- entry.Crc = crc2 & 0xFFFFFFFFL;
- entry.Size = size & 0xFFFFFFFFL;
- entry.CompressedSize = csize & 0xFFFFFFFFL;
- entry.CryptoCheckValue = (byte)((crc2 >> 24) & 0xff);
- } else {
-
-
-
- if (crc2 != 0) {
- entry.Crc = crc2 & 0xFFFFFFFFL;
- }
-
- if (size != 0) {
- entry.Size = size & 0xFFFFFFFFL;
- }
- if (csize != 0) {
- entry.CompressedSize = csize & 0xFFFFFFFFL;
- }
- entry.CryptoCheckValue = (byte)((dostime >> 8) & 0xff);
- }
-
- entry.DosTime = dostime;
-
-
-
- if (extraLen > 0) {
- byte[] extra = new byte[extraLen];
- inputBuffer.ReadRawBuffer(extra);
- entry.ExtraData = extra;
- }
- entry.ProcessExtraData(true);
- if ( entry.CompressedSize >= 0 ) {
- csize = entry.CompressedSize;
- }
- if ( entry.Size >= 0 ) {
- size = entry.Size;
- }
-
- if (method == (int)CompressionMethod.Stored && (!isCrypted && csize != size || (isCrypted && csize - ZipConstants.CryptoHeaderSize != size))) {
- throw new ZipException("Stored, but compressed != uncompressed");
- }
-
- if (entry.IsCompressionMethodSupported()) {
- internalReader = new ReadDataHandler(InitialRead);
- } else {
- internalReader = new ReadDataHandler(ReadingNotSupported);
- }
-
- return entry;
- }
-
-
-
-
- void ReadDataDescriptor()
- {
- if (inputBuffer.ReadLeInt() != ZipConstants.DataDescriptorSignature) {
- throw new ZipException("Data descriptor signature not found");
- }
-
- entry.Crc = inputBuffer.ReadLeInt() & 0xFFFFFFFFL;
-
- if ( entry.LocalHeaderRequiresZip64 ) {
- csize = inputBuffer.ReadLeLong();
- size = inputBuffer.ReadLeLong();
- } else {
- csize = inputBuffer.ReadLeInt();
- size = inputBuffer.ReadLeInt();
- }
- entry.CompressedSize = csize;
- entry.Size = size;
- }
-
-
-
-
- void CompleteCloseEntry(bool testCrc)
- {
- StopDecrypting();
-
- if ((flags & 8) != 0) {
- ReadDataDescriptor();
- }
-
- size = 0;
- if ( testCrc &&
- ((crc.Value & 0xFFFFFFFFL) != entry.Crc) && (entry.Crc != -1)) {
- throw new ZipException("CRC mismatch");
- }
- crc.Reset();
- if (method == (int)CompressionMethod.Deflated) {
- inf.Reset();
- }
- entry = null;
- }
-
-
-
-
-
-
-
-
-
- public void CloseEntry()
- {
- if (crc == null) {
- throw new InvalidOperationException("Closed");
- }
-
- if (entry == null) {
- return;
- }
-
- if (method == (int)CompressionMethod.Deflated) {
- if ((flags & 8) != 0) {
-
- byte[] tmp = new byte[4096];
-
- while (Read(tmp, 0, tmp.Length) > 0) {
- }
- return;
- }
- csize -= inf.TotalIn;
- inputBuffer.Available += inf.RemainingInput;
- }
-
- if ( (inputBuffer.Available > csize) && (csize >= 0) ) {
- inputBuffer.Available = (int)((long)inputBuffer.Available - csize);
- } else {
- csize -= inputBuffer.Available;
- inputBuffer.Available = 0;
- while (csize != 0) {
- long skipped = base.Skip(csize);
-
- if (skipped <= 0) {
- throw new ZipException("Zip archive ends early.");
- }
-
- csize -= skipped;
- }
- }
- CompleteCloseEntry(false);
- }
-
-
-
-
-
- public override int Available {
- get {
- return entry != null ? 1 : 0;
- }
- }
-
-
-
-
-
-
- public override long Length
- {
- get {
- if ( entry != null ) {
- if ( entry.Size >= 0 ) {
- return entry.Size;
- } else {
- throw new ZipException("Length not available for the current entry");
- }
- }
- else {
- throw new InvalidOperationException("No current entry");
- }
- }
-
- }
-
-
-
-
-
-
-
- public override int ReadByte()
- {
- byte[] b = new byte[1];
- if (Read(b, 0, 1) <= 0) {
- return -1;
- }
- return b[0] & 0xff;
- }
-
-
-
-
-
-
-
-
- int ReadingNotAvailable(byte[] destination, int offset, int count)
- {
- throw new InvalidOperationException("Unable to read from this stream");
- }
-
-
-
-
- int ReadingNotSupported(byte[] destination, int offset, int count)
- {
- throw new ZipException("The compression method for this entry is not supported");
- }
-
-
-
-
-
-
-
-
-
- int InitialRead(byte[] destination, int offset, int count)
- {
- if ( !CanDecompressEntry ) {
- throw new ZipException("Library cannot extract this entry. Version required is (" + entry.Version.ToString() + ")");
- }
-
-
- if (entry.IsCrypted) {
- #if NETCF_1_0
- throw new ZipException("Encryption not supported for Compact Framework 1.0");
- #else
- if (password == null) {
- throw new ZipException("No password set.");
- }
-
-
- PkzipClassicManaged managed = new PkzipClassicManaged();
- byte[] key = PkzipClassic.GenerateKeys(ZipConstants.ConvertToArray(password));
-
- inputBuffer.CryptoTransform = managed.CreateDecryptor(key, null);
-
- byte[] cryptbuffer = new byte[ZipConstants.CryptoHeaderSize];
- inputBuffer.ReadClearTextBuffer(cryptbuffer, 0, ZipConstants.CryptoHeaderSize);
- if (cryptbuffer[ZipConstants.CryptoHeaderSize - 1] != entry.CryptoCheckValue) {
- throw new ZipException("Invalid password");
- }
- if (csize >= ZipConstants.CryptoHeaderSize) {
- csize -= ZipConstants.CryptoHeaderSize;
- }
- else if ( (entry.Flags & (int)GeneralBitFlags.Descriptor) == 0 ) {
- throw new ZipException(string.Format("Entry compressed size {0} too small for encryption", csize));
- }
- #endif
- } else {
- #if !NETCF_1_0
- inputBuffer.CryptoTransform = null;
- #endif
- }
- if ((csize > 0) || ((flags & (int)GeneralBitFlags.Descriptor) != 0)) {
- if ((method == (int)CompressionMethod.Deflated) && (inputBuffer.Available > 0)) {
- inputBuffer.SetInflaterInput(inf);
- }
- internalReader = new ReadDataHandler(BodyRead);
- return BodyRead(destination, offset, count);
- }
- else {
- internalReader = new ReadDataHandler(ReadingNotAvailable);
- return 0;
- }
- }
-
-
-
-
-
-
-
-
-
- public override int Read(byte[] buffer, int offset, int count)
- {
- if ( buffer == null ) {
- throw new ArgumentNullException("buffer");
- }
- if ( offset < 0 ) {
- #if NETCF_1_0
- throw new ArgumentOutOfRangeException("offset");
- #else
- throw new ArgumentOutOfRangeException("offset", "Cannot be negative");
- #endif
- }
- if ( count < 0 ) {
- #if NETCF_1_0
- throw new ArgumentOutOfRangeException("count");
- #else
- throw new ArgumentOutOfRangeException("count", "Cannot be negative");
- #endif
- }
- if ( (buffer.Length - offset) < count ) {
- throw new ArgumentException("Invalid offset/count combination");
- }
- return internalReader(buffer, offset, count);
- }
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- int BodyRead(byte[] buffer, int offset, int count)
- {
- if ( crc == null ) {
- throw new InvalidOperationException("Closed");
- }
-
- if ( (entry == null) || (count <= 0) ) {
- return 0;
- }
- if ( offset + count > buffer.Length ) {
- throw new ArgumentException("Offset + count exceeds buffer size");
- }
-
- bool finished = false;
-
- switch (method) {
- case (int)CompressionMethod.Deflated:
- count = base.Read(buffer, offset, count);
- if (count <= 0) {
- if (!inf.IsFinished) {
- throw new ZipException("Inflater not finished!");
- }
- inputBuffer.Available = inf.RemainingInput;
-
- if ((flags & 8) == 0 &&
- (inf.TotalIn != csize && csize != 0xFFFFFFFF && csize != -1 || inf.TotalOut != size)) {
- throw new ZipException("Size mismatch: " + csize + ";" + size + " <-> " + inf.TotalIn + ";" + inf.TotalOut);
- }
- inf.Reset();
- finished = true;
- }
- break;
-
- case (int)CompressionMethod.Stored:
- if ( (count > csize) && (csize >= 0) ) {
- count = (int)csize;
- }
-
- if ( count > 0 ) {
- count = inputBuffer.ReadClearTextBuffer(buffer, offset, count);
- if (count > 0) {
- csize -= count;
- size -= count;
- }
- }
-
- if (csize == 0) {
- finished = true;
- } else {
- if (count < 0) {
- throw new ZipException("EOF in stored block");
- }
- }
- break;
- }
-
- if (count > 0) {
- crc.Update(buffer, offset, count);
- }
-
- if (finished) {
- CompleteCloseEntry(true);
- }
- return count;
- }
-
-
-
-
- public override void Close()
- {
- internalReader = new ReadDataHandler(ReadingNotAvailable);
- crc = null;
- entry = null;
- base.Close();
- }
- }
- }
|