1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598
|
/*
Unix SMB/CIFS implementation.
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
the Free Software Foundation; either version 3 of the License, or
(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
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef AUTOCONF_TEST
#include "includes.h"
#include "system/passwd.h" /* uid_wrapper */
#include "../lib/util/setid.h"
#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
#include <stdbool.h>
#include <stdlib.h>
#include <stdio.h>
#include <sys/types.h>
#include <errno.h>
#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
/* 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;
static gid_t initial_gid;
/****************************************************************************
remember what uid we got started as - this allows us to run correctly
as non-root while catching trapdoor systems
****************************************************************************/
void sec_init(void)
{
static int initialized;
if (!initialized) {
#ifndef AUTOCONF_TEST
if (uid_wrapper_enabled()) {
setenv("UID_WRAPPER_MYUID", "1", 1);
}
#endif
initial_uid = geteuid();
initial_gid = getegid();
#ifndef AUTOCONF_TEST
if (uid_wrapper_enabled()) {
unsetenv("UID_WRAPPER_MYUID");
}
#endif
initialized = 1;
}
}
/****************************************************************************
some code (eg. winbindd) needs to know what uid we started as
****************************************************************************/
uid_t sec_initial_uid(void)
{
return initial_uid;
}
/****************************************************************************
some code (eg. winbindd, profiling shm) needs to know what gid we started as
****************************************************************************/
gid_t sec_initial_gid(void)
{
return initial_gid;
}
/**
* @brief Check if we are running in root mode.
*
* @return Return whether Samba has root privileges
*/
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);
}
/****************************************************************************
are we running in non-root mode?
****************************************************************************/
bool non_root_mode(void)
{
return (initial_uid != (uid_t)0);
}
/****************************************************************************
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)) {
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);
}
}
}
/****************************************************************************
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)) {
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);
}
}
}
/****************************************************************************
Gain root privilege before doing something.
We want to end up with ruid==euid==0
****************************************************************************/
void gain_root_privilege(void)
{
#if defined(USE_SETRESUID) || defined(HAVE_LINUX_THREAD_CREDENTIALS)
samba_setresuid(0,0,0);
#endif
#if USE_SETEUID
samba_seteuid(0);
#endif
#if USE_SETREUID
samba_setreuid(0, 0);
#endif
#if USE_SETUIDX
samba_setuidx(ID_EFFECTIVE, 0);
samba_setuidx(ID_REAL, 0);
#endif
/* this is needed on some systems */
samba_setuid(0);
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)
{
#if defined(USE_SETRESUID) || defined(HAVE_LINUX_THREAD_CREDENTIALS)
samba_setresgid(0,0,0);
#endif
#if USE_SETREUID
samba_setregid(0,0);
#endif
#if USE_SETEUID
samba_setegid(0);
#endif
#if USE_SETUIDX
samba_setgidx(ID_EFFECTIVE, 0);
samba_setgidx(ID_REAL, 0);
#endif
samba_setgid(0);
assert_gid(0, 0);
}
/****************************************************************************
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.
****************************************************************************/
void set_effective_uid(uid_t uid)
{
#if defined(USE_SETRESUID) || defined(HAVE_LINUX_THREAD_CREDENTIALS)
/* Set the effective as well as the real uid. */
if (samba_setresuid(uid,uid,-1) == -1) {
if (errno == EAGAIN) {
DEBUG(0, ("samba_setresuid failed with EAGAIN. uid(%d) "
"might be over its NPROC limit\n",
(int)uid));
}
}
#endif
#if USE_SETREUID
samba_setreuid(-1,uid);
#endif
#if USE_SETEUID
samba_seteuid(uid);
#endif
#if USE_SETUIDX
samba_setuidx(ID_EFFECTIVE, uid);
#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)
{
#if defined(USE_SETRESUID) || defined(HAVE_LINUX_THREAD_CREDENTIALS)
samba_setresgid(-1,gid,-1);
#endif
#if USE_SETREUID
samba_setregid(-1,gid);
#endif
#if USE_SETEUID
samba_setegid(gid);
#endif
#if USE_SETUIDX
samba_setgidx(ID_EFFECTIVE, gid);
#endif
assert_gid(-1, gid);
}
static uid_t saved_euid, saved_ruid;
static gid_t saved_egid, saved_rgid;
/****************************************************************************
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!
****************************************************************************/
void restore_re_uid_fromroot(void)
{
#if defined(USE_SETRESUID) || defined(HAVE_LINUX_THREAD_CREDENTIALS)
samba_setresuid(saved_ruid, saved_euid, -1);
#elif USE_SETREUID
samba_setreuid(saved_ruid, -1);
samba_setreuid(-1,saved_euid);
#elif USE_SETUIDX
samba_setuidx(ID_REAL, saved_ruid);
samba_setuidx(ID_EFFECTIVE, saved_euid);
#else
set_effective_uid(saved_euid);
if (getuid() != saved_ruid)
samba_setuid(saved_ruid);
set_effective_uid(saved_euid);
#endif
assert_uid(saved_ruid, saved_euid);
}
void restore_re_uid(void)
{
set_effective_uid(0);
restore_re_uid_fromroot();
}
/****************************************************************************
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)
{
#if defined(USE_SETRESUID) || defined(HAVE_LINUX_THREAD_CREDENTIALS)
samba_setresgid(saved_rgid, saved_egid, -1);
#elif USE_SETREUID
samba_setregid(saved_rgid, -1);
samba_setregid(-1,saved_egid);
#elif USE_SETUIDX
samba_setgidx(ID_REAL, saved_rgid);
samba_setgidx(ID_EFFECTIVE, saved_egid);
#else
set_effective_gid(saved_egid);
if (getgid() != saved_rgid)
samba_setgid(saved_rgid);
set_effective_gid(saved_egid);
#endif
assert_gid(saved_rgid, saved_egid);
}
/****************************************************************************
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();
#if defined(USE_SETRESUID) || defined(HAVE_LINUX_THREAD_CREDENTIALS)
samba_setresuid(uid, uid, -1);
#endif
#if USE_SETREUID
samba_setreuid(0, 0);
samba_setreuid(uid, -1);
samba_setreuid(-1, uid);
#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();
#if defined(USE_SETRESUID) || defined(HAVE_LINUX_THREAD_CREDENTIALS)
samba_setresgid(gid,gid,gid);
samba_setgid(gid);
samba_setresuid(uid,uid,uid);
samba_setuid(uid);
#endif
#if USE_SETREUID
samba_setregid(gid,gid);
samba_setgid(gid);
samba_setreuid(uid,uid);
samba_setuid(uid);
#endif
#if USE_SETEUID
samba_setegid(gid);
samba_setgid(gid);
samba_setuid(uid);
samba_seteuid(uid);
samba_setuid(uid);
#endif
#if USE_SETUIDX
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);
#endif
assert_uid(uid, uid);
assert_gid(gid, gid);
}
#if defined(HAVE_LINUX_THREAD_CREDENTIALS) && defined(HAVE___THREAD)
struct set_thread_credentials_cache {
bool active;
uid_t uid;
gid_t gid;
size_t setlen;
uintptr_t gidset;
};
static __thread struct set_thread_credentials_cache cache;
#endif
/**********************************************************
Function to set thread specific credentials. Leave
saved-set uid/gid alone.Must be thread-safe code.
**********************************************************/
int set_thread_credentials(uid_t uid,
gid_t gid,
size_t setlen,
const gid_t *gidset)
{
#if defined(HAVE_LINUX_THREAD_CREDENTIALS)
/*
* With Linux thread-specific credentials
* we know we have setresuid/setresgid
* available.
*/
#ifdef HAVE___THREAD
if (cache.active &&
cache.uid == uid &&
cache.gid == gid &&
cache.setlen == setlen &&
(const gid_t *)cache.gidset == gidset)
{
return 0;
}
#endif /* HAVE___THREAD */
/* Become root. */
/* Set ru=0, eu=0 */
if (samba_setresuid(0, 0, -1) != 0) {
return -1;
}
/* Set our primary gid. */
/* Set rg=gid, eg=gid */
if (samba_setresgid(gid, gid, -1) != 0) {
return -1;
}
/* Set extra groups list. */
if (samba_setgroups(setlen, gidset) != 0) {
return -1;
}
/* Become the requested user. */
/* Set ru=uid, eu=uid */
if (samba_setresuid(uid, uid, -1) != 0) {
return -1;
}
if (geteuid() != uid || getuid() != uid ||
getegid() != gid || getgid() != gid) {
smb_panic("set_thread_credentials failed\n");
return -1;
}
#ifdef HAVE___THREAD
cache.active = true;
cache.uid = uid;
cache.gid = gid;
cache.setlen = setlen;
cache.gidset = (uintptr_t)gidset;
#endif /* HAVE___THREAD */
return 0;
#else
errno = ENOSYS;
return -1;
#endif
}
#ifdef AUTOCONF_TEST
/****************************************************************************
this function just checks that we don't get ENOSYS back
****************************************************************************/
static int have_syscall(void)
{
errno = 0;
#if defined(USE_SETRESUID) || defined(HAVE_LINUX_THREAD_CREDENTIALS)
samba_setresuid(-1,-1,-1);
#endif
#if USE_SETREUID
samba_setreuid(-1,-1);
#endif
#if USE_SETEUID
samba_seteuid(-1);
#endif
#if USE_SETUIDX
samba_setuidx(ID_EFFECTIVE, -1);
#endif
if (errno == ENOSYS) {
return -1;
}
return 0;
}
int main(void)
{
if (1 || 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
/* 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());
}
gain_root_privilege();
gain_root_group_privilege();
set_effective_gid(1);
set_effective_uid(1);
save_re_uid();
restore_re_uid();
gain_root_privilege();
gain_root_group_privilege();
become_user_permanently(1, 1);
samba_setuid(0);
if (getuid() == 0) {
fprintf(stderr,"uid not set permanently\n");
exit(1);
}
printf("OK\n");
exit(0);
}
#endif
/****************************************************************************
Check if we are setuid root. Used in libsmb and smbpasswd paranoia checks.
****************************************************************************/
bool is_setuid_root(void)
{
return (geteuid() == (uid_t)0) && (getuid() != (uid_t)0);
}
|