]> git.proxmox.com Git - mirror_ubuntu-zesty-kernel.git/blame - kernel/acct.c
acct: new lifetime rules
[mirror_ubuntu-zesty-kernel.git] / kernel / acct.c
CommitLineData
1da177e4
LT
1/*
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
1da177e4
LT
46#include <linux/mm.h>
47#include <linux/slab.h>
48#include <linux/acct.h>
c59ede7b 49#include <linux/capability.h>
1da177e4
LT
50#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>
7b7b1ace 57#include <linux/mount.h>
7153e402 58#include <linux/uaccess.h>
1da177e4
LT
59#include <asm/div64.h>
60#include <linux/blkdev.h> /* sector_div */
5f7b703f 61#include <linux/pid_namespace.h>
1da177e4
LT
62
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 */
b8f00e6b 78static void do_acct_process(struct bsd_acct_struct *acct);
1da177e4 79
081e4c8a 80struct bsd_acct_struct {
b8f00e6b
AV
81 long count;
82 struct mutex lock;
32dc7308
AV
83 int active;
84 unsigned long needcheck;
1da177e4 85 struct file *file;
5f7b703f 86 struct pid_namespace *ns;
b5a71748 87 struct list_head list;
1da177e4
LT
88};
89
a75d9797 90static DEFINE_SPINLOCK(acct_lock);
b5a71748 91static LIST_HEAD(acct_list);
a75d9797 92
1da177e4
LT
93/*
94 * Check the amount of free space and suspend/resume accordingly.
95 */
6248b1b3 96static int check_free_space(struct bsd_acct_struct *acct, struct file *file)
1da177e4
LT
97{
98 struct kstatfs sbuf;
99 int res;
100 int act;
32dc7308
AV
101 u64 resume;
102 u64 suspend;
1da177e4 103
a75d9797 104 spin_lock(&acct_lock);
6248b1b3 105 res = acct->active;
32dc7308 106 if (!file || time_is_before_jiffies(acct->needcheck))
1da177e4 107 goto out;
a75d9797 108 spin_unlock(&acct_lock);
1da177e4
LT
109
110 /* May block */
ebabe9a9 111 if (vfs_statfs(&file->f_path, &sbuf))
1da177e4
LT
112 return res;
113 suspend = sbuf.f_blocks * SUSPEND;
114 resume = sbuf.f_blocks * RESUME;
115
32dc7308
AV
116 do_div(suspend, 100);
117 do_div(resume, 100);
1da177e4
LT
118
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 /*
6248b1b3 127 * If some joker switched acct->file under us we'ld better be
1da177e4
LT
128 * silent and _not_ touch anything.
129 */
a75d9797 130 spin_lock(&acct_lock);
6248b1b3 131 if (file != acct->file) {
1da177e4 132 if (act)
46c0a8ca 133 res = act > 0;
1da177e4
LT
134 goto out;
135 }
136
6248b1b3 137 if (acct->active) {
1da177e4 138 if (act < 0) {
6248b1b3 139 acct->active = 0;
1da177e4
LT
140 printk(KERN_INFO "Process accounting paused\n");
141 }
142 } else {
143 if (act > 0) {
6248b1b3 144 acct->active = 1;
1da177e4
LT
145 printk(KERN_INFO "Process accounting resumed\n");
146 }
147 }
148
32dc7308 149 acct->needcheck = jiffies + ACCT_TIMEOUT*HZ;
6248b1b3 150 res = acct->active;
1da177e4 151out:
a75d9797 152 spin_unlock(&acct_lock);
1da177e4
LT
153 return res;
154}
155
b8f00e6b 156static void acct_put(struct bsd_acct_struct *p)
1da177e4 157{
b8f00e6b
AV
158 spin_lock(&acct_lock);
159 if (!--p->count)
160 kfree(p);
161 spin_unlock(&acct_lock);
162}
163
164static 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 }
1da177e4 182 }
b8f00e6b
AV
183 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;
192 spin_lock(&acct_lock);
193 list_del(&acct->list);
194 mnt_unpin(file->f_path.mnt);
a75d9797 195 spin_unlock(&acct_lock);
b8f00e6b
AV
196 do_acct_process(acct);
197 filp_close(file, NULL);
a75d9797 198 spin_lock(&acct_lock);
b8f00e6b
AV
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);
1da177e4
LT
209 }
210}
211
669abf4e 212static int acct_on(struct filename *pathname)
7b7b1ace
AV
213{
214 struct file *file;
df279ca8 215 struct vfsmount *mnt;
b8f00e6b
AV
216 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;
7b7b1ace
AV
222
223 /* Difference from BSD - they don't do O_APPEND */
669abf4e 224 file = file_open_name(pathname, O_WRONLY|O_APPEND|O_LARGEFILE, 0);
b8f00e6b
AV
225 if (IS_ERR(file)) {
226 kfree(acct);
7b7b1ace 227 return PTR_ERR(file);
b8f00e6b 228 }
7b7b1ace 229
496ad9aa 230 if (!S_ISREG(file_inode(file)->i_mode)) {
b8f00e6b 231 kfree(acct);
7b7b1ace
AV
232 filp_close(file, NULL);
233 return -EACCES;
234 }
235
236 if (!file->f_op->write) {
b8f00e6b 237 kfree(acct);
7b7b1ace
AV
238 filp_close(file, NULL);
239 return -EIO;
240 }
241
b8f00e6b
AV
242 acct->count = 1;
243 acct->file = file;
244 acct->needcheck = jiffies;
245 acct->ns = ns;
246 mutex_init(&acct->lock);
247 mnt = file->f_path.mnt;
0b6b030f 248
b8f00e6b
AV
249 old = acct_get(&ns->bacct);
250 if (old) {
251 acct_kill(old, acct);
252 } else {
253 spin_lock(&acct_lock);
0b6b030f 254 ns->bacct = acct;
b8f00e6b
AV
255 mnt_pin(mnt);
256 list_add(&acct->list, &acct_list);
257 spin_unlock(&acct_lock);
0b6b030f 258 }
df279ca8 259 mntput(mnt); /* it's pinned, now give up active reference */
7b7b1ace
AV
260 return 0;
261}
262
9df7fa16
AV
263static DEFINE_MUTEX(acct_on_mutex);
264
417ef531
RD
265/**
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.
1da177e4 275 */
b290ebe2 276SYSCALL_DEFINE1(acct, const char __user *, name)
1da177e4 277{
05b90496 278 int error = 0;
1da177e4
LT
279
280 if (!capable(CAP_SYS_PACCT))
281 return -EPERM;
282
283 if (name) {
91a27b2a 284 struct filename *tmp = getname(name);
7b7b1ace 285 if (IS_ERR(tmp))
46c0a8ca 286 return PTR_ERR(tmp);
9df7fa16 287 mutex_lock(&acct_on_mutex);
669abf4e 288 error = acct_on(tmp);
9df7fa16 289 mutex_unlock(&acct_on_mutex);
1da177e4 290 putname(tmp);
7b7b1ace 291 } else {
b8f00e6b 292 acct_kill(acct_get(&task_active_pid_ns(current)->bacct), NULL);
1da177e4 293 }
05b90496 294
7b7b1ace
AV
295 return error;
296}
1da177e4 297
7b7b1ace
AV
298/**
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{
0b6b030f
PE
307 struct bsd_acct_struct *acct;
308
a75d9797 309 spin_lock(&acct_lock);
b5a71748
PE
310restart:
311 list_for_each_entry(acct, &acct_list, list)
b8f00e6b
AV
312 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);
b5a71748
PE
325 goto restart;
326 }
a75d9797 327 spin_unlock(&acct_lock);
1da177e4
LT
328}
329
417ef531
RD
330/**
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.
1da177e4
LT
336 */
337void acct_auto_close(struct super_block *sb)
338{
0b6b030f
PE
339 struct bsd_acct_struct *acct;
340
a75d9797 341 spin_lock(&acct_lock);
b5a71748
PE
342restart:
343 list_for_each_entry(acct, &acct_list, list)
b8f00e6b
AV
344 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);
b5a71748
PE
357 goto restart;
358 }
0b6b030f
PE
359 spin_unlock(&acct_lock);
360}
361
362void acct_exit_ns(struct pid_namespace *ns)
363{
b8f00e6b 364 acct_kill(acct_get(&ns->bacct), NULL);
1da177e4
LT
365}
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 /*
6ae965cd
DW
391 * If we need to round up, do it (and handle overflow correctly).
392 */
1da177e4
LT
393 if (rnd && (++value > MAXFRACT)) {
394 value >>= EXPSIZE;
395 exp++;
396 }
397
398 /*
6ae965cd
DW
399 * Clean it up and polish it off.
400 */
1da177e4
LT
401 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{
6ae965cd
DW
423 int exp, rnd;
424
425 exp = (value > (MAXFRACT2>>1));
426 rnd = 0;
427 while (value > MAXFRACT2) {
428 rnd = value & 1;
429 value >>= 1;
430 exp++;
431 }
432
433 /*
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 }
440
441 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 }
1da177e4
LT
447}
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
bcbe4a07 475 * do_exit() or when switching to a different output file.
1da177e4
LT
476 */
477
cdd37e23 478static void fill_ac(acct_t *ac)
1da177e4 479{
0e464814 480 struct pacct_struct *pacct = &current->signal->pacct;
ccbf62d8 481 u64 elapsed, run_time;
24ec839c 482 struct tty_struct *tty;
1da177e4
LT
483
484 /*
485 * Fill the accounting struct with the needed info as recorded
486 * by the different kernel functions.
487 */
cdd37e23 488 memset(ac, 0, sizeof(acct_t));
1da177e4 489
cdd37e23
AV
490 ac->ac_version = ACCT_VERSION | ACCT_BYTEORDER;
491 strlcpy(ac->ac_comm, current->comm, sizeof(ac->ac_comm));
1da177e4
LT
492
493 /* calculate run_time in nsec*/
ccbf62d8
TG
494 run_time = ktime_get_ns();
495 run_time -= current->group_leader->start_time;
1da177e4
LT
496 /* convert nsec -> AHZ */
497 elapsed = nsec_to_AHZ(run_time);
498#if ACCT_VERSION==3
cdd37e23 499 ac->ac_etime = encode_float(elapsed);
1da177e4 500#else
cdd37e23 501 ac->ac_etime = encode_comp_t(elapsed < (unsigned long) -1l ?
1da177e4
LT
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);
cdd37e23
AV
508 ac->ac_etime_hi = etime >> 16;
509 ac->ac_etime_lo = (u16) etime;
1da177e4
LT
510 }
511#endif
512 do_div(elapsed, AHZ);
cdd37e23
AV
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}
530/*
531 * do_acct_process does all actual work. Caller holds the reference to file.
532 */
b8f00e6b 533static void do_acct_process(struct bsd_acct_struct *acct)
cdd37e23
AV
534{
535 acct_t ac;
536 unsigned long flim;
537 const struct cred *orig_cred;
b8f00e6b
AV
538 struct pid_namespace *ns = acct->ns;
539 struct file *file = acct->file;
cdd37e23
AV
540
541 /*
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;
546 /* Perform file operations on behalf of whoever enabled accounting */
547 orig_cred = override_creds(file->f_cred);
548
549 /*
550 * First check to see if there is enough free_space to continue
551 * the process accounting system.
552 */
553 if (!check_free_space(acct, file))
554 goto out;
555
556 fill_ac(&ac);
1da177e4 557 /* we really need to bite the bullet and change layout */
f8f3d4de
EB
558 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);
1da177e4
LT
560#if ACCT_VERSION==1 || ACCT_VERSION==2
561 /* backward-compatible 16 bit fields */
76aac0e9
DH
562 ac.ac_uid16 = ac.ac_uid;
563 ac.ac_gid16 = ac.ac_gid;
1da177e4
LT
564#endif
565#if ACCT_VERSION==3
5f7b703f 566 ac.ac_pid = task_tgid_nr_ns(current, ns);
a846a195 567 rcu_read_lock();
5f7b703f 568 ac.ac_ppid = task_tgid_nr_ns(rcu_dereference(current->real_parent), ns);
a846a195 569 rcu_read_unlock();
1da177e4 570#endif
5ae98f15
JK
571 /*
572 * Get freeze protection. If the fs is frozen, just skip the write
573 * as we could deadlock the system otherwise.
574 */
ed44724b
AV
575 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 }
d8e180dc 581out:
ed44724b 582 current->signal->rlim[RLIMIT_FSIZE].rlim_cur = flim;
d8e180dc 583 revert_creds(orig_cred);
1da177e4
LT
584}
585
0e464814
KK
586/**
587 * acct_collect - collect accounting information into pacct_struct
f6ec29a4
KK
588 * @exitcode: task exit code
589 * @group_dead: not 0, if this thread is the last one in the process.
0e464814 590 */
f6ec29a4 591void acct_collect(long exitcode, int group_dead)
0e464814
KK
592{
593 struct pacct_struct *pacct = &current->signal->pacct;
6fac4829 594 cputime_t utime, stime;
0e464814
KK
595 unsigned long vsize = 0;
596
f6ec29a4 597 if (group_dead && current->mm) {
0e464814
KK
598 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
77787bfb 608 spin_lock_irq(&current->sighand->siglock);
f6ec29a4
KK
609 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;
6fac4829
FW
622 task_cputime(current, &utime, &stime);
623 pacct->ac_utime += utime;
624 pacct->ac_stime += stime;
77787bfb
KK
625 pacct->ac_minflt += current->min_flt;
626 pacct->ac_majflt += current->maj_flt;
627 spin_unlock_irq(&current->sighand->siglock);
0e464814
KK
628}
629
e25ff11f 630static void slow_acct_process(struct pid_namespace *ns)
1da177e4 631{
e25ff11f 632 for ( ; ns; ns = ns->parent) {
b8f00e6b
AV
633 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);
e25ff11f 638 }
e25ff11f 639 }
1da177e4 640}
7d1e1350
PE
641
642/**
e25ff11f 643 * acct_process
7d1e1350
PE
644 *
645 * handles process accounting for an exiting task
646 */
647void acct_process(void)
648{
649 struct pid_namespace *ns;
650
0c18d7a5
PE
651 /*
652 * This loop is safe lockless, since current is still
653 * alive and holds its namespace, which in turn holds
654 * its parent.
655 */
e25ff11f 656 for (ns = task_active_pid_ns(current); ns != NULL; ns = ns->parent) {
b8f00e6b 657 if (ns->bacct)
e25ff11f
AV
658 break;
659 }
660 if (unlikely(ns))
661 slow_acct_process(ns);
7d1e1350 662}