mirror of
https://github.com/php/php-src.git
synced 2025-08-15 21:48:51 +02:00
ext/phar: Refer to zend_string* length directly
This makes it more obvious that the host_len is that of resource->host
This commit is contained in:
parent
839952c65a
commit
615960be9c
2 changed files with 10 additions and 20 deletions
|
@ -319,11 +319,10 @@ php_stream *phar_wrapper_open_dir(php_stream_wrapper *wrapper, const char *path,
|
|||
return NULL;
|
||||
}
|
||||
|
||||
size_t host_len = ZSTR_LEN(resource->host);
|
||||
phar_request_initialize();
|
||||
internal_file = ZSTR_VAL(resource->path) + 1; /* strip leading "/" */
|
||||
|
||||
if (FAILURE == phar_get_archive(&phar, ZSTR_VAL(resource->host), host_len, NULL, 0, &error)) {
|
||||
if (FAILURE == phar_get_archive(&phar, ZSTR_VAL(resource->host), ZSTR_LEN(resource->host), NULL, 0, &error)) {
|
||||
if (error) {
|
||||
php_stream_wrapper_log_error(wrapper, options, "%s", error);
|
||||
efree(error);
|
||||
|
@ -436,9 +435,7 @@ int phar_wrapper_mkdir(php_stream_wrapper *wrapper, const char *url_from, int mo
|
|||
return 0;
|
||||
}
|
||||
|
||||
size_t host_len = ZSTR_LEN(resource->host);
|
||||
|
||||
if (FAILURE == phar_get_archive(&phar, ZSTR_VAL(resource->host), host_len, NULL, 0, &error)) {
|
||||
if (FAILURE == phar_get_archive(&phar, ZSTR_VAL(resource->host), ZSTR_LEN(resource->host), NULL, 0, &error)) {
|
||||
php_stream_wrapper_log_error(wrapper, options, "phar error: cannot create directory \"%s\" in phar \"%s\", error retrieving phar information: %s", ZSTR_VAL(resource->path) + 1, ZSTR_VAL(resource->host), error);
|
||||
efree(error);
|
||||
php_url_free(resource);
|
||||
|
@ -567,9 +564,7 @@ int phar_wrapper_rmdir(php_stream_wrapper *wrapper, const char *url, int options
|
|||
return 0;
|
||||
}
|
||||
|
||||
size_t host_len = ZSTR_LEN(resource->host);
|
||||
|
||||
if (FAILURE == phar_get_archive(&phar, ZSTR_VAL(resource->host), host_len, NULL, 0, &error)) {
|
||||
if (FAILURE == phar_get_archive(&phar, ZSTR_VAL(resource->host), ZSTR_LEN(resource->host), NULL, 0, &error)) {
|
||||
php_stream_wrapper_log_error(wrapper, options, "phar error: cannot remove directory \"%s\" in phar \"%s\", error retrieving phar information: %s", ZSTR_VAL(resource->path)+1, ZSTR_VAL(resource->host), error);
|
||||
efree(error);
|
||||
php_url_free(resource);
|
||||
|
|
|
@ -186,13 +186,12 @@ static php_stream * phar_wrapper_open_url(php_stream_wrapper *wrapper, const cha
|
|||
return NULL;
|
||||
}
|
||||
|
||||
size_t host_len = ZSTR_LEN(resource->host);
|
||||
phar_request_initialize();
|
||||
|
||||
/* strip leading "/" */
|
||||
internal_file = estrndup(ZSTR_VAL(resource->path) + 1, ZSTR_LEN(resource->path) - 1);
|
||||
if (mode[0] == 'w' || (mode[0] == 'r' && mode[1] == '+')) {
|
||||
if (NULL == (idata = phar_get_or_create_entry_data(ZSTR_VAL(resource->host), host_len, internal_file, strlen(internal_file), mode, 0, &error, 1))) {
|
||||
if (NULL == (idata = phar_get_or_create_entry_data(ZSTR_VAL(resource->host), ZSTR_LEN(resource->host), internal_file, strlen(internal_file), mode, 0, &error, 1))) {
|
||||
if (error) {
|
||||
php_stream_wrapper_log_error(wrapper, options, "%s", error);
|
||||
efree(error);
|
||||
|
@ -236,14 +235,14 @@ static php_stream * phar_wrapper_open_url(php_stream_wrapper *wrapper, const cha
|
|||
} else {
|
||||
if (!*internal_file && (options & STREAM_OPEN_FOR_INCLUDE)) {
|
||||
/* retrieve the stub */
|
||||
if (FAILURE == phar_get_archive(&phar, ZSTR_VAL(resource->host), host_len, NULL, 0, NULL)) {
|
||||
if (FAILURE == phar_get_archive(&phar, ZSTR_VAL(resource->host), ZSTR_LEN(resource->host), NULL, 0, NULL)) {
|
||||
php_stream_wrapper_log_error(wrapper, options, "file %s is not a valid phar archive", ZSTR_VAL(resource->host));
|
||||
efree(internal_file);
|
||||
php_url_free(resource);
|
||||
return NULL;
|
||||
}
|
||||
if (phar->is_tar || phar->is_zip) {
|
||||
if ((FAILURE == phar_get_entry_data(&idata, ZSTR_VAL(resource->host), host_len, ".phar/stub.php", sizeof(".phar/stub.php")-1, "r", 0, &error, 0)) || !idata) {
|
||||
if ((FAILURE == phar_get_entry_data(&idata, ZSTR_VAL(resource->host), ZSTR_LEN(resource->host), ".phar/stub.php", sizeof(".phar/stub.php")-1, "r", 0, &error, 0)) || !idata) {
|
||||
goto idata_error;
|
||||
}
|
||||
efree(internal_file);
|
||||
|
@ -292,7 +291,7 @@ static php_stream * phar_wrapper_open_url(php_stream_wrapper *wrapper, const cha
|
|||
}
|
||||
}
|
||||
/* read-only access is allowed to magic files in .phar directory */
|
||||
if ((FAILURE == phar_get_entry_data(&idata, ZSTR_VAL(resource->host), host_len, internal_file, strlen(internal_file), "r", 0, &error, 0)) || !idata) {
|
||||
if ((FAILURE == phar_get_entry_data(&idata, ZSTR_VAL(resource->host), ZSTR_LEN(resource->host), internal_file, strlen(internal_file), "r", 0, &error, 0)) || !idata) {
|
||||
idata_error:
|
||||
if (error) {
|
||||
php_stream_wrapper_log_error(wrapper, options, "%s", error);
|
||||
|
@ -580,12 +579,11 @@ static int phar_wrapper_stat(php_stream_wrapper *wrapper, const char *url, int f
|
|||
return FAILURE;
|
||||
}
|
||||
|
||||
size_t host_len = ZSTR_LEN(resource->host);
|
||||
phar_request_initialize();
|
||||
|
||||
internal_file = ZSTR_VAL(resource->path) + 1; /* strip leading "/" */
|
||||
/* find the phar in our trusty global hash indexed by alias (host of phar://blah.phar/file.whatever) */
|
||||
if (FAILURE == phar_get_archive(&phar, ZSTR_VAL(resource->host), host_len, NULL, 0, &error)) {
|
||||
if (FAILURE == phar_get_archive(&phar, ZSTR_VAL(resource->host), ZSTR_LEN(resource->host), NULL, 0, &error)) {
|
||||
php_url_free(resource);
|
||||
if (error) {
|
||||
efree(error);
|
||||
|
@ -690,7 +688,6 @@ static int phar_wrapper_unlink(php_stream_wrapper *wrapper, const char *url, int
|
|||
return 0;
|
||||
}
|
||||
|
||||
size_t host_len = ZSTR_LEN(resource->host);
|
||||
phar_request_initialize();
|
||||
|
||||
pphar = zend_hash_find_ptr(&(PHAR_G(phar_fname_map)), resource->host);
|
||||
|
@ -703,7 +700,7 @@ static int phar_wrapper_unlink(php_stream_wrapper *wrapper, const char *url, int
|
|||
/* need to copy to strip leading "/", will get touched again */
|
||||
internal_file = estrndup(ZSTR_VAL(resource->path) + 1, ZSTR_LEN(resource->path) - 1);
|
||||
internal_file_len = ZSTR_LEN(resource->path) - 1;
|
||||
if (FAILURE == phar_get_entry_data(&idata, ZSTR_VAL(resource->host), host_len, internal_file, internal_file_len, "r", 0, &error, 1)) {
|
||||
if (FAILURE == phar_get_entry_data(&idata, ZSTR_VAL(resource->host), ZSTR_LEN(resource->host), internal_file, internal_file_len, "r", 0, &error, 1)) {
|
||||
/* constraints of fp refcount were not met */
|
||||
if (error) {
|
||||
php_stream_wrapper_log_error(wrapper, options, "unlink of \"%s\" failed: %s", url, error);
|
||||
|
@ -818,9 +815,7 @@ static int phar_wrapper_rename(php_stream_wrapper *wrapper, const char *url_from
|
|||
return 0;
|
||||
}
|
||||
|
||||
size_t host_len = ZSTR_LEN(resource_from->host);
|
||||
|
||||
if (SUCCESS != phar_get_archive(&phar, ZSTR_VAL(resource_from->host), host_len, NULL, 0, &error)) {
|
||||
if (SUCCESS != phar_get_archive(&phar, ZSTR_VAL(resource_from->host), ZSTR_LEN(resource_from->host), NULL, 0, &error)) {
|
||||
php_url_free(resource_from);
|
||||
php_url_free(resource_to);
|
||||
php_error_docref(NULL, E_WARNING, "phar error: cannot rename \"%s\" to \"%s\": %s", url_from, url_to, error);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue