]> www.pilppa.org Git - linux-2.6-omap-h63xx.git/blobdiff - kernel/taskstats.c
[PATCH] csa: Extended system accounting over taskstats
[linux-2.6-omap-h63xx.git] / kernel / taskstats.c
index 82ec9137d908cd35c321be2bf832ad515d30945a..5d6a8c54ee85f56f9a3640480d5560ed35f2b4e5 100644 (file)
 
 #include <linux/kernel.h>
 #include <linux/taskstats_kern.h>
+#include <linux/tsacct_kern.h>
+#include <linux/delayacct.h>
+#include <linux/tsacct_kern.h>
+#include <linux/cpumask.h>
+#include <linux/percpu.h>
 #include <net/genetlink.h>
 #include <asm/atomic.h>
 
+/*
+ * 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)
+
 static DEFINE_PER_CPU(__u32, taskstats_seqnum) = { 0 };
 static int family_registered;
 kmem_cache_t *taskstats_cache;
-static DEFINE_MUTEX(taskstats_exit_mutex);
 
 static struct genl_family family = {
        .id             = GENL_ID_GENERATE,
@@ -37,8 +47,26 @@ static struct nla_policy taskstats_cmd_get_policy[TASKSTATS_CMD_ATTR_MAX+1]
 __read_mostly = {
        [TASKSTATS_CMD_ATTR_PID]  = { .type = NLA_U32 },
        [TASKSTATS_CMD_ATTR_TGID] = { .type = NLA_U32 },
+       [TASKSTATS_CMD_ATTR_REGISTER_CPUMASK] = { .type = NLA_STRING },
+       [TASKSTATS_CMD_ATTR_DEREGISTER_CPUMASK] = { .type = NLA_STRING },};
+
+struct listener {
+       struct list_head list;
+       pid_t pid;
+       char valid;
 };
 
+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
+};
 
 static int prepare_reply(struct genl_info *info, u8 cmd, struct sk_buff **skbp,
                        void **replyp, size_t size)
@@ -49,7 +77,7 @@ static int prepare_reply(struct genl_info *info, u8 cmd, struct sk_buff **skbp,
        /*
         * If new attributes are added, please revisit this allocation
         */
-       skb = nlmsg_new(size);
+       skb = nlmsg_new(genlmsg_total_size(size), GFP_KERNEL);
        if (!skb)
                return -ENOMEM;
 
@@ -74,29 +102,82 @@ static int prepare_reply(struct genl_info *info, u8 cmd, struct sk_buff **skbp,
        return 0;
 }
 
-static int send_reply(struct sk_buff *skb, pid_t pid, int event)
+/*
+ * Send taskstats data in @skb to listener with nl_pid @pid
+ */
+static int send_reply(struct sk_buff *skb, pid_t pid)
 {
        struct genlmsghdr *genlhdr = nlmsg_data((struct nlmsghdr *)skb->data);
-       void *reply;
+       void *reply = genlmsg_data(genlhdr);
        int rc;
 
-       reply = genlmsg_data(genlhdr);
-
        rc = genlmsg_end(skb, reply);
        if (rc < 0) {
                nlmsg_free(skb);
                return rc;
        }
 
-       if (event == TASKSTATS_MSG_MULTICAST)
-               return genlmsg_multicast(skb, pid, TASKSTATS_LISTEN_GROUP);
        return genlmsg_unicast(skb, pid);
 }
 
