Apache HTTPD
connection.c
Go to the documentation of this file.
1/* Licensed to the Apache Software Foundation (ASF) under one or more
2 * contributor license agreements. See the NOTICE file distributed with
3 * this work for additional information regarding copyright ownership.
4 * The ASF licenses this file to You under the Apache License, Version 2.0
5 * (the "License"); you may not use this file except in compliance with
6 * the License. You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17#include "apr.h"
18#include "apr_strings.h"
19
20#include "ap_config.h"
21#include "httpd.h"
22#include "http_connection.h"
23#include "http_request.h"
24#include "http_protocol.h"
25#include "ap_mpm.h"
26#include "http_config.h"
27#include "http_core.h"
28#include "http_vhost.h"
29#include "scoreboard.h"
30#include "http_log.h"
31#include "util_filter.h"
32
40 (apr_pool_t *p, server_rec *server, apr_socket_t *csd, long conn_id, void *sbh, apr_bucket_alloc_t *alloc),
41 (p, server, csd, conn_id, sbh, alloc), NULL)
45
46/*
47 * More machine-dependent networking gooo... on some systems,
48 * you've got to be *really* sure that all the packets are acknowledged
49 * before closing the connection, since the client will not be able
50 * to see the last response if their TCP buffer is flushed by a RST
51 * packet from us, which is what the server's TCP stack will send
52 * if it receives any request data after closing the connection.
53 *
54 * In an ideal world, this function would be accomplished by simply
55 * setting the socket option SO_LINGER and handling it within the
56 * server's TCP stack while the process continues on to the next request.
57 * Unfortunately, it seems that most (if not all) operating systems
58 * block the server process on close() when SO_LINGER is used.
59 * For those that don't, see USE_SO_LINGER below. For the rest,
60 * we have created a home-brew lingering_close.
61 *
62 * Many operating systems tend to block, puke, or otherwise mishandle
63 * calls to shutdown only half of the connection. You should define
64 * NO_LINGCLOSE in ap_config.h if such is the case for your system.
65 */
66#ifndef MAX_SECS_TO_LINGER
67#define MAX_SECS_TO_LINGER 30
68#endif
69
71{
72 apr_status_t rv;
75
76 bb = apr_brigade_create(c->pool, c->bucket_alloc);
77
78 if (flush) {
79 /* FLUSH bucket */
80 b = apr_bucket_flush_create(c->bucket_alloc);
82 }
83
84 /* End Of Connection bucket */
85 b = ap_bucket_eoc_create(c->bucket_alloc);
87
88 rv = ap_pass_brigade(c->output_filters, bb);
90 return rv;
91}
92
97
99{
100 /* Give protocol handlers one last chance to raise their voice */
102
103 if (c->sbh) {
105 }
106 return 0;
107}
108
109/* we now proceed to read from the client until we get EOF, or until
110 * MAX_SECS_TO_LINGER has passed. The reasons for doing this are
111 * documented in a draft:
112 *
113 * http://tools.ietf.org/html/draft-ietf-http-connection-00.txt
114 *
115 * in a nutshell -- if we don't make this effort we risk causing
116 * TCP RST packets to be sent which can tear down a connection before
117 * all the response data has been sent to the client.
118 */
119#define SECONDS_TO_LINGER 2
120
122{
124
125 ap_assert(csd != NULL);
126
128 return 1;
129 }
130
131 /* Close the connection, being careful to send out whatever is still
132 * in our buffers. If possible, try to avoid a hard close until the
133 * client has ACKed our FIN and/or has stopped sending us data.
134 */
135
136 /* Send any leftover data to the client, but never try to again */
138
139#ifdef NO_LINGCLOSE
140 return 1;
141#else
142 /* Shut down the socket for write, which will send a FIN
143 * to the peer.
144 */
145 return (c->aborted || apr_socket_shutdown(csd, APR_SHUTDOWN_WRITE));
146#endif
147}
148
150{
151 char dummybuf[512];
153 apr_time_t now, timeup = 0;
155
156 if (!csd) {
157 /* Be safe with third-party modules that:
158 * ap_set_core_module_config(c->conn_config, NULL)
159 * to no-op ap_lingering_close().
160 */
161 c->aborted = 1;
162 return;
163 }
164
167 return;
168 }
169
170 /* Read available data from the client whilst it continues sending
171 * it, for a maximum time of MAX_SECS_TO_LINGER. If the client
172 * does not send any data within 2 seconds (a value pulled from
173 * Apache 1.3 which seems to work well), give up.
174 */
177
178 /* The common path here is that the initial apr_socket_recv() call
179 * will return 0 bytes read; so that case must avoid the expensive
180 * apr_time_now() call and time arithmetic. */
181
182 do {
183 nbytes = sizeof(dummybuf);
184 if (apr_socket_recv(csd, dummybuf, &nbytes) || nbytes == 0)
185 break;
186
187 now = apr_time_now();
188 if (timeup == 0) {
189 /*
190 * First time through;
191 * calculate now + 30 seconds (MAX_SECS_TO_LINGER).
192 *
193 * If some module requested a shortened waiting period, only wait for
194 * 2s (SECONDS_TO_LINGER). This is useful for mitigating certain
195 * DoS attacks.
196 */
197 if (apr_table_get(c->notes, "short-lingering-close")) {
199 }
200 else {
202 }
203 continue;
204 }
205 } while (now < timeup);
206
208}
209
211{
213
215
216 if (!c->aborted) {
218 }
219}
Symbol export macros and hook functions.
#define AP_DECLARE(type)
Definition ap_config.h:67
#define AP_IMPLEMENT_HOOK_RUN_ALL(ret, name, args_decl, args_use, ok, decline)
Definition ap_hooks.h:117
#define AP_IMPLEMENT_HOOK_RUN_FIRST(ret, name, args_decl, args_use, decline)
Definition ap_hooks.h:137
Apache Multi-Processing Module library.
APR Strings library.
int ap_start_lingering_close(conn_rec *c)
Definition connection.c:121
int ap_prep_lingering_close(conn_rec *c)
Definition connection.c:98
#define MAX_SECS_TO_LINGER
Definition connection.c:67
int ap_run_process_connection(conn_rec *c)
Definition connection.c:42
apr_status_t ap_shutdown_conn(conn_rec *c, int flush)
Definition connection.c:70
#define SECONDS_TO_LINGER
Definition connection.c:119
void ap_process_connection(conn_rec *c, void *csd)
Definition connection.c:210
int ap_run_pre_close_connection(conn_rec *c)
Definition connection.c:44
void ap_lingering_close(conn_rec *c)
Definition connection.c:149
void ap_flush_conn(conn_rec *c)
Definition connection.c:93
int ap_pre_connection(conn_rec *c, void *csd)
Definition core.c:5353
apr_bucket * ap_bucket_eoc_create(apr_bucket_alloc_t *list)
Definition eoc_bucket.c:38
void * csd
int flush
#define DECLINED
Definition httpd.h:457
#define AP_CORE_DECLARE
Definition httpd.h:381
#define OK
Definition httpd.h:456
apr_status_t ap_pass_brigade(ap_filter_t *filter, apr_bucket_brigade *bucket)
apr_socket_t * ap_get_conn_socket(conn_rec *c)
Definition core.c:5202
#define APR_BRIGADE_INSERT_TAIL(b, e)
#define APR_HOOK_LINK(name)
Definition apr_hooks.h:139
#define APR_HOOK_STRUCT(members)
Definition apr_hooks.h:135
apr_memcache_server_t * server
#define ap_assert(exp)
Definition httpd.h:2271
apr_size_t size
int apr_status_t
Definition apr_errno.h:44
void apr_size_t * nbytes
apr_vformatter_buff_t * c
Definition apr_lib.h:175
@ APR_SHUTDOWN_WRITE
apr_pool_t * b
Definition apr_pools.h:529
#define APR_INCOMPLETE_READ
apr_int64_t apr_time_t
Definition apr_time.h:45
#define apr_time_from_sec(sec)
Definition apr_time.h:78
Apache Configuration.
Apache connection library.
CORE HTTP Daemon.
Apache Logging library.
HTTP protocol handling.
Apache Request library.
Virtual Host package.
HTTP Daemon routines.
apr_pool_t * p
Definition md_event.c:32
return NULL
Definition mod_so.c:359
Apache scoreboard library.
#define SERVER_CLOSING
Definition scoreboard.h:64
int ap_update_child_status(ap_sb_handle_t *sbh, int status, request_rec *r)
Definition scoreboard.c:590
Structure to store things which are per connection.
Definition httpd.h:1152
A structure to store information for each virtual server.
Definition httpd.h:1322
static apr_time_t now
Definition testtime.c:33
apr_status_t apr_socket_recv(apr_socket_t *sock, char *buf, apr_size_t *len)
Definition sendrecv.c:70
apr_status_t apr_socket_close(apr_socket_t *thesocket)
Definition sockets.c:211
apr_status_t apr_socket_shutdown(apr_socket_t *thesocket, apr_shutdown_how_e how)
Definition sockets.c:205
apr_status_t apr_socket_opt_set(apr_socket_t *sock, apr_int32_t opt, apr_int32_t on)
Definition sockopt.c:113
apr_status_t apr_socket_timeout_set(apr_socket_t *sock, apr_interval_time_t t)
Definition sockopt.c:75
Apache filter library.
void ap_update_vhost_given_ip(conn_rec *conn)
Definition vhost.c:1280