Go to the documentation of this file.
28 static int worker_id = 1;
51 static void ReleasePacket(
Packet *p)
66 static void *SimpleWorker(
void *arg)
83 assert(device != NULL);
85 int datalink = pcap_datalink(fp);
87 struct pcap_pkthdr pkthdr;
89 while ((packet = pcap_next(fp, &pkthdr)) != NULL) {
147 int main(
int argc,
char **argv)
157 bool end = strncmp(argv[0],
"--", 2) == 0;
165 fprintf(stderr,
"ERROR: No PCAP files provided\n");
204 fprintf(stderr,
"LiveRegisterDevice failed");
220 .pcap_filename = argv[argc - 1],
222 if (pthread_create(&worker, NULL, SimpleWorker, &args) != 0) {
bool PacketCheckAction(const Packet *p, const uint8_t a)
void SuricataMainLoop(void)
int LiveRegisterDevice(const char *dev)
Add a pcap device for monitoring and create structure.
void PacketFreeOrRelease(Packet *p)
Return a packet to where it was allocated.
void SCPacketSetLiveDevice(Packet *p, LiveDevice *device)
Set a packets live device.
void SuricataPostInit(void)
#define SC_ATOMIC_ADD(name, val)
add a value to our atomic variable
TmEcode SCParseCommandLine(int argc, char **argv)
void SuricataShutdown(void)
void TmqhOutputPacketpool(ThreadVars *t, Packet *p)
void SCPacketSetSource(Packet *p, enum PktSrcEnum source)
Set packet source.
void SCRunmodeSet(SCRunMode run_mode)
Set the current run mode.
int main(int argc, char **argv)
struct TmSlot_ * tm_slots
LiveDevice * LiveGetDevice(const char *name)
Get a pointer to the device at idx.
Per thread variable structure.
#define SCTIME_FROM_TIMEVAL(tv)
int SCRunModeLibSpawnWorker(void *td)
start the "fake" worker.
void SCPacketSetTime(Packet *p, SCTime_t ts)
Set the timestamp for a packet.
int SCConfSetFromString(const char *input, int final)
Set a configuration parameter from a string.
void TmThreadsInitThreadsTimestamp(const SCTime_t ts)
int SCStartInternalRunMode(int argc, char **argv)
void SCPacketSetReleasePacket(Packet *p, void(*ReleasePacket)(Packet *p))
Set a packet release function.
void EngineStop(void)
make sure threads can stop the engine by calling this function. Purpose: pcap file mode needs to be a...
TmEcode SCLoadYamlConfig(void)
ThreadVars * SCRunModeLibCreateThreadVars(int worker_id)
Create ThreadVars for use by a user provided thread.
int PacketSetData(Packet *p, const uint8_t *pktdata, uint32_t pktlen)
Set data for Packet and set length when zero copy is used.
void SCPacketSetDatalink(Packet *p, int datalink)
Set a packets data link type.
#define SCLogNotice(...)
Macro used to log NOTICE messages.
void SuricataPreInit(const char *progname)
bool SCTmThreadsSlotPktAcqLoopFinish(ThreadVars *tv)
Packet * PacketGetFromQueueOrAlloc(void)
Get a packet. We try to get a packet from the packetpool first, but if that is empty we alloc a packe...
int SCFinalizeRunMode(void)
void GlobalsDestroy(void)
volatile uint8_t suricata_ctl_flags