mirror of
https://github.com/ntop/ntopng.git
synced 2026-05-03 01:10:10 +00:00
172 lines
3.8 KiB
C++
172 lines
3.8 KiB
C++
/*
|
|
*
|
|
* (C) 2016-18 - 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.
|
|
*
|
|
*/
|
|
|
|
#ifndef _ACTIVITY_FILTERS_H_
|
|
#define _ACTIVITY_FILTERS_H_
|
|
|
|
#include <stdint.h>
|
|
#include <time.h>
|
|
|
|
#define ACTIVITY_FILTER_SMA_SAMPLES 10
|
|
#define ACTIVITY_FILTER_WMA_SAMPLES 10
|
|
#define ACTIVITY_FILTER_METRICS_SAMPLES 4
|
|
#define ACTIVITY_FILTER_METRICS_MAX_INTERVAL 5000
|
|
|
|
typedef unsigned int uint;
|
|
class Flow;
|
|
|
|
typedef enum {
|
|
activity_filter_all = 0,
|
|
activity_filter_sma,
|
|
activity_filter_wma,
|
|
activity_filter_command_sequence,
|
|
activity_filter_web,
|
|
activity_filter_ratio,
|
|
activity_filter_interflow,
|
|
activity_filter_metrics_test,
|
|
|
|
ActivityFiltersN /* Unused as value but useful to
|
|
getting the number of elements
|
|
in this datastructure
|
|
*/
|
|
} ActivityFilterID;
|
|
|
|
typedef union {
|
|
struct {
|
|
bool pass;
|
|
} all;
|
|
|
|
struct {
|
|
uint edge;
|
|
uint minsamples;
|
|
uint timebound;
|
|
uint sustain;
|
|
} sma;
|
|
|
|
struct {
|
|
float timescale;
|
|
uint edge;
|
|
uint minsamples;
|
|
uint aggrsecs;
|
|
} wma;
|
|
|
|
struct {
|
|
uint minbytes;
|
|
uint maxinterval;
|
|
uint minflips;
|
|
uint mincommands;
|
|
bool mustwait;
|
|
} command_sequence;
|
|
|
|
struct {
|
|
uint numsamples;
|
|
uint minbytes;
|
|
uint maxinterval;
|
|
bool serverdominant;
|
|
bool forceWebProfile;
|
|
} web;
|
|
|
|
struct {
|
|
uint numsamples;
|
|
uint minbytes;
|
|
float clisrv_ratio;
|
|
} ratio;
|
|
|
|
struct {
|
|
u_int32_t minpkts;
|
|
int minflows;
|
|
int minduration;
|
|
bool sslonly;
|
|
} interflow;
|
|
} activity_filter_config;
|
|
|
|
typedef union {
|
|
struct {
|
|
struct timeval lastPacket;
|
|
struct timeval lastActivity;
|
|
u_int16_t sbuf[ACTIVITY_FILTER_SMA_SAMPLES];
|
|
float value;
|
|
uint samples;
|
|
} sma;
|
|
|
|
struct {
|
|
struct timeval lastPacket;
|
|
u_int16_t sbuf[ACTIVITY_FILTER_WMA_SAMPLES];
|
|
float weights[ACTIVITY_FILTER_WMA_SAMPLES];
|
|
float value;
|
|
float wsum;
|
|
uint samples;
|
|
} wma;
|
|
|
|
struct {
|
|
uint64_t respBytes;
|
|
uint64_t respCount;
|
|
struct timeval lastPacket;
|
|
uint numCommands;
|
|
bool reqSeen;
|
|
bool srvWaited;
|
|
bool cli2srv;
|
|
} command_sequence;
|
|
|
|
struct {
|
|
uint64_t cliBytes;
|
|
uint64_t srvBytes;
|
|
struct timeval lastPacket;
|
|
uint8_t samples;
|
|
bool detected;
|
|
} web;
|
|
|
|
struct {
|
|
uint64_t cliBytes;
|
|
uint64_t srvBytes;
|
|
uint samples;
|
|
bool detected;
|
|
} ratio;
|
|
|
|
struct {
|
|
uint16_t sizes[ACTIVITY_FILTER_METRICS_SAMPLES];
|
|
struct timeval times[ACTIVITY_FILTER_METRICS_SAMPLES];
|
|
uint8_t samples;
|
|
bool directions[ACTIVITY_FILTER_METRICS_SAMPLES];
|
|
} metrics;
|
|
} activity_filter_status;
|
|
|
|
/*
|
|
* A filter to be applied to network packets in order to detect
|
|
* activity.
|
|
*
|
|
* @param activity_filter_config* filter specific configuration
|
|
* @param activity_filter_status* filter specific status data
|
|
* @param Flow* current flow
|
|
* @param const struct timeval current packet time
|
|
* @param bool cli2srv direction
|
|
* @param u_int16_t current packet size
|
|
*
|
|
* @return TRUE if activity has been detected, FALSE otherwise
|
|
*/
|
|
typedef bool (activity_filter_t)(const activity_filter_config *,
|
|
activity_filter_status *,
|
|
Flow *, const struct timeval *,
|
|
bool, uint16_t);
|
|
|
|
extern activity_filter_t* activity_filter_funcs[];
|
|
|
|
#endif
|