taskstats.c 13.7 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
/*
 * 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>
21
#include <linux/tsacct_kern.h>
22
#include <linux/delayacct.h>
23 24
#include <linux/cpumask.h>
#include <linux/percpu.h>
B
Balbir Singh 已提交
25 26 27 28
#include <linux/cgroupstats.h>
#include <linux/cgroup.h>
#include <linux/fs.h>
#include <linux/file.h>
29 30 31
#include <net/genetlink.h>
#include <asm/atomic.h>

32 33 34 35 36 37
/*
 * 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)

38
static DEFINE_PER_CPU(__u32, taskstats_seqnum);
39
static int family_registered;
40
struct kmem_cache *taskstats_cache;
41 42 43 44 45 46 47 48 49 50 51 52

static struct genl_family family = {
	.id		= GENL_ID_GENERATE,
	.name		= TASKSTATS_GENL_NAME,
	.version	= TASKSTATS_GENL_VERSION,
	.maxattr	= TASKSTATS_CMD_ATTR_MAX,
};

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 },
53 54 55
	[TASKSTATS_CMD_ATTR_REGISTER_CPUMASK] = { .type = NLA_STRING },
	[TASKSTATS_CMD_ATTR_DEREGISTER_CPUMASK] = { .type = NLA_STRING },};

B
Balbir Singh 已提交
56 57 58 59 60
static struct nla_policy
cgroupstats_cmd_get_policy[CGROUPSTATS_CMD_ATTR_MAX+1] __read_mostly = {
	[CGROUPSTATS_CMD_ATTR_FD] = { .type = NLA_U32 },
};

61 62 63
struct listener {
	struct list_head list;
	pid_t pid;
64
	char valid;
65 66
};

67 68 69 70 71 72 73 74 75 76 77
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
};
78 79

static int prepare_reply(struct genl_info *info, u8 cmd, struct sk_buff **skbp,
80
				size_t size)
81 82 83 84 85 86 87
{
	struct sk_buff *skb;
	void *reply;

	/*
	 * If new attributes are added, please revisit this allocation
	 */
88
	skb = genlmsg_new(size, GFP_KERNEL);
89 90 91 92 93 94 95
	if (!skb)
		return -ENOMEM;

	if (!info) {
		int seq = get_cpu_var(taskstats_seqnum)++;
		put_cpu_var(taskstats_seqnum);

96
		reply = genlmsg_put(skb, 0, seq, &family, 0, cmd);
97
	} else
98
		reply = genlmsg_put_reply(skb, info, &family, 0, cmd);
99 100 101 102 103 104 105 106 107
	if (reply == NULL) {
		nlmsg_free(skb);
		return -EINVAL;
	}

	*skbp = skb;
	return 0;
}

108 109 110
/*
 * Send taskstats data in @skb to listener with nl_pid @pid
 */
J
Johannes Berg 已提交
111
static int send_reply(struct sk_buff *skb, struct genl_info *info)
112
{
113
	struct genlmsghdr *genlhdr = nlmsg_data(nlmsg_hdr(skb));
114
	void *reply = genlmsg_data(genlhdr);
115 116 117 118 119 120 121 122
	int rc;

	rc = genlmsg_end(skb, reply);
	if (rc < 0) {
		nlmsg_free(skb);
		return rc;
	}

J
Johannes Berg 已提交
123
	return genlmsg_reply(skb, info);
124 125
}

126 127 128
/*
 * Send taskstats data in @skb to listeners registered for @cpu's exit data
 */
129 130
static void send_cpu_listeners(struct sk_buff *skb,
					struct listener_list *listeners)
