Main Page | Modules | Namespace List | Alphabetical List | Data Structures | Directories | File List | Data Fields | Globals | Related Pages | Examples

connection.c

Go to the documentation of this file.
00001 /* Copyright 1999-2005 The Apache Software Foundation or its licensors, as
00002  * applicable.
00003  *
00004  * Licensed under the Apache License, Version 2.0 (the "License");
00005  * you may not use this file except in compliance with the License.
00006  * You may obtain a copy of the License at
00007  *
00008  *     http://www.apache.org/licenses/LICENSE-2.0
00009  *
00010  * Unless required by applicable law or agreed to in writing, software
00011  * distributed under the License is distributed on an "AS IS" BASIS,
00012  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
00013  * See the License for the specific language governing permissions and
00014  * limitations under the License.
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  * More machine-dependent networking gooo... on some systems,
00047  * you've got to be *really* sure that all the packets are acknowledged
00048  * before closing the connection, since the client will not be able
00049  * to see the last response if their TCP buffer is flushed by a RST
00050  * packet from us, which is what the server's TCP stack will send
00051  * if it receives any request data after closing the connection.
00052  *
00053  * In an ideal world, this function would be accomplished by simply
00054  * setting the socket option SO_LINGER and handling it within the
00055  * server's TCP stack while the process continues on to the next request.
00056  * Unfortunately, it seems that most (if not all) operating systems
00057  * block the server process on close() when SO_LINGER is used.
00058  * For those that don't, see USE_SO_LINGER below.  For the rest,
00059  * we have created a home-brew lingering_close.
00060  *
00061  * Many operating systems tend to block, puke, or otherwise mishandle
00062  * calls to shutdown only half of the connection.  You should define
00063  * NO_LINGCLOSE in ap_config.h if such is the case for your system.
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     /* FLUSH bucket */
00077     b = apr_bucket_flush_create(c->bucket_alloc);
00078     APR_BRIGADE_INSERT_TAIL(bb, b);
00079 
00080     /* End Of Connection bucket */
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 /* we now proceed to read from the client until we get EOF, or until
00088  * MAX_SECS_TO_LINGER has passed.  the reasons for doing this are
00089  * documented in a draft:
00090  *
00091  * http://www.ics.uci.edu/pub/ietf/http/draft-ietf-http-connection-00.txt
00092  *
00093  * in a nutshell -- if we don't make this effort we risk causing
00094  * TCP RST packets to be sent which can tear down a connection before
00095  * all the response data has been sent to the client.
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); /* just close it */
00115     apr_socket_close(csd);
00116     return;
00117 #endif
00118 
00119     /* Close the connection, being careful to send out whatever is still
00120      * in our buffers.  If possible, try to avoid a hard close until the
00121      * client has ACKed our FIN and/or has stopped sending us data.
00122      */
00123 
00124     /* Send any leftover data to the client, but never try to again */
00125     ap_flush_conn(c);
00126 
00127     if (c->aborted) {
00128         apr_socket_close(csd);
00129         return;
00130     }
00131 
00132     /* Shut down the socket for write, which will send a FIN
00133      * to the peer.
00134      */
00135     if (apr_shutdown(csd, APR_SHUTDOWN_WRITE) != APR_SUCCESS
00136         || c->aborted) {
00137         apr_socket_close(csd);
00138         return;
00139     }
00140 
00141     /* Read all data from the peer until we reach "end-of-file" (FIN
00142      * from peer) or we've exceeded our overall timeout. If the client does
00143      * not send us bytes within 2 seconds (a value pulled from Apache 1.3
00144      * which seems to work well), close the connection.
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