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

11 12 13
#define KMSG_COMPONENT	"appldata"
#define pr_fmt(fmt) KMSG_COMPONENT ": " fmt

L
Linus Torvalds 已提交
14 15 16 17 18 19
#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>
20
#include <linux/mm.h>
L
Linus Torvalds 已提交
21 22 23 24 25
#include <linux/swap.h>
#include <linux/pagemap.h>
#include <linux/sysctl.h>
#include <linux/notifier.h>
#include <linux/cpu.h>
26
#include <linux/workqueue.h>
27 28
#include <linux/suspend.h>
#include <linux/platform_device.h>
G
Gerald Schaefer 已提交
29
#include <asm/appldata.h>
30
#include <asm/vtimer.h>
G
Gerald Schaefer 已提交
31 32 33
#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

#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 */
44 45 46

static struct platform_device *appldata_pdev;

L
Linus Torvalds 已提交
47 48 49 50
/*
 * /proc entries (sysctl)
 */
static const char appldata_proc_name[APPLDATA_PROC_NAME_LENGTH] = "appldata";
51
static int appldata_timer_handler(ctl_table *ctl, int write,
L
Linus Torvalds 已提交
52 53 54 55 56 57 58 59 60 61
				  void __user *buffer, size_t *lenp, loff_t *ppos);
static int appldata_interval_handler(ctl_table *ctl, int write,
					 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,
62
		.proc_handler	= appldata_timer_handler,
L
Linus Torvalds 已提交
63 64 65 66
	},
	{
		.procname	= "interval",
		.mode		= S_IRUGO | S_IWUSR,
67
		.proc_handler	= appldata_interval_handler,
L
Linus Torvalds 已提交
68
	},
69
	{ },
L
Linus Torvalds 已提交
70 71 72 73 74 75 76 77 78
};

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

/*
 * Timer
 */
85
static struct vtimer_list appldata_timer;
L
Linus Torvalds 已提交
86 87 88 89

static DEFINE_SPINLOCK(appldata_timer_lock);
static int appldata_interval = APPLDATA_CPU_INTERVAL;
static int appldata_timer_active;
90
static int appldata_timer_suspended = 0;
L
Linus Torvalds 已提交
91 92

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

L
Linus Torvalds 已提交
99 100 101 102

/*
 * Ops list
 */
103
static DEFINE_MUTEX(appldata_ops_mutex);
L
Linus Torvalds 已提交
104 105 106
static LIST_HEAD(appldata_ops_list);


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

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

128
	mutex_lock(&appldata_ops_mutex);
L
Linus Torvalds 已提交
129 130 131 132 133 134
	list_for_each(lh, &appldata_ops_list) {
		ops = list_entry(lh, struct appldata_ops, list);
		if (ops->active == 1) {
			ops->callback(ops->data);
		}
	}
135
	mutex_unlock(&appldata_ops_mutex);
L
Linus Torvalds 已提交
136 137 138 139 140 141 142
}

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

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


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

#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.
 */
173
static void __appldata_vtimer_setup(int cmd)
L
Linus Torvalds 已提交
174
{
175
	u64 timer_interval = (u64) appldata_interval * 1000 * TOD_MICRO;
L
Linus Torvalds 已提交
176 177 178 179 180

	switch (cmd) {
	case APPLDATA_ADD_TIMER:
		if (appldata_timer_active)
			break;
181 182
		appldata_timer.expires = timer_interval;
		add_virt_timer_periodic(&appldata_timer);
L
Linus Torvalds 已提交
183 184 185
		appldata_timer_active = 1;
		break;
	case APPLDATA_DEL_TIMER:
186
		del_virt_timer(&appldata_timer);
L
Linus Torvalds 已提交
187 188 189 190 191 192 193
		if (!appldata_timer_active)
			break;
		appldata_timer_active = 0;
		break;
	case APPLDATA_MOD_TIMER:
		if (!appldata_timer_active)
			break;
194
		mod_virt_timer_periodic(&appldata_timer, timer_interval);
L
Linus Torvalds 已提交
195 196 197 198 199 200 201 202 203
	}
}

/*
 * appldata_timer_handler()
 *
 * Start/Stop timer, show status of timer (0 = not active, 1 = active)
 */
