1 /*- 2 * Copyright (c) 1994 Christopher G. Demetriou 3 * Copyright (c) 1982, 1986, 1989, 1993 4 * The Regents of the University of California. All rights reserved. 5 * (c) UNIX System Laboratories, Inc. 6 * All or some portions of this file are derived from material licensed 7 * to the University of California by American Telephone and Telegraph 8 * Co. or Unix System Laboratories, Inc. and are reproduced herein with 9 * the permission of UNIX System Laboratories, Inc. 10 * 11 * Redistribution and use in source and binary forms, with or without 12 * modification, are permitted provided that the following conditions 13 * are met: 14 * 1. Redistributions of source code must retain the above copyright 15 * notice, this list of conditions and the following disclaimer. 16 * 2. Redistributions in binary form must reproduce the above copyright 17 * notice, this list of conditions and the following disclaimer in the 18 * documentation and/or other materials provided with the distribution. 19 * 3. All advertising materials mentioning features or use of this software 20 * must display the following acknowledgement: 21 * This product includes software developed by the University of 22 * California, Berkeley and its contributors. 23 * 4. Neither the name of the University nor the names of its contributors 24 * may be used to endorse or promote products derived from this software 25 * without specific prior written permission. 26 * 27 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND 28 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 29 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 30 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE 31 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 32 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 33 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 34 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 35 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 36 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 37 * SUCH DAMAGE. 38 * 39 * @(#)kern_acct.c 8.1 (Berkeley) 6/14/93 40 * $FreeBSD$ 41 */ 42 43 #include <sys/param.h> 44 #include <sys/systm.h> 45 #include <sys/lock.h> 46 #include <sys/mutex.h> 47 #include <sys/sysproto.h> 48 #include <sys/proc.h> 49 #include <sys/mount.h> 50 #include <sys/vnode.h> 51 #include <sys/fcntl.h> 52 #include <sys/syslog.h> 53 #include <sys/kernel.h> 54 #include <sys/sysent.h> 55 #include <sys/sysctl.h> 56 #include <sys/namei.h> 57 #include <sys/acct.h> 58 #include <sys/resourcevar.h> 59 #include <sys/tty.h> 60 61 62 /* 63 * The routines implemented in this file are described in: 64 * Leffler, et al.: The Design and Implementation of the 4.3BSD 65 * UNIX Operating System (Addison Welley, 1989) 66 * on pages 62-63. 67 * 68 * Arguably, to simplify accounting operations, this mechanism should 69 * be replaced by one in which an accounting log file (similar to /dev/klog) 70 * is read by a user process, etc. However, that has its own problems. 71 */ 72 73 /* 74 * Internal accounting functions. 75 * The former's operation is described in Leffler, et al., and the latter 76 * was provided by UCB with the 4.4BSD-Lite release 77 */ 78 static comp_t encode_comp_t __P((u_long, u_long)); 79 static void acctwatch __P((void *)); 80 81 /* 82 * Accounting callout used for periodic scheduling of acctwatch. 83 */ 84 static struct callout acctwatch_callout; 85 86 /* 87 * Accounting vnode pointer, and saved vnode pointer. 88 */ 89 static struct vnode *acctp; 90 static struct vnode *savacctp; 91 92 /* 93 * Values associated with enabling and disabling accounting 94 */ 95 static int acctsuspend = 2; /* stop accounting when < 2% free space left */ 96 SYSCTL_INT(_kern, OID_AUTO, acct_suspend, CTLFLAG_RW, 97 &acctsuspend, 0, "percentage of free disk space below which accounting stops"); 98 99 static int acctresume = 4; /* resume when free space risen to > 4% */ 100 SYSCTL_INT(_kern, OID_AUTO, acct_resume, CTLFLAG_RW, 101 &acctresume, 0, "percentage of free disk space above which accounting resumes"); 102 103 static int acctchkfreq = 15; /* frequency (in seconds) to check space */ 104 SYSCTL_INT(_kern, OID_AUTO, acct_chkfreq, CTLFLAG_RW, 105 &acctchkfreq, 0, "frequency for checking the free space"); 106 107 /* 108 * Accounting system call. Written based on the specification and 109 * previous implementation done by Mark Tinguely. 110 */ 111 int 112 acct(a1, uap) 113 struct proc *a1; 114 struct acct_args /* { 115 syscallarg(char *) path; 116 } */ *uap; 117 { 118 struct proc *p = curproc; /* XXX */ 119 struct nameidata nd; 120 int error, flags; 121 122 /* Make sure that the caller is root. */ 123 error = suser(p); 124 if (error) 125 return (error); 126 127 /* 128 * If accounting is to be started to a file, open that file for 129 * writing and make sure it's a 'normal'. 130 */ 131 if (SCARG(uap, path) != NULL) { 132 NDINIT(&nd, LOOKUP, NOFOLLOW, UIO_USERSPACE, SCARG(uap, path), 133 p); 134 flags = FWRITE; 135 error = vn_open(&nd, &flags, 0); 136 if (error) 137 return (error); 138 NDFREE(&nd, NDF_ONLY_PNBUF); 139 VOP_UNLOCK(nd.ni_vp, 0, p); 140 if (nd.ni_vp->v_type != VREG) { 141 vn_close(nd.ni_vp, FWRITE, p->p_ucred, p); 142 return (EACCES); 143 } 144 } 145 146 /* 147 * If accounting was previously enabled, kill the old space-watcher, 148 * close the file, and (if no new file was specified, leave). 149 */ 150 if (acctp != NULLVP || savacctp != NULLVP) { 151 callout_stop(&acctwatch_callout); 152 error = vn_close((acctp != NULLVP ? acctp : savacctp), FWRITE, 153 p->p_ucred, p); 154 acctp = savacctp = NULLVP; 155 } 156 if (SCARG(uap, path) == NULL) 157 return (error); 158 159 /* 160 * Save the new accounting file vnode, and schedule the new 161 * free space watcher. 162 */ 163 acctp = nd.ni_vp; 164 callout_init(&acctwatch_callout, 0); 165 acctwatch(NULL); 166 return (error); 167 } 168 169 /* 170 * Write out process accounting information, on process exit. 171 * Data to be written out is specified in Leffler, et al. 172 * and are enumerated below. (They're also noted in the system 173 * "acct.h" header file.) 174 */ 175 176 int 177 acct_process(p) 178 struct proc *p; 179 { 180 struct acct acct; 181 struct rusage *r; 182 struct timeval ut, st, tmp; 183 int t; 184 struct vnode *vp; 185 186 /* If accounting isn't enabled, don't bother */ 187 vp = acctp; 188 if (vp == NULLVP) 189 return (0); 190 191 /* 192 * Get process accounting information. 193 */ 194 195 /* (1) The name of the command that ran */ 196 bcopy(p->p_comm, acct.ac_comm, sizeof acct.ac_comm); 197 198 /* (2) The amount of user and system time that was used */ 199 mtx_lock_spin(&sched_lock); 200 calcru(p, &ut, &st, NULL); 201 mtx_unlock_spin(&sched_lock); 202 acct.ac_utime = encode_comp_t(ut.tv_sec, ut.tv_usec); 203 acct.ac_stime = encode_comp_t(st.tv_sec, st.tv_usec); 204 205 /* (3) The elapsed time the commmand ran (and its starting time) */ 206 acct.ac_btime = p->p_stats->p_start.tv_sec; 207 microtime(&tmp); 208 timevalsub(&tmp, &p->p_stats->p_start); 209 acct.ac_etime = encode_comp_t(tmp.tv_sec, tmp.tv_usec); 210 211 /* (4) The average amount of memory used */ 212 r = &p->p_stats->p_ru; 213 tmp = ut; 214 timevaladd(&tmp, &st); 215 t = tmp.tv_sec * hz + tmp.tv_usec / tick; 216 if (t) 217 acct.ac_mem = (r->ru_ixrss + r->ru_idrss + r->ru_isrss) / t; 218 else 219 acct.ac_mem = 0; 220 221 /* (5) The number of disk I/O operations done */ 222 acct.ac_io = encode_comp_t(r->ru_inblock + r->ru_oublock, 0); 223 224 /* (6) The UID and GID of the process */ 225 acct.ac_uid = p->p_ucred->cr_ruid; 226 acct.ac_gid = p->p_ucred->cr_rgid; 227 228 /* (7) The terminal from which the process was started */ 229 if ((p->p_flag & P_CONTROLT) && p->p_pgrp->pg_session->s_ttyp) 230 acct.ac_tty = dev2udev(p->p_pgrp->pg_session->s_ttyp->t_dev); 231 else 232 acct.ac_tty = NOUDEV; 233 234 /* (8) The boolean flags that tell how the process terminated, etc. */ 235 acct.ac_flag = p->p_acflag; 236 237 /* 238 * Eliminate any file size rlimit. 239 */ 240 if (p->p_limit->p_refcnt > 1 && 241 (p->p_limit->p_lflags & PL_SHAREMOD) == 0) { 242 p->p_limit->p_refcnt--; 243 p->p_limit = limcopy(p->p_limit); 244 } 245 p->p_rlimit[RLIMIT_FSIZE].rlim_cur = RLIM_INFINITY; 246 247 /* 248 * Write the accounting information to the file. 249 */ 250 VOP_LEASE(vp, p, p->p_ucred, LEASE_WRITE); 251 return (vn_rdwr(UIO_WRITE, vp, (caddr_t)&acct, sizeof (acct), 252 (off_t)0, UIO_SYSSPACE, IO_APPEND|IO_UNIT, p->p_ucred, 253 (int *)0, p)); 254 } 255 256 /* 257 * Encode_comp_t converts from ticks in seconds and microseconds 258 * to ticks in 1/AHZ seconds. The encoding is described in 259 * Leffler, et al., on page 63. 260 */ 261 262 #define MANTSIZE 13 /* 13 bit mantissa. */ 263 #define EXPSIZE 3 /* Base 8 (3 bit) exponent. */ 264 #define MAXFRACT ((1 << MANTSIZE) - 1) /* Maximum fractional value. */ 265 266 static comp_t 267 encode_comp_t(s, us) 268 u_long s, us; 269 { 270 int exp, rnd; 271 272 exp = 0; 273 rnd = 0; 274 s *= AHZ; 275 s += us / (1000000 / AHZ); /* Maximize precision. */ 276 277 while (s > MAXFRACT) { 278 rnd = s & (1 << (EXPSIZE - 1)); /* Round up? */ 279 s >>= EXPSIZE; /* Base 8 exponent == 3 bit shift. */ 280 exp++; 281 } 282 283 /* If we need to round up, do it (and handle overflow correctly). */ 284 if (rnd && (++s > MAXFRACT)) { 285 s >>= EXPSIZE; 286 exp++; 287 } 288 289 /* Clean it up and polish it off. */ 290 exp <<= MANTSIZE; /* Shift the exponent into place */ 291 exp += s; /* and add on the mantissa. */ 292 return (exp); 293 } 294 295 /* 296 * Periodically check the file system to see if accounting 297 * should be turned on or off. Beware the case where the vnode 298 * has been vgone()'d out from underneath us, e.g. when the file 299 * system containing the accounting file has been forcibly unmounted. 300 */ 301 /* ARGSUSED */ 302 static void 303 acctwatch(a) 304 void *a; 305 { 306 struct statfs sb; 307 308 if (savacctp != NULLVP) { 309 if (savacctp->v_type == VBAD) { 310 (void) vn_close(savacctp, FWRITE, NOCRED, NULL); 311 savacctp = NULLVP; 312 return; 313 } 314 (void)VFS_STATFS(savacctp->v_mount, &sb, (struct proc *)0); 315 if (sb.f_bavail > acctresume * sb.f_blocks / 100) { 316 acctp = savacctp; 317 savacctp = NULLVP; 318 log(LOG_NOTICE, "Accounting resumed\n"); 319 } 320 } else { 321 if (acctp == NULLVP) 322 return; 323 if (acctp->v_type == VBAD) { 324 (void) vn_close(acctp, FWRITE, NOCRED, NULL); 325 acctp = NULLVP; 326 return; 327 } 328 (void)VFS_STATFS(acctp->v_mount, &sb, (struct proc *)0); 329 if (sb.f_bavail <= acctsuspend * sb.f_blocks / 100) { 330 savacctp = acctp; 331 acctp = NULLVP; 332 log(LOG_NOTICE, "Accounting suspended\n"); 333 } 334 } 335 callout_reset(&acctwatch_callout, acctchkfreq * hz, acctwatch, NULL); 336 } 337