blob: 9bc1ad1c9136ccaac3311205e819ba434c99071c [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
20 * with this program; if not, write the Free Software Foundation, Inc., 59
21 * Temple Place - Suite 330, Boston MA 02111-1307, USA.
22 *
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_modakbdbaec52009-02-26 12:14:51 +000033/* $Id: read01.c,v 1.6 2009/02/26 12:16:34 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 : read01
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 : Basic test for read(2)
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 : 1
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 : William Roske
subrata_modak4bb656a2009-02-26 12:02:09 +000053 *
plars865695b2001-08-27 22:15:12 +000054 * CO-PILOT : Dave Fenner
subrata_modak4bb656a2009-02-26 12:02:09 +000055 *
plars865695b2001-08-27 22:15:12 +000056 * DATE STARTED : 03/30/92
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.) read(2) returns...(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
subrata_modakbdbaec52009-02-26 12:14:51 +000069 *
plars865695b2001-08-27 22:15:12 +000070 * DURATION
71 * Terminates - with frequency and infinite modes.
subrata_modak4bb656a2009-02-26 12:02:09 +000072 *
plars865695b2001-08-27 22:15:12 +000073 * SIGNALS
74 * Uses SIGUSR1 to pause before test if option set.
75 * (See the parse_opts(3) man page).
76 *
77 * RESOURCES
78 * None
subrata_modak4bb656a2009-02-26 12:02:09 +000079 *
plars865695b2001-08-27 22:15:12 +000080 * ENVIRONMENTAL NEEDS
81 * No run-time environmental needs.
subrata_modak4bb656a2009-02-26 12:02:09 +000082 *
plars865695b2001-08-27 22:15:12 +000083 * SPECIAL PROCEDURAL REQUIREMENTS
84 * None
subrata_modak4bb656a2009-02-26 12:02:09 +000085 *
plars865695b2001-08-27 22:15:12 +000086 * INTERCASE DEPENDENCIES
87 * None
subrata_modak4bb656a2009-02-26 12:02:09 +000088 *
plars865695b2001-08-27 22:15:12 +000089 * DETAILED DESCRIPTION
90 * This is a Phase I test for the read(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 * read(2).
subrata_modak4bb656a2009-02-26 12:02:09 +000094 *
plars865695b2001-08-27 22:15:12 +000095 * Setup:
96 * Setup signal handling.
97 * Pause for SIGUSR1 if option specified.
subrata_modak4bb656a2009-02-26 12:02:09 +000098 *
plars865695b2001-08-27 22:15:12 +000099 * 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.
subrata_modak4bb656a2009-02-26 12:02:09 +0000105 *
plars865695b2001-08-27 22:15:12 +0000106 * Cleanup:
107 * Print errno log and/or timing stats if options given
subrata_modak4bb656a2009-02-26 12:02:09 +0000108 *
109 *
plars865695b2001-08-27 22:15:12 +0000110 *#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#**/
111
112#include <sys/types.h>
113#include <sys/fcntl.h>
114#include <sys/param.h>
115#include <errno.h>
116#include <signal.h>
117#include <string.h>
118#include "test.h"
119#include "usctest.h"
120
121/*
122 * Set READ_BLOCK_SIZE to the block size of the system.
123 */
mridgef7298c72005-12-05 19:14:37 +0000124#ifdef __linux__
plars865695b2001-08-27 22:15:12 +0000125#define READ_BLOCK_SIZE DEV_BSIZE
126#else
127#define READ_BLOCK_SIZE BSIZE
128#endif
129
vapieraa354722006-05-26 06:26:37 +0000130void setup();
131void cleanup();
plars865695b2001-08-27 22:15:12 +0000132
133
134
135char *TCID="read01"; /* Test program identifier. */
136int TST_TOTAL=1; /* Total number of test cases. */
137extern int Tst_count; /* Test Case counter for tst_* routines */
138
139int exp_enos[]={0, 0};
robbiewba7b6812004-05-18 15:58:50 +0000140char fname[255];
plars865695b2001-08-27 22:15:12 +0000141int fd, i;
142int offset=0;
143char *s;
144
145int
146main(int ac, char **av)
147{
148 int lc; /* loop counter */
149 char *msg; /* message returned from parse_opts */
subrata_modak4bb656a2009-02-26 12:02:09 +0000150
plars865695b2001-08-27 22:15:12 +0000151 /***************************************************************
152 * parse standard options
153 ***************************************************************/
154 if ( (msg=parse_opts(ac, av, (option_t *) NULL, NULL)) != (char *) NULL )
155 tst_brkm(TBROK, cleanup, "OPTION PARSING ERROR - %s", msg);
subrata_modak4bb656a2009-02-26 12:02:09 +0000156
plars865695b2001-08-27 22:15:12 +0000157 /***************************************************************
158 * perform global setup for test
159 ***************************************************************/
160 setup();
subrata_modak4bb656a2009-02-26 12:02:09 +0000161
plars865695b2001-08-27 22:15:12 +0000162 /* set the expected errnos... */
163 TEST_EXP_ENOS(exp_enos);
subrata_modak4bb656a2009-02-26 12:02:09 +0000164
plars865695b2001-08-27 22:15:12 +0000165 /***************************************************************
166 * check looping state if -c option given
167 ***************************************************************/
168 for (lc=0; TEST_LOOPING(lc); lc++) {
subrata_modakbdbaec52009-02-26 12:14:51 +0000169
plars865695b2001-08-27 22:15:12 +0000170 /* reset Tst_count in case we are looping. */
171 Tst_count=0;
subrata_modakbdbaec52009-02-26 12:14:51 +0000172
plars865695b2001-08-27 22:15:12 +0000173 if (write(fd, s, READ_BLOCK_SIZE) == -1) {
174 tst_brkm(TBROK, cleanup,
175 "write(%s, %s, %d) Failed, errno=%d : %s",
176 fname, s, READ_BLOCK_SIZE, errno, strerror(errno));
177 }
178 offset+=READ_BLOCK_SIZE;
179 if (lseek(fd, (long)(offset-READ_BLOCK_SIZE), 0) == -1) {
180 tst_brkm(TBROK, cleanup,
181 "lseek(%s, %ld, 0) Failed, errno=%d : %s",
182 fname, (long)(offset-READ_BLOCK_SIZE), errno, strerror(errno));
183 }
subrata_modak4bb656a2009-02-26 12:02:09 +0000184 /*
plars865695b2001-08-27 22:15:12 +0000185 * Call read(2)
186 */
187 TEST(read(fd, s, READ_BLOCK_SIZE));
subrata_modakbdbaec52009-02-26 12:14:51 +0000188
plars865695b2001-08-27 22:15:12 +0000189 /* check return code */
190 if ( TEST_RETURN == -1 ) {
191 TEST_ERROR_LOG(TEST_ERRNO);
192 tst_resm(TFAIL, "read(fd, s, READ_BLOCK_SIZE) Failed, errno=%d : %s",
193 TEST_ERRNO, strerror(TEST_ERRNO));
194 } else {
195 /***************************************************************
196 * only perform functional verification if flag set (-f not given)
197 ***************************************************************/
198 if ( STD_FUNCTIONAL_TEST ) {
199 /* No Verification test, yet... */
200 tst_resm(TPASS, "read(pfds) returned %d", TEST_RETURN);
subrata_modak4bb656a2009-02-26 12:02:09 +0000201 }
plars865695b2001-08-27 22:15:12 +0000202 }
subrata_modakbdbaec52009-02-26 12:14:51 +0000203
plars865695b2001-08-27 22:15:12 +0000204 } /* End for TEST_LOOPING */
subrata_modak4bb656a2009-02-26 12:02:09 +0000205
plars865695b2001-08-27 22:15:12 +0000206 /***************************************************************
207 * cleanup and exit
208 ***************************************************************/
209 cleanup();
210
211 return 0;
212} /* End main */
213
214/***************************************************************
215 * setup() - performs all ONE TIME setup for this test.
216 ***************************************************************/
subrata_modak4bb656a2009-02-26 12:02:09 +0000217void
plars865695b2001-08-27 22:15:12 +0000218setup()
219{
220 /* capture signals */
221 tst_sig(NOFORK, DEF_HANDLER, cleanup);
subrata_modak4bb656a2009-02-26 12:02:09 +0000222
plars865695b2001-08-27 22:15:12 +0000223 /* Pause if that option was specified */
224 TEST_PAUSE;
subrata_modak4bb656a2009-02-26 12:02:09 +0000225
plars865695b2001-08-27 22:15:12 +0000226 /* make a temp directory and cd to it */
227 tst_tmpdir();
subrata_modak4bb656a2009-02-26 12:02:09 +0000228
plars865695b2001-08-27 22:15:12 +0000229 if ((s = malloc(READ_BLOCK_SIZE)) == NULL) {
230 tst_brkm(TBROK, cleanup,
231 "malloc(%d) Failed, errno=%d : %s",
232 READ_BLOCK_SIZE, errno, strerror(errno));
233 }
234 (void) memset(s, '*', READ_BLOCK_SIZE);
235 for (i=0; i < READ_BLOCK_SIZE; i++) {
236 if ( s[i] != '*' ) {
237 tst_brkm(TBROK, cleanup,
238 "File Data pattern not setup correctly : expected * at s[%d] : found %c",
239 i, s[i]);
240 }
241 }
242 sprintf(fname,"./tfile_%d",getpid());
243 if ((fd=open(fname,O_RDWR|O_CREAT,0700)) == -1) {
244 tst_brkm(TBROK, cleanup,
245 "open(%s, O_RDWR|O_CREAT,0700) Failed, errno=%d : %s",
246 fname, errno, strerror(errno));
247 }
subrata_modak4bb656a2009-02-26 12:02:09 +0000248
plars865695b2001-08-27 22:15:12 +0000249} /* End setup() */
250
251
252/***************************************************************
253 * cleanup() - performs all ONE TIME cleanup for this test at
254 * completion or premature exit.
255 ***************************************************************/
subrata_modak4bb656a2009-02-26 12:02:09 +0000256void
plars865695b2001-08-27 22:15:12 +0000257cleanup()
258{
259 /*
260 * print timing stats if that option was specified.
261 * print errno log if that option was specified.
262 */
263 TEST_CLEANUP;
subrata_modak4bb656a2009-02-26 12:02:09 +0000264
plars865695b2001-08-27 22:15:12 +0000265 if (close(fd) == -1 ) {
266 tst_resm(TWARN, "close(%s) Failed, errno=%d : %s",
267 fname, errno, strerror(errno));
268 }
subrata_modak4bb656a2009-02-26 12:02:09 +0000269
plars865695b2001-08-27 22:15:12 +0000270 /* Remove tmp dir and all files in it */
271 tst_rmdir();
subrata_modak4bb656a2009-02-26 12:02:09 +0000272
plars865695b2001-08-27 22:15:12 +0000273 /* exit with return code appropriate for results */
274 tst_exit();
subrata_modak4bb656a2009-02-26 12:02:09 +0000275
plars865695b2001-08-27 22:15:12 +0000276} /* End cleanup() */