appldata_base.c 13.4 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3 4 5 6 7
/*
 * arch/s390/appldata/appldata_base.c
 *
 * Base infrastructure for Linux-z/VM Monitor Stream, Stage 1.
 * Exports appldata_register_ops() and appldata_unregister_ops() for the
 * data gathering modules.
 *
8
 * Copyright IBM Corp. 2003, 2008
L
Linus Torvalds 已提交
9
 *
G
Gerald Schaefer 已提交
10
 * Author: Gerald Schaefer <gerald.schaefer@de.ibm.com>
L
Linus Torvalds 已提交
11 12
 */

13 14 15
#define KMSG_COMPONENT	"appldata"
#define pr_fmt(fmt) KMSG_COMPONENT ": " fmt

L
Linus Torvalds 已提交
16 17 18 19 20 21
#include <linux/module.h>
#include <linux/init.h>
#include <linux/slab.h>
#include <linux/errno.h>
#include <linux/interrupt.h>
#include <linux/proc_fs.h>
22
#include <linux/mm.h>
L
Linus Torvalds 已提交
23 24 25 26 27
#include <linux/swap.h>
#include <linux/pagemap.h>
#include <linux/sysctl.h>
#include <linux/notifier.h>
#include <linux/cpu.h>
28
#include <linux/workqueue.h>
G
Gerald Schaefer 已提交
29 30 31 32 33
#include <asm/appldata.h>
#include <asm/timer.h>
#include <asm/uaccess.h>
#include <asm/io.h>
#include <asm/smp.h>
L
Linus Torvalds 已提交
34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66

#include "appldata.h"


#define APPLDATA_CPU_INTERVAL	10000		/* default (CPU) time for
						   sampling interval in
						   milliseconds */

#define TOD_MICRO	0x01000			/* nr. of TOD clock units
						   for 1 microsecond */
/*
 * /proc entries (sysctl)
 */
static const char appldata_proc_name[APPLDATA_PROC_NAME_LENGTH] = "appldata";
static int appldata_timer_handler(ctl_table *ctl, int write, struct file *filp,
				  void __user *buffer, size_t *lenp, loff_t *ppos);
static int appldata_interval_handler(ctl_table *ctl, int write,
					 struct file *filp,
					 void __user *buffer,
					 size_t *lenp, loff_t *ppos);

static struct ctl_table_header *appldata_sysctl_header;
static struct ctl_table appldata_table[] = {
	{
		.procname	= "timer",
		.mode		= S_IRUGO | S_IWUSR,
		.proc_handler	= &appldata_timer_handler,
	},
	{
		.procname	= "interval",
		.mode		= S_IRUGO | S_IWUSR,
		.proc_handler	= &appldata_interval_handler,
	},
67
	{ },
L
Linus Torvalds 已提交
68 69 70 71 72 73 74 75 76
};

static struct ctl_table appldata_dir_table[] = {
	{
		.procname	= appldata_proc_name,
		.maxlen		= 0,
		.mode		= S_IRUGO | S_IXUGO,
		.child		= appldata_table,
	},
77
	{ },
L
Linus Torvalds 已提交
78 79 80 81 82
};

/*
 * Timer
 */
83
static DEFINE_PER_CPU(struct vtimer_list, appldata_timer);
L
Linus Torvalds 已提交
84 85 86 87 88 89 90
static atomic_t appldata_expire_count = ATOMIC_INIT(0);

static DEFINE_SPINLOCK(appldata_timer_lock);
static int appldata_interval = APPLDATA_CPU_INTERVAL;
static int appldata_timer_active;

/*
91
 * Work queue
L
Linus Torvalds 已提交
92
 */
93
static struct workqueue_struct *appldata_wq;
94 95
static void appldata_work_fn(struct work_struct *work);
static DECLARE_WORK(appldata_work, appldata_work_fn);
96

L
Linus Torvalds 已提交
97 98 99 100 101 102 103 104

/*
 * Ops list
 */
static DEFINE_SPINLOCK(appldata_ops_lock);
static LIST_HEAD(appldata_ops_list);


105
/*************************** timer, work, DIAG *******************************/
L
Linus Torvalds 已提交
106 107 108
/*
 * appldata_timer_function()
 *
109
 * schedule work and reschedule timer
L
Linus Torvalds 已提交
110
 */
H
Heiko Carstens 已提交
111
static void appldata_timer_function(unsigned long data)
L
Linus Torvalds 已提交
112 113 114
{
	if (atomic_dec_and_test(&appldata_expire_count)) {
		atomic_set(&appldata_expire_count, num_online_cpus());
115
		queue_work(appldata_wq, (struct work_struct *) data);
L
Linus Torvalds 已提交
116 117 118 119
	}
}

