2011-06-10 07:29:28 -04:00
|
|
|
|
/*
|
|
|
|
|
* Copyright (C) 2011 Red Hat, Inc.
|
|
|
|
|
*
|
2022-11-02 12:34:19 +00:00
|
|
|
|
* SPDX-License-Identifier: LicenseRef-old-glib-tests
|
|
|
|
|
*
|
2011-06-10 07:29:28 -04:00
|
|
|
|
* This work is provided "as is"; redistribution and modification
|
|
|
|
|
* in whole or in part, in any medium, physical or electronic is
|
|
|
|
|
* permitted without restriction.
|
|
|
|
|
*
|
|
|
|
|
* This work 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.
|
|
|
|
|
*
|
|
|
|
|
* In no event shall the authors or contributors be liable for any
|
|
|
|
|
* direct, indirect, incidental, special, exemplary, or consequential
|
|
|
|
|
* damages (including, but not limited to, procurement of substitute
|
|
|
|
|
* goods or services; loss of use, data, or profits; or business
|
|
|
|
|
* interruption) however caused and on any theory of liability, whether
|
|
|
|
|
* in contract, strict liability, or tort (including negligence or
|
|
|
|
|
* otherwise) arising in any way out of the use of this software, even
|
|
|
|
|
* if advised of the possibility of such damage.
|
|
|
|
|
*
|
|
|
|
|
* Author: Colin Walters <walters@verbum.org>
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#include "config.h"
|
|
|
|
|
|
|
|
|
|
#include <glib.h>
|
2020-12-04 18:21:10 +00:00
|
|
|
|
#include <locale.h>
|
2011-06-10 07:29:28 -04:00
|
|
|
|
#include <string.h>
|
2018-05-28 10:09:21 -06:00
|
|
|
|
#include <fcntl.h>
|
2022-01-26 14:35:43 +04:00
|
|
|
|
#include <glib/gstdio.h>
|
2018-05-28 10:09:21 -06:00
|
|
|
|
|
|
|
|
|
#ifdef G_OS_UNIX
|
|
|
|
|
#include <glib-unix.h>
|
2020-10-13 13:39:36 +01:00
|
|
|
|
#include <sys/types.h>
|
2022-04-08 16:50:57 +04:00
|
|
|
|
#include <sys/socket.h>
|
2020-10-13 13:39:36 +01:00
|
|
|
|
#include <sys/stat.h>
|
|
|
|
|
#include <unistd.h>
|
2018-05-28 10:09:21 -06:00
|
|
|
|
#endif
|
2011-06-10 07:29:28 -04:00
|
|
|
|
|
2013-11-06 15:14:06 +08:00
|
|
|
|
#ifdef G_OS_WIN32
|
2022-04-08 16:50:57 +04:00
|
|
|
|
#include <winsock2.h>
|
2018-05-28 10:09:21 -06:00
|
|
|
|
#include <io.h>
|
2013-11-06 15:14:06 +08:00
|
|
|
|
#define LINEEND "\r\n"
|
|
|
|
|
#else
|
|
|
|
|
#define LINEEND "\n"
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
/* MinGW builds are likely done using a BASH-style shell, so run the
|
|
|
|
|
* normal script there, as on non-Windows builds, as it is more likely
|
|
|
|
|
* that one will run 'make check' in such shells to test the code
|
|
|
|
|
*/
|
|
|
|
|
#if defined (G_OS_WIN32) && defined (_MSC_VER)
|
|
|
|
|
#define SCRIPT_EXT ".bat"
|
|
|
|
|
#else
|
|
|
|
|
#define SCRIPT_EXT
|
|
|
|
|
#endif
|
|
|
|
|
|
2011-06-10 07:29:28 -04:00
|
|
|
|
static char *echo_prog_path;
|
2012-04-08 10:21:50 -04:00
|
|
|
|
static char *echo_script_path;
|
2011-06-10 07:29:28 -04:00
|
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
|
GMainLoop *loop;
|
|
|
|
|
gboolean child_exited;
|
|
|
|
|
gboolean stdout_done;
|
|
|
|
|
GString *stdout_buf;
|
|
|
|
|
} SpawnAsyncMultithreadedData;
|
|
|
|
|
|
|
|
|
|
static gboolean
|
|
|
|
|
on_child_exited (GPid pid,
|
|
|
|
|
gint status,
|
|
|
|
|
gpointer datap)
|
|
|
|
|
{
|
|
|
|
|
SpawnAsyncMultithreadedData *data = datap;
|
|
|
|
|
|
|
|
|
|
data->child_exited = TRUE;
|
|
|
|
|
if (data->child_exited && data->stdout_done)
|
|
|
|
|
g_main_loop_quit (data->loop);
|
|
|
|
|
|
2012-01-25 08:53:05 -05:00
|
|
|
|
return G_SOURCE_REMOVE;
|
2011-06-10 07:29:28 -04:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static gboolean
|
|
|
|
|
on_child_stdout (GIOChannel *channel,
|
|
|
|
|
GIOCondition condition,
|
|
|
|
|
gpointer datap)
|
|
|
|
|
{
|
|
|
|
|
char buf[1024];
|
|
|
|
|
GError *error = NULL;
|
|
|
|
|
gsize bytes_read;
|
|
|
|
|
SpawnAsyncMultithreadedData *data = datap;
|
|
|
|
|
|
|
|
|
|
if (condition & G_IO_IN)
|
|
|
|
|
{
|
|
|
|
|
GIOStatus status;
|
|
|
|
|
status = g_io_channel_read_chars (channel, buf, sizeof (buf), &bytes_read, &error);
|
|
|
|
|
g_assert_no_error (error);
|
|
|
|
|
g_string_append_len (data->stdout_buf, buf, (gssize) bytes_read);
|
|
|
|
|
if (status == G_IO_STATUS_EOF)
|
|
|
|
|
data->stdout_done = TRUE;
|
|
|
|
|
}
|
|
|
|
|
if (condition & G_IO_HUP)
|
|
|
|
|
data->stdout_done = TRUE;
|
|
|
|
|
if (condition & G_IO_ERR)
|
|
|
|
|
g_error ("Error reading from child stdin");
|
|
|
|
|
|
|
|
|
|
if (data->child_exited && data->stdout_done)
|
|
|
|
|
g_main_loop_quit (data->loop);
|
|
|
|
|
|
|
|
|
|
return !data->stdout_done;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
test_spawn_async (void)
|
|
|
|
|
{
|
|
|
|
|
int tnum = 1;
|
|
|
|
|
GError *error = NULL;
|
|
|
|
|
GPtrArray *argv;
|
|
|
|
|
char *arg;
|
|
|
|
|
GPid pid;
|
|
|
|
|
GMainContext *context;
|
|
|
|
|
GMainLoop *loop;
|
|
|
|
|
GIOChannel *channel;
|
|
|
|
|
GSource *source;
|
|
|
|
|
int child_stdout_fd;
|
|
|
|
|
SpawnAsyncMultithreadedData data;
|
|
|
|
|
|
|
|
|
|
context = g_main_context_new ();
|
|
|
|
|
loop = g_main_loop_new (context, TRUE);
|
|
|
|
|
|
|
|
|
|
arg = g_strdup_printf ("thread %d", tnum);
|
|
|
|
|
|
|
|
|
|
argv = g_ptr_array_new ();
|
|
|
|
|
g_ptr_array_add (argv, echo_prog_path);
|
|
|
|
|
g_ptr_array_add (argv, arg);
|
|
|
|
|
g_ptr_array_add (argv, NULL);
|
|
|
|
|
|
|
|
|
|
g_spawn_async_with_pipes (NULL, (char**)argv->pdata, NULL, G_SPAWN_DO_NOT_REAP_CHILD, NULL, NULL, &pid, NULL,
|
|
|
|
|
&child_stdout_fd, NULL, &error);
|
|
|
|
|
g_assert_no_error (error);
|
|
|
|
|
g_ptr_array_free (argv, TRUE);
|
|
|
|
|
|
|
|
|
|
data.loop = loop;
|
|
|
|
|
data.stdout_done = FALSE;
|
|
|
|
|
data.child_exited = FALSE;
|
|
|
|
|
data.stdout_buf = g_string_new (0);
|
|
|
|
|
|
|
|
|
|
source = g_child_watch_source_new (pid);
|
|
|
|
|
g_source_set_callback (source, (GSourceFunc)on_child_exited, &data, NULL);
|
|
|
|
|
g_source_attach (source, context);
|
|
|
|
|
g_source_unref (source);
|
|
|
|
|
|
|
|
|
|
channel = g_io_channel_unix_new (child_stdout_fd);
|
|
|
|
|
source = g_io_create_watch (channel, G_IO_IN | G_IO_HUP | G_IO_ERR);
|
|
|
|
|
g_source_set_callback (source, (GSourceFunc)on_child_stdout, &data, NULL);
|
|
|
|
|
g_source_attach (source, context);
|
|
|
|
|
g_source_unref (source);
|
|
|
|
|
|
|
|
|
|
g_main_loop_run (loop);
|
|
|
|
|
|
|
|
|
|
g_assert (data.child_exited);
|
|
|
|
|
g_assert (data.stdout_done);
|
|
|
|
|
g_assert_cmpstr (data.stdout_buf->str, ==, arg);
|
|
|
|
|
g_string_free (data.stdout_buf, TRUE);
|
|
|
|
|
|
|
|
|
|
g_io_channel_unref (channel);
|
|
|
|
|
g_main_context_unref (context);
|
|
|
|
|
g_main_loop_unref (loop);
|
|
|
|
|
|
|
|
|
|
g_free (arg);
|
|
|
|
|
}
|
|
|
|
|
|
2018-05-28 10:09:21 -06:00
|
|
|
|
/* Windows close() causes failure through the Invalid Parameter Handler
|
|
|
|
|
* Routine if the file descriptor does not exist.
|
|
|
|
|
*/
|
|
|
|
|
static void
|
2020-06-23 10:49:44 +01:00
|
|
|
|
safe_close (int fd)
|
2018-05-28 10:09:21 -06:00
|
|
|
|
{
|
|
|
|
|
if (fd >= 0)
|
|
|
|
|
close (fd);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Test g_spawn_async_with_fds() with a variety of different inputs */
|
|
|
|
|
static void
|
|
|
|
|
test_spawn_async_with_fds (void)
|
|
|
|
|
{
|
|
|
|
|
int tnum = 1;
|
|
|
|
|
GPtrArray *argv;
|
|
|
|
|
char *arg;
|
2020-11-14 13:14:25 +01:00
|
|
|
|
gsize i;
|
2018-05-28 10:09:21 -06:00
|
|
|
|
|
|
|
|
|
/* Each test has 3 variable parameters: stdin, stdout, stderr */
|
|
|
|
|
enum fd_type {
|
2018-06-29 11:38:53 -05:00
|
|
|
|
NO_FD, /* pass fd -1 (unset) */
|
|
|
|
|
FD_NEGATIVE, /* pass fd of negative value (equivalent to unset) */
|
2018-05-28 10:09:21 -06:00
|
|
|
|
PIPE, /* pass fd of new/unique pipe */
|
|
|
|
|
STDOUT_PIPE, /* pass the same pipe as stdout */
|
|
|
|
|
} tests[][3] = {
|
2018-06-29 11:38:53 -05:00
|
|
|
|
{ NO_FD, NO_FD, NO_FD }, /* Test with no fds passed */
|
|
|
|
|
{ NO_FD, FD_NEGATIVE, NO_FD }, /* Test another negative fd value */
|
|
|
|
|
{ PIPE, PIPE, PIPE }, /* Test with unique fds passed */
|
|
|
|
|
{ NO_FD, PIPE, STDOUT_PIPE }, /* Test the same fd for stdout + stderr */
|
2018-05-28 10:09:21 -06:00
|
|
|
|
};
|
|
|
|
|
|
2022-06-14 18:32:07 +01:00
|
|
|
|
arg = g_strdup_printf ("# thread %d\n", tnum);
|
2018-05-28 10:09:21 -06:00
|
|
|
|
|
|
|
|
|
argv = g_ptr_array_new ();
|
|
|
|
|
g_ptr_array_add (argv, echo_prog_path);
|
|
|
|
|
g_ptr_array_add (argv, arg);
|
|
|
|
|
g_ptr_array_add (argv, NULL);
|
|
|
|
|
|
|
|
|
|
for (i = 0; i < G_N_ELEMENTS (tests); i++)
|
|
|
|
|
{
|
|
|
|
|
GError *error = NULL;
|
|
|
|
|
GPid pid;
|
|
|
|
|
GMainContext *context;
|
|
|
|
|
GMainLoop *loop;
|
|
|
|
|
GIOChannel *channel = NULL;
|
|
|
|
|
GSource *source;
|
|
|
|
|
SpawnAsyncMultithreadedData data;
|
|
|
|
|
enum fd_type *fd_info = tests[i];
|
|
|
|
|
gint test_pipe[3][2];
|
|
|
|
|
int j;
|
|
|
|
|
|
|
|
|
|
for (j = 0; j < 3; j++)
|
|
|
|
|
{
|
|
|
|
|
switch (fd_info[j])
|
|
|
|
|
{
|
|
|
|
|
case NO_FD:
|
|
|
|
|
test_pipe[j][0] = -1;
|
|
|
|
|
test_pipe[j][1] = -1;
|
|
|
|
|
break;
|
2018-06-29 11:38:53 -05:00
|
|
|
|
case FD_NEGATIVE:
|
|
|
|
|
test_pipe[j][0] = -5;
|
|
|
|
|
test_pipe[j][1] = -5;
|
|
|
|
|
break;
|
2018-05-28 10:09:21 -06:00
|
|
|
|
case PIPE:
|
|
|
|
|
#ifdef G_OS_UNIX
|
|
|
|
|
g_unix_open_pipe (test_pipe[j], FD_CLOEXEC, &error);
|
|
|
|
|
g_assert_no_error (error);
|
|
|
|
|
#else
|
|
|
|
|
g_assert_cmpint (_pipe (test_pipe[j], 4096, _O_BINARY), >=, 0);
|
|
|
|
|
#endif
|
|
|
|
|
break;
|
|
|
|
|
case STDOUT_PIPE:
|
|
|
|
|
g_assert_cmpint (j, ==, 2); /* only works for stderr */
|
|
|
|
|
test_pipe[j][0] = test_pipe[1][0];
|
|
|
|
|
test_pipe[j][1] = test_pipe[1][1];
|
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
g_assert_not_reached ();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
context = g_main_context_new ();
|
|
|
|
|
loop = g_main_loop_new (context, TRUE);
|
|
|
|
|
|
|
|
|
|
g_spawn_async_with_fds (NULL, (char**)argv->pdata, NULL,
|
|
|
|
|
G_SPAWN_DO_NOT_REAP_CHILD, NULL, NULL, &pid,
|
|
|
|
|
test_pipe[0][0], test_pipe[1][1], test_pipe[2][1],
|
|
|
|
|
&error);
|
|
|
|
|
g_assert_no_error (error);
|
2020-06-23 10:49:44 +01:00
|
|
|
|
safe_close (test_pipe[0][0]);
|
|
|
|
|
safe_close (test_pipe[1][1]);
|
2018-05-28 10:09:21 -06:00
|
|
|
|
if (fd_info[2] != STDOUT_PIPE)
|
2020-06-23 10:49:44 +01:00
|
|
|
|
safe_close (test_pipe[2][1]);
|
2018-05-28 10:09:21 -06:00
|
|
|
|
|
|
|
|
|
data.loop = loop;
|
|
|
|
|
data.stdout_done = FALSE;
|
|
|
|
|
data.child_exited = FALSE;
|
|
|
|
|
data.stdout_buf = g_string_new (0);
|
|
|
|
|
|
|
|
|
|
source = g_child_watch_source_new (pid);
|
|
|
|
|
g_source_set_callback (source, (GSourceFunc)on_child_exited, &data, NULL);
|
|
|
|
|
g_source_attach (source, context);
|
|
|
|
|
g_source_unref (source);
|
|
|
|
|
|
2018-06-29 11:38:53 -05:00
|
|
|
|
if (test_pipe[1][0] >= 0)
|
2018-05-28 10:09:21 -06:00
|
|
|
|
{
|
|
|
|
|
channel = g_io_channel_unix_new (test_pipe[1][0]);
|
|
|
|
|
source = g_io_create_watch (channel, G_IO_IN | G_IO_HUP | G_IO_ERR);
|
|
|
|
|
g_source_set_callback (source, (GSourceFunc)on_child_stdout,
|
|
|
|
|
&data, NULL);
|
|
|
|
|
g_source_attach (source, context);
|
|
|
|
|
g_source_unref (source);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
/* Don't check stdout data if we didn't pass a fd */
|
|
|
|
|
data.stdout_done = TRUE;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
g_main_loop_run (loop);
|
|
|
|
|
|
|
|
|
|
g_assert_true (data.child_exited);
|
|
|
|
|
|
2018-06-29 11:38:53 -05:00
|
|
|
|
if (test_pipe[1][0] >= 0)
|
2018-05-28 10:09:21 -06:00
|
|
|
|
{
|
2022-06-24 14:07:41 +04:00
|
|
|
|
gchar *tmp = g_strdup_printf ("# thread %d" LINEEND, tnum);
|
2018-05-28 10:09:21 -06:00
|
|
|
|
/* Check for echo on stdout */
|
|
|
|
|
g_assert_true (data.stdout_done);
|
2022-06-24 14:07:41 +04:00
|
|
|
|
g_assert_cmpstr (data.stdout_buf->str, ==, tmp);
|
2018-05-28 10:09:21 -06:00
|
|
|
|
g_io_channel_unref (channel);
|
2022-06-24 14:07:41 +04:00
|
|
|
|
g_free (tmp);
|
2018-05-28 10:09:21 -06:00
|
|
|
|
}
|
|
|
|
|
g_string_free (data.stdout_buf, TRUE);
|
|
|
|
|
|
|
|
|
|
g_main_context_unref (context);
|
|
|
|
|
g_main_loop_unref (loop);
|
2020-06-23 10:49:44 +01:00
|
|
|
|
safe_close (test_pipe[0][1]);
|
|
|
|
|
safe_close (test_pipe[1][0]);
|
2018-05-28 10:09:21 -06:00
|
|
|
|
if (fd_info[2] != STDOUT_PIPE)
|
2020-06-23 10:49:44 +01:00
|
|
|
|
safe_close (test_pipe[2][0]);
|
2018-05-28 10:09:21 -06:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
g_ptr_array_free (argv, TRUE);
|
|
|
|
|
g_free (arg);
|
|
|
|
|
}
|
|
|
|
|
|
2022-02-09 18:33:25 +04:00
|
|
|
|
static void
|
|
|
|
|
test_spawn_async_with_invalid_fds (void)
|
|
|
|
|
{
|
|
|
|
|
const gchar *argv[] = { echo_prog_path, "thread 0", NULL };
|
|
|
|
|
gint source_fds[1000];
|
|
|
|
|
GError *local_error = NULL;
|
|
|
|
|
gboolean retval;
|
|
|
|
|
gsize i;
|
|
|
|
|
|
2022-12-13 14:18:36 +00:00
|
|
|
|
/* Create an identity mapping from [0, …, 999]. This is very likely going to
|
|
|
|
|
* conflict with the internal FDs, as it covers a lot of the FD space
|
|
|
|
|
* (including stdin, stdout and stderr, though we don’t care about them in
|
|
|
|
|
* this test).
|
|
|
|
|
*
|
|
|
|
|
* Skip the test if we somehow avoid a collision. */
|
|
|
|
|
for (i = 0; i < G_N_ELEMENTS (source_fds); i++)
|
2022-02-09 18:33:25 +04:00
|
|
|
|
source_fds[i] = i;
|
|
|
|
|
|
|
|
|
|
retval = g_spawn_async_with_pipes_and_fds (NULL, argv, NULL, G_SPAWN_DEFAULT,
|
|
|
|
|
NULL, NULL, -1, -1, -1,
|
|
|
|
|
source_fds, source_fds, G_N_ELEMENTS (source_fds),
|
|
|
|
|
NULL, NULL, NULL, NULL,
|
|
|
|
|
&local_error);
|
|
|
|
|
if (retval)
|
|
|
|
|
{
|
|
|
|
|
g_test_skip ("Skipping internal FDs check as test didn’t manage to trigger a collision");
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
g_assert_false (retval);
|
|
|
|
|
g_assert_error (local_error, G_SPAWN_ERROR, G_SPAWN_ERROR_INVAL);
|
|
|
|
|
g_error_free (local_error);
|
|
|
|
|
}
|
|
|
|
|
|
2011-06-10 07:29:28 -04:00
|
|
|
|
static void
|
|
|
|
|
test_spawn_sync (void)
|
|
|
|
|
{
|
|
|
|
|
int tnum = 1;
|
|
|
|
|
GError *error = NULL;
|
2018-12-26 23:30:57 +03:00
|
|
|
|
char *arg = g_strdup_printf ("thread %d", tnum);
|
|
|
|
|
/* Include arguments with special symbols to test that they are correctly passed to child.
|
|
|
|
|
* This is tested on all platforms, but the most prone to failure is win32,
|
|
|
|
|
* where args are specially escaped during spawning.
|
|
|
|
|
*/
|
|
|
|
|
const char * const argv[] = {
|
|
|
|
|
echo_prog_path,
|
|
|
|
|
arg,
|
|
|
|
|
"doublequotes\\\"after\\\\\"\"backslashes", /* this would be special escaped on win32 */
|
|
|
|
|
"\\\"\"doublequotes spaced after backslashes\\\\\"", /* this would be special escaped on win32 */
|
|
|
|
|
"even$$dollars",
|
|
|
|
|
"even%%percents",
|
|
|
|
|
"even\"\"doublequotes",
|
|
|
|
|
"even''singlequotes",
|
|
|
|
|
"even\\\\backslashes",
|
|
|
|
|
"even//slashes",
|
|
|
|
|
"$odd spaced$dollars$",
|
|
|
|
|
"%odd spaced%spercents%",
|
|
|
|
|
"\"odd spaced\"doublequotes\"",
|
|
|
|
|
"'odd spaced'singlequotes'",
|
|
|
|
|
"\\odd spaced\\backslashes\\", /* this wasn't handled correctly on win32 in glib <=2.58 */
|
|
|
|
|
"/odd spaced/slashes/",
|
|
|
|
|
NULL
|
|
|
|
|
};
|
|
|
|
|
char *joined_args_str = g_strjoinv ("", (char**)argv + 1);
|
2011-06-10 07:29:28 -04:00
|
|
|
|
char *stdout_str;
|
|
|
|
|
int estatus;
|
|
|
|
|
|
2018-12-26 23:30:57 +03:00
|
|
|
|
g_spawn_sync (NULL, (char**)argv, NULL, 0, NULL, NULL, &stdout_str, NULL, &estatus, &error);
|
2011-06-10 07:29:28 -04:00
|
|
|
|
g_assert_no_error (error);
|
2018-12-26 23:30:57 +03:00
|
|
|
|
g_assert_cmpstr (joined_args_str, ==, stdout_str);
|
2011-06-10 07:29:28 -04:00
|
|
|
|
g_free (arg);
|
|
|
|
|
g_free (stdout_str);
|
2018-12-26 23:30:57 +03:00
|
|
|
|
g_free (joined_args_str);
|
2011-06-10 07:29:28 -04:00
|
|
|
|
}
|
|
|
|
|
|
2022-04-08 16:50:57 +04:00
|
|
|
|
static void
|
|
|
|
|
init_networking (void)
|
|
|
|
|
{
|
|
|
|
|
#ifdef G_OS_WIN32
|
|
|
|
|
WSADATA wsadata;
|
|
|
|
|
|
|
|
|
|
if (WSAStartup (MAKEWORD (2, 0), &wsadata) != 0)
|
|
|
|
|
g_error ("Windows Sockets could not be initialized");
|
|
|
|
|
#endif
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
test_spawn_stderr_socket (void)
|
|
|
|
|
{
|
|
|
|
|
GError *error = NULL;
|
|
|
|
|
GPtrArray *argv;
|
|
|
|
|
int estatus;
|
|
|
|
|
int fd;
|
|
|
|
|
|
|
|
|
|
g_test_summary ("Test calling g_spawn_sync() with its stderr FD set to a socket");
|
|
|
|
|
|
|
|
|
|
if (g_test_subprocess ())
|
|
|
|
|
{
|
|
|
|
|
init_networking ();
|
|
|
|
|
fd = socket (AF_INET, SOCK_STREAM, 0);
|
|
|
|
|
g_assert_cmpint (fd, >=, 0);
|
|
|
|
|
#ifdef G_OS_WIN32
|
|
|
|
|
fd = _open_osfhandle (fd, 0);
|
|
|
|
|
g_assert_cmpint (fd, >=, 0);
|
|
|
|
|
#endif
|
|
|
|
|
/* Set the socket as FD 2, stderr */
|
|
|
|
|
estatus = dup2 (fd, 2);
|
|
|
|
|
g_assert_cmpint (estatus, >=, 0);
|
|
|
|
|
|
|
|
|
|
argv = g_ptr_array_new ();
|
|
|
|
|
g_ptr_array_add (argv, echo_script_path);
|
|
|
|
|
g_ptr_array_add (argv, NULL);
|
|
|
|
|
|
|
|
|
|
g_spawn_sync (NULL, (char**) argv->pdata, NULL, 0, NULL, NULL, NULL, NULL, NULL, &error);
|
|
|
|
|
g_assert_no_error (error);
|
|
|
|
|
g_ptr_array_free (argv, TRUE);
|
|
|
|
|
g_close (fd, &error);
|
|
|
|
|
g_assert_no_error (error);
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2022-03-31 14:30:43 +01:00
|
|
|
|
g_test_trap_subprocess (NULL, 0, G_TEST_SUBPROCESS_DEFAULT);
|
2022-04-08 16:50:57 +04:00
|
|
|
|
g_test_trap_assert_passed ();
|
|
|
|
|
}
|
|
|
|
|
|
gspawn: Optimize with posix_spawn codepath
When the amount of free memory on the system is somewhat low, gnome-shell
will sometimes fail to launch apps, reporting the error:
fork(): Cannot allocate memory
fork() is failing here because while cloning the process virtual address
space, Linux worries that the thread being forked may end up COWing the
entire address space of the parent process (gnome-shell, which is
memory-hungry), and there is not enough free memory to permit that to
happen.
In this case we are simply calling fork() in order to quickly call exec(),
which will throw away the entirity of the duplicated VM, so we should
look for ways to avoid the overcommit check.
The well known solution to this is to use clone(CLONE_VM) or vfork(), which
completely avoids creating a new memory address space for the child.
However, that comes with a bunch of caveats and complications:
https://gist.github.com/nicowilliams/a8a07b0fc75df05f684c23c18d7db234
https://ewontfix.com/7/
In 2016, glibc's posix_spawn() was rewritten to use this approach
while also resolving the concerns.
https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=9ff72da471a509a8c19791efe469f47fa6977410
I experimented with a similar approach in glib, but it was not practical
because glibc has several items of important internal knowledge (such as
knowing which signals should be given special treatment because they are
NPTL implementation details) that are not cleanly exposed elsewhere.
Instead, this patch adapts the gspawn code to use posix_spawn() where
possible, which will reap the benefits of that implementation.
The posix_spawn API is more limited than the gspawn API though,
partly due to natural limitations of using CLONE_VM, so the posix_spawn
path is added as a separate codepath which is only executed when the
conditions are right. Callers such as gnome-shell will have to be modified
to meet these conditions, such as not having a child_setup function.
In addition to allowing for the gnome-shell "Cannot allocate memory"
failure to be avoided, this should result in a general speedup in this
area, because fork()'s behaviour of cloning the entire VM space
has a cost which is now avoided. posix_spawn() has also recently
been optimized on OpenSolaris as the most performant way to spawn
a child process.
2018-05-28 14:45:45 -06:00
|
|
|
|
/* Like test_spawn_sync but uses spawn flags that trigger the optimized
|
|
|
|
|
* posix_spawn codepath.
|
|
|
|
|
*/
|
|
|
|
|
static void
|
|
|
|
|
test_posix_spawn (void)
|
|
|
|
|
{
|
|
|
|
|
int tnum = 1;
|
|
|
|
|
GError *error = NULL;
|
|
|
|
|
GPtrArray *argv;
|
|
|
|
|
char *arg;
|
|
|
|
|
char *stdout_str;
|
|
|
|
|
int estatus;
|
|
|
|
|
GSpawnFlags flags = G_SPAWN_CLOEXEC_PIPES | G_SPAWN_LEAVE_DESCRIPTORS_OPEN;
|
|
|
|
|
|
|
|
|
|
arg = g_strdup_printf ("thread %d", tnum);
|
|
|
|
|
|
|
|
|
|
argv = g_ptr_array_new ();
|
|
|
|
|
g_ptr_array_add (argv, echo_prog_path);
|
|
|
|
|
g_ptr_array_add (argv, arg);
|
|
|
|
|
g_ptr_array_add (argv, NULL);
|
|
|
|
|
|
|
|
|
|
g_spawn_sync (NULL, (char**)argv->pdata, NULL, flags, NULL, NULL, &stdout_str, NULL, &estatus, &error);
|
|
|
|
|
g_assert_no_error (error);
|
|
|
|
|
g_assert_cmpstr (arg, ==, stdout_str);
|
|
|
|
|
g_free (arg);
|
|
|
|
|
g_free (stdout_str);
|
|
|
|
|
g_ptr_array_free (argv, TRUE);
|
|
|
|
|
}
|
|
|
|
|
|
2012-04-08 10:21:50 -04:00
|
|
|
|
static void
|
|
|
|
|
test_spawn_script (void)
|
|
|
|
|
{
|
|
|
|
|
GError *error = NULL;
|
|
|
|
|
GPtrArray *argv;
|
|
|
|
|
char *stdout_str;
|
|
|
|
|
int estatus;
|
|
|
|
|
|
|
|
|
|
argv = g_ptr_array_new ();
|
|
|
|
|
g_ptr_array_add (argv, echo_script_path);
|
|
|
|
|
g_ptr_array_add (argv, NULL);
|
|
|
|
|
|
|
|
|
|
g_spawn_sync (NULL, (char**)argv->pdata, NULL, 0, NULL, NULL, &stdout_str, NULL, &estatus, &error);
|
|
|
|
|
g_assert_no_error (error);
|
2013-11-06 15:14:06 +08:00
|
|
|
|
g_assert_cmpstr ("echo" LINEEND, ==, stdout_str);
|
2012-04-08 10:21:50 -04:00
|
|
|
|
g_free (stdout_str);
|
|
|
|
|
g_ptr_array_free (argv, TRUE);
|
|
|
|
|
}
|
|
|
|
|
|
2018-06-12 15:41:51 +01:00
|
|
|
|
/* Test that spawning a non-existent executable returns %G_SPAWN_ERROR_NOENT. */
|
|
|
|
|
static void
|
|
|
|
|
test_spawn_nonexistent (void)
|
|
|
|
|
{
|
|
|
|
|
GError *error = NULL;
|
|
|
|
|
GPtrArray *argv = NULL;
|
|
|
|
|
gchar *stdout_str = NULL;
|
Distinguish more clearly between wait status and exit status
On Unix platforms, wait() and friends yield an integer that encodes
how the process exited. Confusingly, this is usually not the same as
the integer passed to exit() or returned from main(): conceptually it's
an integer encoding of this tagged union:
enum { EXITED, SIGNALLED, ... } tag;
union {
int exit_status; /* if EXITED */
struct {
int terminating_signal;
bool core_dumped;
} terminating_signal; /* if SIGNALLED */
...
} detail;
Meanwhile, on Windows, wait statuses and exit statuses are
interchangeable.
I find that it's clearer what is going on if we are consistent about
referring to the result of wait() as a "wait status", and the value
passed to exit() as an "exit status".
GSubprocess already gets this right: g_subprocess_get_status() returns
the wait status, while g_subprocess_get_exit_status() genuinely returns
the exit status. However, the GSpawn family of APIs has tended to
conflate the two.
Confusingly, g_spawn_check_exit_status() has always checked a wait
status, and it would not be correct to pass an exit status to it; so
let's deprecate it in favour of g_spawn_check_wait_status(), which
does the same thing that g_spawn_check_exit_status() always did.
Code that needs backwards-compatibility with older GLib can use:
#if !GLIB_CHECK_VERSION(2, 69, 0)
#define g_spawn_check_wait_status(x) (g_spawn_check_exit_status (x))
#endif
Signed-off-by: Simon McVittie <smcv@collabora.com>
2021-06-14 12:51:01 +01:00
|
|
|
|
gint wait_status = -1;
|
2018-06-12 15:41:51 +01:00
|
|
|
|
|
|
|
|
|
argv = g_ptr_array_new ();
|
|
|
|
|
g_ptr_array_add (argv, "this does not exist");
|
|
|
|
|
g_ptr_array_add (argv, NULL);
|
|
|
|
|
|
|
|
|
|
g_spawn_sync (NULL, (char**) argv->pdata, NULL, 0, NULL, NULL, &stdout_str,
|
Distinguish more clearly between wait status and exit status
On Unix platforms, wait() and friends yield an integer that encodes
how the process exited. Confusingly, this is usually not the same as
the integer passed to exit() or returned from main(): conceptually it's
an integer encoding of this tagged union:
enum { EXITED, SIGNALLED, ... } tag;
union {
int exit_status; /* if EXITED */
struct {
int terminating_signal;
bool core_dumped;
} terminating_signal; /* if SIGNALLED */
...
} detail;
Meanwhile, on Windows, wait statuses and exit statuses are
interchangeable.
I find that it's clearer what is going on if we are consistent about
referring to the result of wait() as a "wait status", and the value
passed to exit() as an "exit status".
GSubprocess already gets this right: g_subprocess_get_status() returns
the wait status, while g_subprocess_get_exit_status() genuinely returns
the exit status. However, the GSpawn family of APIs has tended to
conflate the two.
Confusingly, g_spawn_check_exit_status() has always checked a wait
status, and it would not be correct to pass an exit status to it; so
let's deprecate it in favour of g_spawn_check_wait_status(), which
does the same thing that g_spawn_check_exit_status() always did.
Code that needs backwards-compatibility with older GLib can use:
#if !GLIB_CHECK_VERSION(2, 69, 0)
#define g_spawn_check_wait_status(x) (g_spawn_check_exit_status (x))
#endif
Signed-off-by: Simon McVittie <smcv@collabora.com>
2021-06-14 12:51:01 +01:00
|
|
|
|
NULL, &wait_status, &error);
|
2018-06-12 15:41:51 +01:00
|
|
|
|
g_assert_error (error, G_SPAWN_ERROR, G_SPAWN_ERROR_NOENT);
|
|
|
|
|
g_assert_null (stdout_str);
|
Distinguish more clearly between wait status and exit status
On Unix platforms, wait() and friends yield an integer that encodes
how the process exited. Confusingly, this is usually not the same as
the integer passed to exit() or returned from main(): conceptually it's
an integer encoding of this tagged union:
enum { EXITED, SIGNALLED, ... } tag;
union {
int exit_status; /* if EXITED */
struct {
int terminating_signal;
bool core_dumped;
} terminating_signal; /* if SIGNALLED */
...
} detail;
Meanwhile, on Windows, wait statuses and exit statuses are
interchangeable.
I find that it's clearer what is going on if we are consistent about
referring to the result of wait() as a "wait status", and the value
passed to exit() as an "exit status".
GSubprocess already gets this right: g_subprocess_get_status() returns
the wait status, while g_subprocess_get_exit_status() genuinely returns
the exit status. However, the GSpawn family of APIs has tended to
conflate the two.
Confusingly, g_spawn_check_exit_status() has always checked a wait
status, and it would not be correct to pass an exit status to it; so
let's deprecate it in favour of g_spawn_check_wait_status(), which
does the same thing that g_spawn_check_exit_status() always did.
Code that needs backwards-compatibility with older GLib can use:
#if !GLIB_CHECK_VERSION(2, 69, 0)
#define g_spawn_check_wait_status(x) (g_spawn_check_exit_status (x))
#endif
Signed-off-by: Simon McVittie <smcv@collabora.com>
2021-06-14 12:51:01 +01:00
|
|
|
|
g_assert_cmpint (wait_status, ==, -1);
|
2018-06-12 15:41:51 +01:00
|
|
|
|
|
|
|
|
|
g_ptr_array_free (argv, TRUE);
|
2018-06-27 09:58:28 +01:00
|
|
|
|
|
|
|
|
|
g_clear_error (&error);
|
2018-06-12 15:41:51 +01:00
|
|
|
|
}
|
|
|
|
|
|
2020-10-13 13:39:36 +01:00
|
|
|
|
/* Test that FD assignments in a spawned process don’t overwrite and break the
|
|
|
|
|
* child_err_report_fd which is used to report error information back from the
|
|
|
|
|
* intermediate child process to the parent.
|
|
|
|
|
*
|
|
|
|
|
* https://gitlab.gnome.org/GNOME/glib/-/issues/2097 */
|
|
|
|
|
static void
|
|
|
|
|
test_spawn_fd_assignment_clash (void)
|
|
|
|
|
{
|
|
|
|
|
int tmp_fd;
|
|
|
|
|
guint i;
|
2022-01-27 00:06:10 +04:00
|
|
|
|
#define N_FDS 10
|
|
|
|
|
gint source_fds[N_FDS];
|
|
|
|
|
gint target_fds[N_FDS];
|
2021-02-16 15:08:47 +00:00
|
|
|
|
const gchar *argv[] = { "/nonexistent", NULL };
|
2020-10-13 13:39:36 +01:00
|
|
|
|
gboolean retval;
|
|
|
|
|
GError *local_error = NULL;
|
|
|
|
|
struct stat statbuf;
|
|
|
|
|
|
|
|
|
|
/* Open a temporary file and duplicate its FD several times so we have several
|
|
|
|
|
* FDs to remap in the child process. */
|
|
|
|
|
tmp_fd = g_file_open_tmp ("glib-spawn-test-XXXXXX", NULL, NULL);
|
|
|
|
|
g_assert_cmpint (tmp_fd, >=, 0);
|
|
|
|
|
|
2022-01-27 00:06:10 +04:00
|
|
|
|
for (i = 0; i < (N_FDS - 1); ++i)
|
2020-10-13 13:39:36 +01:00
|
|
|
|
{
|
2022-01-26 14:35:43 +04:00
|
|
|
|
int source;
|
|
|
|
|
#ifdef F_DUPFD_CLOEXEC
|
|
|
|
|
source = fcntl (tmp_fd, F_DUPFD_CLOEXEC, 3);
|
|
|
|
|
#else
|
|
|
|
|
source = dup (tmp_fd);
|
|
|
|
|
#endif
|
2020-10-13 13:39:36 +01:00
|
|
|
|
g_assert_cmpint (source, >=, 0);
|
|
|
|
|
source_fds[i] = source;
|
2022-01-27 00:06:10 +04:00
|
|
|
|
target_fds[i] = source + N_FDS;
|
2020-10-13 13:39:36 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
source_fds[i] = tmp_fd;
|
2022-01-27 00:06:10 +04:00
|
|
|
|
target_fds[i] = tmp_fd + N_FDS;
|
2020-10-13 13:39:36 +01:00
|
|
|
|
|
|
|
|
|
/* Print out the FD map. */
|
|
|
|
|
g_test_message ("FD map:");
|
2022-01-27 00:06:10 +04:00
|
|
|
|
for (i = 0; i < N_FDS; i++)
|
2020-10-13 13:39:36 +01:00
|
|
|
|
g_test_message (" • %d → %d", source_fds[i], target_fds[i]);
|
|
|
|
|
|
|
|
|
|
/* Spawn the subprocess. This should fail because the executable doesn’t
|
|
|
|
|
* exist. */
|
|
|
|
|
retval = g_spawn_async_with_pipes_and_fds (NULL, argv, NULL, G_SPAWN_DEFAULT,
|
|
|
|
|
NULL, NULL, -1, -1, -1,
|
2022-01-27 00:06:10 +04:00
|
|
|
|
source_fds, target_fds, N_FDS,
|
2020-10-13 13:39:36 +01:00
|
|
|
|
NULL, NULL, NULL, NULL,
|
|
|
|
|
&local_error);
|
|
|
|
|
g_assert_error (local_error, G_SPAWN_ERROR, G_SPAWN_ERROR_NOENT);
|
|
|
|
|
g_assert_false (retval);
|
|
|
|
|
|
|
|
|
|
g_clear_error (&local_error);
|
|
|
|
|
|
|
|
|
|
/* Check nothing was written to the temporary file, as would happen if the FD
|
|
|
|
|
* mapping was messed up to conflict with the child process error reporting FD.
|
|
|
|
|
* See https://gitlab.gnome.org/GNOME/glib/-/issues/2097 */
|
|
|
|
|
g_assert_no_errno (fstat (tmp_fd, &statbuf));
|
|
|
|
|
g_assert_cmpuint (statbuf.st_size, ==, 0);
|
|
|
|
|
|
|
|
|
|
/* Clean up. */
|
2022-01-27 00:06:10 +04:00
|
|
|
|
for (i = 0; i < N_FDS; i++)
|
2020-10-13 13:39:36 +01:00
|
|
|
|
g_close (source_fds[i], NULL);
|
|
|
|
|
}
|
|
|
|
|
|
2011-06-10 07:29:28 -04:00
|
|
|
|
int
|
|
|
|
|
main (int argc,
|
|
|
|
|
char *argv[])
|
|
|
|
|
{
|
|
|
|
|
char *dirname;
|
2012-08-23 12:48:49 -04:00
|
|
|
|
int ret;
|
2011-06-10 07:29:28 -04:00
|
|
|
|
|
2020-12-04 18:21:10 +00:00
|
|
|
|
setlocale (LC_ALL, "");
|
|
|
|
|
|
2011-06-10 07:29:28 -04:00
|
|
|
|
g_test_init (&argc, &argv, NULL);
|
|
|
|
|
|
|
|
|
|
dirname = g_path_get_dirname (argv[0]);
|
2012-11-25 13:52:20 -05:00
|
|
|
|
echo_prog_path = g_build_filename (dirname, "test-spawn-echo" EXEEXT, NULL);
|
2013-11-06 15:14:06 +08:00
|
|
|
|
echo_script_path = g_build_filename (dirname, "echo-script" SCRIPT_EXT, NULL);
|
2012-04-08 10:21:50 -04:00
|
|
|
|
if (!g_file_test (echo_script_path, G_FILE_TEST_EXISTS))
|
|
|
|
|
{
|
|
|
|
|
g_free (echo_script_path);
|
2013-11-06 15:14:06 +08:00
|
|
|
|
echo_script_path = g_test_build_filename (G_TEST_DIST, "echo-script" SCRIPT_EXT, NULL);
|
2012-04-08 10:21:50 -04:00
|
|
|
|
}
|
2011-06-10 07:29:28 -04:00
|
|
|
|
g_free (dirname);
|
|
|
|
|
|
|
|
|
|
g_assert (g_file_test (echo_prog_path, G_FILE_TEST_EXISTS));
|
2012-04-08 10:21:50 -04:00
|
|
|
|
g_assert (g_file_test (echo_script_path, G_FILE_TEST_EXISTS));
|
2011-06-10 07:29:28 -04:00
|
|
|
|
|
|
|
|
|
g_test_add_func ("/gthread/spawn-single-sync", test_spawn_sync);
|
2022-04-08 16:50:57 +04:00
|
|
|
|
g_test_add_func ("/gthread/spawn-stderr-socket", test_spawn_stderr_socket);
|
2011-06-10 07:29:28 -04:00
|
|
|
|
g_test_add_func ("/gthread/spawn-single-async", test_spawn_async);
|
2018-05-28 10:09:21 -06:00
|
|
|
|
g_test_add_func ("/gthread/spawn-single-async-with-fds", test_spawn_async_with_fds);
|
2022-02-09 18:33:25 +04:00
|
|
|
|
g_test_add_func ("/gthread/spawn-async-with-invalid-fds", test_spawn_async_with_invalid_fds);
|
2012-04-08 10:21:50 -04:00
|
|
|
|
g_test_add_func ("/gthread/spawn-script", test_spawn_script);
|
2018-06-12 15:41:51 +01:00
|
|
|
|
g_test_add_func ("/gthread/spawn/nonexistent", test_spawn_nonexistent);
|
gspawn: Optimize with posix_spawn codepath
When the amount of free memory on the system is somewhat low, gnome-shell
will sometimes fail to launch apps, reporting the error:
fork(): Cannot allocate memory
fork() is failing here because while cloning the process virtual address
space, Linux worries that the thread being forked may end up COWing the
entire address space of the parent process (gnome-shell, which is
memory-hungry), and there is not enough free memory to permit that to
happen.
In this case we are simply calling fork() in order to quickly call exec(),
which will throw away the entirity of the duplicated VM, so we should
look for ways to avoid the overcommit check.
The well known solution to this is to use clone(CLONE_VM) or vfork(), which
completely avoids creating a new memory address space for the child.
However, that comes with a bunch of caveats and complications:
https://gist.github.com/nicowilliams/a8a07b0fc75df05f684c23c18d7db234
https://ewontfix.com/7/
In 2016, glibc's posix_spawn() was rewritten to use this approach
while also resolving the concerns.
https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=9ff72da471a509a8c19791efe469f47fa6977410
I experimented with a similar approach in glib, but it was not practical
because glibc has several items of important internal knowledge (such as
knowing which signals should be given special treatment because they are
NPTL implementation details) that are not cleanly exposed elsewhere.
Instead, this patch adapts the gspawn code to use posix_spawn() where
possible, which will reap the benefits of that implementation.
The posix_spawn API is more limited than the gspawn API though,
partly due to natural limitations of using CLONE_VM, so the posix_spawn
path is added as a separate codepath which is only executed when the
conditions are right. Callers such as gnome-shell will have to be modified
to meet these conditions, such as not having a child_setup function.
In addition to allowing for the gnome-shell "Cannot allocate memory"
failure to be avoided, this should result in a general speedup in this
area, because fork()'s behaviour of cloning the entire VM space
has a cost which is now avoided. posix_spawn() has also recently
been optimized on OpenSolaris as the most performant way to spawn
a child process.
2018-05-28 14:45:45 -06:00
|
|
|
|
g_test_add_func ("/gthread/spawn-posix-spawn", test_posix_spawn);
|
2020-10-13 13:39:36 +01:00
|
|
|
|
g_test_add_func ("/gthread/spawn/fd-assignment-clash", test_spawn_fd_assignment_clash);
|
2011-06-10 07:29:28 -04:00
|
|
|
|
|
2012-08-23 12:48:49 -04:00
|
|
|
|
ret = g_test_run();
|
|
|
|
|
|
|
|
|
|
g_free (echo_script_path);
|
|
|
|
|
g_free (echo_prog_path);
|
|
|
|
|
|
|
|
|
|
return ret;
|
2011-06-10 07:29:28 -04:00
|
|
|
|
}
|