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 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406
|
/*
* jnettop, network online traffic visualiser
* Copyright (C) 2002-2005 Jakub Skopal
*
* 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 2 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
*
* $Header: /cvsroot/jnettop/jnettop/jprocessor.c,v 1.4 2005/07/01 10:02:08 merunka Exp $
*
*/
#include "jbase.h"
#include "jcapture.h"
#include "jprocessor.h"
#include "jresolv.h"
#include "jfilter.h"
#include "jresolver.h"
GThread *processorThread;
GThread *heartbeatThread;
GHashTable *streamTable;
GMutex *streamTableMutex;
GPtrArray *streamArray;
GMutex *streamArrayMutex;
jprocessor_stats jprocessor_Stats;
guint jprocessor_LocalAggregation;
guint jprocessor_RemoteAggregation;
gboolean jprocessor_ContentFiltering;
gboolean jprocessor_Sorting;
GCompareFunc jprocessor_SortingFunction;
gint jprocessor_MaxDeadTime;
ProcessStreamsFunc jprocessor_ProcessStreamsFunc;
static void freeStream(gpointer ptr) {
jbase_stream *s = (jbase_stream *)ptr;
if (s->filterDataFreeFunc)
s->filterDataFreeFunc(s);
g_free(s);
}
static void markAllAsDead() {
int i;
g_mutex_lock(streamArrayMutex);
for (i=0; i<streamArray->len; i++) {
jbase_stream *s = (jbase_stream *)g_ptr_array_index(streamArray, i);
s->dead=6;
}
g_mutex_unlock(streamArrayMutex);
}
void jprocessor_SetLocalAggregation(guint localAggregation) {
if (localAggregation == jprocessor_LocalAggregation)
return;
markAllAsDead();
jprocessor_LocalAggregation = localAggregation;
}
void jprocessor_SetRemoteAggregation(guint remoteAggregation) {
if (remoteAggregation == jprocessor_RemoteAggregation)
return;
markAllAsDead();
jprocessor_RemoteAggregation = remoteAggregation;
}
void jprocessor_SetContentFiltering(gboolean value) {
jprocessor_ContentFiltering = value;
}
void jprocessor_SetProcessStreamsFunc(ProcessStreamsFunc function) {
g_mutex_lock(streamArrayMutex);
jprocessor_ProcessStreamsFunc = function;
g_mutex_unlock(streamArrayMutex);
}
static guint hashStream(gconstpointer key) {
const jbase_stream *stream = (const jbase_stream *)key;
guint hash = 0;
hash = stream->src.addr6.ntop_s6_addr32[0];
hash ^= stream->src.addr6.ntop_s6_addr32[1];
hash ^= stream->src.addr6.ntop_s6_addr32[2];
hash ^= stream->src.addr6.ntop_s6_addr32[3];
hash ^= stream->dst.addr6.ntop_s6_addr32[0];
hash ^= stream->dst.addr6.ntop_s6_addr32[1];
hash ^= stream->dst.addr6.ntop_s6_addr32[2];
hash ^= stream->dst.addr6.ntop_s6_addr32[3];
hash ^= (((guint)stream->srcport) << 16) + (guint)stream->dstport;
return hash;
}
static gboolean compareStream(gconstpointer a, gconstpointer b) {
const jbase_stream *astr = (const jbase_stream *)a;
const jbase_stream *bstr = (const jbase_stream *)b;
if (astr->proto == bstr->proto &&
astr->srcport == bstr->srcport &&
astr->dstport == bstr->dstport &&
IN6_ARE_ADDR_EQUAL(&astr->src.addr6, &bstr->src.addr6) &&
IN6_ARE_ADDR_EQUAL(&astr->dst.addr6, &bstr->dst.addr6)
)
return TRUE;
return FALSE;
}
gboolean jprocessor_Setup() {
streamTable = g_hash_table_new((GHashFunc)hashStream, (GEqualFunc)compareStream);
streamTableMutex = g_mutex_new();
streamArray = g_ptr_array_new();
streamArrayMutex = g_mutex_new();
jprocessor_ResetStats();
jprocessor_Sorting = TRUE;
jprocessor_SortingFunction = (GCompareFunc) jprocessor_compare_ByBytesStat;
jprocessor_MaxDeadTime = 7;
return TRUE;
}
static gboolean removeStreamTableEntry(gpointer key, gpointer value, gpointer user_data) {
freeStream(key);
// value is the same pointer as key
return TRUE;
}
void jprocessor_ResetStats() {
int i;
memset(&jprocessor_Stats, 0, sizeof(jprocessor_Stats));
g_get_current_time(&jprocessor_Stats.startTime);
for (i=streamArray->len-1; i>=0; i--) {
g_ptr_array_remove_index_fast(streamArray, i);
}
g_hash_table_foreach_remove(streamTable, (GHRFunc)removeStreamTableEntry, NULL);
}
void jprocessor_UpdateBPS() {
GTimeVal currentDateTime;
uint i;
guint64 srcbps = 0;
guint64 dstbps = 0;
guint64 srcpps = 0;
guint64 dstpps = 0;
g_get_current_time(¤tDateTime);
currentDateTime.tv_sec ++;
for (i=0; i<streamArray->len; i++) {
jbase_stream *s = (jbase_stream *)g_ptr_array_index(streamArray, i);
int byteswindow = ( currentDateTime.tv_sec - s->firstSeen.tv_sec );
if (byteswindow > HISTORY_LENGTH)
byteswindow = HISTORY_LENGTH;
srcbps += (s->srcbps = s->hsrcbytessum / byteswindow);
s->hsrcbytessum -= s->hsrcbytes[HISTORY_LENGTH-1];
memmove(s->hsrcbytes+1, s->hsrcbytes, sizeof(guint)*(HISTORY_LENGTH-1));
s->hsrcbytes[0] = 0;
dstbps += (s->dstbps = s->hdstbytessum / byteswindow);
s->hdstbytessum -= s->hdstbytes[HISTORY_LENGTH-1];
memmove(s->hdstbytes+1, s->hdstbytes, sizeof(guint)*(HISTORY_LENGTH-1));
s->hdstbytes[0] = 0;
s->totalbps = s->srcbps + s->dstbps;
srcpps += (s->srcpps = s->hsrcpacketssum / byteswindow);
s->hsrcpacketssum -= s->hsrcpackets[HISTORY_LENGTH-1];
memmove(s->hsrcpackets+1, s->hsrcpackets, sizeof(guint)*(HISTORY_LENGTH-1));
s->hsrcpackets[0] = 0;
dstpps += (s->dstpps = s->hdstpacketssum / byteswindow);
s->hdstpacketssum -= s->hdstpackets[HISTORY_LENGTH-1];
memmove(s->hdstpackets+1, s->hdstpackets, sizeof(guint)*(HISTORY_LENGTH-1));
s->hdstpackets[0] = 0;
s->totalpps = s->srcpps + s->dstpps;
if (!s->dead && currentDateTime.tv_sec - s->lastSeen.tv_sec > 10) {
s->dead ++;
}
}
jprocessor_Stats.totalSrcBPS = srcbps;
jprocessor_Stats.totalDstBPS = dstbps;
jprocessor_Stats.totalBPS = srcbps + dstbps;
jprocessor_Stats.totalSrcPPS = srcpps;
jprocessor_Stats.totalDstPPS = dstpps;
jprocessor_Stats.totalPPS = srcpps + dstpps;
}
static void setToHostAggregation(int af, jbase_mutableaddress *addr) {
switch (af) {
case AF_INET:
addr->addr4.s_addr = htonl(0x01000000);
break;
case AF_INET6:
addr->addr6.ntop_s6_addr32[0] = 0x0;
addr->addr6.ntop_s6_addr32[1] = 0x0;
addr->addr6.ntop_s6_addr32[2] = 0x0;
addr->addr6.ntop_s6_addr32[3] = htonl(0x01000000);
break;
}
}
static void aggregateStream(jbase_stream *stream) {
switch (jprocessor_LocalAggregation) {
case AGG_HOST:
setToHostAggregation(JBASE_AF(stream->proto), &stream->src);
break;
case AGG_PORT:
stream->srcport = -1;
break;
case AGG_BOTH:
setToHostAggregation(JBASE_AF(stream->proto), &stream->src);
stream->srcport = -1;
break;
}
switch (jprocessor_RemoteAggregation) {
case AGG_HOST:
setToHostAggregation(JBASE_AF(stream->proto), &stream->dst);
break;
case AGG_PORT:
stream->dstport = -1;
break;
case AGG_BOTH:
setToHostAggregation(JBASE_AF(stream->proto), &stream->dst);
stream->dstport = -1;
break;
}
}
static void sortPacket(const jbase_packet *packet) {
static volatile guint64 packetUidCounter = 0;
jbase_stream packetStream;
jbase_stream *stat;
jbase_payload_info payloadInfo[JBASE_PROTO_MAX];
jprocessor_Stats.totalBytes += packet->header.len;
jprocessor_Stats.totalPackets ++;
memset(&packetStream, 0, sizeof(jbase_stream));
jresolv_ResolveStream(packet, &packetStream, payloadInfo);
aggregateStream(&packetStream);
g_mutex_lock(streamTableMutex);
stat = (jbase_stream *)g_hash_table_lookup(streamTable, &packetStream);
if (stat == NULL) {
stat = g_new0(jbase_stream, 1);
memcpy(stat, &packetStream, sizeof(jbase_stream));
g_get_current_time(&stat->firstSeen);
stat->uid = packetUidCounter++;
g_hash_table_insert(streamTable, stat, stat);
g_mutex_unlock(streamTableMutex);
if (jprocessor_ContentFiltering)
jfilter_AssignDataFilter(stat);
stat->srcresolv = jresolver_Lookup(JBASE_AF(packetStream.proto), &packetStream.src);
stat->dstresolv = jresolver_Lookup(JBASE_AF(packetStream.proto), &packetStream.dst);
g_mutex_lock(streamArrayMutex);
g_ptr_array_add(streamArray, stat);
g_mutex_unlock(streamArrayMutex);
} else {
g_mutex_unlock(streamTableMutex);
}
if (packetStream.direction) {
stat->dstbytes += packet->header.len;
stat->dstpackets ++;
*stat->hdstbytes += packet->header.len;
stat->hdstpackets[0]++;
stat->hdstbytessum += packet->header.len;
stat->hdstpacketssum++;
jprocessor_Stats.totalDstBytes += packet->header.len;
jprocessor_Stats.totalDstPackets++;
} else {
stat->srcbytes += packet->header.len;
stat->srcpackets ++;
*stat->hsrcbytes += packet->header.len;
stat->hsrcpackets[0]++;
stat->hsrcbytessum += packet->header.len;
stat->hsrcpacketssum++;
jprocessor_Stats.totalSrcBytes += packet->header.len;
jprocessor_Stats.totalSrcPackets++;
}
stat->totalbytes += packet->header.len;
stat->totalpackets ++;
g_get_current_time(&stat->lastSeen);
if (jprocessor_ContentFiltering && stat->filterDataFunc) {
stat->filterDataFunc(stat, packet, packetStream.direction, payloadInfo);
}
}
static gpointer processorThreadFunc(gpointer data) {
threadCount ++;
g_mutex_lock(jcapture_PacketQueueMutex);
while (jcapture_IsRunning) {
jbase_packet *packet;
packet = (jbase_packet *)g_queue_pop_tail(jcapture_PacketQueue);
if (packet == NULL) {
g_cond_wait(jcapture_PacketQueueCond, jcapture_PacketQueueMutex);
continue;
}
g_mutex_unlock(jcapture_PacketQueueMutex);
sortPacket(packet);
jcapture_packet_Free(packet);
g_mutex_lock(jcapture_PacketQueueMutex);
}
g_mutex_unlock(jcapture_PacketQueueMutex);
threadCount --;
return NULL;
}
static gpointer heartbeatThreadFunc(gpointer data) {
threadCount ++;
while (jcapture_IsRunning) {
guint i;
GTimeVal t;
g_mutex_lock(streamArrayMutex);
if (streamArray->len > 0) {
jprocessor_UpdateBPS();
if (jprocessor_Sorting)
g_ptr_array_sort(streamArray, jprocessor_SortingFunction);
}
g_mutex_lock(streamTableMutex);
for (i=0; i<streamArray->len; i++) {
jbase_stream *s = (jbase_stream *)g_ptr_array_index(streamArray, i);
if (s->dead && ++s->dead > jprocessor_MaxDeadTime && !s->displayed) {
g_ptr_array_remove_index_fast ( streamArray, i );
g_hash_table_remove ( streamTable, s );
freeStream(s);
i--;
}
}
g_mutex_unlock(streamTableMutex);
if (jprocessor_ProcessStreamsFunc != NULL) {
jprocessor_ProcessStreamsFunc(streamArray);
}
g_mutex_unlock(streamArrayMutex);
g_get_current_time(&t);
g_usleep(1000000 - t.tv_usec);
}
threadCount --;
return NULL;
}
gboolean jprocessor_Start() {
processorThread = g_thread_create((GThreadFunc)processorThreadFunc, NULL, FALSE, NULL);
heartbeatThread = g_thread_create((GThreadFunc)heartbeatThreadFunc, NULL, FALSE, NULL);
return TRUE;
}
#define COMPAREINT(x,y) ( ((x)<(y)) ? -1 : (((x)==(y)) ? 0 : 1) )
#define COMPARESTREAMBY(x,y,prop) \
const jbase_stream *astr = *(const jbase_stream **)x; \
const jbase_stream *bstr = *(const jbase_stream **)y; \
return COMPAREINT(bstr->prop, astr->prop); \
gint jprocessor_compare_ByPacketsStat(gconstpointer a, gconstpointer b) {
COMPARESTREAMBY(a, b, totalpps);
}
gint jprocessor_compare_ByBytesStat(gconstpointer a, gconstpointer b) {
COMPARESTREAMBY(a, b, totalbps);
}
gint jprocessor_compare_ByTxBytesStat(gconstpointer a, gconstpointer b) {
COMPARESTREAMBY(a, b, srcbps);
}
gint jprocessor_compare_ByRxBytesStat(gconstpointer a, gconstpointer b) {
COMPARESTREAMBY(a, b, dstbps);
}
gint jprocessor_compare_ByTxPacketsStat(gconstpointer a, gconstpointer b) {
COMPARESTREAMBY(a, b, srcpps);
}
gint jprocessor_compare_ByRxPacketsStat(gconstpointer a, gconstpointer b) {
COMPARESTREAMBY(a, b, dstpps);
}
void jprocessor_SetSorting(gboolean onoff, GCompareFunc compareFunction) {
if (onoff != -1)
jprocessor_Sorting = onoff;
if (compareFunction != NULL)
jprocessor_SortingFunction = compareFunction;
}
|