1#!/bin/sh 2# vim: filetype=sh noexpandtab ts=8 sw=8 3# $FreeBSD: head/tools/regression/pjdfstest/tests/rmdir/11.t 211352 2010-08-15 21:24:17Z pjd $ 4 5desc="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" 6 7dir=`dirname $0` 8. ${dir}/../misc.sh 9 10echo "1..47" 11 12n0=`namegen` 13n1=`namegen` 14n2=`namegen` 15 16expect 0 mkdir ${n2} 0755 17cdir=`pwd` 18cd ${n2} 19 20expect 0 mkdir ${n0} 0755 21expect 0 chown ${n0} 65534 65534 22expect 0 chmod ${n0} 01777 23 24# User owns both: the sticky directory and the directory to be removed. 25expect 0 -u 65534 -g 65534 mkdir ${n0}/${n1} 0755 26expect dir,65534,65534 lstat ${n0}/${n1} type,uid,gid 27expect 0 -u 65534 -g 65534 rmdir ${n0}/${n1} 28expect ENOENT lstat ${n0}/${n1} type 29# User owns the directory to be removed, but doesn't own the sticky directory. 30for id in 0 65533; do 31 expect 0 chown ${n0} ${id} ${id} 32 create_file dir ${n0}/${n1} 65534 65534 33 expect dir,65534,65534 lstat ${n0}/${n1} type,uid,gid 34 expect 0 -u 65534 -g 65534 rmdir ${n0}/${n1} 35 expect ENOENT lstat ${n0}/${n1} type 36done 37# User owns the sticky directory, but doesn't own the directory to be removed. 38expect 0 chown ${n0} 65534 65534 39for id in 0 65533; do 40 create_file dir ${n0}/${n1} ${id} ${id} 41 expect dir,${id},${id} lstat ${n0}/${n1} type,uid,gid 42 expect 0 -u 65534 -g 65534 rmdir ${n0}/${n1} 43 expect ENOENT lstat ${n0}/${n1} type 44done 45# User doesn't own the sticky directory nor the directory to be removed. 46for id in 0 65533; do 47 expect 0 chown ${n0} ${id} ${id} 48 create_file dir ${n0}/${n1} ${id} ${id} 49 expect dir,${id},${id} lstat ${n0}/${n1} type,uid,gid 50 expect "EACCES|EPERM" -u 65534 -g 65534 rmdir ${n0}/${n1} 51 expect dir,${id},${id} lstat ${n0}/${n1} type,uid,gid 52 expect 0 rmdir ${n0}/${n1} 53done 54 55expect 0 rmdir ${n0} 56 57cd ${cdir} 58expect 0 rmdir ${n2} 59