]> git.saurik.com Git - apt.git/commitdiff
DropPrivs: Move the re-set uid/gid thing to the end of the function
authorJulian Andres Klode <jak@debian.org>
Wed, 24 Sep 2014 19:53:45 +0000 (21:53 +0200)
committerJulian Andres Klode <jak@debian.org>
Wed, 24 Sep 2014 19:53:45 +0000 (21:53 +0200)
Git-Dch: ignore

apt-pkg/contrib/fileutl.cc

index 7ccaaa03faa813831cef4947156978a5d80c1dc4..6b54c81f9b6c0a5e87f0c41a16890d62d90a8087 100644 (file)
@@ -2213,13 +2213,6 @@ bool DropPrivs()
    if (seteuid(pw->pw_uid) != 0)
       return _error->Errno("seteuid", "Failed to seteuid");
 
-   // Check that uid and gid changes do not work anymore
-   if (pw->pw_gid != old_gid && (setgid(old_gid) != -1 || setegid(old_gid) != -1))
-      return _error->Error("Could restore a gid to root, privilege dropping did not work");
-
-   if (pw->pw_uid != old_uid && (setuid(old_uid) != -1 || seteuid(old_uid) != -1))
-      return _error->Error("Could restore a uid to root, privilege dropping did not work");
-
    // Verify that the user has only a single group, and the correct one
    gid_t groups[1];
    if (getgroups(1, groups) != 1)
@@ -2257,5 +2250,12 @@ bool DropPrivs()
       return _error->Error("Could not switch saved set-group-ID");
 #endif
 
+   // Check that uid and gid changes do not work anymore
+   if (pw->pw_gid != old_gid && (setgid(old_gid) != -1 || setegid(old_gid) != -1))
+      return _error->Error("Could restore a gid to root, privilege dropping did not work");
+
+   if (pw->pw_uid != old_uid && (setuid(old_uid) != -1 || seteuid(old_uid) != -1))
+      return _error->Error("Could restore a uid to root, privilege dropping did not work");
+
    return true;
 }