Blame server/connection.c

Packit 90a5c9
/* Licensed to the Apache Software Foundation (ASF) under one or more
Packit 90a5c9
 * contributor license agreements.  See the NOTICE file distributed with
Packit 90a5c9
 * this work for additional information regarding copyright ownership.
Packit 90a5c9
 * The ASF licenses this file to You under the Apache License, Version 2.0
Packit 90a5c9
 * (the "License"); you may not use this file except in compliance with
Packit 90a5c9
 * the License.  You may obtain a copy of the License at
Packit 90a5c9
 *
Packit 90a5c9
 *     http://www.apache.org/licenses/LICENSE-2.0
Packit 90a5c9
 *
Packit 90a5c9
 * Unless required by applicable law or agreed to in writing, software
Packit 90a5c9
 * distributed under the License is distributed on an "AS IS" BASIS,
Packit 90a5c9
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
Packit 90a5c9
 * See the License for the specific language governing permissions and
Packit 90a5c9
 * limitations under the License.
Packit 90a5c9
 */
Packit 90a5c9
Packit 90a5c9
#include "apr.h"
Packit 90a5c9
#include "apr_strings.h"
Packit 90a5c9
Packit 90a5c9
#include "ap_config.h"
Packit 90a5c9
#include "httpd.h"
Packit 90a5c9
#include "http_connection.h"
Packit 90a5c9
#include "http_request.h"
Packit 90a5c9
#include "http_protocol.h"
Packit 90a5c9
#include "ap_mpm.h"
Packit 90a5c9
#include "http_config.h"
Packit 90a5c9
#include "http_core.h"
Packit 90a5c9
#include "http_vhost.h"
Packit 90a5c9
#include "scoreboard.h"
Packit 90a5c9
#include "http_log.h"
Packit 90a5c9
#include "util_filter.h"
Packit 90a5c9
Packit 90a5c9
APR_HOOK_STRUCT(
Packit 90a5c9
            APR_HOOK_LINK(create_connection)
Packit 90a5c9
            APR_HOOK_LINK(process_connection)
Packit 90a5c9
            APR_HOOK_LINK(pre_connection)
Packit 90a5c9
            APR_HOOK_LINK(pre_close_connection)
Packit 90a5c9
)
Packit 90a5c9
AP_IMPLEMENT_HOOK_RUN_FIRST(conn_rec *,create_connection,
Packit 90a5c9
                            (apr_pool_t *p, server_rec *server, apr_socket_t *csd, long conn_id, void *sbh, apr_bucket_alloc_t *alloc),
Packit 90a5c9
                            (p, server, csd, conn_id, sbh, alloc), NULL)
Packit 90a5c9
AP_IMPLEMENT_HOOK_RUN_FIRST(int,process_connection,(conn_rec *c),(c),DECLINED)
Packit 90a5c9
AP_IMPLEMENT_HOOK_RUN_ALL(int,pre_connection,(conn_rec *c, void *csd),(c, csd),OK,DECLINED)
Packit 90a5c9
AP_IMPLEMENT_HOOK_RUN_ALL(int,pre_close_connection,(conn_rec *c),(c),OK,DECLINED)
Packit 90a5c9
Packit 90a5c9
/*
Packit 90a5c9
 * More machine-dependent networking gooo... on some systems,
Packit 90a5c9
 * you've got to be *really* sure that all the packets are acknowledged
Packit 90a5c9
 * before closing the connection, since the client will not be able
Packit 90a5c9
 * to see the last response if their TCP buffer is flushed by a RST
Packit 90a5c9
 * packet from us, which is what the server's TCP stack will send
Packit 90a5c9
 * if it receives any request data after closing the connection.
Packit 90a5c9
 *
Packit 90a5c9
 * In an ideal world, this function would be accomplished by simply
Packit 90a5c9
 * setting the socket option SO_LINGER and handling it within the
Packit 90a5c9
 * server's TCP stack while the process continues on to the next request.
Packit 90a5c9
 * Unfortunately, it seems that most (if not all) operating systems
Packit 90a5c9
 * block the server process on close() when SO_LINGER is used.
Packit 90a5c9
 * For those that don't, see USE_SO_LINGER below.  For the rest,
Packit 90a5c9
 * we have created a home-brew lingering_close.
Packit 90a5c9
 *
Packit 90a5c9
 * Many operating systems tend to block, puke, or otherwise mishandle
Packit 90a5c9
 * calls to shutdown only half of the connection.  You should define
Packit 90a5c9
 * NO_LINGCLOSE in ap_config.h if such is the case for your system.
Packit 90a5c9
 */
