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