allow it to accept the text form of a file handle
[xfstests-dev.git] / dmapi / src / suite1 / cmd / security_hole2.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 <fcntl.h>
34 #include <stdio.h>
35 #include <stdlib.h>
36 #include <unistd.h>
37
38 /*
39         To read unallocated disk blocks in a filesystem, do
40                 cc -o test thisfile.c
41                 ./test myfile
42                 cat myfile
43 */
44
45 extern  char    *sys_errlist[];
46 extern  int     optind;
47 extern  char    *optarg;
48
49 char    *Progname;
50
51
52 static void
53 usage(void)
54 {
55         int     i;
56
57         fprintf(stderr, "usage:\t%s [-s size] pathname\n", Progname);
58         fprintf(stderr, "\t-s size\t\tsize of file (default 10,000,000 bytes)\n");
59         exit(1);
60 }
61
62
63 int
64 main(
65         int     argc, 
66         char    **argv)
67 {
68         char    *pathname = NULL;
69         off_t   size = 10000000;
70         char    buff[1];
71         int     method = F_RESVSP;
72         flock_t flock;
73         int     opt;
74         int     fd;
75
76         if (Progname = strrchr(argv[0], '/')) {
77                 Progname++;
78         } else {
79                 Progname = argv[0];
80         }
81
82         /* Crack and validate the command line options. */
83
84         while ((opt = getopt(argc, argv, "s:")) != EOF) {
85                 switch (opt) {
86                 case 's':
87                         size = atol(optarg);
88                         break;
89                 case '?':
90                         usage();
91                 }
92         }
93         if (optind + 1 != argc)
94                 usage();
95         pathname = argv[optind];
96
97         /* Create the file and write one byte at a large offset to create a
98            big hole in the middle of the file.
99         */
100
101         if ((fd = open(pathname, O_RDWR|O_CREAT|O_TRUNC, 0666)) < 0) {
102                 perror("open failed");
103                 exit(1);
104         }
105
106         /* First allocate uninitialized blocks. */
107
108         flock.l_whence = 0;
109         flock.l_start = 0;
110         flock.l_len = size;
111
112         if (fcntl(fd, method, &flock) < 0) {
113                 perror("fcntl failed");
114                 exit(1);
115         }
116
117         /* Now seek out and write the byte. */
118
119         if (lseek(fd, size, 0) < 0) {
120                 perror("lseek failed");
121                 exit(1);
122         }
123         buff[0] = '\0';
124         if (write(fd, buff, 1) != 1) {
125                 perror("write failed");
126                 exit(1);
127         }
128         printf("%s created\n", pathname);
129 }