time: Convert a bunch of &__get_cpu_var introduced in the 3.16 merge period
[linux-2.6-block.git] / kernel / taskstats.c
CommitLineData
c757249a
SN
1/*
2 * taskstats.c - Export per-task statistics to userland
3 *
4 * Copyright (C) Shailabh Nagar, IBM Corp. 2006
5 * (C) Balbir Singh, IBM Corp. 2006
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 */
18
19#include <linux/kernel.h>
20#include <linux/taskstats_kern.h>
f3cef7a9 21#include <linux/tsacct_kern.h>
6f44993f 22#include <linux/delayacct.h>
f9fd8914
SN
23#include <linux/cpumask.h>
24#include <linux/percpu.h>
5a0e3ad6 25#include <linux/slab.h>
846c7bb0
BS
26#include <linux/cgroupstats.h>
27#include <linux/cgroup.h>
28#include <linux/fs.h>
29#include <linux/file.h>
4bd6e32a 30#include <linux/pid_namespace.h>
c757249a 31#include <net/genetlink.h>
60063497 32#include <linux/atomic.h>
c757249a 33
f9fd8914
SN
34/*
35 * Maximum length of a cpumask that can be specified in
36 * the TASKSTATS_CMD_ATTR_REGISTER/DEREGISTER_CPUMASK attribute
37 */
38#define TASKSTATS_CPUMASK_MAXLEN (100+6*NR_CPUS)
39
b81f3ea9 40static DEFINE_PER_CPU(__u32, taskstats_seqnum);
c757249a 41static int family_registered;
e18b890b 42struct kmem_cache *taskstats_cache;
c757249a
SN
43
44static struct genl_family family = {
45 .id = GENL_ID_GENERATE,
46 .name = TASKSTATS_GENL_NAME,
47 .version = TASKSTATS_GENL_VERSION,
48 .maxattr = TASKSTATS_CMD_ATTR_MAX,
49};
50
b54452b0 51static const struct nla_policy taskstats_cmd_get_policy[TASKSTATS_CMD_ATTR_MAX+1] = {
c757249a
SN
52 [TASKSTATS_CMD_ATTR_PID] = { .type = NLA_U32 },
53 [TASKSTATS_CMD_ATTR_TGID] = { .type = NLA_U32 },
f9fd8914
SN
54 [TASKSTATS_CMD_ATTR_REGISTER_CPUMASK] = { .type = NLA_STRING },
55 [TASKSTATS_CMD_ATTR_DEREGISTER_CPUMASK] = { .type = NLA_STRING },};
56
b54452b0 57static const struct nla_policy cgroupstats_cmd_get_policy[CGROUPSTATS_CMD_ATTR_MAX+1] = {
846c7bb0
BS
58 [CGROUPSTATS_CMD_ATTR_FD] = { .type = NLA_U32 },
59};
60
f9fd8914
SN
61struct listener {
62 struct list_head list;
63 pid_t pid;
bb129994 64 char valid;
c757249a
SN
65};
66
f9fd8914
SN
67struct listener_list {
68 struct rw_semaphore sem;
69 struct list_head list;
70};
71static DEFINE_PER_CPU(struct listener_list, listener_array);
72
73enum actions {
74 REGISTER,
75 DEREGISTER,
76 CPU_DONT_CARE
77};
c757249a
SN
78
79static int prepare_reply(struct genl_info *info, u8 cmd, struct sk_buff **skbp,
37167485 80 size_t size)
c757249a
SN
81{
82 struct sk_buff *skb;
83 void *reply;
84
85 /*
86 * If new attributes are added, please revisit this allocation
87 */
3dabc715 88 skb = genlmsg_new(size, GFP_KERNEL);
c757249a
SN
89 if (!skb)
90 return -ENOMEM;
91
92 if (!info) {
cd85fc58 93 int seq = this_cpu_inc_return(taskstats_seqnum) - 1;
c757249a 94
17c157c8 95 reply = genlmsg_put(skb, 0, seq, &family, 0, cmd);
c757249a 96 } else
17c157c8 97 reply = genlmsg_put_reply(skb, info, &family, 0, cmd);
c757249a
SN
98 if (reply == NULL) {
99 nlmsg_free(skb);
100 return -EINVAL;
101 }
102
103 *skbp = skb;
c757249a
SN
104 return 0;
105}
106
f9fd8914
SN
107/*
108 * Send taskstats data in @skb to listener with nl_pid @pid
109 */
134e6375 110static int send_reply(struct sk_buff *skb, struct genl_info *info)
c757249a 111{
b529ccf2 112 struct genlmsghdr *genlhdr = nlmsg_data(nlmsg_hdr(skb));
f9fd8914 113 void *reply = genlmsg_data(genlhdr);
c757249a
SN
114 int rc;
115
c757249a
SN
116 rc = genlmsg_end(skb, reply);
117 if (rc < 0) {
118 nlmsg_free(skb);
119 return rc;
120 }
121
134e6375 122 return genlmsg_reply(skb, info);
c757249a
SN
123}
124
f9fd8914
SN
125/*
126 * Send taskstats data in @skb to listeners registered for @cpu's exit data
127 */
115085ea
ON
128static void send_cpu_listeners(struct sk_buff *skb,
129 struct listener_list *listeners)
f9fd8914 130{
b529ccf2 131 struct genlmsghdr *genlhdr = nlmsg_data(nlmsg_hdr(skb));
f9fd8914
SN
132 struct listener *s, *tmp;
133 struct sk_buff *skb_next, *skb_cur = skb;
134 void *reply = genlmsg_data(genlhdr);
d94a0415 135 int rc, delcount = 0;
f9fd8914
SN
136
137 rc = genlmsg_end(skb, reply);
138 if (rc < 0) {
139 nlmsg_free(skb);
d94a0415 140 return;
f9fd8914
SN
141 }
142
143 rc = 0;
bb129994 144 down_read(&listeners->sem);
d94a0415 145 list_for_each_entry(s, &listeners->list, list) {
f9fd8914
SN
146 skb_next = NULL;
147 if (!list_is_last(&s->list, &listeners->list)) {
148 skb_next = skb_clone(skb_cur, GFP_KERNEL);
d94a0415 149 if (!skb_next)
f9fd8914 150 break;
f9fd8914 151 }
134e6375 152 rc = genlmsg_unicast(&init_net, skb_cur, s->pid);
d94a0415 153 if (rc == -ECONNREFUSED) {
bb129994
SN
154 s->valid = 0;
155 delcount++;
f9fd8914
SN
156 }
157 skb_cur = skb_next;
158 }
bb129994 159 up_read(&listeners->sem);
f9fd8914 160
d94a0415
SN
161 if (skb_cur)
162 nlmsg_free(skb_cur);
163
bb129994 164 if (!delcount)
d94a0415 165 return;
bb129994
SN
166
167 /* Delete invalidated entries */
168 down_write(&listeners->sem);
169 list_for_each_entry_safe(s, tmp, &listeners->list, list) {
170 if (!s->valid) {
171 list_del(&s->list);
172 kfree(s);
173 }
174 }
175 up_write(&listeners->sem);
f9fd8914
SN
176}
177
4bd6e32a
EB
178static void fill_stats(struct user_namespace *user_ns,
179 struct pid_namespace *pid_ns,
180 struct task_struct *tsk, struct taskstats *stats)
c757249a 181{
51de4d90 182 memset(stats, 0, sizeof(*stats));
c757249a
SN
183 /*
184 * Each accounting subsystem adds calls to its functions to
185 * fill in relevant parts of struct taskstsats as follows
186 *
7d94dddd 187 * per-task-foo(stats, tsk);
c757249a
SN
188 */
189
7d94dddd 190 delayacct_add_tsk(stats, tsk);
f3cef7a9
JL
191
192 /* fill in basic acct fields */
6f44993f 193 stats->version = TASKSTATS_VERSION;
b663a79c
MU
194 stats->nvcsw = tsk->nvcsw;
195 stats->nivcsw = tsk->nivcsw;
4bd6e32a 196 bacct_add_tsk(user_ns, pid_ns, stats, tsk);
6f44993f 197
9acc1853
JL
198 /* fill in extended acct fields */
199 xacct_add_tsk(stats, tsk);
3d9e0cf1 200}
9acc1853 201
3d9e0cf1
MH
202static int fill_stats_for_pid(pid_t pid, struct taskstats *stats)
203{
204 struct task_struct *tsk;
c757249a 205
3d9e0cf1
MH
206 rcu_read_lock();
207 tsk = find_task_by_vpid(pid);
208 if (tsk)
209 get_task_struct(tsk);
210 rcu_read_unlock();
211 if (!tsk)
212 return -ESRCH;
4bd6e32a 213 fill_stats(current_user_ns(), task_active_pid_ns(current), tsk, stats);
3d9e0cf1
MH
214 put_task_struct(tsk);
215 return 0;
c757249a
SN
216}
217
3d9e0cf1 218static int fill_stats_for_tgid(pid_t tgid, struct taskstats *stats)
c757249a 219{
3d9e0cf1 220 struct task_struct *tsk, *first;
ad4ecbcb 221 unsigned long flags;
a98b6094 222 int rc = -ESRCH;
c757249a 223
ad4ecbcb
SN
224 /*
225 * Add additional stats from live tasks except zombie thread group
226 * leaders who are already counted with the dead tasks
227 */
a98b6094 228 rcu_read_lock();
3d9e0cf1 229 first = find_task_by_vpid(tgid);
ad4ecbcb 230
a98b6094
ON
231 if (!first || !lock_task_sighand(first, &flags))
232 goto out;
ad4ecbcb 233
a98b6094
ON
234 if (first->signal->stats)
235 memcpy(stats, first->signal->stats, sizeof(*stats));
51de4d90
ON
236 else
237 memset(stats, 0, sizeof(*stats));
fca178c0 238
a98b6094 239 tsk = first;
c757249a 240 do {
d7c3f5f2 241 if (tsk->exit_state)
ad4ecbcb 242 continue;
c757249a 243 /*
ad4ecbcb 244 * Accounting subsystem can call its functions here to
c757249a
SN
245 * fill in relevant parts of struct taskstsats as follows
246 *
ad4ecbcb 247 * per-task-foo(stats, tsk);
c757249a 248 */
ad4ecbcb 249 delayacct_add_tsk(stats, tsk);
6f44993f 250
b663a79c
MU
251 stats->nvcsw += tsk->nvcsw;
252 stats->nivcsw += tsk->nivcsw;
c757249a 253 } while_each_thread(first, tsk);
6f44993f 254
a98b6094
ON
255 unlock_task_sighand(first, &flags);
256 rc = 0;
257out:
258 rcu_read_unlock();
259
260 stats->version = TASKSTATS_VERSION;
c757249a 261 /*
3a4fa0a2 262 * Accounting subsystems can also add calls here to modify
ad4ecbcb 263 * fields of taskstats.
c757249a 264 */
a98b6094 265 return rc;
ad4ecbcb
SN
266}
267
ad4ecbcb
SN
268static void fill_tgid_exit(struct task_struct *tsk)
269{
270 unsigned long flags;
271
b8534d7b 272 spin_lock_irqsave(&tsk->sighand->siglock, flags);
ad4ecbcb
SN
273 if (!tsk->signal->stats)
274 goto ret;
275
276 /*
277 * Each accounting subsystem calls its functions here to
278 * accumalate its per-task stats for tsk, into the per-tgid structure
279 *
280 * per-task-foo(tsk->signal->stats, tsk);
281 */
282 delayacct_add_tsk(tsk->signal->stats, tsk);
283ret:
b8534d7b 284 spin_unlock_irqrestore(&tsk->sighand->siglock, flags);
ad4ecbcb 285 return;
c757249a
SN
286}
287
41c7bb95 288static int add_del_listener(pid_t pid, const struct cpumask *mask, int isadd)
f9fd8914
SN
289{
290 struct listener_list *listeners;
26c4caea 291 struct listener *s, *tmp, *s2;
f9fd8914 292 unsigned int cpu;
0d20633b 293 int ret = 0;
ad4ecbcb 294
41c7bb95 295 if (!cpumask_subset(mask, cpu_possible_mask))
f9fd8914
SN
296 return -EINVAL;
297
4bd6e32a
EB
298 if (current_user_ns() != &init_user_ns)
299 return -EINVAL;
300
301 if (task_active_pid_ns(current) != &init_pid_ns)
302 return -EINVAL;
303
f9fd8914 304 if (isadd == REGISTER) {
41c7bb95 305 for_each_cpu(cpu, mask) {
dfc428b6
ON
306 s = kmalloc_node(sizeof(struct listener),
307 GFP_KERNEL, cpu_to_node(cpu));
0d20633b
CG
308 if (!s) {
309 ret = -ENOMEM;
f9fd8914 310 goto cleanup;
0d20633b 311 }
f9fd8914 312 s->pid = pid;
bb129994 313 s->valid = 1;
f9fd8914
SN
314
315 listeners = &per_cpu(listener_array, cpu);
316 down_write(&listeners->sem);
dfc428b6 317 list_for_each_entry(s2, &listeners->list, list) {
a7295898 318 if (s2->pid == pid && s2->valid)
dfc428b6 319 goto exists;
26c4caea 320 }
f9fd8914 321 list_add(&s->list, &listeners->list);
26c4caea 322 s = NULL;
dfc428b6 323exists:
f9fd8914 324 up_write(&listeners->sem);
dfc428b6 325 kfree(s); /* nop if NULL */
f9fd8914
SN
326 }
327 return 0;
328 }
329
330 /* Deregister or cleanup */
331cleanup:
41c7bb95 332 for_each_cpu(cpu, mask) {
f9fd8914
SN
333 listeners = &per_cpu(listener_array, cpu);
334 down_write(&listeners->sem);
335 list_for_each_entry_safe(s, tmp, &listeners->list, list) {
336 if (s->pid == pid) {
337 list_del(&s->list);
338 kfree(s);
339 break;
340 }
341 }
342 up_write(&listeners->sem);
343 }
0d20633b 344 return ret;
f9fd8914
SN
345}
346
41c7bb95 347static int parse(struct nlattr *na, struct cpumask *mask)
f9fd8914
SN
348{
349 char *data;
350 int len;
351 int ret;
352
353 if (na == NULL)
354 return 1;
355 len = nla_len(na);
356 if (len > TASKSTATS_CPUMASK_MAXLEN)
357 return -E2BIG;
358 if (len < 1)
359 return -EINVAL;
360 data = kmalloc(len, GFP_KERNEL);
361 if (!data)
362 return -ENOMEM;
363 nla_strlcpy(data, na, len);
29c0177e 364 ret = cpulist_parse(data, mask);
f9fd8914
SN
365 kfree(data);
366 return ret;
367}
368
9ab020cf 369#if defined(CONFIG_64BIT) && !defined(CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS)
4be2c95d
JM
370#define TASKSTATS_NEEDS_PADDING 1
371#endif
372
51de4d90 373static struct taskstats *mk_reply(struct sk_buff *skb, int type, u32 pid)
68062b86 374{
51de4d90 375 struct nlattr *na, *ret;
68062b86
ON
376 int aggr;
377
37167485
ON
378 aggr = (type == TASKSTATS_TYPE_PID)
379 ? TASKSTATS_TYPE_AGGR_PID
380 : TASKSTATS_TYPE_AGGR_TGID;
68062b86 381
4be2c95d
JM
382 /*
383 * The taskstats structure is internally aligned on 8 byte
384 * boundaries but the layout of the aggregrate reply, with
385 * two NLA headers and the pid (each 4 bytes), actually
386 * force the entire structure to be unaligned. This causes
387 * the kernel to issue unaligned access warnings on some
388 * architectures like ia64. Unfortunately, some software out there
389 * doesn't properly unroll the NLA packet and assumes that the start
390 * of the taskstats structure will always be 20 bytes from the start
391 * of the netlink payload. Aligning the start of the taskstats
392 * structure breaks this software, which we don't want. So, for now
393 * the alignment only happens on architectures that require it
394 * and those users will have to update to fixed versions of those
395 * packages. Space is reserved in the packet only when needed.
396 * This ifdef should be removed in several years e.g. 2012 once
397 * we can be confident that fixed versions are installed on most
398 * systems. We add the padding before the aggregate since the
399 * aggregate is already a defined type.
400 */
401#ifdef TASKSTATS_NEEDS_PADDING
402 if (nla_put(skb, TASKSTATS_TYPE_NULL, 0, NULL) < 0)
403 goto err;
404#endif
68062b86 405 na = nla_nest_start(skb, aggr);
37167485
ON
406 if (!na)
407 goto err;
4be2c95d 408
3fa58266
CG
409 if (nla_put(skb, type, sizeof(pid), &pid) < 0) {
410 nla_nest_cancel(skb, na);
51de4d90 411 goto err;
3fa58266 412 }
51de4d90 413 ret = nla_reserve(skb, TASKSTATS_TYPE_STATS, sizeof(struct taskstats));
3fa58266
CG
414 if (!ret) {
415 nla_nest_cancel(skb, na);
51de4d90 416 goto err;
3fa58266 417 }
68062b86
ON
418 nla_nest_end(skb, na);
419
51de4d90
ON
420 return nla_data(ret);
421err:
422 return NULL;
68062b86
ON
423}
424
846c7bb0
BS
425static int cgroupstats_user_cmd(struct sk_buff *skb, struct genl_info *info)
426{
427 int rc = 0;
428 struct sk_buff *rep_skb;
429 struct cgroupstats *stats;
430 struct nlattr *na;
431 size_t size;
432 u32 fd;
2903ff01 433 struct fd f;
846c7bb0
BS
434
435 na = info->attrs[CGROUPSTATS_CMD_ATTR_FD];
436 if (!na)
437 return -EINVAL;
438
439 fd = nla_get_u32(info->attrs[CGROUPSTATS_CMD_ATTR_FD]);
2903ff01
AV
440 f = fdget(fd);
441 if (!f.file)
f9615984 442 return 0;
846c7bb0 443
f9615984 444 size = nla_total_size(sizeof(struct cgroupstats));
846c7bb0 445
f9615984
AB
446 rc = prepare_reply(info, CGROUPSTATS_CMD_NEW, &rep_skb,
447 size);
448 if (rc < 0)
449 goto err;
846c7bb0 450
f9615984
AB
451 na = nla_reserve(rep_skb, CGROUPSTATS_TYPE_CGROUP_STATS,
452 sizeof(struct cgroupstats));
25353b33 453 if (na == NULL) {
0324b5a4 454 nlmsg_free(rep_skb);
25353b33
AC
455 rc = -EMSGSIZE;
456 goto err;
457 }
458
f9615984
AB
459 stats = nla_data(na);
460 memset(stats, 0, sizeof(*stats));
846c7bb0 461
2903ff01 462 rc = cgroupstats_build(stats, f.file->f_dentry);
f9615984
AB
463 if (rc < 0) {
464 nlmsg_free(rep_skb);
465 goto err;
846c7bb0
BS
466 }
467
134e6375 468 rc = send_reply(rep_skb, info);
f9615984 469
846c7bb0 470err:
2903ff01 471 fdput(f);
846c7bb0
BS
472 return rc;
473}
474
93233125 475static int cmd_attr_register_cpumask(struct genl_info *info)
c757249a 476{
41c7bb95 477 cpumask_var_t mask;
93233125 478 int rc;
41c7bb95
RR
479
480 if (!alloc_cpumask_var(&mask, GFP_KERNEL))
481 return -ENOMEM;
41c7bb95 482 rc = parse(info->attrs[TASKSTATS_CMD_ATTR_REGISTER_CPUMASK], mask);
f9fd8914 483 if (rc < 0)
93233125 484 goto out;
15e47304 485 rc = add_del_listener(info->snd_portid, mask, REGISTER);
93233125
MH
486out:
487 free_cpumask_var(mask);
488 return rc;
489}
490
491static int cmd_attr_deregister_cpumask(struct genl_info *info)
492{
493 cpumask_var_t mask;
494 int rc;
f9fd8914 495
93233125
MH
496 if (!alloc_cpumask_var(&mask, GFP_KERNEL))
497 return -ENOMEM;
41c7bb95 498 rc = parse(info->attrs[TASKSTATS_CMD_ATTR_DEREGISTER_CPUMASK], mask);
f9fd8914 499 if (rc < 0)
93233125 500 goto out;
15e47304 501 rc = add_del_listener(info->snd_portid, mask, DEREGISTER);
93233125 502out:
41c7bb95 503 free_cpumask_var(mask);
93233125
MH
504 return rc;
505}
506
4be2c95d
JM
507static size_t taskstats_packet_size(void)
508{
509 size_t size;
510
511 size = nla_total_size(sizeof(u32)) +
512 nla_total_size(sizeof(struct taskstats)) + nla_total_size(0);
513#ifdef TASKSTATS_NEEDS_PADDING
514 size += nla_total_size(0); /* Padding for alignment */
515#endif
516 return size;
517}
518
93233125
MH
519static int cmd_attr_pid(struct genl_info *info)
520{
521 struct taskstats *stats;
522 struct sk_buff *rep_skb;
523 size_t size;
524 u32 pid;
525 int rc;
c757249a 526
4be2c95d 527 size = taskstats_packet_size();
c757249a 528
37167485 529 rc = prepare_reply(info, TASKSTATS_CMD_NEW, &rep_skb, size);
c757249a
SN
530 if (rc < 0)
531 return rc;
532
51de4d90 533 rc = -EINVAL;
93233125
MH
534 pid = nla_get_u32(info->attrs[TASKSTATS_CMD_ATTR_PID]);
535 stats = mk_reply(rep_skb, TASKSTATS_TYPE_PID, pid);
536 if (!stats)
c757249a 537 goto err;
c757249a 538
3d9e0cf1 539 rc = fill_stats_for_pid(pid, stats);
93233125
MH
540 if (rc < 0)
541 goto err;
134e6375 542 return send_reply(rep_skb, info);
c757249a
SN
543err:
544 nlmsg_free(rep_skb);
545 return rc;
546}
547
93233125
MH
548static int cmd_attr_tgid(struct genl_info *info)
549{
550 struct taskstats *stats;
551 struct sk_buff *rep_skb;
552 size_t size;
553 u32 tgid;
554 int rc;
555
4be2c95d 556 size = taskstats_packet_size();
93233125
MH
557
558 rc = prepare_reply(info, TASKSTATS_CMD_NEW, &rep_skb, size);
559 if (rc < 0)
560 return rc;
561
562 rc = -EINVAL;
563 tgid = nla_get_u32(info->attrs[TASKSTATS_CMD_ATTR_TGID]);
564 stats = mk_reply(rep_skb, TASKSTATS_TYPE_TGID, tgid);
565 if (!stats)
566 goto err;
567
3d9e0cf1 568 rc = fill_stats_for_tgid(tgid, stats);
93233125
MH
569 if (rc < 0)
570 goto err;
571 return send_reply(rep_skb, info);
572err:
573 nlmsg_free(rep_skb);
574 return rc;
575}
576
577static int taskstats_user_cmd(struct sk_buff *skb, struct genl_info *info)
578{
579 if (info->attrs[TASKSTATS_CMD_ATTR_REGISTER_CPUMASK])
580 return cmd_attr_register_cpumask(info);
581 else if (info->attrs[TASKSTATS_CMD_ATTR_DEREGISTER_CPUMASK])
582 return cmd_attr_deregister_cpumask(info);
583 else if (info->attrs[TASKSTATS_CMD_ATTR_PID])
584 return cmd_attr_pid(info);
585 else if (info->attrs[TASKSTATS_CMD_ATTR_TGID])
586 return cmd_attr_tgid(info);
587 else
588 return -EINVAL;
589}
590
34ec1234
ON
591static struct taskstats *taskstats_tgid_alloc(struct task_struct *tsk)
592{
593 struct signal_struct *sig = tsk->signal;
594 struct taskstats *stats;
595
596 if (sig->stats || thread_group_empty(tsk))
597 goto ret;
598
599 /* No problem if kmem_cache_zalloc() fails */
600 stats = kmem_cache_zalloc(taskstats_cache, GFP_KERNEL);
601
602 spin_lock_irq(&tsk->sighand->siglock);
603 if (!sig->stats) {
604 sig->stats = stats;
605 stats = NULL;
606 }
607 spin_unlock_irq(&tsk->sighand->siglock);
608
609 if (stats)
610 kmem_cache_free(taskstats_cache, stats);
611ret:
612 return sig->stats;
613}
614
c757249a 615/* Send pid data out on exit */
115085ea 616void taskstats_exit(struct task_struct *tsk, int group_dead)
c757249a
SN
617{
618 int rc;
115085ea 619 struct listener_list *listeners;
51de4d90 620 struct taskstats *stats;
c757249a 621 struct sk_buff *rep_skb;
c757249a
SN
622 size_t size;
623 int is_thread_group;
c757249a 624
4a279ff1 625 if (!family_registered)
c757249a
SN
626 return;
627
c757249a
SN
628 /*
629 * Size includes space for nested attributes
630 */
4be2c95d 631 size = taskstats_packet_size();
c757249a 632
34ec1234 633 is_thread_group = !!taskstats_tgid_alloc(tsk);
4a279ff1
ON
634 if (is_thread_group) {
635 /* PID + STATS + TGID + STATS */
636 size = 2 * size;
637 /* fill the tsk->signal->stats structure */
638 fill_tgid_exit(tsk);
639 }
640
cd85fc58 641 listeners = __this_cpu_ptr(&listener_array);
115085ea
ON
642 if (list_empty(&listeners->list))
643 return;
644
37167485 645 rc = prepare_reply(NULL, TASKSTATS_CMD_NEW, &rep_skb, size);
c757249a 646 if (rc < 0)
51de4d90 647 return;
c757249a 648
4bd6e32a
EB
649 stats = mk_reply(rep_skb, TASKSTATS_TYPE_PID,
650 task_pid_nr_ns(tsk, &init_pid_ns));
51de4d90 651 if (!stats)
37167485 652 goto err;
c757249a 653
4bd6e32a 654 fill_stats(&init_user_ns, &init_pid_ns, tsk, stats);
c757249a 655
c757249a 656 /*
ad4ecbcb 657 * Doesn't matter if tsk is the leader or the last group member leaving
c757249a 658 */
68062b86 659 if (!is_thread_group || !group_dead)
ad4ecbcb 660 goto send;
c757249a 661
4bd6e32a
EB
662 stats = mk_reply(rep_skb, TASKSTATS_TYPE_TGID,
663 task_tgid_nr_ns(tsk, &init_pid_ns));
51de4d90 664 if (!stats)
37167485 665 goto err;
51de4d90
ON
666
667 memcpy(stats, tsk->signal->stats, sizeof(*stats));
c757249a 668
ad4ecbcb 669send:
115085ea 670 send_cpu_listeners(rep_skb, listeners);
ad4ecbcb 671 return;
37167485 672err:
c757249a 673 nlmsg_free(rep_skb);
c757249a
SN
674}
675
4534de83 676static const struct genl_ops taskstats_ops[] = {
88d36a99
JB
677 {
678 .cmd = TASKSTATS_CMD_GET,
679 .doit = taskstats_user_cmd,
680 .policy = taskstats_cmd_get_policy,
681 .flags = GENL_ADMIN_PERM,
682 },
683 {
684 .cmd = CGROUPSTATS_CMD_GET,
685 .doit = cgroupstats_user_cmd,
686 .policy = cgroupstats_cmd_get_policy,
687 },
846c7bb0
BS
688};
689
c757249a
SN
690/* Needed early in initialization */
691void __init taskstats_init_early(void)
692{
f9fd8914
SN
693 unsigned int i;
694
0a31bd5f 695 taskstats_cache = KMEM_CACHE(taskstats, SLAB_PANIC);
f9fd8914
SN
696 for_each_possible_cpu(i) {
697 INIT_LIST_HEAD(&(per_cpu(listener_array, i).list));
698 init_rwsem(&(per_cpu(listener_array, i).sem));
699 }
c757249a
SN
700}
701
702static int __init taskstats_init(void)
703{
704 int rc;
705
c53ed742 706 rc = genl_register_family_with_ops(&family, taskstats_ops);
c757249a
SN
707 if (rc)
708 return rc;
709
c757249a 710 family_registered = 1;
f9b182e2 711 pr_info("registered taskstats version %d\n", TASKSTATS_GENL_VERSION);
c757249a 712 return 0;
c757249a
SN
713}
714
715/*
716 * late initcall ensures initialization of statistics collection
717 * mechanisms precedes initialization of the taskstats interface
718 */
719late_initcall(taskstats_init);