blob: 101733dd70f0d863d41b29e2252fe21f5ac6756a [file] [log] [blame]
/*
*
* Copyright (c) International Business Machines Corp., 2002
*
* 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
/*
* NAME
* diotest6.c
*
* DESCRIPTION
* Fork given number of children. Each child opens the same file, but
* uses its own file descriptior. The child does writes and reads from
* its segment in the file. The segment to which the child writes is
* determined by childnumber * bufsize. There is no need to use any locks.
* Tests the combinations of buffered/direct readv(), writev() calls.
* Test program contains the following test blocks:
* [1] Direct Read, Buffered write
* [2] Direct Write, Buffered read
* [3] Direct Read, Direct Write
*
* USAGE
* diotest6 [-b bufsize] [-o offset] [-n numchild] [-i iterations]
* [-v nvector] [-f fileaname]
*
* History
* 04/30/2002 Narasimha Sharoff nsharoff@us.ibm.com
*
* RESTRICTIONS
* None
*/
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <string.h>
#include <sys/file.h>
#include <sys/fcntl.h>
#include <sys/syscall.h>
#include <sys/uio.h>
#include <errno.h>
#include "diotest_routines.h"
#include "test.h"
#include "usctest.h"
char *TCID="diotest06"; /* Test program identifier. */
int TST_TOTAL=3; /* Total number of test conditions */
#ifdef O_DIRECT
#define BUFSIZE 4096
#define TRUE 1
#define LEN 30
#define READ_DIRECT 1
#define WRITE_DIRECT 2
#define RDWR_DIRECT 3
static int iter = 100; /* Iterations. Default 100 */
static int bufsize = BUFSIZE; /* Buffersize. Default 4k */
static off64_t offset = 0; /* Offset. Default 0 */
static int nvector = 20; /* Vector array. Default 20 */
static char filename[LEN]; /* Test data file */
/*
* prg_usage: display the program usage
*/
void
prg_usage()
{
fprintf(stderr, "Usage: diotest6 [-b bufsize] [-o offset] [-n numchild] [-i iterations] [-v nvector] [-f filename]\n");
exit(1);
}
/*
* runtest: write the data to the file. Read the data from the file and compare.
* For each iteration, write data starting at offse+iter*bufsize
* location in the file and read from there.
*/
int
runtest(int fd_r, int fd_w, int childnum, int action)
{
off64_t seekoff;
int i, bufsize = BUFSIZE;
struct iovec *iov1, *iov2, *iovp;
/* Allocate for buffers and data pointers */
seekoff = offset+bufsize * childnum;
if ((iov1 = (struct iovec *)valloc(sizeof(struct iovec)*nvector)) == NULL) {
tst_resm(TFAIL, "valloc buf1 failed: %s", strerror(errno));
return(-1);
}
if ((iov2 = (struct iovec *)valloc(sizeof(struct iovec)*nvector)) == NULL) {
tst_resm(TFAIL, "valloc buf2 failed: %s", strerror(errno));
return(-1);
}
for (i = 0, iovp = iov1; i < nvector; iovp++, i++) {
if ((iovp->iov_base = valloc(bufsize)) == NULL) {
tst_resm(TFAIL, "valloc for iovp->iov_base: %s",
strerror(errno));
return(-1);
}
iovp->iov_len = bufsize;
}
for (i = 0, iovp = iov2; i < nvector; iovp++, i++) {
if ((iovp->iov_base = valloc(bufsize)) == NULL) {
tst_resm(TFAIL, "valloc, iov2 for iovp->iov_base: %s",
strerror(errno));
return(-1);
}
iovp->iov_len = bufsize;
}
/* seek, write, read and verify */
for (i = 0; i < iter; i++) {
/*
fillbuf(buf1, bufsize, childnum+i);
*/
vfillbuf(iov1, nvector, childnum+i);
if (lseek(fd_w, seekoff, SEEK_SET) < 0) {
tst_resm(TFAIL, "lseek before write failed: %s",
strerror(errno));
return(-1);
}
if (write(fd_w, iov1, bufsize) < bufsize) {
tst_resm(TFAIL, "write failed: %s", strerror(errno));
return(-1);
}
if (action == READ_DIRECT) {
/* Make sure data is on to disk before read */
if (fsync(fd_w) < 0) {
tst_resm(TFAIL, "fsync failed: %s",
strerror(errno));
return(-1);
}
}
if (lseek(fd_r, seekoff, SEEK_SET) < 0) {
tst_resm(TFAIL, "lseek before read failed: %s",
strerror(errno));
return(-1);
}
if (read(fd_r, iov2, bufsize) < bufsize) {
tst_resm(TFAIL, "read failed: %s", strerror(errno));
return(-1);
}
if (bufcmp((char*)iov1, (char*)iov2, bufsize) != 0) {
tst_resm(TFAIL, "comparsion failed. Child=%d offset=%d",
childnum, (int)seekoff);
return(-1);
}
}
return 0;
}
/*
* child_function: open the file for read and write. Call the runtest routine.
*/
int
child_function(int childnum, int action)
{
int fd_w, fd_r;
switch(action) {
case READ_DIRECT:
if ((fd_w = open(filename, O_WRONLY|O_CREAT, 0666)) < 0) {
tst_resm(TFAIL, "fd_w open failed for %s: %s",
filename, strerror(errno));
return(-1);
}
if ((fd_r = open(filename, O_DIRECT|O_RDONLY, 0666)) < 0) {
tst_resm(TFAIL, "fd_r open failed for %s: %s",
filename, strerror(errno));
close(fd_w);
return(-1);
}
if (runtest(fd_r, fd_w, childnum, action) == -1) {
tst_resm(TFAIL, "Read Direct-child %d failed",
childnum);
close(fd_w);
close(fd_r);
return(-1);
}
break;
case WRITE_DIRECT:
if ((fd_w = open(filename, O_DIRECT|O_WRONLY|O_CREAT, 0666)) < 0) {
tst_resm(TFAIL, "fd_w open failed for %s: %s",
filename, strerror(errno));
return(-1);
}
if ((fd_r = open(filename, O_RDONLY, 0666)) < 0) {
tst_resm(TFAIL, "fd_r open failed for %s: %s",
filename, strerror(errno));
close(fd_w);
return(-1);
}
if (runtest(fd_r, fd_w, childnum, action) == -1) {
tst_resm(TFAIL, "Write Direct-child %d failed",
childnum);
close(fd_w);
close(fd_r);
return(-1);
}
break;
case RDWR_DIRECT:
if ((fd_w = open(filename, O_DIRECT|O_WRONLY|O_CREAT, 0666)) < 0) {
tst_resm(TFAIL, "fd_w open failed for %s: %s",
filename, strerror(errno));
return(-1);
}
if ((fd_r = open(filename, O_DIRECT|O_RDONLY, 0666)) < 0) {
tst_resm(TFAIL, "fd_r open failed for %s: %s",
filename, strerror(errno));
close(fd_w);
return(-1);
}
if (runtest(fd_r, fd_w, childnum, action) == -1) {
tst_resm(TFAIL, "RDWR Direct-child %d failed",
childnum);
close(fd_w);
close(fd_r);
return(-1);
}
break;
default:
fprintf(stderr,"Invalid Action Value\n");
return(-1);
}
close(fd_w);
close(fd_r);
exit(0);
}
int
main(int argc, char *argv[])
{
int *pidlst;
int numchild = 1; /* Number of children. Default 5 */
int i, fail_count = 0, failed = 0, total = 0;
int fd1;
/* Options */
sprintf(filename,"testdata-6.%ld", syscall(__NR_gettid));
while ((i = getopt(argc, argv, "b:o:i:n:v:f:")) != -1) {
switch(i) {
case 'b':
if ((bufsize = atoi(optarg)) <= 0) {
fprintf(stderr, "bufsize must be > 0\n");
prg_usage();
}
if (bufsize % 4096 != 0) {
fprintf(stderr, "bufsize must be multiple of 4k\n");
prg_usage();
}
break;
case 'o':
if ((offset = atoi(optarg)) <= 0) {
fprintf(stderr, "offset must be > 0\n");
prg_usage();
}
break;
case 'i':
if ((iter = atoi(optarg)) <= 0) {
fprintf(stderr, "iterations must be > 0\n");
prg_usage();
}
break;
case 'n':
if ((numchild = atoi(optarg)) <= 0) {
fprintf(stderr, "no of children must be > 0\n");
prg_usage();
}
break;
case 'v':
if ((nvector = atoi(optarg)) <= 0) {
fprintf(stderr, "vectory array must be > 0\n");
prg_usage();
}
break;
case 'f':
strcpy(filename, optarg);
break;
default:
prg_usage();
}
}
/* Test for filesystem support of O_DIRECT */
if ((fd1 = open(filename, O_DIRECT|O_CREAT, 0666)) < 0) {
tst_resm(TCONF,"O_DIRECT is not supported by this filesystem.");
tst_exit();
}else{
close(fd1);
}
/* Testblock-1: Read with Direct IO, Write without */
if (forkchldrn(&pidlst, numchild, READ_DIRECT, child_function) < 0 ) {
failed = TRUE;
fail_count++;
tst_resm (TFAIL, "Read with Direct IO, Write without");
}
else {
if (waitchldrn(&pidlst, numchild) < 0) {
failed = TRUE;
fail_count++;
tst_resm (TFAIL, "Read with Direct IO, Write without");
}
else
tst_resm (TPASS, "Read with Direct IO, Write without");
}
unlink(filename);
free(pidlst);
total++;
/* Testblock-2: Write with Direct IO, Read without */
if (forkchldrn(&pidlst, numchild, WRITE_DIRECT, child_function) < 0) {
failed = TRUE;
fail_count++;
tst_resm (TFAIL, "Write with Direct IO, Read without");
}
else {
if (waitchldrn(&pidlst, numchild) < 0) {
failed = TRUE;
fail_count++;
tst_resm (TFAIL, "Write with Direct IO, Read without");
}
else
tst_resm (TPASS, "Write with Direct IO, Read without");
}
unlink(filename);
free(pidlst);
total++;
/* Testblock-3: Read, Write with Direct IO. */
if (forkchldrn(&pidlst, numchild, RDWR_DIRECT, child_function) < 0) {
failed = TRUE;
fail_count++;
tst_resm (TFAIL, "Read, Write with Direct IO");
}
else {
if (waitchldrn(&pidlst, numchild) < 0) {
failed = TRUE;
fail_count++;
tst_resm (TFAIL, "Read, Write with Direct IO");
}
else
tst_resm (TPASS, "Read, Write with Direct IO");
}
unlink(filename);
free(pidlst);
total++;
if (failed)
tst_resm(TINFO, "%d/%d testblocks failed",
fail_count, total);
else
tst_resm(TINFO, "%d testblocks %d iterations with %d children completed",
total, iter, numchild);
tst_exit();
return 0;
}
#else /* O_DIRECT */
int
main() {
tst_resm(TCONF,"O_DIRECT is not defined.");
return 0;
}
#endif /* O_DIRECT */