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.

classification
Title: shutil copy* unsafe on POSIX - they preserve setuid/setgit bits
Type: security Stage: patch review
Components: Library (Lib) Versions: Python 3.4, Python 3.5, Python 2.7
process
Status: open Resolution:
Dependencies: Superseder:
Assigned To: Nosy List: Arfrever, Jim.Jewett, Michael.Felt, benjamin.peterson, christian.heimes, georg.brandl, giampaolo.rodola, hynek, larry, milko.krachounov, neologix, pitrou, ronaldoussoren, serhiy.storchaka, tarek, terry.reedy
Priority: critical Keywords: patch

Created on 2013-02-11 09:10 by milko.krachounov, last changed 2022-04-11 14:57 by admin.

Files
File name Uploaded Description Edit
17180.patch christian.heimes, 2013-02-13 12:00 review
17180_preserve_sbits.patch christian.heimes, 2013-02-13 13:04 review
17180_preserve_sbits2.patch christian.heimes, 2013-06-19 14:43 review
pEpkey.asc Michael.Felt, 2018-08-16 09:07
Messages (22)
msg181885 - (view) Author: Milko Krachounov (milko.krachounov) Date: 2013-02-11 09:10
When copying the mode of a file with copy, copy2, copymode, copystat or copytree, all permission bits are copied (including setuid and setgit), but the owner of the file is not. This can be used for privilege escalation.

An example:

-rwSr--r--  1 milko milko    0 фев 11 10:53 test1

shutil.copy("test1", "test2")

-rwSr--r--  1 root  root     0 фев 11 10:53 test2

If test1 contained anything malicious, now the user milko can execute his malicious payload as root.

Potential fixes:
- Strip setuid/setgid bits.
- Copy the owner on POSIX.
- Perform a safety check on the owner.
- Document the security risk.


The behaviour of copymode/copystat in this case is the same as `chmod --reference', and there can be some expectation of unsafety, but copy/copy2/copytree's behaviour differs from that of `cp -p', and this is a non-obvious difference.
msg182020 - (view) Author: Christian Heimes (christian.heimes) * (Python committer) Date: 2013-02-13 10:59
Thanks for the report. I agree with your analysis. We should follow the behavior of cp and always strip off the suid/sgid bits in shutil.copy(). coreutil's cp removes the bits and doesn't handle source owner = destination owner special.

There are other bits that may need special treatment, too. I'm going to check the sources of cp.
msg182021 - (view) Author: Christian Heimes (christian.heimes) * (Python committer) Date: 2013-02-13 11:10
cp removes three bits unless preserve ownership is enabled and some additional things are true. 

mode &= ~ (S_ISUID | S_ISGID | S_ISVTX)

S_ISVTX is the sticky bit.
msg182022 - (view) Author: Hynek Schlawack (hynek) * (Python committer) Date: 2013-02-13 11:49
While I agree that it’s a problem, I’m a bit uneasy about changing that back to 2.7. I’m pretty sure this would break numerous programs.
msg182023 - (view) Author: Christian Heimes (christian.heimes) * (Python committer) Date: 2013-02-13 12:00
Here is a patch for the issue with test and doc updates.

I'm escalating the bug to release blocker to draw the attention of our RMs.
msg182024 - (view) Author: Christian Heimes (christian.heimes) * (Python committer) Date: 2013-02-13 12:05
Sorry for the extra noise. I got into a comment conflict with Hynek.

Hynek,
I don't think it's going to break lots of apps. setuid/setgid programs are rare these days. Most operating system ignore sticky bits on files, too.

