cmd/xfsprogs/libdm/dmapi_tests/README 1.1 Renamed to cmd/xfstests/dmapi/README
[xfstests-dev.git] / dmapi / src / suite1 / cmd / make_sparse.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 /*
34  *
35  */
36
37 #include <sys/types.h>
38
39 #include <errno.h>
40 #include <fcntl.h>
41 #include <malloc.h>
42 #include <stdio.h>
43 #include <unistd.h>
44
45
46 static  char *  prog;
47
48 static void
49 Usage(void)
50 {
51         fprintf(stderr,"Usage: %s filename\n", prog);
52         exit(1);
53 }
54
55
56 int
57 main(
58         int     argc,
59         char    **argv)
60 {
61         char    *pathname;
62         u_int   buflen;
63         char    *buf;
64         ssize_t offset;
65         ssize_t count;
66         int     fd;
67         int     i;
68
69         prog = argv[0];
70
71         if (argc != 2)
72                 Usage();
73         pathname = argv[1];
74
75         /* Create the file and make it a regular file. */
76
77         if ((fd = open(pathname, O_RDWR|O_CREAT|O_EXCL, 0600)) < 0) {
78                 fprintf(stderr,"%s: Cannot open %s, %s\n", prog,
79                         pathname, strerror(errno));
80                 exit(1);
81         }
82
83         /* Malloc and zero a buffer to use for writes. */
84
85         buflen = 1;
86         if ((buf = malloc(buflen)) == NULL) {
87                 fprintf(stderr,"%s: malloc(%d) returned NULL\n",
88                         prog, buflen);
89                 exit(1);
90         }
91         memset(buf, '\0', buflen);
92
93         for (i = 0; i < 200; i += 2) {
94                 offset = i * 65536;
95                 if (lseek(fd, offset, SEEK_SET) < 0) {
96                         fprintf(stderr, "seek to %d failed, %s\n", offset,
97                                 strerror(errno));
98                         exit(1);
99                 }
100                 if ((count = write(fd, buf, buflen)) < 0) {
101                         fprintf(stderr, "write of %d bytes failed at offset "
102                                 "%d, , %s\n", buflen, offset, strerror(errno));
103                         exit(1);
104                 }
105                 if (count != buflen) {
106                         fprintf(stderr, "expected to write %d bytes at offset "
107                                 "%d, actually wrote %d\n", buflen, offset,
108                                 count);
109                         exit(1);
110                 }
111         }
112         exit(0);
113 }