2 * taskstats.c - Export per-task statistics to userland
4 * Copyright (C) Shailabh Nagar, IBM Corp. 2006
5 * (C) Balbir Singh, IBM Corp. 2006
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.
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.
19 #include <linux/kernel.h>
20 #include <linux/taskstats_kern.h>
21 #include <linux/tsacct_kern.h>
22 #include <linux/delayacct.h>
23 #include <linux/cpumask.h>
24 #include <linux/percpu.h>
25 #include <linux/cgroupstats.h>
26 #include <linux/cgroup.h>
28 #include <linux/file.h>
29 #include <net/genetlink.h>
30 #include <asm/atomic.h>
33 * Maximum length of a cpumask that can be specified in
34 * the TASKSTATS_CMD_ATTR_REGISTER/DEREGISTER_CPUMASK attribute
36 #define TASKSTATS_CPUMASK_MAXLEN (100+6*NR_CPUS)
38 static DEFINE_PER_CPU(__u32
, taskstats_seqnum
);
39 static int family_registered
;
40 struct kmem_cache
*taskstats_cache
;
42 static struct genl_family family
= {
43 .id
= GENL_ID_GENERATE
,
44 .name
= TASKSTATS_GENL_NAME
,
45 .version
= TASKSTATS_GENL_VERSION
,
46 .maxattr
= TASKSTATS_CMD_ATTR_MAX
,
49 static struct nla_policy taskstats_cmd_get_policy
[TASKSTATS_CMD_ATTR_MAX
+1]
51 [TASKSTATS_CMD_ATTR_PID
] = { .type
= NLA_U32
},
52 [TASKSTATS_CMD_ATTR_TGID
] = { .type
= NLA_U32
},
53 [TASKSTATS_CMD_ATTR_REGISTER_CPUMASK
] = { .type
= NLA_STRING
},
54 [TASKSTATS_CMD_ATTR_DEREGISTER_CPUMASK
] = { .type
= NLA_STRING
},};
56 static struct nla_policy
57 cgroupstats_cmd_get_policy
[CGROUPSTATS_CMD_ATTR_MAX
+1] __read_mostly
= {
58 [CGROUPSTATS_CMD_ATTR_FD
] = { .type
= NLA_U32
},
62 struct list_head list
;
67 struct listener_list
{
68 struct rw_semaphore sem
;
69 struct list_head list
;
71 static DEFINE_PER_CPU(struct listener_list
, listener_array
);
79 static int prepare_reply(struct genl_info
*info
, u8 cmd
, struct sk_buff
**skbp
,
86 * If new attributes are added, please revisit this allocation
88 skb
= genlmsg_new(size
, GFP_KERNEL
);
93 int seq
= get_cpu_var(taskstats_seqnum
)++;
94 put_cpu_var(taskstats_seqnum
);
96 reply
= genlmsg_put(skb
, 0, seq
, &family
, 0, cmd
);
98 reply
= genlmsg_put_reply(skb
, info
, &family
, 0, cmd
);
109 * Send taskstats data in @skb to listener with nl_pid @pid
111 static int send_reply(struct sk_buff
*skb
, pid_t pid
)
113 struct genlmsghdr
*genlhdr
= nlmsg_data(nlmsg_hdr(skb
));
114 void *reply
= genlmsg_data(genlhdr
);
117 rc
= genlmsg_end(skb
, reply
);
123 return genlmsg_unicast(skb
, pid
);
127 * Send taskstats data in @skb to listeners registered for @cpu's exit data
129 static void send_cpu_listeners(struct sk_buff
*skb
,
130 struct listener_list
*listeners
)
132 struct genlmsghdr
*genlhdr
= nlmsg_data(nlmsg_hdr(skb
));
133 struct listener
*s
, *tmp
;
134 struct sk_buff
*skb_next
, *skb_cur
= skb
;
135 void *reply
= genlmsg_data(genlhdr
);
136 int rc
, delcount
= 0;
138 rc
= genlmsg_end(skb
, reply
);
145 down_read(&listeners
->sem
);
146 list_for_each_entry(s
, &listeners
->list
, list
) {
148 if (!list_is_last(&s
->list
, &listeners
->list
)) {
149 skb_next
= skb_clone(skb_cur
, GFP_KERNEL
);
153 rc
= genlmsg_unicast(skb_cur
, s
->pid
);
154 if (rc
== -ECONNREFUSED
) {
160 up_read(&listeners
->sem
);
168 /* Delete invalidated entries */
169 down_write(&listeners
->sem
);
170 list_for_each_entry_safe(s
, tmp
, &listeners
->list
, list
) {
176 up_write(&listeners
->sem
);
179 static int fill_pid(pid_t pid
, struct task_struct
*tsk
,
180 struct taskstats
*stats
)
186 tsk
= find_task_by_vpid(pid
);
188 get_task_struct(tsk
);
193 get_task_struct(tsk
);
195 memset(stats
, 0, sizeof(*stats
));
197 * Each accounting subsystem adds calls to its functions to
198 * fill in relevant parts of struct taskstsats as follows
200 * per-task-foo(stats, tsk);
203 delayacct_add_tsk(stats
, tsk
);
205 /* fill in basic acct fields */
206 stats
->version
= TASKSTATS_VERSION
;
207 stats
->nvcsw
= tsk
->nvcsw
;
208 stats
->nivcsw
= tsk
->nivcsw
;
209 bacct_add_tsk(stats
, tsk
);
211 /* fill in extended acct fields */
212 xacct_add_tsk(stats
, tsk
);
214 /* Define err: label here if needed */
215 put_task_struct(tsk
);
220 static int fill_tgid(pid_t tgid
, struct task_struct
*first
,
221 struct taskstats
*stats
)
223 struct task_struct
*tsk
;
228 * Add additional stats from live tasks except zombie thread group
229 * leaders who are already counted with the dead tasks
233 first
= find_task_by_vpid(tgid
);
235 if (!first
|| !lock_task_sighand(first
, &flags
))
238 if (first
->signal
->stats
)
239 memcpy(stats
, first
->signal
->stats
, sizeof(*stats
));
241 memset(stats
, 0, sizeof(*stats
));
248 * Accounting subsystem can call its functions here to
249 * fill in relevant parts of struct taskstsats as follows
251 * per-task-foo(stats, tsk);
253 delayacct_add_tsk(stats
, tsk
);
255 stats
->nvcsw
+= tsk
->nvcsw
;
256 stats
->nivcsw
+= tsk
->nivcsw
;
257 } while_each_thread(first
, tsk
);
259 unlock_task_sighand(first
, &flags
);
264 stats
->version
= TASKSTATS_VERSION
;
266 * Accounting subsystems can also add calls here to modify
267 * fields of taskstats.
273 static void fill_tgid_exit(struct task_struct
*tsk
)
277 spin_lock_irqsave(&tsk
->sighand
->siglock
, flags
);
278 if (!tsk
->signal
->stats
)
282 * Each accounting subsystem calls its functions here to
283 * accumalate its per-task stats for tsk, into the per-tgid structure
285 * per-task-foo(tsk->signal->stats, tsk);
287 delayacct_add_tsk(tsk
->signal
->stats
, tsk
);
289 spin_unlock_irqrestore(&tsk
->sighand
->siglock
, flags
);
293 static int add_del_listener(pid_t pid
, const struct cpumask
*mask
, int isadd
)
295 struct listener_list
*listeners
;
296 struct listener
*s
, *tmp
;
299 if (!cpumask_subset(mask
, cpu_possible_mask
))
302 if (isadd
== REGISTER
) {
303 for_each_cpu(cpu
, mask
) {
304 s
= kmalloc_node(sizeof(struct listener
), GFP_KERNEL
,
309 INIT_LIST_HEAD(&s
->list
);
312 listeners
= &per_cpu(listener_array
, cpu
);
313 down_write(&listeners
->sem
);
314 list_add(&s
->list
, &listeners
->list
);
315 up_write(&listeners
->sem
);
320 /* Deregister or cleanup */
322 for_each_cpu(cpu
, mask
) {
323 listeners
= &per_cpu(listener_array
, cpu
);
324 down_write(&listeners
->sem
);
325 list_for_each_entry_safe(s
, tmp
, &listeners
->list
, list
) {
332 up_write(&listeners
->sem
);
337 static int parse(struct nlattr
*na
, struct cpumask
*mask
)
346 if (len
> TASKSTATS_CPUMASK_MAXLEN
)
350 data
= kmalloc(len
, GFP_KERNEL
);
353 nla_strlcpy(data
, na
, len
);
354 ret
= cpulist_parse(data
, mask
);
359 static struct taskstats
*mk_reply(struct sk_buff
*skb
, int type
, u32 pid
)
361 struct nlattr
*na
, *ret
;
364 aggr
= (type
== TASKSTATS_TYPE_PID
)
365 ? TASKSTATS_TYPE_AGGR_PID
366 : TASKSTATS_TYPE_AGGR_TGID
;
368 na
= nla_nest_start(skb
, aggr
);
371 if (nla_put(skb
, type
, sizeof(pid
), &pid
) < 0)
373 ret
= nla_reserve(skb
, TASKSTATS_TYPE_STATS
, sizeof(struct taskstats
));
376 nla_nest_end(skb
, na
);
378 return nla_data(ret
);
383 static int cgroupstats_user_cmd(struct sk_buff
*skb
, struct genl_info
*info
)
386 struct sk_buff
*rep_skb
;
387 struct cgroupstats
*stats
;
394 na
= info
->attrs
[CGROUPSTATS_CMD_ATTR_FD
];
398 fd
= nla_get_u32(info
->attrs
[CGROUPSTATS_CMD_ATTR_FD
]);
399 file
= fget_light(fd
, &fput_needed
);
403 size
= nla_total_size(sizeof(struct cgroupstats
));
405 rc
= prepare_reply(info
, CGROUPSTATS_CMD_NEW
, &rep_skb
,
410 na
= nla_reserve(rep_skb
, CGROUPSTATS_TYPE_CGROUP_STATS
,
411 sizeof(struct cgroupstats
));
412 stats
= nla_data(na
);
413 memset(stats
, 0, sizeof(*stats
));
415 rc
= cgroupstats_build(stats
, file
->f_dentry
);
421 rc
= send_reply(rep_skb
, info
->snd_pid
);
424 fput_light(file
, fput_needed
);
428 static int taskstats_user_cmd(struct sk_buff
*skb
, struct genl_info
*info
)
431 struct sk_buff
*rep_skb
;
432 struct taskstats
*stats
;
436 if (!alloc_cpumask_var(&mask
, GFP_KERNEL
))
439 rc
= parse(info
->attrs
[TASKSTATS_CMD_ATTR_REGISTER_CPUMASK
], mask
);
443 rc
= add_del_listener(info
->snd_pid
, mask
, REGISTER
);
447 rc
= parse(info
->attrs
[TASKSTATS_CMD_ATTR_DEREGISTER_CPUMASK
], mask
);
451 rc
= add_del_listener(info
->snd_pid
, mask
, DEREGISTER
);
453 free_cpumask_var(mask
);
456 free_cpumask_var(mask
);
459 * Size includes space for nested attributes
461 size
= nla_total_size(sizeof(u32
)) +
462 nla_total_size(sizeof(struct taskstats
)) + nla_total_size(0);
464 rc
= prepare_reply(info
, TASKSTATS_CMD_NEW
, &rep_skb
, size
);
469 if (info
->attrs
[TASKSTATS_CMD_ATTR_PID
]) {
470 u32 pid
= nla_get_u32(info
->attrs
[TASKSTATS_CMD_ATTR_PID
]);
471 stats
= mk_reply(rep_skb
, TASKSTATS_TYPE_PID
, pid
);
475 rc
= fill_pid(pid
, NULL
, stats
);
478 } else if (info
->attrs
[TASKSTATS_CMD_ATTR_TGID
]) {
479 u32 tgid
= nla_get_u32(info
->attrs
[TASKSTATS_CMD_ATTR_TGID
]);
480 stats
= mk_reply(rep_skb
, TASKSTATS_TYPE_TGID
, tgid
);
484 rc
= fill_tgid(tgid
, NULL
, stats
);
490 return send_reply(rep_skb
, info
->snd_pid
);
496 static struct taskstats
*taskstats_tgid_alloc(struct task_struct
*tsk
)
498 struct signal_struct
*sig
= tsk
->signal
;
499 struct taskstats
*stats
;
501 if (sig
->stats
|| thread_group_empty(tsk
))
504 /* No problem if kmem_cache_zalloc() fails */
505 stats
= kmem_cache_zalloc(taskstats_cache
, GFP_KERNEL
);
507 spin_lock_irq(&tsk
->sighand
->siglock
);
512 spin_unlock_irq(&tsk
->sighand
->siglock
);
515 kmem_cache_free(taskstats_cache
, stats
);
520 /* Send pid data out on exit */
521 void taskstats_exit(struct task_struct
*tsk
, int group_dead
)
524 struct listener_list
*listeners
;
525 struct taskstats
*stats
;
526 struct sk_buff
*rep_skb
;
530 if (!family_registered
)
534 * Size includes space for nested attributes
536 size
= nla_total_size(sizeof(u32
)) +
537 nla_total_size(sizeof(struct taskstats
)) + nla_total_size(0);
539 is_thread_group
= !!taskstats_tgid_alloc(tsk
);
540 if (is_thread_group
) {
541 /* PID + STATS + TGID + STATS */
543 /* fill the tsk->signal->stats structure */
547 listeners
= &__raw_get_cpu_var(listener_array
);
548 if (list_empty(&listeners
->list
))
551 rc
= prepare_reply(NULL
, TASKSTATS_CMD_NEW
, &rep_skb
, size
);
555 stats
= mk_reply(rep_skb
, TASKSTATS_TYPE_PID
, tsk
->pid
);
559 rc
= fill_pid(-1, tsk
, stats
);
564 * Doesn't matter if tsk is the leader or the last group member leaving
566 if (!is_thread_group
|| !group_dead
)
569 stats
= mk_reply(rep_skb
, TASKSTATS_TYPE_TGID
, tsk
->tgid
);
573 memcpy(stats
, tsk
->signal
->stats
, sizeof(*stats
));
576 send_cpu_listeners(rep_skb
, listeners
);
582 static struct genl_ops taskstats_ops
= {
583 .cmd
= TASKSTATS_CMD_GET
,
584 .doit
= taskstats_user_cmd
,
585 .policy
= taskstats_cmd_get_policy
,
588 static struct genl_ops cgroupstats_ops
= {
589 .cmd
= CGROUPSTATS_CMD_GET
,
590 .doit
= cgroupstats_user_cmd
,
591 .policy
= cgroupstats_cmd_get_policy
,
594 /* Needed early in initialization */
595 void __init
taskstats_init_early(void)
599 taskstats_cache
= KMEM_CACHE(taskstats
, SLAB_PANIC
);
600 for_each_possible_cpu(i
) {
601 INIT_LIST_HEAD(&(per_cpu(listener_array
, i
).list
));
602 init_rwsem(&(per_cpu(listener_array
, i
).sem
));
606 static int __init
taskstats_init(void)
610 rc
= genl_register_family(&family
);
614 rc
= genl_register_ops(&family
, &taskstats_ops
);
618 rc
= genl_register_ops(&family
, &cgroupstats_ops
);
622 family_registered
= 1;
623 printk("registered taskstats version %d\n", TASKSTATS_GENL_VERSION
);
626 genl_unregister_ops(&family
, &taskstats_ops
);
628 genl_unregister_family(&family
);
633 * late initcall ensures initialization of statistics collection
634 * mechanisms precedes initialization of the taskstats interface
636 late_initcall(taskstats_init
);