Update copyright dates
[xfstests-dev.git] / dmapi / src / suite1 / cmd / fd_to_handle.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 /* 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 char *Progname;
48
49 static void
50 hantoa(
51         void    *hanp,
52         size_t   hlen,
53         char    *handle_str)
54 {
55         u_char  *cp= (u_char *)hanp;
56         int     i;
57
58         for (i = 0;i < hlen; i++, handle_str += 2)
59                 sprintf(handle_str, "%.2x", *cp++);
60         *handle_str = '\0';
61 }
62
63 int
64 main(
65         int             argc,
66         char            **argv)
67 {
68         char            *name;
69         void            *hanp;
70         size_t          hlen;
71         char            buffer[100];
72         int             fd;
73
74         if (argc != 2) {
75                 fprintf(stderr, "usage: %s path\n", argv[0]);
76                 exit(1);
77         }
78         Progname = argv[0];
79
80         (void)dm_init_service(&name);
81
82         if ((fd = open(argv[1], O_RDONLY)) < 0) {
83                 fprintf(stderr, "open of %s failed, %s\n", argv[1],
84                         strerror(errno));
85                 exit(1);
86         }
87         if (dm_fd_to_handle(fd, &hanp, &hlen) != 0) {
88                 fprintf(stderr, "dm_fd_to_handle failed, %s\n",
89                         strerror(errno));
90                 exit(1);
91         }
92         hantoa(hanp, hlen, buffer);
93
94         fprintf(stdout, "handle %s, path %s\n", buffer, argv[1]);
95         exit(0);
96 }