blob: e3c6ba418a399d4d958daef898088aa3cc0f2c2a [file] [log] [blame]
/*
*
* Copyright (c) International Business Machines Corp., 2001
*
* 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 2 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, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
/*
* NAME
* vhangup01.c
*
* DESCRIPTION
* Check the return value, and errno of vhangup(2)
* when a non-root user calls vhangup().
*
* USAGE: <for command-line>
* vhangup01 [-c n] [-e] [-i n] [-I x] [-P x] [-t]
* where, -c n : Run n copies concurrently.
* -e : Turn on errno logging.
* -i n : Execute test n times.
* -I x : Execute test for x seconds.
* -P x : Pause for x seconds between iterations.
* -t : Turn on syscall timing.
*
* History
* 07/2001 John George
* -Ported
*
* Restrictions
* None
*/
#include <unistd.h>
#include <errno.h>
#include <pwd.h>
#include <wait.h>
#include "test.h"
void setup(void);
void cleanup(void);
char *TCID = "vhangup01";
int TST_TOTAL = 1;
int fail;
char user1name[] = "nobody";
extern struct passwd *my_getpwnam(char *);
int main(int argc, char **argv)
{
int lc;
const char *msg;
pid_t pid;
int retval, status;
struct passwd *nobody;
if ((msg = parse_opts(argc, argv, NULL, NULL)) != NULL) {
tst_brkm(TBROK, NULL, "OPTION PARSING ERROR - %s", msg);
}
setup();
for (lc = 0; TEST_LOOPING(lc); lc++) {
/* reset tst_count in case we are looping */
tst_count = 0;
nobody = my_getpwnam(user1name);
if ((pid = FORK_OR_VFORK()) < 0) {
tst_brkm(TFAIL, cleanup, "fork failed");
} else if (pid > 0) { /* parent */
waitpid(pid, &status, 0);
_exit(0); /*
* Exit here and let the child clean up.
* This allows the errno information set
* by the TEST_ERROR_LOG macro and the
* PASS/FAIL status to be preserved for
* use during cleanup.
*/
} else { /* child */
retval = setreuid(nobody->pw_uid, nobody->pw_uid);
if (retval < 0) {
perror("setreuid");
tst_brkm(TFAIL, cleanup, "setreuid failed");
}
TEST(vhangup());
if (TEST_RETURN != -1) {
tst_brkm(TFAIL, cleanup, "vhangup() failed to "
"fail");
} else if (TEST_ERRNO == EPERM) {
tst_resm(TPASS, "Got EPERM as expected.");
} else {
tst_resm(TFAIL, "expected EPERM got %d",
TEST_ERRNO);
}
}
}
cleanup();
tst_exit();
}
/*
* setup()
* performs all ONE TIME setup for this test
*/
void setup(void)
{
TEST_PAUSE;
}
/*
* cleanup()
* performs all ONE TIME cleanup for this test at
* completion or premature exit
*/
void cleanup(void)
{
}