blob: 431b64aa534742f86c14de100e04595e793194df [file] [log] [blame]
/*
*
* Copyright (c) International Business Machines Corp., 2002
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program 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 General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
/*
* NAME
* pipe04.c
*
* DESCRIPTION
* Check that processes are killable, even when they are still writing
* data to a pipe.
*
* ALGORITHM
* 1. Open a pipe
* 2. fork a two children that will write to the pipe
* 3. read a bit from both children
* 3. kill both children and wait to make sure they die
*
* USAGE: <for command-line>
* pipe04 [-c n] [-f] [-i n] [-I x] [-P x] [-t]
* where, -c n : Run n copies concurrently.
* -f : Turn off functionality Testing.
* -i n : Execute test n times.
* -I x : Execute test for x seconds.
* -P x : Pause for x seconds between iterations.
* -t : Turn on syscall timing.
*
* HISTORY
* 11/2002 Ported by Paul Larson
*/
#include <unistd.h>
#include <errno.h>
#include <signal.h>
#include <sys/types.h>
#include <sys/wait.h>
#include "test.h"
#include "usctest.h"
char *TCID = "pipe04";
int TST_TOTAL = 1;
extern int Tst_count;
int exp_enos[] = { EBADF, 0 };
int fildes[2]; /* fds for pipe read and write */
void setup(void);
void cleanup(void);
void c1func(void);
void c2func(void);
void alarmfunc(int);
ssize_t safe_read(int fd, void *buf, size_t count)
{
ssize_t n;
do {
n = read(fd, buf, count);
} while (n < 0 && errno == EINTR);
return n;
}
int main(int ac, char **av)
{
int lc; /* loop counter */
char *msg; /* message returned from parse_opts */
pid_t c1pid, c2pid;
int wtchild, wtstatus;
int bytesread;
int acnt = 0, bcnt = 0;
char rbuf[BUFSIZ];
/* parse standard options */
if ((msg = parse_opts(ac, av, NULL, NULL)) != NULL) {
tst_brkm(TBROK, NULL, "OPTION PARSING ERROR - %s", msg);
/*NOTREACHED*/}
#ifdef UCLINUX
maybe_run_child(&c1func, "ndd", 1, &fildes[0], &fildes[1]);
maybe_run_child(&c2func, "ndd", 2, &fildes[0], &fildes[1]);
#endif
setup();
for (lc = 0; TEST_LOOPING(lc); lc++) {
/* reset Tst_count in case we are looping */
Tst_count = 0;
if (pipe(fildes) == -1)
tst_brkm(TBROK, cleanup, "pipe() failed - errno %d",
errno);
if ((c1pid = FORK_OR_VFORK()) == -1)
tst_brkm(TBROK, cleanup, "fork() failed - "
"errno %d", errno);
if (c1pid == 0)
#ifdef UCLINUX
if (self_exec(av[0], "ndd", 1, fildes[0], fildes[1]) <
0) {
tst_brkm(TBROK, cleanup, "self_exec failed");
}
#else
c1func();
#endif
if ((c2pid = FORK_OR_VFORK()) == -1)
tst_brkm(TBROK, cleanup, "fork() failed - "
"errno %d", errno);
if (c2pid == 0)
#ifdef UCLINUX
if (self_exec(av[0], "ndd", 2, fildes[0], fildes[1]) <
0) {
tst_brkm(TBROK, cleanup, "self_exec failed");
}
#else
c2func();
#endif
/* PARENT */
if (close(fildes[1]) == -1)
tst_resm(TWARN, "Could not close fildes[1] - errno %d",
errno);
/*
* Read a bit from the children first
*/
while ((acnt < 100) && (bcnt < 100)) {
bytesread = safe_read(fildes[0], rbuf, sizeof(rbuf));
if (bytesread < 0) {
tst_resm(TFAIL, "Unable to read from pipe, "
"errno=%d", errno);
break;
}
switch (rbuf[1]) {
case 'A':
acnt++;
break;
case 'b':
bcnt++;
break;
default:
tst_resm(TFAIL, "Got bogus '%c' "
"character", rbuf[1]);
break;
}
}
/*
* Try to kill the children
*/
if (kill(c1pid, SIGKILL) == -1)
tst_resm(TFAIL, "failed to kill child 1, errno=%d",
errno);
if (kill(c2pid, SIGKILL) == -1)
tst_resm(TFAIL, "failed to kill child 1, errno=%d",
errno);
/*
* Set action for the alarm
*/
if (signal(SIGALRM, alarmfunc) == SIG_ERR)
tst_resm(TWARN, "call to signal failed, errno=%d",
errno);
/*
* Set an alarm for 60 seconds just in case the child
* processes don't die
*/
alarm(60);
if ((wtchild = waitpid(c1pid, &wtstatus, 0)) != -1) {
if (wtstatus != SIGKILL)
tst_resm(TFAIL, "unexpected wait status %d, "
"errno=%d", wtstatus, errno);
else
tst_resm(TPASS, "Child 1 killed while "
"writing to a pipe");
}
if ((wtchild = waitpid(c2pid, &wtstatus, 0)) != -1) {
if (wtstatus != SIGKILL)
tst_resm(TFAIL, "unexpected wait status %d, "
"errno=%d", wtstatus, errno);
else
tst_resm(TPASS, "Child 2 killed while "
"writing to a pipe");
}
if (alarm(0) <= 0)
tst_resm(TWARN, "call to alarm(0) failed");
}
cleanup();
/*NOTREACHED*/ return 0;
}
/*
* setup() - performs all ONE TIME setup for this test.
*/
void setup()
{
/* capture signals */
tst_sig(FORK, DEF_HANDLER, cleanup);
/* Pause if that option was specified */
TEST_PAUSE;
}
/*
* cleanup() - performs all ONE TIME cleanup for this test at
* completion or premature exit.
*/
void cleanup()
{
/*
* print timing stats if that option was specified.
* print errno log if that option was specified.
*/
TEST_CLEANUP;
/* exit with return code appropriate for results */
tst_exit();
}
void c1func()
{
if (close(fildes[0]) == -1)
tst_resm(TWARN, "Could not close fildes[0] - errno %d", errno);
while (1)
if (write(fildes[1], "bbbbbbbbbbbbbbbbbbbbbbbbb", 25) == -1)
tst_resm(TBROK, "Child 1 error writing to pipe - "
"errno %d", errno);
}
void c2func()
{
if (close(fildes[0]) == -1)
tst_resm(TWARN, "Could not close fildes[0] - errno %d", errno);
while (1)
if (write(fildes[1], "AAAAAAAAAAAAAAAAAAAAAAAAA", 25) == -1)
tst_resm(TBROK, "Child 2 error writing to pipe - "
"errno %d", errno);
}
void alarmfunc(int sig)
{
/* for some reason tst_brkm doesn't seem to work in a signal handler */
tst_resm(TFAIL, "One or more children did not die within 60 seconds");
cleanup();
}