It may break system scripts that copy entire Unix systems with a recursive copytree(), though ...
msg182025 - (view) Author: Hynek Schlawack (hynek) * (Python committer) Date: 2013-02-13 12:07
Yeah, I’m thinking about backup scripts etc.
msg182029 - (view) Author: Christian Heimes (christian.heimes) * (Python committer) Date: 2013-02-13 13:04
Here is a new patch with a new keyword argument preserve_sbits. Perhaps we use `True` as default for Python 2.6 to 3.3 and switch to False in Python 3.4?
msg182031 - (view) Author: Hynek Schlawack (hynek) * (Python committer) Date: 2013-02-13 13:09
SGTM. I’d like an explicit warning on the security implications in the docs though.
msg182062 - (view) Author: Antoine Pitrou (pitrou) * (Python committer) Date: 2013-02-13 21:19
Shouldn't you try to make the permission removal atomic? Otherwise there's a window of opportunity to exploit the suid bit.
msg182690 - (view) Author: Charles-François Natali (neologix) * (Python committer) Date: 2013-02-22 19:29
> Shouldn't you try to make the permission removal atomic?
> Otherwise there's a window of opportunity to exploit the suid bit.

Actually there's already a race even without setuid bit: http://bugs.python.org/issue15100

All metadat should be set atomically.
msg185057 - (view) Author: Benjamin Peterson (benjamin.peterson) * (Python committer) Date: 2013-03-23 14:45
Not blocking 2.7.4 as discussed on mailing list.
msg191482 - (view) Author: Christian Heimes (christian.heimes) * (Python committer) Date: 2013-06-19 14:43
> Shouldn't you try to make the permission removal atomic? Otherwise there's a window of opportunity to exploit the suid bit.

Permissions bits are copied from the source file *after* all data has been copied to the destination file. copy() calls copyfile() followed by copymode()

copyfile() doesn't create files with SUID. In fact it has 0666 & umask. In worst case the new file is readable and writable by every user. The new patch addresses the unlikely issue with os.open()ing the file with mask=0600.

I could also add a create_mode argument to _io.FileIO() in order to make the permission bits of new files more flexible. Modules/_io/fileio.c hard codes mode as 0600.
msg225803 - (view) Author: Serhiy Storchaka (serhiy.storchaka) * (Python committer) Date: 2014-08-24 08:42
See also issue15795. It would be good to make shutil, zipfile and tarfile interfaces consistent.

I think we need more graduated interface matching coretools.

"""
      --preserve[=ATTR_LIST]
              preserve the specified attributes (default: mode,ownership,timestamps), if possible additional attributes: context, links, xattr, all

       --no-preserve=ATTR_LIST
              don't preserve the specified attributes
"""

This means that we should add preserve_mode, preserve_ownership, preserve_time, etc parameters. preserve_ownership should control also copying of suid/sgid/sticky bits. copy()'s defaults will be preserve_mode=True, preserve_ownership=False, preserve_time=False, copy2()'s defaults (corresponding to "cp -p" behavior) will be preserve_mode=True, preserve_ownership=True, preserve_time=True.
msg321296 - (view) Author: Terry J. Reedy (terry.reedy) * (Python committer) Date: 2018-07-09 00:27
Should the patch be turned into a PR or should this be closed?
msg321298 - (view) Author: Larry Hastings (larry) * (Python committer) Date: 2018-07-09 01:59
I'll accept this into 3.4 and 3.5, if someone produces a PR and someone else reviews it.  Given that the issue has already celebrated its fifth birthday I can't say I feel a lot of urgency about it.
msg323482 - (view) Author: Jim Jewett (Jim.Jewett) * (Python triager) Date: 2018-08-13 12:53
My current UI shows this as relevant *only* to 3.4 and 3.5.  If it really has been fixed in 3.6, and the fix can't be backported, I think the risk of breaking backup programs is enough to argue for doing nothing more than a doc change.  Anyone still using 3.4 (or even 3.5) *and* able to install from source is likely to be more upset by unexpected (and possibly silent) breakage of an existing process than new exploits of a 6 year old bug.  

That said, I'm probably the wrong person to verify which versions are affected, so consider this as only soft support for Release Manager to do so if this continues to languish.
msg323561 - (view) Author: Michael Felt (Michael.Felt) * Date: 2018-08-15 11:01
I am looking at this.

