mirror of
https://github.com/ntop/ntopng.git
synced 2026-05-23 20:51:00 +00:00
335 lines
9.7 KiB
C++
335 lines
9.7 KiB
C++
/*
|
|
*
|
|
* (C) 2013-19 - 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"
|
|
|
|
/* **************************************************** */
|
|
|
|
ViewInterface::ViewInterface(const char *_endpoint) : NetworkInterface(_endpoint) {
|
|
is_view = true; /* This is a view interface */
|
|
|
|
memset(viewed_interfaces, 0, sizeof(viewed_interfaces));
|
|
num_viewed_interfaces = 0;
|
|
char *ifaces = strdup(&_endpoint[5]); /* Skip view: */
|
|
|
|
if(ifaces) {
|
|
char *tmp, *iface = strtok_r(ifaces, ",", &tmp);
|
|
|
|
while(iface != NULL) {
|
|
bool found = false;
|
|
|
|
for(int i = 0; i < MAX_NUM_INTERFACE_IDS; i++) {
|
|
char *ifName;
|
|
|
|
if((ifName = ntop->get_if_name(i)) == NULL)
|
|
continue;
|
|
|
|
if(!strncmp(ifName, iface, MAX_INTERFACE_NAME_LEN)) {
|
|
found = true;
|
|
|
|
if(num_viewed_interfaces < MAX_NUM_VIEW_INTERFACES) {
|
|
NetworkInterface *what = ntop->getInterfaceById(i);
|
|
|
|
if(!what)
|
|
ntop->getTrace()->traceEvent(TRACE_ERROR, "Internal Error: NULL interface [%s][%d]", ifName, i);
|
|
else if(what->isViewed())
|
|
ntop->getTrace()->traceEvent(TRACE_ERROR, "Interface already belonging to a view [%s][%d]", ifName, i);
|
|
else {
|
|
what->setViewed();
|
|
viewed_interfaces[num_viewed_interfaces++] = what;
|
|
}
|
|
}
|
|
|
|
break;
|
|
}
|
|
}
|
|
|
|
if(!found)
|
|
ntop->getTrace()->traceEvent(TRACE_WARNING, "Skipping view sub-interface %s: not found", iface);
|
|
else if(num_viewed_interfaces == MAX_NUM_VIEW_INTERFACES)
|
|
break; /* Upper interface limit reached */
|
|
|
|
iface = strtok_r(NULL, ",", &tmp);
|
|
}
|
|
|
|
free(ifaces);
|
|
}
|
|
}
|
|
|
|
/* **************************************************** */
|
|
|
|
bool ViewInterface::walker(u_int32_t *begin_slot,
|
|
bool walk_all,
|
|
WalkerType wtype,
|
|
bool (*walker)(GenericHashEntry *h, void *user_data, bool *matched),
|
|
void *user_data,
|
|
bool walk_idle) {
|
|
bool ret = false;
|
|
u_int32_t flows_begin_slot; /* Always from the beginning, all flows */
|
|
|
|
switch(wtype) {
|
|
case walker_flows:
|
|
for(u_int8_t s = 0; s < num_viewed_interfaces; s++) {
|
|
flows_begin_slot = 0; /* Always visit all the flows starting from slot 0 */
|
|
ret |= viewed_interfaces[s]->walker(&flows_begin_slot, true /* walk_all == true */, wtype, walker, user_data, walk_idle);
|
|
}
|
|
break;
|
|
default:
|
|
ret = NetworkInterface::walker(begin_slot, walk_all, wtype, walker, user_data, walk_idle);
|
|
break;
|
|
}
|
|
|
|
return ret;
|
|
}
|
|
|
|
/* **************************************************** */
|
|
|
|
u_int64_t ViewInterface::getNumPackets() {
|
|
u_int64_t tot = 0;
|
|
|
|
for(u_int8_t s = 0; s<num_viewed_interfaces; s++)
|
|
tot += viewed_interfaces[s]->getNumPackets();
|
|
|
|
return(tot);
|
|
};
|
|
|
|
/* **************************************************** */
|
|
|
|
u_int32_t ViewInterface::getNumPacketDrops() {
|
|
u_int32_t tot = 0;
|
|
|
|
for(u_int8_t s = 0; s<num_viewed_interfaces; s++)
|
|
tot += viewed_interfaces[s]->getNumDroppedPackets();
|
|
|
|
return(tot);
|
|
};
|
|
|
|
/* **************************************************** */
|
|
|
|
u_int ViewInterface::getNumFlows() {
|
|
u_int tot = 0;
|
|
|
|
for(u_int8_t s = 0; s < num_viewed_interfaces; s++)
|
|
tot += viewed_interfaces[s]->getNumFlows();
|
|
|
|
return(tot);
|
|
};
|
|
|
|
/* **************************************************** */
|
|
|
|
u_int64_t ViewInterface::getNumBytes() {
|
|
u_int64_t tot = 0;
|
|
|
|
for(u_int8_t s = 0; s<num_viewed_interfaces; s++)
|
|
tot += viewed_interfaces[s]->getNumBytes();
|
|
|
|
return(tot);
|
|
}
|
|
|
|
/* **************************************************** */
|
|
|
|
u_int64_t ViewInterface::getCheckPointNumPackets() {
|
|
u_int64_t tot = 0;
|
|
|
|
for(u_int8_t s = 0; s < num_viewed_interfaces; s++)
|
|
tot += viewed_interfaces[s]->getCheckPointNumPackets();
|
|
|
|
return(tot);
|
|
};
|
|
|
|
/* **************************************************** */
|
|
|
|
u_int64_t ViewInterface::getCheckPointNumBytes() {
|
|
u_int64_t tot = 0;
|
|
|
|
for(u_int8_t s = 0; s < num_viewed_interfaces; s++)
|
|
tot += viewed_interfaces[s]->getCheckPointNumBytes();
|
|
|
|
return(tot);
|
|
}
|
|
|
|
/* **************************************************** */
|
|
|
|
u_int32_t ViewInterface::getCheckPointNumPacketDrops() {
|
|
u_int32_t tot = 0;
|
|
|
|
for(u_int8_t s = 0; s < num_viewed_interfaces; s++)
|
|
tot += viewed_interfaces[s]->getCheckPointNumPacketDrops();
|
|
|
|
return(tot);
|
|
};
|
|
|
|
/* **************************************************** */
|
|
|
|
u_int32_t ViewInterface::getFlowsHashSize() {
|
|
u_int32_t tot = 0;
|
|
|
|
for(u_int8_t s = 0; s < num_viewed_interfaces; s++)
|
|
tot += viewed_interfaces[s]->getFlowsHashSize();
|
|
|
|
return(tot);
|
|
}
|
|
|
|
/* **************************************************** */
|
|
|
|
Flow* ViewInterface::findFlowByKey(u_int32_t key, AddressTree *allowed_hosts) {
|
|
Flow *f = NULL;
|
|
|
|
for(u_int8_t s = 0; s < num_viewed_interfaces; s++) {
|
|
if((f = (Flow*)viewed_interfaces[s]->findFlowByKey(key, allowed_hosts)))
|
|
break;
|
|
}
|
|
|
|
return(f);
|
|
}
|
|
|
|
/* **************************************************** */
|
|
|
|
Flow* ViewInterface::findFlowByTuple(u_int16_t vlan_id,
|
|
IpAddress *src_ip, IpAddress *dst_ip,
|
|
u_int16_t src_port, u_int16_t dst_port,
|
|
u_int8_t l4_proto,
|
|
AddressTree *allowed_hosts) const {
|
|
Flow *f = NULL;
|
|
|
|
for(u_int8_t s = 0; s < num_viewed_interfaces; s++) {
|
|
if((f = (Flow*)viewed_interfaces[s]->findFlowByTuple(vlan_id, src_ip, dst_ip, src_port, dst_port, l4_proto, allowed_hosts)))
|
|
break;
|
|
}
|
|
|
|
return(f);
|
|
}
|
|
|
|
/* **************************************************** */
|
|
|
|
static bool viewed_flows_walker(GenericHashEntry *flow, void *user_data, bool *matched) {
|
|
ViewInterface *iface = (ViewInterface*)user_data;
|
|
Flow *f = (Flow*)flow;
|
|
time_t now = time(NULL);
|
|
bool acked_to_purge = f->is_acknowledged_to_purge();
|
|
|
|
if(acked_to_purge) {
|
|
/* We can set the 'ready to be purged' state on behalf of the underlying viewed interface.
|
|
It is safe as this view is in sync with the viewed interfaces by bean of acked_to_purge */
|
|
f->set_state(hash_entry_state_ready_to_be_purged);
|
|
}
|
|
|
|
FlowTrafficStats partials;
|
|
bool first_partial; /* Whether this is the first time the view is visiting this flow */
|
|
const IpAddress *cli_ip = f->get_cli_ip_addr(), *srv_ip = f->get_srv_ip_addr();
|
|
|
|
if(f->get_partial_traffic_stats(&partials, &first_partial)) {
|
|
if(!cli_ip || !srv_ip)
|
|
ntop->getTrace()->traceEvent(TRACE_ERROR, "Unable to get flow hosts. Out of memory? Expect issues.");
|
|
|
|
if(cli_ip && srv_ip) {
|
|
Host *cli_host = NULL, *srv_host = NULL;
|
|
|
|
iface->findFlowHosts(f->get_vlan_id(),
|
|
NULL /* no src mac yet */, (IpAddress*)cli_ip, &cli_host,
|
|
NULL /* no dst mac yet */, (IpAddress*)srv_ip, &srv_host);
|
|
|
|
if(cli_host) {
|
|
cli_host->incStats(now, f->get_protocol(), f->getStatsProtocol(), f->getCustomApp(),
|
|
partials.cli2srv_packets, partials.cli2srv_bytes, partials.cli2srv_goodput_bytes,
|
|
partials.srv2cli_packets, partials.srv2cli_bytes, partials.srv2cli_goodput_bytes,
|
|
cli_ip->isNonEmptyUnicastAddress());
|
|
|
|
if(first_partial)
|
|
cli_host->incNumFlows(f->get_last_seen(), true, srv_host), cli_host->incUses();
|
|
|
|
if(acked_to_purge)
|
|
cli_host->decNumFlows(f->get_last_seen(), true, srv_host), cli_host->decUses();
|
|
}
|
|
|
|
if(srv_host) {
|
|
srv_host->incStats(now, f->get_protocol(), f->getStatsProtocol(), f->getCustomApp(),
|
|
partials.srv2cli_packets, partials.srv2cli_bytes, partials.srv2cli_goodput_bytes,
|
|
partials.cli2srv_packets, partials.cli2srv_bytes, partials.cli2srv_goodput_bytes,
|
|
srv_ip->isNonEmptyUnicastAddress());
|
|
|
|
if(first_partial)
|
|
srv_host->incUses(), srv_host->incNumFlows(f->get_last_seen(), false, cli_host);
|
|
|
|
if(acked_to_purge)
|
|
srv_host->decUses(), srv_host->decNumFlows(f->get_last_seen(), false, cli_host);
|
|
}
|
|
|
|
iface->incStats(true /* ingressPacket */,
|
|
now, cli_ip && cli_ip->isIPv4() ? ETHERTYPE_IP : ETHERTYPE_IPV6,
|
|
f->getStatsProtocol(), f->get_protocol(),
|
|
partials.srv2cli_bytes + partials.cli2srv_bytes,
|
|
partials.srv2cli_packets + partials.cli2srv_packets,
|
|
24 /* 8 Preamble + 4 CRC + 12 IFG */ + 14 /* Ethernet header */);
|
|
}
|
|
}
|
|
|
|
return false; /* Move on to the next flow, keep walking */
|
|
}
|
|
|
|
/* **************************************************** */
|
|
|
|
void ViewInterface::flowPollLoop() {
|
|
u_int32_t begin_slot;
|
|
|
|
while(isRunning()) {
|
|
while(idle()) sleep(1);
|
|
|
|
begin_slot = 0; /* Always visit all flows starting from the first slot */
|
|
walker(&begin_slot, true /* walk all the flows */, walker_flows, viewed_flows_walker, this, true /* visit also idle flows (required to acknowledge the purge) */);
|
|
|
|
purgeIdle(time(NULL));
|
|
usleep(500000);
|
|
}
|
|
}
|
|
|
|
/* **************************************************** */
|
|
|
|
static void* flowPollLoop(void* ptr) {
|
|
ViewInterface *iface = (ViewInterface*)ptr;
|
|
|
|
/* Wait until the initialization completes */
|
|
while(!iface->isRunning()) sleep(1);
|
|
|
|
iface->flowPollLoop();
|
|
|
|
return NULL;
|
|
}
|
|
|
|
/* **************************************************** */
|
|
|
|
void ViewInterface::startPacketPolling() {
|
|
pthread_create(&pollLoop, NULL, ::flowPollLoop, this);
|
|
pollLoopCreated = true;
|
|
NetworkInterface::startPacketPolling();
|
|
}
|
|
|
|
/* **************************************************** */
|
|
|
|
void ViewInterface::shutdown() {
|
|
void *res;
|
|
|
|
if(isRunning()) {
|
|
running = false;
|
|
NetworkInterface::shutdown();
|
|
pthread_join(pollLoop, &res);
|
|
}
|
|
}
|