summaryrefslogtreecommitdiff
path: root/tests/mv/sticky-to-xpart
blob: 55d8f8f287442ed0b30464b8bfb20862abf5df2e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
#!/bin/sh
# A cross-partition move of a file in a sticky tmpdir and owned by
# someone else would evoke an invalid diagnostic:
# mv: cannot remove `x': Operation not permitted
# Affects coreutils-6.0-6.9.

# Copyright (C) 2007-2008 Free Software Foundation, Inc.

# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.

# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.

# You should have received a copy of the GNU General Public License
# along with this program.  If not, see <http://www.gnu.org/licenses/>.

if test "$VERBOSE" = yes; then
  set -x
  mv --version
fi

. $srcdir/test-lib.sh
require_root_

cleanup_() { rm -rf "$other_partition_tmpdir"; }
. "$abs_srcdir/other-fs-tmpdir"

# Set up to run a test where non-root user tries to move a root-owned
# file from a sticky tmpdir to a directory owned by that user on
# a different partition.

mkdir t || framework_failure
chmod a=rwx,o+t t || framework_failure
echo > t/root-owned || framework_failure
chmod a+r t/root-owned || framework_failure
chown "$NON_ROOT_USERNAME" "$other_partition_tmpdir" || framework_failure

# We have to allow $NON_ROOT_USERNAME access to ".".
chmod go+x . || framework_failure

# Ensure that $NON_ROOT_USERNAME can access the required version of mv.
version=`setuidgid $NON_ROOT_USERNAME env PATH="$PATH" mv --version|sed -n '1s/.* //p'`
case $version in
  $PACKAGE_VERSION) ;;
  *) echo "$0: cannot access just-built mv as user $NON_ROOT_USERNAME" 1>&2
     fail=1 ;;
esac

setuidgid $NON_ROOT_USERNAME env PATH="$PATH" \
  mv t/root-owned $other_partition_tmpdir 2> out-t && fail=1

# On some systems, we get `Not owner'.  Convert it.
# On other systems (HPUX), we get `Permission denied'.  Convert it, too.
onp='Operation not permitted'
sed "s/Not owner/$onp/;s/Permission denied/$onp/" out-t > out

cat <<\EOF > exp
mv: cannot remove `t/root-owned': Operation not permitted
EOF

compare out exp || fail=1

Exit $fail