2018-11-23 13:13:23 +01:00
|
|
|
/* SPDX-License-Identifier: ISC */
|
2018-04-22 01:02:27 +02:00
|
|
|
#include "runsvc.h"
|
2018-02-25 14:33:19 +01:00
|
|
|
|
2019-03-20 15:02:29 +01:00
|
|
|
static int run_sequentially(exec_t *list)
|
2018-02-25 14:33:19 +01:00
|
|
|
{
|
|
|
|
pid_t ret, pid;
|
|
|
|
int status;
|
|
|
|
|
2018-04-04 14:58:01 +02:00
|
|
|
for (; list != NULL; list = list->next) {
|
2019-03-20 15:02:29 +01:00
|
|
|
if (list->next == NULL)
|
|
|
|
argv_exec(list);
|
|
|
|
|
2018-02-25 14:33:19 +01:00
|
|
|
pid = fork();
|
|
|
|
|
2018-04-22 01:02:27 +02:00
|
|
|
if (pid == 0)
|
2018-04-11 19:45:26 +02:00
|
|
|
argv_exec(list);
|
2018-02-25 14:33:19 +01:00
|
|
|
|
|
|
|
if (pid == -1) {
|
|
|
|
perror("fork");
|
|
|
|
return EXIT_FAILURE;
|
|
|
|
}
|
|
|
|
|
|
|
|
do {
|
|
|
|
ret = waitpid(pid, &status, 0);
|
|
|
|
} while (ret != pid);
|
|
|
|
|
|
|
|
if (!WIFEXITED(status))
|
|
|
|
return EXIT_FAILURE;
|
|
|
|
|
|
|
|
if (WEXITSTATUS(status) != EXIT_SUCCESS)
|
|
|
|
return WEXITSTATUS(status);
|
|
|
|
}
|
|
|
|
|
|
|
|
return EXIT_SUCCESS;
|
|
|
|
}
|
|
|
|
|
2018-04-22 01:02:27 +02:00
|
|
|
/*****************************************************************************/
|
|
|
|
|
|
|
|
int main(int argc, char **argv)
|
2018-02-25 14:33:19 +01:00
|
|
|
{
|
2018-04-22 01:02:27 +02:00
|
|
|
service_t *svc = NULL;
|
2019-03-20 15:02:29 +01:00
|
|
|
int dirfd;
|
2018-04-22 01:02:27 +02:00
|
|
|
|
|
|
|
if (argc != 3) {
|
|
|
|
fputs("usage: runsvc <directory> <filename>\n", stderr);
|
2019-03-20 15:02:29 +01:00
|
|
|
return EXIT_FAILURE;
|
2018-04-22 01:02:27 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if (getppid() != 1) {
|
|
|
|
fputs("must be run by init!\n", stderr);
|
2019-03-20 15:02:29 +01:00
|
|
|
return EXIT_FAILURE;
|
2018-04-22 01:02:27 +02:00
|
|
|
}
|
2018-02-25 14:33:19 +01:00
|
|
|
|
2018-04-22 01:02:27 +02:00
|
|
|
dirfd = open(argv[1], O_RDONLY | O_DIRECTORY);
|
|
|
|
if (dirfd < 0) {
|
|
|
|
perror(argv[1]);
|
2019-03-20 15:02:29 +01:00
|
|
|
return EXIT_FAILURE;
|
2018-04-22 01:02:27 +02:00
|
|
|
}
|
2018-02-25 14:33:19 +01:00
|
|
|
|
2018-04-22 01:02:27 +02:00
|
|
|
svc = rdsvc(dirfd, argv[2], RDSVC_NO_FNAME | RDSVC_NO_DEPS);
|
|
|
|
close(dirfd);
|
|
|
|
if (svc == NULL)
|
2019-03-20 15:02:29 +01:00
|
|
|
return EXIT_FAILURE;
|
2018-02-25 14:33:19 +01:00
|
|
|
|
2018-04-22 01:02:27 +02:00
|
|
|
if (initenv())
|
2019-03-20 15:02:29 +01:00
|
|
|
return EXIT_FAILURE;
|
2018-04-22 01:02:27 +02:00
|
|
|
|
2018-09-16 21:52:46 +02:00
|
|
|
if (setup_tty(svc->ctty, (svc->flags & SVC_FLAG_TRUNCATE_OUT) != 0))
|
2019-03-20 15:02:29 +01:00
|
|
|
return EXIT_FAILURE;
|
2018-02-25 14:33:19 +01:00
|
|
|
|
2019-03-20 15:02:29 +01:00
|
|
|
return run_sequentially(svc->exec);
|
2018-02-25 14:33:19 +01:00
|
|
|
}
|