blob: 32441828d85870f2adb3314cc9ce10be27e2cfbc [file] [log] [blame]
Damien Miller2e5fe882006-06-13 13:10:00 +10001/* $OpenBSD: uidswap.c,v 1.29 2006/06/08 14:45:49 markus Exp $ */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002/*
Damien Miller95def091999-11-25 00:26:21 +11003 * Author: Tatu Ylonen <ylo@cs.hut.fi>
4 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
5 * All rights reserved
Damien Miller95def091999-11-25 00:26:21 +11006 * Code for uid-swapping.
Damien Millere4340be2000-09-16 13:29:08 +11007 *
8 * As far as I am concerned, the code I have written for this software
9 * can be used freely for any purpose. Any derived versions of this
10 * software must be clearly marked as such, and if the derived work is
11 * incompatible with the protocol description in the RFC file, it must be
12 * called by a name other than "ssh" or "Secure Shell".
Damien Miller95def091999-11-25 00:26:21 +110013 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100014
15#include "includes.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100016
Damien Miller427a1d52006-07-10 20:20:33 +100017#include <grp.h>
18
Ben Lindstrom226cfa02001-01-22 05:34:40 +000019#include "log.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100020#include "uidswap.h"
Damien Millera811d9a2004-02-24 13:05:11 +110021#include "xmalloc.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100022
Damien Miller95def091999-11-25 00:26:21 +110023/*
24 * Note: all these functions must work in all of the following cases:
25 * 1. euid=0, ruid=0
26 * 2. euid=0, ruid!=0
27 * 3. euid!=0, ruid!=0
28 * Additionally, they must work regardless of whether the system has
29 * POSIX saved uids or not.
30 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100031
Ben Lindstrom4468b262001-04-26 23:03:37 +000032#if defined(_POSIX_SAVED_IDS) && !defined(BROKEN_SAVED_UIDS)
Damien Millerd4a8b7e1999-10-27 13:42:43 +100033/* Lets assume that posix saved ids also work with seteuid, even though that
34 is not part of the posix specification. */
Ben Lindstrom4468b262001-04-26 23:03:37 +000035#define SAVED_IDS_WORK_WITH_SETEUID
36/* Saved effective uid. */
37static uid_t saved_euid = 0;
38static gid_t saved_egid = 0;
39#endif
Ben Lindstrom768f9752001-04-25 06:27:11 +000040
Damien Millerd4a8b7e1999-10-27 13:42:43 +100041/* Saved effective uid. */
Ben Lindstrom3fcf1a22001-04-08 18:26:59 +000042static int privileged = 0;
43static int temporarily_use_uid_effective = 0;
Damien Millera811d9a2004-02-24 13:05:11 +110044static gid_t *saved_egroups = NULL, *user_groups = NULL;
Ben Lindstrom3fcf1a22001-04-08 18:26:59 +000045static int saved_egroupslen = -1, user_groupslen = -1;
Ben Lindstrom768f9752001-04-25 06:27:11 +000046
Damien Miller95def091999-11-25 00:26:21 +110047/*
48 * Temporarily changes to the given uid. If the effective user
49 * id is not root, this does nothing. This call cannot be nested.
50 */
Damien Miller4af51302000-04-16 11:18:38 +100051void
Ben Lindstrom3fcf1a22001-04-08 18:26:59 +000052temporarily_use_uid(struct passwd *pw)
Damien Millerd4a8b7e1999-10-27 13:42:43 +100053{
Ben Lindstrom768f9752001-04-25 06:27:11 +000054 /* Save the current euid, and egroups. */
Ben Lindstrom4468b262001-04-26 23:03:37 +000055#ifdef SAVED_IDS_WORK_WITH_SETEUID
Ben Lindstrom768f9752001-04-25 06:27:11 +000056 saved_euid = geteuid();
Ben Lindstrom4468b262001-04-26 23:03:37 +000057 saved_egid = getegid();
Ben Lindstrom1fa330c2002-07-23 21:29:49 +000058 debug("temporarily_use_uid: %u/%u (e=%u/%u)",
59 (u_int)pw->pw_uid, (u_int)pw->pw_gid,
60 (u_int)saved_euid, (u_int)saved_egid);
Darren Tucker2ea9b182005-02-22 17:57:13 +110061#ifndef HAVE_CYGWIN
Ben Lindstrom768f9752001-04-25 06:27:11 +000062 if (saved_euid != 0) {
63 privileged = 0;
64 return;
65 }
Darren Tucker2ea9b182005-02-22 17:57:13 +110066#endif
Ben Lindstrom4468b262001-04-26 23:03:37 +000067#else
68 if (geteuid() != 0) {
69 privileged = 0;
70 return;
71 }
72#endif /* SAVED_IDS_WORK_WITH_SETEUID */
73
Ben Lindstrom768f9752001-04-25 06:27:11 +000074 privileged = 1;
75 temporarily_use_uid_effective = 1;
Damien Millera811d9a2004-02-24 13:05:11 +110076
77 saved_egroupslen = getgroups(0, NULL);
Ben Lindstrom768f9752001-04-25 06:27:11 +000078 if (saved_egroupslen < 0)
79 fatal("getgroups: %.100s", strerror(errno));
Damien Millera811d9a2004-02-24 13:05:11 +110080 if (saved_egroupslen > 0) {
81 saved_egroups = xrealloc(saved_egroups,
Damien Miller36812092006-03-26 14:22:47 +110082 saved_egroupslen, sizeof(gid_t));
Damien Millera811d9a2004-02-24 13:05:11 +110083 if (getgroups(saved_egroupslen, saved_egroups) < 0)
84 fatal("getgroups: %.100s", strerror(errno));
85 } else { /* saved_egroupslen == 0 */
Darren Tucker2359aa92004-02-24 13:17:30 +110086 if (saved_egroups != NULL)
Damien Millera811d9a2004-02-24 13:05:11 +110087 xfree(saved_egroups);
88 }
Ben Lindstrom768f9752001-04-25 06:27:11 +000089
90 /* set and save the user's groups */
91 if (user_groupslen == -1) {
92 if (initgroups(pw->pw_name, pw->pw_gid) < 0)
93 fatal("initgroups: %s: %.100s", pw->pw_name,
94 strerror(errno));
Damien Millera811d9a2004-02-24 13:05:11 +110095
96 user_groupslen = getgroups(0, NULL);
Ben Lindstrom768f9752001-04-25 06:27:11 +000097 if (user_groupslen < 0)
98 fatal("getgroups: %.100s", strerror(errno));
Damien Millera811d9a2004-02-24 13:05:11 +110099 if (user_groupslen > 0) {
100 user_groups = xrealloc(user_groups,
Damien Miller36812092006-03-26 14:22:47 +1100101 user_groupslen, sizeof(gid_t));
Damien Millera811d9a2004-02-24 13:05:11 +1100102 if (getgroups(user_groupslen, user_groups) < 0)
103 fatal("getgroups: %.100s", strerror(errno));
104 } else { /* user_groupslen == 0 */
105 if (user_groups)
106 xfree(user_groups);
107 }
Ben Lindstrom768f9752001-04-25 06:27:11 +0000108 }
109 /* Set the effective uid to the given (unprivileged) uid. */
Ben Lindstromf52373f2001-04-08 18:38:04 +0000110 if (setgroups(user_groupslen, user_groups) < 0)
Ben Lindstrom3fcf1a22001-04-08 18:26:59 +0000111 fatal("setgroups: %.100s", strerror(errno));
Ben Lindstrom4468b262001-04-26 23:03:37 +0000112#ifndef SAVED_IDS_WORK_WITH_SETEUID
113 /* Propagate the privileged gid to all of our gids. */
114 if (setgid(getegid()) < 0)
115 debug("setgid %u: %.100s", (u_int) getegid(), strerror(errno));
116 /* Propagate the privileged uid to all of our uids. */
117 if (setuid(geteuid()) < 0)
118 debug("setuid %u: %.100s", (u_int) geteuid(), strerror(errno));
119#endif /* SAVED_IDS_WORK_WITH_SETEUID */
Ben Lindstromf52373f2001-04-08 18:38:04 +0000120 if (setegid(pw->pw_gid) < 0)
Ben Lindstromabff1dd2002-06-06 20:38:49 +0000121 fatal("setegid %u: %.100s", (u_int)pw->pw_gid,
Ben Lindstrom768f9752001-04-25 06:27:11 +0000122 strerror(errno));
123 if (seteuid(pw->pw_uid) == -1)
Ben Lindstromabff1dd2002-06-06 20:38:49 +0000124 fatal("seteuid %u: %.100s", (u_int)pw->pw_uid,
Ben Lindstrom768f9752001-04-25 06:27:11 +0000125 strerror(errno));
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000126}
Ben Lindstrom768f9752001-04-25 06:27:11 +0000127
Damien Miller2e5fe882006-06-13 13:10:00 +1000128void
129permanently_drop_suid(uid_t uid)
130{
131 uid_t old_uid = getuid();
132
133 debug("permanently_drop_suid: %u", (u_int)uid);
134#if defined(HAVE_SETRESUID) && !defined(BROKEN_SETRESUID)
135 if (setresuid(uid, uid, uid) < 0)
136 fatal("setresuid %u: %.100s", (u_int)uid, strerror(errno));
137#elif defined(HAVE_SETREUID) && !defined(BROKEN_SETREUID)
138 if (setreuid(uid, uid) < 0)
139 fatal("setreuid %u: %.100s", (u_int)uid, strerror(errno));
140#else
141# ifndef SETEUID_BREAKS_SETUID
142 if (seteuid(uid) < 0)
143 fatal("seteuid %u: %.100s", (u_int)uid, strerror(errno));
144# endif
145 if (setuid(uid) < 0)
146 fatal("setuid %u: %.100s", (u_int)uid, strerror(errno));
147#endif
148
149#ifndef HAVE_CYGWIN
150 /* Try restoration of UID if changed (test clearing of saved uid) */
151 if (old_uid != uid &&
152 (setuid(old_uid) != -1 || seteuid(old_uid) != -1))
153 fatal("%s: was able to restore old [e]uid", __func__);
154#endif
155
156 /* Verify UID drop was successful */
157 if (getuid() != uid || geteuid() != uid) {
158 fatal("%s: euid incorrect uid:%u euid:%u (should be %u)",
159 __func__, (u_int)getuid(), (u_int)geteuid(), (u_int)uid);
160 }
161}
162
Damien Miller95def091999-11-25 00:26:21 +1100163/*
Ben Lindstromee2786a2001-04-22 17:08:00 +0000164 * Restores to the original (privileged) uid.
Damien Miller95def091999-11-25 00:26:21 +1100165 */
Damien Miller4af51302000-04-16 11:18:38 +1000166void
Ben Lindstrom46c16222000-12-22 01:43:59 +0000167restore_uid(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000168{
Ben Lindstrom3fcf1a22001-04-08 18:26:59 +0000169 /* it's a no-op unless privileged */
Ben Lindstrom1fa330c2002-07-23 21:29:49 +0000170 if (!privileged) {
171 debug("restore_uid: (unprivileged)");
Ben Lindstrom3fcf1a22001-04-08 18:26:59 +0000172 return;
Ben Lindstrom1fa330c2002-07-23 21:29:49 +0000173 }
Ben Lindstrom3fcf1a22001-04-08 18:26:59 +0000174 if (!temporarily_use_uid_effective)
175 fatal("restore_uid: temporarily_use_uid not effective");
Ben Lindstrom4468b262001-04-26 23:03:37 +0000176
177#ifdef SAVED_IDS_WORK_WITH_SETEUID
Ben Lindstrom18d2b5d2002-07-30 19:32:07 +0000178 debug("restore_uid: %u/%u", (u_int)saved_euid, (u_int)saved_egid);
Ben Lindstromee2786a2001-04-22 17:08:00 +0000179 /* Set the effective uid back to the saved privileged uid. */
Damien Miller95def091999-11-25 00:26:21 +1100180 if (seteuid(saved_euid) < 0)
Ben Lindstromabff1dd2002-06-06 20:38:49 +0000181 fatal("seteuid %u: %.100s", (u_int)saved_euid, strerror(errno));
Ben Lindstrom4468b262001-04-26 23:03:37 +0000182 if (setegid(saved_egid) < 0)
Ben Lindstromabff1dd2002-06-06 20:38:49 +0000183 fatal("setegid %u: %.100s", (u_int)saved_egid, strerror(errno));
Ben Lindstrom4468b262001-04-26 23:03:37 +0000184#else /* SAVED_IDS_WORK_WITH_SETEUID */
185 /*
186 * We are unable to restore the real uid to its unprivileged value.
187 * Propagate the real uid (usually more privileged) to effective uid
188 * as well.
189 */
190 setuid(getuid());
191 setgid(getgid());
192#endif /* SAVED_IDS_WORK_WITH_SETEUID */
193
Ben Lindstromf52373f2001-04-08 18:38:04 +0000194 if (setgroups(saved_egroupslen, saved_egroups) < 0)
Ben Lindstrom3fcf1a22001-04-08 18:26:59 +0000195 fatal("setgroups: %.100s", strerror(errno));
Ben Lindstrom3fcf1a22001-04-08 18:26:59 +0000196 temporarily_use_uid_effective = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000197}
198
Damien Miller95def091999-11-25 00:26:21 +1100199/*
200 * Permanently sets all uids to the given uid. This cannot be
201 * called while temporarily_use_uid is effective.
202 */
Damien Miller4af51302000-04-16 11:18:38 +1000203void
Ben Lindstrom3fcf1a22001-04-08 18:26:59 +0000204permanently_set_uid(struct passwd *pw)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000205{
Damien Miller5fe46a42003-06-05 09:53:31 +1000206 uid_t old_uid = getuid();
207 gid_t old_gid = getgid();
208
Damien Miller6b4069a2006-06-13 13:05:15 +1000209 if (pw == NULL)
210 fatal("permanently_set_uid: no user given");
Ben Lindstrom3fcf1a22001-04-08 18:26:59 +0000211 if (temporarily_use_uid_effective)
Ben Lindstromca8943e2002-06-06 20:42:04 +0000212 fatal("permanently_set_uid: temporarily_use_uid effective");
Ben Lindstrom1fa330c2002-07-23 21:29:49 +0000213 debug("permanently_set_uid: %u/%u", (u_int)pw->pw_uid,
214 (u_int)pw->pw_gid);
Damien Miller5fe46a42003-06-05 09:53:31 +1000215
Darren Tuckere937be32003-12-17 18:53:26 +1100216#if defined(HAVE_SETRESGID) && !defined(BROKEN_SETRESGID)
Damien Miller5fe46a42003-06-05 09:53:31 +1000217 if (setresgid(pw->pw_gid, pw->pw_gid, pw->pw_gid) < 0)
218 fatal("setresgid %u: %.100s", (u_int)pw->pw_gid, strerror(errno));
Darren Tucker9f18be62003-09-06 16:44:39 +1000219#elif defined(HAVE_SETREGID) && !defined(BROKEN_SETREGID)
Damien Miller5fe46a42003-06-05 09:53:31 +1000220 if (setregid(pw->pw_gid, pw->pw_gid) < 0)
221 fatal("setregid %u: %.100s", (u_int)pw->pw_gid, strerror(errno));
222#else
Damien Miller61d36802003-06-02 19:09:48 +1000223 if (setegid(pw->pw_gid) < 0)
224 fatal("setegid %u: %.100s", (u_int)pw->pw_gid, strerror(errno));
Ben Lindstrom3fcf1a22001-04-08 18:26:59 +0000225 if (setgid(pw->pw_gid) < 0)
Ben Lindstromabff1dd2002-06-06 20:38:49 +0000226 fatal("setgid %u: %.100s", (u_int)pw->pw_gid, strerror(errno));
Damien Miller5fe46a42003-06-05 09:53:31 +1000227#endif
228
Darren Tuckere937be32003-12-17 18:53:26 +1100229#if defined(HAVE_SETRESUID) && !defined(BROKEN_SETRESUID)
Damien Miller5fe46a42003-06-05 09:53:31 +1000230 if (setresuid(pw->pw_uid, pw->pw_uid, pw->pw_uid) < 0)
231 fatal("setresuid %u: %.100s", (u_int)pw->pw_uid, strerror(errno));
Darren Tucker9f18be62003-09-06 16:44:39 +1000232#elif defined(HAVE_SETREUID) && !defined(BROKEN_SETREUID)
Darren Tucker400b8782003-06-06 10:46:04 +1000233 if (setreuid(pw->pw_uid, pw->pw_uid) < 0)
234 fatal("setreuid %u: %.100s", (u_int)pw->pw_uid, strerror(errno));
Damien Miller5fe46a42003-06-05 09:53:31 +1000235#else
236# ifndef SETEUID_BREAKS_SETUID
Damien Miller61d36802003-06-02 19:09:48 +1000237 if (seteuid(pw->pw_uid) < 0)
238 fatal("seteuid %u: %.100s", (u_int)pw->pw_uid, strerror(errno));
Damien Miller5fe46a42003-06-05 09:53:31 +1000239# endif
Ben Lindstromee2786a2001-04-22 17:08:00 +0000240 if (setuid(pw->pw_uid) < 0)
Ben Lindstromabff1dd2002-06-06 20:38:49 +0000241 fatal("setuid %u: %.100s", (u_int)pw->pw_uid, strerror(errno));
Damien Miller5fe46a42003-06-05 09:53:31 +1000242#endif
243
Darren Tucker35beadd2004-10-19 16:33:33 +1000244#ifndef HAVE_CYGWIN
Damien Miller5fe46a42003-06-05 09:53:31 +1000245 /* Try restoration of GID if changed (test clearing of saved gid) */
Darren Tucker35beadd2004-10-19 16:33:33 +1000246 if (old_gid != pw->pw_gid && pw->pw_uid != 0 &&
Damien Miller5fe46a42003-06-05 09:53:31 +1000247 (setgid(old_gid) != -1 || setegid(old_gid) != -1))
Darren Tucker400b8782003-06-06 10:46:04 +1000248 fatal("%s: was able to restore old [e]gid", __func__);
Darren Tucker35beadd2004-10-19 16:33:33 +1000249#endif
Damien Miller5fe46a42003-06-05 09:53:31 +1000250
251 /* Verify GID drop was successful */
252 if (getgid() != pw->pw_gid || getegid() != pw->pw_gid) {
Damien Millera8e06ce2003-11-21 23:48:55 +1100253 fatal("%s: egid incorrect gid:%u egid:%u (should be %u)",
254 __func__, (u_int)getgid(), (u_int)getegid(),
Damien Miller5fe46a42003-06-05 09:53:31 +1000255 (u_int)pw->pw_gid);
256 }
257
Darren Tuckerfbe3b362003-09-22 12:54:37 +1000258#ifndef HAVE_CYGWIN
Damien Miller5fe46a42003-06-05 09:53:31 +1000259 /* Try restoration of UID if changed (test clearing of saved uid) */
Damien Millera8e06ce2003-11-21 23:48:55 +1100260 if (old_uid != pw->pw_uid &&
Damien Miller5fe46a42003-06-05 09:53:31 +1000261 (setuid(old_uid) != -1 || seteuid(old_uid) != -1))
Darren Tucker400b8782003-06-06 10:46:04 +1000262 fatal("%s: was able to restore old [e]uid", __func__);
Darren Tuckerfbe3b362003-09-22 12:54:37 +1000263#endif
Damien Miller5fe46a42003-06-05 09:53:31 +1000264
265 /* Verify UID drop was successful */
266 if (getuid() != pw->pw_uid || geteuid() != pw->pw_uid) {
Damien Millera8e06ce2003-11-21 23:48:55 +1100267 fatal("%s: euid incorrect uid:%u euid:%u (should be %u)",
268 __func__, (u_int)getuid(), (u_int)geteuid(),
Damien Miller5fe46a42003-06-05 09:53:31 +1000269 (u_int)pw->pw_uid);
270 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000271}