ntopng/src/AlertCounter.cpp
2017-04-26 11:23:23 +02:00

127 lines
4.5 KiB
C++

/*
*
* (C) 2013-17 - 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 ALERT_DEBUG 1
/* *************************************** */
AlertCounter::AlertCounter(u_int32_t _max_num_hits_sec,
u_int8_t _over_threshold_duration_sec) {
resetThresholds(_max_num_hits_sec, _over_threshold_duration_sec);
}
/* *************************************** */
void AlertCounter::resetThresholds(u_int32_t _max_num_hits_sec, u_int8_t _over_threshold_duration_sec) {
max_num_hits_sec = _max_num_hits_sec;
over_threshold_duration_sec = _over_threshold_duration_sec;
if(over_threshold_duration_sec < 1) over_threshold_duration_sec = 1;
init();
}
/* *************************************** */
void AlertCounter::init() {
time_last_hit = time_last_alert_reported = 0;
num_hits_rcvd_last_second = 0;
last_trespassed_threshold = 0, num_trespassed_threshold = 0;
num_hits_since_first_alert = 0;
last_trespassed_hits = 0;
thresholdTrepassed = false;
}
/* *************************************** */
bool AlertCounter::incHits(time_t when) {
if(time_last_hit < (when-1))
init(); /* Only consecutive alerts matter */
else if(time_last_hit == (when-1))
num_hits_rcvd_last_second = 0;
num_hits_rcvd_last_second++, num_hits_since_first_alert++, time_last_hit = when;
if((num_hits_rcvd_last_second > max_num_hits_sec)
&& (last_trespassed_threshold != when)) {
num_trespassed_threshold++, last_trespassed_threshold = when;
#ifdef ALERT_DEBUG
ntop->getTrace()->traceEvent(TRACE_NORMAL,
"Trepass [num: %u][last: %u][now: %u][duration: %u]",
num_trespassed_threshold, last_trespassed_threshold, when,
over_threshold_duration_sec);
#endif
if(num_trespassed_threshold > over_threshold_duration_sec) {
#ifdef ALERT_DEBUG
ntop->getTrace()->traceEvent(TRACE_NORMAL,
"Alarm triggered [num: %u][last: %u][now: %u][duration: %u]",
num_trespassed_threshold, last_trespassed_threshold, when,
over_threshold_duration_sec);
#endif
if(when > (time_last_alert_reported+CONST_ALERT_GRACE_PERIOD)) {
#ifdef ALERT_DEBUG
ntop->getTrace()->traceEvent(TRACE_NORMAL,
"Alert emitted [num: %u][now: %u][duration: %u][tot_hits: %u][hits: %u/%u]",
num_trespassed_threshold, when,
over_threshold_duration_sec, num_hits_since_first_alert,
num_hits_rcvd_last_second, max_num_hits_sec);
#endif
time_last_alert_reported = when;
last_trespassed_hits = num_hits_rcvd_last_second;
thresholdTrepassed = true;
return(thresholdTrepassed);
}
}
}
/* Do not reset the flag immediately, we need time to process it from LUA */
if(when > (time_last_alert_reported+CONST_ALERT_GRACE_PERIOD))
thresholdTrepassed = false;
return(thresholdTrepassed);
}
/* *************************************** */
void AlertCounter::lua(lua_State* vm, const char *table_key) {
if(vm) {
lua_newtable(vm);
lua_push_int_table_entry(vm, "max_num_hits_sec", max_num_hits_sec);
lua_push_int_table_entry(vm, "num_hits_since_first_alert", num_hits_since_first_alert);
lua_push_int_table_entry(vm, "over_threshold_duration_sec", over_threshold_duration_sec);
lua_push_int_table_entry(vm, "time_last_hit", time_last_hit);
lua_push_int_table_entry(vm, "time_last_alert_reported", time_last_alert_reported);
lua_push_int_table_entry(vm, "last_trespassed_threshold", last_trespassed_threshold);
lua_push_int_table_entry(vm, "num_trespassed_threshold", num_trespassed_threshold);
lua_push_int_table_entry(vm, "num_hits_rcvd_last_second", num_hits_rcvd_last_second);
lua_push_int_table_entry(vm, "last_trespassed_hits", last_trespassed_hits);
lua_push_bool_table_entry(vm, "threshold_trepassed", thresholdTrepassed);
lua_pushstring(vm, table_key ? table_key : (char*)"alert_counter");
lua_insert(vm, -2);
lua_settable(vm, -3);
}
}