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
View Add Comment Developer Edit
Welcome! If you don't have a Git account, you can't do anything here.
You can add a comment by following this link or if you reported this bug, you can edit this bug over here.
(description)
Block user comment
Status: Assign to:
Package:
Bug Type:
Summary:
From: php at displague dot com
New email:
PHP Version: OS:

 

 [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: Thu Apr 18 13:01:27 2024 UTC