blob: 3786e276fdb23f527a3307b610aac57f50974226 [file] [log] [blame]
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001/*
Damien Miller95def091999-11-25 00:26:21 +11002 * Author: Tatu Ylonen <ylo@cs.hut.fi>
3 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
4 * All rights reserved
Damien Miller95def091999-11-25 00:26:21 +11005 * Code for uid-swapping.
Damien Millere4340be2000-09-16 13:29:08 +11006 *
7 * As far as I am concerned, the code I have written for this software
8 * can be used freely for any purpose. Any derived versions of this
9 * software must be clearly marked as such, and if the derived work is
10 * incompatible with the protocol description in the RFC file, it must be
11 * called by a name other than "ssh" or "Secure Shell".
Damien Miller95def091999-11-25 00:26:21 +110012 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100013
14#include "includes.h"
Ben Lindstromf52373f2001-04-08 18:38:04 +000015RCSID("$OpenBSD: uidswap.c,v 1.15 2001/04/08 11:24:33 markus Exp $");
Damien Millerd4a8b7e1999-10-27 13:42:43 +100016
Ben Lindstrom226cfa02001-01-22 05:34:40 +000017#include "log.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100018#include "uidswap.h"
19
Damien Miller95def091999-11-25 00:26:21 +110020/*
21 * Note: all these functions must work in all of the following cases:
22 * 1. euid=0, ruid=0
23 * 2. euid=0, ruid!=0
24 * 3. euid!=0, ruid!=0
25 * Additionally, they must work regardless of whether the system has
26 * POSIX saved uids or not.
27 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100028
Damien Millerd4a8b7e1999-10-27 13:42:43 +100029/* Lets assume that posix saved ids also work with seteuid, even though that
30 is not part of the posix specification. */
Ben Lindstrom3fcf1a22001-04-08 18:26:59 +000031
Damien Millerd4a8b7e1999-10-27 13:42:43 +100032/* Saved effective uid. */
Ben Lindstrom3fcf1a22001-04-08 18:26:59 +000033static int privileged = 0;
34static int temporarily_use_uid_effective = 0;
35static uid_t saved_euid = 0;
36static gid_t saved_egid;
37static gid_t saved_egroups[NGROUPS_MAX], user_groups[NGROUPS_MAX];
38static int saved_egroupslen = -1, user_groupslen = -1;
39
Damien Miller95def091999-11-25 00:26:21 +110040/*
41 * Temporarily changes to the given uid. If the effective user
42 * id is not root, this does nothing. This call cannot be nested.
43 */
Damien Miller4af51302000-04-16 11:18:38 +100044void
Ben Lindstrom3fcf1a22001-04-08 18:26:59 +000045temporarily_use_uid(struct passwd *pw)
Damien Millerd4a8b7e1999-10-27 13:42:43 +100046{
Ben Lindstrom3fcf1a22001-04-08 18:26:59 +000047 /* Save the current euid, and egroups. */
48 saved_euid = geteuid();
49 debug("temporarily_use_uid: %d/%d (e=%d)",
50 pw->pw_uid, pw->pw_gid, saved_euid);
51 if (saved_euid != 0) {
52 privileged = 0;
53 return;
54 }
55 privileged = 1;
56 temporarily_use_uid_effective = 1;
Ben Lindstromf52373f2001-04-08 18:38:04 +000057 saved_egid = getegid();
58 saved_egroupslen = getgroups(NGROUPS_MAX, saved_egroups);
Ben Lindstrom3fcf1a22001-04-08 18:26:59 +000059 if (saved_egroupslen < 0)
60 fatal("getgroups: %.100s", strerror(errno));
61
62 /* set and save the user's groups */
63 if (user_groupslen == -1) {
64 if (initgroups(pw->pw_name, pw->pw_gid) < 0)
65 fatal("initgroups: %s: %.100s", pw->pw_name,
66 strerror(errno));
67 user_groupslen = getgroups(NGROUPS_MAX, user_groups);
68 if (user_groupslen < 0)
69 fatal("getgroups: %.100s", strerror(errno));
70 }
71 /* Set the effective uid to the given (unprivileged) uid. */
Ben Lindstromf52373f2001-04-08 18:38:04 +000072 if (setgroups(user_groupslen, user_groups) < 0)
Ben Lindstrom3fcf1a22001-04-08 18:26:59 +000073 fatal("setgroups: %.100s", strerror(errno));
Ben Lindstromf52373f2001-04-08 18:38:04 +000074 pw->pw_gid = pw->pw_gid;
75 if (setegid(pw->pw_gid) < 0)
Ben Lindstrom3fcf1a22001-04-08 18:26:59 +000076 fatal("setegid %u: %.100s", (u_int) pw->pw_gid,
77 strerror(errno));
78 if (seteuid(pw->pw_uid) == -1)
79 fatal("seteuid %u: %.100s", (u_int) pw->pw_uid,
80 strerror(errno));
Damien Millerd4a8b7e1999-10-27 13:42:43 +100081}
Ben Lindstrom3fcf1a22001-04-08 18:26:59 +000082
Damien Miller95def091999-11-25 00:26:21 +110083/*
84 * Restores to the original uid.
85 */
Damien Miller4af51302000-04-16 11:18:38 +100086void
Ben Lindstrom46c16222000-12-22 01:43:59 +000087restore_uid(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +100088{
Ben Lindstrom3fcf1a22001-04-08 18:26:59 +000089 debug("restore_uid");
90 /* it's a no-op unless privileged */
91 if (!privileged)
92 return;
93 if (!temporarily_use_uid_effective)
94 fatal("restore_uid: temporarily_use_uid not effective");
Damien Miller95def091999-11-25 00:26:21 +110095 /* Set the effective uid back to the saved uid. */
96 if (seteuid(saved_euid) < 0)
Ben Lindstrom3fcf1a22001-04-08 18:26:59 +000097 fatal("seteuid %u: %.100s", (u_int) saved_euid, strerror(errno));
Ben Lindstromf52373f2001-04-08 18:38:04 +000098 if (setgroups(saved_egroupslen, saved_egroups) < 0)
Ben Lindstrom3fcf1a22001-04-08 18:26:59 +000099 fatal("setgroups: %.100s", strerror(errno));
Ben Lindstromf52373f2001-04-08 18:38:04 +0000100 if (setegid(saved_egid) < 0)
Ben Lindstrom3fcf1a22001-04-08 18:26:59 +0000101 fatal("setegid %u: %.100s", (u_int) saved_egid, strerror(errno));
102 temporarily_use_uid_effective = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000103}
104
Damien Miller95def091999-11-25 00:26:21 +1100105/*
106 * Permanently sets all uids to the given uid. This cannot be
107 * called while temporarily_use_uid is effective.
108 */
Damien Miller4af51302000-04-16 11:18:38 +1000109void
Ben Lindstrom3fcf1a22001-04-08 18:26:59 +0000110permanently_set_uid(struct passwd *pw)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000111{
Ben Lindstrom3fcf1a22001-04-08 18:26:59 +0000112 if (temporarily_use_uid_effective)
113 fatal("restore_uid: temporarily_use_uid effective");
114 if (setuid(pw->pw_uid) < 0)
115 fatal("setuid %u: %.100s", (u_int) pw->pw_uid, strerror(errno));
116 if (setgid(pw->pw_gid) < 0)
117 fatal("setgid %u: %.100s", (u_int) pw->pw_gid, strerror(errno));
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000118}