2 Unix SMB/Netbios implementation.
4 Copyright (C) Jeremy Allison 1998.
5 rewritten for version 2.0.6 by Tridge
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2 of the License, or
10 (at your option) any later version.
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with this program; if not, write to the Free Software
19 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
24 extern int DEBUGLEVEL
;
26 /* we are running this code in autoconf test mode to see which type of setuid
28 #if defined(HAVE_UNISTD_H)
33 #include <sys/types.h>
36 #ifdef HAVE_SYS_PRIV_H
43 #define DEBUG(x, y) printf y
44 #define smb_panic(x) exit(1)
48 /* are we running as non-root? This is used by the regresison test code,
49 and potentially also for sites that want non-root smbd */
50 static uid_t initial_uid
;
52 /****************************************************************************
53 remember what uid we got started as - this allows us to run correctly
54 as non-root while catching trapdoor systems
55 ****************************************************************************/
58 initial_uid
= geteuid();
61 /****************************************************************************
62 are we running in non-root mode?
63 ****************************************************************************/
64 BOOL
non_root_mode(void)
66 return (initial_uid
!= (uid_t
)0);
69 /****************************************************************************
70 abort if we haven't set the uid correctly
71 ****************************************************************************/
72 static void assert_uid(uid_t ruid
, uid_t euid
)
74 if ((euid
!= (uid_t
)-1 && geteuid() != euid
) ||
75 (ruid
!= (uid_t
)-1 && getuid() != ruid
)) {
76 if (!non_root_mode()) {
77 DEBUG(0,("Failed to set uid privileges to (%d,%d) now set to (%d,%d)\n",
79 (int)getuid(), (int)geteuid()));
80 smb_panic("failed to set uid\n");
86 /****************************************************************************
87 abort if we haven't set the gid correctly
88 ****************************************************************************/
89 static void assert_gid(gid_t rgid
, gid_t egid
)
91 if ((egid
!= (gid_t
)-1 && getegid() != egid
) ||
92 (rgid
!= (gid_t
)-1 && getgid() != rgid
)) {
93 if (!non_root_mode()) {
94 DEBUG(0,("Failed to set gid privileges to (%d,%d) now set to (%d,%d) uid=(%d,%d)\n",
96 (int)getgid(), (int)getegid(),
97 (int)getuid(), (int)geteuid()));
98 smb_panic("failed to set gid\n");
104 /****************************************************************************
105 Gain root privilege before doing something.
106 We want to end up with ruid==euid==0
107 ****************************************************************************/
108 void gain_root_privilege(void)
123 setuidx(ID_EFFECTIVE
, 0);
127 /* this is needed on some systems */
134 /****************************************************************************
135 Ensure our real and effective groups are zero.
136 we want to end up with rgid==egid==0
137 ****************************************************************************/
138 void gain_root_group_privilege(void)
153 setgidx(ID_EFFECTIVE
, 0);
163 /****************************************************************************
164 Set *only* the effective uid.
165 we want to end up with ruid==0 and euid==uid
166 ****************************************************************************/
167 void set_effective_uid(uid_t uid
)
170 setresuid(-1,uid
,-1);
182 setuidx(ID_EFFECTIVE
, uid
);
188 /****************************************************************************
189 Set *only* the effective gid.
190 we want to end up with rgid==0 and egid==gid
191 ****************************************************************************/
192 void set_effective_gid(gid_t gid
)
195 setresgid(-1,gid
,-1);
207 setgidx(ID_EFFECTIVE
, gid
);
213 static uid_t saved_euid
, saved_ruid
;
215 /****************************************************************************
216 save the real and effective uid for later restoration. Used by the quotas
218 ****************************************************************************/
219 void save_re_uid(void)
221 saved_ruid
= getuid();
222 saved_euid
= geteuid();
226 /****************************************************************************
228 ****************************************************************************/
229 void restore_re_uid(void)
231 set_effective_uid(0);
234 setresuid(saved_ruid
, saved_euid
, -1);
236 setreuid(saved_ruid
, -1);
237 setreuid(-1,saved_euid
);
239 setuidx(ID_REAL
, saved_ruid
);
240 setuidx(ID_EFFECTIVE
, saved_euid
);
242 set_effective_uid(saved_euid
);
243 if (getuid() != saved_ruid
)
245 set_effective_uid(saved_euid
);
248 assert_uid(saved_ruid
, saved_euid
);
251 /****************************************************************************
252 set the real AND effective uid to the current effective uid in a way that
253 allows root to be regained.
254 This is only possible on some platforms.
255 ****************************************************************************/
258 uid_t uid
= geteuid();
261 setresuid(geteuid(), -1, -1);
280 assert_uid(uid
, uid
);
285 /****************************************************************************
286 Become the specified uid and gid - permanently !
287 there should be no way back if possible
288 ****************************************************************************/
289 void become_user_permanently(uid_t uid
, gid_t gid
)
292 * First - gain root privilege. We do this to ensure
293 * we can lose it again.
296 gain_root_privilege();
297 gain_root_group_privilege();
300 setresgid(gid
,gid
,gid
);
302 setresuid(uid
,uid
,uid
);
322 setgidx(ID_REAL
, gid
);
323 setgidx(ID_EFFECTIVE
, gid
);
325 setuidx(ID_REAL
, uid
);
326 setuidx(ID_EFFECTIVE
, uid
);
330 assert_uid(uid
, uid
);
331 assert_gid(gid
, gid
);
336 /****************************************************************************
337 this function just checks that we don't get ENOSYS back
338 ****************************************************************************/
339 static int have_syscall(void)
356 setuidx(ID_EFFECTIVE
, -1);
359 if (errno
== ENOSYS
) return -1;
367 #if (defined(AIX) && defined(USE_SETREUID))
368 /* setreuid is badly broken on AIX 4.1, we avoid it completely */
369 fprintf(stderr
,"avoiding possibly broken setreuid\n");
373 /* if not running as root then at least check to see if we get ENOSYS - this
374 handles Linux 2.0.x with glibc 2.1 */
375 fprintf(stderr
,"not running as root: checking for ENOSYS\n");
376 exit(have_syscall());
379 gain_root_privilege();
380 gain_root_group_privilege();
381 set_effective_gid(1);
382 set_effective_uid(1);
385 gain_root_privilege();
386 gain_root_group_privilege();
387 become_user_permanently(1, 1);
390 fprintf(stderr
,"uid not set permanently\n");