blob: 6fd375f1562696ac7774079e43b9737bcddf5c45 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/kernel/acct.c
3 *
4 * BSD Process Accounting for Linux
5 *
6 * Author: Marco van Wieringen <mvw@planets.elm.net>
7 *
8 * Some code based on ideas and code from:
9 * Thomas K. Dyas <tdyas@eden.rutgers.edu>
10 *
11 * This file implements BSD-style process accounting. Whenever any
12 * process exits, an accounting record of type "struct acct" is
13 * written to the file specified with the acct() system call. It is
14 * up to user-level programs to do useful things with the accounting
15 * log. The kernel just provides the raw accounting information.
16 *
17 * (C) Copyright 1995 - 1997 Marco van Wieringen - ELM Consultancy B.V.
18 *
19 * Plugged two leaks. 1) It didn't return acct_file into the free_filps if
20 * the file happened to be read-only. 2) If the accounting was suspended
21 * due to the lack of space it happily allowed to reopen it and completely
22 * lost the old acct_file. 3/10/98, Al Viro.
23 *
24 * Now we silently close acct_file on attempt to reopen. Cleaned sys_acct().
25 * XTerms and EMACS are manifestations of pure evil. 21/10/98, AV.
26 *
27 * Fixed a nasty interaction with with sys_umount(). If the accointing
28 * was suspeneded we failed to stop it on umount(). Messy.
29 * Another one: remount to readonly didn't stop accounting.
30 * Question: what should we do if we have CAP_SYS_ADMIN but not
31 * CAP_SYS_PACCT? Current code does the following: umount returns -EBUSY
32 * unless we are messing with the root. In that case we are getting a
33 * real mess with do_remount_sb(). 9/11/98, AV.
34 *
35 * Fixed a bunch of races (and pair of leaks). Probably not the best way,
36 * but this one obviously doesn't introduce deadlocks. Later. BTW, found
37 * one race (and leak) in BSD implementation.
38 * OK, that's better. ANOTHER race and leak in BSD variant. There always
39 * is one more bug... 10/11/98, AV.
40 *
41 * Oh, fsck... Oopsable SMP race in do_process_acct() - we must hold
42 * ->mmap_sem to walk the vma list of current->mm. Nasty, since it leaks
43 * a struct file opened for write. Fixed. 2/6/2000, AV.
44 */
45
Linus Torvalds1da177e2005-04-16 15:20:36 -070046#include <linux/mm.h>
47#include <linux/slab.h>
48#include <linux/acct.h>
Randy.Dunlapc59ede72006-01-11 12:17:46 -080049#include <linux/capability.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070050#include <linux/file.h>
51#include <linux/tty.h>
52#include <linux/security.h>
53#include <linux/vfs.h>
54#include <linux/jiffies.h>
55#include <linux/times.h>
56#include <linux/syscalls.h>
Al Viro7b7b1ac2005-11-07 17:13:39 -050057#include <linux/mount.h>
Paul McQuade7153e402014-06-06 14:37:37 -070058#include <linux/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070059#include <asm/div64.h>
60#include <linux/blkdev.h> /* sector_div */
Pavel Emelyanov5f7b7032008-03-24 12:29:53 -070061#include <linux/pid_namespace.h>
Al Viro215752f2014-08-07 06:23:41 -040062#include <../fs/mount.h> /* will go away when we refactor */
Linus Torvalds1da177e2005-04-16 15:20:36 -070063
64/*
65 * These constants control the amount of freespace that suspend and
66 * resume the process accounting system, and the time delay between
67 * each check.
68 * Turned into sysctl-controllable parameters. AV, 12/11/98
69 */
70
71int acct_parm[3] = {4, 2, 30};
72#define RESUME (acct_parm[0]) /* >foo% free space - resume */
73#define SUSPEND (acct_parm[1]) /* <foo% free space - suspend */
74#define ACCT_TIMEOUT (acct_parm[2]) /* foo second timeout between checks */
75
76/*
77 * External references and all of the globals.
78 */
Al Virob8f00e62014-08-07 07:51:03 -040079static void do_acct_process(struct bsd_acct_struct *acct);
Linus Torvalds1da177e2005-04-16 15:20:36 -070080
Pavel Emelyanov081e4c82008-07-25 01:48:42 -070081struct bsd_acct_struct {
Al Viro2798d4c2014-08-07 07:04:28 -040082 atomic_long_t count;
83 union {
84 struct {
85 struct hlist_node s_list;
86 struct hlist_node m_list;
87 };
88 struct rcu_head rcu;
89 };
Al Virob8f00e62014-08-07 07:51:03 -040090 struct mutex lock;
Al Viro32dc7302011-12-08 20:08:42 -050091 int active;
92 unsigned long needcheck;
Linus Torvalds1da177e2005-04-16 15:20:36 -070093 struct file *file;
Pavel Emelyanov5f7b7032008-03-24 12:29:53 -070094 struct pid_namespace *ns;
Linus Torvalds1da177e2005-04-16 15:20:36 -070095};
96
Al Viro2798d4c2014-08-07 07:04:28 -040097static void acct_free_rcu(struct rcu_head *head)
98{
99 kfree(container_of(head, struct bsd_acct_struct, rcu));
100}
101
Pavel Emelyanova75d9792008-07-25 01:48:45 -0700102static DEFINE_SPINLOCK(acct_lock);
103
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105 * Check the amount of free space and suspend/resume accordingly.
106 */
Al Viro54a4d582014-04-19 14:24:18 -0400107static int check_free_space(struct bsd_acct_struct *acct)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108{
109 struct kstatfs sbuf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110
Al Viro54a4d582014-04-19 14:24:18 -0400111 if (time_is_before_jiffies(acct->needcheck))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113
114 /* May block */
Al Viro54a4d582014-04-19 14:24:18 -0400115 if (vfs_statfs(&acct->file->f_path, &sbuf))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117
Pavel Emelyanov6248b1b2008-07-25 01:48:46 -0700118 if (acct->active) {
Al Viro54a4d582014-04-19 14:24:18 -0400119 u64 suspend = sbuf.f_blocks * SUSPEND;
120 do_div(suspend, 100);
121 if (sbuf.f_bavail <= suspend) {
Pavel Emelyanov6248b1b2008-07-25 01:48:46 -0700122 acct->active = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123 printk(KERN_INFO "Process accounting paused\n");
124 }
125 } else {
Al Viro54a4d582014-04-19 14:24:18 -0400126 u64 resume = sbuf.f_blocks * RESUME;
127 do_div(resume, 100);
128 if (sbuf.f_bavail >= resume) {
Pavel Emelyanov6248b1b2008-07-25 01:48:46 -0700129 acct->active = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130 printk(KERN_INFO "Process accounting resumed\n");
131 }
132 }
133
Al Viro32dc7302011-12-08 20:08:42 -0500134 acct->needcheck = jiffies + ACCT_TIMEOUT*HZ;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135out:
Al Viro54a4d582014-04-19 14:24:18 -0400136 return acct->active;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137}
138
Al Virob8f00e62014-08-07 07:51:03 -0400139static void acct_put(struct bsd_acct_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140{
Al Viro2798d4c2014-08-07 07:04:28 -0400141 if (atomic_long_dec_and_test(&p->count))
142 call_rcu(&p->rcu, acct_free_rcu);
Al Virob8f00e62014-08-07 07:51:03 -0400143}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144
Al Viro215752f2014-08-07 06:23:41 -0400145static struct bsd_acct_struct *__acct_get(struct bsd_acct_struct *res)
146{
Al Viro2798d4c2014-08-07 07:04:28 -0400147 if (!atomic_long_inc_not_zero(&res->count)) {
148 rcu_read_unlock();
149 cpu_relax();
150 return NULL;
151 }
152 rcu_read_unlock();
Al Viro215752f2014-08-07 06:23:41 -0400153 mutex_lock(&res->lock);
154 if (!res->ns) {
155 mutex_unlock(&res->lock);
Al Viro2798d4c2014-08-07 07:04:28 -0400156 acct_put(res);
Al Viro215752f2014-08-07 06:23:41 -0400157 return NULL;
158 }
159 return res;
160}
161
162static struct bsd_acct_struct *acct_get(struct pid_namespace *ns)
Al Virob8f00e62014-08-07 07:51:03 -0400163{
164 struct bsd_acct_struct *res;
Al Virob8f00e62014-08-07 07:51:03 -0400165again:
Al Viro2798d4c2014-08-07 07:04:28 -0400166 smp_rmb();
167 rcu_read_lock();
168 res = ACCESS_ONCE(ns->bacct);
169 if (!res) {
170 rcu_read_unlock();
Al Viro215752f2014-08-07 06:23:41 -0400171 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172 }
Al Viro2798d4c2014-08-07 07:04:28 -0400173 res = __acct_get(res);
Al Viro215752f2014-08-07 06:23:41 -0400174 if (!res)
175 goto again;
Al Virob8f00e62014-08-07 07:51:03 -0400176 return res;
177}
178
179static void acct_kill(struct bsd_acct_struct *acct,
180 struct bsd_acct_struct *new)
181{
182 if (acct) {
183 struct file *file = acct->file;
184 struct pid_namespace *ns = acct->ns;
Al Viro2798d4c2014-08-07 07:04:28 -0400185 do_acct_process(acct);
186 mnt_unpin(file->f_path.mnt);
187 filp_close(file, NULL);
Pavel Emelyanova75d9792008-07-25 01:48:45 -0700188 spin_lock(&acct_lock);
Al Viro215752f2014-08-07 06:23:41 -0400189 hlist_del(&acct->m_list);
190 hlist_del(&acct->s_list);
Al Virob8f00e62014-08-07 07:51:03 -0400191 spin_unlock(&acct_lock);
Al Virob8f00e62014-08-07 07:51:03 -0400192 ns->bacct = new;
193 if (new) {
Al Viro215752f2014-08-07 06:23:41 -0400194 struct vfsmount *m = new->file->f_path.mnt;
195 mnt_pin(m);
Al Viro2798d4c2014-08-07 07:04:28 -0400196 spin_lock(&acct_lock);
Al Viro215752f2014-08-07 06:23:41 -0400197 hlist_add_head(&new->s_list, &m->mnt_sb->s_pins);
198 hlist_add_head(&new->m_list, &real_mount(m)->mnt_pins);
Al Viro2798d4c2014-08-07 07:04:28 -0400199 spin_unlock(&acct_lock);
200 mutex_unlock(&new->lock);
Al Virob8f00e62014-08-07 07:51:03 -0400201 }
202 acct->ns = NULL;
Al Viro2798d4c2014-08-07 07:04:28 -0400203 atomic_long_dec(&acct->count);
Al Virob8f00e62014-08-07 07:51:03 -0400204 mutex_unlock(&acct->lock);
Al Viro2798d4c2014-08-07 07:04:28 -0400205 acct_put(acct);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206 }
207}
208
Jeff Layton669abf42012-10-10 16:43:10 -0400209static int acct_on(struct filename *pathname)
Al Viro7b7b1ac2005-11-07 17:13:39 -0500210{
211 struct file *file;
Renaud Lottiauxdf279ca2009-06-30 11:41:34 -0700212 struct vfsmount *mnt;
Al Virob8f00e62014-08-07 07:51:03 -0400213 struct pid_namespace *ns = task_active_pid_ns(current);
214 struct bsd_acct_struct *acct, *old;
215
216 acct = kzalloc(sizeof(struct bsd_acct_struct), GFP_KERNEL);
217 if (!acct)
218 return -ENOMEM;
Al Viro7b7b1ac2005-11-07 17:13:39 -0500219
220 /* Difference from BSD - they don't do O_APPEND */
Jeff Layton669abf42012-10-10 16:43:10 -0400221 file = file_open_name(pathname, O_WRONLY|O_APPEND|O_LARGEFILE, 0);
Al Virob8f00e62014-08-07 07:51:03 -0400222 if (IS_ERR(file)) {
223 kfree(acct);
Al Viro7b7b1ac2005-11-07 17:13:39 -0500224 return PTR_ERR(file);
Al Virob8f00e62014-08-07 07:51:03 -0400225 }
Al Viro7b7b1ac2005-11-07 17:13:39 -0500226
Al Viro496ad9a2013-01-23 17:07:38 -0500227 if (!S_ISREG(file_inode(file)->i_mode)) {
Al Virob8f00e62014-08-07 07:51:03 -0400228 kfree(acct);
Al Viro7b7b1ac2005-11-07 17:13:39 -0500229 filp_close(file, NULL);
230 return -EACCES;
231 }
232
233 if (!file->f_op->write) {
Al Virob8f00e62014-08-07 07:51:03 -0400234 kfree(acct);
Al Viro7b7b1ac2005-11-07 17:13:39 -0500235 filp_close(file, NULL);
236 return -EIO;
237 }
238
Al Viro2798d4c2014-08-07 07:04:28 -0400239 atomic_long_set(&acct->count, 1);
Al Virob8f00e62014-08-07 07:51:03 -0400240 acct->file = file;
241 acct->needcheck = jiffies;
242 acct->ns = ns;
243 mutex_init(&acct->lock);
Renaud Lottiauxdf279ca2009-06-30 11:41:34 -0700244 mnt = file->f_path.mnt;
Al Viro7b7b1ac2005-11-07 17:13:39 -0500245
Al Viro215752f2014-08-07 06:23:41 -0400246 old = acct_get(ns);
Al Viro2798d4c2014-08-07 07:04:28 -0400247 mutex_lock_nested(&acct->lock, 1); /* nobody has seen it yet */
Al Virob8f00e62014-08-07 07:51:03 -0400248 if (old) {
249 acct_kill(old, acct);
250 } else {
Al Virob8f00e62014-08-07 07:51:03 -0400251 ns->bacct = acct;
Al Viro2798d4c2014-08-07 07:04:28 -0400252 spin_lock(&acct_lock);
Al Virob8f00e62014-08-07 07:51:03 -0400253 mnt_pin(mnt);
Al Viro215752f2014-08-07 06:23:41 -0400254 hlist_add_head(&acct->s_list, &mnt->mnt_sb->s_pins);
255 hlist_add_head(&acct->m_list, &real_mount(mnt)->mnt_pins);
Al Virob8f00e62014-08-07 07:51:03 -0400256 spin_unlock(&acct_lock);
Al Viro2798d4c2014-08-07 07:04:28 -0400257 mutex_unlock(&acct->lock);
Al Virob8f00e62014-08-07 07:51:03 -0400258 }
Renaud Lottiauxdf279ca2009-06-30 11:41:34 -0700259 mntput(mnt); /* it's pinned, now give up active reference */
Al Viro7b7b1ac2005-11-07 17:13:39 -0500260 return 0;
261}
262
Al Viro9df7fa12014-05-15 06:49:45 -0400263static DEFINE_MUTEX(acct_on_mutex);
264
Randy Dunlap417ef532005-09-10 00:26:39 -0700265/**
266 * sys_acct - enable/disable process accounting
267 * @name: file name for accounting records or NULL to shutdown accounting
268 *
269 * Returns 0 for success or negative errno values for failure.
270 *
271 * sys_acct() is the only system call needed to implement process
272 * accounting. It takes the name of the file where accounting records
273 * should be written. If the filename is NULL, accounting will be
274 * shutdown.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275 */
Heiko Carstensb290ebe2009-01-14 14:14:06 +0100276SYSCALL_DEFINE1(acct, const char __user *, name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277{
Eric Paris05b90492010-04-07 15:15:25 -0400278 int error = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279
280 if (!capable(CAP_SYS_PACCT))
281 return -EPERM;
282
283 if (name) {
Jeff Layton91a27b22012-10-10 15:25:28 -0400284 struct filename *tmp = getname(name);
Al Viro7b7b1ac2005-11-07 17:13:39 -0500285 if (IS_ERR(tmp))
Paul McQuade46c0a8c2014-06-06 14:37:37 -0700286 return PTR_ERR(tmp);
Al Viro9df7fa12014-05-15 06:49:45 -0400287 mutex_lock(&acct_on_mutex);
Jeff Layton669abf42012-10-10 16:43:10 -0400288 error = acct_on(tmp);
Al Viro9df7fa12014-05-15 06:49:45 -0400289 mutex_unlock(&acct_on_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290 putname(tmp);
Al Viro7b7b1ac2005-11-07 17:13:39 -0500291 } else {
Al Viro215752f2014-08-07 06:23:41 -0400292 acct_kill(acct_get(task_active_pid_ns(current)), NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293 }
Eric Paris05b90492010-04-07 15:15:25 -0400294
Al Viro7b7b1ac2005-11-07 17:13:39 -0500295 return error;
296}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297
Al Viro215752f2014-08-07 06:23:41 -0400298void acct_auto_close_mnt(struct hlist_head *list)
Al Viro7b7b1ac2005-11-07 17:13:39 -0500299{
Al Viro2798d4c2014-08-07 07:04:28 -0400300 rcu_read_lock();
Al Viro215752f2014-08-07 06:23:41 -0400301 while (1) {
Al Viro2798d4c2014-08-07 07:04:28 -0400302 struct hlist_node *p = ACCESS_ONCE(list->first);
303 if (!p)
Al Viro215752f2014-08-07 06:23:41 -0400304 break;
Al Viro2798d4c2014-08-07 07:04:28 -0400305 acct_kill(__acct_get(hlist_entry(p,
Al Viro215752f2014-08-07 06:23:41 -0400306 struct bsd_acct_struct,
307 m_list)), NULL);
Al Viro2798d4c2014-08-07 07:04:28 -0400308 rcu_read_lock();
Al Viro215752f2014-08-07 06:23:41 -0400309 }
Al Viro2798d4c2014-08-07 07:04:28 -0400310 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311}
312
Al Viro215752f2014-08-07 06:23:41 -0400313void acct_auto_close(struct hlist_head *list)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314{
Al Viro2798d4c2014-08-07 07:04:28 -0400315 rcu_read_lock();
Al Viro215752f2014-08-07 06:23:41 -0400316 while (1) {
Al Viro2798d4c2014-08-07 07:04:28 -0400317 struct hlist_node *p = ACCESS_ONCE(list->first);
318 if (!p)
Al Viro215752f2014-08-07 06:23:41 -0400319 break;
Al Viro2798d4c2014-08-07 07:04:28 -0400320 acct_kill(__acct_get(hlist_entry(p,
Al Viro215752f2014-08-07 06:23:41 -0400321 struct bsd_acct_struct,
322 s_list)), NULL);
Al Viro2798d4c2014-08-07 07:04:28 -0400323 rcu_read_lock();
Al Viro215752f2014-08-07 06:23:41 -0400324 }
Al Viro2798d4c2014-08-07 07:04:28 -0400325 rcu_read_unlock();
Pavel Emelyanov0b6b0302008-07-25 01:48:47 -0700326}
327
328void acct_exit_ns(struct pid_namespace *ns)
329{
Al Viro215752f2014-08-07 06:23:41 -0400330 acct_kill(acct_get(ns), NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331}
332
333/*
334 * encode an unsigned long into a comp_t
335 *
336 * This routine has been adopted from the encode_comp_t() function in
337 * the kern_acct.c file of the FreeBSD operating system. The encoding
338 * is a 13-bit fraction with a 3-bit (base 8) exponent.
339 */
340
341#define MANTSIZE 13 /* 13 bit mantissa. */
342#define EXPSIZE 3 /* Base 8 (3 bit) exponent. */
343#define MAXFRACT ((1 << MANTSIZE) - 1) /* Maximum fractional value. */
344
345static comp_t encode_comp_t(unsigned long value)
346{
347 int exp, rnd;
348
349 exp = rnd = 0;
350 while (value > MAXFRACT) {
351 rnd = value & (1 << (EXPSIZE - 1)); /* Round up? */
352 value >>= EXPSIZE; /* Base 8 exponent == 3 bit shift. */
353 exp++;
354 }
355
356 /*
Daniel Walker6ae965c2007-10-18 03:06:04 -0700357 * If we need to round up, do it (and handle overflow correctly).
358 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359 if (rnd && (++value > MAXFRACT)) {
360 value >>= EXPSIZE;
361 exp++;
362 }
363
364 /*
Daniel Walker6ae965c2007-10-18 03:06:04 -0700365 * Clean it up and polish it off.
366 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367 exp <<= MANTSIZE; /* Shift the exponent into place */
368 exp += value; /* and add on the mantissa. */
369 return exp;
370}
371
372#if ACCT_VERSION==1 || ACCT_VERSION==2
373/*
374 * encode an u64 into a comp2_t (24 bits)
375 *
376 * Format: 5 bit base 2 exponent, 20 bits mantissa.
377 * The leading bit of the mantissa is not stored, but implied for
378 * non-zero exponents.
379 * Largest encodable value is 50 bits.
380 */
381
382#define MANTSIZE2 20 /* 20 bit mantissa. */
383#define EXPSIZE2 5 /* 5 bit base 2 exponent. */
384#define MAXFRACT2 ((1ul << MANTSIZE2) - 1) /* Maximum fractional value. */
385#define MAXEXP2 ((1 <<EXPSIZE2) - 1) /* Maximum exponent. */
386
387static comp2_t encode_comp2_t(u64 value)
388{
Daniel Walker6ae965c2007-10-18 03:06:04 -0700389 int exp, rnd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390
Daniel Walker6ae965c2007-10-18 03:06:04 -0700391 exp = (value > (MAXFRACT2>>1));
392 rnd = 0;
393 while (value > MAXFRACT2) {
394 rnd = value & 1;
395 value >>= 1;
396 exp++;
397 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398
Daniel Walker6ae965c2007-10-18 03:06:04 -0700399 /*
400 * If we need to round up, do it (and handle overflow correctly).
401 */
402 if (rnd && (++value > MAXFRACT2)) {
403 value >>= 1;
404 exp++;
405 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406
Daniel Walker6ae965c2007-10-18 03:06:04 -0700407 if (exp > MAXEXP2) {
408 /* Overflow. Return largest representable number instead. */
409 return (1ul << (MANTSIZE2+EXPSIZE2-1)) - 1;
410 } else {
411 return (value & (MAXFRACT2>>1)) | (exp << (MANTSIZE2-1));
412 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413}
414#endif
415
416#if ACCT_VERSION==3
417/*
418 * encode an u64 into a 32 bit IEEE float
419 */
420static u32 encode_float(u64 value)
421{
422 unsigned exp = 190;
423 unsigned u;
424
425 if (value==0) return 0;
426 while ((s64)value > 0){
427 value <<= 1;
428 exp--;
429 }
430 u = (u32)(value >> 40) & 0x7fffffu;
431 return u | (exp << 23);
432}
433#endif
434
435/*
436 * Write an accounting entry for an exiting process
437 *
438 * The acct_process() call is the workhorse of the process
439 * accounting system. The struct acct is built here and then written
440 * into the accounting file. This function should only be called from
Ingo Molnarbcbe4a02007-11-26 21:21:49 +0100441 * do_exit() or when switching to a different output file.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442 */
443
Al Virocdd37e22014-04-26 23:45:53 -0400444static void fill_ac(acct_t *ac)
445{
446 struct pacct_struct *pacct = &current->signal->pacct;
447 u64 elapsed, run_time;
448 struct tty_struct *tty;
449
450 /*
451 * Fill the accounting struct with the needed info as recorded
452 * by the different kernel functions.
453 */
454 memset(ac, 0, sizeof(acct_t));
455
456 ac->ac_version = ACCT_VERSION | ACCT_BYTEORDER;
457 strlcpy(ac->ac_comm, current->comm, sizeof(ac->ac_comm));
458
459 /* calculate run_time in nsec*/
460 run_time = ktime_get_ns();
461 run_time -= current->group_leader->start_time;
462 /* convert nsec -> AHZ */
463 elapsed = nsec_to_AHZ(run_time);
464#if ACCT_VERSION==3
465 ac->ac_etime = encode_float(elapsed);
466#else
467 ac->ac_etime = encode_comp_t(elapsed < (unsigned long) -1l ?
468 (unsigned long) elapsed : (unsigned long) -1l);
469#endif
470#if ACCT_VERSION==1 || ACCT_VERSION==2
471 {
472 /* new enlarged etime field */
473 comp2_t etime = encode_comp2_t(elapsed);
474 ac->ac_etime_hi = etime >> 16;
475 ac->ac_etime_lo = (u16) etime;
476 }
477#endif
478 do_div(elapsed, AHZ);
479 ac->ac_btime = get_seconds() - elapsed;
480#if ACCT_VERSION==2
481 ac->ac_ahz = AHZ;
482#endif
483
484 spin_lock_irq(&current->sighand->siglock);
485 tty = current->signal->tty; /* Safe as we hold the siglock */
486 ac->ac_tty = tty ? old_encode_dev(tty_devnum(tty)) : 0;
487 ac->ac_utime = encode_comp_t(jiffies_to_AHZ(cputime_to_jiffies(pacct->ac_utime)));
488 ac->ac_stime = encode_comp_t(jiffies_to_AHZ(cputime_to_jiffies(pacct->ac_stime)));
489 ac->ac_flag = pacct->ac_flag;
490 ac->ac_mem = encode_comp_t(pacct->ac_mem);
491 ac->ac_minflt = encode_comp_t(pacct->ac_minflt);
492 ac->ac_majflt = encode_comp_t(pacct->ac_majflt);
493 ac->ac_exitcode = pacct->ac_exitcode;
494 spin_unlock_irq(&current->sighand->siglock);
495}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496/*
497 * do_acct_process does all actual work. Caller holds the reference to file.
498 */
Al Virob8f00e62014-08-07 07:51:03 -0400499static void do_acct_process(struct bsd_acct_struct *acct)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500{
501 acct_t ac;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502 unsigned long flim;
Michal Schmidtd8e180d2009-08-20 14:39:52 -0700503 const struct cred *orig_cred;
Al Virob8f00e62014-08-07 07:51:03 -0400504 struct pid_namespace *ns = acct->ns;
505 struct file *file = acct->file;
Michal Schmidtd8e180d2009-08-20 14:39:52 -0700506
Al Viroed447242014-04-19 14:37:20 -0400507 /*
508 * Accounting records are not subject to resource limits.
509 */
510 flim = current->signal->rlim[RLIMIT_FSIZE].rlim_cur;
511 current->signal->rlim[RLIMIT_FSIZE].rlim_cur = RLIM_INFINITY;
Michal Schmidtd8e180d2009-08-20 14:39:52 -0700512 /* Perform file operations on behalf of whoever enabled accounting */
513 orig_cred = override_creds(file->f_cred);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514
515 /*
516 * First check to see if there is enough free_space to continue
517 * the process accounting system.
518 */
Al Viro54a4d582014-04-19 14:24:18 -0400519 if (!check_free_space(acct))
Michal Schmidtd8e180d2009-08-20 14:39:52 -0700520 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521
Al Virocdd37e22014-04-26 23:45:53 -0400522 fill_ac(&ac);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523 /* we really need to bite the bullet and change layout */
Eric W. Biedermanf8f3d4d2012-02-07 16:54:50 -0800524 ac.ac_uid = from_kuid_munged(file->f_cred->user_ns, orig_cred->uid);
525 ac.ac_gid = from_kgid_munged(file->f_cred->user_ns, orig_cred->gid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526#if ACCT_VERSION==1 || ACCT_VERSION==2
527 /* backward-compatible 16 bit fields */
David Howells76aac0e2008-11-14 10:39:12 +1100528 ac.ac_uid16 = ac.ac_uid;
529 ac.ac_gid16 = ac.ac_gid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530#endif
531#if ACCT_VERSION==3
Pavel Emelyanov5f7b7032008-03-24 12:29:53 -0700532 ac.ac_pid = task_tgid_nr_ns(current, ns);
Pavel Emelyanova846a192008-03-24 12:29:52 -0700533 rcu_read_lock();
Pavel Emelyanov5f7b7032008-03-24 12:29:53 -0700534 ac.ac_ppid = task_tgid_nr_ns(rcu_dereference(current->real_parent), ns);
Pavel Emelyanova846a192008-03-24 12:29:52 -0700535 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537 /*
Jan Kara5ae98f12013-05-04 00:11:23 +0200538 * Get freeze protection. If the fs is frozen, just skip the write
539 * as we could deadlock the system otherwise.
540 */
Al Viroed447242014-04-19 14:37:20 -0400541 if (file_start_write_trylock(file)) {
542 /* it's been opened O_APPEND, so position is irrelevant */
543 loff_t pos = 0;
544 __kernel_write(file, (char *)&ac, sizeof(acct_t), &pos);
545 file_end_write(file);
546 }
Michal Schmidtd8e180d2009-08-20 14:39:52 -0700547out:
Al Viroed447242014-04-19 14:37:20 -0400548 current->signal->rlim[RLIMIT_FSIZE].rlim_cur = flim;
Michal Schmidtd8e180d2009-08-20 14:39:52 -0700549 revert_creds(orig_cred);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550}
551
Randy Dunlap417ef532005-09-10 00:26:39 -0700552/**
KaiGai Kohei0e464812006-06-25 05:49:24 -0700553 * acct_collect - collect accounting information into pacct_struct
KaiGai Koheif6ec29a2006-06-25 05:49:25 -0700554 * @exitcode: task exit code
555 * @group_dead: not 0, if this thread is the last one in the process.
KaiGai Kohei0e464812006-06-25 05:49:24 -0700556 */
KaiGai Koheif6ec29a2006-06-25 05:49:25 -0700557void acct_collect(long exitcode, int group_dead)
KaiGai Kohei0e464812006-06-25 05:49:24 -0700558{
559 struct pacct_struct *pacct = &current->signal->pacct;
Frederic Weisbecker6fac4822012-11-13 14:20:55 +0100560 cputime_t utime, stime;
KaiGai Kohei0e464812006-06-25 05:49:24 -0700561 unsigned long vsize = 0;
562
KaiGai Koheif6ec29a2006-06-25 05:49:25 -0700563 if (group_dead && current->mm) {
KaiGai Kohei0e464812006-06-25 05:49:24 -0700564 struct vm_area_struct *vma;
565 down_read(&current->mm->mmap_sem);
566 vma = current->mm->mmap;
567 while (vma) {
568 vsize += vma->vm_end - vma->vm_start;
569 vma = vma->vm_next;
570 }
571 up_read(&current->mm->mmap_sem);
572 }
573
KaiGai Kohei77787bf2006-06-25 05:49:26 -0700574 spin_lock_irq(&current->sighand->siglock);
KaiGai Koheif6ec29a2006-06-25 05:49:25 -0700575 if (group_dead)
576 pacct->ac_mem = vsize / 1024;
577 if (thread_group_leader(current)) {
578 pacct->ac_exitcode = exitcode;
579 if (current->flags & PF_FORKNOEXEC)
580 pacct->ac_flag |= AFORK;
581 }
582 if (current->flags & PF_SUPERPRIV)
583 pacct->ac_flag |= ASU;
584 if (current->flags & PF_DUMPCORE)
585 pacct->ac_flag |= ACORE;
586 if (current->flags & PF_SIGNALED)
587 pacct->ac_flag |= AXSIG;
Frederic Weisbecker6fac4822012-11-13 14:20:55 +0100588 task_cputime(current, &utime, &stime);
589 pacct->ac_utime += utime;
590 pacct->ac_stime += stime;
KaiGai Kohei77787bf2006-06-25 05:49:26 -0700591 pacct->ac_minflt += current->min_flt;
592 pacct->ac_majflt += current->maj_flt;
593 spin_unlock_irq(&current->sighand->siglock);
KaiGai Kohei0e464812006-06-25 05:49:24 -0700594}
595
Al Viroe25ff112014-05-07 05:12:09 -0400596static void slow_acct_process(struct pid_namespace *ns)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597{
Al Viroe25ff112014-05-07 05:12:09 -0400598 for ( ; ns; ns = ns->parent) {
Al Viro215752f2014-08-07 06:23:41 -0400599 struct bsd_acct_struct *acct = acct_get(ns);
Al Virob8f00e62014-08-07 07:51:03 -0400600 if (acct) {
601 do_acct_process(acct);
602 mutex_unlock(&acct->lock);
603 acct_put(acct);
Al Viroe25ff112014-05-07 05:12:09 -0400604 }
Al Viroe25ff112014-05-07 05:12:09 -0400605 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606}
Pavel Emelyanov7d1e1352008-07-25 01:48:48 -0700607
608/**
Al Viroe25ff112014-05-07 05:12:09 -0400609 * acct_process
Pavel Emelyanov7d1e1352008-07-25 01:48:48 -0700610 *
611 * handles process accounting for an exiting task
612 */
613void acct_process(void)
614{
615 struct pid_namespace *ns;
616
Pavel Emelyanov0c18d7a2008-07-25 01:48:49 -0700617 /*
618 * This loop is safe lockless, since current is still
619 * alive and holds its namespace, which in turn holds
620 * its parent.
621 */
Al Viroe25ff112014-05-07 05:12:09 -0400622 for (ns = task_active_pid_ns(current); ns != NULL; ns = ns->parent) {
Al Virob8f00e62014-08-07 07:51:03 -0400623 if (ns->bacct)
Al Viroe25ff112014-05-07 05:12:09 -0400624 break;
625 }
626 if (unlikely(ns))
627 slow_acct_process(ns);
Pavel Emelyanov7d1e1352008-07-25 01:48:48 -0700628}