git.stg.codes
/
stg.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Fix raw packet access in cap_divert
[stg.git]
/
projects
/
stargazer
/
plugins
/
capture
/
ether_linux
/
ether_cap.cpp
diff --git
a/projects/stargazer/plugins/capture/ether_linux/ether_cap.cpp
b/projects/stargazer/plugins/capture/ether_linux/ether_cap.cpp
index 97e9b17119a7eb8fb505579b82d0abeb20d1f995..632c18468f4f670061521f32615f64db8582e375 100644
(file)
--- a/
projects/stargazer/plugins/capture/ether_linux/ether_cap.cpp
+++ b/
projects/stargazer/plugins/capture/ether_linux/ether_cap.cpp
@@
-32,22
+32,23
@@
$Date: 2009/12/13 13:45:13 $
#include <arpa/inet.h>
#include <netinet/in.h>
#include <sys/types.h>
#include <arpa/inet.h>
#include <netinet/in.h>
#include <sys/types.h>
-#include <stdio.h>
-#include <string.h>
-#include <errno.h>
-#include <stdlib.h>
#include <unistd.h>
#include <linux/if_ether.h>
#include <linux/if_packet.h>
#include <unistd.h>
#include <linux/if_ether.h>
#include <linux/if_packet.h>
-#include <signal.h>
-
#include <sys/ioctl.h>
#include <net/if.h>
#include <sys/ioctl.h>
#include <net/if.h>
+#include <cstdio>
+#include <cstdlib>
+#include <cstring>
+#include <cerrno>
+#include <csignal>
+
#include "stg/common.h"
#include "stg/raw_ip_packet.h"
#include "stg/traffcounter.h"
#include "stg/plugin_creator.h"
#include "stg/common.h"
#include "stg/raw_ip_packet.h"
#include "stg/traffcounter.h"
#include "stg/plugin_creator.h"
+
#include "ether_cap.h"
//#define CAP_DEBUG 1
#include "ether_cap.h"
//#define CAP_DEBUG 1
@@
-115,7
+116,8
@@
nonstop = false;
//5 seconds to thread stops itself
for (int i = 0; i < 25 && isRunning; i++)
{
//5 seconds to thread stops itself
for (int i = 0; i < 25 && isRunning; i++)
{
- usleep(200000);
+ struct timespec ts = {0, 200000000};
+ nanosleep(&ts, NULL);
}
//after 5 seconds waiting thread still running. now killing it
if (isRunning)
}
//after 5 seconds waiting thread still running. now killing it
if (isRunning)
@@
-126,7
+128,10
@@
if (isRunning)
return -1;
}
for (int i = 0; i < 25 && isRunning; ++i)
return -1;
}
for (int i = 0; i < 25 && isRunning; ++i)
- usleep(200000);
+ {
+ struct timespec ts = {0, 200000000};
+ nanosleep(&ts, NULL);
+ }
if (isRunning)
{
errorStr = "ETHER_CAP not stopped.";
if (isRunning)
{
errorStr = "ETHER_CAP not stopped.";
@@
-145,6
+150,10
@@
return 0;
//-----------------------------------------------------------------------------
void * ETHER_CAP::Run(void * d)
{
//-----------------------------------------------------------------------------
void * ETHER_CAP::Run(void * d)
{
+sigset_t signalSet;
+sigfillset(&signalSet);
+pthread_sigmask(SIG_BLOCK, &signalSet, NULL);
+
ETHER_CAP * dc = (ETHER_CAP *)d;
dc->isRunning = true;
ETHER_CAP * dc = (ETHER_CAP *)d;
dc->isRunning = true;