blob: f9ef9db55c0e4dc4c98c66fdb71ee07614c4edba [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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070062
63/*
64 * These constants control the amount of freespace that suspend and
65 * resume the process accounting system, and the time delay between
66 * each check.
67 * Turned into sysctl-controllable parameters. AV, 12/11/98
68 */
69
70int acct_parm[3] = {4, 2, 30};
71#define RESUME (acct_parm[0]) /* >foo% free space - resume */
72#define SUSPEND (acct_parm[1]) /* <foo% free space - suspend */
73#define ACCT_TIMEOUT (acct_parm[2]) /* foo second timeout between checks */
74
75/*
76 * External references and all of the globals.
77 */
Al Virob8f00e62014-08-07 07:51:03 -040078static void do_acct_process(struct bsd_acct_struct *acct);
Linus Torvalds1da177e2005-04-16 15:20:36 -070079
Pavel Emelyanov081e4c82008-07-25 01:48:42 -070080struct bsd_acct_struct {
Al Virob8f00e62014-08-07 07:51:03 -040081 long count;
82 struct mutex lock;
Al Viro32dc7302011-12-08 20:08:42 -050083 int active;
84 unsigned long needcheck;
Linus Torvalds1da177e2005-04-16 15:20:36 -070085 struct file *file;
Pavel Emelyanov5f7b7032008-03-24 12:29:53 -070086 struct pid_namespace *ns;
Pavel Emelyanovb5a71742008-07-25 01:48:47 -070087 struct list_head list;
Linus Torvalds1da177e2005-04-16 15:20:36 -070088};
89
Pavel Emelyanova75d9792008-07-25 01:48:45 -070090static DEFINE_SPINLOCK(acct_lock);
Pavel Emelyanovb5a71742008-07-25 01:48:47 -070091static LIST_HEAD(acct_list);
Pavel Emelyanova75d9792008-07-25 01:48:45 -070092
Linus Torvalds1da177e2005-04-16 15:20:36 -070093/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070094 * Check the amount of free space and suspend/resume accordingly.
95 */
Pavel Emelyanov6248b1b2008-07-25 01:48:46 -070096static int check_free_space(struct bsd_acct_struct *acct, struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -070097{
98 struct kstatfs sbuf;
99 int res;
100 int act;
Al Viro32dc7302011-12-08 20:08:42 -0500101 u64 resume;
102 u64 suspend;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103
Pavel Emelyanova75d9792008-07-25 01:48:45 -0700104 spin_lock(&acct_lock);
Pavel Emelyanov6248b1b2008-07-25 01:48:46 -0700105 res = acct->active;
Al Viro32dc7302011-12-08 20:08:42 -0500106 if (!file || time_is_before_jiffies(acct->needcheck))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107 goto out;
Pavel Emelyanova75d9792008-07-25 01:48:45 -0700108 spin_unlock(&acct_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109
110 /* May block */
Christoph Hellwigebabe9a2010-07-07 18:53:11 +0200111 if (vfs_statfs(&file->f_path, &sbuf))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112 return res;
113 suspend = sbuf.f_blocks * SUSPEND;
114 resume = sbuf.f_blocks * RESUME;
115
Al Viro32dc7302011-12-08 20:08:42 -0500116 do_div(suspend, 100);
117 do_div(resume, 100);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118
119 if (sbuf.f_bavail <= suspend)
120 act = -1;
121 else if (sbuf.f_bavail >= resume)
122 act = 1;
123 else
124 act = 0;
125
126 /*
Pavel Emelyanov6248b1b2008-07-25 01:48:46 -0700127 * If some joker switched acct->file under us we'ld better be
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128 * silent and _not_ touch anything.
129 */
Pavel Emelyanova75d9792008-07-25 01:48:45 -0700130 spin_lock(&acct_lock);
Pavel Emelyanov6248b1b2008-07-25 01:48:46 -0700131 if (file != acct->file) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132 if (act)
Paul McQuade46c0a8c2014-06-06 14:37:37 -0700133 res = act > 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134 goto out;
135 }
136
Pavel Emelyanov6248b1b2008-07-25 01:48:46 -0700137 if (acct->active) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138 if (act < 0) {
Pavel Emelyanov6248b1b2008-07-25 01:48:46 -0700139 acct->active = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140 printk(KERN_INFO "Process accounting paused\n");
141 }
142 } else {
143 if (act > 0) {
Pavel Emelyanov6248b1b2008-07-25 01:48:46 -0700144 acct->active = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145 printk(KERN_INFO "Process accounting resumed\n");
146 }
147 }
148
Al Viro32dc7302011-12-08 20:08:42 -0500149 acct->needcheck = jiffies + ACCT_TIMEOUT*HZ;
Pavel Emelyanov6248b1b2008-07-25 01:48:46 -0700150 res = acct->active;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151out:
Pavel Emelyanova75d9792008-07-25 01:48:45 -0700152 spin_unlock(&acct_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153 return res;
154}
155
Al Virob8f00e62014-08-07 07:51:03 -0400156static void acct_put(struct bsd_acct_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157{
Al Virob8f00e62014-08-07 07:51:03 -0400158 spin_lock(&acct_lock);
159 if (!--p->count)
160 kfree(p);
161 spin_unlock(&acct_lock);
162}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163
Al Virob8f00e62014-08-07 07:51:03 -0400164static struct bsd_acct_struct *acct_get(struct bsd_acct_struct **p)
165{
166 struct bsd_acct_struct *res;
167 spin_lock(&acct_lock);
168again:
169 res = *p;
170 if (res)
171 res->count++;
172 spin_unlock(&acct_lock);
173 if (res) {
174 mutex_lock(&res->lock);
175 if (!res->ns) {
176 mutex_unlock(&res->lock);
177 spin_lock(&acct_lock);
178 if (!--res->count)
179 kfree(res);
180 goto again;
181 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182 }
Al Virob8f00e62014-08-07 07:51:03 -0400183 return res;
184}
185
186static void acct_kill(struct bsd_acct_struct *acct,
187 struct bsd_acct_struct *new)
188{
189 if (acct) {
190 struct file *file = acct->file;
191 struct pid_namespace *ns = acct->ns;
Pavel Emelyanova75d9792008-07-25 01:48:45 -0700192 spin_lock(&acct_lock);
Al Virob8f00e62014-08-07 07:51:03 -0400193 list_del(&acct->list);
194 mnt_unpin(file->f_path.mnt);
195 spin_unlock(&acct_lock);
196 do_acct_process(acct);
197 filp_close(file, NULL);
198 spin_lock(&acct_lock);
199 ns->bacct = new;
200 if (new) {
201 mnt_pin(new->file->f_path.mnt);
202 list_add(&new->list, &acct_list);
203 }
204 acct->ns = NULL;
205 mutex_unlock(&acct->lock);
206 if (!(acct->count -= 2))
207 kfree(acct);
208 spin_unlock(&acct_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209 }
210}
211
Jeff Layton669abf42012-10-10 16:43:10 -0400212static int acct_on(struct filename *pathname)
Al Viro7b7b1ac2005-11-07 17:13:39 -0500213{
214 struct file *file;
Renaud Lottiauxdf279ca2009-06-30 11:41:34 -0700215 struct vfsmount *mnt;
Al Virob8f00e62014-08-07 07:51:03 -0400216 struct pid_namespace *ns = task_active_pid_ns(current);
217 struct bsd_acct_struct *acct, *old;
218
219 acct = kzalloc(sizeof(struct bsd_acct_struct), GFP_KERNEL);
220 if (!acct)
221 return -ENOMEM;
Al Viro7b7b1ac2005-11-07 17:13:39 -0500222
223 /* Difference from BSD - they don't do O_APPEND */
Jeff Layton669abf42012-10-10 16:43:10 -0400224 file = file_open_name(pathname, O_WRONLY|O_APPEND|O_LARGEFILE, 0);
Al Virob8f00e62014-08-07 07:51:03 -0400225 if (IS_ERR(file)) {
226 kfree(acct);
Al Viro7b7b1ac2005-11-07 17:13:39 -0500227 return PTR_ERR(file);
Al Virob8f00e62014-08-07 07:51:03 -0400228 }
Al Viro7b7b1ac2005-11-07 17:13:39 -0500229
Al Viro496ad9a2013-01-23 17:07:38 -0500230 if (!S_ISREG(file_inode(file)->i_mode)) {
Al Virob8f00e62014-08-07 07:51:03 -0400231 kfree(acct);
Al Viro7b7b1ac2005-11-07 17:13:39 -0500232 filp_close(file, NULL);
233 return -EACCES;
234 }
235
236 if (!file->f_op->write) {
Al Virob8f00e62014-08-07 07:51:03 -0400237 kfree(acct);
Al Viro7b7b1ac2005-11-07 17:13:39 -0500238 filp_close(file, NULL);
239 return -EIO;
240 }
241
Al Virob8f00e62014-08-07 07:51:03 -0400242 acct->count = 1;
243 acct->file = file;
244 acct->needcheck = jiffies;
245 acct->ns = ns;
246 mutex_init(&acct->lock);
Renaud Lottiauxdf279ca2009-06-30 11:41:34 -0700247 mnt = file->f_path.mnt;
Al Viro7b7b1ac2005-11-07 17:13:39 -0500248
Al Virob8f00e62014-08-07 07:51:03 -0400249 old = acct_get(&ns->bacct);
250 if (old) {
251 acct_kill(old, acct);
252 } else {
253 spin_lock(&acct_lock);
254 ns->bacct = acct;
255 mnt_pin(mnt);
256 list_add(&acct->list, &acct_list);
257 spin_unlock(&acct_lock);
258 }
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 Virob8f00e62014-08-07 07:51:03 -0400292 acct_kill(acct_get(&task_active_pid_ns(current)->bacct), 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 Viro7b7b1ac2005-11-07 17:13:39 -0500298/**
299 * acct_auto_close - turn off a filesystem's accounting if it is on
300 * @m: vfsmount being shut down
301 *
302 * If the accounting is turned on for a file in the subtree pointed to
303 * to by m, turn accounting off. Done when m is about to die.
304 */
305void acct_auto_close_mnt(struct vfsmount *m)
306{
Pavel Emelyanov0b6b0302008-07-25 01:48:47 -0700307 struct bsd_acct_struct *acct;
308
Pavel Emelyanova75d9792008-07-25 01:48:45 -0700309 spin_lock(&acct_lock);
Pavel Emelyanovb5a71742008-07-25 01:48:47 -0700310restart:
311 list_for_each_entry(acct, &acct_list, list)
Al Virob8f00e62014-08-07 07:51:03 -0400312 if (acct->file->f_path.mnt == m) {
313 acct->count++;
314 spin_unlock(&acct_lock);
315 mutex_lock(&acct->lock);
316 if (!acct->ns) {
317 mutex_unlock(&acct->lock);
318 spin_lock(&acct_lock);
319 if (!--acct->count)
320 kfree(acct);
321 goto restart;
322 }
323 acct_kill(acct, NULL);
324 spin_lock(&acct_lock);
Pavel Emelyanovb5a71742008-07-25 01:48:47 -0700325 goto restart;
326 }
Pavel Emelyanova75d9792008-07-25 01:48:45 -0700327 spin_unlock(&acct_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328}
329
Randy Dunlap417ef532005-09-10 00:26:39 -0700330/**
331 * acct_auto_close - turn off a filesystem's accounting if it is on
332 * @sb: super block for the filesystem
333 *
334 * If the accounting is turned on for a file in the filesystem pointed
335 * to by sb, turn accounting off.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336 */
337void acct_auto_close(struct super_block *sb)
338{
Pavel Emelyanov0b6b0302008-07-25 01:48:47 -0700339 struct bsd_acct_struct *acct;
340
Pavel Emelyanova75d9792008-07-25 01:48:45 -0700341 spin_lock(&acct_lock);
Pavel Emelyanovb5a71742008-07-25 01:48:47 -0700342restart:
343 list_for_each_entry(acct, &acct_list, list)
Al Virob8f00e62014-08-07 07:51:03 -0400344 if (acct->file->f_path.dentry->d_sb == sb) {
345 acct->count++;
346 spin_unlock(&acct_lock);
347 mutex_lock(&acct->lock);
348 if (!acct->ns) {
349 mutex_unlock(&acct->lock);
350 spin_lock(&acct_lock);
351 if (!--acct->count)
352 kfree(acct);
353 goto restart;
354 }
355 acct_kill(acct, NULL);
356 spin_lock(&acct_lock);
Pavel Emelyanovb5a71742008-07-25 01:48:47 -0700357 goto restart;
358 }
Pavel Emelyanov0b6b0302008-07-25 01:48:47 -0700359 spin_unlock(&acct_lock);
360}
361
362void acct_exit_ns(struct pid_namespace *ns)
363{
Al Virob8f00e62014-08-07 07:51:03 -0400364 acct_kill(acct_get(&ns->bacct), NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365}
366
367/*
368 * encode an unsigned long into a comp_t
369 *
370 * This routine has been adopted from the encode_comp_t() function in
371 * the kern_acct.c file of the FreeBSD operating system. The encoding
372 * is a 13-bit fraction with a 3-bit (base 8) exponent.
373 */
374
375#define MANTSIZE 13 /* 13 bit mantissa. */
376#define EXPSIZE 3 /* Base 8 (3 bit) exponent. */
377#define MAXFRACT ((1 << MANTSIZE) - 1) /* Maximum fractional value. */
378
379static comp_t encode_comp_t(unsigned long value)
380{
381 int exp, rnd;
382
383 exp = rnd = 0;
384 while (value > MAXFRACT) {
385 rnd = value & (1 << (EXPSIZE - 1)); /* Round up? */
386 value >>= EXPSIZE; /* Base 8 exponent == 3 bit shift. */
387 exp++;
388 }
389
390 /*
Daniel Walker6ae965c2007-10-18 03:06:04 -0700391 * If we need to round up, do it (and handle overflow correctly).
392 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393 if (rnd && (++value > MAXFRACT)) {
394 value >>= EXPSIZE;
395 exp++;
396 }
397
398 /*
Daniel Walker6ae965c2007-10-18 03:06:04 -0700399 * Clean it up and polish it off.
400 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401 exp <<= MANTSIZE; /* Shift the exponent into place */
402 exp += value; /* and add on the mantissa. */
403 return exp;
404}
405
406#if ACCT_VERSION==1 || ACCT_VERSION==2
407/*
408 * encode an u64 into a comp2_t (24 bits)
409 *
410 * Format: 5 bit base 2 exponent, 20 bits mantissa.
411 * The leading bit of the mantissa is not stored, but implied for
412 * non-zero exponents.
413 * Largest encodable value is 50 bits.
414 */
415
416#define MANTSIZE2 20 /* 20 bit mantissa. */
417#define EXPSIZE2 5 /* 5 bit base 2 exponent. */
418#define MAXFRACT2 ((1ul << MANTSIZE2) - 1) /* Maximum fractional value. */
419#define MAXEXP2 ((1 <<EXPSIZE2) - 1) /* Maximum exponent. */
420
421static comp2_t encode_comp2_t(u64 value)
422{
Daniel Walker6ae965c2007-10-18 03:06:04 -0700423 int exp, rnd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424
Daniel Walker6ae965c2007-10-18 03:06:04 -0700425 exp = (value > (MAXFRACT2>>1));
426 rnd = 0;
427 while (value > MAXFRACT2) {
428 rnd = value & 1;
429 value >>= 1;
430 exp++;
431 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432
Daniel Walker6ae965c2007-10-18 03:06:04 -0700433 /*
434 * If we need to round up, do it (and handle overflow correctly).
435 */
436 if (rnd && (++value > MAXFRACT2)) {
437 value >>= 1;
438 exp++;
439 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440
Daniel Walker6ae965c2007-10-18 03:06:04 -0700441 if (exp > MAXEXP2) {
442 /* Overflow. Return largest representable number instead. */
443 return (1ul << (MANTSIZE2+EXPSIZE2-1)) - 1;
444 } else {
445 return (value & (MAXFRACT2>>1)) | (exp << (MANTSIZE2-1));
446 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447}
448#endif
449
450#if ACCT_VERSION==3
451/*
452 * encode an u64 into a 32 bit IEEE float
453 */
454static u32 encode_float(u64 value)
455{
456 unsigned exp = 190;
457 unsigned u;
458
459 if (value==0) return 0;
460 while ((s64)value > 0){
461 value <<= 1;
462 exp--;
463 }
464 u = (u32)(value >> 40) & 0x7fffffu;
465 return u | (exp << 23);
466}
467#endif
468
469/*
470 * Write an accounting entry for an exiting process
471 *
472 * The acct_process() call is the workhorse of the process
473 * accounting system. The struct acct is built here and then written
474 * into the accounting file. This function should only be called from
Ingo Molnarbcbe4a02007-11-26 21:21:49 +0100475 * do_exit() or when switching to a different output file.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476 */
477
Al Virocdd37e22014-04-26 23:45:53 -0400478static void fill_ac(acct_t *ac)
479{
480 struct pacct_struct *pacct = &current->signal->pacct;
481 u64 elapsed, run_time;
482 struct tty_struct *tty;
483
484 /*
485 * Fill the accounting struct with the needed info as recorded
486 * by the different kernel functions.
487 */
488 memset(ac, 0, sizeof(acct_t));
489
490 ac->ac_version = ACCT_VERSION | ACCT_BYTEORDER;
491 strlcpy(ac->ac_comm, current->comm, sizeof(ac->ac_comm));
492
493 /* calculate run_time in nsec*/
494 run_time = ktime_get_ns();
495 run_time -= current->group_leader->start_time;
496 /* convert nsec -> AHZ */
497 elapsed = nsec_to_AHZ(run_time);
498#if ACCT_VERSION==3
499 ac->ac_etime = encode_float(elapsed);
500#else
501 ac->ac_etime = encode_comp_t(elapsed < (unsigned long) -1l ?
502 (unsigned long) elapsed : (unsigned long) -1l);
503#endif
504#if ACCT_VERSION==1 || ACCT_VERSION==2
505 {
506 /* new enlarged etime field */
507 comp2_t etime = encode_comp2_t(elapsed);
508 ac->ac_etime_hi = etime >> 16;
509 ac->ac_etime_lo = (u16) etime;
510 }
511#endif
512 do_div(elapsed, AHZ);
513 ac->ac_btime = get_seconds() - elapsed;
514#if ACCT_VERSION==2
515 ac->ac_ahz = AHZ;
516#endif
517
518 spin_lock_irq(&current->sighand->siglock);
519 tty = current->signal->tty; /* Safe as we hold the siglock */
520 ac->ac_tty = tty ? old_encode_dev(tty_devnum(tty)) : 0;
521 ac->ac_utime = encode_comp_t(jiffies_to_AHZ(cputime_to_jiffies(pacct->ac_utime)));
522 ac->ac_stime = encode_comp_t(jiffies_to_AHZ(cputime_to_jiffies(pacct->ac_stime)));
523 ac->ac_flag = pacct->ac_flag;
524 ac->ac_mem = encode_comp_t(pacct->ac_mem);
525 ac->ac_minflt = encode_comp_t(pacct->ac_minflt);
526 ac->ac_majflt = encode_comp_t(pacct->ac_majflt);
527 ac->ac_exitcode = pacct->ac_exitcode;
528 spin_unlock_irq(&current->sighand->siglock);
529}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530/*
531 * do_acct_process does all actual work. Caller holds the reference to file.
532 */
Al Virob8f00e62014-08-07 07:51:03 -0400533static void do_acct_process(struct bsd_acct_struct *acct)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534{
535 acct_t ac;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536 unsigned long flim;
Michal Schmidtd8e180d2009-08-20 14:39:52 -0700537 const struct cred *orig_cred;
Al Virob8f00e62014-08-07 07:51:03 -0400538 struct pid_namespace *ns = acct->ns;
539 struct file *file = acct->file;
Michal Schmidtd8e180d2009-08-20 14:39:52 -0700540
Al Viroed447242014-04-19 14:37:20 -0400541 /*
542 * Accounting records are not subject to resource limits.
543 */
544 flim = current->signal->rlim[RLIMIT_FSIZE].rlim_cur;
545 current->signal->rlim[RLIMIT_FSIZE].rlim_cur = RLIM_INFINITY;
Michal Schmidtd8e180d2009-08-20 14:39:52 -0700546 /* Perform file operations on behalf of whoever enabled accounting */
547 orig_cred = override_creds(file->f_cred);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548
549 /*
550 * First check to see if there is enough free_space to continue
551 * the process accounting system.
552 */
Pavel Emelyanov6248b1b2008-07-25 01:48:46 -0700553 if (!check_free_space(acct, file))
Michal Schmidtd8e180d2009-08-20 14:39:52 -0700554 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555
Al Virocdd37e22014-04-26 23:45:53 -0400556 fill_ac(&ac);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557 /* we really need to bite the bullet and change layout */
Eric W. Biedermanf8f3d4d2012-02-07 16:54:50 -0800558 ac.ac_uid = from_kuid_munged(file->f_cred->user_ns, orig_cred->uid);
559 ac.ac_gid = from_kgid_munged(file->f_cred->user_ns, orig_cred->gid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560#if ACCT_VERSION==1 || ACCT_VERSION==2
561 /* backward-compatible 16 bit fields */
David Howells76aac0e2008-11-14 10:39:12 +1100562 ac.ac_uid16 = ac.ac_uid;
563 ac.ac_gid16 = ac.ac_gid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564#endif
565#if ACCT_VERSION==3
Pavel Emelyanov5f7b7032008-03-24 12:29:53 -0700566 ac.ac_pid = task_tgid_nr_ns(current, ns);
Pavel Emelyanova846a192008-03-24 12:29:52 -0700567 rcu_read_lock();
Pavel Emelyanov5f7b7032008-03-24 12:29:53 -0700568 ac.ac_ppid = task_tgid_nr_ns(rcu_dereference(current->real_parent), ns);
Pavel Emelyanova846a192008-03-24 12:29:52 -0700569 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571 /*
Jan Kara5ae98f12013-05-04 00:11:23 +0200572 * Get freeze protection. If the fs is frozen, just skip the write
573 * as we could deadlock the system otherwise.
574 */
Al Viroed447242014-04-19 14:37:20 -0400575 if (file_start_write_trylock(file)) {
576 /* it's been opened O_APPEND, so position is irrelevant */
577 loff_t pos = 0;
578 __kernel_write(file, (char *)&ac, sizeof(acct_t), &pos);
579 file_end_write(file);
580 }
Michal Schmidtd8e180d2009-08-20 14:39:52 -0700581out:
Al Viroed447242014-04-19 14:37:20 -0400582 current->signal->rlim[RLIMIT_FSIZE].rlim_cur = flim;
Michal Schmidtd8e180d2009-08-20 14:39:52 -0700583 revert_creds(orig_cred);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584}
585
Randy Dunlap417ef532005-09-10 00:26:39 -0700586/**
KaiGai Kohei0e464812006-06-25 05:49:24 -0700587 * acct_collect - collect accounting information into pacct_struct
KaiGai Koheif6ec29a2006-06-25 05:49:25 -0700588 * @exitcode: task exit code
589 * @group_dead: not 0, if this thread is the last one in the process.
KaiGai Kohei0e464812006-06-25 05:49:24 -0700590 */
KaiGai Koheif6ec29a2006-06-25 05:49:25 -0700591void acct_collect(long exitcode, int group_dead)
KaiGai Kohei0e464812006-06-25 05:49:24 -0700592{
593 struct pacct_struct *pacct = &current->signal->pacct;
Frederic Weisbecker6fac4822012-11-13 14:20:55 +0100594 cputime_t utime, stime;
KaiGai Kohei0e464812006-06-25 05:49:24 -0700595 unsigned long vsize = 0;
596
KaiGai Koheif6ec29a2006-06-25 05:49:25 -0700597 if (group_dead && current->mm) {
KaiGai Kohei0e464812006-06-25 05:49:24 -0700598 struct vm_area_struct *vma;
599 down_read(&current->mm->mmap_sem);
600 vma = current->mm->mmap;
601 while (vma) {
602 vsize += vma->vm_end - vma->vm_start;
603 vma = vma->vm_next;
604 }
605 up_read(&current->mm->mmap_sem);
606 }
607
KaiGai Kohei77787bf2006-06-25 05:49:26 -0700608 spin_lock_irq(&current->sighand->siglock);
KaiGai Koheif6ec29a2006-06-25 05:49:25 -0700609 if (group_dead)
610 pacct->ac_mem = vsize / 1024;
611 if (thread_group_leader(current)) {
612 pacct->ac_exitcode = exitcode;
613 if (current->flags & PF_FORKNOEXEC)
614 pacct->ac_flag |= AFORK;
615 }
616 if (current->flags & PF_SUPERPRIV)
617 pacct->ac_flag |= ASU;
618 if (current->flags & PF_DUMPCORE)
619 pacct->ac_flag |= ACORE;
620 if (current->flags & PF_SIGNALED)
621 pacct->ac_flag |= AXSIG;
Frederic Weisbecker6fac4822012-11-13 14:20:55 +0100622 task_cputime(current, &utime, &stime);
623 pacct->ac_utime += utime;
624 pacct->ac_stime += stime;
KaiGai Kohei77787bf2006-06-25 05:49:26 -0700625 pacct->ac_minflt += current->min_flt;
626 pacct->ac_majflt += current->maj_flt;
627 spin_unlock_irq(&current->sighand->siglock);
KaiGai Kohei0e464812006-06-25 05:49:24 -0700628}
629
Al Viroe25ff112014-05-07 05:12:09 -0400630static void slow_acct_process(struct pid_namespace *ns)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631{
Al Viroe25ff112014-05-07 05:12:09 -0400632 for ( ; ns; ns = ns->parent) {
Al Virob8f00e62014-08-07 07:51:03 -0400633 struct bsd_acct_struct *acct = acct_get(&ns->bacct);
634 if (acct) {
635 do_acct_process(acct);
636 mutex_unlock(&acct->lock);
637 acct_put(acct);
Al Viroe25ff112014-05-07 05:12:09 -0400638 }
Al Viroe25ff112014-05-07 05:12:09 -0400639 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640}
Pavel Emelyanov7d1e1352008-07-25 01:48:48 -0700641
642/**
Al Viroe25ff112014-05-07 05:12:09 -0400643 * acct_process
Pavel Emelyanov7d1e1352008-07-25 01:48:48 -0700644 *
645 * handles process accounting for an exiting task
646 */
647void acct_process(void)
648{
649 struct pid_namespace *ns;
650
Pavel Emelyanov0c18d7a2008-07-25 01:48:49 -0700651 /*
652 * This loop is safe lockless, since current is still
653 * alive and holds its namespace, which in turn holds
654 * its parent.
655 */
Al Viroe25ff112014-05-07 05:12:09 -0400656 for (ns = task_active_pid_ns(current); ns != NULL; ns = ns->parent) {
Al Virob8f00e62014-08-07 07:51:03 -0400657 if (ns->bacct)
Al Viroe25ff112014-05-07 05:12:09 -0400658 break;
659 }
660 if (unlikely(ns))
661 slow_acct_process(ns);
Pavel Emelyanov7d1e1352008-07-25 01:48:48 -0700662}