mirror of
git://git.gnupg.org/gnupg.git
synced 2025-07-03 22:56:33 +02:00
Use gpgrt_process_spawn API from libgpg-error.
* agent/genkey.c (do_check_passphrase_pattern): Use the gpgrt API. * common/asshelp.c (start_new_service): Ditto. * common/exechelp.h: Remove gnupg_process_spawn API. * common/exechelp-posix.c: Remove gnupg_process_spawn implementation. * common/exechelp-w32.c: Likewise. * common/exectool.c (gnupg_exec_tool_stream): Use the gpgrt API. * common/t-exechelp.c (test_pipe_stream): Remove. * dirmngr/ldap-wrapper.c (destroy_wrapper, ldap_reaper_thread): Use the gpgrt API. (ldap_wrapper_connection_cleanup, ldap_wrapper): Ditto. * dirmngr/ldap.c, g10/call-keyboxd.c: No need to include exechelp.h. * g10/photoid.c (run_with_pipe, show_photo): Use the gpgrt API. * g13/be-encfs.c (run_umount_helper, run_encfs_tool): Ditto. * g13/g13.c, g13/mount.c, g13/runner.c: No need to include exechelp.h. * scd/apdu.c: No need to include exechelp.h. * scd/app.c (report_change): Use the gpgrt API. * sm/export.c, sm/import.c: No need to include exechelp.h. * tests/gpgscm/ffi.c (proc_object_finalize, proc_wrap) (do_process_spawn_io, do_process_spawn_fd, do_process_wait): Use the gpgrt API. * tools/gpg-auth.c: No need to include exechelp.h. * tools/gpg-card.c (cmd_gpg): Use the gpgrt API. * tools/gpg-connect-agent.c: No need to include exechelp.h. * tools/gpg-mail-tube.c (mail_tube_encrypt, prepare_for_appimage) (start_gpg_encrypt): Use the gpgrt API. * tools/gpgconf-comp.c (gpg_agent_runtime_change) (scdaemon_runtime_change, tpm2daemon_runtime_change) (dirmngr_runtime_change, keyboxd_runtime_change) (gc_component_launch, gc_component_check_options) (retrieve_options_from_program): Ditto. * tools/gpgconf.c (show_versions_via_dirmngr): Ditto. * tools/gpgtar-create.c (gpgtar_create): Ditto. * tools/gpgtar-extract.c (gpgtar_extract): Ditto. * tools/gpgtar-list.c (gpgtar_list): Ditto. -- GnuPG-bug-id: 7192 Signed-off-by: NIIBE Yutaka <gniibe@fsij.org>
This commit is contained in:
parent
c333e9dad6
commit
953dd67368
29 changed files with 204 additions and 2092 deletions
|
@ -357,728 +357,3 @@ gnupg_close_pipe (int fd)
|
|||
if (fd != -1)
|
||||
close (fd);
|
||||
}
|
||||
|
||||
#include <sys/socket.h>
|
||||
|
||||
struct gnupg_process {
|
||||
const char *pgmname;
|
||||
unsigned int terminated :1; /* or detached */
|
||||
unsigned int flags;
|
||||
pid_t pid;
|
||||
int fd_in;
|
||||
int fd_out;
|
||||
int fd_err;
|
||||
int wstatus;
|
||||
};
|
||||
|
||||
static int gnupg_process_syscall_func_initialized;
|
||||
|
||||
/* Functions called before and after blocking syscalls. */
|
||||
static void (*pre_syscall_func) (void);
|
||||
static void (*post_syscall_func) (void);
|
||||
|
||||
static void
|
||||
check_syscall_func (void)
|
||||
{
|
||||
if (!gnupg_process_syscall_func_initialized)
|
||||
{
|
||||
gpgrt_get_syscall_clamp (&pre_syscall_func, &post_syscall_func);
|
||||
gnupg_process_syscall_func_initialized = 1;
|
||||
}
|
||||
}
|
||||
|
||||
static void
|
||||
pre_syscall (void)
|
||||
{
|
||||
if (pre_syscall_func)
|
||||
pre_syscall_func ();
|
||||
}
|
||||
|
||||
static void
|
||||
post_syscall (void)
|
||||
{
|
||||
if (post_syscall_func)
|
||||
post_syscall_func ();
|
||||
}
|
||||
|
||||
|
||||
static gpg_err_code_t
|
||||
do_create_socketpair (int filedes[2])
|
||||
{
|
||||
gpg_error_t err = 0;
|
||||
|
||||
pre_syscall ();
|
||||
if (socketpair (AF_LOCAL, SOCK_STREAM, 0, filedes) == -1)
|
||||
{
|
||||
err = gpg_err_code_from_syserror ();
|
||||
filedes[0] = filedes[1] = -1;
|
||||
}
|
||||
post_syscall ();
|
||||
|
||||
return err;
|
||||
}
|
||||
|
||||
static int
|
||||
posix_open_null (int for_write)
|
||||
{
|
||||
int fd;
|
||||
|
||||
fd = open ("/dev/null", for_write? O_WRONLY : O_RDONLY);
|
||||
if (fd == -1)
|
||||
log_fatal ("failed to open '/dev/null': %s\n", strerror (errno));
|
||||
return fd;
|
||||
}
|
||||
|
||||
struct gnupg_spawn_actions {
|
||||
int fd[3];
|
||||
const int *except_fds;
|
||||
char **environ;
|
||||
void (*atfork) (void *);
|
||||
void *atfork_arg;
|
||||
};
|
||||
|
||||
gpg_err_code_t
|
||||
gnupg_spawn_actions_new (gnupg_spawn_actions_t *r_act)
|
||||
{
|
||||
gnupg_spawn_actions_t act;
|
||||
int i;
|
||||
|
||||
*r_act = NULL;
|
||||
|
||||
act = xtrycalloc (1, sizeof (struct gnupg_spawn_actions));
|
||||
if (act == NULL)
|
||||
return gpg_err_code_from_syserror ();
|
||||
|
||||
for (i = 0; i <= 2; i++)
|
||||
act->fd[i] = -1;
|
||||
|
||||
*r_act = act;
|
||||
return 0;
|
||||
}
|
||||
|
||||
void
|
||||
gnupg_spawn_actions_release (gnupg_spawn_actions_t act)
|
||||
{
|
||||
if (!act)
|
||||
return;
|
||||
|
||||
xfree (act);
|
||||
}
|
||||
|
||||
void
|
||||
gnupg_spawn_actions_set_environ (gnupg_spawn_actions_t act,
|
||||
char **environ_for_child)
|
||||
{
|
||||
act->environ = environ_for_child;
|
||||
}
|
||||
|
||||
void
|
||||
gnupg_spawn_actions_set_atfork (gnupg_spawn_actions_t act,
|
||||
void (*atfork)(void *), void *arg)
|
||||
{
|
||||
act->atfork = atfork;
|
||||
act->atfork_arg = arg;
|
||||
}
|
||||
|
||||
void
|
||||
gnupg_spawn_actions_set_redirect (gnupg_spawn_actions_t act,
|
||||
int in, int out, int err)
|
||||
{
|
||||
act->fd[0] = in;
|
||||
act->fd[1] = out;
|
||||
act->fd[2] = err;
|
||||
}
|
||||
|
||||
void
|
||||
gnupg_spawn_actions_set_inherit_fds (gnupg_spawn_actions_t act,
|
||||
const int *fds)
|
||||
{
|
||||
act->except_fds = fds;
|
||||
}
|
||||
|
||||
static void
|
||||
my_exec (const char *pgmname, const char *argv[], gnupg_spawn_actions_t act)
|
||||
{
|
||||
int i;
|
||||
|
||||
/* Assign /dev/null to unused FDs. */
|
||||
for (i = 0; i <= 2; i++)
|
||||
if (act->fd[i] == -1)
|
||||
act->fd[i] = posix_open_null (i);
|
||||
|
||||
/* Connect the standard files. */
|
||||
for (i = 0; i <= 2; i++)
|
||||
if (act->fd[i] != i)
|
||||
{
|
||||
if (dup2 (act->fd[i], i) == -1)
|
||||
log_fatal ("dup2 std%s failed: %s\n",
|
||||
i==0?"in":i==1?"out":"err", strerror (errno));
|
||||
/*
|
||||
* We don't close act->fd[i] here, but close them by
|
||||
* close_all_fds. Note that there may be same one in three of
|
||||
* act->fd[i].
|
||||
*/
|
||||
}
|
||||
|
||||
/* Close all other files. */
|
||||
close_all_fds (3, act->except_fds);
|
||||
|
||||
if (act->environ)
|
||||
environ = act->environ;
|
||||
|
||||
if (act->atfork)
|
||||
act->atfork (act->atfork_arg);
|
||||
|
||||
execv (pgmname, (char *const *)argv);
|
||||
/* No way to print anything, as we have may have closed all streams. */
|
||||
_exit (127);
|
||||
}
|
||||
|
||||
static gpg_err_code_t
|
||||
spawn_detached (const char *pgmname, const char *argv[],
|
||||
gnupg_spawn_actions_t act)
|
||||
{
|
||||
gpg_err_code_t ec;
|
||||
pid_t pid;
|
||||
|
||||
/* FIXME: Is this GnuPG specific or should we keep it. */
|
||||
if (getuid() != geteuid())
|
||||
{
|
||||
xfree (argv);
|
||||
return GPG_ERR_BUG;
|
||||
}
|
||||
|
||||
if (access (pgmname, X_OK))
|
||||
{
|
||||
ec = gpg_err_code_from_syserror ();
|
||||
xfree (argv);
|
||||
return ec;
|
||||
}
|
||||
|
||||
pre_syscall ();
|
||||
pid = fork ();
|
||||
post_syscall ();
|
||||
if (pid == (pid_t)(-1))
|
||||
{
|
||||
ec = gpg_err_code_from_syserror ();
|
||||
log_error (_("error forking process: %s\n"), gpg_strerror (ec));
|
||||
xfree (argv);
|
||||
return ec;
|
||||
}
|
||||
|
||||
if (!pid)
|
||||
{
|
||||
pid_t pid2;
|
||||
|
||||
if (setsid() == -1 || chdir ("/"))
|
||||
_exit (1);
|
||||
|
||||
pid2 = fork (); /* Double fork to let init take over the new child. */
|
||||
if (pid2 == (pid_t)(-1))
|
||||
_exit (1);
|
||||
if (pid2)
|
||||
_exit (0); /* Let the parent exit immediately. */
|
||||
|
||||
my_exec (pgmname, argv, act);
|
||||
/*NOTREACHED*/
|
||||
}
|
||||
|
||||
pre_syscall ();
|
||||
if (waitpid (pid, NULL, 0) == -1)
|
||||
{
|
||||
post_syscall ();
|
||||
ec = gpg_err_code_from_syserror ();
|
||||
log_error ("waitpid failed in spawn_detached: %s",
|
||||
gpg_strerror (ec));
|
||||
return ec;
|
||||
}
|
||||
else
|
||||
post_syscall ();
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
gpg_err_code_t
|
||||
gnupg_process_spawn (const char *pgmname, const char *argv1[],
|
||||
unsigned int flags, gnupg_spawn_actions_t act,
|
||||
gnupg_process_t *r_process)
|
||||
{
|
||||
gpg_err_code_t ec;
|
||||
gnupg_process_t process;
|
||||
int fd_in[2];
|
||||
int fd_out[2];
|
||||
int fd_err[2];
|
||||
pid_t pid;
|
||||
const char **argv;
|
||||
int i, j;
|
||||
struct gnupg_spawn_actions act_default;
|
||||
|
||||
if (!act)
|
||||
{
|
||||
memset (&act_default, 0, sizeof (act_default));
|
||||
for (i = 0; i <= 2; i++)
|
||||
act_default.fd[i] = -1;
|
||||
act = &act_default;
|
||||
}
|
||||
|
||||
check_syscall_func ();
|
||||
|
||||
if (r_process)
|
||||
*r_process = NULL;
|
||||
|
||||
/* Create the command line argument array. */
|
||||
i = 0;
|
||||
if (argv1)
|
||||
while (argv1[i])
|
||||
i++;
|
||||
argv = xtrycalloc (i+2, sizeof *argv);
|
||||
if (!argv)
|
||||
return gpg_err_code_from_syserror ();
|
||||
argv[0] = strrchr (pgmname, '/');
|
||||
if (argv[0])
|
||||
argv[0]++;
|
||||
else
|
||||
argv[0] = pgmname;
|
||||
|
||||
if (argv1)
|
||||
for (i=0, j=1; argv1[i]; i++, j++)
|
||||
argv[j] = argv1[i];
|
||||
|
||||
if ((flags & GNUPG_PROCESS_DETACHED))
|
||||
{
|
||||
if ((flags & GNUPG_PROCESS_STDFDS_SETTING))
|
||||
{
|
||||
xfree (argv);
|
||||
return GPG_ERR_INV_FLAG;
|
||||
}
|
||||
|
||||
/* In detached case, it must be no R_PROCESS. */
|
||||
if (r_process)
|
||||
{
|
||||
xfree (argv);
|
||||
return GPG_ERR_INV_ARG;
|
||||
}
|
||||
|
||||
return spawn_detached (pgmname, argv, act);
|
||||
}
|
||||
|
||||
process = xtrycalloc (1, sizeof (struct gnupg_process));
|
||||
if (process == NULL)
|
||||
{
|
||||
xfree (argv);
|
||||
return gpg_err_code_from_syserror ();
|
||||
}
|
||||
|
||||
process->pgmname = pgmname;
|
||||
process->flags = flags;
|
||||
|
||||
if ((flags & GNUPG_PROCESS_STDINOUT_SOCKETPAIR))
|
||||
{
|
||||
ec = do_create_socketpair (fd_in);
|
||||
if (ec)
|
||||
{
|
||||
xfree (process);
|
||||
xfree (argv);
|
||||
return ec;
|
||||
}
|
||||
fd_out[0] = dup (fd_in[0]);
|
||||
fd_out[1] = dup (fd_in[1]);
|
||||
}
|
||||
else
|
||||
{
|
||||
if ((flags & GNUPG_PROCESS_STDIN_PIPE))
|
||||
{
|
||||
ec = do_create_pipe (fd_in);
|
||||
if (ec)
|
||||
{
|
||||
xfree (process);
|
||||
xfree (argv);
|
||||
return ec;
|
||||
}
|
||||
}
|
||||
else if ((flags & GNUPG_PROCESS_STDIN_KEEP))
|
||||
{
|
||||
fd_in[0] = 0;
|
||||
fd_in[1] = -1;
|
||||
}
|
||||
else
|
||||
{
|
||||
fd_in[0] = -1;
|
||||
fd_in[1] = -1;
|
||||
}
|
||||
|
||||
if ((flags & GNUPG_PROCESS_STDOUT_PIPE))
|
||||
{
|
||||
ec = do_create_pipe (fd_out);
|
||||
if (ec)
|
||||
{
|
||||
if (fd_in[0] >= 0 && fd_in[0] != 0)
|
||||
close (fd_in[0]);
|
||||
if (fd_in[1] >= 0)
|
||||
close (fd_in[1]);
|
||||
xfree (process);
|
||||
xfree (argv);
|
||||
return ec;
|
||||
}
|
||||
}
|
||||
else if ((flags & GNUPG_PROCESS_STDOUT_KEEP))
|
||||
{
|
||||
fd_out[0] = -1;
|
||||
fd_out[1] = 1;
|
||||
}
|
||||
else
|
||||
{
|
||||
fd_out[0] = -1;
|
||||
fd_out[1] = -1;
|
||||
}
|
||||
}
|
||||
|
||||
if ((flags & GNUPG_PROCESS_STDERR_PIPE))
|
||||
{
|
||||
ec = do_create_pipe (fd_err);
|
||||
if (ec)
|
||||
{
|
||||
if (fd_in[0] >= 0 && fd_in[0] != 0)
|
||||
close (fd_in[0]);
|
||||
if (fd_in[1] >= 0)
|
||||
close (fd_in[1]);
|
||||
if (fd_out[0] >= 0)
|
||||
close (fd_out[0]);
|
||||
if (fd_out[1] >= 0 && fd_out[1] != 1)
|
||||
close (fd_out[1]);
|
||||
xfree (process);
|
||||
xfree (argv);
|
||||
return ec;
|
||||
}
|
||||
}
|
||||
else if ((flags & GNUPG_PROCESS_STDERR_KEEP))
|
||||
{
|
||||
fd_err[0] = -1;
|
||||
fd_err[1] = 2;
|
||||
}
|
||||
else
|
||||
{
|
||||
fd_err[0] = -1;
|
||||
fd_err[1] = -1;
|
||||
}
|
||||
|
||||
pre_syscall ();
|
||||
pid = fork ();
|
||||
post_syscall ();
|
||||
if (pid == (pid_t)(-1))
|
||||
{
|
||||
ec = gpg_err_code_from_syserror ();
|
||||
log_error (_("error forking process: %s\n"), gpg_strerror (ec));
|
||||
if (fd_in[0] >= 0 && fd_in[0] != 0)
|
||||
close (fd_in[0]);
|
||||
if (fd_in[1] >= 0)
|
||||
close (fd_in[1]);
|
||||
if (fd_out[0] >= 0)
|
||||
close (fd_out[0]);
|
||||
if (fd_out[1] >= 0 && fd_out[1] != 1)
|
||||
close (fd_out[1]);
|
||||
if (fd_err[0] >= 0)
|
||||
close (fd_err[0]);
|
||||
if (fd_err[1] >= 0 && fd_err[1] != 2)
|
||||
close (fd_err[1]);
|
||||
xfree (process);
|
||||
xfree (argv);
|
||||
return ec;
|
||||
}
|
||||
|
||||
if (!pid)
|
||||
{
|
||||
if (fd_in[1] >= 0)
|
||||
close (fd_in[1]);
|
||||
if (fd_out[0] >= 0)
|
||||
close (fd_out[0]);
|
||||
if (fd_err[0] >= 0)
|
||||
close (fd_err[0]);
|
||||
|
||||
if (act->fd[0] < 0)
|
||||
act->fd[0] = fd_in[0];
|
||||
if (act->fd[1] < 0)
|
||||
act->fd[1] = fd_out[1];
|
||||
if (act->fd[2] < 0)
|
||||
act->fd[2] = fd_err[1];
|
||||
|
||||
/* Run child. */
|
||||
my_exec (pgmname, argv, act);
|
||||
/*NOTREACHED*/
|
||||
}
|
||||
|
||||
xfree (argv);
|
||||
process->pid = pid;
|
||||
|
||||
if (fd_in[0] >= 0 && fd_in[0] != 0)
|
||||
close (fd_in[0]);
|
||||
if (fd_out[1] >= 0 && fd_out[1] != 1)
|
||||
close (fd_out[1]);
|
||||
if (fd_err[1] >= 0 && fd_err[1] != 2)
|
||||
close (fd_err[1]);
|
||||
process->fd_in = fd_in[1];
|
||||
process->fd_out = fd_out[0];
|
||||
process->fd_err = fd_err[0];
|
||||
process->wstatus = -1;
|
||||
process->terminated = 0;
|
||||
|
||||
if (r_process == NULL)
|
||||
{
|
||||
ec = gnupg_process_wait (process, 1);
|
||||
gnupg_process_release (process);
|
||||
return ec;
|
||||
}
|
||||
|
||||
*r_process = process;
|
||||
return 0;
|
||||
}
|
||||
|
||||
static gpg_err_code_t
|
||||
process_kill (gnupg_process_t process, int sig)
|
||||
{
|
||||
gpg_err_code_t ec = 0;
|
||||
pid_t pid = process->pid;
|
||||
|
||||
pre_syscall ();
|
||||
if (kill (pid, sig) < 0)
|
||||
ec = gpg_err_code_from_syserror ();
|
||||
post_syscall ();
|
||||
return ec;
|
||||
}
|
||||
|
||||
gpg_err_code_t
|
||||
gnupg_process_terminate (gnupg_process_t process)
|
||||
{
|
||||
return process_kill (process, SIGTERM);
|
||||
}
|
||||
|
||||
gpg_err_code_t
|
||||
gnupg_process_get_fds (gnupg_process_t process, unsigned int flags,
|
||||
int *r_fd_in, int *r_fd_out, int *r_fd_err)
|
||||
{
|
||||
(void)flags;
|
||||
if (r_fd_in)
|
||||
{
|
||||
*r_fd_in = process->fd_in;
|
||||
process->fd_in = -1;
|
||||
}
|
||||
if (r_fd_out)
|
||||
{
|
||||
*r_fd_out = process->fd_out;
|
||||
process->fd_out = -1;
|
||||
}
|
||||
if (r_fd_err)
|
||||
{
|
||||
*r_fd_err = process->fd_err;
|
||||
process->fd_err = -1;
|
||||
}
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
gpg_err_code_t
|
||||
gnupg_process_get_streams (gnupg_process_t process, unsigned int flags,
|
||||
gpgrt_stream_t *r_fp_in, gpgrt_stream_t *r_fp_out,
|
||||
gpgrt_stream_t *r_fp_err)
|
||||
{
|
||||
int nonblock = (flags & GNUPG_PROCESS_STREAM_NONBLOCK)? 1: 0;
|
||||
|
||||
if (r_fp_in)
|
||||
{
|
||||
*r_fp_in = es_fdopen (process->fd_in, nonblock? "w,nonblock" : "w");
|
||||
process->fd_in = -1;
|
||||
}
|
||||
if (r_fp_out)
|
||||
{
|
||||
*r_fp_out = es_fdopen (process->fd_out, nonblock? "r,nonblock" : "r");
|
||||
process->fd_out = -1;
|
||||
}
|
||||
if (r_fp_err)
|
||||
{
|
||||
*r_fp_err = es_fdopen (process->fd_err, nonblock? "r,nonblock" : "r");
|
||||
process->fd_err = -1;
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
|
||||
static gpg_err_code_t
|
||||
process_vctl (gnupg_process_t process, unsigned int request, va_list arg_ptr)
|
||||
{
|
||||
switch (request)
|
||||
{
|
||||
case GNUPG_PROCESS_NOP:
|
||||
return 0;
|
||||
|
||||
case GNUPG_PROCESS_GET_PROC_ID:
|
||||
{
|
||||
int *r_id = va_arg (arg_ptr, int *);
|
||||
|
||||
if (r_id == NULL)
|
||||
return GPG_ERR_INV_VALUE;
|
||||
|
||||
*r_id = (int)process->pid;
|
||||
return 0;
|
||||
}
|
||||
|
||||
case GNUPG_PROCESS_GET_EXIT_ID:
|
||||
{
|
||||
int status = process->wstatus;
|
||||
int *r_exit_status = va_arg (arg_ptr, int *);
|
||||
|
||||
if (!process->terminated)
|
||||
return GPG_ERR_UNFINISHED;
|
||||
|
||||
if (WIFEXITED (status))
|
||||
{
|
||||
if (r_exit_status)
|
||||
*r_exit_status = WEXITSTATUS (status);
|
||||
}
|
||||
else
|
||||
*r_exit_status = -1;
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
case GNUPG_PROCESS_GET_PID:
|
||||
{
|
||||
pid_t *r_pid = va_arg (arg_ptr, pid_t *);
|
||||
|
||||
if (r_pid == NULL)
|
||||
return GPG_ERR_INV_VALUE;
|
||||
|
||||
*r_pid = process->pid;
|
||||
return 0;
|
||||
}
|
||||
|
||||
case GNUPG_PROCESS_GET_WSTATUS:
|
||||
{
|
||||
int status = process->wstatus;
|
||||
int *r_if_exited = va_arg (arg_ptr, int *);
|
||||
int *r_if_signaled = va_arg (arg_ptr, int *);
|
||||
int *r_exit_status = va_arg (arg_ptr, int *);
|
||||
int *r_termsig = va_arg (arg_ptr, int *);
|
||||
|
||||
if (!process->terminated)
|
||||
return GPG_ERR_UNFINISHED;
|
||||
|
||||
if (WIFEXITED (status))
|
||||
{
|
||||
if (r_if_exited)
|
||||
*r_if_exited = 1;
|
||||
if (r_if_signaled)
|
||||
*r_if_signaled = 0;
|
||||
if (r_exit_status)
|
||||
*r_exit_status = WEXITSTATUS (status);
|
||||
if (r_termsig)
|
||||
*r_termsig = 0;
|
||||
}
|
||||
else if (WIFSIGNALED (status))
|
||||
{
|
||||
if (r_if_exited)
|
||||
*r_if_exited = 0;
|
||||
if (r_if_signaled)
|
||||
*r_if_signaled = 1;
|
||||
if (r_exit_status)
|
||||
*r_exit_status = 0;
|
||||
if (r_termsig)
|
||||
*r_termsig = WTERMSIG (status);
|
||||
}
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
case GNUPG_PROCESS_KILL:
|
||||
{
|
||||
int sig = va_arg (arg_ptr, int);
|
||||
|
||||
return process_kill (process, sig);
|
||||
}
|
||||
|
||||
default:
|
||||
break;
|
||||
}
|
||||
|
||||
return GPG_ERR_UNKNOWN_COMMAND;
|
||||
}
|
||||
|
||||
gpg_err_code_t
|
||||
gnupg_process_ctl (gnupg_process_t process, unsigned int request, ...)
|
||||
{
|
||||
va_list arg_ptr;
|
||||
gpg_err_code_t ec;
|
||||
|
||||
va_start (arg_ptr, request);
|
||||
ec = process_vctl (process, request, arg_ptr);
|
||||
va_end (arg_ptr);
|
||||
return ec;
|
||||
}
|
||||
|
||||
gpg_err_code_t
|
||||
gnupg_process_wait (gnupg_process_t process, int hang)
|
||||
{
|
||||
gpg_err_code_t ec;
|
||||
int status;
|
||||
pid_t pid;
|
||||
|
||||
if (process->terminated)
|
||||
/* Already terminated. */
|
||||
return 0;
|
||||
|
||||
pre_syscall ();
|
||||
while ((pid = waitpid (process->pid, &status, hang? 0: WNOHANG))
|
||||
== (pid_t)(-1) && errno == EINTR);
|
||||
post_syscall ();
|
||||
|
||||
if (pid == (pid_t)(-1))
|
||||
{
|
||||
ec = gpg_err_code_from_syserror ();
|
||||
log_error (_("waiting for process %d to terminate failed: %s\n"),
|
||||
(int)pid, gpg_strerror (ec));
|
||||
}
|
||||
else if (!pid)
|
||||
{
|
||||
ec = GPG_ERR_TIMEOUT; /* Still running. */
|
||||
}
|
||||
else
|
||||
{
|
||||
process->terminated = 1;
|
||||
process->wstatus = status;
|
||||
ec = 0;
|
||||
}
|
||||
|
||||
return ec;
|
||||
}
|
||||
|
||||
void
|
||||
gnupg_process_release (gnupg_process_t process)
|
||||
{
|
||||
if (!process)
|
||||
return;
|
||||
|
||||
if (!process->terminated)
|
||||
{
|
||||
gnupg_process_terminate (process);
|
||||
gnupg_process_wait (process, 1);
|
||||
}
|
||||
|
||||
xfree (process);
|
||||
}
|
||||
|
||||
gpg_err_code_t
|
||||
gnupg_process_wait_list (gnupg_process_t *process_list, int count, int hang)
|
||||
{
|
||||
gpg_err_code_t ec = 0;
|
||||
int i;
|
||||
|
||||
for (i = 0; i < count; i++)
|
||||
{
|
||||
if (process_list[i]->terminated)
|
||||
continue;
|
||||
|
||||
ec = gnupg_process_wait (process_list[i], hang);
|
||||
if (ec)
|
||||
break;
|
||||
}
|
||||
|
||||
return ec;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue