Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Rework of PfRingDevice capture thread implementation. #1668

Closed
wants to merge 24 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
1fdca49
Extracted setting core affinity to a helper function.
Dimi1010 Dec 19, 2024
644ef3a
Refactored PfRing capture thread function.
Dimi1010 Dec 21, 2024
5a57b74
Fixes.
Dimi1010 Dec 21, 2024
c9713fc
Lint
Dimi1010 Dec 21, 2024
792d689
Fixes StopToken incomplete error.
Dimi1010 Dec 21, 2024
0349963
Fixed stop token constructors.
Dimi1010 Dec 21, 2024
4b3d39e
Removed const-ness of thread reference when setting thread affinity.
Dimi1010 Dec 21, 2024
7ff6cba
Added documentation for StopToken and StopTokenSource.
Dimi1010 Dec 21, 2024
9c994c1
Lint and cppcheck fixes.
Dimi1010 Dec 21, 2024
223dc80
Replaced for loop with algorithm.
Dimi1010 Dec 21, 2024
057cda2
Reverted core config size to MAX_NUM_OF_CORES.
Dimi1010 Dec 22, 2024
ba9d32e
Fixed stop token source guards being inverted.
Dimi1010 Dec 24, 2024
f1b6b25
Merge branch 'dev' into fix/issue-1664
Dimi1010 Dec 31, 2024
97d9863
Added stop token tests.
Dimi1010 Dec 31, 2024
baeb36c
Lint
Dimi1010 Dec 31, 2024
b1c6da2
Merge remote-tracking branch 'upstream/dev' into fix/issue-1664
Dimi1010 Jan 4, 2025
61a62b6
Lint
Dimi1010 Jan 6, 2025
07d8a70
Incorporated signal and wait for signal code pieces into StartupBlock…
Dimi1010 Jan 6, 2025
379feac
Simplified mutex lock.
Dimi1010 Jan 6, 2025
f22a741
Merge remote-tracking branch 'upstream/dev' into fix/issue-1664
Dimi1010 Jan 10, 2025
7dd6016
Merge branch 'dev' into fix/issue-1664
Dimi1010 Jan 18, 2025
b2820ec
Merge branch 'dev' into fix/issue-1664
Dimi1010 Feb 26, 2025
21d47a9
Merge branch 'dev' into fix/issue-1664
seladb Mar 20, 2025
5783f72
Merge branch 'dev' into fix/issue-1664
Dimi1010 Mar 22, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions Pcap++/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ add_library(
$<$<BOOL:${PCAPPP_USE_PF_RING}>:src/PfRingDeviceList.cpp>
$<$<BOOL:${PCAPPP_USE_XDP}>:src/XdpDevice.cpp>
src/RawSocketDevice.cpp
src/StopToken.cpp
$<$<BOOL:${WIN32}>:src/WinPcapLiveDevice.cpp>
# Force light pcapng to be link fully static
$<TARGET_OBJECTS:light_pcapng>
Expand All @@ -35,6 +36,7 @@ set(
header/PcapLiveDevice.h
header/PcapLiveDeviceList.h
header/RawSocketDevice.h
header/StopToken.h
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Do we want this to be part of the public_headers?

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It is used in the pfringdevice header, so don't see how we can keep it out.

Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

BTW, maybe move it to Common++?
It doesn't have logic which is specific to Pcap++...

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I kept it in Pcap++ as it isn't used in the other parts.

)

if(PCAPPP_USE_DPDK)
Expand Down
23 changes: 8 additions & 15 deletions Pcap++/header/PfRingDevice.h
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@
#include "MacAddress.h"
#include "SystemUtils.h"
#include "Packet.h"
#include <array>
#include <thread>
#include <mutex>
#include <condition_variable>
#include "StopToken.h"

/// @file

Expand Down Expand Up @@ -44,31 +44,24 @@ namespace pcpp
void clear();
};

struct StartupBlock
{
std::mutex Mutex;
std::condition_variable Cond;
int State = 0;
};

