1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258
|
/** @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.
*/
/****************************************************************************
Http1ServerSession.cc
Description:
****************************************************************************/
#include "tscore/ink_config.h"
#include "tscore/BufferWriter.h"
#include "tscore/bwf_std_format.h"
#include "tscore/Allocator.h"
#include "Http1ServerSession.h"
#include "HttpSessionManager.h"
#include "HttpSM.h"
ClassAllocator<Http1ServerSession, true> httpServerSessionAllocator("httpServerSessionAllocator");
Http1ServerSession::Http1ServerSession() : super_type(), trans(this) {}
void
Http1ServerSession::destroy()
{
if (state != SSN_CLOSED) {
return;
}
ink_release_assert(_vc == nullptr);
ink_assert(read_buffer);
magic = HTTP_SS_MAGIC_DEAD;
if (read_buffer) {
free_MIOBuffer(read_buffer);
read_buffer = nullptr;
}
mutex.clear();
if (httpSessionManager.get_pool_type() == TS_SERVER_SESSION_SHARING_POOL_THREAD) {
THREAD_FREE(this, httpServerSessionAllocator, this_thread());
} else {
httpServerSessionAllocator.free(this);
}
}
void
Http1ServerSession::free()
{
// Unlike Http1ClientSession, Http1ServerSession is freed in destroy()
}
void
Http1ServerSession::new_connection(NetVConnection *new_vc, MIOBuffer *iobuf, IOBufferReader *reader)
{
ink_assert(new_vc != nullptr);
_vc = new_vc;
// Used to do e.g. mutex = new_vc->thread->mutex; when per-thread pools enabled
mutex = new_vc->mutex;
// Unique session identifier.
con_id = ProxySession::next_connection_id();
magic = HTTP_SS_MAGIC_ALIVE;
HTTP_SUM_GLOBAL_DYN_STAT(http_current_server_connections_stat, 1); // Update the true global stat
HTTP_INCREMENT_DYN_STAT(http_total_server_connections_stat);
if (iobuf == nullptr) {
read_buffer = new_MIOBuffer(HTTP_SERVER_RESP_HDR_BUFFER_INDEX);
_reader = read_buffer->alloc_reader();
} else {
read_buffer = iobuf;
_reader = reader;
}
Debug("http_ss", "[%" PRId64 "] session born, netvc %p", con_id, new_vc);
state = INIT;
new_vc->set_tcp_congestion_control(SERVER_SIDE);
}
void
Http1ServerSession::do_io_close(int alerrno)
{
// Only do the close bookkeeping 1 time
if (state != SSN_CLOSED) {
ts::LocalBufferWriter<256> w;
bool debug_p = is_debug_tag_set("http_ss");
state = SSN_CLOSED;
if (debug_p) {
w.print("[{}] session close: nevtc {:x}", con_id, _vc);
}
HTTP_SUM_GLOBAL_DYN_STAT(http_current_server_connections_stat, -1); // Make sure to work on the global stat
HTTP_SUM_DYN_STAT(http_transactions_per_server_con, transact_count);
// Update upstream connection tracking data if present.
this->release_outbound_connection_tracking();
if (debug_p) {
Debug("http_ss", "%.*s", static_cast<int>(w.size()), w.data());
}
if (_vc) {
_vc->do_io_close(alerrno);
}
_vc = nullptr;
if (to_parent_proxy) {
HTTP_DECREMENT_DYN_STAT(http_current_parent_proxy_connections_stat);
}
}
if (transact_count == released_transactions) {
this->destroy();
}
}
// void Http1ServerSession::release()
//
// Releases the session for K-A reuse
//
void
Http1ServerSession::release(ProxyTransaction *trans)
{
Debug("http_ss", "[%" PRId64 "] Releasing session, private_session=%d, sharing_match=%d", con_id, this->is_private(),
sharing_match);
if (state == SSN_IN_USE) {
// The caller should have already set the inactive timeout to the keep alive timeout
// Unfortunately, we do not have access to that value from here.
// However we can clear the active timeout here. The active timeout makes no sense
// in the keep alive state
cancel_active_timeout();
state = SSN_TO_RELEASE;
return;
}
ink_release_assert(state == SSN_TO_RELEASE);
}
// Keys for matching hostnames
IpEndpoint const &
Http1ServerSession::get_server_ip() const
{
ink_release_assert(_vc != nullptr);
return _vc->get_remote_endpoint();
}
int
Http1ServerSession::get_transact_count() const
{
return transact_count;
}
const char *
Http1ServerSession::get_protocol_string() const
{
return "http";
}
void
Http1ServerSession::increment_current_active_connections_stat()
{
// TODO: Implement stats
}
void
Http1ServerSession::decrement_current_active_connections_stat()
{
// TODO: Implement stats
}
void
Http1ServerSession::start()
{
}
bool
Http1ServerSession::is_chunked_encoding_supported() const
{
return true;
}
void
Http1ServerSession ::release_transaction()
{
// Must adjust the release count before attempting to hand the session
// back to the session manager to avoid race conditions in the global
// pool case
released_transactions++;
// Private sessions are never released back to the shared pool
if (this->is_private() || sharing_match == 0) {
if (this->is_private()) {
HTTP_INCREMENT_DYN_STAT(http_origin_close_private);
}
this->do_io_close();
} else if (state == SSN_TO_RELEASE) {
_vc->control_flags.set_flags(0);
// do not change the read/write cont and mutex yet
// release_session() will either swap them with the
// pool continuation with a valid read buffer or if
// it fails, do_io_close() will clear the cont anyway
HSMresult_t r = httpSessionManager.release_session(this);
if (r == HSM_RETRY) {
// Session could not be put in the session manager
// due to lock contention
// FIX: should retry instead of closing
do_io_close(HTTP_ERRNO);
HTTP_INCREMENT_DYN_STAT(http_origin_shutdown_pool_lock_contention);
} else {
// The session was successfully put into the session
// manager and it will manage it
// (Note: should never get HSM_NOT_FOUND here)
ink_assert(r == HSM_DONE);
// If the session got picked up immediately by another thread the transact_count could be greater
ink_release_assert(transact_count >= released_transactions);
}
} else { // Not to be released
if (transact_count == released_transactions) {
// Make sure we previously called release() or do_io_close() on the session
ink_release_assert(state != INIT);
do_io_close(HTTP_ERRNO);
} else {
ink_release_assert(transact_count == released_transactions);
}
}
}
ProxyTransaction *
Http1ServerSession::new_transaction()
{
state = SSN_IN_USE;
transact_count++;
ink_release_assert(transact_count == (released_transactions + 1));
trans.set_reader(this->get_remote_reader());
return &trans;
}
|