summaryrefslogtreecommitdiff
path: root/debian/patches-applied/hurd_no_setfsuid
diff options
context:
space:
mode:
authorKees Cook <kees@debian.org>2011-10-13 12:56:51 -0700
committerSteve Langasek <vorlon@debian.org>2019-01-08 22:11:47 -0800
commit17c73d8089c6ab8e83684551c35f71ca9f65afcb (patch)
tree2cdf7af72c3e42038a70b82d7c0d79805e496c9a /debian/patches-applied/hurd_no_setfsuid
parent4c8f5ad6ee34b2f65e0a52a59a15af2ddef8b250 (diff)
debian/patches-applied/hurd_no_setfsuid: check all set*id() calls.
Diffstat (limited to 'debian/patches-applied/hurd_no_setfsuid')
-rw-r--r--debian/patches-applied/hurd_no_setfsuid36
1 files changed, 22 insertions, 14 deletions
diff --git a/debian/patches-applied/hurd_no_setfsuid b/debian/patches-applied/hurd_no_setfsuid
index b5e37c0a..8a27b296 100644
--- a/debian/patches-applied/hurd_no_setfsuid
+++ b/debian/patches-applied/hurd_no_setfsuid
@@ -5,10 +5,10 @@ Authors: Steve Langasek <vorlon@debian.org>
Upstream status: to be forwarded, now that pam_modutil_{drop,regain}_priv
are implemented
-Index: pam.deb/libpam/pam_modutil_priv.c
+Index: pam-debian/libpam/pam_modutil_priv.c
===================================================================
---- pam.deb.orig/libpam/pam_modutil_priv.c
-+++ pam.deb/libpam/pam_modutil_priv.c
+--- pam-debian.orig/libpam/pam_modutil_priv.c 2011-10-10 16:21:57.858599186 -0700
++++ pam-debian/libpam/pam_modutil_priv.c 2011-10-10 17:31:02.805686298 -0700
@@ -14,7 +14,9 @@
#include <syslog.h>
#include <pwd.h>
@@ -19,7 +19,7 @@ Index: pam.deb/libpam/pam_modutil_priv.c
/*
* Two setfsuid() calls in a row are necessary to check
-@@ -22,17 +24,53 @@
+@@ -22,17 +24,61 @@
*/
static int change_uid(uid_t uid, uid_t *save)
{
@@ -34,12 +34,16 @@ Index: pam.deb/libpam/pam_modutil_priv.c
+ if (save)
+ *save = ruid;
+ if (ruid == uid && uid != 0)
-+ setreuid(euid, uid);
++ if (setreuid(euid, uid))
++ return -1;
+ else {
-+ setreuid(0, -1);
-+ if (setreuid(-1, uid) == -1) {
-+ setreuid(-1, 0);
-+ setreuid(0, -1);
++ if (setreuid(0, -1))
++ return -1;
++ if (setreuid(-1, uid)) {
++ if (setreuid(-1, 0))
++ return -1;
++ if (setreuid(0, -1))
++ return -1;
+ if (setreuid(-1, uid))
+ return -1;
+ }
@@ -59,12 +63,16 @@ Index: pam.deb/libpam/pam_modutil_priv.c
+ if (save)
+ *save = rgid;
+ if (rgid == gid)
-+ setregid(egid, gid);
++ if (setregid(egid, gid))
++ return -1;
+ else {
-+ setregid(0, -1);
-+ if (setregid(-1, gid) == -1) {
-+ setregid(-1, 0);
-+ setregid(0, -1);
++ if (setregid(0, -1))
++ return -1;
++ if (setregid(-1, gid)) {
++ if (setregid(-1, 0))
++ return -1;
++ if (setregid(0, -1))
++ return -1;
+ if (setregid(-1, gid))
+ return -1;
+ }