[PATCH] taskstats: kill ->taskstats_lock in favor of ->siglock
[safe/jmp/linux-2.6] / kernel / taskstats.c
1 /*
2  * taskstats.c - Export per-task statistics to userland
3  *
4  * Copyright (C) Shailabh Nagar, IBM Corp. 2006
5  *           (C) Balbir Singh,   IBM Corp. 2006
6  *
7  * This program is free software; you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License as published by
9  * the Free Software Foundation; either version 2 of the License, or
10  * (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU General Public License for more details.
16  *
17  */
18
19 #include <linux/kernel.h>
20 #include <linux/taskstats_kern.h>
21 #include <linux/tsacct_kern.h>
22 #include <linux/delayacct.h>
23 #include <linux/tsacct_kern.h>
24 #include <linux/cpumask.h>
25 #include <linux/percpu.h>
26 #include <net/genetlink.h>
27 #include <asm/atomic.h>
28
29 /*
30  * Maximum length of a cpumask that can be specified in
31  * the TASKSTATS_CMD_ATTR_REGISTER/DEREGISTER_CPUMASK attribute
32  */
33 #define TASKSTATS_CPUMASK_MAXLEN        (100+6*NR_CPUS)
34
35 static DEFINE_PER_CPU(__u32, taskstats_seqnum) = { 0 };
36 static int family_registered;
37 kmem_cache_t *taskstats_cache;
38
39 static struct genl_family family = {
40         .id             = GENL_ID_GENERATE,
41         .name           = TASKSTATS_GENL_NAME,
42         .version        = TASKSTATS_GENL_VERSION,
43         .maxattr        = TASKSTATS_CMD_ATTR_MAX,
44 };
45
46 static struct nla_policy taskstats_cmd_get_policy[TASKSTATS_CMD_ATTR_MAX+1]
47 __read_mostly = {
48         [TASKSTATS_CMD_ATTR_PID]  = { .type = NLA_U32 },
49         [TASKSTATS_CMD_ATTR_TGID] = { .type = NLA_U32 },
50         [TASKSTATS_CMD_ATTR_REGISTER_CPUMASK] = { .type = NLA_STRING },
51         [TASKSTATS_CMD_ATTR_DEREGISTER_CPUMASK] = { .type = NLA_STRING },};
52
53 struct listener {
54         struct list_head list;
55         pid_t pid;
56         char valid;
57 };
58
59 struct listener_list {
60         struct rw_semaphore sem;
61         struct list_head list;
62 };
63 static DEFINE_PER_CPU(struct listener_list, listener_array);
64
65 enum actions {
66         REGISTER,
67         DEREGISTER,
68         CPU_DONT_CARE
69 };
70
71 static int prepare_reply(struct genl_info *info, u8 cmd, struct sk_buff **skbp,
72                         void **replyp, size_t size)
73 {
74         struct sk_buff *skb;
75         void *reply;
76
77         /*
78          * If new attributes are added, please revisit this allocation
79          */
80         skb = nlmsg_new(genlmsg_total_size(size), GFP_KERNEL);
81         if (!skb)
82                 return -ENOMEM;
83
84         if (!info) {
85                 int seq = get_cpu_var(taskstats_seqnum)++;
86                 put_cpu_var(taskstats_seqnum);
87
88                 reply = genlmsg_put(skb, 0, seq,
89                                 family.id, 0, 0,
90                                 cmd, family.version);
91         } else
92                 reply = genlmsg_put(skb, info->snd_pid, info->snd_seq,
93                                 family.id, 0, 0,
94                                 cmd, family.version);
95         if (reply == NULL) {
96                 nlmsg_free(skb);
97                 return -EINVAL;
98         }
99
100         *skbp = skb;
101         *replyp = reply;
102         return 0;
103 }
104
105 /*
106  * Send taskstats data in @skb to listener with nl_pid @pid
107  */
108 static int send_reply(struct sk_buff *skb, pid_t pid)
109 {
110         struct genlmsghdr *genlhdr = nlmsg_data((struct nlmsghdr *)skb->data);
111         void *reply = genlmsg_data(genlhdr);
112         int rc;
113
114         rc = genlmsg_end(skb, reply);
115         if (rc < 0) {
116                 nlmsg_free(skb);
117                 return rc;
118         }
119
120         return genlmsg_unicast(skb, pid);
121 }
122
123 /*
124  * Send taskstats data in @skb to listeners registered for @cpu's exit data
125  */
126 static void send_cpu_listeners(struct sk_buff *skb, unsigned int cpu)
127 {
128         struct genlmsghdr *genlhdr = nlmsg_data((struct nlmsghdr *)skb->data);
129         struct listener_list *listeners;
130         struct listener *s, *tmp;
131         struct sk_buff *skb_next, *skb_cur = skb;
132         void *reply = genlmsg_data(genlhdr);
133         int rc, delcount = 0;
134
135         rc = genlmsg_end(skb, reply);
136         if (rc < 0) {
137                 nlmsg_free(skb);
138                 return;
139         }
140
141         rc = 0;
142         listeners = &per_cpu(listener_array, cpu);
143         down_read(&listeners->sem);
144         list_for_each_entry(s, &listeners->list, list) {
145                 skb_next = NULL;
146                 if (!list_is_last(&s->list, &listeners->list)) {
147                         skb_next = skb_clone(skb_cur, GFP_KERNEL);
148                         if (!skb_next)
149                                 break;
150                 }
151                 rc = genlmsg_unicast(skb_cur, s->pid);
152                 if (rc == -ECONNREFUSED) {
153                         s->valid = 0;
154                         delcount++;
155                 }
156                 skb_cur = skb_next;
157         }
158         up_read(&listeners->sem);
159
160         if (skb_cur)
161                 nlmsg_free(skb_cur);
162
163         if (!delcount)
164                 return;
165
166         /* Delete invalidated entries */
167         down_write(&listeners->sem);
168         list_for_each_entry_safe(s, tmp, &listeners->list, list) {
169                 if (!s->valid) {
170                         list_del(&s->list);
171                         kfree(s);
172                 }
173         }
174         up_write(&listeners->sem);
175 }
176
177 static int fill_pid(pid_t pid, struct task_struct *pidtsk,
178                 struct taskstats *stats)
179 {
180         int rc = 0;
181         struct task_struct *tsk = pidtsk;
182
183         if (!pidtsk) {
184                 read_lock(&tasklist_lock);
185                 tsk = find_task_by_pid(pid);
186                 if (!tsk) {
187                         read_unlock(&tasklist_lock);
188                         return -ESRCH;
189                 }
190                 get_task_struct(tsk);
191                 read_unlock(&tasklist_lock);
192         } else
193                 get_task_struct(tsk);
194
195         /*
196          * Each accounting subsystem adds calls to its functions to
197          * fill in relevant parts of struct taskstsats as follows
198          *
199          *      per-task-foo(stats, tsk);
200          */
201
202         delayacct_add_tsk(stats, tsk);
203
204         /* fill in basic acct fields */
205         stats->version = TASKSTATS_VERSION;
206         bacct_add_tsk(stats, tsk);
207
208         /* fill in extended acct fields */
209         xacct_add_tsk(stats, tsk);
210
211         /* Define err: label here if needed */
212         put_task_struct(tsk);
213         return rc;
214
215 }
216
217 static int fill_tgid(pid_t tgid, struct task_struct *tgidtsk,
218                 struct taskstats *stats)
219 {
220         struct task_struct *tsk, *first;
221         unsigned long flags;
222
223         /*
224          * Add additional stats from live tasks except zombie thread group
225          * leaders who are already counted with the dead tasks
226          */
227         first = tgidtsk;
228         if (!first) {
229                 read_lock(&tasklist_lock);
230                 first = find_task_by_pid(tgid);
231                 if (!first) {
232                         read_unlock(&tasklist_lock);
233                         return -ESRCH;
234                 }
235                 get_task_struct(first);
236                 read_unlock(&tasklist_lock);
237         } else
238                 get_task_struct(first);
239
240
241         tsk = first;
242         read_lock(&tasklist_lock);
243         /* Start with stats from dead tasks */
244         if (first->sighand) {
245                 spin_lock_irqsave(&first->sighand->siglock, flags);
246                 if (first->signal->stats)
247                         memcpy(stats, first->signal->stats, sizeof(*stats));
248                 spin_unlock_irqrestore(&first->sighand->siglock, flags);
249         }
250
251         do {
252                 if (tsk->exit_state == EXIT_ZOMBIE && thread_group_leader(tsk))
253                         continue;
254                 /*
255                  * Accounting subsystem can call its functions here to
256                  * fill in relevant parts of struct taskstsats as follows
257                  *
258                  *      per-task-foo(stats, tsk);
259                  */
260                 delayacct_add_tsk(stats, tsk);
261
262         } while_each_thread(first, tsk);
263         read_unlock(&tasklist_lock);
264         stats->version = TASKSTATS_VERSION;
265
266         /*
267          * Accounting subsytems can also add calls here to modify
268          * fields of taskstats.
269          */
270         put_task_struct(first);
271         return 0;
272 }
273
274
275 static void fill_tgid_exit(struct task_struct *tsk)
276 {
277         unsigned long flags;
278
279         spin_lock_irqsave(&tsk->sighand->siglock, flags);
280         if (!tsk->signal->stats)
281                 goto ret;
282
283         /*
284          * Each accounting subsystem calls its functions here to
285          * accumalate its per-task stats for tsk, into the per-tgid structure
286          *
287          *      per-task-foo(tsk->signal->stats, tsk);
288          */
289         delayacct_add_tsk(tsk->signal->stats, tsk);
290 ret:
291         spin_unlock_irqrestore(&tsk->sighand->siglock, flags);
292         return;
293 }
294
295 static int add_del_listener(pid_t pid, cpumask_t *maskp, int isadd)
296 {
297         struct listener_list *listeners;
298         struct listener *s, *tmp;
299         unsigned int cpu;
300         cpumask_t mask = *maskp;
301
302         if (!cpus_subset(mask, cpu_possible_map))
303                 return -EINVAL;
304
305         if (isadd == REGISTER) {
306                 for_each_cpu_mask(cpu, mask) {
307                         s = kmalloc_node(sizeof(struct listener), GFP_KERNEL,
308                                          cpu_to_node(cpu));
309                         if (!s)
310                                 goto cleanup;
311                         s->pid = pid;
312                         INIT_LIST_HEAD(&s->list);
313                         s->valid = 1;
314
315                         listeners = &per_cpu(listener_array, cpu);
316                         down_write(&listeners->sem);
317                         list_add(&s->list, &listeners->list);
318                         up_write(&listeners->sem);
319                 }
320                 return 0;
321         }
322
323         /* Deregister or cleanup */
324 cleanup:
325         for_each_cpu_mask(cpu, mask) {
326                 listeners = &per_cpu(listener_array, cpu);
327                 down_write(&listeners->sem);
328                 list_for_each_entry_safe(s, tmp, &listeners->list, list) {
329                         if (s->pid == pid) {
330                                 list_del(&s->list);
331                                 kfree(s);
332                                 break;
333                         }
334                 }
335                 up_write(&listeners->sem);
336         }
337         return 0;
338 }
339
340 static int parse(struct nlattr *na, cpumask_t *mask)
341 {
342         char *data;
343         int len;
344         int ret;
345
346         if (na == NULL)
347                 return 1;
348         len = nla_len(na);
349         if (len > TASKSTATS_CPUMASK_MAXLEN)
350                 return -E2BIG;
351         if (len < 1)
352                 return -EINVAL;
353         data = kmalloc(len, GFP_KERNEL);
354         if (!data)
355                 return -ENOMEM;
356         nla_strlcpy(data, na, len);
357         ret = cpulist_parse(data, *mask);
358         kfree(data);
359         return ret;
360 }
361
362 static int taskstats_user_cmd(struct sk_buff *skb, struct genl_info *info)
363 {
364         int rc = 0;
365         struct sk_buff *rep_skb;
366         struct taskstats stats;
367         void *reply;
368         size_t size;
369         struct nlattr *na;
370         cpumask_t mask;
371
372         rc = parse(info->attrs[TASKSTATS_CMD_ATTR_REGISTER_CPUMASK], &mask);
373         if (rc < 0)
374                 return rc;
375         if (rc == 0)
376                 return add_del_listener(info->snd_pid, &mask, REGISTER);
377
378         rc = parse(info->attrs[TASKSTATS_CMD_ATTR_DEREGISTER_CPUMASK], &mask);
379         if (rc < 0)
380                 return rc;
381         if (rc == 0)
382                 return add_del_listener(info->snd_pid, &mask, DEREGISTER);
383
384         /*
385          * Size includes space for nested attributes
386          */
387         size = nla_total_size(sizeof(u32)) +
388                 nla_total_size(sizeof(struct taskstats)) + nla_total_size(0);
389
390         memset(&stats, 0, sizeof(stats));
391         rc = prepare_reply(info, TASKSTATS_CMD_NEW, &rep_skb, &reply, size);
392         if (rc < 0)
393                 return rc;
394
395         if (info->attrs[TASKSTATS_CMD_ATTR_PID]) {
396                 u32 pid = nla_get_u32(info->attrs[TASKSTATS_CMD_ATTR_PID]);
397                 rc = fill_pid(pid, NULL, &stats);
398                 if (rc < 0)
399                         goto err;
400
401                 na = nla_nest_start(rep_skb, TASKSTATS_TYPE_AGGR_PID);
402                 NLA_PUT_U32(rep_skb, TASKSTATS_TYPE_PID, pid);
403                 NLA_PUT_TYPE(rep_skb, struct taskstats, TASKSTATS_TYPE_STATS,
404                                 stats);
405         } else if (info->attrs[TASKSTATS_CMD_ATTR_TGID]) {
406                 u32 tgid = nla_get_u32(info->attrs[TASKSTATS_CMD_ATTR_TGID]);
407                 rc = fill_tgid(tgid, NULL, &stats);
408                 if (rc < 0)
409                         goto err;
410
411                 na = nla_nest_start(rep_skb, TASKSTATS_TYPE_AGGR_TGID);
412                 NLA_PUT_U32(rep_skb, TASKSTATS_TYPE_TGID, tgid);
413                 NLA_PUT_TYPE(rep_skb, struct taskstats, TASKSTATS_TYPE_STATS,
414                                 stats);
415         } else {
416                 rc = -EINVAL;
417                 goto err;
418         }
419
420         nla_nest_end(rep_skb, na);
421
422         return send_reply(rep_skb, info->snd_pid);
423
424 nla_put_failure:
425         return genlmsg_cancel(rep_skb, reply);
426 err:
427         nlmsg_free(rep_skb);
428         return rc;
429 }
430
431 void taskstats_exit_alloc(struct taskstats **ptidstats, unsigned int *mycpu)
432 {
433         struct listener_list *listeners;
434         struct taskstats *tmp;
435         /*
436          * This is the cpu on which the task is exiting currently and will
437          * be the one for which the exit event is sent, even if the cpu
438          * on which this function is running changes later.
439          */
440         *mycpu = raw_smp_processor_id();
441
442         *ptidstats = NULL;
443         tmp = kmem_cache_zalloc(taskstats_cache, SLAB_KERNEL);
444         if (!tmp)
445                 return;
446
447         listeners = &per_cpu(listener_array, *mycpu);
448         down_read(&listeners->sem);
449         if (!list_empty(&listeners->list)) {
450                 *ptidstats = tmp;
451                 tmp = NULL;
452         }
453         up_read(&listeners->sem);
454         kfree(tmp);
455 }
456
457 /* Send pid data out on exit */
458 void taskstats_exit_send(struct task_struct *tsk, struct taskstats *tidstats,
459                         int group_dead, unsigned int mycpu)
460 {
461         int rc;
462         struct sk_buff *rep_skb;
463         void *reply;
464         size_t size;
465         int is_thread_group;
466         struct nlattr *na;
467
468         if (!family_registered || !tidstats)
469                 return;
470
471         rc = 0;
472         /*
473          * Size includes space for nested attributes
474          */
475         size = nla_total_size(sizeof(u32)) +
476                 nla_total_size(sizeof(struct taskstats)) + nla_total_size(0);
477
478         is_thread_group = (tsk->signal->stats != NULL);
479         if (is_thread_group)
480                 size = 2 * size;        /* PID + STATS + TGID + STATS */
481
482         rc = prepare_reply(NULL, TASKSTATS_CMD_NEW, &rep_skb, &reply, size);
483         if (rc < 0)
484                 goto ret;
485
486         rc = fill_pid(tsk->pid, tsk, tidstats);
487         if (rc < 0)
488                 goto err_skb;
489
490         na = nla_nest_start(rep_skb, TASKSTATS_TYPE_AGGR_PID);
491         NLA_PUT_U32(rep_skb, TASKSTATS_TYPE_PID, (u32)tsk->pid);
492         NLA_PUT_TYPE(rep_skb, struct taskstats, TASKSTATS_TYPE_STATS,
493                         *tidstats);
494         nla_nest_end(rep_skb, na);
495
496         if (!is_thread_group)
497                 goto send;
498
499         /*
500          * tsk has/had a thread group so fill the tsk->signal->stats structure
501          * Doesn't matter if tsk is the leader or the last group member leaving
502          */
503
504         fill_tgid_exit(tsk);
505         if (!group_dead)
506                 goto send;
507
508         na = nla_nest_start(rep_skb, TASKSTATS_TYPE_AGGR_TGID);
509         NLA_PUT_U32(rep_skb, TASKSTATS_TYPE_TGID, (u32)tsk->tgid);
510         /* No locking needed for tsk->signal->stats since group is dead */
511         NLA_PUT_TYPE(rep_skb, struct taskstats, TASKSTATS_TYPE_STATS,
512                         *tsk->signal->stats);
513         nla_nest_end(rep_skb, na);
514
515 send:
516         send_cpu_listeners(rep_skb, mycpu);
517         return;
518
519 nla_put_failure:
520         genlmsg_cancel(rep_skb, reply);
521         goto ret;
522 err_skb:
523         nlmsg_free(rep_skb);
524 ret:
525         return;
526 }
527
528 static struct genl_ops taskstats_ops = {
529         .cmd            = TASKSTATS_CMD_GET,
530         .doit           = taskstats_user_cmd,
531         .policy         = taskstats_cmd_get_policy,
532 };
533
534 /* Needed early in initialization */
535 void __init taskstats_init_early(void)
536 {
537         unsigned int i;
538
539         taskstats_cache = kmem_cache_create("taskstats_cache",
540                                                 sizeof(struct taskstats),
541                                                 0, SLAB_PANIC, NULL, NULL);
542         for_each_possible_cpu(i) {
543                 INIT_LIST_HEAD(&(per_cpu(listener_array, i).list));
544                 init_rwsem(&(per_cpu(listener_array, i).sem));
545         }
546 }
547
548 static int __init taskstats_init(void)
549 {
550         int rc;
551
552         rc = genl_register_family(&family);
553         if (rc)
554                 return rc;
555
556         rc = genl_register_ops(&family, &taskstats_ops);
557         if (rc < 0)
558                 goto err;
559
560         family_registered = 1;
561         return 0;
562 err:
563         genl_unregister_family(&family);
564         return rc;
565 }
566
567 /*
568  * late initcall ensures initialization of statistics collection
569  * mechanisms precedes initialization of the taskstats interface
570  */
571 late_initcall(taskstats_init);