/*
120
 * appldata_work_fn()
L
Linus Torvalds 已提交
121 122 123
 *
 * call data gathering function for each (active) module
 */
124
static void appldata_work_fn(struct work_struct *work)
L
Linus Torvalds 已提交
125 126 127 128 129 130
{
	struct list_head *lh;
	struct appldata_ops *ops;
	int i;

	i = 0;
131
	get_online_cpus();
L
Linus Torvalds 已提交
132 133 134 135 136 137 138 139
	spin_lock(&appldata_ops_lock);
	list_for_each(lh, &appldata_ops_list) {
		ops = list_entry(lh, struct appldata_ops, list);
		if (ops->active == 1) {
			ops->callback(ops->data);
		}
	}
	spin_unlock(&appldata_ops_lock);
140
	put_online_cpus();
L
Linus Torvalds 已提交
141 142 143 144 145 146 147
}

/*
 * appldata_diag()
 *
 * prepare parameter list, issue DIAG 0xDC
 */
G
Gerald Schaefer 已提交
148 149
int appldata_diag(char record_nr, u16 function, unsigned long buffer,
			u16 length, char *mod_lvl)
L
Linus Torvalds 已提交
150
{
G
Gerald Schaefer 已提交
151
	struct appldata_product_id id = {
L
Linus Torvalds 已提交
152
		.prod_nr    = {0xD3, 0xC9, 0xD5, 0xE4,
G
Gerald Schaefer 已提交
153 154 155 156
			       0xE7, 0xD2, 0xD9},	/* "LINUXKR" */
		.prod_fn    = 0xD5D3,			/* "NL" */
		.version_nr = 0xF2F6,			/* "26" */
		.release_nr = 0xF0F1,			/* "01" */
L
Linus Torvalds 已提交
157 158
	};

159 160
	id.record_nr = record_nr;
	id.mod_lvl = (mod_lvl[0]) << 8 | mod_lvl[1];
G
Gerald Schaefer 已提交
161
	return appldata_asm(&id, function, (void *) buffer, length);
L
Linus Torvalds 已提交
162
}
163
/************************ timer, work, DIAG <END> ****************************/
L
Linus Torvalds 已提交
164 165 166 167 168 169 170


/****************************** /proc stuff **********************************/

/*
 * appldata_mod_vtimer_wrap()
 *
171
 * wrapper function for mod_virt_timer(), because smp_call_function_single()
L
Linus Torvalds 已提交
172 173 174 175 176 177 178
 * accepts only one parameter.
 */
static void __appldata_mod_vtimer_wrap(void *p) {
	struct {
		struct vtimer_list *timer;
		u64    expires;
	} *args = p;
179
	mod_virt_timer_periodic(args->timer, args->expires);
L
Linus Torvalds 已提交
180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205
}

#define APPLDATA_ADD_TIMER	0
#define APPLDATA_DEL_TIMER	1
#define APPLDATA_MOD_TIMER	2

/*
 * __appldata_vtimer_setup()
 *
 * Add, delete or modify virtual timers on all online cpus.
 * The caller needs to get the appldata_timer_lock spinlock.
 */
static void
__appldata_vtimer_setup(int cmd)
{
	u64 per_cpu_interval;
	int i;

	switch (cmd) {
	case APPLDATA_ADD_TIMER:
		if (appldata_timer_active)
			break;
		per_cpu_interval = (u64) (appldata_interval*1000 /
					  num_online_cpus()) * TOD_MICRO;
		for_each_online_cpu(i) {
			per_cpu(appldata_timer, i).expires = per_cpu_interval;
206 207
			smp_call_function_single(i, add_virt_timer_periodic,
						 &per_cpu(appldata_timer, i),
208
						 1);
L
Linus Torvalds 已提交
209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231
		}
		appldata_timer_active = 1;
		break;
	case APPLDATA_DEL_TIMER:
		for_each_online_cpu(i)
			del_virt_timer(&per_cpu(appldata_timer, i));
		if (!appldata_timer_active)
			break;
		appldata_timer_active = 0;
		atomic_set(&appldata_expire_count, num_online_cpus());
		break;
	case APPLDATA_MOD_TIMER:
		per_cpu_interval = (u64) (appldata_interval*1000 /
					  num_online_cpus()) * TOD_MICRO;
		if (!appldata_timer_active)
			break;
		for_each_online_cpu(i) {
			struct {
				struct vtimer_list *timer;
				u64    expires;
			} args;
			args.timer = &per_cpu(appldata_timer, i);
			args.expires = per_cpu_interval;
232
			smp_call_function_single(i, __appldata_mod_vtimer_wrap,
233
						 &args, 1);
L
Linus Torvalds 已提交
234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264
		}
	}
}

