cmd/xfs/stress/001 1.6 Renamed to cmd/xfstests/001
[xfstests-dev.git] / src / devzero.c
1 /*
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/SGIGPLNoticeExplan/
31  */
32
33 #include <libxfs.h>
34 #include <fcntl.h>
35 #include <malloc.h>
36 #include <errno.h>
37
38 int
39 main(int argc, char **argv)
40 {
41         off_t           offset = 0;
42         int             blksize = 4096;
43         long long       maxblks = -1;   /* no limit */
44         long long       nblks = 0;
45         int             value = 0;
46         int             sts = 0;
47         int             fd;
48         char            *z;
49         char            *path;
50         int             oflags = O_WRONLY;
51
52         char    *progname;
53
54         if (strrchr(argv[0],'/'))
55                 progname = strrchr(argv[0],'/')+1;
56         else
57                 progname = argv[0];
58
59         while ((fd = getopt(argc, argv, "b:n:o:v:ct")) != EOF) {
60                 switch (fd) {
61                 case 'b':
62                         blksize = atoi(optarg) * 512;
63                         break;
64                 case 'n':
65                         maxblks = atoll(optarg);
66                         break;
67                 case 'o':
68                         offset = atoll(optarg);
69                         break;
70                 case 'v':
71                         value = atoi(optarg);
72                         break;
73                 case 'c':
74                         oflags |= O_CREAT;
75                         break;
76                 case 't':
77                         oflags |= O_TRUNC;
78                         break;
79                 default:
80                         sts++;
81                 }
82         }
83         if (sts || argc - optind != 1) {
84                 fprintf(stderr,
85                         "Usage: %s [-b N*512] [-n N] [-o off] [-v val] "
86                                 " [-c] [-t] <dev/file>\n",
87                         progname);
88                 fprintf(stderr,"      -c: create -t: truncate\n");
89                 exit(1);
90         }
91
92         path = argv[optind];
93
94         if ((fd = open(path, oflags)) < 0) {
95                 fprintf(stderr,
96                         "error opening \"%s\": %s\n",
97                         path, strerror(errno));
98                 exit(1);
99         }
100         if ((lseek64(fd, offset, SEEK_SET)) < 0) {
101                 fprintf(stderr, "%s: error seeking to offset %llu "
102                                         "on \"%s\": %s\n",
103                         progname, offset, path, strerror(errno));
104                 exit(1);
105         }
106
107         if ((z = memalign(getpagesize(), blksize)) == NULL) {
108                 fprintf(stderr, "%s: can't memalign %u bytes: %s\n",
109                         progname, blksize, strerror(errno));
110                 exit(1);
111         }
112         memset(z, value, blksize);
113         errno = 0;
114         for (;;) {
115                 if (nblks++ == maxblks)
116                         break;
117                 if ((sts = write(fd, z, blksize)) < blksize) {
118                         if (errno == ENOSPC || sts >= 0)
119                                 break;
120                         fprintf(stderr, "%s: write failed: %s\n",
121                                 progname, strerror(errno));
122                         break;
123                 }
124         }
125         printf("Wrote %.2fKb (value 0x%x)\n",
126                 (double) ((--nblks) * blksize) / 1024, value);
127         free(z);
128         return 0;
129 }