| /* |
| * |
| * 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 |
| * creat06.c |
| * |
| * DESCRIPTION |
| * Testcase to check creat(2) sets the following errnos correctly: |
| * 1. EISDIR |
| * 2. ENAMETOOLONG |
| * 3. ENOENT |
| * 4. ENOTDIR |
| * 5. EFAULT |
| * 6. EACCES |
| * |
| * ALGORITHM |
| * 1. Attempt to creat(2) an existing directory, and test for |
| * EISDIR |
| * 2. Attempt to creat(2) a file whose name is more than |
| * VFS_MAXNAMLEN and test for ENAMETOOLONG. |
| * 3. Attempt to creat(2) a file inside a directory which doesn't |
| * exist, and test for ENOENT |
| * 4. Attempt to creat(2) a file, the pathname of which comprises |
| * a component which is a file, test for ENOTDIR. |
| * 5. Attempt to creat(2) a file with a bad address |
| * and test for EFAULT |
| * 6. Attempt to creat(2) a file in a directory with no |
| * execute permission and test for EACCES |
| * |
| * USAGE: <for command-line> |
| * creat06 [-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 <stdio.h> |
| #include <errno.h> |
| #include <string.h> |
| #include <pwd.h> |
| #include <sys/mman.h> |
| #include <sys/types.h> |
| #include <sys/stat.h> |
| #include <fcntl.h> |
| #include "test.h" |
| #include "usctest.h" |
| |
| void setup(void); |
| void cleanup(void); |
| |
| char user1name[] = "nobody"; |
| |
| char *TCID = "creat06"; |
| int fileHandle = 0; |
| |
| int exp_enos[] = { EISDIR, ENAMETOOLONG, ENOENT, ENOTDIR, EFAULT, EACCES, 0 }; |
| |
| #define MODE1 0444 |
| #define MODE2 0666 |
| #define NSIZE 1000 |
| |
| char long_name[] = |
| "abcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstmnopqrstuvwxyzabcdefghijklmnopqrstmnopqrstuvwxyzabcdefghijklmnopqrstmnopqrstuvwxyzabcdefghijklmnopqrstmnopqrstuvwxyzabcdefghijklmnopqrstmnopqrstuvwxyzabcdefghijklmnopqrstmnopqrstuvwxyz"; |
| |
| char good_dir[NSIZE]; |
| char no_dir[] = "testfile/testdir"; |
| char not_dir[] = "file1/testdir"; |
| char test6_file[] = "dir6/file6"; |
| char nobody_uid[] = "nobody"; |
| |
| struct passwd *ltpuser; |
| struct test_case_t { |
| char *fname; |
| int mode; |
| int error; |
| } TC[] = { |
| /* The file name is an existing directory */ |
| { |
| good_dir, MODE1, EISDIR}, |
| /* The file name is too long - ENAMETOOLONG */ |
| { |
| long_name, MODE1, ENAMETOOLONG}, |
| /* Attempt to create a file in a directory that doesn't exist - ENOENT */ |
| { |
| no_dir, MODE1, ENOENT}, |
| /* a compent of the file's path is not a directory - ENOTDIR */ |
| { |
| not_dir, MODE1, ENOTDIR}, |
| #if !defined(UCLINUX) |
| /* The file address is bad - EFAULT */ |
| { |
| (char *)-1, MODE1, EFAULT}, |
| #endif |
| /* The directory lacks execute permission - EACCES */ |
| { |
| test6_file, MODE1, EACCES} |
| }; |
| |
| int TST_TOTAL = (sizeof(TC) / sizeof(*TC)); |
| |
| char *bad_addr = 0; |
| |
| int main(int ac, char **av) |
| { |
| int lc; |
| char *msg; |
| int i; |
| |
| if ((msg = parse_opts(ac, av, NULL, NULL)) != NULL) |
| tst_brkm(TBROK, NULL, "OPTION PARSING ERROR - %s", msg); |
| |
| setup(); |
| |
| /* set up the expected errnos */ |
| TEST_EXP_ENOS(exp_enos); |
| |
| for (lc = 0; TEST_LOOPING(lc); lc++) { |
| |
| /* reset tst_count in case we are looping */ |
| tst_count = 0; |
| |
| /* loop through the test cases */ |
| for (i = 0; i < TST_TOTAL; i++) { |
| |
| TEST(creat(TC[i].fname, TC[i].mode)); |
| |
| if (TEST_RETURN != -1) { |
| tst_resm(TFAIL, "call succeeded unexpectedly"); |
| continue; |
| } |
| |
| TEST_ERROR_LOG(TEST_ERRNO); |
| |
| if (TEST_ERRNO == TC[i].error) { |
| tst_resm(TPASS | TTERRNO, |
| "got expected failure"); |
| } else { |
| tst_resm(TFAIL | TTERRNO, "wanted errno %d", |
| TC[i].error); |
| } |
| } |
| } |
| cleanup(); |
| |
| tst_exit(); |
| } |
| |
| /* |
| * setup() - performs all ONE TIME setup for this test. |
| */ |
| void setup() |
| { |
| char *cur_dir = NULL; |
| |
| tst_require_root(NULL); |
| |
| ltpuser = getpwnam(nobody_uid); |
| if (ltpuser == NULL) |
| tst_brkm(TBROK | TERRNO, cleanup, "getpwnam failed"); |
| if (seteuid(ltpuser->pw_uid) == -1) |
| tst_brkm(TBROK | TERRNO, cleanup, |
| "seteuid(%d) failed", ltpuser->pw_uid); |
| |
| tst_sig(NOFORK, DEF_HANDLER, cleanup); |
| |
| TEST_PAUSE; |
| |
| tst_tmpdir(); |
| |
| /* get the current directory for the first test */ |
| if ((cur_dir = getcwd(cur_dir, 0)) == NULL) { |
| tst_brkm(TBROK | TERRNO, cleanup, "getcwd failed"); |
| } |
| |
| strncpy(good_dir, cur_dir, NSIZE); |
| |
| /* create a file that will be used in test #3 */ |
| if ((fileHandle = creat("file1", MODE1)) == -1) { |
| tst_brkm(TBROK, cleanup, "couldn't create a test file"); |
| } |
| #if !defined(UCLINUX) |
| bad_addr = mmap(0, 1, PROT_NONE, |
| MAP_PRIVATE_EXCEPT_UCLINUX | MAP_ANONYMOUS, 0, 0); |
| if (bad_addr == MAP_FAILED) { |
| tst_brkm(TBROK | TERRNO, cleanup, "mmap failed"); |
| } |
| TC[4].fname = bad_addr; |
| #endif |
| |
| /* create a directory that will be used in test #6 */ |
| if (mkdir("dir6", MODE2) == -1) { |
| tst_brkm(TBROK, cleanup, "couldn't creat a test directory"); |
| } |
| } |
| |
| /* |
| * 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. |
| */ |
| close(fileHandle); |
| |
| TEST_CLEANUP; |
| |
| /* delete the test directory created in setup() */ |
| tst_rmdir(); |
| |
| } |