/*
 * appldata_timer_handler()
 *
 * Start/Stop timer, show status of timer (0 = not active, 1 = active)
 */
static int
appldata_timer_handler(ctl_table *ctl, int write, struct file *filp,
			   void __user *buffer, size_t *lenp, loff_t *ppos)
{
	int len;
	char buf[2];

	if (!*lenp || *ppos) {
		*lenp = 0;
		return 0;
	}
	if (!write) {
		len = sprintf(buf, appldata_timer_active ? "1\n" : "0\n");
		if (len > *lenp)
			len = *lenp;
		if (copy_to_user(buffer, buf, len))
			return -EFAULT;
		goto out;
	}
	len = *lenp;
	if (copy_from_user(buf, buffer, len > sizeof(buf) ? sizeof(buf) : len))
		return -EFAULT;
265
	get_online_cpus();
L
Linus Torvalds 已提交
266 267 268 269 270 271
	spin_lock(&appldata_timer_lock);
	if (buf[0] == '1')
		__appldata_vtimer_setup(APPLDATA_ADD_TIMER);
	else if (buf[0] == '0')
		__appldata_vtimer_setup(APPLDATA_DEL_TIMER);
	spin_unlock(&appldata_timer_lock);
272
	put_online_cpus();
L
Linus Torvalds 已提交
273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307
out:
	*lenp = len;
	*ppos += len;
	return 0;
}

/*
 * appldata_interval_handler()
 *
 * Set (CPU) timer interval for collection of data (in milliseconds), show
 * current timer interval.
 */
static int
appldata_interval_handler(ctl_table *ctl, int write, struct file *filp,
			   void __user *buffer, size_t *lenp, loff_t *ppos)
{
	int len, interval;
	char buf[16];

	if (!*lenp || *ppos) {
		*lenp = 0;
		return 0;
	}
	if (!write) {
		len = sprintf(buf, "%i\n", appldata_interval);
		if (len > *lenp)
			len = *lenp;
		if (copy_to_user(buffer, buf, len))
			return -EFAULT;
		goto out;
	}
	len = *lenp;
	if (copy_from_user(buf, buffer, len > sizeof(buf) ? sizeof(buf) : len)) {
		return -EFAULT;
	}
308
	interval = 0;
L
Linus Torvalds 已提交
309
	sscanf(buf, "%i", &interval);
310
	if (interval <= 0)
L
Linus Torvalds 已提交
311 312
		return -EINVAL;

313
	get_online_cpus();
L
Linus Torvalds 已提交
314 315 316 317
	spin_lock(&appldata_timer_lock);
	appldata_interval = interval;
	__appldata_vtimer_setup(APPLDATA_MOD_TIMER);
	spin_unlock(&appldata_timer_lock);
318
	put_online_cpus();
L
Linus Torvalds 已提交
319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340
out:
	*lenp = len;
	*ppos += len;
	return 0;
}

/*
 * appldata_generic_handler()
 *
 * Generic start/stop monitoring and DIAG, show status of
 * monitoring (0 = not in process, 1 = in process)
 */
