From f5f56e1a1c4d9e9496fcb9d81131066a964ccd23 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sat, 13 Apr 2024 14:15:43 +0200 Subject: Adding upstream version 2.4.1. Signed-off-by: Daniel Baumann --- src/lib/tcp/tcp_connection_pool.cc | 127 +++++++++++++++++++++++++++++++++++++ 1 file changed, 127 insertions(+) create mode 100644 src/lib/tcp/tcp_connection_pool.cc (limited to 'src/lib/tcp/tcp_connection_pool.cc') diff --git a/src/lib/tcp/tcp_connection_pool.cc b/src/lib/tcp/tcp_connection_pool.cc new file mode 100644 index 0000000..d5fe610 --- /dev/null +++ b/src/lib/tcp/tcp_connection_pool.cc @@ -0,0 +1,127 @@ +// Copyright (C) 2022 Internet Systems Consortium, Inc. ("ISC") +// +// This Source Code Form is subject to the terms of the Mozilla Public +// License, v. 2.0. If a copy of the MPL was not distributed with this +// file, You can obtain one at http://mozilla.org/MPL/2.0/. + +#include + +#include +#include +#include + +using namespace isc::asiolink; + +namespace isc { +namespace tcp { + +std::atomic +TcpConnectionPool::started_counter_(0); + +std::atomic +TcpConnectionPool::stopped_counter_(0); + +std::atomic +TcpConnectionPool::rejected_counter_(0); + +void +TcpConnectionPool::start(const TcpConnectionPtr& connection) { + if (util::MultiThreadingMgr::instance().getMode()) { + std::lock_guard lk(mutex_); + connections_.insert(connections_.end(), connection); + started_counter_ += 1; + } else { + connections_.insert(connections_.end(), connection); + started_counter_ += 1; + } + + connection->asyncAccept(); +} + +void +TcpConnectionPool::stop(const TcpConnectionPtr& connection) { + if (util::MultiThreadingMgr::instance().getMode()) { + std::lock_guard lk(mutex_); + size_t before = connections_.size(); + connections_.remove(connection); + size_t after = connections_.size(); + stopped_counter_ += before - after; + } else { + size_t before = connections_.size(); + connections_.remove(connection); + size_t after = connections_.size(); + stopped_counter_ += before - after; + } + + connection->close(); +} + +void +TcpConnectionPool::shutdown(const TcpConnectionPtr& connection) { + if (util::MultiThreadingMgr::instance().getMode()) { + std::lock_guard lk(mutex_); + size_t before = connections_.size(); + connections_.remove(connection); + size_t after = connections_.size(); + stopped_counter_ += before - after; + } else { + size_t before = connections_.size(); + connections_.remove(connection); + size_t after = connections_.size(); + stopped_counter_ += before - after; + } + + connection->shutdown(); +} + +void +TcpConnectionPool::stopAll() { + if (util::MultiThreadingMgr::instance().getMode()) { + std::lock_guard lk(mutex_); + stopAllInternal(); + } else { + stopAllInternal(); + } +} + +void +TcpConnectionPool::stopAllInternal() { + for (auto connection = connections_.begin(); + connection != connections_.end(); + ++connection) { + (*connection)->close(); + } + + size_t cnt = connections_.size(); + connections_.clear(); + stopped_counter_ += cnt; +} + +size_t +TcpConnectionPool::usedByRemoteIp(const IOAddress& remote_ip, + size_t& total_connections) { + if (util::MultiThreadingMgr::instance().getMode()) { + std::lock_guard lk(mutex_); + return (usedByRemoteIpInternal(remote_ip, total_connections)); + } else { + return (usedByRemoteIpInternal(remote_ip, total_connections)); + } +} + +size_t +TcpConnectionPool::usedByRemoteIpInternal(const IOAddress& remote_ip, + size_t& total_connections) { + total_connections = connections_.size(); + size_t cnt = 0; + for (const auto& conn : connections_) { + const auto& ep = conn->getRemoteEndpoint(); + if ((ep != TcpConnection::NO_ENDPOINT()) && + (IOAddress(ep.address()) == remote_ip)) { + ++cnt; + } + } + return (cnt); +} + +} +} -- cgit v1.2.3