]> CyberLeo.Net >> Repos - FreeBSD/stable/8.git/blob - usr.bin/fstat/zfs.c
MFC r242136:
[FreeBSD/stable/8.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 #include <sys/zfs_sa.h>
47
48 #include <err.h>
49 #include <kvm.h>
50 #include <stdio.h>
51 #include <stdlib.h>
52
53 #define ZFS
54 #undef dprintf
55 #include <fstat.h>
56
57 /* 
58  * Offset calculations that are used to get data from znode without having the
59  * definition.
60  */
61 #define LOCATION_ZID (2 * sizeof(void *))
62 #define LOCATION_ZPHYS(zsize) ((zsize) - (2 * sizeof(void *) + sizeof(struct task)))
63
64 int
65 zfs_filestat(struct vnode *vp, struct filestat *fsp)
66 {
67
68         znode_phys_t zphys;
69         struct mount mount, *mountptr;
70         uint64_t *zid;
71         void *znodeptr, *vnodeptr;
72         char *dataptr;
73         void *zphys_addr;
74         size_t len;
75         int size;
76
77         len = sizeof(size);
78         if (sysctlbyname("debug.sizeof.znode", &size, &len, NULL, 0) == -1) {
79                 dprintf(stderr, "error getting sysctl\n");
80                 return (0);
81         }
82         znodeptr = malloc(size);
83         if (znodeptr == NULL) {
84                 dprintf(stderr, "error allocating memory for znode storage\n");
85                 return (0);
86         }
87
88         /* Since we have problems including vnode.h, we'll use the wrappers. */
89         vnodeptr = getvnodedata(vp);
90         if (!KVM_READ(vnodeptr, znodeptr, (size_t)size)) {
91                 dprintf(stderr, "can't read znode at %p for pid %d\n",
92                     (void *)vnodeptr, Pid);
93                 goto bad;
94         }
95
96         /* 
97          * z_id field is stored in the third pointer. We therefore skip the two
98          * first bytes. 
99          *
100          * Pointer to the z_phys structure is the next last pointer. Therefore
101          * go back two bytes from the end.
102          */
103         dataptr = znodeptr;
104         zid = (uint64_t *)(dataptr + LOCATION_ZID);
105         zphys_addr = *(void **)(dataptr + LOCATION_ZPHYS(size));
106
107         if (!KVM_READ(zphys_addr, &zphys, sizeof(zphys))) {
108                 dprintf(stderr, "can't read znode_phys at %p for pid %d\n",
109                     zphys_addr, Pid);
110                 goto bad;
111         }
112
113         /* Get the mount pointer, and read from the address. */
114         mountptr = getvnodemount(vp);
115         if (!KVM_READ(mountptr, &mount, sizeof(mount))) {
116                 dprintf(stderr, "can't read mount at %p for pid %d\n",
117                     (void *)mountptr, Pid);
118                 goto bad;
119         }
120
121         fsp->fsid = (long)(uint32_t)mount.mnt_stat.f_fsid.val[0];
122         fsp->fileid = *zid;
123         /*
124          * XXX: Shows up wrong in output, but UFS has this error too. Could
125          * be that we're casting mode-variables from 64-bit to 8-bit or simply
126          * error in the mode-to-string function.
127          */
128         fsp->mode = (mode_t)zphys.zp_mode;
129         fsp->size = (u_long)zphys.zp_size;
130         fsp->rdev = (dev_t)zphys.zp_rdev;
131         free(znodeptr);
132         return (1);
133 bad:
134         free(znodeptr);
135         return (0);
136 }