git.stg.codes
/
stg.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Fixed compilation with linux-3.5.1 and higher.
[stg.git]
/
projects
/
stargazer
/
plugins
/
capture
/
ether_freebsd
/
ether_cap.cpp
diff --git
a/projects/stargazer/plugins/capture/ether_freebsd/ether_cap.cpp
b/projects/stargazer/plugins/capture/ether_freebsd/ether_cap.cpp
index 4e9fa0ffc9b258405ebfdbc7bffdf6c2eeed1ea4..c217e22f3e502b5bc53f3d49324954a89cc1fb0e 100644
(file)
--- a/
projects/stargazer/plugins/capture/ether_freebsd/ether_cap.cpp
+++ b/
projects/stargazer/plugins/capture/ether_freebsd/ether_cap.cpp
@@
-154,14
+154,15
@@
if (BPFCapOpen() < 0)
nonstop = true;
nonstop = true;
-if (pthread_create(&thread, NULL, Run, this)
== 0
)
+if (pthread_create(&thread, NULL, Run, this))
{
{
- return 0;
+ errorStr = "Cannot create thread.";
+ logger("Cannot create thread.");
+ printfd(__FILE__, "Cannot create thread\n");
+ return -1;
}
}
-errorStr = "Cannot create thread.";
-printfd(__FILE__, "Cannot create thread\n");
-return -1;
+return 0;
}
//-----------------------------------------------------------------------------
int BPF_CAP::Stop()
}
//-----------------------------------------------------------------------------
int BPF_CAP::Stop()
@@
-191,6
+192,7
@@
if (isRunning)
if (pthread_kill(thread, SIGINT))
{
errorStr = "Cannot kill thread.";
if (pthread_kill(thread, SIGINT))
{
errorStr = "Cannot kill thread.";
+ logger("Cannot send signal to thread.");
printfd(__FILE__, "Cannot kill thread\n");
return -1;
}
printfd(__FILE__, "Cannot kill thread\n");
return -1;
}
@@
-272,6
+274,7
@@
do
if (bd->fd < 0)
{
errorStr = "Can't capture packets. Open bpf device for " + bd->iface + " error.";
if (bd->fd < 0)
{
errorStr = "Can't capture packets. Open bpf device for " + bd->iface + " error.";
+ logger("Cannot open device for interface '%s': %s", bd->iface, strerror(errno));
printfd(__FILE__, "Cannot open BPF device\n");
return -1;
}
printfd(__FILE__, "Cannot open BPF device\n");
return -1;
}
@@
-281,6
+284,7
@@
strncpy(ifr.ifr_name, bd->iface.c_str(), sizeof(ifr.ifr_name));
if (ioctl(bd->fd, BIOCSBLEN, (caddr_t)&l) < 0)
{
errorStr = bd->iface + " BIOCSBLEN " + std::string(strerror(errno));
if (ioctl(bd->fd, BIOCSBLEN, (caddr_t)&l) < 0)
{
errorStr = bd->iface + " BIOCSBLEN " + std::string(strerror(errno));
+ logger("ioctl (BIOCSBLEN) error for interface '%s': %s", db->iface, strerror(errno));
printfd(__FILE__, "ioctl failed: '%s'\n", errorStr.c_str());
return -1;
}
printfd(__FILE__, "ioctl failed: '%s'\n", errorStr.c_str());
return -1;
}
@@
-288,6
+292,7
@@
if (ioctl(bd->fd, BIOCSBLEN, (caddr_t)&l) < 0)
if (ioctl(bd->fd, BIOCSETIF, (caddr_t)&ifr) < 0)
{
errorStr = bd->iface + " BIOCSETIF " + std::string(strerror(errno));
if (ioctl(bd->fd, BIOCSETIF, (caddr_t)&ifr) < 0)
{
errorStr = bd->iface + " BIOCSETIF " + std::string(strerror(errno));
+ logger("ioctl (BIOCSETIF) error for interface '%s': %s", db->iface, strerror(errno));
printfd(__FILE__, "ioctl failed: '%s'\n", errorStr.c_str());
return -1;
}
printfd(__FILE__, "ioctl failed: '%s'\n", errorStr.c_str());
return -1;
}
@@
-295,6
+300,7
@@
if (ioctl(bd->fd, BIOCSETIF, (caddr_t)&ifr) < 0)
if (ioctl(bd->fd, BIOCIMMEDIATE, &im) < 0)
{
errorStr = bd->iface + " BIOCIMMEDIATE " + std::string(strerror(errno));
if (ioctl(bd->fd, BIOCIMMEDIATE, &im) < 0)
{
errorStr = bd->iface + " BIOCIMMEDIATE " + std::string(strerror(errno));
+ logger("ioctl (BIOCIMMEDIATE) error for interface '%s': %s", db->iface, strerror(errno));
printfd(__FILE__, "ioctl failed: '%s'\n", errorStr.c_str());
return -1;
}
printfd(__FILE__, "ioctl failed: '%s'\n", errorStr.c_str());
return -1;
}
@@
-336,6
+342,7
@@
if (bd->canRead)
bd->r = read(bd->fd, bd->buffer, BUFF_LEN);
if (bd->r < 0)
{
bd->r = read(bd->fd, bd->buffer, BUFF_LEN);
if (bd->r < 0)
{
+ logger("read error: %s", strerror(errno));
struct timespec ts = {0, 20000000};
nanosleep(&ts, NULL);
return -1;
struct timespec ts = {0, 20000000};
nanosleep(&ts, NULL);
return -1;