Packit 90a5c9
#ifndef MAX_SECS_TO_LINGER
Packit 90a5c9
#define MAX_SECS_TO_LINGER 30
Packit 90a5c9
#endif
Packit 90a5c9
Packit 90a5c9
AP_CORE_DECLARE(apr_status_t) ap_shutdown_conn(conn_rec *c, int flush)
Packit 90a5c9
{
Packit 90a5c9
    apr_status_t rv;
Packit 90a5c9
    apr_bucket_brigade *bb;
Packit 90a5c9
    apr_bucket *b;
Packit 90a5c9
Packit 90a5c9
    bb = apr_brigade_create(c->pool, c->bucket_alloc);
Packit 90a5c9
Packit 90a5c9
    if (flush) {
Packit 90a5c9
        /* FLUSH bucket */
Packit 90a5c9
        b = apr_bucket_flush_create(c->bucket_alloc);
Packit 90a5c9
        APR_BRIGADE_INSERT_TAIL(bb, b);
Packit 90a5c9
    }
Packit 90a5c9
Packit 90a5c9
    /* End Of Connection bucket */
Packit 90a5c9
    b = ap_bucket_eoc_create(c->bucket_alloc);
Packit 90a5c9
    APR_BRIGADE_INSERT_TAIL(bb, b);
Packit 90a5c9
Packit 90a5c9
    rv = ap_pass_brigade(c->output_filters, bb);
Packit 90a5c9
    apr_brigade_destroy(bb);
Packit 90a5c9
    return rv;
Packit 90a5c9
}
Packit 90a5c9
Packit 90a5c9
AP_CORE_DECLARE(void) ap_flush_conn(conn_rec *c)
Packit 90a5c9
{
Packit 90a5c9
    (void)ap_shutdown_conn(c, 1);
Packit 90a5c9
}
Packit 90a5c9
Packit 90a5c9
AP_DECLARE(int) ap_prep_lingering_close(conn_rec *c)
Packit 90a5c9
{
Packit 90a5c9
    /* Give protocol handlers one last chance to raise their voice */
Packit 90a5c9
    ap_run_pre_close_connection(c);
Packit 90a5c9
    
Packit 90a5c9
    if (c->sbh) {
Packit 90a5c9
        ap_update_child_status(c->sbh, SERVER_CLOSING, NULL);
Packit 90a5c9
    }
Packit 90a5c9
    return 0;
Packit 90a5c9
}
Packit 90a5c9
Packit 90a5c9
/* we now proceed to read from the client until we get EOF, or until
Packit 90a5c9
 * MAX_SECS_TO_LINGER has passed.  The reasons for doing this are
Packit 90a5c9
 * documented in a draft:
Packit 90a5c9
 *
Packit 90a5c9
 * http://tools.ietf.org/html/draft-ietf-http-connection-00.txt
Packit 90a5c9
 *
Packit 90a5c9
 * in a nutshell -- if we don't make this effort we risk causing
Packit 90a5c9
 * TCP RST packets to be sent which can tear down a connection before
Packit 90a5c9
 * all the response data has been sent to the client.
Packit 90a5c9
 */
