1999-12-17 04:39:47 +03:00
/*
2002-01-30 09:08:46 +03:00
Unix SMB / CIFS implementation .
1999-12-17 04:39:47 +03:00
Copyright ( C ) Jeremy Allison 1998.
rewritten for version 2.0 .6 by Tridge
This program is free software ; you can redistribute it and / or modify
it under the terms of the GNU General Public License as published by
2007-07-09 23:25:36 +04:00
the Free Software Foundation ; either version 3 of the License , or
1999-12-17 04:39:47 +03:00
( at your option ) any later version .
This program is distributed in the hope that it will be useful ,
but WITHOUT ANY WARRANTY ; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE . See the
GNU General Public License for more details .
You should have received a copy of the GNU General Public License
2007-07-10 04:52:41 +04:00
along with this program . If not , see < http : //www.gnu.org/licenses/>.
1999-12-17 04:39:47 +03:00
*/
# ifndef AUTOCONF_TEST
# include "includes.h"
2011-10-27 14:00:53 +04:00
# include "system/passwd.h" /* uid_wrapper */
2012-06-28 22:59:51 +04:00
# include "../lib/util/setid.h"
1999-12-17 04:39:47 +03:00
# else
/* we are running this code in autoconf test mode to see which type of setuid
function works */
# if defined(HAVE_UNISTD_H)
# include <unistd.h>
# endif
2018-11-20 12:39:28 +03:00
# include <stdbool.h>
1999-12-17 04:39:47 +03:00
# include <stdlib.h>
# include <stdio.h>
2000-02-08 14:32:43 +03:00
# include <sys/types.h>
# include <errno.h>
1999-12-17 04:39:47 +03:00
# ifdef HAVE_SYS_PRIV_H
# include <sys/priv.h>
# endif
# ifdef HAVE_SYS_ID_H
# include <sys/id.h>
# endif
# define DEBUG(x, y) printf y
# define smb_panic(x) exit(1)
# endif
2001-06-25 04:46:34 +04:00
/* are we running as non-root? This is used by the regresison test code,
and potentially also for sites that want non - root smbd */
static uid_t initial_uid ;
2001-09-15 06:10:22 +04:00
static gid_t initial_gid ;
2001-06-25 04:46:34 +04:00
/****************************************************************************
remember what uid we got started as - this allows us to run correctly
as non - root while catching trapdoor systems
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
2006-07-29 02:42:39 +04:00
2001-06-25 04:46:34 +04:00
void sec_init ( void )
{
2006-07-29 02:42:39 +04:00
static int initialized ;
if ( ! initialized ) {
2015-10-30 16:31:33 +03:00
# ifndef AUTOCONF_TEST
if ( uid_wrapper_enabled ( ) ) {
setenv ( " UID_WRAPPER_MYUID " , " 1 " , 1 ) ;
}
# endif
2006-07-29 02:42:39 +04:00
initial_uid = geteuid ( ) ;
initial_gid = getegid ( ) ;
2015-10-30 16:31:33 +03:00
# ifndef AUTOCONF_TEST
if ( uid_wrapper_enabled ( ) ) {
unsetenv ( " UID_WRAPPER_MYUID " ) ;
}
# endif
2006-07-29 02:42:39 +04:00
initialized = 1 ;
}
2001-06-25 04:46:34 +04:00
}
2001-07-08 22:22:46 +04:00
/****************************************************************************
some code ( eg . winbindd ) needs to know what uid we started as
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
uid_t sec_initial_uid ( void )
{
return initial_uid ;
}
2001-09-15 06:10:22 +04:00
/****************************************************************************
some code ( eg . winbindd , profiling shm ) needs to know what gid we started as
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
gid_t sec_initial_gid ( void )
{
return initial_gid ;
}
2013-11-06 21:00:31 +04:00
/**
* @ brief Check if we are running in root mode .
*
* @ return If we samba root privileges it returns true , false otehrwise .
*/
bool root_mode ( void )
{
uid_t euid ;
euid = geteuid ( ) ;
# ifndef AUTOCONF_TEST
if ( uid_wrapper_enabled ( ) ) {
return ( euid = = initial_uid | | euid = = ( uid_t ) 0 ) ;
}
# endif
return ( initial_uid = = euid ) ;
}
2001-06-25 04:46:34 +04:00
/****************************************************************************
are we running in non - root mode ?
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
2007-10-19 04:40:25 +04:00
bool non_root_mode ( void )
2001-06-25 04:46:34 +04:00
{
return ( initial_uid ! = ( uid_t ) 0 ) ;
}
1999-12-17 04:39:47 +03:00
/****************************************************************************
abort if we haven ' t set the uid correctly
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
static void assert_uid ( uid_t ruid , uid_t euid )
{
if ( ( euid ! = ( uid_t ) - 1 & & geteuid ( ) ! = euid ) | |
( ruid ! = ( uid_t ) - 1 & & getuid ( ) ! = ruid ) ) {
2001-06-25 04:46:34 +04:00
if ( ! non_root_mode ( ) ) {
DEBUG ( 0 , ( " Failed to set uid privileges to (%d,%d) now set to (%d,%d) \n " ,
( int ) ruid , ( int ) euid ,
( int ) getuid ( ) , ( int ) geteuid ( ) ) ) ;
smb_panic ( " failed to set uid \n " ) ;
exit ( 1 ) ;
}
1999-12-17 04:39:47 +03:00
}
}
/****************************************************************************
abort if we haven ' t set the gid correctly
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
static void assert_gid ( gid_t rgid , gid_t egid )
{
if ( ( egid ! = ( gid_t ) - 1 & & getegid ( ) ! = egid ) | |
( rgid ! = ( gid_t ) - 1 & & getgid ( ) ! = rgid ) ) {
2001-06-25 04:46:34 +04:00
if ( ! non_root_mode ( ) ) {
DEBUG ( 0 , ( " Failed to set gid privileges to (%d,%d) now set to (%d,%d) uid=(%d,%d) \n " ,
( int ) rgid , ( int ) egid ,
( int ) getgid ( ) , ( int ) getegid ( ) ,
( int ) getuid ( ) , ( int ) geteuid ( ) ) ) ;
smb_panic ( " failed to set gid \n " ) ;
exit ( 1 ) ;
}
1999-12-17 04:39:47 +03:00
}
}
/****************************************************************************
Gain root privilege before doing something .
We want to end up with ruid = = euid = = 0
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
void gain_root_privilege ( void )
{
2018-06-28 15:28:34 +03:00
# if defined(USE_SETRESUID) || defined(HAVE_LINUX_THREAD_CREDENTIALS)
2012-06-28 22:59:51 +04:00
samba_setresuid ( 0 , 0 , 0 ) ;
1999-12-17 04:39:47 +03:00
# endif
# if USE_SETEUID
2012-06-28 22:59:51 +04:00
samba_seteuid ( 0 ) ;
1999-12-17 04:39:47 +03:00
# endif
# if USE_SETREUID
2012-06-28 22:59:51 +04:00
samba_setreuid ( 0 , 0 ) ;
1999-12-17 04:39:47 +03:00
# endif
# if USE_SETUIDX
2012-06-28 22:59:51 +04:00
samba_setuidx ( ID_EFFECTIVE , 0 ) ;
samba_setuidx ( ID_REAL , 0 ) ;
1999-12-17 04:39:47 +03:00
# endif
/* this is needed on some systems */
2012-06-28 22:59:51 +04:00
samba_setuid ( 0 ) ;
1999-12-17 04:39:47 +03:00
assert_uid ( 0 , 0 ) ;
}
/****************************************************************************
Ensure our real and effective groups are zero .
we want to end up with rgid = = egid = = 0
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
void gain_root_group_privilege ( void )
{
2018-06-28 15:28:34 +03:00
# if defined(USE_SETRESUID) || defined(HAVE_LINUX_THREAD_CREDENTIALS)
2012-06-28 22:59:51 +04:00
samba_setresgid ( 0 , 0 , 0 ) ;
1999-12-17 04:39:47 +03:00
# endif
# if USE_SETREUID
2012-06-28 22:59:51 +04:00
samba_setregid ( 0 , 0 ) ;
1999-12-17 04:39:47 +03:00
# endif
# if USE_SETEUID
2012-06-28 22:59:51 +04:00
samba_setegid ( 0 ) ;
1999-12-17 04:39:47 +03:00
# endif
# if USE_SETUIDX
2012-06-28 22:59:51 +04:00
samba_setgidx ( ID_EFFECTIVE , 0 ) ;
samba_setgidx ( ID_REAL , 0 ) ;
1999-12-17 04:39:47 +03:00
# endif
2012-06-28 22:59:51 +04:00
samba_setgid ( 0 ) ;
1999-12-17 04:39:47 +03:00
assert_gid ( 0 , 0 ) ;
}
/****************************************************************************
2004-01-27 13:01:30 +03:00
Set effective uid , and possibly the real uid too .
We want to end up with either :
ruid = = uid and euid = = uid
or
ruid = = 0 and euid = = uid
depending on what the local OS will allow us to regain root from .
1999-12-17 04:39:47 +03:00
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
void set_effective_uid ( uid_t uid )
{
2018-06-28 15:28:34 +03:00
# if defined(USE_SETRESUID) || defined(HAVE_LINUX_THREAD_CREDENTIALS)
2003-10-23 20:49:46 +04:00
/* Set the effective as well as the real uid. */
2012-06-28 22:59:51 +04:00
if ( samba_setresuid ( uid , uid , - 1 ) = = - 1 ) {
2007-01-24 19:15:29 +03:00
if ( errno = = EAGAIN ) {
2012-06-28 22:59:51 +04:00
DEBUG ( 0 , ( " samba_setresuid failed with EAGAIN. uid(%d) "
2007-01-24 19:15:29 +03:00
" might be over its NPROC limit \n " ,
( int ) uid ) ) ;
}
}
1999-12-17 04:39:47 +03:00
# endif
# if USE_SETREUID
2012-06-28 22:59:51 +04:00
samba_setreuid ( - 1 , uid ) ;
1999-12-17 04:39:47 +03:00
# endif
# if USE_SETEUID
2012-06-28 22:59:51 +04:00
samba_seteuid ( uid ) ;
1999-12-17 04:39:47 +03:00
# endif
# if USE_SETUIDX
2012-06-28 22:59:51 +04:00
samba_setuidx ( ID_EFFECTIVE , uid ) ;
1999-12-17 04:39:47 +03:00
# endif
assert_uid ( - 1 , uid ) ;
}
/****************************************************************************
Set * only * the effective gid .
we want to end up with rgid = = 0 and egid = = gid
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
void set_effective_gid ( gid_t gid )
{
2018-06-28 15:28:34 +03:00
# if defined(USE_SETRESUID) || defined(HAVE_LINUX_THREAD_CREDENTIALS)
2012-06-28 22:59:51 +04:00
samba_setresgid ( - 1 , gid , - 1 ) ;
1999-12-17 04:39:47 +03:00
# endif
# if USE_SETREUID
2012-06-28 22:59:51 +04:00
samba_setregid ( - 1 , gid ) ;
1999-12-17 04:39:47 +03:00
# endif
# if USE_SETEUID
2012-06-28 22:59:51 +04:00
samba_setegid ( gid ) ;
1999-12-17 04:39:47 +03:00
# endif
# if USE_SETUIDX
2012-06-28 22:59:51 +04:00
samba_setgidx ( ID_EFFECTIVE , gid ) ;
1999-12-17 04:39:47 +03:00
# endif
assert_gid ( - 1 , gid ) ;
}
static uid_t saved_euid , saved_ruid ;
2002-07-15 14:35:28 +04:00
static gid_t saved_egid , saved_rgid ;
1999-12-17 04:39:47 +03:00
/****************************************************************************
save the real and effective uid for later restoration . Used by the quotas
code
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
void save_re_uid ( void )
{
saved_ruid = getuid ( ) ;
saved_euid = geteuid ( ) ;
}
/****************************************************************************
and restore them !
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
2000-02-08 14:32:43 +03:00
2007-04-06 03:56:10 +04:00
void restore_re_uid_fromroot ( void )
2006-07-29 02:56:41 +04:00
{
2018-06-28 15:28:34 +03:00
# if defined(USE_SETRESUID) || defined(HAVE_LINUX_THREAD_CREDENTIALS)
2012-06-28 22:59:51 +04:00
samba_setresuid ( saved_ruid , saved_euid , - 1 ) ;
2000-02-08 14:32:43 +03:00
# elif USE_SETREUID
2012-06-28 22:59:51 +04:00
samba_setreuid ( saved_ruid , - 1 ) ;
samba_setreuid ( - 1 , saved_euid ) ;
2000-02-08 14:32:43 +03:00
# elif USE_SETUIDX
2012-06-28 22:59:51 +04:00
samba_setuidx ( ID_REAL , saved_ruid ) ;
samba_setuidx ( ID_EFFECTIVE , saved_euid ) ;
2000-02-08 14:32:43 +03:00
# else
1999-12-17 04:39:47 +03:00
set_effective_uid ( saved_euid ) ;
2000-02-08 14:32:43 +03:00
if ( getuid ( ) ! = saved_ruid )
2012-06-28 22:59:51 +04:00
samba_setuid ( saved_ruid ) ;
1999-12-17 04:39:47 +03:00
set_effective_uid ( saved_euid ) ;
2000-02-08 14:32:43 +03:00
# endif
1999-12-17 04:39:47 +03:00
assert_uid ( saved_ruid , saved_euid ) ;
}
2006-07-29 02:56:41 +04:00
void restore_re_uid ( void )
{
set_effective_uid ( 0 ) ;
restore_re_uid_fromroot ( ) ;
}
2002-07-15 14:35:28 +04:00
/****************************************************************************
save the real and effective gid for later restoration . Used by the
getgroups code
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
void save_re_gid ( void )
{
saved_rgid = getgid ( ) ;
saved_egid = getegid ( ) ;
}
/****************************************************************************
and restore them !
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
void restore_re_gid ( void )
{
2018-06-28 15:28:34 +03:00
# if defined(USE_SETRESUID) || defined(HAVE_LINUX_THREAD_CREDENTIALS)
2012-06-28 22:59:51 +04:00
samba_setresgid ( saved_rgid , saved_egid , - 1 ) ;
2002-07-15 14:35:28 +04:00
# elif USE_SETREUID
2012-06-28 22:59:51 +04:00
samba_setregid ( saved_rgid , - 1 ) ;
samba_setregid ( - 1 , saved_egid ) ;
2002-07-15 14:35:28 +04:00
# elif USE_SETUIDX
2012-06-28 22:59:51 +04:00
samba_setgidx ( ID_REAL , saved_rgid ) ;
samba_setgidx ( ID_EFFECTIVE , saved_egid ) ;
2002-07-15 14:35:28 +04:00
# else
set_effective_gid ( saved_egid ) ;
if ( getgid ( ) ! = saved_rgid )
2012-06-28 22:59:51 +04:00
samba_setgid ( saved_rgid ) ;
2002-07-15 14:35:28 +04:00
set_effective_gid ( saved_egid ) ;
# endif
assert_gid ( saved_rgid , saved_egid ) ;
}
1999-12-17 04:39:47 +03:00
/****************************************************************************
set the real AND effective uid to the current effective uid in a way that
allows root to be regained .
This is only possible on some platforms .
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
int set_re_uid ( void )
{
uid_t uid = geteuid ( ) ;
2018-06-28 15:28:34 +03:00
# if defined(USE_SETRESUID) || defined(HAVE_LINUX_THREAD_CREDENTIALS)
2012-07-11 03:50:51 +04:00
samba_setresuid ( uid , uid , - 1 ) ;
1999-12-17 04:39:47 +03:00
# endif
# if USE_SETREUID
2012-06-28 22:59:51 +04:00
samba_setreuid ( 0 , 0 ) ;
samba_setreuid ( uid , - 1 ) ;
samba_setreuid ( - 1 , uid ) ;
1999-12-17 04:39:47 +03:00
# endif
# if USE_SETEUID
/* can't be done */
return - 1 ;
# endif
# if USE_SETUIDX
/* can't be done */
return - 1 ;
# endif
assert_uid ( uid , uid ) ;
return 0 ;
}
/****************************************************************************
Become the specified uid and gid - permanently !
there should be no way back if possible
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
void become_user_permanently ( uid_t uid , gid_t gid )
{
/*
* First - gain root privilege . We do this to ensure
* we can lose it again .
*/
gain_root_privilege ( ) ;
gain_root_group_privilege ( ) ;
2018-06-28 15:28:34 +03:00
# if defined(USE_SETRESUID) || defined(HAVE_LINUX_THREAD_CREDENTIALS)
2012-06-28 22:59:51 +04:00
samba_setresgid ( gid , gid , gid ) ;
samba_setgid ( gid ) ;
samba_setresuid ( uid , uid , uid ) ;
samba_setuid ( uid ) ;
1999-12-17 04:39:47 +03:00
# endif
# if USE_SETREUID
2012-06-28 22:59:51 +04:00
samba_setregid ( gid , gid ) ;
samba_setgid ( gid ) ;
samba_setreuid ( uid , uid ) ;
samba_setuid ( uid ) ;
1999-12-17 04:39:47 +03:00
# endif
# if USE_SETEUID
2012-06-28 22:59:51 +04:00
samba_setegid ( gid ) ;
samba_setgid ( gid ) ;
samba_setuid ( uid ) ;
samba_seteuid ( uid ) ;
samba_setuid ( uid ) ;
1999-12-17 04:39:47 +03:00
# endif
# if USE_SETUIDX
2012-06-28 22:59:51 +04:00
samba_setgidx ( ID_REAL , gid ) ;
samba_setgidx ( ID_EFFECTIVE , gid ) ;
samba_setgid ( gid ) ;
samba_setuidx ( ID_REAL , uid ) ;
samba_setuidx ( ID_EFFECTIVE , uid ) ;
samba_setuid ( uid ) ;
1999-12-17 04:39:47 +03:00
# endif
assert_uid ( uid , uid ) ;
assert_gid ( gid , gid ) ;
}
2012-07-03 23:39:23 +04:00
/**********************************************************
2012-07-11 03:56:20 +04:00
Function to set thread specific credentials . Leave
saved - set uid / gid alone . Must be thread - safe code .
2012-07-03 23:39:23 +04:00
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
2012-07-11 03:56:20 +04:00
int set_thread_credentials ( uid_t uid ,
gid_t gid ,
size_t setlen ,
const gid_t * gidset )
2012-07-03 23:39:23 +04:00
{
2018-06-28 15:28:34 +03:00
# if defined(HAVE_LINUX_THREAD_CREDENTIALS)
2012-07-03 23:39:23 +04:00
/*
* With Linux thread - specific credentials
* we know we have setresuid / setresgid
* available .
*/
2018-05-03 17:08:06 +03:00
# ifdef HAVE___THREAD
static struct {
bool active ;
uid_t uid ;
gid_t gid ;
size_t setlen ;
uintptr_t gidset ;
} __thread cache ;
if ( cache . active & &
cache . uid = = uid & &
cache . gid = = gid & &
cache . setlen = = setlen & &
( const gid_t * ) cache . gidset = = gidset )
{
return 0 ;
}
# endif /* HAVE___THREAD */
2012-07-03 23:39:23 +04:00
/* Become root. */
/* Set ru=0, eu=0 */
if ( samba_setresuid ( 0 , 0 , - 1 ) ! = 0 ) {
return - 1 ;
}
/* Set our primary gid. */
2012-07-11 03:56:20 +04:00
/* Set rg=gid, eg=gid */
if ( samba_setresgid ( gid , gid , - 1 ) ! = 0 ) {
2012-07-03 23:39:23 +04:00
return - 1 ;
}
/* Set extra groups list. */
if ( samba_setgroups ( setlen , gidset ) ! = 0 ) {
return - 1 ;
}
2012-07-11 03:56:20 +04:00
/* Become the requested user. */
/* Set ru=uid, eu=uid */
if ( samba_setresuid ( uid , uid , - 1 ) ! = 0 ) {
2012-07-03 23:39:23 +04:00
return - 1 ;
}
if ( geteuid ( ) ! = uid | | getuid ( ) ! = uid | |
getegid ( ) ! = gid | | getgid ( ) ! = gid ) {
2012-07-11 03:56:20 +04:00
smb_panic ( " set_thread_credentials failed \n " ) ;
2012-07-03 23:39:23 +04:00
return - 1 ;
}
2018-05-03 17:08:06 +03:00
# ifdef HAVE___THREAD
cache . active = true ;
cache . uid = uid ;
cache . gid = gid ;
cache . setlen = setlen ;
cache . gidset = ( uintptr_t ) gidset ;
# endif /* HAVE___THREAD */
2012-07-03 23:39:23 +04:00
return 0 ;
# else
errno = ENOSYS ;
return - 1 ;
# endif
}
2000-12-06 05:52:54 +03:00
# ifdef AUTOCONF_TEST
2000-02-08 14:32:43 +03:00
/****************************************************************************
this function just checks that we don ' t get ENOSYS back
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
static int have_syscall ( void )
{
errno = 0 ;
2018-06-28 15:28:34 +03:00
# if defined(USE_SETRESUID) || defined(HAVE_LINUX_THREAD_CREDENTIALS)
2012-06-28 22:59:51 +04:00
samba_setresuid ( - 1 , - 1 , - 1 ) ;
2000-02-08 14:32:43 +03:00
# endif
# if USE_SETREUID
2012-06-28 22:59:51 +04:00
samba_setreuid ( - 1 , - 1 ) ;
2000-02-08 14:32:43 +03:00
# endif
# if USE_SETEUID
2012-06-28 22:59:51 +04:00
samba_seteuid ( - 1 ) ;
2000-02-08 14:32:43 +03:00
# endif
# if USE_SETUIDX
2012-06-28 22:59:51 +04:00
samba_setuidx ( ID_EFFECTIVE , - 1 ) ;
2000-02-08 14:32:43 +03:00
# endif
2019-01-27 02:41:28 +03:00
if ( errno = = ENOSYS ) {
return - 1 ;
}
2000-02-08 14:32:43 +03:00
return 0 ;
}
2019-01-27 02:41:28 +03:00
int main ( void )
1999-12-17 04:39:47 +03:00
{
if ( getuid ( ) ! = 0 ) {
# if (defined(AIX) && defined(USE_SETREUID))
/* setreuid is badly broken on AIX 4.1, we avoid it completely */
fprintf ( stderr , " avoiding possibly broken setreuid \n " ) ;
exit ( 1 ) ;
# endif
2000-02-08 14:32:43 +03:00
/* if not running as root then at least check to see if we get ENOSYS - this
handles Linux 2.0 . x with glibc 2.1 */
fprintf ( stderr , " not running as root: checking for ENOSYS \n " ) ;
exit ( have_syscall ( ) ) ;
1999-12-17 04:39:47 +03:00
}
gain_root_privilege ( ) ;
gain_root_group_privilege ( ) ;
set_effective_gid ( 1 ) ;
set_effective_uid ( 1 ) ;
2000-02-08 14:32:43 +03:00
save_re_uid ( ) ;
restore_re_uid ( ) ;
1999-12-17 04:39:47 +03:00
gain_root_privilege ( ) ;
gain_root_group_privilege ( ) ;
become_user_permanently ( 1 , 1 ) ;
2012-06-28 22:59:51 +04:00
samba_setuid ( 0 ) ;
1999-12-17 04:39:47 +03:00
if ( getuid ( ) = = 0 ) {
fprintf ( stderr , " uid not set permanently \n " ) ;
exit ( 1 ) ;
}
printf ( " OK \n " ) ;
exit ( 0 ) ;
}
# endif
2001-10-31 04:52:34 +03:00
/****************************************************************************
2002-03-25 02:25:05 +03:00
Check if we are setuid root . Used in libsmb and smbpasswd paranoia checks .
2001-10-31 04:52:34 +03:00
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
2007-10-19 04:40:25 +04:00
bool is_setuid_root ( void )
2001-10-31 04:52:34 +03:00
{
return ( geteuid ( ) = = ( uid_t ) 0 ) & & ( getuid ( ) ! = ( uid_t ) 0 ) ;
}