IPv6 support! yay!
This commit is contained in:
@@ -14,7 +14,6 @@ HashNode::~HashNode ()
|
|||||||
|
|
||||||
HashTable::HashTable(int n_size)
|
HashTable::HashTable(int n_size)
|
||||||
{
|
{
|
||||||
// size = n_size;
|
|
||||||
// TODO allow for variable size
|
// TODO allow for variable size
|
||||||
size = n_size;
|
size = n_size;
|
||||||
table = (HashNode **) malloc (size * sizeof(HashNode *));
|
table = (HashNode **) malloc (size * sizeof(HashNode *));
|
||||||
|
|||||||
34
nethogs.cpp
34
nethogs.cpp
@@ -34,13 +34,40 @@ timeval curtime;
|
|||||||
std::string * caption;
|
std::string * caption;
|
||||||
|
|
||||||
bool local_addr::contains (const in_addr_t & n_addr) {
|
bool local_addr::contains (const in_addr_t & n_addr) {
|
||||||
if (n_addr == addr)
|
if ((sa_family == AF_INET)
|
||||||
|
&& (n_addr == addr))
|
||||||
return true;
|
return true;
|
||||||
if (next == NULL)
|
if (next == NULL)
|
||||||
return false;
|
return false;
|
||||||
return next->contains(n_addr);
|
return next->contains(n_addr);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
bool local_addr::contains(const struct in6_addr & n_addr) {
|
||||||
|
if (sa_family == AF_INET6)
|
||||||
|
{
|
||||||
|
/*
|
||||||
|
if (DEBUG) {
|
||||||
|
char addy [50];
|
||||||
|
std::cerr << "Comparing: ";
|
||||||
|
inet_ntop (AF_INET6, &n_addr, addy, 49);
|
||||||
|
std::cerr << addy << " and ";
|
||||||
|
inet_ntop (AF_INET6, &addr6, addy, 49);
|
||||||
|
std::cerr << addy << std::endl;
|
||||||
|
}
|
||||||
|
*/
|
||||||
|
//if (addr6.s6_addr == n_addr.s6_addr)
|
||||||
|
if (memcmp (&addr6, &n_addr, sizeof(struct in6_addr)) == 0)
|
||||||
|
{
|
||||||
|
if (DEBUG)
|
||||||
|
std::cerr << "Match!" << std::endl;
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (next == NULL)
|
||||||
|
return false;
|
||||||
|
return next->contains(n_addr);
|
||||||
|
}
|
||||||
|
|
||||||
void process (u_char * args, const struct pcap_pkthdr * header, const u_char * m_packet)
|
void process (u_char * args, const struct pcap_pkthdr * header, const u_char * m_packet)
|
||||||
{
|
{
|
||||||
curtime = header->ts;
|
curtime = header->ts;
|
||||||
@@ -94,11 +121,12 @@ static void versiondisplay(void)
|
|||||||
|
|
||||||
static void help(void)
|
static void help(void)
|
||||||
{
|
{
|
||||||
std::cerr << "usage: nethogs [-V] [-d] [device]\n";
|
std::cerr << "usage: nethogs [-V] [-d] [device [device [device ...]]]\n";
|
||||||
std::cerr << " -V : prints version.\n";
|
std::cerr << " -V : prints version.\n";
|
||||||
std::cerr << " -d : delay for update refresh rate in seconds. default is 1.\n";
|
std::cerr << " -d : delay for update refresh rate in seconds. default is 1.\n";
|
||||||
std::cerr << " -t : tracemode.\n";
|
std::cerr << " -t : tracemode.\n";
|
||||||
std::cerr << " device : device to monitor. default is eth0\n";
|
std::cerr << " -p : sniff in promiscious mode (not recommended).\n";
|
||||||
|
std::cerr << " device : device(s) to monitor. default is eth0\n";
|
||||||
}
|
}
|
||||||
|
|
||||||
class device {
|
class device {
|
||||||
|
|||||||
57
nethogs.h
57
nethogs.h
@@ -2,6 +2,11 @@
|
|||||||
#define __NETHOGS_H
|
#define __NETHOGS_H
|
||||||
|
|
||||||
#include <netinet/in.h>
|
#include <netinet/in.h>
|
||||||
|
#include <sys/types.h>
|
||||||
|
#include <sys/socket.h>
|
||||||
|
#include <arpa/inet.h>
|
||||||
|
#include <assert.h>
|
||||||
|
#include <iostream>
|
||||||
|
|
||||||
#define _BSD_SOURCE 1
|
#define _BSD_SOURCE 1
|
||||||
|
|
||||||
@@ -19,8 +24,12 @@
|
|||||||
#define NEEDROOT 1
|
#define NEEDROOT 1
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#define DEBUG 1
|
#define DEBUG 0
|
||||||
|
|
||||||
|
// 2 times: 32 characters, 7 ':''s, a ':12345'.
|
||||||
|
// 1 '-'
|
||||||
|
// -> 2*45+1=91. we make it 92, for the null.
|
||||||
|
#define HASHKEYSIZE 92
|
||||||
|
|
||||||
#define PROGNAME_WIDTH 27
|
#define PROGNAME_WIDTH 27
|
||||||
|
|
||||||
@@ -28,14 +37,60 @@ void forceExit(const char *msg);
|
|||||||
|
|
||||||
class local_addr {
|
class local_addr {
|
||||||
public:
|
public:
|
||||||
|
/* ipv4 constructor takes an in_addr_t */
|
||||||
local_addr (in_addr_t m_addr, local_addr * m_next = NULL)
|
local_addr (in_addr_t m_addr, local_addr * m_next = NULL)
|
||||||
{
|
{
|
||||||
addr = m_addr;
|
addr = m_addr;
|
||||||
next = m_next;
|
next = m_next;
|
||||||
|
sa_family = AF_INET;
|
||||||
}
|
}
|
||||||
|
/* this constructor takes an char address[33] */
|
||||||
|
local_addr (char m_address [33], local_addr * m_next = NULL)
|
||||||
|
{
|
||||||
|
next = m_next;
|
||||||
|
char address [40];
|
||||||
|
address[0] = m_address[0]; address[1] = m_address[1];
|
||||||
|
address[2] = m_address[2]; address[3] = m_address[3];
|
||||||
|
address[4] = ':';
|
||||||
|
address[5] = m_address[4]; address[6] = m_address[5];
|
||||||
|
address[7] = m_address[6]; address[8] = m_address[7];
|
||||||
|
address[9] = ':';
|
||||||
|
address[10] = m_address[8]; address[11] = m_address[9];
|
||||||
|
address[12] = m_address[10]; address[13] = m_address[11];
|
||||||
|
address[14] = ':';
|
||||||
|
address[15] = m_address[12]; address[16] = m_address[13];
|
||||||
|
address[17] = m_address[14]; address[18] = m_address[15];
|
||||||
|
address[19] = ':';
|
||||||
|
address[20] = m_address[16]; address[21] = m_address[17];
|
||||||
|
address[22] = m_address[18]; address[23] = m_address[19];
|
||||||
|
address[24] = ':';
|
||||||
|
address[25] = m_address[20]; address[26] = m_address[21];
|
||||||
|
address[27] = m_address[22]; address[28] = m_address[23];
|
||||||
|
address[29] = ':';
|
||||||
|
address[30] = m_address[24]; address[31] = m_address[25];
|
||||||
|
address[32] = m_address[26]; address[33] = m_address[27];
|
||||||
|
address[34] = ':';
|
||||||
|
address[35] = m_address[28]; address[36] = m_address[29];
|
||||||
|
address[37] = m_address[30]; address[38] = m_address[31];
|
||||||
|
address[39] = 0;
|
||||||
|
if (DEBUG)
|
||||||
|
std::cout << "Converting address " << address << std::endl;
|
||||||
|
|
||||||
|
int result = inet_pton (AF_INET6, address, &addr6);
|
||||||
|
|
||||||
|
if (DEBUG)
|
||||||
|
assert (result > 0);
|
||||||
|
sa_family = AF_INET6;
|
||||||
|
}
|
||||||
|
|
||||||
bool contains (const in_addr_t & n_addr);
|
bool contains (const in_addr_t & n_addr);
|
||||||
|
bool contains (const struct in6_addr & n_addr);
|
||||||
|
private:
|
||||||
|
|
||||||
in_addr_t addr;
|
in_addr_t addr;
|
||||||
|
struct in6_addr addr6;
|
||||||
local_addr * next;
|
local_addr * next;
|
||||||
|
short int sa_family;
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|||||||
152
packet.cpp
152
packet.cpp
@@ -14,6 +14,15 @@
|
|||||||
|
|
||||||
local_addr * local_addrs = NULL;
|
local_addr * local_addrs = NULL;
|
||||||
|
|
||||||
|
/* moves the pointer right until a non-space is seen */
|
||||||
|
char * stripspaces (char * input)
|
||||||
|
{
|
||||||
|
char * retval = input;
|
||||||
|
while (*retval == ' ')
|
||||||
|
retval++;
|
||||||
|
return retval;
|
||||||
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* getLocal
|
* getLocal
|
||||||
* device: This should be device explicit (e.g. eth0:1)
|
* device: This should be device explicit (e.g. eth0:1)
|
||||||
@@ -23,6 +32,7 @@ local_addr * local_addrs = NULL;
|
|||||||
*/
|
*/
|
||||||
void getLocal (const char *device)
|
void getLocal (const char *device)
|
||||||
{
|
{
|
||||||
|
/* get local IPv4 addresses */
|
||||||
int sock;
|
int sock;
|
||||||
struct ifreq iFreq;
|
struct ifreq iFreq;
|
||||||
struct sockaddr_in *saddr;
|
struct sockaddr_in *saddr;
|
||||||
@@ -36,43 +46,42 @@ void getLocal (const char *device)
|
|||||||
}
|
}
|
||||||
saddr=(struct sockaddr_in*)&iFreq.ifr_addr;
|
saddr=(struct sockaddr_in*)&iFreq.ifr_addr;
|
||||||
local_addrs = new local_addr (saddr->sin_addr.s_addr, local_addrs);
|
local_addrs = new local_addr (saddr->sin_addr.s_addr, local_addrs);
|
||||||
|
|
||||||
|
/* also get local IPv6 addresses */
|
||||||
|
FILE * ifinfo = fopen ("/proc/net/if_inet6", "r");
|
||||||
|
char buffer [500];
|
||||||
|
if (ifinfo)
|
||||||
|
{
|
||||||
|
do
|
||||||
|
{
|
||||||
|
if (fgets(buffer, sizeof(buffer), ifinfo))
|
||||||
|
{
|
||||||
|
char address [33];
|
||||||
|
char ifname [9];
|
||||||
|
int n_results = sscanf (buffer, "%32[0-9a-f] %*d %*d %*d %*d %8[0-9a-zA-Z]", address, ifname);
|
||||||
|
if (DEBUG)
|
||||||
|
assert (n_results = 2);
|
||||||
|
|
||||||
|
if (strcmp (stripspaces(ifname), device) == 0)
|
||||||
|
{
|
||||||
|
local_addrs = new local_addr (address, local_addrs);
|
||||||
|
}
|
||||||
|
#if DEBUG
|
||||||
|
else
|
||||||
|
{
|
||||||
|
std::cerr << "Address skipped for interface " << ifname << std::endl;
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
}
|
||||||
|
} while (!feof(ifinfo));
|
||||||
|
fclose(ifinfo);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
typedef u_int32_t tcp_seq;
|
typedef u_int32_t tcp_seq;
|
||||||
|
|
||||||
/* ethernet header (now unused) */
|
|
||||||
/*struct ethernet_hdr {
|
|
||||||
u_char ether_dhost[ETHER_ADDR_LEN];
|
|
||||||
u_char ether_shost[ETHER_ADDR_LEN];
|
|
||||||
u_short ether_type;
|
|
||||||
};*/
|
|
||||||
|
|
||||||
/* IP header */
|
|
||||||
struct ip_hdr
|
|
||||||
{
|
|
||||||
#if BYTE_ORDER == LITTLE_ENDIAN
|
|
||||||
u_int ip_hl:4, /* header length */
|
|
||||||
ip_v:4; /* version */
|
|
||||||
#if BYTE_ORDER == BIG_ENDIAN
|
|
||||||
u_int ip_v:4, /* version */
|
|
||||||
ip_hl:4; /* header length */
|
|
||||||
#endif
|
|
||||||
#endif /* not _IP_VHL */
|
|
||||||
u_char ip_tos; /* type of service */
|
|
||||||
u_short ip_len; /* total length */
|
|
||||||
u_short ip_id; /* identification */
|
|
||||||
u_short ip_off; /* fragment offset field */
|
|
||||||
#define IP_RF 0x8000 /* reserved fragment flag */
|
|
||||||
#define IP_DF 0x4000 /* dont fragment flag */
|
|
||||||
#define IP_MF 0x2000 /* more fragments flag */
|
|
||||||
#define IP_OFFMASK 0x1fff /* mask for fragmenting bits */
|
|
||||||
u_char ip_ttl; /* time to live */
|
|
||||||
u_char ip_p; /* protocol */
|
|
||||||
u_short ip_sum; /* checksum */
|
|
||||||
struct in_addr ip_src,ip_dst; /* source and dest address */
|
|
||||||
};
|
|
||||||
|
|
||||||
/* TCP header */
|
/* TCP header */
|
||||||
|
// TODO take from elsewhere.
|
||||||
struct tcp_hdr {
|
struct tcp_hdr {
|
||||||
u_short th_sport; /* source port */
|
u_short th_sport; /* source port */
|
||||||
u_short th_dport; /* destination port */
|
u_short th_dport; /* destination port */
|
||||||
@@ -104,13 +113,12 @@ struct tcp_hdr {
|
|||||||
/* Packet 'Constructor' - but returns NULL on failure */
|
/* Packet 'Constructor' - but returns NULL on failure */
|
||||||
Packet * getPacket (const struct pcap_pkthdr * header, const u_char * packet)
|
Packet * getPacket (const struct pcap_pkthdr * header, const u_char * packet)
|
||||||
{
|
{
|
||||||
//const struct ethernet_hdr * ethernet = (struct ethernet_hdr *)packet;
|
// const struct ethernet_hdr * ethernet = (struct ethernet_hdr *)packet;
|
||||||
const struct ether_header * ethernet = (struct ether_header *)packet;
|
const struct ether_header * ethernet = (struct ether_header *)packet;
|
||||||
/* this is the opposite endianness from http://www.iana.org/assignments/ethernet-numbers
|
/* this is the opposite endianness from http://www.iana.org/assignments/ethernet-numbers
|
||||||
* TODO probably have to look at network/host byte order and endianness!! */
|
* TODO probably have to look at network/host byte order and endianness!! */
|
||||||
if (ethernet->ether_type == 0x0008)
|
if (ethernet->ether_type == 0x0008)
|
||||||
{
|
{
|
||||||
//const struct ip_hdr * ip = (struct ip_hdr *)(packet + sizeof(ether_header));
|
|
||||||
const struct ip * ip = (struct ip *)(packet + sizeof(ether_header));
|
const struct ip * ip = (struct ip *)(packet + sizeof(ether_header));
|
||||||
if (ip->ip_p != 6)
|
if (ip->ip_p != 6)
|
||||||
{
|
{
|
||||||
@@ -119,7 +127,7 @@ Packet * getPacket (const struct pcap_pkthdr * header, const u_char * packet)
|
|||||||
#endif
|
#endif
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
const struct tcp_hdr * tcp = (struct tcp_hdr *)(packet + sizeof(ether_header) + sizeof(ip_hdr));
|
const struct tcp_hdr * tcp = (struct tcp_hdr *)(packet + sizeof(ether_header) + sizeof(struct ip));
|
||||||
return new Packet (ip->ip_src, ntohs(tcp->th_sport), ip->ip_dst, ntohs(tcp->th_dport), header->len, header->ts);
|
return new Packet (ip->ip_src, ntohs(tcp->th_sport), ip->ip_dst, ntohs(tcp->th_dport), header->len, header->ts);
|
||||||
} else if (ethernet->ether_type == 0xDD86) {
|
} else if (ethernet->ether_type == 0xDD86) {
|
||||||
const struct ip6_hdr * ip6 = (struct ip6_hdr *)(packet + sizeof(ether_header));
|
const struct ip6_hdr * ip6 = (struct ip6_hdr *)(packet + sizeof(ether_header));
|
||||||
@@ -134,8 +142,10 @@ Packet * getPacket (const struct pcap_pkthdr * header, const u_char * packet)
|
|||||||
const struct tcp_hdr * tcp = (struct tcp_hdr *)(packet + sizeof(ether_header) + sizeof(ip6_hdr));
|
const struct tcp_hdr * tcp = (struct tcp_hdr *)(packet + sizeof(ether_header) + sizeof(ip6_hdr));
|
||||||
|
|
||||||
// TODO make a Packet constructor that properly understands IPv6
|
// TODO make a Packet constructor that properly understands IPv6
|
||||||
return new Packet (*((in_addr*)(&(ip6->ip6_src))), ntohs(tcp->th_sport),
|
//return new Packet (*((in_addr*)(&(ip6->ip6_src))), ntohs(tcp->th_sport),
|
||||||
*((in_addr*)(&(ip6->ip6_dst))), ntohs(tcp->th_dport), header->len, header->ts);
|
// *((in_addr*)(&(ip6->ip6_dst))), ntohs(tcp->th_dport), header->len, header->ts);
|
||||||
|
return new Packet (ip6->ip6_src, ntohs(tcp->th_sport),
|
||||||
|
ip6->ip6_dst, ntohs(tcp->th_dport), header->len, header->ts);
|
||||||
}
|
}
|
||||||
|
|
||||||
#if DEBUG
|
#if DEBUG
|
||||||
@@ -149,12 +159,23 @@ Packet::Packet (in_addr m_sip, unsigned short m_sport, in_addr m_dip, unsigned s
|
|||||||
sip = m_sip; sport = m_sport;
|
sip = m_sip; sport = m_sport;
|
||||||
dip = m_dip; dport = m_dport;
|
dip = m_dip; dport = m_dport;
|
||||||
len = m_len; time = m_time;
|
len = m_len; time = m_time;
|
||||||
dir = m_dir;
|
dir = m_dir; sa_family = AF_INET;
|
||||||
|
}
|
||||||
|
|
||||||
|
Packet::Packet (in6_addr m_sip, unsigned short m_sport, in6_addr m_dip, unsigned short m_dport, bpf_u_int32 m_len, timeval m_time, direction m_dir)
|
||||||
|
{
|
||||||
|
sip6 = m_sip; sport = m_sport;
|
||||||
|
dip6 = m_dip; dport = m_dport;
|
||||||
|
len = m_len; time = m_time;
|
||||||
|
dir = m_dir; sa_family = AF_INET6;
|
||||||
}
|
}
|
||||||
|
|
||||||
Packet * Packet::newInverted () {
|
Packet * Packet::newInverted () {
|
||||||
/* TODO if this is a bottleneck, we can calculate the direction */
|
/* TODO if this is a bottleneck, we can calculate the direction */
|
||||||
|
if (sa_family == AF_INET)
|
||||||
return new Packet (dip, dport, sip, sport, len, time, dir_unknown);
|
return new Packet (dip, dport, sip, sport, len, time, dir_unknown);
|
||||||
|
else
|
||||||
|
return new Packet (dip6, dport, sip6, sport, len, time, dir_unknown);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* constructs returns a new Packet() structure with the same contents as this one */
|
/* constructs returns a new Packet() structure with the same contents as this one */
|
||||||
@@ -184,10 +205,31 @@ bool Packet::Outgoing () {
|
|||||||
case dir_incoming:
|
case dir_incoming:
|
||||||
return false;
|
return false;
|
||||||
case dir_unknown:
|
case dir_unknown:
|
||||||
if (local_addrs->contains(sip.s_addr)) {
|
bool islocal;
|
||||||
|
if (sa_family == AF_INET)
|
||||||
|
islocal = local_addrs->contains(sip.s_addr);
|
||||||
|
else
|
||||||
|
islocal = local_addrs->contains(sip6);
|
||||||
|
if (islocal) {
|
||||||
dir = dir_outgoing;
|
dir = dir_outgoing;
|
||||||
return true;
|
return true;
|
||||||
} else {
|
} else {
|
||||||
|
/*if (DEBUG) {
|
||||||
|
if (sa_family == AF_INET)
|
||||||
|
islocal = local_addrs->contains(dip.s_addr);
|
||||||
|
else
|
||||||
|
islocal = local_addrs->contains(dip6);
|
||||||
|
if (!islocal) {
|
||||||
|
std::cerr << "Neither dip nor sip are local: ";
|
||||||
|
char addy [50];
|
||||||
|
inet_ntop (AF_INET6, &sip6, addy, 49);
|
||||||
|
std::cerr << addy << std::endl;
|
||||||
|
inet_ntop (AF_INET6, &dip6, addy, 49);
|
||||||
|
std::cerr << addy << std::endl;
|
||||||
|
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
}*/
|
||||||
dir = dir_incoming;
|
dir = dir_incoming;
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
@@ -198,19 +240,29 @@ bool Packet::Outgoing () {
|
|||||||
/* '1.2.3.4' should be the local address. */
|
/* '1.2.3.4' should be the local address. */
|
||||||
char * Packet::gethashstring ()
|
char * Packet::gethashstring ()
|
||||||
{
|
{
|
||||||
// TODO this needs to be bigger to support ipv6?!
|
char * retval = (char *) malloc (HASHKEYSIZE * sizeof(char));
|
||||||
char * tempretval = (char *) malloc (92 * sizeof(char));
|
char * local_string = (char*) malloc (50);
|
||||||
char * retval = (char *) malloc (92 * sizeof(char));
|
char * remote_string = (char*) malloc (50);
|
||||||
if (Outgoing()) {
|
if (sa_family == AF_INET) {
|
||||||
snprintf(tempretval, 92 * sizeof(char), "%s:%d-", inet_ntoa(sip), sport);
|
inet_ntop(sa_family, &sip, local_string, 49);
|
||||||
snprintf(retval, 92 * sizeof(char), "%s%s:%d", tempretval, inet_ntoa(dip), dport);
|
inet_ntop(sa_family, &dip, remote_string, 49);
|
||||||
|
if (DEBUG)
|
||||||
|
fprintf(stderr, "Generating IPv4 string: ");
|
||||||
} else {
|
} else {
|
||||||
snprintf(tempretval, 92 * sizeof(char), "%s:%d-", inet_ntoa(dip), dport);
|
inet_ntop(sa_family, &sip6, local_string, 49);
|
||||||
snprintf(retval, 92 * sizeof(char), "%s%s:%d", tempretval, inet_ntoa(sip), sport);
|
inet_ntop(sa_family, &dip6, remote_string, 49);
|
||||||
|
if (DEBUG)
|
||||||
|
fprintf(stderr, "Generating IPv6 string: ");
|
||||||
}
|
}
|
||||||
//if (DEBUG)
|
if (Outgoing()) {
|
||||||
//cout << "hasshtring: " << retval << endl;
|
snprintf(retval, HASHKEYSIZE * sizeof(char), "%s:%d-%s:%d", local_string, sport, remote_string, dport);
|
||||||
free (tempretval);
|
} else {
|
||||||
|
snprintf(retval, HASHKEYSIZE * sizeof(char), "%s:%d-%s:%d", remote_string, dport, local_string, sport);
|
||||||
|
}
|
||||||
|
free (local_string);
|
||||||
|
free (remote_string);
|
||||||
|
if (DEBUG)
|
||||||
|
std::cout << retval << std::endl;
|
||||||
return retval;
|
return retval;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
4
packet.h
4
packet.h
@@ -26,6 +26,8 @@ void getLocal (const char *device);
|
|||||||
class Packet
|
class Packet
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
|
in6_addr sip6;
|
||||||
|
in6_addr dip6;
|
||||||
in_addr sip;
|
in_addr sip;
|
||||||
in_addr dip;
|
in_addr dip;
|
||||||
unsigned short sport;
|
unsigned short sport;
|
||||||
@@ -34,6 +36,7 @@ public:
|
|||||||
timeval time;
|
timeval time;
|
||||||
|
|
||||||
Packet (in_addr m_sip, unsigned short m_sport, in_addr m_dip, unsigned short m_dport, bpf_u_int32 m_len, timeval m_time, direction dir = dir_unknown);
|
Packet (in_addr m_sip, unsigned short m_sport, in_addr m_dip, unsigned short m_dport, bpf_u_int32 m_len, timeval m_time, direction dir = dir_unknown);
|
||||||
|
Packet (in6_addr m_sip, unsigned short m_sport, in6_addr m_dip, unsigned short m_dport, bpf_u_int32 m_len, timeval m_time, direction dir = dir_unknown);
|
||||||
/* using default copy constructor */
|
/* using default copy constructor */
|
||||||
/* Packet (const Packet &old_packet); */
|
/* Packet (const Packet &old_packet); */
|
||||||
/* copy constructor that turns the packet around */
|
/* copy constructor that turns the packet around */
|
||||||
@@ -48,6 +51,7 @@ public:
|
|||||||
char * gethashstring();
|
char * gethashstring();
|
||||||
private:
|
private:
|
||||||
direction dir;
|
direction dir;
|
||||||
|
short int sa_family;
|
||||||
};
|
};
|
||||||
|
|
||||||
Packet * getPacket (const struct pcap_pkthdr * header, const u_char * packet);
|
Packet * getPacket (const struct pcap_pkthdr * header, const u_char * packet);
|
||||||
|
|||||||
53
process.cpp
53
process.cpp
@@ -75,6 +75,10 @@ HashTable * conninode = new HashTable (256);
|
|||||||
// TODO check what happens to the 'content' field of the hash
|
// TODO check what happens to the 'content' field of the hash
|
||||||
void addtoconninode (char * buffer)
|
void addtoconninode (char * buffer)
|
||||||
{
|
{
|
||||||
|
short int sa_family;
|
||||||
|
struct in6_addr result_addr_local;
|
||||||
|
struct in6_addr result_addr_remote;
|
||||||
|
|
||||||
char rem_addr[128], local_addr[128];
|
char rem_addr[128], local_addr[128];
|
||||||
int local_port, rem_port;
|
int local_port, rem_port;
|
||||||
struct sockaddr_in6 localaddr, remaddr;
|
struct sockaddr_in6 localaddr, remaddr;
|
||||||
@@ -84,6 +88,8 @@ void addtoconninode (char * buffer)
|
|||||||
extern struct aftype inet6_aftype;
|
extern struct aftype inet6_aftype;
|
||||||
// the following line leaks memory.
|
// the following line leaks memory.
|
||||||
unsigned long * inode = (unsigned long *) malloc (sizeof(unsigned long));
|
unsigned long * inode = (unsigned long *) malloc (sizeof(unsigned long));
|
||||||
|
|
||||||
|
|
||||||
// TODO check it matched
|
// TODO check it matched
|
||||||
sscanf(buffer, "%*d: %64[0-9A-Fa-f]:%X %64[0-9A-Fa-f]:%X %*X %*lX:%*lX %*X:%*lX %*lX %*d %*d %ld %*512s\n",
|
sscanf(buffer, "%*d: %64[0-9A-Fa-f]:%X %64[0-9A-Fa-f]:%X %*X %*lX:%*lX %*X:%*lX %*lX %*d %*d %ld %*512s\n",
|
||||||
local_addr, &local_port, rem_addr, &rem_port, inode);
|
local_addr, &local_port, rem_addr, &rem_port, inode);
|
||||||
@@ -108,10 +114,9 @@ void addtoconninode (char * buffer)
|
|||||||
/* IPv4-compatible address */
|
/* IPv4-compatible address */
|
||||||
if (DEBUG)
|
if (DEBUG)
|
||||||
fprintf (stderr, "IPv4-compatible address\n");
|
fprintf (stderr, "IPv4-compatible address\n");
|
||||||
((struct sockaddr_in *)&localaddr)->sin_addr.s_addr = in6_local.s6_addr32[3];
|
result_addr_local = *((struct in6_addr*) &(in6_local.s6_addr32[3]));
|
||||||
((struct sockaddr_in *)&remaddr)->sin_addr.s_addr = in6_remote.s6_addr32[3];
|
result_addr_remote = *((struct in6_addr*) &(in6_remote.s6_addr32[3]));
|
||||||
((struct sockaddr *) &localaddr)->sa_family = AF_INET;
|
sa_family = AF_INET;
|
||||||
((struct sockaddr *) &remaddr)->sa_family = AF_INET;
|
|
||||||
} else {
|
} else {
|
||||||
/* real IPv6 address */
|
/* real IPv6 address */
|
||||||
if (DEBUG)
|
if (DEBUG)
|
||||||
@@ -122,25 +127,28 @@ void addtoconninode (char * buffer)
|
|||||||
INET6_getsock(addr6, (struct sockaddr *) &remaddr);
|
INET6_getsock(addr6, (struct sockaddr *) &remaddr);
|
||||||
localaddr.sin6_family = AF_INET6;
|
localaddr.sin6_family = AF_INET6;
|
||||||
remaddr.sin6_family = AF_INET6;
|
remaddr.sin6_family = AF_INET6;
|
||||||
|
result_addr_local = in6_local;
|
||||||
|
result_addr_remote = in6_remote;
|
||||||
|
sa_family = AF_INET6;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
/* this is an IPv4-style row */
|
/* this is an IPv4-style row */
|
||||||
sscanf(local_addr, "%X", &((struct sockaddr_in *)&localaddr)->sin_addr.s_addr);
|
sscanf(local_addr, "%X", &result_addr_local);
|
||||||
sscanf(rem_addr, "%X", &((struct sockaddr_in *)&remaddr)->sin_addr.s_addr);
|
sscanf(rem_addr, "%X", &result_addr_remote);
|
||||||
((struct sockaddr *) &localaddr)->sa_family = AF_INET;
|
sa_family = AF_INET;
|
||||||
((struct sockaddr *) &remaddr)->sa_family = AF_INET;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Construct hash key and add inode to conninode table */
|
char * hashkey = (char *) malloc (HASHKEYSIZE * sizeof(char));
|
||||||
char * temphashkey = (char *) malloc (92 * sizeof(char));
|
char * local_string = (char*) malloc (50);
|
||||||
char * hashkey = (char *) malloc (92 * sizeof(char));
|
char * remote_string = (char*) malloc (50);
|
||||||
|
inet_ntop(sa_family, &result_addr_local, local_string, 49);
|
||||||
|
inet_ntop(sa_family, &result_addr_remote, remote_string, 49);
|
||||||
|
|
||||||
/* TODO make this support the ipv6 addresses properly */
|
snprintf(hashkey, HASHKEYSIZE * sizeof(char), "%s:%d-%s:%d", local_string, local_port, remote_string, rem_port);
|
||||||
snprintf(temphashkey, 92 * sizeof(char), "%s:%d-", inet_ntoa(((struct sockaddr_in *)&localaddr)->sin_addr), local_port);
|
free (local_string);
|
||||||
snprintf(hashkey, 92 * sizeof(char), "%s%s:%d", temphashkey, inet_ntoa(((struct sockaddr_in *)&remaddr)->sin_addr), rem_port);
|
free (remote_string);
|
||||||
free (temphashkey);
|
|
||||||
|
|
||||||
if (DEBUG)
|
if (DEBUG)
|
||||||
fprintf (stderr, "Hashkey: %s\n", hashkey);
|
fprintf (stderr, "Hashkey: %s\n", hashkey);
|
||||||
@@ -449,12 +457,27 @@ Process * getProcess (Connection * connection, char * devicename)
|
|||||||
inode = (unsigned long *) conninode->get(connection->refpacket->gethashstring());
|
inode = (unsigned long *) conninode->get(connection->refpacket->gethashstring());
|
||||||
if (inode == NULL)
|
if (inode == NULL)
|
||||||
{
|
{
|
||||||
|
/* HACK: the following is a hack for cases where the 'local' addresses
|
||||||
|
* aren't properly recognised, as is currently the case for IPv6 */
|
||||||
|
|
||||||
|
/* we reverse the direction of the stream if successful. */
|
||||||
|
|
||||||
|
Packet * reversepacket = connection->refpacket->newInverted();
|
||||||
|
//inode = (unsigned long *) conninode->get(reversepacket->gethashstring());
|
||||||
|
|
||||||
|
if (inode == NULL)
|
||||||
|
{
|
||||||
|
delete reversepacket;
|
||||||
#if DEBUG
|
#if DEBUG
|
||||||
std::cerr << connection->refpacket->gethashstring() << " STILL not in table - adding to the unknown process\n";
|
std::cerr << connection->refpacket->gethashstring() << " STILL not in table - adding to the unknown process\n";
|
||||||
#endif
|
#endif
|
||||||
unknownproc->connections = new ConnList (connection, unknownproc->connections);
|
unknownproc->connections = new ConnList (connection, unknownproc->connections);
|
||||||
return unknownproc;
|
return unknownproc;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
delete connection->refpacket;
|
||||||
|
connection->refpacket = reversepacket;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
Process * proc = getProcess(*inode, devicename);
|
Process * proc = getProcess(*inode, devicename);
|
||||||
|
|||||||
Reference in New Issue
Block a user