-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
main/flush: Support periodic flush logs
Issue: 3449
- Loading branch information
Showing
14 changed files
with
333 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,199 @@ | ||
/* Copyright (C) 2024 Open Information Security Foundation | ||
* | ||
* You can copy, redistribute or modify this Program under the terms of | ||
* the GNU General Public License version 2 as published by the Free | ||
* Software Foundation. | ||
* | ||
* 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 | ||
* version 2 along with this program; if not, write to the Free Software | ||
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA | ||
* 02110-1301, USA. | ||
*/ | ||
|
||
/** | ||
* \file | ||
* | ||
* \author Jeff Lucovsky <[email protected]> | ||
*/ | ||
|
||
#include "suricata-common.h" | ||
#include "suricata.h" | ||
#include "detect.h" | ||
#include "detect-engine.h" | ||
#include "flow-worker.h" | ||
#include "log-flush.h" | ||
#include "tm-threads.h" | ||
#include "conf.h" | ||
#include "conf-yaml-loader.h" | ||
#include "util-privs.h" | ||
|
||
/** | ||
* \brief Trigger detect threads to flush their output logs | ||
* | ||
* This function is intended to be called at regular intervals to force | ||
* buffered log data to be persisted | ||
*/ | ||
static void WorkerFlushLogs(void) | ||
{ | ||
SCEnter(); | ||
|
||
/* count detect threads in use */ | ||
uint32_t no_of_detect_tvs = TmThreadCountThreadsByTmmFlags(TM_FLAG_DETECT_TM); | ||
/* can be zero in unix socket mode */ | ||
if (no_of_detect_tvs == 0) { | ||
return; | ||
} | ||
|
||
/* prepare swap structures */ | ||
void *fw_threads[no_of_detect_tvs]; | ||
ThreadVars *detect_tvs[no_of_detect_tvs]; | ||
memset(fw_threads, 0x00, (no_of_detect_tvs * sizeof(void *))); | ||
memset(detect_tvs, 0x00, (no_of_detect_tvs * sizeof(ThreadVars *))); | ||
|
||
/* start by initiating the log flushes */ | ||
|
||
uint32_t i = 0; | ||
SCMutexLock(&tv_root_lock); | ||
/* get reference to tv's and setup fw_threads array */ | ||
for (ThreadVars *tv = tv_root[TVT_PPT]; tv != NULL; tv = tv->next) { | ||
if ((tv->tmm_flags & TM_FLAG_DETECT_TM) == 0) { | ||
continue; | ||
} | ||
for (TmSlot *s = tv->tm_slots; s != NULL; s = s->slot_next) { | ||
TmModule *tm = TmModuleGetById(s->tm_id); | ||
if (!(tm->flags & TM_FLAG_DETECT_TM)) { | ||
continue; | ||
} | ||
|
||
if (suricata_ctl_flags != 0) { | ||
SCMutexUnlock(&tv_root_lock); | ||
goto error; | ||
} | ||
|
||
fw_threads[i] = FlowWorkerGetThreadData(SC_ATOMIC_GET(s->slot_data)); | ||
if (fw_threads[i]) { | ||
FlowWorkerSetFlushAck(fw_threads[i]); | ||
SCLogDebug("Setting flush-ack for thread %s[i=%d]", tv->printable_name, i); | ||
detect_tvs[i] = tv; | ||
} | ||
|
||
i++; | ||
break; | ||
} | ||
} | ||
BUG_ON(i != no_of_detect_tvs); | ||
|
||
SCMutexUnlock(&tv_root_lock); | ||
|
||
SCLogDebug("Creating flush pseudo packets for %d threads", no_of_detect_tvs); | ||
InjectPacketsForFlush(detect_tvs, no_of_detect_tvs); | ||
|
||
uint32_t threads_done = 0; | ||
retry: | ||
for (i = 0; i < no_of_detect_tvs; i++) { | ||
if (suricata_ctl_flags != 0) { | ||
threads_done = no_of_detect_tvs; | ||
break; | ||
} | ||
usleep(1000); | ||
if (fw_threads[i] && FlowWorkerGetFlushAck(fw_threads[i])) { | ||
SCLogDebug("thread slot %d has ack'd flush request", i); | ||
threads_done++; | ||
} else if (detect_tvs[i]) { | ||
SCLogDebug("thread slot %d not yet ack'd flush request", i); | ||
TmThreadsCaptureBreakLoop(detect_tvs[i]); | ||
} | ||
} | ||
if (threads_done < no_of_detect_tvs) { | ||
threads_done = 0; | ||
SleepMsec(250); | ||
goto retry; | ||
} | ||
|
||
error: | ||
return; | ||
} | ||
|
||
static int OutputFlushInterval(void) | ||
{ | ||
intmax_t output_flush_interval = 0; | ||
if (ConfGetInt("heartbeat.output-flush-interval", &output_flush_interval) == 0) { | ||
output_flush_interval = 0; | ||
} | ||
if (output_flush_interval < 0 || output_flush_interval > 60) { | ||
SCLogConfig("flush_interval must be 0 or less than 60; using 0"); | ||
output_flush_interval = 0; | ||
} | ||
|
||
return (int)output_flush_interval; | ||
} | ||
|
||
static void *LogFlusherWakeupThread(void *arg) | ||
{ | ||
int output_flush_interval = OutputFlushInterval(); | ||
/* This was checked by the logic creating this thread */ | ||
BUG_ON(output_flush_interval == 0); | ||
|
||
SCLogConfig("Using output-flush-interval of %d seconds", output_flush_interval); | ||
/* | ||
* Calculate the number of sleep intervals based on the output flush interval. This is necessary | ||
* because this thread pauses a fixed amount of time to react to shutdown situations more | ||
* quickly. | ||
*/ | ||
const int log_flush_sleep_time = 500; /* milliseconds */ | ||
const int flush_wait_count = (1000 * output_flush_interval) / log_flush_sleep_time; | ||
|
||
ThreadVars *tv_local = (ThreadVars *)arg; | ||
SCSetThreadName(tv_local->name); | ||
|
||
if (tv_local->thread_setup_flags != 0) | ||
TmThreadSetupOptions(tv_local); | ||
|
||
/* Set the threads capability */ | ||
tv_local->cap_flags = 0; | ||
SCDropCaps(tv_local); | ||
|
||
TmThreadsSetFlag(tv_local, THV_INIT_DONE | THV_RUNNING); | ||
|
||
int wait_count = 0; | ||
uint64_t worker_flush_count = 0; | ||
bool run = TmThreadsWaitForUnpause(tv_local); | ||
while (run) { | ||
usleep(log_flush_sleep_time * 1000); | ||
|
||
if (++wait_count == flush_wait_count) { | ||
worker_flush_count++; | ||
WorkerFlushLogs(); | ||
wait_count = 0; | ||
} | ||
|
||
if (TmThreadsCheckFlag(tv_local, THV_KILL)) { | ||
break; | ||
} | ||
} | ||
|
||
TmThreadsSetFlag(tv_local, THV_RUNNING_DONE); | ||
TmThreadWaitForFlag(tv_local, THV_DEINIT); | ||
TmThreadsSetFlag(tv_local, THV_CLOSED); | ||
SCLogInfo("%s: initiated %" PRIu64 " flushes", tv_local->name, worker_flush_count); | ||
return NULL; | ||
} | ||
|
||
void LogFlushThreads(void) | ||
{ | ||
if (0 == OutputFlushInterval()) { | ||
SCLogConfig("log flusher thread not used with heartbeat.output-flush-interval of 0"); | ||
return; | ||
} | ||
|
||
ThreadVars *tv_log_flush = | ||
TmThreadCreateMgmtThread(thread_name_heartbeat, LogFlusherWakeupThread, 1); | ||
if (!tv_log_flush || (TmThreadSpawn(tv_log_flush) != 0)) { | ||
FatalError("Unable to create and start log flush thread"); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
/* Copyright (C) 2024 Open Information Security Foundation | ||
* | ||
* You can copy, redistribute or modify this Program under the terms of | ||
* the GNU General Public License version 2 as published by the Free | ||
* Software Foundation. | ||
* | ||
* 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 | ||
* version 2 along with this program; if not, write to the Free Software | ||
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA | ||
* 02110-1301, USA. | ||
*/ | ||
|
||
/** | ||
* \file | ||
* | ||
* \author Jeff Lucovsky <[email protected]> | ||
*/ | ||
#ifndef SURICATA_LOG_FLUSH_H__ | ||
#define SURICATA_LOG_FLUSH_H__ | ||
void LogFlushThreads(void); | ||
#endif /* SURICATA_LOG_FLUSH_H__ */ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.