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
|
/*
Copyright (C) 2021 The Falco Authors.
Licensed 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.
*/
//
// socket_collector.h
//
#ifndef MINIMAL_BUILD
#pragma once
#if defined(HAS_CAPTURE) && !defined(_WIN32)
#include "socket_handler.h"
template <typename T>
class socket_collector
{
public:
typedef std::map<int, std::shared_ptr<T>> socket_map_t;
socket_collector(bool do_loop = false, long timeout_ms = 1000L):
m_nfds(0),
m_loop(do_loop),
m_timeout_ms(timeout_ms),
m_stopped(false)
{
clear_fds();
}
~socket_collector()
{
}
void add(std::shared_ptr<T> handler)
{
if(handler)
{
int sockfd = handler->get_socket(m_timeout_ms);
m_sockets[sockfd] = handler;
g_logger.log("Socket collector: handler [" + handler->get_id() +
"] added socket (" + std::to_string(sockfd) + ')',
sinsp_logger::SEV_TRACE);
}
else
{
g_logger.log("Socket collector: attempt to add null handler.",
sinsp_logger::SEV_ERROR);
}
}
bool is_enabled(std::shared_ptr<T> handler) const
{
if(handler)
{
return handler->is_enabled();
}
return false;
}
void enable(std::shared_ptr<T> handler)
{
if(handler)
{
handler->enable();
return;
}
g_logger.log("Socket collector: attempt to enable non-existing handler.",
sinsp_logger::SEV_ERROR);
}
int get_socket(std::shared_ptr<T> handler) const
{
for(const auto& http : m_sockets)
{
if(http.second == handler)
{
return http.first;
}
}
return -1;
}
bool has(std::shared_ptr<T> handler)
{
for(const auto& http : m_sockets)
{
if(http.second == handler)
{
return true;
}
}
return false;
}
bool remove(std::shared_ptr<T> handler)
{
for(typename socket_map_t::iterator it = m_sockets.begin(); it != m_sockets.end(); ++it)
{
if(it->second == handler)
{
remove(it);
return true;
}
}
return false;
}
void remove_all()
{
clear_fds();
m_sockets.clear();
m_nfds = 0;
}
int subscription_count() const
{
return m_sockets.size();
}
int signaled_sockets_count()
{
int count = 0;
for(typename socket_map_t::iterator it = m_sockets.begin(); it != m_sockets.end(); ++it)
{
if(FD_ISSET(it->first, &m_infd))
{
++count;
}
}
return count;
}
void trace_sockets()
{
if(g_logger.get_severity() >= sinsp_logger::SEV_TRACE)
{
for(typename socket_map_t::iterator it = m_sockets.begin(); it != m_sockets.end(); ++it)
{
if(it->second)
{
if(it->second->is_enabled())
{
g_logger.log("Socket collector: examining socket " + std::to_string(it->first) +
" (" + it->second->get_id() + ')', sinsp_logger::SEV_TRACE);
if(FD_ISSET(it->first, &m_infd))
{
g_logger.log("Socket collector: activity on socket " + std::to_string(it->first) +
" (" + it->second->get_id() + ')', sinsp_logger::SEV_TRACE);
}
}
else
{
g_logger.log("Socket collector: socket " + std::to_string(it->first) +
" handler (" + it->second->get_id() + ") is not enabled.",
sinsp_logger::SEV_TRACE);
}
}
else
{
g_logger.log("Socket collector: socket " + std::to_string(it->first) +
" handler (" + it->second->get_id() + ") is null.",
sinsp_logger::SEV_TRACE);
}
}
}
}
bool is_fd_valid(int sockfd)
{
struct timeval tv = {0};
fd_set infd, outfd, errfd;
FD_ZERO(&infd);
FD_ZERO(&outfd);
FD_ZERO(&errfd);
FD_SET(sockfd, &infd);
FD_SET(sockfd, &outfd);
FD_SET(sockfd, &errfd);
return 0 <= select(sockfd + 1, &infd, &outfd, &errfd, &tv);
}
void enable_sockets()
{
clear_fds();
for(typename socket_map_t::iterator it = m_sockets.begin(); it != m_sockets.end();)
{
int sockfd = -1;
if(it->second)
{
if(it->second->is_enabled())
{
if(!is_fd_valid(it->first))
{
remove(it);
continue;
}
else
{
sockfd = it->first;
FD_SET(sockfd, &m_infd);
FD_SET(sockfd, &m_errfd);
if(sockfd > m_nfds)
{
m_nfds = sockfd;
}
}
}
}
++it;
}
}
void get_data()
{
try
{
struct timeval tv;
int res;
m_stopped = false;
while(!m_stopped)
{
tv.tv_sec = m_loop ? m_timeout_ms / 1000 : 0;
tv.tv_usec = m_loop ? (m_timeout_ms % 1000) * 1000 : 0;
{
if(m_sockets.size())
{
enable_sockets(); // flag all enabled handler sockets
g_logger.log("Socket collector: total sockets=" + std::to_string(m_sockets.size()) +
", select-enabled sockets= " + std::to_string(signaled_sockets_count()),
sinsp_logger::SEV_TRACE);
res = select(m_nfds + 1, &m_infd, NULL, &m_errfd, &tv);
g_logger.log("Socket collector: total sockets=" + std::to_string(m_sockets.size()) +
", signaled sockets= " + std::to_string(signaled_sockets_count()),
sinsp_logger::SEV_TRACE);
if(res == 0) // all quiet
{
g_logger.log("Socket collector: " + std::to_string(m_sockets.size()) + " sockets total, no activity.",
sinsp_logger::SEV_DEBUG);
}
else if(res < 0) // select error
{
// socket sets are undefined after error, nothing to do here ...
throw sinsp_exception(std::string("Socket collector: select error (").append(strerror(errno)).append(1, ')'));
}
else // data available or socket error
{
trace_sockets();
for(typename socket_map_t::iterator it = m_sockets.begin(); it != m_sockets.end();)
{
std::string id = it->second->get_id();
int err = 0;
if(FD_ISSET(it->first, &m_infd))
{
if(it->second && it->second->is_enabled() && (err = it->second->on_data()))
{
if((err != EAGAIN) && (err != EINPROGRESS))
{
if(err != it->second->CONNECTION_CLOSED)
{
g_logger.log("Socket collector: data handling error " + std::to_string(errno) + ", (" +
strerror(errno) + "), removing handler [" + id + ']', sinsp_logger::SEV_ERROR);
}
else
{
g_logger.log("Socket collector: connection close detected while handling data"
", removing handler [" + id + ']', sinsp_logger::SEV_DEBUG);
}
remove(it);
continue;
}
}
}
if(FD_ISSET(it->first, &m_errfd))
{
if(it->second && (err = it->second->get_socket_error()))
{
g_logger.log("Socket collector: socket error " + std::to_string(err) + ", (" +
strerror(err) + "), removing handler [" + id + ']', sinsp_logger::SEV_ERROR);
}
else
{
g_logger.log("Socket collector: handler [" + id + "] unknown socket error, closing connection.",
sinsp_logger::SEV_ERROR);
}
remove(it);
continue;
}
++it;
}
}
}
else
{
g_logger.log("Socket collector is empty.", sinsp_logger::SEV_DEBUG);
m_stopped = true;
return;
}
}
if(!m_loop) { break; }
}
}
catch(const std::exception& ex)
{
g_logger.log(std::string("Socket collector error: ") + ex.what(), sinsp_logger::SEV_ERROR);
remove_all();
m_stopped = true;
}
}
void stop()
{
m_stopped = true;
}
bool is_active() const
{
return subscription_count() > 0;
}
bool is_healthy(std::shared_ptr<T> handler) const
{
if(m_steady_state)
{
return get_socket(handler) != -1;
}
return true;
}
// flag indicating collector passed through the
// transitional state (if any), where sockets and
// handlers may come and go
void set_steady_state(bool state = true)
{
m_steady_state = true;
}
bool get_steady_state() const
{
return m_steady_state;
}
private:
void clear_fds()
{
FD_ZERO(&m_errfd);
FD_ZERO(&m_infd);
}
typename socket_map_t::iterator& remove(typename socket_map_t::iterator& it)
{
if(it != m_sockets.end())
{
m_sockets.erase(it++);
}
m_nfds = 0;
for(const auto& sock : m_sockets)
{
if(sock.first > m_nfds)
{
m_nfds = sock.first;
}
}
return it;
}
socket_map_t m_sockets;
fd_set m_infd;
fd_set m_errfd;
int m_nfds = 0;
bool m_loop = false;
long m_timeout_ms;
bool m_stopped = false;
bool m_steady_state = false;
};
#endif // HAS_CAPTURE
#endif // MINIMAL_BUILD
|