man chmod:
4000 (the setuid bit). Executable files with this bit set will
run with effective uid set to the uid of the file owner.
Directories with this bit set will force all files and sub-
directories created in them to be owned by the directory
owner and not by the uid of the creating process, if the
underlying file system supports this feature: see chmod(2)
and the suiddir option to mount(8).
Из написанного следует, что если setuid поставить на директорию, то владельцем(owner)ом всех файлов и директорий вложенных в неё,будет владелец этой самой родительской директории.
создаём директорию:
REDSTAR2# mkdir /aaa
выставляем ей setuid и setgid биты ( чтобы у файла изменялись и группа и владелец):
REDSTAR2# chmod +s /aaa
Изменяем владельца (для чистоты эксперемента):
REDSTAR2# chown irc:irc /aaa
удостоверимся что всё выставилось:
REDSTAR2# ls -l /
total 61
...
drwsr-sr-x 2 irc irc 512 Dec 20 16:58 aaa
...
создаём файл в этой директории:
REDSTAR2# touch /aaa/test
смотрим что там создалось:
REDSTAR2# ls -l /aaa
total 0
-rw-r--r-- 1 root irc 0 Dec 20 17:03 test
REDSTAR2#
И видим, что владельцем файла всёравно является его создатель, а не владелец директории. От не-рута тоже пробовано. Пробовано на 5.2.1 и 5.3
Это баг? или фича? не понимаю.