+/*
+ * Send taskstats data in @skb to listeners registered for @cpu's exit data
+ */
+static void send_cpu_listeners(struct sk_buff *skb, unsigned int cpu)
+{
+       struct genlmsghdr *genlhdr = nlmsg_data((struct nlmsghdr *)skb->data);
+       struct listener_list *listeners;
+       struct listener *s, *tmp;
+       struct sk_buff *skb_next, *skb_cur = skb;
+       void *reply = genlmsg_data(genlhdr);
+       int rc, delcount = 0;
+
+       rc = genlmsg_end(skb, reply);
+       if (rc < 0) {
+               nlmsg_free(skb);
+               return;
+       }
+
+       rc = 0;
+       listeners = &per_cpu(listener_array, cpu);
+       down_read(&listeners->sem);
+       list_for_each_entry(s, &listeners->list, list) {
+               skb_next = NULL;
+               if (!list_is_last(&s->list, &listeners->list)) {
+                       skb_next = skb_clone(skb_cur, GFP_KERNEL);
+                       if (!skb_next)
+                               break;
+               }
+               rc = genlmsg_unicast(skb_cur, s->pid);
+               if (rc == -ECONNREFUSED) {
+                       s->valid = 0;
+                       delcount++;
+               }
+               skb_cur = skb_next;
+       }
+       up_read(&listeners->sem);
+
+       if (skb_cur)
+               nlmsg_free(skb_cur);
+
+       if (!delcount)
+               return;
+
+       /* 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);
+}
+
 static int fill_pid(pid_t pid, struct task_struct *pidtsk,
                struct taskstats *stats)
 {
-       int rc;
+       int rc = 0;
        struct task_struct *tsk = pidtsk;
 
        if (!pidtsk) {
@@ -115,12 +196,19 @@ static int fill_pid(pid_t pid, struct task_struct *pidtsk,
         * Each accounting subsystem adds calls to its functions to
         * fill in relevant parts of struct taskstsats as follows
         *
-        *      rc = per-task-foo(stats, tsk);
-        *      if (rc)
-        *              goto err;
+        *      per-task-foo(stats, tsk);
         */
 
-err:
+       delayacct_add_tsk(stats, tsk);
+
+       /* fill in basic acct fields */
+       stats->version = TASKSTATS_VERSION;
+       bacct_add_tsk(stats, tsk);
+
+       /* fill in extended acct fields */
+       xacct_add_tsk(stats, tsk);
+
+       /* Define err: label here if needed */
        put_task_struct(tsk);
        return rc;
 
@@ -129,41 +217,146 @@ err:
 static int fill_tgid(pid_t tgid, struct task_struct *tgidtsk,
                struct taskstats *stats)
 {
-       int rc;
        struct task_struct *tsk, *first;
+       unsigned long flags;
 
+       /*
+        * Add additional stats from live tasks except zombie thread group
+        * leaders who are already counted with the dead tasks
+        */
        first = tgidtsk;
-       read_lock(&tasklist_lock);
        if (!first) {
+               read_lock(&tasklist_lock);
                first = find_task_by_pid(tgid);
                if (!first) {
                        read_unlock(&tasklist_lock);
                        return -ESRCH;
                }
-       }
+               get_task_struct(first);
+               read_unlock(&tasklist_lock);
+       } else
+               get_task_struct(first);
+
+       /* Start with stats from dead tasks */
+       spin_lock_irqsave(&first->signal->stats_lock, flags);
+       if (first->signal->stats)
+               memcpy(stats, first->signal->stats, sizeof(*stats));
+       spin_unlock_irqrestore(&first->signal->stats_lock, flags);
+
        tsk = first;
+       read_lock(&tasklist_lock);
        do {
+               if (tsk->exit_state == EXIT_ZOMBIE && thread_group_leader(tsk))
+                       continue;
                /*
-                * Each accounting subsystem adds calls its functions to
+                * Accounting subsystem can call its functions here to
                 * fill in relevant parts of struct taskstsats as follows
                 *
-                *      rc = per-task-foo(stats, tsk);
-                *      if (rc)
-                *              break;
+                *      per-task-foo(stats, tsk);
                 */
+               delayacct_add_tsk(stats, tsk);
 
        } while_each_thread(first, tsk);
        read_unlock(&tasklist_lock);
+       stats->version = TASKSTATS_VERSION;
 
        /*
-        * Accounting subsytems can also add calls here if they don't
-        * wish to aggregate statistics for per-tgid stats
+        * Accounting subsytems can also add calls here to modify
+        * fields of taskstats.
         */
 
-       return rc;
+       return 0;
+}
+
+
+static void fill_tgid_exit(struct task_struct *tsk)
+{
+       unsigned long flags;
+
+       spin_lock_irqsave(&tsk->signal->stats_lock, flags);
+       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:
+       spin_unlock_irqrestore(&tsk->signal->stats_lock, flags);
+       return;
+}
+
+static int add_del_listener(pid_t pid, cpumask_t *maskp, int isadd)
+{
+       struct listener_list *listeners;
+       struct listener *s, *tmp;
+       unsigned int cpu;
+       cpumask_t mask = *maskp;
+
+       if (!cpus_subset(mask, cpu_possible_map))
+               return -EINVAL;
+
+       if (isadd == REGISTER) {
+               for_each_cpu_mask(cpu, mask) {
+                       s = kmalloc_node(sizeof(struct listener), GFP_KERNEL,
+                                        cpu_to_node(cpu));
+                       if (!s)
+                               goto cleanup;
+                       s->pid = pid;
+                       INIT_LIST_HEAD(&s->list);
+                       s->valid = 1;
+
+                       listeners = &per_cpu(listener_array, cpu);
+                       down_write(&listeners->sem);
+                       list_add(&s->list, &listeners->list);
+                       up_write(&listeners->sem);
+               }
+               return 0;
+       }
+
+       /* Deregister or cleanup */
+cleanup:
+       for_each_cpu_mask(cpu, mask) {
+               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);
+       }
+       return 0;
+}
+
+static int parse(struct nlattr *na, cpumask_t *mask)
+{
+       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);
+       ret = cpulist_parse(data, *mask);
+       kfree(data);
+       return ret;
 }
 
