]> granicus.if.org Git - apache/blob - server/connection.c
Sander's Stylistic Submission
[apache] / server / connection.c
1 /* ====================================================================
2  * The Apache Software License, Version 1.1
3  *
4  * Copyright (c) 2000-2001 The Apache Software Foundation.  All rights
5  * reserved.
6  *
7  * Redistribution and use in source and binary forms, with or without
8  * modification, are permitted provided that the following conditions
9  * are met:
10  *
11  * 1. Redistributions of source code must retain the above copyright
12  *    notice, this list of conditions and the following disclaimer.
13  *
14  * 2. Redistributions in binary form must reproduce the above copyright
15  *    notice, this list of conditions and the following disclaimer in
16  *    the documentation and/or other materials provided with the
17  *    distribution.
18  *
19  * 3. The end-user documentation included with the redistribution,
20  *    if any, must include the following acknowledgment:
21  *       "This product includes software developed by the
22  *        Apache Software Foundation (http://www.apache.org/)."
23  *    Alternately, this acknowledgment may appear in the software itself,
24  *    if and wherever such third-party acknowledgments normally appear.
25  *
26  * 4. The names "Apache" and "Apache Software Foundation" must
27  *    not be used to endorse or promote products derived from this
28  *    software without prior written permission. For written
29  *    permission, please contact apache@apache.org.
30  *
31  * 5. Products derived from this software may not be called "Apache",
32  *    nor may "Apache" appear in their name, without prior written
33  *    permission of the Apache Software Foundation.
34  *
35  * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
36  * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
37  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
38  * DISCLAIMED.  IN NO EVENT SHALL THE APACHE SOFTWARE FOUNDATION OR
39  * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
40  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
41  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
42  * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
43  * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
44  * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
45  * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
46  * SUCH DAMAGE.
47  * ====================================================================
48  *
49  * This software consists of voluntary contributions made by many
50  * individuals on behalf of the Apache Software Foundation.  For more
51  * information on the Apache Software Foundation, please see
52  * <http://www.apache.org/>.
53  *
54  * Portions of this software are based upon public domain software
55  * originally written at the National Center for Supercomputing Applications,
56  * University of Illinois, Urbana-Champaign.
57  */
58
59 #include "apr.h"
60 #include "apr_strings.h"
61
62 #define CORE_PRIVATE
63 #include "ap_config.h"
64 #include "httpd.h"
65 #include "http_connection.h"
66 #include "http_request.h"
67 #include "http_protocol.h"
68 #include "ap_mpm.h"
69 #include "mpm_default.h"
70 #include "http_config.h"
71 #include "http_core.h"
72 #include "http_vhost.h"
73 #include "scoreboard.h"
74 #include "http_log.h"
75 #include "util_filter.h"
76
77 APR_HOOK_STRUCT(
78             APR_HOOK_LINK(create_connection)
79             APR_HOOK_LINK(process_connection)
80             APR_HOOK_LINK(pre_connection)
81 )
82 AP_IMPLEMENT_HOOK_RUN_FIRST(conn_rec *,create_connection,
83                             (apr_pool_t *p, server_rec *server, apr_socket_t *csd, long conn_id, void *sbh),
84                             (p, server, csd, conn_id, sbh), NULL)
85 AP_IMPLEMENT_HOOK_RUN_FIRST(int,process_connection,(conn_rec *c),(c),DECLINED)
86 AP_IMPLEMENT_HOOK_RUN_ALL(int,pre_connection,(conn_rec *c, void *csd),(c, csd),OK,DECLINED)
87 /*
88  * More machine-dependent networking gooo... on some systems,
89  * you've got to be *really* sure that all the packets are acknowledged
90  * before closing the connection, since the client will not be able
91  * to see the last response if their TCP buffer is flushed by a RST
92  * packet from us, which is what the server's TCP stack will send
93  * if it receives any request data after closing the connection.
94  *
95  * In an ideal world, this function would be accomplished by simply
96  * setting the socket option SO_LINGER and handling it within the
97  * server's TCP stack while the process continues on to the next request.
98  * Unfortunately, it seems that most (if not all) operating systems
99  * block the server process on close() when SO_LINGER is used.
100  * For those that don't, see USE_SO_LINGER below.  For the rest,
101  * we have created a home-brew lingering_close.
102  *
103  * Many operating systems tend to block, puke, or otherwise mishandle
104  * calls to shutdown only half of the connection.  You should define
105  * NO_LINGCLOSE in ap_config.h if such is the case for your system.
106  */
107 #ifndef MAX_SECS_TO_LINGER
108 #define MAX_SECS_TO_LINGER 30
109 #endif
110
111 #ifdef USE_SO_LINGER
112 #define NO_LINGCLOSE /* The two lingering options are exclusive */
113
114 static void sock_enable_linger(int s)
115 {
116     struct linger li;
117
118     li.l_onoff = 1;
119     li.l_linger = MAX_SECS_TO_LINGER;
120
121     if (setsockopt(s, SOL_SOCKET, SO_LINGER,
122                    (char *)&li, sizeof(struct linger)) < 0) {
123         ap_log_error(APLOG_MARK, APLOG_WARNING, errno, server_conf,
124                      "setsockopt: (SO_LINGER)");
125         /* not a fatal error */
126     }
127 }
128
129 #else
130 #define sock_enable_linger(s) /* NOOP */
131 #endif /* USE_SO_LINGER */
132
133 AP_CORE_DECLARE(void) ap_flush_conn(conn_rec *c)
134 {
135     apr_bucket_brigade *bb;
136     apr_bucket *b;
137
138     bb = apr_brigade_create(c->pool);
139     b = apr_bucket_flush_create();
140     APR_BRIGADE_INSERT_TAIL(bb, b);
141     ap_pass_brigade(c->output_filters, bb);
142 }
143
144 /* we now proceed to read from the client until we get EOF, or until
145  * MAX_SECS_TO_LINGER has passed.  the reasons for doing this are
146  * documented in a draft:
147  *
148  * http://www.ics.uci.edu/pub/ietf/http/draft-ietf-http-connection-00.txt
149  *
150  * in a nutshell -- if we don't make this effort we risk causing
151  * TCP RST packets to be sent which can tear down a connection before
152  * all the response data has been sent to the client.
153  */
154 #define SECONDS_TO_LINGER  2
155 AP_DECLARE(void) ap_lingering_close(conn_rec *c)
156 {
157     char dummybuf[512];
158     apr_size_t nbytes = sizeof(dummybuf);
159     apr_status_t rc;
160     apr_int32_t timeout;
161     apr_int32_t total_linger_time = 0;
162     apr_socket_t *csd = ap_get_module_config(c->conn_config, &core_module);
163
164     if (!csd) {
165         return;
166     }
167
168     ap_update_child_status(c->sbh, SERVER_CLOSING, NULL);
169
170 #ifdef NO_LINGCLOSE
171     ap_flush_conn(c); /* just close it */
172     apr_socket_close(csd);
173     return;
174 #endif
175
176     /* Close the connection, being careful to send out whatever is still
177      * in our buffers.  If possible, try to avoid a hard close until the
178      * client has ACKed our FIN and/or has stopped sending us data.
179      */
180
181     /* Send any leftover data to the client, but never try to again */
182     ap_flush_conn(c);
183
184     if (c->aborted) {
185         apr_socket_close(csd);
186         return;
187     }
188
189     /* Shut down the socket for write, which will send a FIN
190      * to the peer.
191      */
192     if (apr_shutdown(csd, APR_SHUTDOWN_WRITE) != APR_SUCCESS
193         || c->aborted) {
194         apr_socket_close(csd);
195         return;
196     }
197
198     /* Read all data from the peer until we reach "end-of-file" (FIN
199      * from peer) or we've exceeded our overall timeout. If the client does
200      * not send us bytes within 2 seconds (a value pulled from Apache 1.3
201      * which seems to work well), close the connection.
202      */
203     timeout = SECONDS_TO_LINGER * APR_USEC_PER_SEC;
204     apr_setsocketopt(csd, APR_SO_TIMEOUT, timeout);
205     apr_setsocketopt(csd, APR_INCOMPLETE_READ, 1);
206     while (1) {
207         nbytes = sizeof(dummybuf);
208         rc = apr_recv(csd, dummybuf, &nbytes);
209         if (rc != APR_SUCCESS || nbytes == 0)
210             break;
211
212         total_linger_time += SECONDS_TO_LINGER;
213         if (total_linger_time >= MAX_SECS_TO_LINGER) {
214             break;
215         }
216     }
217
218     apr_socket_close(csd);
219     return;
220 }
221
222 AP_CORE_DECLARE(void) ap_process_connection(conn_rec *c, void *csd)
223 {
224     ap_update_vhost_given_ip(c);
225
226     ap_run_pre_connection(c, csd);
227
228     if (!c->aborted) {
229         ap_run_process_connection(c);
230     }
231 }
232