blob: dd01944a0a305a3b7041e5c9ea04ea393eedb350 [file] [log] [blame]
/*
*
* Copyright (c) International Business Machines Corp., 2001
*
* 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
/*
* NAME
* read03.c
*
* DESCRIPTION
* Testcase to check that read() sets errno to EAGAIN
*
* ALGORITHM
* Create a named pipe (fifo), open it in O_NONBLOCK mode, and
* attempt to read from it, without writing to it. read() should fail
* with EAGAIN.
*
* USAGE: <for command-line>
* read03 [-c n] [-e] [-i n] [-I x] [-P x] [-t]
* where, -c n : Run n copies concurrently.
* -e : Turn on errno logging.
* -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
* 07/2001 Ported by Wayne Boyer
*
* RESTRICTIONS
* NONE
*/
#include <sys/stat.h>
#include <fcntl.h>
#include <signal.h>
#include <errno.h>
#include "test.h"
char *TCID = "read03";
int TST_TOTAL = 1;
char fifo[100] = "fifo";
int rfd, wfd;
struct stat buf;
void alarm_handler();
void setup();
void cleanup();
int main(int ac, char **av)
{
int lc;
const char *msg;
int c;
if ((msg = parse_opts(ac, av, NULL, NULL)) != NULL) {
tst_brkm(TBROK, NULL, "OPTION PARSING ERROR - %s", msg);
}
setup();
/*
* The following loop checks looping state if -i option given
*/
for (lc = 0; TEST_LOOPING(lc); lc++) {
/* reset tst_count in case we are looping */
tst_count = 0;
TEST(read(rfd, &c, 1));
if (TEST_RETURN != -1) {
tst_resm(TFAIL, "read() failed to fail when nothing "
"is written to a pipe");
continue;
}
if (TEST_ERRNO != EAGAIN) {
tst_resm(TFAIL, "read set bad errno, expected "
"EAGAIN, got %d", TEST_ERRNO);
} else {
tst_resm(TINFO, "read() succeded in setting errno to "
"EAGAIN");
}
}
cleanup();
tst_exit();
}
/*
* setup() - performs all ONE TIME setup for this test
*/
void setup(void)
{
tst_sig(NOFORK, DEF_HANDLER, cleanup);
TEST_PAUSE;
/* create a temporary filename */
sprintf(fifo, "%s.%d", fifo, getpid());
/* Create a temporary directory and cd to it */
tst_tmpdir();
if (mknod(fifo, S_IFIFO | 0777, 0) < 0) {
tst_brkm(TBROK, cleanup, "mknod() failed, errno: %d", errno);
}
if (stat(fifo, &buf) != 0) {
tst_brkm(TBROK, cleanup, "stat() failed, errno: %d", errno);
}
if ((buf.st_mode & S_IFIFO) == 0) {
tst_brkm(TBROK, cleanup, "Mode does not indicate fifo file");
}
rfd = open(fifo, O_RDONLY | O_NONBLOCK);
wfd = open(fifo, O_WRONLY | O_NONBLOCK);
}
/*
* cleanup() - performs all ONE TIME cleanup for this test at
* completion or premature exit.
*/
void cleanup(void)
{
close(rfd);
close(wfd);
unlink(fifo);
/* delete the test directory created in setup() */
tst_rmdir();
}