taskstats.c 12.1 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>
25 26 27
#include <net/genetlink.h>
#include <asm/atomic.h>

28 29 30 31 32 33
/*
 * 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)

34 35
static DEFINE_PER_CPU(__u32, taskstats_seqnum) = { 0 };
static int family_registered;
36
struct kmem_cache *taskstats_cache;
37 38 39 40 41 42 43 44 45 46 47 48

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 },
49 50 51 52 53 54
	[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;
55
	char valid;
56 57
};

58 59 60 61 62 63 64 65 66 67 68
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
};
69 70

static int prepare_reply(struct genl_info *info, u8 cmd, struct sk_buff **skbp,
71
				size_t size)
72 73 74 75 76 77 78
{
	struct sk_buff *skb;
	void *reply;

	/*
	 * If new attributes are added, please revisit this allocation
	 */
79
	skb = genlmsg_new(size, GFP_KERNEL);
80 81 82 83 84 85 86
	if (!skb)
		return -ENOMEM;

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

87
		reply = genlmsg_put(skb, 0, seq, &family, 0, cmd);
88
	} else
89
		reply = genlmsg_put_reply(skb, info, &family, 0, cmd);
90 91 92 93 94 95 96 97 98
	if (reply == NULL) {
		nlmsg_free(skb);
		return -EINVAL;
	}

	*skbp = skb;
	return 0;
}

99 100 101 102
/*
 * Send taskstats data in @skb to listener with nl_pid @pid
 */
static int send_reply(struct sk_buff *skb, pid_t pid)
103
{
104
	struct genlmsghdr *genlhdr = nlmsg_data(nlmsg_hdr(skb));
105
	void *reply = genlmsg_data(genlhdr);
106 107 108 109 110 111 112 113 114 115 116
	int rc;

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

	return genlmsg_unicast(skb, pid);
}

117 118 119
/*
 * Send taskstats data in @skb to listeners registered for @cpu's exit data
 */
120 121
static void send_cpu_listeners(struct sk_buff *skb,
					struct listener_list *listeners)
122
{
123
	struct genlmsghdr *genlhdr = nlmsg_data(nlmsg_hdr(skb));
124 125 126
	struct listener *s, *tmp;
	struct sk_buff *skb_next, *skb_cur = skb;
	void *reply = genlmsg_data(genlhdr);
127
	int rc, delcount = 0;
128 129 130 131

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

	rc = 0;
136
	down_read(&listeners->sem);
137
	list_for_each_entry(s, &listeners->list, list) {
138 139 140
		skb_next = NULL;
		if (!list_is_last(&s->list, &listeners->list)) {
			skb_next = skb_clone(skb_cur, GFP_KERNEL);
141
			if (!skb_next)
142 143
				break;
		}
144 145
		rc = genlmsg_unicast(skb_cur, s->pid);
		if (rc == -ECONNREFUSED) {
146 147
			s->valid = 0;
			delcount++;
148 149 150
		}
		skb_cur = skb_next;
	}
151
	up_read(&listeners->sem);
152

153 154 155
	if (skb_cur)
		nlmsg_free(skb_cur);

156
	if (!delcount)
157
		return;
158 159 160 161 162 163 164 165 166 167

	/* 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);
168 169
}

170
static int fill_pid(pid_t pid, struct task_struct *tsk,
171 172
		struct taskstats *stats)
{
173
	int rc = 0;
174

175 176
	if (!tsk) {
		rcu_read_lock();
177
		tsk = find_task_by_pid(pid);
178 179 180 181
		if (tsk)
			get_task_struct(tsk);
		rcu_read_unlock();
		if (!tsk)
182 183 184 185
			return -ESRCH;
	} else
		get_task_struct(tsk);

186
	memset(stats, 0, sizeof(*stats));
187 188 189 190
	/*
	 * Each accounting subsystem adds calls to its functions to
	 * fill in relevant parts of struct taskstsats as follows
	 *
191
	 *	per-task-foo(stats, tsk);
192 193
	 */

194
	delayacct_add_tsk(stats, tsk);
195 196

	/* fill in basic acct fields */
197
	stats->version = TASKSTATS_VERSION;
198 199
	stats->nvcsw = tsk->nvcsw;
	stats->nivcsw = tsk->nivcsw;
200
	bacct_add_tsk(stats, tsk);
201

202 203 204
	/* fill in extended acct fields */
	xacct_add_tsk(stats, tsk);

205
	/* Define err: label here if needed */
206 207 208 209 210
	put_task_struct(tsk);
	return rc;

}

211
static int fill_tgid(pid_t tgid, struct task_struct *first,
212 213
		struct taskstats *stats)
{
214
	struct task_struct *tsk;
215
	unsigned long flags;
216
	int rc = -ESRCH;
217

218 219 220 221
	/*
	 * Add additional stats from live tasks except zombie thread group
	 * leaders who are already counted with the dead tasks
	 */
222 223
	rcu_read_lock();
	if (!first)
224
		first = find_task_by_pid(tgid);
225

226 227
	if (!first || !lock_task_sighand(first, &flags))
		goto out;
228

229 230
	if (first->signal->stats)
		memcpy(stats, first->signal->stats, sizeof(*stats));
231 232
	else
		memset(stats, 0, sizeof(*stats));
233

234
	tsk = first;
235
	do {
236
		if (tsk->exit_state)
237
			continue;
238
		/*
239
		 * Accounting subsystem can call its functions here to
240 241
		 * fill in relevant parts of struct taskstsats as follows
		 *
242
		 *	per-task-foo(stats, tsk);
243
		 */
244
		delayacct_add_tsk(stats, tsk);
245

246 247
		stats->nvcsw += tsk->nvcsw;
		stats->nivcsw += tsk->nivcsw;
248
	} while_each_thread(first, tsk);
249

250 251 252 253 254 255
	unlock_task_sighand(first, &flags);
	rc = 0;
out:
	rcu_read_unlock();