static int
appldata_generic_handler(ctl_table *ctl, int write, struct file *filp,
			   void __user *buffer, size_t *lenp, loff_t *ppos)
{
	struct appldata_ops *ops = NULL, *tmp_ops;
	int rc, len, found;
	char buf[2];
	struct list_head *lh;

	found = 0;
341
	spin_lock(&appldata_ops_lock);
L
Linus Torvalds 已提交
342 343 344 345 346 347 348
	list_for_each(lh, &appldata_ops_list) {
		tmp_ops = list_entry(lh, struct appldata_ops, list);
		if (&tmp_ops->ctl_table[2] == ctl) {
			found = 1;
		}
	}
	if (!found) {
349
		spin_unlock(&appldata_ops_lock);
L
Linus Torvalds 已提交
350 351 352 353
		return -ENODEV;
	}
	ops = ctl->data;
	if (!try_module_get(ops->owner)) {	// protect this function
354
		spin_unlock(&appldata_ops_lock);
L
Linus Torvalds 已提交
355 356
		return -ENODEV;
	}
357
	spin_unlock(&appldata_ops_lock);
L
Linus Torvalds 已提交
358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380

	if (!*lenp || *ppos) {
		*lenp = 0;
		module_put(ops->owner);
		return 0;
	}
	if (!write) {
		len = sprintf(buf, ops->active ? "1\n" : "0\n");
		if (len > *lenp)
			len = *lenp;
		if (copy_to_user(buffer, buf, len)) {
			module_put(ops->owner);
			return -EFAULT;
		}
		goto out;
	}
	len = *lenp;
	if (copy_from_user(buf, buffer,
			   len > sizeof(buf) ? sizeof(buf) : len)) {
		module_put(ops->owner);
		return -EFAULT;
	}

381
	spin_lock(&appldata_ops_lock);
L
Linus Torvalds 已提交
382
	if ((buf[0] == '1') && (ops->active == 0)) {
383 384 385
		// protect work queue callback
		if (!try_module_get(ops->owner)) {
			spin_unlock(&appldata_ops_lock);
L
Linus Torvalds 已提交
386 387 388 389 390 391
			module_put(ops->owner);
			return -ENODEV;
		}
		ops->callback(ops->data);	// init record
		rc = appldata_diag(ops->record_nr,
					APPLDATA_START_INTERVAL_REC,
G
Gerald Schaefer 已提交
392 393
					(unsigned long) ops->data, ops->size,
					ops->mod_lvl);
L
Linus Torvalds 已提交
394
		if (rc != 0) {
395 396
			pr_err("Starting the data collection for %s "
			       "failed with rc=%d\n", ops->name, rc);
L
Linus Torvalds 已提交
397
			module_put(ops->owner);
398
		} else
G
Gerald Schaefer 已提交
399
			ops->active = 1;
L
Linus Torvalds 已提交
400 401 402
	} else if ((buf[0] == '0') && (ops->active == 1)) {
		ops->active = 0;
		rc = appldata_diag(ops->record_nr, APPLDATA_STOP_REC,
G
Gerald Schaefer 已提交
403 404
				(unsigned long) ops->data, ops->size,
				ops->mod_lvl);
405
		if (rc != 0)
406 407
			pr_err("Stopping the data collection for %s "
			       "failed with rc=%d\n", ops->name, rc);
L
Linus Torvalds 已提交
408 409
		module_put(ops->owner);
	}
410
	spin_unlock(&appldata_ops_lock);
L
Linus Torvalds 已提交
411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428
out:
	*lenp = len;
	*ppos += len;
	module_put(ops->owner);
	return 0;
}

/*************************** /proc stuff <END> *******************************/


/************************* module-ops management *****************************/
/*
 * appldata_register_ops()
 *
 * update ops list, register /proc/sys entries
 */
int appldata_register_ops(struct appldata_ops *ops)
{
429
	if (ops->size > APPLDATA_MAX_REC_SIZE)
430
		return -EINVAL;
L
Linus Torvalds 已提交
431

432 433
	ops->ctl_table = kzalloc(4 * sizeof(struct ctl_table), GFP_KERNEL);
	if (!ops->ctl_table)
L
Linus Torvalds 已提交
434 435
		return -ENOMEM;

436
	spin_lock(&appldata_ops_lock);
L
Linus Torvalds 已提交
437
	list_add(&ops->list, &appldata_ops_list);
438
	spin_unlock(&appldata_ops_lock);
L
Linus Torvalds 已提交
439 440 441 442 443 444 445 446 447 448 449

	ops->ctl_table[0].procname = appldata_proc_name;
	ops->ctl_table[0].maxlen   = 0;
	ops->ctl_table[0].mode     = S_IRUGO | S_IXUGO;
	ops->ctl_table[0].child    = &ops->ctl_table[2];

	ops->ctl_table[2].procname = ops->name;
	ops->ctl_table[2].mode     = S_IRUGO | S_IWUSR;
	ops->ctl_table[2].proc_handler = appldata_generic_handler;
	ops->ctl_table[2].data = ops;

450
	ops->sysctl_header = register_sysctl_table(ops->ctl_table);
451 452
	if (!ops->sysctl_header)
		goto out;
L
Linus Torvalds 已提交
453
	return 0;
454 455 456 457 458 459
out:
	spin_lock(&appldata_ops_lock);
	list_del(&ops->list);
	spin_unlock(&appldata_ops_lock);
	kfree(ops->ctl_table);
	return -ENOMEM;
L
Linus Torvalds 已提交
460 461 462 463 464 465 466 467 468
}

