Allow user to specify handles, rather than paths which the tool will
[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 #include <stdlib.h>
46 #include <string.h>
47
48 char *  Progname;
49
50
51 static void
52 Usage(void)
53 {
54         fprintf(stderr,"Usage: %s filename\n", Progname);
55         exit(1);
56 }
57
58
59 int
60 main(
61         int     argc,
62         char    **argv)
63 {
64         char    *pathname;
65         u_int   buflen;
66         char    *buf;
67         ssize_t offset;
68         ssize_t count;
69         int     fd;
70         int     i;
71
72         Progname = argv[0];
73
74         if (argc != 2)
75                 Usage();
76         pathname = argv[1];
77
78         /* Create the file and make it a regular file. */
79
80         if ((fd = open(pathname, O_RDWR|O_CREAT|O_EXCL, 0600)) < 0) {
81                 fprintf(stderr,"%s: Cannot open %s, %s\n", Progname,
82                         pathname, strerror(errno));
83                 exit(1);
84         }
85
86         /* Malloc and zero a buffer to use for writes. */
87
88         buflen = 1;
89         if ((buf = malloc(buflen)) == NULL) {
90                 fprintf(stderr,"%s: malloc(%d) returned NULL\n",
91                         Progname, buflen);
92                 exit(1);
93         }
94         memset(buf, '\0', buflen);
95
96         for (i = 0; i < 200; i += 2) {
97                 offset = i * 65536;
98                 if (lseek(fd, offset, SEEK_SET) < 0) {
99                         fprintf(stderr, "seek to %d failed, %s\n", offset,
100                                 strerror(errno));
101                         exit(1);
102                 }
103                 if ((count = write(fd, buf, buflen)) < 0) {
104                         fprintf(stderr, "write of %d bytes failed at offset "
105                                 "%d, , %s\n", buflen, offset, strerror(errno));
106                         exit(1);
107                 }
108                 if (count != buflen) {
109                         fprintf(stderr, "expected to write %d bytes at offset "
110                                 "%d, actually wrote %d\n", buflen, offset,
111                                 count);
112                         exit(1);
113                 }
114         }
115         exit(0);
116 }