1 /* 2 * Author: Tatu Ylonen <ylo@cs.hut.fi> 3 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland 4 * All rights reserved 5 * Code for uid-swapping. 6 * 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". 12 */ 13 14 #include "includes.h" 15 RCSID("$OpenBSD: uidswap.c,v 1.24 2003/05/29 16:58:45 deraadt Exp $"); 16 17 #include "log.h" 18 #include "uidswap.h" 19 20 /* 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 */ 28 29 /* Lets assume that posix saved ids also work with seteuid, even though that 30 is not part of the posix specification. */ 31 32 /* Saved effective uid. */ 33 static int privileged = 0; 34 static int temporarily_use_uid_effective = 0; 35 static uid_t saved_euid = 0; 36 static gid_t saved_egid; 37 static gid_t saved_egroups[NGROUPS_MAX], user_groups[NGROUPS_MAX]; 38 static int saved_egroupslen = -1, user_groupslen = -1; 39 40 /* 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 */ 44 void 45 temporarily_use_uid(struct passwd *pw) 46 { 47 /* Save the current euid, and egroups. */ 48 saved_euid = geteuid(); 49 saved_egid = getegid(); 50 debug("temporarily_use_uid: %u/%u (e=%u/%u)", 51 (u_int)pw->pw_uid, (u_int)pw->pw_gid, 52 (u_int)saved_euid, (u_int)saved_egid); 53 if (saved_euid != 0) { 54 privileged = 0; 55 return; 56 } 57 privileged = 1; 58 temporarily_use_uid_effective = 1; 59 saved_egroupslen = getgroups(NGROUPS_MAX, saved_egroups); 60 if (saved_egroupslen < 0) 61 fatal("getgroups: %.100s", strerror(errno)); 62 63 /* set and save the user's groups */ 64 if (user_groupslen == -1) { 65 if (initgroups(pw->pw_name, pw->pw_gid) < 0) 66 fatal("initgroups: %s: %.100s", pw->pw_name, 67 strerror(errno)); 68 user_groupslen = getgroups(NGROUPS_MAX, user_groups); 69 if (user_groupslen < 0) 70 fatal("getgroups: %.100s", strerror(errno)); 71 } 72 /* Set the effective uid to the given (unprivileged) uid. */ 73 if (setgroups(user_groupslen, user_groups) < 0) 74 fatal("setgroups: %.100s", strerror(errno)); 75 if (setegid(pw->pw_gid) < 0) 76 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)); 81 } 82 83 /* 84 * Restores to the original (privileged) uid. 85 */ 86 void 87 restore_uid(void) 88 { 89 /* it's a no-op unless privileged */ 90 if (!privileged) { 91 debug("restore_uid: (unprivileged)"); 92 return; 93 } 94 if (!temporarily_use_uid_effective) 95 fatal("restore_uid: temporarily_use_uid not effective"); 96 debug("restore_uid: %u/%u", (u_int)saved_euid, (u_int)saved_egid); 97 /* Set the effective uid back to the saved privileged uid. */ 98 if (seteuid(saved_euid) < 0) 99 fatal("seteuid %u: %.100s", (u_int)saved_euid, strerror(errno)); 100 if (setgroups(saved_egroupslen, saved_egroups) < 0) 101 fatal("setgroups: %.100s", strerror(errno)); 102 if (setegid(saved_egid) < 0) 103 fatal("setegid %u: %.100s", (u_int)saved_egid, strerror(errno)); 104 temporarily_use_uid_effective = 0; 105 } 106 107 /* 108 * Permanently sets all uids to the given uid. This cannot be 109 * called while temporarily_use_uid is effective. 110 */ 111 void 112 permanently_set_uid(struct passwd *pw) 113 { 114 if (temporarily_use_uid_effective) 115 fatal("permanently_set_uid: temporarily_use_uid effective"); 116 debug("permanently_set_uid: %u/%u", (u_int)pw->pw_uid, 117 (u_int)pw->pw_gid); 118 if (setegid(pw->pw_gid) < 0) 119 fatal("setegid %u: %.100s", (u_int)pw->pw_gid, strerror(errno)); 120 if (setgid(pw->pw_gid) < 0) 121 fatal("setgid %u: %.100s", (u_int)pw->pw_gid, strerror(errno)); 122 if (seteuid(pw->pw_uid) < 0) 123 fatal("seteuid %u: %.100s", (u_int)pw->pw_uid, strerror(errno)); 124 if (setuid(pw->pw_uid) < 0) 125 fatal("setuid %u: %.100s", (u_int)pw->pw_uid, strerror(errno)); 126 } 127