blob: 29e184b177c796e952c3bd7103618b676135a1d9 [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_modak56207ce2009-03-23 13:35:39 +000033/* $Id: select03.c,v 1.6 2009/03/23 13:36:02 subrata_modak Exp $ */
plars865695b2001-08-27 22:15:12 +000034/**********************************************************
35 *
36 * OS Test - Silicon Graphics, Inc.
37 *
38 * TEST IDENTIFIER : select03
39 *
40 * EXECUTED BY : anyone
41 *
42 * TEST TITLE : select of fd of a named-pipe (FIFO)
43 *
44 * PARENT DOCUMENT : usctpl01
45 *
46 * TEST CASE TOTAL : 1
47 *
48 * WALL CLOCK TIME : 1
49 *
50 * CPU TYPES : ALL
51 *
52 * AUTHOR : Richard Logan
53 *
54 * CO-PILOT : Glen Overby
55 *
56 * DATE STARTED : 02/24/93
57 *
58 * INITIAL RELEASE : UNICOS 7.0
59 *
60 * TEST CASES
61 *
62 * 1.) select(2) of fd of a named-pipe (FIFO) with no I/O and small timeout value
63 *
64 * INPUT SPECIFICATIONS
65 * The standard options for system call tests are accepted.
66 * (See the parse_opts(3) man page).
67 *
68 * OUTPUT SPECIFICATIONS
69 *
70 * DURATION
71 * Terminates - with frequency and infinite modes.
72 *
73 * SIGNALS
74 * Uses SIGUSR1 to pause before test if option set.
75 * (See the parse_opts(3) man page).
76 *
77 * RESOURCES
78 * None
79 *
80 * ENVIRONMENTAL NEEDS
81 * No run-time environmental needs.
82 *
83 * SPECIAL PROCEDURAL REQUIREMENTS
84 * None
85 *
86 * INTERCASE DEPENDENCIES
87 * None
88 *
89 * DETAILED DESCRIPTION
90 * This is a Phase I test for the select(2) system call. It is intended
91 * to provide a limited exposure of the system call, for now.
92 *
93 * Setup:
94 * Setup signal handling.
95 * Pause for SIGUSR1 if option specified.
96 *
97 * Test:
98 * Loop if the proper options are given.
99 * Execute system call
100 * Check return code, if system call failed (return=-1)
101 * Log the errno and Issue a FAIL message.
102 * Otherwise, Issue a PASS message.
103 *
104 * Cleanup:
105 * Print errno log and/or timing stats if options given
106 *
107 *
108 *#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#**/
109
110#include <errno.h>
111#include <signal.h>
subrata_modak56207ce2009-03-23 13:35:39 +0000112#include <fcntl.h> /* For open system call parameters. */
plars865695b2001-08-27 22:15:12 +0000113#include <signal.h>
114#include <sys/param.h>
115#include <sys/types.h>
116#include <sys/time.h>
117#include <sys/stat.h>
118
plars865695b2001-08-27 22:15:12 +0000119#include "test.h"
plars865695b2001-08-27 22:15:12 +0000120
121#define FILENAME "select03"
122
vapieraa354722006-05-26 06:26:37 +0000123void setup();
124void cleanup();
plars865695b2001-08-27 22:15:12 +0000125
Cyril Hrubisfdce7d52013-04-04 18:35:48 +0200126char *TCID = "select03";
127int TST_TOTAL = 1;
plars865695b2001-08-27 22:15:12 +0000128
129int Fd;
130fd_set saved_Readfds, saved_Writefds;
131fd_set Readfds, Writefds;
132
plars865695b2001-08-27 22:15:12 +0000133/***********************************************************************
134 * MAIN
135 ***********************************************************************/
subrata_modak56207ce2009-03-23 13:35:39 +0000136int main(int ac, char **av)
plars865695b2001-08-27 22:15:12 +0000137{
Cyril Hrubis89af32a2012-10-24 16:39:11 +0200138 int lc;
Cyril Hrubis0b9589f2014-05-27 17:40:33 +0200139 const char *msg;
subrata_modak56207ce2009-03-23 13:35:39 +0000140 struct timeval timeout;
141 long test_time = 0; /* in usecs */
plars865695b2001-08-27 22:15:12 +0000142
143 /***************************************************************
144 * parse standard options, and exit if there is an error
145 ***************************************************************/
Garrett Cooper45e285d2010-11-22 12:19:25 -0800146 if ((msg = parse_opts(ac, av, NULL, NULL)) != NULL) {
subrata_modak56207ce2009-03-23 13:35:39 +0000147 tst_brkm(TBROK, NULL, "OPTION PARSING ERROR - %s", msg);
Garrett Cooper2c282152010-12-16 00:55:50 -0800148
subrata_modak56207ce2009-03-23 13:35:39 +0000149 }
plars865695b2001-08-27 22:15:12 +0000150
151 /***************************************************************
152 * perform global setup for test
153 ***************************************************************/
subrata_modak56207ce2009-03-23 13:35:39 +0000154 setup();
plars865695b2001-08-27 22:15:12 +0000155
156 /***************************************************************
157 * check looping state if -c option given
158 ***************************************************************/
subrata_modak56207ce2009-03-23 13:35:39 +0000159 for (lc = 0; TEST_LOOPING(lc); lc++) {
plars865695b2001-08-27 22:15:12 +0000160
Caspar Zhangd59a6592013-03-07 14:59:12 +0800161 tst_count = 0;
plars865695b2001-08-27 22:15:12 +0000162
subrata_modak56207ce2009-03-23 13:35:39 +0000163 /*
164 * Assigning the specified seconds within the timeval structure.
165 */
plars865695b2001-08-27 22:15:12 +0000166
subrata_modak56207ce2009-03-23 13:35:39 +0000167 test_time = ((lc % 2000) * 100000); /* 100 milli-seconds */
subrata_modakbdbaec52009-02-26 12:14:51 +0000168
subrata_modak56207ce2009-03-23 13:35:39 +0000169 /*
170 * Bound the time to a value less than 60 seconds
171 */
plars865695b2001-08-27 22:15:12 +0000172
subrata_modak56207ce2009-03-23 13:35:39 +0000173 if (test_time > 1000000 * 60)
174 test_time = test_time % (1000000 * 60);
plars865695b2001-08-27 22:15:12 +0000175
subrata_modak56207ce2009-03-23 13:35:39 +0000176 timeout.tv_sec = test_time / 1000000;
177 timeout.tv_usec = test_time - (timeout.tv_sec * 1000000);
plars865695b2001-08-27 22:15:12 +0000178
subrata_modak56207ce2009-03-23 13:35:39 +0000179 Readfds = saved_Readfds;
180 Writefds = saved_Writefds;
plars865695b2001-08-27 22:15:12 +0000181
subrata_modak56207ce2009-03-23 13:35:39 +0000182 /* Call the system call being tested. */
plars865695b2001-08-27 22:15:12 +0000183
subrata_modak56207ce2009-03-23 13:35:39 +0000184 TEST(select(5, &Readfds, &Writefds, 0, &timeout));
subrata_modakbdbaec52009-02-26 12:14:51 +0000185
subrata_modak56207ce2009-03-23 13:35:39 +0000186 /* check return code */
187 if (TEST_RETURN == -1) {
subrata_modak56207ce2009-03-23 13:35:39 +0000188 tst_resm(TFAIL,
189 "%d select(5, &Readfds, &Writefds, 0, &timeout) failed errno=%d\n",
190 lc, errno);
191 } else {
Cyril Hrubise38b9612014-06-02 17:20:57 +0200192 tst_resm(TPASS,
193 "select(5, &Readfds, &Writefds, 0, &timeout) timeout = %ld usecs",
194 test_time);
subrata_modak56207ce2009-03-23 13:35:39 +0000195 }
plars865695b2001-08-27 22:15:12 +0000196
Garrett Cooper2c282152010-12-16 00:55:50 -0800197 }
plars865695b2001-08-27 22:15:12 +0000198
subrata_modak56207ce2009-03-23 13:35:39 +0000199 cleanup();
Garrett Cooper1e6f5a62010-12-19 09:58:10 -0800200 tst_exit();
Garrett Cooper2c282152010-12-16 00:55:50 -0800201}
plars865695b2001-08-27 22:15:12 +0000202
203/***************************************************************
204 * setup() - performs all ONE TIME setup for this test.
205 ***************************************************************/
Mike Frysingerc57fba52014-04-09 18:56:30 -0400206void setup(void)
plars865695b2001-08-27 22:15:12 +0000207{
Garrett Cooper2c282152010-12-16 00:55:50 -0800208
subrata_modak56207ce2009-03-23 13:35:39 +0000209 tst_sig(FORK, DEF_HANDLER, cleanup);
plars865695b2001-08-27 22:15:12 +0000210
subrata_modak56207ce2009-03-23 13:35:39 +0000211 TEST_PAUSE;
plars865695b2001-08-27 22:15:12 +0000212
subrata_modak56207ce2009-03-23 13:35:39 +0000213 /* create a temporary directory and go to it */
214 tst_tmpdir();
plars865695b2001-08-27 22:15:12 +0000215
subrata_modak56207ce2009-03-23 13:35:39 +0000216 /* make and open FIFO */
217 if (mkfifo(FILENAME, 0777) == -1) {
218 tst_brkm(TBROK, cleanup, "mkfifo(%s, 0777) failed, errno=%d",
219 FILENAME, errno);
220 }
plars865695b2001-08-27 22:15:12 +0000221
subrata_modak56207ce2009-03-23 13:35:39 +0000222 if ((Fd = open(FILENAME, O_RDWR)) == -1) {
223 tst_brkm(TBROK, cleanup, "open(%s, O_RDWR) failed, errno=%d",
224 FILENAME, errno);
225 }
plars865695b2001-08-27 22:15:12 +0000226
subrata_modak56207ce2009-03-23 13:35:39 +0000227 /*
228 * Initializing and assigning the standard output file descriptor to
229 * fd_set for select.
230 */
plars865695b2001-08-27 22:15:12 +0000231
subrata_modak56207ce2009-03-23 13:35:39 +0000232 FD_ZERO(&saved_Readfds);
233 FD_ZERO(&saved_Writefds);
234 FD_SET(Fd, &saved_Readfds);
235 FD_SET(Fd, &saved_Writefds);
plars865695b2001-08-27 22:15:12 +0000236
Garrett Cooper2c282152010-12-16 00:55:50 -0800237}
plars865695b2001-08-27 22:15:12 +0000238
239/***************************************************************
240 * cleanup() - performs all ONE TIME cleanup for this test at
241 * completion or premature exit.
242 ***************************************************************/
Mike Frysingerc57fba52014-04-09 18:56:30 -0400243void cleanup(void)
plars865695b2001-08-27 22:15:12 +0000244{
subrata_modak56207ce2009-03-23 13:35:39 +0000245 /*
246 * print timing stats if that option was specified.
247 * print errno log if that option was specified.
248 */
249 close(Fd);
mridge1fcfd872004-08-25 16:21:16 +0000250
subrata_modak56207ce2009-03-23 13:35:39 +0000251 tst_rmdir();
plars865695b2001-08-27 22:15:12 +0000252
Chris Dearmanec6edca2012-10-17 19:54:01 -0700253}