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 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519
|
/** @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.
*/
/****************************************************************************
HttpSessionManager.cc
Description:
****************************************************************************/
#include "HttpSessionManager.h"
#include "../ProxySession.h"
#include "HttpSM.h"
#include "HttpDebugNames.h"
// Initialize a thread to handle HTTP session management
void
initialize_thread_for_http_sessions(EThread *thread)
{
thread->server_session_pool = new ServerSessionPool;
}
HttpSessionManager httpSessionManager;
ServerSessionPool::ServerSessionPool() : Continuation(new_ProxyMutex()), m_ip_pool(1023), m_fqdn_pool(1023)
{
SET_HANDLER(&ServerSessionPool::eventHandler);
m_ip_pool.set_expansion_policy(IPTable::MANUAL);
m_fqdn_pool.set_expansion_policy(FQDNTable::MANUAL);
}
void
ServerSessionPool::purge()
{
// @c do_io_close can free the instance which clears the intrusive links and breaks the iterator.
// Therefore @c do_io_close is called on a post-incremented iterator.
m_ip_pool.apply([](PoolableSession *ssn) -> void { ssn->do_io_close(); });
m_ip_pool.clear();
m_fqdn_pool.clear();
}
bool
ServerSessionPool::match(PoolableSession *ss, sockaddr const *addr, CryptoHash const &hostname_hash,
TSServerSessionSharingMatchMask match_style)
{
bool retval = match_style != 0;
if (retval && (TS_SERVER_SESSION_SHARING_MATCH_MASK_IP & match_style)) {
retval = ats_ip_addr_port_eq(ss->get_remote_addr(), addr);
}
if (retval && (TS_SERVER_SESSION_SHARING_MATCH_MASK_HOSTONLY & match_style)) {
retval = (ats_ip_port_cast(addr) == ats_ip_port_cast(ss->get_remote_addr()) && ss->hostname_hash == hostname_hash);
}
return retval;
}
bool
ServerSessionPool::validate_host_sni(HttpSM *sm, NetVConnection *netvc)
{
bool retval = true;
if (sm->t_state.scheme == URL_WKSIDX_HTTPS) {
// The sni_servername of the connection was set on HttpSM::do_http_server_open
// by fetching the hostname from the server request. So the connection should only
// be reused if the hostname in the new request is the same as the host name in the
// original request
const char *session_sni = netvc->get_sni_servername();
if (session_sni) {
// TS-4468: If the connection matches, make sure the SNI server
// name (if present) matches the request hostname
int len = 0;
const char *req_host = sm->t_state.hdr_info.server_request.host_get(&len);
retval = strncasecmp(session_sni, req_host, len) == 0;
Debug("http_ss", "validate_host_sni host=%*.s, sni=%s", len, req_host, session_sni);
}
}
return retval;
}
bool
ServerSessionPool::validate_sni(HttpSM *sm, NetVConnection *netvc)
{
bool retval = true;
// Verify that the sni name on this connection would match the sni we would have use to create
// a new connection.
//
if (sm->t_state.scheme == URL_WKSIDX_HTTPS) {
const char *session_sni = netvc->get_sni_servername();
std::string_view proposed_sni = sm->get_outbound_sni();
Debug("http_ss", "validate_sni proposed_sni=%.*s, sni=%s", static_cast<int>(proposed_sni.length()), proposed_sni.data(),
session_sni);
if (!session_sni || proposed_sni.length() == 0) {
retval = session_sni == nullptr && proposed_sni.length() == 0;
} else {
retval = proposed_sni.compare(session_sni) == 0;
}
}
return retval;
}
bool
ServerSessionPool::validate_cert(HttpSM *sm, NetVConnection *netvc)
{
bool retval = true;
// Verify that the cert file associated this connection would match the cert file we would have use to create
// a new connection.
//
if (sm->t_state.scheme == URL_WKSIDX_HTTPS) {
const char *session_cert = netvc->options.ssl_client_cert_name;
std::string_view proposed_cert = sm->get_outbound_cert();
Debug("http_ss", "validate_cert proposed_cert=%.*s, cert=%s", static_cast<int>(proposed_cert.size()), proposed_cert.data(),
session_cert);
if (!session_cert || proposed_cert.length() == 0) {
retval = session_cert == nullptr && proposed_cert.length() == 0;
} else {
retval = proposed_cert.compare(session_cert) == 0;
}
}
return retval;
}
HSMresult_t
ServerSessionPool::acquireSession(sockaddr const *addr, CryptoHash const &hostname_hash,
TSServerSessionSharingMatchMask match_style, HttpSM *sm, PoolableSession *&to_return)
{
HSMresult_t zret = HSM_NOT_FOUND;
to_return = nullptr;
if ((TS_SERVER_SESSION_SHARING_MATCH_MASK_HOSTONLY & match_style) && !(TS_SERVER_SESSION_SHARING_MATCH_MASK_IP & match_style)) {
Debug("http_ss", "Search for host name only not IP. Pool size %zu", m_fqdn_pool.count());
// This is broken out because only in this case do we check the host hash first. The range must be checked
// to verify an upstream that matches port and SNI name is selected. Walk backwards to select oldest.
in_port_t port = ats_ip_port_cast(addr);
auto first = m_fqdn_pool.find(hostname_hash);
while (first != m_fqdn_pool.end() && first->hostname_hash == hostname_hash) {
Debug("http_ss", "Compare port 0x%x against 0x%x", port, ats_ip_port_cast(first->get_remote_addr()));
if (port == ats_ip_port_cast(first->get_remote_addr()) &&
(!(match_style & TS_SERVER_SESSION_SHARING_MATCH_MASK_SNI) || validate_sni(sm, first->get_netvc())) &&
(!(match_style & TS_SERVER_SESSION_SHARING_MATCH_MASK_HOSTSNISYNC) || validate_host_sni(sm, first->get_netvc())) &&
(!(match_style & TS_SERVER_SESSION_SHARING_MATCH_MASK_CERT) || validate_cert(sm, first->get_netvc()))) {
zret = HSM_DONE;
break;
}
++first;
}
if (zret == HSM_DONE) {
to_return = first;
this->removeSession(to_return);
} else if (first != m_fqdn_pool.end()) {
Debug("http_ss", "Failed find entry due to name mismatch %s", sm->t_state.current.server->name);
}
} else if (TS_SERVER_SESSION_SHARING_MATCH_MASK_IP & match_style) { // matching is not disabled.
auto first = m_ip_pool.find(addr);
// The range is all that is needed in the match IP case, otherwise need to scan for matching fqdn
// And matches the other constraints as well
// Note the port is matched as part of the address key so it doesn't need to be checked again.
if (match_style & (~TS_SERVER_SESSION_SHARING_MATCH_MASK_IP)) {
while (first != m_ip_pool.end() && ats_ip_addr_port_eq(first->get_remote_addr(), addr)) {
if ((!(match_style & TS_SERVER_SESSION_SHARING_MATCH_MASK_HOSTONLY) || first->hostname_hash == hostname_hash) &&
(!(match_style & TS_SERVER_SESSION_SHARING_MATCH_MASK_SNI) || validate_sni(sm, first->get_netvc())) &&
(!(match_style & TS_SERVER_SESSION_SHARING_MATCH_MASK_HOSTSNISYNC) || validate_host_sni(sm, first->get_netvc())) &&
(!(match_style & TS_SERVER_SESSION_SHARING_MATCH_MASK_CERT) || validate_cert(sm, first->get_netvc()))) {
zret = HSM_DONE;
break;
}
++first;
}
} else if (first != m_ip_pool.end()) {
zret = HSM_DONE;
}
if (zret == HSM_DONE) {
to_return = first;
this->removeSession(to_return);
}
}
return zret;
}
void
ServerSessionPool::releaseSession(PoolableSession *ss)
{
ss->state = PoolableSession::KA_POOLED;
// Now we need to issue a read on the connection to detect
// if it closes on us. We will get called back in the
// continuation for this bucket, ensuring we have the lock
// to remove the connection from our lists
// Actually need to have a buffer here, otherwise the vc is
// disabled
ss->do_io_read(this, INT64_MAX, ss->get_remote_reader()->mbuf);
// Transfer control of the write side as well
ss->do_io_write(this, 0, nullptr);
ss->set_inactivity_timeout(ss->get_netvc()->get_inactivity_timeout());
ss->cancel_active_timeout();
// put it in the pools.
this->addSession(ss);
Debug("http_ss",
"[%" PRId64 "] [release session] "
"session placed into shared pool",
ss->connection_id());
}
// Called from the NetProcessor to let us know that a
// connection has closed down
//
int
ServerSessionPool::eventHandler(int event, void *data)
{
NetVConnection *net_vc = nullptr;
PoolableSession *s = nullptr;
switch (event) {
case VC_EVENT_READ_READY:
// The server sent us data. This is unexpected so
// close the connection
/* Fall through */
case VC_EVENT_EOS:
case VC_EVENT_ERROR:
case VC_EVENT_INACTIVITY_TIMEOUT:
case VC_EVENT_ACTIVE_TIMEOUT:
net_vc = static_cast<NetVConnection *>((static_cast<VIO *>(data))->vc_server);
break;
default:
ink_release_assert(0);
return 0;
}
sockaddr const *addr = net_vc->get_remote_addr();
bool found = false;
for (auto spot = m_ip_pool.find(addr); spot != m_ip_pool.end() && spot->_ip_link.equal(addr, spot); ++spot) {
if ((s = spot)->get_netvc() == net_vc) {
// if there was a timeout of some kind on a keep alive connection, and
// keeping the connection alive will not keep us above the # of max connections
// to the origin and we are below the min number of keep alive connections to this
// origin, then reset the timeouts on our end and do not close the connection
if ((event == VC_EVENT_INACTIVITY_TIMEOUT || event == VC_EVENT_ACTIVE_TIMEOUT) && s->state == PoolableSession::KA_POOLED &&
s->conn_track_group) {
Debug("http_ss", "s->conn_track_group->min_keep_alive_conns : %d", s->conn_track_group->min_keep_alive_conns);
bool connection_count_below_min = s->conn_track_group->_count <= s->conn_track_group->min_keep_alive_conns;
if (connection_count_below_min) {
Debug("http_ss",
"[%" PRId64 "] [session_bucket] session received io notice [%s], "
"resetting timeout to maintain minimum number of connections",
s->connection_id(), HttpDebugNames::get_event_name(event));
s->get_netvc()->set_inactivity_timeout(s->get_netvc()->get_inactivity_timeout());
found = true;
break;
}
}
// We've found our server session. Remove it from
// our lists and close it down
Debug("http_ss", "[%" PRId64 "] [session_pool] session %p received io notice [%s]", s->connection_id(), s,
HttpDebugNames::get_event_name(event));
ink_assert(s->state == PoolableSession::KA_POOLED);
// Out of the pool! Now!
this->removeSession(s);
// Drop connection on this end.
s->do_io_close();
found = true;
break;
}
}
if (!found) {
// We failed to find our session. This can only be the result of a programming flaw. Since we only ever keep
// UnixNetVConnections and SSLNetVConnections in the session pool, the dynamic cast won't fail.
UnixNetVConnection *unix_net_vc = dynamic_cast<UnixNetVConnection *>(net_vc);
if (unix_net_vc) {
char peer_ip[INET6_ADDRPORTSTRLEN];
ats_ip_nptop(unix_net_vc->get_remote_addr(), peer_ip, sizeof(peer_ip));
Warning("Connection leak from http keep-alive system fd=%d closed=%d peer_ip_port=%s", unix_net_vc->con.fd,
unix_net_vc->closed, peer_ip);
}
ink_assert(0);
}
return 0;
}
void
HttpSessionManager::init()
{
m_g_pool = new ServerSessionPool;
eventProcessor.schedule_spawn(&initialize_thread_for_http_sessions, ET_NET);
}
// TODO: Should this really purge all keep-alive sessions?
// Does this make any sense, since we always do the global pool and not the per thread?
void
HttpSessionManager::purge_keepalives()
{
EThread *ethread = this_ethread();
MUTEX_TRY_LOCK(lock, m_g_pool->mutex, ethread);
if (lock.is_locked()) {
m_g_pool->purge();
} // should we do something clever if we don't get the lock?
}
HSMresult_t
HttpSessionManager::acquire_session(HttpSM *sm, sockaddr const *ip, const char *hostname, ProxyTransaction *ua_txn)
{
PoolableSession *to_return = nullptr;
TSServerSessionSharingMatchMask match_style =
static_cast<TSServerSessionSharingMatchMask>(sm->t_state.txn_conf->server_session_sharing_match);
CryptoHash hostname_hash;
HSMresult_t retval = HSM_NOT_FOUND;
CryptoContext().hash_immediate(hostname_hash, (unsigned char *)hostname, strlen(hostname));
// First check to see if there is a server session bound
// to the user agent session
to_return = ua_txn->get_server_session();
if (to_return != nullptr) {
ua_txn->attach_server_session(nullptr);
// Since the client session is reusing the same server session, it seems that the SNI should match
// Will the client make requests to different hosts over the same SSL session? Though checking
// the IP/hostname here seems a bit redundant too
//
if (ServerSessionPool::match(to_return, ip, hostname_hash, match_style) &&
(!(match_style & TS_SERVER_SESSION_SHARING_MATCH_MASK_SNI) ||
ServerSessionPool::validate_sni(sm, to_return->get_netvc())) &&
(!(match_style & TS_SERVER_SESSION_SHARING_MATCH_MASK_HOSTSNISYNC) ||
ServerSessionPool::validate_host_sni(sm, to_return->get_netvc())) &&
(!(match_style & TS_SERVER_SESSION_SHARING_MATCH_MASK_CERT) ||
ServerSessionPool::validate_cert(sm, to_return->get_netvc()))) {
Debug("http_ss", "[%" PRId64 "] [acquire session] returning attached session ", to_return->connection_id());
to_return->state = PoolableSession::SSN_IN_USE;
sm->create_server_txn(to_return);
return HSM_DONE;
}
// Release this session back to the main session pool and
// then continue looking for one from the shared pool
Debug("http_ss",
"[%" PRId64 "] [acquire session] "
"session not a match, returning to shared pool",
to_return->connection_id());
to_return->release(nullptr);
to_return = nullptr;
}
// Otherwise, check the thread pool first
if (this->get_pool_type() == TS_SERVER_SESSION_SHARING_POOL_THREAD ||
this->get_pool_type() == TS_SERVER_SESSION_SHARING_POOL_HYBRID) {
retval = _acquire_session(ip, hostname_hash, sm, match_style, TS_SERVER_SESSION_SHARING_POOL_THREAD);
}
// If you didn't get a match, and the global pool is an option go there.
if (retval != HSM_DONE && (TS_SERVER_SESSION_SHARING_POOL_GLOBAL == this->get_pool_type() ||
TS_SERVER_SESSION_SHARING_POOL_HYBRID == this->get_pool_type())) {
retval = _acquire_session(ip, hostname_hash, sm, match_style, TS_SERVER_SESSION_SHARING_POOL_GLOBAL);
}
return retval;
}
HSMresult_t
HttpSessionManager::_acquire_session(sockaddr const *ip, CryptoHash const &hostname_hash, HttpSM *sm,
TSServerSessionSharingMatchMask match_style, TSServerSessionSharingPoolType pool_type)
{
PoolableSession *to_return = nullptr;
HSMresult_t retval = HSM_NOT_FOUND;
// Extend the mutex window until the acquired Server session is attached
// to the SM. Releasing the mutex before that results in race conditions
// due to a potential parallel network read on the VC with no mutex guarding
{
// Now check to see if we have a connection in our shared connection pool
EThread *ethread = this_ethread();
Ptr<ProxyMutex> pool_mutex =
(TS_SERVER_SESSION_SHARING_POOL_THREAD == pool_type) ? ethread->server_session_pool->mutex : m_g_pool->mutex;
MUTEX_TRY_LOCK(lock, pool_mutex, ethread);
if (lock.is_locked()) {
if (TS_SERVER_SESSION_SHARING_POOL_THREAD == pool_type) {
retval = ethread->server_session_pool->acquireSession(ip, hostname_hash, match_style, sm, to_return);
Debug("http_ss", "[acquire session] thread pool search %s", to_return ? "successful" : "failed");
} else {
retval = m_g_pool->acquireSession(ip, hostname_hash, match_style, sm, to_return);
Debug("http_ss", "[acquire session] global pool search %s", to_return ? "successful" : "failed");
// At this point to_return has been removed from the pool. Do we need to move it
// to the same thread?
if (to_return) {
UnixNetVConnection *server_vc = dynamic_cast<UnixNetVConnection *>(to_return->get_netvc());
if (server_vc) {
// Disable i/o on this vc now, but, hold onto the g_pool cont
// and the mutex to stop any stray events from getting in
server_vc->do_io_read(m_g_pool, 0, nullptr);
server_vc->do_io_write(m_g_pool, 0, nullptr);
UnixNetVConnection *new_vc = server_vc->migrateToCurrentThread(sm, ethread);
// The VC moved, free up the original one
if (new_vc != server_vc) {
ink_assert(new_vc == nullptr || new_vc->nh != nullptr);
if (!new_vc) {
// Close out to_return, we were't able to get a connection
HTTP_INCREMENT_DYN_STAT(http_origin_shutdown_migration_failure);
to_return->do_io_close();
to_return = nullptr;
retval = HSM_NOT_FOUND;
} else {
// Keep things from timing out on us
new_vc->set_inactivity_timeout(new_vc->get_inactivity_timeout());
to_return->set_netvc(new_vc);
}
} else {
// Keep things from timing out on us
server_vc->set_inactivity_timeout(server_vc->get_inactivity_timeout());
}
}
}
}
} else { // Didn't get the lock. to_return is still NULL
retval = HSM_RETRY;
}
if (to_return) {
if (sm->create_server_txn(to_return)) {
Debug("http_ss", "[%" PRId64 "] [acquire session] return session from shared pool", to_return->connection_id());
to_return->state = PoolableSession::SSN_IN_USE;
retval = HSM_DONE;
} else {
Debug("http_ss", "[%" PRId64 "] [acquire session] failed to get transaction on session from shared pool",
to_return->connection_id());
to_return->do_io_close();
retval = HSM_RETRY;
}
}
}
return retval;
}
HSMresult_t
HttpSessionManager::release_session(PoolableSession *to_release)
{
EThread *ethread = this_ethread();
ServerSessionPool *pool =
TS_SERVER_SESSION_SHARING_POOL_THREAD == to_release->sharing_pool ? ethread->server_session_pool : m_g_pool;
bool released_p = true;
// The per thread lock looks like it should not be needed but if it's not locked the close checking I/O op will crash.
MUTEX_TRY_LOCK(lock, pool->mutex, ethread);
if (lock.is_locked()) {
pool->releaseSession(to_release);
} else if (this->get_pool_type() == TS_SERVER_SESSION_SHARING_POOL_HYBRID) {
// Try again with the thread pool
to_release->sharing_pool = TS_SERVER_SESSION_SHARING_POOL_THREAD;
return release_session(to_release);
} else {
Debug("http_ss", "[%" PRId64 "] [release session] could not release session due to lock contention",
to_release->connection_id());
released_p = false;
}
return released_p ? HSM_DONE : HSM_RETRY;
}
void
ServerSessionPool::removeSession(PoolableSession *to_remove)
{
EThread *ethread = this_ethread();
SCOPED_MUTEX_LOCK(lock, mutex, ethread);
char peer_ip[INET6_ADDRPORTSTRLEN];
if (is_debug_tag_set("http_ss")) {
ats_ip_nptop(to_remove->get_remote_addr(), peer_ip, sizeof(peer_ip));
Debug("http_ss", "Remove session %p %s m_fqdn_pool size=%zu m_ip_pool_size=%zu", to_remove, peer_ip, m_fqdn_pool.count(),
m_ip_pool.count());
}
m_fqdn_pool.erase(to_remove);
if (m_ip_pool.erase(to_remove)) {
HTTP_DECREMENT_DYN_STAT(http_pooled_server_connections_stat);
}
if (is_debug_tag_set("http_ss")) {
Debug("http_ss", "After Remove session %p m_fqdn_pool size=%zu m_ip_pool_size=%zu", to_remove, m_fqdn_pool.count(),
m_ip_pool.count());
}
}
void
ServerSessionPool::addSession(PoolableSession *ss)
{
EThread *ethread = this_ethread();
SCOPED_MUTEX_LOCK(lock, mutex, ethread);
// put it in the pools.
m_ip_pool.insert(ss);
m_fqdn_pool.insert(ss);
HTTP_INCREMENT_DYN_STAT(http_pooled_server_connections_stat);
if (is_debug_tag_set("http_ss")) {
char peer_ip[INET6_ADDRPORTSTRLEN];
ats_ip_nptop(ss->get_remote_addr(), peer_ip, sizeof(peer_ip));
Debug("http_ss", "[%" PRId64 "] [add session] session placed into shared pool under ip %s", ss->connection_id(), peer_ip);
}
}
|