Based on the comments from a historical perspective - copyfile() needs to be calling the copy_mode function before any copying actually occurs.

As the dest is already open for writing it does not matter (on posix)
what mode it has later on.

Question: in copystat() there is a block that talks about chown() in the comments but in the code it only seems to be accessing chmod(). Should there (also) be a call to chown "if _SUPER"?

_SUPER = _POSIX and os.geteuid() == 0

basically - mode becomes:

    # remove setuid, setgid and sticky bits if _POSIX and not _SUPER
    mode = stat.S_IMODE(st.st_mode) & _REMOVE_HARMFUL_MASK if _POSIX and not _SUPER else stat.S_IMODE(st.st_mode)

Comments?
msg323562 - (view) Author: Michael Felt (Michael.Felt) * Date: 2018-08-15 11:02
my bad: forgot the snippet I mentioned in the previous post:

    try:
        lookup("chmod")(dst, mode, follow_symlinks=follow)
    except NotImplementedError:
        # if we got a NotImplementedError, it's because
        #   * follow_symlinks=False,
        #   * lchown() is unavailable, and
        #   * either
        #       * fchownat() is unavailable or
        #       * fchownat() doesn't implement AT_SYMLINK_NOFOLLOW.
        #         (it returned ENOSUP.)
        # therefore we're out of options--we simply cannot chown the
        # symlink.  give up, suppress the error.
        # (which is what shutil always did in this circumstance.)
        pass
msg323598 - (view) Author: Michael Felt (Michael.Felt) * Date: 2018-08-16 09:07
I want to believe this can be resolved - without breakage on POSIX.

Clarification: while Mac/OS falls under "posix" in python terms - maybe
"breakage" will need to be accepted,
or, for "back-ports" Mac/OS will be "as if root or super-user" and use
an additional (optional) argument in 3.8 and beyond
to keep backwards compatibility.

Short text: to proceed I think we should start with getting some
additional tests into test_shutil.py asap so that we can see how systems
respond without any changes.

My experience is that cp -r[pP] behaves the same as shutil.copy*() when
the EUID==0, aka superuser,
but strips special bits from files and cannot copy the UID/GID owner
bits of the inode.

I would appreciate someone helping me writing more extensive testing.

We need to test:
* root
* not-root, but owner
* not-root, not owner, but in group
* not-root, "other", other "read" access exists

* if the test does not already exist - also check behavior when directories
  have/do not have "search" (x-bit) enabled.

I am working on a patch to address these different conditions.

Ideally, the "not-owner" and "not-group" tests can be run
by creating the "copy.me" area as root, setting perms, etc.
and then using su -c to run the shutil.copy*() call
and back as root make the verification.

±±± Perspective ±±±

If this is too much discussion, please reply with suggestions - privately -
on what I could do better to not waste your time.

The issue seems unchanged since original posting.

The original report states:
hen copying the mode of a file with copy, copy2, copymode, copystat or
copytree, all permission bits are copied (including setuid and setgit),
but the owner of the file is not. This can be used for privilege escalation.

...snip...

The behaviour of copymode/copystat in this case is the same as `chmod
--reference', and there can be some expectation of unsafety, but
copy/copy2/copytree's behaviour differs from that of `cp -p', and this
is a non-obvious difference.

For clarity: GNU chmod states:

--reference=RFILE
    use RFILE's mode instead of MODE values

Additionally, the chmod man page reminds us the "special bit" masking
behavior is different for files and directries.
Specifically, SUID, SGID and SVTX should not be cleared unless
specifically requested by a chmod "u-s,g-s" specification.

"... a directory's unmentioned set user and group ID bits are not affected"

Additional comments discuss:
short window of opportunity (files are copied first, then mode bits copied)
breakage with the past (copytree used as "backup", regardless of version)

And the comment/opinion that shutil.copy() should emulate cp (implies
emulate "cp -r", so neither -p nor -P)

