/*
* Copyright (c) 2001 Proofpoint, Inc. and its suppliers.
* All rights reserved.
*
* By using this file, you agree to the terms and conditions set
* forth in the LICENSE file which can be found at the top level of
* the sendmail distribution.
*
*/
/*
** This program checks to see if your version of setuid works.
** Compile it, make it set-user-ID root, and run it as yourself (NOT as
** root).
**
** NOTE: This should work everywhere, but Linux has the ability
** to use the undocumented setcap() call to make this break.
**
** Compilation is trivial -- just "cc t_setuid.c". Make it set-user-ID,
** root and then execute it as a non-root user.
*/
#include <unistd.h>
#include <stdio.h>
#ifndef lint
#endif /* ! lint */
static void
char *str;
uid_t r, e;
{
}
int
int argc;
char **argv;
{
int fail = 0;
if (geteuid() != 0)
{
printf("SETUP ERROR: re-run set-user-ID root\n");
exit(1);
}
if (getuid() == 0)
{
printf("SETUP ERROR: must be run by a non-root user\n");
exit(1);
}
if (setuid(1) < 0)
printf("setuid(1) failure\n");
if (geteuid() != 1)
{
fail++;
printf("MAYDAY! Wrong effective uid\n");
}
if (getuid() != 1)
{
fail++;
printf("MAYDAY! Wrong real uid\n");
}
/* do activity here */
if (setuid(0) == 0)
{
fail++;
printf("MAYDAY! setuid(0) succeeded (should have failed)\n");
}
else
{
printf("setuid(0) failed (this is correct)\n");
}
if (geteuid() != 1)
{
fail++;
printf("MAYDAY! Wrong effective uid\n");
}
if (getuid() != 1)
{
fail++;
printf("MAYDAY! Wrong real uid\n");
}
printf("\n");
if (fail)
{
printf("\nThis system cannot use setuid (maybe use setreuid)\n");
exit(1);
}
printf("\nIt is safe to use setuid on this system\n");
exit(0);
}