blob: 9f0edcf7e24ea114d62366fc4418cd51e7fda6a5 [file] [log] [blame]
plars865695b2001-08-27 22:15:12 +00001/*
2 * Copyright (c) 2000 Silicon Graphics, Inc. All Rights Reserved.
3 *
4 * This program is free software; you can redistribute it and/or modify it
5 * under the terms of version 2 of the GNU General Public License as
6 * published by the Free Software Foundation.
7 *
8 * This program is distributed in the hope that it would be useful, but
9 * WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
11 *
12 * Further, this software is distributed without any warranty that it is
13 * free of the rightful claim of any third person regarding infringement
14 * or the like. Any license provided herein, whether implied or
15 * otherwise, applies only to this software file. Patent licenses, if
16 * any, provided herein do not apply to combinations of this program with
17 * other software, or any other product whatsoever.
18 *
19 * You should have received a copy of the GNU General Public License along
Wanlong Gaofed96412012-10-24 10:10:29 +080020 * with this program; if not, write the Free Software Foundation, Inc.,
21 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
plars865695b2001-08-27 22:15:12 +000022 *
23 * Contact information: Silicon Graphics, Inc., 1600 Amphitheatre Pkwy,
24 * Mountain View, CA 94043, or:
25 *
26 * http://www.sgi.com
27 *
28 * For further information regarding this notice, see:
29 *
30 * http://oss.sgi.com/projects/GenInfo/NoticeExplan/
31 *
32 */
subrata_modakda124b92009-10-13 14:00:45 +000033/* $Id: dup02.c,v 1.6 2009/10/13 14:00:46 subrata_modak Exp $ */
plars865695b2001-08-27 22:15:12 +000034/**********************************************************
subrata_modak4bb656a2009-02-26 12:02:09 +000035 *
plars865695b2001-08-27 22:15:12 +000036 * OS Test - Silicon Graphics, Inc.
subrata_modak4bb656a2009-02-26 12:02:09 +000037 *
plars865695b2001-08-27 22:15:12 +000038 * TEST IDENTIFIER : dup02
subrata_modak4bb656a2009-02-26 12:02:09 +000039 *
plars865695b2001-08-27 22:15:12 +000040 * EXECUTED BY : anyone
subrata_modak4bb656a2009-02-26 12:02:09 +000041 *
plars865695b2001-08-27 22:15:12 +000042 * TEST TITLE : Negative test for dup(2) with bad fd.
subrata_modak4bb656a2009-02-26 12:02:09 +000043 *
plars865695b2001-08-27 22:15:12 +000044 * PARENT DOCUMENT : usctpl01
subrata_modak4bb656a2009-02-26 12:02:09 +000045 *
plars865695b2001-08-27 22:15:12 +000046 * TEST CASE TOTAL : 2
subrata_modak4bb656a2009-02-26 12:02:09 +000047 *
plars865695b2001-08-27 22:15:12 +000048 * WALL CLOCK TIME : 1
subrata_modak4bb656a2009-02-26 12:02:09 +000049 *
plars865695b2001-08-27 22:15:12 +000050 * CPU TYPES : ALL
subrata_modak4bb656a2009-02-26 12:02:09 +000051 *
plars865695b2001-08-27 22:15:12 +000052 * AUTHOR : Richard Logan
subrata_modak4bb656a2009-02-26 12:02:09 +000053 *
plars865695b2001-08-27 22:15:12 +000054 * CO-PILOT : William Roske
subrata_modak4bb656a2009-02-26 12:02:09 +000055 *
plars865695b2001-08-27 22:15:12 +000056 * DATE STARTED : 06/94
subrata_modak4bb656a2009-02-26 12:02:09 +000057 *
plars865695b2001-08-27 22:15:12 +000058 * INITIAL RELEASE : UNICOS 7.0
subrata_modak4bb656a2009-02-26 12:02:09 +000059 *
plars865695b2001-08-27 22:15:12 +000060 * TEST CASES
subrata_modak4bb656a2009-02-26 12:02:09 +000061 *
plars865695b2001-08-27 22:15:12 +000062 * 1-?.) dup(2) returns -1 with errno set to EBADF...(See Description)
subrata_modakbdbaec52009-02-26 12:14:51 +000063 *
plars865695b2001-08-27 22:15:12 +000064 * INPUT SPECIFICATIONS
65 * The standard options for system call tests are accepted.
66 * (See the parse_opts(3) man page).
subrata_modak4bb656a2009-02-26 12:02:09 +000067 *
plars865695b2001-08-27 22:15:12 +000068 * OUTPUT SPECIFICATIONS
69 * Standard tst_res formatted output
subrata_modak56207ce2009-03-23 13:35:39 +000070 *$
plars865695b2001-08-27 22:15:12 +000071 * DURATION
72 * Terminates - with frequency and infinite modes.
subrata_modak4bb656a2009-02-26 12:02:09 +000073 *
plars865695b2001-08-27 22:15:12 +000074 * SIGNALS
75 * Uses SIGUSR1 to pause before test if option set.
76 * (See the parse_opts(3) man page).
77 *
78 * RESOURCES
79 * None
subrata_modak4bb656a2009-02-26 12:02:09 +000080 *
plars865695b2001-08-27 22:15:12 +000081 * ENVIRONMENTAL NEEDS
82 * No run-time environmental needs.
subrata_modak4bb656a2009-02-26 12:02:09 +000083 *
plars865695b2001-08-27 22:15:12 +000084 * SPECIAL PROCEDURAL REQUIREMENTS
85 * None
subrata_modak4bb656a2009-02-26 12:02:09 +000086 *
plars865695b2001-08-27 22:15:12 +000087 * INTERCASE DEPENDENCIES
88 * None
subrata_modak4bb656a2009-02-26 12:02:09 +000089 *
plars865695b2001-08-27 22:15:12 +000090 * DETAILED DESCRIPTION
subrata_modak4bb656a2009-02-26 12:02:09 +000091 *
plars865695b2001-08-27 22:15:12 +000092 * Setup:
93 * Setup signal handling.
94 * Pause for SIGUSR1 if option specified.
subrata_modak4bb656a2009-02-26 12:02:09 +000095 *
plars865695b2001-08-27 22:15:12 +000096 * Test:
97 * Loop if the proper options are given.
98 * Loop through the test cases
99 * Execute system call
100 * Check return code, if system call failed (return=-1)
101 * if doing functional check
102 * check if errno set correctly, report results
103 * Otherwise, Issue a FAIL message.
subrata_modak4bb656a2009-02-26 12:02:09 +0000104 *
plars865695b2001-08-27 22:15:12 +0000105 * Cleanup:
106 * Print errno log and/or timing stats if options given
subrata_modak4bb656a2009-02-26 12:02:09 +0000107 *
108 *
plars865695b2001-08-27 22:15:12 +0000109 *#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#**/
110
111#include <sys/types.h>
112#include <sys/fcntl.h>
113#include <errno.h>
114#include <string.h>
115#include <signal.h>
116#include "test.h"
plars865695b2001-08-27 22:15:12 +0000117
vapieraa354722006-05-26 06:26:37 +0000118void setup();
119void cleanup();
plars865695b2001-08-27 22:15:12 +0000120
Cyril Hrubisfdce7d52013-04-04 18:35:48 +0200121char *TCID = "dup02";
122int TST_TOTAL = 2;
plars865695b2001-08-27 22:15:12 +0000123
plars865695b2001-08-27 22:15:12 +0000124int Fds[] = { -1, 1500 };
125
subrata_modak56207ce2009-03-23 13:35:39 +0000126int main(int ac, char **av)
plars865695b2001-08-27 22:15:12 +0000127{
Cyril Hrubis89af32a2012-10-24 16:39:11 +0200128 int lc;
Cyril Hrubis0b9589f2014-05-27 17:40:33 +0200129 const char *msg;
subrata_modak56207ce2009-03-23 13:35:39 +0000130 int nfds = sizeof(Fds) / sizeof(int);
131 int ind;
132
Garrett Cooper8dca4222010-12-18 03:57:35 -0800133 if ((msg = parse_opts(ac, av, NULL, NULL)) != NULL)
subrata_modak56207ce2009-03-23 13:35:39 +0000134 tst_brkm(TBROK, NULL, "OPTION PARSING ERROR - %s", msg);
Garrett Cooper2c282152010-12-16 00:55:50 -0800135
subrata_modak56207ce2009-03-23 13:35:39 +0000136 setup();
plars865695b2001-08-27 22:15:12 +0000137
subrata_modak56207ce2009-03-23 13:35:39 +0000138 for (lc = 0; TEST_LOOPING(lc); lc++) {
plars865695b2001-08-27 22:15:12 +0000139
Caspar Zhangd59a6592013-03-07 14:59:12 +0800140 tst_count = 0;
plars865695b2001-08-27 22:15:12 +0000141
subrata_modak56207ce2009-03-23 13:35:39 +0000142 for (ind = 0; ind < nfds; ind++) {
plars865695b2001-08-27 22:15:12 +0000143
subrata_modak56207ce2009-03-23 13:35:39 +0000144 TEST(dup(Fds[ind]));
subrata_modakbdbaec52009-02-26 12:14:51 +0000145
subrata_modak56207ce2009-03-23 13:35:39 +0000146 if (TEST_RETURN == -1) {
Cyril Hrubise38b9612014-06-02 17:20:57 +0200147 if (TEST_ERRNO == EBADF)
148 tst_resm(TPASS,
149 "dup failed as expected "
150 "with EBADF");
151 else
152 tst_resm(TFAIL | TTERRNO,
153 "dup failed unexpectedly");
subrata_modak56207ce2009-03-23 13:35:39 +0000154 } else {
Garrett Cooper8dca4222010-12-18 03:57:35 -0800155 tst_resm(TFAIL, "dup succeeded unexpectedly");
plars865695b2001-08-27 22:15:12 +0000156
Garrett Cooper8dca4222010-12-18 03:57:35 -0800157 if (close(TEST_RETURN) == -1)
Wanlong Gao354ebb42012-12-07 10:10:04 +0800158 tst_brkm(TBROK | TERRNO, cleanup,
159 "close failed");
subrata_modak56207ce2009-03-23 13:35:39 +0000160 }
161 }
Garrett Cooper2c282152010-12-16 00:55:50 -0800162 }
plars865695b2001-08-27 22:15:12 +0000163
subrata_modak56207ce2009-03-23 13:35:39 +0000164 cleanup();
Garrett Cooper8dca4222010-12-18 03:57:35 -0800165 tst_exit();
Garrett Cooper2c282152010-12-16 00:55:50 -0800166}
plars865695b2001-08-27 22:15:12 +0000167
Mike Frysingerc57fba52014-04-09 18:56:30 -0400168void setup(void)
plars865695b2001-08-27 22:15:12 +0000169{
Garrett Cooper2c282152010-12-16 00:55:50 -0800170
subrata_modak56207ce2009-03-23 13:35:39 +0000171 tst_sig(FORK, DEF_HANDLER, cleanup);
plars865695b2001-08-27 22:15:12 +0000172
subrata_modak56207ce2009-03-23 13:35:39 +0000173 TEST_PAUSE;
plars865695b2001-08-27 22:15:12 +0000174
subrata_modak56207ce2009-03-23 13:35:39 +0000175 tst_tmpdir();
plars865695b2001-08-27 22:15:12 +0000176
Garrett Cooper2c282152010-12-16 00:55:50 -0800177}
plars865695b2001-08-27 22:15:12 +0000178
Mike Frysingerc57fba52014-04-09 18:56:30 -0400179void cleanup(void)
plars865695b2001-08-27 22:15:12 +0000180{
subrata_modak56207ce2009-03-23 13:35:39 +0000181 tst_rmdir();
Chris Dearmanec6edca2012-10-17 19:54:01 -0700182}