blob: 2d9e04d989982e4d846e8a329e301e21cd25169d [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;
Al Viro17c0a5a2014-08-07 07:35:19 -040095 struct work_struct work;
96 struct completion done;
Linus Torvalds1da177e2005-04-16 15:20:36 -070097};
98
Al Viro2798d4c2014-08-07 07:04:28 -040099static void acct_free_rcu(struct rcu_head *head)
100{
101 kfree(container_of(head, struct bsd_acct_struct, rcu));
102}
103
Pavel Emelyanova75d9792008-07-25 01:48:45 -0700104static DEFINE_SPINLOCK(acct_lock);
105
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107 * Check the amount of free space and suspend/resume accordingly.
108 */
Al Viro54a4d582014-04-19 14:24:18 -0400109static int check_free_space(struct bsd_acct_struct *acct)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110{
111 struct kstatfs sbuf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112
Al Viro54a4d582014-04-19 14:24:18 -0400113 if (time_is_before_jiffies(acct->needcheck))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115
116 /* May block */
Al Viro54a4d582014-04-19 14:24:18 -0400117 if (vfs_statfs(&acct->file->f_path, &sbuf))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119
Pavel Emelyanov6248b1b2008-07-25 01:48:46 -0700120 if (acct->active) {
Al Viro54a4d582014-04-19 14:24:18 -0400121 u64 suspend = sbuf.f_blocks * SUSPEND;
122 do_div(suspend, 100);
123 if (sbuf.f_bavail <= suspend) {
Pavel Emelyanov6248b1b2008-07-25 01:48:46 -0700124 acct->active = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125 printk(KERN_INFO "Process accounting paused\n");
126 }
127 } else {
Al Viro54a4d582014-04-19 14:24:18 -0400128 u64 resume = sbuf.f_blocks * RESUME;
129 do_div(resume, 100);
130 if (sbuf.f_bavail >= resume) {
Pavel Emelyanov6248b1b2008-07-25 01:48:46 -0700131 acct->active = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132 printk(KERN_INFO "Process accounting resumed\n");
133 }
134 }
135
Al Viro32dc7302011-12-08 20:08:42 -0500136 acct->needcheck = jiffies + ACCT_TIMEOUT*HZ;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137out:
Al Viro54a4d582014-04-19 14:24:18 -0400138 return acct->active;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139}
140
Al Virob8f00e62014-08-07 07:51:03 -0400141static void acct_put(struct bsd_acct_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142{
Al Viro2798d4c2014-08-07 07:04:28 -0400143 if (atomic_long_dec_and_test(&p->count))
144 call_rcu(&p->rcu, acct_free_rcu);
Al Virob8f00e62014-08-07 07:51:03 -0400145}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146
Al Viro215752f2014-08-07 06:23:41 -0400147static struct bsd_acct_struct *__acct_get(struct bsd_acct_struct *res)
148{
Al Viro2798d4c2014-08-07 07:04:28 -0400149 if (!atomic_long_inc_not_zero(&res->count)) {
150 rcu_read_unlock();
151 cpu_relax();
152 return NULL;
153 }
154 rcu_read_unlock();
Al Viro215752f2014-08-07 06:23:41 -0400155 mutex_lock(&res->lock);
156 if (!res->ns) {
157 mutex_unlock(&res->lock);
Al Viro2798d4c2014-08-07 07:04:28 -0400158 acct_put(res);
Al Viro215752f2014-08-07 06:23:41 -0400159 return NULL;
160 }
161 return res;
162}
163
164static struct bsd_acct_struct *acct_get(struct pid_namespace *ns)
Al Virob8f00e62014-08-07 07:51:03 -0400165{
166 struct bsd_acct_struct *res;
Al Virob8f00e62014-08-07 07:51:03 -0400167again:
Al Viro2798d4c2014-08-07 07:04:28 -0400168 smp_rmb();
169 rcu_read_lock();
170 res = ACCESS_ONCE(ns->bacct);
171 if (!res) {
172 rcu_read_unlock();
Al Viro215752f2014-08-07 06:23:41 -0400173 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174 }
Al Viro2798d4c2014-08-07 07:04:28 -0400175 res = __acct_get(res);
Al Viro215752f2014-08-07 06:23:41 -0400176 if (!res)
177 goto again;
Al Virob8f00e62014-08-07 07:51:03 -0400178 return res;
179}
180
Al Viro17c0a5a2014-08-07 07:35:19 -0400181static void close_work(struct work_struct *work)
182{
183 struct bsd_acct_struct *acct = container_of(work, struct bsd_acct_struct, work);
184 struct file *file = acct->file;
185 mnt_unpin(file->f_path.mnt);
186 if (file->f_op->flush)
187 file->f_op->flush(file, NULL);
188 __fput_sync(file);
189 complete(&acct->done);
190}
191
Al Virob8f00e62014-08-07 07:51:03 -0400192static void acct_kill(struct bsd_acct_struct *acct,
193 struct bsd_acct_struct *new)
194{
195 if (acct) {
Al Virob8f00e62014-08-07 07:51:03 -0400196 struct pid_namespace *ns = acct->ns;
Al Viro2798d4c2014-08-07 07:04:28 -0400197 do_acct_process(acct);
Al Viro17c0a5a2014-08-07 07:35:19 -0400198 INIT_WORK(&acct->work, close_work);
199 init_completion(&acct->done);
200 schedule_work(&acct->work);
201 wait_for_completion(&acct->done);
Pavel Emelyanova75d9792008-07-25 01:48:45 -0700202 spin_lock(&acct_lock);
Al Viro215752f2014-08-07 06:23:41 -0400203 hlist_del(&acct->m_list);
204 hlist_del(&acct->s_list);
Al Virob8f00e62014-08-07 07:51:03 -0400205 spin_unlock(&acct_lock);
Al Virob8f00e62014-08-07 07:51:03 -0400206 ns->bacct = new;
207 if (new) {
Al Viro215752f2014-08-07 06:23:41 -0400208 struct vfsmount *m = new->file->f_path.mnt;
Al Viro2798d4c2014-08-07 07:04:28 -0400209 spin_lock(&acct_lock);
Al Viro215752f2014-08-07 06:23:41 -0400210 hlist_add_head(&new->s_list, &m->mnt_sb->s_pins);
211 hlist_add_head(&new->m_list, &real_mount(m)->mnt_pins);
Al Viro2798d4c2014-08-07 07:04:28 -0400212 spin_unlock(&acct_lock);
213 mutex_unlock(&new->lock);
Al Virob8f00e62014-08-07 07:51:03 -0400214 }
215 acct->ns = NULL;
Al Viro2798d4c2014-08-07 07:04:28 -0400216 atomic_long_dec(&acct->count);
Al Virob8f00e62014-08-07 07:51:03 -0400217 mutex_unlock(&acct->lock);
Al Viro2798d4c2014-08-07 07:04:28 -0400218 acct_put(acct);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219 }
220}
221
Jeff Layton669abf42012-10-10 16:43:10 -0400222static int acct_on(struct filename *pathname)
Al Viro7b7b1ac2005-11-07 17:13:39 -0500223{
224 struct file *file;
Renaud Lottiauxdf279ca2009-06-30 11:41:34 -0700225 struct vfsmount *mnt;
Al Virob8f00e62014-08-07 07:51:03 -0400226 struct pid_namespace *ns = task_active_pid_ns(current);
227 struct bsd_acct_struct *acct, *old;
228
229 acct = kzalloc(sizeof(struct bsd_acct_struct), GFP_KERNEL);
230 if (!acct)
231 return -ENOMEM;
Al Viro7b7b1ac2005-11-07 17:13:39 -0500232
233 /* Difference from BSD - they don't do O_APPEND */
Jeff Layton669abf42012-10-10 16:43:10 -0400234 file = file_open_name(pathname, O_WRONLY|O_APPEND|O_LARGEFILE, 0);
Al Virob8f00e62014-08-07 07:51:03 -0400235 if (IS_ERR(file)) {
236 kfree(acct);
Al Viro7b7b1ac2005-11-07 17:13:39 -0500237 return PTR_ERR(file);
Al Virob8f00e62014-08-07 07:51:03 -0400238 }
Al Viro7b7b1ac2005-11-07 17:13:39 -0500239
Al Viro496ad9a2013-01-23 17:07:38 -0500240 if (!S_ISREG(file_inode(file)->i_mode)) {
Al Virob8f00e62014-08-07 07:51:03 -0400241 kfree(acct);
Al Viro7b7b1ac2005-11-07 17:13:39 -0500242 filp_close(file, NULL);
243 return -EACCES;
244 }
245
246 if (!file->f_op->write) {
Al Virob8f00e62014-08-07 07:51:03 -0400247 kfree(acct);
Al Viro7b7b1ac2005-11-07 17:13:39 -0500248 filp_close(file, NULL);
249 return -EIO;
250 }
251
Al Viro2798d4c2014-08-07 07:04:28 -0400252 atomic_long_set(&acct->count, 1);
Al Virob8f00e62014-08-07 07:51:03 -0400253 acct->file = file;
254 acct->needcheck = jiffies;
255 acct->ns = ns;
256 mutex_init(&acct->lock);
Renaud Lottiauxdf279ca2009-06-30 11:41:34 -0700257 mnt = file->f_path.mnt;
Al Viro215748e2014-08-07 07:51:29 -0400258 mnt_pin(mnt);
Al Viro7b7b1ac2005-11-07 17:13:39 -0500259
Al Viro215752f2014-08-07 06:23:41 -0400260 old = acct_get(ns);
Al Viro2798d4c2014-08-07 07:04:28 -0400261 mutex_lock_nested(&acct->lock, 1); /* nobody has seen it yet */
Al Virob8f00e62014-08-07 07:51:03 -0400262 if (old) {
263 acct_kill(old, acct);
264 } else {
Al Virob8f00e62014-08-07 07:51:03 -0400265 ns->bacct = acct;
Al Viro2798d4c2014-08-07 07:04:28 -0400266 spin_lock(&acct_lock);
Al Viro215752f2014-08-07 06:23:41 -0400267 hlist_add_head(&acct->s_list, &mnt->mnt_sb->s_pins);
268 hlist_add_head(&acct->m_list, &real_mount(mnt)->mnt_pins);
Al Virob8f00e62014-08-07 07:51:03 -0400269 spin_unlock(&acct_lock);
Al Viro2798d4c2014-08-07 07:04:28 -0400270 mutex_unlock(&acct->lock);
Al Virob8f00e62014-08-07 07:51:03 -0400271 }
Renaud Lottiauxdf279ca2009-06-30 11:41:34 -0700272 mntput(mnt); /* it's pinned, now give up active reference */
Al Viro7b7b1ac2005-11-07 17:13:39 -0500273 return 0;
274}
275
Al Viro9df7fa12014-05-15 06:49:45 -0400276static DEFINE_MUTEX(acct_on_mutex);
277
Randy Dunlap417ef532005-09-10 00:26:39 -0700278/**
279 * sys_acct - enable/disable process accounting
280 * @name: file name for accounting records or NULL to shutdown accounting
281 *
282 * Returns 0 for success or negative errno values for failure.
283 *
284 * sys_acct() is the only system call needed to implement process
285 * accounting. It takes the name of the file where accounting records
286 * should be written. If the filename is NULL, accounting will be
287 * shutdown.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288 */
Heiko Carstensb290ebe2009-01-14 14:14:06 +0100289SYSCALL_DEFINE1(acct, const char __user *, name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290{
Eric Paris05b90492010-04-07 15:15:25 -0400291 int error = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292
293 if (!capable(CAP_SYS_PACCT))
294 return -EPERM;
295
296 if (name) {
Jeff Layton91a27b22012-10-10 15:25:28 -0400297 struct filename *tmp = getname(name);
Al Viro7b7b1ac2005-11-07 17:13:39 -0500298 if (IS_ERR(tmp))
Paul McQuade46c0a8c2014-06-06 14:37:37 -0700299 return PTR_ERR(tmp);
Al Viro9df7fa12014-05-15 06:49:45 -0400300 mutex_lock(&acct_on_mutex);
Jeff Layton669abf42012-10-10 16:43:10 -0400301 error = acct_on(tmp);
Al Viro9df7fa12014-05-15 06:49:45 -0400302 mutex_unlock(&acct_on_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303 putname(tmp);
Al Viro7b7b1ac2005-11-07 17:13:39 -0500304 } else {
Al Viro215752f2014-08-07 06:23:41 -0400305 acct_kill(acct_get(task_active_pid_ns(current)), NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306 }
Eric Paris05b90492010-04-07 15:15:25 -0400307
Al Viro7b7b1ac2005-11-07 17:13:39 -0500308 return error;
309}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310
Al Viro215752f2014-08-07 06:23:41 -0400311void acct_auto_close_mnt(struct hlist_head *list)
Al Viro7b7b1ac2005-11-07 17:13:39 -0500312{
Al Viro2798d4c2014-08-07 07:04:28 -0400313 rcu_read_lock();
Al Viro215752f2014-08-07 06:23:41 -0400314 while (1) {
Al Viro2798d4c2014-08-07 07:04:28 -0400315 struct hlist_node *p = ACCESS_ONCE(list->first);
316 if (!p)
Al Viro215752f2014-08-07 06:23:41 -0400317 break;
Al Viro2798d4c2014-08-07 07:04:28 -0400318 acct_kill(__acct_get(hlist_entry(p,
Al Viro215752f2014-08-07 06:23:41 -0400319 struct bsd_acct_struct,
320 m_list)), NULL);
Al Viro2798d4c2014-08-07 07:04:28 -0400321 rcu_read_lock();
Al Viro215752f2014-08-07 06:23:41 -0400322 }
Al Viro2798d4c2014-08-07 07:04:28 -0400323 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324}
325
Al Viro215752f2014-08-07 06:23:41 -0400326void acct_auto_close(struct hlist_head *list)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327{
Al Viro2798d4c2014-08-07 07:04:28 -0400328 rcu_read_lock();
Al Viro215752f2014-08-07 06:23:41 -0400329 while (1) {
Al Viro2798d4c2014-08-07 07:04:28 -0400330 struct hlist_node *p = ACCESS_ONCE(list->first);
331 if (!p)
Al Viro215752f2014-08-07 06:23:41 -0400332 break;
Al Viro2798d4c2014-08-07 07:04:28 -0400333 acct_kill(__acct_get(hlist_entry(p,
Al Viro215752f2014-08-07 06:23:41 -0400334 struct bsd_acct_struct,
335 s_list)), NULL);
Al Viro2798d4c2014-08-07 07:04:28 -0400336 rcu_read_lock();
Al Viro215752f2014-08-07 06:23:41 -0400337 }
Al Viro2798d4c2014-08-07 07:04:28 -0400338 rcu_read_unlock();
Pavel Emelyanov0b6b0302008-07-25 01:48:47 -0700339}
340
341void acct_exit_ns(struct pid_namespace *ns)
342{
Al Viro215752f2014-08-07 06:23:41 -0400343 acct_kill(acct_get(ns), NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344}
345
346/*
347 * encode an unsigned long into a comp_t
348 *
349 * This routine has been adopted from the encode_comp_t() function in
350 * the kern_acct.c file of the FreeBSD operating system. The encoding
351 * is a 13-bit fraction with a 3-bit (base 8) exponent.
352 */
353
354#define MANTSIZE 13 /* 13 bit mantissa. */
355#define EXPSIZE 3 /* Base 8 (3 bit) exponent. */
356#define MAXFRACT ((1 << MANTSIZE) - 1) /* Maximum fractional value. */
357
358static comp_t encode_comp_t(unsigned long value)
359{
360 int exp, rnd;
361
362 exp = rnd = 0;
363 while (value > MAXFRACT) {
364 rnd = value & (1 << (EXPSIZE - 1)); /* Round up? */
365 value >>= EXPSIZE; /* Base 8 exponent == 3 bit shift. */
366 exp++;
367 }
368
369 /*
Daniel Walker6ae965c2007-10-18 03:06:04 -0700370 * If we need to round up, do it (and handle overflow correctly).
371 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372 if (rnd && (++value > MAXFRACT)) {
373 value >>= EXPSIZE;
374 exp++;
375 }
376
377 /*
Daniel Walker6ae965c2007-10-18 03:06:04 -0700378 * Clean it up and polish it off.
379 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380 exp <<= MANTSIZE; /* Shift the exponent into place */
381 exp += value; /* and add on the mantissa. */
382 return exp;
383}
384
385#if ACCT_VERSION==1 || ACCT_VERSION==2
386/*
387 * encode an u64 into a comp2_t (24 bits)
388 *
389 * Format: 5 bit base 2 exponent, 20 bits mantissa.
390 * The leading bit of the mantissa is not stored, but implied for
391 * non-zero exponents.
392 * Largest encodable value is 50 bits.
393 */
394
395#define MANTSIZE2 20 /* 20 bit mantissa. */
396#define EXPSIZE2 5 /* 5 bit base 2 exponent. */
397#define MAXFRACT2 ((1ul << MANTSIZE2) - 1) /* Maximum fractional value. */
398#define MAXEXP2 ((1 <<EXPSIZE2) - 1) /* Maximum exponent. */
399
400static comp2_t encode_comp2_t(u64 value)
401{
Daniel Walker6ae965c2007-10-18 03:06:04 -0700402 int exp, rnd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403
Daniel Walker6ae965c2007-10-18 03:06:04 -0700404 exp = (value > (MAXFRACT2>>1));
405 rnd = 0;
406 while (value > MAXFRACT2) {
407 rnd = value & 1;
408 value >>= 1;
409 exp++;
410 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411
Daniel Walker6ae965c2007-10-18 03:06:04 -0700412 /*
413 * If we need to round up, do it (and handle overflow correctly).
414 */
415 if (rnd && (++value > MAXFRACT2)) {
416 value >>= 1;
417 exp++;
418 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419
Daniel Walker6ae965c2007-10-18 03:06:04 -0700420 if (exp > MAXEXP2) {
421 /* Overflow. Return largest representable number instead. */
422 return (1ul << (MANTSIZE2+EXPSIZE2-1)) - 1;
423 } else {
424 return (value & (MAXFRACT2>>1)) | (exp << (MANTSIZE2-1));
425 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426}
427#endif
428
429#if ACCT_VERSION==3
430/*
431 * encode an u64 into a 32 bit IEEE float
432 */
433static u32 encode_float(u64 value)
434{
435 unsigned exp = 190;
436 unsigned u;
437
438 if (value==0) return 0;
439 while ((s64)value > 0){
440 value <<= 1;
441 exp--;
442 }
443 u = (u32)(value >> 40) & 0x7fffffu;
444 return u | (exp << 23);
445}
446#endif
447
448/*
449 * Write an accounting entry for an exiting process
450 *
451 * The acct_process() call is the workhorse of the process
452 * accounting system. The struct acct is built here and then written
453 * into the accounting file. This function should only be called from
Ingo Molnarbcbe4a02007-11-26 21:21:49 +0100454 * do_exit() or when switching to a different output file.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455 */
456
Al Virocdd37e22014-04-26 23:45:53 -0400457static void fill_ac(acct_t *ac)
458{
459 struct pacct_struct *pacct = &current->signal->pacct;
460 u64 elapsed, run_time;
461 struct tty_struct *tty;
462
463 /*
464 * Fill the accounting struct with the needed info as recorded
465 * by the different kernel functions.
466 */
467 memset(ac, 0, sizeof(acct_t));
468
469 ac->ac_version = ACCT_VERSION | ACCT_BYTEORDER;
470 strlcpy(ac->ac_comm, current->comm, sizeof(ac->ac_comm));
471
472 /* calculate run_time in nsec*/
473 run_time = ktime_get_ns();
474 run_time -= current->group_leader->start_time;
475 /* convert nsec -> AHZ */
476 elapsed = nsec_to_AHZ(run_time);
477#if ACCT_VERSION==3
478 ac->ac_etime = encode_float(elapsed);
479#else
480 ac->ac_etime = encode_comp_t(elapsed < (unsigned long) -1l ?
481 (unsigned long) elapsed : (unsigned long) -1l);
482#endif
483#if ACCT_VERSION==1 || ACCT_VERSION==2
484 {
485 /* new enlarged etime field */
486 comp2_t etime = encode_comp2_t(elapsed);
487 ac->ac_etime_hi = etime >> 16;
488 ac->ac_etime_lo = (u16) etime;
489 }
490#endif
491 do_div(elapsed, AHZ);
492 ac->ac_btime = get_seconds() - elapsed;
493#if ACCT_VERSION==2
494 ac->ac_ahz = AHZ;
495#endif
496
497 spin_lock_irq(&current->sighand->siglock);
498 tty = current->signal->tty; /* Safe as we hold the siglock */
499 ac->ac_tty = tty ? old_encode_dev(tty_devnum(tty)) : 0;
500 ac->ac_utime = encode_comp_t(jiffies_to_AHZ(cputime_to_jiffies(pacct->ac_utime)));
501 ac->ac_stime = encode_comp_t(jiffies_to_AHZ(cputime_to_jiffies(pacct->ac_stime)));
502 ac->ac_flag = pacct->ac_flag;
503 ac->ac_mem = encode_comp_t(pacct->ac_mem);
504 ac->ac_minflt = encode_comp_t(pacct->ac_minflt);
505 ac->ac_majflt = encode_comp_t(pacct->ac_majflt);
506 ac->ac_exitcode = pacct->ac_exitcode;
507 spin_unlock_irq(&current->sighand->siglock);
508}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509/*
510 * do_acct_process does all actual work. Caller holds the reference to file.
511 */
Al Virob8f00e62014-08-07 07:51:03 -0400512static void do_acct_process(struct bsd_acct_struct *acct)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513{
514 acct_t ac;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515 unsigned long flim;
Michal Schmidtd8e180d2009-08-20 14:39:52 -0700516 const struct cred *orig_cred;
Al Virob8f00e62014-08-07 07:51:03 -0400517 struct pid_namespace *ns = acct->ns;
518 struct file *file = acct->file;
Michal Schmidtd8e180d2009-08-20 14:39:52 -0700519
Al Viroed447242014-04-19 14:37:20 -0400520 /*
521 * Accounting records are not subject to resource limits.
522 */
523 flim = current->signal->rlim[RLIMIT_FSIZE].rlim_cur;
524 current->signal->rlim[RLIMIT_FSIZE].rlim_cur = RLIM_INFINITY;
Michal Schmidtd8e180d2009-08-20 14:39:52 -0700525 /* Perform file operations on behalf of whoever enabled accounting */
526 orig_cred = override_creds(file->f_cred);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527
528 /*
529 * First check to see if there is enough free_space to continue
530 * the process accounting system.
531 */
Al Viro54a4d582014-04-19 14:24:18 -0400532 if (!check_free_space(acct))
Michal Schmidtd8e180d2009-08-20 14:39:52 -0700533 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534
Al Virocdd37e22014-04-26 23:45:53 -0400535 fill_ac(&ac);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536 /* we really need to bite the bullet and change layout */
Eric W. Biedermanf8f3d4d2012-02-07 16:54:50 -0800537 ac.ac_uid = from_kuid_munged(file->f_cred->user_ns, orig_cred->uid);
538 ac.ac_gid = from_kgid_munged(file->f_cred->user_ns, orig_cred->gid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539#if ACCT_VERSION==1 || ACCT_VERSION==2
540 /* backward-compatible 16 bit fields */
David Howells76aac0e2008-11-14 10:39:12 +1100541 ac.ac_uid16 = ac.ac_uid;
542 ac.ac_gid16 = ac.ac_gid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543#endif
544#if ACCT_VERSION==3
Pavel Emelyanov5f7b7032008-03-24 12:29:53 -0700545 ac.ac_pid = task_tgid_nr_ns(current, ns);
Pavel Emelyanova846a192008-03-24 12:29:52 -0700546 rcu_read_lock();
Pavel Emelyanov5f7b7032008-03-24 12:29:53 -0700547 ac.ac_ppid = task_tgid_nr_ns(rcu_dereference(current->real_parent), ns);
Pavel Emelyanova846a192008-03-24 12:29:52 -0700548 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550 /*
Jan Kara5ae98f12013-05-04 00:11:23 +0200551 * Get freeze protection. If the fs is frozen, just skip the write
552 * as we could deadlock the system otherwise.
553 */
Al Viroed447242014-04-19 14:37:20 -0400554 if (file_start_write_trylock(file)) {
555 /* it's been opened O_APPEND, so position is irrelevant */
556 loff_t pos = 0;
557 __kernel_write(file, (char *)&ac, sizeof(acct_t), &pos);
558 file_end_write(file);
559 }
Michal Schmidtd8e180d2009-08-20 14:39:52 -0700560out:
Al Viroed447242014-04-19 14:37:20 -0400561 current->signal->rlim[RLIMIT_FSIZE].rlim_cur = flim;
Michal Schmidtd8e180d2009-08-20 14:39:52 -0700562 revert_creds(orig_cred);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563}
564
Randy Dunlap417ef532005-09-10 00:26:39 -0700565/**
KaiGai Kohei0e464812006-06-25 05:49:24 -0700566 * acct_collect - collect accounting information into pacct_struct
KaiGai Koheif6ec29a2006-06-25 05:49:25 -0700567 * @exitcode: task exit code
568 * @group_dead: not 0, if this thread is the last one in the process.
KaiGai Kohei0e464812006-06-25 05:49:24 -0700569 */
KaiGai Koheif6ec29a2006-06-25 05:49:25 -0700570void acct_collect(long exitcode, int group_dead)
KaiGai Kohei0e464812006-06-25 05:49:24 -0700571{
572 struct pacct_struct *pacct = &current->signal->pacct;
Frederic Weisbecker6fac4822012-11-13 14:20:55 +0100573 cputime_t utime, stime;
KaiGai Kohei0e464812006-06-25 05:49:24 -0700574 unsigned long vsize = 0;
575
KaiGai Koheif6ec29a2006-06-25 05:49:25 -0700576 if (group_dead && current->mm) {
KaiGai Kohei0e464812006-06-25 05:49:24 -0700577 struct vm_area_struct *vma;
578 down_read(&current->mm->mmap_sem);
579 vma = current->mm->mmap;
580 while (vma) {
581 vsize += vma->vm_end - vma->vm_start;
582 vma = vma->vm_next;
583 }
584 up_read(&current->mm->mmap_sem);
585 }
586
KaiGai Kohei77787bf2006-06-25 05:49:26 -0700587 spin_lock_irq(&current->sighand->siglock);
KaiGai Koheif6ec29a2006-06-25 05:49:25 -0700588 if (group_dead)
589 pacct->ac_mem = vsize / 1024;
590 if (thread_group_leader(current)) {
591 pacct->ac_exitcode = exitcode;
592 if (current->flags & PF_FORKNOEXEC)
593 pacct->ac_flag |= AFORK;
594 }
595 if (current->flags & PF_SUPERPRIV)
596 pacct->ac_flag |= ASU;
597 if (current->flags & PF_DUMPCORE)
598 pacct->ac_flag |= ACORE;
599 if (current->flags & PF_SIGNALED)
600 pacct->ac_flag |= AXSIG;
Frederic Weisbecker6fac4822012-11-13 14:20:55 +0100601 task_cputime(current, &utime, &stime);
602 pacct->ac_utime += utime;
603 pacct->ac_stime += stime;
KaiGai Kohei77787bf2006-06-25 05:49:26 -0700604 pacct->ac_minflt += current->min_flt;
605 pacct->ac_majflt += current->maj_flt;
606 spin_unlock_irq(&current->sighand->siglock);
KaiGai Kohei0e464812006-06-25 05:49:24 -0700607}
608
Al Viroe25ff112014-05-07 05:12:09 -0400609static void slow_acct_process(struct pid_namespace *ns)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610{
Al Viroe25ff112014-05-07 05:12:09 -0400611 for ( ; ns; ns = ns->parent) {
Al Viro215752f2014-08-07 06:23:41 -0400612 struct bsd_acct_struct *acct = acct_get(ns);
Al Virob8f00e62014-08-07 07:51:03 -0400613 if (acct) {
614 do_acct_process(acct);
615 mutex_unlock(&acct->lock);
616 acct_put(acct);
Al Viroe25ff112014-05-07 05:12:09 -0400617 }
Al Viroe25ff112014-05-07 05:12:09 -0400618 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619}
Pavel Emelyanov7d1e1352008-07-25 01:48:48 -0700620
621/**
Al Viroe25ff112014-05-07 05:12:09 -0400622 * acct_process
Pavel Emelyanov7d1e1352008-07-25 01:48:48 -0700623 *
624 * handles process accounting for an exiting task
625 */
626void acct_process(void)
627{
628 struct pid_namespace *ns;
629
Pavel Emelyanov0c18d7a2008-07-25 01:48:49 -0700630 /*
631 * This loop is safe lockless, since current is still
632 * alive and holds its namespace, which in turn holds
633 * its parent.
634 */
Al Viroe25ff112014-05-07 05:12:09 -0400635 for (ns = task_active_pid_ns(current); ns != NULL; ns = ns->parent) {
Al Virob8f00e62014-08-07 07:51:03 -0400636 if (ns->bacct)
Al Viroe25ff112014-05-07 05:12:09 -0400637 break;
638 }
639 if (unlikely(ns))
640 slow_acct_process(ns);
Pavel Emelyanov7d1e1352008-07-25 01:48:48 -0700641}