131
{
132
	struct genlmsghdr *genlhdr = nlmsg_data(nlmsg_hdr(skb));
133 134 135
	struct listener *s, *tmp;
	struct sk_buff *skb_next, *skb_cur = skb;
	void *reply = genlmsg_data(genlhdr);
136
	int rc, delcount = 0;
137 138 139 140

	rc = genlmsg_end(skb, reply);
	if (rc < 0) {
		nlmsg_free(skb);
141
		return;
142 143 144
	}

	rc = 0;
145
	down_read(&listeners->sem);
146
	list_for_each_entry(s, &listeners->list, list) {
147 148 149
		skb_next = NULL;
		if (!list_is_last(&s->list, &listeners->list)) {
			skb_next = skb_clone(skb_cur, GFP_KERNEL);
150
			if (!skb_next)
151 152
				break;
		}
J
Johannes Berg 已提交
153
		rc = genlmsg_unicast(&init_net, skb_cur, s->pid);
154
		if (rc == -ECONNREFUSED) {
155 156
			s->valid = 0;
			delcount++;
157 158 159
		}
		skb_cur = skb_next;
	}
160
	up_read(&listeners->sem);
161

162 163 164
	if (skb_cur)
		nlmsg_free(skb_cur);

165
	if (!delcount)
166
		return;
167 168 169 170 171 172 173 174 175 176

	/* 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);
177 178
}

179
static int fill_pid(pid_t pid, struct task_struct *tsk,
180 181
		struct taskstats *stats)
{
182
	int rc = 0;
183

184 185
	if (!tsk) {
		rcu_read_lock();
186
		tsk = find_task_by_vpid(pid);
187 188 189 190
		if (tsk)
			get_task_struct(tsk);
		rcu_read_unlock();
		if (!tsk)
191 192 193 194
			return -ESRCH;
	} else
		get_task_struct(tsk);

195
	memset(stats, 0, sizeof(*stats));
196 197 198 199
	/*
	 * Each accounting subsystem adds calls to its functions to
	 * fill in relevant parts of struct taskstsats as follows
	 *
200
	 *	per-task-foo(stats, tsk);
201 202
	 */

203
	delayacct_add_tsk(stats, tsk);
204 205

	/* fill in basic acct fields */
206
	stats->version = TASKSTATS_VERSION;
207 208
	stats->nvcsw = tsk->nvcsw;
	stats->nivcsw = tsk->nivcsw;
209
	bacct_add_tsk(stats, tsk);
210

211 212 213
	/* fill in extended acct fields */
	xacct_add_tsk(stats, tsk);

214
	/* Define err: label here if needed */
215 216 217 218 219
	put_task_struct(tsk);
	return rc;

}

220
static int fill_tgid(pid_t tgid, struct task_struct *first,
221 222
		struct taskstats *stats)
{
223
	struct task_struct *tsk;
224
	unsigned long flags;
225
	int rc = -ESRCH;
226

227 228 229 230
	/*
	 * Add additional stats from live tasks except zombie thread group
	 * leaders who are already counted with the dead tasks
	 */
231 232
	rcu_read_lock();
	if (!first)
233
		first = find_task_by_vpid(tgid);
234

235 236
	if (!first || !lock_task_sighand(first, &flags))
		goto out;
237

238 239
	if (first->signal->stats)
		memcpy(stats, first->signal->stats, sizeof(*stats));
240 241
	else
		memset(stats, 0, sizeof(*stats));
242

243
	tsk = first;
244
	do {
245
		if (tsk->exit_state)
246
			continue;
247
		/*
248
		 * Accounting subsystem can call its functions here to
249 250
		 * fill in relevant parts of struct taskstsats as follows
		 *
251
		 *	per-task-foo(stats, tsk);
252
		 */
253
		delayacct_add_tsk(stats, tsk);
254

255 256
		stats->nvcsw += tsk->nvcsw;
		stats->nivcsw += tsk->nivcsw;
257
	} while_each_thread(first, tsk);
258

259 260 261 262 263 264
	unlock_task_sighand(first, &flags);
	rc = 0;
out:
	rcu_read_unlock();

	stats->version = TASKSTATS_VERSION;
265
	/*
266
	 * Accounting subsystems can also add calls here to modify
267
	 * fields of taskstats.
268
	 */
269
	return rc;
270 271 272 273 274 275 276
}


static void fill_tgid_exit(struct task_struct *tsk)
{
	unsigned long flags;

277
	spin_lock_irqsave(&tsk->sighand->siglock, flags);
278 279 280 281 282 283 284 285 286 287 288
	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:
289
	spin_unlock_irqrestore(&tsk->sighand->siglock, flags);
290
	return;
291 292
}

