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