X-Git-Url: https://git.librecmc.org/?a=blobdiff_plain;f=src%2Futil%2Fos_priority.c;h=a758f24f1da7678eb006f315a464e24e9458b550;hb=6ede545d597509fefcc3d4fd2ef865bc5f57603f;hp=0f2acca061fcaf42bff06a163d073fca31dff148;hpb=d5f83fb8b9a2ae2797b7b0e46bf6cd346743f4b3;p=oweals%2Fgnunet.git diff --git a/src/util/os_priority.c b/src/util/os_priority.c index 0f2acca06..a758f24f1 100644 --- a/src/util/os_priority.c +++ b/src/util/os_priority.c @@ -1,21 +1,19 @@ /* This file is part of GNUnet - (C) 2002, 2003, 2004, 2005, 2006, 2011 Christian Grothoff (and other contributing authors) + Copyright (C) 2002, 2003, 2004, 2005, 2006, 2011 GNUnet e.V. - GNUnet 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, or (at your - option) any later version. + GNUnet is free software: you can redistribute it and/or modify it + under the terms of the GNU Affero General Public License as published + by the Free Software Foundation, either version 3 of the License, + or (at your option) any later version. GNUnet 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 GNUnet; see the file COPYING. If not, write to the - Free Software Foundation, Inc., 59 Temple Place - Suite 330, - Boston, MA 02111-1307, USA. + Affero General Public License for more details. + + You should have received a copy of the GNU Affero General Public License + along with this program. If not, see . */ /** @@ -29,11 +27,11 @@ #include "disk.h" #include -#define LOG(kind,...) GNUNET_log_from (kind, "util", __VA_ARGS__) +#define LOG(kind,...) GNUNET_log_from (kind, "util-os-priority", __VA_ARGS__) -#define LOG_STRERROR(kind,syscall) GNUNET_log_from_strerror (kind, "util", syscall) +#define LOG_STRERROR(kind,syscall) GNUNET_log_from_strerror (kind, "util-os-priority", syscall) -#define LOG_STRERROR_FILE(kind,syscall,filename) GNUNET_log_from_strerror_file (kind, "util", syscall, filename) +#define LOG_STRERROR_FILE(kind,syscall,filename) GNUNET_log_from_strerror_file (kind, "util-os-priority", syscall, filename) #define GNUNET_OS_CONTROL_PIPE "GNUNET_OS_CONTROL_PIPE" @@ -65,48 +63,75 @@ struct GNUNET_OS_Process */ static struct GNUNET_OS_Process current_process; +/** + * Handle for the #parent_control_handler() Task. + */ +static struct GNUNET_SCHEDULER_Task *pch; + +/** + * Handle for the #shutdown_pch() Task. + */ +static struct GNUNET_SCHEDULER_Task *spch; + + +/** + * This handler is called on shutdown to remove the #pch. + * + * @param cls the `struct GNUNET_DISK_FileHandle` of the control pipe + */ +static void +shutdown_pch (void *cls) +{ + struct GNUNET_DISK_FileHandle *control_pipe = cls; + + GNUNET_SCHEDULER_cancel (pch); + pch = NULL; + GNUNET_DISK_file_close (control_pipe); + control_pipe = NULL; +} + /** * This handler is called when there are control data to be read on the pipe * - * @param cls the 'struct GNUNET_DISK_FileHandle' of the control pipe - * @param tc scheduler context + * @param cls the `struct GNUNET_DISK_FileHandle` of the control pipe */ static void -parent_control_handler (void *cls, - const struct GNUNET_SCHEDULER_TaskContext *tc) +parent_control_handler (void *cls) { struct GNUNET_DISK_FileHandle *control_pipe = cls; char sig; char *pipe_fd; ssize_t ret; - LOG (GNUNET_ERROR_TYPE_DEBUG, "`%s' invoked because of %d\n", __FUNCTION__, - tc->reason); - if (0 != (tc->reason & - (GNUNET_SCHEDULER_REASON_SHUTDOWN | GNUNET_SCHEDULER_REASON_TIMEOUT))) - { - GNUNET_DISK_file_close (control_pipe); - control_pipe = NULL; - return; - } - ret = GNUNET_DISK_file_read (control_pipe, &sig, sizeof (sig)); + pch = NULL; + ret = GNUNET_DISK_file_read (control_pipe, + &sig, + sizeof (sig)); if (sizeof (sig) != ret) { if (-1 == ret) - LOG_STRERROR (GNUNET_ERROR_TYPE_ERROR, "GNUNET_DISK_file_read"); - LOG (GNUNET_ERROR_TYPE_DEBUG, "Closing control pipe\n"); + LOG_STRERROR (GNUNET_ERROR_TYPE_ERROR, + "GNUNET_DISK_file_read"); + LOG (GNUNET_ERROR_TYPE_DEBUG, + "Closing control pipe\n"); GNUNET_DISK_file_close (control_pipe); control_pipe = NULL; + GNUNET_SCHEDULER_cancel (spch); + spch = NULL; return; } pipe_fd = getenv (GNUNET_OS_CONTROL_PIPE); - GNUNET_assert ( (NULL == pipe_fd) || (strlen (pipe_fd) <= 0) ); + GNUNET_assert ( (NULL == pipe_fd) || + (strlen (pipe_fd) <= 0) ); LOG (GNUNET_ERROR_TYPE_DEBUG, - "Got control code %d from parent via pipe %s\n", sig, pipe_fd); - GNUNET_SCHEDULER_add_read_file (GNUNET_TIME_UNIT_FOREVER_REL, - control_pipe, &parent_control_handler, - control_pipe); + "Got control code %d from parent via pipe %s\n", + sig, + pipe_fd); + pch = GNUNET_SCHEDULER_add_read_file (GNUNET_TIME_UNIT_FOREVER_REL, + control_pipe, + &parent_control_handler, + control_pipe); GNUNET_SIGNAL_raise ((int) sig); } @@ -114,22 +139,26 @@ parent_control_handler (void *cls, /** * Task that connects this process to its parent via pipe; * essentially, the parent control handler will read signal numbers - * from the 'GNUNET_OS_CONTROL_PIPE' (as given in an environment + * from the #GNUNET_OS_CONTROL_PIPE (as given in an environment * variable) and raise those signals. * * @param cls closure (unused) - * @param tc scheduler context (unused) */ void -GNUNET_OS_install_parent_control_handler (void *cls, - const struct - GNUNET_SCHEDULER_TaskContext *tc) +GNUNET_OS_install_parent_control_handler (void *cls) { const char *env_buf; char *env_buf_end; struct GNUNET_DISK_FileHandle *control_pipe; uint64_t pipe_fd; + (void) cls; + if (NULL != pch) + { + /* already done, we've been called twice... */ + GNUNET_break (0); + return; + } env_buf = getenv (GNUNET_OS_CONTROL_PIPE); if ( (NULL == env_buf) || (strlen (env_buf) <= 0) ) { @@ -143,7 +172,9 @@ GNUNET_OS_install_parent_control_handler (void *cls, pipe_fd = strtoull (env_buf, &env_buf_end, 16); if ((0 != errno) || (env_buf == env_buf_end)) { - LOG_STRERROR_FILE (GNUNET_ERROR_TYPE_WARNING, "strtoull", env_buf); + LOG_STRERROR_FILE (GNUNET_ERROR_TYPE_WARNING, + "strtoull", + env_buf); putenv (GNUNET_OS_CONTROL_PIPE "="); return; } @@ -155,7 +186,8 @@ GNUNET_OS_install_parent_control_handler (void *cls, #endif { LOG (GNUNET_ERROR_TYPE_ERROR, - "GNUNET_OS_CONTROL_PIPE `%s' contains garbage?\n", env_buf); + "GNUNET_OS_CONTROL_PIPE `%s' contains garbage?\n", + env_buf); putenv (GNUNET_OS_CONTROL_PIPE "="); return; } @@ -166,14 +198,21 @@ GNUNET_OS_install_parent_control_handler (void *cls, #endif if (NULL == control_pipe) { - LOG_STRERROR_FILE (GNUNET_ERROR_TYPE_WARNING, "open", env_buf); + LOG_STRERROR_FILE (GNUNET_ERROR_TYPE_WARNING, + "open", + env_buf); putenv (GNUNET_OS_CONTROL_PIPE "="); return; } LOG (GNUNET_ERROR_TYPE_DEBUG, - "Adding parent control handler pipe `%s' to the scheduler\n", env_buf); - GNUNET_SCHEDULER_add_read_file (GNUNET_TIME_UNIT_FOREVER_REL, control_pipe, - &parent_control_handler, control_pipe); + "Adding parent control handler pipe `%s' to the scheduler\n", + env_buf); + pch = GNUNET_SCHEDULER_add_read_file (GNUNET_TIME_UNIT_FOREVER_REL, + control_pipe, + &parent_control_handler, + control_pipe); + spch = GNUNET_SCHEDULER_add_shutdown (&shutdown_pch, + control_pipe); putenv (GNUNET_OS_CONTROL_PIPE "="); } @@ -181,8 +220,8 @@ GNUNET_OS_install_parent_control_handler (void *cls, /** * Get process structure for current process * - * The pointer it returns points to static memory location and must not be - * deallocated/closed + * The pointer it returns points to static memory location and must + * not be deallocated/closed. * * @return pointer to the process sturcutre for this process */ @@ -207,7 +246,8 @@ GNUNET_OS_process_current () * @return 0 on success, -1 on error */ int -GNUNET_OS_process_kill (struct GNUNET_OS_Process *proc, int sig) +GNUNET_OS_process_kill (struct GNUNET_OS_Process *proc, + int sig) { int ret; char csig; @@ -215,8 +255,13 @@ GNUNET_OS_process_kill (struct GNUNET_OS_Process *proc, int sig) csig = (char) sig; if (NULL != proc->control_pipe) { - LOG (GNUNET_ERROR_TYPE_DEBUG, "Sending signal %d to pid: %u via pipe\n", sig, proc->pid); - ret = GNUNET_DISK_file_write (proc->control_pipe, &csig, sizeof (csig)); + LOG (GNUNET_ERROR_TYPE_DEBUG, + "Sending signal %d to pid: %u via pipe\n", + sig, + proc->pid); + ret = GNUNET_DISK_file_write (proc->control_pipe, + &csig, + sizeof (csig)); if (sizeof (csig) == ret) return 0; } @@ -239,14 +284,17 @@ GNUNET_OS_process_kill (struct GNUNET_OS_Process *proc, int sig) if (0 != GetExitCodeProcess (proc->handle, &exitcode)) must_kill = (exitcode == STILL_ACTIVE) ? GNUNET_YES : GNUNET_NO; if (GNUNET_YES == must_kill) + { if (0 == SafeTerminateProcess (proc->handle, 0, 0)) { DWORD error_code = GetLastError (); - if ((error_code != WAIT_TIMEOUT) && (error_code != ERROR_PROCESS_ABORTED)) + if ( (error_code != WAIT_TIMEOUT) && + (error_code != ERROR_PROCESS_ABORTED) ) { LOG ((error_code == ERROR_ACCESS_DENIED) ? - GNUNET_ERROR_TYPE_INFO : GNUNET_ERROR_TYPE_WARNING, - "SafeTermiateProcess failed with code %lu\n", error_code); + GNUNET_ERROR_TYPE_INFO : GNUNET_ERROR_TYPE_WARNING, + "SafeTermiateProcess failed with code %lu\n", + error_code); /* The problem here is that a process that is already dying * might cause SafeTerminateProcess to fail with * ERROR_ACCESS_DENIED, but the process WILL die eventually. @@ -265,10 +313,14 @@ GNUNET_OS_process_kill (struct GNUNET_OS_Process *proc, int sig) } } } + } } return 0; #else - LOG (GNUNET_ERROR_TYPE_DEBUG, "Sending signal %d to pid: %u via system call\n", sig, proc->pid); + LOG (GNUNET_ERROR_TYPE_DEBUG, + "Sending signal %d to pid: %u via system call\n", + sig, + proc->pid); return PLIBC_KILL (proc->pid, sig); #endif default: @@ -276,12 +328,16 @@ GNUNET_OS_process_kill (struct GNUNET_OS_Process *proc, int sig) errno = EINVAL; return -1; #else - LOG (GNUNET_ERROR_TYPE_DEBUG, "Sending signal %d to pid: %u via system call\n", sig, proc->pid); + LOG (GNUNET_ERROR_TYPE_DEBUG, + "Sending signal %d to pid: %u via system call\n", + sig, + proc->pid); return PLIBC_KILL (proc->pid, sig); #endif } } + /** * Get the pid of the process in question * @@ -297,7 +353,8 @@ GNUNET_OS_process_get_pid (struct GNUNET_OS_Process * proc) /** - * Cleans up process structure contents (OS-dependent) and deallocates it + * Cleans up process structure contents (OS-dependent) and deallocates + * it. * * @param proc pointer to process structure */ @@ -307,12 +364,13 @@ GNUNET_OS_process_destroy (struct GNUNET_OS_Process *proc) if (NULL != proc->control_pipe) GNUNET_DISK_file_close (proc->control_pipe); #if defined (WINDOWS) - if (proc->handle != NULL) + if (NULL != proc->handle) CloseHandle (proc->handle); #endif GNUNET_free (proc); } + #if WINDOWS #include "gnunet_signal_lib.h" @@ -323,6 +381,7 @@ extern GNUNET_SIGNAL_Handler w32_sigchld_handler; */ #define DWORD_WINAPI DWORD WINAPI + /** * @brief Waits for a process to terminate and invokes the SIGCHLD handler * @param proc pointer to process structure @@ -466,7 +525,9 @@ open_dev_null (int target_fd, fd = open ("/dev/null", flags); if (-1 == fd) { - GNUNET_log_strerror_file (GNUNET_ERROR_TYPE_ERROR, "open", "/dev/null"); + GNUNET_log_strerror_file (GNUNET_ERROR_TYPE_ERROR, + "open", + "/dev/null"); return; } if (fd == target_fd) @@ -492,6 +553,7 @@ open_dev_null (int target_fd, * (when they are non-NULL). * @param pipe_stdin pipe to use to send input to child process (or NULL) * @param pipe_stdout pipe to use to get output from child process (or NULL) + * @param pipe_stderr pipe to use for stderr for child process (or NULL) * @param lsocks array of listen sockets to dup systemd-style (or NULL); * must be NULL on platforms where dup is not supported * @param filename name of the binary @@ -503,6 +565,7 @@ start_process (int pipe_control, enum GNUNET_OS_InheritStdioFlags std_inheritance, struct GNUNET_DISK_PipeHandle *pipe_stdin, struct GNUNET_DISK_PipeHandle *pipe_stdout, + struct GNUNET_DISK_PipeHandle *pipe_stderr, const SOCKTYPE *lsocks, const char *filename, char *const argv[]) @@ -523,26 +586,35 @@ start_process (int pipe_control, unsigned int ls; int fd_stdout_write; int fd_stdout_read; + int fd_stderr_write; + int fd_stderr_read; int fd_stdin_read; int fd_stdin_write; - if (GNUNET_SYSERR == GNUNET_OS_check_helper_binary (filename, GNUNET_NO, NULL)) + if (GNUNET_SYSERR == + GNUNET_OS_check_helper_binary (filename, GNUNET_NO, NULL)) return NULL; /* not executable */ if (GNUNET_YES == pipe_control) { struct GNUNET_DISK_PipeHandle *childpipe; int dup_childpipe_read_fd = -1; - childpipe = GNUNET_DISK_pipe (GNUNET_NO, GNUNET_NO, GNUNET_YES, GNUNET_NO); + childpipe = GNUNET_DISK_pipe (GNUNET_NO, GNUNET_NO, + GNUNET_YES, GNUNET_NO); if (NULL == childpipe) return NULL; - childpipe_read = GNUNET_DISK_pipe_detach_end (childpipe, GNUNET_DISK_PIPE_END_READ); - childpipe_write = GNUNET_DISK_pipe_detach_end (childpipe, GNUNET_DISK_PIPE_END_WRITE); + childpipe_read = GNUNET_DISK_pipe_detach_end (childpipe, + GNUNET_DISK_PIPE_END_READ); + childpipe_write = GNUNET_DISK_pipe_detach_end (childpipe, + GNUNET_DISK_PIPE_END_WRITE); GNUNET_DISK_pipe_close (childpipe); - if ((NULL == childpipe_read) || (NULL == childpipe_write) || - (GNUNET_OK != GNUNET_DISK_internal_file_handle_ (childpipe_read, - &childpipe_read_fd, sizeof (int))) || - (-1 == (dup_childpipe_read_fd = dup (childpipe_read_fd)))) + if ( (NULL == childpipe_read) || + (NULL == childpipe_write) || + (GNUNET_OK != + GNUNET_DISK_internal_file_handle_ (childpipe_read, + &childpipe_read_fd, + sizeof (int))) || + (-1 == (dup_childpipe_read_fd = dup (childpipe_read_fd)))) { if (NULL != childpipe_read) GNUNET_DISK_file_close (childpipe_read); @@ -560,6 +632,17 @@ start_process (int pipe_control, childpipe_write = NULL; childpipe_read_fd = -1; } + if (NULL != pipe_stdin) + { + GNUNET_assert (GNUNET_OK == + GNUNET_DISK_internal_file_handle_ (GNUNET_DISK_pipe_handle + (pipe_stdin, GNUNET_DISK_PIPE_END_READ), + &fd_stdin_read, sizeof (int))); + GNUNET_assert (GNUNET_OK == + GNUNET_DISK_internal_file_handle_ (GNUNET_DISK_pipe_handle + (pipe_stdin, GNUNET_DISK_PIPE_END_WRITE), + &fd_stdin_write, sizeof (int))); + } if (NULL != pipe_stdout) { GNUNET_assert (GNUNET_OK == @@ -572,16 +655,18 @@ start_process (int pipe_control, (pipe_stdout, GNUNET_DISK_PIPE_END_READ), &fd_stdout_read, sizeof (int))); } - if (NULL != pipe_stdin) + if (NULL != pipe_stderr) { GNUNET_assert (GNUNET_OK == - GNUNET_DISK_internal_file_handle_ (GNUNET_DISK_pipe_handle - (pipe_stdin, GNUNET_DISK_PIPE_END_READ), - &fd_stdin_read, sizeof (int))); + GNUNET_DISK_internal_file_handle_ (GNUNET_DISK_pipe_handle + (pipe_stderr, + GNUNET_DISK_PIPE_END_READ), + &fd_stderr_read, sizeof (int))); GNUNET_assert (GNUNET_OK == - GNUNET_DISK_internal_file_handle_ (GNUNET_DISK_pipe_handle - (pipe_stdin, GNUNET_DISK_PIPE_END_WRITE), - &fd_stdin_write, sizeof (int))); + GNUNET_DISK_internal_file_handle_ (GNUNET_DISK_pipe_handle + (pipe_stderr, + GNUNET_DISK_PIPE_END_WRITE), + &fd_stderr_write, sizeof (int))); } lscp = NULL; ls = 0; @@ -659,7 +744,14 @@ start_process (int pipe_control, GNUNET_break (0 == close (1)); open_dev_null (1, O_WRONLY); } - if (0 == (std_inheritance & GNUNET_OS_INHERIT_STD_ERR)) + if (NULL != pipe_stderr) + { + GNUNET_break (0 == close (fd_stderr_read)); + if (-1 == dup2 (fd_stderr_write, 2)) + LOG_STRERROR (GNUNET_ERROR_TYPE_ERROR, "dup2"); + GNUNET_break (0 == close (fd_stderr_write)); + } + else if (0 == (std_inheritance & GNUNET_OS_INHERIT_STD_ERR)) { GNUNET_break (0 == close (2)); open_dev_null (2, O_WRONLY); @@ -753,6 +845,7 @@ start_process (int pipe_control, DWORD stdif, stdof, stdef; BOOL bresult; DWORD error_code; + DWORD create_no_window; if (GNUNET_SYSERR == GNUNET_OS_check_helper_binary (filename, GNUNET_NO, NULL)) return NULL; /* not executable */ @@ -997,7 +1090,10 @@ start_process (int pipe_control, &lsocks_read, sizeof (HANDLE)); } else + { lsocks_pipe = NULL; + lsocks_write_fd = NULL; + } env_off = 0; if (GNUNET_YES == pipe_control) @@ -1037,7 +1133,9 @@ start_process (int pipe_control, if (NULL == (wcmd = u8_to_u16 ((uint8_t *) cmd, 1 + strlen (cmd), NULL, &wcmd_len))) { LOG (GNUNET_ERROR_TYPE_DEBUG, - "Failed to convert `%s' from UTF-8 to UTF-16: %d\n", cmd, errno); + "Failed to convert `%s' from UTF-8 to UTF-16: %d\n", + cmd, + errno); GNUNET_free (env_block); GNUNET_free (cmd); free (wpath); @@ -1051,8 +1149,17 @@ start_process (int pipe_control, return NULL; } + create_no_window = 0; + { + HANDLE console_input = CreateFile ("CONIN$", GENERIC_READ, FILE_SHARE_READ | FILE_SHARE_WRITE, NULL, OPEN_EXISTING, 0, NULL); + if (INVALID_HANDLE_VALUE == console_input) + create_no_window = CREATE_NO_WINDOW; + else + CloseHandle (console_input); + } + bresult = CreateProcessW (wpath, wcmd, NULL, NULL, GNUNET_YES, - CREATE_NO_WINDOW | CREATE_SUSPENDED, env_block, NULL, &start, &proc); + create_no_window | CREATE_SUSPENDED, env_block, NULL, &start, &proc); error_code = GetLastError (); if ((NULL == pipe_stdin) && (stdih)) @@ -1066,7 +1173,11 @@ start_process (int pipe_control, SetHandleInformation (stdeh, HANDLE_FLAG_INHERIT, stdef); if (!bresult) - LOG (GNUNET_ERROR_TYPE_ERROR, "CreateProcess(%s, %s) failed: %lu\n", path, cmd, error_code); + LOG (GNUNET_ERROR_TYPE_ERROR, + "CreateProcess(%s, %s) failed: %lu\n", + path, + cmd, + error_code); GNUNET_free (env_block); GNUNET_free (cmd); @@ -1089,7 +1200,7 @@ start_process (int pipe_control, return NULL; } - gnunet_proc = GNUNET_malloc (sizeof (struct GNUNET_OS_Process)); + gnunet_proc = GNUNET_new (struct GNUNET_OS_Process); gnunet_proc->pid = proc.dwProcessId; gnunet_proc->handle = proc.hProcess; gnunet_proc->control_pipe = childpipe_write; @@ -1120,7 +1231,7 @@ start_process (int pipe_control, if (sizeof (count) != wrote) { GNUNET_log (GNUNET_ERROR_TYPE_ERROR, - "Failed to write %u count bytes to the child: %u\n", + "Failed to write %u count bytes to the child: %lu\n", sizeof (count), GetLastError ()); break; } @@ -1131,7 +1242,7 @@ start_process (int pipe_control, if (SOCKET_ERROR == WSADuplicateSocketA (lsocks[i], gnunet_proc->pid, &pi)) { GNUNET_log (GNUNET_ERROR_TYPE_ERROR, - "Failed to duplicate an socket[%llu]: %u\n", i, + "Failed to duplicate an socket[%u]: %lu\n", i, GetLastError ()); break; } @@ -1148,7 +1259,7 @@ start_process (int pipe_control, if (sizeof (size) != wrote) { GNUNET_log (GNUNET_ERROR_TYPE_ERROR, - "Failed to write %u size[%llu] bytes to the child: %u\n", + "Failed to write %u size[%u] bytes to the child: %lu\n", sizeof (size), i, GetLastError ()); break; } @@ -1157,7 +1268,7 @@ start_process (int pipe_control, if (sizeof (pi) != wrote) { GNUNET_log (GNUNET_ERROR_TYPE_ERROR, - "Failed to write %u socket[%llu] bytes to the child: %u\n", + "Failed to write %u socket[%u] bytes to the child: %lu\n", sizeof (pi), i, GetLastError ()); break; } @@ -1192,8 +1303,6 @@ start_process (int pipe_control, } - - /** * Start a process. * @@ -1201,6 +1310,7 @@ start_process (int pipe_control, * @param std_inheritance a set of GNUNET_OS_INHERIT_STD_* flags * @param pipe_stdin pipe to use to send input to child process (or NULL) * @param pipe_stdout pipe to use to get output from child process (or NULL) + * @param pipe_stderr pipe to use to get output from child process (or NULL) * @param filename name of the binary * @param argv NULL-terminated array of arguments to the process * @return pointer to process structure of the new process, NULL on error @@ -1210,6 +1320,7 @@ GNUNET_OS_start_process_vap (int pipe_control, enum GNUNET_OS_InheritStdioFlags std_inheritance, struct GNUNET_DISK_PipeHandle *pipe_stdin, struct GNUNET_DISK_PipeHandle *pipe_stdout, + struct GNUNET_DISK_PipeHandle *pipe_stderr, const char *filename, char *const argv[]) { @@ -1217,6 +1328,7 @@ GNUNET_OS_start_process_vap (int pipe_control, std_inheritance, pipe_stdin, pipe_stdout, + pipe_stderr, NULL, filename, argv); @@ -1230,6 +1342,7 @@ GNUNET_OS_start_process_vap (int pipe_control, * @param std_inheritance a set of GNUNET_OS_INHERIT_STD_* flags * @param pipe_stdin pipe to use to send input to child process (or NULL) * @param pipe_stdout pipe to use to get output from child process (or NULL) + * @param pipe_stderr pipe to use to get output from child process (or NULL) * @param filename name of the binary * @param va NULL-terminated list of arguments to the process * @return pointer to process structure of the new process, NULL on error @@ -1239,6 +1352,7 @@ GNUNET_OS_start_process_va (int pipe_control, enum GNUNET_OS_InheritStdioFlags std_inheritance, struct GNUNET_DISK_PipeHandle *pipe_stdin, struct GNUNET_DISK_PipeHandle *pipe_stdout, + struct GNUNET_DISK_PipeHandle *pipe_stderr, const char *filename, va_list va) { struct GNUNET_OS_Process *ret; @@ -1261,6 +1375,7 @@ GNUNET_OS_start_process_va (int pipe_control, std_inheritance, pipe_stdin, pipe_stdout, + pipe_stderr, filename, argv); GNUNET_free (argv); @@ -1284,14 +1399,20 @@ GNUNET_OS_start_process (int pipe_control, enum GNUNET_OS_InheritStdioFlags std_inheritance, struct GNUNET_DISK_PipeHandle *pipe_stdin, struct GNUNET_DISK_PipeHandle *pipe_stdout, + struct GNUNET_DISK_PipeHandle *pipe_stderr, const char *filename, ...) { struct GNUNET_OS_Process *ret; va_list ap; va_start (ap, filename); - ret = GNUNET_OS_start_process_va (pipe_control, std_inheritance, pipe_stdin, - pipe_stdout, filename, ap); + ret = GNUNET_OS_start_process_va (pipe_control, + std_inheritance, + pipe_stdin, + pipe_stdout, + pipe_stderr, + filename, + ap); va_end (ap); return ret; } @@ -1322,6 +1443,7 @@ GNUNET_OS_start_process_v (int pipe_control, std_inheritance, NULL, NULL, + NULL, lsocks, filename, argv); @@ -1330,9 +1452,9 @@ GNUNET_OS_start_process_v (int pipe_control, /** * Start a process. This function is similar to the GNUNET_OS_start_process_* - * except that the @a filename and @argv can have whole strings which contain + * except that the filename and arguments can have whole strings which contain * the arguments. These arguments are to be separated by spaces and are parsed - * in the order they appear. Arguments containing spaces can be used by + * in the order they appear. Arguments containing spaces can be used by * quoting them with @em ". * * @param pipe_control should a pipe be used to send signals to the child? @@ -1341,18 +1463,16 @@ GNUNET_OS_start_process_v (int pipe_control, * must be NULL on platforms where dup is not supported * @param filename name of the binary. It is valid to have the arguments * in this string when they are separated by spaces. - * @param ... more arguments. Should be of type char *. It is valid + * @param ... more arguments. Should be of type `char *`. It is valid * to have the arguments in these strings when they are separated by - * spaces. - * @param argv NULL-terminated list of arguments to the process, - * including the process name as the first argument + * spaces. The last argument MUST be NULL. * @return pointer to process structure of the new process, NULL on error */ struct GNUNET_OS_Process * GNUNET_OS_start_process_s (int pipe_control, unsigned int std_inheritance, const SOCKTYPE * lsocks, - const char *first_arg, ...) + const char *filename, ...) { va_list ap; char **argv; @@ -1369,8 +1489,8 @@ GNUNET_OS_start_process_s (int pipe_control, size_t len; argv_size = 1; - va_start (ap, first_arg); - arg = first_arg; + va_start (ap, filename); + arg = filename; last = NULL; do { @@ -1384,7 +1504,7 @@ GNUNET_OS_start_process_s (int pipe_control, quote_on = 0; else quote_on = 1; - } + } if ( (' ' == *rpos) && (0 == quote_on) ) { if (NULL != last) @@ -1407,8 +1527,8 @@ GNUNET_OS_start_process_s (int pipe_control, argv = GNUNET_malloc (argv_size * sizeof (char *)); argv_size = 0; - va_start (ap, first_arg); - arg = first_arg; + va_start (ap, filename); + arg = filename; last = NULL; do { @@ -1416,7 +1536,7 @@ GNUNET_OS_start_process_s (int pipe_control, quote_on = 0; pos = cp; while ('\0' != *pos) - { + { if ('"' == *pos) { if (1 == quote_on) @@ -1447,14 +1567,14 @@ GNUNET_OS_start_process_s (int pipe_control, while (NULL != (arg = (va_arg (ap, const char*)))); va_end (ap); argv[argv_size] = NULL; - + for(i = 0; i < argv_size; i++) { len = strlen (argv[i]); if ( (argv[i][0] == '"') && (argv[i][len-1] == '"')) { memmove (&argv[i][0], &argv[i][1], len - 2); - argv[i][len-2] = '\0'; + argv[i][len-2] = '\0'; } } binary_path = argv[0]; @@ -1468,28 +1588,31 @@ GNUNET_OS_start_process_s (int pipe_control, /** - * Retrieve the status of a process, waiting on him if dead. + * Retrieve the status of a process, waiting on it if dead. * Nonblocking version. * * @param proc process ID * @param type status type * @param code return code/signal number - * @return GNUNET_OK on success, GNUNET_NO if the process is still running, GNUNET_SYSERR otherwise + * @param options WNOHANG if non-blocking is desired + * @return #GNUNET_OK on success, #GNUNET_NO if the process is still running, #GNUNET_SYSERR otherwise */ -int -GNUNET_OS_process_status (struct GNUNET_OS_Process *proc, - enum GNUNET_OS_ProcessStatusType *type, - unsigned long *code) +static int +process_status (struct GNUNET_OS_Process *proc, + enum GNUNET_OS_ProcessStatusType *type, + unsigned long *code, + int options) { #ifndef MINGW int status; int ret; GNUNET_assert (0 != proc); - ret = waitpid (proc->pid, &status, WNOHANG); + ret = waitpid (proc->pid, &status, options); if (ret < 0) { - LOG_STRERROR (GNUNET_ERROR_TYPE_WARNING, "waitpid"); + LOG_STRERROR (GNUNET_ERROR_TYPE_WARNING, + "waitpid"); return GNUNET_SYSERR; } if (0 == ret) @@ -1531,6 +1654,10 @@ GNUNET_OS_process_status (struct GNUNET_OS_Process *proc, *code = 0; } #else +#ifndef WNOHANG +#define WNOHANG 42 /* just a flag for W32, purely internal at this point */ +#endif + HANDLE h; DWORD c, error_code, ret; @@ -1538,13 +1665,22 @@ GNUNET_OS_process_status (struct GNUNET_OS_Process *proc, ret = proc->pid; if (h == NULL || ret == 0) { - LOG (GNUNET_ERROR_TYPE_WARNING, "Invalid process information {%d, %08X}\n", + LOG (GNUNET_ERROR_TYPE_WARNING, + "Invalid process information {%d, %08X}\n", ret, h); return GNUNET_SYSERR; } if (h == NULL) h = GetCurrentProcess (); + if (WNOHANG != options) + { + if (WAIT_OBJECT_0 != WaitForSingleObject (h, INFINITE)) + { + SetErrnoFromWinError (GetLastError ()); + return GNUNET_SYSERR; + } + } SetLastError (0); ret = GetExitCodeProcess (h, &c); error_code = GetLastError (); @@ -1569,10 +1705,56 @@ GNUNET_OS_process_status (struct GNUNET_OS_Process *proc, /** - * Wait for a process + * Retrieve the status of a process, waiting on it if dead. + * Nonblocking version. + * + * @param proc process ID + * @param type status type + * @param code return code/signal number + * @return #GNUNET_OK on success, #GNUNET_NO if the process is still running, #GNUNET_SYSERR otherwise + */ +int +GNUNET_OS_process_status (struct GNUNET_OS_Process *proc, + enum GNUNET_OS_ProcessStatusType *type, + unsigned long *code) +{ + return process_status (proc, + type, + code, + WNOHANG); +} + + +/** + * Retrieve the status of a process, waiting on it if dead. + * Blocking version. + * + * @param proc pointer to process structure + * @param type status type + * @param code return code/signal number + * @return #GNUNET_OK on success, #GNUNET_NO if the process is still running, #GNUNET_SYSERR otherwise + */ +int +GNUNET_OS_process_wait_status (struct GNUNET_OS_Process *proc, + enum GNUNET_OS_ProcessStatusType *type, + unsigned long *code) +{ + return process_status (proc, + type, + code, + 0); +} + + +/** + * Wait for a process to terminate. The return code is discarded. + * You must not use #GNUNET_OS_process_status() on the same process + * after calling this function! This function is blocking and should + * thus only be used if the child process is known to have terminated + * or to terminate very soon. * * @param proc pointer to process structure - * @return GNUNET_OK on success, GNUNET_SYSERR otherwise + * @return #GNUNET_OK on success, #GNUNET_SYSERR otherwise */ int GNUNET_OS_process_wait (struct GNUNET_OS_Process *proc) @@ -1585,7 +1767,8 @@ GNUNET_OS_process_wait (struct GNUNET_OS_Process *proc) (EINTR == errno) ) ; if (pid != ret) { - LOG_STRERROR (GNUNET_ERROR_TYPE_WARNING, "waitpid"); + LOG_STRERROR (GNUNET_ERROR_TYPE_WARNING, + "waitpid"); return GNUNET_SYSERR; } return GNUNET_OK; @@ -1595,7 +1778,8 @@ GNUNET_OS_process_wait (struct GNUNET_OS_Process *proc) h = proc->handle; if (NULL == h) { - LOG (GNUNET_ERROR_TYPE_WARNING, "Invalid process information {%d, %08X}\n", + LOG (GNUNET_ERROR_TYPE_WARNING, + "Invalid process information {%d, %08X}\n", proc->pid, h); return GNUNET_SYSERR; } @@ -1639,7 +1823,7 @@ struct GNUNET_OS_CommandHandle GNUNET_OS_LineProcessor proc; /** - * Closure for 'proc'. + * Closure for @e proc. */ void *proc_cls; @@ -1651,7 +1835,7 @@ struct GNUNET_OS_CommandHandle /** * Task reading from pipe. */ - GNUNET_SCHEDULER_TaskIdentifier rtask; + struct GNUNET_SCHEDULER_Task *rtask; /** * When to time out. @@ -1677,7 +1861,7 @@ GNUNET_OS_command_stop (struct GNUNET_OS_CommandHandle *cmd) { if (NULL != cmd->proc) { - GNUNET_assert (GNUNET_SCHEDULER_NO_TASK != cmd->rtask); + GNUNET_assert (NULL != cmd->rtask); GNUNET_SCHEDULER_cancel (cmd->rtask); } (void) GNUNET_OS_process_kill (cmd->eip, SIGKILL); @@ -1691,29 +1875,32 @@ GNUNET_OS_command_stop (struct GNUNET_OS_CommandHandle *cmd) /** * Read from the process and call the line processor. * - * @param cls the 'struct GNUNET_OS_CommandHandle' - * @param tc scheduler context + * @param cls the `struct GNUNET_OS_CommandHandle *` */ static void -cmd_read (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc) +cmd_read (void *cls) { struct GNUNET_OS_CommandHandle *cmd = cls; + const struct GNUNET_SCHEDULER_TaskContext *tc; GNUNET_OS_LineProcessor proc; char *end; ssize_t ret; - cmd->rtask = GNUNET_SCHEDULER_NO_TASK; - if (GNUNET_YES != GNUNET_NETWORK_fdset_handle_isset (tc->read_ready, cmd->r)) + cmd->rtask = NULL; + tc = GNUNET_SCHEDULER_get_task_context (); + if (GNUNET_YES != + GNUNET_NETWORK_fdset_handle_isset (tc->read_ready, + cmd->r)) { - /* timeout, shutdown, etc. */ + /* timeout */ proc = cmd->proc; cmd->proc = NULL; proc (cmd->proc_cls, NULL); return; } - ret = - GNUNET_DISK_file_read (cmd->r, &cmd->buf[cmd->off], - sizeof (cmd->buf) - cmd->off); + ret = GNUNET_DISK_file_read (cmd->r, + &cmd->buf[cmd->off], + sizeof (cmd->buf) - cmd->off); if (ret <= 0) { if ((cmd->off > 0) && (cmd->off < sizeof (cmd->buf))) @@ -1736,9 +1923,11 @@ cmd_read (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc) cmd->off -= (end + 1 - cmd->buf); end = memchr (cmd->buf, '\n', cmd->off); } - cmd->rtask = - GNUNET_SCHEDULER_add_read_file (GNUNET_TIME_absolute_get_remaining - (cmd->timeout), cmd->r, &cmd_read, cmd); + cmd->rtask + = GNUNET_SCHEDULER_add_read_file (GNUNET_TIME_absolute_get_remaining + (cmd->timeout), + cmd->r, + &cmd_read, cmd); } @@ -1747,15 +1936,17 @@ cmd_read (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc) * for each line of the output. * * @param proc function to call for each line of the output - * @param proc_cls closure for proc + * @param proc_cls closure for @a proc * @param timeout when to time out * @param binary command to run * @param ... arguments to command * @return NULL on error */ struct GNUNET_OS_CommandHandle * -GNUNET_OS_command_run (GNUNET_OS_LineProcessor proc, void *proc_cls, - struct GNUNET_TIME_Relative timeout, const char *binary, +GNUNET_OS_command_run (GNUNET_OS_LineProcessor proc, + void *proc_cls, + struct GNUNET_TIME_Relative timeout, + const char *binary, ...) { struct GNUNET_OS_CommandHandle *cmd; @@ -1763,12 +1954,15 @@ GNUNET_OS_command_run (GNUNET_OS_LineProcessor proc, void *proc_cls, struct GNUNET_DISK_PipeHandle *opipe; va_list ap; - opipe = GNUNET_DISK_pipe (GNUNET_YES, GNUNET_YES, GNUNET_NO, GNUNET_YES); + opipe = GNUNET_DISK_pipe (GNUNET_YES, GNUNET_YES, + GNUNET_NO, GNUNET_YES); if (NULL == opipe) return NULL; va_start (ap, binary); /* redirect stdout, don't inherit stderr/stdin */ - eip = GNUNET_OS_start_process_va (GNUNET_NO, 0, NULL, opipe, binary, ap); + eip = GNUNET_OS_start_process_va (GNUNET_NO, 0, NULL, + opipe, NULL, binary, + ap); va_end (ap); if (NULL == eip) { @@ -1776,14 +1970,18 @@ GNUNET_OS_command_run (GNUNET_OS_LineProcessor proc, void *proc_cls, return NULL; } GNUNET_DISK_pipe_close_end (opipe, GNUNET_DISK_PIPE_END_WRITE); - cmd = GNUNET_malloc (sizeof (struct GNUNET_OS_CommandHandle)); + cmd = GNUNET_new (struct GNUNET_OS_CommandHandle); cmd->timeout = GNUNET_TIME_relative_to_absolute (timeout); cmd->eip = eip; cmd->opipe = opipe; cmd->proc = proc; cmd->proc_cls = proc_cls; - cmd->r = GNUNET_DISK_pipe_handle (opipe, GNUNET_DISK_PIPE_END_READ); - cmd->rtask = GNUNET_SCHEDULER_add_read_file (timeout, cmd->r, &cmd_read, cmd); + cmd->r = GNUNET_DISK_pipe_handle (opipe, + GNUNET_DISK_PIPE_END_READ); + cmd->rtask = GNUNET_SCHEDULER_add_read_file (timeout, + cmd->r, + &cmd_read, + cmd); return cmd; }