blob: a4c857f15ed7e56ec6aa89b8d6a6339107b4ce5e [file] [log] [blame]
/** @file
A brief file description
@section license License
Licensed to the Apache Software Foundation (ASF) under one
or more contributor license agreements. See the NOTICE file
distributed with this work for additional information
regarding copyright ownership. The ASF licenses this file
to you under the Apache License, Version 2.0 (the
"License"); you may not use this file except in compliance
with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
/****************************************************************************
Http1ClientSession.cc
Description:
****************************************************************************/
#include <ts/ink_resolver.h>
#include "Http1ClientSession.h"
#include "Http1ClientTransaction.h"
#include "HttpSM.h"
#include "HttpDebugNames.h"
#include "HttpServerSession.h"
#include "Plugin.h"
#define DebugHttpSsn(fmt, ...) DebugSsn(this, "http_cs", fmt, __VA_ARGS__)
#define STATE_ENTER(state_name, event, vio) \
do { \
/*ink_assert (magic == HTTP_SM_MAGIC_ALIVE); REMEMBER (event, NULL, reentrancy_count); */ \
DebugHttpSsn("[%" PRId64 "] [%s, %s]", con_id, #state_name, HttpDebugNames::get_event_name(event)); \
} while (0)
enum {
HTTP_CS_MAGIC_ALIVE = 0x0123F00D,
HTTP_CS_MAGIC_DEAD = 0xDEADF00D,
};
// We have debugging list that we can use to find stuck
// client sessions
DList(Http1ClientSession, debug_link) debug_cs_list;
ink_mutex debug_cs_list_mutex;
ClassAllocator<Http1ClientSession> http1ClientSessionAllocator("http1ClientSessionAllocator");
Http1ClientSession::Http1ClientSession()
: con_id(0),
client_vc(NULL),
magic(HTTP_CS_MAGIC_DEAD),
transact_count(0),
tcp_init_cwnd_set(false),
half_close(false),
conn_decrease(false),
read_buffer(NULL),
sm_reader(NULL),
read_state(HCS_INIT),
ka_vio(NULL),
slave_ka_vio(NULL),
bound_ss(NULL),
outbound_port(0),
f_outbound_transparent(false),
f_transparent_passthrough(false)
{
}
void
Http1ClientSession::destroy()
{
if (read_state != HCS_CLOSED) {
return;
}
if (!in_destroy) {
in_destroy = true;
DebugHttpSsn("[%" PRId64 "] session destroy", con_id);
ink_release_assert(!client_vc);
ink_assert(read_buffer);
do_api_callout(TS_HTTP_SSN_CLOSE_HOOK);
}
}
void
Http1ClientSession::free()
{
magic = HTTP_CS_MAGIC_DEAD;
if (read_buffer) {
free_MIOBuffer(read_buffer);
read_buffer = NULL;
}
#ifdef USE_HTTP_DEBUG_LISTS
ink_mutex_acquire(&debug_cs_list_mutex);
debug_cs_list.remove(this);
ink_mutex_release(&debug_cs_list_mutex);
#endif
if (conn_decrease) {
HTTP_DECREMENT_DYN_STAT(http_current_client_connections_stat);
conn_decrease = false;
}
// Clean up the write VIO in case of inactivity timeout
this->do_io_write(NULL, 0, NULL);
// Free the transaction resources
this->trans.cleanup();
super::free();
THREAD_FREE(this, http1ClientSessionAllocator, this_thread());
}
void
Http1ClientSession::new_connection(NetVConnection *new_vc, MIOBuffer *iobuf, IOBufferReader *reader, bool backdoor)
{
ink_assert(new_vc != NULL);
ink_assert(client_vc == NULL);
client_vc = new_vc;
magic = HTTP_CS_MAGIC_ALIVE;
mutex = new_vc->mutex;
trans.mutex = mutex; // Share this mutex with the transaction
ssn_start_time = Thread::get_hrtime();
in_destroy = false;
MUTEX_TRY_LOCK(lock, mutex, this_ethread());
ink_assert(lock.is_locked());
// Disable hooks for backdoor connections.
this->hooks_on = !backdoor;
// Unique client session identifier.
con_id = ProxyClientSession::next_connection_id();
schedule_event = NULL;
HTTP_INCREMENT_DYN_STAT(http_current_client_connections_stat);
conn_decrease = true;
HTTP_INCREMENT_DYN_STAT(http_total_client_connections_stat);
if (static_cast<HttpProxyPort::TransportType>(new_vc->attributes) == HttpProxyPort::TRANSPORT_SSL) {
HTTP_INCREMENT_DYN_STAT(https_total_client_connections_stat);
}
/* inbound requests stat should be incremented here, not after the
* header has been read */
HTTP_INCREMENT_DYN_STAT(http_total_incoming_connections_stat);
// check what type of socket address we just accepted
// by looking at the address family value of sockaddr_storage
// and logging to stat system
switch (new_vc->get_remote_addr()->sa_family) {
case AF_INET:
HTTP_INCREMENT_DYN_STAT(http_total_client_connections_ipv4_stat);
break;
case AF_INET6:
HTTP_INCREMENT_DYN_STAT(http_total_client_connections_ipv6_stat);
break;
default:
// don't do anything if the address family is not ipv4 or ipv6
// (there are many other address families in <sys/socket.h>
// but we don't have a need to report on all the others today)
break;
}
#ifdef USE_HTTP_DEBUG_LISTS
ink_mutex_acquire(&debug_cs_list_mutex);
debug_cs_list.push(this);
ink_mutex_release(&debug_cs_list_mutex);
#endif
DebugHttpSsn("[%" PRId64 "] session born, netvc %p", con_id, new_vc);
read_buffer = iobuf ? iobuf : new_MIOBuffer(HTTP_HEADER_BUFFER_SIZE_INDEX);
sm_reader = reader ? reader : read_buffer->alloc_reader();
trans.set_reader(sm_reader);
// INKqa11186: Use a local pointer to the mutex as
// when we return from do_api_callout, the ClientSession may
// have already been deallocated.
EThread *ethis = this_ethread();
Ptr<ProxyMutex> lmutex = this->mutex;
MUTEX_TAKE_LOCK(lmutex, ethis);
do_api_callout(TS_HTTP_SSN_START_HOOK);
MUTEX_UNTAKE_LOCK(lmutex, ethis);
lmutex.clear();
}
VIO *
Http1ClientSession::do_io_read(Continuation *c, int64_t nbytes, MIOBuffer *buf)
{
return client_vc->do_io_read(c, nbytes, buf);
}
VIO *
Http1ClientSession::do_io_write(Continuation *c, int64_t nbytes, IOBufferReader *buf, bool owner)
{
/* conditionally set the tcp initial congestion window
before our first write. */
DebugHttpSsn("tcp_init_cwnd_set %d", (int)tcp_init_cwnd_set);
if (!tcp_init_cwnd_set) {
tcp_init_cwnd_set = true;
set_tcp_init_cwnd();
}
if (client_vc) {
return client_vc->do_io_write(c, nbytes, buf, owner);
} else {
return NULL;
}
}
void
Http1ClientSession::set_tcp_init_cwnd()
{
if (!trans.get_sm())
return;
int desired_tcp_init_cwnd = trans.get_sm()->t_state.txn_conf->server_tcp_init_cwnd;
DebugHttpSsn("desired TCP congestion window is %d", desired_tcp_init_cwnd);
if (desired_tcp_init_cwnd == 0) {
return;
}
if (get_netvc()->set_tcp_init_cwnd(desired_tcp_init_cwnd) != 0) {
DebugHttpSsn("set_tcp_init_cwnd(%d) failed", desired_tcp_init_cwnd);
}
}
void
Http1ClientSession::do_io_shutdown(ShutdownHowTo_t howto)
{
client_vc->do_io_shutdown(howto);
}
void
Http1ClientSession::do_io_close(int alerrno)
{
if (read_state == HCS_CLOSED)
return; // Don't double call session close
if (read_state == HCS_ACTIVE_READER) {
clear_session_active();
}
// Prevent double closing
ink_release_assert(read_state != HCS_CLOSED);
// If we have an attached server session, release
// it back to our shared pool
if (bound_ss) {
bound_ss->release();
bound_ss = NULL;
slave_ka_vio = NULL;
}
if (half_close && this->trans.get_sm()) {
read_state = HCS_HALF_CLOSED;
SET_HANDLER(&Http1ClientSession::state_wait_for_close);
DebugHttpSsn("[%" PRId64 "] session half close", con_id);
if (client_vc) {
// We want the client to know that that we're finished
// writing. The write shutdown accomplishes this. Unfortuantely,
// the IO Core semantics don't stop us from getting events
// on the write side of the connection like timeouts so we
// need to zero out the write of the continuation with
// the do_io_write() call (INKqa05309)
client_vc->do_io_shutdown(IO_SHUTDOWN_WRITE);
ka_vio = client_vc->do_io_read(this, INT64_MAX, read_buffer);
ink_assert(slave_ka_vio != ka_vio);
// Set the active timeout to the same as the inactive time so
// that this connection does not hang around forever if
// the ua hasn't closed
client_vc->set_active_timeout(HRTIME_SECONDS(trans.get_sm()->t_state.txn_conf->keep_alive_no_activity_timeout_in));
}
// [bug 2610799] Drain any data read.
// If the buffer is full and the client writes again, we will not receive a
// READ_READY event.
sm_reader->consume(sm_reader->read_avail());
} else {
read_state = HCS_CLOSED;
DebugHttpSsn("[%" PRId64 "] session closed", con_id);
HTTP_SUM_DYN_STAT(http_transactions_per_client_con, transact_count);
HTTP_DECREMENT_DYN_STAT(http_current_client_connections_stat);
conn_decrease = false;
if (client_vc) {
client_vc->do_io_close();
client_vc = NULL;
}
}
if (trans.get_sm() == NULL) { // Destroying from keep_alive state
this->destroy();
}
}
int
Http1ClientSession::state_wait_for_close(int event, void *data)
{
STATE_ENTER(&Http1ClientSession::state_wait_for_close, event, data);
ink_assert(data == ka_vio);
ink_assert(read_state == HCS_HALF_CLOSED);
Event *e = static_cast<Event *>(data);
if (e == schedule_event) {
schedule_event = NULL;
}
switch (event) {
case VC_EVENT_EOS:
case VC_EVENT_ERROR:
case VC_EVENT_ACTIVE_TIMEOUT:
case VC_EVENT_INACTIVITY_TIMEOUT:
half_close = false;
this->do_io_close();
break;
case VC_EVENT_READ_READY:
// Drain any data read
sm_reader->consume(sm_reader->read_avail());
break;
default:
ink_release_assert(0);
break;
}
return 0;
}
int
Http1ClientSession::state_slave_keep_alive(int event, void *data)
{
STATE_ENTER(&Http1ClientSession::state_slave_keep_alive, event, data);
ink_assert(data == slave_ka_vio);
Event *e = static_cast<Event *>(data);
if (e == schedule_event) {
schedule_event = NULL;
}
switch (event) {
default:
case VC_EVENT_READ_COMPLETE:
// These events are bogus
ink_assert(0);
/* Fall Through */
case VC_EVENT_ERROR:
case VC_EVENT_READ_READY:
case VC_EVENT_EOS:
// The server session closed or something is amiss
bound_ss->do_io_close();
bound_ss = NULL;
slave_ka_vio = NULL;
break;
case VC_EVENT_ACTIVE_TIMEOUT:
case VC_EVENT_INACTIVITY_TIMEOUT:
// Timeout - place the session on the shared pool
bound_ss->release();
bound_ss = NULL;
slave_ka_vio = NULL;
break;
}
return 0;
}
int
Http1ClientSession::state_keep_alive(int event, void *data)
{
// Route the event. It is either for client vc or
// the origin server slave vc
if (data && data == slave_ka_vio) {
return state_slave_keep_alive(event, data);
} else {
ink_assert(data && data == ka_vio);
ink_assert(read_state == HCS_KEEP_ALIVE);
}
STATE_ENTER(&Http1ClientSession::state_keep_alive, event, data);
switch (event) {
case VC_EVENT_READ_READY:
// New transaction, need to spawn of new sm to process
// request
new_transaction();
break;
case VC_EVENT_EOS:
// If there is data in the buffer, start a new
// transaction, otherwise the client gave up
// SKH - A bit odd starting a transaction when the client has closed
// already. At a minimum, should have to do some half open connection
// tracking
// if (sm_reader->read_avail() > 0) {
// new_transaction();
//} else {
this->do_io_close();
//}
break;
case VC_EVENT_READ_COMPLETE:
default:
// These events are bogus
ink_assert(0);
// Fall through
case VC_EVENT_ERROR:
case VC_EVENT_ACTIVE_TIMEOUT:
case VC_EVENT_INACTIVITY_TIMEOUT:
// Keep-alive timed out
this->do_io_close();
break;
}
return 0;
}
void
Http1ClientSession::reenable(VIO *vio)
{
client_vc->reenable(vio);
}
// Called from the Http1ClientTransaction::release
void
Http1ClientSession::release(ProxyClientTransaction *trans)
{
ink_assert(read_state == HCS_ACTIVE_READER);
// Clean up the write VIO in case of inactivity timeout
this->do_io_write(NULL, 0, NULL);
// Check to see there is remaining data in the
// buffer. If there is, spin up a new state
// machine to process it. Otherwise, issue an
// IO to wait for new data
bool more_to_read = this->sm_reader->is_read_avail_more_than(0);
if (more_to_read) {
trans->destroy();
trans->set_restart_immediate(true);
DebugHttpSsn("[%" PRId64 "] data already in buffer, starting new transaction", con_id);
new_transaction();
} else {
DebugHttpSsn("[%" PRId64 "] initiating io for next header", con_id);
trans->set_restart_immediate(false);
read_state = HCS_KEEP_ALIVE;
SET_HANDLER(&Http1ClientSession::state_keep_alive);
ka_vio = this->do_io_read(this, INT64_MAX, read_buffer);
ink_assert(slave_ka_vio != ka_vio);
if (client_vc) {
client_vc->cancel_active_timeout();
client_vc->add_to_keep_alive_queue();
}
trans->destroy();
}
}
void
Http1ClientSession::new_transaction()
{
// If the client connection terminated during API callouts we're done.
if (NULL == client_vc) {
this->do_io_close(); // calls the SSN_CLOSE hooks to match the SSN_START hooks.
return;
}
// Defensive programming, make sure nothing persists across
// connection re-use
half_close = false;
read_state = HCS_ACTIVE_READER;
trans.set_parent(this);
transact_count++;
client_vc->add_to_active_queue();
trans.new_transaction();
}
void
Http1ClientSession::attach_server_session(HttpServerSession *ssession, bool transaction_done)
{
if (ssession) {
ink_assert(bound_ss == NULL);
ssession->state = HSS_KA_CLIENT_SLAVE;
bound_ss = ssession;
DebugHttpSsn("[%" PRId64 "] attaching server session [%" PRId64 "] as slave", con_id, ssession->con_id);
ink_assert(ssession->get_reader()->read_avail() == 0);
ink_assert(ssession->get_netvc() != this->get_netvc());
// handling potential keep-alive here
clear_session_active();
// Since this our slave, issue an IO to detect a close and
// have it call the client session back. This IO also prevent
// the server net conneciton from calling back a dead sm
SET_HANDLER(&Http1ClientSession::state_keep_alive);
slave_ka_vio = ssession->do_io_read(this, INT64_MAX, ssession->read_buffer);
ink_assert(slave_ka_vio != ka_vio);
// Transfer control of the write side as well
ssession->do_io_write(this, 0, NULL);
if (transaction_done) {
ssession->get_netvc()->set_inactivity_timeout(
HRTIME_SECONDS(trans.get_sm()->t_state.txn_conf->keep_alive_no_activity_timeout_out));
ssession->get_netvc()->cancel_active_timeout();
} else {
// we are serving from the cache - this could take a while.
ssession->get_netvc()->cancel_inactivity_timeout();
ssession->get_netvc()->cancel_active_timeout();
}
} else {
ink_assert(bound_ss != NULL);
bound_ss = NULL;
slave_ka_vio = NULL;
}
}