it seems shutil.copy2() is adding the -p (or -P if follow_symlinks=false)

There was a modification to test_shutil.py suggested as part of a patch.
I added that to verify the issue is still current.

±±±
diff --git a/Lib/test/test_shutil.py b/Lib/test/test_shutil.py
index 7e0a3292e0..7ceefd1ebc 100644
--- a/Lib/test/test_shutil.py
+++ b/Lib/test/test_shutil.py
@@ -1471,6 +1471,24 @@ class TestShutil(unittest.TestCase):
         rv = shutil.copytree(src_dir, dst_dir)
         self.assertEqual(['foo'], os.listdir(rv))

+    @unittest.skipUnless((os.name == "posix" and os.geteuid() != 0),
"Requires POSIX compatible OS and non-root userid")
+    def test_copy_remove_setuid(self):
+        src_dir = self.mkdtemp()
+        src_file = os.path.join(src_dir, 'foo')
+        write_file(src_file, 'foo')
+        dst_file = os.path.join(src_dir, 'bar')
+        harmful_mode = stat.S_IRUSR | stat.S_IXUSR | stat.S_ISUID
+        harmless_mode = stat.S_IRUSR | stat.S_IXUSR
+
+        # set mode and verify
+        os.chmod(src_file, harmful_mode)
+        mode = stat.S_IMODE(os.stat(src_file).st_mode)
+        self.assertTrue(oct(mode), oct(harmful_mode))
+
+        # check that copy does not preserve harmful bits
+        shutil.copy(src_file, dst_file)
+        mode = stat.S_IMODE(os.stat(dst_file).st_mode)
+        self.assertEqual(oct(mode), oct(harmless_mode))

 class TestWhich(unittest.TestCase):
±±±
The result is:
root@x066:[/data/prj/python/python3-3.8]./python -m test -v test_shutil
== CPython 3.8.0a0 (heads/master:cca4eec3c0, Aug 13 2018, 04:53:15) [C]
== AIX-1-00C291F54C00-powerpc-32bit big-endian
== cwd: /data/prj/python/python3-3.8/build/test_python_10944516
== CPU count: 8
== encodings: locale=ISO8859-1, FS=iso8859-1
Run tests sequentially
...
test_copy_remove_setuid (test.test_shutil.TestShutil) ... FAIL
...
======================================================================
FAIL: test_copy_remove_setuid (test.test_shutil.TestShutil)
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/data/prj/python/git/python3-3.8/Lib/test/test_shutil.py", line
1491, in test_copy_remove_setuid
    self.assertEqual(oct(mode), oct(harmless_mode))
AssertionError: '0o4500' != '0o500'
- 0o4500
?   -
+ 0o500

----------------------------------------------------------------------

On 8/15/2018 1:01 PM, Michael Felt wrote:
> Michael Felt <aixtools@felt.demon.nl> added the comment:
>
> I am looking at this.
msg323604 - (view) Author: Ronald Oussoren (ronaldoussoren) * (Python committer) Date: 2018-08-16 15:34
I don't understand this clarification:

> Clarification: while Mac/OS falls under "posix" in python terms - maybe
> "breakage" will need to be accepted,
> or, for "back-ports" Mac/OS will be "as if root or super-user" and use
> an additional (optional) argument in 3.8 and beyond
> to keep backwards compatibility.

AFAIK macOS should behave just like other posix-y platforms here.  In particular, I've verified that cp(1) behaves the same as on other platforms: the SUID bit is stripped when copying a setuid file.

Do you have a reason to assume that macOS is special here?


