1
0
Fork 0

fix stat() for relative file not in include_path but in current executing file directory (only for when inode available)

git-svn-id: svn://svn.lighttpd.net/xcache/trunk@661 c26eb9a1-5813-0410-bd6c-c2e55f420ca7
3.0
Xuefer 14 years ago
parent 4bec45f41c
commit 2426df47f4

@ -813,24 +813,46 @@ static int xc_stat(const char *filename, const char *include_path, struct stat *
char *tokbuf;
int size = strlen(include_path) + 1;
char tokens[] = { DEFAULT_DIR_SEPARATOR, '\0' };
int ret;
ALLOCA_FLAG(use_heap)
paths = (char *)my_do_alloca(size, use_heap);
memcpy(paths, include_path, size);
for (path = php_strtok_r(paths, tokens, &tokbuf); path; path = php_strtok_r(NULL, tokens, &tokbuf)) {
if (snprintf(filepath, sizeof(filepath), "%s/%s", path, filename) >= MAXPATHLEN - 1) {
continue;
if (snprintf(filepath, sizeof(filepath), "%s/%s", path, filename) < MAXPATHLEN - 1) {
if (VCWD_STAT(filepath, pbuf) == 0) {
ret = SUCCESS;
goto finish;
}
}
if (VCWD_STAT(filepath, pbuf) == 0) {
my_free_alloca(paths, use_heap);
return SUCCESS;
}
/* fall back to current directory */
if (zend_is_executing(TSRMLS_C)) {
char *path = zend_get_executed_filename(TSRMLS_C);
if (path && path[0] != '[') {
int len = strlen(path);
while ((--len >= 0) && !IS_SLASH(path[len])) {
/* skipped */
}
if (len > 0 && len + strlen(filename) + 1 < MAXPATHLEN - 1) {
strcpy(filepath, path);
strcpy(filepath + len + 1, filename);
if (VCWD_STAT(filepath, pbuf) == 0) {
ret = SUCCESS;
goto finish;
}
}
}
}
ret = FAILURE;
finish:
my_free_alloca(paths, use_heap);
return FAILURE;
return ret;
}
/* }}} */

Loading…
Cancel
Save