2024-01-01 18:12:26 +00:00
|
|
|
/* Copyright (C) 2002-2024 Free Software Foundation, Inc.
|
2002-12-17 06:52:45 +00:00
|
|
|
This file is part of the GNU C Library.
|
|
|
|
|
|
|
|
The GNU C Library is free software; you can redistribute it and/or
|
|
|
|
modify it under the terms of the GNU Lesser General Public
|
|
|
|
License as published by the Free Software Foundation; either
|
|
|
|
version 2.1 of the License, or (at your option) any later version.
|
|
|
|
|
|
|
|
The GNU C Library 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
|
|
|
|
Lesser General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU Lesser General Public
|
2012-02-09 23:18:22 +00:00
|
|
|
License along with the GNU C Library; if not, see
|
Prefer https to http for gnu.org and fsf.org URLs
Also, change sources.redhat.com to sourceware.org.
This patch was automatically generated by running the following shell
script, which uses GNU sed, and which avoids modifying files imported
from upstream:
sed -ri '
s,(http|ftp)(://(.*\.)?(gnu|fsf|sourceware)\.org($|[^.]|\.[^a-z])),https\2,g
s,(http|ftp)(://(.*\.)?)sources\.redhat\.com($|[^.]|\.[^a-z]),https\2sourceware.org\4,g
' \
$(find $(git ls-files) -prune -type f \
! -name '*.po' \
! -name 'ChangeLog*' \
! -path COPYING ! -path COPYING.LIB \
! -path manual/fdl-1.3.texi ! -path manual/lgpl-2.1.texi \
! -path manual/texinfo.tex ! -path scripts/config.guess \
! -path scripts/config.sub ! -path scripts/install-sh \
! -path scripts/mkinstalldirs ! -path scripts/move-if-change \
! -path INSTALL ! -path locale/programs/charmap-kw.h \
! -path po/libc.pot ! -path sysdeps/gnu/errlist.c \
! '(' -name configure \
-execdir test -f configure.ac -o -f configure.in ';' ')' \
! '(' -name preconfigure \
-execdir test -f preconfigure.ac ';' ')' \
-print)
and then by running 'make dist-prepare' to regenerate files built
from the altered files, and then executing the following to cleanup:
chmod a+x sysdeps/unix/sysv/linux/riscv/configure
# Omit irrelevant whitespace and comment-only changes,
# perhaps from a slightly-different Autoconf version.
git checkout -f \
sysdeps/csky/configure \
sysdeps/hppa/configure \
sysdeps/riscv/configure \
sysdeps/unix/sysv/linux/csky/configure
# Omit changes that caused a pre-commit check to fail like this:
# remote: *** error: sysdeps/powerpc/powerpc64/ppc-mcount.S: trailing lines
git checkout -f \
sysdeps/powerpc/powerpc64/ppc-mcount.S \
sysdeps/unix/sysv/linux/s390/s390-64/syscall.S
# Omit change that caused a pre-commit check to fail like this:
# remote: *** error: sysdeps/sparc/sparc64/multiarch/memcpy-ultra3.S: last line does not end in newline
git checkout -f sysdeps/sparc/sparc64/multiarch/memcpy-ultra3.S
2019-09-07 05:40:42 +00:00
|
|
|
<https://www.gnu.org/licenses/>. */
|
2002-12-17 06:52:45 +00:00
|
|
|
|
|
|
|
#include <stdlib.h>
|
2020-03-23 18:23:20 +00:00
|
|
|
#include <unistd.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <signal.h>
|
|
|
|
#include <paths.h>
|
2002-12-17 06:52:45 +00:00
|
|
|
|
2020-03-23 18:23:20 +00:00
|
|
|
#include <support/capture_subprocess.h>
|
|
|
|
#include <support/check.h>
|
|
|
|
#include <support/temp_file.h>
|
|
|
|
#include <support/support.h>
|
2023-03-07 12:30:02 +00:00
|
|
|
#include <support/xthread.h>
|
2020-12-11 18:23:05 +00:00
|
|
|
#include <support/xunistd.h>
|
2020-03-23 18:23:20 +00:00
|
|
|
|
|
|
|
static char *tmpdir;
|
|
|
|
static long int namemax;
|
|
|
|
|
|
|
|
static void
|
|
|
|
do_prepare (int argc, char *argv[])
|
|
|
|
{
|
|
|
|
tmpdir = support_create_temp_directory ("tst-system-");
|
|
|
|
/* Include the last '/0'. */
|
|
|
|
namemax = pathconf (tmpdir, _PC_NAME_MAX) + 1;
|
|
|
|
TEST_VERIFY_EXIT (namemax != -1);
|
|
|
|
}
|
|
|
|
#define PREPARE do_prepare
|
|
|
|
|
|
|
|
struct args
|
|
|
|
{
|
|
|
|
const char *command;
|
|
|
|
int exit_status;
|
|
|
|
int term_sig;
|
|
|
|
const char *path;
|
|
|
|
};
|
|
|
|
|
|
|
|
static void
|
|
|
|
call_system (void *closure)
|
|
|
|
{
|
|
|
|
struct args *args = (struct args *) closure;
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
if (args->path != NULL)
|
|
|
|
TEST_COMPARE (setenv ("PATH", args->path, 1), 0);
|
|
|
|
ret = system (args->command);
|
|
|
|
if (args->term_sig == 0)
|
|
|
|
{
|
|
|
|
/* Expect regular termination. */
|
|
|
|
TEST_VERIFY (WIFEXITED (ret) != 0);
|
|
|
|
TEST_COMPARE (WEXITSTATUS (ret), args->exit_status);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
/* status_or_signal < 0. Expect termination by signal. */
|
|
|
|
TEST_VERIFY (WIFSIGNALED (ret) != 0);
|
|
|
|
TEST_COMPARE (WTERMSIG (ret), args->term_sig);
|
|
|
|
}
|
|
|
|
}
|
2002-12-17 06:52:45 +00:00
|
|
|
|
2023-03-07 12:30:02 +00:00
|
|
|
static void *
|
|
|
|
sleep_and_check_sigchld (void *closure)
|
|
|
|
{
|
|
|
|
double *seconds = (double *) closure;
|
|
|
|
char cmd[namemax];
|
|
|
|
sprintf (cmd, "sleep %lf" , *seconds);
|
|
|
|
TEST_COMPARE (system (cmd), 0);
|
|
|
|
|
|
|
|
sigset_t blocked = {0};
|
|
|
|
TEST_COMPARE (sigprocmask (SIG_BLOCK, NULL, &blocked), 0);
|
|
|
|
TEST_COMPARE (sigismember (&blocked, SIGCHLD), 0);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2002-12-17 06:52:45 +00:00
|
|
|
static int
|
|
|
|
do_test (void)
|
|
|
|
{
|
2020-03-23 18:23:20 +00:00
|
|
|
TEST_VERIFY (system (NULL) != 0);
|
2002-12-17 06:52:45 +00:00
|
|
|
|
2020-03-23 18:23:20 +00:00
|
|
|
{
|
|
|
|
char cmd[namemax];
|
|
|
|
memset (cmd, 'a', sizeof(cmd));
|
|
|
|
cmd[sizeof(cmd) - 1] = '\0';
|
|
|
|
|
|
|
|
struct support_capture_subprocess result;
|
|
|
|
result = support_capture_subprocess (call_system,
|
|
|
|
&(struct args) {
|
|
|
|
cmd, 127, 0, tmpdir
|
|
|
|
});
|
|
|
|
support_capture_subprocess_check (&result, "system", 0, sc_allow_stderr);
|
|
|
|
|
2020-03-24 18:48:34 +00:00
|
|
|
char *returnerr = xasprintf ("%s: execing %s failed: "
|
|
|
|
"No such file or directory",
|
2020-03-23 18:23:20 +00:00
|
|
|
basename(_PATH_BSHELL), cmd);
|
|
|
|
TEST_COMPARE_STRING (result.err.buffer, returnerr);
|
|
|
|
free (returnerr);
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
|
|
|
char cmd[namemax + 1];
|
|
|
|
memset (cmd, 'a', sizeof(cmd));
|
|
|
|
cmd[sizeof(cmd) - 1] = '\0';
|
|
|
|
|
|
|
|
struct support_capture_subprocess result;
|
|
|
|
result = support_capture_subprocess (call_system,
|
|
|
|
&(struct args) {
|
|
|
|
cmd, 127, 0, tmpdir
|
|
|
|
});
|
|
|
|
support_capture_subprocess_check (&result, "system", 0, sc_allow_stderr);
|
|
|
|
|
2020-03-24 18:48:34 +00:00
|
|
|
char *returnerr = xasprintf ("%s: execing %s failed: "
|
|
|
|
"File name too long",
|
2020-03-23 18:23:20 +00:00
|
|
|
basename(_PATH_BSHELL), cmd);
|
|
|
|
TEST_COMPARE_STRING (result.err.buffer, returnerr);
|
|
|
|
free (returnerr);
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
|
|
|
struct support_capture_subprocess result;
|
|
|
|
result = support_capture_subprocess (call_system,
|
|
|
|
&(struct args) {
|
2020-03-24 18:48:34 +00:00
|
|
|
"kill $$", 0, SIGTERM
|
2020-03-23 18:23:20 +00:00
|
|
|
});
|
|
|
|
support_capture_subprocess_check (&result, "system", 0, sc_allow_none);
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
|
|
|
struct support_capture_subprocess result;
|
|
|
|
result = support_capture_subprocess (call_system,
|
|
|
|
&(struct args) { "echo ...", 0 });
|
|
|
|
support_capture_subprocess_check (&result, "system", 0, sc_allow_stdout);
|
|
|
|
TEST_COMPARE_STRING (result.out.buffer, "...\n");
|
|
|
|
}
|
|
|
|
|
2023-03-22 18:04:30 +00:00
|
|
|
{
|
|
|
|
struct support_capture_subprocess result;
|
|
|
|
const char *cmd = "-echo";
|
|
|
|
result = support_capture_subprocess (call_system,
|
|
|
|
&(struct args) { cmd, 127 });
|
|
|
|
support_capture_subprocess_check (&result, "system", 0, sc_allow_stderr |
|
|
|
|
sc_allow_stdout);
|
|
|
|
char *returnerr = xasprintf ("%s: execing -echo failed: "
|
|
|
|
"No such file or directory",
|
|
|
|
basename(_PATH_BSHELL));
|
|
|
|
TEST_COMPARE_STRING (result.err.buffer, returnerr);
|
|
|
|
free (returnerr);
|
|
|
|
}
|
|
|
|
|
2020-03-23 18:23:20 +00:00
|
|
|
{
|
|
|
|
struct support_capture_subprocess result;
|
|
|
|
result = support_capture_subprocess (call_system,
|
|
|
|
&(struct args) { "exit 1", 1 });
|
|
|
|
support_capture_subprocess_check (&result, "system", 0, sc_allow_none);
|
|
|
|
}
|
|
|
|
|
2020-12-11 18:23:05 +00:00
|
|
|
{
|
|
|
|
struct stat64 st;
|
|
|
|
xstat (_PATH_BSHELL, &st);
|
|
|
|
mode_t mode = st.st_mode;
|
|
|
|
xchmod (_PATH_BSHELL, mode & ~(S_IXUSR | S_IXGRP | S_IXOTH));
|
|
|
|
|
|
|
|
struct support_capture_subprocess result;
|
|
|
|
result = support_capture_subprocess (call_system,
|
|
|
|
&(struct args) {
|
|
|
|
"exit 1", 127, 0
|
|
|
|
});
|
|
|
|
support_capture_subprocess_check (&result, "system", 0, sc_allow_none);
|
|
|
|
|
|
|
|
xchmod (_PATH_BSHELL, st.st_mode);
|
|
|
|
}
|
|
|
|
|
2023-03-07 12:30:02 +00:00
|
|
|
{
|
|
|
|
pthread_t long_sleep_thread = xpthread_create (NULL,
|
|
|
|
sleep_and_check_sigchld,
|
|
|
|
&(double) { 0.2 });
|
|
|
|
pthread_t short_sleep_thread = xpthread_create (NULL,
|
|
|
|
sleep_and_check_sigchld,
|
|
|
|
&(double) { 0.1 });
|
|
|
|
xpthread_join (short_sleep_thread);
|
|
|
|
xpthread_join (long_sleep_thread);
|
|
|
|
}
|
|
|
|
|
2020-03-24 18:48:34 +00:00
|
|
|
TEST_COMPARE (system (""), 0);
|
2020-03-23 18:23:20 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
2002-12-17 06:52:45 +00:00
|
|
|
|
2020-03-23 18:23:20 +00:00
|
|
|
#include <support/test-driver.c>
|