]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Merged revisions 78548 via svnmerge from
authorGregory P. Smith <greg@mad-scientist.com>
Mon, 1 Mar 2010 05:56:53 +0000 (05:56 +0000)
committerGregory P. Smith <greg@mad-scientist.com>
Mon, 1 Mar 2010 05:56:53 +0000 (05:56 +0000)
svn+ssh://pythondev@svn.python.org/python/branches/py3k

................
  r78548 | gregory.p.smith | 2010-02-28 21:54:14 -0800 (Sun, 28 Feb 2010) | 10 lines

  Merged revisions 78546 via svnmerge from
  svn+ssh://pythondev@svn.python.org/python/trunk

  ........
    r78546 | gregory.p.smith | 2010-02-28 21:43:43 -0800 (Sun, 28 Feb 2010) | 3 lines

    Fixes issue #7999: os.setreuid() and os.setregid() would refuse to accept
    a -1 parameter on some platforms such as OS X.
  ........
................

Lib/test/test_os.py
Misc/NEWS
Modules/posixmodule.c

index d7f763f8da14c4c711b65757a31e3298f5ffcc8c..2d95f6224ddeeb3af5635dce6406477c3575db33 100644 (file)
@@ -717,6 +717,7 @@ if sys.platform != 'win32':
                     self.assertRaises(os.error, os.setreuid, 0, 0)
                 self.assertRaises(OverflowError, os.setreuid, 1<<32, 0)
                 self.assertRaises(OverflowError, os.setreuid, 0, 1<<32)
+                os.setreuid(-1, -1)  # Does nothing, but it needs to accept -1
 
         if hasattr(os, 'setregid'):
             def test_setregid(self):
@@ -724,6 +725,7 @@ if sys.platform != 'win32':
                     self.assertRaises(os.error, os.setregid, 0, 0)
                 self.assertRaises(OverflowError, os.setregid, 1<<32, 0)
                 self.assertRaises(OverflowError, os.setregid, 0, 1<<32)
+                os.setregid(-1, -1)  # Does nothing, but it needs to accept -1
 
     @unittest.skipIf(sys.platform == 'darwin', "tests don't apply to OS X")
     class Pep383Tests(unittest.TestCase):
index e30945a14db3f7e36a61b0500f84c2676b93d8e3..55700b726a3a80f52a5894e5f3555c81c695adff 100644 (file)
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -351,6 +351,9 @@ Extension Modules
 - Expat: Fix DoS via XML document with malformed UTF-8 sequences
   (CVE_2009_3560).
 
+- Issue #7999: os.setreuid() and os.setregid() would refuse to accept a -1
+  parameter on some platforms such as OS X.
+
 Tests
 -----
 
index 814c9bad1b5bbc088f73e9f004fd61eede23b585..502bf62a27de22a148b0801e64969a3fda5ef524 100644 (file)
@@ -4370,9 +4370,16 @@ posix_setreuid (PyObject *self, PyObject *args)
        uid_t ruid, euid;
        if (!PyArg_ParseTuple(args, "ll", &ruid_arg, &euid_arg))
                return NULL;
-       ruid = ruid_arg;
-       euid = euid_arg;
-       if (euid != euid_arg || ruid != ruid_arg) {
+       if (ruid_arg == -1)
+               ruid = (uid_t)-1;  /* let the compiler choose how -1 fits */
+       else
+               ruid = ruid_arg;  /* otherwise, assign from our long */
+       if (euid_arg == -1)
+               euid = (uid_t)-1;
+       else
+               euid = euid_arg;
+       if ((euid_arg != -1 && euid != euid_arg) || 
+           (ruid_arg != -1 && ruid != ruid_arg)) {
                PyErr_SetString(PyExc_OverflowError, "user id too big");
                return NULL;
        }
@@ -4397,9 +4404,16 @@ posix_setregid (PyObject *self, PyObject *args)
        gid_t rgid, egid;
        if (!PyArg_ParseTuple(args, "ll", &rgid_arg, &egid_arg))
                return NULL;
-       rgid = rgid_arg;
-       egid = egid_arg;
-       if (egid != egid_arg || rgid != rgid_arg) {
+       if (rgid_arg == -1)
+               rgid = (gid_t)-1;  /* let the compiler choose how -1 fits */
+       else
+               rgid = rgid_arg;  /* otherwise, assign from our long */
+       if (egid_arg == -1)
+               egid = (gid_t)-1;
+       else
+               egid = egid_arg;
+       if ((egid_arg != -1 && egid != egid_arg) || 
+           (rgid_arg != -1 && rgid != rgid_arg)) {
                PyErr_SetString(PyExc_OverflowError, "group id too big");
                return NULL;
        }