/*
 * appldata_unregister_ops()
 *
 * update ops list, unregister /proc entries, stop DIAG if necessary
 */
void appldata_unregister_ops(struct appldata_ops *ops)
{
469
	spin_lock(&appldata_ops_lock);
L
Linus Torvalds 已提交
470
	list_del(&ops->list);
471
	spin_unlock(&appldata_ops_lock);
472
	unregister_sysctl_table(ops->sysctl_header);
473
	kfree(ops->ctl_table);
L
Linus Torvalds 已提交
474 475 476 477 478 479
}
/********************** module-ops management <END> **************************/


/******************************* init / exit *********************************/

480
static void __cpuinit appldata_online_cpu(int cpu)
L
Linus Torvalds 已提交
481 482 483 484
{
	init_virt_timer(&per_cpu(appldata_timer, cpu));
	per_cpu(appldata_timer, cpu).function = appldata_timer_function;
	per_cpu(appldata_timer, cpu).data = (unsigned long)
485
		&appldata_work;
L
Linus Torvalds 已提交
486 487 488 489 490 491
	atomic_inc(&appldata_expire_count);
	spin_lock(&appldata_timer_lock);
	__appldata_vtimer_setup(APPLDATA_MOD_TIMER);
	spin_unlock(&appldata_timer_lock);
}

492
static void __cpuinit appldata_offline_cpu(int cpu)
L
Linus Torvalds 已提交
493 494 495 496
{
	del_virt_timer(&per_cpu(appldata_timer, cpu));
	if (atomic_dec_and_test(&appldata_expire_count)) {
		atomic_set(&appldata_expire_count, num_online_cpus());
497
		queue_work(appldata_wq, &appldata_work);
L
Linus Torvalds 已提交
498 499 500 501 502 503
	}
	spin_lock(&appldata_timer_lock);
	__appldata_vtimer_setup(APPLDATA_MOD_TIMER);
	spin_unlock(&appldata_timer_lock);
}

504 505 506
static int __cpuinit appldata_cpu_notify(struct notifier_block *self,
					 unsigned long action,
					 void *hcpu)
L
Linus Torvalds 已提交
507 508 509
{
	switch (action) {
	case CPU_ONLINE:
510
	case CPU_ONLINE_FROZEN:
L
Linus Torvalds 已提交
511 512 513
		appldata_online_cpu((long) hcpu);
		break;
	case CPU_DEAD:
514
	case CPU_DEAD_FROZEN:
L
Linus Torvalds 已提交
515 516 517 518 519 520 521 522
		appldata_offline_cpu((long) hcpu);
		break;
	default:
		break;
	}
	return NOTIFY_OK;
}

523
static struct notifier_block __cpuinitdata appldata_nb = {
L
Linus Torvalds 已提交
524 525 526 527 528 529
	.notifier_call = appldata_cpu_notify,
};

/*
 * appldata_init()
 *
530
 * init timer, register /proc entries
L
Linus Torvalds 已提交
531 532 533 534 535
 */
static int __init appldata_init(void)
{
	int i;

536
	appldata_wq = create_singlethread_workqueue("appldata");
537
	if (!appldata_wq)
538 539
		return -ENOMEM;

540
	get_online_cpus();
L
Linus Torvalds 已提交
541 542
	for_each_online_cpu(i)
		appldata_online_cpu(i);
543
	put_online_cpus();
L
Linus Torvalds 已提交
544 545

	/* Register cpu hotplug notifier */
546
	register_hotcpu_notifier(&appldata_nb);
L
Linus Torvalds 已提交
547

548
	appldata_sysctl_header = register_sysctl_table(appldata_dir_table);
L
Linus Torvalds 已提交
549 550 551
	return 0;
}

552
__initcall(appldata_init);
L
Linus Torvalds 已提交
553 554 555 556 557

/**************************** init / exit <END> ******************************/

EXPORT_SYMBOL_GPL(appldata_register_ops);
EXPORT_SYMBOL_GPL(appldata_unregister_ops);
G
Gerald Schaefer 已提交
558
EXPORT_SYMBOL_GPL(appldata_diag);
L
Linus Torvalds 已提交
559

560
#ifdef CONFIG_SWAP
L
Linus Torvalds 已提交
561
EXPORT_SYMBOL_GPL(si_swapinfo);
562
#endif
L
Linus Torvalds 已提交
563 564 565
EXPORT_SYMBOL_GPL(nr_threads);
EXPORT_SYMBOL_GPL(nr_running);
EXPORT_SYMBOL_GPL(nr_iowait);