00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017 #include "apr.h"
00018 #include "apr_strings.h"
00019
00020 #define CORE_PRIVATE
00021 #include "ap_config.h"
00022 #include "httpd.h"
00023 #include "http_connection.h"
00024 #include "http_request.h"
00025 #include "http_protocol.h"
00026 #include "ap_mpm.h"
00027 #include "mpm_default.h"
00028 #include "http_config.h"
00029 #include "http_core.h"
00030 #include "http_vhost.h"
00031 #include "scoreboard.h"
00032 #include "http_log.h"
00033 #include "util_filter.h"
00034
00035 APR_HOOK_STRUCT(
00036 APR_HOOK_LINK(create_connection)
00037 APR_HOOK_LINK(process_connection)
00038 APR_HOOK_LINK(pre_connection)
00039 )
00040 AP_IMPLEMENT_HOOK_RUN_FIRST(conn_rec *,create_connection,
00041 (apr_pool_t *p, server_rec *server, apr_socket_t *csd, long conn_id, void *sbh, apr_bucket_alloc_t *alloc),
00042 (p, server, csd, conn_id, sbh, alloc), NULL)
00043 AP_IMPLEMENT_HOOK_RUN_FIRST(int,process_connection,(conn_rec *c),(c),DECLINED)
00044 AP_IMPLEMENT_HOOK_RUN_ALL(int,pre_connection,(conn_rec *c, void *csd),(c, csd),OK,DECLINED)
00045
00046
00047
00048
00049
00050
00051
00052
00053
00054
00055
00056
00057
00058
00059
00060
00061
00062
00063
00064
00065 #ifndef MAX_SECS_TO_LINGER
00066 #define MAX_SECS_TO_LINGER 30
00067 #endif
00068
00069 AP_CORE_DECLARE(void) ap_flush_conn(conn_rec *c)
00070 {
00071 apr_bucket_brigade *bb;
00072 apr_bucket *b;
00073
00074 bb = apr_brigade_create(c->pool, c->bucket_alloc);
00075
00076
00077 b = apr_bucket_flush_create(c->bucket_alloc);
00078 APR_BRIGADE_INSERT_TAIL(bb, b);
00079
00080
00081 b = ap_bucket_eoc_create(c->bucket_alloc);
00082 APR_BRIGADE_INSERT_TAIL(bb, b);
00083
00084 ap_pass_brigade(c->output_filters, bb);
00085 }
00086
00087
00088
00089
00090
00091
00092
00093
00094
00095
00096
00097 #define SECONDS_TO_LINGER 2
00098 AP_DECLARE(void) ap_lingering_close(conn_rec *c)
00099 {
00100 char dummybuf[512];
00101 apr_size_t nbytes = sizeof(dummybuf);
00102 apr_status_t rc;
00103 apr_int32_t timeout;
00104 apr_int32_t total_linger_time = 0;
00105 apr_socket_t *csd = ap_get_module_config(c->conn_config, &core_module);
00106
00107 if (!csd) {
00108 return;
00109 }
00110
00111 ap_update_child_status(c->sbh, SERVER_CLOSING, NULL);
00112
00113 #ifdef NO_LINGCLOSE
00114 ap_flush_conn(c);
00115 apr_socket_close(csd);
00116 return;
00117 #endif
00118
00119
00120
00121
00122
00123
00124
00125 ap_flush_conn(c);
00126
00127 if (c->aborted) {
00128 apr_socket_close(csd);
00129 return;
00130 }
00131
00132
00133
00134
00135 if (apr_shutdown(csd, APR_SHUTDOWN_WRITE) != APR_SUCCESS
00136 || c->aborted) {
00137 apr_socket_close(csd);
00138 return;
00139 }
00140
00141
00142
00143
00144
00145
00146 timeout = apr_time_from_sec(SECONDS_TO_LINGER);
00147 apr_socket_timeout_set(csd, timeout);
00148 apr_socket_opt_set(csd, APR_INCOMPLETE_READ, 1);
00149 while (1) {
00150 nbytes = sizeof(dummybuf);
00151 rc = apr_recv(csd, dummybuf, &nbytes);
00152 if (rc != APR_SUCCESS || nbytes == 0)
00153 break;
00154
00155 total_linger_time += SECONDS_TO_LINGER;
00156 if (total_linger_time >= MAX_SECS_TO_LINGER) {
00157 break;
00158 }
00159 }
00160
00161 apr_socket_close(csd);
00162 return;
00163 }
00164
00165 AP_CORE_DECLARE(void) ap_process_connection(conn_rec *c, void *csd)
00166 {
00167 int rc;
00168 ap_update_vhost_given_ip(c);
00169
00170 rc = ap_run_pre_connection(c, csd);
00171 if (rc != OK && rc != DONE) {
00172 c->aborted = 1;
00173 }
00174
00175 if (!c->aborted) {
00176 ap_run_process_connection(c);
00177 }
00178 }
00179