This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author Xophmeister
Recipients Xophmeister
Date 2020-07-28.14:54:47
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1595948087.76.0.888842556227.issue41419@roundup.psfhosted.org>
In-reply-to
Content
The setgid bit is not set when creating a directory, even when explicitly specified in the mode argument, when its containing directory doesn't have its own setgid bit set. When the parent does have the setgid bit, it works as expected.

Steps to reproduce:

1. Outside of Python, create a working directory with mode 0770, such that:

   >>> from pathlib import Path
   >>> oct(Path().stat().st_mode)
   '0o40770'

2. Set the umask to 0, to be sure it's not a masking issue:

   >>> import os
   >>> _ = os.umask(0)

3. Create a subdirectory with mode ug+rwx,g+s (2770):

   >>> (test := Path("test")).mkdir(0o2770)
   >>> oct(test.stat().st_mode)
   '0o40770'

   Notice that setgid is not respected.

4. Set setgid to the working directory:

   >>> Path().chmod(0o2770)
   >>> oct(Path().stat().st_mode)
   '0o42770'

   This works as expected.

5. Create another subdirectory with mode ug+rwx,g+s:

   >>> (test2 := Path("test2")).mkdir(0o2770)
   >>> oct(test2.stat().st_mode)
   '0o42770'

   The setgid bit of the new directory is now correctly set.

This also affects os.mkdir.

I have only tested this under Python 3.8.2 and 3.8.3 on a POSIX filesystem. (I assume it's not relevant to non-POSIX filesystems.)
History
Date User Action Args
2020-07-28 14:54:47Xophmeistersetrecipients: + Xophmeister
2020-07-28 14:54:47Xophmeistersetmessageid: <1595948087.76.0.888842556227.issue41419@roundup.psfhosted.org>
2020-07-28 14:54:47Xophmeisterlinkissue41419 messages
2020-07-28 14:54:47Xophmeistercreate