NetBSD/sys/kern/kern_acct.c

481 lines
14 KiB
C
Raw Normal View History

/* $NetBSD: kern_acct.c,v 1.75 2007/07/09 21:10:51 ad Exp $ */
1994-05-20 14:04:05 +04:00
/*-
* Copyright (c) 1982, 1986, 1989, 1993
* The Regents of the University of California. All rights reserved.
1994-05-17 08:21:49 +04:00
* (c) UNIX System Laboratories, Inc.
* All or some portions of this file are derived from material licensed
* to the University of California by American Telephone and Telegraph
* Co. or Unix System Laboratories, Inc. and are reproduced herein with
* the permission of UNIX System Laboratories, 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.
* 3. Neither the name of the University nor the names of its contributors
* may be used to endorse or promote products derived from this software
* without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE REGENTS 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 REGENTS 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.
*
* @(#)kern_acct.c 8.8 (Berkeley) 5/14/95
*/
/*-
* Copyright (c) 1994 Christopher G. Demetriou
*
* 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.
1994-05-17 08:21:49 +04:00
* 3. All advertising materials mentioning features or use of this software
* must display the following acknowledgement:
* This product includes software developed by the University of
* California, Berkeley and its contributors.
* 4. Neither the name of the University nor the names of its contributors
* may be used to endorse or promote products derived from this software
* without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE REGENTS 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 REGENTS 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.
*
1998-03-01 05:20:01 +03:00
* @(#)kern_acct.c 8.8 (Berkeley) 5/14/95
1994-05-17 08:21:49 +04:00
*/
2001-11-12 18:25:01 +03:00
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: kern_acct.c,v 1.75 2007/07/09 21:10:51 ad Exp $");
2001-11-12 18:25:01 +03:00
1994-05-17 08:21:49 +04:00
#include <sys/param.h>
#include <sys/systm.h>
1994-05-17 08:21:49 +04:00
#include <sys/proc.h>
#include <sys/mount.h>
1994-05-20 14:04:05 +04:00
#include <sys/vnode.h>
1994-05-17 08:21:49 +04:00
#include <sys/file.h>
#include <sys/syslog.h>
1994-05-20 14:04:05 +04:00
#include <sys/kernel.h>
#include <sys/kthread.h>
#include <sys/kmem.h>
1994-05-20 14:05:02 +04:00
#include <sys/namei.h>
#include <sys/errno.h>
#include <sys/acct.h>
#include <sys/resourcevar.h>
#include <sys/ioctl.h>
#include <sys/tty.h>
2006-05-15 01:15:11 +04:00
#include <sys/kauth.h>
1994-05-17 08:21:49 +04:00
#include <sys/syscallargs.h>
1994-05-20 14:05:02 +04:00
/*
* The routines implemented in this file are described in:
* Leffler, et al.: The Design and Implementation of the 4.3BSD
* UNIX Operating System (Addison Welley, 1989)
* on pages 62-63.
*
* Arguably, to simplify accounting operations, this mechanism should
* be replaced by one in which an accounting log file (similar to /dev/klog)
* is read by a user process, etc. However, that has its own problems.
*/
/*
2007-02-10 00:55:00 +03:00
* Mutex to serialize system calls and kernel threads.
*/
kmutex_t acct_lock;
1994-05-20 14:05:02 +04:00
/*
2007-02-10 00:55:00 +03:00
* The global accounting state and related data. Gain the mutex before
* accessing these variables.
1994-05-20 14:05:02 +04:00
*/
static enum {
ACCT_STOP,
ACCT_ACTIVE,
ACCT_SUSPENDED
} acct_state; /* The current accounting state. */
static struct vnode *acct_vp; /* Accounting vnode pointer. */
2006-05-15 01:15:11 +04:00
static kauth_cred_t acct_cred; /* Credential of accounting file
owner (i.e root). Used when
accounting file i/o. */
static struct lwp *acct_dkwatcher; /* Free disk space checker. */
1994-05-20 14:05:02 +04:00
/*
* Values associated with enabling and disabling accounting
*/
int acctsuspend = 2; /* stop accounting when < 2% free space left */
int acctresume = 4; /* resume when free space risen to > 4% */
int acctchkfreq = 15; /* frequency (in seconds) to check space */
/*
* Encode_comp_t converts from ticks in seconds and microseconds
* to ticks in 1/AHZ seconds. The encoding is described in
* Leffler, et al., on page 63.
*/
#define MANTSIZE 13 /* 13 bit mantissa. */
#define EXPSIZE 3 /* Base 8 (3 bit) exponent. */
#define MAXFRACT ((1 << MANTSIZE) - 1) /* Maximum fractional value. */
static comp_t
encode_comp_t(u_long s, u_long us)
{
int exp, rnd;
exp = 0;
rnd = 0;
s *= AHZ;
s += us / (1000000 / AHZ); /* Maximize precision. */
while (s > MAXFRACT) {
rnd = s & (1 << (EXPSIZE - 1)); /* Round up? */
s >>= EXPSIZE; /* Base 8 exponent == 3 bit shift. */
exp++;
}
/* If we need to round up, do it (and handle overflow correctly). */
if (rnd && (++s > MAXFRACT)) {
s >>= EXPSIZE;
exp++;
}
/* Clean it up and polish it off. */
exp <<= MANTSIZE; /* Shift the exponent into place */
exp += s; /* and add on the mantissa. */
return (exp);
}
static int
acct_chkfree(void)
{
int error;
2006-06-12 04:22:47 +04:00
struct statvfs *sb;
int64_t bavail;
sb = kmem_alloc(sizeof(*sb), KM_SLEEP);
if (sb == NULL)
return (ENOMEM);
2006-06-12 04:22:47 +04:00
error = VFS_STATVFS(acct_vp->v_mount, sb, NULL);
if (error != 0) {
kmem_free(sb, sizeof(*sb));
return (error);
}
2006-06-12 04:22:47 +04:00
bavail = sb->f_bfree - sb->f_bresvd;
switch (acct_state) {
case ACCT_SUSPENDED:
2006-06-12 04:22:47 +04:00
if (bavail > acctresume * sb->f_blocks / 100) {
acct_state = ACCT_ACTIVE;
log(LOG_NOTICE, "Accounting resumed\n");
}
break;
case ACCT_ACTIVE:
2006-06-12 04:22:47 +04:00
if (bavail <= acctsuspend * sb->f_blocks / 100) {
acct_state = ACCT_SUSPENDED;
log(LOG_NOTICE, "Accounting suspended\n");
}
break;
case ACCT_STOP:
break;
}
kmem_free(sb, sizeof(*sb));
return (0);
}
static void
acct_stop(void)
{
int error;
if (acct_vp != NULLVP && acct_vp->v_type != VBAD) {
2006-05-15 01:15:11 +04:00
error = vn_close(acct_vp, FWRITE, acct_cred, NULL);
#ifdef DIAGNOSTIC
if (error != 0)
printf("acct_stop: failed to close, errno = %d\n",
error);
#endif
acct_vp = NULLVP;
}
2006-05-15 01:15:11 +04:00
if (acct_cred != NULL) {
kauth_cred_free(acct_cred);
acct_cred = NULL;
}
acct_state = ACCT_STOP;
}
/*
* Periodically check the file system to see if accounting
* should be turned on or off. Beware the case where the vnode
* has been vgone()'d out from underneath us, e.g. when the file
* system containing the accounting file has been forcibly unmounted.
*/
static void
acctwatch(void *arg)
{
int error;
log(LOG_NOTICE, "Accounting started\n");
mutex_enter(&acct_lock);
while (acct_state != ACCT_STOP) {
if (acct_vp->v_type == VBAD) {
log(LOG_NOTICE, "Accounting terminated\n");
acct_stop();
continue;
}
error = acct_chkfree();
#ifdef DIAGNOSTIC
if (error != 0)
printf("acctwatch: failed to statvfs, error = %d\n",
error);
#endif
error = kpause("actwat", false, acctchkfreq * hz, &acct_lock);
#ifdef DIAGNOSTIC
if (error != 0 && error != EWOULDBLOCK)
printf("acctwatch: sleep error %d\n", error);
#endif
}
acct_dkwatcher = NULL;
mutex_exit(&acct_lock);
kthread_exit(0);
}
void
acct_init(void)
{
acct_state = ACCT_STOP;
acct_vp = NULLVP;
2006-05-15 01:15:11 +04:00
acct_cred = NULL;
mutex_init(&acct_lock, MUTEX_DEFAULT, IPL_NONE);
}
1994-05-20 14:05:02 +04:00
/*
* Accounting system call. Written based on the specification and
* previous implementation done by Mark Tinguely.
*/
int
sys_acct(struct lwp *l, void *v, register_t *retval)
1994-05-17 08:21:49 +04:00
{
struct sys_acct_args /* {
1997-10-19 06:00:19 +04:00
syscallarg(const char *) path;
} */ *uap = v;
1994-05-20 14:05:02 +04:00
struct nameidata nd;
int error;
/* Make sure that the caller is root. */
First take at security model abstraction. - Add a few scopes to the kernel: system, network, and machdep. - Add a few more actions/sub-actions (requests), and start using them as opposed to the KAUTH_GENERIC_ISSUSER place-holders. - Introduce a basic set of listeners that implement our "traditional" security model, called "bsd44". This is the default (and only) model we have at the moment. - Update all relevant documentation. - Add some code and docs to help folks who want to actually use this stuff: * There's a sample overlay model, sitting on-top of "bsd44", for fast experimenting with tweaking just a subset of an existing model. This is pretty cool because it's *really* straightforward to do stuff you had to use ugly hacks for until now... * And of course, documentation describing how to do the above for quick reference, including code samples. All of these changes were tested for regressions using a Python-based testsuite that will be (I hope) available soon via pkgsrc. Information about the tests, and how to write new ones, can be found on: http://kauth.linbsd.org/kauthwiki NOTE FOR DEVELOPERS: *PLEASE* don't add any code that does any of the following: - Uses a KAUTH_GENERIC_ISSUSER kauth(9) request, - Checks 'securelevel' directly, - Checks a uid/gid directly. (or if you feel you have to, contact me first) This is still work in progress; It's far from being done, but now it'll be a lot easier. Relevant mailing list threads: http://mail-index.netbsd.org/tech-security/2006/01/25/0011.html http://mail-index.netbsd.org/tech-security/2006/03/24/0001.html http://mail-index.netbsd.org/tech-security/2006/04/18/0000.html http://mail-index.netbsd.org/tech-security/2006/05/15/0000.html http://mail-index.netbsd.org/tech-security/2006/08/01/0000.html http://mail-index.netbsd.org/tech-security/2006/08/25/0000.html Many thanks to YAMAMOTO Takashi, Matt Thomas, and Christos Zoulas for help stablizing kauth(9). Full credit for the regression tests, making sure these changes didn't break anything, goes to Matt Fleming and Jaime Fournier. Happy birthday Randi! :)
2006-09-09 00:58:56 +04:00
if ((error = kauth_authorize_system(l->l_cred, KAUTH_SYSTEM_ACCOUNTING,
0, NULL, NULL, NULL)))
1994-05-20 14:05:02 +04:00
return (error);
1994-05-17 08:21:49 +04:00
/*
1994-05-20 14:05:02 +04:00
* If accounting is to be started to a file, open that file for
* writing and make sure it's a 'normal'.
1994-05-17 08:21:49 +04:00
*/
if (SCARG(uap, path) != NULL) {
struct vattr va;
size_t pad;
NDINIT(&nd, LOOKUP, NOFOLLOW | TRYEMULROOT, UIO_USERSPACE, SCARG(uap, path),
2005-12-11 15:16:03 +03:00
l);
if ((error = vn_open(&nd, FWRITE|O_APPEND, 0)) != 0)
1994-05-20 14:05:02 +04:00
return (error);
if (nd.ni_vp->v_type != VREG) {
VOP_UNLOCK(nd.ni_vp, 0);
error = EACCES;
goto bad;
}
if ((error = VOP_GETATTR(nd.ni_vp, &va, l->l_cred, l)) != 0) {
VOP_UNLOCK(nd.ni_vp, 0);
goto bad;
}
if ((pad = (va.va_size % sizeof(struct acct))) != 0) {
u_quad_t size = va.va_size - pad;
#ifdef DIAGNOSTIC
printf("Size of accounting file not a multiple of "
"%lu - incomplete record truncated\n",
(unsigned long)sizeof(struct acct));
#endif
VATTR_NULL(&va);
va.va_size = size;
error = VOP_SETATTR(nd.ni_vp, &va, l->l_cred, l);
if (error != 0) {
VOP_UNLOCK(nd.ni_vp, 0);
goto bad;
}
1994-05-20 14:05:02 +04:00
}
VOP_UNLOCK(nd.ni_vp, 0);
1994-05-20 14:05:02 +04:00
}
1994-05-17 08:21:49 +04:00
mutex_enter(&acct_lock);
1994-05-17 08:21:49 +04:00
/*
1994-05-20 14:05:02 +04:00
* If accounting was previously enabled, kill the old space-watcher,
* free credential for accounting file i/o,
* ... (and, if no new file was specified, leave).
1994-05-17 08:21:49 +04:00
*/
acct_stop();
if (SCARG(uap, path) == NULL)
goto out;
1994-05-20 14:05:02 +04:00
/*
* Save the new accounting file vnode and credential,
* and schedule the new free space watcher.
1994-05-20 14:05:02 +04:00
*/
acct_state = ACCT_ACTIVE;
acct_vp = nd.ni_vp;
acct_cred = l->l_cred;
2006-05-15 01:15:11 +04:00
kauth_cred_hold(acct_cred);
error = acct_chkfree(); /* Initial guess. */
if (error != 0) {
acct_stop();
goto out;
}
if (acct_dkwatcher == NULL) {
error = kthread_create(PRI_NONE, 0, NULL, acctwatch, NULL,
&acct_dkwatcher, "acctwatch");
if (error != 0)
acct_stop();
}
out:
mutex_exit(&acct_lock);
1994-05-20 14:05:02 +04:00
return (error);
bad:
vn_close(nd.ni_vp, FWRITE, l->l_cred, l);
return error;
1994-05-17 08:21:49 +04:00
}
/*
1994-05-20 14:05:02 +04:00
* Write out process accounting information, on process exit.
* Data to be written out is specified in Leffler, et al.
* and are enumerated below. (They're also noted in the system
* "acct.h" header file.)
1994-05-17 08:21:49 +04:00
*/
int
2005-12-11 15:16:03 +03:00
acct_process(struct lwp *l)
1994-05-20 14:05:02 +04:00
{
struct acct acct;
struct timeval ut, st, tmp;
struct rusage *r;
int t, error = 0;
struct plimit *oplim = NULL;
2005-12-11 15:16:03 +03:00
struct proc *p = l->l_proc;
mutex_enter(&acct_lock);
1994-05-20 14:05:02 +04:00
/* If accounting isn't enabled, don't bother */
if (acct_state != ACCT_ACTIVE)
goto out;
1994-05-20 14:05:02 +04:00
/*
* Raise the file limit so that accounting can't be stopped by
* the user.
*
* XXX We should think about the CPU limit, too.
*/
2007-02-10 00:55:00 +03:00
mutex_enter(&p->p_mutex);
if (p->p_limit->p_refcnt > 1) {
oplim = p->p_limit;
2007-02-10 00:55:00 +03:00
p->p_limit = limcopy(p);
}
p->p_rlimit[RLIMIT_FSIZE].rlim_cur = RLIM_INFINITY;
2007-02-10 00:55:00 +03:00
mutex_exit(&p->p_mutex);
1994-05-20 14:05:02 +04:00
/*
* Get process accounting information.
*/
/* (1) The name of the command that ran */
memcpy(acct.ac_comm, p->p_comm, sizeof(acct.ac_comm));
1994-05-20 14:05:02 +04:00
/* (2) The amount of user and system time that was used */
2007-02-10 00:55:00 +03:00
mutex_enter(&p->p_smutex);
calcru(p, &ut, &st, NULL, NULL);
mutex_exit(&p->p_smutex);
1994-05-20 14:05:02 +04:00
acct.ac_utime = encode_comp_t(ut.tv_sec, ut.tv_usec);
acct.ac_stime = encode_comp_t(st.tv_sec, st.tv_usec);
/* (3) The elapsed time the commmand ran (and its starting time) */
acct.ac_btime = p->p_stats->p_start.tv_sec;
getmicrotime(&tmp);
timersub(&tmp, &p->p_stats->p_start, &tmp);
1994-05-20 14:05:02 +04:00
acct.ac_etime = encode_comp_t(tmp.tv_sec, tmp.tv_usec);
/* (4) The average amount of memory used */
r = &p->p_stats->p_ru;
1995-03-21 16:33:34 +03:00
timeradd(&ut, &st, &tmp);
1994-05-20 14:05:02 +04:00
t = tmp.tv_sec * hz + tmp.tv_usec / tick;
if (t)
acct.ac_mem = (r->ru_ixrss + r->ru_idrss + r->ru_isrss) / t;
else
acct.ac_mem = 0;
/* (5) The number of disk I/O operations done */
1994-05-20 14:05:02 +04:00
acct.ac_io = encode_comp_t(r->ru_inblock + r->ru_oublock, 0);
/* (6) The UID and GID of the process */
acct.ac_uid = kauth_cred_getuid(l->l_cred);
acct.ac_gid = kauth_cred_getgid(l->l_cred);
1994-05-20 14:05:02 +04:00
/* (7) The terminal from which the process was started */
mutex_enter(&proclist_lock);
2007-02-10 00:55:00 +03:00
if ((p->p_lflag & PL_CONTROLT) && p->p_pgrp->pg_session->s_ttyp)
1994-05-20 14:05:02 +04:00
acct.ac_tty = p->p_pgrp->pg_session->s_ttyp->t_dev;
else
acct.ac_tty = NODEV;
mutex_exit(&proclist_lock);
1994-05-20 14:05:02 +04:00
/* (8) The boolean flags that tell how the process terminated, etc. */
acct.ac_flag = p->p_acflag;
/*
* Now, just write the accounting information to the file.
*/
VOP_LEASE(acct_vp, l, l->l_cred, LEASE_WRITE);
error = vn_rdwr(UIO_WRITE, acct_vp, (void *)&acct,
sizeof(acct), (off_t)0, UIO_SYSSPACE, IO_APPEND|IO_UNIT,
2006-05-15 01:15:11 +04:00
acct_cred, NULL, NULL);
if (error != 0)
log(LOG_ERR, "Accounting: write failed %d\n", error);
if (oplim) {
2007-02-10 00:55:00 +03:00
mutex_enter(&p->p_mutex);
limfree(p->p_limit);
p->p_limit = oplim;
2007-02-10 00:55:00 +03:00
mutex_exit(&p->p_mutex);
}
out:
mutex_exit(&acct_lock);
return (error);
1994-05-20 14:05:02 +04:00
}