Update copyright dates (again)
[xfstests-dev.git] / dmapi / src / suite1 / cmd / set_dmattr.c
1 /*
2  * Copyright (c) 2000-2001 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 <getopt.h>
36 #include <string.h>
37
38
39 /*---------------------------------------------------------------------------
40
41 Test program used to test the DMAPI function dm_set_dmattr().  The
42 command line is:
43
44         set_dmattr [-b buflen] [-s sid] [-u] pathname attr value
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, -u is selected if 
48 setdtime should be updated, and sid is the session ID whose attributes you
49 are interested in.
50
51 ----------------------------------------------------------------------------*/
52
53 #ifndef linux
54 extern  char    *sys_errlist[];
55 #endif
56 extern  int     optind;
57 extern  char    *optarg;
58
59
60 char    *Progname;
61
62 static void
63 usage(void)
64 {
65         fprintf(stderr, "usage:\t%s [-b buflen] [-s sid] [-u] pathname "
66                 "attr value\n", Progname);
67         exit(1);
68 }
69
70
71 int
72 main(
73         int     argc, 
74         char    **argv)
75 {
76         dm_sessid_t     sid = DM_NO_SESSION;
77         char            *pathname;
78         dm_attrname_t   *attrnamep;
79         char            *bufp;
80         size_t          buflen;
81         int             bflag = 0;
82         int             setdtime = 0;
83         void            *hanp;
84         size_t          hlen;
85         char            *name;
86         int             opt;
87
88         if (Progname = strrchr(argv[0], '/')) {
89                 Progname++;
90         } else {
91                 Progname = argv[0];
92         }
93
94         /* Crack and validate the command line options. */
95
96         while ((opt = getopt(argc, argv, "b:s:u")) != EOF) {
97                 switch (opt) {
98                 case 'b':
99                         bflag++;
100                         buflen = atol(optarg);
101                         break;
102                 case 's':
103                         sid = atol(optarg);
104                         break;
105                 case 'u':
106                         setdtime = 1;
107                         break;
108                 case '?':
109                         usage();
110                 }
111         }
112         if (optind + 3 != argc)
113                 usage();
114         pathname = argv[optind++];
115         attrnamep = (dm_attrname_t *)argv[optind++];
116         bufp = argv[optind];
117         if (!bflag)
118                 buflen = strlen(bufp) + 1;
119
120         if (dm_init_service(&name) == -1)  {
121                 fprintf(stderr, "Can't initialize the DMAPI\n");
122                 exit(1);
123         }
124         if (sid == DM_NO_SESSION)
125                 find_test_session(&sid);
126
127         /* Get the file's handle. */
128
129         if (dm_path_to_handle(pathname, &hanp, &hlen)) {
130                 fprintf(stderr, "can't get handle for file %s, %s\n",
131                         pathname, strerror(errno));
132                 exit(1);
133         }
134
135         if (dm_set_dmattr(sid, hanp, hlen, DM_NO_TOKEN, attrnamep, setdtime,
136             buflen, bufp)) {
137                 fprintf(stderr, "dm_set_dmattr failed, %s\n",
138                         strerror(errno));
139                 exit(1);
140         }
141
142         dm_handle_free(hanp, hlen);
143         exit(0);
144 }