blob: 589f38babf87ddc4a808decb1e123212d74ff5c3 [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 */
vapierc450e062009-08-28 14:28:52 +000033/* $Id: select01.c,v 1.6 2009/08/28 14:32:05 vapier Exp $ */
plars865695b2001-08-27 22:15:12 +000034/**********************************************************
35 *
36 * OS Test - Silicon Graphics, Inc.
37 *
38 * TEST IDENTIFIER : select01
39 *
40 * EXECUTED BY : anyone
41 *
42 * TEST TITLE : select to a file
43 *
44 * PARENT DOCUMENT : usctpl01
45 *
46 * TEST CASE TOTAL : 3
47 *
48 * WALL CLOCK TIME : 1
49 *
50 * CPU TYPES : ALL
51 *
52 * AUTHOR : Richard Logan
53 *
54 * CO-PILOT : William Roske
55 *
56 * DATE STARTED : 02/24/93
57 *
58 * INITIAL RELEASE : UNICOS 7.0
59 *
60 * TEST CASES
61 *
62 * 1.) select(2) to a fd of regular file with no I/O and small timeout
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. It
92 * should/will be extended when full functional tests are written for
93 * join(2).
94 *
95 * Setup:
96 * Setup signal handling.
97 * Pause for SIGUSR1 if option specified.
98 *
99 * Test:
100 * Loop if the proper options are given.
101 * Execute system call
102 * Check return code, if system call failed (return=-1)
103 * Log the errno and Issue a FAIL message.
104 * Otherwise, Issue a PASS message.
105 *
106 * Cleanup:
107 * Print errno log and/or timing stats if options given
108 *
109 *
110 *#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#**/
111
112#include <errno.h>
113#include <signal.h>
subrata_modak56207ce2009-03-23 13:35:39 +0000114#include <fcntl.h> /* For open system call parameters. */
plars865695b2001-08-27 22:15:12 +0000115#include <signal.h>
116#include <string.h>
117#include <sys/param.h>
118#include <sys/types.h>
119#include <sys/time.h>
120
121#include "test.h"
plars865695b2001-08-27 22:15:12 +0000122
123#define FILENAME "select01"
124
125void setup();
126void cleanup();
127
Cyril Hrubisfdce7d52013-04-04 18:35:48 +0200128char *TCID = "select01";
129int TST_TOTAL = 1;
plars865695b2001-08-27 22:15:12 +0000130
subrata_modak56207ce2009-03-23 13:35:39 +0000131int Fd = -1;
plars865695b2001-08-27 22:15:12 +0000132fd_set Readfds;
133
134/***********************************************************************
135 * MAIN
136 ***********************************************************************/
subrata_modak56207ce2009-03-23 13:35:39 +0000137int main(int ac, char **av)
plars865695b2001-08-27 22:15:12 +0000138{
Cyril Hrubis89af32a2012-10-24 16:39:11 +0200139 int lc;
Cyril Hrubis0b9589f2014-05-27 17:40:33 +0200140 const char *msg;
subrata_modak56207ce2009-03-23 13:35:39 +0000141 struct timeval timeout;
142 long test_time = 0; /* in usecs */
plars865695b2001-08-27 22:15:12 +0000143
144 /***************************************************************
145 * parse standard options, and exit if there is an error
146 ***************************************************************/
Garrett Cooper45e285d2010-11-22 12:19:25 -0800147 if ((msg = parse_opts(ac, av, NULL, NULL)) != NULL) {
subrata_modak56207ce2009-03-23 13:35:39 +0000148 tst_brkm(TBROK, NULL, "OPTION PARSING ERROR - %s", msg);
Garrett Cooper2c282152010-12-16 00:55:50 -0800149
subrata_modak56207ce2009-03-23 13:35:39 +0000150 }
plars865695b2001-08-27 22:15:12 +0000151
152 /***************************************************************
153 * perform global setup for test
154 ***************************************************************/
subrata_modak56207ce2009-03-23 13:35:39 +0000155 setup();
plars865695b2001-08-27 22:15:12 +0000156
157 /***************************************************************
158 * check looping state if -c option given
159 ***************************************************************/
subrata_modak56207ce2009-03-23 13:35:39 +0000160 for (lc = 0; TEST_LOOPING(lc); lc++) {
plars865695b2001-08-27 22:15:12 +0000161
Caspar Zhangd59a6592013-03-07 14:59:12 +0800162 tst_count = 0;
plars865695b2001-08-27 22:15:12 +0000163
subrata_modak56207ce2009-03-23 13:35:39 +0000164 /*
165 * Assigning the specified seconds within the timeval structure.
166 */
167 test_time = ((lc % 2000) * 100000); /* 100 milli-seconds */
plars865695b2001-08-27 22:15:12 +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);
subrata_modakbdbaec52009-02-26 12:14:51 +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 /* Call the system call being tested. */
180 TEST(select(4, &Readfds, 0, 0, &timeout));
plars865695b2001-08-27 22:15:12 +0000181
subrata_modak56207ce2009-03-23 13:35:39 +0000182 /* check return code */
183 if (TEST_RETURN == -1) {
subrata_modak56207ce2009-03-23 13:35:39 +0000184 tst_resm(TFAIL,
185 "%d select(4, &Readfds, 0, 0, &timeout), timeout = %ld usecs, errno=%d",
186 lc, test_time, errno);
187 }
plars865695b2001-08-27 22:15:12 +0000188
Cyril Hrubise38b9612014-06-02 17:20:57 +0200189 tst_resm(TPASS,
190 "select(4, &Readfds, 0, 0, &timeout) timeout = %ld usecs",
191 test_time);
plars865695b2001-08-27 22:15:12 +0000192
Garrett Cooper2c282152010-12-16 00:55:50 -0800193 }
plars865695b2001-08-27 22:15:12 +0000194
subrata_modak56207ce2009-03-23 13:35:39 +0000195 cleanup();
Garrett Cooper1e6f5a62010-12-19 09:58:10 -0800196 tst_exit();
Garrett Cooper2c282152010-12-16 00:55:50 -0800197}
plars865695b2001-08-27 22:15:12 +0000198
199/***************************************************************
200 * setup() - performs all ONE TIME setup for this test.
201 ***************************************************************/
Mike Frysingerc57fba52014-04-09 18:56:30 -0400202void setup(void)
plars865695b2001-08-27 22:15:12 +0000203{
Garrett Cooper2c282152010-12-16 00:55:50 -0800204
subrata_modak56207ce2009-03-23 13:35:39 +0000205 tst_sig(FORK, DEF_HANDLER, cleanup);
plars865695b2001-08-27 22:15:12 +0000206
subrata_modak56207ce2009-03-23 13:35:39 +0000207 TEST_PAUSE;
plars865695b2001-08-27 22:15:12 +0000208
subrata_modak56207ce2009-03-23 13:35:39 +0000209 /* create a temporary directory and go to it */
210 tst_tmpdir();
plars865695b2001-08-27 22:15:12 +0000211
vapierc450e062009-08-28 14:28:52 +0000212 if ((Fd = open(FILENAME, O_CREAT | O_RDWR, 0777)) == -1)
Wanlong Gao354ebb42012-12-07 10:10:04 +0800213 tst_brkm(TBROK | TERRNO, cleanup,
vapierc450e062009-08-28 14:28:52 +0000214 "open(%s, O_CREAT | O_RDWR) failed", FILENAME);
plars865695b2001-08-27 22:15:12 +0000215
subrata_modak56207ce2009-03-23 13:35:39 +0000216 /*
217 * Initializing and assigning the standard output file descriptor to
218 * fd_set for select.
219 */
plars865695b2001-08-27 22:15:12 +0000220
subrata_modak56207ce2009-03-23 13:35:39 +0000221 FD_ZERO(&Readfds);
222 FD_SET(Fd, &Readfds);
Garrett Cooper2c282152010-12-16 00:55:50 -0800223}
plars865695b2001-08-27 22:15:12 +0000224
225/***************************************************************
226 * cleanup() - performs all ONE TIME cleanup for this test at
227 * completion or premature exit.
228 ***************************************************************/
Mike Frysingerc57fba52014-04-09 18:56:30 -0400229void cleanup(void)
plars865695b2001-08-27 22:15:12 +0000230{
plars865695b2001-08-27 22:15:12 +0000231
subrata_modak56207ce2009-03-23 13:35:39 +0000232 if (Fd >= 0) {
vapierc450e062009-08-28 14:28:52 +0000233 if (close(Fd) == -1)
Wanlong Gao354ebb42012-12-07 10:10:04 +0800234 tst_resm(TWARN | TERRNO, "close(%s) failed", FILENAME);
subrata_modak56207ce2009-03-23 13:35:39 +0000235 Fd = -1;
236 }
plars865695b2001-08-27 22:15:12 +0000237
subrata_modak56207ce2009-03-23 13:35:39 +0000238 tst_rmdir();
plars865695b2001-08-27 22:15:12 +0000239
Chris Dearmanec6edca2012-10-17 19:54:01 -0700240}