summaryrefslogtreecommitdiffstats
path: root/tools/regression/priv/priv_acct.c
blob: bc4a41e77d1d8ec2b175f83562d2cadb44ef52bc (plain)
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
/*-
 * Copyright (c) 2006 nCircle Network Security, Inc.
 * All rights reserved.
 *
 * This software was developed by Robert N. M. Watson for the TrustedBSD
 * Project under contract to nCircle Network Security, Inc.
 *
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions
 * are met:
 * 1. Redistributions of source code must retain the above copyright
 *    notice, this list of conditions and the following disclaimer.
 * 2. Redistributions in binary form must reproduce the above copyright
 *    notice, this list of conditions and the following disclaimer in the
 *    documentation and/or other materials provided with the distribution.
 *
 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
 * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR, NCIRCLE NETWORK SECURITY,
 * INC., OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED
 * TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
 * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
 * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
 * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
 * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 *
 * $FreeBSD$
 */

/*
 * Test that configuring accounting requires privilege.  First check that
 * accounting is not in use on the system to prevent disrupting the
 * accounting service.  Confirm three different state transitions, both as
 * privileged and non-privileged: disabled to enabled, rotate, and enabled to
 * disabled.
 */

#include <sys/types.h>
#include <sys/stat.h>
#include <sys/sysctl.h>

#include <err.h>
#include <errno.h>
#include <stdlib.h>
#include <unistd.h>

#include "main.h"

#define	SYSCTL_NAME	"kern.acct_configured"
#define	PATH_TEMPLATE	"/tmp/acct.XXXXXXXXXXX"

void
priv_acct(void)
{
	char fpath1[1024] = PATH_TEMPLATE;
	char fpath2[1024] = PATH_TEMPLATE;
	int error, fd, i;
	size_t len;

	assert_root();

	/*
	 * Check that accounting isn't already configured in the kernel.
	 */
	len = sizeof(i);
	if (sysctlbyname(SYSCTL_NAME, &i, &len, NULL, 0) < 0)
		err(-1, "sysctlbyname(%s)", SYSCTL_NAME);
	if (i != 0)
		errx(-1, "sysctlbyname(%s) indicates accounting configured",
		    SYSCTL_NAME);

	/*
	 * Create two temporary files to use as accounting targets.
	 */
	fd = mkstemp(fpath1);
	if (fd < 0)
		err(-1, "mkstemp");
	close(fd);
	fd = mkstemp(fpath2);
	if (fd < 0) {
		warn("mkstemp");
		(void)unlink(fpath1);
		exit(-1);
	}

	/*
	 * Change the permissions on the file so that access control on the
	 * file doesn't come into play.
	 */
	if (chmod(fpath1, 0666) < 0) {
		warn("chmod(%s, 0666)", fpath1);
		goto out;
	}

	if (chmod(fpath2, 0666) < 0) {
		warn("chmod(%s, 0600)", fpath2);
		goto out;
	}

	/*
	 * Test that privileged can move through entire life cycle.
	 */
	if (acct(fpath1) < 0) {
		warn("acct(NULL -> %s) as root", fpath1);
		goto out;
	}

	if (acct(fpath2) < 0) {
		warn("acct(%s -> %s) as root", fpath1, fpath2);
		goto out;
	}

	if (acct(NULL) < 0) {
		warn("acct(%s -> NULL) as root", fpath1);
		goto out;
	}

	/*
	 * Testing for unprivileged is a bit more tricky, as expect each step
	 * to fail, so must replay various bits of the setup process as root
	 * so that each step can be tested as !root.
	 */
	set_euid(UID_OTHER);
	error = acct(fpath1);
	if (error == 0) {
		warnx("acct(NULL -> %s) succeeded as !root", fpath1);
		goto out;
	}
	if (errno != EPERM) {
		warn("acct(NULL -> %s) wrong errno %d as !root", fpath1,
		    errno);
		goto out;
	}

	set_euid(UID_ROOT);
	if (acct(fpath1) < 0) {
		err(-1, "acct(NULL -> %s) setup for !root", fpath1);
		goto out;
	}

	set_euid(UID_OTHER);
	error = acct(fpath2);
	if (error == 0) {
		warnx("acct(%s -> %s) succeeded as !root", fpath1, fpath2);
		goto out;
	}
	if (errno != EPERM) {
		warn("acct(%s -> %s) wrong errno %d as !root", fpath1,
		    fpath2, errno);
		goto out;
	}

	set_euid(UID_ROOT);
	if (acct(fpath2) < 0) {
		err(-1, "acct(%s -> %s) setup for !root", fpath1, fpath2);
		goto out;
	}

	set_euid(UID_OTHER);
	error = acct(NULL);
	if (error == 0) {
		warnx("acct(%s -> NULL) succeeded as !root", fpath2);
		goto out;
	}
	if (errno != EPERM) {
		warn("acct(%s -> NULL) wrong errno %d as !root", fpath2,
		    errno);
		goto out;
	}

out:
	(void)seteuid(UID_ROOT);
	(void)acct(NULL);
	(void)unlink(fpath1);
	(void)unlink(fpath2);
}
OpenPOWER on IntegriCloud