]> granicus.if.org Git - php/commitdiff
Fix bug #69453 - don't try to cut empty string
authorStanislav Malyshev <stas@php.net>
Thu, 30 Apr 2015 05:04:20 +0000 (22:04 -0700)
committerStanislav Malyshev <stas@php.net>
Thu, 30 Apr 2015 05:51:43 +0000 (22:51 -0700)
ext/phar/tar.c
ext/phar/tests/bug69453.phpt [new file with mode: 0644]

index ca8eafcc8a6607d58e217273ba4e352fb1b683e3..d6d63e659905b8fd28860f83d953b773ae288b91 100644 (file)
@@ -425,7 +425,7 @@ bail:
                        entry.filename_len = i;
                        entry.filename = pestrndup(hdr->name, i, myphar->is_persistent);
 
-                       if (entry.filename[entry.filename_len - 1] == '/') {
+                       if (i > 0 && entry.filename[entry.filename_len - 1] == '/') {
                                /* some tar programs store directories with trailing slash */
                                entry.filename[entry.filename_len - 1] = '\0';
                                entry.filename_len--;
diff --git a/ext/phar/tests/bug69453.phpt b/ext/phar/tests/bug69453.phpt
new file mode 100644 (file)
index 0000000..4a2a37f
--- /dev/null
@@ -0,0 +1,21 @@
+--TEST--
+Phar: bug #69453: Memory Corruption in phar_parse_tarfile when entry filename starts with null
+--SKIPIF--
+<?php if (!extension_loaded("phar")) die("skip"); ?>
+--FILE--
+<?php
+$fname = dirname(__FILE__) . '/bug69453.tar.phar';
+try {
+$r = new Phar($fname, 0);
+} catch(UnexpectedValueException $e) {
+       echo $e;
+}
+?>
+
+==DONE==
+--EXPECTF--
+exception 'UnexpectedValueException' with message 'phar error: "%s/bug69453.tar.phar" is a corrupted tar file (checksum mismatch of file "")' in %s:%d
+Stack trace:
+#0 %s/bug69453.php(%d): Phar->__construct('%s', 0)
+#1 {main}
+==DONE==
\ No newline at end of file