Undoes mod: xfs-cmds:slinx:120772a
[xfstests-dev.git] / dmapi / src / suite1 / cmd / downgrade_right.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 <lib/hsm.h>
34
35 #include <string.h>
36 #include <getopt.h>
37
38 /*---------------------------------------------------------------------------
39
40 Test program used to test the DMAPI function dm_downgrade_right().  The
41 command line is:
42
43         downgrade_right {-F} [-s sid] token {pathname|handle}
44
45 where:
46 -F
47         when a pathname is specified, -F indicates that its filesystem handle
48         should be used rather than its file object handle.
49 sid
50         is the dm_sessid_t to use rather than the default test session.
51 token
52         is the dm_token_t to use.
53 {pathname|handle}
54         is either a handle, or is the pathname of a file whose handle is
55         to be used.
56
57 ----------------------------------------------------------------------------*/
58
59 #ifndef linux
60 extern  char    *sys_errlist[];
61 #endif
62 extern  int     optind;
63 extern  char    *optarg;
64
65
66 char    *Progname;
67
68
69 static void
70 usage(void)
71 {
72         fprintf(stderr, "usage:\t%s [-F] [-s sid] token {pathname|handle}\n",
73                 Progname);
74         exit(1);
75 }
76
77
78 int
79 main(
80         int     argc,
81         char    **argv)
82 {
83         dm_sessid_t     sid = DM_NO_SESSION;
84         dm_token_t      token;
85         char            *object;
86         void            *hanp;
87         size_t          hlen;
88         int             Fflag = 0;
89         char            *name;
90         int             opt;
91
92         if (Progname = strrchr(argv[0], '/')) {
93                 Progname++;
94         } else {
95                 Progname = argv[0];
96         }
97
98         /* Crack and validate the command line options. */
99
100         while ((opt = getopt(argc, argv, "Fs:")) != EOF) {
101                 switch (opt) {
102                 case 'F':
103                         Fflag++;
104                         break;
105                 case 's':
106                         sid = atol(optarg);
107                         break;
108                 case '?':
109                         usage();
110                 }
111         }
112         if (optind + 2 != argc)
113                 usage();
114         token = atol(argv[optind++]);
115         object = argv[optind];
116
117         if (dm_init_service(&name) == -1)  {
118                 fprintf(stderr, "Can't initialize the DMAPI\n");
119                 exit(1);
120         }
121         if (sid == DM_NO_SESSION)
122                 find_test_session(&sid);
123
124         /* Get the file or filesystem's handle. */
125
126         if (opaque_to_handle(object, &hanp, &hlen)) {
127                 fprintf(stderr, "can't get handle from %s\n", object);
128                 exit(1);
129         }
130         if (Fflag) {
131                 void    *fshanp;
132                 size_t  fshlen;
133
134                 if (dm_handle_to_fshandle(hanp, hlen, &fshanp, &fshlen)) {
135                         fprintf(stderr, "can't get filesystem handle from %s\n",
136                                 object);
137                         exit(1);
138                 }
139                 dm_handle_free(hanp, hlen);
140                 hanp = fshanp;
141                 hlen = fshlen;
142         }
143
144         if (dm_downgrade_right(sid, hanp, hlen, token)) {
145                 fprintf(stderr, "dm_downgrade_right failed, %s\n",
146                         strerror(errno));
147                 return(1);
148         }
149
150         dm_handle_free(hanp, hlen);
151         exit(0);
152 }