e0e4a5b267bdc34ce7b3462b91f6255ee11afc11
[xfstests-dev.git] / dmapi / src / suite1 / cmd / probe_hole.c
1 /*
2  * Copyright (c) 2000-2001 Silicon Graphics, Inc.
3  * All Rights Reserved.
4  *
5  * This program is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU General Public License as
7  * published by the Free Software Foundation.
8  *
9  * This program is distributed in the hope that it would be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  * GNU General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with this program; if not, write the Free Software Foundation,
16  * Inc.,  51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
17  */
18
19 #include <lib/hsm.h>
20
21 #include <getopt.h>
22 #include <string.h>
23
24
25 /*---------------------------------------------------------------------------
26
27 Test program used to test the DMAPI function dm_probe_hole().  The
28 command line is:
29
30         probe_hole [-o offset] [-l length] [-s sid] pathname
31
32 where pathname is the name of a file, offset is the offset of the start of
33 the proposed punch, and length is the length of the punch.  sid is the
34 session ID whose events you you are interested in.
35
36 ----------------------------------------------------------------------------*/
37
38 #ifndef linux
39 extern  char    *sys_errlist[];
40 #endif
41 extern  int     optind;
42 extern  char    *optarg;
43
44
45 char    *Progname;
46
47
48 static void
49 usage(void)
50 {
51         fprintf(stderr, "usage:\t%s [-o offset] [-l length] "
52                 "[-s sid] pathname\n", Progname);
53         exit(1);
54 }
55
56
57 int
58 main(
59         int     argc, 
60         char    **argv)
61 {
62         dm_sessid_t     sid = DM_NO_SESSION;
63         char            *pathname = NULL;
64         dm_off_t        offset = 0;
65         dm_size_t       length = 0;
66         dm_off_t        roffp;
67         dm_size_t       rlenp;
68         void            *hanp;
69         size_t          hlen;
70         char            *name;
71         int             opt;
72
73         if (Progname = strrchr(argv[0], '/')) {
74                 Progname++;
75         } else {
76                 Progname = argv[0];
77         }
78
79         /* Crack and validate the command line options. */
80
81         while ((opt = getopt(argc, argv, "o:l:s:")) != EOF) {
82                 switch (opt) {
83                 case 'o':
84                         offset = atol(optarg);
85                         break;
86                 case 'l':
87                         length = atol(optarg);
88                         break;
89                 case 's':
90                         sid = atol(optarg);
91                         break;
92                 case '?':
93                         usage();
94                 }
95         }
96         if (optind + 1 != argc)
97                 usage();
98         pathname = argv[optind];
99
100         if (dm_init_service(&name) == -1)  {
101                 fprintf(stderr, "Can't initialize the DMAPI\n");
102                 exit(1);
103         }
104         if (sid == DM_NO_SESSION)
105                 find_test_session(&sid);
106
107         /* Get the file's handle. */
108
109         if (dm_path_to_handle(pathname, &hanp, &hlen)) {
110                 fprintf(stderr, "can't get handle for file %s\n", pathname);
111                 exit(1);
112         }
113
114         if (dm_probe_hole(sid, hanp, hlen, DM_NO_TOKEN, offset, length,
115             &roffp, &rlenp)) {
116                 fprintf(stderr, "dm_probe_hole failed, %s\n",
117                         strerror(errno));
118                 exit(1);
119         }
120         fprintf(stdout, "roffp is %lld, rlenp is %lld\n", roffp, rlenp);
121         dm_handle_free(hanp, hlen);
122         exit(0);
123 }