mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-11-28 06:13:31 +01:00
Merge remote-tracking branch 'yawning/feature15471'
This commit is contained in:
commit
0ddd8f06a9
5
changes/feature15471
Normal file
5
changes/feature15471
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
o Minor features (pluggable transports):
|
||||||
|
- When launching managed pluggable transports on linux systems,
|
||||||
|
attempt to have the kernel deliver a SIGTERM on tor exit if
|
||||||
|
the pluggable transport process is still running. Resolves
|
||||||
|
ticket 15471.
|
@ -95,6 +95,9 @@
|
|||||||
#ifdef HAVE_SYS_WAIT_H
|
#ifdef HAVE_SYS_WAIT_H
|
||||||
#include <sys/wait.h>
|
#include <sys/wait.h>
|
||||||
#endif
|
#endif
|
||||||
|
#if defined(HAVE_SYS_PRCTL_H) && defined(__linux__)
|
||||||
|
#include <sys/prctl.h>
|
||||||
|
#endif
|
||||||
|
|
||||||
#ifdef __clang_analyzer__
|
#ifdef __clang_analyzer__
|
||||||
#undef MALLOC_ZERO_WORKS
|
#undef MALLOC_ZERO_WORKS
|
||||||
@ -4180,6 +4183,15 @@ tor_spawn_background(const char *const filename, const char **argv,
|
|||||||
if (0 == pid) {
|
if (0 == pid) {
|
||||||
/* In child */
|
/* In child */
|
||||||
|
|
||||||
|
#if defined(HAVE_SYS_PRCTL_H) && defined(__linux__)
|
||||||
|
/* Attempt to have the kernel issue a SIGTERM if the parent
|
||||||
|
* goes away. Certain attributes of the binary being execve()ed
|
||||||
|
* will clear this during the execve() call, but it's better
|
||||||
|
* than nothing.
|
||||||
|
*/
|
||||||
|
prctl(PR_SET_PDEATHSIG, SIGTERM);
|
||||||
|
#endif
|
||||||
|
|
||||||
child_state = CHILD_STATE_DUPOUT;
|
child_state = CHILD_STATE_DUPOUT;
|
||||||
|
|
||||||
/* Link child stdout to the write end of the pipe */
|
/* Link child stdout to the write end of the pipe */
|
||||||
@ -4225,8 +4237,10 @@ tor_spawn_background(const char *const filename, const char **argv,
|
|||||||
does not modify the arguments */
|
does not modify the arguments */
|
||||||
if (env)
|
if (env)
|
||||||
execve(filename, (char *const *) argv, env->unixoid_environment_block);
|
execve(filename, (char *const *) argv, env->unixoid_environment_block);
|
||||||
else
|
else {
|
||||||
execvp(filename, (char *const *) argv);
|
static char *new_env[] = { NULL };
|
||||||
|
execve(filename, (char *const *) argv, new_env);
|
||||||
|
}
|
||||||
|
|
||||||
/* If we got here, the exec or open(/dev/null) failed */
|
/* If we got here, the exec or open(/dev/null) failed */
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user