	stats->version = TASKSTATS_VERSION;
256
	/*
257 258
	 * Accounting subsytems can also add calls here to modify
	 * fields of taskstats.
259
	 */
260
	return rc;
261 262 263 264 265 266 267
}


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

268
	spin_lock_irqsave(&tsk->sighand->siglock, flags);
269 270 271 272 273 274 275 276 277 278 279
	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:
280
	spin_unlock_irqrestore(&tsk->sighand->siglock, flags);
281
	return;
282 283
}

284 285 286 287 288 289
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;
290

291 292 293 294 295 296 297 298 299 300 301
	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);
302
			s->valid = 1;
303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350

			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;
}

351
static struct taskstats *mk_reply(struct sk_buff *skb, int type, u32 pid)
352
{
353
	struct nlattr *na, *ret;
354 355
	int aggr;

356 357 358
	aggr = (type == TASKSTATS_TYPE_PID)
			? TASKSTATS_TYPE_AGGR_PID
			: TASKSTATS_TYPE_AGGR_TGID;
359 360

	na = nla_nest_start(skb, aggr);
361 362
	if (!na)
		goto err;
363 364 365 366 367
	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;
368 369
	nla_nest_end(skb, na);

370 371 372
	return nla_data(ret);
err:
	return NULL;
373 374
}

375
static int taskstats_user_cmd(struct sk_buff *skb, struct genl_info *info)
376 377 378
{
	int rc = 0;
	struct sk_buff *rep_skb;
379
	struct taskstats *stats;
380
	size_t size;
381 382 383 384 385 386 387 388 389 390 391 392 393
	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);
394 395 396 397 398 399 400

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

401
	rc = prepare_reply(info, TASKSTATS_CMD_NEW, &rep_skb, size);
402 403 404
	if (rc < 0)
		return rc;

405
	rc = -EINVAL;
406 407
	if (info->attrs[TASKSTATS_CMD_ATTR_PID]) {
		u32 pid = nla_get_u32(info->attrs[TASKSTATS_CMD_ATTR_PID]);
408 409
		stats = mk_reply(rep_skb, TASKSTATS_TYPE_PID, pid);
		if (!stats)
410
			goto err;
411

412 413
		rc = fill_pid(pid, NULL, stats);
		if (rc < 0)
414
			goto err;
415 416
	} else if (info->attrs[TASKSTATS_CMD_ATTR_TGID]) {
		u32 tgid = nla_get_u32(info->attrs[TASKSTATS_CMD_ATTR_TGID]);
417 418
		stats = mk_reply(rep_skb, TASKSTATS_TYPE_TGID, tgid);
		if (!stats)
419
			goto err;
420

421 422
		rc = fill_tgid(tgid, NULL, stats);
		if (rc < 0)
423
			goto err;
424
	} else
425 426
		goto err;

427
	return send_reply(rep_skb, info->snd_pid);
428 429 430 431 432
err:
	nlmsg_free(rep_skb);
	return rc;
}

433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456
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;
}

457
/* Send pid data out on exit */
458
void taskstats_exit(struct task_struct *tsk, int group_dead)
459 460
{
	int rc;
461
	struct listener_list *listeners;
462
	struct taskstats *stats;
463 464 465 466
	struct sk_buff *rep_skb;
	size_t size;
	int is_thread_group;

467
	if (!family_registered)
468 469 470 471 472 473 474 475
		return;

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

476
	is_thread_group = !!taskstats_tgid_alloc(tsk);
477 478 479 480 481 482 483
	if (is_thread_group) {
		/* PID + STATS + TGID + STATS */
		size = 2 * size;
		/* fill the tsk->signal->stats structure */
		fill_tgid_exit(tsk);
	}

484 485 486 487
	listeners = &__raw_get_cpu_var(listener_array);
	if (list_empty(&listeners->list))
		return;

488
	rc = prepare_reply(NULL, TASKSTATS_CMD_NEW, &rep_skb, size);
489
	if (rc < 0)
490
		return;
491

492 493
	stats = mk_reply(rep_skb, TASKSTATS_TYPE_PID, tsk->pid);
	if (!stats)
494
		goto err;
495

496 497
	rc = fill_pid(tsk->pid, tsk, stats);
	if (rc < 0)
498
		goto err;
499 500

	/*
501
	 * Doesn't matter if tsk is the leader or the last group member leaving
502
	 */
503
	if (!is_thread_group || !group_dead)
504
		goto send;
505

506 507
	stats = mk_reply(rep_skb, TASKSTATS_TYPE_TGID, tsk->tgid);
	if (!stats)
508
		goto err;
509 510

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

512
send:
513
	send_cpu_listeners(rep_skb, listeners);
514
	return;
515
err:
516 517 518 519 520
	nlmsg_free(rep_skb);
}

static struct genl_ops taskstats_ops = {
	.cmd		= TASKSTATS_CMD_GET,
521
	.doit		= taskstats_user_cmd,
522 523 524 525 526 527
	.policy		= taskstats_cmd_get_policy,
};

/* Needed early in initialization */
void __init taskstats_init_early(void)
{
528 529
	unsigned int i;

530
	taskstats_cache = KMEM_CACHE(taskstats, SLAB_PANIC);
531 532 533 534
	for_each_possible_cpu(i) {
		INIT_LIST_HEAD(&(per_cpu(listener_array, i).list));
		init_rwsem(&(per_cpu(listener_array, i).sem));
	}
535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560
}

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;

	family_registered = 1;
	return 0;
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);