-static int taskstats_send_stats(struct sk_buff *skb, struct genl_info *info)
+static int taskstats_user_cmd(struct sk_buff *skb, struct genl_info *info)
 {
        int rc = 0;
        struct sk_buff *rep_skb;
@@ -171,6 +364,19 @@ static int taskstats_send_stats(struct sk_buff *skb, struct genl_info *info)
        void *reply;
        size_t size;
        struct nlattr *na;
+       cpumask_t mask;
+
+       rc = parse(info->attrs[TASKSTATS_CMD_ATTR_REGISTER_CPUMASK], &mask);
+       if (rc < 0)
+               return rc;
+       if (rc == 0)
+               return add_del_listener(info->snd_pid, &mask, REGISTER);
+
+       rc = parse(info->attrs[TASKSTATS_CMD_ATTR_DEREGISTER_CPUMASK], &mask);
+       if (rc < 0)
+               return rc;
+       if (rc == 0)
+               return add_del_listener(info->snd_pid, &mask, DEREGISTER);
 
        /*
         * Size includes space for nested attributes
@@ -210,7 +416,7 @@ static int taskstats_send_stats(struct sk_buff *skb, struct genl_info *info)
 
        nla_nest_end(rep_skb, na);
 
-       return send_reply(rep_skb, info->snd_pid, TASKSTATS_MSG_UNICAST);
+       return send_reply(rep_skb, info->snd_pid);
 
 nla_put_failure:
        return genlmsg_cancel(rep_skb, reply);
@@ -219,9 +425,35 @@ err:
        return rc;
 }
 
+void taskstats_exit_alloc(struct taskstats **ptidstats, unsigned int *mycpu)
+{
+       struct listener_list *listeners;
+       struct taskstats *tmp;
+       /*
+        * This is the cpu on which the task is exiting currently and will
+        * be the one for which the exit event is sent, even if the cpu
+        * on which this function is running changes later.
+        */
+       *mycpu = raw_smp_processor_id();
+
+       *ptidstats = NULL;
+       tmp = kmem_cache_zalloc(taskstats_cache, SLAB_KERNEL);
+       if (!tmp)
+               return;
+
+       listeners = &per_cpu(listener_array, *mycpu);
+       down_read(&listeners->sem);
+       if (!list_empty(&listeners->list)) {
+               *ptidstats = tmp;
+               tmp = NULL;
+       }
+       up_read(&listeners->sem);
+       kfree(tmp);
+}
+
 /* Send pid data out on exit */
 void taskstats_exit_send(struct task_struct *tsk, struct taskstats *tidstats,
-                       struct taskstats *tgidstats)
+                       int group_dead, unsigned int mycpu)
 {
        int rc;
        struct sk_buff *rep_skb;
@@ -229,15 +461,16 @@ void taskstats_exit_send(struct task_struct *tsk, struct taskstats *tidstats,
        size_t size;
        int is_thread_group;
        struct nlattr *na;
+       unsigned long flags;
 
        if (!family_registered || !tidstats)
                return;
 
-       mutex_lock(&taskstats_exit_mutex);
+       spin_lock_irqsave(&tsk->signal->stats_lock, flags);
+       is_thread_group = tsk->signal->stats ? 1 : 0;
+       spin_unlock_irqrestore(&tsk->signal->stats_lock, flags);
 
-       is_thread_group = !thread_group_empty(tsk);
        rc = 0;
-
        /*
         * Size includes space for nested attributes
         */
@@ -261,30 +494,28 @@ void taskstats_exit_send(struct task_struct *tsk, struct taskstats *tidstats,
                        *tidstats);
        nla_nest_end(rep_skb, na);
 
-       if (!is_thread_group || !tgidstats) {
-               send_reply(rep_skb, 0, TASKSTATS_MSG_MULTICAST);
-               goto ret;
-       }
+       if (!is_thread_group)
+               goto send;
 
-       rc = fill_tgid(tsk->pid, tsk, tgidstats);
        /*
-        * If fill_tgid() failed then one probable reason could be that the
-        * thread group leader has exited. fill_tgid() will fail, send out
-        * the pid statistics collected earlier.
+        * tsk has/had a thread group so fill the tsk->signal->stats structure
+        * Doesn't matter if tsk is the leader or the last group member leaving
         */
-       if (rc < 0) {
-               send_reply(rep_skb, 0, TASKSTATS_MSG_MULTICAST);
-               goto ret;
-       }
+
+       fill_tgid_exit(tsk);
+       if (!group_dead)
+               goto send;
 
        na = nla_nest_start(rep_skb, TASKSTATS_TYPE_AGGR_TGID);
        NLA_PUT_U32(rep_skb, TASKSTATS_TYPE_TGID, (u32)tsk->tgid);
+       /* No locking needed for tsk->signal->stats since group is dead */
        NLA_PUT_TYPE(rep_skb, struct taskstats, TASKSTATS_TYPE_STATS,
-                       *tgidstats);
+                       *tsk->signal->stats);
        nla_nest_end(rep_skb, na);
 
-       send_reply(rep_skb, 0, TASKSTATS_MSG_MULTICAST);
-       goto ret;
+send:
+       send_cpu_listeners(rep_skb, mycpu);
+       return;
 
 nla_put_failure:
        genlmsg_cancel(rep_skb, reply);
@@ -292,22 +523,27 @@ nla_put_failure:
 err_skb:
        nlmsg_free(rep_skb);
 ret:
-       mutex_unlock(&taskstats_exit_mutex);
        return;
 }
 
 static struct genl_ops taskstats_ops = {
        .cmd            = TASKSTATS_CMD_GET,
-       .doit           = taskstats_send_stats,
+       .doit           = taskstats_user_cmd,
        .policy         = taskstats_cmd_get_policy,
 };
 
 /* Needed early in initialization */
 void __init taskstats_init_early(void)
 {
+       unsigned int i;
+
        taskstats_cache = kmem_cache_create("taskstats_cache",
                                                sizeof(struct taskstats),
                                                0, SLAB_PANIC, NULL, NULL);
+       for_each_possible_cpu(i) {
+               INIT_LIST_HEAD(&(per_cpu(listener_array, i).list));
+               init_rwsem(&(per_cpu(listener_array, i).sem));
+       }
 }
 
 static int __init taskstats_init(void)