Packit 90a5c9
#define SECONDS_TO_LINGER  2
Packit 90a5c9
Packit 90a5c9
AP_DECLARE(int) ap_start_lingering_close(conn_rec *c)
Packit 90a5c9
{
Packit 90a5c9
    apr_socket_t *csd = ap_get_conn_socket(c);
Packit 90a5c9
Packit 90a5c9
    if (!csd) {
Packit 90a5c9
        return 1;
Packit 90a5c9
    }
Packit 90a5c9
Packit 90a5c9
    if (ap_prep_lingering_close(c)) {
Packit 90a5c9
        return 1;
Packit 90a5c9
    }
Packit 90a5c9
    
Packit 90a5c9
    /* Close the connection, being careful to send out whatever is still
Packit 90a5c9
     * in our buffers.  If possible, try to avoid a hard close until the
Packit 90a5c9
     * client has ACKed our FIN and/or has stopped sending us data.
Packit 90a5c9
     */
Packit 90a5c9
Packit 90a5c9
    /* Send any leftover data to the client, but never try to again */
Packit 90a5c9
    ap_flush_conn(c);
Packit 90a5c9
Packit 90a5c9
#ifdef NO_LINGCLOSE
Packit 90a5c9
    apr_socket_close(csd);
Packit 90a5c9
    return 1;
Packit 90a5c9
#else
Packit 90a5c9
    /* Shut down the socket for write, which will send a FIN
Packit 90a5c9
     * to the peer.
Packit 90a5c9
     */
Packit 90a5c9
    if (c->aborted
Packit 90a5c9
            || apr_socket_shutdown(csd, APR_SHUTDOWN_WRITE) != APR_SUCCESS) {
Packit 90a5c9
        apr_socket_close(csd);
Packit 90a5c9
        return 1;
Packit 90a5c9
    }
Packit 90a5c9
    return 0;
Packit 90a5c9
#endif
Packit 90a5c9
}
Packit 90a5c9
Packit 90a5c9
AP_DECLARE(void) ap_lingering_close(conn_rec *c)
Packit 90a5c9
{
Packit 90a5c9
    char dummybuf[512];
Packit 90a5c9
    apr_size_t nbytes;
Packit 90a5c9
    apr_time_t now, timeup = 0;
Packit 90a5c9
    apr_socket_t *csd = ap_get_conn_socket(c);
Packit 90a5c9
Packit 90a5c9
    if (ap_start_lingering_close(c)) {
Packit 90a5c9
        return;
Packit 90a5c9
    }
Packit 90a5c9
Packit 90a5c9
    /* Read available data from the client whilst it continues sending
Packit 90a5c9
     * it, for a maximum time of MAX_SECS_TO_LINGER.  If the client
Packit 90a5c9
     * does not send any data within 2 seconds (a value pulled from
Packit 90a5c9
     * Apache 1.3 which seems to work well), give up.
Packit 90a5c9
     */
Packit 90a5c9
    apr_socket_timeout_set(csd, apr_time_from_sec(SECONDS_TO_LINGER));
Packit 90a5c9
    apr_socket_opt_set(csd, APR_INCOMPLETE_READ, 1);
Packit 90a5c9
Packit 90a5c9
    /* The common path here is that the initial apr_socket_recv() call
Packit 90a5c9
     * will return 0 bytes read; so that case must avoid the expensive
Packit 90a5c9
     * apr_time_now() call and time arithmetic. */
Packit 90a5c9
Packit 90a5c9
    do {
Packit 90a5c9
        nbytes = sizeof(dummybuf);
Packit 90a5c9
        if (apr_socket_recv(csd, dummybuf, &nbytes) || nbytes == 0)
Packit 90a5c9
            break;
Packit 90a5c9
Packit 90a5c9
        now = apr_time_now();
Packit 90a5c9
        if (timeup == 0) {
Packit 90a5c9
            /*
Packit 90a5c9
             * First time through;
Packit 90a5c9
             * calculate now + 30 seconds (MAX_SECS_TO_LINGER).
Packit 90a5c9
             *
Packit 90a5c9
             * If some module requested a shortened waiting period, only wait for
Packit 90a5c9
             * 2s (SECONDS_TO_LINGER). This is useful for mitigating certain
Packit 90a5c9
             * DoS attacks.
Packit 90a5c9
             */
Packit 90a5c9
            if (apr_table_get(c->notes, "short-lingering-close")) {
Packit 90a5c9
                timeup = now + apr_time_from_sec(SECONDS_TO_LINGER);
Packit 90a5c9
            }
Packit 90a5c9
            else {
Packit 90a5c9
                timeup = now + apr_time_from_sec(MAX_SECS_TO_LINGER);
Packit 90a5c9
            }
Packit 90a5c9
            continue;
Packit 90a5c9
        }
Packit 90a5c9
    } while (now < timeup);
Packit 90a5c9
Packit 90a5c9
    apr_socket_close(csd);
Packit 90a5c9
}
Packit 90a5c9
Packit 90a5c9
AP_CORE_DECLARE(void) ap_process_connection(conn_rec *c, void *csd)
Packit 90a5c9
{
Packit 90a5c9
    int rc;
Packit 90a5c9
    ap_update_vhost_given_ip(c);
Packit 90a5c9
Packit 90a5c9
    rc = ap_run_pre_connection(c, csd);
Packit 90a5c9
    if (rc != OK && rc != DONE) {
Packit 90a5c9
        c->aborted = 1;
Packit 90a5c9
    }
Packit 90a5c9
Packit 90a5c9
    if (!c->aborted) {
Packit 90a5c9
        ap_run_process_connection(c);
Packit 90a5c9
    }
Packit 90a5c9
}