]> CyberLeo.Net >> Repos - FreeBSD/releng/10.0.git/blob - tools/regression/pjdfstest/tests/rmdir/11.t
- Copy stable/10 (r259064) to releng/10.0 as part of the
[FreeBSD/releng/10.0.git] / tools / regression / pjdfstest / tests / rmdir / 11.t
1 #!/bin/sh
2 # $FreeBSD$
3
4 desc="rmdir returns EACCES or EPERM if the directory containing the directory to be removed is marked sticky, and neither the containing directory nor the directory to be removed are owned by the effective user ID"
5
6 dir=`dirname $0`
7 . ${dir}/../misc.sh
8
9 echo "1..47"
10
11 n0=`namegen`
12 n1=`namegen`
13 n2=`namegen`
14
15 expect 0 mkdir ${n2} 0755
16 cdir=`pwd`
17 cd ${n2}
18
19 expect 0 mkdir ${n0} 0755
20 expect 0 chown ${n0} 65534 65534
21 expect 0 chmod ${n0} 01777
22
23 # User owns both: the sticky directory and the directory to be removed.
24 expect 0 -u 65534 -g 65534 mkdir ${n0}/${n1} 0755
25 expect dir,65534,65534 lstat ${n0}/${n1} type,uid,gid
26 expect 0 -u 65534 -g 65534 rmdir ${n0}/${n1}
27 expect ENOENT lstat ${n0}/${n1} type
28 # User owns the directory to be removed, but doesn't own the sticky directory.
29 for id in 0 65533; do
30         expect 0 chown ${n0} ${id} ${id}
31         create_file dir ${n0}/${n1} 65534 65534
32         expect dir,65534,65534 lstat ${n0}/${n1} type,uid,gid
33         expect 0 -u 65534 -g 65534 rmdir ${n0}/${n1}
34         expect ENOENT lstat ${n0}/${n1} type
35 done
36 # User owns the sticky directory, but doesn't own the directory to be removed.
37 expect 0 chown ${n0} 65534 65534
38 for id in 0 65533; do
39         create_file dir ${n0}/${n1} ${id} ${id}
40         expect dir,${id},${id} lstat ${n0}/${n1} type,uid,gid
41         expect 0 -u 65534 -g 65534 rmdir ${n0}/${n1}
42         expect ENOENT lstat ${n0}/${n1} type
43 done
44 # User doesn't own the sticky directory nor the directory to be removed.
45 for id in 0 65533; do
46         expect 0 chown ${n0} ${id} ${id}
47         create_file dir ${n0}/${n1} ${id} ${id}
48         expect dir,${id},${id} lstat ${n0}/${n1} type,uid,gid
49         expect "EACCES|EPERM" -u 65534 -g 65534 rmdir ${n0}/${n1}
50         expect dir,${id},${id} lstat ${n0}/${n1} type,uid,gid
51         expect 0 rmdir ${n0}/${n1}
52 done
53
54 expect 0 rmdir ${n0}
55
56 cd ${cdir}
57 expect 0 rmdir ${n2}