static int
204
appldata_timer_handler(ctl_table *ctl, int write,
L
Linus Torvalds 已提交
205 206
			   void __user *buffer, size_t *lenp, loff_t *ppos)
{
207
	unsigned int len;
L
Linus Torvalds 已提交
208 209 210 211 212 213 214
	char buf[2];

	if (!*lenp || *ppos) {
		*lenp = 0;
		return 0;
	}
	if (!write) {
215 216 217
		strncpy(buf, appldata_timer_active ? "1\n" : "0\n",
			ARRAY_SIZE(buf));
		len = strnlen(buf, ARRAY_SIZE(buf));
L
Linus Torvalds 已提交
218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245
		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;
	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);
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
246
appldata_interval_handler(ctl_table *ctl, int write,
L
Linus Torvalds 已提交
247 248
			   void __user *buffer, size_t *lenp, loff_t *ppos)
{
249 250
	unsigned int len;
	int interval;
L
Linus Torvalds 已提交
251 252 253 254 255 256 257 258 259 260 261 262 263 264 265
	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;
266
	if (copy_from_user(buf, buffer, len > sizeof(buf) ? sizeof(buf) : len))
L
Linus Torvalds 已提交
267
		return -EFAULT;
268
	interval = 0;
L
Linus Torvalds 已提交
269
	sscanf(buf, "%i", &interval);
270
	if (interval <= 0)
L
Linus Torvalds 已提交
271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289
		return -EINVAL;

	spin_lock(&appldata_timer_lock);
	appldata_interval = interval;
	__appldata_vtimer_setup(APPLDATA_MOD_TIMER);
	spin_unlock(&appldata_timer_lock);
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
290
appldata_generic_handler(ctl_table *ctl, int write,
L
Linus Torvalds 已提交
291 292 293
			   void __user *buffer, size_t *lenp, loff_t *ppos)
{
	struct appldata_ops *ops = NULL, *tmp_ops;
294 295
	unsigned int len;
	int rc, found;
L
Linus Torvalds 已提交
296 297 298 299
	char buf[2];
	struct list_head *lh;

	found = 0;
300
	mutex_lock(&appldata_ops_mutex);
L
Linus Torvalds 已提交
301 302 303 304 305 306 307
	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) {
308
		mutex_unlock(&appldata_ops_mutex);
L
Linus Torvalds 已提交
309 310 311 312
		return -ENODEV;
	}
	ops = ctl->data;
	if (!try_module_get(ops->owner)) {	// protect this function
313
		mutex_unlock(&appldata_ops_mutex);
L
Linus Torvalds 已提交
314 315
		return -ENODEV;
	}
316
	mutex_unlock(&appldata_ops_mutex);
L
Linus Torvalds 已提交
317 318 319 320 321 322 323

	if (!*lenp || *ppos) {
		*lenp = 0;
		module_put(ops->owner);
		return 0;
	}
	if (!write) {
324 325
		strncpy(buf, ops->active ? "1\n" : "0\n", ARRAY_SIZE(buf));
		len = strnlen(buf, ARRAY_SIZE(buf));
L
Linus Torvalds 已提交
326 327 328 329 330 331 332 333 334 335 336 337 338 339 340
		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;
	}

341
	mutex_lock(&appldata_ops_mutex);
L
Linus Torvalds 已提交
342
	if ((buf[0] == '1') && (ops->active == 0)) {
343 344
		// protect work queue callback
		if (!try_module_get(ops->owner)) {
345
			mutex_unlock(&appldata_ops_mutex);
L
Linus Torvalds 已提交
346 347 348 349 350 351
			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 已提交
352 353
					(unsigned long) ops->data, ops->size,
					ops->mod_lvl);
L
Linus Torvalds 已提交
354
		if (rc != 0) {
355 356
			pr_err("Starting the data collection for %s "
			       "failed with rc=%d\n", ops->name, rc);
L
Linus Torvalds 已提交
357
			module_put(ops->owner);
358
		} else
G
Gerald Schaefer 已提交
359
			ops->active = 1;
L
Linus Torvalds 已提交
360 361 362
	} else if ((buf[0] == '0') && (ops->active == 1)) {
		ops->active = 0;
		rc = appldata_diag(ops->record_nr, APPLDATA_STOP_REC,
G
Gerald Schaefer 已提交
363 364
				(unsigned long) ops->data, ops->size,
				ops->mod_lvl);
365
		if (rc != 0)
366 367
			pr_err("Stopping the data collection for %s "
			       "failed with rc=%d\n", ops->name, rc);
L
Linus Torvalds 已提交
368 369
		module_put(ops->owner);
	}
370
	mutex_unlock(&appldata_ops_mutex);
L
Linus Torvalds 已提交
371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388
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)
{
389
	if (ops->size > APPLDATA_MAX_REC_SIZE)
390
		return -EINVAL;
L
Linus Torvalds 已提交
391

392 393
	ops->ctl_table = kzalloc(4 * sizeof(struct ctl_table), GFP_KERNEL);
	if (!ops->ctl_table)
L
Linus Torvalds 已提交
394 395
		return -ENOMEM;

396
	mutex_lock(&appldata_ops_mutex);
L
Linus Torvalds 已提交
397
	list_add(&ops->list, &appldata_ops_list);
398
	mutex_unlock(&appldata_ops_mutex);
L
Linus Torvalds 已提交
399 400 401 402 403 404 405 406 407 408 409

	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;

410
	ops->sysctl_header = register_sysctl_table(ops->ctl_table);
411 412
	if (!ops->sysctl_header)
		goto out;
L
Linus Torvalds 已提交
413
	return 0;
414
out:
415
	mutex_lock(&appldata_ops_mutex);
416
	list_del(&ops->list);
417
	mutex_unlock(&appldata_ops_mutex);
418 419
	kfree(ops->ctl_table);
	return -ENOMEM;
L
Linus Torvalds 已提交
420 421 422 423 424 425 426 427 428
}

/*
 * appldata_unregister_ops()
 *
 * update ops list, unregister /proc entries, stop DIAG if necessary
 */
void appldata_unregister_ops(struct appldata_ops *ops)
{
429
	mutex_lock(&appldata_ops_mutex);
L
Linus Torvalds 已提交
430
	list_del(&ops->list);
431
	mutex_unlock(&appldata_ops_mutex);
432
	unregister_sysctl_table(ops->sysctl_header);
433
	kfree(ops->ctl_table);
L
Linus Torvalds 已提交
434 435 436 437
}
/********************** module-ops management <END> **************************/


438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504
/**************************** suspend / resume *******************************/
static int appldata_freeze(struct device *dev)
{
	struct appldata_ops *ops;
	int rc;
	struct list_head *lh;

	spin_lock(&appldata_timer_lock);
	if (appldata_timer_active) {
		__appldata_vtimer_setup(APPLDATA_DEL_TIMER);
		appldata_timer_suspended = 1;
	}
	spin_unlock(&appldata_timer_lock);

	mutex_lock(&appldata_ops_mutex);
	list_for_each(lh, &appldata_ops_list) {
		ops = list_entry(lh, struct appldata_ops, list);
		if (ops->active == 1) {
			rc = appldata_diag(ops->record_nr, APPLDATA_STOP_REC,
					(unsigned long) ops->data, ops->size,
					ops->mod_lvl);
			if (rc != 0)
				pr_err("Stopping the data collection for %s "
				       "failed with rc=%d\n", ops->name, rc);
		}
	}
	mutex_unlock(&appldata_ops_mutex);
	return 0;
}

static int appldata_restore(struct device *dev)
{
	struct appldata_ops *ops;
	int rc;
	struct list_head *lh;

	spin_lock(&appldata_timer_lock);
	if (appldata_timer_suspended) {
		__appldata_vtimer_setup(APPLDATA_ADD_TIMER);
		appldata_timer_suspended = 0;
	}
	spin_unlock(&appldata_timer_lock);

	mutex_lock(&appldata_ops_mutex);
	list_for_each(lh, &appldata_ops_list) {
		ops = list_entry(lh, struct appldata_ops, list);
		if (ops->active == 1) {
			ops->callback(ops->data);	// init record
			rc = appldata_diag(ops->record_nr,
					APPLDATA_START_INTERVAL_REC,
					(unsigned long) ops->data, ops->size,
					ops->mod_lvl);
			if (rc != 0) {
				pr_err("Starting the data collection for %s "
				       "failed with rc=%d\n", ops->name, rc);
			}
		}
	}
	mutex_unlock(&appldata_ops_mutex);
	return 0;
}

static int appldata_thaw(struct device *dev)
{
	return appldata_restore(dev);
}

505
static const struct dev_pm_ops appldata_pm_ops = {
506 507 508 509 510 511 512 513 514 515 516 517 518 519 520
	.freeze		= appldata_freeze,
	.thaw		= appldata_thaw,
	.restore	= appldata_restore,
};

static struct platform_driver appldata_pdrv = {
	.driver = {
		.name	= "appldata",
		.owner	= THIS_MODULE,
		.pm	= &appldata_pm_ops,
	},
};
/************************* suspend / resume <END> ****************************/


L
Linus Torvalds 已提交
521 522 523 524 525
/******************************* init / exit *********************************/

/*
 * appldata_init()
 *
526
 * init timer, register /proc entries
L
Linus Torvalds 已提交
527 528 529
 */
static int __init appldata_init(void)
{
530 531 532 533
	int rc;

	appldata_timer.function = appldata_timer_function;
	appldata_timer.data = (unsigned long) &appldata_work;
534 535 536 537

	rc = platform_driver_register(&appldata_pdrv);
	if (rc)
		return rc;
L
Linus Torvalds 已提交
538

539 540 541 542 543 544
	appldata_pdev = platform_device_register_simple("appldata", -1, NULL,
							0);
	if (IS_ERR(appldata_pdev)) {
		rc = PTR_ERR(appldata_pdev);
		goto out_driver;
	}
545
	appldata_wq = create_singlethread_workqueue("appldata");
546 547 548 549
	if (!appldata_wq) {
		rc = -ENOMEM;
		goto out_device;
	}
550

551
	appldata_sysctl_header = register_sysctl_table(appldata_dir_table);
L
Linus Torvalds 已提交
552
	return 0;
553 554 555 556 557 558

out_device:
	platform_device_unregister(appldata_pdev);
out_driver:
	platform_driver_unregister(&appldata_pdrv);
	return rc;
L
Linus Torvalds 已提交
559 560
}

561
__initcall(appldata_init);
L
Linus Torvalds 已提交
562 563 564 565 566

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

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

569
#ifdef CONFIG_SWAP
L
Linus Torvalds 已提交
570
EXPORT_SYMBOL_GPL(si_swapinfo);
571
#endif
L
Linus Torvalds 已提交
572 573 574
EXPORT_SYMBOL_GPL(nr_threads);
EXPORT_SYMBOL_GPL(nr_running);
EXPORT_SYMBOL_GPL(nr_iowait);