mirror of
https://github.com/ntop/ntopng.git
synced 2026-05-12 21:13:04 +00:00
205 lines
6.1 KiB
C++
205 lines
6.1 KiB
C++
/*
|
|
*
|
|
* (C) 2013-24 - ntop.org
|
|
*
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program; if not, write to the Free Software Foundation,
|
|
* Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
*
|
|
*/
|
|
|
|
#include "ntop_includes.h"
|
|
|
|
//#define DEBUG_RECIPIENT_QUEUE
|
|
|
|
/* *************************************** */
|
|
|
|
RecipientQueue::RecipientQueue(u_int16_t _recipient_id) {
|
|
if(trace_new_delete) ntop->getTrace()->traceEvent(TRACE_NORMAL, "[new] %s", __FILE__);
|
|
|
|
recipient_id = _recipient_id;
|
|
queue = NULL, drops = 0, uses = 0;
|
|
last_use = 0;
|
|
skip_alerts = false;
|
|
|
|
/* No minimum severity */
|
|
minimum_severity = alert_level_none;
|
|
|
|
/* All categories enabled by default */
|
|
for (int i = 0; i < MAX_NUM_SCRIPT_CATEGORIES; i++)
|
|
enabled_categories.setBit(i);
|
|
|
|
/* All entities enabled by default */
|
|
for (int i = 0; i < ALERT_ENTITY_MAX_NUM_ENTITIES; i++)
|
|
enabled_entities.setBit(i);
|
|
|
|
/* All flow checks enabled by default */
|
|
for (int i = 0; i < MAX_DEFINED_FLOW_ALERT_TYPE; i++)
|
|
enabled_flow_checks.setBit(i);
|
|
|
|
/* All host checks enabled by default */
|
|
for (int i = 0; i < NUM_DEFINED_HOST_CHECKS; i++)
|
|
enabled_host_checks.setBit(i);
|
|
}
|
|
|
|
/* *************************************** */
|
|
|
|
RecipientQueue::~RecipientQueue() {
|
|
if (queue) delete queue;
|
|
}
|
|
|
|
/* *************************************** */
|
|
|
|
AlertFifoItem *RecipientQueue::dequeue() {
|
|
AlertFifoItem *notification;
|
|
|
|
if (!queue) return NULL;
|
|
|
|
notification = queue->dequeue();
|
|
|
|
if (notification) {
|
|
last_use = time(NULL);
|
|
}
|
|
|
|
return notification;
|
|
}
|
|
|
|
/* *************************************** */
|
|
|
|
/* Filter and Enqueue alerts to the recipient
|
|
* (similar to what recipients.dispatch_notification does in Lua)
|
|
*/
|
|
bool RecipientQueue::enqueue(const AlertFifoItem* const notification,
|
|
AlertEntity alert_entity) {
|
|
bool res = false;
|
|
|
|
#ifdef DEBUG_RECIPIENT_QUEUE
|
|
//if (recipient_id != 0 && alert_entity == alert_entity_am_host)
|
|
ntop->getTrace()->traceEvent(TRACE_NORMAL, "Enqueueing alert to recipient %d", recipient_id);
|
|
#endif
|
|
|
|
/* Checking if the alerts have not to be enqueued */
|
|
if(skip_alerts && notification->score > 0)
|
|
return true; /* Skipping alerts */
|
|
else if(!skip_alerts) {
|
|
/* In case alerts have not to be skipped, check the filters */
|
|
#ifdef DEBUG_RECIPIENT_QUEUE
|
|
ntop->getTrace()->traceEvent(TRACE_NORMAL, "Checking alert (entity %d) for recipient %d", alert_entity, recipient_id);
|
|
#endif
|
|
|
|
if (!notification ||
|
|
notification->alert_severity <
|
|
minimum_severity /* Severity too low for this recipient */
|
|
||
|
|
!(enabled_categories.isSetBit(
|
|
notification
|
|
->alert_category)) /* Category not enabled for this recipient */
|
|
|| !(enabled_entities.isSetBit(
|
|
alert_entity)) /* Entity not enabled for this recipient */
|
|
||
|
|
(alert_entity_flow == alert_entity && !enabled_flow_checks.isSetBit(notification->alert_id))
|
|
||
|
|
(alert_entity_host == alert_entity && !enabled_host_checks.isSetBit(notification->alert_id))
|
|
) {
|
|
#ifdef DEBUG_RECIPIENT_QUEUE
|
|
ntop->getTrace()->traceEvent(TRACE_NORMAL, "Alert filtered out due to filtering policy for recipient %d", recipient_id);
|
|
#endif
|
|
return true; /* Nothing to enqueue */
|
|
}
|
|
|
|
if (recipient_id == 0 && /* Default recipient (DB) */
|
|
alert_entity == alert_entity_flow &&
|
|
ntop->getPrefs()->do_dump_flows_on_clickhouse()) {
|
|
/* Do not store flow alerts on ClickHouse as they are retrieved using a view
|
|
* on historical flows) */
|
|
/* But still increment the number of uses */
|
|
uses++;
|
|
#ifdef DEBUG_RECIPIENT_QUEUE
|
|
ntop->getTrace()->traceEvent(TRACE_NORMAL, "Flow alert (no enqueue - clickhouse uses: %u)", uses);
|
|
#endif
|
|
return true;
|
|
}
|
|
|
|
if (recipient_id == 0) {
|
|
/* Default recipient (SQLite / ClickHouse DB) - do not filter alerts by host
|
|
*/
|
|
} else {
|
|
/* Other recipients (notifications) */
|
|
if (alert_entity == alert_entity_flow) {
|
|
if (!enabled_host_pools.isSetBit(
|
|
notification->flow.cli_host_pool) &&
|
|
!enabled_host_pools.isSetBit(notification->flow.srv_host_pool))
|
|
return true;
|
|
} else if (alert_entity == alert_entity_host) {
|
|
if (!enabled_host_pools.isSetBit(notification->host.host_pool))
|
|
return true;
|
|
}
|
|
}
|
|
}
|
|
|
|
if ((!queue && !(queue = new (nothrow)
|
|
AlertFifoQueue(ALERTS_NOTIFICATIONS_QUEUE_SIZE)))) {
|
|
/* Queue not available */
|
|
drops++;
|
|
return false; /* Enqueue failed */
|
|
}
|
|
|
|
/* Enqueue the notification (allocate memory for the alert string) */
|
|
AlertFifoItem *new_item = new AlertFifoItem(notification);
|
|
|
|
if (new_item) {
|
|
res = queue->enqueue(new_item);
|
|
|
|
if (!res) {
|
|
drops++;
|
|
delete new_item;
|
|
#ifdef DEBUG_RECIPIENT_QUEUE
|
|
ntop->getTrace()->traceEvent(TRACE_NORMAL, "Alert enqueue failed (drop)");
|
|
#endif
|
|
} else {
|
|
uses++;
|
|
#ifdef DEBUG_RECIPIENT_QUEUE
|
|
ntop->getTrace()->traceEvent(TRACE_NORMAL, "Alert enqueued successfully (uses: %u)", uses);
|
|
#endif
|
|
}
|
|
} else {
|
|
drops++;
|
|
}
|
|
|
|
return res;
|
|
}
|
|
|
|
/* *************************************** */
|
|
|
|
void RecipientQueue::lua(lua_State* vm) {
|
|
lua_newtable(vm);
|
|
lua_push_uint64_table_entry(vm, "last_use", last_use);
|
|
lua_push_uint64_table_entry(vm, "num_drops", drops);
|
|
lua_push_uint64_table_entry(vm, "num_uses", uses);
|
|
lua_push_uint64_table_entry(vm, "fill_pct", queue ? queue->fillPct() : 0);
|
|
}
|
|
|
|
/* *************************************** */
|
|
|
|
bool RecipientQueue::empty() {
|
|
bool res = true;
|
|
|
|
if (queue) {
|
|
if (!queue->empty()) {
|
|
res = false;
|
|
}
|
|
}
|
|
|
|
return res;
|
|
}
|