293
static int add_del_listener(pid_t pid, const struct cpumask *mask, int isadd)
294 295 296 297
{
	struct listener_list *listeners;
	struct listener *s, *tmp;
	unsigned int cpu;
298

299
	if (!cpumask_subset(mask, cpu_possible_mask))
300 301 302
		return -EINVAL;

	if (isadd == REGISTER) {
303
		for_each_cpu(cpu, mask) {
304 305 306 307 308 309
			s = kmalloc_node(sizeof(struct listener), GFP_KERNEL,
					 cpu_to_node(cpu));
			if (!s)
				goto cleanup;
			s->pid = pid;
			INIT_LIST_HEAD(&s->list);
310
			s->valid = 1;
311 312 313 314 315 316 317 318 319 320 321

			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:
322
	for_each_cpu(cpu, mask) {
323 324 325 326 327 328 329 330 331 332 333 334 335 336
		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;
}

337
static int parse(struct nlattr *na, struct cpumask *mask)
338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353
{
	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);
354
	ret = cpulist_parse(data, mask);
355 356 357 358
	kfree(data);
	return ret;
}

359
static struct taskstats *mk_reply(struct sk_buff *skb, int type, u32 pid)
360
{
361
	struct nlattr *na, *ret;
362 363
	int aggr;

364 365 366
	aggr = (type == TASKSTATS_TYPE_PID)
			? TASKSTATS_TYPE_AGGR_PID
			: TASKSTATS_TYPE_AGGR_TGID;
367 368

	na = nla_nest_start(skb, aggr);
369 370
	if (!na)
		goto err;
371 372 373 374 375
	if (nla_put(skb, type, sizeof(pid), &pid) < 0)
		goto err;
	ret = nla_reserve(skb, TASKSTATS_TYPE_STATS, sizeof(struct taskstats));
	if (!ret)
		goto err;
376 377
	nla_nest_end(skb, na);

378 379 380
	return nla_data(ret);
err:
	return NULL;
381 382
}

B
Balbir Singh 已提交
383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399
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;
	struct file *file;
	int fput_needed;

	na = info->attrs[CGROUPSTATS_CMD_ATTR_FD];
	if (!na)
		return -EINVAL;

	fd = nla_get_u32(info->attrs[CGROUPSTATS_CMD_ATTR_FD]);
	file = fget_light(fd, &fput_needed);
400 401
	if (!file)
		return 0;
B
Balbir Singh 已提交
402

403
	size = nla_total_size(sizeof(struct cgroupstats));
B
Balbir Singh 已提交
404

405 406 407 408
	rc = prepare_reply(info, CGROUPSTATS_CMD_NEW, &rep_skb,
				size);
	if (rc < 0)
		goto err;
B
Balbir Singh 已提交
409

410 411 412 413
	na = nla_reserve(rep_skb, CGROUPSTATS_TYPE_CGROUP_STATS,
				sizeof(struct cgroupstats));
	stats = nla_data(na);
	memset(stats, 0, sizeof(*stats));
B
Balbir Singh 已提交
414

415 416 417 418
	rc = cgroupstats_build(stats, file->f_dentry);
	if (rc < 0) {
		nlmsg_free(rep_skb);
		goto err;
B
Balbir Singh 已提交
419 420
	}

J
Johannes Berg 已提交
421
	rc = send_reply(rep_skb, info);
422

B
Balbir Singh 已提交
423
err:
424
	fput_light(file, fput_needed);
B
Balbir Singh 已提交
425 426 427
	return rc;
}

428
static int taskstats_user_cmd(struct sk_buff *skb, struct genl_info *info)
429
{
430
	int rc;
431
	struct sk_buff *rep_skb;
432
	struct taskstats *stats;
433
	size_t size;
434 435 436 437
	cpumask_var_t mask;

	if (!alloc_cpumask_var(&mask, GFP_KERNEL))
		return -ENOMEM;
438

439
	rc = parse(info->attrs[TASKSTATS_CMD_ATTR_REGISTER_CPUMASK], mask);
440
	if (rc < 0)
441 442 443 444 445
		goto free_return_rc;
	if (rc == 0) {
		rc = add_del_listener(info->snd_pid, mask, REGISTER);
		goto free_return_rc;
	}
446

447
	rc = parse(info->attrs[TASKSTATS_CMD_ATTR_DEREGISTER_CPUMASK], mask);
448
	if (rc < 0)
449 450 451 452 453
		goto free_return_rc;
	if (rc == 0) {
		rc = add_del_listener(info->snd_pid, mask, DEREGISTER);
free_return_rc:
		free_cpumask_var(mask);
454
		return rc;
455 456
	}
	free_cpumask_var(mask);
457 458 459 460 461 462 463

	/*
	 * Size includes space for nested attributes
	 */
	size = nla_total_size(sizeof(u32)) +
		nla_total_size(sizeof(struct taskstats)) + nla_total_size(0);

464
	rc = prepare_reply(info, TASKSTATS_CMD_NEW, &rep_skb, size);
465 466 467
	if (rc < 0)
		return rc;

468
	rc = -EINVAL;
469 470
	if (info->attrs[TASKSTATS_CMD_ATTR_PID]) {
		u32 pid = nla_get_u32(info->attrs[TASKSTATS_CMD_ATTR_PID]);
471 472
		stats = mk_reply(rep_skb, TASKSTATS_TYPE_PID, pid);
		if (!stats)
473
			goto err;
474

475 476
		rc = fill_pid(pid, NULL, stats);
		if (rc < 0)
477
			goto err;
478 479
	} else if (info->attrs[TASKSTATS_CMD_ATTR_TGID]) {
		u32 tgid = nla_get_u32(info->attrs[TASKSTATS_CMD_ATTR_TGID]);
480 481
		stats = mk_reply(rep_skb, TASKSTATS_TYPE_TGID, tgid);
		if (!stats)
482
			goto err;
483

484 485
		rc = fill_tgid(tgid, NULL, stats);
		if (rc < 0)
486
			goto err;
487
	} else
488 489
		goto err;

J
Johannes Berg 已提交
490
	return send_reply(rep_skb, info);
491 492 493 494 495
err:
	nlmsg_free(rep_skb);
	return rc;
}

496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519
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;
}

