summaryrefslogtreecommitdiffstats
path: root/tools/regression/priv/priv_settimeofday.c
diff options
context:
space:
mode:
Diffstat (limited to 'tools/regression/priv/priv_settimeofday.c')
-rw-r--r--tools/regression/priv/priv_settimeofday.c55
1 files changed, 31 insertions, 24 deletions
diff --git a/tools/regression/priv/priv_settimeofday.c b/tools/regression/priv/priv_settimeofday.c
index d18582f..df9300e 100644
--- a/tools/regression/priv/priv_settimeofday.c
+++ b/tools/regression/priv/priv_settimeofday.c
@@ -1,5 +1,6 @@
/*-
* Copyright (c) 2006 nCircle Network Security, Inc.
+ * Copyright (c) 2007 Robert N. M. Watson
* All rights reserved.
*
* This software was developed by Robert N. M. Watson for the TrustedBSD
@@ -43,34 +44,40 @@
#include "main.h"
-void
-priv_settimeofday(void)
+static struct timeval now;
+
+int
+priv_settimeofday_setup(int asroot, int injail, struct test *test)
{
- struct timeval tv;
- int error;
- assert_root();
+ if (gettimeofday(&now, NULL) < 0) {
+ warn("priv_settimeofday_setup: gettimeofday");
+ return (-1);
+ }
+ return (0);
+}
- /*
- * Query time.
- */
- if (gettimeofday(&tv, NULL) < 0)
- err(-1, "gettimeofday");
+void
+priv_settimeofday(int asroot, int injail, struct test *test)
+{
+ int error;
- /*
- * Set with privilege.
- */
- if (settimeofday(&tv, NULL) < 0)
- err(-1, "settimeofday as root");
+ error = settimeofday(&now, NULL);
+ if (asroot && injail)
+ expect("priv_settimeofday(asroot, injail)", error, -1,
+ EPERM);
+ if (asroot && !injail)
+ expect("priv_settimeofday(asroot, !injail)", error, 0, 0);
+ if (!asroot && injail)
+ expect("priv_settimeofday(!asroot, injail)", error, -1,
+ EPERM);
+ if (!asroot && !injail)
+ expect("priv_settimeofday(!asroot, !injail)", error, -1,
+ EPERM);
+}
- /*
- * Set without privilege.
- */
- set_euid(UID_OTHER);
+void
+priv_settimeofday_cleanup(int asroot, int injail, struct test *test)
+{
- error = settimeofday(&tv, NULL);
- if (error == 0)
- errx(-1, "settimeofday succeeded as !root");
- if (errno != EPERM)
- errx(-1, "settimeofday wrong errno %d as !root", errno);
}
OpenPOWER on IntegriCloud