blob: f7035489649acc03a1f10a3b820bb8c8abac6e0e [file] [log] [blame]
/******************************************************************************
*
* Copyright (c) International Business Machines Corp., 2006
*
* 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
* mknodat01.c
*
* DESCRIPTION
* This test case will verify basic function of mknodat
* added by kernel 2.6.16 or up.
*
* USAGE: <for command-line>
* mknodat01 [-c n] [-e] [-i n] [-I x] [-P x] [-t] [-p]
* where:
* -c n : Run n copies simultaneously.
* -e : Turn on errno logging.
* -i n : Execute test n times.
* -I x : Execute test for x seconds.
* -p : Pause for SIGUSR1 before starting
* -P x : Pause for x seconds between iterations.
* -t : Turn on syscall timing.
*
* Author
* Yi Yang <yyangcdl@cn.ibm.com>
*
* History
* 08/23/2006 Created first by Yi Yang <yyangcdl@cn.ibm.com>
*
*****************************************************************************/
#define _GNU_SOURCE
#include <sys/types.h>
#include <fcntl.h>
#include <sys/stat.h>
#include <error.h>
#include <stdlib.h>
#include <errno.h>
#include <string.h>
#include <signal.h>
#include "test.h"
#include "usctest.h"
#include "linux_syscall_numbers.h"
#define TEST_CASES 5
#ifndef AT_FDCWD
#define AT_FDCWD -100
#endif
void setup();
void cleanup();
void setup_every_copy();
char *TCID = "mknodat01"; /* Test program identifier. */
int TST_TOTAL = TEST_CASES; /* Total number of test cases. */
extern int Tst_count; /* Test Case counter for tst_* routines */
char pathname[256];
char testfile[256];
char testfile2[256];
char testfile3[256];
int dirfd, fd, ret;
int fds[TEST_CASES];
char *filenames[TEST_CASES];
int expected_errno[TEST_CASES] = { 0, 0, ENOTDIR, EBADF, 0 };
dev_t dev;
int mymknodat(int dirfd, const char *filename, mode_t mode, dev_t dev)
{
return syscall(__NR_mknodat, dirfd, filename, mode, dev);
}
int main(int ac, char **av)
{
int lc; /* loop counter */
char *msg; /* message returned from parse_opts */
int i;
/* Disable test if the version of the kernel is less than 2.6.16 */
if (tst_kvercmp(2, 6, 16) < 0) {
tst_resm(TWARN, "This test can only run on kernels that are ");
tst_resm(TWARN, "2.6.16 and higher");
exit(0);
}
/***************************************************************
* parse standard options
***************************************************************/
if ((msg = parse_opts(ac, av, NULL, NULL)) != NULL)
tst_brkm(TBROK, cleanup, "OPTION PARSING ERROR - %s", msg);
/***************************************************************
* perform global setup for test
***************************************************************/
setup();
/***************************************************************
* check looping state if -c option given
***************************************************************/
for (lc = 0; TEST_LOOPING(lc); lc++) {
setup_every_copy();
/* reset Tst_count in case we are looping. */
Tst_count = 0;
/*
* Call mknodat
*/
for (i = 0; i < TST_TOTAL; i++) {
TEST(mymknodat(fds[i], filenames[i], S_IFREG, dev));
/* check return code */
if (TEST_ERRNO == expected_errno[i]) {
/***************************************************************
* only perform functional verification if flag set (-f not given)
***************************************************************/
if (STD_FUNCTIONAL_TEST) {
/* No Verification test, yet... */
tst_resm(TPASS | TTERRNO,
"mknodat() returned the "
"expected errno");
}
} else {
TEST_ERROR_LOG(TEST_ERRNO);
tst_resm(TFAIL | TTERRNO, "mknodat() failed");
}
}
} /* End for TEST_LOOPING */
/***************************************************************
* cleanup and exit
***************************************************************/
cleanup();
return (0);
} /* End main */
void setup_every_copy()
{
/* Initialize test dir and file names */
sprintf(pathname, "mknodattestdir%d", getpid());
sprintf(testfile, "mknodattestfile%d.txt", getpid());
sprintf(testfile2, "mknodattestfile%d_2.txt", getpid());
sprintf(testfile3, "/tmp/mknodattestfile%d.txt", getpid());
ret = mkdir(pathname, 0600);
if (ret < 0) {
perror("mkdir: ");
exit(-1);
}
dirfd = open(pathname, O_DIRECTORY);
if (dirfd < 0) {
perror("open: ");
exit(-1);
}
fd = open(testfile2, O_CREAT | O_RDWR, 0600);
if (fd < 0) {
perror("open: ");
exit(-1);
}
fds[0] = fds[1] = dirfd;
fds[2] = fd;
fds[3] = 100;
fds[4] = AT_FDCWD;
filenames[0] = filenames[3] = filenames[4] = testfile;
filenames[1] = testfile3;
filenames[2] = testfile2;
}
/***************************************************************
* setup() - performs all ONE TIME setup for this test.
***************************************************************/
void setup()
{
/* Set dev to 0 */
memset(&dev, 0, sizeof(dev_t));
/* capture signals */
tst_sig(NOFORK, DEF_HANDLER, cleanup);
/* Pause if that option was specified */
TEST_PAUSE;
} /* End setup() */
/***************************************************************
* cleanup() - performs all ONE TIME cleanup for this test at
* completion or premature exit.
***************************************************************/
void cleanup()
{
/* Remove them */
char tmppathname[256];
strcpy(tmppathname, pathname);
unlink(strcat(strcat(tmppathname, "/"), testfile));
unlink(testfile);
strcpy(tmppathname, pathname);
unlink(strcat(strcat(tmppathname, "/"), testfile2));
unlink(testfile2);
unlink(testfile3);
rmdir(pathname);
/*
* 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();
} /* End cleanup() */