merge irix dmapi test changes
[xfstests-dev.git] / dmapi / src / suite1 / cmd / fd_to_handle.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 /* Given a file object's pathname, print the object's handle. */
34
35 #include <sys/types.h>
36 #include <sys/stat.h>
37
38 #include <errno.h>
39 #include <fcntl.h>
40 #include <stdio.h>
41 #include <stdlib.h>
42
43 #include <lib/dmport.h>
44
45 #include <string.h>
46
47 static void
48 hantoa(
49         void    *hanp,
50         size_t   hlen,
51         char    *handle_str)
52 {
53         u_char  *cp= (u_char *)hanp;
54         int     i;
55
56         for (i = 0;i < hlen; i++, handle_str += 2)
57                 sprintf(handle_str, "%.2x", *cp++);
58         *handle_str = '\0';
59 }
60
61 int
62 main(
63         int             argc,
64         char            **argv)
65 {
66         char            *name;
67         void            *hanp;
68         size_t          hlen;
69         char            buffer[100];
70         int             fd;
71
72         if (argc != 2) {
73                 fprintf(stderr, "usage: %s path\n", argv[0]);
74                 exit(1);
75         }
76
77         (void)dm_init_service(&name);
78
79         if ((fd = open(argv[1], O_RDONLY)) < 0) {
80                 fprintf(stderr, "open of %s failed, %s\n", argv[1],
81                         strerror(errno));
82                 exit(1);
83         }
84         if (dm_fd_to_handle(fd, &hanp, &hlen) != 0) {
85                 fprintf(stderr, "dm_fd_to_handle failed, %s\n",
86                         strerror(errno));
87                 exit(1);
88         }
89         hantoa(hanp, hlen, buffer);
90
91         fprintf(stdout, "handle %s, path %s\n", buffer, argv[1]);
92         exit(0);
93 }