aboutsummaryrefslogtreecommitdiff
path: root/stdlib
diff options
context:
space:
mode:
authorJoe Simmons-Talbott <josimmon@redhat.com>2023-03-22 14:04:30 -0400
committerAdhemerval Zanella <adhemerval.zanella@linaro.org>2023-03-28 10:12:30 -0300
commit868506eb427c9dcc6d869cd4885679be04e1b7dd (patch)
tree11233f242405423c14ff09fe781131696d4c73b0 /stdlib
parent31bfe3ef4ea898df606cb6cc59ac72de27002b01 (diff)
downloadglibc-868506eb427c9dcc6d869cd4885679be04e1b7dd.tar
glibc-868506eb427c9dcc6d869cd4885679be04e1b7dd.tar.gz
glibc-868506eb427c9dcc6d869cd4885679be04e1b7dd.tar.bz2
glibc-868506eb427c9dcc6d869cd4885679be04e1b7dd.zip
system: Add "--" after "-c" for sh (BZ #28519)
Prevent sh from interpreting a user string as shell options if it starts with '-' or '+'. Since the version of /bin/sh used for testing system() is different from the full-fledged system /bin/sh add support to it for handling "--" after "-c". Add a testcase to ensure the expected behavior. Signed-off-by: Joe Simmons-Talbott <josimmon@redhat.com> Reviewed-by: Adhemerval Zanella <adhemerval.zanella@linaro.org>
Diffstat (limited to 'stdlib')
-rw-r--r--stdlib/tst-system.c14
1 files changed, 14 insertions, 0 deletions
diff --git a/stdlib/tst-system.c b/stdlib/tst-system.c
index 47a0afe6bf..3a55ec2791 100644
--- a/stdlib/tst-system.c
+++ b/stdlib/tst-system.c
@@ -148,6 +148,20 @@ do_test (void)
{
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);
+ }
+
+ {
+ 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);