P.S. macOS is spelled macOS, not Mac/OS
msg323614 - (view) Author: Michael Felt (Michael.Felt) * Date: 2018-08-16 19:33
On 16/08/2018 17:34, Ronald Oussoren wrote:
> Ronald Oussoren <ronaldoussoren@mac.com> added the comment:
>
> I don't understand this clarification:
>
>> Clarification: while Mac/OS falls under "posix" in python terms - maybe
>> "breakage" will need to be accepted,
>> or, for "back-ports" Mac/OS will be "as if root or super-user" and use
>> an additional (optional) argument in 3.8 and beyond
>> to keep backwards compatibility.
> AFAIK macOS should behave just like other posix-y platforms here.  In particular, I've verified that cp(1) behaves the same as on other platforms: the SUID bit is stripped when copying a setuid file.
Glad to hear!
>
> Do you have a reason to assume that macOS is special here?
No reason to assume that macOS is different. "They" are all called
"posix" by python (Linux, macOS, AIX, FreeBSD, and I am sure there is
something else I have forgotten). So, I was trying to neither assume
that macOS is more "posix" or more "gnu". As the comments refer to gnu
coreutils behavior, not "posix" behavior (chmod --reference...) I am
looking for responses to be able to come up with better ideas for tests
we need - and then define/design code that meets the demands of the tests.

I was expecting or hoping macOS would behave as you describe but I was
also trying to prepare myself for a discussion of macOS user experience
being a discord.
>
>
> P.S. macOS is spelled macOS, not Mac/OS
Should be clear I am not a macOS user. Corrected!
History
Date User Action Args
2022-04-11 14:57:41adminsetgithub: 61382
2018-08-16 19:33:06Michael.Feltsetmessages: + msg323614
2018-08-16 15:34:25ronaldoussorensetnosy: + ronaldoussoren
messages: + msg323604
2018-08-16 09:07:50Michael.Feltsetfiles: + pEpkey.asc

messages: + msg323598
2018-08-15 11:02:01Michael.Feltsetmessages: + msg323562
2018-08-15 11:01:09Michael.Feltsetnosy: + Michael.Felt
messages: + msg323561
2018-08-13 12:53:46Jim.Jewettsetnosy: + Jim.Jewett
messages: + msg323482
2018-07-09 08:08:20giampaolo.rodolasetnosy: + giampaolo.rodola
2018-07-09 01:59:53larrysetmessages: + msg321298
2018-07-09 00:27:44terry.reedysetnosy: + terry.reedy

messages: + msg321296
versions: - Python 3.2, Python 3.3
2014-08-24 08:42:33serhiy.storchakasetnosy: + serhiy.storchaka

messages: + msg225803
versions: + Python 3.5
2013-06-19 14:43:59christian.heimessetfiles: + 17180_preserve_sbits2.patch

messages: + msg191482
2013-03-23 14:45:37benjamin.petersonsetpriority: release blocker -> critical

messages: + msg185057
2013-02-22 23:51:48Arfreversetnosy: + Arfrever
2013-02-22 19:29:42neologixsetnosy: + neologix
messages: + msg182690
2013-02-13 21:19:59pitrousetnosy: + pitrou
messages: + msg182062
2013-02-13 13:09:15hyneksetmessages: + msg182031
2013-02-13 13:04:01christian.heimessetfiles: + 17180_preserve_sbits.patch

messages: + msg182029
2013-02-13 12:07:01hyneksetmessages: + msg182025
2013-02-13 12:05:55christian.heimessetpriority: high -> release blocker

nosy: + larry, benjamin.peterson, georg.brandl
messages: + msg182024

stage: needs patch -> patch review
2013-02-13 12:00:47christian.heimessetfiles: + 17180.patch
keywords: + patch
2013-02-13 12:00:38christian.heimessetmessages: + msg182023
2013-02-13 11:49:27hyneksetmessages: + msg182022
2013-02-13 11:10:31christian.heimessetmessages: + msg182021
2013-02-13 10:59:26christian.heimessetmessages: + msg182020
stage: needs patch
2013-02-13 10:11:49pitrousetpriority: normal -> high
nosy: + christian.heimes, tarek, hynek

type: security
versions: + Python 3.3, Python 3.4, - Python 2.6, Python 3.1
2013-02-11 09:10:56milko.krachounovcreate