summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZeev Suraski <zeev@php.net>1999-05-11 20:38:16 +0000
committerZeev Suraski <zeev@php.net>1999-05-11 20:38:16 +0000
commitceeb9b38ba264da2a1a24d540d88e3a7654ddb4a (patch)
tree96dee722bddfb4e95f7c13d01f686380717ebe15
parent702829709cc546a18469ad8bd52687e28ebfd9f5 (diff)
downloadphp-git-ceeb9b38ba264da2a1a24d540d88e3a7654ddb4a.tar.gz
* Finally commit that -q patch
* Refine SAPI built in header support * Use DllMain() in ISAPI to clean after threads and initialize tsrm/sapi as soon as possible.
-rw-r--r--cgi_main.c21
-rw-r--r--ext/standard/head.c7
-rw-r--r--ext/standard/head.h1
-rw-r--r--main/SAPI.c45
-rw-r--r--main/SAPI.h5
-rw-r--r--php4dllts.dsp4
6 files changed, 62 insertions, 21 deletions
diff --git a/cgi_main.c b/cgi_main.c
index a73b427e01..a2e37a4f03 100644
--- a/cgi_main.c
+++ b/cgi_main.c
@@ -170,6 +170,10 @@ static void init_request_info(SLS_D)
}
SG(request_info).content_type = getenv("CONTENT_TYPE");
SG(request_info).content_length = (content_length?atoi(content_length):0);
+
+ /* CGI does not support HTTP authentication */
+ SG(request_info).auth_user = NULL;
+ SG(request_info).auth_password = NULL;
}
@@ -182,6 +186,7 @@ int main(int argc, char *argv[])
char *_cgi_filename=NULL;
int _cgi_started=0;
int behavior=PHP_MODE_STANDARD;
+ int no_headers=0;
#if SUPPORT_INTERACTIVE
int interactive=0;
#endif
@@ -273,11 +278,14 @@ any .htaccess restrictions anywhere on your site you can leave doc_root undefine
return FAILURE;
}
}
+ if (no_headers) {
+ SG(headers_sent) = 1;
+ }
_cgi_started=1;
_cgi_filename = estrdup(optarg);
/* break missing intentionally */
case 'q':
- php3_noheader();
+ no_headers = 1;
break;
case 'v':
if (!_cgi_started) {
@@ -286,6 +294,9 @@ any .htaccess restrictions anywhere on your site you can leave doc_root undefine
return FAILURE;
}
}
+ if (no_headers) {
+ SG(headers_sent) = 1;
+ }
php3_printf("%s\n", PHP_VERSION);
exit(1);
break;
@@ -296,6 +307,9 @@ any .htaccess restrictions anywhere on your site you can leave doc_root undefine
return FAILURE;
}
}
+ if (no_headers) {
+ SG(headers_sent) = 1;
+ }
_cgi_started=1;
php3_TreatHeaders();
_php3_info();
@@ -323,8 +337,8 @@ any .htaccess restrictions anywhere on your site you can leave doc_root undefine
break;
case 'h':
case '?':
- php3_noheader();
zend_output_startup();
+ SG(headers_sent) = 1;
php_cgi_usage(argv[0]);
exit(1);
break;
@@ -344,6 +358,9 @@ any .htaccess restrictions anywhere on your site you can leave doc_root undefine
return FAILURE;
}
}
+ if (no_headers) {
+ SG(headers_sent) = 1;
+ }
file_handle.filename = "-";
file_handle.type = ZEND_HANDLE_FP;
file_handle.handle.fp = stdin;
diff --git a/ext/standard/head.c b/ext/standard/head.c
index 86e3a7d835..4d8b586f23 100644
--- a/ext/standard/head.c
+++ b/ext/standard/head.c
@@ -69,13 +69,6 @@ int php3_init_head(INIT_FUNC_ARGS)
}
-PHPAPI void php3_noheader(void)
-{
- php3_PrintHeader = 0;
- header_called = 1;
-}
-
-
#if 0
/* Adds header information */
void php4i_add_header_information(char *header_information, uint header_length)
diff --git a/ext/standard/head.h b/ext/standard/head.h
index 3ab12d0d84..37db395e2c 100644
--- a/ext/standard/head.h
+++ b/ext/standard/head.h
@@ -58,7 +58,6 @@ extern void php3_SetCookie(INTERNAL_FUNCTION_PARAMETERS);
void php4i_add_header_information(char *header_information, uint header_length);
-PHPAPI void php3_noheader(void);
PHPAPI int php3_header(void);
int php3_headers_unsent(void);
diff --git a/main/SAPI.c b/main/SAPI.c
index b0315f28b9..87be2e3fe8 100644
--- a/main/SAPI.c
+++ b/main/SAPI.c
@@ -91,14 +91,14 @@ SAPI_API void sapi_activate(SLS_D)
zend_llist_init(&SG(sapi_headers).headers, sizeof(sapi_header_struct), (void (*)(void *)) sapi_free_header, 0);
SG(sapi_headers).send_default_content_type = 1;
SG(sapi_headers).http_response_code = 200;
+ SG(sapi_headers).http_status_line = NULL;
SG(headers_sent) = 0;
SG(read_post_bytes) = 0;
+ SG(request_info).post_data = NULL;
if (SG(server_context)) {
if (SG(request_info).request_method
&& !strcmp(SG(request_info).request_method, "POST")) {
sapi_read_post_data(SLS_C);
- } else {
- SG(request_info).post_data = NULL;
}
SG(request_info).cookie_data = sapi_module.read_cookies(SLS_C);
}
@@ -108,9 +108,17 @@ SAPI_API void sapi_activate(SLS_D)
SAPI_API void sapi_deactivate(SLS_D)
{
zend_llist_destroy(&SG(sapi_headers).headers);
- if (SG(server_context) && SG(request_info).post_data) {
+ if (SG(request_info).post_data) {
efree(SG(request_info).post_data);
}
+ if (SG(server_context)) {
+ if (SG(request_info).auth_user) {
+ efree(SG(request_info).auth_user);
+ }
+ if (SG(request_info).auth_password) {
+ efree(SG(request_info).auth_password);
+ }
+ }
}
@@ -133,15 +141,22 @@ SAPI_API int sapi_add_header(char *header_line, uint header_line_len)
sapi_header.header = header_line;
sapi_header.header_len = header_line_len;
- colon_offset = strchr(header_line, ':');
- if (colon_offset) {
- *colon_offset = 0;
- if (!STRCASECMP(header_line, "Content-Type")) {
- SG(sapi_headers).send_default_content_type = 0;
- } else if (!STRCASECMP(header_line, "Location")) {
- SG(sapi_headers).http_response_code = 302; /* redirect */
+ /* Check the header for a few cases that we have special support for in SAPI */
+ if (!memcmp(header_line, "HTTP/", 5)) {
+ SG(sapi_headers).http_status_line = header_line;
+ } else {
+ colon_offset = strchr(header_line, ':');
+ if (colon_offset) {
+ *colon_offset = 0;
+ if (!STRCASECMP(header_line, "Content-Type")) {
+ SG(sapi_headers).send_default_content_type = 0;
+ } else if (!STRCASECMP(header_line, "Location")) {
+ SG(sapi_headers).http_response_code = 302; /* redirect */
+ } else if (!STRCASECMP(header_line, "WWW-Authenticate")) { /* HTTP Authentication */
+ SG(sapi_headers).http_response_code = 401; /* authentication-required */
+ }
+ *colon_offset = ':';
}
- *colon_offset = ':';
}
if (sapi_module.header_handler) {
@@ -182,6 +197,14 @@ SAPI_API int sapi_send_headers()
return SUCCESS;
break;
case SAPI_HEADER_DO_SEND:
+ if (SG(sapi_headers).http_status_line) {
+ sapi_header_struct http_status_line;
+
+ http_status_line.header = SG(sapi_headers).http_status_line;
+ http_status_line.header_len = strlen(SG(sapi_headers).http_status_line);
+ sapi_module.send_header(&http_status_line, SG(server_context));
+ efree(SG(sapi_headers).http_status_line);
+ }
if (SG(sapi_headers).send_default_content_type) {
sapi_module.send_header(&default_header, SG(server_context));
}
diff --git a/main/SAPI.h b/main/SAPI.h
index 0ea9b8d8c7..6b460c1ac2 100644
--- a/main/SAPI.h
+++ b/main/SAPI.h
@@ -27,6 +27,7 @@ typedef struct {
zend_llist headers;
int http_response_code;
unsigned char send_default_content_type;
+ char *http_status_line;
} sapi_headers_struct;
@@ -49,6 +50,10 @@ typedef struct {
char *content_type;
unsigned char headers_only;
+
+ /* for HTTP authentication */
+ char *auth_user;
+ char *auth_password;
} sapi_request_info;
diff --git a/php4dllts.dsp b/php4dllts.dsp
index e4a7558381..e770189ba6 100644
--- a/php4dllts.dsp
+++ b/php4dllts.dsp
@@ -211,6 +211,10 @@ SOURCE=.\php_ini.h
# End Source File
# Begin Source File
+SOURCE=.\php_regex.h
+# End Source File
+# Begin Source File
+
SOURCE=.\ext\standard\quot_print.h
# End Source File
# Begin Source File