520
/* Send pid data out on exit */
521
void taskstats_exit(struct task_struct *tsk, int group_dead)
522 523
{
	int rc;
524
	struct listener_list *listeners;
525
	struct taskstats *stats;
526 527 528 529
	struct sk_buff *rep_skb;
	size_t size;
	int is_thread_group;

530
	if (!family_registered)
531 532 533 534 535 536 537 538
		return;

	/*
	 * Size includes space for nested attributes
	 */
	size = nla_total_size(sizeof(u32)) +
		nla_total_size(sizeof(struct taskstats)) + nla_total_size(0);

539
	is_thread_group = !!taskstats_tgid_alloc(tsk);
540 541 542 543 544 545 546
	if (is_thread_group) {
		/* PID + STATS + TGID + STATS */
		size = 2 * size;
		/* fill the tsk->signal->stats structure */
		fill_tgid_exit(tsk);
	}

547 548 549 550
	listeners = &__raw_get_cpu_var(listener_array);
	if (list_empty(&listeners->list))
		return;

551
	rc = prepare_reply(NULL, TASKSTATS_CMD_NEW, &rep_skb, size);
552
	if (rc < 0)
553
		return;
554

555 556
	stats = mk_reply(rep_skb, TASKSTATS_TYPE_PID, tsk->pid);
	if (!stats)
557
		goto err;
558

559
	rc = fill_pid(-1, tsk, stats);
560
	if (rc < 0)
561
		goto err;
562 563

	/*
564
	 * Doesn't matter if tsk is the leader or the last group member leaving
565
	 */
566
	if (!is_thread_group || !group_dead)
567
		goto send;
568

569 570
	stats = mk_reply(rep_skb, TASKSTATS_TYPE_TGID, tsk->tgid);
	if (!stats)
571
		goto err;
572 573

	memcpy(stats, tsk->signal->stats, sizeof(*stats));
574

575
send:
576
	send_cpu_listeners(rep_skb, listeners);
577
	return;
578
err:
579 580 581 582 583
	nlmsg_free(rep_skb);
}

static struct genl_ops taskstats_ops = {
	.cmd		= TASKSTATS_CMD_GET,
584
	.doit		= taskstats_user_cmd,
585 586 587
	.policy		= taskstats_cmd_get_policy,
};

B
Balbir Singh 已提交
588 589 590 591 592 593
static struct genl_ops cgroupstats_ops = {
	.cmd		= CGROUPSTATS_CMD_GET,
	.doit		= cgroupstats_user_cmd,
	.policy		= cgroupstats_cmd_get_policy,
};

594 595 596
/* Needed early in initialization */
void __init taskstats_init_early(void)
{
597 598
	unsigned int i;

599
	taskstats_cache = KMEM_CACHE(taskstats, SLAB_PANIC);
600 601 602 603
	for_each_possible_cpu(i) {
		INIT_LIST_HEAD(&(per_cpu(listener_array, i).list));
		init_rwsem(&(per_cpu(listener_array, i).sem));
	}
604 605 606 607 608 609 610 611 612 613 614 615 616 617
}

static int __init taskstats_init(void)
{
	int rc;

	rc = genl_register_family(&family);
	if (rc)
		return rc;

	rc = genl_register_ops(&family, &taskstats_ops);
	if (rc < 0)
		goto err;

B
Balbir Singh 已提交
618 619 620 621
	rc = genl_register_ops(&family, &cgroupstats_ops);
	if (rc < 0)
		goto err_cgroup_ops;

622
	family_registered = 1;
B
Balbir Singh 已提交
623
	printk("registered taskstats version %d\n", TASKSTATS_GENL_VERSION);
624
	return 0;
B
Balbir Singh 已提交
625 626
err_cgroup_ops:
	genl_unregister_ops(&family, &taskstats_ops);
627 628 629 630 631 632 633 634 635 636
err:
	genl_unregister_family(&family);
	return rc;
}

/*
 * late initcall ensures initialization of statistics collection
 * mechanisms precedes initialization of the taskstats interface
 */
late_initcall(taskstats_init);