8322 nl: misleading-indentation
[unleashed/tickless.git] / usr / src / cmd / dtrace / test / tst / common / privs / tst.getf.ksh
blob7dbb83fba94ab6a2b8c6a06be94f0aad16eafea2
2 # CDDL HEADER START
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]
19 # CDDL HEADER END
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); }
38 CANREAD(f_flag)
39 CANREAD(f_flag2)
40 CANREAD(f_vnode)
41 CANREAD(f_offset)
42 CANREAD(f_cred)
43 CANREAD(f_audit_data)
44 CANREAD(f_count)
47 * We can potentially read parts of our cred, but we can't dereference
48 * through cr_zone.
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)
63 BEGIN
65 errmsg = "";
66 this->fp = getf(0);
67 this->fp2 = getf(1);
69 trace(this->fp->f_vnode);
70 printf("\nable to successfully read this->fp!");
71 exit(1);
74 BEGIN
76 errmsg = "";
77 this->fp = getf(0);
80 BEGIN
82 trace(this->fp->f_vnode);
83 printf("\nable to successfully read this->fp from prior clause!");
86 BEGIN
88 exit(0);
91 ERROR
92 /errmsg != ""/
94 printf("fatal error: %s", errmsg);
95 exit(1);
98 EOF