2006-07-14 07:24:40 +00:00
|
|
|
/*
|
|
|
|
* taskstats.c - Export per-task statistics to userland
|
|
|
|
*
|
|
|
|
* Copyright (C) Shailabh Nagar, IBM Corp. 2006
|
|
|
|
* (C) Balbir Singh, IBM Corp. 2006
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <linux/kernel.h>
|
|
|
|
#include <linux/taskstats_kern.h>
|
2006-10-01 06:28:55 +00:00
|
|
|
#include <linux/tsacct_kern.h>
|
2006-07-14 07:24:41 +00:00
|
|
|
#include <linux/delayacct.h>
|
2006-07-14 07:24:47 +00:00
|
|
|
#include <linux/cpumask.h>
|
|
|
|
#include <linux/percpu.h>
|
include cleanup: Update gfp.h and slab.h includes to prepare for breaking implicit slab.h inclusion from percpu.h
percpu.h is included by sched.h and module.h and thus ends up being
included when building most .c files. percpu.h includes slab.h which
in turn includes gfp.h making everything defined by the two files
universally available and complicating inclusion dependencies.
percpu.h -> slab.h dependency is about to be removed. Prepare for
this change by updating users of gfp and slab facilities include those
headers directly instead of assuming availability. As this conversion
needs to touch large number of source files, the following script is
used as the basis of conversion.
http://userweb.kernel.org/~tj/misc/slabh-sweep.py
The script does the followings.
* Scan files for gfp and slab usages and update includes such that
only the necessary includes are there. ie. if only gfp is used,
gfp.h, if slab is used, slab.h.
* When the script inserts a new include, it looks at the include
blocks and try to put the new include such that its order conforms
to its surrounding. It's put in the include block which contains
core kernel includes, in the same order that the rest are ordered -
alphabetical, Christmas tree, rev-Xmas-tree or at the end if there
doesn't seem to be any matching order.
* If the script can't find a place to put a new include (mostly
because the file doesn't have fitting include block), it prints out
an error message indicating which .h file needs to be added to the
file.
The conversion was done in the following steps.
1. The initial automatic conversion of all .c files updated slightly
over 4000 files, deleting around 700 includes and adding ~480 gfp.h
and ~3000 slab.h inclusions. The script emitted errors for ~400
files.
2. Each error was manually checked. Some didn't need the inclusion,
some needed manual addition while adding it to implementation .h or
embedding .c file was more appropriate for others. This step added
inclusions to around 150 files.
3. The script was run again and the output was compared to the edits
from #2 to make sure no file was left behind.
4. Several build tests were done and a couple of problems were fixed.
e.g. lib/decompress_*.c used malloc/free() wrappers around slab
APIs requiring slab.h to be added manually.
5. The script was run on all .h files but without automatically
editing them as sprinkling gfp.h and slab.h inclusions around .h
files could easily lead to inclusion dependency hell. Most gfp.h
inclusion directives were ignored as stuff from gfp.h was usually
wildly available and often used in preprocessor macros. Each
slab.h inclusion directive was examined and added manually as
necessary.
6. percpu.h was updated not to include slab.h.
7. Build test were done on the following configurations and failures
were fixed. CONFIG_GCOV_KERNEL was turned off for all tests (as my
distributed build env didn't work with gcov compiles) and a few
more options had to be turned off depending on archs to make things
build (like ipr on powerpc/64 which failed due to missing writeq).
* x86 and x86_64 UP and SMP allmodconfig and a custom test config.
* powerpc and powerpc64 SMP allmodconfig
* sparc and sparc64 SMP allmodconfig
* ia64 SMP allmodconfig
* s390 SMP allmodconfig
* alpha SMP allmodconfig
* um on x86_64 SMP allmodconfig
8. percpu.h modifications were reverted so that it could be applied as
a separate patch and serve as bisection point.
Given the fact that I had only a couple of failures from tests on step
6, I'm fairly confident about the coverage of this conversion patch.
If there is a breakage, it's likely to be something in one of the arch
headers which should be easily discoverable easily on most builds of
the specific arch.
Signed-off-by: Tejun Heo <tj@kernel.org>
Guess-its-ok-by: Christoph Lameter <cl@linux-foundation.org>
Cc: Ingo Molnar <mingo@redhat.com>
Cc: Lee Schermerhorn <Lee.Schermerhorn@hp.com>
2010-03-24 08:04:11 +00:00
|
|
|
#include <linux/slab.h>
|
Add cgroupstats
This patch is inspired by the discussion at
http://lkml.org/lkml/2007/4/11/187 and implements per cgroup statistics
as suggested by Andrew Morton in http://lkml.org/lkml/2007/4/11/263. The
patch is on top of 2.6.21-mm1 with Paul's cgroups v9 patches (forward
ported)
This patch implements per cgroup statistics infrastructure and re-uses
code from the taskstats interface. A new set of cgroup operations are
registered with commands and attributes. It should be very easy to
*extend* per cgroup statistics, by adding members to the cgroupstats
structure.
The current model for cgroupstats is a pull, a push model (to post
statistics on interesting events), should be very easy to add. Currently
user space requests for statistics by passing the cgroup file
descriptor. Statistics about the state of all the tasks in the cgroup
is returned to user space.
TODO's/NOTE:
This patch provides an infrastructure for implementing cgroup statistics.
Based on the needs of each controller, we can incrementally add more statistics,
event based support for notification of statistics, accumulation of taskstats
into cgroup statistics in the future.
Sample output
# ./cgroupstats -C /cgroup/a
sleeping 2, blocked 0, running 1, stopped 0, uninterruptible 0
# ./cgroupstats -C /cgroup/
sleeping 154, blocked 0, running 0, stopped 0, uninterruptible 0
If the approach looks good, I'll enhance and post the user space utility for
the same
Feedback, comments, test results are always welcome!
[akpm@linux-foundation.org: build fix]
Signed-off-by: Balbir Singh <balbir@linux.vnet.ibm.com>
Cc: Paul Menage <menage@google.com>
Cc: Jay Lan <jlan@engr.sgi.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
2007-10-19 06:39:44 +00:00
|
|
|
#include <linux/cgroupstats.h>
|
|
|
|
#include <linux/cgroup.h>
|
|
|
|
#include <linux/fs.h>
|
|
|
|
#include <linux/file.h>
|
2012-02-08 01:56:49 +00:00
|
|
|
#include <linux/pid_namespace.h>
|
2006-07-14 07:24:40 +00:00
|
|
|
#include <net/genetlink.h>
|
2011-07-26 23:09:06 +00:00
|
|
|
#include <linux/atomic.h>
|
2006-07-14 07:24:40 +00:00
|
|
|
|
2006-07-14 07:24:47 +00:00
|
|
|
/*
|
|
|
|
* Maximum length of a cpumask that can be specified in
|
|
|
|
* the TASKSTATS_CMD_ATTR_REGISTER/DEREGISTER_CPUMASK attribute
|
|
|
|
*/
|
|
|
|
#define TASKSTATS_CPUMASK_MAXLEN (100+6*NR_CPUS)
|
|
|
|
|
2008-07-25 08:48:55 +00:00
|
|
|
static DEFINE_PER_CPU(__u32, taskstats_seqnum);
|
2006-07-14 07:24:40 +00:00
|
|
|
static int family_registered;
|
2006-12-07 04:33:20 +00:00
|
|
|
struct kmem_cache *taskstats_cache;
|
2006-07-14 07:24:40 +00:00
|
|
|
|
|
|
|
static struct genl_family family = {
|
|
|
|
.id = GENL_ID_GENERATE,
|
|
|
|
.name = TASKSTATS_GENL_NAME,
|
|
|
|
.version = TASKSTATS_GENL_VERSION,
|
|
|
|
.maxattr = TASKSTATS_CMD_ATTR_MAX,
|
|
|
|
};
|
|
|
|
|
2010-02-18 08:14:31 +00:00
|
|
|
static const struct nla_policy taskstats_cmd_get_policy[TASKSTATS_CMD_ATTR_MAX+1] = {
|
2006-07-14 07:24:40 +00:00
|
|
|
[TASKSTATS_CMD_ATTR_PID] = { .type = NLA_U32 },
|
|
|
|
[TASKSTATS_CMD_ATTR_TGID] = { .type = NLA_U32 },
|
2006-07-14 07:24:47 +00:00
|
|
|
[TASKSTATS_CMD_ATTR_REGISTER_CPUMASK] = { .type = NLA_STRING },
|
|
|
|
[TASKSTATS_CMD_ATTR_DEREGISTER_CPUMASK] = { .type = NLA_STRING },};
|
|
|
|
|
2016-11-03 16:42:36 +00:00
|
|
|
/*
|
|
|
|
* We have to use TASKSTATS_CMD_ATTR_MAX here, it is the maxattr in the family.
|
|
|
|
* Make sure they are always aligned.
|
|
|
|
*/
|
|
|
|
static const struct nla_policy cgroupstats_cmd_get_policy[TASKSTATS_CMD_ATTR_MAX+1] = {
|
Add cgroupstats
This patch is inspired by the discussion at
http://lkml.org/lkml/2007/4/11/187 and implements per cgroup statistics
as suggested by Andrew Morton in http://lkml.org/lkml/2007/4/11/263. The
patch is on top of 2.6.21-mm1 with Paul's cgroups v9 patches (forward
ported)
This patch implements per cgroup statistics infrastructure and re-uses
code from the taskstats interface. A new set of cgroup operations are
registered with commands and attributes. It should be very easy to
*extend* per cgroup statistics, by adding members to the cgroupstats
structure.
The current model for cgroupstats is a pull, a push model (to post
statistics on interesting events), should be very easy to add. Currently
user space requests for statistics by passing the cgroup file
descriptor. Statistics about the state of all the tasks in the cgroup
is returned to user space.
TODO's/NOTE:
This patch provides an infrastructure for implementing cgroup statistics.
Based on the needs of each controller, we can incrementally add more statistics,
event based support for notification of statistics, accumulation of taskstats
into cgroup statistics in the future.
Sample output
# ./cgroupstats -C /cgroup/a
sleeping 2, blocked 0, running 1, stopped 0, uninterruptible 0
# ./cgroupstats -C /cgroup/
sleeping 154, blocked 0, running 0, stopped 0, uninterruptible 0
If the approach looks good, I'll enhance and post the user space utility for
the same
Feedback, comments, test results are always welcome!
[akpm@linux-foundation.org: build fix]
Signed-off-by: Balbir Singh <balbir@linux.vnet.ibm.com>
Cc: Paul Menage <menage@google.com>
Cc: Jay Lan <jlan@engr.sgi.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
2007-10-19 06:39:44 +00:00
|
|
|
[CGROUPSTATS_CMD_ATTR_FD] = { .type = NLA_U32 },
|
|
|
|
};
|
|
|
|
|
2006-07-14 07:24:47 +00:00
|
|
|
struct listener {
|
|
|
|
struct list_head list;
|
|
|
|
pid_t pid;
|
2006-07-14 07:24:47 +00:00
|
|
|
char valid;
|
2006-07-14 07:24:40 +00:00
|
|
|
};
|
|
|
|
|
2006-07-14 07:24:47 +00:00
|
|
|
struct listener_list {
|
|
|
|
struct rw_semaphore sem;
|
|
|
|
struct list_head list;
|
|
|
|
};
|
|
|
|
static DEFINE_PER_CPU(struct listener_list, listener_array);
|
|
|
|
|
|
|
|
enum actions {
|
|
|
|
REGISTER,
|
|
|
|
DEREGISTER,
|
|
|
|
CPU_DONT_CARE
|
|
|
|
};
|
2006-07-14 07:24:40 +00:00
|
|
|
|
|
|
|
static int prepare_reply(struct genl_info *info, u8 cmd, struct sk_buff **skbp,
|
2006-12-07 04:36:55 +00:00
|
|
|
size_t size)
|
2006-07-14 07:24:40 +00:00
|
|
|
{
|
|
|
|
struct sk_buff *skb;
|
|
|
|
void *reply;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* If new attributes are added, please revisit this allocation
|
|
|
|
*/
|
2006-11-15 03:44:52 +00:00
|
|
|
skb = genlmsg_new(size, GFP_KERNEL);
|
2006-07-14 07:24:40 +00:00
|
|
|
if (!skb)
|
|
|
|
return -ENOMEM;
|
|
|
|
|
|
|
|
if (!info) {
|
2010-12-08 16:42:22 +00:00
|
|
|
int seq = this_cpu_inc_return(taskstats_seqnum) - 1;
|
2006-07-14 07:24:40 +00:00
|
|
|
|
2006-11-15 03:46:02 +00:00
|
|
|
reply = genlmsg_put(skb, 0, seq, &family, 0, cmd);
|
2006-07-14 07:24:40 +00:00
|
|
|
} else
|
2006-11-15 03:46:02 +00:00
|
|
|
reply = genlmsg_put_reply(skb, info, &family, 0, cmd);
|
2006-07-14 07:24:40 +00:00
|
|
|
if (reply == NULL) {
|
|
|
|
nlmsg_free(skb);
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
|
|
|
|
*skbp = skb;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2006-07-14 07:24:47 +00:00
|
|
|
/*
|
|
|
|
* Send taskstats data in @skb to listener with nl_pid @pid
|
|
|
|
*/
|
2009-07-10 09:51:34 +00:00
|
|
|
static int send_reply(struct sk_buff *skb, struct genl_info *info)
|
2006-07-14 07:24:40 +00:00
|
|
|
{
|
2007-04-26 02:08:35 +00:00
|
|
|
struct genlmsghdr *genlhdr = nlmsg_data(nlmsg_hdr(skb));
|
2006-07-14 07:24:47 +00:00
|
|
|
void *reply = genlmsg_data(genlhdr);
|
2006-07-14 07:24:40 +00:00
|
|
|
|
2015-01-16 21:09:00 +00:00
|
|
|
genlmsg_end(skb, reply);
|
2006-07-14 07:24:40 +00:00
|
|
|
|
2009-07-10 09:51:34 +00:00
|
|
|
return genlmsg_reply(skb, info);
|
2006-07-14 07:24:40 +00:00
|
|
|
}
|
|
|
|
|
2006-07-14 07:24:47 +00:00
|
|
|
/*
|
|
|
|
* Send taskstats data in @skb to listeners registered for @cpu's exit data
|
|
|
|
*/
|
2006-12-07 04:36:51 +00:00
|
|
|
static void send_cpu_listeners(struct sk_buff *skb,
|
|
|
|
struct listener_list *listeners)
|
2006-07-14 07:24:47 +00:00
|
|
|
{
|
2007-04-26 02:08:35 +00:00
|
|
|
struct genlmsghdr *genlhdr = nlmsg_data(nlmsg_hdr(skb));
|
2006-07-14 07:24:47 +00:00
|
|
|
struct listener *s, *tmp;
|
|
|
|
struct sk_buff *skb_next, *skb_cur = skb;
|
|
|
|
void *reply = genlmsg_data(genlhdr);
|
2006-07-30 10:03:11 +00:00
|
|
|
int rc, delcount = 0;
|
2006-07-14 07:24:47 +00:00
|
|
|
|
2015-01-16 21:09:00 +00:00
|
|
|
genlmsg_end(skb, reply);
|
2006-07-14 07:24:47 +00:00
|
|
|
|
|
|
|
rc = 0;
|
2006-07-14 07:24:47 +00:00
|
|
|
down_read(&listeners->sem);
|
2006-07-30 10:03:11 +00:00
|
|
|
list_for_each_entry(s, &listeners->list, list) {
|
2006-07-14 07:24:47 +00:00
|
|
|
skb_next = NULL;
|
|
|
|
if (!list_is_last(&s->list, &listeners->list)) {
|
|
|
|
skb_next = skb_clone(skb_cur, GFP_KERNEL);
|
2006-07-30 10:03:11 +00:00
|
|
|
if (!skb_next)
|
2006-07-14 07:24:47 +00:00
|
|
|
break;
|
|
|
|
}
|
2009-07-10 09:51:34 +00:00
|
|
|
rc = genlmsg_unicast(&init_net, skb_cur, s->pid);
|
2006-07-30 10:03:11 +00:00
|
|
|
if (rc == -ECONNREFUSED) {
|
2006-07-14 07:24:47 +00:00
|
|
|
s->valid = 0;
|
|
|
|
delcount++;
|
2006-07-14 07:24:47 +00:00
|
|
|
}
|
|
|
|
skb_cur = skb_next;
|
|
|
|
}
|
2006-07-14 07:24:47 +00:00
|
|
|
up_read(&listeners->sem);
|
2006-07-14 07:24:47 +00:00
|
|
|
|
2006-07-30 10:03:11 +00:00
|
|
|
if (skb_cur)
|
|
|
|
nlmsg_free(skb_cur);
|
|
|
|
|
2006-07-14 07:24:47 +00:00
|
|
|
if (!delcount)
|
2006-07-30 10:03:11 +00:00
|
|
|
return;
|
2006-07-14 07:24:47 +00:00
|
|
|
|
|
|
|
/* Delete invalidated entries */
|
|
|
|
down_write(&listeners->sem);
|
|
|
|
list_for_each_entry_safe(s, tmp, &listeners->list, list) {
|
|
|
|
if (!s->valid) {
|
|
|
|
list_del(&s->list);
|
|
|
|
kfree(s);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
up_write(&listeners->sem);
|
2006-07-14 07:24:47 +00:00
|
|
|
}
|
|
|
|
|
2012-02-08 01:56:49 +00:00
|
|
|
static void fill_stats(struct user_namespace *user_ns,
|
|
|
|
struct pid_namespace *pid_ns,
|
|
|
|
struct task_struct *tsk, struct taskstats *stats)
|
2006-07-14 07:24:40 +00:00
|
|
|
{
|
2006-12-07 04:36:54 +00:00
|
|
|
memset(stats, 0, sizeof(*stats));
|
2006-07-14 07:24:40 +00:00
|
|
|
/*
|
|
|
|
* Each accounting subsystem adds calls to its functions to
|
|
|
|
* fill in relevant parts of struct taskstsats as follows
|
|
|
|
*
|
2006-07-30 10:03:10 +00:00
|
|
|
* per-task-foo(stats, tsk);
|
2006-07-14 07:24:40 +00:00
|
|
|
*/
|
|
|
|
|
2006-07-30 10:03:10 +00:00
|
|
|
delayacct_add_tsk(stats, tsk);
|
2006-10-01 06:28:55 +00:00
|
|
|
|
|
|
|
/* fill in basic acct fields */
|
2006-07-14 07:24:41 +00:00
|
|
|
stats->version = TASKSTATS_VERSION;
|
2007-07-16 06:40:48 +00:00
|
|
|
stats->nvcsw = tsk->nvcsw;
|
|
|
|
stats->nivcsw = tsk->nivcsw;
|
2012-02-08 01:56:49 +00:00
|
|
|
bacct_add_tsk(user_ns, pid_ns, stats, tsk);
|
2006-07-14 07:24:41 +00:00
|
|
|
|
2006-10-01 06:28:58 +00:00
|
|
|
/* fill in extended acct fields */
|
|
|
|
xacct_add_tsk(stats, tsk);
|
2010-10-27 22:34:44 +00:00
|
|
|
}
|
2006-10-01 06:28:58 +00:00
|
|
|
|
2010-10-27 22:34:44 +00:00
|
|
|
static int fill_stats_for_pid(pid_t pid, struct taskstats *stats)
|
|
|
|
{
|
|
|
|
struct task_struct *tsk;
|
2006-07-14 07:24:40 +00:00
|
|
|
|
2010-10-27 22:34:44 +00:00
|
|
|
rcu_read_lock();
|
|
|
|
tsk = find_task_by_vpid(pid);
|
|
|
|
if (tsk)
|
|
|
|
get_task_struct(tsk);
|
|
|
|
rcu_read_unlock();
|
|
|
|
if (!tsk)
|
|
|
|
return -ESRCH;
|
2012-02-08 01:56:49 +00:00
|
|
|
fill_stats(current_user_ns(), task_active_pid_ns(current), tsk, stats);
|
2010-10-27 22:34:44 +00:00
|
|
|
put_task_struct(tsk);
|
|
|
|
return 0;
|
2006-07-14 07:24:40 +00:00
|
|
|
}
|
|
|
|
|
2010-10-27 22:34:44 +00:00
|
|
|
static int fill_stats_for_tgid(pid_t tgid, struct taskstats *stats)
|
2006-07-14 07:24:40 +00:00
|
|
|
{
|
2010-10-27 22:34:44 +00:00
|
|
|
struct task_struct *tsk, *first;
|
2006-07-14 07:24:44 +00:00
|
|
|
unsigned long flags;
|
2006-10-28 17:38:54 +00:00
|
|
|
int rc = -ESRCH;
|
2006-07-14 07:24:40 +00:00
|
|
|
|
2006-07-14 07:24:44 +00:00
|
|
|
/*
|
|
|
|
* Add additional stats from live tasks except zombie thread group
|
|
|
|
* leaders who are already counted with the dead tasks
|
|
|
|
*/
|
2006-10-28 17:38:54 +00:00
|
|
|
rcu_read_lock();
|
2010-10-27 22:34:44 +00:00
|
|
|
first = find_task_by_vpid(tgid);
|
2006-07-14 07:24:44 +00:00
|
|
|
|
2006-10-28 17:38:54 +00:00
|
|
|
if (!first || !lock_task_sighand(first, &flags))
|
|
|
|
goto out;
|
2006-07-14 07:24:44 +00:00
|
|
|
|
2006-10-28 17:38:54 +00:00
|
|
|
if (first->signal->stats)
|
|
|
|
memcpy(stats, first->signal->stats, sizeof(*stats));
|
2006-12-07 04:36:54 +00:00
|
|
|
else
|
|
|
|
memset(stats, 0, sizeof(*stats));
|
2006-10-28 17:38:49 +00:00
|
|
|
|
2006-10-28 17:38:54 +00:00
|
|
|
tsk = first;
|
2006-07-14 07:24:40 +00:00
|
|
|
do {
|
2006-10-28 17:38:54 +00:00
|
|
|
if (tsk->exit_state)
|
2006-07-14 07:24:44 +00:00
|
|
|
continue;
|
2006-07-14 07:24:40 +00:00
|
|
|
/*
|
2006-07-14 07:24:44 +00:00
|
|
|
* Accounting subsystem can call its functions here to
|
2006-07-14 07:24:40 +00:00
|
|
|
* fill in relevant parts of struct taskstsats as follows
|
|
|
|
*
|
2006-07-14 07:24:44 +00:00
|
|
|
* per-task-foo(stats, tsk);
|
2006-07-14 07:24:40 +00:00
|
|
|
*/
|
2006-07-14 07:24:44 +00:00
|
|
|
delayacct_add_tsk(stats, tsk);
|
2006-07-14 07:24:41 +00:00
|
|
|
|
2007-07-16 06:40:48 +00:00
|
|
|
stats->nvcsw += tsk->nvcsw;
|
|
|
|
stats->nivcsw += tsk->nivcsw;
|
2006-07-14 07:24:40 +00:00
|
|
|
} while_each_thread(first, tsk);
|
2006-07-14 07:24:41 +00:00
|
|
|
|
2006-10-28 17:38:54 +00:00
|
|
|
unlock_task_sighand(first, &flags);
|
|
|
|
rc = 0;
|
|
|
|
out:
|
|
|
|
rcu_read_unlock();
|
|
|
|
|
|
|
|
stats->version = TASKSTATS_VERSION;
|
2006-07-14 07:24:40 +00:00
|
|
|
/*
|
2007-10-19 21:10:43 +00:00
|
|
|
* Accounting subsystems can also add calls here to modify
|
2006-07-14 07:24:44 +00:00
|
|
|
* fields of taskstats.
|
2006-07-14 07:24:40 +00:00
|
|
|
*/
|
2006-10-28 17:38:54 +00:00
|
|
|
return rc;
|
2006-07-14 07:24:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void fill_tgid_exit(struct task_struct *tsk)
|
|
|
|
{
|
|
|
|
unsigned long flags;
|
|
|
|
|
2006-10-28 17:38:53 +00:00
|
|
|
spin_lock_irqsave(&tsk->sighand->siglock, flags);
|
2006-07-14 07:24:44 +00:00
|
|
|
if (!tsk->signal->stats)
|
|
|
|
goto ret;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Each accounting subsystem calls its functions here to
|
|
|
|
* accumalate its per-task stats for tsk, into the per-tgid structure
|
|
|
|
*
|
|
|
|
* per-task-foo(tsk->signal->stats, tsk);
|
|
|
|
*/
|
|
|
|
delayacct_add_tsk(tsk->signal->stats, tsk);
|
|
|
|
ret:
|
2006-10-28 17:38:53 +00:00
|
|
|
spin_unlock_irqrestore(&tsk->sighand->siglock, flags);
|
2006-07-14 07:24:44 +00:00
|
|
|
return;
|
2006-07-14 07:24:40 +00:00
|
|
|
}
|
|
|
|
|
2008-12-31 23:42:28 +00:00
|
|
|
static int add_del_listener(pid_t pid, const struct cpumask *mask, int isadd)
|
2006-07-14 07:24:47 +00:00
|
|
|
{
|
|
|
|
struct listener_list *listeners;
|
2011-06-27 23:18:11 +00:00
|
|
|
struct listener *s, *tmp, *s2;
|
2006-07-14 07:24:47 +00:00
|
|
|
unsigned int cpu;
|
2013-11-12 23:11:23 +00:00
|
|
|
int ret = 0;
|
2006-07-14 07:24:44 +00:00
|
|
|
|
2008-12-31 23:42:28 +00:00
|
|
|
if (!cpumask_subset(mask, cpu_possible_mask))
|
2006-07-14 07:24:47 +00:00
|
|
|
return -EINVAL;
|
|
|
|
|
2012-02-08 01:56:49 +00:00
|
|
|
if (current_user_ns() != &init_user_ns)
|
|
|
|
return -EINVAL;
|
|
|
|
|
|
|
|
if (task_active_pid_ns(current) != &init_pid_ns)
|
|
|
|
return -EINVAL;
|
|
|
|
|
2006-07-14 07:24:47 +00:00
|
|
|
if (isadd == REGISTER) {
|
2008-12-31 23:42:28 +00:00
|
|
|
for_each_cpu(cpu, mask) {
|
2011-08-03 23:21:04 +00:00
|
|
|
s = kmalloc_node(sizeof(struct listener),
|
|
|
|
GFP_KERNEL, cpu_to_node(cpu));
|
2013-11-12 23:11:23 +00:00
|
|
|
if (!s) {
|
|
|
|
ret = -ENOMEM;
|
2006-07-14 07:24:47 +00:00
|
|
|
goto cleanup;
|
2013-11-12 23:11:23 +00:00
|
|
|
}
|
2006-07-14 07:24:47 +00:00
|
|
|
s->pid = pid;
|
2006-07-14 07:24:47 +00:00
|
|
|
s->valid = 1;
|
2006-07-14 07:24:47 +00:00
|
|
|
|
|
|
|
listeners = &per_cpu(listener_array, cpu);
|
|
|
|
down_write(&listeners->sem);
|
2011-08-03 23:21:04 +00:00
|
|
|
list_for_each_entry(s2, &listeners->list, list) {
|
2011-08-03 23:21:05 +00:00
|
|
|
if (s2->pid == pid && s2->valid)
|
2011-08-03 23:21:04 +00:00
|
|
|
goto exists;
|
2011-06-27 23:18:11 +00:00
|
|
|
}
|
2006-07-14 07:24:47 +00:00
|
|
|
list_add(&s->list, &listeners->list);
|
2011-06-27 23:18:11 +00:00
|
|
|
s = NULL;
|
2011-08-03 23:21:04 +00:00
|
|
|
exists:
|
2006-07-14 07:24:47 +00:00
|
|
|
up_write(&listeners->sem);
|
2011-08-03 23:21:04 +00:00
|
|
|
kfree(s); /* nop if NULL */
|
2006-07-14 07:24:47 +00:00
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Deregister or cleanup */
|
|
|
|
cleanup:
|
2008-12-31 23:42:28 +00:00
|
|
|
for_each_cpu(cpu, mask) {
|
2006-07-14 07:24:47 +00:00
|
|
|
listeners = &per_cpu(listener_array, cpu);
|
|
|
|
down_write(&listeners->sem);
|
|
|
|
list_for_each_entry_safe(s, tmp, &listeners->list, list) {
|
|
|
|
if (s->pid == pid) {
|
|
|
|
list_del(&s->list);
|
|
|
|
kfree(s);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
up_write(&listeners->sem);
|
|
|
|
}
|
2013-11-12 23:11:23 +00:00
|
|
|
return ret;
|
2006-07-14 07:24:47 +00:00
|
|
|
}
|
|
|
|
|
2008-12-31 23:42:28 +00:00
|
|
|
static int parse(struct nlattr *na, struct cpumask *mask)
|
2006-07-14 07:24:47 +00:00
|
|
|
{
|
|
|
|
char *data;
|
|
|
|
int len;
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
if (na == NULL)
|
|
|
|
return 1;
|
|
|
|
len = nla_len(na);
|
|
|
|
if (len > TASKSTATS_CPUMASK_MAXLEN)
|
|
|
|
return -E2BIG;
|
|
|
|
if (len < 1)
|
|
|
|
return -EINVAL;
|
|
|
|
data = kmalloc(len, GFP_KERNEL);
|
|
|
|
if (!data)
|
|
|
|
return -ENOMEM;
|
|
|
|
nla_strlcpy(data, na, len);
|
2008-12-13 10:50:25 +00:00
|
|
|
ret = cpulist_parse(data, mask);
|
2006-07-14 07:24:47 +00:00
|
|
|
kfree(data);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2006-12-07 04:36:54 +00:00
|
|
|
static struct taskstats *mk_reply(struct sk_buff *skb, int type, u32 pid)
|
2006-12-07 04:36:53 +00:00
|
|
|
{
|
2006-12-07 04:36:54 +00:00
|
|
|
struct nlattr *na, *ret;
|
2006-12-07 04:36:53 +00:00
|
|
|
int aggr;
|
|
|
|
|
2006-12-07 04:36:55 +00:00
|
|
|
aggr = (type == TASKSTATS_TYPE_PID)
|
|
|
|
? TASKSTATS_TYPE_AGGR_PID
|
|
|
|
: TASKSTATS_TYPE_AGGR_TGID;
|
2006-12-07 04:36:53 +00:00
|
|
|
|
|
|
|
na = nla_nest_start(skb, aggr);
|
2006-12-07 04:36:55 +00:00
|
|
|
if (!na)
|
|
|
|
goto err;
|
2010-12-22 01:24:30 +00:00
|
|
|
|
2013-11-12 23:11:22 +00:00
|
|
|
if (nla_put(skb, type, sizeof(pid), &pid) < 0) {
|
|
|
|
nla_nest_cancel(skb, na);
|
2006-12-07 04:36:54 +00:00
|
|
|
goto err;
|
2013-11-12 23:11:22 +00:00
|
|
|
}
|
2016-04-22 15:31:24 +00:00
|
|
|
ret = nla_reserve_64bit(skb, TASKSTATS_TYPE_STATS,
|
|
|
|
sizeof(struct taskstats), TASKSTATS_TYPE_NULL);
|
2013-11-12 23:11:22 +00:00
|
|
|
if (!ret) {
|
|
|
|
nla_nest_cancel(skb, na);
|
2006-12-07 04:36:54 +00:00
|
|
|
goto err;
|
2013-11-12 23:11:22 +00:00
|
|
|
}
|
2006-12-07 04:36:53 +00:00
|
|
|
nla_nest_end(skb, na);
|
|
|
|
|
2006-12-07 04:36:54 +00:00
|
|
|
return nla_data(ret);
|
|
|
|
err:
|
|
|
|
return NULL;
|
2006-12-07 04:36:53 +00:00
|
|
|
}
|
|
|
|
|
Add cgroupstats
This patch is inspired by the discussion at
http://lkml.org/lkml/2007/4/11/187 and implements per cgroup statistics
as suggested by Andrew Morton in http://lkml.org/lkml/2007/4/11/263. The
patch is on top of 2.6.21-mm1 with Paul's cgroups v9 patches (forward
ported)
This patch implements per cgroup statistics infrastructure and re-uses
code from the taskstats interface. A new set of cgroup operations are
registered with commands and attributes. It should be very easy to
*extend* per cgroup statistics, by adding members to the cgroupstats
structure.
The current model for cgroupstats is a pull, a push model (to post
statistics on interesting events), should be very easy to add. Currently
user space requests for statistics by passing the cgroup file
descriptor. Statistics about the state of all the tasks in the cgroup
is returned to user space.
TODO's/NOTE:
This patch provides an infrastructure for implementing cgroup statistics.
Based on the needs of each controller, we can incrementally add more statistics,
event based support for notification of statistics, accumulation of taskstats
into cgroup statistics in the future.
Sample output
# ./cgroupstats -C /cgroup/a
sleeping 2, blocked 0, running 1, stopped 0, uninterruptible 0
# ./cgroupstats -C /cgroup/
sleeping 154, blocked 0, running 0, stopped 0, uninterruptible 0
If the approach looks good, I'll enhance and post the user space utility for
the same
Feedback, comments, test results are always welcome!
[akpm@linux-foundation.org: build fix]
Signed-off-by: Balbir Singh <balbir@linux.vnet.ibm.com>
Cc: Paul Menage <menage@google.com>
Cc: Jay Lan <jlan@engr.sgi.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
2007-10-19 06:39:44 +00:00
|
|
|
static int cgroupstats_user_cmd(struct sk_buff *skb, struct genl_info *info)
|
|
|
|
{
|
|
|
|
int rc = 0;
|
|
|
|
struct sk_buff *rep_skb;
|
|
|
|
struct cgroupstats *stats;
|
|
|
|
struct nlattr *na;
|
|
|
|
size_t size;
|
|
|
|
u32 fd;
|
2012-08-28 16:52:22 +00:00
|
|
|
struct fd f;
|
Add cgroupstats
This patch is inspired by the discussion at
http://lkml.org/lkml/2007/4/11/187 and implements per cgroup statistics
as suggested by Andrew Morton in http://lkml.org/lkml/2007/4/11/263. The
patch is on top of 2.6.21-mm1 with Paul's cgroups v9 patches (forward
ported)
This patch implements per cgroup statistics infrastructure and re-uses
code from the taskstats interface. A new set of cgroup operations are
registered with commands and attributes. It should be very easy to
*extend* per cgroup statistics, by adding members to the cgroupstats
structure.
The current model for cgroupstats is a pull, a push model (to post
statistics on interesting events), should be very easy to add. Currently
user space requests for statistics by passing the cgroup file
descriptor. Statistics about the state of all the tasks in the cgroup
is returned to user space.
TODO's/NOTE:
This patch provides an infrastructure for implementing cgroup statistics.
Based on the needs of each controller, we can incrementally add more statistics,
event based support for notification of statistics, accumulation of taskstats
into cgroup statistics in the future.
Sample output
# ./cgroupstats -C /cgroup/a
sleeping 2, blocked 0, running 1, stopped 0, uninterruptible 0
# ./cgroupstats -C /cgroup/
sleeping 154, blocked 0, running 0, stopped 0, uninterruptible 0
If the approach looks good, I'll enhance and post the user space utility for
the same
Feedback, comments, test results are always welcome!
[akpm@linux-foundation.org: build fix]
Signed-off-by: Balbir Singh <balbir@linux.vnet.ibm.com>
Cc: Paul Menage <menage@google.com>
Cc: Jay Lan <jlan@engr.sgi.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
2007-10-19 06:39:44 +00:00
|
|
|
|
|
|
|
na = info->attrs[CGROUPSTATS_CMD_ATTR_FD];
|
|
|
|
if (!na)
|
|
|
|
return -EINVAL;
|
|
|
|
|
|
|
|
fd = nla_get_u32(info->attrs[CGROUPSTATS_CMD_ATTR_FD]);
|
2012-08-28 16:52:22 +00:00
|
|
|
f = fdget(fd);
|
|
|
|
if (!f.file)
|
2007-11-15 01:00:37 +00:00
|
|
|
return 0;
|
Add cgroupstats
This patch is inspired by the discussion at
http://lkml.org/lkml/2007/4/11/187 and implements per cgroup statistics
as suggested by Andrew Morton in http://lkml.org/lkml/2007/4/11/263. The
patch is on top of 2.6.21-mm1 with Paul's cgroups v9 patches (forward
ported)
This patch implements per cgroup statistics infrastructure and re-uses
code from the taskstats interface. A new set of cgroup operations are
registered with commands and attributes. It should be very easy to
*extend* per cgroup statistics, by adding members to the cgroupstats
structure.
The current model for cgroupstats is a pull, a push model (to post
statistics on interesting events), should be very easy to add. Currently
user space requests for statistics by passing the cgroup file
descriptor. Statistics about the state of all the tasks in the cgroup
is returned to user space.
TODO's/NOTE:
This patch provides an infrastructure for implementing cgroup statistics.
Based on the needs of each controller, we can incrementally add more statistics,
event based support for notification of statistics, accumulation of taskstats
into cgroup statistics in the future.
Sample output
# ./cgroupstats -C /cgroup/a
sleeping 2, blocked 0, running 1, stopped 0, uninterruptible 0
# ./cgroupstats -C /cgroup/
sleeping 154, blocked 0, running 0, stopped 0, uninterruptible 0
If the approach looks good, I'll enhance and post the user space utility for
the same
Feedback, comments, test results are always welcome!
[akpm@linux-foundation.org: build fix]
Signed-off-by: Balbir Singh <balbir@linux.vnet.ibm.com>
Cc: Paul Menage <menage@google.com>
Cc: Jay Lan <jlan@engr.sgi.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
2007-10-19 06:39:44 +00:00
|
|
|
|
2007-11-15 01:00:37 +00:00
|
|
|
size = nla_total_size(sizeof(struct cgroupstats));
|
Add cgroupstats
This patch is inspired by the discussion at
http://lkml.org/lkml/2007/4/11/187 and implements per cgroup statistics
as suggested by Andrew Morton in http://lkml.org/lkml/2007/4/11/263. The
patch is on top of 2.6.21-mm1 with Paul's cgroups v9 patches (forward
ported)
This patch implements per cgroup statistics infrastructure and re-uses
code from the taskstats interface. A new set of cgroup operations are
registered with commands and attributes. It should be very easy to
*extend* per cgroup statistics, by adding members to the cgroupstats
structure.
The current model for cgroupstats is a pull, a push model (to post
statistics on interesting events), should be very easy to add. Currently
user space requests for statistics by passing the cgroup file
descriptor. Statistics about the state of all the tasks in the cgroup
is returned to user space.
TODO's/NOTE:
This patch provides an infrastructure for implementing cgroup statistics.
Based on the needs of each controller, we can incrementally add more statistics,
event based support for notification of statistics, accumulation of taskstats
into cgroup statistics in the future.
Sample output
# ./cgroupstats -C /cgroup/a
sleeping 2, blocked 0, running 1, stopped 0, uninterruptible 0
# ./cgroupstats -C /cgroup/
sleeping 154, blocked 0, running 0, stopped 0, uninterruptible 0
If the approach looks good, I'll enhance and post the user space utility for
the same
Feedback, comments, test results are always welcome!
[akpm@linux-foundation.org: build fix]
Signed-off-by: Balbir Singh <balbir@linux.vnet.ibm.com>
Cc: Paul Menage <menage@google.com>
Cc: Jay Lan <jlan@engr.sgi.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
2007-10-19 06:39:44 +00:00
|
|
|
|
2007-11-15 01:00:37 +00:00
|
|
|
rc = prepare_reply(info, CGROUPSTATS_CMD_NEW, &rep_skb,
|
|
|
|
size);
|
|
|
|
if (rc < 0)
|
|
|
|
goto err;
|
Add cgroupstats
This patch is inspired by the discussion at
http://lkml.org/lkml/2007/4/11/187 and implements per cgroup statistics
as suggested by Andrew Morton in http://lkml.org/lkml/2007/4/11/263. The
patch is on top of 2.6.21-mm1 with Paul's cgroups v9 patches (forward
ported)
This patch implements per cgroup statistics infrastructure and re-uses
code from the taskstats interface. A new set of cgroup operations are
registered with commands and attributes. It should be very easy to
*extend* per cgroup statistics, by adding members to the cgroupstats
structure.
The current model for cgroupstats is a pull, a push model (to post
statistics on interesting events), should be very easy to add. Currently
user space requests for statistics by passing the cgroup file
descriptor. Statistics about the state of all the tasks in the cgroup
is returned to user space.
TODO's/NOTE:
This patch provides an infrastructure for implementing cgroup statistics.
Based on the needs of each controller, we can incrementally add more statistics,
event based support for notification of statistics, accumulation of taskstats
into cgroup statistics in the future.
Sample output
# ./cgroupstats -C /cgroup/a
sleeping 2, blocked 0, running 1, stopped 0, uninterruptible 0
# ./cgroupstats -C /cgroup/
sleeping 154, blocked 0, running 0, stopped 0, uninterruptible 0
If the approach looks good, I'll enhance and post the user space utility for
the same
Feedback, comments, test results are always welcome!
[akpm@linux-foundation.org: build fix]
Signed-off-by: Balbir Singh <balbir@linux.vnet.ibm.com>
Cc: Paul Menage <menage@google.com>
Cc: Jay Lan <jlan@engr.sgi.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
2007-10-19 06:39:44 +00:00
|
|
|
|
2007-11-15 01:00:37 +00:00
|
|
|
na = nla_reserve(rep_skb, CGROUPSTATS_TYPE_CGROUP_STATS,
|
|
|
|
sizeof(struct cgroupstats));
|
2012-07-30 21:42:49 +00:00
|
|
|
if (na == NULL) {
|
2012-10-05 00:16:52 +00:00
|
|
|
nlmsg_free(rep_skb);
|
2012-07-30 21:42:49 +00:00
|
|
|
rc = -EMSGSIZE;
|
|
|
|
goto err;
|
|
|
|
}
|
|
|
|
|
2007-11-15 01:00:37 +00:00
|
|
|
stats = nla_data(na);
|
|
|
|
memset(stats, 0, sizeof(*stats));
|
Add cgroupstats
This patch is inspired by the discussion at
http://lkml.org/lkml/2007/4/11/187 and implements per cgroup statistics
as suggested by Andrew Morton in http://lkml.org/lkml/2007/4/11/263. The
patch is on top of 2.6.21-mm1 with Paul's cgroups v9 patches (forward
ported)
This patch implements per cgroup statistics infrastructure and re-uses
code from the taskstats interface. A new set of cgroup operations are
registered with commands and attributes. It should be very easy to
*extend* per cgroup statistics, by adding members to the cgroupstats
structure.
The current model for cgroupstats is a pull, a push model (to post
statistics on interesting events), should be very easy to add. Currently
user space requests for statistics by passing the cgroup file
descriptor. Statistics about the state of all the tasks in the cgroup
is returned to user space.
TODO's/NOTE:
This patch provides an infrastructure for implementing cgroup statistics.
Based on the needs of each controller, we can incrementally add more statistics,
event based support for notification of statistics, accumulation of taskstats
into cgroup statistics in the future.
Sample output
# ./cgroupstats -C /cgroup/a
sleeping 2, blocked 0, running 1, stopped 0, uninterruptible 0
# ./cgroupstats -C /cgroup/
sleeping 154, blocked 0, running 0, stopped 0, uninterruptible 0
If the approach looks good, I'll enhance and post the user space utility for
the same
Feedback, comments, test results are always welcome!
[akpm@linux-foundation.org: build fix]
Signed-off-by: Balbir Singh <balbir@linux.vnet.ibm.com>
Cc: Paul Menage <menage@google.com>
Cc: Jay Lan <jlan@engr.sgi.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
2007-10-19 06:39:44 +00:00
|
|
|
|
2014-10-31 05:22:04 +00:00
|
|
|
rc = cgroupstats_build(stats, f.file->f_path.dentry);
|
2007-11-15 01:00:37 +00:00
|
|
|
if (rc < 0) {
|
|
|
|
nlmsg_free(rep_skb);
|
|
|
|
goto err;
|
Add cgroupstats
This patch is inspired by the discussion at
http://lkml.org/lkml/2007/4/11/187 and implements per cgroup statistics
as suggested by Andrew Morton in http://lkml.org/lkml/2007/4/11/263. The
patch is on top of 2.6.21-mm1 with Paul's cgroups v9 patches (forward
ported)
This patch implements per cgroup statistics infrastructure and re-uses
code from the taskstats interface. A new set of cgroup operations are
registered with commands and attributes. It should be very easy to
*extend* per cgroup statistics, by adding members to the cgroupstats
structure.
The current model for cgroupstats is a pull, a push model (to post
statistics on interesting events), should be very easy to add. Currently
user space requests for statistics by passing the cgroup file
descriptor. Statistics about the state of all the tasks in the cgroup
is returned to user space.
TODO's/NOTE:
This patch provides an infrastructure for implementing cgroup statistics.
Based on the needs of each controller, we can incrementally add more statistics,
event based support for notification of statistics, accumulation of taskstats
into cgroup statistics in the future.
Sample output
# ./cgroupstats -C /cgroup/a
sleeping 2, blocked 0, running 1, stopped 0, uninterruptible 0
# ./cgroupstats -C /cgroup/
sleeping 154, blocked 0, running 0, stopped 0, uninterruptible 0
If the approach looks good, I'll enhance and post the user space utility for
the same
Feedback, comments, test results are always welcome!
[akpm@linux-foundation.org: build fix]
Signed-off-by: Balbir Singh <balbir@linux.vnet.ibm.com>
Cc: Paul Menage <menage@google.com>
Cc: Jay Lan <jlan@engr.sgi.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
2007-10-19 06:39:44 +00:00
|
|
|
}
|
|
|
|
|
2009-07-10 09:51:34 +00:00
|
|
|
rc = send_reply(rep_skb, info);
|
2007-11-15 01:00:37 +00:00
|
|
|
|
Add cgroupstats
This patch is inspired by the discussion at
http://lkml.org/lkml/2007/4/11/187 and implements per cgroup statistics
as suggested by Andrew Morton in http://lkml.org/lkml/2007/4/11/263. The
patch is on top of 2.6.21-mm1 with Paul's cgroups v9 patches (forward
ported)
This patch implements per cgroup statistics infrastructure and re-uses
code from the taskstats interface. A new set of cgroup operations are
registered with commands and attributes. It should be very easy to
*extend* per cgroup statistics, by adding members to the cgroupstats
structure.
The current model for cgroupstats is a pull, a push model (to post
statistics on interesting events), should be very easy to add. Currently
user space requests for statistics by passing the cgroup file
descriptor. Statistics about the state of all the tasks in the cgroup
is returned to user space.
TODO's/NOTE:
This patch provides an infrastructure for implementing cgroup statistics.
Based on the needs of each controller, we can incrementally add more statistics,
event based support for notification of statistics, accumulation of taskstats
into cgroup statistics in the future.
Sample output
# ./cgroupstats -C /cgroup/a
sleeping 2, blocked 0, running 1, stopped 0, uninterruptible 0
# ./cgroupstats -C /cgroup/
sleeping 154, blocked 0, running 0, stopped 0, uninterruptible 0
If the approach looks good, I'll enhance and post the user space utility for
the same
Feedback, comments, test results are always welcome!
[akpm@linux-foundation.org: build fix]
Signed-off-by: Balbir Singh <balbir@linux.vnet.ibm.com>
Cc: Paul Menage <menage@google.com>
Cc: Jay Lan <jlan@engr.sgi.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
2007-10-19 06:39:44 +00:00
|
|
|
err:
|
2012-08-28 16:52:22 +00:00
|
|
|
fdput(f);
|
Add cgroupstats
This patch is inspired by the discussion at
http://lkml.org/lkml/2007/4/11/187 and implements per cgroup statistics
as suggested by Andrew Morton in http://lkml.org/lkml/2007/4/11/263. The
patch is on top of 2.6.21-mm1 with Paul's cgroups v9 patches (forward
ported)
This patch implements per cgroup statistics infrastructure and re-uses
code from the taskstats interface. A new set of cgroup operations are
registered with commands and attributes. It should be very easy to
*extend* per cgroup statistics, by adding members to the cgroupstats
structure.
The current model for cgroupstats is a pull, a push model (to post
statistics on interesting events), should be very easy to add. Currently
user space requests for statistics by passing the cgroup file
descriptor. Statistics about the state of all the tasks in the cgroup
is returned to user space.
TODO's/NOTE:
This patch provides an infrastructure for implementing cgroup statistics.
Based on the needs of each controller, we can incrementally add more statistics,
event based support for notification of statistics, accumulation of taskstats
into cgroup statistics in the future.
Sample output
# ./cgroupstats -C /cgroup/a
sleeping 2, blocked 0, running 1, stopped 0, uninterruptible 0
# ./cgroupstats -C /cgroup/
sleeping 154, blocked 0, running 0, stopped 0, uninterruptible 0
If the approach looks good, I'll enhance and post the user space utility for
the same
Feedback, comments, test results are always welcome!
[akpm@linux-foundation.org: build fix]
Signed-off-by: Balbir Singh <balbir@linux.vnet.ibm.com>
Cc: Paul Menage <menage@google.com>
Cc: Jay Lan <jlan@engr.sgi.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
2007-10-19 06:39:44 +00:00
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
|
2010-10-27 22:34:44 +00:00
|
|
|
static int cmd_attr_register_cpumask(struct genl_info *info)
|
2006-07-14 07:24:40 +00:00
|
|
|
{
|
2008-12-31 23:42:28 +00:00
|
|
|
cpumask_var_t mask;
|
2010-10-27 22:34:44 +00:00
|
|
|
int rc;
|
2008-12-31 23:42:28 +00:00
|
|
|
|
|
|
|
if (!alloc_cpumask_var(&mask, GFP_KERNEL))
|
|
|
|
return -ENOMEM;
|
|
|
|
rc = parse(info->attrs[TASKSTATS_CMD_ATTR_REGISTER_CPUMASK], mask);
|
2006-07-14 07:24:47 +00:00
|
|
|
if (rc < 0)
|
2010-10-27 22:34:44 +00:00
|
|
|
goto out;
|
2012-09-07 20:12:54 +00:00
|
|
|
rc = add_del_listener(info->snd_portid, mask, REGISTER);
|
2010-10-27 22:34:44 +00:00
|
|
|
out:
|
|
|
|
free_cpumask_var(mask);
|
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int cmd_attr_deregister_cpumask(struct genl_info *info)
|
|
|
|
{
|
|
|
|
cpumask_var_t mask;
|
|
|
|
int rc;
|
2006-07-14 07:24:47 +00:00
|
|
|
|
2010-10-27 22:34:44 +00:00
|
|
|
if (!alloc_cpumask_var(&mask, GFP_KERNEL))
|
|
|
|
return -ENOMEM;
|
2008-12-31 23:42:28 +00:00
|
|
|
rc = parse(info->attrs[TASKSTATS_CMD_ATTR_DEREGISTER_CPUMASK], mask);
|
2006-07-14 07:24:47 +00:00
|
|
|
if (rc < 0)
|
2010-10-27 22:34:44 +00:00
|
|
|
goto out;
|
2012-09-07 20:12:54 +00:00
|
|
|
rc = add_del_listener(info->snd_portid, mask, DEREGISTER);
|
2010-10-27 22:34:44 +00:00
|
|
|
out:
|
2008-12-31 23:42:28 +00:00
|
|
|
free_cpumask_var(mask);
|
2010-10-27 22:34:44 +00:00
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
|
2010-12-22 01:24:30 +00:00
|
|
|
static size_t taskstats_packet_size(void)
|
|
|
|
{
|
|
|
|
size_t size;
|
|
|
|
|
|
|
|
size = nla_total_size(sizeof(u32)) +
|
2016-04-22 15:31:24 +00:00
|
|
|
nla_total_size_64bit(sizeof(struct taskstats)) +
|
|
|
|
nla_total_size(0);
|
|
|
|
|
2010-12-22 01:24:30 +00:00
|
|
|
return size;
|
|
|
|
}
|
|
|
|
|
2010-10-27 22:34:44 +00:00
|
|
|
static int cmd_attr_pid(struct genl_info *info)
|
|
|
|
{
|
|
|
|
struct taskstats *stats;
|
|
|
|
struct sk_buff *rep_skb;
|
|
|
|
size_t size;
|
|
|
|
u32 pid;
|
|
|
|
int rc;
|
2006-07-14 07:24:40 +00:00
|
|
|
|
2010-12-22 01:24:30 +00:00
|
|
|
size = taskstats_packet_size();
|
2006-07-14 07:24:40 +00:00
|
|
|
|
2006-12-07 04:36:55 +00:00
|
|
|
rc = prepare_reply(info, TASKSTATS_CMD_NEW, &rep_skb, size);
|
2006-07-14 07:24:40 +00:00
|
|
|
if (rc < 0)
|
|
|
|
return rc;
|
|
|
|
|
2006-12-07 04:36:54 +00:00
|
|
|
rc = -EINVAL;
|
2010-10-27 22:34:44 +00:00
|
|
|
pid = nla_get_u32(info->attrs[TASKSTATS_CMD_ATTR_PID]);
|
|
|
|
stats = mk_reply(rep_skb, TASKSTATS_TYPE_PID, pid);
|
|
|
|
if (!stats)
|
2006-07-14 07:24:40 +00:00
|
|
|
goto err;
|
|
|
|
|
2010-10-27 22:34:44 +00:00
|
|
|
rc = fill_stats_for_pid(pid, stats);
|
2010-10-27 22:34:44 +00:00
|
|
|
if (rc < 0)
|
|
|
|
goto err;
|
2009-07-10 09:51:34 +00:00
|
|
|
return send_reply(rep_skb, info);
|
2006-07-14 07:24:40 +00:00
|
|
|
err:
|
|
|
|
nlmsg_free(rep_skb);
|
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
|
2010-10-27 22:34:44 +00:00
|
|
|
static int cmd_attr_tgid(struct genl_info *info)
|
|
|
|
{
|
|
|
|
struct taskstats *stats;
|
|
|
|
struct sk_buff *rep_skb;
|
|
|
|
size_t size;
|
|
|
|
u32 tgid;
|
|
|
|
int rc;
|
|
|
|
|
2010-12-22 01:24:30 +00:00
|
|
|
size = taskstats_packet_size();
|
2010-10-27 22:34:44 +00:00
|
|
|
|
|
|
|
rc = prepare_reply(info, TASKSTATS_CMD_NEW, &rep_skb, size);
|
|
|
|
if (rc < 0)
|
|
|
|
return rc;
|
|
|
|
|
|
|
|
rc = -EINVAL;
|
|
|
|
tgid = nla_get_u32(info->attrs[TASKSTATS_CMD_ATTR_TGID]);
|
|
|
|
stats = mk_reply(rep_skb, TASKSTATS_TYPE_TGID, tgid);
|
|
|
|
if (!stats)
|
|
|
|
goto err;
|
|
|
|
|
2010-10-27 22:34:44 +00:00
|
|
|
rc = fill_stats_for_tgid(tgid, stats);
|
2010-10-27 22:34:44 +00:00
|
|
|
if (rc < 0)
|
|
|
|
goto err;
|
|
|
|
return send_reply(rep_skb, info);
|
|
|
|
err:
|
|
|
|
nlmsg_free(rep_skb);
|
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int taskstats_user_cmd(struct sk_buff *skb, struct genl_info *info)
|
|
|
|
{
|
|
|
|
if (info->attrs[TASKSTATS_CMD_ATTR_REGISTER_CPUMASK])
|
|
|
|
return cmd_attr_register_cpumask(info);
|
|
|
|
else if (info->attrs[TASKSTATS_CMD_ATTR_DEREGISTER_CPUMASK])
|
|
|
|
return cmd_attr_deregister_cpumask(info);
|
|
|
|
else if (info->attrs[TASKSTATS_CMD_ATTR_PID])
|
|
|
|
return cmd_attr_pid(info);
|
|
|
|
else if (info->attrs[TASKSTATS_CMD_ATTR_TGID])
|
|
|
|
return cmd_attr_tgid(info);
|
|
|
|
else
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
|
2006-12-07 04:36:52 +00:00
|
|
|
static struct taskstats *taskstats_tgid_alloc(struct task_struct *tsk)
|
|
|
|
{
|
|
|
|
struct signal_struct *sig = tsk->signal;
|
|
|
|
struct taskstats *stats;
|
|
|
|
|
|
|
|
if (sig->stats || thread_group_empty(tsk))
|
|
|
|
goto ret;
|
|
|
|
|
|
|
|
/* No problem if kmem_cache_zalloc() fails */
|
|
|
|
stats = kmem_cache_zalloc(taskstats_cache, GFP_KERNEL);
|
|
|
|
|
|
|
|
spin_lock_irq(&tsk->sighand->siglock);
|
|
|
|
if (!sig->stats) {
|
|
|
|
sig->stats = stats;
|
|
|
|
stats = NULL;
|
|
|
|
}
|
|
|
|
spin_unlock_irq(&tsk->sighand->siglock);
|
|
|
|
|
|
|
|
if (stats)
|
|
|
|
kmem_cache_free(taskstats_cache, stats);
|
|
|
|
ret:
|
|
|
|
return sig->stats;
|
|
|
|
}
|
|
|
|
|
2006-07-14 07:24:40 +00:00
|
|
|
/* Send pid data out on exit */
|
2006-12-07 04:36:51 +00:00
|
|
|
void taskstats_exit(struct task_struct *tsk, int group_dead)
|
2006-07-14 07:24:40 +00:00
|
|
|
{
|
|
|
|
int rc;
|
2006-12-07 04:36:51 +00:00
|
|
|
struct listener_list *listeners;
|
2006-12-07 04:36:54 +00:00
|
|
|
struct taskstats *stats;
|
2006-07-14 07:24:40 +00:00
|
|
|
struct sk_buff *rep_skb;
|
|
|
|
size_t size;
|
|
|
|
int is_thread_group;
|
|
|
|
|
2006-10-31 06:07:15 +00:00
|
|
|
if (!family_registered)
|
2006-07-14 07:24:40 +00:00
|
|
|
return;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Size includes space for nested attributes
|
|
|
|
*/
|
2010-12-22 01:24:30 +00:00
|
|
|
size = taskstats_packet_size();
|
2006-07-14 07:24:40 +00:00
|
|
|
|
2006-12-07 04:36:52 +00:00
|
|
|
is_thread_group = !!taskstats_tgid_alloc(tsk);
|
2006-10-31 06:07:15 +00:00
|
|
|
if (is_thread_group) {
|
|
|
|
/* PID + STATS + TGID + STATS */
|
|
|
|
size = 2 * size;
|
|
|
|
/* fill the tsk->signal->stats structure */
|
|
|
|
fill_tgid_exit(tsk);
|
|
|
|
}
|
|
|
|
|
2014-08-17 17:30:27 +00:00
|
|
|
listeners = raw_cpu_ptr(&listener_array);
|
2006-12-07 04:36:51 +00:00
|
|
|
if (list_empty(&listeners->list))
|
|
|
|
return;
|
|
|
|
|
2006-12-07 04:36:55 +00:00
|
|
|
rc = prepare_reply(NULL, TASKSTATS_CMD_NEW, &rep_skb, size);
|
2006-07-14 07:24:40 +00:00
|
|
|
if (rc < 0)
|
2006-12-07 04:36:54 +00:00
|
|
|
return;
|
2006-07-14 07:24:40 +00:00
|
|
|
|
2012-02-08 01:56:49 +00:00
|
|
|
stats = mk_reply(rep_skb, TASKSTATS_TYPE_PID,
|
|
|
|
task_pid_nr_ns(tsk, &init_pid_ns));
|
2006-12-07 04:36:54 +00:00
|
|
|
if (!stats)
|
2006-12-07 04:36:55 +00:00
|
|
|
goto err;
|
2006-07-14 07:24:40 +00:00
|
|
|
|
2012-02-08 01:56:49 +00:00
|
|
|
fill_stats(&init_user_ns, &init_pid_ns, tsk, stats);
|
2006-07-14 07:24:40 +00:00
|
|
|
|
|
|
|
/*
|
2006-07-14 07:24:44 +00:00
|
|
|
* Doesn't matter if tsk is the leader or the last group member leaving
|
2006-07-14 07:24:40 +00:00
|
|
|
*/
|
2006-12-07 04:36:53 +00:00
|
|
|
if (!is_thread_group || !group_dead)
|
2006-07-14 07:24:44 +00:00
|
|
|
goto send;
|
2006-07-14 07:24:40 +00:00
|
|
|
|
2012-02-08 01:56:49 +00:00
|
|
|
stats = mk_reply(rep_skb, TASKSTATS_TYPE_TGID,
|
|
|
|
task_tgid_nr_ns(tsk, &init_pid_ns));
|
2006-12-07 04:36:54 +00:00
|
|
|
if (!stats)
|
2006-12-07 04:36:55 +00:00
|
|
|
goto err;
|
2006-12-07 04:36:54 +00:00
|
|
|
|
|
|
|
memcpy(stats, tsk->signal->stats, sizeof(*stats));
|
2006-07-14 07:24:40 +00:00
|
|
|
|
2006-07-14 07:24:44 +00:00
|
|
|
send:
|
2006-12-07 04:36:51 +00:00
|
|
|
send_cpu_listeners(rep_skb, listeners);
|
2006-07-14 07:24:44 +00:00
|
|
|
return;
|
2006-12-07 04:36:55 +00:00
|
|
|
err:
|
2006-07-14 07:24:40 +00:00
|
|
|
nlmsg_free(rep_skb);
|
|
|
|
}
|
|
|
|
|
2013-11-14 16:14:46 +00:00
|
|
|
static const struct genl_ops taskstats_ops[] = {
|
2013-11-14 16:14:39 +00:00
|
|
|
{
|
|
|
|
.cmd = TASKSTATS_CMD_GET,
|
|
|
|
.doit = taskstats_user_cmd,
|
|
|
|
.policy = taskstats_cmd_get_policy,
|
|
|
|
.flags = GENL_ADMIN_PERM,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
.cmd = CGROUPSTATS_CMD_GET,
|
|
|
|
.doit = cgroupstats_user_cmd,
|
|
|
|
.policy = cgroupstats_cmd_get_policy,
|
|
|
|
},
|
Add cgroupstats
This patch is inspired by the discussion at
http://lkml.org/lkml/2007/4/11/187 and implements per cgroup statistics
as suggested by Andrew Morton in http://lkml.org/lkml/2007/4/11/263. The
patch is on top of 2.6.21-mm1 with Paul's cgroups v9 patches (forward
ported)
This patch implements per cgroup statistics infrastructure and re-uses
code from the taskstats interface. A new set of cgroup operations are
registered with commands and attributes. It should be very easy to
*extend* per cgroup statistics, by adding members to the cgroupstats
structure.
The current model for cgroupstats is a pull, a push model (to post
statistics on interesting events), should be very easy to add. Currently
user space requests for statistics by passing the cgroup file
descriptor. Statistics about the state of all the tasks in the cgroup
is returned to user space.
TODO's/NOTE:
This patch provides an infrastructure for implementing cgroup statistics.
Based on the needs of each controller, we can incrementally add more statistics,
event based support for notification of statistics, accumulation of taskstats
into cgroup statistics in the future.
Sample output
# ./cgroupstats -C /cgroup/a
sleeping 2, blocked 0, running 1, stopped 0, uninterruptible 0
# ./cgroupstats -C /cgroup/
sleeping 154, blocked 0, running 0, stopped 0, uninterruptible 0
If the approach looks good, I'll enhance and post the user space utility for
the same
Feedback, comments, test results are always welcome!
[akpm@linux-foundation.org: build fix]
Signed-off-by: Balbir Singh <balbir@linux.vnet.ibm.com>
Cc: Paul Menage <menage@google.com>
Cc: Jay Lan <jlan@engr.sgi.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
2007-10-19 06:39:44 +00:00
|
|
|
};
|
|
|
|
|
2006-07-14 07:24:40 +00:00
|
|
|
/* Needed early in initialization */
|
|
|
|
void __init taskstats_init_early(void)
|
|
|
|
{
|
2006-07-14 07:24:47 +00:00
|
|
|
unsigned int i;
|
|
|
|
|
2007-05-06 21:49:57 +00:00
|
|
|
taskstats_cache = KMEM_CACHE(taskstats, SLAB_PANIC);
|
2006-07-14 07:24:47 +00:00
|
|
|
for_each_possible_cpu(i) {
|
|
|
|
INIT_LIST_HEAD(&(per_cpu(listener_array, i).list));
|
|
|
|
init_rwsem(&(per_cpu(listener_array, i).sem));
|
|
|
|
}
|
2006-07-14 07:24:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static int __init taskstats_init(void)
|
|
|
|
{
|
|
|
|
int rc;
|
|
|
|
|
2013-11-19 14:19:31 +00:00
|
|
|
rc = genl_register_family_with_ops(&family, taskstats_ops);
|
2006-07-14 07:24:40 +00:00
|
|
|
if (rc)
|
|
|
|
return rc;
|
|
|
|
|
|
|
|
family_registered = 1;
|
2011-03-23 23:43:27 +00:00
|
|
|
pr_info("registered taskstats version %d\n", TASKSTATS_GENL_VERSION);
|
2006-07-14 07:24:40 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* late initcall ensures initialization of statistics collection
|
|
|
|
* mechanisms precedes initialization of the taskstats interface
|
|
|
|
*/
|
|
|
|
late_initcall(taskstats_init);
|