comparison usr/src/test/zfs-tests/tests/functional/acl/nontrivial/zfs_acl_cpio_002_pos.ksh @ 13899:0bcf78798346

3311 Want a test framework for arbitrary OS unit tests 3312 Add a testrunner package for OS unit tests 3313 Add a testrunner package to convert ZFS tests from STF Reviewed by: Matt Ahrens <matthew.ahrens@delphix.com> Reviewed by: Will Guyette <will.guyette@delphix.com> Reviewed by: Dan Kimmel <dan.kimmel@delphix.com> Reviewed by: Adam Leventhal <ahl@delphix.com> Reviewed by: Henrik Mattson <henrik.mattson@delphix.com> Reviewed by: Sonu Pillai <sonu.pillai@delphix.com> Reviewed by: Christopher Siden <chris.siden@delphix.com> Reviewed by: George Wilson <george.wilson@delphix.com> Reviewed by: Richard Lowe <richlowe@richlowe.net> Approved by: Richard Lowe <richlowe@richlowe.net>
author John Wren Kennedy <john.kennedy@delphix.com>
date Wed, 05 Dec 2012 22:04:50 -0500
parents
children
comparison
equal deleted inserted replaced
13898:7f822b09519b 13899:0bcf78798346
1 #!/bin/ksh -p
2 #
3 # CDDL HEADER START
4 #
5 # The contents of this file are subject to the terms of the
6 # Common Development and Distribution License (the "License").
7 # You may not use this file except in compliance with the License.
8 #
9 # You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
10 # or http://www.opensolaris.org/os/licensing.
11 # See the License for the specific language governing permissions
12 # and limitations under the License.
13 #
14 # When distributing Covered Code, include this CDDL HEADER in each
15 # file and include the License file at usr/src/OPENSOLARIS.LICENSE.
16 # If applicable, add the following below this CDDL HEADER, with the
17 # fields enclosed by brackets "[]" replaced with your own identifying
18 # information: Portions Copyright [yyyy] [name of copyright owner]
19 #
20 # CDDL HEADER END
21 #
22
23 #
24 # Copyright 2007 Sun Microsystems, Inc. All rights reserved.
25 # Use is subject to license terms.
26 #
27 # Copyright (c) 2012 by Marcelo Leal. All rights reserved.
28 #
29
30 . $STF_SUITE/tests/functional/acl/acl_common.kshlib
31
32 #
33 # DESCRIPTION:
34 # Verify that '$CPIO' command with -P@ option supports to archive ZFS ACLs
35 #
36 # STRATEGY:
37 # 1. Create file and directory in zfs filesystem
38 # 2. Add new ACE in ACL or change mode of file and directory
39 # 3. Create xattr of the file and directory
40 # 4. Use $CPIO to archive file and directory
41 # 5. Extract the archive file
42 # 6. Verify that the restored ACLs of file and directory identify
43 # with the origional ones.
44 #
45
46 verify_runnable "both"
47
48 function cleanup
49 {
50 if datasetexists $TESTPOOL/$TESTFS1; then
51 log_must $ZFS destroy -f $TESTPOOL/$TESTFS1
52 fi
53 if (( ${#orig_dir} != 0 )); then
54 cd $orig_dir
55 fi
56 [[ -d $TESTDIR1 ]] && log_must $RM -rf $TESTDIR1
57 [[ -d $TESTDIR ]] && log_must $RM -rf $TESTDIR/*
58 }
59
60 log_assert "Verify that '$CPIO' command supports to archive ZFS ACLs & xattrs."
61 log_onexit cleanup
62
63 set -A ops "A+user:$ZFS_ACL_OTHER1:execute:allow" \
64 "A3+user:$ZFS_ACL_OTHER1:write_data:deny" \
65 "A0+user:$ZFS_ACL_OTHER1:write_data:deny" \
66 "A3+group:$ZFS_ACL_OTHER_GROUP:read_data:deny" \
67 "A1=user:$ZFS_ACL_STAFF1:write_data:deny" \
68 "A1=group:$ZFS_ACL_STAFF_GROUP:write_data:deny"
69
70 log_note "Create second zfs file system to restore the cpio archive."
71 log_must $ZFS create $TESTPOOL/$TESTFS1
72 log_must $ZFS set mountpoint=$TESTDIR1 $TESTPOOL/$TESTFS1
73 log_must $CHMOD 777 $TESTDIR1
74
75 # Define test fine and record the original directory.
76 CPIOFILE=cpiofile.$$
77 file=$TESTFILE0
78 dir=dir.$$
79 orig_dir=$PWD
80 mytestfile=/kernel/drv/zfs
81
82 typeset user
83 for user in root $ZFS_ACL_STAFF1; do
84 # Set the current user
85 log_must set_cur_usr $user
86
87 typeset -i i=0
88 while (( i < ${#ops[*]} )); do
89 log_note "Create file $file and directory $dir " \
90 "in zfs filesystem. "
91 cd $TESTDIR
92 log_must usr_exec $TOUCH $file
93 log_must usr_exec $MKDIR $dir
94 log_must usr_exec $RUNAT $file $CP $mytestfile attr.0
95 log_must usr_exec $RUNAT $dir $CP $mytestfile attr.0
96
97 log_note "Change the ACLs of file and directory with " \
98 "'$CHMOD ${ops[i]}'."
99 for obj in $file $dir; do
100 log_must usr_exec $CHMOD ${ops[i]} $obj
101 done
102
103 log_note "Archive the file and directory."
104 cd $TESTDIR
105 log_must eval "usr_exec $LS | " \
106 "usr_exec $CPIO -ocP@ -O $CPIOFILE > /dev/null 2>&1"
107
108 log_note "Restore the cpio archive."
109 log_must usr_exec $MV $CPIOFILE $TESTDIR1
110 cd $TESTDIR1
111 log_must eval "usr_exec $CAT $CPIOFILE | " \
112 "usr_exec $CPIO -icP@ > /dev/null 2>&1"
113
114 log_note "Verify that the ACLs of restored file/directory " \
115 "have no changes."
116 for obj in $file $dir; do
117 log_must compare_modes $TESTDIR/$obj $TESTDIR1/$obj
118 log_must compare_acls $TESTDIR/$obj $TESTDIR1/$obj
119 log_must compare_xattrs $TESTDIR/$obj $TESTDIR1/$obj
120 done
121
122 log_must usr_exec $RM -rf $TESTDIR/* $TESTDIR1/*
123
124 (( i = i + 1 ))
125 done
126 done
127
128 log_pass "'$CPIO' command succeeds to support ZFS ACLs & xattrs."