2 // This file is part of Moodle - http://moodle.org/
4 // Moodle is free software: you can redistribute it and/or modify
5 // it under the terms of the GNU General Public License as published by
6 // the Free Software Foundation, either version 3 of the License, or
7 // (at your option) any later version.
9 // Moodle is distributed in the hope that it will be useful,
10 // but WITHOUT ANY WARRANTY; without even the implied warranty of
11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 // GNU General Public License for more details.
14 // You should have received a copy of the GNU General Public License
15 // along with Moodle. If not, see <http://www.gnu.org/licenses/>.
18 * Implementation of zip file archive.
21 * @copyright 2008 Petr Skoda (http://skodak.org)
22 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
25 defined('MOODLE_INTERNAL') ||
die();
27 require_once("$CFG->libdir/filestorage/file_archive.php");
30 * Zip file archive class.
34 * @copyright 2008 Petr Skoda (http://skodak.org)
35 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
37 class zip_archive
extends file_archive
{
39 /** @var string Pathname of archive */
40 protected $archivepathname = null;
42 /** @var int archive open mode */
43 protected $mode = null;
45 /** @var int Used memory tracking */
46 protected $usedmem = 0;
48 /** @var int Iteration position */
51 /** @var ZipArchive instance */
54 /** @var bool was this archive modified? */
55 protected $modified = false;
57 /** @var array unicode decoding array, created by decoding zip file */
58 protected $namelookup = null;
60 /** @var string base64 encoded contents of empty zip file */
61 protected static $emptyzipcontent = 'UEsFBgAAAAAAAAAAAAAAAAAAAAAAAA==';
63 /** @var bool ugly hack for broken empty zip handling in < PHP 5.3.10 */
64 protected $emptyziphack = false;
67 * Create new zip_archive instance.
69 public function __construct() {
70 $this->encoding
= null; // Autodetects encoding by default.
74 * Open or create archive (depending on $mode).
76 * @todo MDL-31048 return error message
77 * @param string $archivepathname
78 * @param int $mode OPEN, CREATE or OVERWRITE constant
79 * @param string $encoding archive local paths encoding, empty means autodetect
80 * @return bool success
82 public function open($archivepathname, $mode=file_archive
::CREATE
, $encoding=null) {
87 $this->encoding
= $encoding;
90 $this->za
= new ZipArchive();
93 case file_archive
::OPEN
: $flags = 0; break;
94 case file_archive
::OVERWRITE
: $flags = ZIPARCHIVE
::CREATE | ZIPARCHIVE
::OVERWRITE
; break; //changed in PHP 5.2.8
95 case file_archive
::CREATE
:
96 default : $flags = ZIPARCHIVE
::CREATE
; break;
99 $result = $this->za
->open($archivepathname, $flags);
101 if ($flags == 0 and $result === ZIPARCHIVE
::ER_NOZIP
and filesize($archivepathname) === 22) {
102 // Legacy PHP versions < 5.3.10 can not deal with empty zip archives.
103 if (file_get_contents($archivepathname) === base64_decode(self
::$emptyzipcontent)) {
104 if ($temp = make_temp_directory('zip')) {
105 $this->emptyziphack
= tempnam($temp, 'zip');
106 $this->za
= new ZipArchive();
107 $result = $this->za
->open($this->emptyziphack
, ZIPARCHIVE
::CREATE
);
112 if ($result === true) {
113 if (file_exists($archivepathname)) {
114 $this->archivepathname
= realpath($archivepathname);
116 $this->archivepathname
= $archivepathname;
121 $message = 'Unknown error.';
123 case ZIPARCHIVE
::ER_EXISTS
: $message = 'File already exists.'; break;
124 case ZIPARCHIVE
::ER_INCONS
: $message = 'Zip archive inconsistent.'; break;
125 case ZIPARCHIVE
::ER_INVAL
: $message = 'Invalid argument.'; break;
126 case ZIPARCHIVE
::ER_MEMORY
: $message = 'Malloc failure.'; break;
127 case ZIPARCHIVE
::ER_NOENT
: $message = 'No such file.'; break;
128 case ZIPARCHIVE
::ER_NOZIP
: $message = 'Not a zip archive.'; break;
129 case ZIPARCHIVE
::ER_OPEN
: $message = 'Can\'t open file.'; break;
130 case ZIPARCHIVE
::ER_READ
: $message = 'Read error.'; break;
131 case ZIPARCHIVE
::ER_SEEK
: $message = 'Seek error.'; break;
133 debugging($message.': '.$archivepathname, DEBUG_DEVELOPER
);
135 $this->archivepathname
= null;
141 * Normalize $localname, always keep in utf-8 encoding.
143 * @param string $localname name of file in utf-8 encoding
144 * @return string normalised compressed file or directory name
146 protected function mangle_pathname($localname) {
147 $result = str_replace('\\', '/', $localname); // no MS \ separators
148 $result = preg_replace('/\.\.+/', '', $result); // prevent /.../
149 $result = ltrim($result, '/'); // no leading slash
151 if ($result === '.') {
159 * Tries to convert $localname into utf-8
160 * please note that it may fail really badly.
161 * The resulting file name is cleaned.
163 * @param string $localname name (encoding is read from zip file or guessed)
164 * @return string in utf-8
166 protected function unmangle_pathname($localname) {
167 $this->init_namelookup();
169 if (!isset($this->namelookup
[$localname])) {
171 // This should not happen.
172 if (!empty($this->encoding
) and $this->encoding
!== 'utf-8') {
173 $name = @core_text
::convert($name, $this->encoding
, 'utf-8');
175 $name = str_replace('\\', '/', $name); // no MS \ separators
176 $name = clean_param($name, PARAM_PATH
); // only safe chars
177 return ltrim($name, '/'); // no leading slash
180 return $this->namelookup
[$localname];
184 * Close archive, write changes to disk.
186 * @return bool success
188 public function close() {
189 if (!isset($this->za
)) {
193 if ($this->emptyziphack
) {
197 $this->namelookup
= null;
198 $this->modified
= false;
199 @unlink
($this->emptyziphack
);
200 $this->emptyziphack
= false;
203 } else if ($this->za
->numFiles
== 0) {
204 // PHP can not create empty archives, so let's fake it.
208 $this->namelookup
= null;
209 $this->modified
= false;
210 @unlink
($this->archivepathname
);
211 $data = base64_decode(self
::$emptyzipcontent);
212 if (!file_put_contents($this->archivepathname
, $data)) {
218 $res = $this->za
->close();
221 $this->namelookup
= null;
223 if ($this->modified
) {
224 $this->fix_utf8_flags();
225 $this->modified
= false;
232 * Returns file stream for reading of content.
234 * @param int $index index of file
235 * @return resource|bool file handle or false if error
237 public function get_stream($index) {
238 if (!isset($this->za
)) {
242 $name = $this->za
->getNameIndex($index);
243 if ($name === false) {
247 return $this->za
->getStream($name);
251 * Returns file information.
253 * @param int $index index of file
254 * @return stdClass|bool info object or false if error
256 public function get_info($index) {
257 if (!isset($this->za
)) {
261 // Need to use the ZipArchive's numfiles, as $this->count() relies on this function to count actual files (skipping OSX junk).
262 if ($index < 0 or $index >=$this->za
->numFiles
) {
266 // PHP 5.6 introduced encoding guessing logic, we need to fall back
267 // to raw ZIP_FL_ENC_RAW (== 64) to get consistent results as in PHP 5.5.
268 $result = $this->za
->statIndex($index, 64);
270 if ($result === false) {
274 $info = new stdClass();
275 $info->index
= $index;
276 $info->original_pathname
= $result['name'];
277 $info->pathname
= $this->unmangle_pathname($result['name']);
278 $info->mtime
= (int)$result['mtime'];
280 if ($info->pathname
[strlen($info->pathname
)-1] === '/') {
281 $info->is_directory
= true;
284 $info->is_directory
= false;
285 $info->size
= (int)$result['size'];
288 if ($this->is_system_file($info)) {
289 // Don't return system files.
297 * Returns array of info about all files in archive.
299 * @return array of file infos
301 public function list_files() {
302 if (!isset($this->za
)) {
308 foreach ($this as $info) {
309 // Simply iterating over $this will give us info only for files we're interested in.
310 array_push($infos, $info);
316 public function is_system_file($fileinfo) {
317 if (substr($fileinfo->pathname
, 0, 8) === '__MACOSX' or substr($fileinfo->pathname
, -9) === '.DS_Store') {
318 // Mac OSX system files.
321 if (substr($fileinfo->pathname
, -9) === 'Thumbs.db') {
322 $stream = $this->za
->getStream($fileinfo->pathname
);
323 $info = base64_encode(fread($stream, 8));
325 if ($info === '0M8R4KGxGuE=') {
326 // It's an OLE Compound File - so it's almost certainly a Windows thumbnail cache.
334 * Returns number of files in archive.
336 * @return int number of files
338 public function count() {
339 if (!isset($this->za
)) {
343 return count($this->list_files());
347 * Returns approximate number of files in archive. This may be a slight
350 * @return int|bool Estimated number of files, or false if not opened
352 public function estimated_count() {
353 if (!isset($this->za
)) {
357 return $this->za
->numFiles
;
361 * Add file into archive.
363 * @param string $localname name of file in archive
364 * @param string $pathname location of file
365 * @return bool success
367 public function add_file_from_pathname($localname, $pathname) {
368 if ($this->emptyziphack
) {
370 $this->open($this->archivepathname
, file_archive
::OVERWRITE
, $this->encoding
);
373 if (!isset($this->za
)) {
377 if ($this->archivepathname
=== realpath($pathname)) {
378 // Do not add self into archive.
382 if (!is_readable($pathname) or is_dir($pathname)) {
386 if (is_null($localname)) {
387 $localname = clean_param($pathname, PARAM_PATH
);
389 $localname = trim($localname, '/'); // No leading slashes in archives!
390 $localname = $this->mangle_pathname($localname);
392 if ($localname === '') {
393 // Sorry - conversion failed badly.
397 if (!$this->za
->addFile($pathname, $localname)) {
400 $this->modified
= true;
405 * Add content of string into archive.
407 * @param string $localname name of file in archive
408 * @param string $contents contents
409 * @return bool success
411 public function add_file_from_string($localname, $contents) {
412 if ($this->emptyziphack
) {
414 $this->open($this->archivepathname
, file_archive
::OVERWRITE
, $this->encoding
);
417 if (!isset($this->za
)) {
421 $localname = trim($localname, '/'); // No leading slashes in archives!
422 $localname = $this->mangle_pathname($localname);
424 if ($localname === '') {
425 // Sorry - conversion failed badly.
429 if ($this->usedmem
> 2097151) {
430 // This prevents running out of memory when adding many large files using strings.
432 $res = $this->open($this->archivepathname
, file_archive
::OPEN
, $this->encoding
);
434 print_error('cannotopenzip');
437 $this->usedmem +
= strlen($contents);
439 if (!$this->za
->addFromString($localname, $contents)) {
442 $this->modified
= true;
447 * Add empty directory into archive.
449 * @param string $localname name of file in archive
450 * @return bool success
452 public function add_directory($localname) {
453 if ($this->emptyziphack
) {
455 $this->open($this->archivepathname
, file_archive
::OVERWRITE
, $this->encoding
);
458 if (!isset($this->za
)) {
461 $localname = trim($localname, '/'). '/';
462 $localname = $this->mangle_pathname($localname);
464 if ($localname === '/') {
465 // Sorry - conversion failed badly.
469 if ($localname !== '') {
470 if (!$this->za
->addEmptyDir($localname)) {
473 $this->modified
= true;
479 * Returns current file info.
483 public function current() {
484 if (!isset($this->za
)) {
488 return $this->get_info($this->pos
);
492 * Returns the index of current file.
494 * @return int current file index
496 public function key() {
501 * Moves forward to next file.
503 public function next() {
508 * Rewinds back to the first file.
510 public function rewind() {
515 * Did we reach the end?
519 public function valid() {
520 if (!isset($this->za
)) {
524 // Skip over unwanted system files (get_info will return false).
525 while (!$this->get_info($this->pos
) && $this->pos
< $this->za
->numFiles
) {
529 // No files left - we're at the end.
530 if ($this->pos
>= $this->za
->numFiles
) {
538 * Create a map of file names used in zip archive.
541 protected function init_namelookup() {
542 if ($this->emptyziphack
) {
543 $this->namelookup
= array();
547 if (!isset($this->za
)) {
550 if (isset($this->namelookup
)) {
554 $this->namelookup
= array();
556 if ($this->mode
!= file_archive
::OPEN
) {
557 // No need to tweak existing names when creating zip file because there are none yet!
561 if (!file_exists($this->archivepathname
)) {
565 if (!$fp = fopen($this->archivepathname
, 'rb')) {
568 if (!$filesize = filesize($this->archivepathname
)) {
572 $centralend = self
::zip_get_central_end($fp, $filesize);
574 if ($centralend === false or $centralend['disk'] !== 0 or $centralend['disk_start'] !== 0 or $centralend['offset'] === 0xFFFFFFFF) {
575 // Single disk archives only and o support for ZIP64, sorry.
580 fseek($fp, $centralend['offset']);
581 $data = fread($fp, $centralend['size']);
584 for($i=0; $i<$centralend['entries']; $i++
) {
585 $file = self
::zip_parse_file_header($data, $centralend, $pos);
586 if ($file === false) {
587 // Wrong header, sorry.
595 foreach ($files as $file) {
596 $name = $file['name'];
597 if (preg_match('/^[a-zA-Z0-9_\-\.]*$/', $file['name'])) {
598 // No need to fix ASCII.
599 $name = fix_utf8($name);
601 } else if (!($file['general'] & pow(2, 11))) {
602 // First look for unicode name alternatives.
604 foreach($file['extra'] as $extra) {
605 if ($extra['id'] === 0x7075) {
606 $data = unpack('cversion/Vcrc', substr($extra['data'], 0, 5));
607 if ($data['crc'] === crc32($name)) {
609 $name = substr($extra['data'], 5);
613 if (!$found and !empty($this->encoding
) and $this->encoding
!== 'utf-8') {
614 // Try the encoding from open().
615 $newname = @core_text
::convert($name, $this->encoding
, 'utf-8');
616 $original = core_text
::convert($newname, 'utf-8', $this->encoding
);
617 if ($original === $name) {
622 if (!$found and $file['version'] === 0x315) {
623 // This looks like OS X build in zipper.
624 $newname = fix_utf8($name);
625 if ($newname === $name) {
630 if (!$found and $file['version'] === 0) {
631 // This looks like our old borked Moodle 2.2 file.
632 $newname = fix_utf8($name);
633 if ($newname === $name) {
638 if (!$found and $encoding = get_string('oldcharset', 'langconfig')) {
639 // Last attempt - try the dos/unix encoding from current language.
641 foreach($file['extra'] as $extra) {
642 // In Windows archivers do not usually set any extras with the exception of NTFS flag in WinZip/WinRar.
644 if ($extra['id'] === 0x000a) {
650 if ($windows === true) {
651 switch(strtoupper($encoding)) {
652 case 'ISO-8859-1': $encoding = 'CP850'; break;
653 case 'ISO-8859-2': $encoding = 'CP852'; break;
654 case 'ISO-8859-4': $encoding = 'CP775'; break;
655 case 'ISO-8859-5': $encoding = 'CP866'; break;
656 case 'ISO-8859-6': $encoding = 'CP720'; break;
657 case 'ISO-8859-7': $encoding = 'CP737'; break;
658 case 'ISO-8859-8': $encoding = 'CP862'; break;
660 if ($winchar = get_string('localewincharset', 'langconfig')) {
661 // Most probably works only for zh_cn,
662 // if there are more problems we could add zipcharset to langconfig files.
663 $encoding = $winchar;
668 $newname = @core_text
::convert($name, $encoding, 'utf-8');
669 $original = core_text
::convert($newname, 'utf-8', $encoding);
671 if ($original === $name) {
676 $name = str_replace('\\', '/', $name); // no MS \ separators
677 $name = clean_param($name, PARAM_PATH
); // only safe chars
678 $name = ltrim($name, '/'); // no leading slash
680 if (function_exists('normalizer_normalize')) {
681 $name = normalizer_normalize($name, Normalizer
::FORM_C
);
684 $this->namelookup
[$file['name']] = $name;
689 * Add unicode flag to all files in archive.
691 * NOTE: single disk archives only, no ZIP64 support.
693 * @return bool success, modifies the file contents
695 protected function fix_utf8_flags() {
696 if ($this->emptyziphack
) {
700 if (!file_exists($this->archivepathname
)) {
704 // Note: the ZIP structure is described at http://www.pkware.com/documents/casestudies/APPNOTE.TXT
705 if (!$fp = fopen($this->archivepathname
, 'rb+')) {
708 if (!$filesize = filesize($this->archivepathname
)) {
712 $centralend = self
::zip_get_central_end($fp, $filesize);
714 if ($centralend === false or $centralend['disk'] !== 0 or $centralend['disk_start'] !== 0 or $centralend['offset'] === 0xFFFFFFFF) {
715 // Single disk archives only and o support for ZIP64, sorry.
720 fseek($fp, $centralend['offset']);
721 $data = fread($fp, $centralend['size']);
724 for($i=0; $i<$centralend['entries']; $i++
) {
725 $file = self
::zip_parse_file_header($data, $centralend, $pos);
726 if ($file === false) {
727 // Wrong header, sorry.
732 $newgeneral = $file['general'] |
pow(2, 11);
733 if ($newgeneral === $file['general']) {
734 // Nothing to do with this file.
738 if (preg_match('/^[a-zA-Z0-9_\-\.]*$/', $file['name'])) {
739 // ASCII file names are always ok.
742 if ($file['extra']) {
743 // Most probably not created by php zip ext, better to skip it.
746 if (fix_utf8($file['name']) !== $file['name']) {
747 // Does not look like a valid utf-8 encoded file name, skip it.
751 // Read local file header.
752 fseek($fp, $file['local_offset']);
753 $localfile = unpack('Vsig/vversion_req/vgeneral/vmethod/vmtime/vmdate/Vcrc/Vsize_compressed/Vsize/vname_length/vextra_length', fread($fp, 30));
754 if ($localfile['sig'] !== 0x04034b50) {
760 $file['local'] = $localfile;
764 foreach ($files as $file) {
765 $localfile = $file['local'];
766 // Add the unicode flag in central file header.
767 fseek($fp, $file['central_offset'] +
8);
768 if (ftell($fp) === $file['central_offset'] +
8) {
769 $newgeneral = $file['general'] |
pow(2, 11);
770 fwrite($fp, pack('v', $newgeneral));
772 // Modify local file header too.
773 fseek($fp, $file['local_offset'] +
6);
774 if (ftell($fp) === $file['local_offset'] +
6) {
775 $newgeneral = $localfile['general'] |
pow(2, 11);
776 fwrite($fp, pack('v', $newgeneral));
785 * Read end of central signature of ZIP file.
788 * @param resource $fp
789 * @param int $filesize
792 public static function zip_get_central_end($fp, $filesize) {
793 // Find end of central directory record.
794 fseek($fp, $filesize - 22);
795 $info = unpack('Vsig', fread($fp, 4));
796 if ($info['sig'] === 0x06054b50) {
797 // There is no comment.
798 fseek($fp, $filesize - 22);
799 $data = fread($fp, 22);
801 // There is some comment with 0xFF max size - that is 65557.
802 fseek($fp, $filesize - 65557);
803 $data = fread($fp, 65557);
806 $pos = strpos($data, pack('V', 0x06054b50));
807 if ($pos === false) {
808 // Borked ZIP structure!
811 $centralend = unpack('Vsig/vdisk/vdisk_start/vdisk_entries/ventries/Vsize/Voffset/vcomment_length', substr($data, $pos, 22));
812 if ($centralend['comment_length']) {
813 $centralend['comment'] = substr($data, 22, $centralend['comment_length']);
815 $centralend['comment'] = '';
824 * @param string $data
825 * @param array $centralend
826 * @param int $pos (modified)
827 * @return array|bool file info
829 public static function zip_parse_file_header($data, $centralend, &$pos) {
830 $file = unpack('Vsig/vversion/vversion_req/vgeneral/vmethod/Vmodified/Vcrc/Vsize_compressed/Vsize/vname_length/vextra_length/vcomment_length/vdisk/vattr/Vattrext/Vlocal_offset', substr($data, $pos, 46));
831 $file['central_offset'] = $centralend['offset'] +
$pos;
833 if ($file['sig'] !== 0x02014b50) {
834 // Borked ZIP structure!
837 $file['name'] = substr($data, $pos, $file['name_length']);
838 $pos = $pos +
$file['name_length'];
839 $file['extra'] = array();
840 $file['extra_data'] = '';
841 if ($file['extra_length']) {
842 $extradata = substr($data, $pos, $file['extra_length']);
843 $file['extra_data'] = $extradata;
844 while (strlen($extradata) > 4) {
845 $extra = unpack('vid/vsize', substr($extradata, 0, 4));
846 $extra['data'] = substr($extradata, 4, $extra['size']);
847 $extradata = substr($extradata, 4+
$extra['size']);
848 $file['extra'][] = $extra;
850 $pos = $pos +
$file['extra_length'];
852 if ($file['comment_length']) {
853 $pos = $pos +
$file['comment_length'];
854 $file['comment'] = substr($data, $pos, $file['comment_length']);
856 $file['comment'] = '';