mirror of
https://github.com/php/php-src.git
synced 2024-11-25 02:44:58 +08:00
114 lines
4.0 KiB
C
114 lines
4.0 KiB
C
/*
|
|
+----------------------------------------------------------------------+
|
|
| PHP HTML Embedded Scripting Language Version 3.0 |
|
|
+----------------------------------------------------------------------+
|
|
| Copyright (c) 1997,1998 PHP Development Team (See Credits file) |
|
|
+----------------------------------------------------------------------+
|
|
| This program is free software; you can redistribute it and/or modify |
|
|
| it under the terms of one of the following licenses: |
|
|
| |
|
|
| A) the GNU General Public License as published by the Free Software |
|
|
| Foundation; either version 2 of the License, or (at your option) |
|
|
| any later version. |
|
|
| |
|
|
| B) the PHP License as published by the PHP Development Team and |
|
|
| included in the distribution in the file: LICENSE |
|
|
| |
|
|
| This program is distributed in the hope that it will be useful, |
|
|
| but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
|
| MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
|
| GNU General Public License for more details. |
|
|
| |
|
|
| You should have received a copy of both licenses referred to here. |
|
|
| If you did not, or have any questions about PHP licensing, please |
|
|
| contact core@php.net. |
|
|
+----------------------------------------------------------------------+
|
|
| Author: Jim Winstead (jimw@php.net) |
|
|
+----------------------------------------------------------------------+
|
|
*/
|
|
|
|
#include "php.h"
|
|
#include "SAPI.h"
|
|
|
|
#ifndef THREAD_SAFE
|
|
PHPAPI php3_request_info request_info;
|
|
#endif
|
|
|
|
#if CGI_BINARY
|
|
int php3_init_request_info(void *conf)
|
|
{
|
|
SLS_FETCH();
|
|
|
|
request_info.current_user = NULL;
|
|
request_info.current_user_length = 0;
|
|
request_info.script_name = getenv("SCRIPT_NAME");
|
|
request_info.script_filename = getenv("SCRIPT_FILENAME");
|
|
/* Hack for annoying servers that do not set SCRIPT_FILENAME for us */
|
|
if (!request_info.script_filename) {
|
|
request_info.script_filename = request_info.php_argv0;
|
|
}
|
|
#if WIN32|WINNT
|
|
/* FIXME WHEN APACHE NT IS FIXED */
|
|
/* a hack for apache nt because it does not appear to set argv[1] and sets
|
|
script filename to php.exe thus makes us parse php.exe instead of file.php
|
|
requires we get the info from path translated. This can be removed at
|
|
such a time taht apache nt is fixed */
|
|
else {
|
|
request_info.script_filename = getenv("PATH_TRANSLATED");
|
|
}
|
|
#endif
|
|
|
|
/* doc_root configuration variable is currently ignored,
|
|
as it is with every other access method currently also. */
|
|
|
|
/* We always need to emalloc() filename, since it gets placed into
|
|
the include file hash table, and gets freed with that table.
|
|
Notice that this means that we don't need to efree() it in
|
|
php3_destroy_request_info()! */
|
|
#if DISCARD_PATH
|
|
if (request_info.script_filename) {
|
|
SG(request_info).path_translated = estrdup(request_info.script_filename);
|
|
} else {
|
|
SG(request_info).path_translated = NULL;
|
|
}
|
|
#endif
|
|
return SUCCESS;
|
|
}
|
|
|
|
int php3_destroy_request_info(void *conf)
|
|
{
|
|
STR_FREE(request_info.current_user);
|
|
return SUCCESS;
|
|
}
|
|
#endif
|
|
|
|
|
|
#if APACHE
|
|
int php3_init_request_info(void *conf)
|
|
{
|
|
request_rec *r;
|
|
SLS_FETCH();
|
|
|
|
r = ((request_rec *) SG(server_context));
|
|
request_info.current_user = NULL;
|
|
request_info.current_user_length = 0;
|
|
|
|
return SUCCESS;
|
|
}
|
|
|
|
#endif
|
|
|
|
#if !CGI_BINARY
|
|
int php3_destroy_request_info(void *conf)
|
|
{
|
|
/* see above for why we don't want to efree() request_info.filename */
|
|
return SUCCESS;
|
|
}
|
|
#endif
|
|
/*
|
|
* Local variables:
|
|
* tab-width: 4
|
|
* c-basic-offset: 4
|
|
* End:
|
|
*/
|