mirror of
https://github.com/php/php-src.git
synced 2024-12-14 04:16:30 +08:00
afc69e46b8
* PHP-7.4: Fix memory leak in Phar::webPhar() on Windows
5111 lines
147 KiB
C
5111 lines
147 KiB
C
/*
|
|
+----------------------------------------------------------------------+
|
|
| phar php single-file executable PHP extension |
|
|
+----------------------------------------------------------------------+
|
|
| Copyright (c) The PHP Group |
|
|
+----------------------------------------------------------------------+
|
|
| This source file is subject to version 3.01 of the PHP license, |
|
|
| that is bundled with this package in the file LICENSE, and is |
|
|
| available through the world-wide-web at the following url: |
|
|
| http://www.php.net/license/3_01.txt. |
|
|
| If you did not receive a copy of the PHP license and are unable to |
|
|
| obtain it through the world-wide-web, please send a note to |
|
|
| license@php.net so we can mail you a copy immediately. |
|
|
+----------------------------------------------------------------------+
|
|
| Authors: Gregory Beaver <cellog@php.net> |
|
|
| Marcus Boerger <helly@php.net> |
|
|
+----------------------------------------------------------------------+
|
|
*/
|
|
|
|
#include "phar_internal.h"
|
|
#include "func_interceptors.h"
|
|
#include "phar_object_arginfo.h"
|
|
|
|
static zend_class_entry *phar_ce_archive;
|
|
static zend_class_entry *phar_ce_data;
|
|
static zend_class_entry *phar_ce_PharException;
|
|
static zend_class_entry *phar_ce_entry;
|
|
|
|
static int phar_file_type(HashTable *mimes, char *file, char **mime_type) /* {{{ */
|
|
{
|
|
char *ext;
|
|
phar_mime_type *mime;
|
|
ext = strrchr(file, '.');
|
|
if (!ext) {
|
|
*mime_type = "text/plain";
|
|
/* no file extension = assume text/plain */
|
|
return PHAR_MIME_OTHER;
|
|
}
|
|
++ext;
|
|
if (NULL == (mime = zend_hash_str_find_ptr(mimes, ext, strlen(ext)))) {
|
|
*mime_type = "application/octet-stream";
|
|
return PHAR_MIME_OTHER;
|
|
}
|
|
*mime_type = mime->mime;
|
|
return mime->type;
|
|
}
|
|
/* }}} */
|
|
|
|
static void phar_mung_server_vars(char *fname, char *entry, size_t entry_len, char *basename, size_t request_uri_len) /* {{{ */
|
|
{
|
|
HashTable *_SERVER;
|
|
zval *stuff;
|
|
char *path_info;
|
|
size_t basename_len = strlen(basename);
|
|
size_t code;
|
|
zval temp;
|
|
|
|
/* "tweak" $_SERVER variables requested in earlier call to Phar::mungServer() */
|
|
if (Z_TYPE(PG(http_globals)[TRACK_VARS_SERVER]) == IS_UNDEF) {
|
|
return;
|
|
}
|
|
|
|
_SERVER = Z_ARRVAL(PG(http_globals)[TRACK_VARS_SERVER]);
|
|
|
|
/* PATH_INFO and PATH_TRANSLATED should always be munged */
|
|
if (NULL != (stuff = zend_hash_str_find(_SERVER, "PATH_INFO", sizeof("PATH_INFO")-1))) {
|
|
path_info = Z_STRVAL_P(stuff);
|
|
code = Z_STRLEN_P(stuff);
|
|
if (code > (size_t)entry_len && !memcmp(path_info, entry, entry_len)) {
|
|
ZVAL_STR(&temp, Z_STR_P(stuff));
|
|
ZVAL_STRINGL(stuff, path_info + entry_len, request_uri_len);
|
|
zend_hash_str_update(_SERVER, "PHAR_PATH_INFO", sizeof("PHAR_PATH_INFO")-1, &temp);
|
|
}
|
|
}
|
|
|
|
if (NULL != (stuff = zend_hash_str_find(_SERVER, "PATH_TRANSLATED", sizeof("PATH_TRANSLATED")-1))) {
|
|
zend_string *str = strpprintf(4096, "phar://%s%s", fname, entry);
|
|
|
|
ZVAL_STR(&temp, Z_STR_P(stuff));
|
|
ZVAL_NEW_STR(stuff, str);
|
|
|
|
zend_hash_str_update(_SERVER, "PHAR_PATH_TRANSLATED", sizeof("PHAR_PATH_TRANSLATED")-1, &temp);
|
|
}
|
|
|
|
if (!PHAR_G(phar_SERVER_mung_list)) {
|
|
return;
|
|
}
|
|
|
|
if (PHAR_G(phar_SERVER_mung_list) & PHAR_MUNG_REQUEST_URI) {
|
|
if (NULL != (stuff = zend_hash_str_find(_SERVER, "REQUEST_URI", sizeof("REQUEST_URI")-1))) {
|
|
path_info = Z_STRVAL_P(stuff);
|
|
code = Z_STRLEN_P(stuff);
|
|
if (code > basename_len && !memcmp(path_info, basename, basename_len)) {
|
|
ZVAL_STR(&temp, Z_STR_P(stuff));
|
|
ZVAL_STRINGL(stuff, path_info + basename_len, code - basename_len);
|
|
zend_hash_str_update(_SERVER, "PHAR_REQUEST_URI", sizeof("PHAR_REQUEST_URI")-1, &temp);
|
|
}
|
|
}
|
|
}
|
|
|
|
if (PHAR_G(phar_SERVER_mung_list) & PHAR_MUNG_PHP_SELF) {
|
|
if (NULL != (stuff = zend_hash_str_find(_SERVER, "PHP_SELF", sizeof("PHP_SELF")-1))) {
|
|
path_info = Z_STRVAL_P(stuff);
|
|
code = Z_STRLEN_P(stuff);
|
|
|
|
if (code > basename_len && !memcmp(path_info, basename, basename_len)) {
|
|
ZVAL_STR(&temp, Z_STR_P(stuff));
|
|
ZVAL_STRINGL(stuff, path_info + basename_len, code - basename_len);
|
|
zend_hash_str_update(_SERVER, "PHAR_PHP_SELF", sizeof("PHAR_PHP_SELF")-1, &temp);
|
|
}
|
|
}
|
|
}
|
|
|
|
if (PHAR_G(phar_SERVER_mung_list) & PHAR_MUNG_SCRIPT_NAME) {
|
|
if (NULL != (stuff = zend_hash_str_find(_SERVER, "SCRIPT_NAME", sizeof("SCRIPT_NAME")-1))) {
|
|
ZVAL_STR(&temp, Z_STR_P(stuff));
|
|
ZVAL_STRINGL(stuff, entry, entry_len);
|
|
zend_hash_str_update(_SERVER, "PHAR_SCRIPT_NAME", sizeof("PHAR_SCRIPT_NAME")-1, &temp);
|
|
}
|
|
}
|
|
|
|
if (PHAR_G(phar_SERVER_mung_list) & PHAR_MUNG_SCRIPT_FILENAME) {
|
|
if (NULL != (stuff = zend_hash_str_find(_SERVER, "SCRIPT_FILENAME", sizeof("SCRIPT_FILENAME")-1))) {
|
|
zend_string *str = strpprintf(4096, "phar://%s%s", fname, entry);
|
|
|
|
ZVAL_STR(&temp, Z_STR_P(stuff));
|
|
ZVAL_NEW_STR(stuff, str);
|
|
|
|
zend_hash_str_update(_SERVER, "PHAR_SCRIPT_FILENAME", sizeof("PHAR_SCRIPT_FILENAME")-1, &temp);
|
|
}
|
|
}
|
|
}
|
|
/* }}} */
|
|
|
|
static int phar_file_action(phar_archive_data *phar, phar_entry_info *info, char *mime_type, int code, char *entry, size_t entry_len, char *arch, char *basename, char *ru, size_t ru_len) /* {{{ */
|
|
{
|
|
char *name = NULL, buf[8192];
|
|
const char *cwd;
|
|
zend_syntax_highlighter_ini syntax_highlighter_ini;
|
|
sapi_header_line ctr = {0};
|
|
size_t got;
|
|
zval dummy;
|
|
size_t name_len;
|
|
zend_file_handle file_handle;
|
|
zend_op_array *new_op_array;
|
|
zval result;
|
|
php_stream *fp;
|
|
zend_off_t position;
|
|
|
|
switch (code) {
|
|
case PHAR_MIME_PHPS:
|
|
efree(basename);
|
|
/* highlight source */
|
|
if (entry[0] == '/') {
|
|
spprintf(&name, 4096, "phar://%s%s", arch, entry);
|
|
} else {
|
|
spprintf(&name, 4096, "phar://%s/%s", arch, entry);
|
|
}
|
|
php_get_highlight_struct(&syntax_highlighter_ini);
|
|
|
|
highlight_file(name, &syntax_highlighter_ini);
|
|
|
|
efree(name);
|
|
#ifdef PHP_WIN32
|
|
efree(arch);
|
|
#endif
|
|
zend_bailout();
|
|
case PHAR_MIME_OTHER:
|
|
/* send headers, output file contents */
|
|
efree(basename);
|
|
ctr.line_len = spprintf((char **) &(ctr.line), 0, "Content-type: %s", mime_type);
|
|
sapi_header_op(SAPI_HEADER_REPLACE, &ctr);
|
|
efree((void *) ctr.line);
|
|
ctr.line_len = spprintf((char **) &(ctr.line), 0, "Content-length: %u", info->uncompressed_filesize);
|
|
sapi_header_op(SAPI_HEADER_REPLACE, &ctr);
|
|
efree((void *) ctr.line);
|
|
|
|
if (FAILURE == sapi_send_headers()) {
|
|
zend_bailout();
|
|
}
|
|
|
|
/* prepare to output */
|
|
fp = phar_get_efp(info, 1);
|
|
|
|
if (!fp) {
|
|
char *error;
|
|
if (!phar_open_jit(phar, info, &error)) {
|
|
if (error) {
|
|
zend_throw_exception_ex(phar_ce_PharException, 0, "%s", error);
|
|
efree(error);
|
|
}
|
|
return -1;
|
|
}
|
|
fp = phar_get_efp(info, 1);
|
|
}
|
|
position = 0;
|
|
phar_seek_efp(info, 0, SEEK_SET, 0, 1);
|
|
|
|
do {
|
|
got = php_stream_read(fp, buf, MIN(8192, info->uncompressed_filesize - position));
|
|
if (got > 0) {
|
|
PHPWRITE(buf, got);
|
|
position += got;
|
|
if (position == (zend_off_t) info->uncompressed_filesize) {
|
|
break;
|
|
}
|
|
}
|
|
} while (1);
|
|
|
|
zend_bailout();
|
|
case PHAR_MIME_PHP:
|
|
if (basename) {
|
|
phar_mung_server_vars(arch, entry, entry_len, basename, ru_len);
|
|
efree(basename);
|
|
}
|
|
|
|
if (entry[0] == '/') {
|
|
name_len = spprintf(&name, 4096, "phar://%s%s", arch, entry);
|
|
} else {
|
|
name_len = spprintf(&name, 4096, "phar://%s/%s", arch, entry);
|
|
}
|
|
|
|
zend_stream_init_filename(&file_handle, name);
|
|
|
|
PHAR_G(cwd) = NULL;
|
|
PHAR_G(cwd_len) = 0;
|
|
|
|
ZVAL_NULL(&dummy);
|
|
if (zend_hash_str_add(&EG(included_files), name, name_len, &dummy) != NULL) {
|
|
if ((cwd = zend_memrchr(entry, '/', entry_len))) {
|
|
PHAR_G(cwd_init) = 1;
|
|
if (entry == cwd) {
|
|
/* root directory */
|
|
PHAR_G(cwd_len) = 0;
|
|
PHAR_G(cwd) = NULL;
|
|
} else if (entry[0] == '/') {
|
|
PHAR_G(cwd_len) = (cwd - (entry + 1));
|
|
PHAR_G(cwd) = estrndup(entry + 1, PHAR_G(cwd_len));
|
|
} else {
|
|
PHAR_G(cwd_len) = (cwd - entry);
|
|
PHAR_G(cwd) = estrndup(entry, PHAR_G(cwd_len));
|
|
}
|
|
}
|
|
|
|
new_op_array = zend_compile_file(&file_handle, ZEND_REQUIRE);
|
|
|
|
if (!new_op_array) {
|
|
zend_hash_str_del(&EG(included_files), name, name_len);
|
|
}
|
|
|
|
zend_destroy_file_handle(&file_handle);
|
|
|
|
} else {
|
|
efree(name);
|
|
new_op_array = NULL;
|
|
}
|
|
#ifdef PHP_WIN32
|
|
efree(arch);
|
|
#endif
|
|
if (new_op_array) {
|
|
ZVAL_UNDEF(&result);
|
|
|
|
zend_try {
|
|
zend_execute(new_op_array, &result);
|
|
if (PHAR_G(cwd)) {
|
|
efree(PHAR_G(cwd));
|
|
PHAR_G(cwd) = NULL;
|
|
PHAR_G(cwd_len) = 0;
|
|
}
|
|
|
|
PHAR_G(cwd_init) = 0;
|
|
efree(name);
|
|
destroy_op_array(new_op_array);
|
|
efree(new_op_array);
|
|
zval_ptr_dtor(&result);
|
|
} zend_catch {
|
|
if (PHAR_G(cwd)) {
|
|
efree(PHAR_G(cwd));
|
|
PHAR_G(cwd) = NULL;
|
|
PHAR_G(cwd_len) = 0;
|
|
}
|
|
|
|
PHAR_G(cwd_init) = 0;
|
|
efree(name);
|
|
} zend_end_try();
|
|
|
|
zend_bailout();
|
|
}
|
|
|
|
return PHAR_MIME_PHP;
|
|
}
|
|
return -1;
|
|
}
|
|
/* }}} */
|
|
|
|
static void phar_do_403(char *entry, size_t entry_len) /* {{{ */
|
|
{
|
|
sapi_header_line ctr = {0};
|
|
|
|
ctr.response_code = 403;
|
|
ctr.line_len = sizeof("HTTP/1.0 403 Access Denied")-1;
|
|
ctr.line = "HTTP/1.0 403 Access Denied";
|
|
sapi_header_op(SAPI_HEADER_REPLACE, &ctr);
|
|
sapi_send_headers();
|
|
PHPWRITE("<html>\n <head>\n <title>Access Denied</title>\n </head>\n <body>\n <h1>403 - File ", sizeof("<html>\n <head>\n <title>Access Denied</title>\n </head>\n <body>\n <h1>403 - File ") - 1);
|
|
PHPWRITE("Access Denied</h1>\n </body>\n</html>", sizeof("Access Denied</h1>\n </body>\n</html>") - 1);
|
|
}
|
|
/* }}} */
|
|
|
|
static void phar_do_404(phar_archive_data *phar, char *fname, size_t fname_len, char *f404, size_t f404_len, char *entry, size_t entry_len) /* {{{ */
|
|
{
|
|
sapi_header_line ctr = {0};
|
|
phar_entry_info *info;
|
|
|
|
if (phar && f404_len) {
|
|
info = phar_get_entry_info(phar, f404, f404_len, NULL, 1);
|
|
|
|
if (info) {
|
|
phar_file_action(phar, info, "text/html", PHAR_MIME_PHP, f404, f404_len, fname, NULL, NULL, 0);
|
|
return;
|
|
}
|
|
}
|
|
|
|
ctr.response_code = 404;
|
|
ctr.line_len = sizeof("HTTP/1.0 404 Not Found")-1;
|
|
ctr.line = "HTTP/1.0 404 Not Found";
|
|
sapi_header_op(SAPI_HEADER_REPLACE, &ctr);
|
|
sapi_send_headers();
|
|
PHPWRITE("<html>\n <head>\n <title>File Not Found</title>\n </head>\n <body>\n <h1>404 - File ", sizeof("<html>\n <head>\n <title>File Not Found</title>\n </head>\n <body>\n <h1>404 - File ") - 1);
|
|
PHPWRITE("Not Found</h1>\n </body>\n</html>", sizeof("Not Found</h1>\n </body>\n</html>") - 1);
|
|
}
|
|
/* }}} */
|
|
|
|
/* post-process REQUEST_URI and retrieve the actual request URI. This is for
|
|
cases like http://localhost/blah.phar/path/to/file.php/extra/stuff
|
|
which calls "blah.phar" file "path/to/file.php" with PATH_INFO "/extra/stuff" */
|
|
static void phar_postprocess_ru_web(char *fname, size_t fname_len, char **entry, size_t *entry_len, char **ru, size_t *ru_len) /* {{{ */
|
|
{
|
|
char *e = *entry + 1, *u = NULL, *u1 = NULL, *saveu = NULL;
|
|
size_t e_len = *entry_len - 1, u_len = 0;
|
|
phar_archive_data *pphar;
|
|
|
|
/* we already know we can retrieve the phar if we reach here */
|
|
pphar = zend_hash_str_find_ptr(&(PHAR_G(phar_fname_map)), fname, fname_len);
|
|
|
|
if (!pphar && PHAR_G(manifest_cached)) {
|
|
pphar = zend_hash_str_find_ptr(&cached_phars, fname, fname_len);
|
|
}
|
|
|
|
do {
|
|
if (zend_hash_str_exists(&(pphar->manifest), e, e_len)) {
|
|
if (u) {
|
|
u[0] = '/';
|
|
*ru = estrndup(u, u_len+1);
|
|
++u_len;
|
|
u[0] = '\0';
|
|
} else {
|
|
*ru = NULL;
|
|
}
|
|
*ru_len = u_len;
|
|
*entry_len = e_len + 1;
|
|
return;
|
|
}
|
|
|
|
if (u) {
|
|
u1 = strrchr(e, '/');
|
|
u[0] = '/';
|
|
saveu = u;
|
|
e_len += u_len + 1;
|
|
u = u1;
|
|
if (!u) {
|
|
return;
|
|
}
|
|
} else {
|
|
u = strrchr(e, '/');
|
|
if (!u) {
|
|
if (saveu) {
|
|
saveu[0] = '/';
|
|
}
|
|
return;
|
|
}
|
|
}
|
|
|
|
u[0] = '\0';
|
|
u_len = strlen(u + 1);
|
|
e_len -= u_len + 1;
|
|
} while (1);
|
|
}
|
|
/* }}} */
|
|
|
|
/* {{{ return the name of the currently running phar archive. If the optional parameter
|
|
* is set to true, return the phar:// URL to the currently running phar
|
|
*/
|
|
PHP_METHOD(Phar, running)
|
|
{
|
|
char *fname, *arch, *entry;
|
|
size_t fname_len, arch_len, entry_len;
|
|
zend_bool retphar = 1;
|
|
|
|
if (zend_parse_parameters(ZEND_NUM_ARGS(), "|b", &retphar) == FAILURE) {
|
|
RETURN_THROWS();
|
|
}
|
|
|
|
fname = (char*)zend_get_executed_filename();
|
|
fname_len = strlen(fname);
|
|
|
|
if (fname_len > 7 && !memcmp(fname, "phar://", 7) && SUCCESS == phar_split_fname(fname, fname_len, &arch, &arch_len, &entry, &entry_len, 2, 0)) {
|
|
efree(entry);
|
|
if (retphar) {
|
|
RETVAL_STRINGL(fname, arch_len + 7);
|
|
efree(arch);
|
|
return;
|
|
} else {
|
|
// TODO: avoid reallocation ???
|
|
RETVAL_STRINGL(arch, arch_len);
|
|
efree(arch);
|
|
return;
|
|
}
|
|
}
|
|
|
|
RETURN_EMPTY_STRING();
|
|
}
|
|
/* }}} */
|
|
|
|
/* {{{ mount an external file or path to a location within the phar. This maps
|
|
* an external file or directory to a location within the phar archive, allowing
|
|
* reference to an external location as if it were within the phar archive. This
|
|
* is useful for writable temp files like databases
|
|
*/
|
|
PHP_METHOD(Phar, mount)
|
|
{
|
|
char *fname, *arch = NULL, *entry = NULL, *path, *actual;
|
|
size_t fname_len, arch_len, entry_len;
|
|
size_t path_len, actual_len;
|
|
phar_archive_data *pphar;
|
|
#ifdef PHP_WIN32
|
|
char *save_fname;
|
|
ALLOCA_FLAG(fname_use_heap)
|
|
#endif
|
|
|
|
if (zend_parse_parameters(ZEND_NUM_ARGS(), "pp", &path, &path_len, &actual, &actual_len) == FAILURE) {
|
|
RETURN_THROWS();
|
|
}
|
|
|
|
fname = (char*)zend_get_executed_filename();
|
|
fname_len = strlen(fname);
|
|
|
|
#ifdef PHP_WIN32
|
|
save_fname = fname;
|
|
if (memchr(fname, '\\', fname_len)) {
|
|
fname = do_alloca(fname_len + 1, fname_use_heap);
|
|
memcpy(fname, save_fname, fname_len);
|
|
fname[fname_len] = '\0';
|
|
phar_unixify_path_separators(fname, fname_len);
|
|
}
|
|
#endif
|
|
|
|
if (fname_len > 7 && !memcmp(fname, "phar://", 7) && SUCCESS == phar_split_fname(fname, fname_len, &arch, &arch_len, &entry, &entry_len, 2, 0)) {
|
|
efree(entry);
|
|
entry = NULL;
|
|
|
|
if (path_len > 7 && !memcmp(path, "phar://", 7)) {
|
|
zend_throw_exception_ex(phar_ce_PharException, 0, "Can only mount internal paths within a phar archive, use a relative path instead of \"%s\"", path);
|
|
efree(arch);
|
|
goto finish;
|
|
}
|
|
carry_on2:
|
|
if (NULL == (pphar = zend_hash_str_find_ptr(&(PHAR_G(phar_fname_map)), arch, arch_len))) {
|
|
if (PHAR_G(manifest_cached) && NULL != (pphar = zend_hash_str_find_ptr(&cached_phars, arch, arch_len))) {
|
|
if (SUCCESS == phar_copy_on_write(&pphar)) {
|
|
goto carry_on;
|
|
}
|
|
}
|
|
|
|
zend_throw_exception_ex(phar_ce_PharException, 0, "%s is not a phar archive, cannot mount", arch);
|
|
|
|
if (arch) {
|
|
efree(arch);
|
|
}
|
|
|
|
goto finish;
|
|
}
|
|
carry_on:
|
|
if (SUCCESS != phar_mount_entry(pphar, actual, actual_len, path, path_len)) {
|
|
zend_throw_exception_ex(phar_ce_PharException, 0, "Mounting of %s to %s within phar %s failed", path, actual, arch);
|
|
if (path && path == entry) {
|
|
efree(entry);
|
|
}
|
|
|
|
if (arch) {
|
|
efree(arch);
|
|
}
|
|
|
|
goto finish;
|
|
}
|
|
|
|
if (entry && path && path == entry) {
|
|
efree(entry);
|
|
}
|
|
|
|
if (arch) {
|
|
efree(arch);
|
|
}
|
|
|
|
goto finish;
|
|
} else if (HT_IS_INITIALIZED(&PHAR_G(phar_fname_map)) && NULL != (pphar = zend_hash_str_find_ptr(&(PHAR_G(phar_fname_map)), fname, fname_len))) {
|
|
goto carry_on;
|
|
} else if (PHAR_G(manifest_cached) && NULL != (pphar = zend_hash_str_find_ptr(&cached_phars, fname, fname_len))) {
|
|
if (SUCCESS == phar_copy_on_write(&pphar)) {
|
|
goto carry_on;
|
|
}
|
|
|
|
goto carry_on;
|
|
} else if (SUCCESS == phar_split_fname(path, path_len, &arch, &arch_len, &entry, &entry_len, 2, 0)) {
|
|
path = entry;
|
|
path_len = entry_len;
|
|
goto carry_on2;
|
|
}
|
|
|
|
zend_throw_exception_ex(phar_ce_PharException, 0, "Mounting of %s to %s failed", path, actual);
|
|
|
|
finish: ;
|
|
#ifdef PHP_WIN32
|
|
if (fname != save_fname) {
|
|
free_alloca(fname, fname_use_heap);
|
|
fname = save_fname;
|
|
}
|
|
#endif
|
|
}
|
|
/* }}} */
|
|
|
|
/* {{{ mapPhar for web-based phars. Reads the currently executed file (a phar)
|
|
* and registers its manifest. When executed in the CLI or CGI command-line sapi,
|
|
* this works exactly like mapPhar(). When executed by a web-based sapi, this
|
|
* reads $_SERVER['REQUEST_URI'] (the actual original value) and parses out the
|
|
* intended internal file.
|
|
*/
|
|
PHP_METHOD(Phar, webPhar)
|
|
{
|
|
zval *mimeoverride = NULL;
|
|
zend_fcall_info rewrite_fci = {0};
|
|
zend_fcall_info_cache rewrite_fcc;
|
|
char *alias = NULL, *error, *index_php = NULL, *f404 = NULL, *ru = NULL;
|
|
size_t alias_len = 0, f404_len = 0, free_pathinfo = 0;
|
|
size_t ru_len = 0;
|
|
char *fname, *path_info, *mime_type = NULL, *entry, *pt;
|
|
const char *basename;
|
|
size_t fname_len, index_php_len = 0;
|
|
size_t entry_len;
|
|
int code, not_cgi;
|
|
phar_archive_data *phar = NULL;
|
|
phar_entry_info *info = NULL;
|
|
size_t sapi_mod_name_len = strlen(sapi_module.name);
|
|
|
|
if (zend_parse_parameters(ZEND_NUM_ARGS(), "|s!s!saf!", &alias, &alias_len, &index_php, &index_php_len, &f404, &f404_len, &mimeoverride, &rewrite_fci, &rewrite_fcc) == FAILURE) {
|
|
RETURN_THROWS();
|
|
}
|
|
|
|
phar_request_initialize();
|
|
fname = (char*)zend_get_executed_filename();
|
|
fname_len = strlen(fname);
|
|
|
|
if (phar_open_executed_filename(alias, alias_len, &error) != SUCCESS) {
|
|
if (error) {
|
|
zend_throw_exception_ex(phar_ce_PharException, 0, "%s", error);
|
|
efree(error);
|
|
}
|
|
return;
|
|
}
|
|
|
|
/* retrieve requested file within phar */
|
|
if (!(SG(request_info).request_method
|
|
&& SG(request_info).request_uri
|
|
&& (!strcmp(SG(request_info).request_method, "GET")
|
|
|| !strcmp(SG(request_info).request_method, "POST")
|
|
|| !strcmp(SG(request_info).request_method, "DELETE")
|
|
|| !strcmp(SG(request_info).request_method, "HEAD")
|
|
|| !strcmp(SG(request_info).request_method, "OPTIONS")
|
|
|| !strcmp(SG(request_info).request_method, "PATCH")
|
|
|| !strcmp(SG(request_info).request_method, "PUT")
|
|
)
|
|
)
|
|
) {
|
|
return;
|
|
}
|
|
|
|
#ifdef PHP_WIN32
|
|
if (memchr(fname, '\\', fname_len)) {
|
|
fname = estrndup(fname, fname_len);
|
|
phar_unixify_path_separators(fname, fname_len);
|
|
}
|
|
#endif
|
|
basename = zend_memrchr(fname, '/', fname_len);
|
|
|
|
if (!basename) {
|
|
basename = fname;
|
|
} else {
|
|
++basename;
|
|
}
|
|
|
|
if ((sapi_mod_name_len == sizeof("cgi-fcgi") - 1 && !strncmp(sapi_module.name, "cgi-fcgi", sizeof("cgi-fcgi") - 1))
|
|
|| (sapi_mod_name_len == sizeof("fpm-fcgi") - 1 && !strncmp(sapi_module.name, "fpm-fcgi", sizeof("fpm-fcgi") - 1))
|
|
|| (sapi_mod_name_len == sizeof("cgi") - 1 && !strncmp(sapi_module.name, "cgi", sizeof("cgi") - 1))) {
|
|
|
|
if (Z_TYPE(PG(http_globals)[TRACK_VARS_SERVER]) != IS_UNDEF) {
|
|
HashTable *_server = Z_ARRVAL(PG(http_globals)[TRACK_VARS_SERVER]);
|
|
zval *z_script_name, *z_path_info;
|
|
|
|
if (NULL == (z_script_name = zend_hash_str_find(_server, "SCRIPT_NAME", sizeof("SCRIPT_NAME")-1)) ||
|
|
IS_STRING != Z_TYPE_P(z_script_name) ||
|
|
!strstr(Z_STRVAL_P(z_script_name), basename)) {
|
|
goto finish;
|
|
}
|
|
|
|
if (NULL != (z_path_info = zend_hash_str_find(_server, "PATH_INFO", sizeof("PATH_INFO")-1)) &&
|
|
IS_STRING == Z_TYPE_P(z_path_info)) {
|
|
entry_len = Z_STRLEN_P(z_path_info);
|
|
entry = estrndup(Z_STRVAL_P(z_path_info), entry_len);
|
|
path_info = emalloc(Z_STRLEN_P(z_script_name) + entry_len + 1);
|
|
memcpy(path_info, Z_STRVAL_P(z_script_name), Z_STRLEN_P(z_script_name));
|
|
memcpy(path_info + Z_STRLEN_P(z_script_name), entry, entry_len + 1);
|
|
free_pathinfo = 1;
|
|
} else {
|
|
entry_len = 0;
|
|
entry = estrndup("", 0);
|
|
path_info = Z_STRVAL_P(z_script_name);
|
|
}
|
|
|
|
pt = estrndup(Z_STRVAL_P(z_script_name), Z_STRLEN_P(z_script_name));
|
|
|
|
} else {
|
|
char *testit;
|
|
|
|
testit = sapi_getenv("SCRIPT_NAME", sizeof("SCRIPT_NAME")-1);
|
|
if (!(pt = strstr(testit, basename))) {
|
|
efree(testit);
|
|
goto finish;
|
|
}
|
|
|
|
path_info = sapi_getenv("PATH_INFO", sizeof("PATH_INFO")-1);
|
|
|
|
if (path_info) {
|
|
entry = path_info;
|
|
entry_len = strlen(entry);
|
|
spprintf(&path_info, 0, "%s%s", testit, path_info);
|
|
free_pathinfo = 1;
|
|
} else {
|
|
path_info = testit;
|
|
free_pathinfo = 1;
|
|
entry = estrndup("", 0);
|
|
entry_len = 0;
|
|
}
|
|
|
|
pt = estrndup(testit, (pt - testit) + (fname_len - (basename - fname)));
|
|
}
|
|
not_cgi = 0;
|
|
} else {
|
|
path_info = SG(request_info).request_uri;
|
|
|
|
if (!(pt = strstr(path_info, basename))) {
|
|
/* this can happen with rewrite rules - and we have no idea what to do then, so return */
|
|
goto finish;
|
|
}
|
|
|
|
entry_len = strlen(path_info);
|
|
entry_len -= (pt - path_info) + (fname_len - (basename - fname));
|
|
entry = estrndup(pt + (fname_len - (basename - fname)), entry_len);
|
|
|
|
pt = estrndup(path_info, (pt - path_info) + (fname_len - (basename - fname)));
|
|
not_cgi = 1;
|
|
}
|
|
|
|
if (ZEND_FCI_INITIALIZED(rewrite_fci)) {
|
|
zval params, retval;
|
|
|
|
ZVAL_STRINGL(¶ms, entry, entry_len);
|
|
|
|
rewrite_fci.param_count = 1;
|
|
rewrite_fci.params = ¶ms;
|
|
rewrite_fci.retval = &retval;
|
|
|
|
if (FAILURE == zend_call_function(&rewrite_fci, &rewrite_fcc)) {
|
|
if (!EG(exception)) {
|
|
zend_throw_exception_ex(phar_ce_PharException, 0, "phar error: failed to call rewrite callback");
|
|
}
|
|
goto cleanup_fail;
|
|
}
|
|
|
|
if (Z_TYPE_P(rewrite_fci.retval) == IS_UNDEF || Z_TYPE(retval) == IS_UNDEF) {
|
|
zend_throw_exception_ex(phar_ce_PharException, 0, "phar error: rewrite callback must return a string or false");
|
|
goto cleanup_fail;
|
|
}
|
|
|
|
switch (Z_TYPE(retval)) {
|
|
case IS_STRING:
|
|
efree(entry);
|
|
entry = estrndup(Z_STRVAL_P(rewrite_fci.retval), Z_STRLEN_P(rewrite_fci.retval));
|
|
entry_len = Z_STRLEN_P(rewrite_fci.retval);
|
|
break;
|
|
case IS_TRUE:
|
|
case IS_FALSE:
|
|
phar_do_403(entry, entry_len);
|
|
|
|
if (free_pathinfo) {
|
|
efree(path_info);
|
|
}
|
|
efree(pt);
|
|
|
|
zend_bailout();
|
|
default:
|
|
zend_throw_exception_ex(phar_ce_PharException, 0, "phar error: rewrite callback must return a string or false");
|
|
|
|
cleanup_fail:
|
|
zval_ptr_dtor(¶ms);
|
|
if (free_pathinfo) {
|
|
efree(path_info);
|
|
}
|
|
efree(entry);
|
|
efree(pt);
|
|
#ifdef PHP_WIN32
|
|
efree(fname);
|
|
#endif
|
|
RETURN_THROWS();
|
|
}
|
|
}
|
|
|
|
if (entry_len) {
|
|
phar_postprocess_ru_web(fname, fname_len, &entry, &entry_len, &ru, &ru_len);
|
|
}
|
|
|
|
if (!entry_len || (entry_len == 1 && entry[0] == '/')) {
|
|
efree(entry);
|
|
/* direct request */
|
|
if (index_php_len) {
|
|
entry = index_php;
|
|
entry_len = index_php_len;
|
|
if (entry[0] != '/') {
|
|
spprintf(&entry, 0, "/%s", index_php);
|
|
++entry_len;
|
|
}
|
|
} else {
|
|
/* assume "index.php" is starting point */
|
|
entry = estrndup("/index.php", sizeof("/index.php"));
|
|
entry_len = sizeof("/index.php")-1;
|
|
}
|
|
|
|
if (FAILURE == phar_get_archive(&phar, fname, fname_len, NULL, 0, NULL) ||
|
|
(info = phar_get_entry_info(phar, entry, entry_len, NULL, 0)) == NULL) {
|
|
phar_do_404(phar, fname, fname_len, f404, f404_len, entry, entry_len);
|
|
|
|
if (free_pathinfo) {
|
|
efree(path_info);
|
|
}
|
|
|
|
zend_bailout();
|
|
} else {
|
|
char *tmp = NULL, sa = '\0';
|
|
sapi_header_line ctr = {0};
|
|
ctr.response_code = 301;
|
|
ctr.line_len = sizeof("HTTP/1.1 301 Moved Permanently")-1;
|
|
ctr.line = "HTTP/1.1 301 Moved Permanently";
|
|
sapi_header_op(SAPI_HEADER_REPLACE, &ctr);
|
|
|
|
if (not_cgi) {
|
|
tmp = strstr(path_info, basename) + fname_len;
|
|
sa = *tmp;
|
|
*tmp = '\0';
|
|
}
|
|
|
|
ctr.response_code = 0;
|
|
|
|
if (path_info[strlen(path_info)-1] == '/') {
|
|
ctr.line_len = spprintf((char **) &(ctr.line), 4096, "Location: %s%s", path_info, entry + 1);
|
|
} else {
|
|
ctr.line_len = spprintf((char **) &(ctr.line), 4096, "Location: %s%s", path_info, entry);
|
|
}
|
|
|
|
if (not_cgi) {
|
|
*tmp = sa;
|
|
}
|
|
|
|
if (free_pathinfo) {
|
|
efree(path_info);
|
|
}
|
|
|
|
sapi_header_op(SAPI_HEADER_REPLACE, &ctr);
|
|
sapi_send_headers();
|
|
efree((void *) ctr.line);
|
|
zend_bailout();
|
|
}
|
|
}
|
|
|
|
if (FAILURE == phar_get_archive(&phar, fname, fname_len, NULL, 0, NULL) ||
|
|
(info = phar_get_entry_info(phar, entry, entry_len, NULL, 0)) == NULL) {
|
|
phar_do_404(phar, fname, fname_len, f404, f404_len, entry, entry_len);
|
|
zend_bailout();
|
|
}
|
|
|
|
if (mimeoverride && zend_hash_num_elements(Z_ARRVAL_P(mimeoverride))) {
|
|
const char *ext = zend_memrchr(entry, '.', entry_len);
|
|
zval *val;
|
|
|
|
if (ext) {
|
|
++ext;
|
|
|
|
if (NULL != (val = zend_hash_str_find(Z_ARRVAL_P(mimeoverride), ext, strlen(ext)))) {
|
|
switch (Z_TYPE_P(val)) {
|
|
case IS_LONG:
|
|
if (Z_LVAL_P(val) == PHAR_MIME_PHP || Z_LVAL_P(val) == PHAR_MIME_PHPS) {
|
|
mime_type = "";
|
|
code = Z_LVAL_P(val);
|
|
} else {
|
|
zend_throw_exception_ex(phar_ce_PharException, 0, "Unknown mime type specifier used, only Phar::PHP, Phar::PHPS and a mime type string are allowed");
|
|
if (free_pathinfo) {
|
|
efree(path_info);
|
|
}
|
|
efree(pt);
|
|
efree(entry);
|
|
#ifdef PHP_WIN32
|
|
efree(fname);
|
|
#endif
|
|
RETURN_THROWS();
|
|
}
|
|
break;
|
|
case IS_STRING:
|
|
mime_type = Z_STRVAL_P(val);
|
|
code = PHAR_MIME_OTHER;
|
|
break;
|
|
default:
|
|
zend_throw_exception_ex(phar_ce_PharException, 0, "Unknown mime type specifier used (not a string or int), only Phar::PHP, Phar::PHPS and a mime type string are allowed");
|
|
if (free_pathinfo) {
|
|
efree(path_info);
|
|
}
|
|
efree(pt);
|
|
efree(entry);
|
|
#ifdef PHP_WIN32
|
|
efree(fname);
|
|
#endif
|
|
RETURN_THROWS();
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
if (!mime_type) {
|
|
code = phar_file_type(&PHAR_G(mime_types), entry, &mime_type);
|
|
}
|
|
phar_file_action(phar, info, mime_type, code, entry, entry_len, fname, pt, ru, ru_len);
|
|
|
|
finish: ;
|
|
#ifdef PHP_WIN32
|
|
efree(fname);
|
|
#endif
|
|
}
|
|
/* }}} */
|
|
|
|
/* {{{ Defines a list of up to 4 $_SERVER variables that should be modified for execution
|
|
* to mask the presence of the phar archive. This should be used in conjunction with
|
|
* Phar::webPhar(), and has no effect otherwise
|
|
* SCRIPT_NAME, PHP_SELF, REQUEST_URI and SCRIPT_FILENAME
|
|
*/
|
|
PHP_METHOD(Phar, mungServer)
|
|
{
|
|
zval *mungvalues, *data;
|
|
|
|
if (zend_parse_parameters(ZEND_NUM_ARGS(), "a", &mungvalues) == FAILURE) {
|
|
RETURN_THROWS();
|
|
}
|
|
|
|
if (!zend_hash_num_elements(Z_ARRVAL_P(mungvalues))) {
|
|
zend_throw_exception_ex(phar_ce_PharException, 0, "No values passed to Phar::mungServer(), expecting an array of any of these strings: PHP_SELF, REQUEST_URI, SCRIPT_FILENAME, SCRIPT_NAME");
|
|
RETURN_THROWS();
|
|
}
|
|
|
|
if (zend_hash_num_elements(Z_ARRVAL_P(mungvalues)) > 4) {
|
|
zend_throw_exception_ex(phar_ce_PharException, 0, "Too many values passed to Phar::mungServer(), expecting an array of any of these strings: PHP_SELF, REQUEST_URI, SCRIPT_FILENAME, SCRIPT_NAME");
|
|
RETURN_THROWS();
|
|
}
|
|
|
|
phar_request_initialize();
|
|
|
|
ZEND_HASH_FOREACH_VAL(Z_ARRVAL_P(mungvalues), data) {
|
|
|
|
if (Z_TYPE_P(data) != IS_STRING) {
|
|
zend_throw_exception_ex(phar_ce_PharException, 0, "Non-string value passed to Phar::mungServer(), expecting an array of any of these strings: PHP_SELF, REQUEST_URI, SCRIPT_FILENAME, SCRIPT_NAME");
|
|
RETURN_THROWS();
|
|
}
|
|
|
|
if (Z_STRLEN_P(data) == sizeof("PHP_SELF")-1 && !strncmp(Z_STRVAL_P(data), "PHP_SELF", sizeof("PHP_SELF")-1)) {
|
|
PHAR_G(phar_SERVER_mung_list) |= PHAR_MUNG_PHP_SELF;
|
|
}
|
|
|
|
if (Z_STRLEN_P(data) == sizeof("REQUEST_URI")-1) {
|
|
if (!strncmp(Z_STRVAL_P(data), "REQUEST_URI", sizeof("REQUEST_URI")-1)) {
|
|
PHAR_G(phar_SERVER_mung_list) |= PHAR_MUNG_REQUEST_URI;
|
|
}
|
|
if (!strncmp(Z_STRVAL_P(data), "SCRIPT_NAME", sizeof("SCRIPT_NAME")-1)) {
|
|
PHAR_G(phar_SERVER_mung_list) |= PHAR_MUNG_SCRIPT_NAME;
|
|
}
|
|
}
|
|
|
|
if (Z_STRLEN_P(data) == sizeof("SCRIPT_FILENAME")-1 && !strncmp(Z_STRVAL_P(data), "SCRIPT_FILENAME", sizeof("SCRIPT_FILENAME")-1)) {
|
|
PHAR_G(phar_SERVER_mung_list) |= PHAR_MUNG_SCRIPT_FILENAME;
|
|
}
|
|
} ZEND_HASH_FOREACH_END();
|
|
}
|
|
/* }}} */
|
|
|
|
/* {{{ instructs phar to intercept fopen, file_get_contents, opendir, and all of the stat-related functions
|
|
* and return stat on files within the phar for relative paths
|
|
*
|
|
* Once called, this cannot be reversed, and continue until the end of the request.
|
|
*
|
|
* This allows legacy scripts to be pharred unmodified
|
|
*/
|
|
PHP_METHOD(Phar, interceptFileFuncs)
|
|
{
|
|
if (zend_parse_parameters_none() == FAILURE) {
|
|
RETURN_THROWS();
|
|
}
|
|
phar_intercept_functions();
|
|
}
|
|
/* }}} */
|
|
|
|
/* {{{ Return a stub that can be used to run a phar-based archive without the phar extension
|
|
* indexfile is the CLI startup filename, which defaults to "index.php", webindexfile
|
|
* is the web startup filename, and also defaults to "index.php"
|
|
*/
|
|
PHP_METHOD(Phar, createDefaultStub)
|
|
{
|
|
char *index = NULL, *webindex = NULL, *error;
|
|
zend_string *stub;
|
|
size_t index_len = 0, webindex_len = 0;
|
|
|
|
if (zend_parse_parameters(ZEND_NUM_ARGS(), "|p!p!", &index, &index_len, &webindex, &webindex_len) == FAILURE) {
|
|
RETURN_THROWS();
|
|
}
|
|
|
|
stub = phar_create_default_stub(index, webindex, &error);
|
|
|
|
if (error) {
|
|
zend_throw_exception_ex(phar_ce_PharException, 0, "%s", error);
|
|
efree(error);
|
|
RETURN_THROWS();
|
|
}
|
|
RETURN_NEW_STR(stub);
|
|
}
|
|
/* }}} */
|
|
|
|
/* {{{ Reads the currently executed file (a phar) and registers its manifest */
|
|
PHP_METHOD(Phar, mapPhar)
|
|
{
|
|
char *alias = NULL, *error;
|
|
size_t alias_len = 0;
|
|
zend_long dataoffset = 0;
|
|
|
|
if (zend_parse_parameters(ZEND_NUM_ARGS(), "|s!l", &alias, &alias_len, &dataoffset) == FAILURE) {
|
|
RETURN_THROWS();
|
|
}
|
|
|
|
phar_request_initialize();
|
|
|
|
RETVAL_BOOL(phar_open_executed_filename(alias, alias_len, &error) == SUCCESS);
|
|
|
|
if (error) {
|
|
zend_throw_exception_ex(phar_ce_PharException, 0, "%s", error);
|
|
efree(error);
|
|
}
|
|
} /* }}} */
|
|
|
|
/* {{{ Loads any phar archive with an alias */
|
|
PHP_METHOD(Phar, loadPhar)
|
|
{
|
|
char *fname, *alias = NULL, *error;
|
|
size_t fname_len, alias_len = 0;
|
|
|
|
if (zend_parse_parameters(ZEND_NUM_ARGS(), "p|s!", &fname, &fname_len, &alias, &alias_len) == FAILURE) {
|
|
RETURN_THROWS();
|
|
}
|
|
|
|
phar_request_initialize();
|
|
|
|
RETVAL_BOOL(phar_open_from_filename(fname, fname_len, alias, alias_len, REPORT_ERRORS, NULL, &error) == SUCCESS);
|
|
|
|
if (error) {
|
|
zend_throw_exception_ex(phar_ce_PharException, 0, "%s", error);
|
|
efree(error);
|
|
}
|
|
} /* }}} */
|
|
|
|
/* {{{ Returns the api version */
|
|
PHP_METHOD(Phar, apiVersion)
|
|
{
|
|
if (zend_parse_parameters_none() == FAILURE) {
|
|
RETURN_THROWS();
|
|
}
|
|
RETURN_STRINGL(PHP_PHAR_API_VERSION, sizeof(PHP_PHAR_API_VERSION)-1);
|
|
}
|
|
/* }}}*/
|
|
|
|
/* {{{ Returns whether phar extension supports compression using zlib/bzip2 */
|
|
PHP_METHOD(Phar, canCompress)
|
|
{
|
|
zend_long method = 0;
|
|
|
|
if (zend_parse_parameters(ZEND_NUM_ARGS(), "|l", &method) == FAILURE) {
|
|
RETURN_THROWS();
|
|
}
|
|
|
|
phar_request_initialize();
|
|
switch (method) {
|
|
case PHAR_ENT_COMPRESSED_GZ:
|
|
if (PHAR_G(has_zlib)) {
|
|
RETURN_TRUE;
|
|
} else {
|
|
RETURN_FALSE;
|
|
}
|
|
case PHAR_ENT_COMPRESSED_BZ2:
|
|
if (PHAR_G(has_bz2)) {
|
|
RETURN_TRUE;
|
|
} else {
|
|
RETURN_FALSE;
|
|
}
|
|
default:
|
|
if (PHAR_G(has_zlib) || PHAR_G(has_bz2)) {
|
|
RETURN_TRUE;
|
|
} else {
|
|
RETURN_FALSE;
|
|
}
|
|
}
|
|
}
|
|
/* }}} */
|
|
|
|
/* {{{ Returns whether phar extension supports writing and creating phars */
|
|
PHP_METHOD(Phar, canWrite)
|
|
{
|
|
if (zend_parse_parameters_none() == FAILURE) {
|
|
RETURN_THROWS();
|
|
}
|
|
RETURN_BOOL(!PHAR_G(readonly));
|
|
}
|
|
/* }}} */
|
|
|
|
/* {{{ Returns whether the given filename is a valid phar filename */
|
|
PHP_METHOD(Phar, isValidPharFilename)
|
|
{
|
|
char *fname;
|
|
const char *ext_str;
|
|
size_t fname_len;
|
|
size_t ext_len;
|
|
int is_executable;
|
|
zend_bool executable = 1;
|
|
|
|
if (zend_parse_parameters(ZEND_NUM_ARGS(), "p|b", &fname, &fname_len, &executable) == FAILURE) {
|
|
RETURN_THROWS();
|
|
}
|
|
|
|
is_executable = executable;
|
|
RETVAL_BOOL(phar_detect_phar_fname_ext(fname, fname_len, &ext_str, &ext_len, is_executable, 2, 1) == SUCCESS);
|
|
}
|
|
/* }}} */
|
|
|
|
/**
|
|
* from spl_directory
|
|
*/
|
|
static void phar_spl_foreign_dtor(spl_filesystem_object *object) /* {{{ */
|
|
{
|
|
phar_archive_data *phar = (phar_archive_data *) object->oth;
|
|
|
|
if (!phar->is_persistent) {
|
|
phar_archive_delref(phar);
|
|
}
|
|
|
|
object->oth = NULL;
|
|
}
|
|
/* }}} */
|
|
|
|
/**
|
|
* from spl_directory
|
|
*/
|
|
static void phar_spl_foreign_clone(spl_filesystem_object *src, spl_filesystem_object *dst) /* {{{ */
|
|
{
|
|
phar_archive_data *phar_data = (phar_archive_data *) dst->oth;
|
|
|
|
if (!phar_data->is_persistent) {
|
|
++(phar_data->refcount);
|
|
}
|
|
}
|
|
/* }}} */
|
|
|
|
static const spl_other_handler phar_spl_foreign_handler = {
|
|
phar_spl_foreign_dtor,
|
|
phar_spl_foreign_clone
|
|
};
|
|
|
|
/* {{{ Construct a Phar archive object
|
|
*
|
|
* proto PharData::__construct(string fname [[, int flags [, string alias]], int file format = Phar::TAR])
|
|
* Construct a PharData archive object
|
|
*
|
|
* This function is used as the constructor for both the Phar and PharData
|
|
* classes, hence the two prototypes above.
|
|
*/
|
|
PHP_METHOD(Phar, __construct)
|
|
{
|
|
char *fname, *alias = NULL, *error, *arch = NULL, *entry = NULL, *save_fname;
|
|
size_t fname_len, alias_len = 0;
|
|
size_t arch_len, entry_len;
|
|
zend_bool is_data;
|
|
zend_long flags = SPL_FILE_DIR_SKIPDOTS|SPL_FILE_DIR_UNIXPATHS;
|
|
zend_long format = 0;
|
|
phar_archive_object *phar_obj;
|
|
phar_archive_data *phar_data;
|
|
zval *zobj = ZEND_THIS, arg1, arg2;
|
|
|
|
phar_obj = (phar_archive_object*)((char*)Z_OBJ_P(zobj) - Z_OBJ_P(zobj)->handlers->offset);
|
|
|
|
is_data = instanceof_function(Z_OBJCE_P(zobj), phar_ce_data);
|
|
|
|
if (is_data) {
|
|
if (zend_parse_parameters(ZEND_NUM_ARGS(), "p|ls!l", &fname, &fname_len, &flags, &alias, &alias_len, &format) == FAILURE) {
|
|
RETURN_THROWS();
|
|
}
|
|
} else {
|
|
if (zend_parse_parameters(ZEND_NUM_ARGS(), "p|ls!", &fname, &fname_len, &flags, &alias, &alias_len) == FAILURE) {
|
|
RETURN_THROWS();
|
|
}
|
|
}
|
|
|
|
if (phar_obj->archive) {
|
|
zend_throw_exception_ex(spl_ce_BadMethodCallException, 0, "Cannot call constructor twice");
|
|
RETURN_THROWS();
|
|
}
|
|
|
|
save_fname = fname;
|
|
if (SUCCESS == phar_split_fname(fname, fname_len, &arch, &arch_len, &entry, &entry_len, !is_data, 2)) {
|
|
/* use arch (the basename for the archive) for fname instead of fname */
|
|
/* this allows support for RecursiveDirectoryIterator of subdirectories */
|
|
#ifdef PHP_WIN32
|
|
phar_unixify_path_separators(arch, arch_len);
|
|
#endif
|
|
fname = arch;
|
|
fname_len = arch_len;
|
|
#ifdef PHP_WIN32
|
|
} else {
|
|
arch = estrndup(fname, fname_len);
|
|
arch_len = fname_len;
|
|
fname = arch;
|
|
phar_unixify_path_separators(arch, arch_len);
|
|
#endif
|
|
}
|
|
|
|
if (phar_open_or_create_filename(fname, fname_len, alias, alias_len, is_data, REPORT_ERRORS, &phar_data, &error) == FAILURE) {
|
|
|
|
if (fname == arch && fname != save_fname) {
|
|
efree(arch);
|
|
fname = save_fname;
|
|
}
|
|
|
|
if (entry) {
|
|
efree(entry);
|
|
}
|
|
|
|
if (error) {
|
|
zend_throw_exception_ex(spl_ce_UnexpectedValueException, 0,
|
|
"%s", error);
|
|
efree(error);
|
|
} else {
|
|
zend_throw_exception_ex(spl_ce_UnexpectedValueException, 0,
|
|
"Phar creation or opening failed");
|
|
}
|
|
|
|
RETURN_THROWS();
|
|
}
|
|
|
|
if (is_data && phar_data->is_tar && phar_data->is_brandnew && format == PHAR_FORMAT_ZIP) {
|
|
phar_data->is_zip = 1;
|
|
phar_data->is_tar = 0;
|
|
}
|
|
|
|
if (fname == arch) {
|
|
efree(arch);
|
|
fname = save_fname;
|
|
}
|
|
|
|
if ((is_data && !phar_data->is_data) || (!is_data && phar_data->is_data)) {
|
|
if (is_data) {
|
|
zend_throw_exception_ex(spl_ce_UnexpectedValueException, 0,
|
|
"PharData class can only be used for non-executable tar and zip archives");
|
|
} else {
|
|
zend_throw_exception_ex(spl_ce_UnexpectedValueException, 0,
|
|
"Phar class can only be used for executable tar and zip archives");
|
|
}
|
|
efree(entry);
|
|
RETURN_THROWS();
|
|
}
|
|
|
|
is_data = phar_data->is_data;
|
|
|
|
if (!phar_data->is_persistent) {
|
|
++(phar_data->refcount);
|
|
}
|
|
|
|
phar_obj->archive = phar_data;
|
|
phar_obj->spl.oth_handler = &phar_spl_foreign_handler;
|
|
|
|
if (entry) {
|
|
fname_len = spprintf(&fname, 0, "phar://%s%s", phar_data->fname, entry);
|
|
efree(entry);
|
|
} else {
|
|
fname_len = spprintf(&fname, 0, "phar://%s", phar_data->fname);
|
|
}
|
|
|
|
ZVAL_STRINGL(&arg1, fname, fname_len);
|
|
ZVAL_LONG(&arg2, flags);
|
|
|
|
zend_call_known_instance_method_with_2_params(spl_ce_RecursiveDirectoryIterator->constructor,
|
|
Z_OBJ_P(zobj), NULL, &arg1, &arg2);
|
|
|
|
zval_ptr_dtor(&arg1);
|
|
|
|
if (!phar_data->is_persistent) {
|
|
phar_obj->archive->is_data = is_data;
|
|
} else if (!EG(exception)) {
|
|
/* register this guy so we can modify if necessary */
|
|
zend_hash_str_add_ptr(&PHAR_G(phar_persist_map), (const char *) phar_obj->archive, sizeof(phar_obj->archive), phar_obj);
|
|
}
|
|
|
|
phar_obj->spl.info_class = phar_ce_entry;
|
|
efree(fname);
|
|
}
|
|
/* }}} */
|
|
|
|
/* {{{ Return array of supported signature types */
|
|
PHP_METHOD(Phar, getSupportedSignatures)
|
|
{
|
|
if (zend_parse_parameters_none() == FAILURE) {
|
|
RETURN_THROWS();
|
|
}
|
|
|
|
array_init(return_value);
|
|
|
|
add_next_index_stringl(return_value, "MD5", 3);
|
|
add_next_index_stringl(return_value, "SHA-1", 5);
|
|
add_next_index_stringl(return_value, "SHA-256", 7);
|
|
add_next_index_stringl(return_value, "SHA-512", 7);
|
|
#ifdef PHAR_HAVE_OPENSSL
|
|
add_next_index_stringl(return_value, "OpenSSL", 7);
|
|
#else
|
|
if (zend_hash_str_exists(&module_registry, "openssl", sizeof("openssl")-1)) {
|
|
add_next_index_stringl(return_value, "OpenSSL", 7);
|
|
}
|
|
#endif
|
|
}
|
|
/* }}} */
|
|
|
|
/* {{{ Return array of supported comparession algorithms */
|
|
PHP_METHOD(Phar, getSupportedCompression)
|
|
{
|
|
if (zend_parse_parameters_none() == FAILURE) {
|
|
RETURN_THROWS();
|
|
}
|
|
|
|
array_init(return_value);
|
|
phar_request_initialize();
|
|
|
|
if (PHAR_G(has_zlib)) {
|
|
add_next_index_stringl(return_value, "GZ", 2);
|
|
}
|
|
|
|
if (PHAR_G(has_bz2)) {
|
|
add_next_index_stringl(return_value, "BZIP2", 5);
|
|
}
|
|
}
|
|
/* }}} */
|
|
|
|
/* {{{ Completely remove a phar archive from memory and disk */
|
|
PHP_METHOD(Phar, unlinkArchive)
|
|
{
|
|
char *fname, *error, *zname, *arch, *entry;
|
|
size_t fname_len;
|
|
size_t zname_len, arch_len, entry_len;
|
|
phar_archive_data *phar;
|
|
|
|
if (zend_parse_parameters(ZEND_NUM_ARGS(), "p", &fname, &fname_len) == FAILURE) {
|
|
RETURN_THROWS();
|
|
}
|
|
|
|
if (!fname_len) {
|
|
zend_throw_exception_ex(phar_ce_PharException, 0, "Unknown phar archive \"\"");
|
|
RETURN_THROWS();
|
|
}
|
|
|
|
if (FAILURE == phar_open_from_filename(fname, fname_len, NULL, 0, REPORT_ERRORS, &phar, &error)) {
|
|
if (error) {
|
|
zend_throw_exception_ex(phar_ce_PharException, 0, "Unknown phar archive \"%s\": %s", fname, error);
|
|
efree(error);
|
|
} else {
|
|
zend_throw_exception_ex(phar_ce_PharException, 0, "Unknown phar archive \"%s\"", fname);
|
|
}
|
|
RETURN_THROWS();
|
|
}
|
|
|
|
zname = (char*)zend_get_executed_filename();
|
|
zname_len = strlen(zname);
|
|
|
|
if (zname_len > 7 && !memcmp(zname, "phar://", 7) && SUCCESS == phar_split_fname(zname, zname_len, &arch, &arch_len, &entry, &entry_len, 2, 0)) {
|
|
if ((size_t)arch_len == fname_len && !memcmp(arch, fname, arch_len)) {
|
|
zend_throw_exception_ex(phar_ce_PharException, 0, "phar archive \"%s\" cannot be unlinked from within itself", fname);
|
|
efree(arch);
|
|
efree(entry);
|
|
RETURN_THROWS();
|
|
}
|
|
efree(arch);
|
|
efree(entry);
|
|
}
|
|
|
|
if (phar->is_persistent) {
|
|
zend_throw_exception_ex(phar_ce_PharException, 0, "phar archive \"%s\" is in phar.cache_list, cannot unlinkArchive()", fname);
|
|
RETURN_THROWS();
|
|
}
|
|
|
|
if (phar->refcount) {
|
|
zend_throw_exception_ex(phar_ce_PharException, 0, "phar archive \"%s\" has open file handles or objects. fclose() all file handles, and unset() all objects prior to calling unlinkArchive()", fname);
|
|
RETURN_THROWS();
|
|
}
|
|
|
|
fname = estrndup(phar->fname, phar->fname_len);
|
|
|
|
/* invalidate phar cache */
|
|
PHAR_G(last_phar) = NULL;
|
|
PHAR_G(last_phar_name) = PHAR_G(last_alias) = NULL;
|
|
|
|
phar_archive_delref(phar);
|
|
unlink(fname);
|
|
efree(fname);
|
|
RETURN_TRUE;
|
|
}
|
|
/* }}} */
|
|
|
|
#define PHAR_ARCHIVE_OBJECT() \
|
|
zval *zobj = ZEND_THIS; \
|
|
phar_archive_object *phar_obj = (phar_archive_object*)((char*)Z_OBJ_P(zobj) - Z_OBJ_P(zobj)->handlers->offset); \
|
|
if (!phar_obj->archive) { \
|
|
zend_throw_exception_ex(spl_ce_BadMethodCallException, 0, \
|
|
"Cannot call method on an uninitialized Phar object"); \
|
|
RETURN_THROWS(); \
|
|
}
|
|
|
|
/* {{{ if persistent, remove from the cache */
|
|
PHP_METHOD(Phar, __destruct)
|
|
{
|
|
zval *zobj = ZEND_THIS;
|
|
phar_archive_object *phar_obj = (phar_archive_object*)((char*)Z_OBJ_P(zobj) - Z_OBJ_P(zobj)->handlers->offset);
|
|
|
|
if (zend_parse_parameters_none() == FAILURE) {
|
|
RETURN_THROWS();
|
|
}
|
|
|
|
if (phar_obj->archive && phar_obj->archive->is_persistent) {
|
|
zend_hash_str_del(&PHAR_G(phar_persist_map), (const char *) phar_obj->archive, sizeof(phar_obj->archive));
|
|
}
|
|
}
|
|
/* }}} */
|
|
|
|
struct _phar_t {
|
|
phar_archive_object *p;
|
|
zend_class_entry *c;
|
|
char *b;
|
|
zval *ret;
|
|
php_stream *fp;
|
|
uint32_t l;
|
|
int count;
|
|
};
|
|
|
|
static int phar_build(zend_object_iterator *iter, void *puser) /* {{{ */
|
|
{
|
|
zval *value;
|
|
zend_bool close_fp = 1;
|
|
struct _phar_t *p_obj = (struct _phar_t*) puser;
|
|
size_t str_key_len, base_len = p_obj->l;
|
|
phar_entry_data *data;
|
|
php_stream *fp;
|
|
size_t fname_len;
|
|
size_t contents_len;
|
|
char *fname, *error = NULL, *base = p_obj->b, *save = NULL, *temp = NULL;
|
|
zend_string *opened;
|
|
char *str_key;
|
|
zend_class_entry *ce = p_obj->c;
|
|
phar_archive_object *phar_obj = p_obj->p;
|
|
php_stream_statbuf ssb;
|
|
|
|
value = iter->funcs->get_current_data(iter);
|
|
|
|
if (EG(exception)) {
|
|
return ZEND_HASH_APPLY_STOP;
|
|
}
|
|
|
|
if (!value) {
|
|
/* failure in get_current_data */
|
|
zend_throw_exception_ex(spl_ce_UnexpectedValueException, 0, "Iterator %s returned no value", ZSTR_VAL(ce->name));
|
|
return ZEND_HASH_APPLY_STOP;
|
|
}
|
|
|
|
switch (Z_TYPE_P(value)) {
|
|
case IS_STRING:
|
|
break;
|
|
case IS_RESOURCE:
|
|
php_stream_from_zval_no_verify(fp, value);
|
|
|
|
if (!fp) {
|
|
zend_throw_exception_ex(spl_ce_BadMethodCallException, 0, "Iterator %s returned an invalid stream handle", ZSTR_VAL(ce->name));
|
|
return ZEND_HASH_APPLY_STOP;
|
|
}
|
|
|
|
if (iter->funcs->get_current_key) {
|
|
zval key;
|
|
iter->funcs->get_current_key(iter, &key);
|
|
|
|
if (EG(exception)) {
|
|
return ZEND_HASH_APPLY_STOP;
|
|
}
|
|
|
|
if (Z_TYPE(key) != IS_STRING) {
|
|
zval_ptr_dtor(&key);
|
|
zend_throw_exception_ex(spl_ce_UnexpectedValueException, 0, "Iterator %s returned an invalid key (must return a string)", ZSTR_VAL(ce->name));
|
|
return ZEND_HASH_APPLY_STOP;
|
|
}
|
|
|
|
str_key_len = Z_STRLEN(key);
|
|
str_key = estrndup(Z_STRVAL(key), str_key_len);
|
|
|
|
save = str_key;
|
|
zval_ptr_dtor_str(&key);
|
|
} else {
|
|
zend_throw_exception_ex(spl_ce_UnexpectedValueException, 0, "Iterator %s returned an invalid key (must return a string)", ZSTR_VAL(ce->name));
|
|
return ZEND_HASH_APPLY_STOP;
|
|
}
|
|
|
|
close_fp = 0;
|
|
opened = zend_string_init("[stream]", sizeof("[stream]") - 1, 0);
|
|
goto after_open_fp;
|
|
case IS_OBJECT:
|
|
if (instanceof_function(Z_OBJCE_P(value), spl_ce_SplFileInfo)) {
|
|
char *test = NULL;
|
|
zval dummy;
|
|
spl_filesystem_object *intern = (spl_filesystem_object*)((char*)Z_OBJ_P(value) - Z_OBJ_P(value)->handlers->offset);
|
|
|
|
if (!base_len) {
|
|
zend_throw_exception_ex(spl_ce_BadMethodCallException, 0, "Iterator %s returns an SplFileInfo object, so base directory must be specified", ZSTR_VAL(ce->name));
|
|
return ZEND_HASH_APPLY_STOP;
|
|
}
|
|
|
|
switch (intern->type) {
|
|
case SPL_FS_DIR:
|
|
test = spl_filesystem_object_get_path(intern, NULL);
|
|
fname_len = spprintf(&fname, 0, "%s%c%s", test, DEFAULT_SLASH, intern->u.dir.entry.d_name);
|
|
php_stat(fname, fname_len, FS_IS_DIR, &dummy);
|
|
|
|
if (Z_TYPE(dummy) == IS_TRUE) {
|
|
/* ignore directories */
|
|
efree(fname);
|
|
return ZEND_HASH_APPLY_KEEP;
|
|
}
|
|
|
|
test = expand_filepath(fname, NULL);
|
|
efree(fname);
|
|
|
|
if (test) {
|
|
fname = test;
|
|
fname_len = strlen(fname);
|
|
} else {
|
|
zend_throw_exception_ex(spl_ce_UnexpectedValueException, 0, "Could not resolve file path");
|
|
return ZEND_HASH_APPLY_STOP;
|
|
}
|
|
|
|
save = fname;
|
|
goto phar_spl_fileinfo;
|
|
case SPL_FS_INFO:
|
|
case SPL_FS_FILE:
|
|
fname = expand_filepath(intern->file_name, NULL);
|
|
if (!fname) {
|
|
zend_throw_exception_ex(spl_ce_UnexpectedValueException, 0, "Could not resolve file path");
|
|
return ZEND_HASH_APPLY_STOP;
|
|
}
|
|
|
|
fname_len = strlen(fname);
|
|
save = fname;
|
|
goto phar_spl_fileinfo;
|
|
}
|
|
}
|
|
/* fall-through */
|
|
default:
|
|
zend_throw_exception_ex(spl_ce_UnexpectedValueException, 0, "Iterator %s returned an invalid value (must return a string)", ZSTR_VAL(ce->name));
|
|
return ZEND_HASH_APPLY_STOP;
|
|
}
|
|
|
|
fname = Z_STRVAL_P(value);
|
|
fname_len = Z_STRLEN_P(value);
|
|
|
|
phar_spl_fileinfo:
|
|
if (base_len) {
|
|
temp = expand_filepath(base, NULL);
|
|
if (!temp) {
|
|
zend_throw_exception_ex(spl_ce_UnexpectedValueException, 0, "Could not resolve file path");
|
|
if (save) {
|
|
efree(save);
|
|
}
|
|
return ZEND_HASH_APPLY_STOP;
|
|
}
|
|
|
|
base = temp;
|
|
base_len = strlen(base);
|
|
|
|
if (strstr(fname, base)) {
|
|
str_key_len = fname_len - base_len;
|
|
|
|
if (str_key_len <= 0) {
|
|
if (save) {
|
|
efree(save);
|
|
efree(temp);
|
|
}
|
|
return ZEND_HASH_APPLY_KEEP;
|
|
}
|
|
|
|
str_key = fname + base_len;
|
|
|
|
if (*str_key == '/' || *str_key == '\\') {
|
|
str_key++;
|
|
str_key_len--;
|
|
}
|
|
|
|
} else {
|
|
zend_throw_exception_ex(spl_ce_UnexpectedValueException, 0, "Iterator %s returned a path \"%s\" that is not in the base directory \"%s\"", ZSTR_VAL(ce->name), fname, base);
|
|
|
|
if (save) {
|
|
efree(save);
|
|
efree(temp);
|
|
}
|
|
|
|
return ZEND_HASH_APPLY_STOP;
|
|
}
|
|
} else {
|
|
if (iter->funcs->get_current_key) {
|
|
zval key;
|
|
iter->funcs->get_current_key(iter, &key);
|
|
|
|
if (EG(exception)) {
|
|
return ZEND_HASH_APPLY_STOP;
|
|
}
|
|
|
|
if (Z_TYPE(key) != IS_STRING) {
|
|
zval_ptr_dtor(&key);
|
|
zend_throw_exception_ex(spl_ce_UnexpectedValueException, 0, "Iterator %s returned an invalid key (must return a string)", ZSTR_VAL(ce->name));
|
|
return ZEND_HASH_APPLY_STOP;
|
|
}
|
|
|
|
str_key_len = Z_STRLEN(key);
|
|
str_key = estrndup(Z_STRVAL(key), str_key_len);
|
|
|
|
save = str_key;
|
|
zval_ptr_dtor_str(&key);
|
|
} else {
|
|
zend_throw_exception_ex(spl_ce_UnexpectedValueException, 0, "Iterator %s returned an invalid key (must return a string)", ZSTR_VAL(ce->name));
|
|
return ZEND_HASH_APPLY_STOP;
|
|
}
|
|
}
|
|
|
|
if (php_check_open_basedir(fname)) {
|
|
zend_throw_exception_ex(spl_ce_UnexpectedValueException, 0, "Iterator %s returned a path \"%s\" that open_basedir prevents opening", ZSTR_VAL(ce->name), fname);
|
|
|
|
if (save) {
|
|
efree(save);
|
|
}
|
|
|
|
if (temp) {
|
|
efree(temp);
|
|
}
|
|
|
|
return ZEND_HASH_APPLY_STOP;
|
|
}
|
|
|
|
/* try to open source file, then create internal phar file and copy contents */
|
|
fp = php_stream_open_wrapper(fname, "rb", STREAM_MUST_SEEK|0, &opened);
|
|
|
|
if (!fp) {
|
|
zend_throw_exception_ex(spl_ce_UnexpectedValueException, 0, "Iterator %s returned a file that could not be opened \"%s\"", ZSTR_VAL(ce->name), fname);
|
|
|
|
if (save) {
|
|
efree(save);
|
|
}
|
|
|
|
if (temp) {
|
|
efree(temp);
|
|
}
|
|
|
|
return ZEND_HASH_APPLY_STOP;
|
|
}
|
|
after_open_fp:
|
|
if (str_key_len >= sizeof(".phar")-1 && !memcmp(str_key, ".phar", sizeof(".phar")-1)) {
|
|
/* silently skip any files that would be added to the magic .phar directory */
|
|
if (save) {
|
|
efree(save);
|
|
}
|
|
|
|
if (temp) {
|
|
efree(temp);
|
|
}
|
|
|
|
if (opened) {
|
|
zend_string_release_ex(opened, 0);
|
|
}
|
|
|
|
if (close_fp) {
|
|
php_stream_close(fp);
|
|
}
|
|
|
|
return ZEND_HASH_APPLY_KEEP;
|
|
}
|
|
|
|
if (!(data = phar_get_or_create_entry_data(phar_obj->archive->fname, phar_obj->archive->fname_len, str_key, str_key_len, "w+b", 0, &error, 1))) {
|
|
zend_throw_exception_ex(spl_ce_BadMethodCallException, 0, "Entry %s cannot be created: %s", str_key, error);
|
|
efree(error);
|
|
|
|
if (save) {
|
|
efree(save);
|
|
}
|
|
|
|
if (opened) {
|
|
zend_string_release_ex(opened, 0);
|
|
}
|
|
|
|
if (temp) {
|
|
efree(temp);
|
|
}
|
|
|
|
if (close_fp) {
|
|
php_stream_close(fp);
|
|
}
|
|
|
|
return ZEND_HASH_APPLY_STOP;
|
|
|
|
} else {
|
|
if (error) {
|
|
efree(error);
|
|
}
|
|
/* convert to PHAR_UFP */
|
|
if (data->internal_file->fp_type == PHAR_MOD) {
|
|
php_stream_close(data->internal_file->fp);
|
|
}
|
|
|
|
data->internal_file->fp = NULL;
|
|
data->internal_file->fp_type = PHAR_UFP;
|
|
data->internal_file->offset_abs = data->internal_file->offset = php_stream_tell(p_obj->fp);
|
|
data->fp = NULL;
|
|
php_stream_copy_to_stream_ex(fp, p_obj->fp, PHP_STREAM_COPY_ALL, &contents_len);
|
|
data->internal_file->uncompressed_filesize = data->internal_file->compressed_filesize =
|
|
php_stream_tell(p_obj->fp) - data->internal_file->offset;
|
|
if (php_stream_stat(fp, &ssb) != -1) {
|
|
data->internal_file->flags = ssb.sb.st_mode & PHAR_ENT_PERM_MASK ;
|
|
} else {
|
|
#ifndef _WIN32
|
|
mode_t mask;
|
|
mask = umask(0);
|
|
umask(mask);
|
|
data->internal_file->flags &= ~mask;
|
|
#endif
|
|
}
|
|
}
|
|
|
|
if (close_fp) {
|
|
php_stream_close(fp);
|
|
}
|
|
|
|
add_assoc_str(p_obj->ret, str_key, opened);
|
|
|
|
if (save) {
|
|
efree(save);
|
|
}
|
|
|
|
if (temp) {
|
|
efree(temp);
|
|
}
|
|
|
|
data->internal_file->compressed_filesize = data->internal_file->uncompressed_filesize = contents_len;
|
|
phar_entry_delref(data);
|
|
|
|
return ZEND_HASH_APPLY_KEEP;
|
|
}
|
|
/* }}} */
|
|
|
|
/* {{{ Construct a phar archive from an existing directory, recursively.
|
|
* Optional second parameter is a regular expression for filtering directory contents.
|
|
*
|
|
* Return value is an array mapping phar index to actual files added.
|
|
*/
|
|
PHP_METHOD(Phar, buildFromDirectory)
|
|
{
|
|
char *dir, *error, *regex = NULL;
|
|
size_t dir_len, regex_len = 0;
|
|
zend_bool apply_reg = 0;
|
|
zval arg, arg2, iter, iteriter, regexiter;
|
|
struct _phar_t pass;
|
|
|
|
if (zend_parse_parameters(ZEND_NUM_ARGS(), "p|s", &dir, &dir_len, ®ex, ®ex_len) == FAILURE) {
|
|
RETURN_THROWS();
|
|
}
|
|
|
|
PHAR_ARCHIVE_OBJECT();
|
|
|
|
if (PHAR_G(readonly) && !phar_obj->archive->is_data) {
|
|
zend_throw_exception_ex(spl_ce_UnexpectedValueException, 0,
|
|
"Cannot write to archive - write operations restricted by INI setting");
|
|
RETURN_THROWS();
|
|
}
|
|
|
|
if (ZEND_SIZE_T_UINT_OVFL(dir_len)) {
|
|
RETURN_FALSE;
|
|
}
|
|
|
|
if (SUCCESS != object_init_ex(&iter, spl_ce_RecursiveDirectoryIterator)) {
|
|
zval_ptr_dtor(&iter);
|
|
zend_throw_exception_ex(spl_ce_BadMethodCallException, 0, "Unable to instantiate directory iterator for %s", phar_obj->archive->fname);
|
|
RETURN_THROWS();
|
|
}
|
|
|
|
ZVAL_STRINGL(&arg, dir, dir_len);
|
|
ZVAL_LONG(&arg2, SPL_FILE_DIR_SKIPDOTS|SPL_FILE_DIR_UNIXPATHS);
|
|
|
|
zend_call_known_instance_method_with_2_params(spl_ce_RecursiveDirectoryIterator->constructor,
|
|
Z_OBJ(iter), NULL, &arg, &arg2);
|
|
|
|
zval_ptr_dtor(&arg);
|
|
if (EG(exception)) {
|
|
zval_ptr_dtor(&iter);
|
|
RETURN_THROWS();
|
|
}
|
|
|
|
if (SUCCESS != object_init_ex(&iteriter, spl_ce_RecursiveIteratorIterator)) {
|
|
zval_ptr_dtor(&iter);
|
|
zval_ptr_dtor(&iteriter);
|
|
zend_throw_exception_ex(spl_ce_BadMethodCallException, 0, "Unable to instantiate directory iterator for %s", phar_obj->archive->fname);
|
|
RETURN_THROWS();
|
|
}
|
|
|
|
zend_call_known_instance_method_with_1_params(spl_ce_RecursiveIteratorIterator->constructor,
|
|
Z_OBJ(iteriter), NULL, &iter);
|
|
|
|
if (EG(exception)) {
|
|
zval_ptr_dtor(&iter);
|
|
zval_ptr_dtor(&iteriter);
|
|
RETURN_THROWS();
|
|
}
|
|
|
|
zval_ptr_dtor(&iter);
|
|
|
|
if (regex_len > 0) {
|
|
apply_reg = 1;
|
|
|
|
if (SUCCESS != object_init_ex(®exiter, spl_ce_RegexIterator)) {
|
|
zval_ptr_dtor(&iteriter);
|
|
zval_ptr_dtor(®exiter);
|
|
zend_throw_exception_ex(spl_ce_BadMethodCallException, 0, "Unable to instantiate regex iterator for %s", phar_obj->archive->fname);
|
|
RETURN_THROWS();
|
|
}
|
|
|
|
ZVAL_STRINGL(&arg2, regex, regex_len);
|
|
|
|
zend_call_known_instance_method_with_2_params(spl_ce_RegexIterator->constructor,
|
|
Z_OBJ(regexiter), NULL, &iteriter, &arg2);
|
|
zval_ptr_dtor(&arg2);
|
|
}
|
|
|
|
array_init(return_value);
|
|
|
|
pass.c = apply_reg ? Z_OBJCE(regexiter) : Z_OBJCE(iteriter);
|
|
pass.p = phar_obj;
|
|
pass.b = dir;
|
|
pass.l = (uint32_t)dir_len;
|
|
pass.count = 0;
|
|
pass.ret = return_value;
|
|
pass.fp = php_stream_fopen_tmpfile();
|
|
if (pass.fp == NULL) {
|
|
zend_throw_exception_ex(phar_ce_PharException, 0, "phar \"%s\" unable to create temporary file", phar_obj->archive->fname);
|
|
RETURN_THROWS();
|
|
}
|
|
|
|
if (phar_obj->archive->is_persistent && FAILURE == phar_copy_on_write(&(phar_obj->archive))) {
|
|
zval_ptr_dtor(&iteriter);
|
|
if (apply_reg) {
|
|
zval_ptr_dtor(®exiter);
|
|
}
|
|
php_stream_close(pass.fp);
|
|
zend_throw_exception_ex(phar_ce_PharException, 0, "phar \"%s\" is persistent, unable to copy on write", phar_obj->archive->fname);
|
|
RETURN_THROWS();
|
|
}
|
|
|
|
if (SUCCESS == spl_iterator_apply((apply_reg ? ®exiter : &iteriter), (spl_iterator_apply_func_t) phar_build, (void *) &pass)) {
|
|
zval_ptr_dtor(&iteriter);
|
|
|
|
if (apply_reg) {
|
|
zval_ptr_dtor(®exiter);
|
|
}
|
|
|
|
phar_obj->archive->ufp = pass.fp;
|
|
phar_flush(phar_obj->archive, 0, 0, 0, &error);
|
|
|
|
if (error) {
|
|
zend_throw_exception_ex(phar_ce_PharException, 0, "%s", error);
|
|
efree(error);
|
|
}
|
|
|
|
} else {
|
|
zval_ptr_dtor(&iteriter);
|
|
if (apply_reg) {
|
|
zval_ptr_dtor(®exiter);
|
|
}
|
|
php_stream_close(pass.fp);
|
|
}
|
|
}
|
|
/* }}} */
|
|
|
|
/* {{{ Construct a phar archive from an iterator. The iterator must return a series of strings
|
|
* that are full paths to files that should be added to the phar. The iterator key should
|
|
* be the path that the file will have within the phar archive.
|
|
*
|
|
* If base directory is specified, then the key will be ignored, and instead the portion of
|
|
* the current value minus the base directory will be used
|
|
*
|
|
* Returned is an array mapping phar index to actual file added
|
|
*/
|
|
PHP_METHOD(Phar, buildFromIterator)
|
|
{
|
|
zval *obj;
|
|
char *error;
|
|
size_t base_len = 0;
|
|
char *base = NULL;
|
|
struct _phar_t pass;
|
|
|
|
if (zend_parse_parameters(ZEND_NUM_ARGS(), "O|s!", &obj, zend_ce_traversable, &base, &base_len) == FAILURE) {
|
|
RETURN_THROWS();
|
|
}
|
|
|
|
PHAR_ARCHIVE_OBJECT();
|
|
|
|
if (PHAR_G(readonly) && !phar_obj->archive->is_data) {
|
|
zend_throw_exception_ex(spl_ce_UnexpectedValueException, 0,
|
|
"Cannot write out phar archive, phar is read-only");
|
|
RETURN_THROWS();
|
|
}
|
|
|
|
if (ZEND_SIZE_T_UINT_OVFL(base_len)) {
|
|
RETURN_FALSE;
|
|
}
|
|
|
|
if (phar_obj->archive->is_persistent && FAILURE == phar_copy_on_write(&(phar_obj->archive))) {
|
|
zend_throw_exception_ex(phar_ce_PharException, 0, "phar \"%s\" is persistent, unable to copy on write", phar_obj->archive->fname);
|
|
RETURN_THROWS();
|
|
}
|
|
|
|
array_init(return_value);
|
|
|
|
pass.c = Z_OBJCE_P(obj);
|
|
pass.p = phar_obj;
|
|
pass.b = base;
|
|
pass.l = (uint32_t)base_len;
|
|
pass.ret = return_value;
|
|
pass.count = 0;
|
|
pass.fp = php_stream_fopen_tmpfile();
|
|
if (pass.fp == NULL) {
|
|
zend_throw_exception_ex(phar_ce_PharException, 0, "phar \"%s\": unable to create temporary file", phar_obj->archive->fname);
|
|
RETURN_THROWS();
|
|
}
|
|
|
|
if (SUCCESS == spl_iterator_apply(obj, (spl_iterator_apply_func_t) phar_build, (void *) &pass)) {
|
|
phar_obj->archive->ufp = pass.fp;
|
|
phar_flush(phar_obj->archive, 0, 0, 0, &error);
|
|
if (error) {
|
|
zend_throw_exception_ex(phar_ce_PharException, 0, "%s", error);
|
|
efree(error);
|
|
}
|
|
} else {
|
|
php_stream_close(pass.fp);
|
|
}
|
|
}
|
|
/* }}} */
|
|
|
|
/* {{{ Returns the number of entries in the Phar archive */
|
|
PHP_METHOD(Phar, count)
|
|
{
|
|
/* mode can be ignored, maximum depth is 1 */
|
|
zend_long mode;
|
|
|
|
if (zend_parse_parameters(ZEND_NUM_ARGS(), "|l", &mode) == FAILURE) {
|
|
RETURN_THROWS();
|
|
}
|
|
|
|
PHAR_ARCHIVE_OBJECT();
|
|
|
|
RETURN_LONG(zend_hash_num_elements(&phar_obj->archive->manifest));
|
|
}
|
|
/* }}} */
|
|
|
|
/* {{{ Returns true if the phar archive is based on the tar/zip/phar file format depending
|
|
* on whether Phar::TAR, Phar::ZIP or Phar::PHAR was passed in
|
|
*/
|
|
PHP_METHOD(Phar, isFileFormat)
|
|
{
|
|
zend_long type;
|
|
|
|
if (zend_parse_parameters(ZEND_NUM_ARGS(), "l", &type) == FAILURE) {
|
|
RETURN_THROWS();
|
|
}
|
|
|
|
PHAR_ARCHIVE_OBJECT();
|
|
|
|
switch (type) {
|
|
case PHAR_FORMAT_TAR:
|
|
RETURN_BOOL(phar_obj->archive->is_tar);
|
|
case PHAR_FORMAT_ZIP:
|
|
RETURN_BOOL(phar_obj->archive->is_zip);
|
|
case PHAR_FORMAT_PHAR:
|
|
RETURN_BOOL(!phar_obj->archive->is_tar && !phar_obj->archive->is_zip);
|
|
default:
|
|
zend_throw_exception_ex(phar_ce_PharException, 0, "Unknown file format specified");
|
|
}
|
|
}
|
|
/* }}} */
|
|
|
|
static int phar_copy_file_contents(phar_entry_info *entry, php_stream *fp) /* {{{ */
|
|
{
|
|
char *error;
|
|
zend_off_t offset;
|
|
phar_entry_info *link;
|
|
|
|
if (FAILURE == phar_open_entry_fp(entry, &error, 1)) {
|
|
if (error) {
|
|
zend_throw_exception_ex(spl_ce_UnexpectedValueException, 0,
|
|
"Cannot convert phar archive \"%s\", unable to open entry \"%s\" contents: %s", entry->phar->fname, entry->filename, error);
|
|
efree(error);
|
|
} else {
|
|
zend_throw_exception_ex(spl_ce_UnexpectedValueException, 0,
|
|
"Cannot convert phar archive \"%s\", unable to open entry \"%s\" contents", entry->phar->fname, entry->filename);
|
|
}
|
|
return FAILURE;
|
|
}
|
|
|
|
/* copy old contents in entirety */
|
|
phar_seek_efp(entry, 0, SEEK_SET, 0, 1);
|
|
offset = php_stream_tell(fp);
|
|
link = phar_get_link_source(entry);
|
|
|
|
if (!link) {
|
|
link = entry;
|
|
}
|
|
|
|
if (SUCCESS != php_stream_copy_to_stream_ex(phar_get_efp(link, 0), fp, link->uncompressed_filesize, NULL)) {
|
|
zend_throw_exception_ex(spl_ce_UnexpectedValueException, 0,
|
|
"Cannot convert phar archive \"%s\", unable to copy entry \"%s\" contents", entry->phar->fname, entry->filename);
|
|
return FAILURE;
|
|
}
|
|
|
|
if (entry->fp_type == PHAR_MOD) {
|
|
/* save for potential restore on error */
|
|
entry->cfp = entry->fp;
|
|
entry->fp = NULL;
|
|
}
|
|
|
|
/* set new location of file contents */
|
|
entry->fp_type = PHAR_FP;
|
|
entry->offset = offset;
|
|
return SUCCESS;
|
|
}
|
|
/* }}} */
|
|
|
|
static zend_object *phar_rename_archive(phar_archive_data **sphar, char *ext) /* {{{ */
|
|
{
|
|
const char *oldname = NULL;
|
|
phar_archive_data *phar = *sphar;
|
|
char *oldpath = NULL;
|
|
char *basename = NULL, *basepath = NULL;
|
|
char *newname = NULL, *newpath = NULL;
|
|
zval ret, arg1;
|
|
zend_class_entry *ce;
|
|
char *error = NULL;
|
|
const char *pcr_error;
|
|
size_t ext_len = ext ? strlen(ext) : 0;
|
|
size_t new_len, oldname_len, phar_ext_len;
|
|
phar_archive_data *pphar = NULL;
|
|
php_stream_statbuf ssb;
|
|
|
|
int phar_ext_list_len, i = 0;
|
|
char *ext_pos = NULL;
|
|
/* Array of PHAR extensions, Must be in order, starting with longest
|
|
* ending with the shortest. */
|
|
char *phar_ext_list[] = {
|
|
".phar.tar.bz2",
|
|
".phar.tar.gz",
|
|
".phar.php",
|
|
".phar.bz2",
|
|
".phar.zip",
|
|
".phar.tar",
|
|
".phar.gz",
|
|
".tar.bz2",
|
|
".tar.gz",
|
|
".phar",
|
|
".tar",
|
|
".zip"
|
|
};
|
|
|
|
if (!ext) {
|
|
if (phar->is_zip) {
|
|
|
|
if (phar->is_data) {
|
|
ext = "zip";
|
|
} else {
|
|
ext = "phar.zip";
|
|
}
|
|
|
|
} else if (phar->is_tar) {
|
|
|
|
switch (phar->flags) {
|
|
case PHAR_FILE_COMPRESSED_GZ:
|
|
if (phar->is_data) {
|
|
ext = "tar.gz";
|
|
} else {
|
|
ext = "phar.tar.gz";
|
|
}
|
|
break;
|
|
case PHAR_FILE_COMPRESSED_BZ2:
|
|
if (phar->is_data) {
|
|
ext = "tar.bz2";
|
|
} else {
|
|
ext = "phar.tar.bz2";
|
|
}
|
|
break;
|
|
default:
|
|
if (phar->is_data) {
|
|
ext = "tar";
|
|
} else {
|
|
ext = "phar.tar";
|
|
}
|
|
}
|
|
} else {
|
|
|
|
switch (phar->flags) {
|
|
case PHAR_FILE_COMPRESSED_GZ:
|
|
ext = "phar.gz";
|
|
break;
|
|
case PHAR_FILE_COMPRESSED_BZ2:
|
|
ext = "phar.bz2";
|
|
break;
|
|
default:
|
|
ext = "phar";
|
|
}
|
|
}
|
|
} else if (phar_path_check(&ext, &ext_len, &pcr_error) > pcr_is_ok) {
|
|
|
|
if (phar->is_data) {
|
|
zend_throw_exception_ex(spl_ce_BadMethodCallException, 0, "data phar converted from \"%s\" has invalid extension %s", phar->fname, ext);
|
|
} else {
|
|
zend_throw_exception_ex(spl_ce_BadMethodCallException, 0, "phar converted from \"%s\" has invalid extension %s", phar->fname, ext);
|
|
}
|
|
return NULL;
|
|
}
|
|
|
|
|
|
oldpath = estrndup(phar->fname, phar->fname_len);
|
|
if ((oldname = zend_memrchr(phar->fname, '/', phar->fname_len))) {
|
|
++oldname;
|
|
} else {
|
|
oldname = phar->fname;
|
|
}
|
|
|
|
oldname_len = strlen(oldname);
|
|
/* Copy the old name to create base for the new name */
|
|
basename = estrndup(oldname, oldname_len);
|
|
|
|
phar_ext_list_len = sizeof(phar_ext_list)/sizeof(phar_ext_list[0]);
|
|
/* Remove possible PHAR extensions */
|
|
/* phar_ext_list must be in order of longest extension to shortest */
|
|
for (i=0; i < phar_ext_list_len; i++) {
|
|
phar_ext_len = strlen(phar_ext_list[i]);
|
|
if (phar_ext_len && oldname_len > phar_ext_len) {
|
|
/* Check if the basename strings ends with the extension */
|
|
if (memcmp(phar_ext_list[i], basename + (oldname_len - phar_ext_len), phar_ext_len) == 0) {
|
|
ext_pos = basename + (oldname_len - phar_ext_len);
|
|
ext_pos[0] = '\0';
|
|
break;
|
|
}
|
|
}
|
|
ext_pos = NULL;
|
|
}
|
|
|
|
/* If no default PHAR extension found remove the last extension */
|
|
if (!ext_pos) {
|
|
ext_pos = strrchr(basename, '.');
|
|
if (ext_pos) {
|
|
ext_pos[0] = '\0';
|
|
}
|
|
}
|
|
ext_pos = NULL;
|
|
|
|
if (ext[0] == '.') {
|
|
++ext;
|
|
}
|
|
/* Append extension to the basename */
|
|
spprintf(&newname, 0, "%s.%s", basename, ext);
|
|
efree(basename);
|
|
|
|
basepath = estrndup(oldpath, (strlen(oldpath) - oldname_len));
|
|
new_len = spprintf(&newpath, 0, "%s%s", basepath, newname);
|
|
phar->fname_len = new_len;
|
|
phar->fname = newpath;
|
|
phar->ext = newpath + phar->fname_len - strlen(ext) - 1;
|
|
efree(basepath);
|
|
efree(newname);
|
|
|
|
if (PHAR_G(manifest_cached) && NULL != (pphar = zend_hash_str_find_ptr(&cached_phars, newpath, phar->fname_len))) {
|
|
efree(oldpath);
|
|
zend_throw_exception_ex(spl_ce_BadMethodCallException, 0, "Unable to add newly converted phar \"%s\" to the list of phars, new phar name is in phar.cache_list", phar->fname);
|
|
return NULL;
|
|
}
|
|
|
|
if (NULL != (pphar = zend_hash_str_find_ptr(&(PHAR_G(phar_fname_map)), newpath, phar->fname_len))) {
|
|
if (pphar->fname_len == phar->fname_len && !memcmp(pphar->fname, phar->fname, phar->fname_len)) {
|
|
if (!zend_hash_num_elements(&phar->manifest)) {
|
|
pphar->is_tar = phar->is_tar;
|
|
pphar->is_zip = phar->is_zip;
|
|
pphar->is_data = phar->is_data;
|
|
pphar->flags = phar->flags;
|
|
pphar->fp = phar->fp;
|
|
phar->fp = NULL;
|
|
phar_destroy_phar_data(phar);
|
|
*sphar = NULL;
|
|
phar = pphar;
|
|
phar->refcount++;
|
|
newpath = oldpath;
|
|
goto its_ok;
|
|
}
|
|
}
|
|
|
|
efree(oldpath);
|
|
zend_throw_exception_ex(spl_ce_BadMethodCallException, 0, "Unable to add newly converted phar \"%s\" to the list of phars, a phar with that name already exists", phar->fname);
|
|
return NULL;
|
|
}
|
|
its_ok:
|
|
if (SUCCESS == php_stream_stat_path(newpath, &ssb)) {
|
|
zend_throw_exception_ex(spl_ce_BadMethodCallException, 0, "phar \"%s\" exists and must be unlinked prior to conversion", newpath);
|
|
efree(oldpath);
|
|
return NULL;
|
|
}
|
|
if (!phar->is_data) {
|
|
if (SUCCESS != phar_detect_phar_fname_ext(newpath, phar->fname_len, (const char **) &(phar->ext), &ext_len, 1, 1, 1)) {
|
|
efree(oldpath);
|
|
zend_throw_exception_ex(spl_ce_BadMethodCallException, 0, "phar \"%s\" has invalid extension %s", phar->fname, ext);
|
|
return NULL;
|
|
}
|
|
phar->ext_len = ext_len;
|
|
|
|
if (phar->alias) {
|
|
if (phar->is_temporary_alias) {
|
|
phar->alias = NULL;
|
|
phar->alias_len = 0;
|
|
} else {
|
|
phar->alias = estrndup(newpath, strlen(newpath));
|
|
phar->alias_len = strlen(newpath);
|
|
phar->is_temporary_alias = 1;
|
|
zend_hash_str_update_ptr(&(PHAR_G(phar_alias_map)), newpath, phar->fname_len, phar);
|
|
}
|
|
}
|
|
|
|
} else {
|
|
|
|
if (SUCCESS != phar_detect_phar_fname_ext(newpath, phar->fname_len, (const char **) &(phar->ext), &ext_len, 0, 1, 1)) {
|
|
efree(oldpath);
|
|
zend_throw_exception_ex(spl_ce_BadMethodCallException, 0, "data phar \"%s\" has invalid extension %s", phar->fname, ext);
|
|
return NULL;
|
|
}
|
|
phar->ext_len = ext_len;
|
|
|
|
phar->alias = NULL;
|
|
phar->alias_len = 0;
|
|
}
|
|
|
|
if ((!pphar || phar == pphar) && NULL == zend_hash_str_update_ptr(&(PHAR_G(phar_fname_map)), newpath, phar->fname_len, phar)) {
|
|
efree(oldpath);
|
|
zend_throw_exception_ex(spl_ce_BadMethodCallException, 0, "Unable to add newly converted phar \"%s\" to the list of phars", phar->fname);
|
|
return NULL;
|
|
}
|
|
|
|
phar_flush(phar, 0, 0, 1, &error);
|
|
|
|
if (error) {
|
|
zend_hash_str_del(&(PHAR_G(phar_fname_map)), newpath, phar->fname_len);
|
|
*sphar = NULL;
|
|
zend_throw_exception_ex(spl_ce_BadMethodCallException, 0, "%s", error);
|
|
efree(error);
|
|
efree(oldpath);
|
|
return NULL;
|
|
}
|
|
|
|
efree(oldpath);
|
|
|
|
if (phar->is_data) {
|
|
ce = phar_ce_data;
|
|
} else {
|
|
ce = phar_ce_archive;
|
|
}
|
|
|
|
ZVAL_NULL(&ret);
|
|
if (SUCCESS != object_init_ex(&ret, ce)) {
|
|
zval_ptr_dtor(&ret);
|
|
zend_throw_exception_ex(spl_ce_BadMethodCallException, 0, "Unable to instantiate phar object when converting archive \"%s\"", phar->fname);
|
|
return NULL;
|
|
}
|
|
|
|
ZVAL_STRINGL(&arg1, phar->fname, phar->fname_len);
|
|
|
|
zend_call_known_instance_method_with_1_params(ce->constructor, Z_OBJ(ret), NULL, &arg1);
|
|
zval_ptr_dtor(&arg1);
|
|
return Z_OBJ(ret);
|
|
}
|
|
/* }}} */
|
|
|
|
static zend_object *phar_convert_to_other(phar_archive_data *source, int convert, char *ext, uint32_t flags) /* {{{ */
|
|
{
|
|
phar_archive_data *phar;
|
|
phar_entry_info *entry, newentry;
|
|
zend_object *ret;
|
|
|
|
/* invalidate phar cache */
|
|
PHAR_G(last_phar) = NULL;
|
|
PHAR_G(last_phar_name) = PHAR_G(last_alias) = NULL;
|
|
|
|
phar = (phar_archive_data *) ecalloc(1, sizeof(phar_archive_data));
|
|
/* set whole-archive compression and type from parameter */
|
|
phar->flags = flags;
|
|
phar->is_data = source->is_data;
|
|
|
|
switch (convert) {
|
|
case PHAR_FORMAT_TAR:
|
|
phar->is_tar = 1;
|
|
break;
|
|
case PHAR_FORMAT_ZIP:
|
|
phar->is_zip = 1;
|
|
break;
|
|
default:
|
|
phar->is_data = 0;
|
|
break;
|
|
}
|
|
|
|
zend_hash_init(&(phar->manifest), sizeof(phar_entry_info),
|
|
zend_get_hash_value, destroy_phar_manifest_entry, 0);
|
|
zend_hash_init(&phar->mounted_dirs, sizeof(char *),
|
|
zend_get_hash_value, NULL, 0);
|
|
zend_hash_init(&phar->virtual_dirs, sizeof(char *),
|
|
zend_get_hash_value, NULL, 0);
|
|
|
|
phar->fp = php_stream_fopen_tmpfile();
|
|
if (phar->fp == NULL) {
|
|
zend_throw_exception_ex(phar_ce_PharException, 0, "unable to create temporary file");
|
|
return NULL;
|
|
}
|
|
phar->fname = source->fname;
|
|
phar->fname_len = source->fname_len;
|
|
phar->is_temporary_alias = source->is_temporary_alias;
|
|
phar->alias = source->alias;
|
|
|
|
phar_metadata_tracker_copy(&phar->metadata_tracker, &source->metadata_tracker, phar->is_persistent);
|
|
|
|
/* first copy each file's uncompressed contents to a temporary file and set per-file flags */
|
|
ZEND_HASH_FOREACH_PTR(&source->manifest, entry) {
|
|
|
|
newentry = *entry;
|
|
|
|
if (newentry.link) {
|
|
newentry.link = estrdup(newentry.link);
|
|
goto no_copy;
|
|
}
|
|
|
|
if (newentry.tmp) {
|
|
newentry.tmp = estrdup(newentry.tmp);
|
|
goto no_copy;
|
|
}
|
|
|
|
if (FAILURE == phar_copy_file_contents(&newentry, phar->fp)) {
|
|
zend_hash_destroy(&(phar->manifest));
|
|
php_stream_close(phar->fp);
|
|
efree(phar);
|
|
/* exception already thrown */
|
|
return NULL;
|
|
}
|
|
no_copy:
|
|
newentry.filename = estrndup(newentry.filename, newentry.filename_len);
|
|
|
|
phar_metadata_tracker_clone(&newentry.metadata_tracker);
|
|
|
|
newentry.is_zip = phar->is_zip;
|
|
newentry.is_tar = phar->is_tar;
|
|
|
|
if (newentry.is_tar) {
|
|
newentry.tar_type = (entry->is_dir ? TAR_DIR : TAR_FILE);
|
|
}
|
|
|
|
newentry.is_modified = 1;
|
|
newentry.phar = phar;
|
|
newentry.old_flags = newentry.flags & ~PHAR_ENT_COMPRESSION_MASK; /* remove compression from old_flags */
|
|
phar_set_inode(&newentry);
|
|
zend_hash_str_add_mem(&(phar->manifest), newentry.filename, newentry.filename_len, (void*)&newentry, sizeof(phar_entry_info));
|
|
phar_add_virtual_dirs(phar, newentry.filename, newentry.filename_len);
|
|
} ZEND_HASH_FOREACH_END();
|
|
|
|
if ((ret = phar_rename_archive(&phar, ext))) {
|
|
return ret;
|
|
} else {
|
|
if(phar != NULL) {
|
|
zend_hash_destroy(&(phar->manifest));
|
|
zend_hash_destroy(&(phar->mounted_dirs));
|
|
zend_hash_destroy(&(phar->virtual_dirs));
|
|
if (phar->fp) {
|
|
php_stream_close(phar->fp);
|
|
}
|
|
efree(phar->fname);
|
|
efree(phar);
|
|
}
|
|
return NULL;
|
|
}
|
|
}
|
|
/* }}} */
|
|
|
|
/* {{{ Convert a phar.tar or phar.zip archive to the phar file format. The
|
|
* optional parameter allows the user to determine the new
|
|
* filename extension (default is phar).
|
|
*/
|
|
PHP_METHOD(Phar, convertToExecutable)
|
|
{
|
|
char *ext = NULL;
|
|
int is_data;
|
|
size_t ext_len = 0;
|
|
uint32_t flags;
|
|
zend_object *ret;
|
|
zend_long format, method;
|
|
zend_bool format_is_null = 1, method_is_null = 1;
|
|
|
|
if (zend_parse_parameters(ZEND_NUM_ARGS(), "|l!l!s!", &format, &format_is_null, &method, &method_is_null, &ext, &ext_len) == FAILURE) {
|
|
RETURN_THROWS();
|
|
}
|
|
|
|
PHAR_ARCHIVE_OBJECT();
|
|
|
|
if (PHAR_G(readonly)) {
|
|
zend_throw_exception_ex(spl_ce_UnexpectedValueException, 0,
|
|
"Cannot write out executable phar archive, phar is read-only");
|
|
RETURN_THROWS();
|
|
}
|
|
|
|
if (format_is_null) {
|
|
format = PHAR_FORMAT_SAME;
|
|
}
|
|
switch (format) {
|
|
case 9021976: /* Retained for BC */
|
|
case PHAR_FORMAT_SAME:
|
|
/* by default, use the existing format */
|
|
if (phar_obj->archive->is_tar) {
|
|
format = PHAR_FORMAT_TAR;
|
|
} else if (phar_obj->archive->is_zip) {
|
|
format = PHAR_FORMAT_ZIP;
|
|
} else {
|
|
format = PHAR_FORMAT_PHAR;
|
|
}
|
|
break;
|
|
case PHAR_FORMAT_PHAR:
|
|
case PHAR_FORMAT_TAR:
|
|
case PHAR_FORMAT_ZIP:
|
|
break;
|
|
default:
|
|
zend_throw_exception_ex(spl_ce_BadMethodCallException, 0,
|
|
"Unknown file format specified, please pass one of Phar::PHAR, Phar::TAR or Phar::ZIP");
|
|
RETURN_THROWS();
|
|
}
|
|
|
|
if (method_is_null) {
|
|
flags = phar_obj->archive->flags & PHAR_FILE_COMPRESSION_MASK;
|
|
} else {
|
|
switch (method) {
|
|
case 9021976: /* Retained for BC */
|
|
flags = phar_obj->archive->flags & PHAR_FILE_COMPRESSION_MASK;
|
|
break;
|
|
case 0:
|
|
flags = PHAR_FILE_COMPRESSED_NONE;
|
|
break;
|
|
case PHAR_ENT_COMPRESSED_GZ:
|
|
if (format == PHAR_FORMAT_ZIP) {
|
|
zend_throw_exception_ex(spl_ce_BadMethodCallException, 0,
|
|
"Cannot compress entire archive with gzip, zip archives do not support whole-archive compression");
|
|
RETURN_THROWS();
|
|
}
|
|
|
|
if (!PHAR_G(has_zlib)) {
|
|
zend_throw_exception_ex(spl_ce_BadMethodCallException, 0,
|
|
"Cannot compress entire archive with gzip, enable ext/zlib in php.ini");
|
|
RETURN_THROWS();
|
|
}
|
|
|
|
flags = PHAR_FILE_COMPRESSED_GZ;
|
|
break;
|
|
case PHAR_ENT_COMPRESSED_BZ2:
|
|
if (format == PHAR_FORMAT_ZIP) {
|
|
zend_throw_exception_ex(spl_ce_BadMethodCallException, 0,
|
|
"Cannot compress entire archive with bz2, zip archives do not support whole-archive compression");
|
|
RETURN_THROWS();
|
|
}
|
|
|
|
if (!PHAR_G(has_bz2)) {
|
|
zend_throw_exception_ex(spl_ce_BadMethodCallException, 0,
|
|
"Cannot compress entire archive with bz2, enable ext/bz2 in php.ini");
|
|
RETURN_THROWS();
|
|
}
|
|
|
|
flags = PHAR_FILE_COMPRESSED_BZ2;
|
|
break;
|
|
default:
|
|
zend_throw_exception_ex(spl_ce_BadMethodCallException, 0,
|
|
"Unknown compression specified, please pass one of Phar::GZ or Phar::BZ2");
|
|
RETURN_THROWS();
|
|
}
|
|
}
|
|
|
|
is_data = phar_obj->archive->is_data;
|
|
phar_obj->archive->is_data = 0;
|
|
ret = phar_convert_to_other(phar_obj->archive, format, ext, flags);
|
|
phar_obj->archive->is_data = is_data;
|
|
|
|
if (ret) {
|
|
RETURN_OBJ(ret);
|
|
} else {
|
|
RETURN_NULL();
|
|
}
|
|
}
|
|
/* }}} */
|
|
|
|
/* {{{ Convert an archive to a non-executable .tar or .zip.
|
|
* The optional parameter allows the user to determine the new
|
|
* filename extension (default is .zip or .tar).
|
|
*/
|
|
PHP_METHOD(Phar, convertToData)
|
|
{
|
|
char *ext = NULL;
|
|
int is_data;
|
|
size_t ext_len = 0;
|
|
uint32_t flags;
|
|
zend_object *ret;
|
|
zend_long format, method;
|
|
zend_bool format_is_null = 1, method_is_null = 1;
|
|
|
|
if (zend_parse_parameters(ZEND_NUM_ARGS(), "|l!l!s!", &format, &format_is_null, &method, &method_is_null, &ext, &ext_len) == FAILURE) {
|
|
RETURN_THROWS();
|
|
}
|
|
|
|
PHAR_ARCHIVE_OBJECT();
|
|
|
|
if (format_is_null) {
|
|
format = PHAR_FORMAT_SAME;
|
|
}
|
|
switch (format) {
|
|
case 9021976: /* Retained for BC */
|
|
case PHAR_FORMAT_SAME:
|
|
/* by default, use the existing format */
|
|
if (phar_obj->archive->is_tar) {
|
|
format = PHAR_FORMAT_TAR;
|
|
} else if (phar_obj->archive->is_zip) {
|
|
format = PHAR_FORMAT_ZIP;
|
|
} else {
|
|
zend_throw_exception_ex(spl_ce_UnexpectedValueException, 0,
|
|
"Cannot write out data phar archive, use Phar::TAR or Phar::ZIP");
|
|
RETURN_THROWS();
|
|
}
|
|
break;
|
|
case PHAR_FORMAT_PHAR:
|
|
zend_throw_exception_ex(spl_ce_UnexpectedValueException, 0,
|
|
"Cannot write out data phar archive, use Phar::TAR or Phar::ZIP");
|
|
RETURN_THROWS();
|
|
case PHAR_FORMAT_TAR:
|
|
case PHAR_FORMAT_ZIP:
|
|
break;
|
|
default:
|
|
zend_throw_exception_ex(spl_ce_BadMethodCallException, 0,
|
|
"Unknown file format specified, please pass one of Phar::TAR or Phar::ZIP");
|
|
RETURN_THROWS();
|
|
}
|
|
|
|
if (method_is_null) {
|
|
flags = phar_obj->archive->flags & PHAR_FILE_COMPRESSION_MASK;
|
|
} else {
|
|
switch (method) {
|
|
case 9021976: /* Retained for BC */
|
|
flags = phar_obj->archive->flags & PHAR_FILE_COMPRESSION_MASK;
|
|
break;
|
|
case 0:
|
|
flags = PHAR_FILE_COMPRESSED_NONE;
|
|
break;
|
|
case PHAR_ENT_COMPRESSED_GZ:
|
|
if (format == PHAR_FORMAT_ZIP) {
|
|
zend_throw_exception_ex(spl_ce_BadMethodCallException, 0,
|
|
"Cannot compress entire archive with gzip, zip archives do not support whole-archive compression");
|
|
RETURN_THROWS();
|
|
}
|
|
|
|
if (!PHAR_G(has_zlib)) {
|
|
zend_throw_exception_ex(spl_ce_BadMethodCallException, 0,
|
|
"Cannot compress entire archive with gzip, enable ext/zlib in php.ini");
|
|
RETURN_THROWS();
|
|
}
|
|
|
|
flags = PHAR_FILE_COMPRESSED_GZ;
|
|
break;
|
|
case PHAR_ENT_COMPRESSED_BZ2:
|
|
if (format == PHAR_FORMAT_ZIP) {
|
|
zend_throw_exception_ex(spl_ce_BadMethodCallException, 0,
|
|
"Cannot compress entire archive with bz2, zip archives do not support whole-archive compression");
|
|
RETURN_THROWS();
|
|
}
|
|
|
|
if (!PHAR_G(has_bz2)) {
|
|
zend_throw_exception_ex(spl_ce_BadMethodCallException, 0,
|
|
"Cannot compress entire archive with bz2, enable ext/bz2 in php.ini");
|
|
RETURN_THROWS();
|
|
}
|
|
|
|
flags = PHAR_FILE_COMPRESSED_BZ2;
|
|
break;
|
|
default:
|
|
zend_throw_exception_ex(spl_ce_BadMethodCallException, 0,
|
|
"Unknown compression specified, please pass one of Phar::GZ or Phar::BZ2");
|
|
RETURN_THROWS();
|
|
}
|
|
}
|
|
|
|
is_data = phar_obj->archive->is_data;
|
|
phar_obj->archive->is_data = 1;
|
|
ret = phar_convert_to_other(phar_obj->archive, (int)format, ext, flags);
|
|
phar_obj->archive->is_data = is_data;
|
|
|
|
if (ret) {
|
|
RETURN_OBJ(ret);
|
|
} else {
|
|
RETURN_NULL();
|
|
}
|
|
}
|
|
/* }}} */
|
|
|
|
/* {{{ Returns Phar::GZ or PHAR::BZ2 if the entire archive is compressed
|
|
* (.tar.gz/tar.bz2 and so on), or FALSE otherwise.
|
|
*/
|
|
PHP_METHOD(Phar, isCompressed)
|
|
{
|
|
if (zend_parse_parameters_none() == FAILURE) {
|
|
RETURN_THROWS();
|
|
}
|
|
|
|
PHAR_ARCHIVE_OBJECT();
|
|
|
|
if (phar_obj->archive->flags & PHAR_FILE_COMPRESSED_GZ) {
|
|
RETURN_LONG(PHAR_ENT_COMPRESSED_GZ);
|
|
}
|
|
|
|
if (phar_obj->archive->flags & PHAR_FILE_COMPRESSED_BZ2) {
|
|
RETURN_LONG(PHAR_ENT_COMPRESSED_BZ2);
|
|
}
|
|
|
|
RETURN_FALSE;
|
|
}
|
|
/* }}} */
|
|
|
|
/* {{{ Returns true if phar.readonly=0 or phar is a PharData AND the actual file is writable. */
|
|
PHP_METHOD(Phar, isWritable)
|
|
{
|
|
php_stream_statbuf ssb;
|
|
|
|
if (zend_parse_parameters_none() == FAILURE) {
|
|
RETURN_THROWS();
|
|
}
|
|
|
|
PHAR_ARCHIVE_OBJECT();
|
|
|
|
if (!phar_obj->archive->is_writeable) {
|
|
RETURN_FALSE;
|
|
}
|
|
|
|
if (SUCCESS != php_stream_stat_path(phar_obj->archive->fname, &ssb)) {
|
|
if (phar_obj->archive->is_brandnew) {
|
|
/* assume it works if the file doesn't exist yet */
|
|
RETURN_TRUE;
|
|
}
|
|
RETURN_FALSE;
|
|
}
|
|
|
|
RETURN_BOOL((ssb.sb.st_mode & (S_IWOTH | S_IWGRP | S_IWUSR)) != 0);
|
|
}
|
|
/* }}} */
|
|
|
|
/* {{{ Deletes a named file within the archive. */
|
|
PHP_METHOD(Phar, delete)
|
|
{
|
|
char *fname;
|
|
size_t fname_len;
|
|
char *error;
|
|
phar_entry_info *entry;
|
|
|
|
if (zend_parse_parameters(ZEND_NUM_ARGS(), "p", &fname, &fname_len) == FAILURE) {
|
|
RETURN_THROWS();
|
|
}
|
|
|
|
PHAR_ARCHIVE_OBJECT();
|
|
|
|
if (PHAR_G(readonly) && !phar_obj->archive->is_data) {
|
|
zend_throw_exception_ex(spl_ce_UnexpectedValueException, 0,
|
|
"Cannot write out phar archive, phar is read-only");
|
|
RETURN_THROWS();
|
|
}
|
|
|
|
if (phar_obj->archive->is_persistent && FAILURE == phar_copy_on_write(&(phar_obj->archive))) {
|
|
zend_throw_exception_ex(phar_ce_PharException, 0, "phar \"%s\" is persistent, unable to copy on write", phar_obj->archive->fname);
|
|
RETURN_THROWS();
|
|
}
|
|
if (zend_hash_str_exists(&phar_obj->archive->manifest, fname, (uint32_t) fname_len)) {
|
|
if (NULL != (entry = zend_hash_str_find_ptr(&phar_obj->archive->manifest, fname, (uint32_t) fname_len))) {
|
|
if (entry->is_deleted) {
|
|
/* entry is deleted, but has not been flushed to disk yet */
|
|
RETURN_TRUE;
|
|
} else {
|
|
entry->is_deleted = 1;
|
|
entry->is_modified = 1;
|
|
phar_obj->archive->is_modified = 1;
|
|
}
|
|
}
|
|
} else {
|
|
zend_throw_exception_ex(spl_ce_BadMethodCallException, 0, "Entry %s does not exist and cannot be deleted", fname);
|
|
RETURN_THROWS();
|
|
}
|
|
|
|
phar_flush(phar_obj->archive, NULL, 0, 0, &error);
|
|
if (error) {
|
|
zend_throw_exception_ex(phar_ce_PharException, 0, "%s", error);
|
|
efree(error);
|
|
RETURN_THROWS();
|
|
}
|
|
|
|
RETURN_TRUE;
|
|
}
|
|
/* }}} */
|
|
|
|
/* {{{ Returns the alias for the Phar or NULL. */
|
|
PHP_METHOD(Phar, getAlias)
|
|
{
|
|
if (zend_parse_parameters_none() == FAILURE) {
|
|
RETURN_THROWS();
|
|
}
|
|
|
|
PHAR_ARCHIVE_OBJECT();
|
|
|
|
if (phar_obj->archive->alias && phar_obj->archive->alias != phar_obj->archive->fname) {
|
|
RETURN_STRINGL(phar_obj->archive->alias, phar_obj->archive->alias_len);
|
|
}
|
|
}
|
|
/* }}} */
|
|
|
|
/* {{{ Returns the real path to the phar archive on disk */
|
|
PHP_METHOD(Phar, getPath)
|
|
{
|
|
if (zend_parse_parameters_none() == FAILURE) {
|
|
RETURN_THROWS();
|
|
}
|
|
|
|
PHAR_ARCHIVE_OBJECT();
|
|
|
|
RETURN_STRINGL(phar_obj->archive->fname, phar_obj->archive->fname_len);
|
|
}
|
|
/* }}} */
|
|
|
|
/* {{{ Sets the alias for a Phar archive. The default value is the full path
|
|
* to the archive.
|
|
*/
|
|
PHP_METHOD(Phar, setAlias)
|
|
{
|
|
char *alias, *error, *oldalias;
|
|
phar_archive_data *fd_ptr;
|
|
size_t alias_len, oldalias_len;
|
|
int old_temp, readd = 0;
|
|
|
|
if (zend_parse_parameters(ZEND_NUM_ARGS(), "s", &alias, &alias_len) == FAILURE) {
|
|
RETURN_THROWS();
|
|
}
|
|
|
|
PHAR_ARCHIVE_OBJECT();
|
|
|
|
if (PHAR_G(readonly) && !phar_obj->archive->is_data) {
|
|
zend_throw_exception_ex(spl_ce_UnexpectedValueException, 0,
|
|
"Cannot write out phar archive, phar is read-only");
|
|
RETURN_THROWS();
|
|
}
|
|
|
|
/* invalidate phar cache */
|
|
PHAR_G(last_phar) = NULL;
|
|
PHAR_G(last_phar_name) = PHAR_G(last_alias) = NULL;
|
|
|
|
if (phar_obj->archive->is_data) {
|
|
if (phar_obj->archive->is_tar) {
|
|
zend_throw_exception_ex(spl_ce_UnexpectedValueException, 0,
|
|
"A Phar alias cannot be set in a plain tar archive");
|
|
} else {
|
|
zend_throw_exception_ex(spl_ce_UnexpectedValueException, 0,
|
|
"A Phar alias cannot be set in a plain zip archive");
|
|
}
|
|
RETURN_THROWS();
|
|
}
|
|
|
|
if (alias_len == phar_obj->archive->alias_len && memcmp(phar_obj->archive->alias, alias, alias_len) == 0) {
|
|
RETURN_TRUE;
|
|
}
|
|
if (alias_len && NULL != (fd_ptr = zend_hash_str_find_ptr(&(PHAR_G(phar_alias_map)), alias, alias_len))) {
|
|
spprintf(&error, 0, "alias \"%s\" is already used for archive \"%s\" and cannot be used for other archives", alias, fd_ptr->fname);
|
|
if (SUCCESS == phar_free_alias(fd_ptr, alias, alias_len)) {
|
|
efree(error);
|
|
goto valid_alias;
|
|
}
|
|
zend_throw_exception_ex(phar_ce_PharException, 0, "%s", error);
|
|
efree(error);
|
|
RETURN_THROWS();
|
|
}
|
|
if (!phar_validate_alias(alias, alias_len)) {
|
|
zend_throw_exception_ex(spl_ce_UnexpectedValueException, 0,
|
|
"Invalid alias \"%s\" specified for phar \"%s\"", alias, phar_obj->archive->fname);
|
|
RETURN_THROWS();
|
|
}
|
|
valid_alias:
|
|
if (phar_obj->archive->is_persistent && FAILURE == phar_copy_on_write(&(phar_obj->archive))) {
|
|
zend_throw_exception_ex(phar_ce_PharException, 0, "phar \"%s\" is persistent, unable to copy on write", phar_obj->archive->fname);
|
|
RETURN_THROWS();
|
|
}
|
|
if (phar_obj->archive->alias_len && NULL != (fd_ptr = zend_hash_str_find_ptr(&(PHAR_G(phar_alias_map)), phar_obj->archive->alias, phar_obj->archive->alias_len))) {
|
|
zend_hash_str_del(&(PHAR_G(phar_alias_map)), phar_obj->archive->alias, phar_obj->archive->alias_len);
|
|
readd = 1;
|
|
}
|
|
|
|
oldalias = phar_obj->archive->alias;
|
|
oldalias_len = phar_obj->archive->alias_len;
|
|
old_temp = phar_obj->archive->is_temporary_alias;
|
|
|
|
if (alias_len) {
|
|
phar_obj->archive->alias = estrndup(alias, alias_len);
|
|
} else {
|
|
phar_obj->archive->alias = NULL;
|
|
}
|
|
|
|
phar_obj->archive->alias_len = alias_len;
|
|
phar_obj->archive->is_temporary_alias = 0;
|
|
phar_flush(phar_obj->archive, NULL, 0, 0, &error);
|
|
|
|
if (error) {
|
|
phar_obj->archive->alias = oldalias;
|
|
phar_obj->archive->alias_len = oldalias_len;
|
|
phar_obj->archive->is_temporary_alias = old_temp;
|
|
zend_throw_exception_ex(phar_ce_PharException, 0, "%s", error);
|
|
if (readd) {
|
|
zend_hash_str_add_ptr(&(PHAR_G(phar_alias_map)), oldalias, oldalias_len, phar_obj->archive);
|
|
}
|
|
efree(error);
|
|
RETURN_THROWS();
|
|
}
|
|
|
|
zend_hash_str_add_ptr(&(PHAR_G(phar_alias_map)), alias, alias_len, phar_obj->archive);
|
|
|
|
if (oldalias) {
|
|
efree(oldalias);
|
|
}
|
|
|
|
RETURN_TRUE;
|
|
}
|
|
/* }}} */
|
|
|
|
/* {{{ Return version info of Phar archive */
|
|
PHP_METHOD(Phar, getVersion)
|
|
{
|
|
if (zend_parse_parameters_none() == FAILURE) {
|
|
RETURN_THROWS();
|
|
}
|
|
|
|
PHAR_ARCHIVE_OBJECT();
|
|
|
|
RETURN_STRING(phar_obj->archive->version);
|
|
}
|
|
/* }}} */
|
|
|
|
/* {{{ Do not flush a writeable phar (save its contents) until explicitly requested */
|
|
PHP_METHOD(Phar, startBuffering)
|
|
{
|
|
if (zend_parse_parameters_none() == FAILURE) {
|
|
RETURN_THROWS();
|
|
}
|
|
|
|
PHAR_ARCHIVE_OBJECT();
|
|
|
|
phar_obj->archive->donotflush = 1;
|
|
}
|
|
/* }}} */
|
|
|
|
/* {{{ Returns whether write operations are flushing to disk immediately. */
|
|
PHP_METHOD(Phar, isBuffering)
|
|
{
|
|
if (zend_parse_parameters_none() == FAILURE) {
|
|
RETURN_THROWS();
|
|
}
|
|
|
|
PHAR_ARCHIVE_OBJECT();
|
|
|
|
RETURN_BOOL(phar_obj->archive->donotflush);
|
|
}
|
|
/* }}} */
|
|
|
|
/* {{{ Saves the contents of a modified archive to disk. */
|
|
PHP_METHOD(Phar, stopBuffering)
|
|
{
|
|
char *error;
|
|
|
|
if (zend_parse_parameters_none() == FAILURE) {
|
|
RETURN_THROWS();
|
|
}
|
|
|
|
PHAR_ARCHIVE_OBJECT();
|
|
|
|
if (PHAR_G(readonly) && !phar_obj->archive->is_data) {
|
|
zend_throw_exception_ex(spl_ce_UnexpectedValueException, 0,
|
|
"Cannot write out phar archive, phar is read-only");
|
|
RETURN_THROWS();
|
|
}
|
|
|
|
phar_obj->archive->donotflush = 0;
|
|
phar_flush(phar_obj->archive, 0, 0, 0, &error);
|
|
|
|
if (error) {
|
|
zend_throw_exception_ex(phar_ce_PharException, 0, "%s", error);
|
|
efree(error);
|
|
}
|
|
}
|
|
/* }}} */
|
|
|
|
/* {{{ Change the stub in a phar, phar.tar or phar.zip archive to something other
|
|
* than the default. The stub *must* end with a call to __HALT_COMPILER().
|
|
*/
|
|
PHP_METHOD(Phar, setStub)
|
|
{
|
|
zval *zstub;
|
|
char *stub, *error;
|
|
size_t stub_len;
|
|
zend_long len = -1;
|
|
php_stream *stream;
|
|
|
|
PHAR_ARCHIVE_OBJECT();
|
|
|
|
if (PHAR_G(readonly) && !phar_obj->archive->is_data) {
|
|
zend_throw_exception_ex(spl_ce_UnexpectedValueException, 0,
|
|
"Cannot change stub, phar is read-only");
|
|
RETURN_THROWS();
|
|
}
|
|
|
|
if (phar_obj->archive->is_data) {
|
|
if (phar_obj->archive->is_tar) {
|
|
zend_throw_exception_ex(spl_ce_UnexpectedValueException, 0,
|
|
"A Phar stub cannot be set in a plain tar archive");
|
|
} else {
|
|
zend_throw_exception_ex(spl_ce_UnexpectedValueException, 0,
|
|
"A Phar stub cannot be set in a plain zip archive");
|
|
}
|
|
RETURN_THROWS();
|
|
}
|
|
|
|
if (zend_parse_parameters_ex(ZEND_PARSE_PARAMS_QUIET, ZEND_NUM_ARGS(), "r|l", &zstub, &len) == SUCCESS) {
|
|
if ((php_stream_from_zval_no_verify(stream, zstub)) != NULL) {
|
|
if (len > 0) {
|
|
len = -len;
|
|
} else {
|
|
len = -1;
|
|
}
|
|
if (phar_obj->archive->is_persistent && FAILURE == phar_copy_on_write(&(phar_obj->archive))) {
|
|
zend_throw_exception_ex(phar_ce_PharException, 0, "phar \"%s\" is persistent, unable to copy on write", phar_obj->archive->fname);
|
|
RETURN_THROWS();
|
|
}
|
|
phar_flush(phar_obj->archive, (char *) zstub, len, 0, &error);
|
|
if (error) {
|
|
zend_throw_exception_ex(phar_ce_PharException, 0, "%s", error);
|
|
efree(error);
|
|
}
|
|
RETURN_TRUE;
|
|
} else {
|
|
zend_throw_exception_ex(spl_ce_UnexpectedValueException, 0,
|
|
"Cannot change stub, unable to read from input stream");
|
|
}
|
|
} else if (zend_parse_parameters(ZEND_NUM_ARGS(), "s", &stub, &stub_len) == SUCCESS) {
|
|
if (phar_obj->archive->is_persistent && FAILURE == phar_copy_on_write(&(phar_obj->archive))) {
|
|
zend_throw_exception_ex(phar_ce_PharException, 0, "phar \"%s\" is persistent, unable to copy on write", phar_obj->archive->fname);
|
|
RETURN_THROWS();
|
|
}
|
|
phar_flush(phar_obj->archive, stub, stub_len, 0, &error);
|
|
|
|
if (error) {
|
|
zend_throw_exception_ex(phar_ce_PharException, 0, "%s", error);
|
|
efree(error);
|
|
RETURN_THROWS();
|
|
}
|
|
|
|
RETURN_TRUE;
|
|
}
|
|
|
|
RETURN_THROWS();
|
|
}
|
|
/* }}} */
|
|
|
|
/* {{{ In a pure phar archive, sets a stub that can be used to run the archive
|
|
* regardless of whether the phar extension is available. The first parameter
|
|
* is the CLI startup filename, which defaults to "index.php". The second
|
|
* parameter is the web startup filename and also defaults to "index.php"
|
|
* (falling back to CLI behaviour).
|
|
* Both parameters are optional.
|
|
* In a phar.zip or phar.tar archive, the default stub is used only to
|
|
* identify the archive to the extension as a Phar object. This allows the
|
|
* extension to treat phar.zip and phar.tar types as honorary phars. Since
|
|
* files cannot be loaded via this kind of stub, no parameters are accepted
|
|
* when the Phar object is zip- or tar-based.
|
|
*/
|
|
PHP_METHOD(Phar, setDefaultStub)
|
|
{
|
|
char *index = NULL, *webindex = NULL, *error = NULL;
|
|
zend_string *stub = NULL;
|
|
size_t index_len = 0, webindex_len = 0;
|
|
int created_stub = 0;
|
|
|
|
if (zend_parse_parameters(ZEND_NUM_ARGS(), "|s!s!", &index, &index_len, &webindex, &webindex_len) == FAILURE) {
|
|
RETURN_THROWS();
|
|
}
|
|
|
|
PHAR_ARCHIVE_OBJECT();
|
|
|
|
if (phar_obj->archive->is_data) {
|
|
if (phar_obj->archive->is_tar) {
|
|
zend_throw_exception_ex(spl_ce_UnexpectedValueException, 0,
|
|
"A Phar stub cannot be set in a plain tar archive");
|
|
} else {
|
|
zend_throw_exception_ex(spl_ce_UnexpectedValueException, 0,
|
|
"A Phar stub cannot be set in a plain zip archive");
|
|
}
|
|
RETURN_THROWS();
|
|
}
|
|
|
|
if ((index || webindex) && (phar_obj->archive->is_tar || phar_obj->archive->is_zip)) {
|
|
zend_argument_value_error(index ? 1 : 2, "must be null for a tar- or zip-based phar stub, string given");
|
|
RETURN_THROWS();
|
|
}
|
|
|
|
if (PHAR_G(readonly)) {
|
|
zend_throw_exception_ex(spl_ce_UnexpectedValueException, 0,
|
|
"Cannot change stub: phar.readonly=1");
|
|
RETURN_THROWS();
|
|
}
|
|
|
|
if (!phar_obj->archive->is_tar && !phar_obj->archive->is_zip) {
|
|
stub = phar_create_default_stub(index, webindex, &error);
|
|
|
|
if (error) {
|
|
zend_throw_exception_ex(spl_ce_UnexpectedValueException, 0, "%s", error);
|
|
efree(error);
|
|
if (stub) {
|
|
zend_string_free(stub);
|
|
}
|
|
RETURN_THROWS();
|
|
}
|
|
|
|
created_stub = 1;
|
|
}
|
|
|
|
if (phar_obj->archive->is_persistent && FAILURE == phar_copy_on_write(&(phar_obj->archive))) {
|
|
zend_throw_exception_ex(phar_ce_PharException, 0, "phar \"%s\" is persistent, unable to copy on write", phar_obj->archive->fname);
|
|
RETURN_THROWS();
|
|
}
|
|
phar_flush(phar_obj->archive, stub ? ZSTR_VAL(stub) : 0, stub ? ZSTR_LEN(stub) : 0, 1, &error);
|
|
|
|
if (created_stub) {
|
|
zend_string_free(stub);
|
|
}
|
|
|
|
if (error) {
|
|
zend_throw_exception_ex(phar_ce_PharException, 0, "%s", error);
|
|
efree(error);
|
|
RETURN_THROWS();
|
|
}
|
|
|
|
RETURN_TRUE;
|
|
}
|
|
/* }}} */
|
|
|
|
/* {{{ Sets the signature algorithm for a phar and applies it. The signature
|
|
* algorithm must be one of Phar::MD5, Phar::SHA1, Phar::SHA256,
|
|
* Phar::SHA512, or Phar::OPENSSL. Note that zip- based phar archives
|
|
* cannot support signatures.
|
|
*/
|
|
PHP_METHOD(Phar, setSignatureAlgorithm)
|
|
{
|
|
zend_long algo;
|
|
char *error, *key = NULL;
|
|
size_t key_len = 0;
|
|
|
|
if (zend_parse_parameters(ZEND_NUM_ARGS(), "l|s!", &algo, &key, &key_len) != SUCCESS) {
|
|
RETURN_THROWS();
|
|
}
|
|
|
|
PHAR_ARCHIVE_OBJECT();
|
|
|
|
if (PHAR_G(readonly) && !phar_obj->archive->is_data) {
|
|
zend_throw_exception_ex(spl_ce_UnexpectedValueException, 0,
|
|
"Cannot set signature algorithm, phar is read-only");
|
|
RETURN_THROWS();
|
|
}
|
|
|
|
switch (algo) {
|
|
case PHAR_SIG_SHA256:
|
|
case PHAR_SIG_SHA512:
|
|
case PHAR_SIG_MD5:
|
|
case PHAR_SIG_SHA1:
|
|
case PHAR_SIG_OPENSSL:
|
|
if (phar_obj->archive->is_persistent && FAILURE == phar_copy_on_write(&(phar_obj->archive))) {
|
|
zend_throw_exception_ex(phar_ce_PharException, 0, "phar \"%s\" is persistent, unable to copy on write", phar_obj->archive->fname);
|
|
RETURN_THROWS();
|
|
}
|
|
phar_obj->archive->sig_flags = (php_uint32)algo;
|
|
phar_obj->archive->is_modified = 1;
|
|
PHAR_G(openssl_privatekey) = key;
|
|
PHAR_G(openssl_privatekey_len) = key_len;
|
|
|
|
phar_flush(phar_obj->archive, 0, 0, 0, &error);
|
|
if (error) {
|
|
zend_throw_exception_ex(phar_ce_PharException, 0, "%s", error);
|
|
efree(error);
|
|
}
|
|
break;
|
|
default:
|
|
zend_throw_exception_ex(spl_ce_UnexpectedValueException, 0,
|
|
"Unknown signature algorithm specified");
|
|
}
|
|
}
|
|
/* }}} */
|
|
|
|
/* {{{ Returns a hash signature, or FALSE if the archive is unsigned. */
|
|
PHP_METHOD(Phar, getSignature)
|
|
{
|
|
if (zend_parse_parameters_none() == FAILURE) {
|
|
RETURN_THROWS();
|
|
}
|
|
|
|
PHAR_ARCHIVE_OBJECT();
|
|
|
|
if (phar_obj->archive->signature) {
|
|
zend_string *unknown;
|
|
|
|
array_init(return_value);
|
|
add_assoc_stringl(return_value, "hash", phar_obj->archive->signature, phar_obj->archive->sig_len);
|
|
switch(phar_obj->archive->sig_flags) {
|
|
case PHAR_SIG_MD5:
|
|
add_assoc_stringl(return_value, "hash_type", "MD5", 3);
|
|
break;
|
|
case PHAR_SIG_SHA1:
|
|
add_assoc_stringl(return_value, "hash_type", "SHA-1", 5);
|
|
break;
|
|
case PHAR_SIG_SHA256:
|
|
add_assoc_stringl(return_value, "hash_type", "SHA-256", 7);
|
|
break;
|
|
case PHAR_SIG_SHA512:
|
|
add_assoc_stringl(return_value, "hash_type", "SHA-512", 7);
|
|
break;
|
|
case PHAR_SIG_OPENSSL:
|
|
add_assoc_stringl(return_value, "hash_type", "OpenSSL", 7);
|
|
break;
|
|
default:
|
|
unknown = strpprintf(0, "Unknown (%u)", phar_obj->archive->sig_flags);
|
|
add_assoc_str(return_value, "hash_type", unknown);
|
|
break;
|
|
}
|
|
} else {
|
|
RETURN_FALSE;
|
|
}
|
|
}
|
|
/* }}} */
|
|
|
|
/* {{{ Return whether phar was modified */
|
|
PHP_METHOD(Phar, getModified)
|
|
{
|
|
if (zend_parse_parameters_none() == FAILURE) {
|
|
RETURN_THROWS();
|
|
}
|
|
|
|
PHAR_ARCHIVE_OBJECT();
|
|
|
|
RETURN_BOOL(phar_obj->archive->is_modified);
|
|
}
|
|
/* }}} */
|
|
|
|
static int phar_set_compression(zval *zv, void *argument) /* {{{ */
|
|
{
|
|
phar_entry_info *entry = (phar_entry_info *)Z_PTR_P(zv);
|
|
uint32_t compress = *(uint32_t *)argument;
|
|
|
|
if (entry->is_deleted) {
|
|
return ZEND_HASH_APPLY_KEEP;
|
|
}
|
|
|
|
entry->old_flags = entry->flags;
|
|
entry->flags &= ~PHAR_ENT_COMPRESSION_MASK;
|
|
entry->flags |= compress;
|
|
entry->is_modified = 1;
|
|
return ZEND_HASH_APPLY_KEEP;
|
|
}
|
|
/* }}} */
|
|
|
|
static int phar_test_compression(zval *zv, void *argument) /* {{{ */
|
|
{
|
|
phar_entry_info *entry = (phar_entry_info *)Z_PTR_P(zv);
|
|
|
|
if (entry->is_deleted) {
|
|
return ZEND_HASH_APPLY_KEEP;
|
|
}
|
|
|
|
if (!PHAR_G(has_bz2)) {
|
|
if (entry->flags & PHAR_ENT_COMPRESSED_BZ2) {
|
|
*(int *) argument = 0;
|
|
}
|
|
}
|
|
|
|
if (!PHAR_G(has_zlib)) {
|
|
if (entry->flags & PHAR_ENT_COMPRESSED_GZ) {
|
|
*(int *) argument = 0;
|
|
}
|
|
}
|
|
|
|
return ZEND_HASH_APPLY_KEEP;
|
|
}
|
|
/* }}} */
|
|
|
|
static void pharobj_set_compression(HashTable *manifest, uint32_t compress) /* {{{ */
|
|
{
|
|
zend_hash_apply_with_argument(manifest, phar_set_compression, &compress);
|
|
}
|
|
/* }}} */
|
|
|
|
static int pharobj_cancompress(HashTable *manifest) /* {{{ */
|
|
{
|
|
int test;
|
|
|
|
test = 1;
|
|
zend_hash_apply_with_argument(manifest, phar_test_compression, &test);
|
|
return test;
|
|
}
|
|
/* }}} */
|
|
|
|
/* {{{ Compress a .tar, or .phar.tar with whole-file compression
|
|
* The parameter can be one of Phar::GZ or Phar::BZ2 to specify
|
|
* the kind of compression desired
|
|
*/
|
|
PHP_METHOD(Phar, compress)
|
|
{
|
|
zend_long method;
|
|
char *ext = NULL;
|
|
size_t ext_len = 0;
|
|
uint32_t flags;
|
|
zend_object *ret;
|
|
|
|
if (zend_parse_parameters(ZEND_NUM_ARGS(), "l|s!", &method, &ext, &ext_len) == FAILURE) {
|
|
RETURN_THROWS();
|
|
}
|
|
|
|
PHAR_ARCHIVE_OBJECT();
|
|
|
|
if (PHAR_G(readonly) && !phar_obj->archive->is_data) {
|
|
zend_throw_exception_ex(spl_ce_UnexpectedValueException, 0,
|
|
"Cannot compress phar archive, phar is read-only");
|
|
RETURN_THROWS();
|
|
}
|
|
|
|
if (phar_obj->archive->is_zip) {
|
|
zend_throw_exception_ex(spl_ce_UnexpectedValueException, 0,
|
|
"Cannot compress zip-based archives with whole-archive compression");
|
|
RETURN_THROWS();
|
|
}
|
|
|
|
switch (method) {
|
|
case 0:
|
|
flags = PHAR_FILE_COMPRESSED_NONE;
|
|
break;
|
|
case PHAR_ENT_COMPRESSED_GZ:
|
|
if (!PHAR_G(has_zlib)) {
|
|
zend_throw_exception_ex(spl_ce_BadMethodCallException, 0,
|
|
"Cannot compress entire archive with gzip, enable ext/zlib in php.ini");
|
|
RETURN_THROWS();
|
|
}
|
|
flags = PHAR_FILE_COMPRESSED_GZ;
|
|
break;
|
|
|
|
case PHAR_ENT_COMPRESSED_BZ2:
|
|
if (!PHAR_G(has_bz2)) {
|
|
zend_throw_exception_ex(spl_ce_BadMethodCallException, 0,
|
|
"Cannot compress entire archive with bz2, enable ext/bz2 in php.ini");
|
|
return;
|
|
}
|
|
flags = PHAR_FILE_COMPRESSED_BZ2;
|
|
break;
|
|
default:
|
|
zend_throw_exception_ex(spl_ce_BadMethodCallException, 0,
|
|
"Unknown compression specified, please pass one of Phar::GZ or Phar::BZ2");
|
|
RETURN_THROWS();
|
|
}
|
|
|
|
if (phar_obj->archive->is_tar) {
|
|
ret = phar_convert_to_other(phar_obj->archive, PHAR_FORMAT_TAR, ext, flags);
|
|
} else {
|
|
ret = phar_convert_to_other(phar_obj->archive, PHAR_FORMAT_PHAR, ext, flags);
|
|
}
|
|
|
|
if (ret) {
|
|
RETURN_OBJ(ret);
|
|
} else {
|
|
RETURN_NULL();
|
|
}
|
|
}
|
|
/* }}} */
|
|
|
|
/* {{{ Decompress a .tar, or .phar.tar with whole-file compression */
|
|
PHP_METHOD(Phar, decompress)
|
|
{
|
|
char *ext = NULL;
|
|
size_t ext_len = 0;
|
|
zend_object *ret;
|
|
|
|
if (zend_parse_parameters(ZEND_NUM_ARGS(), "|s!", &ext, &ext_len) == FAILURE) {
|
|
RETURN_THROWS();
|
|
}
|
|
|
|
PHAR_ARCHIVE_OBJECT();
|
|
|
|
if (PHAR_G(readonly) && !phar_obj->archive->is_data) {
|
|
zend_throw_exception_ex(spl_ce_UnexpectedValueException, 0,
|
|
"Cannot decompress phar archive, phar is read-only");
|
|
RETURN_THROWS();
|
|
}
|
|
|
|
if (phar_obj->archive->is_zip) {
|
|
zend_throw_exception_ex(spl_ce_UnexpectedValueException, 0,
|
|
"Cannot decompress zip-based archives with whole-archive compression");
|
|
RETURN_THROWS();
|
|
}
|
|
|
|
if (phar_obj->archive->is_tar) {
|
|
ret = phar_convert_to_other(phar_obj->archive, PHAR_FORMAT_TAR, ext, PHAR_FILE_COMPRESSED_NONE);
|
|
} else {
|
|
ret = phar_convert_to_other(phar_obj->archive, PHAR_FORMAT_PHAR, ext, PHAR_FILE_COMPRESSED_NONE);
|
|
}
|
|
|
|
if (ret) {
|
|
RETURN_OBJ(ret);
|
|
} else {
|
|
RETURN_NULL();
|
|
}
|
|
}
|
|
/* }}} */
|
|
|
|
/* {{{ Compress all files within a phar or zip archive using the specified compression
|
|
* The parameter can be one of Phar::GZ or Phar::BZ2 to specify
|
|
* the kind of compression desired
|
|
*/
|
|
PHP_METHOD(Phar, compressFiles)
|
|
{
|
|
char *error;
|
|
uint32_t flags;
|
|
zend_long method;
|
|
|
|
if (zend_parse_parameters(ZEND_NUM_ARGS(), "l", &method) == FAILURE) {
|
|
RETURN_THROWS();
|
|
}
|
|
|
|
PHAR_ARCHIVE_OBJECT();
|
|
|
|
if (PHAR_G(readonly) && !phar_obj->archive->is_data) {
|
|
zend_throw_exception_ex(spl_ce_BadMethodCallException, 0,
|
|
"Phar is readonly, cannot change compression");
|
|
RETURN_THROWS();
|
|
}
|
|
|
|
switch (method) {
|
|
case PHAR_ENT_COMPRESSED_GZ:
|
|
if (!PHAR_G(has_zlib)) {
|
|
zend_throw_exception_ex(spl_ce_BadMethodCallException, 0,
|
|
"Cannot compress files within archive with gzip, enable ext/zlib in php.ini");
|
|
RETURN_THROWS();
|
|
}
|
|
flags = PHAR_ENT_COMPRESSED_GZ;
|
|
break;
|
|
|
|
case PHAR_ENT_COMPRESSED_BZ2:
|
|
if (!PHAR_G(has_bz2)) {
|
|
zend_throw_exception_ex(spl_ce_BadMethodCallException, 0,
|
|
"Cannot compress files within archive with bz2, enable ext/bz2 in php.ini");
|
|
RETURN_THROWS();
|
|
}
|
|
flags = PHAR_ENT_COMPRESSED_BZ2;
|
|
break;
|
|
default:
|
|
zend_throw_exception_ex(spl_ce_BadMethodCallException, 0,
|
|
"Unknown compression specified, please pass one of Phar::GZ or Phar::BZ2");
|
|
RETURN_THROWS();
|
|
}
|
|
|
|
if (phar_obj->archive->is_tar) {
|
|
zend_throw_exception_ex(spl_ce_BadMethodCallException, 0,
|
|
"Cannot compress with Gzip compression, tar archives cannot compress individual files, use compress() to compress the whole archive");
|
|
RETURN_THROWS();
|
|
}
|
|
|
|
if (!pharobj_cancompress(&phar_obj->archive->manifest)) {
|
|
if (flags == PHAR_FILE_COMPRESSED_GZ) {
|
|
zend_throw_exception_ex(spl_ce_BadMethodCallException, 0,
|
|
"Cannot compress all files as Gzip, some are compressed as bzip2 and cannot be decompressed");
|
|
} else {
|
|
zend_throw_exception_ex(spl_ce_BadMethodCallException, 0,
|
|
"Cannot compress all files as Bzip2, some are compressed as gzip and cannot be decompressed");
|
|
}
|
|
RETURN_THROWS();
|
|
}
|
|
|
|
if (phar_obj->archive->is_persistent && FAILURE == phar_copy_on_write(&(phar_obj->archive))) {
|
|
zend_throw_exception_ex(phar_ce_PharException, 0, "phar \"%s\" is persistent, unable to copy on write", phar_obj->archive->fname);
|
|
RETURN_THROWS();
|
|
}
|
|
pharobj_set_compression(&phar_obj->archive->manifest, flags);
|
|
phar_obj->archive->is_modified = 1;
|
|
phar_flush(phar_obj->archive, 0, 0, 0, &error);
|
|
|
|
if (error) {
|
|
zend_throw_exception_ex(spl_ce_BadMethodCallException, 0, "%s", error);
|
|
efree(error);
|
|
}
|
|
}
|
|
/* }}} */
|
|
|
|
/* {{{ decompress every file */
|
|
PHP_METHOD(Phar, decompressFiles)
|
|
{
|
|
char *error;
|
|
|
|
if (zend_parse_parameters_none() == FAILURE) {
|
|
RETURN_THROWS();
|
|
|
|
}
|
|
|
|
PHAR_ARCHIVE_OBJECT();
|
|
|
|
if (PHAR_G(readonly) && !phar_obj->archive->is_data) {
|
|
zend_throw_exception_ex(spl_ce_BadMethodCallException, 0,
|
|
"Phar is readonly, cannot change compression");
|
|
RETURN_THROWS();
|
|
}
|
|
|
|
if (!pharobj_cancompress(&phar_obj->archive->manifest)) {
|
|
zend_throw_exception_ex(spl_ce_BadMethodCallException, 0,
|
|
"Cannot decompress all files, some are compressed as bzip2 or gzip and cannot be decompressed");
|
|
RETURN_THROWS();
|
|
}
|
|
|
|
if (phar_obj->archive->is_tar) {
|
|
RETURN_TRUE;
|
|
} else {
|
|
if (phar_obj->archive->is_persistent && FAILURE == phar_copy_on_write(&(phar_obj->archive))) {
|
|
zend_throw_exception_ex(phar_ce_PharException, 0, "phar \"%s\" is persistent, unable to copy on write", phar_obj->archive->fname);
|
|
RETURN_THROWS();
|
|
}
|
|
pharobj_set_compression(&phar_obj->archive->manifest, PHAR_ENT_COMPRESSED_NONE);
|
|
}
|
|
|
|
phar_obj->archive->is_modified = 1;
|
|
phar_flush(phar_obj->archive, 0, 0, 0, &error);
|
|
|
|
if (error) {
|
|
zend_throw_exception_ex(spl_ce_BadMethodCallException, 0, "%s", error);
|
|
efree(error);
|
|
}
|
|
|
|
RETURN_TRUE;
|
|
}
|
|
/* }}} */
|
|
|
|
/* {{{ copy a file internal to the phar archive to another new file within the phar */
|
|
PHP_METHOD(Phar, copy)
|
|
{
|
|
char *oldfile, *newfile, *error;
|
|
const char *pcr_error;
|
|
size_t oldfile_len, newfile_len;
|
|
phar_entry_info *oldentry, newentry = {0}, *temp;
|
|
size_t tmp_len = 0;
|
|
|
|
if (zend_parse_parameters(ZEND_NUM_ARGS(), "pp", &oldfile, &oldfile_len, &newfile, &newfile_len) == FAILURE) {
|
|
RETURN_THROWS();
|
|
}
|
|
|
|
PHAR_ARCHIVE_OBJECT();
|
|
|
|
if (PHAR_G(readonly) && !phar_obj->archive->is_data) {
|
|
zend_throw_exception_ex(spl_ce_UnexpectedValueException, 0,
|
|
"Cannot copy \"%s\" to \"%s\", phar is read-only", oldfile, newfile);
|
|
RETURN_THROWS();
|
|
}
|
|
|
|
if (oldfile_len >= sizeof(".phar")-1 && !memcmp(oldfile, ".phar", sizeof(".phar")-1)) {
|
|
/* can't copy a meta file */
|
|
zend_throw_exception_ex(spl_ce_UnexpectedValueException, 0,
|
|
"file \"%s\" cannot be copied to file \"%s\", cannot copy Phar meta-file in %s", oldfile, newfile, phar_obj->archive->fname);
|
|
RETURN_THROWS();
|
|
}
|
|
|
|
if (newfile_len >= sizeof(".phar")-1 && !memcmp(newfile, ".phar", sizeof(".phar")-1)) {
|
|
/* can't copy a meta file */
|
|
zend_throw_exception_ex(spl_ce_UnexpectedValueException, 0,
|
|
"file \"%s\" cannot be copied to file \"%s\", cannot copy to Phar meta-file in %s", oldfile, newfile, phar_obj->archive->fname);
|
|
RETURN_THROWS();
|
|
}
|
|
|
|
if (!zend_hash_str_exists(&phar_obj->archive->manifest, oldfile, (uint32_t) oldfile_len) || NULL == (oldentry = zend_hash_str_find_ptr(&phar_obj->archive->manifest, oldfile, (uint32_t) oldfile_len)) || oldentry->is_deleted) {
|
|
zend_throw_exception_ex(spl_ce_UnexpectedValueException, 0,
|
|
"file \"%s\" cannot be copied to file \"%s\", file does not exist in %s", oldfile, newfile, phar_obj->archive->fname);
|
|
RETURN_THROWS();
|
|
}
|
|
|
|
if (zend_hash_str_exists(&phar_obj->archive->manifest, newfile, (uint32_t) newfile_len)) {
|
|
if (NULL != (temp = zend_hash_str_find_ptr(&phar_obj->archive->manifest, newfile, (uint32_t) newfile_len)) || !temp->is_deleted) {
|
|
zend_throw_exception_ex(spl_ce_UnexpectedValueException, 0,
|
|
"file \"%s\" cannot be copied to file \"%s\", file must not already exist in phar %s", oldfile, newfile, phar_obj->archive->fname);
|
|
RETURN_THROWS();
|
|
}
|
|
}
|
|
|
|
tmp_len = newfile_len;
|
|
if (phar_path_check(&newfile, &tmp_len, &pcr_error) > pcr_is_ok) {
|
|
zend_throw_exception_ex(spl_ce_UnexpectedValueException, 0,
|
|
"file \"%s\" contains invalid characters %s, cannot be copied from \"%s\" in phar %s", newfile, pcr_error, oldfile, phar_obj->archive->fname);
|
|
RETURN_THROWS();
|
|
}
|
|
newfile_len = tmp_len;
|
|
|
|
if (phar_obj->archive->is_persistent) {
|
|
if (FAILURE == phar_copy_on_write(&(phar_obj->archive))) {
|
|
zend_throw_exception_ex(phar_ce_PharException, 0, "phar \"%s\" is persistent, unable to copy on write", phar_obj->archive->fname);
|
|
RETURN_THROWS();
|
|
}
|
|
/* re-populate with copied-on-write entry */
|
|
oldentry = zend_hash_str_find_ptr(&phar_obj->archive->manifest, oldfile, (uint32_t) oldfile_len);
|
|
}
|
|
|
|
memcpy((void *) &newentry, oldentry, sizeof(phar_entry_info));
|
|
|
|
phar_metadata_tracker_clone(&newentry.metadata_tracker);
|
|
|
|
newentry.filename = estrndup(newfile, newfile_len);
|
|
newentry.filename_len = newfile_len;
|
|
newentry.fp_refcount = 0;
|
|
|
|
if (oldentry->fp_type != PHAR_FP) {
|
|
if (FAILURE == phar_copy_entry_fp(oldentry, &newentry, &error)) {
|
|
efree(newentry.filename);
|
|
php_stream_close(newentry.fp);
|
|
zend_throw_exception_ex(phar_ce_PharException, 0, "%s", error);
|
|
efree(error);
|
|
RETURN_THROWS();
|
|
}
|
|
}
|
|
|
|
zend_hash_str_add_mem(&oldentry->phar->manifest, newfile, newfile_len, &newentry, sizeof(phar_entry_info));
|
|
phar_obj->archive->is_modified = 1;
|
|
phar_flush(phar_obj->archive, 0, 0, 0, &error);
|
|
|
|
if (error) {
|
|
zend_throw_exception_ex(phar_ce_PharException, 0, "%s", error);
|
|
efree(error);
|
|
}
|
|
|
|
RETURN_TRUE;
|
|
}
|
|
/* }}} */
|
|
|
|
/* {{{ determines whether a file exists in the phar */
|
|
PHP_METHOD(Phar, offsetExists)
|
|
{
|
|
char *fname;
|
|
size_t fname_len;
|
|
phar_entry_info *entry;
|
|
|
|
if (zend_parse_parameters(ZEND_NUM_ARGS(), "p", &fname, &fname_len) == FAILURE) {
|
|
RETURN_THROWS();
|
|
}
|
|
|
|
PHAR_ARCHIVE_OBJECT();
|
|
|
|
if (zend_hash_str_exists(&phar_obj->archive->manifest, fname, (uint32_t) fname_len)) {
|
|
if (NULL != (entry = zend_hash_str_find_ptr(&phar_obj->archive->manifest, fname, (uint32_t) fname_len))) {
|
|
if (entry->is_deleted) {
|
|
/* entry is deleted, but has not been flushed to disk yet */
|
|
RETURN_FALSE;
|
|
}
|
|
}
|
|
|
|
if (fname_len >= sizeof(".phar")-1 && !memcmp(fname, ".phar", sizeof(".phar")-1)) {
|
|
/* none of these are real files, so they don't exist */
|
|
RETURN_FALSE;
|
|
}
|
|
RETURN_TRUE;
|
|
} else {
|
|
if (zend_hash_str_exists(&phar_obj->archive->virtual_dirs, fname, (uint32_t) fname_len)) {
|
|
RETURN_TRUE;
|
|
}
|
|
RETURN_FALSE;
|
|
}
|
|
}
|
|
/* }}} */
|
|
|
|
/* {{{ get a PharFileInfo object for a specific file */
|
|
PHP_METHOD(Phar, offsetGet)
|
|
{
|
|
char *fname, *error;
|
|
size_t fname_len;
|
|
zval zfname;
|
|
phar_entry_info *entry;
|
|
zend_string *sfname;
|
|
|
|
if (zend_parse_parameters(ZEND_NUM_ARGS(), "p", &fname, &fname_len) == FAILURE) {
|
|
RETURN_THROWS();
|
|
}
|
|
|
|
PHAR_ARCHIVE_OBJECT();
|
|
|
|
/* security is 0 here so that we can get a better error message than "entry doesn't exist" */
|
|
if (!(entry = phar_get_entry_info_dir(phar_obj->archive, fname, fname_len, 1, &error, 0))) {
|
|
zend_throw_exception_ex(spl_ce_BadMethodCallException, 0, "Entry %s does not exist%s%s", fname, error?", ":"", error?error:"");
|
|
} else {
|
|
if (fname_len == sizeof(".phar/stub.php")-1 && !memcmp(fname, ".phar/stub.php", sizeof(".phar/stub.php")-1)) {
|
|
zend_throw_exception_ex(spl_ce_BadMethodCallException, 0, "Cannot get stub \".phar/stub.php\" directly in phar \"%s\", use getStub", phar_obj->archive->fname);
|
|
RETURN_THROWS();
|
|
}
|
|
|
|
if (fname_len == sizeof(".phar/alias.txt")-1 && !memcmp(fname, ".phar/alias.txt", sizeof(".phar/alias.txt")-1)) {
|
|
zend_throw_exception_ex(spl_ce_BadMethodCallException, 0, "Cannot get alias \".phar/alias.txt\" directly in phar \"%s\", use getAlias", phar_obj->archive->fname);
|
|
RETURN_THROWS();
|
|
}
|
|
|
|
if (fname_len >= sizeof(".phar")-1 && !memcmp(fname, ".phar", sizeof(".phar")-1)) {
|
|
zend_throw_exception_ex(spl_ce_BadMethodCallException, 0, "Cannot directly get any files or directories in magic \".phar\" directory");
|
|
RETURN_THROWS();
|
|
}
|
|
|
|
if (entry->is_temp_dir) {
|
|
efree(entry->filename);
|
|
efree(entry);
|
|
}
|
|
|
|
sfname = strpprintf(0, "phar://%s/%s", phar_obj->archive->fname, fname);
|
|
ZVAL_NEW_STR(&zfname, sfname);
|
|
spl_instantiate_arg_ex1(phar_obj->spl.info_class, return_value, &zfname);
|
|
zval_ptr_dtor(&zfname);
|
|
}
|
|
}
|
|
/* }}} */
|
|
|
|
/* {{{ add a file within the phar archive from a string or resource */
|
|
static void phar_add_file(phar_archive_data **pphar, char *filename, size_t filename_len, char *cont_str, size_t cont_len, zval *zresource)
|
|
{
|
|
size_t start_pos=0;
|
|
char *error;
|
|
size_t contents_len;
|
|
phar_entry_data *data;
|
|
php_stream *contents_file = NULL;
|
|
php_stream_statbuf ssb;
|
|
#ifdef PHP_WIN32
|
|
char *save_filename;
|
|
ALLOCA_FLAG(filename_use_heap)
|
|
#endif
|
|
|
|
if (filename_len >= sizeof(".phar")-1) {
|
|
start_pos = '/' == filename[0]; /* account for any leading slash: multiple-leads handled elsewhere */
|
|
if (!memcmp(&filename[start_pos], ".phar", sizeof(".phar")-1) && (filename[start_pos+5] == '/' || filename[start_pos+5] == '\\' || filename[start_pos+5] == '\0')) {
|
|
zend_throw_exception_ex(spl_ce_BadMethodCallException, 0, "Cannot create any files in magic \".phar\" directory");
|
|
return;
|
|
}
|
|
}
|
|
|
|
#ifdef PHP_WIN32
|
|
save_filename = filename;
|
|
if (memchr(filename, '\\', filename_len)) {
|
|
filename = do_alloca(filename_len + 1, filename_use_heap);
|
|
memcpy(filename, save_filename, filename_len);
|
|
filename[filename_len] = '\0';
|
|
}
|
|
#endif
|
|
|
|
if (!(data = phar_get_or_create_entry_data((*pphar)->fname, (*pphar)->fname_len, filename, filename_len, "w+b", 0, &error, 1))) {
|
|
if (error) {
|
|
zend_throw_exception_ex(spl_ce_BadMethodCallException, 0, "Entry %s does not exist and cannot be created: %s", filename, error);
|
|
efree(error);
|
|
} else {
|
|
zend_throw_exception_ex(spl_ce_BadMethodCallException, 0, "Entry %s does not exist and cannot be created", filename);
|
|
}
|
|
goto finish;
|
|
} else {
|
|
if (error) {
|
|
efree(error);
|
|
}
|
|
|
|
if (!data->internal_file->is_dir) {
|
|
if (cont_str) {
|
|
contents_len = php_stream_write(data->fp, cont_str, cont_len);
|
|
if (contents_len != cont_len) {
|
|
zend_throw_exception_ex(spl_ce_BadMethodCallException, 0, "Entry %s could not be written to", filename);
|
|
goto finish;
|
|
}
|
|
} else {
|
|
if (!(php_stream_from_zval_no_verify(contents_file, zresource))) {
|
|
zend_throw_exception_ex(spl_ce_BadMethodCallException, 0, "Entry %s could not be written to", filename);
|
|
goto finish;
|
|
}
|
|
php_stream_copy_to_stream_ex(contents_file, data->fp, PHP_STREAM_COPY_ALL, &contents_len);
|
|
}
|
|
data->internal_file->compressed_filesize = data->internal_file->uncompressed_filesize = contents_len;
|
|
}
|
|
|
|
if (contents_file != NULL && php_stream_stat(contents_file, &ssb) != -1) {
|
|
data->internal_file->flags = ssb.sb.st_mode & PHAR_ENT_PERM_MASK ;
|
|
} else {
|
|
#ifndef _WIN32
|
|
mode_t mask;
|
|
mask = umask(0);
|
|
umask(mask);
|
|
data->internal_file->flags &= ~mask;
|
|
#endif
|
|
}
|
|
|
|
/* check for copy-on-write */
|
|
if (pphar[0] != data->phar) {
|
|
*pphar = data->phar;
|
|
}
|
|
phar_entry_delref(data);
|
|
phar_flush(*pphar, 0, 0, 0, &error);
|
|
|
|
if (error) {
|
|
zend_throw_exception_ex(phar_ce_PharException, 0, "%s", error);
|
|
efree(error);
|
|
}
|
|
}
|
|
|
|
finish: ;
|
|
#ifdef PHP_WIN32
|
|
if (filename != save_filename) {
|
|
free_alloca(filename, filename_use_heap);
|
|
filename = save_filename;
|
|
}
|
|
#endif
|
|
}
|
|
/* }}} */
|
|
|
|
/* {{{ create a directory within the phar archive */
|
|
static void phar_mkdir(phar_archive_data **pphar, char *dirname, size_t dirname_len)
|
|
{
|
|
char *error;
|
|
phar_entry_data *data;
|
|
|
|
if (!(data = phar_get_or_create_entry_data((*pphar)->fname, (*pphar)->fname_len, dirname, dirname_len, "w+b", 2, &error, 1))) {
|
|
if (error) {
|
|
zend_throw_exception_ex(spl_ce_BadMethodCallException, 0, "Directory %s does not exist and cannot be created: %s", dirname, error);
|
|
efree(error);
|
|
} else {
|
|
zend_throw_exception_ex(spl_ce_BadMethodCallException, 0, "Directory %s does not exist and cannot be created", dirname);
|
|
}
|
|
|
|
return;
|
|
} else {
|
|
if (error) {
|
|
efree(error);
|
|
}
|
|
|
|
/* check for copy on write */
|
|
if (data->phar != *pphar) {
|
|
*pphar = data->phar;
|
|
}
|
|
phar_entry_delref(data);
|
|
phar_flush(*pphar, 0, 0, 0, &error);
|
|
|
|
if (error) {
|
|
zend_throw_exception_ex(phar_ce_PharException, 0, "%s", error);
|
|
efree(error);
|
|
}
|
|
}
|
|
}
|
|
/* }}} */
|
|
|
|
/* {{{ set the contents of an internal file to those of an external file */
|
|
PHP_METHOD(Phar, offsetSet)
|
|
{
|
|
char *fname, *cont_str = NULL;
|
|
size_t fname_len, cont_len;
|
|
zval *zresource;
|
|
|
|
if (zend_parse_parameters_ex(ZEND_PARSE_PARAMS_QUIET, ZEND_NUM_ARGS(), "pr", &fname, &fname_len, &zresource) == FAILURE
|
|
&& zend_parse_parameters(ZEND_NUM_ARGS(), "ps", &fname, &fname_len, &cont_str, &cont_len) == FAILURE) {
|
|
RETURN_THROWS();
|
|
}
|
|
|
|
PHAR_ARCHIVE_OBJECT();
|
|
|
|
if (PHAR_G(readonly) && !phar_obj->archive->is_data) {
|
|
zend_throw_exception_ex(spl_ce_BadMethodCallException, 0, "Write operations disabled by the php.ini setting phar.readonly");
|
|
RETURN_THROWS();
|
|
}
|
|
|
|
if (fname_len == sizeof(".phar/stub.php")-1 && !memcmp(fname, ".phar/stub.php", sizeof(".phar/stub.php")-1)) {
|
|
zend_throw_exception_ex(spl_ce_BadMethodCallException, 0, "Cannot set stub \".phar/stub.php\" directly in phar \"%s\", use setStub", phar_obj->archive->fname);
|
|
RETURN_THROWS();
|
|
}
|
|
|
|
if (fname_len == sizeof(".phar/alias.txt")-1 && !memcmp(fname, ".phar/alias.txt", sizeof(".phar/alias.txt")-1)) {
|
|
zend_throw_exception_ex(spl_ce_BadMethodCallException, 0, "Cannot set alias \".phar/alias.txt\" directly in phar \"%s\", use setAlias", phar_obj->archive->fname);
|
|
RETURN_THROWS();
|
|
}
|
|
|
|
if (fname_len >= sizeof(".phar")-1 && !memcmp(fname, ".phar", sizeof(".phar")-1)) {
|
|
zend_throw_exception_ex(spl_ce_BadMethodCallException, 0, "Cannot set any files or directories in magic \".phar\" directory");
|
|
RETURN_THROWS();
|
|
}
|
|
|
|
phar_add_file(&(phar_obj->archive), fname, fname_len, cont_str, cont_len, zresource);
|
|
}
|
|
/* }}} */
|
|
|
|
/* {{{ remove a file from a phar */
|
|
PHP_METHOD(Phar, offsetUnset)
|
|
{
|
|
char *fname, *error;
|
|
size_t fname_len;
|
|
phar_entry_info *entry;
|
|
|
|
if (zend_parse_parameters(ZEND_NUM_ARGS(), "p", &fname, &fname_len) == FAILURE) {
|
|
RETURN_THROWS();
|
|
}
|
|
|
|
PHAR_ARCHIVE_OBJECT();
|
|
|
|
if (PHAR_G(readonly) && !phar_obj->archive->is_data) {
|
|
zend_throw_exception_ex(spl_ce_BadMethodCallException, 0, "Write operations disabled by the php.ini setting phar.readonly");
|
|
RETURN_THROWS();
|
|
}
|
|
|
|
if (zend_hash_str_exists(&phar_obj->archive->manifest, fname, (uint32_t) fname_len)) {
|
|
if (NULL != (entry = zend_hash_str_find_ptr(&phar_obj->archive->manifest, fname, (uint32_t) fname_len))) {
|
|
if (entry->is_deleted) {
|
|
/* entry is deleted, but has not been flushed to disk yet */
|
|
return;
|
|
}
|
|
|
|
if (phar_obj->archive->is_persistent) {
|
|
if (FAILURE == phar_copy_on_write(&(phar_obj->archive))) {
|
|
zend_throw_exception_ex(phar_ce_PharException, 0, "phar \"%s\" is persistent, unable to copy on write", phar_obj->archive->fname);
|
|
RETURN_THROWS();
|
|
}
|
|
/* re-populate entry after copy on write */
|
|
entry = zend_hash_str_find_ptr(&phar_obj->archive->manifest, fname, (uint32_t) fname_len);
|
|
}
|
|
entry->is_modified = 0;
|
|
entry->is_deleted = 1;
|
|
/* we need to "flush" the stream to save the newly deleted file on disk */
|
|
phar_flush(phar_obj->archive, 0, 0, 0, &error);
|
|
|
|
if (error) {
|
|
zend_throw_exception_ex(phar_ce_PharException, 0, "%s", error);
|
|
efree(error);
|
|
}
|
|
|
|
RETURN_TRUE;
|
|
}
|
|
} else {
|
|
RETURN_FALSE;
|
|
}
|
|
}
|
|
/* }}} */
|
|
|
|
/* {{{ Adds an empty directory to the phar archive */
|
|
PHP_METHOD(Phar, addEmptyDir)
|
|
{
|
|
char *dirname;
|
|
size_t dirname_len;
|
|
|
|
if (zend_parse_parameters(ZEND_NUM_ARGS(), "p", &dirname, &dirname_len) == FAILURE) {
|
|
RETURN_THROWS();
|
|
}
|
|
|
|
PHAR_ARCHIVE_OBJECT();
|
|
|
|
if (dirname_len >= sizeof(".phar")-1 && !memcmp(dirname, ".phar", sizeof(".phar")-1)) {
|
|
zend_throw_exception_ex(spl_ce_BadMethodCallException, 0, "Cannot create a directory in magic \".phar\" directory");
|
|
RETURN_THROWS();
|
|
}
|
|
|
|
phar_mkdir(&phar_obj->archive, dirname, dirname_len);
|
|
}
|
|
/* }}} */
|
|
|
|
/* {{{ Adds a file to the archive using the filename, or the second parameter as the name within the archive */
|
|
PHP_METHOD(Phar, addFile)
|
|
{
|
|
char *fname, *localname = NULL;
|
|
size_t fname_len, localname_len = 0;
|
|
php_stream *resource;
|
|
zval zresource;
|
|
|
|
if (zend_parse_parameters(ZEND_NUM_ARGS(), "p|s!", &fname, &fname_len, &localname, &localname_len) == FAILURE) {
|
|
RETURN_THROWS();
|
|
}
|
|
|
|
PHAR_ARCHIVE_OBJECT();
|
|
|
|
if (!strstr(fname, "://") && php_check_open_basedir(fname)) {
|
|
zend_throw_exception_ex(spl_ce_RuntimeException, 0, "phar error: unable to open file \"%s\" to add to phar archive, open_basedir restrictions prevent this", fname);
|
|
RETURN_THROWS();
|
|
}
|
|
|
|
if (!(resource = php_stream_open_wrapper(fname, "rb", 0, NULL))) {
|
|
zend_throw_exception_ex(spl_ce_RuntimeException, 0, "phar error: unable to open file \"%s\" to add to phar archive", fname);
|
|
RETURN_THROWS();
|
|
}
|
|
|
|
if (localname) {
|
|
fname = localname;
|
|
fname_len = localname_len;
|
|
}
|
|
|
|
php_stream_to_zval(resource, &zresource);
|
|
phar_add_file(&(phar_obj->archive), fname, fname_len, NULL, 0, &zresource);
|
|
zval_ptr_dtor(&zresource);
|
|
}
|
|
/* }}} */
|
|
|
|
/* {{{ Adds a file to the archive using its contents as a string */
|
|
PHP_METHOD(Phar, addFromString)
|
|
{
|
|
char *localname, *cont_str;
|
|
size_t localname_len, cont_len;
|
|
|
|
if (zend_parse_parameters(ZEND_NUM_ARGS(), "ps", &localname, &localname_len, &cont_str, &cont_len) == FAILURE) {
|
|
RETURN_THROWS();
|
|
}
|
|
|
|
PHAR_ARCHIVE_OBJECT();
|
|
|
|
phar_add_file(&(phar_obj->archive), localname, localname_len, cont_str, cont_len, NULL);
|
|
}
|
|
/* }}} */
|
|
|
|
/* {{{ Returns the stub at the head of a phar archive as a string. */
|
|
PHP_METHOD(Phar, getStub)
|
|
{
|
|
size_t len;
|
|
zend_string *buf;
|
|
php_stream *fp;
|
|
php_stream_filter *filter = NULL;
|
|
phar_entry_info *stub;
|
|
|
|
if (zend_parse_parameters_none() == FAILURE) {
|
|
RETURN_THROWS();
|
|
}
|
|
|
|
PHAR_ARCHIVE_OBJECT();
|
|
|
|
if (phar_obj->archive->is_tar || phar_obj->archive->is_zip) {
|
|
|
|
if (NULL != (stub = zend_hash_str_find_ptr(&(phar_obj->archive->manifest), ".phar/stub.php", sizeof(".phar/stub.php")-1))) {
|
|
if (phar_obj->archive->fp && !phar_obj->archive->is_brandnew && !(stub->flags & PHAR_ENT_COMPRESSION_MASK)) {
|
|
fp = phar_obj->archive->fp;
|
|
} else {
|
|
if (!(fp = php_stream_open_wrapper(phar_obj->archive->fname, "rb", 0, NULL))) {
|
|
zend_throw_exception_ex(spl_ce_UnexpectedValueException, 0, "phar error: unable to open phar \"%s\"", phar_obj->archive->fname);
|
|
RETURN_THROWS();
|
|
}
|
|
if (stub->flags & PHAR_ENT_COMPRESSION_MASK) {
|
|
char *filter_name;
|
|
|
|
if ((filter_name = phar_decompress_filter(stub, 0)) != NULL) {
|
|
filter = php_stream_filter_create(filter_name, NULL, php_stream_is_persistent(fp));
|
|
} else {
|
|
filter = NULL;
|
|
}
|
|
if (!filter) {
|
|
zend_throw_exception_ex(spl_ce_UnexpectedValueException, 0, "phar error: unable to read stub of phar \"%s\" (cannot create %s filter)", phar_obj->archive->fname, phar_decompress_filter(stub, 1));
|
|
RETURN_THROWS();
|
|
}
|
|
php_stream_filter_append(&fp->readfilters, filter);
|
|
}
|
|
}
|
|
|
|
if (!fp) {
|
|
zend_throw_exception_ex(spl_ce_RuntimeException, 0,
|
|
"Unable to read stub");
|
|
RETURN_THROWS();
|
|
}
|
|
|
|
php_stream_seek(fp, stub->offset_abs, SEEK_SET);
|
|
len = stub->uncompressed_filesize;
|
|
goto carry_on;
|
|
} else {
|
|
RETURN_EMPTY_STRING();
|
|
}
|
|
}
|
|
len = phar_obj->archive->halt_offset;
|
|
|
|
if (phar_obj->archive->fp && !phar_obj->archive->is_brandnew) {
|
|
fp = phar_obj->archive->fp;
|
|
} else {
|
|
fp = php_stream_open_wrapper(phar_obj->archive->fname, "rb", 0, NULL);
|
|
}
|
|
|
|
if (!fp) {
|
|
zend_throw_exception_ex(spl_ce_RuntimeException, 0,
|
|
"Unable to read stub");
|
|
RETURN_THROWS();
|
|
}
|
|
|
|
php_stream_rewind(fp);
|
|
carry_on:
|
|
buf = zend_string_alloc(len, 0);
|
|
|
|
if (len != php_stream_read(fp, ZSTR_VAL(buf), len)) {
|
|
if (fp != phar_obj->archive->fp) {
|
|
php_stream_close(fp);
|
|
}
|
|
zend_throw_exception_ex(spl_ce_RuntimeException, 0,
|
|
"Unable to read stub");
|
|
zend_string_release_ex(buf, 0);
|
|
RETURN_THROWS();
|
|
}
|
|
|
|
if (filter) {
|
|
php_stream_filter_flush(filter, 1);
|
|
php_stream_filter_remove(filter, 1);
|
|
}
|
|
|
|
if (fp != phar_obj->archive->fp) {
|
|
php_stream_close(fp);
|
|
}
|
|
|
|
ZSTR_VAL(buf)[len] = '\0';
|
|
ZSTR_LEN(buf) = len;
|
|
RETVAL_STR(buf);
|
|
}
|
|
/* }}}*/
|
|
|
|
/* {{{ Returns TRUE if the phar has global metadata, FALSE otherwise. */
|
|
PHP_METHOD(Phar, hasMetadata)
|
|
{
|
|
if (zend_parse_parameters_none() == FAILURE) {
|
|
RETURN_THROWS();
|
|
}
|
|
|
|
PHAR_ARCHIVE_OBJECT();
|
|
|
|
RETURN_BOOL(phar_metadata_tracker_has_data(&phar_obj->archive->metadata_tracker, phar_obj->archive->is_persistent));
|
|
}
|
|
/* }}} */
|
|
|
|
/* {{{ Returns the global metadata of the phar */
|
|
PHP_METHOD(Phar, getMetadata)
|
|
{
|
|
HashTable *unserialize_options = NULL;
|
|
phar_metadata_tracker *tracker;
|
|
|
|
ZEND_PARSE_PARAMETERS_START(0, 1)
|
|
Z_PARAM_OPTIONAL
|
|
Z_PARAM_ARRAY_HT(unserialize_options)
|
|
ZEND_PARSE_PARAMETERS_END();
|
|
|
|
PHAR_ARCHIVE_OBJECT();
|
|
|
|
tracker = &phar_obj->archive->metadata_tracker;
|
|
if (phar_metadata_tracker_has_data(tracker, phar_obj->archive->is_persistent)) {
|
|
phar_metadata_tracker_unserialize_or_copy(tracker, return_value, phar_obj->archive->is_persistent, unserialize_options, "Phar::getMetadata");
|
|
}
|
|
}
|
|
/* }}} */
|
|
|
|
/* {{{ Modifies the phar metadata or throws */
|
|
static int serialize_metadata_or_throw(phar_metadata_tracker *tracker, int persistent, zval *metadata)
|
|
{
|
|
php_serialize_data_t metadata_hash;
|
|
smart_str main_metadata_str = {0};
|
|
|
|
PHP_VAR_SERIALIZE_INIT(metadata_hash);
|
|
php_var_serialize(&main_metadata_str, metadata, &metadata_hash);
|
|
PHP_VAR_SERIALIZE_DESTROY(metadata_hash);
|
|
if (EG(exception)) {
|
|
/* Serialization can throw. Don't overwrite the original value or original string. */
|
|
return FAILURE;
|
|
}
|
|
|
|
phar_metadata_tracker_free(tracker, persistent);
|
|
if (EG(exception)) {
|
|
/* Destructor can throw. */
|
|
zend_string_release(main_metadata_str.s);
|
|
return FAILURE;
|
|
}
|
|
|
|
if (tracker->str) {
|
|
zend_throw_exception_ex(phar_ce_PharException, 0, "Metadata unexpectedly changed during setMetadata()");
|
|
zend_string_release(main_metadata_str.s);
|
|
return FAILURE;
|
|
}
|
|
ZVAL_COPY(&tracker->val, metadata);
|
|
tracker->str = main_metadata_str.s;
|
|
return SUCCESS;
|
|
}
|
|
|
|
/* {{{ Sets the global metadata of the phar */
|
|
PHP_METHOD(Phar, setMetadata)
|
|
{
|
|
char *error;
|
|
zval *metadata;
|
|
|
|
if (zend_parse_parameters(ZEND_NUM_ARGS(), "z", &metadata) == FAILURE) {
|
|
RETURN_THROWS();
|
|
}
|
|
|
|
PHAR_ARCHIVE_OBJECT();
|
|
|
|
if (PHAR_G(readonly) && !phar_obj->archive->is_data) {
|
|
zend_throw_exception_ex(spl_ce_BadMethodCallException, 0, "Write operations disabled by the php.ini setting phar.readonly");
|
|
RETURN_THROWS();
|
|
}
|
|
|
|
if (phar_obj->archive->is_persistent && FAILURE == phar_copy_on_write(&(phar_obj->archive))) {
|
|
zend_throw_exception_ex(phar_ce_PharException, 0, "phar \"%s\" is persistent, unable to copy on write", phar_obj->archive->fname);
|
|
RETURN_THROWS();
|
|
}
|
|
|
|
ZEND_ASSERT(!phar_obj->archive->is_persistent); /* Should no longer be persistent */
|
|
if (serialize_metadata_or_throw(&phar_obj->archive->metadata_tracker, phar_obj->archive->is_persistent, metadata) != SUCCESS) {
|
|
RETURN_THROWS();
|
|
}
|
|
|
|
phar_obj->archive->is_modified = 1;
|
|
phar_flush(phar_obj->archive, 0, 0, 0, &error);
|
|
|
|
if (error) {
|
|
zend_throw_exception_ex(phar_ce_PharException, 0, "%s", error);
|
|
efree(error);
|
|
}
|
|
}
|
|
/* }}} */
|
|
|
|
/* {{{ Deletes the global metadata of the phar */
|
|
PHP_METHOD(Phar, delMetadata)
|
|
{
|
|
char *error;
|
|
|
|
if (zend_parse_parameters_none() == FAILURE) {
|
|
RETURN_THROWS();
|
|
}
|
|
|
|
PHAR_ARCHIVE_OBJECT();
|
|
|
|
if (PHAR_G(readonly) && !phar_obj->archive->is_data) {
|
|
zend_throw_exception_ex(spl_ce_BadMethodCallException, 0, "Write operations disabled by the php.ini setting phar.readonly");
|
|
RETURN_THROWS();
|
|
}
|
|
|
|
if (!phar_metadata_tracker_has_data(&phar_obj->archive->metadata_tracker, phar_obj->archive->is_persistent)) {
|
|
RETURN_TRUE;
|
|
}
|
|
|
|
phar_metadata_tracker_free(&phar_obj->archive->metadata_tracker, phar_obj->archive->is_persistent);
|
|
phar_obj->archive->is_modified = 1;
|
|
phar_flush(phar_obj->archive, 0, 0, 0, &error);
|
|
|
|
if (error) {
|
|
zend_throw_exception_ex(phar_ce_PharException, 0, "%s", error);
|
|
efree(error);
|
|
RETURN_THROWS();
|
|
} else {
|
|
RETURN_TRUE;
|
|
}
|
|
}
|
|
/* }}} */
|
|
|
|
static int phar_extract_file(zend_bool overwrite, phar_entry_info *entry, char *dest, size_t dest_len, char **error) /* {{{ */
|
|
{
|
|
php_stream_statbuf ssb;
|
|
size_t len;
|
|
php_stream *fp;
|
|
char *fullpath;
|
|
const char *slash;
|
|
mode_t mode;
|
|
cwd_state new_state;
|
|
char *filename;
|
|
size_t filename_len;
|
|
|
|
if (entry->is_mounted) {
|
|
/* silently ignore mounted entries */
|
|
return SUCCESS;
|
|
}
|
|
|
|
if (entry->filename_len >= sizeof(".phar")-1 && !memcmp(entry->filename, ".phar", sizeof(".phar")-1)) {
|
|
return SUCCESS;
|
|
}
|
|
/* strip .. from path and restrict it to be under dest directory */
|
|
new_state.cwd = (char*)emalloc(2);
|
|
new_state.cwd[0] = DEFAULT_SLASH;
|
|
new_state.cwd[1] = '\0';
|
|
new_state.cwd_length = 1;
|
|
if (virtual_file_ex(&new_state, entry->filename, NULL, CWD_EXPAND) != 0 ||
|
|
new_state.cwd_length <= 1) {
|
|
if (EINVAL == errno && entry->filename_len > 50) {
|
|
char *tmp = estrndup(entry->filename, 50);
|
|
spprintf(error, 4096, "Cannot extract \"%s...\" to \"%s...\", extracted filename is too long for filesystem", tmp, dest);
|
|
efree(tmp);
|
|
} else {
|
|
spprintf(error, 4096, "Cannot extract \"%s\", internal error", entry->filename);
|
|
}
|
|
efree(new_state.cwd);
|
|
return FAILURE;
|
|
}
|
|
filename = new_state.cwd + 1;
|
|
filename_len = new_state.cwd_length - 1;
|
|
#ifdef PHP_WIN32
|
|
/* unixify the path back, otherwise non zip formats might be broken */
|
|
{
|
|
size_t cnt = 0;
|
|
|
|
do {
|
|
if ('\\' == filename[cnt]) {
|
|
filename[cnt] = '/';
|
|
}
|
|
} while (cnt++ < filename_len);
|
|
}
|
|
#endif
|
|
|
|
len = spprintf(&fullpath, 0, "%s/%s", dest, filename);
|
|
|
|
if (len >= MAXPATHLEN) {
|
|
char *tmp;
|
|
/* truncate for error message */
|
|
fullpath[50] = '\0';
|
|
if (entry->filename_len > 50) {
|
|
tmp = estrndup(entry->filename, 50);
|
|
spprintf(error, 4096, "Cannot extract \"%s...\" to \"%s...\", extracted filename is too long for filesystem", tmp, fullpath);
|
|
efree(tmp);
|
|
} else {
|
|
spprintf(error, 4096, "Cannot extract \"%s\" to \"%s...\", extracted filename is too long for filesystem", entry->filename, fullpath);
|
|
}
|
|
efree(fullpath);
|
|
efree(new_state.cwd);
|
|
return FAILURE;
|
|
}
|
|
|
|
if (!len) {
|
|
spprintf(error, 4096, "Cannot extract \"%s\", internal error", entry->filename);
|
|
efree(fullpath);
|
|
efree(new_state.cwd);
|
|
return FAILURE;
|
|
}
|
|
|
|
if (php_check_open_basedir(fullpath)) {
|
|
spprintf(error, 4096, "Cannot extract \"%s\" to \"%s\", openbasedir/safe mode restrictions in effect", entry->filename, fullpath);
|
|
efree(fullpath);
|
|
efree(new_state.cwd);
|
|
return FAILURE;
|
|
}
|
|
|
|
/* let see if the path already exists */
|
|
if (!overwrite && SUCCESS == php_stream_stat_path(fullpath, &ssb)) {
|
|
spprintf(error, 4096, "Cannot extract \"%s\" to \"%s\", path already exists", entry->filename, fullpath);
|
|
efree(fullpath);
|
|
efree(new_state.cwd);
|
|
return FAILURE;
|
|
}
|
|
|
|
/* perform dirname */
|
|
slash = zend_memrchr(filename, '/', filename_len);
|
|
|
|
if (slash) {
|
|
fullpath[dest_len + (slash - filename) + 1] = '\0';
|
|
} else {
|
|
fullpath[dest_len] = '\0';
|
|
}
|
|
|
|
if (FAILURE == php_stream_stat_path(fullpath, &ssb)) {
|
|
if (entry->is_dir) {
|
|
if (!php_stream_mkdir(fullpath, entry->flags & PHAR_ENT_PERM_MASK, PHP_STREAM_MKDIR_RECURSIVE, NULL)) {
|
|
spprintf(error, 4096, "Cannot extract \"%s\", could not create directory \"%s\"", entry->filename, fullpath);
|
|
efree(fullpath);
|
|
efree(new_state.cwd);
|
|
return FAILURE;
|
|
}
|
|
} else {
|
|
if (!php_stream_mkdir(fullpath, 0777, PHP_STREAM_MKDIR_RECURSIVE, NULL)) {
|
|
spprintf(error, 4096, "Cannot extract \"%s\", could not create directory \"%s\"", entry->filename, fullpath);
|
|
efree(fullpath);
|
|
efree(new_state.cwd);
|
|
return FAILURE;
|
|
}
|
|
}
|
|
}
|
|
|
|
if (slash) {
|
|
fullpath[dest_len + (slash - filename) + 1] = '/';
|
|
} else {
|
|
fullpath[dest_len] = '/';
|
|
}
|
|
|
|
filename = NULL;
|
|
efree(new_state.cwd);
|
|
/* it is a standalone directory, job done */
|
|
if (entry->is_dir) {
|
|
efree(fullpath);
|
|
return SUCCESS;
|
|
}
|
|
|
|
fp = php_stream_open_wrapper(fullpath, "w+b", REPORT_ERRORS, NULL);
|
|
|
|
if (!fp) {
|
|
spprintf(error, 4096, "Cannot extract \"%s\", could not open for writing \"%s\"", entry->filename, fullpath);
|
|
efree(fullpath);
|
|
return FAILURE;
|
|
}
|
|
|
|
if (!phar_get_efp(entry, 0)) {
|
|
if (FAILURE == phar_open_entry_fp(entry, error, 1)) {
|
|
if (error) {
|
|
spprintf(error, 4096, "Cannot extract \"%s\" to \"%s\", unable to open internal file pointer: %s", entry->filename, fullpath, *error);
|
|
} else {
|
|
spprintf(error, 4096, "Cannot extract \"%s\" to \"%s\", unable to open internal file pointer", entry->filename, fullpath);
|
|
}
|
|
efree(fullpath);
|
|
php_stream_close(fp);
|
|
return FAILURE;
|
|
}
|
|
}
|
|
|
|
if (FAILURE == phar_seek_efp(entry, 0, SEEK_SET, 0, 0)) {
|
|
spprintf(error, 4096, "Cannot extract \"%s\" to \"%s\", unable to seek internal file pointer", entry->filename, fullpath);
|
|
efree(fullpath);
|
|
php_stream_close(fp);
|
|
return FAILURE;
|
|
}
|
|
|
|
if (SUCCESS != php_stream_copy_to_stream_ex(phar_get_efp(entry, 0), fp, entry->uncompressed_filesize, NULL)) {
|
|
spprintf(error, 4096, "Cannot extract \"%s\" to \"%s\", copying contents failed", entry->filename, fullpath);
|
|
efree(fullpath);
|
|
php_stream_close(fp);
|
|
return FAILURE;
|
|
}
|
|
|
|
php_stream_close(fp);
|
|
mode = (mode_t) entry->flags & PHAR_ENT_PERM_MASK;
|
|
|
|
if (FAILURE == VCWD_CHMOD(fullpath, mode)) {
|
|
spprintf(error, 4096, "Cannot extract \"%s\" to \"%s\", setting file permissions failed", entry->filename, fullpath);
|
|
efree(fullpath);
|
|
return FAILURE;
|
|
}
|
|
|
|
efree(fullpath);
|
|
return SUCCESS;
|
|
}
|
|
/* }}} */
|
|
|
|
static int extract_helper(phar_archive_data *archive, zend_string *search, char *pathto, size_t pathto_len, zend_bool overwrite, char **error) { /* {{{ */
|
|
int extracted = 0;
|
|
phar_entry_info *entry;
|
|
|
|
if (!search) {
|
|
/* nothing to match -- extract all files */
|
|
ZEND_HASH_FOREACH_PTR(&archive->manifest, entry) {
|
|
if (FAILURE == phar_extract_file(overwrite, entry, pathto, pathto_len, error)) return -1;
|
|
extracted++;
|
|
} ZEND_HASH_FOREACH_END();
|
|
} else if ('/' == ZSTR_VAL(search)[ZSTR_LEN(search) - 1]) {
|
|
/* ends in "/" -- extract all entries having that prefix */
|
|
ZEND_HASH_FOREACH_PTR(&archive->manifest, entry) {
|
|
if (0 != strncmp(ZSTR_VAL(search), entry->filename, ZSTR_LEN(search))) continue;
|
|
if (FAILURE == phar_extract_file(overwrite, entry, pathto, pathto_len, error)) return -1;
|
|
extracted++;
|
|
} ZEND_HASH_FOREACH_END();
|
|
} else {
|
|
/* otherwise, looking for an exact match */
|
|
entry = zend_hash_find_ptr(&archive->manifest, search);
|
|
if (NULL == entry) return 0;
|
|
if (FAILURE == phar_extract_file(overwrite, entry, pathto, pathto_len, error)) return -1;
|
|
return 1;
|
|
}
|
|
|
|
return extracted;
|
|
}
|
|
/* }}} */
|
|
|
|
/* {{{ Extract one or more file from a phar archive, optionally overwriting existing files */
|
|
PHP_METHOD(Phar, extractTo)
|
|
{
|
|
php_stream *fp;
|
|
php_stream_statbuf ssb;
|
|
char *pathto;
|
|
zend_string *filename = NULL;
|
|
size_t pathto_len;
|
|
int ret;
|
|
zval *zval_file;
|
|
HashTable *files_ht = NULL;
|
|
zend_bool overwrite = 0;
|
|
char *error = NULL;
|
|
|
|
ZEND_PARSE_PARAMETERS_START(1, 3)
|
|
Z_PARAM_PATH(pathto, pathto_len)
|
|
Z_PARAM_OPTIONAL
|
|
Z_PARAM_ARRAY_HT_OR_STR_OR_NULL(files_ht, filename)
|
|
Z_PARAM_BOOL(overwrite)
|
|
ZEND_PARSE_PARAMETERS_END();
|
|
|
|
PHAR_ARCHIVE_OBJECT();
|
|
|
|
fp = php_stream_open_wrapper(phar_obj->archive->fname, "rb", IGNORE_URL|STREAM_MUST_SEEK, NULL);
|
|
|
|
if (!fp) {
|
|
zend_throw_exception_ex(spl_ce_InvalidArgumentException, 0,
|
|
"Invalid argument, %s cannot be found", phar_obj->archive->fname);
|
|
RETURN_THROWS();
|
|
}
|
|
|
|
php_stream_close(fp);
|
|
|
|
if (pathto_len < 1) {
|
|
zend_throw_exception_ex(spl_ce_InvalidArgumentException, 0,
|
|
"Invalid argument, extraction path must be non-zero length");
|
|
RETURN_THROWS();
|
|
}
|
|
|
|
if (pathto_len >= MAXPATHLEN) {
|
|
char *tmp = estrndup(pathto, 50);
|
|
/* truncate for error message */
|
|
zend_throw_exception_ex(spl_ce_InvalidArgumentException, 0, "Cannot extract to \"%s...\", destination directory is too long for filesystem", tmp);
|
|
efree(tmp);
|
|
RETURN_THROWS();
|
|
}
|
|
|
|
if (php_stream_stat_path(pathto, &ssb) < 0) {
|
|
ret = php_stream_mkdir(pathto, 0777, PHP_STREAM_MKDIR_RECURSIVE, NULL);
|
|
if (!ret) {
|
|
zend_throw_exception_ex(spl_ce_RuntimeException, 0,
|
|
"Unable to create path \"%s\" for extraction", pathto);
|
|
RETURN_THROWS();
|
|
}
|
|
} else if (!(ssb.sb.st_mode & S_IFDIR)) {
|
|
zend_throw_exception_ex(spl_ce_RuntimeException, 0,
|
|
"Unable to use path \"%s\" for extraction, it is a file, must be a directory", pathto);
|
|
RETURN_THROWS();
|
|
}
|
|
|
|
if (files_ht) {
|
|
if (zend_hash_num_elements(files_ht) == 0) {
|
|
RETURN_FALSE;
|
|
}
|
|
|
|
ZEND_HASH_FOREACH_VAL(files_ht, zval_file) {
|
|
ZVAL_DEREF(zval_file);
|
|
if (IS_STRING != Z_TYPE_P(zval_file)) {
|
|
zend_throw_exception_ex(spl_ce_InvalidArgumentException, 0,
|
|
"Invalid argument, array of filenames to extract contains non-string value");
|
|
RETURN_THROWS();
|
|
}
|
|
switch (extract_helper(phar_obj->archive, Z_STR_P(zval_file), pathto, pathto_len, overwrite, &error)) {
|
|
case -1:
|
|
zend_throw_exception_ex(phar_ce_PharException, 0, "Extraction from phar \"%s\" failed: %s",
|
|
phar_obj->archive->fname, error);
|
|
efree(error);
|
|
RETURN_THROWS();
|
|
case 0:
|
|
zend_throw_exception_ex(phar_ce_PharException, 0,
|
|
"phar error: attempted to extract non-existent file or directory \"%s\" from phar \"%s\"",
|
|
ZSTR_VAL(Z_STR_P(zval_file)), phar_obj->archive->fname);
|
|
RETURN_THROWS();
|
|
}
|
|
} ZEND_HASH_FOREACH_END();
|
|
RETURN_TRUE;
|
|
}
|
|
|
|
ret = extract_helper(phar_obj->archive, filename, pathto, pathto_len, overwrite, &error);
|
|
if (-1 == ret) {
|
|
zend_throw_exception_ex(phar_ce_PharException, 0, "Extraction from phar \"%s\" failed: %s",
|
|
phar_obj->archive->fname, error);
|
|
efree(error);
|
|
} else if (0 == ret && NULL != filename) {
|
|
zend_throw_exception_ex(phar_ce_PharException, 0,
|
|
"phar error: attempted to extract non-existent file or directory \"%s\" from phar \"%s\"",
|
|
ZSTR_VAL(filename), phar_obj->archive->fname);
|
|
} else {
|
|
RETURN_TRUE;
|
|
}
|
|
}
|
|
/* }}} */
|
|
|
|
|
|
/* {{{ Construct a Phar entry object */
|
|
PHP_METHOD(PharFileInfo, __construct)
|
|
{
|
|
char *fname, *arch, *entry, *error;
|
|
size_t fname_len;
|
|
size_t arch_len, entry_len;
|
|
phar_entry_object *entry_obj;
|
|
phar_entry_info *entry_info;
|
|
phar_archive_data *phar_data;
|
|
zval *zobj = ZEND_THIS, arg1;
|
|
|
|
if (zend_parse_parameters(ZEND_NUM_ARGS(), "p", &fname, &fname_len) == FAILURE) {
|
|
RETURN_THROWS();
|
|
}
|
|
|
|
entry_obj = (phar_entry_object*)((char*)Z_OBJ_P(zobj) - Z_OBJ_P(zobj)->handlers->offset);
|
|
|
|
if (entry_obj->entry) {
|
|
zend_throw_exception_ex(spl_ce_BadMethodCallException, 0, "Cannot call constructor twice");
|
|
RETURN_THROWS();
|
|
}
|
|
|
|
if (fname_len < 7 || memcmp(fname, "phar://", 7) || phar_split_fname(fname, fname_len, &arch, &arch_len, &entry, &entry_len, 2, 0) == FAILURE) {
|
|
zend_throw_exception_ex(spl_ce_RuntimeException, 0,
|
|
"'%s' is not a valid phar archive URL (must have at least phar://filename.phar)", fname);
|
|
RETURN_THROWS();
|
|
}
|
|
|
|
if (phar_open_from_filename(arch, arch_len, NULL, 0, REPORT_ERRORS, &phar_data, &error) == FAILURE) {
|
|
efree(arch);
|
|
efree(entry);
|
|
if (error) {
|
|
zend_throw_exception_ex(spl_ce_RuntimeException, 0,
|
|
"Cannot open phar file '%s': %s", fname, error);
|
|
efree(error);
|
|
} else {
|
|
zend_throw_exception_ex(spl_ce_RuntimeException, 0,
|
|
"Cannot open phar file '%s'", fname);
|
|
}
|
|
RETURN_THROWS();
|
|
}
|
|
|
|
if ((entry_info = phar_get_entry_info_dir(phar_data, entry, entry_len, 1, &error, 1)) == NULL) {
|
|
zend_throw_exception_ex(spl_ce_RuntimeException, 0,
|
|
"Cannot access phar file entry '%s' in archive '%s'%s%s", entry, arch, error ? ", " : "", error ? error : "");
|
|
efree(arch);
|
|
efree(entry);
|
|
RETURN_THROWS();
|
|
}
|
|
|
|
efree(arch);
|
|
efree(entry);
|
|
|
|
entry_obj->entry = entry_info;
|
|
|
|
ZVAL_STRINGL(&arg1, fname, fname_len);
|
|
|
|
zend_call_known_instance_method_with_1_params(spl_ce_SplFileInfo->constructor,
|
|
Z_OBJ_P(zobj), NULL, &arg1);
|
|
|
|
zval_ptr_dtor(&arg1);
|
|
}
|
|
/* }}} */
|
|
|
|
#define PHAR_ENTRY_OBJECT() \
|
|
zval *zobj = ZEND_THIS; \
|
|
phar_entry_object *entry_obj = (phar_entry_object*)((char*)Z_OBJ_P(zobj) - Z_OBJ_P(zobj)->handlers->offset); \
|
|
if (!entry_obj->entry) { \
|
|
zend_throw_exception_ex(spl_ce_BadMethodCallException, 0, \
|
|
"Cannot call method on an uninitialized PharFileInfo object"); \
|
|
RETURN_THROWS(); \
|
|
}
|
|
|
|
/* {{{ clean up directory-based entry objects */
|
|
PHP_METHOD(PharFileInfo, __destruct)
|
|
{
|
|
zval *zobj = ZEND_THIS;
|
|
phar_entry_object *entry_obj = (phar_entry_object*)((char*)Z_OBJ_P(zobj) - Z_OBJ_P(zobj)->handlers->offset);
|
|
|
|
if (zend_parse_parameters_none() == FAILURE) {
|
|
RETURN_THROWS();
|
|
}
|
|
|
|
if (entry_obj->entry && entry_obj->entry->is_temp_dir) {
|
|
if (entry_obj->entry->filename) {
|
|
efree(entry_obj->entry->filename);
|
|
entry_obj->entry->filename = NULL;
|
|
}
|
|
|
|
efree(entry_obj->entry);
|
|
entry_obj->entry = NULL;
|
|
}
|
|
}
|
|
/* }}} */
|
|
|
|
/* {{{ Returns the compressed size */
|
|
PHP_METHOD(PharFileInfo, getCompressedSize)
|
|
{
|
|
if (zend_parse_parameters_none() == FAILURE) {
|
|
RETURN_THROWS();
|
|
}
|
|
|
|
PHAR_ENTRY_OBJECT();
|
|
|
|
RETURN_LONG(entry_obj->entry->compressed_filesize);
|
|
}
|
|
/* }}} */
|
|
|
|
/* {{{ Returns whether the entry is compressed, and whether it is compressed with Phar::GZ or Phar::BZ2 if specified */
|
|
PHP_METHOD(PharFileInfo, isCompressed)
|
|
{
|
|
zend_long method;
|
|
zend_bool method_is_null = 1;
|
|
|
|
if (zend_parse_parameters(ZEND_NUM_ARGS(), "|l!", &method, &method_is_null) == FAILURE) {
|
|
RETURN_THROWS();
|
|
}
|
|
|
|
PHAR_ENTRY_OBJECT();
|
|
|
|
if (method_is_null) {
|
|
RETURN_BOOL(entry_obj->entry->flags & PHAR_ENT_COMPRESSION_MASK);
|
|
}
|
|
|
|
switch (method) {
|
|
case 9021976: /* Retained for BC */
|
|
RETURN_BOOL(entry_obj->entry->flags & PHAR_ENT_COMPRESSION_MASK);
|
|
case PHAR_ENT_COMPRESSED_GZ:
|
|
RETURN_BOOL(entry_obj->entry->flags & PHAR_ENT_COMPRESSED_GZ);
|
|
case PHAR_ENT_COMPRESSED_BZ2:
|
|
RETURN_BOOL(entry_obj->entry->flags & PHAR_ENT_COMPRESSED_BZ2);
|
|
default:
|
|
zend_throw_exception_ex(spl_ce_BadMethodCallException, 0, \
|
|
"Unknown compression type specified"); \
|
|
}
|
|
}
|
|
/* }}} */
|
|
|
|
/* {{{ Returns CRC32 code or throws an exception if not CRC checked */
|
|
PHP_METHOD(PharFileInfo, getCRC32)
|
|
{
|
|
if (zend_parse_parameters_none() == FAILURE) {
|
|
RETURN_THROWS();
|
|
}
|
|
|
|
PHAR_ENTRY_OBJECT();
|
|
|
|
if (entry_obj->entry->is_dir) {
|
|
zend_throw_exception_ex(spl_ce_BadMethodCallException, 0, \
|
|
"Phar entry is a directory, does not have a CRC"); \
|
|
RETURN_THROWS();
|
|
}
|
|
|
|
if (entry_obj->entry->is_crc_checked) {
|
|
RETURN_LONG(entry_obj->entry->crc32);
|
|
} else {
|
|
zend_throw_exception_ex(spl_ce_BadMethodCallException, 0, \
|
|
"Phar entry was not CRC checked"); \
|
|
}
|
|
}
|
|
/* }}} */
|
|
|
|
/* {{{ Returns whether file entry is CRC checked */
|
|
PHP_METHOD(PharFileInfo, isCRCChecked)
|
|
{
|
|
if (zend_parse_parameters_none() == FAILURE) {
|
|
RETURN_THROWS();
|
|
}
|
|
|
|
PHAR_ENTRY_OBJECT();
|
|
|
|
RETURN_BOOL(entry_obj->entry->is_crc_checked);
|
|
}
|
|
/* }}} */
|
|
|
|
/* {{{ Returns the Phar file entry flags */
|
|
PHP_METHOD(PharFileInfo, getPharFlags)
|
|
{
|
|
if (zend_parse_parameters_none() == FAILURE) {
|
|
RETURN_THROWS();
|
|
}
|
|
|
|
PHAR_ENTRY_OBJECT();
|
|
|
|
RETURN_LONG(entry_obj->entry->flags & ~(PHAR_ENT_PERM_MASK|PHAR_ENT_COMPRESSION_MASK));
|
|
}
|
|
/* }}} */
|
|
|
|
/* {{{ set the file permissions for the Phar. This only allows setting execution bit, read/write */
|
|
PHP_METHOD(PharFileInfo, chmod)
|
|
{
|
|
char *error;
|
|
zend_long perms;
|
|
|
|
if (zend_parse_parameters(ZEND_NUM_ARGS(), "l", &perms) == FAILURE) {
|
|
RETURN_THROWS();
|
|
}
|
|
|
|
PHAR_ENTRY_OBJECT();
|
|
|
|
if (entry_obj->entry->is_temp_dir) {
|
|
zend_throw_exception_ex(spl_ce_BadMethodCallException, 0, \
|
|
"Phar entry \"%s\" is a temporary directory (not an actual entry in the archive), cannot chmod", entry_obj->entry->filename); \
|
|
RETURN_THROWS();
|
|
}
|
|
|
|
if (PHAR_G(readonly) && !entry_obj->entry->phar->is_data) {
|
|
zend_throw_exception_ex(phar_ce_PharException, 0, "Cannot modify permissions for file \"%s\" in phar \"%s\", write operations are prohibited", entry_obj->entry->filename, entry_obj->entry->phar->fname);
|
|
RETURN_THROWS();
|
|
}
|
|
|
|
if (entry_obj->entry->is_persistent) {
|
|
phar_archive_data *phar = entry_obj->entry->phar;
|
|
|
|
if (FAILURE == phar_copy_on_write(&phar)) {
|
|
zend_throw_exception_ex(phar_ce_PharException, 0, "phar \"%s\" is persistent, unable to copy on write", phar->fname);
|
|
RETURN_THROWS();
|
|
}
|
|
/* re-populate after copy-on-write */
|
|
entry_obj->entry = zend_hash_str_find_ptr(&phar->manifest, entry_obj->entry->filename, entry_obj->entry->filename_len);
|
|
}
|
|
/* clear permissions */
|
|
entry_obj->entry->flags &= ~PHAR_ENT_PERM_MASK;
|
|
perms &= 0777;
|
|
entry_obj->entry->flags |= perms;
|
|
entry_obj->entry->old_flags = entry_obj->entry->flags;
|
|
entry_obj->entry->phar->is_modified = 1;
|
|
entry_obj->entry->is_modified = 1;
|
|
|
|
/* hackish cache in php_stat needs to be cleared */
|
|
/* if this code fails to work, check main/streams/streams.c, _php_stream_stat_path */
|
|
if (BG(CurrentLStatFile)) {
|
|
efree(BG(CurrentLStatFile));
|
|
}
|
|
|
|
if (BG(CurrentStatFile)) {
|
|
efree(BG(CurrentStatFile));
|
|
}
|
|
|
|
BG(CurrentLStatFile) = NULL;
|
|
BG(CurrentStatFile) = NULL;
|
|
phar_flush(entry_obj->entry->phar, 0, 0, 0, &error);
|
|
|
|
if (error) {
|
|
zend_throw_exception_ex(phar_ce_PharException, 0, "%s", error);
|
|
efree(error);
|
|
}
|
|
}
|
|
/* }}} */
|
|
|
|
/* {{{ Returns the metadata of the entry */
|
|
PHP_METHOD(PharFileInfo, hasMetadata)
|
|
{
|
|
if (zend_parse_parameters_none() == FAILURE) {
|
|
RETURN_THROWS();
|
|
}
|
|
|
|
PHAR_ENTRY_OBJECT();
|
|
|
|
RETURN_BOOL(phar_metadata_tracker_has_data(&entry_obj->entry->metadata_tracker, entry_obj->entry->is_persistent));
|
|
}
|
|
/* }}} */
|
|
|
|
/* {{{ Returns the metadata of the entry */
|
|
PHP_METHOD(PharFileInfo, getMetadata)
|
|
{
|
|
HashTable *unserialize_options = NULL;
|
|
phar_metadata_tracker *tracker;
|
|
|
|
ZEND_PARSE_PARAMETERS_START(0, 1)
|
|
Z_PARAM_OPTIONAL
|
|
Z_PARAM_ARRAY_HT(unserialize_options)
|
|
ZEND_PARSE_PARAMETERS_END();
|
|
|
|
PHAR_ENTRY_OBJECT();
|
|
|
|
tracker = &entry_obj->entry->metadata_tracker;
|
|
if (phar_metadata_tracker_has_data(tracker, entry_obj->entry->is_persistent)) {
|
|
phar_metadata_tracker_unserialize_or_copy(tracker, return_value, entry_obj->entry->is_persistent, unserialize_options, "PharFileInfo::getMetadata");
|
|
}
|
|
}
|
|
/* }}} */
|
|
|
|
/* {{{ Sets the metadata of the entry */
|
|
PHP_METHOD(PharFileInfo, setMetadata)
|
|
{
|
|
char *error;
|
|
zval *metadata;
|
|
|
|
if (zend_parse_parameters(ZEND_NUM_ARGS(), "z", &metadata) == FAILURE) {
|
|
RETURN_THROWS();
|
|
}
|
|
|
|
PHAR_ENTRY_OBJECT();
|
|
|
|
if (PHAR_G(readonly) && !entry_obj->entry->phar->is_data) {
|
|
zend_throw_exception_ex(spl_ce_BadMethodCallException, 0, "Write operations disabled by the php.ini setting phar.readonly");
|
|
RETURN_THROWS();
|
|
}
|
|
|
|
if (entry_obj->entry->is_temp_dir) {
|
|
zend_throw_exception_ex(spl_ce_BadMethodCallException, 0, \
|
|
"Phar entry is a temporary directory (not an actual entry in the archive), cannot set metadata"); \
|
|
RETURN_THROWS();
|
|
}
|
|
|
|
if (entry_obj->entry->is_persistent) {
|
|
phar_archive_data *phar = entry_obj->entry->phar;
|
|
|
|
if (FAILURE == phar_copy_on_write(&phar)) {
|
|
zend_throw_exception_ex(phar_ce_PharException, 0, "phar \"%s\" is persistent, unable to copy on write", phar->fname);
|
|
RETURN_THROWS();
|
|
}
|
|
/* re-populate after copy-on-write */
|
|
entry_obj->entry = zend_hash_str_find_ptr(&phar->manifest, entry_obj->entry->filename, entry_obj->entry->filename_len);
|
|
ZEND_ASSERT(!entry_obj->entry->is_persistent); /* Should no longer be persistent */
|
|
}
|
|
|
|
if (serialize_metadata_or_throw(&entry_obj->entry->metadata_tracker, entry_obj->entry->is_persistent, metadata) != SUCCESS) {
|
|
RETURN_THROWS();
|
|
}
|
|
|
|
entry_obj->entry->is_modified = 1;
|
|
entry_obj->entry->phar->is_modified = 1;
|
|
phar_flush(entry_obj->entry->phar, 0, 0, 0, &error);
|
|
|
|
if (error) {
|
|
zend_throw_exception_ex(phar_ce_PharException, 0, "%s", error);
|
|
efree(error);
|
|
}
|
|
}
|
|
/* }}} */
|
|
|
|
/* {{{ Deletes the metadata of the entry */
|
|
PHP_METHOD(PharFileInfo, delMetadata)
|
|
{
|
|
char *error;
|
|
|
|
if (zend_parse_parameters_none() == FAILURE) {
|
|
RETURN_THROWS();
|
|
}
|
|
|
|
PHAR_ENTRY_OBJECT();
|
|
|
|
if (PHAR_G(readonly) && !entry_obj->entry->phar->is_data) {
|
|
zend_throw_exception_ex(spl_ce_BadMethodCallException, 0, "Write operations disabled by the php.ini setting phar.readonly");
|
|
RETURN_THROWS();
|
|
}
|
|
|
|
if (entry_obj->entry->is_temp_dir) {
|
|
zend_throw_exception_ex(spl_ce_BadMethodCallException, 0, \
|
|
"Phar entry is a temporary directory (not an actual entry in the archive), cannot delete metadata"); \
|
|
RETURN_THROWS();
|
|
}
|
|
|
|
if (phar_metadata_tracker_has_data(&entry_obj->entry->metadata_tracker, entry_obj->entry->is_persistent)) {
|
|
if (entry_obj->entry->is_persistent) {
|
|
phar_archive_data *phar = entry_obj->entry->phar;
|
|
|
|
if (FAILURE == phar_copy_on_write(&phar)) {
|
|
zend_throw_exception_ex(phar_ce_PharException, 0, "phar \"%s\" is persistent, unable to copy on write", phar->fname);
|
|
RETURN_THROWS();
|
|
}
|
|
/* re-populate after copy-on-write */
|
|
entry_obj->entry = zend_hash_str_find_ptr(&phar->manifest, entry_obj->entry->filename, entry_obj->entry->filename_len);
|
|
}
|
|
/* multiple values may reference the metadata */
|
|
phar_metadata_tracker_free(&entry_obj->entry->metadata_tracker, entry_obj->entry->is_persistent);
|
|
entry_obj->entry->is_modified = 1;
|
|
entry_obj->entry->phar->is_modified = 1;
|
|
|
|
phar_flush(entry_obj->entry->phar, 0, 0, 0, &error);
|
|
|
|
if (error) {
|
|
zend_throw_exception_ex(phar_ce_PharException, 0, "%s", error);
|
|
efree(error);
|
|
RETURN_THROWS();
|
|
} else {
|
|
RETURN_TRUE;
|
|
}
|
|
|
|
} else {
|
|
RETURN_TRUE;
|
|
}
|
|
}
|
|
/* }}} */
|
|
|
|
/* {{{ return the complete file contents of the entry (like file_get_contents) */
|
|
PHP_METHOD(PharFileInfo, getContent)
|
|
{
|
|
char *error;
|
|
php_stream *fp;
|
|
phar_entry_info *link;
|
|
zend_string *str;
|
|
|
|
if (zend_parse_parameters_none() == FAILURE) {
|
|
RETURN_THROWS();
|
|
}
|
|
|
|
PHAR_ENTRY_OBJECT();
|
|
|
|
if (entry_obj->entry->is_dir) {
|
|
zend_throw_exception_ex(spl_ce_BadMethodCallException, 0,
|
|
"phar error: Cannot retrieve contents, \"%s\" in phar \"%s\" is a directory", entry_obj->entry->filename, entry_obj->entry->phar->fname);
|
|
RETURN_THROWS();
|
|
}
|
|
|
|
link = phar_get_link_source(entry_obj->entry);
|
|
|
|
if (!link) {
|
|
link = entry_obj->entry;
|
|
}
|
|
|
|
if (SUCCESS != phar_open_entry_fp(link, &error, 0)) {
|
|
zend_throw_exception_ex(spl_ce_BadMethodCallException, 0,
|
|
"phar error: Cannot retrieve contents, \"%s\" in phar \"%s\": %s", entry_obj->entry->filename, entry_obj->entry->phar->fname, error);
|
|
efree(error);
|
|
RETURN_THROWS();
|
|
}
|
|
|
|
if (!(fp = phar_get_efp(link, 0))) {
|
|
zend_throw_exception_ex(spl_ce_BadMethodCallException, 0,
|
|
"phar error: Cannot retrieve contents of \"%s\" in phar \"%s\"", entry_obj->entry->filename, entry_obj->entry->phar->fname);
|
|
RETURN_THROWS();
|
|
}
|
|
|
|
phar_seek_efp(link, 0, SEEK_SET, 0, 0);
|
|
str = php_stream_copy_to_mem(fp, link->uncompressed_filesize, 0);
|
|
if (str) {
|
|
RETURN_STR(str);
|
|
} else {
|
|
RETURN_EMPTY_STRING();
|
|
}
|
|
}
|
|
/* }}} */
|
|
|
|
/* {{{ Instructs the Phar class to compress the current file using zlib or bzip2 compression */
|
|
PHP_METHOD(PharFileInfo, compress)
|
|
{
|
|
zend_long method;
|
|
char *error;
|
|
|
|
if (zend_parse_parameters(ZEND_NUM_ARGS(), "l", &method) == FAILURE) {
|
|
RETURN_THROWS();
|
|
}
|
|
|
|
PHAR_ENTRY_OBJECT();
|
|
|
|
if (entry_obj->entry->is_tar) {
|
|
zend_throw_exception_ex(spl_ce_BadMethodCallException, 0,
|
|
"Cannot compress with Gzip compression, not possible with tar-based phar archives");
|
|
RETURN_THROWS();
|
|
}
|
|
|
|
if (entry_obj->entry->is_dir) {
|
|
zend_throw_exception_ex(spl_ce_BadMethodCallException, 0, \
|
|
"Phar entry is a directory, cannot set compression"); \
|
|
RETURN_THROWS();
|
|
}
|
|
|
|
if (PHAR_G(readonly) && !entry_obj->entry->phar->is_data) {
|
|
zend_throw_exception_ex(spl_ce_BadMethodCallException, 0,
|
|
"Phar is readonly, cannot change compression");
|
|
RETURN_THROWS();
|
|
}
|
|
|
|
if (entry_obj->entry->is_deleted) {
|
|
zend_throw_exception_ex(spl_ce_BadMethodCallException, 0,
|
|
"Cannot compress deleted file");
|
|
RETURN_THROWS();
|
|
}
|
|
|
|
if (entry_obj->entry->is_persistent) {
|
|
phar_archive_data *phar = entry_obj->entry->phar;
|
|
|
|
if (FAILURE == phar_copy_on_write(&phar)) {
|
|
zend_throw_exception_ex(phar_ce_PharException, 0, "phar \"%s\" is persistent, unable to copy on write", phar->fname);
|
|
RETURN_THROWS();
|
|
}
|
|
/* re-populate after copy-on-write */
|
|
entry_obj->entry = zend_hash_str_find_ptr(&phar->manifest, entry_obj->entry->filename, entry_obj->entry->filename_len);
|
|
}
|
|
switch (method) {
|
|
case PHAR_ENT_COMPRESSED_GZ:
|
|
if (entry_obj->entry->flags & PHAR_ENT_COMPRESSED_GZ) {
|
|
RETURN_TRUE;
|
|
}
|
|
|
|
if ((entry_obj->entry->flags & PHAR_ENT_COMPRESSED_BZ2) != 0) {
|
|
if (!PHAR_G(has_bz2)) {
|
|
zend_throw_exception_ex(spl_ce_BadMethodCallException, 0,
|
|
"Cannot compress with gzip compression, file is already compressed with bzip2 compression and bz2 extension is not enabled, cannot decompress");
|
|
RETURN_THROWS();
|
|
}
|
|
|
|
/* decompress this file indirectly */
|
|
if (SUCCESS != phar_open_entry_fp(entry_obj->entry, &error, 1)) {
|
|
zend_throw_exception_ex(spl_ce_BadMethodCallException, 0,
|
|
"phar error: Cannot decompress bzip2-compressed file \"%s\" in phar \"%s\" in order to compress with gzip: %s", entry_obj->entry->filename, entry_obj->entry->phar->fname, error);
|
|
efree(error);
|
|
RETURN_THROWS();
|
|
}
|
|
}
|
|
|
|
if (!PHAR_G(has_zlib)) {
|
|
zend_throw_exception_ex(spl_ce_BadMethodCallException, 0,
|
|
"Cannot compress with gzip compression, zlib extension is not enabled");
|
|
RETURN_THROWS();
|
|
}
|
|
|
|
entry_obj->entry->old_flags = entry_obj->entry->flags;
|
|
entry_obj->entry->flags &= ~PHAR_ENT_COMPRESSION_MASK;
|
|
entry_obj->entry->flags |= PHAR_ENT_COMPRESSED_GZ;
|
|
break;
|
|
case PHAR_ENT_COMPRESSED_BZ2:
|
|
if (entry_obj->entry->flags & PHAR_ENT_COMPRESSED_BZ2) {
|
|
RETURN_TRUE;
|
|
}
|
|
|
|
if ((entry_obj->entry->flags & PHAR_ENT_COMPRESSED_GZ) != 0) {
|
|
if (!PHAR_G(has_zlib)) {
|
|
zend_throw_exception_ex(spl_ce_BadMethodCallException, 0,
|
|
"Cannot compress with bzip2 compression, file is already compressed with gzip compression and zlib extension is not enabled, cannot decompress");
|
|
RETURN_THROWS();
|
|
}
|
|
|
|
/* decompress this file indirectly */
|
|
if (SUCCESS != phar_open_entry_fp(entry_obj->entry, &error, 1)) {
|
|
zend_throw_exception_ex(spl_ce_BadMethodCallException, 0,
|
|
"phar error: Cannot decompress gzip-compressed file \"%s\" in phar \"%s\" in order to compress with bzip2: %s", entry_obj->entry->filename, entry_obj->entry->phar->fname, error);
|
|
efree(error);
|
|
RETURN_THROWS();
|
|
}
|
|
}
|
|
|
|
if (!PHAR_G(has_bz2)) {
|
|
zend_throw_exception_ex(spl_ce_BadMethodCallException, 0,
|
|
"Cannot compress with bzip2 compression, bz2 extension is not enabled");
|
|
RETURN_THROWS();
|
|
}
|
|
entry_obj->entry->old_flags = entry_obj->entry->flags;
|
|
entry_obj->entry->flags &= ~PHAR_ENT_COMPRESSION_MASK;
|
|
entry_obj->entry->flags |= PHAR_ENT_COMPRESSED_BZ2;
|
|
break;
|
|
default:
|
|
zend_throw_exception_ex(spl_ce_BadMethodCallException, 0, \
|
|
"Unknown compression type specified"); \
|
|
}
|
|
|
|
entry_obj->entry->phar->is_modified = 1;
|
|
entry_obj->entry->is_modified = 1;
|
|
phar_flush(entry_obj->entry->phar, 0, 0, 0, &error);
|
|
|
|
if (error) {
|
|
zend_throw_exception_ex(phar_ce_PharException, 0, "%s", error);
|
|
efree(error);
|
|
RETURN_THROWS();
|
|
}
|
|
|
|
RETURN_TRUE;
|
|
}
|
|
/* }}} */
|
|
|
|
/* {{{ Instructs the Phar class to decompress the current file */
|
|
PHP_METHOD(PharFileInfo, decompress)
|
|
{
|
|
char *error;
|
|
char *compression_type;
|
|
|
|
if (zend_parse_parameters_none() == FAILURE) {
|
|
RETURN_THROWS();
|
|
}
|
|
|
|
PHAR_ENTRY_OBJECT();
|
|
|
|
if (entry_obj->entry->is_dir) {
|
|
zend_throw_exception_ex(spl_ce_BadMethodCallException, 0, \
|
|
"Phar entry is a directory, cannot set compression"); \
|
|
RETURN_THROWS();
|
|
}
|
|
|
|
if ((entry_obj->entry->flags & PHAR_ENT_COMPRESSION_MASK) == 0) {
|
|
RETURN_TRUE;
|
|
}
|
|
|
|
if (PHAR_G(readonly) && !entry_obj->entry->phar->is_data) {
|
|
zend_throw_exception_ex(spl_ce_BadMethodCallException, 0,
|
|
"Phar is readonly, cannot decompress");
|
|
RETURN_THROWS();
|
|
}
|
|
|
|
if (entry_obj->entry->is_deleted) {
|
|
zend_throw_exception_ex(spl_ce_BadMethodCallException, 0,
|
|
"Cannot compress deleted file");
|
|
RETURN_THROWS();
|
|
}
|
|
|
|
if ((entry_obj->entry->flags & PHAR_ENT_COMPRESSED_GZ) != 0 && !PHAR_G(has_zlib)) {
|
|
zend_throw_exception_ex(spl_ce_BadMethodCallException, 0,
|
|
"Cannot decompress Gzip-compressed file, zlib extension is not enabled");
|
|
RETURN_THROWS();
|
|
}
|
|
|
|
if ((entry_obj->entry->flags & PHAR_ENT_COMPRESSED_BZ2) != 0 && !PHAR_G(has_bz2)) {
|
|
zend_throw_exception_ex(spl_ce_BadMethodCallException, 0,
|
|
"Cannot decompress Bzip2-compressed file, bz2 extension is not enabled");
|
|
RETURN_THROWS();
|
|
}
|
|
|
|
if (entry_obj->entry->is_persistent) {
|
|
phar_archive_data *phar = entry_obj->entry->phar;
|
|
|
|
if (FAILURE == phar_copy_on_write(&phar)) {
|
|
zend_throw_exception_ex(phar_ce_PharException, 0, "phar \"%s\" is persistent, unable to copy on write", phar->fname);
|
|
RETURN_THROWS();
|
|
}
|
|
/* re-populate after copy-on-write */
|
|
entry_obj->entry = zend_hash_str_find_ptr(&phar->manifest, entry_obj->entry->filename, entry_obj->entry->filename_len);
|
|
}
|
|
switch (entry_obj->entry->flags & PHAR_ENT_COMPRESSION_MASK) {
|
|
case PHAR_ENT_COMPRESSED_GZ:
|
|
compression_type = "gzip";
|
|
break;
|
|
case PHAR_ENT_COMPRESSED_BZ2:
|
|
compression_type = "bz2";
|
|
break;
|
|
default:
|
|
zend_throw_exception_ex(spl_ce_BadMethodCallException, 0,
|
|
"Cannot decompress file compressed with unknown compression type");
|
|
RETURN_THROWS();
|
|
}
|
|
/* decompress this file indirectly */
|
|
if (SUCCESS != phar_open_entry_fp(entry_obj->entry, &error, 1)) {
|
|
zend_throw_exception_ex(spl_ce_BadMethodCallException, 0,
|
|
"Phar error: Cannot decompress %s-compressed file \"%s\" in phar \"%s\": %s", compression_type, entry_obj->entry->filename, entry_obj->entry->phar->fname, error);
|
|
efree(error);
|
|
return;
|
|
}
|
|
|
|
entry_obj->entry->old_flags = entry_obj->entry->flags;
|
|
entry_obj->entry->flags &= ~PHAR_ENT_COMPRESSION_MASK;
|
|
entry_obj->entry->phar->is_modified = 1;
|
|
entry_obj->entry->is_modified = 1;
|
|
phar_flush(entry_obj->entry->phar, 0, 0, 0, &error);
|
|
|
|
if (error) {
|
|
zend_throw_exception_ex(phar_ce_PharException, 0, "%s", error);
|
|
efree(error);
|
|
RETURN_THROWS();
|
|
}
|
|
|
|
RETURN_TRUE;
|
|
}
|
|
/* }}} */
|
|
|
|
/* {{{ phar methods */
|
|
|
|
#define REGISTER_PHAR_CLASS_CONST_LONG(class_name, const_name, value) \
|
|
zend_declare_class_constant_long(class_name, const_name, sizeof(const_name)-1, (zend_long)value);
|
|
|
|
void phar_object_init(void) /* {{{ */
|
|
{
|
|
zend_class_entry ce;
|
|
|
|
INIT_CLASS_ENTRY(ce, "PharException", class_PharException_methods);
|
|
phar_ce_PharException = zend_register_internal_class_ex(&ce, zend_ce_exception);
|
|
|
|
INIT_CLASS_ENTRY(ce, "Phar", class_Phar_methods);
|
|
phar_ce_archive = zend_register_internal_class_ex(&ce, spl_ce_RecursiveDirectoryIterator);
|
|
|
|
zend_class_implements(phar_ce_archive, 2, zend_ce_countable, zend_ce_arrayaccess);
|
|
|
|
INIT_CLASS_ENTRY(ce, "PharData", class_PharData_methods);
|
|
phar_ce_data = zend_register_internal_class_ex(&ce, spl_ce_RecursiveDirectoryIterator);
|
|
|
|
zend_class_implements(phar_ce_data, 2, zend_ce_countable, zend_ce_arrayaccess);
|
|
|
|
INIT_CLASS_ENTRY(ce, "PharFileInfo", class_PharFileInfo_methods);
|
|
phar_ce_entry = zend_register_internal_class_ex(&ce, spl_ce_SplFileInfo);
|
|
|
|
REGISTER_PHAR_CLASS_CONST_LONG(phar_ce_archive, "BZ2", PHAR_ENT_COMPRESSED_BZ2)
|
|
REGISTER_PHAR_CLASS_CONST_LONG(phar_ce_archive, "GZ", PHAR_ENT_COMPRESSED_GZ)
|
|
REGISTER_PHAR_CLASS_CONST_LONG(phar_ce_archive, "NONE", PHAR_ENT_COMPRESSED_NONE)
|
|
REGISTER_PHAR_CLASS_CONST_LONG(phar_ce_archive, "PHAR", PHAR_FORMAT_PHAR)
|
|
REGISTER_PHAR_CLASS_CONST_LONG(phar_ce_archive, "TAR", PHAR_FORMAT_TAR)
|
|
REGISTER_PHAR_CLASS_CONST_LONG(phar_ce_archive, "ZIP", PHAR_FORMAT_ZIP)
|
|
REGISTER_PHAR_CLASS_CONST_LONG(phar_ce_archive, "COMPRESSED", PHAR_ENT_COMPRESSION_MASK)
|
|
REGISTER_PHAR_CLASS_CONST_LONG(phar_ce_archive, "PHP", PHAR_MIME_PHP)
|
|
REGISTER_PHAR_CLASS_CONST_LONG(phar_ce_archive, "PHPS", PHAR_MIME_PHPS)
|
|
REGISTER_PHAR_CLASS_CONST_LONG(phar_ce_archive, "MD5", PHAR_SIG_MD5)
|
|
REGISTER_PHAR_CLASS_CONST_LONG(phar_ce_archive, "OPENSSL", PHAR_SIG_OPENSSL)
|
|
REGISTER_PHAR_CLASS_CONST_LONG(phar_ce_archive, "SHA1", PHAR_SIG_SHA1)
|
|
REGISTER_PHAR_CLASS_CONST_LONG(phar_ce_archive, "SHA256", PHAR_SIG_SHA256)
|
|
REGISTER_PHAR_CLASS_CONST_LONG(phar_ce_archive, "SHA512", PHAR_SIG_SHA512)
|
|
}
|
|
/* }}} */
|