2018-03-24 22:31:05 +01:00
|
|
|
/* SPDX-License-Identifier: GPL-3.0-or-later */
|
|
|
|
/*
|
|
|
|
* Copyright (C) 2018 - David Oberhollenzer
|
|
|
|
*
|
|
|
|
* This program 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.
|
|
|
|
*
|
|
|
|
* 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
|
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
*/
|
2018-04-22 01:02:27 +02:00
|
|
|
#include "runsvc.h"
|
2018-02-25 14:33:19 +01:00
|
|
|
|
2018-04-22 01:02:27 +02:00
|
|
|
static int runlst_wait(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) {
|
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
|
|
|
int dirfd, ret = EXIT_FAILURE;
|
|
|
|
service_t *svc = NULL;
|
|
|
|
|
|
|
|
if (argc != 3) {
|
|
|
|
fputs("usage: runsvc <directory> <filename>\n", stderr);
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (getppid() != 1) {
|
|
|
|
fputs("must be run by init!\n", stderr);
|
|
|
|
goto out;
|
|
|
|
}
|
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]);
|
|
|
|
goto out;
|
|
|
|
}
|
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)
|
|
|
|
goto out;
|
2018-04-07 15:35:19 +02:00
|
|
|
|
2018-04-22 01:02:27 +02:00
|
|
|
if (svc->exec == NULL) {
|
|
|
|
ret = EXIT_SUCCESS;
|
|
|
|
goto out;
|
2018-02-25 14:33:19 +01:00
|
|
|
}
|
|
|
|
|
2018-04-22 01:02:27 +02:00
|
|
|
if (initenv())
|
|
|
|
goto out;
|
|
|
|
|
2018-09-16 21:52:46 +02:00
|
|
|
if (setup_tty(svc->ctty, (svc->flags & SVC_FLAG_TRUNCATE_OUT) != 0))
|
2018-04-22 01:02:27 +02:00
|
|
|
goto out;
|
|
|
|
|
|
|
|
if (svc->exec->next == NULL)
|
|
|
|
argv_exec(svc->exec);
|
2018-02-25 14:33:19 +01:00
|
|
|
|
2018-04-22 01:02:27 +02:00
|
|
|
ret = runlst_wait(svc->exec);
|
|
|
|
out:
|
|
|
|
delsvc(svc);
|
|
|
|
return ret;
|
2018-02-25 14:33:19 +01:00
|
|
|
}
|