0dcbd30900dd19963c99e155879adc3992db3bd3
[xfstests-dev.git] / dmapi / src / common / cmd / write_invis.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 #include <malloc.h>
38 #endif
39
40 /*---------------------------------------------------------------------------
41
42 Test program used to test the DMAPI function dm_write_invis().  The
43 command line is:
44
45         write_invis [-c char] [-o offset] [-l length] [-s sid] pathname
46
47 where:
48 'char' is the character to use as a repeated pattern ('X' is the default),
49 'offset' is the offset of the start of the write (0 is the default),
50 'length' is the length of the write in bytes (1 is the default),
51 'sid' is the session ID whose events you you are interested in.
52 'pathname' is the name of the file to be written.
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         int     i;
72
73         fprintf(stderr, "usage:\t%s [-c char] [-o offset] [-l length] "
74                 "[-s sid] pathname\n", Progname);
75         exit(1);
76 }
77
78
79 int
80 main(
81         int     argc, 
82         char    **argv)
83 {
84         dm_sessid_t     sid = DM_NO_SESSION;
85         char            *pathname = NULL;
86         dm_off_t        offset = 0;
87         dm_size_t       length = 1;
88         u_char          ch = 'X';
89         void            *bufp = NULL;
90         void            *hanp;
91         size_t          hlen;
92         dm_ssize_t      rc;
93         char            *name;
94         int             opt;
95         int             i;
96
97         if (Progname = strrchr(argv[0], '/')) {
98                 Progname++;
99         } else {
100                 Progname = argv[0];
101         }
102
103         /* Crack and validate the command line options. */
104
105         while ((opt = getopt(argc, argv, "c:o:l:s:")) != EOF) {
106                 switch (opt) {
107                 case 'c':
108                         ch = *optarg;
109                         break;
110                 case 'o':
111                         offset = atol(optarg);
112                         break;
113                 case 'l':
114                         length = atol(optarg);
115                         break;
116                 case 's':
117                         sid = atol(optarg);
118                         break;
119                 case '?':
120                         usage();
121                 }
122         }
123         if (optind + 1 != argc)
124                 usage();
125         pathname = argv[optind];
126
127         if (dm_init_service(&name) == -1)  {
128                 fprintf(stderr, "Can't inititalize the DMAPI\n");
129                 exit(1);
130         }
131         if (sid == DM_NO_SESSION)
132                 find_test_session(&sid);
133
134         /* Get the file's handle. */
135
136         if (dm_path_to_handle(pathname, &hanp, &hlen)) {
137                 fprintf(stderr, "can't get handle for file %s\n", pathname);
138                 exit(1);
139         }
140
141         if (length > 0) {
142                 /* In case it is a realtime file, align the buffer on a
143                    sufficiently big boundary.
144                 */
145                 if ((bufp = memalign(4096, length)) == NULL) {
146                         fprintf(stderr, "malloc of %d bytes failed\n", length);
147                         exit(1);
148                 }
149                 memset(bufp, ch, length);
150         }
151
152         rc = dm_write_invis(sid, hanp, hlen, DM_NO_TOKEN, 0, offset, length, bufp);
153
154         if (rc < 0) {
155                 fprintf(stderr, "dm_write_invis failed, %s\n", strerror(errno));
156                 exit(1);
157         } else if (rc != length) {
158                 fprintf(stderr, "expected to write %lld bytes, actually "
159                         "wrote %lld\n", length, rc);
160                 exit(1);
161         }
162         dm_handle_free(hanp, hlen);
163         exit(0);
164 }