php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #44284 mkdir will not apply group sticky from supplied mode
Submitted: 2008-02-28 18:16 UTC Modified: 2008-03-03 14:46 UTC
From: php at displague dot com Assigned:
Status: Not a bug Package: Directory function related
PHP Version: 5.2.5 OS: linux
Private report: No CVE-ID: None
 [2008-02-28 18:16 UTC] php at displague dot com
Description:
------------
The php function mkdir() does not apply the group sticky bit on folders created.  The php function chmod() is capable of doing this.

Previous, closed, bug reports show that mkdir() premitted sticky bits in the past when chmod() did not.

All of my safe_ variables are off:

[mjohansson@host tmp]$ php -r 'phpinfo();' | grep ^safe
safe_mode => Off => Off
safe_mode_exec_dir => no value => no value
safe_mode_gid => Off => Off
safe_mode_include_dir => no value => no value
safe_mode_allowed_env_vars => PHP_ => PHP_
safe_mode_protected_env_vars => LD_LIBRARY_PATH => LD_LIBRARY_PATH


Reproduce code:
---------------
rm -rf test2 test3;
php -r '
  umask(0);
  mkdir("test2", 02770);
  mkdir("test3",02770);
  chmod("test3",02770);';
ls -lad test2 test3

Expected result:
----------------
drwxrws--- 2 mjohansson mjohansson 4096 Feb 28 13:05 test2
drwxrws--- 2 mjohansson mjohansson 4096 Feb 28 13:05 test3

Actual result:
--------------
drwxrwx--- 2 mjohansson mjohansson 4096 Feb 28 13:05 test2
drwxrws--- 2 mjohansson mjohansson 4096 Feb 28 13:05 test3

Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2008-03-03 14:46 UTC] jani@php.net
From 'man 2 mkdir':

NOTES
Under Linux apart from the permission bits, only the S_ISVTX mode bit is honored. That is, under Linux the created directory actually gets mode (mode & ~umask & 01777).  See also stat(2).

 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Fri Mar 29 07:01:28 2024 UTC