Update copyright dates (again)
[xfstests-dev.git] / dmapi / src / common / cmd / handle_write_invis.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 <string.h>
36 #include <malloc.h>
37 #include <getopt.h>
38
39 /*---------------------------------------------------------------------------
40
41 Test program used to test the DMAPI function dm_write_invis().  The
42 command line is:
43
44    handle_write_invis [-c char] [-o offset] [-l length] [-s sid] handle
45
46 where:
47 'char' is the character to use as a repeated pattern ('X' is the default),
48 'offset' is the offset of the start of the write (0 is the default),
49 'length' is the length of the write in bytes (1 is the default),
50 'sid' is the session ID whose events you you are interested in.
51 'handle' is the ascii representation of the file's handle.
52         You can use the test tool path_to_handle to get this.
53
54 DM_WRITE_SYNC is is not supported.
55
56 ----------------------------------------------------------------------------*/
57
58 #ifndef linux
59 extern  char    *sys_errlist[];
60 #endif
61 extern  int     optind;
62 extern  char    *optarg;
63
64
65 char    *Progname;
66
67
68 static void
69 usage(void)
70 {
71         fprintf(stderr, "usage:\t%s [-c char] [-o offset] [-l length] "
72                 "[-s sid] handle\n", Progname);
73         exit(1);
74 }
75
76
77 int
78 main(
79         int     argc, 
80         char    **argv)
81 {
82         dm_sessid_t     sid = DM_NO_SESSION;
83         char            *han_str = NULL;
84         dm_off_t        offset = 0;
85         dm_size_t       length = 1;
86         u_char          ch = 'X';
87         void            *bufp = NULL;
88         void            *hanp;
89         size_t          hlen;
90         dm_ssize_t      rc;
91         char            *name;
92         int             opt;
93         int             error;
94
95         if (Progname = strrchr(argv[0], '/')) {
96                 Progname++;
97         } else {
98                 Progname = argv[0];
99         }
100
101         /* Crack and validate the command line options. */
102
103         while ((opt = getopt(argc, argv, "c:o:l:s:")) != EOF) {
104                 switch (opt) {
105                 case 'c':
106                         ch = *optarg;
107                         break;
108                 case 'o':
109                         offset = atol(optarg);
110                         break;
111                 case 'l':
112                         length = 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         han_str = 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 ((error = atohan(han_str, &hanp, &hlen)) != 0) {
135                 fprintf(stderr, "atohan() failed, %s\n", strerror(error));
136                 return(1);
137         }
138
139         if (length > 0) {
140                 /* In case it is a realtime file, align the buffer on a
141                    sufficiently big boundary.
142                 */
143                 if ((bufp = memalign(4096, length)) == NULL) {
144                         fprintf(stderr, "malloc of %llu bytes failed\n", length);
145                         exit(1);
146                 }
147                 memset(bufp, ch, length);
148         }
149
150         rc = dm_write_invis(sid, hanp, hlen, DM_NO_TOKEN, 0, offset, length, bufp);
151
152         if (rc < 0) {
153                 fprintf(stderr, "dm_write_invis failed, %s\n", strerror(errno));
154                 exit(1);
155         } else if (rc != length) {
156                 fprintf(stderr, "expected to write %lld bytes, actually "
157                         "wrote %lld\n", length, rc);
158                 exit(1);
159         }
160         dm_handle_free(hanp, hlen);
161         exit(0);
162 }