4 # The contents of this file are subject to the terms of the
5 # Common Development and Distribution License (the "License").
6 # You may not use this file except in compliance with the License.
8 # You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9 # or http://www.opensolaris.org/os/licensing.
10 # See the License for the specific language governing permissions
11 # and limitations under the License.
13 # When distributing Covered Code, include this CDDL HEADER in each
14 # file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15 # If applicable, add the following below this CDDL HEADER, with the
16 # fields enclosed by brackets "[]" replaced with your own identifying
17 # information: Portions Copyright [yyyy] [name of copyright owner]
23 # Copyright (c) 2012, Joyent, Inc. All rights reserved.
26 ppriv
-s A
=basic
,dtrace_proc
,dtrace_user $$
28 /usr
/sbin
/dtrace
-q -Cs /dev
/stdin
<<EOF
30 #define CANREAD(field) \
31 BEGIN { this->fp = getf(0); errmsg = "can't read field"; \
32 printf("field: "); trace(this->fp->field); printf("\n"); }
34 #define CANTREAD(field) \
35 BEGIN { errmsg = ""; this->fp = getf(0); trace(this->fp->field); \
36 printf("\nable to successfully read field!"); exit(1); }
47 * We can potentially read parts of our cred, but we can't dereference
50 CANTREAD(f_cred->cr_zone->zone_id)
52 CANREAD(f_vnode->v_path)
53 CANREAD(f_vnode->v_op)
54 CANREAD(f_vnode->v_op->vnop_name)
56 CANTREAD(f_vnode->v_flag)
57 CANTREAD(f_vnode->v_count)
58 CANTREAD(f_vnode->v_pages)
59 CANTREAD(f_vnode->v_type)
60 CANTREAD(f_vnode->v_vfsmountedhere)
61 CANTREAD(f_vnode->v_op->vop_open)
69 trace(this->fp->f_vnode);
70 printf("\nable to successfully read this->fp!");
82 trace(this->fp->f_vnode);
83 printf("\nable to successfully read this->fp from prior clause!");
94 printf("fatal error: %s", errmsg);