pfring** m_PfRingDescriptors;
uint8_t m_NumOfOpenedRxChannels;
std::string m_DeviceName;
int m_InterfaceIndex;
MacAddress m_MacAddress;
int m_DeviceMTU;
CoreConfiguration m_CoreConfiguration[MAX_NUM_OF_CORES];
bool m_StopThread;
OnPfRingPacketsArriveCallback m_OnPacketsArriveCallback;
void* m_OnPacketsArriveUserCookie;

std::array<CoreConfiguration, MAX_NUM_OF_CORES> m_CoreConfiguration;
// An empty stop token source is used to indicate that no capture is running
internal::StopTokenSource m_StopTokenSource{ internal::NoStopStateTag{} };

bool m_ReentrantMode;
bool m_HwClockEnabled;
bool m_IsFilterCurrentlySet;

PfRingDevice(const char* deviceName);

bool initCoreConfigurationByCoreMask(CoreMask coreMask);
void captureThreadMain(std::shared_ptr<StartupBlock> startupBlock);

int openSingleRxChannel(const char* deviceName, pfring** ring);

Expand Down Expand Up @@ -212,7 +205,7 @@ namespace pcpp

/// Gets the core used in the current thread context
/// @return The system core used in the current thread context
SystemCore getCurrentCoreId() const;
static SystemCore getCurrentCoreId();

/// Get the statistics of a specific thread/core (=RX channel)
/// @param[in] core The requested core
Expand Down
90 changes: 90 additions & 0 deletions Pcap++/header/StopToken.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,90 @@
#pragma once

#include <memory>

namespace pcpp
{
namespace internal
{
class StopToken;

/// Tag type used to construct a StopTokenSource without a shared state.
struct NoStopStateTag
{
};

/// @class StopTokenSource
/// @brief A source that can be used to request a stop operation.
class StopTokenSource
{
friend class StopToken;

public:
/// Creates a new StopTokenSource.
StopTokenSource();
/// Creates a new StopTokenSource without a shared state.
explicit StopTokenSource(NoStopStateTag) noexcept : m_SharedState(nullptr)
{}

/// Returns a StopToken that is associated with this source.
/// @return A StopToken associated with this StopTokenSource.
StopToken getToken() const noexcept;

/// Requests a stop operation. This will notify all associated StopTokens
/// that a stop has been requested.
/// @return True if the stop request was successful, false otherwise.
bool requestStop() noexcept;

/// Checks if a stop has been requested for this StopTokenSource.
/// @return True if a stop has been requested, false otherwise.
bool stopRequested() const noexcept;

/// Checks if a stop can be requested for this StopTokenSource.
/// @return True if a stop can be requested, false otherwise.
bool stopPossible() const noexcept;

private:
struct SharedState;

std::shared_ptr<SharedState> m_SharedState;
};

/// @class StopToken
/// @brief A token that can be used to check if a stop has been requested.
///
/// The StopToken class is used to check if a stop has been requested by a StopTokenSource.
/// It holds a shared state with the StopTokenSource to determine if a stop has been requested.
class StopToken
{
friend class StopTokenSource;

public:
/// @brief Default constructor for StopToken.
/// Constructs a StopToken with no associated shared state.
StopToken() noexcept = default;

/// @brief Checks if a stop has been requested.
/// @return True if a stop has been requested, false otherwise.
bool stopRequested() const noexcept;

/// @brief Checks if a stop can be requested.
/// @return True if a stop can be requested, false otherwise.
bool stopPossible() const noexcept;

private:
/// @brief Constructs a StopToken with the given shared state.
/// @param sharedState The shared state associated with this StopToken.
explicit StopToken(std::shared_ptr<StopTokenSource::SharedState> sharedState) noexcept
: m_SharedState(std::move(sharedState))
{}

/// @brief The shared state associated with this StopToken.
std::shared_ptr<StopTokenSource::SharedState> m_SharedState;
};

inline StopToken StopTokenSource::getToken() const noexcept
{
return StopToken(m_SharedState);
}
} // namespace internal
} // namespace pcpp
Loading
Loading