2011-08-20 19:03:38 +05:30
|
|
|
/*
|
2021-12-05 21:05:27 +05:30
|
|
|
* SPDX-FileCopyrightText: 2011 , Jonathan Nieder
|
2011-08-20 19:03:38 +05:30
|
|
|
*
|
2021-12-05 21:05:27 +05:30
|
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
2011-08-20 19:03:38 +05:30
|
|
|
*/
|
|
|
|
|
|
|
|
#include <config.h>
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/wait.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <errno.h>
|
2011-09-19 02:32:43 +05:30
|
|
|
#include <string.h>
|
2011-08-20 19:03:38 +05:30
|
|
|
#include "exitcodes.h"
|
2011-09-19 02:32:43 +05:30
|
|
|
#include "prototypes.h"
|
2011-08-20 19:03:38 +05:30
|
|
|
|
2021-11-29 05:07:53 +05:30
|
|
|
#include "shadowlog_internal.h"
|
|
|
|
|
2011-10-19 01:53:33 +05:30
|
|
|
int run_command (const char *cmd, const char *argv[],
|
|
|
|
/*@null@*/const char *envp[], /*@out@*/int *status)
|
2011-08-20 19:03:38 +05:30
|
|
|
{
|
|
|
|
pid_t pid, wpid;
|
|
|
|
|
2011-09-19 02:32:43 +05:30
|
|
|
if (NULL == envp) {
|
2011-08-20 19:03:38 +05:30
|
|
|
envp = (const char **)environ;
|
2011-09-19 02:32:43 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
(void) fflush (stdout);
|
2021-05-09 04:12:14 +05:30
|
|
|
(void) fflush (shadow_logfd);
|
2011-09-19 02:32:43 +05:30
|
|
|
|
2011-08-20 19:03:38 +05:30
|
|
|
pid = fork ();
|
2011-09-19 02:32:43 +05:30
|
|
|
if (0 == pid) {
|
|
|
|
(void) execve (cmd, (char * const *) argv,
|
|
|
|
(char * const *) envp);
|
|
|
|
if (ENOENT == errno) {
|
2011-08-20 19:03:38 +05:30
|
|
|
exit (E_CMD_NOTFOUND);
|
2011-09-19 02:32:43 +05:30
|
|
|
}
|
2021-05-09 04:12:14 +05:30
|
|
|
fprintf (shadow_logfd, "%s: cannot execute %s: %s\n",
|
2021-12-26 04:11:58 +05:30
|
|
|
shadow_progname, cmd, strerror (errno));
|
2011-08-20 19:03:38 +05:30
|
|
|
exit (E_CMD_NOEXEC);
|
|
|
|
} else if ((pid_t)-1 == pid) {
|
2021-05-09 04:12:14 +05:30
|
|
|
fprintf (shadow_logfd, "%s: cannot execute %s: %s\n",
|
2021-12-26 04:11:58 +05:30
|
|
|
shadow_progname, cmd, strerror (errno));
|
2011-08-20 19:03:38 +05:30
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
do {
|
|
|
|
wpid = waitpid (pid, status, 0);
|
2019-05-06 23:56:14 +05:30
|
|
|
if ((pid_t)-1 == wpid && errno == ECHILD)
|
|
|
|
break;
|
2019-05-06 23:53:58 +05:30
|
|
|
} while ( ((pid_t)-1 == wpid && errno == EINTR)
|
|
|
|
|| ((pid_t)-1 != wpid && wpid != pid));
|
2011-08-20 19:03:38 +05:30
|
|
|
|
|
|
|
if ((pid_t)-1 == wpid) {
|
2021-05-09 04:12:14 +05:30
|
|
|
fprintf (shadow_logfd, "%s: waitpid (status: %d): %s\n",
|
2021-12-26 04:11:58 +05:30
|
|
|
shadow_progname, *status, strerror (errno));
|
2011-08-20 19:03:38 +05:30
|
|
|
return -1;
|
|
|
|
}
|
2011-09-19 02:32:43 +05:30
|
|
|
|
2011-08-20 19:03:38 +05:30
|
|
|
return 0;
|
|
|
|
}
|
2011-09-19 02:32:43 +05:30
|
|
|
|