From 74e7cc9058782f729f26287c42717452d60139fb Mon Sep 17 00:00:00 2001 From: Artem Prilutskiy Date: Thu, 24 Mar 2016 16:52:03 +0300 Subject: [PATCH] Added support of Launchd --- CronosAgent.c | 33 +++++++++++++++++++++++++++++++-- 1 file changed, 31 insertions(+), 2 deletions(-) diff --git a/CronosAgent.c b/CronosAgent.c index 644f07b..14576e6 100644 --- a/CronosAgent.c +++ b/CronosAgent.c @@ -27,6 +27,8 @@ #endif #ifdef __MACH__ +#include +#include #include #include #include @@ -66,10 +68,13 @@ #define CAST(type, value) const_cast(value) #else #define CAST(type, value) (type)value + +#ifndef bool #define bool int #define true 1 #define false 0 #endif +#endif #ifdef __linux__ #define CHECK(event, handle) (event->data.fd == handle) @@ -216,9 +221,7 @@ int main(int argc, const char* argv[]) " --service-mode \n" " bit 0 - print to standard output\n" " bit 1 - print to system log\n" -#ifdef __linux__ " bit 2 - run as daemon\n" -#endif "\n", argv[0]); return EXIT_FAILURE; @@ -232,6 +235,32 @@ int main(int argc, const char* argv[]) return EXIT_FAILURE; } #endif +#ifdef __MACH__ + if (serviceMode & MODE_DAEMON) + { + launch_data_t request = launch_data_new_string(LAUNCH_KEY_CHECKIN); + launch_data_t response = launch_msg(request); + launch_data_free(request); + if (response == NULL) + { + print("Error calling launchd"); + return EXIT_FAILURE; + } + launch_data_type_t type = launch_data_get_type(response); + launch_data_free(response); + if (type == LAUNCH_DATA_ERRNO) + { + print("launchd returned error %d\n", launch_data_get_errno(response)); + return EXIT_FAILURE; + } + // launchd will return dictionary of job for successful check-in + if (type != LAUNCH_DATA_DICTIONARY) + { + print("Error launching daemon"); + return EXIT_FAILURE; + } + } +#endif // Resolve server address