2019-02-25 08:48:22 -05:00
|
|
|
/* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */
|
2012-05-10 06:06:41 -04:00
|
|
|
|
2012-04-02 02:56:30 -04:00
|
|
|
#ifndef APPLICATION_H
|
|
|
|
|
#define APPLICATION_H
|
2012-03-28 07:24:49 -04:00
|
|
|
|
2014-05-25 10:23:35 -04:00
|
|
|
#include "base/i2-base.hpp"
|
2023-05-05 05:15:34 -04:00
|
|
|
#include "base/atomic.hpp"
|
2018-01-18 07:50:38 -05:00
|
|
|
#include "base/application-ti.hpp"
|
2014-10-19 08:21:12 -04:00
|
|
|
#include "base/logger.hpp"
|
2018-08-09 09:37:23 -04:00
|
|
|
#include "base/configuration.hpp"
|
2023-05-05 05:15:34 -04:00
|
|
|
#include "base/shared-memory.hpp"
|
2023-07-10 04:51:02 -04:00
|
|
|
#include <cstdint>
|
2018-01-04 12:24:45 -05:00
|
|
|
#include <iosfwd>
|
2023-07-10 04:51:02 -04:00
|
|
|
#include <type_traits>
|
2013-03-16 16:18:53 -04:00
|
|
|
|
2014-05-03 14:02:22 -04:00
|
|
|
namespace icinga
|
|
|
|
|
{
|
2012-03-31 09:18:09 -04:00
|
|
|
|
2018-01-04 12:24:45 -05:00
|
|
|
class ThreadPool;
|
|
|
|
|
|
2012-05-15 04:58:14 -04:00
|
|
|
/**
|
|
|
|
|
* Abstract base class for applications.
|
2012-05-18 16:21:28 -04:00
|
|
|
*
|
|
|
|
|
* @ingroup base
|
2012-05-15 04:58:14 -04:00
|
|
|
*/
|
2017-12-31 01:22:16 -05:00
|
|
|
class Application : public ObjectImpl<Application> {
|
2012-05-21 06:53:38 -04:00
|
|
|
public:
|
2014-11-02 18:44:04 -05:00
|
|
|
DECLARE_OBJECT(Application);
|
2012-05-21 06:53:38 -04:00
|
|
|
|
2018-01-03 22:25:35 -05:00
|
|
|
static boost::signals2::signal<void ()> OnReopenLogs;
|
2014-05-22 05:22:30 -04:00
|
|
|
|
2018-01-03 23:12:56 -05:00
|
|
|
~Application() override;
|
2012-03-28 07:24:49 -04:00
|
|
|
|
2018-01-03 22:25:35 -05:00
|
|
|
static void InitializeBase();
|
|
|
|
|
static void UninitializeBase();
|
2014-05-03 14:02:22 -04:00
|
|
|
|
2018-01-03 22:25:35 -05:00
|
|
|
static Application::Ptr GetInstance();
|
2012-05-21 06:53:38 -04:00
|
|
|
|
2014-08-04 10:43:34 -04:00
|
|
|
static void Exit(int rc);
|
2014-08-04 10:26:17 -04:00
|
|
|
|
2018-01-03 22:25:35 -05:00
|
|
|
int Run();
|
2012-05-15 04:58:14 -04:00
|
|
|
|
2012-09-17 08:47:43 -04:00
|
|
|
/**
|
|
|
|
|
* Starts the application.
|
|
|
|
|
*
|
|
|
|
|
* @returns The exit code of the application.
|
|
|
|
|
*/
|
2018-01-03 22:25:35 -05:00
|
|
|
virtual int Main() = 0;
|
2012-03-28 07:24:49 -04:00
|
|
|
|
2018-01-03 22:25:35 -05:00
|
|
|
static void SetResourceLimits();
|
2013-12-05 05:04:47 -05:00
|
|
|
|
2018-01-03 22:25:35 -05:00
|
|
|
static int GetArgC();
|
2013-02-14 10:18:58 -05:00
|
|
|
static void SetArgC(int argc);
|
|
|
|
|
|
2018-01-03 22:25:35 -05:00
|
|
|
static char **GetArgV();
|
2013-02-14 10:18:58 -05:00
|
|
|
static void SetArgV(char **argv);
|
|
|
|
|
|
2018-01-03 22:25:35 -05:00
|
|
|
static void InstallExceptionHandlers();
|
2013-01-30 05:51:15 -05:00
|
|
|
|
2018-01-03 22:25:35 -05:00
|
|
|
static void RequestShutdown();
|
|
|
|
|
static void RequestRestart();
|
|
|
|
|
static void RequestReopenLogs();
|
2012-03-31 09:18:09 -04:00
|
|
|
|
2019-07-15 07:59:17 -04:00
|
|
|
#ifndef _WIN32
|
|
|
|
|
static void SetUmbrellaProcess(pid_t pid);
|
|
|
|
|
#endif /* _WIN32 */
|
|
|
|
|
|
2018-01-03 22:25:35 -05:00
|
|
|
static bool IsShuttingDown();
|
2019-05-03 06:44:29 -04:00
|
|
|
static bool IsRestarting();
|
2016-08-17 13:24:22 -04:00
|
|
|
|
2014-05-23 05:56:30 -04:00
|
|
|
static void SetDebuggingSeverity(LogSeverity severity);
|
2018-01-03 22:25:35 -05:00
|
|
|
static LogSeverity GetDebuggingSeverity();
|
2014-05-23 05:56:30 -04:00
|
|
|
|
2018-01-04 12:24:45 -05:00
|
|
|
void UpdatePidFile(const String& filename);
|
|
|
|
|
void UpdatePidFile(const String& filename, pid_t pid);
|
2014-05-18 10:23:16 -04:00
|
|
|
void ClosePidFile(bool unlink);
|
2014-04-13 18:16:48 -04:00
|
|
|
static pid_t ReadPidFile(const String& filename);
|
2012-07-12 11:03:34 -04:00
|
|
|
|
2012-08-14 06:51:51 -04:00
|
|
|
static String GetExePath(const String& argv0);
|
|
|
|
|
|
2017-08-22 04:26:23 -04:00
|
|
|
#ifdef _WIN32
|
2018-01-03 22:25:35 -05:00
|
|
|
static bool IsProcessElevated();
|
2017-08-22 04:26:23 -04:00
|
|
|
#endif /* _WIN32 */
|
|
|
|
|
|
2018-01-03 22:25:35 -05:00
|
|
|
static int GetDefaultRLimitFiles();
|
|
|
|
|
static int GetDefaultRLimitProcesses();
|
|
|
|
|
static int GetDefaultRLimitStack();
|
2017-06-21 05:36:14 -04:00
|
|
|
|
2019-04-15 10:56:30 -04:00
|
|
|
static double GetReloadTimeout();
|
2018-01-16 06:58:45 -05:00
|
|
|
|
2018-01-03 22:25:35 -05:00
|
|
|
static ThreadPool& GetTP();
|
2013-02-15 00:47:26 -05:00
|
|
|
|
2018-01-03 22:25:35 -05:00
|
|
|
static String GetAppVersion();
|
|
|
|
|
static String GetAppSpecVersion();
|
2013-10-09 02:46:10 -04:00
|
|
|
|
2018-08-10 04:15:41 -04:00
|
|
|
static String GetAppEnvironment();
|
|
|
|
|
static void SetAppEnvironment(const String& name);
|
|
|
|
|
|
2018-01-03 22:25:35 -05:00
|
|
|
static double GetStartTime();
|
2013-10-26 03:41:45 -04:00
|
|
|
static void SetStartTime(double ts);
|
|
|
|
|
|
2020-01-31 10:49:49 -05:00
|
|
|
static double GetUptime();
|
|
|
|
|
|
2018-01-03 22:25:35 -05:00
|
|
|
static bool GetScriptDebuggerEnabled();
|
2015-11-05 08:29:45 -05:00
|
|
|
static void SetScriptDebuggerEnabled(bool enabled);
|
|
|
|
|
|
2018-01-03 22:25:35 -05:00
|
|
|
static double GetLastReloadFailed();
|
2016-05-11 10:07:28 -04:00
|
|
|
static void SetLastReloadFailed(double ts);
|
|
|
|
|
|
2014-12-20 09:29:04 -05:00
|
|
|
static void DisplayInfoMessage(std::ostream& os, bool skipVersion = false);
|
2014-07-23 03:30:56 -04:00
|
|
|
|
2012-05-21 17:42:54 -04:00
|
|
|
protected:
|
2018-01-03 23:12:56 -05:00
|
|
|
void OnConfigLoaded() override;
|
|
|
|
|
void Stop(bool runtimeRemoved) override;
|
2013-08-20 05:06:04 -04:00
|
|
|
|
2018-01-03 22:25:35 -05:00
|
|
|
void RunEventLoop();
|
2012-05-21 17:42:54 -04:00
|
|
|
|
2018-01-03 22:25:35 -05:00
|
|
|
pid_t StartReloadProcess();
|
2014-04-27 15:47:25 -04:00
|
|
|
|
2018-01-03 22:25:35 -05:00
|
|
|
virtual void OnShutdown();
|
2014-08-04 10:26:17 -04:00
|
|
|
|
2025-10-17 08:08:06 -04:00
|
|
|
void ValidateName(const Lazy<String>& lvalue, const ValidationUtils& utils) override final;
|
2015-09-22 12:18:29 -04:00
|
|
|
|
2012-05-21 17:42:54 -04:00
|
|
|
private:
|
2014-11-08 15:17:16 -05:00
|
|
|
static Application::Ptr m_Instance; /**< The application instance. */
|
2012-05-21 17:42:54 -04:00
|
|
|
|
2017-12-19 09:50:05 -05:00
|
|
|
static bool m_ShuttingDown; /**< Whether the application is in the process of shutting down. */
|
2014-05-17 17:07:10 -04:00
|
|
|
static bool m_RequestRestart; /**< A restart was requested through SIGHUP */
|
2017-12-19 09:50:05 -05:00
|
|
|
static pid_t m_ReloadProcess; /**< The PID of a subprocess doing a reload, only valid when l_Restarting==true */
|
2014-05-22 05:22:30 -04:00
|
|
|
static bool m_RequestReopenLogs; /**< Whether we should re-open log files. */
|
2014-05-17 17:07:10 -04:00
|
|
|
|
2019-07-15 07:59:17 -04:00
|
|
|
#ifndef _WIN32
|
2019-07-16 05:11:10 -04:00
|
|
|
static pid_t m_UmbrellaProcess; /**< The PID of the Icinga umbrella process */
|
2019-07-15 07:59:17 -04:00
|
|
|
#endif /* _WIN32 */
|
|
|
|
|
|
2013-02-14 10:18:58 -05:00
|
|
|
static int m_ArgC; /**< The number of command-line arguments. */
|
|
|
|
|
static char **m_ArgV; /**< Command-line arguments. */
|
2019-07-15 10:08:08 -04:00
|
|
|
FILE *m_PidFile = nullptr; /**< The PID file */
|
2012-06-05 09:05:15 -04:00
|
|
|
static bool m_Debugging; /**< Whether debugging is enabled. */
|
2014-05-23 05:56:30 -04:00
|
|
|
static LogSeverity m_DebuggingSeverity; /**< Whether debugging severity is set. */
|
2013-10-26 03:41:45 -04:00
|
|
|
static double m_StartTime;
|
2016-05-11 06:50:08 -04:00
|
|
|
static double m_MainTime;
|
2015-11-05 08:29:45 -05:00
|
|
|
static bool m_ScriptDebuggerEnabled;
|
2023-05-05 05:15:34 -04:00
|
|
|
#ifdef _WIN32
|
2016-05-11 10:07:28 -04:00
|
|
|
static double m_LastReloadFailed;
|
2023-05-05 05:15:34 -04:00
|
|
|
#else /* _WIN32 */
|
2023-07-10 04:51:02 -04:00
|
|
|
typedef Atomic<std::conditional_t<Atomic<double>::is_always_lock_free, double, uint32_t>> AtomicTs;
|
2023-05-05 05:15:34 -04:00
|
|
|
static_assert(AtomicTs::is_always_lock_free);
|
|
|
|
|
static SharedMemory<AtomicTs> m_LastReloadFailed;
|
|
|
|
|
#endif /* _WIN32 */
|
2012-05-21 17:42:54 -04:00
|
|
|
|
2019-07-12 07:45:54 -04:00
|
|
|
#ifdef _WIN32
|
2012-05-21 17:42:54 -04:00
|
|
|
static BOOL WINAPI CtrlHandler(DWORD type);
|
2013-03-07 09:00:26 -05:00
|
|
|
static LONG WINAPI SEHUnhandledExceptionFilter(PEXCEPTION_POINTERS exi);
|
2012-05-21 17:42:54 -04:00
|
|
|
#endif /* _WIN32 */
|
2012-09-25 09:24:14 -04:00
|
|
|
|
2014-12-20 09:29:04 -05:00
|
|
|
static void DisplayBugMessage(std::ostream& os);
|
2013-02-01 13:11:15 -05:00
|
|
|
|
2013-03-07 09:00:26 -05:00
|
|
|
static void SigAbrtHandler(int signum);
|
2014-05-22 05:22:30 -04:00
|
|
|
static void SigUsr1Handler(int signum);
|
2018-01-03 22:25:35 -05:00
|
|
|
static void ExceptionHandler();
|
2014-12-20 09:29:04 -05:00
|
|
|
|
2018-01-03 22:25:35 -05:00
|
|
|
static String GetCrashReportFilename();
|
2015-03-03 07:53:11 -05:00
|
|
|
|
2015-08-08 03:40:16 -04:00
|
|
|
static void AttachDebugger(const String& filename, bool interactive);
|
2012-03-28 07:24:49 -04:00
|
|
|
};
|
|
|
|
|
|
2012-04-22 10:45:31 -04:00
|
|
|
}
|
2012-03-28 07:24:49 -04:00
|
|
|
|
2012-04-02 02:56:30 -04:00
|
|
|
#endif /* APPLICATION_H */
|