allow it to accept the text form of a file handle
[xfstests-dev.git] / dmapi / src / suite1 / cmd / get_mountinfo.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 <sys/types.h>
34 #include <sys/param.h>
35
36 #include <string.h>
37 #include <getopt.h>
38
39 #include <lib/hsm.h>
40
41 /*---------------------------------------------------------------------------
42
43 Test program used to test the DMAPI function dm_get_mountinfo().  The
44 command line is:
45
46         get_mountinfo [-b buflen] [-s sid] pathname
47
48 where pathname is the name of a file, buflen is the size of the buffer to use
49 in the call, and sid is the session ID whose attributes you are interested in.
50
51 ----------------------------------------------------------------------------*/
52
53   /*
54    * Define some standard formats for the printf statements below.
55    */
56
57 #define HDR  "%s: token %d sequence %d\n"
58 #define VALS "\t%-15s %s\n"
59 #define VALD "\t%-15s %d\n"
60 #ifdef  __sgi
61 #define VALLLD "\t%-15s %lld\n"
62 #else
63 #define VALLLD "\t%-15s %ld\n"
64 #endif
65
66 #ifndef linux
67 extern  char    *sys_errlist[];
68 #endif
69 extern  int     optind;
70 extern  char    *optarg;
71
72
73 char    *Progname;
74
75
76
77 static void
78 usage(void)
79 {
80         fprintf(stderr, "usage:\t%s [-b buflen] [-s sid] pathname\n",
81                 Progname);
82         exit(1);
83 }
84
85
86 int
87 main(
88         int     argc, 
89         char    **argv)
90 {
91         dm_sessid_t     sid = DM_NO_SESSION;
92         char            *pathname;
93         void            *bufp;
94         size_t          buflen = 10000;
95         size_t          rlenp;
96         void            *fshanp;
97         size_t           fshlen;
98         char            *name;
99         int             opt;
100
101         if (Progname = strrchr(argv[0], '/')) {
102                 Progname++;
103         } else {
104                 Progname = argv[0];
105         }
106
107         /* Crack and validate the command line options. */
108
109         while ((opt = getopt(argc, argv, "b:s:")) != EOF) {
110                 switch (opt) {
111                 case 'b':
112                         buflen = atol(optarg);
113                         break;
114                 case 's':
115                         sid = atol(optarg);
116                         break;
117                 case '?':
118                         usage();
119                 }
120         }
121         if (optind + 1 != argc)
122                 usage();
123         pathname = argv[optind++];
124
125         if (dm_init_service(&name) == -1)  {
126                 fprintf(stderr, "Can't initialize the DMAPI\n");
127                 exit(1);
128         }
129         if (sid == DM_NO_SESSION)
130                 find_test_session(&sid);
131
132         /* Get the file's handle. */
133
134         if (dm_path_to_fshandle(pathname, &fshanp, &fshlen)) {
135                 fprintf(stderr, "can't get fshandle for file %s, %s\n",
136                         pathname, strerror(errno));
137                 exit(1);
138         }
139
140         if (buflen > 0) {
141                 if ((bufp = malloc(buflen)) == NULL) {
142                         fprintf(stderr, "malloc failed, %s\n", strerror(errno));
143                         exit(1);
144                 }
145         }
146
147         if (dm_get_mountinfo(sid, fshanp, fshlen, DM_NO_TOKEN, buflen,
148             bufp, &rlenp)) {
149                 if (errno == E2BIG) {
150                         fprintf(stderr, "dm_get_mountinfo buffer too small, "
151                                 "should be %d bytes\n", rlenp);
152                 } else {
153                         fprintf(stderr, "dm_get_mountinfo failed, %s\n",
154                                 strerror(errno));
155                 }
156                 exit(1);
157         }
158         fprintf(stdout, "rlenp is %d\n", rlenp);
159         print_one_mount_event(bufp);
160
161         dm_handle_free(fshanp, fshlen);
162         exit(0);
163 }