]>
git.saurik.com Git - apple/xnu.git/blob - bsd/kern/kern_acct.c
2 * Copyright (c) 2000-2007 Apple Inc. All rights reserved.
4 * @APPLE_OSREFERENCE_LICENSE_HEADER_START@
6 * This file contains Original Code and/or Modifications of Original Code
7 * as defined in and that are subject to the Apple Public Source License
8 * Version 2.0 (the 'License'). You may not use this file except in
9 * compliance with the License. The rights granted to you under the License
10 * may not be used to create, or enable the creation or redistribution of,
11 * unlawful or unlicensed copies of an Apple operating system, or to
12 * circumvent, violate, or enable the circumvention or violation of, any
13 * terms of an Apple operating system software license agreement.
15 * Please obtain a copy of the License at
16 * http://www.opensource.apple.com/apsl/ and read it before using this file.
18 * The Original Code and all software distributed under the License are
19 * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
20 * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
21 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
22 * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT.
23 * Please see the License for the specific language governing rights and
24 * limitations under the License.
26 * @APPLE_OSREFERENCE_LICENSE_HEADER_END@
28 /* Copyright (c) 1995 NeXT Computer, Inc. All Rights Reserved */
30 * Copyright (c) 1982, 1986, 1989, 1993
31 * The Regents of the University of California. All rights reserved.
32 * (c) UNIX System Laboratories, Inc.
33 * All or some portions of this file are derived from material licensed
34 * to the University of California by American Telephone and Telegraph
35 * Co. or Unix System Laboratories, Inc. and are reproduced herein with
36 * the permission of UNIX System Laboratories, Inc.
38 * Redistribution and use in source and binary forms, with or without
39 * modification, are permitted provided that the following conditions
41 * 1. Redistributions of source code must retain the above copyright
42 * notice, this list of conditions and the following disclaimer.
43 * 2. Redistributions in binary form must reproduce the above copyright
44 * notice, this list of conditions and the following disclaimer in the
45 * documentation and/or other materials provided with the distribution.
46 * 3. All advertising materials mentioning features or use of this software
47 * must display the following acknowledgement:
48 * This product includes software developed by the University of
49 * California, Berkeley and its contributors.
50 * 4. Neither the name of the University nor the names of its contributors
51 * may be used to endorse or promote products derived from this software
52 * without specific prior written permission.
54 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
55 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
56 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
57 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
58 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
59 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
60 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
61 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
62 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
63 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
66 * @(#)kern_acct.c 8.1 (Berkeley) 6/14/93
69 * 08-May-95 Mac Gillon (mgillon) at NeXT
71 * New version based on 4.4
74 * NOTICE: This file was modified by SPARTA, Inc. in 2005 to introduce
75 * support for mandatory and extensible security protections. This notice
76 * is included in support of clause 2.2 (b) of the Apple Public License,
81 #include <sys/param.h>
82 #include <sys/proc_internal.h>
83 #include <sys/kauth.h>
84 #include <sys/mount_internal.h>
85 #include <sys/vnode_internal.h>
86 #include <sys/file_internal.h>
87 #include <sys/syslog.h>
88 #include <sys/kernel.h>
89 #include <sys/namei.h>
90 #include <sys/errno.h>
92 #include <sys/resourcevar.h>
93 #include <sys/ioctl.h>
95 #include <sys/sysproto.h>
96 #include <machine/spl.h>
98 #include <security/mac_framework.h>
102 * The routines implemented in this file are described in:
103 * Leffler, et al.: The Design and Implementation of the 4.3BSD
104 * UNIX Operating System (Addison Welley, 1989)
107 * Arguably, to simplify accounting operations, this mechanism should
108 * be replaced by one in which an accounting log file (similar to /dev/klog)
109 * is read by a user process, etc. However, that has its own problems.
113 * Internal accounting functions.
114 * The former's operation is described in Leffler, et al., and the latter
115 * was provided by UCB with the 4.4BSD-Lite release
117 comp_t
encode_comp_t(u_long
, u_long
);
118 void acctwatch(void *);
119 void acctwatch_funnel(void *);
122 * Accounting vnode pointer, and suspended accounting vnode pointer. States
125 * acctp suspend_acctp state
126 * ------------- ------------ ------------------------------
127 * NULL NULL Accounting disabled
128 * !NULL NULL Accounting enabled
129 * NULL !NULL Accounting enabled, but suspended
130 * !NULL !NULL <not allowed>
133 struct vnode
*suspend_acctp
;
136 * Values associated with enabling and disabling accounting
138 int acctsuspend
= 2; /* stop accounting when < 2% free space left */
139 int acctresume
= 4; /* resume when free space risen to > 4% */
140 int acctchkfreq
= 15; /* frequency (in seconds) to check space */
143 * Accounting system call. Written based on the specification and
144 * previous implementation done by Mark Tinguely.
147 acct(proc_t p
, struct acct_args
*uap
, __unused
int *retval
)
151 struct vfs_context
*ctx
;
153 ctx
= vfs_context_current();
155 /* Make sure that the caller is root. */
156 if ((error
= suser(vfs_context_ucred(ctx
), &p
->p_acflag
)))
160 * If accounting is to be started to a file, open that file for
161 * writing and make sure it's a 'normal'.
163 if (uap
->path
!= USER_ADDR_NULL
) {
164 NDINIT(&nd
, LOOKUP
, NOFOLLOW
, UIO_USERSPACE
, uap
->path
, ctx
);
165 if ((error
= vn_open(&nd
, FWRITE
, 0)))
168 error
= mac_system_check_acct(vfs_context_ucred(ctx
), nd
.ni_vp
);
171 vn_close(nd
.ni_vp
, FWRITE
, ctx
);
177 if (nd
.ni_vp
->v_type
!= VREG
) {
178 vn_close(nd
.ni_vp
, FWRITE
, ctx
);
184 error
= mac_system_check_acct(vfs_context_ucred(ctx
), NULL
);
191 * If accounting was previously enabled, kill the old space-watcher,
192 * close the file, and (if no new file was specified, leave).
194 if (acctp
!= NULLVP
|| suspend_acctp
!= NULLVP
) {
195 untimeout(acctwatch_funnel
, NULL
);
196 error
= vn_close((acctp
!= NULLVP
? acctp
: suspend_acctp
),
197 FWRITE
, vfs_context_current());
199 acctp
= suspend_acctp
= NULLVP
;
201 if (uap
->path
== USER_ADDR_NULL
)
205 * Save the new accounting file vnode, and schedule the new
206 * free space watcher.
214 * Write out process accounting information, on process exit.
215 * Data to be written out is specified in Leffler, et al.
216 * and are enumerated below. (They're also noted in the system
217 * "acct.h" header file.)
220 acct_process(proc_t p
)
223 struct rusage rup
, *r
;
224 struct timeval ut
, st
, tmp
;
228 kauth_cred_t safecred
;
229 struct session
* sessp
;
232 /* If accounting isn't enabled, don't bother */
238 * Get process accounting information.
241 /* (1) The name of the command that ran */
242 bcopy(p
->p_comm
, an_acct
.ac_comm
, sizeof an_acct
.ac_comm
);
244 /* (2) The amount of user and system time that was used */
245 calcru(p
, &ut
, &st
, NULL
);
246 an_acct
.ac_utime
= encode_comp_t(ut
.tv_sec
, ut
.tv_usec
);
247 an_acct
.ac_stime
= encode_comp_t(st
.tv_sec
, st
.tv_usec
);
249 /* (3) The elapsed time the commmand ran (and its starting time) */
250 an_acct
.ac_btime
= p
->p_start
.tv_sec
;
252 timevalsub(&tmp
, &p
->p_start
);
253 an_acct
.ac_etime
= encode_comp_t(tmp
.tv_sec
, tmp
.tv_usec
);
255 /* (4) The average amount of memory used */
257 rup
= p
->p_stats
->p_ru
;
261 timevaladd(&tmp
, &st
);
262 t
= tmp
.tv_sec
* hz
+ tmp
.tv_usec
/ tick
;
264 an_acct
.ac_mem
= (r
->ru_ixrss
+ r
->ru_idrss
+ r
->ru_isrss
) / t
;
268 /* (5) The number of disk I/O operations done */
269 an_acct
.ac_io
= encode_comp_t(r
->ru_inblock
+ r
->ru_oublock
, 0);
271 /* (6) The UID and GID of the process */
272 safecred
= kauth_cred_proc_ref(p
);
274 an_acct
.ac_uid
= safecred
->cr_ruid
;
275 an_acct
.ac_gid
= safecred
->cr_rgid
;
277 /* (7) The terminal from which the process was started */
279 sessp
= proc_session(p
);
280 if ((p
->p_flag
& P_CONTROLT
) && (sessp
!= SESSION_NULL
) && (sessp
->s_ttyp
!= TTY_NULL
)) {
281 fstate
= thread_funnel_set(kernel_flock
, TRUE
);
282 an_acct
.ac_tty
= sessp
->s_ttyp
->t_dev
;
283 (void) thread_funnel_set(kernel_flock
, fstate
);
285 an_acct
.ac_tty
= NODEV
;
287 if (sessp
!= SESSION_NULL
)
290 /* (8) The boolean flags that tell how the process terminated, etc. */
291 an_acct
.ac_flag
= p
->p_acflag
;
294 * Now, just write the accounting information to the file.
296 if ((error
= vnode_getwithref(vp
)) == 0) {
297 error
= vn_rdwr(UIO_WRITE
, vp
, (caddr_t
)&an_acct
, sizeof (an_acct
),
298 (off_t
)0, UIO_SYSSPACE32
, IO_APPEND
|IO_UNIT
, safecred
,
303 kauth_cred_unref(&safecred
);
308 * Encode_comp_t converts from ticks in seconds and microseconds
309 * to ticks in 1/AHZ seconds. The encoding is described in
310 * Leffler, et al., on page 63.
313 #define MANTSIZE 13 /* 13 bit mantissa. */
314 #define EXPSIZE 3 /* Base 8 (3 bit) exponent. */
315 #define MAXFRACT ((1 << MANTSIZE) - 1) /* Maximum fractional value. */
318 encode_comp_t(u_long s
, u_long us
)
325 s
+= us
/ (1000000 / AHZ
); /* Maximize precision. */
327 while (s
> MAXFRACT
) {
328 rnd
= s
& (1 << (EXPSIZE
- 1)); /* Round up? */
329 s
>>= EXPSIZE
; /* Base 8 exponent == 3 bit shift. */
333 /* If we need to round up, do it (and handle overflow correctly). */
334 if (rnd
&& (++s
> MAXFRACT
)) {
339 /* Clean it up and polish it off. */
340 exp
<<= MANTSIZE
; /* Shift the exponent into place */
341 exp
+= s
; /* and add on the mantissa. */
346 acctwatch_funnel(void *a
)
348 thread_funnel_set(kernel_flock
, TRUE
);
350 thread_funnel_set(kernel_flock
, FALSE
);
355 * Periodically check the file system to see if accounting
356 * should be turned on or off. Beware the case where the vnode
357 * has been vgone()'d out from underneath us, e.g. when the file
358 * system containing the accounting file has been forcibly unmounted.
362 acctwatch(__unused
void *a
)
364 vfs_context_t ctx
= vfs_context_current();
368 VFSATTR_WANTED(&va
, f_blocks
);
369 VFSATTR_WANTED(&va
, f_bavail
);
371 if (suspend_acctp
!= NULLVP
) {
373 * Resuming accounting when accounting is suspended, and the
374 * filesystem containing the suspended accounting file goes
375 * below a low watermark
377 if (suspend_acctp
->v_type
== VBAD
) {
378 (void) vn_close(suspend_acctp
, FWRITE
, vfs_context_kernel());
379 suspend_acctp
= NULLVP
;
382 (void)vfs_getattr(suspend_acctp
->v_mount
, &va
, ctx
);
383 if (va
.f_bavail
> acctresume
* va
.f_blocks
/ 100) {
384 acctp
= suspend_acctp
;
385 suspend_acctp
= NULLVP
;
386 log(LOG_NOTICE
, "Accounting resumed\n");
388 } else if (acctp
!= NULLVP
) {
390 * Suspending accounting when accounting is currently active,
391 * and the filesystem containing the active accounting file
392 * goes over a high watermark
394 if (acctp
->v_type
== VBAD
) {
395 (void) vn_close(acctp
, FWRITE
, vfs_context_kernel());
399 (void)vfs_getattr(acctp
->v_mount
, &va
, ctx
);
400 if (va
.f_bavail
<= acctsuspend
* va
.f_blocks
/ 100) {
401 suspend_acctp
= acctp
;
403 log(LOG_NOTICE
, "Accounting suspended\n");
409 timeout(acctwatch_funnel
, NULL
, acctchkfreq
* hz
);