2016-07-18 16:30:11 +02:00
|
|
|
/* wrapper.c -- C code booting Guile
|
2015-08-16 10:33:37 +02:00
|
|
|
Copyright (C) 2003, 2014 Dale Mellor
|
2016-07-18 16:30:11 +02:00
|
|
|
Copyright (C) 2015, 2016 Mathieu Lirzin
|
2015-08-16 10:33:37 +02:00
|
|
|
|
|
|
|
|
This file is part of GNU Mcron.
|
|
|
|
|
|
|
|
|
|
GNU Mcron is free software: you can redistribute it and/or modify
|
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
|
|
GNU Mcron 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
|
|
|
|
|
along with GNU Mcron. If not, see <http://www.gnu.org/licenses/>. */
|
|
|
|
|
|
2015-09-05 14:46:20 +02:00
|
|
|
/* This C code represents a thin wrapper around the Guile code of Mcron. It
|
|
|
|
|
is needed because the crontab personality requires SUID which is not
|
|
|
|
|
permitted for executable scripts. */
|
2015-08-16 10:33:37 +02:00
|
|
|
|
|
|
|
|
#include <libguile.h>
|
|
|
|
|
#include <signal.h>
|
2015-09-05 13:20:53 +02:00
|
|
|
#include <stdlib.h>
|
2015-08-16 10:33:37 +02:00
|
|
|
#include <string.h>
|
|
|
|
|
|
2015-09-05 13:14:03 +02:00
|
|
|
/* Forward declarations. */
|
2015-09-05 14:52:01 +02:00
|
|
|
static void inner_main (void *closure, int argc, char **argv);
|
|
|
|
|
static void react_to_terminal_signal (int sig);
|
|
|
|
|
static SCM set_cron_signals (void);
|
2015-09-05 13:14:03 +02:00
|
|
|
|
|
|
|
|
int
|
|
|
|
|
main (int argc, char **argv)
|
|
|
|
|
{
|
|
|
|
|
scm_boot_guile (argc, argv, inner_main, 0);
|
|
|
|
|
|
2015-09-05 13:20:53 +02:00
|
|
|
return EXIT_SUCCESS;
|
2015-09-05 13:14:03 +02:00
|
|
|
}
|
|
|
|
|
|
2015-09-05 14:46:20 +02:00
|
|
|
/* Launch the Mcron Guile main program. */
|
2015-09-05 14:52:01 +02:00
|
|
|
static void
|
2015-09-05 13:14:03 +02:00
|
|
|
inner_main (void *closure, int argc, char **argv)
|
2015-08-16 10:33:37 +02:00
|
|
|
{
|
2015-10-17 20:05:08 +02:00
|
|
|
/* Set Guile load paths to ensure that Mcron modules will be found. */
|
|
|
|
|
if (getenv ("MCRON_UNINSTALLED") == NULL)
|
|
|
|
|
{
|
|
|
|
|
scm_c_eval_string ("(set! %load-path (cons \""
|
|
|
|
|
PACKAGE_LOAD_PATH "\" %load-path))");
|
|
|
|
|
scm_c_eval_string ("(set! %load-compiled-path (cons \""
|
|
|
|
|
PACKAGE_LOAD_PATH "\" %load-compiled-path))");
|
|
|
|
|
}
|
all: Separate programs in different executables.
This improves readability and complies with the GNU Coding Standards by
making the behavior of the programs independent of the name used to
invoke them.
* src/mcron/scripts/cron.scm: New file.
* src/mcron/scripts/crontab.scm: Likewise.
* src/mcron/scripts/mcron.scm: Likewise.
* Makefile.am (dist_mcronmodule_DATA): Remove 'src/mcron/crontab.scm'.
(bin_PROGRAMS): Add 'crontab'.
(sbin_PROGRAMS): Add 'cron'.
(mcron_CFLAGS, mcron_LDADD): Rename to ...
(AM_CFLAGS, LDADD): ... these.
(cron_SOURCES, cron_CPPFLAGS, cron_DEPENDENCIES)
(crontab_SOURCES, crontab_CPPFLAGS, crontab_DEPENDENCIES)
(mcron_CPPFLAGS, mcronscriptdir, dist_mcronscript_DATA): New variables.
(modules): Redefine it in terms of other '_DATA' variables.
* src/mcron/crontab.scm: Remove file.
* src/mcron/main.scm (parse-args): New procedure.
(command-name, command-type, options): Remove.
(show-version): Adapt.
(show-help, process-files-in-system-directory, cron-file-descriptors)
(main, process-user-file, process-files-in-user-directory): Move
procedures in the new files.
* src/mcron.c (inner_main): Define the current module at compile time.
* TODO: Update.
* .gitignore: Likewise.
2016-05-09 14:50:29 +02:00
|
|
|
scm_set_current_module (scm_c_resolve_module ("mcron scripts " PROGRAM));
|
2015-09-05 14:46:20 +02:00
|
|
|
/* Register set_cron_signals to be called from Guile. */
|
2015-09-05 13:14:03 +02:00
|
|
|
scm_c_define_gsubr ("c-set-cron-signals", 0, 0, 0, set_cron_signals);
|
|
|
|
|
scm_c_eval_string ("(main)");
|
2015-08-16 10:33:37 +02:00
|
|
|
}
|
|
|
|
|
|
2015-09-05 14:46:20 +02:00
|
|
|
/* Set up all the signal handlers as required by the cron personality. This
|
|
|
|
|
is necessary to perform the signal processing in C because the sigaction
|
|
|
|
|
function won't work when called from Guile. */
|
2015-09-05 14:52:01 +02:00
|
|
|
static SCM
|
2015-08-16 10:33:37 +02:00
|
|
|
set_cron_signals ()
|
|
|
|
|
{
|
|
|
|
|
static struct sigaction sa;
|
|
|
|
|
|
|
|
|
|
memset (&sa, 0, sizeof (sa));
|
|
|
|
|
sa.sa_handler = react_to_terminal_signal;
|
|
|
|
|
sigaction (SIGTERM, &sa, 0);
|
|
|
|
|
sigaction (SIGINT, &sa, 0);
|
|
|
|
|
sigaction (SIGQUIT, &sa, 0);
|
|
|
|
|
sigaction (SIGHUP, &sa, 0);
|
|
|
|
|
|
|
|
|
|
return SCM_BOOL_T;
|
|
|
|
|
}
|
|
|
|
|
|
2015-09-05 14:46:20 +02:00
|
|
|
/* Handle signal SIG and exit. All signals that mcron handles will produce
|
|
|
|
|
the same behavior so we don't need to use SIG in the implementation. */
|
2015-09-05 14:52:01 +02:00
|
|
|
static void
|
2015-09-05 13:14:03 +02:00
|
|
|
react_to_terminal_signal (int sig)
|
2015-08-16 10:33:37 +02:00
|
|
|
{
|
2015-09-05 13:14:03 +02:00
|
|
|
scm_c_eval_string ("(delete-run-file)");
|
2015-09-05 13:20:53 +02:00
|
|
|
exit (EXIT_FAILURE);
|
2015-08-16 10:33:37 +02:00
|
|
|
}
|