]>
Commit | Line | Data |
---|---|---|
c757249a SN |
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> | |
f3cef7a9 | 21 | #include <linux/tsacct_kern.h> |
6f44993f | 22 | #include <linux/delayacct.h> |
f9fd8914 SN |
23 | #include <linux/cpumask.h> |
24 | #include <linux/percpu.h> | |
5a0e3ad6 | 25 | #include <linux/slab.h> |
846c7bb0 BS |
26 | #include <linux/cgroupstats.h> |
27 | #include <linux/cgroup.h> | |
28 | #include <linux/fs.h> | |
29 | #include <linux/file.h> | |
c757249a | 30 | #include <net/genetlink.h> |
60063497 | 31 | #include <linux/atomic.h> |
c757249a | 32 | |
f9fd8914 SN |
33 | /* |
34 | * Maximum length of a cpumask that can be specified in | |
35 | * the TASKSTATS_CMD_ATTR_REGISTER/DEREGISTER_CPUMASK attribute | |
36 | */ | |
37 | #define TASKSTATS_CPUMASK_MAXLEN (100+6*NR_CPUS) | |
38 | ||
b81f3ea9 | 39 | static DEFINE_PER_CPU(__u32, taskstats_seqnum); |
c757249a | 40 | static int family_registered; |
e18b890b | 41 | struct kmem_cache *taskstats_cache; |
c757249a SN |
42 | |
43 | static struct genl_family family = { | |
44 | .id = GENL_ID_GENERATE, | |
45 | .name = TASKSTATS_GENL_NAME, | |
46 | .version = TASKSTATS_GENL_VERSION, | |
47 | .maxattr = TASKSTATS_CMD_ATTR_MAX, | |
48 | }; | |
49 | ||
b54452b0 | 50 | static const struct nla_policy taskstats_cmd_get_policy[TASKSTATS_CMD_ATTR_MAX+1] = { |
c757249a SN |
51 | [TASKSTATS_CMD_ATTR_PID] = { .type = NLA_U32 }, |
52 | [TASKSTATS_CMD_ATTR_TGID] = { .type = NLA_U32 }, | |
f9fd8914 SN |
53 | [TASKSTATS_CMD_ATTR_REGISTER_CPUMASK] = { .type = NLA_STRING }, |
54 | [TASKSTATS_CMD_ATTR_DEREGISTER_CPUMASK] = { .type = NLA_STRING },}; | |
55 | ||
b54452b0 | 56 | static const struct nla_policy cgroupstats_cmd_get_policy[CGROUPSTATS_CMD_ATTR_MAX+1] = { |
846c7bb0 BS |
57 | [CGROUPSTATS_CMD_ATTR_FD] = { .type = NLA_U32 }, |
58 | }; | |
59 | ||
f9fd8914 SN |
60 | struct listener { |
61 | struct list_head list; | |
62 | pid_t pid; | |
bb129994 | 63 | char valid; |
c757249a SN |
64 | }; |
65 | ||
f9fd8914 SN |
66 | struct listener_list { |
67 | struct rw_semaphore sem; | |
68 | struct list_head list; | |
69 | }; | |
70 | static DEFINE_PER_CPU(struct listener_list, listener_array); | |
71 | ||
72 | enum actions { | |
73 | REGISTER, | |
74 | DEREGISTER, | |
75 | CPU_DONT_CARE | |
76 | }; | |
c757249a SN |
77 | |
78 | static int prepare_reply(struct genl_info *info, u8 cmd, struct sk_buff **skbp, | |
37167485 | 79 | size_t size) |
c757249a SN |
80 | { |
81 | struct sk_buff *skb; | |
82 | void *reply; | |
83 | ||
84 | /* | |
85 | * If new attributes are added, please revisit this allocation | |
86 | */ | |
3dabc715 | 87 | skb = genlmsg_new(size, GFP_KERNEL); |
c757249a SN |
88 | if (!skb) |
89 | return -ENOMEM; | |
90 | ||
91 | if (!info) { | |
cd85fc58 | 92 | int seq = this_cpu_inc_return(taskstats_seqnum) - 1; |
c757249a | 93 | |
17c157c8 | 94 | reply = genlmsg_put(skb, 0, seq, &family, 0, cmd); |
c757249a | 95 | } else |
17c157c8 | 96 | reply = genlmsg_put_reply(skb, info, &family, 0, cmd); |
c757249a SN |
97 | if (reply == NULL) { |
98 | nlmsg_free(skb); | |
99 | return -EINVAL; | |
100 | } | |
101 | ||
102 | *skbp = skb; | |
c757249a SN |
103 | return 0; |
104 | } | |
105 | ||
f9fd8914 SN |
106 | /* |
107 | * Send taskstats data in @skb to listener with nl_pid @pid | |
108 | */ | |
134e6375 | 109 | static int send_reply(struct sk_buff *skb, struct genl_info *info) |
c757249a | 110 | { |
b529ccf2 | 111 | struct genlmsghdr *genlhdr = nlmsg_data(nlmsg_hdr(skb)); |
f9fd8914 | 112 | void *reply = genlmsg_data(genlhdr); |
c757249a SN |
113 | int rc; |
114 | ||
c757249a SN |
115 | rc = genlmsg_end(skb, reply); |
116 | if (rc < 0) { | |
117 | nlmsg_free(skb); | |
118 | return rc; | |
119 | } | |
120 | ||
134e6375 | 121 | return genlmsg_reply(skb, info); |
c757249a SN |
122 | } |
123 | ||
f9fd8914 SN |
124 | /* |
125 | * Send taskstats data in @skb to listeners registered for @cpu's exit data | |
126 | */ | |
115085ea ON |
127 | static void send_cpu_listeners(struct sk_buff *skb, |
128 | struct listener_list *listeners) | |
f9fd8914 | 129 | { |
b529ccf2 | 130 | struct genlmsghdr *genlhdr = nlmsg_data(nlmsg_hdr(skb)); |
f9fd8914 SN |
131 | struct listener *s, *tmp; |
132 | struct sk_buff *skb_next, *skb_cur = skb; | |
133 | void *reply = genlmsg_data(genlhdr); | |
d94a0415 | 134 | int rc, delcount = 0; |
f9fd8914 SN |
135 | |
136 | rc = genlmsg_end(skb, reply); | |
137 | if (rc < 0) { | |
138 | nlmsg_free(skb); | |
d94a0415 | 139 | return; |
f9fd8914 SN |
140 | } |
141 | ||
142 | rc = 0; | |
bb129994 | 143 | down_read(&listeners->sem); |
d94a0415 | 144 | list_for_each_entry(s, &listeners->list, list) { |
f9fd8914 SN |
145 | skb_next = NULL; |
146 | if (!list_is_last(&s->list, &listeners->list)) { | |
147 | skb_next = skb_clone(skb_cur, GFP_KERNEL); | |
d94a0415 | 148 | if (!skb_next) |
f9fd8914 | 149 | break; |
f9fd8914 | 150 | } |
134e6375 | 151 | rc = genlmsg_unicast(&init_net, skb_cur, s->pid); |
d94a0415 | 152 | if (rc == -ECONNREFUSED) { |
bb129994 SN |
153 | s->valid = 0; |
154 | delcount++; | |
f9fd8914 SN |
155 | } |
156 | skb_cur = skb_next; | |
157 | } | |
bb129994 | 158 | up_read(&listeners->sem); |
f9fd8914 | 159 | |
d94a0415 SN |
160 | if (skb_cur) |
161 | nlmsg_free(skb_cur); | |
162 | ||
bb129994 | 163 | if (!delcount) |
d94a0415 | 164 | return; |
bb129994 SN |
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); | |
f9fd8914 SN |
175 | } |
176 | ||
3d9e0cf1 | 177 | static void fill_stats(struct task_struct *tsk, struct taskstats *stats) |
c757249a | 178 | { |
51de4d90 | 179 | memset(stats, 0, sizeof(*stats)); |
c757249a SN |
180 | /* |
181 | * Each accounting subsystem adds calls to its functions to | |
182 | * fill in relevant parts of struct taskstsats as follows | |
183 | * | |
7d94dddd | 184 | * per-task-foo(stats, tsk); |
c757249a SN |
185 | */ |
186 | ||
7d94dddd | 187 | delayacct_add_tsk(stats, tsk); |
f3cef7a9 JL |
188 | |
189 | /* fill in basic acct fields */ | |
6f44993f | 190 | stats->version = TASKSTATS_VERSION; |
b663a79c MU |
191 | stats->nvcsw = tsk->nvcsw; |
192 | stats->nivcsw = tsk->nivcsw; | |
f3cef7a9 | 193 | bacct_add_tsk(stats, tsk); |
6f44993f | 194 | |
9acc1853 JL |
195 | /* fill in extended acct fields */ |
196 | xacct_add_tsk(stats, tsk); | |
3d9e0cf1 | 197 | } |
9acc1853 | 198 | |
3d9e0cf1 MH |
199 | static int fill_stats_for_pid(pid_t pid, struct taskstats *stats) |
200 | { | |
201 | struct task_struct *tsk; | |
c757249a | 202 | |
3d9e0cf1 MH |
203 | rcu_read_lock(); |
204 | tsk = find_task_by_vpid(pid); | |
205 | if (tsk) | |
206 | get_task_struct(tsk); | |
207 | rcu_read_unlock(); | |
208 | if (!tsk) | |
209 | return -ESRCH; | |
210 | fill_stats(tsk, stats); | |
211 | put_task_struct(tsk); | |
212 | return 0; | |
c757249a SN |
213 | } |
214 | ||
3d9e0cf1 | 215 | static int fill_stats_for_tgid(pid_t tgid, struct taskstats *stats) |
c757249a | 216 | { |
3d9e0cf1 | 217 | struct task_struct *tsk, *first; |
ad4ecbcb | 218 | unsigned long flags; |
a98b6094 | 219 | int rc = -ESRCH; |
c757249a | 220 | |
ad4ecbcb SN |
221 | /* |
222 | * Add additional stats from live tasks except zombie thread group | |
223 | * leaders who are already counted with the dead tasks | |
224 | */ | |
a98b6094 | 225 | rcu_read_lock(); |
3d9e0cf1 | 226 | first = find_task_by_vpid(tgid); |
ad4ecbcb | 227 | |
a98b6094 ON |
228 | if (!first || !lock_task_sighand(first, &flags)) |
229 | goto out; | |
ad4ecbcb | 230 | |
a98b6094 ON |
231 | if (first->signal->stats) |
232 | memcpy(stats, first->signal->stats, sizeof(*stats)); | |
51de4d90 ON |
233 | else |
234 | memset(stats, 0, sizeof(*stats)); | |
fca178c0 | 235 | |
a98b6094 | 236 | tsk = first; |
c757249a | 237 | do { |
d7c3f5f2 | 238 | if (tsk->exit_state) |
ad4ecbcb | 239 | continue; |
c757249a | 240 | /* |
ad4ecbcb | 241 | * Accounting subsystem can call its functions here to |
c757249a SN |
242 | * fill in relevant parts of struct taskstsats as follows |
243 | * | |
ad4ecbcb | 244 | * per-task-foo(stats, tsk); |
c757249a | 245 | */ |
ad4ecbcb | 246 | delayacct_add_tsk(stats, tsk); |
6f44993f | 247 | |
b663a79c MU |
248 | stats->nvcsw += tsk->nvcsw; |
249 | stats->nivcsw += tsk->nivcsw; | |
c757249a | 250 | } while_each_thread(first, tsk); |
6f44993f | 251 | |
a98b6094 ON |
252 | unlock_task_sighand(first, &flags); |
253 | rc = 0; | |
254 | out: | |
255 | rcu_read_unlock(); | |
256 | ||
257 | stats->version = TASKSTATS_VERSION; | |
c757249a | 258 | /* |
3a4fa0a2 | 259 | * Accounting subsystems can also add calls here to modify |
ad4ecbcb | 260 | * fields of taskstats. |
c757249a | 261 | */ |
a98b6094 | 262 | return rc; |
ad4ecbcb SN |
263 | } |
264 | ||
ad4ecbcb SN |
265 | static void fill_tgid_exit(struct task_struct *tsk) |
266 | { | |
267 | unsigned long flags; | |
268 | ||
b8534d7b | 269 | spin_lock_irqsave(&tsk->sighand->siglock, flags); |
ad4ecbcb SN |
270 | if (!tsk->signal->stats) |
271 | goto ret; | |
272 | ||
273 | /* | |
274 | * Each accounting subsystem calls its functions here to | |
275 | * accumalate its per-task stats for tsk, into the per-tgid structure | |
276 | * | |
277 | * per-task-foo(tsk->signal->stats, tsk); | |
278 | */ | |
279 | delayacct_add_tsk(tsk->signal->stats, tsk); | |
280 | ret: | |
b8534d7b | 281 | spin_unlock_irqrestore(&tsk->sighand->siglock, flags); |
ad4ecbcb | 282 | return; |
c757249a SN |
283 | } |
284 | ||
41c7bb95 | 285 | static int add_del_listener(pid_t pid, const struct cpumask *mask, int isadd) |
f9fd8914 SN |
286 | { |
287 | struct listener_list *listeners; | |
26c4caea | 288 | struct listener *s, *tmp, *s2; |
f9fd8914 | 289 | unsigned int cpu; |
ad4ecbcb | 290 | |
41c7bb95 | 291 | if (!cpumask_subset(mask, cpu_possible_mask)) |
f9fd8914 SN |
292 | return -EINVAL; |
293 | ||
294 | if (isadd == REGISTER) { | |
41c7bb95 | 295 | for_each_cpu(cpu, mask) { |
dfc428b6 ON |
296 | s = kmalloc_node(sizeof(struct listener), |
297 | GFP_KERNEL, cpu_to_node(cpu)); | |
f9fd8914 SN |
298 | if (!s) |
299 | goto cleanup; | |
dfc428b6 | 300 | |
f9fd8914 | 301 | s->pid = pid; |
bb129994 | 302 | s->valid = 1; |
f9fd8914 SN |
303 | |
304 | listeners = &per_cpu(listener_array, cpu); | |
305 | down_write(&listeners->sem); | |
dfc428b6 | 306 | list_for_each_entry(s2, &listeners->list, list) { |
a7295898 | 307 | if (s2->pid == pid && s2->valid) |
dfc428b6 | 308 | goto exists; |
26c4caea | 309 | } |
f9fd8914 | 310 | list_add(&s->list, &listeners->list); |
26c4caea | 311 | s = NULL; |
dfc428b6 | 312 | exists: |
f9fd8914 | 313 | up_write(&listeners->sem); |
dfc428b6 | 314 | kfree(s); /* nop if NULL */ |
f9fd8914 SN |
315 | } |
316 | return 0; | |
317 | } | |
318 | ||
319 | /* Deregister or cleanup */ | |
320 | cleanup: | |
41c7bb95 | 321 | for_each_cpu(cpu, mask) { |
f9fd8914 SN |
322 | listeners = &per_cpu(listener_array, cpu); |
323 | down_write(&listeners->sem); | |
324 | list_for_each_entry_safe(s, tmp, &listeners->list, list) { | |
325 | if (s->pid == pid) { | |
326 | list_del(&s->list); | |
327 | kfree(s); | |
328 | break; | |
329 | } | |
330 | } | |
331 | up_write(&listeners->sem); | |
332 | } | |
333 | return 0; | |
334 | } | |
335 | ||
41c7bb95 | 336 | static int parse(struct nlattr *na, struct cpumask *mask) |
f9fd8914 SN |
337 | { |
338 | char *data; | |
339 | int len; | |
340 | int ret; | |
341 | ||
342 | if (na == NULL) | |
343 | return 1; | |
344 | len = nla_len(na); | |
345 | if (len > TASKSTATS_CPUMASK_MAXLEN) | |
346 | return -E2BIG; | |
347 | if (len < 1) | |
348 | return -EINVAL; | |
349 | data = kmalloc(len, GFP_KERNEL); | |
350 | if (!data) | |
351 | return -ENOMEM; | |
352 | nla_strlcpy(data, na, len); | |
29c0177e | 353 | ret = cpulist_parse(data, mask); |
f9fd8914 SN |
354 | kfree(data); |
355 | return ret; | |
356 | } | |
357 | ||
9ab020cf | 358 | #if defined(CONFIG_64BIT) && !defined(CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS) |
4be2c95d JM |
359 | #define TASKSTATS_NEEDS_PADDING 1 |
360 | #endif | |
361 | ||
51de4d90 | 362 | static struct taskstats *mk_reply(struct sk_buff *skb, int type, u32 pid) |
68062b86 | 363 | { |
51de4d90 | 364 | struct nlattr *na, *ret; |
68062b86 ON |
365 | int aggr; |
366 | ||
37167485 ON |
367 | aggr = (type == TASKSTATS_TYPE_PID) |
368 | ? TASKSTATS_TYPE_AGGR_PID | |
369 | : TASKSTATS_TYPE_AGGR_TGID; | |
68062b86 | 370 | |
4be2c95d JM |
371 | /* |
372 | * The taskstats structure is internally aligned on 8 byte | |
373 | * boundaries but the layout of the aggregrate reply, with | |
374 | * two NLA headers and the pid (each 4 bytes), actually | |
375 | * force the entire structure to be unaligned. This causes | |
376 | * the kernel to issue unaligned access warnings on some | |
377 | * architectures like ia64. Unfortunately, some software out there | |
378 | * doesn't properly unroll the NLA packet and assumes that the start | |
379 | * of the taskstats structure will always be 20 bytes from the start | |
380 | * of the netlink payload. Aligning the start of the taskstats | |
381 | * structure breaks this software, which we don't want. So, for now | |
382 | * the alignment only happens on architectures that require it | |
383 | * and those users will have to update to fixed versions of those | |
384 | * packages. Space is reserved in the packet only when needed. | |
385 | * This ifdef should be removed in several years e.g. 2012 once | |
386 | * we can be confident that fixed versions are installed on most | |
387 | * systems. We add the padding before the aggregate since the | |
388 | * aggregate is already a defined type. | |
389 | */ | |
390 | #ifdef TASKSTATS_NEEDS_PADDING | |
391 | if (nla_put(skb, TASKSTATS_TYPE_NULL, 0, NULL) < 0) | |
392 | goto err; | |
393 | #endif | |
68062b86 | 394 | na = nla_nest_start(skb, aggr); |
37167485 ON |
395 | if (!na) |
396 | goto err; | |
4be2c95d JM |
397 | |
398 | if (nla_put(skb, type, sizeof(pid), &pid) < 0) | |
51de4d90 ON |
399 | goto err; |
400 | ret = nla_reserve(skb, TASKSTATS_TYPE_STATS, sizeof(struct taskstats)); | |
401 | if (!ret) | |
402 | goto err; | |
68062b86 ON |
403 | nla_nest_end(skb, na); |
404 | ||
51de4d90 ON |
405 | return nla_data(ret); |
406 | err: | |
407 | return NULL; | |
68062b86 ON |
408 | } |
409 | ||
846c7bb0 BS |
410 | static int cgroupstats_user_cmd(struct sk_buff *skb, struct genl_info *info) |
411 | { | |
412 | int rc = 0; | |
413 | struct sk_buff *rep_skb; | |
414 | struct cgroupstats *stats; | |
415 | struct nlattr *na; | |
416 | size_t size; | |
417 | u32 fd; | |
418 | struct file *file; | |
419 | int fput_needed; | |
420 | ||
421 | na = info->attrs[CGROUPSTATS_CMD_ATTR_FD]; | |
422 | if (!na) | |
423 | return -EINVAL; | |
424 | ||
425 | fd = nla_get_u32(info->attrs[CGROUPSTATS_CMD_ATTR_FD]); | |
426 | file = fget_light(fd, &fput_needed); | |
f9615984 AB |
427 | if (!file) |
428 | return 0; | |
846c7bb0 | 429 | |
f9615984 | 430 | size = nla_total_size(sizeof(struct cgroupstats)); |
846c7bb0 | 431 | |
f9615984 AB |
432 | rc = prepare_reply(info, CGROUPSTATS_CMD_NEW, &rep_skb, |
433 | size); | |
434 | if (rc < 0) | |
435 | goto err; | |
846c7bb0 | 436 | |
f9615984 AB |
437 | na = nla_reserve(rep_skb, CGROUPSTATS_TYPE_CGROUP_STATS, |
438 | sizeof(struct cgroupstats)); | |
439 | stats = nla_data(na); | |
440 | memset(stats, 0, sizeof(*stats)); | |
846c7bb0 | 441 | |
f9615984 AB |
442 | rc = cgroupstats_build(stats, file->f_dentry); |
443 | if (rc < 0) { | |
444 | nlmsg_free(rep_skb); | |
445 | goto err; | |
846c7bb0 BS |
446 | } |
447 | ||
134e6375 | 448 | rc = send_reply(rep_skb, info); |
f9615984 | 449 | |
846c7bb0 | 450 | err: |
f9615984 | 451 | fput_light(file, fput_needed); |
846c7bb0 BS |
452 | return rc; |
453 | } | |
454 | ||
93233125 | 455 | static int cmd_attr_register_cpumask(struct genl_info *info) |
c757249a | 456 | { |
41c7bb95 | 457 | cpumask_var_t mask; |
93233125 | 458 | int rc; |
41c7bb95 RR |
459 | |
460 | if (!alloc_cpumask_var(&mask, GFP_KERNEL)) | |
461 | return -ENOMEM; | |
41c7bb95 | 462 | rc = parse(info->attrs[TASKSTATS_CMD_ATTR_REGISTER_CPUMASK], mask); |
f9fd8914 | 463 | if (rc < 0) |
93233125 MH |
464 | goto out; |
465 | rc = add_del_listener(info->snd_pid, mask, REGISTER); | |
466 | out: | |
467 | free_cpumask_var(mask); | |
468 | return rc; | |
469 | } | |
470 | ||
471 | static int cmd_attr_deregister_cpumask(struct genl_info *info) | |
472 | { | |
473 | cpumask_var_t mask; | |
474 | int rc; | |
f9fd8914 | 475 | |
93233125 MH |
476 | if (!alloc_cpumask_var(&mask, GFP_KERNEL)) |
477 | return -ENOMEM; | |
41c7bb95 | 478 | rc = parse(info->attrs[TASKSTATS_CMD_ATTR_DEREGISTER_CPUMASK], mask); |
f9fd8914 | 479 | if (rc < 0) |
93233125 MH |
480 | goto out; |
481 | rc = add_del_listener(info->snd_pid, mask, DEREGISTER); | |
482 | out: | |
41c7bb95 | 483 | free_cpumask_var(mask); |
93233125 MH |
484 | return rc; |
485 | } | |
486 | ||
4be2c95d JM |
487 | static size_t taskstats_packet_size(void) |
488 | { | |
489 | size_t size; | |
490 | ||
491 | size = nla_total_size(sizeof(u32)) + | |
492 | nla_total_size(sizeof(struct taskstats)) + nla_total_size(0); | |
493 | #ifdef TASKSTATS_NEEDS_PADDING | |
494 | size += nla_total_size(0); /* Padding for alignment */ | |
495 | #endif | |
496 | return size; | |
497 | } | |
498 | ||
93233125 MH |
499 | static int cmd_attr_pid(struct genl_info *info) |
500 | { | |
501 | struct taskstats *stats; | |
502 | struct sk_buff *rep_skb; | |
503 | size_t size; | |
504 | u32 pid; | |
505 | int rc; | |
c757249a | 506 | |
4be2c95d | 507 | size = taskstats_packet_size(); |
c757249a | 508 | |
37167485 | 509 | rc = prepare_reply(info, TASKSTATS_CMD_NEW, &rep_skb, size); |
c757249a SN |
510 | if (rc < 0) |
511 | return rc; | |
512 | ||
51de4d90 | 513 | rc = -EINVAL; |
93233125 MH |
514 | pid = nla_get_u32(info->attrs[TASKSTATS_CMD_ATTR_PID]); |
515 | stats = mk_reply(rep_skb, TASKSTATS_TYPE_PID, pid); | |
516 | if (!stats) | |
c757249a | 517 | goto err; |
c757249a | 518 | |
3d9e0cf1 | 519 | rc = fill_stats_for_pid(pid, stats); |
93233125 MH |
520 | if (rc < 0) |
521 | goto err; | |
134e6375 | 522 | return send_reply(rep_skb, info); |
c757249a SN |
523 | err: |
524 | nlmsg_free(rep_skb); | |
525 | return rc; | |
526 | } | |
527 | ||
93233125 MH |
528 | static int cmd_attr_tgid(struct genl_info *info) |
529 | { | |
530 | struct taskstats *stats; | |
531 | struct sk_buff *rep_skb; | |
532 | size_t size; | |
533 | u32 tgid; | |
534 | int rc; | |
535 | ||
4be2c95d | 536 | size = taskstats_packet_size(); |
93233125 MH |
537 | |
538 | rc = prepare_reply(info, TASKSTATS_CMD_NEW, &rep_skb, size); | |
539 | if (rc < 0) | |
540 | return rc; | |
541 | ||
542 | rc = -EINVAL; | |
543 | tgid = nla_get_u32(info->attrs[TASKSTATS_CMD_ATTR_TGID]); | |
544 | stats = mk_reply(rep_skb, TASKSTATS_TYPE_TGID, tgid); | |
545 | if (!stats) | |
546 | goto err; | |
547 | ||
3d9e0cf1 | 548 | rc = fill_stats_for_tgid(tgid, stats); |
93233125 MH |
549 | if (rc < 0) |
550 | goto err; | |
551 | return send_reply(rep_skb, info); | |
552 | err: | |
553 | nlmsg_free(rep_skb); | |
554 | return rc; | |
555 | } | |
556 | ||
557 | static int taskstats_user_cmd(struct sk_buff *skb, struct genl_info *info) | |
558 | { | |
559 | if (info->attrs[TASKSTATS_CMD_ATTR_REGISTER_CPUMASK]) | |
560 | return cmd_attr_register_cpumask(info); | |
561 | else if (info->attrs[TASKSTATS_CMD_ATTR_DEREGISTER_CPUMASK]) | |
562 | return cmd_attr_deregister_cpumask(info); | |
563 | else if (info->attrs[TASKSTATS_CMD_ATTR_PID]) | |
564 | return cmd_attr_pid(info); | |
565 | else if (info->attrs[TASKSTATS_CMD_ATTR_TGID]) | |
566 | return cmd_attr_tgid(info); | |
567 | else | |
568 | return -EINVAL; | |
569 | } | |
570 | ||
34ec1234 ON |
571 | static struct taskstats *taskstats_tgid_alloc(struct task_struct *tsk) |
572 | { | |
573 | struct signal_struct *sig = tsk->signal; | |
574 | struct taskstats *stats; | |
575 | ||
576 | if (sig->stats || thread_group_empty(tsk)) | |
577 | goto ret; | |
578 | ||
579 | /* No problem if kmem_cache_zalloc() fails */ | |
580 | stats = kmem_cache_zalloc(taskstats_cache, GFP_KERNEL); | |
581 | ||
582 | spin_lock_irq(&tsk->sighand->siglock); | |
583 | if (!sig->stats) { | |
584 | sig->stats = stats; | |
585 | stats = NULL; | |
586 | } | |
587 | spin_unlock_irq(&tsk->sighand->siglock); | |
588 | ||
589 | if (stats) | |
590 | kmem_cache_free(taskstats_cache, stats); | |
591 | ret: | |
592 | return sig->stats; | |
593 | } | |
594 | ||
c757249a | 595 | /* Send pid data out on exit */ |
115085ea | 596 | void taskstats_exit(struct task_struct *tsk, int group_dead) |
c757249a SN |
597 | { |
598 | int rc; | |
115085ea | 599 | struct listener_list *listeners; |
51de4d90 | 600 | struct taskstats *stats; |
c757249a | 601 | struct sk_buff *rep_skb; |
c757249a SN |
602 | size_t size; |
603 | int is_thread_group; | |
c757249a | 604 | |
4a279ff1 | 605 | if (!family_registered) |
c757249a SN |
606 | return; |
607 | ||
c757249a SN |
608 | /* |
609 | * Size includes space for nested attributes | |
610 | */ | |
4be2c95d | 611 | size = taskstats_packet_size(); |
c757249a | 612 | |
34ec1234 | 613 | is_thread_group = !!taskstats_tgid_alloc(tsk); |
4a279ff1 ON |
614 | if (is_thread_group) { |
615 | /* PID + STATS + TGID + STATS */ | |
616 | size = 2 * size; | |
617 | /* fill the tsk->signal->stats structure */ | |
618 | fill_tgid_exit(tsk); | |
619 | } | |
620 | ||
cd85fc58 | 621 | listeners = __this_cpu_ptr(&listener_array); |
115085ea ON |
622 | if (list_empty(&listeners->list)) |
623 | return; | |
624 | ||
37167485 | 625 | rc = prepare_reply(NULL, TASKSTATS_CMD_NEW, &rep_skb, size); |
c757249a | 626 | if (rc < 0) |
51de4d90 | 627 | return; |
c757249a | 628 | |
51de4d90 ON |
629 | stats = mk_reply(rep_skb, TASKSTATS_TYPE_PID, tsk->pid); |
630 | if (!stats) | |
37167485 | 631 | goto err; |
c757249a | 632 | |
3d9e0cf1 | 633 | fill_stats(tsk, stats); |
c757249a | 634 | |
c757249a | 635 | /* |
ad4ecbcb | 636 | * Doesn't matter if tsk is the leader or the last group member leaving |
c757249a | 637 | */ |
68062b86 | 638 | if (!is_thread_group || !group_dead) |
ad4ecbcb | 639 | goto send; |
c757249a | 640 | |
51de4d90 ON |
641 | stats = mk_reply(rep_skb, TASKSTATS_TYPE_TGID, tsk->tgid); |
642 | if (!stats) | |
37167485 | 643 | goto err; |
51de4d90 ON |
644 | |
645 | memcpy(stats, tsk->signal->stats, sizeof(*stats)); | |
c757249a | 646 | |
ad4ecbcb | 647 | send: |
115085ea | 648 | send_cpu_listeners(rep_skb, listeners); |
ad4ecbcb | 649 | return; |
37167485 | 650 | err: |
c757249a | 651 | nlmsg_free(rep_skb); |
c757249a SN |
652 | } |
653 | ||
654 | static struct genl_ops taskstats_ops = { | |
655 | .cmd = TASKSTATS_CMD_GET, | |
f9fd8914 | 656 | .doit = taskstats_user_cmd, |
c757249a SN |
657 | .policy = taskstats_cmd_get_policy, |
658 | }; | |
659 | ||
846c7bb0 BS |
660 | static struct genl_ops cgroupstats_ops = { |
661 | .cmd = CGROUPSTATS_CMD_GET, | |
662 | .doit = cgroupstats_user_cmd, | |
663 | .policy = cgroupstats_cmd_get_policy, | |
664 | }; | |
665 | ||
c757249a SN |
666 | /* Needed early in initialization */ |
667 | void __init taskstats_init_early(void) | |
668 | { | |
f9fd8914 SN |
669 | unsigned int i; |
670 | ||
0a31bd5f | 671 | taskstats_cache = KMEM_CACHE(taskstats, SLAB_PANIC); |
f9fd8914 SN |
672 | for_each_possible_cpu(i) { |
673 | INIT_LIST_HEAD(&(per_cpu(listener_array, i).list)); | |
674 | init_rwsem(&(per_cpu(listener_array, i).sem)); | |
675 | } | |
c757249a SN |
676 | } |
677 | ||
678 | static int __init taskstats_init(void) | |
679 | { | |
680 | int rc; | |
681 | ||
682 | rc = genl_register_family(&family); | |
683 | if (rc) | |
684 | return rc; | |
685 | ||
686 | rc = genl_register_ops(&family, &taskstats_ops); | |
687 | if (rc < 0) | |
688 | goto err; | |
689 | ||
846c7bb0 BS |
690 | rc = genl_register_ops(&family, &cgroupstats_ops); |
691 | if (rc < 0) | |
692 | goto err_cgroup_ops; | |
693 | ||
c757249a | 694 | family_registered = 1; |
f9b182e2 | 695 | pr_info("registered taskstats version %d\n", TASKSTATS_GENL_VERSION); |
c757249a | 696 | return 0; |
846c7bb0 BS |
697 | err_cgroup_ops: |
698 | genl_unregister_ops(&family, &taskstats_ops); | |
c757249a SN |
699 | err: |
700 | genl_unregister_family(&family); | |
701 | return rc; | |
702 | } | |
703 | ||
704 | /* | |
705 | * late initcall ensures initialization of statistics collection | |
706 | * mechanisms precedes initialization of the taskstats interface | |
707 | */ | |
708 | late_initcall(taskstats_init); |