From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 1827) id B84E3386F02B; Tue, 12 May 2020 18:43:43 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org B84E3386F02B Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: Tulio Magno Quites Machado Filho To: glibc-cvs@sourceware.org Subject: [glibc/ibm/2.30/master] support/shell-container.c: Add builtin kill X-Act-Checkin: glibc X-Git-Author: Adhemerval Zanella X-Git-Refname: refs/heads/ibm/2.30/master X-Git-Oldrev: 946ee0281a5a409c6e4af08fabcde9b03cf1624d X-Git-Newrev: 42766b3db2c895be02404dc89995412e841f05b7 Message-Id: <20200512184343.B84E3386F02B@sourceware.org> Date: Tue, 12 May 2020 18:43:43 +0000 (GMT) X-BeenThere: glibc-cvs@sourceware.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Glibc-cvs mailing list List-Unsubscribe: , List-Archive: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 12 May 2020 18:43:43 -0000 https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=42766b3db2c895be02404dc89995412e841f05b7 commit 42766b3db2c895be02404dc89995412e841f05b7 Author: Adhemerval Zanella Date: Tue Mar 24 15:47:13 2020 -0300 support/shell-container.c: Add builtin kill No options supported. Reviewed-by: DJ Delorie (cherry picked from commit 1c17100c43c0913ec94f3bcc966bf3792236c690) Diff: --- support/shell-container.c | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/support/shell-container.c b/support/shell-container.c index 99a0ff7ca5..51b01dce0d 100644 --- a/support/shell-container.c +++ b/support/shell-container.c @@ -147,6 +147,25 @@ exit_func (char **argv) return 0; } +/* Emulate the "/bin/kill" command. Options are ignored. */ +static int +kill_func (char **argv) +{ + int signum = SIGTERM; + int i; + + for (i = 0; argv[i]; i++) + { + pid_t pid; + if (strcmp (argv[i], "$$") == 0) + pid = getpid (); + else + pid = atoi (argv[i]); + kill (pid, signum); + } + return 0; +} + /* This is a list of all the built-in commands we understand. */ static struct { const char *name; @@ -156,6 +175,7 @@ static struct { { "echo", echo_func }, { "cp", copy_func }, { "exit", exit_func }, + { "kill", kill_func }, { NULL, NULL } }; @@ -264,6 +284,11 @@ run_command_array (char **argv) if (rv) exit (rv); } + else if (WIFSIGNALED (status)) + { + int sig = WTERMSIG (status); + raise (sig); + } else exit (1); }