xref: /illumos-gate/usr/src/test/zfs-tests/tests/functional/xattr/xattr_004_pos.ksh (revision 1d32ba663e202c24a5a1f2e5aef83fffb447cb7f)
1f38cb554SJohn Wren Kennedy#!/bin/ksh -p
2f38cb554SJohn Wren Kennedy#
3f38cb554SJohn Wren Kennedy# CDDL HEADER START
4f38cb554SJohn Wren Kennedy#
5f38cb554SJohn Wren Kennedy# The contents of this file are subject to the terms of the
6f38cb554SJohn Wren Kennedy# Common Development and Distribution License (the "License").
7f38cb554SJohn Wren Kennedy# You may not use this file except in compliance with the License.
8f38cb554SJohn Wren Kennedy#
9f38cb554SJohn Wren Kennedy# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
10f38cb554SJohn Wren Kennedy# or http://www.opensolaris.org/os/licensing.
11f38cb554SJohn Wren Kennedy# See the License for the specific language governing permissions
12f38cb554SJohn Wren Kennedy# and limitations under the License.
13f38cb554SJohn Wren Kennedy#
14f38cb554SJohn Wren Kennedy# When distributing Covered Code, include this CDDL HEADER in each
15f38cb554SJohn Wren Kennedy# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
16f38cb554SJohn Wren Kennedy# If applicable, add the following below this CDDL HEADER, with the
17f38cb554SJohn Wren Kennedy# fields enclosed by brackets "[]" replaced with your own identifying
18f38cb554SJohn Wren Kennedy# information: Portions Copyright [yyyy] [name of copyright owner]
19f38cb554SJohn Wren Kennedy#
20f38cb554SJohn Wren Kennedy# CDDL HEADER END
21f38cb554SJohn Wren Kennedy#
22f38cb554SJohn Wren Kennedy# Copyright 2007 Sun Microsystems, Inc.  All rights reserved.
23f38cb554SJohn Wren Kennedy# Use is subject to license terms.
24f38cb554SJohn Wren Kennedy#
25f38cb554SJohn Wren Kennedy
26f38cb554SJohn Wren Kennedy#
27*1d32ba66SJohn Wren Kennedy# Copyright (c) 2013, 2016 by Delphix. All rights reserved.
28f38cb554SJohn Wren Kennedy#
29f38cb554SJohn Wren Kennedy
30f38cb554SJohn Wren Kennedy. $STF_SUITE/include/libtest.shlib
31f38cb554SJohn Wren Kennedy. $STF_SUITE/tests/functional/xattr/xattr_common.kshlib
32f38cb554SJohn Wren Kennedy
33f38cb554SJohn Wren Kennedy#
34f38cb554SJohn Wren Kennedy# DESCRIPTION:
35f38cb554SJohn Wren Kennedy#
36f38cb554SJohn Wren Kennedy# Creating files on ufs and tmpfs, and copying those files to ZFS with
37f38cb554SJohn Wren Kennedy# appropriate cp flags, the xattrs will still be readable.
38f38cb554SJohn Wren Kennedy#
39f38cb554SJohn Wren Kennedy# STRATEGY:
40f38cb554SJohn Wren Kennedy#	1. Create files in ufs and tmpfs with xattrs
41f38cb554SJohn Wren Kennedy#       2. Copy those files to zfs
42f38cb554SJohn Wren Kennedy#	3. Ensure the xattrs can be read and written
43f38cb554SJohn Wren Kennedy#	4. Do the same in reverse.
44f38cb554SJohn Wren Kennedy#
45f38cb554SJohn Wren Kennedy
46f38cb554SJohn Wren Kennedy# we need to be able to create zvols to hold our test
47f38cb554SJohn Wren Kennedy# ufs filesystem.
48f38cb554SJohn Wren Kennedyverify_runnable "global"
49f38cb554SJohn Wren Kennedy
50f38cb554SJohn Wren Kennedy# Make sure we clean up properly
51f38cb554SJohn Wren Kennedyfunction cleanup {
52f38cb554SJohn Wren Kennedy
53f38cb554SJohn Wren Kennedy	if [ $( ismounted /tmp/ufs.$$ ufs ) ]
54f38cb554SJohn Wren Kennedy	then
55*1d32ba66SJohn Wren Kennedy		log_must umount /tmp/ufs.$$
56*1d32ba66SJohn Wren Kennedy		log_must rm -rf /tmp/ufs.$$
57f38cb554SJohn Wren Kennedy	fi
58f38cb554SJohn Wren Kennedy}
59f38cb554SJohn Wren Kennedy
60f38cb554SJohn Wren Kennedylog_assert "Files from ufs,tmpfs with xattrs copied to zfs retain xattr info."
61f38cb554SJohn Wren Kennedylog_onexit cleanup
62f38cb554SJohn Wren Kennedy
63f38cb554SJohn Wren Kennedy# Create a UFS file system that we can work in
64*1d32ba66SJohn Wren Kennedylog_must zfs create -V128m $TESTPOOL/$TESTFS/zvol
65*1d32ba66SJohn Wren Kennedylog_must eval "echo y | newfs /dev/zvol/dsk/$TESTPOOL/$TESTFS/zvol > /dev/null 2>&1"
66f38cb554SJohn Wren Kennedy
67*1d32ba66SJohn Wren Kennedylog_must mkdir /tmp/ufs.$$
68*1d32ba66SJohn Wren Kennedylog_must mount /dev/zvol/dsk/$TESTPOOL/$TESTFS/zvol /tmp/ufs.$$
69f38cb554SJohn Wren Kennedy
70f38cb554SJohn Wren Kennedy# Create files in ufs and tmpfs, and set some xattrs on them.
71*1d32ba66SJohn Wren Kennedylog_must touch /tmp/ufs.$$/ufs-file.$$
72*1d32ba66SJohn Wren Kennedylog_must touch /tmp/tmpfs-file.$$
73f38cb554SJohn Wren Kennedy
74*1d32ba66SJohn Wren Kennedylog_must runat /tmp/ufs.$$/ufs-file.$$ cp /etc/passwd .
75*1d32ba66SJohn Wren Kennedylog_must runat /tmp/tmpfs-file.$$ cp /etc/group .
76f38cb554SJohn Wren Kennedy
77f38cb554SJohn Wren Kennedy# copy those files to ZFS
78*1d32ba66SJohn Wren Kennedylog_must cp -@ /tmp/ufs.$$/ufs-file.$$ $TESTDIR
79*1d32ba66SJohn Wren Kennedylog_must cp -@ /tmp/tmpfs-file.$$ $TESTDIR
80f38cb554SJohn Wren Kennedy
81f38cb554SJohn Wren Kennedy# ensure the xattr information has been copied correctly
82*1d32ba66SJohn Wren Kennedylog_must runat $TESTDIR/ufs-file.$$ diff passwd /etc/passwd
83*1d32ba66SJohn Wren Kennedylog_must runat $TESTDIR/tmpfs-file.$$ diff group /etc/group
84f38cb554SJohn Wren Kennedy
85*1d32ba66SJohn Wren Kennedylog_must umount /tmp/ufs.$$
86f38cb554SJohn Wren Kennedylog_pass "Files from ufs,tmpfs with xattrs copied to zfs retain xattr info."
87