php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #2249 php.ini / user_dir doesn't work
Submitted: 1999-09-06 06:29 UTC Modified: 2002-06-16 08:40 UTC
From: schmidt4 at rz dot uni-greifswald dot de Assigned:
Status: Not a bug Package: Misbehaving function
PHP Version: 3.0.11 OS: WinNT4/SP5/Apache 1.3.9
Private report: No CVE-ID: None
View Add Comment Developer Edit
Welcome! If you don't have a Git account, you can't do anything here.
You can add a comment by following this link or if you reported this bug, you can edit this bug over here.
(description)
Block user comment
Status: Assign to:
Package:
Bug Type:
Summary:
From: schmidt4 at rz dot uni-greifswald dot de
New email:
PHP Version: OS:

 

 [1999-09-06 06:29 UTC] schmidt4 at rz dot uni-greifswald dot de
The user_dir directive seems not to work. Every call to a ~user/*.phtml returns a 'No input file specified.' error
in the browser. 'FileMon' (www.sysinternals.com) shows that php.exe doesn't even try to open the file. Is that an error, or an not implemented function?
It would be nice if PHP (under Win32) would use the same procedure as Apache: it should translate a ~user/*.phtml request to $user_dir/user/*.phtml

Thank you,
       Jan Schmidt !

Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [1999-09-07 12:53 UTC] schmidt4 at rz dot uni-greifswald dot de
I've took a look at the PHP source, exactly at php3_fopen_for_parser in fopen-wrappers.c and modified it a little bit to
work like the UserDir directive in Apache. I'm not sure if this is really safe, but it works fine on my server. Perhaps it
(or a rewritten function) will be implemented in a future release ?

FILE *php3_fopen_for_parser(void)
{
	FILE *fp;
	struct stat st;
	char *temp, *path_info, *fn;
	int l;
	TLS_VARS;


	fn = GLOBAL(request_info).filename;
	path_info = GLOBAL(request_info).path_info;

#if HAVE_PWD_H
	if (php3_ini.user_dir && *php3_ini.user_dir
		&& path_info && '/' == path_info[0] && '~' == path_info[1]) {

		char user[32];
		struct passwd *pw;
		char *s = strchr(path_info + 2, '/');

		fn = NULL;				/* discard the original filename, it must not be used */
		if (s) {				/* if there is no path name after the file, do not bother
								   to try open the directory */
			l = s - (path_info + 2);
			if (l > sizeof(user) - 1)
				l = sizeof(user) - 1;
			memcpy(user, path_info + 2, l);
			user[l] = '\0';

#if WIN32         // new part for path creation like in Apache

			fn = emalloc(strlen(php3_ini.user_dir) + strlen(path_info) + 32 + 4);
			if (fn) {
				strcpy(fn, php3_ini.user_dir);		/* safe */
				strcat(fn, "/");	/* safe */
				strcat(fn, user);	/* safe */
				strcat(fn, "/");	/* safe */
				strcat(fn, s + 1);	/* safe (shorter than path_info) */
				STR_FREE(GLOBAL(request_info).filename);
				GLOBAL(request_info).filename = fn;
			}
#else
			pw = getpwnam(user);
			if (pw && pw->pw_dir) {
				fn = emalloc(strlen(php3_ini.user_dir) + strlen(path_info) + strlen(pw->pw_dir) + 4);
				if (fn) {
					strcpy(fn, pw->pw_dir);		/* safe */
					strcat(fn, "/");	/* safe */
					strcat(fn, php3_ini.user_dir);	/* safe */
					strcat(fn, "/");	/* safe */
					strcat(fn, s + 1);	/* safe (shorter than path_info) */
					STR_FREE(GLOBAL(request_info).filename);
					GLOBAL(request_info).filename = fn;
				}
			}
#endif
		}
	} else
#endif
#if WIN32
	if (php3_ini.doc_root && path_info && ('/' == *php3_ini.doc_root ||
		'\\' == *php3_ini.doc_root || strstr(php3_ini.doc_root,":\\") ||
		strstr(php3_ini.doc_root,":/"))) {
#else
	if (php3_ini.doc_root && '/' == *php3_ini.doc_root && path_info) {
#endif
		l = strlen(php3_ini.doc_root);
		fn = emalloc(l + strlen(path_info) + 2);
		if (fn) {
			memcpy(fn, php3_ini.doc_root, l);
			if ('/' != fn[l - 1] || '\\' != fn[l - 1])	/* l is never 0 */
				fn[l++] = '/';
			if ('/' == path_info[0])
				l--;
			strcpy(fn + l, path_info);
			STR_FREE(GLOBAL(request_info).filename);
			GLOBAL(request_info).filename = fn;
		}
	}							/* if doc_root && path_info */
	if (!fn) {
		/* we have to free request_info.filename here because
		   php3_destroy_request_info assumes that it will get
		   freed when the include_names hash is emptied, but
		   we're not adding it in this case */
		STR_FREE(GLOBAL(request_info).filename);
		GLOBAL(request_info).filename = NULL;
		return NULL;
	}
	fp = fopen(fn, "r");

	/* refuse to open anything that is not a regular file */
	if (fp && (0 > fstat(fileno(fp), &st) || !S_ISREG(st.st_mode))) {
		fclose(fp);
		fp = NULL;
	}
	if (!fp) {
		php3_error(E_ERROR, "Unable to open %s", fn);
		STR_FREE(GLOBAL(request_info).filename);	/* for same reason as above */
		return NULL;
	}
	_php3_hash_index_update(&GLOBAL(include_names), 0, (void *) &fn, sizeof(char *), NULL);

	temp = strdup(fn);
	_php3_dirname(temp, strlen(temp));
	if (*temp)
		chdir(temp);
	free(temp);

	return fp;
}

 [2002-06-16 08:40 UTC] sander@php.net
Thank you for taking the time to report a problem with PHP.
Unfortunately, PHP 3 is no longer supported. Please download
the latest version of PHP 4 from http://www.php.net/downloads.php

If you are able to reproduce the bug with one of the latest
versions of PHP, please change the PHP version on this bug report
to the version you tested and change the status back to "Open".
Again, thank you for your continued support of PHP.
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Fri Apr 19 09:01:27 2024 UTC