From: Stefan Esser Date: Sun, 17 Mar 2002 21:00:44 +0000 (+0000) Subject: SAFE_MODE restriction error message fixed if the file doesn't exist X-Git-Tag: php-4.3.0dev-ZendEngine2-Preview1~1298 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=0d3a45299da1a36dd54680221494917e7ae65597;p=php SAFE_MODE restriction error message fixed if the file doesn't exist --- diff --git a/main/safe_mode.c b/main/safe_mode.c index f4f30d0e2f..d3ffab6a3f 100644 --- a/main/safe_mode.c +++ b/main/safe_mode.c @@ -46,7 +46,7 @@ PHPAPI int php_checkuid(const char *filename, char *fopen_mode, int mode) { struct stat sb; - int ret; + int ret, nofile=0; long uid=0L, gid=0L, duid=0L, dgid=0L; char path[MAXPATHLEN]; char *s; @@ -86,6 +86,7 @@ PHPAPI int php_checkuid(const char *filename, char *fopen_mode, int mode) php_error(E_WARNING, "Unable to access %s", filename); return 1; } + nofile = 1; } else { uid = sb.st_uid; gid = sb.st_gid; @@ -150,6 +151,13 @@ PHPAPI int php_checkuid(const char *filename, char *fopen_mode, int mode) *s = 0; } } + + if (nofile) { + uid = duid; + gid = dgid; + filename = path; + } + if (PG(safe_mode_gid)) { php_error(E_WARNING, "SAFE MODE Restriction in effect. The script whose uid/gid is %ld/%ld is not allowed to access %s owned by uid/gid %ld/%ld", php_getuid(), php_getgid(), filename, uid, gid); } else {