| 1 | /*
|
|---|
| 2 | Unix SMB/CIFS implementation.
|
|---|
| 3 | Copyright (C) Jeremy Allison 1998.
|
|---|
| 4 | rewritten for version 2.0.6 by Tridge
|
|---|
| 5 |
|
|---|
| 6 | This program is free software; you can redistribute it and/or modify
|
|---|
| 7 | it under the terms of the GNU General Public License as published by
|
|---|
| 8 | the Free Software Foundation; either version 2 of the License, or
|
|---|
| 9 | (at your option) any later version.
|
|---|
| 10 |
|
|---|
| 11 | This program is distributed in the hope that it will be useful,
|
|---|
| 12 | but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|---|
| 13 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|---|
| 14 | GNU General Public License for more details.
|
|---|
| 15 |
|
|---|
| 16 | You should have received a copy of the GNU General Public License
|
|---|
| 17 | along with this program; if not, write to the Free Software
|
|---|
| 18 | Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
|---|
| 19 | */
|
|---|
| 20 |
|
|---|
| 21 | #ifndef AUTOCONF_TEST
|
|---|
| 22 | #include "includes.h"
|
|---|
| 23 | #else
|
|---|
| 24 | /* we are running this code in autoconf test mode to see which type of setuid
|
|---|
| 25 | function works */
|
|---|
| 26 | #if defined(HAVE_UNISTD_H)
|
|---|
| 27 | #include <unistd.h>
|
|---|
| 28 | #endif
|
|---|
| 29 | #include <stdlib.h>
|
|---|
| 30 | #include <stdio.h>
|
|---|
| 31 | #include <sys/types.h>
|
|---|
| 32 | #include <errno.h>
|
|---|
| 33 |
|
|---|
| 34 | #ifdef HAVE_SYS_PRIV_H
|
|---|
| 35 | #include <sys/priv.h>
|
|---|
| 36 | #endif
|
|---|
| 37 | #ifdef HAVE_SYS_ID_H
|
|---|
| 38 | #include <sys/id.h>
|
|---|
| 39 | #endif
|
|---|
| 40 |
|
|---|
| 41 | #define DEBUG(x, y) printf y
|
|---|
| 42 | #define smb_panic(x) exit(1)
|
|---|
| 43 | #define BOOL int
|
|---|
| 44 | #endif
|
|---|
| 45 |
|
|---|
| 46 | /* are we running as non-root? This is used by the regresison test code,
|
|---|
| 47 | and potentially also for sites that want non-root smbd */
|
|---|
| 48 | static uid_t initial_uid;
|
|---|
| 49 | static gid_t initial_gid;
|
|---|
| 50 |
|
|---|
| 51 | /****************************************************************************
|
|---|
| 52 | remember what uid we got started as - this allows us to run correctly
|
|---|
| 53 | as non-root while catching trapdoor systems
|
|---|
| 54 | ****************************************************************************/
|
|---|
| 55 |
|
|---|
| 56 | void sec_init(void)
|
|---|
| 57 | {
|
|---|
| 58 | static int initialized;
|
|---|
| 59 |
|
|---|
| 60 | if (!initialized) {
|
|---|
| 61 | initial_uid = geteuid();
|
|---|
| 62 | initial_gid = getegid();
|
|---|
| 63 | initialized = 1;
|
|---|
| 64 | }
|
|---|
| 65 | }
|
|---|
| 66 |
|
|---|
| 67 | /****************************************************************************
|
|---|
| 68 | some code (eg. winbindd) needs to know what uid we started as
|
|---|
| 69 | ****************************************************************************/
|
|---|
| 70 | uid_t sec_initial_uid(void)
|
|---|
| 71 | {
|
|---|
| 72 | return initial_uid;
|
|---|
| 73 | }
|
|---|
| 74 |
|
|---|
| 75 | /****************************************************************************
|
|---|
| 76 | some code (eg. winbindd, profiling shm) needs to know what gid we started as
|
|---|
| 77 | ****************************************************************************/
|
|---|
| 78 | gid_t sec_initial_gid(void)
|
|---|
| 79 | {
|
|---|
| 80 | return initial_gid;
|
|---|
| 81 | }
|
|---|
| 82 |
|
|---|
| 83 | /****************************************************************************
|
|---|
| 84 | are we running in non-root mode?
|
|---|
| 85 | ****************************************************************************/
|
|---|
| 86 | BOOL non_root_mode(void)
|
|---|
| 87 | {
|
|---|
| 88 | return (initial_uid != (uid_t)0);
|
|---|
| 89 | }
|
|---|
| 90 |
|
|---|
| 91 | /****************************************************************************
|
|---|
| 92 | abort if we haven't set the uid correctly
|
|---|
| 93 | ****************************************************************************/
|
|---|
| 94 | static void assert_uid(uid_t ruid, uid_t euid)
|
|---|
| 95 | {
|
|---|
| 96 | #ifndef __OS2__
|
|---|
| 97 | if ((euid != (uid_t)-1 && geteuid() != euid) ||
|
|---|
| 98 | (ruid != (uid_t)-1 && getuid() != ruid)) {
|
|---|
| 99 | if (!non_root_mode()) {
|
|---|
| 100 | DEBUG(0,("Failed to set uid privileges to (%d,%d) now set to (%d,%d)\n",
|
|---|
| 101 | (int)ruid, (int)euid,
|
|---|
| 102 | (int)getuid(), (int)geteuid()));
|
|---|
| 103 | smb_panic("failed to set uid\n");
|
|---|
| 104 | exit(1);
|
|---|
| 105 | }
|
|---|
| 106 | }
|
|---|
| 107 | #endif /* __OS2__ */
|
|---|
| 108 | }
|
|---|
| 109 |
|
|---|
| 110 | /****************************************************************************
|
|---|
| 111 | abort if we haven't set the gid correctly
|
|---|
| 112 | ****************************************************************************/
|
|---|
| 113 | static void assert_gid(gid_t rgid, gid_t egid)
|
|---|
| 114 | {
|
|---|
| 115 | #ifndef __OS2__
|
|---|
| 116 | if ((egid != (gid_t)-1 && getegid() != egid) ||
|
|---|
| 117 | (rgid != (gid_t)-1 && getgid() != rgid)) {
|
|---|
| 118 | if (!non_root_mode()) {
|
|---|
| 119 | DEBUG(0,("Failed to set gid privileges to (%d,%d) now set to (%d,%d) uid=(%d,%d)\n",
|
|---|
| 120 | (int)rgid, (int)egid,
|
|---|
| 121 | (int)getgid(), (int)getegid(),
|
|---|
| 122 | (int)getuid(), (int)geteuid()));
|
|---|
| 123 | smb_panic("failed to set gid\n");
|
|---|
| 124 | exit(1);
|
|---|
| 125 | }
|
|---|
| 126 | }
|
|---|
| 127 | #endif
|
|---|
| 128 | }
|
|---|
| 129 |
|
|---|
| 130 | /****************************************************************************
|
|---|
| 131 | Gain root privilege before doing something.
|
|---|
| 132 | We want to end up with ruid==euid==0
|
|---|
| 133 | ****************************************************************************/
|
|---|
| 134 | void gain_root_privilege(void)
|
|---|
| 135 | {
|
|---|
| 136 | #if USE_SETRESUID
|
|---|
| 137 | setresuid(0,0,0);
|
|---|
| 138 | #endif
|
|---|
| 139 |
|
|---|
| 140 | #if USE_SETEUID
|
|---|
| 141 | seteuid(0);
|
|---|
| 142 | #endif
|
|---|
| 143 |
|
|---|
| 144 | #if USE_SETREUID
|
|---|
| 145 | setreuid(0, 0);
|
|---|
| 146 | #endif
|
|---|
| 147 |
|
|---|
| 148 | #if USE_SETUIDX
|
|---|
| 149 | setuidx(ID_EFFECTIVE, 0);
|
|---|
| 150 | setuidx(ID_REAL, 0);
|
|---|
| 151 | #endif
|
|---|
| 152 |
|
|---|
| 153 | /* this is needed on some systems */
|
|---|
| 154 | setuid(0);
|
|---|
| 155 |
|
|---|
| 156 | assert_uid(0, 0);
|
|---|
| 157 | }
|
|---|
| 158 |
|
|---|
| 159 |
|
|---|
| 160 | /****************************************************************************
|
|---|
| 161 | Ensure our real and effective groups are zero.
|
|---|
| 162 | we want to end up with rgid==egid==0
|
|---|
| 163 | ****************************************************************************/
|
|---|
| 164 | void gain_root_group_privilege(void)
|
|---|
| 165 | {
|
|---|
| 166 | #if USE_SETRESUID
|
|---|
| 167 | setresgid(0,0,0);
|
|---|
| 168 | #endif
|
|---|
| 169 |
|
|---|
| 170 | #if USE_SETREUID
|
|---|
| 171 | setregid(0,0);
|
|---|
| 172 | #endif
|
|---|
| 173 |
|
|---|
| 174 | #if USE_SETEUID
|
|---|
| 175 | setegid(0);
|
|---|
| 176 | #endif
|
|---|
| 177 |
|
|---|
| 178 | #if USE_SETUIDX
|
|---|
| 179 | setgidx(ID_EFFECTIVE, 0);
|
|---|
| 180 | setgidx(ID_REAL, 0);
|
|---|
| 181 | #endif
|
|---|
| 182 |
|
|---|
| 183 | setgid(0);
|
|---|
| 184 |
|
|---|
| 185 | assert_gid(0, 0);
|
|---|
| 186 | }
|
|---|
| 187 |
|
|---|
| 188 |
|
|---|
| 189 | /****************************************************************************
|
|---|
| 190 | Set effective uid, and possibly the real uid too.
|
|---|
| 191 | We want to end up with either:
|
|---|
| 192 |
|
|---|
| 193 | ruid==uid and euid==uid
|
|---|
| 194 |
|
|---|
| 195 | or
|
|---|
| 196 |
|
|---|
| 197 | ruid==0 and euid==uid
|
|---|
| 198 |
|
|---|
| 199 | depending on what the local OS will allow us to regain root from.
|
|---|
| 200 | ****************************************************************************/
|
|---|
| 201 | void set_effective_uid(uid_t uid)
|
|---|
| 202 | {
|
|---|
| 203 | #if USE_SETRESUID
|
|---|
| 204 | /* Set the effective as well as the real uid. */
|
|---|
| 205 | if (setresuid(uid,uid,-1) == -1) {
|
|---|
| 206 | if (errno == EAGAIN) {
|
|---|
| 207 | DEBUG(0, ("setresuid failed with EAGAIN. uid(%d) "
|
|---|
| 208 | "might be over its NPROC limit\n",
|
|---|
| 209 | (int)uid));
|
|---|
| 210 | }
|
|---|
| 211 | }
|
|---|
| 212 | #endif
|
|---|
| 213 |
|
|---|
| 214 | #if USE_SETREUID
|
|---|
| 215 | setreuid(-1,uid);
|
|---|
| 216 | #endif
|
|---|
| 217 |
|
|---|
| 218 | #if USE_SETEUID
|
|---|
| 219 | seteuid(uid);
|
|---|
| 220 | #endif
|
|---|
| 221 |
|
|---|
| 222 | #if USE_SETUIDX
|
|---|
| 223 | setuidx(ID_EFFECTIVE, uid);
|
|---|
| 224 | #endif
|
|---|
| 225 |
|
|---|
|
|---|