1
0
mirror of https://github.com/Rogiel/php-mpq synced 2025-12-06 00:13:04 +00:00

Fix a memory leak issue and a problem parsing MPQ26 headers

This commit is contained in:
2016-07-23 23:50:43 -03:00
parent 4549549eec
commit a8091dfa7d
5 changed files with 50 additions and 21 deletions

View File

@@ -49,7 +49,7 @@ class DeflateCompression implements Compression {
*/ */
public function decompress($data, $length) { public function decompress($data, $length) {
$output = @gzinflate(substr($data, 0, $length), $length); $output = @gzinflate(substr($data, 0, $length), $length);
if(!is_string($output)) { if($output === false) {
throw new InvalidInputDataException('The decompression input data is invalid.', $output); throw new InvalidInputDataException('The decompression input data is invalid.', $output);
} }
return $output; return $output;

View File

@@ -81,6 +81,10 @@ class MPQFile {
$this->stream = $stream; $this->stream = $stream;
} }
function __destruct() {
$this->stream->close();
}
// ----------------------------------------------------------------------------------------------------------------- // -----------------------------------------------------------------------------------------------------------------
public function isParsed() { public function isParsed() {
@@ -98,9 +102,10 @@ class MPQFile {
if($signature == "MPQ27") { if($signature == "MPQ27") {
$this->userData = UserData::parse($parser); $this->userData = UserData::parse($parser);
$this->stream->seek($this->getUserDataOffset()); $this->stream->seek($this->getUserDataOffset());
}
$signature = $this->parseSignature($parser); $signature = $this->parseSignature($parser);
}
if($signature == "MPQ26") { if($signature == "MPQ26") {
$this->header = Header::parse($parser); $this->header = Header::parse($parser);
} }
@@ -137,6 +142,7 @@ class MPQFile {
// $offsetFix++; // $offsetFix++;
// } // }
} }
return new BlockTable($blocks); return new BlockTable($blocks);
} }
@@ -151,7 +157,7 @@ class MPQFile {
// ----------------------------------------------------------------------------------------------------------------- // -----------------------------------------------------------------------------------------------------------------
private function getUserDataOffset() { public function getUserDataOffset() {
$userData = $this->getUserData(); $userData = $this->getUserData();
if($userData === null) { if($userData === null) {
return 0; return 0;
@@ -200,7 +206,7 @@ class MPQFile {
$sectors = array(); $sectors = array();
if($block->isChecksumed() || !$block->isSingleUnit()) { if($block->isChecksumed() || !$block->isSingleUnit()) {
$blockSize = $block->getCompressedSize(); $blockSize = 512 * (1 << $this->getHeader()->getBlockSize());
$fileSize = $block->getSize(); $fileSize = $block->getSize();
for ($i = $fileSize; $i > 0; $i -= $blockSize) { for ($i = $fileSize; $i > 0; $i -= $blockSize) {

View File

@@ -35,6 +35,7 @@ use Rogiel\MPQ\Exception\Compression\CompressionException;
use Rogiel\MPQ\Metadata\Block; use Rogiel\MPQ\Metadata\Block;
use Rogiel\MPQ\MPQFile; use Rogiel\MPQ\MPQFile;
use Rogiel\MPQ\Stream\CompressedStream; use Rogiel\MPQ\Stream\CompressedStream;
use Rogiel\MPQ\Stream\MemoryStream;
use Rogiel\MPQ\Stream\Parser\BinaryStreamParser; use Rogiel\MPQ\Stream\Parser\BinaryStreamParser;
use Rogiel\MPQ\Stream\Stream; use Rogiel\MPQ\Stream\Stream;
@@ -120,6 +121,10 @@ class BlockStream implements Stream {
$this->buffer = $this->readSector($this->currentSector); $this->buffer = $this->readSector($this->currentSector);
$this->positionInSector = 0; $this->positionInSector = 0;
} else if($this->positionInSector >= strlen($this->buffer)) { } else if($this->positionInSector >= strlen($this->buffer)) {
if(!isset($this->sectors[$this->currentSector->getIndex() + 1])) {
return false;
}
$this->currentSector = $this->sectors[$this->currentSector->getIndex() + 1]; $this->currentSector = $this->sectors[$this->currentSector->getIndex() + 1];
$this->buffer = $this->readSector($this->currentSector); $this->buffer = $this->readSector($this->currentSector);
$this->positionInSector = 0; $this->positionInSector = 0;
@@ -157,15 +162,15 @@ class BlockStream implements Stream {
// ----------------------------------------------------------------------------------------------------------------- // -----------------------------------------------------------------------------------------------------------------
private function readSector(Sector $sector) { private function readSector(Sector $sector) {
$this->stream->seek($this->file->getUserData()->getHeaderOffset() $this->stream->seek($this->file->getUserDataOffset()
+ $this->block->getFilePos() + $this->block->getFilePos()
+ $sector->getStart()); + $sector->getStart());
$compressedStream = $this->createCompressedStream(); $compressedStream = $this->createCompressedStream($sector);
return $compressedStream->readBytes($sector->getLength()); return $compressedStream->readBytes($this->block->getSize());
} }
private function createCompressedStream() { private function createCompressedStream(Sector $sector) {
$stream = $this->stream; $stream = $this->stream;
if($this->block->isCompressed() && $this->block->getSize() > $this->block->getCompressedSize()) { if($this->block->isCompressed() && $this->block->getSize() > $this->block->getCompressedSize()) {
@@ -173,7 +178,12 @@ class BlockStream implements Stream {
$compressionType = $parser->readByte(); $compressionType = $parser->readByte();
switch ($compressionType) { switch ($compressionType) {
case 0x00: return $stream; case 0x00: return $stream;
case 0x02: return new CompressedStream($stream, new DeflateCompression()); case 0x02: {
$len = $parser->readUInt16();
$blockData = $stream->readBytes($len);
return new MemoryStream(gzinflate($blockData));
}
// case 0x02: return new CompressedStream($stream, new DeflateCompression());
case 0x10: return new CompressedStream($stream, new BZIPCompression()); case 0x10: return new CompressedStream($stream, new BZIPCompression());
default: default:
throw new CompressionException(sprintf('Invalid compression format: %s', $compressionType)); throw new CompressionException(sprintf('Invalid compression format: %s', $compressionType));

View File

@@ -40,13 +40,21 @@ class FileStream implements Stream {
$this->handle = fopen($file, 'r'); $this->handle = fopen($file, 'r');
} }
public function __clone() {
$this->handle = fopen($this->file, 'r');
}
function __destruct() {
$this->close();
}
// ----------------------------------------------------------------------------------------------------------------- // -----------------------------------------------------------------------------------------------------------------
/** /**
* {@inheritdoc} * {@inheritdoc}
*/ */
public function close() { public function close() {
fclose($this->handle); @fclose($this->handle);
} }
/** /**
@@ -84,10 +92,4 @@ class FileStream implements Stream {
return feof($this->handle); return feof($this->handle);
} }
// -----------------------------------------------------------------------------------------------------------------
public function __clone() {
return new FileStream($this->file);
}
} }

View File

@@ -69,6 +69,17 @@ class BinaryStreamParser {
return $this->stream->readBytes($size); return $this->stream->readBytes($size);
} }
public function readCString($debug=false) {
$str = '';
while(true) {
$c = $this->stream->readBytes(1);
if($c == "\0") {
return $str;
}
$str .= (string) $c;
}
}
public function eof() { public function eof() {
return $this->stream->eof(); return $this->stream->eof();
} }