/* Copyright (C) 2019 Srivats P. This file is part of "Ostinato" This 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, see */ #include "pcapsession.h" // XXX: Implemented as reset on read QString PcapSession::debugStats() { QString dbgStats; if (!handle_) return QString(); #ifdef Q_OS_WIN32 static_assert(sizeof(struct pcap_stat) == 6*sizeof(uint), "pcap_stat has less or more than 6 values"); int size; struct pcap_stat incPcapStats; struct pcap_stat *pcapStats = pcap_stats_ex(handle_, &size); if (pcapStats && (uint(size) >= 6*sizeof(uint))) { incPcapStats.ps_recv = pcapStats->ps_recv - lastPcapStats_.ps_recv; incPcapStats.ps_drop = pcapStats->ps_drop - lastPcapStats_.ps_drop; incPcapStats.ps_ifdrop = pcapStats->ps_ifdrop - lastPcapStats_.ps_ifdrop; incPcapStats.ps_capt = pcapStats->ps_capt - lastPcapStats_.ps_capt; incPcapStats.ps_sent = pcapStats->ps_sent - lastPcapStats_.ps_sent; incPcapStats.ps_netdrop = pcapStats->ps_netdrop - lastPcapStats_.ps_netdrop; dbgStats = QString("recv: %1 drop: %2 ifdrop: %3 " "capt: %4 sent: %5 netdrop: %6") .arg(incPcapStats.ps_recv) .arg(incPcapStats.ps_drop) .arg(incPcapStats.ps_ifdrop) .arg(incPcapStats.ps_capt) .arg(incPcapStats.ps_sent) .arg(incPcapStats.ps_netdrop); lastPcapStats_ = *pcapStats; } else { dbgStats = QString("error reading pcap stats: %1") .arg(pcap_geterr(handle_)); } #else struct pcap_stat pcapStats; struct pcap_stat incPcapStats; int ret = pcap_stats(handle_, &pcapStats); if (ret == 0) { incPcapStats.ps_recv = pcapStats.ps_recv - lastPcapStats_.ps_recv; incPcapStats.ps_drop = pcapStats.ps_drop - lastPcapStats_.ps_drop; incPcapStats.ps_ifdrop = pcapStats.ps_ifdrop - lastPcapStats_.ps_ifdrop; dbgStats = QString("recv: %1 drop: %2 ifdrop: %3") .arg(incPcapStats.ps_recv) .arg(incPcapStats.ps_drop) .arg(incPcapStats.ps_ifdrop); lastPcapStats_ = pcapStats; } else { dbgStats = QString("error reading pcap stats: %1") .arg(pcap_geterr(handle_)); } #endif return dbgStats; } bool PcapSession::clearDebugStats() { memset(&lastPcapStats_, 0, sizeof(lastPcapStats_)); return true; } #ifdef Q_OS_UNIX #include #include #define MY_BREAK_SIGNAL SIGUSR1 QHash PcapSession::signalSeen_; void PcapSession::preRun() { // Should be called in the thread's context thread_ = pthread_self(); struct sigaction sa; memset(&sa, 0, sizeof(sa)); sigemptyset(&sa.sa_mask); sa.sa_handler = PcapSession::signalBreakHandler; if (!sigaction(MY_BREAK_SIGNAL, &sa, NULL)) { signalSeen_[thread_] = false; qDebug("Break signal handler installed"); } else qWarning("Failed to install MY_BREAK_SIGNAL handler"); } void PcapSession::postRun() { // Should be called in the thread's context ThreadId id = pthread_self(); qDebug("In %s::%s", typeid(*this).name(), __FUNCTION__); if (!signalSeen_.contains(id)) { qWarning("Thread not found in signalSeen"); return; } bool &seen = signalSeen_[id]; // XXX: don't exit the thread until we see the signal; if we don't // some platforms will crash if (!seen) { qDebug("Wait for signal"); while (!seen) QThread::msleep(10); } signalSeen_.remove(id); qDebug("Signal seen and handled"); } void PcapSession::stop() { // Should be called OUTSIDE the thread's context // XXX: As per the man page for pcap_breakloop, we need both // pcap_breakloop and a mechanism to interrupt system calls; // we use a signal for the latter // TODO: If the signal mechanism doesn't work, we could try // pthread_cancel(thread_); pcap_breakloop(handle_); pthread_kill(thread_.nativeId(), MY_BREAK_SIGNAL); } void PcapSession::signalBreakHandler(int /*signum*/) { qDebug("In %s", __FUNCTION__); signalSeen_[pthread_self()] = true; } #endif