-
Simon McVittie authored
Now that GIO_MODULE_DIR has been backported into scout's GLib, we can disable GIO modules completely, instead of loading them but then not using them. This avoids some misleading warnings (#32). This will not be completely effective on non-Debian systems until we also patch scout's GLib to make GIO_MODULE_DIR take precedence over the hard-coded legacy search path /usr/lib/gio/modules. The unit test for this is still in tests/pressure-vessel/utils.c for now. Signed-off-by:
Simon McVittie <smcv@collabora.com>
Simon McVittie authoredNow that GIO_MODULE_DIR has been backported into scout's GLib, we can disable GIO modules completely, instead of loading them but then not using them. This avoids some misleading warnings (#32). This will not be completely effective on non-Debian systems until we also patch scout's GLib to make GIO_MODULE_DIR take precedence over the hard-coded legacy search path /usr/lib/gio/modules. The unit test for this is still in tests/pressure-vessel/utils.c for now. Signed-off-by:
Simon McVittie <smcv@collabora.com>
wait-for-child-processes.c 10.34 KiB
/*
* Copyright © 2019-2020 Collabora Ltd.
*
* SPDX-License-Identifier: MIT
*
* Permission is hereby granted, free of charge, to any person obtaining
* a copy of this software and associated documentation files (the
* "Software"), to deal in the Software without restriction, including
* without limitation the rights to use, copy, modify, merge, publish,
* distribute, sublicense, and/or sell copies of the Software, and to
* permit persons to whom the Software is furnished to do so, subject to
* the following conditions:
*
* The above copyright notice and this permission notice shall be included
* in all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
#include <stdlib.h>
#include <sys/prctl.h>
#include <sys/types.h>
#include <sys/wait.h>
#include <unistd.h>
#include <glib.h>
#include <glib/gstdio.h>
#include "steam-runtime-tools/glib-backports-internal.h"
#include "libglnx/libglnx.h"
#include "steam-runtime-tools/utils-internal.h"
#include "tests/test-utils.h"
#include "utils.h"
typedef struct
{
int unused;
} Fixture;
typedef struct
{
int unused;
} Config;
static void
setup (Fixture *f,
gconstpointer context)
{
G_GNUC_UNUSED const Config *config = context;
/* Assert we initially have no child processes */
g_assert_cmpint (waitpid (-1, NULL, WNOHANG) >= 0 ? 0 : errno, ==, ECHILD);
}
static void
teardown (Fixture *f,
gconstpointer context)
{
G_GNUC_UNUSED const Config *config = context;
/* Assert we end up with no child processes */
g_assert_cmpint (waitpid (-1, NULL, WNOHANG) >= 0 ? 0 : errno, ==, ECHILD);
}
#define SPAWN_FLAGS \
(G_SPAWN_SEARCH_PATH \
| G_SPAWN_LEAVE_DESCRIPTORS_OPEN \
| G_SPAWN_DO_NOT_REAP_CHILD)
static void
test_terminate_nothing (Fixture *f,
gconstpointer context)
{
g_autoptr(GError) error = NULL;
gboolean ret;
ret = pv_terminate_all_child_processes (0, 0, &error);
g_assert_no_error (error);
g_assert_true (ret);
ret = pv_terminate_all_child_processes (0, 100 * G_TIME_SPAN_MILLISECOND, &error);
g_assert_no_error (error);
g_assert_true (ret);
ret = pv_terminate_all_child_processes (100 * G_TIME_SPAN_MILLISECOND, 0, &error);
g_assert_no_error (error);
g_assert_true (ret);
ret = pv_terminate_all_child_processes (100 * G_TIME_SPAN_MILLISECOND,
100 * G_TIME_SPAN_MILLISECOND, &error);
g_assert_no_error (error);
g_assert_true (ret);
}
static void
test_terminate_sigterm (Fixture *f,
gconstpointer context)
{
g_autoptr(GError) error = NULL;
gboolean ret;
const char * const argv[] = { "sh", "-c", "sleep 3600", NULL };
ret = g_spawn_async (NULL, /* cwd */
(char **) argv,
NULL, /* envp */
SPAWN_FLAGS,
NULL, NULL, /* child setup */
NULL, /* pid */
&error);
g_assert_no_error (error);
g_assert_true (ret);
ret = pv_terminate_all_child_processes (0, 60 * G_TIME_SPAN_SECOND, &error);
g_assert_no_error (error);
g_assert_true (ret);
}
static void
test_terminate_sigkill (Fixture *f,
gconstpointer context)
{
g_autoptr(GError) error = NULL;
gboolean ret;
const char * const argv[] =
{
"sh", "-c", "trap 'echo Ignoring SIGTERM >&2' TERM; sleep 3600", NULL
};
ret = g_spawn_async (NULL, /* cwd */
(char **) argv,
NULL, /* envp */
SPAWN_FLAGS,
NULL, NULL, /* child setup */
NULL, /* pid */
&error);
g_assert_no_error (error);
g_assert_true (ret);
/* We give it 100ms before SIGTERM to let it put the trap in place */
ret = pv_terminate_all_child_processes (100 * G_TIME_SPAN_MILLISECOND,
100 * G_TIME_SPAN_MILLISECOND, &error);
g_assert_no_error (error);
g_assert_true (ret);
}
static void
test_terminate_sigkill_immediately (Fixture *f,
gconstpointer context)
{
g_autoptr(GError) error = NULL;
gboolean ret;
const char * const argv[] =
{
"sh", "-c", "trap 'echo Ignoring SIGTERM >&2' TERM; sleep 3600", NULL
};
ret = g_spawn_async (NULL, /* cwd */
(char **) argv,
NULL, /* envp */
SPAWN_FLAGS,
NULL, NULL, /* child setup */
NULL, /* pid */
&error);
g_assert_no_error (error);
g_assert_true (ret);
ret = pv_terminate_all_child_processes (0, 0, &error);
g_assert_no_error (error);
g_assert_true (ret);
}
static void
test_wait_for_all (Fixture *f,
gconstpointer context)
{
g_autoptr(GError) error = NULL;
int wstat;
gboolean ret;
const char * const argv[] = { "sh", "-c", "exit 42", NULL };
ret = g_spawn_async (NULL, /* cwd */
(char **) argv,
NULL, /* envp */
SPAWN_FLAGS,
NULL, NULL, /* child setup */
NULL, /* pid */
&error);
g_assert_no_error (error);
g_assert_true (ret);
ret = pv_wait_for_child_processes (0, &wstat, &error);
g_assert_no_error (error);
g_assert_true (ret);
g_assert_cmpint (wstat, ==, -1);
}
static void
test_wait_for_main (Fixture *f,
gconstpointer context)
{
g_autoptr(GError) error = NULL;
int wstat;
gboolean ret;
GPid main_pid;
const char * const argv[] = { "sh", "-c", "exit 42", NULL };
ret = g_spawn_async (NULL, /* cwd */
(char **) argv,
NULL, /* envp */
SPAWN_FLAGS,
NULL, NULL, /* child setup */
&main_pid,
&error);
g_assert_no_error (error);
g_assert_true (ret);
ret = pv_wait_for_child_processes (main_pid, &wstat, &error);
g_assert_no_error (error);
g_assert_true (ret);
g_assert_true (WIFEXITED (wstat));
g_assert_cmpint (WEXITSTATUS (wstat), ==, 42);
}
static void
test_wait_for_main_plus (Fixture *f,
gconstpointer context)
{
g_autoptr(GError) error = NULL;
int wstat;
gboolean ret;
GPid main_pid;
const char * const before_argv[] = { "sh", "-c", "exit 0", NULL };
const char * const main_argv[] = { "sh", "-c", "sleep 1; kill -TERM $$", NULL };
const char * const after_argv[] = { "sh", "-c", "sleep 2", NULL };
ret = g_spawn_async (NULL, /* cwd */
(char **) before_argv,
NULL, /* envp */
SPAWN_FLAGS,
NULL, NULL, /* child setup */
NULL, /* PID */
&error);
g_assert_no_error (error);
g_assert_true (ret);
ret = g_spawn_async (NULL, /* cwd */
(char **) main_argv,
NULL, /* envp */
SPAWN_FLAGS,
NULL, NULL, /* child setup */
&main_pid,
&error);
g_assert_no_error (error);
g_assert_true (ret);
ret = g_spawn_async (NULL, /* cwd */
(char **) after_argv,
NULL, /* envp */
SPAWN_FLAGS,
NULL, NULL, /* child setup */
NULL, /* PID */
&error);
g_assert_no_error (error);
g_assert_true (ret);
ret = pv_wait_for_child_processes (main_pid, &wstat, &error);
g_assert_no_error (error);
g_assert_true (ret);
g_assert_true (WIFSIGNALED (wstat));
g_assert_cmpint (WTERMSIG (wstat), ==, SIGTERM);
/* Don't leak the other processes, if any (probably after_argv) */
ret = pv_wait_for_child_processes (0, &wstat, &error);
g_assert_no_error (error);
g_assert_true (ret);
}
static void
test_wait_for_nothing (Fixture *f,
gconstpointer context)
{
g_autoptr(GError) error = NULL;
int wstat;
gboolean ret;
ret = pv_wait_for_child_processes (0, &wstat, &error);
g_assert_no_error (error);
g_assert_true (ret);
g_assert_cmpint (wstat, ==, -1);
}
static void
test_wait_for_wrong_main (Fixture *f,
gconstpointer context)
{
g_autoptr(GError) error = NULL;
int wstat;
gboolean ret;
ret = pv_wait_for_child_processes (getpid (), &wstat, &error);
g_assert_error (error, G_IO_ERROR, G_IO_ERROR_NOT_FOUND);
g_assert_false (ret);
g_assert_cmpint (wstat, ==, -1);
}
int
main (int argc,
char **argv)
{
sigset_t mask;
sigemptyset (&mask);
sigaddset (&mask, SIGCHLD);
/* Must be called before we start any threads */
if (pthread_sigmask (SIG_BLOCK, &mask, NULL) != 0)
g_error ("pthread_sigmask: %s", g_strerror (errno));
prctl (PR_SET_CHILD_SUBREAPER, 1, 0, 0, 0);
_srt_setenv_disable_gio_modules ();
g_test_init (&argc, &argv, NULL);
g_test_add ("/terminate/nothing", Fixture, NULL,
setup, test_terminate_nothing, teardown);
g_test_add ("/terminate/sigterm", Fixture, NULL,
setup, test_terminate_sigterm, teardown);
g_test_add ("/terminate/sigkill", Fixture, NULL,
setup, test_terminate_sigkill, teardown);
g_test_add ("/terminate/sigkill-immediately", Fixture, NULL,
setup, test_terminate_sigkill_immediately, teardown);
g_test_add ("/wait/for-all", Fixture, NULL,
setup, test_wait_for_all, teardown);
g_test_add ("/wait/for-main", Fixture, NULL,
setup, test_wait_for_main, teardown);
g_test_add ("/wait/for-main-plus", Fixture, NULL,
setup, test_wait_for_main_plus, teardown);
g_test_add ("/wait/for-nothing", Fixture, NULL,
setup, test_wait_for_nothing, teardown);
g_test_add ("/wait/for-wrong-main", Fixture, NULL,
setup, test_wait_for_wrong_main, teardown);
return g_test_run ();
}