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