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