http_core.c revision bdf8801c51d958b1d3ff40f60ab16ccfd999b0fa
599c6d44f4d41aab5d3da98214492eb26e674b65Michael Graff/* Licensed to the Apache Software Foundation (ASF) under one or more
599c6d44f4d41aab5d3da98214492eb26e674b65Michael Graff * contributor license agreements. See the NOTICE file distributed with
599c6d44f4d41aab5d3da98214492eb26e674b65Michael Graff * this work for additional information regarding copyright ownership.
599c6d44f4d41aab5d3da98214492eb26e674b65Michael Graff * The ASF licenses this file to You under the Apache License, Version 2.0
599c6d44f4d41aab5d3da98214492eb26e674b65Michael Graff * (the "License"); you may not use this file except in compliance with
599c6d44f4d41aab5d3da98214492eb26e674b65Michael Graff * the License. You may obtain a copy of the License at
599c6d44f4d41aab5d3da98214492eb26e674b65Michael Graff * Unless required by applicable law or agreed to in writing, software
599c6d44f4d41aab5d3da98214492eb26e674b65Michael Graff * distributed under the License is distributed on an "AS IS" BASIS,
599c6d44f4d41aab5d3da98214492eb26e674b65Michael Graff * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
599c6d44f4d41aab5d3da98214492eb26e674b65Michael Graff * See the License for the specific language governing permissions and
599c6d44f4d41aab5d3da98214492eb26e674b65Michael Graff * limitations under the License.
599c6d44f4d41aab5d3da98214492eb26e674b65Michael Graff#include "apr_thread_proc.h" /* for RLIMIT stuff */
599c6d44f4d41aab5d3da98214492eb26e674b65Michael Graff#include "http_protocol.h" /* For index_of_response(). Grump. */
599c6d44f4d41aab5d3da98214492eb26e674b65Michael Graff/* Handles for core filters */
599c6d44f4d41aab5d3da98214492eb26e674b65Michael GraffAP_DECLARE_DATA ap_filter_rec_t *ap_http_input_filter_handle;
599c6d44f4d41aab5d3da98214492eb26e674b65Michael GraffAP_DECLARE_DATA ap_filter_rec_t *ap_kept_body_input_filter_handle;
599c6d44f4d41aab5d3da98214492eb26e674b65Michael GraffAP_DECLARE_DATA ap_filter_rec_t *ap_http_header_filter_handle;
599c6d44f4d41aab5d3da98214492eb26e674b65Michael GraffAP_DECLARE_DATA ap_filter_rec_t *ap_chunk_filter_handle;
599c6d44f4d41aab5d3da98214492eb26e674b65Michael GraffAP_DECLARE_DATA ap_filter_rec_t *ap_http_outerror_filter_handle;
599c6d44f4d41aab5d3da98214492eb26e674b65Michael GraffAP_DECLARE_DATA ap_filter_rec_t *ap_byterange_filter_handle;
599c6d44f4d41aab5d3da98214492eb26e674b65Michael Graffstatic int ap_process_http_connection(conn_rec *c);
599c6d44f4d41aab5d3da98214492eb26e674b65Michael Graffstatic const char *set_keep_alive_timeout(cmd_parms *cmd, void *dummy,
599c6d44f4d41aab5d3da98214492eb26e674b65Michael Graff const char *arg)
599c6d44f4d41aab5d3da98214492eb26e674b65Michael Graff const char *err = ap_check_cmd_context(cmd, NOT_IN_DIR_LOC_FILE);
599c6d44f4d41aab5d3da98214492eb26e674b65Michael Graff cmd->server->keep_alive_timeout = apr_time_from_sec(atoi(arg));
599c6d44f4d41aab5d3da98214492eb26e674b65Michael Graffstatic const char *set_keep_alive(cmd_parms *cmd, void *dummy,
599c6d44f4d41aab5d3da98214492eb26e674b65Michael Graff const char *arg)
599c6d44f4d41aab5d3da98214492eb26e674b65Michael Graff const char *err = ap_check_cmd_context(cmd, NOT_IN_DIR_LOC_FILE);
599c6d44f4d41aab5d3da98214492eb26e674b65Michael Graff /* We've changed it to On/Off, but used to use numbers
599c6d44f4d41aab5d3da98214492eb26e674b65Michael Graff * so we accept anything but "Off" or "0" as "On"
599c6d44f4d41aab5d3da98214492eb26e674b65Michael Graff if (!strcasecmp(arg, "off") || !strcmp(arg, "0")) {
599c6d44f4d41aab5d3da98214492eb26e674b65Michael Graffstatic const char *set_keep_alive_max(cmd_parms *cmd, void *dummy,
599c6d44f4d41aab5d3da98214492eb26e674b65Michael Graff const char *arg)
599c6d44f4d41aab5d3da98214492eb26e674b65Michael Graff const char *err = ap_check_cmd_context(cmd, NOT_IN_DIR_LOC_FILE);
599c6d44f4d41aab5d3da98214492eb26e674b65Michael Graffstatic const char *set_kept_body_size(cmd_parms *cmd, void *dconf,
599c6d44f4d41aab5d3da98214492eb26e674b65Michael Graff const char *arg)
599c6d44f4d41aab5d3da98214492eb26e674b65Michael Graff if (APR_SUCCESS != apr_strtoff(&(conf->keep_body), arg, NULL, 0)
599c6d44f4d41aab5d3da98214492eb26e674b65Michael Graff return "KeptBodySize must be a size in bytes, or zero.";
599c6d44f4d41aab5d3da98214492eb26e674b65Michael Graff AP_INIT_TAKE1("KeepAliveTimeout", set_keep_alive_timeout, NULL, RSRC_CONF,
599c6d44f4d41aab5d3da98214492eb26e674b65Michael Graff "Keep-Alive timeout duration (sec)"),
599c6d44f4d41aab5d3da98214492eb26e674b65Michael Graff AP_INIT_TAKE1("MaxKeepAliveRequests", set_keep_alive_max, NULL, RSRC_CONF,
599c6d44f4d41aab5d3da98214492eb26e674b65Michael Graff "Maximum number of Keep-Alive requests per connection, "
599c6d44f4d41aab5d3da98214492eb26e674b65Michael Graff "or 0 for infinite"),
599c6d44f4d41aab5d3da98214492eb26e674b65Michael Graff AP_INIT_TAKE1("KeepAlive", set_keep_alive, NULL, RSRC_CONF,
599c6d44f4d41aab5d3da98214492eb26e674b65Michael Graff "Whether persistent connections should be On or Off"),
599c6d44f4d41aab5d3da98214492eb26e674b65Michael Graff AP_INIT_TAKE1("KeptBodySize", set_kept_body_size, NULL, ACCESS_CONF,
599c6d44f4d41aab5d3da98214492eb26e674b65Michael Graff "Maximum size of request bodies kept aside for use by filters"),
599c6d44f4d41aab5d3da98214492eb26e674b65Michael Graffstatic const char *http_scheme(const request_rec *r)
599c6d44f4d41aab5d3da98214492eb26e674b65Michael Graff * The http module shouldn't return anything other than
599c6d44f4d41aab5d3da98214492eb26e674b65Michael Graff * "http" (the default) or "https".
599c6d44f4d41aab5d3da98214492eb26e674b65Michael Graff (strcmp(r->server->server_scheme, "https") == 0))
599c6d44f4d41aab5d3da98214492eb26e674b65Michael Graff return "https";
599c6d44f4d41aab5d3da98214492eb26e674b65Michael Graff return "http";
599c6d44f4d41aab5d3da98214492eb26e674b65Michael Graffstatic apr_port_t http_port(const request_rec *r)
599c6d44f4d41aab5d3da98214492eb26e674b65Michael Graff (strcmp(r->server->server_scheme, "https") == 0))
599c6d44f4d41aab5d3da98214492eb26e674b65Michael Graffstatic int ap_process_http_async_connection(conn_rec *c)
599c6d44f4d41aab5d3da98214492eb26e674b65Michael Graff AP_DEBUG_ASSERT(cs->state == CONN_STATE_READ_REQUEST_LINE);
599c6d44f4d41aab5d3da98214492eb26e674b65Michael Graff while (cs->state == CONN_STATE_READ_REQUEST_LINE) {
599c6d44f4d41aab5d3da98214492eb26e674b65Michael Graff ap_update_child_status(c->sbh, SERVER_BUSY_READ, NULL);
599c6d44f4d41aab5d3da98214492eb26e674b65Michael Graff if ((r = ap_read_request(c))) {
599c6d44f4d41aab5d3da98214492eb26e674b65Michael Graff /* process the request if it was read without error */
599c6d44f4d41aab5d3da98214492eb26e674b65Michael Graff ap_update_child_status(c->sbh, SERVER_BUSY_WRITE, r);
r = NULL;
return OK;
request_rec *r;
r = NULL;
if (ap_graceful_stop_signalled())
if (!csd) {
return OK;
return OK;
return DECLINED;
int async_mpm = 0;
return (void *) new;
return new;