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/slab.h>
26 #include <linux/cgroupstats.h>
27 #include <linux/cgroup.h>
29 #include <linux/file.h>
30 #include <linux/pid_namespace.h>
31 #include <net/genetlink.h>
32 #include <linux/atomic.h>
35 * Maximum length of a cpumask that can be specified in
36 * the TASKSTATS_CMD_ATTR_REGISTER/DEREGISTER_CPUMASK attribute
38 #define TASKSTATS_CPUMASK_MAXLEN (100+6*NR_CPUS)
40 static DEFINE_PER_CPU(__u32
, taskstats_seqnum
);
41 static int family_registered
;
42 struct kmem_cache
*taskstats_cache
;
44 static 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
,
51 static const struct nla_policy taskstats_cmd_get_policy
[TASKSTATS_CMD_ATTR_MAX
+1] = {
52 [TASKSTATS_CMD_ATTR_PID
] = { .type
= NLA_U32
},
53 [TASKSTATS_CMD_ATTR_TGID
] = { .type
= NLA_U32
},
54 [TASKSTATS_CMD_ATTR_REGISTER_CPUMASK
] = { .type
= NLA_STRING
},
55 [TASKSTATS_CMD_ATTR_DEREGISTER_CPUMASK
] = { .type
= NLA_STRING
},};
57 static const struct nla_policy cgroupstats_cmd_get_policy
[CGROUPSTATS_CMD_ATTR_MAX
+1] = {
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
= this_cpu_inc_return(taskstats_seqnum
) - 1;
95 reply
= genlmsg_put(skb
, 0, seq
, &family
, 0, cmd
);
97 reply
= genlmsg_put_reply(skb
, info
, &family
, 0, cmd
);
108 * Send taskstats data in @skb to listener with nl_pid @pid
110 static int send_reply(struct sk_buff
*skb
, struct genl_info
*info
)
112 struct genlmsghdr
*genlhdr
= nlmsg_data(nlmsg_hdr(skb
));
113 void *reply
= genlmsg_data(genlhdr
);
116 rc
= genlmsg_end(skb
, reply
);
122 return genlmsg_reply(skb
, info
);
126 * Send taskstats data in @skb to listeners registered for @cpu's exit data
128 static void send_cpu_listeners(struct sk_buff
*skb
,
129 struct listener_list
*listeners
)
131 struct genlmsghdr
*genlhdr
= nlmsg_data(nlmsg_hdr(skb
));
132 struct listener
*s
, *tmp
;
133 struct sk_buff
*skb_next
, *skb_cur
= skb
;
134 void *reply
= genlmsg_data(genlhdr
);
135 int rc
, delcount
= 0;
137 rc
= genlmsg_end(skb
, reply
);
144 down_read(&listeners
->sem
);
145 list_for_each_entry(s
, &listeners
->list
, list
) {
147 if (!list_is_last(&s
->list
, &listeners
->list
)) {
148 skb_next
= skb_clone(skb_cur
, GFP_KERNEL
);
152 rc
= genlmsg_unicast(&init_net
, skb_cur
, s
->pid
);
153 if (rc
== -ECONNREFUSED
) {
159 up_read(&listeners
->sem
);
167 /* Delete invalidated entries */
168 down_write(&listeners
->sem
);
169 list_for_each_entry_safe(s
, tmp
, &listeners
->list
, list
) {
175 up_write(&listeners
->sem
);
178 static void fill_stats(struct user_namespace
*user_ns
,
179 struct pid_namespace
*pid_ns
,
180 struct task_struct
*tsk
, struct taskstats
*stats
)
182 memset(stats
, 0, sizeof(*stats
));
184 * Each accounting subsystem adds calls to its functions to
185 * fill in relevant parts of struct taskstsats as follows
187 * per-task-foo(stats, tsk);
190 delayacct_add_tsk(stats
, tsk
);
192 /* fill in basic acct fields */
193 stats
->version
= TASKSTATS_VERSION
;
194 stats
->nvcsw
= tsk
->nvcsw
;
195 stats
->nivcsw
= tsk
->nivcsw
;
196 bacct_add_tsk(user_ns
, pid_ns
, stats
, tsk
);
198 /* fill in extended acct fields */
199 xacct_add_tsk(stats
, tsk
);
202 static int fill_stats_for_pid(pid_t pid
, struct taskstats
*stats
)
204 struct task_struct
*tsk
;
207 tsk
= find_task_by_vpid(pid
);
209 get_task_struct(tsk
);
213 fill_stats(current_user_ns(), task_active_pid_ns(current
), tsk
, stats
);
214 put_task_struct(tsk
);
218 static int fill_stats_for_tgid(pid_t tgid
, struct taskstats
*stats
)
220 struct task_struct
*tsk
, *first
;
225 * Add additional stats from live tasks except zombie thread group
226 * leaders who are already counted with the dead tasks
229 first
= find_task_by_vpid(tgid
);
231 if (!first
|| !lock_task_sighand(first
, &flags
))
234 if (first
->signal
->stats
)
235 memcpy(stats
, first
->signal
->stats
, sizeof(*stats
));
237 memset(stats
, 0, sizeof(*stats
));
244 * Accounting subsystem can call its functions here to
245 * fill in relevant parts of struct taskstsats as follows
247 * per-task-foo(stats, tsk);
249 delayacct_add_tsk(stats
, tsk
);
251 stats
->nvcsw
+= tsk
->nvcsw
;
252 stats
->nivcsw
+= tsk
->nivcsw
;
253 } while_each_thread(first
, tsk
);
255 unlock_task_sighand(first
, &flags
);
260 stats
->version
= TASKSTATS_VERSION
;
262 * Accounting subsystems can also add calls here to modify
263 * fields of taskstats.
268 static void fill_tgid_exit(struct task_struct
*tsk
)
272 spin_lock_irqsave(&tsk
->sighand
->siglock
, flags
);
273 if (!tsk
->signal
->stats
)
277 * Each accounting subsystem calls its functions here to
278 * accumalate its per-task stats for tsk, into the per-tgid structure
280 * per-task-foo(tsk->signal->stats, tsk);
282 delayacct_add_tsk(tsk
->signal
->stats
, tsk
);
284 spin_unlock_irqrestore(&tsk
->sighand
->siglock
, flags
);
288 static int add_del_listener(pid_t pid
, const struct cpumask
*mask
, int isadd
)
290 struct listener_list
*listeners
;
291 struct listener
*s
, *tmp
, *s2
;
295 if (!cpumask_subset(mask
, cpu_possible_mask
))
298 if (current_user_ns() != &init_user_ns
)
301 if (task_active_pid_ns(current
) != &init_pid_ns
)
304 if (isadd
== REGISTER
) {
305 for_each_cpu(cpu
, mask
) {
306 s
= kmalloc_node(sizeof(struct listener
),
307 GFP_KERNEL
, cpu_to_node(cpu
));
315 listeners
= &per_cpu(listener_array
, cpu
);
316 down_write(&listeners
->sem
);
317 list_for_each_entry(s2
, &listeners
->list
, list
) {
318 if (s2
->pid
== pid
&& s2
->valid
)
321 list_add(&s
->list
, &listeners
->list
);
324 up_write(&listeners
->sem
);
325 kfree(s
); /* nop if NULL */
330 /* Deregister or cleanup */
332 for_each_cpu(cpu
, mask
) {
333 listeners
= &per_cpu(listener_array
, cpu
);
334 down_write(&listeners
->sem
);
335 list_for_each_entry_safe(s
, tmp
, &listeners
->list
, list
) {
342 up_write(&listeners
->sem
);
347 static int parse(struct nlattr
*na
, struct cpumask
*mask
)
356 if (len
> TASKSTATS_CPUMASK_MAXLEN
)
360 data
= kmalloc(len
, GFP_KERNEL
);
363 nla_strlcpy(data
, na
, len
);
364 ret
= cpulist_parse(data
, mask
);
369 #if defined(CONFIG_64BIT) && !defined(CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS)
370 #define TASKSTATS_NEEDS_PADDING 1
373 static struct taskstats
*mk_reply(struct sk_buff
*skb
, int type
, u32 pid
)
375 struct nlattr
*na
, *ret
;
378 aggr
= (type
== TASKSTATS_TYPE_PID
)
379 ? TASKSTATS_TYPE_AGGR_PID
380 : TASKSTATS_TYPE_AGGR_TGID
;
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.
401 #ifdef TASKSTATS_NEEDS_PADDING
402 if (nla_put(skb
, TASKSTATS_TYPE_NULL
, 0, NULL
) < 0)
405 na
= nla_nest_start(skb
, aggr
);
409 if (nla_put(skb
, type
, sizeof(pid
), &pid
) < 0) {
410 nla_nest_cancel(skb
, na
);
413 ret
= nla_reserve(skb
, TASKSTATS_TYPE_STATS
, sizeof(struct taskstats
));
415 nla_nest_cancel(skb
, na
);
418 nla_nest_end(skb
, na
);
420 return nla_data(ret
);
425 static int cgroupstats_user_cmd(struct sk_buff
*skb
, struct genl_info
*info
)
428 struct sk_buff
*rep_skb
;
429 struct cgroupstats
*stats
;
435 na
= info
->attrs
[CGROUPSTATS_CMD_ATTR_FD
];
439 fd
= nla_get_u32(info
->attrs
[CGROUPSTATS_CMD_ATTR_FD
]);
444 size
= nla_total_size(sizeof(struct cgroupstats
));
446 rc
= prepare_reply(info
, CGROUPSTATS_CMD_NEW
, &rep_skb
,
451 na
= nla_reserve(rep_skb
, CGROUPSTATS_TYPE_CGROUP_STATS
,
452 sizeof(struct cgroupstats
));
459 stats
= nla_data(na
);
460 memset(stats
, 0, sizeof(*stats
));
462 rc
= cgroupstats_build(stats
, f
.file
->f_dentry
);
468 rc
= send_reply(rep_skb
, info
);
475 static int cmd_attr_register_cpumask(struct genl_info
*info
)
480 if (!alloc_cpumask_var(&mask
, GFP_KERNEL
))
482 rc
= parse(info
->attrs
[TASKSTATS_CMD_ATTR_REGISTER_CPUMASK
], mask
);
485 rc
= add_del_listener(info
->snd_portid
, mask
, REGISTER
);
487 free_cpumask_var(mask
);
491 static int cmd_attr_deregister_cpumask(struct genl_info
*info
)
496 if (!alloc_cpumask_var(&mask
, GFP_KERNEL
))
498 rc
= parse(info
->attrs
[TASKSTATS_CMD_ATTR_DEREGISTER_CPUMASK
], mask
);
501 rc
= add_del_listener(info
->snd_portid
, mask
, DEREGISTER
);
503 free_cpumask_var(mask
);
507 static size_t taskstats_packet_size(void)
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 */
519 static int cmd_attr_pid(struct genl_info
*info
)
521 struct taskstats
*stats
;
522 struct sk_buff
*rep_skb
;
527 size
= taskstats_packet_size();
529 rc
= prepare_reply(info
, TASKSTATS_CMD_NEW
, &rep_skb
, size
);
534 pid
= nla_get_u32(info
->attrs
[TASKSTATS_CMD_ATTR_PID
]);
535 stats
= mk_reply(rep_skb
, TASKSTATS_TYPE_PID
, pid
);
539 rc
= fill_stats_for_pid(pid
, stats
);
542 return send_reply(rep_skb
, info
);
548 static int cmd_attr_tgid(struct genl_info
*info
)
550 struct taskstats
*stats
;
551 struct sk_buff
*rep_skb
;
556 size
= taskstats_packet_size();
558 rc
= prepare_reply(info
, TASKSTATS_CMD_NEW
, &rep_skb
, size
);
563 tgid
= nla_get_u32(info
->attrs
[TASKSTATS_CMD_ATTR_TGID
]);
564 stats
= mk_reply(rep_skb
, TASKSTATS_TYPE_TGID
, tgid
);
568 rc
= fill_stats_for_tgid(tgid
, stats
);
571 return send_reply(rep_skb
, info
);
577 static int taskstats_user_cmd(struct sk_buff
*skb
, struct genl_info
*info
)
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
);
591 static struct taskstats
*taskstats_tgid_alloc(struct task_struct
*tsk
)
593 struct signal_struct
*sig
= tsk
->signal
;
594 struct taskstats
*stats
;
596 if (sig
->stats
|| thread_group_empty(tsk
))
599 /* No problem if kmem_cache_zalloc() fails */
600 stats
= kmem_cache_zalloc(taskstats_cache
, GFP_KERNEL
);
602 spin_lock_irq(&tsk
->sighand
->siglock
);
607 spin_unlock_irq(&tsk
->sighand
->siglock
);
610 kmem_cache_free(taskstats_cache
, stats
);
615 /* Send pid data out on exit */
616 void taskstats_exit(struct task_struct
*tsk
, int group_dead
)
619 struct listener_list
*listeners
;
620 struct taskstats
*stats
;
621 struct sk_buff
*rep_skb
;
625 if (!family_registered
)
629 * Size includes space for nested attributes
631 size
= taskstats_packet_size();
633 is_thread_group
= !!taskstats_tgid_alloc(tsk
);
634 if (is_thread_group
) {
635 /* PID + STATS + TGID + STATS */
637 /* fill the tsk->signal->stats structure */
641 listeners
= raw_cpu_ptr(&listener_array
);
642 if (list_empty(&listeners
->list
))
645 rc
= prepare_reply(NULL
, TASKSTATS_CMD_NEW
, &rep_skb
, size
);
649 stats
= mk_reply(rep_skb
, TASKSTATS_TYPE_PID
,
650 task_pid_nr_ns(tsk
, &init_pid_ns
));
654 fill_stats(&init_user_ns
, &init_pid_ns
, tsk
, stats
);
657 * Doesn't matter if tsk is the leader or the last group member leaving
659 if (!is_thread_group
|| !group_dead
)
662 stats
= mk_reply(rep_skb
, TASKSTATS_TYPE_TGID
,
663 task_tgid_nr_ns(tsk
, &init_pid_ns
));
667 memcpy(stats
, tsk
->signal
->stats
, sizeof(*stats
));
670 send_cpu_listeners(rep_skb
, listeners
);
676 static const struct genl_ops taskstats_ops
[] = {
678 .cmd
= TASKSTATS_CMD_GET
,
679 .doit
= taskstats_user_cmd
,
680 .policy
= taskstats_cmd_get_policy
,
681 .flags
= GENL_ADMIN_PERM
,
684 .cmd
= CGROUPSTATS_CMD_GET
,
685 .doit
= cgroupstats_user_cmd
,
686 .policy
= cgroupstats_cmd_get_policy
,
690 /* Needed early in initialization */
691 void __init
taskstats_init_early(void)
695 taskstats_cache
= KMEM_CACHE(taskstats
, SLAB_PANIC
);
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
));
702 static int __init
taskstats_init(void)
706 rc
= genl_register_family_with_ops(&family
, taskstats_ops
);
710 family_registered
= 1;
711 pr_info("registered taskstats version %d\n", TASKSTATS_GENL_VERSION
);
716 * late initcall ensures initialization of statistics collection
717 * mechanisms precedes initialization of the taskstats interface
719 late_initcall(taskstats_init
);