]> CyberLeo.Net >> Repos - FreeBSD/releng/8.1.git/blob - usr.bin/fstat/zfs.c
Copy stable/8 to releng/8.1 in preparation for 8.1-RC1.
[FreeBSD/releng/8.1.git] / usr.bin / fstat / zfs.c
1 /*-
2  * Copyright (c) 2007 Ulf Lilleengen
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  * 1. Redistributions of source code must retain the above copyright
9  *    notice, this list of conditions and the following disclaimer.
10  * 2. Redistributions in binary form must reproduce the above copyright
11  *    notice, this list of conditions and the following disclaimer in the
12  *    documentation and/or other materials provided with the distribution.
13  *
14  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
15  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
16  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
17  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
18  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24  * SUCH DAMAGE.
25  *
26  * $FreeBSD$
27  */
28
29 #include <sys/param.h>
30 #define _KERNEL
31 #include <sys/mount.h>
32 #include <sys/taskqueue.h>
33 #undef _KERNEL
34 #include <sys/sysctl.h>
35
36 #undef lbolt
37 #undef lbolt64
38 #undef gethrestime_sec
39 #include <sys/zfs_context.h>
40 #include <sys/spa.h>
41 #include <sys/spa_impl.h>
42 #include <sys/dmu.h>
43 #include <sys/zap.h>
44 #include <sys/fs/zfs.h>
45 #include <sys/zfs_znode.h>
46
47 #include <err.h>
48 #include <kvm.h>
49 #include <stdio.h>
50 #include <stdlib.h>
51
52 #define ZFS
53 #undef dprintf
54 #include <fstat.h>
55
56 /* 
57  * Offset calculations that are used to get data from znode without having the
58  * definition.
59  */
60 #define LOCATION_ZID (2 * sizeof(void *))
61 #define LOCATION_ZPHYS(zsize) ((zsize) - (2 * sizeof(void *) + sizeof(struct task)))
62
63 int
64 zfs_filestat(struct vnode *vp, struct filestat *fsp)
65 {
66
67         znode_phys_t zphys;
68         struct mount mount, *mountptr;
69         uint64_t *zid;
70         void *znodeptr, *vnodeptr;
71         char *dataptr;
72         void *zphys_addr;
73         size_t len;
74         int size;
75
76         len = sizeof(size);
77         if (sysctlbyname("debug.sizeof.znode", &size, &len, NULL, 0) == -1) {
78                 dprintf(stderr, "error getting sysctl\n");
79                 return (0);
80         }
81         znodeptr = malloc(size);
82         if (znodeptr == NULL) {
83                 dprintf(stderr, "error allocating memory for znode storage\n");
84                 return (0);
85         }
86
87         /* Since we have problems including vnode.h, we'll use the wrappers. */
88         vnodeptr = getvnodedata(vp);
89         if (!KVM_READ(vnodeptr, znodeptr, (size_t)size)) {
90                 dprintf(stderr, "can't read znode at %p for pid %d\n",
91                     (void *)vnodeptr, Pid);
92                 goto bad;
93         }
94
95         /* 
96          * z_id field is stored in the third pointer. We therefore skip the two
97          * first bytes. 
98          *
99          * Pointer to the z_phys structure is the next last pointer. Therefore
100          * go back two bytes from the end.
101          */
102         dataptr = znodeptr;
103         zid = (uint64_t *)(dataptr + LOCATION_ZID);
104         zphys_addr = *(void **)(dataptr + LOCATION_ZPHYS(size));
105
106         if (!KVM_READ(zphys_addr, &zphys, sizeof(zphys))) {
107                 dprintf(stderr, "can't read znode_phys at %p for pid %d\n",
108                     zphys_addr, Pid);
109                 goto bad;
110         }
111
112         /* Get the mount pointer, and read from the address. */
113         mountptr = getvnodemount(vp);
114         if (!KVM_READ(mountptr, &mount, sizeof(mount))) {
115                 dprintf(stderr, "can't read mount at %p for pid %d\n",
116                     (void *)mountptr, Pid);
117                 goto bad;
118         }
119
120         fsp->fsid = (long)(uint32_t)mount.mnt_stat.f_fsid.val[0];
121         fsp->fileid = *zid;
122         /*
123          * XXX: Shows up wrong in output, but UFS has this error too. Could
124          * be that we're casting mode-variables from 64-bit to 8-bit or simply
125          * error in the mode-to-string function.
126          */
127         fsp->mode = (mode_t)zphys.zp_mode;
128         fsp->size = (u_long)zphys.zp_size;
129         fsp->rdev = (dev_t)zphys.zp_rdev;
130         free(znodeptr);
131         return (1);
132 bad:
133         free(znodeptr);
134         return (0);
135 }