}
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;
}
char *_cgi_filename=NULL;
int _cgi_started=0;
int behavior=PHP_MODE_STANDARD;
+ int no_headers=0;
#if SUPPORT_INTERACTIVE
int interactive=0;
#endif
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) {
return FAILURE;
}
}
+ if (no_headers) {
+ SG(headers_sent) = 1;
+ }
php3_printf("%s\n", PHP_VERSION);
exit(1);
break;
return FAILURE;
}
}
+ if (no_headers) {
+ SG(headers_sent) = 1;
+ }
_cgi_started=1;
php3_TreatHeaders();
_php3_info();
break;
case 'h':
case '?':
- php3_noheader();
zend_output_startup();
+ SG(headers_sent) = 1;
php_cgi_usage(argv[0]);
exit(1);
break;
return FAILURE;
}
}
+ if (no_headers) {
+ SG(headers_sent) = 1;
+ }
file_handle.filename = "-";
file_handle.type = ZEND_HANDLE_FP;
file_handle.handle.fp = stdin;
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);
}
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);
+ }
+ }
}
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) {
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));
}