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