2 * arch/s390/appldata/appldata_base.c
4 * Base infrastructure for Linux-z/VM Monitor Stream, Stage 1.
5 * Exports appldata_register_ops() and appldata_unregister_ops() for the
6 * data gathering modules.
8 * Copyright (C) 2003 IBM Corporation, IBM Deutschland Entwicklung GmbH.
10 * Author: Gerald Schaefer <geraldsc@de.ibm.com>
13 #include <linux/config.h>
14 #include <linux/module.h>
15 #include <linux/init.h>
16 #include <linux/slab.h>
17 #include <linux/errno.h>
18 #include <asm/uaccess.h>
21 #include <linux/interrupt.h>
22 #include <linux/proc_fs.h>
23 #include <linux/page-flags.h>
24 #include <linux/swap.h>
25 #include <linux/pagemap.h>
26 #include <linux/sysctl.h>
27 #include <asm/timer.h>
28 //#include <linux/kernel_stat.h>
29 #include <linux/notifier.h>
30 #include <linux/cpu.h>
31 #include <linux/workqueue.h>
36 #define MY_PRINT_NAME "appldata" /* for debug messages, etc. */
37 #define APPLDATA_CPU_INTERVAL 10000 /* default (CPU) time for
41 #define TOD_MICRO 0x01000 /* nr. of TOD clock units
43 #ifndef CONFIG_ARCH_S390X
45 #define APPLDATA_START_INTERVAL_REC 0x00 /* Function codes for */
46 #define APPLDATA_STOP_REC 0x01 /* DIAG 0xDC */
47 #define APPLDATA_GEN_EVENT_RECORD 0x02
48 #define APPLDATA_START_CONFIG_REC 0x03
52 #define APPLDATA_START_INTERVAL_REC 0x80
53 #define APPLDATA_STOP_REC 0x81
54 #define APPLDATA_GEN_EVENT_RECORD 0x82
55 #define APPLDATA_START_CONFIG_REC 0x83
57 #endif /* CONFIG_ARCH_S390X */
61 * Parameter list for DIAGNOSE X'DC'
63 #ifndef CONFIG_ARCH_S390X
64 struct appldata_parameter_list
{
65 u16 diag
; /* The DIAGNOSE code X'00DC' */
66 u8 function
; /* The function code for the DIAGNOSE */
67 u8 parlist_length
; /* Length of the parameter list */
68 u32 product_id_addr
; /* Address of the 16-byte product ID */
70 u16 buffer_length
; /* Length of the application data buffer */
71 u32 buffer_addr
; /* Address of the application data buffer */
74 struct appldata_parameter_list
{
85 #endif /* CONFIG_ARCH_S390X */
88 * /proc entries (sysctl)
90 static const char appldata_proc_name
[APPLDATA_PROC_NAME_LENGTH
] = "appldata";
91 static int appldata_timer_handler(ctl_table
*ctl
, int write
, struct file
*filp
,
92 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
);
93 static int appldata_interval_handler(ctl_table
*ctl
, int write
,
96 size_t *lenp
, loff_t
*ppos
);
98 static struct ctl_table_header
*appldata_sysctl_header
;
99 static struct ctl_table appldata_table
[] = {
101 .ctl_name
= CTL_APPLDATA_TIMER
,
103 .mode
= S_IRUGO
| S_IWUSR
,
104 .proc_handler
= &appldata_timer_handler
,
107 .ctl_name
= CTL_APPLDATA_INTERVAL
,
108 .procname
= "interval",
109 .mode
= S_IRUGO
| S_IWUSR
,
110 .proc_handler
= &appldata_interval_handler
,
115 static struct ctl_table appldata_dir_table
[] = {
117 .ctl_name
= CTL_APPLDATA
,
118 .procname
= appldata_proc_name
,
120 .mode
= S_IRUGO
| S_IXUGO
,
121 .child
= appldata_table
,
129 DEFINE_PER_CPU(struct vtimer_list
, appldata_timer
);
130 static atomic_t appldata_expire_count
= ATOMIC_INIT(0);
132 static DEFINE_SPINLOCK(appldata_timer_lock
);
133 static int appldata_interval
= APPLDATA_CPU_INTERVAL
;
134 static int appldata_timer_active
;
139 static struct workqueue_struct
*appldata_wq
;
140 static void appldata_work_fn(void *data
);
141 static DECLARE_WORK(appldata_work
, appldata_work_fn
, NULL
);
147 static DEFINE_SPINLOCK(appldata_ops_lock
);
148 static LIST_HEAD(appldata_ops_list
);
151 /*************************** timer, work, DIAG *******************************/
153 * appldata_timer_function()
155 * schedule work and reschedule timer
157 static void appldata_timer_function(unsigned long data
, struct pt_regs
*regs
)
159 P_DEBUG(" -= Timer =-\n");
160 P_DEBUG("CPU: %i, expire_count: %i\n", smp_processor_id(),
161 atomic_read(&appldata_expire_count
));
162 if (atomic_dec_and_test(&appldata_expire_count
)) {
163 atomic_set(&appldata_expire_count
, num_online_cpus());
164 queue_work(appldata_wq
, (struct work_struct
*) data
);
171 * call data gathering function for each (active) module
173 static void appldata_work_fn(void *data
)
175 struct list_head
*lh
;
176 struct appldata_ops
*ops
;
179 P_DEBUG(" -= Work Queue =-\n");
181 spin_lock(&appldata_ops_lock
);
182 list_for_each(lh
, &appldata_ops_list
) {
183 ops
= list_entry(lh
, struct appldata_ops
, list
);
184 P_DEBUG("list_for_each loop: %i) active = %u, name = %s\n",
185 ++i
, ops
->active
, ops
->name
);
186 if (ops
->active
== 1) {
187 ops
->callback(ops
->data
);
190 spin_unlock(&appldata_ops_lock
);
196 * prepare parameter list, issue DIAG 0xDC
198 static int appldata_diag(char record_nr
, u16 function
, unsigned long buffer
,
202 struct appldata_product_id
{
203 char prod_nr
[7]; /* product nr. */
204 char prod_fn
[2]; /* product function */
205 char record_nr
; /* record nr. */
206 char version_nr
[2]; /* version */
207 char release_nr
[2]; /* release */
208 char mod_lvl
[2]; /* modification lvl. */
209 } appldata_product_id
= {
210 /* all strings are EBCDIC, record_nr is byte */
211 .prod_nr
= {0xD3, 0xC9, 0xD5, 0xE4,
212 0xE7, 0xD2, 0xD9}, /* "LINUXKR" */
213 .prod_fn
= {0xD5, 0xD3}, /* "NL" */
214 .record_nr
= record_nr
,
215 .version_nr
= {0xF2, 0xF6}, /* "26" */
216 .release_nr
= {0xF0, 0xF1}, /* "01" */
217 .mod_lvl
= {0xF0, 0xF0}, /* "00" */
219 struct appldata_parameter_list appldata_parameter_list
= {
221 .function
= function
,
223 sizeof(appldata_parameter_list
),
224 .buffer_length
= length
,
226 (unsigned long) &appldata_product_id
,
227 .buffer_addr
= virt_to_phys((void *) buffer
)
234 "diag %1,%0,0xDC\n\t"
235 : "=d" (ry
) : "d" (&(appldata_parameter_list
)) : "cc");
238 /************************ timer, work, DIAG <END> ****************************/
241 /****************************** /proc stuff **********************************/
244 * appldata_mod_vtimer_wrap()
246 * wrapper function for mod_virt_timer(), because smp_call_function_on()
247 * accepts only one parameter.
249 static void __appldata_mod_vtimer_wrap(void *p
) {
251 struct vtimer_list
*timer
;
254 mod_virt_timer(args
->timer
, args
->expires
);
257 #define APPLDATA_ADD_TIMER 0
258 #define APPLDATA_DEL_TIMER 1
259 #define APPLDATA_MOD_TIMER 2
262 * __appldata_vtimer_setup()
264 * Add, delete or modify virtual timers on all online cpus.
265 * The caller needs to get the appldata_timer_lock spinlock.
268 __appldata_vtimer_setup(int cmd
)
270 u64 per_cpu_interval
;
274 case APPLDATA_ADD_TIMER
:
275 if (appldata_timer_active
)
277 per_cpu_interval
= (u64
) (appldata_interval
*1000 /
278 num_online_cpus()) * TOD_MICRO
;
279 for_each_online_cpu(i
) {
280 per_cpu(appldata_timer
, i
).expires
= per_cpu_interval
;
281 smp_call_function_on(add_virt_timer_periodic
,
282 &per_cpu(appldata_timer
, i
),
285 appldata_timer_active
= 1;
286 P_INFO("Monitoring timer started.\n");
288 case APPLDATA_DEL_TIMER
:
289 for_each_online_cpu(i
)
290 del_virt_timer(&per_cpu(appldata_timer
, i
));
291 if (!appldata_timer_active
)
293 appldata_timer_active
= 0;
294 atomic_set(&appldata_expire_count
, num_online_cpus());
295 P_INFO("Monitoring timer stopped.\n");
297 case APPLDATA_MOD_TIMER
:
298 per_cpu_interval
= (u64
) (appldata_interval
*1000 /
299 num_online_cpus()) * TOD_MICRO
;
300 if (!appldata_timer_active
)
302 for_each_online_cpu(i
) {
304 struct vtimer_list
*timer
;
307 args
.timer
= &per_cpu(appldata_timer
, i
);
308 args
.expires
= per_cpu_interval
;
309 smp_call_function_on(__appldata_mod_vtimer_wrap
,
316 * appldata_timer_handler()
318 * Start/Stop timer, show status of timer (0 = not active, 1 = active)
321 appldata_timer_handler(ctl_table
*ctl
, int write
, struct file
*filp
,
322 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
)
327 if (!*lenp
|| *ppos
) {
332 len
= sprintf(buf
, appldata_timer_active
? "1\n" : "0\n");
335 if (copy_to_user(buffer
, buf
, len
))
340 if (copy_from_user(buf
, buffer
, len
> sizeof(buf
) ? sizeof(buf
) : len
))
342 spin_lock(&appldata_timer_lock
);
344 __appldata_vtimer_setup(APPLDATA_ADD_TIMER
);
345 else if (buf
[0] == '0')
346 __appldata_vtimer_setup(APPLDATA_DEL_TIMER
);
347 spin_unlock(&appldata_timer_lock
);
355 * appldata_interval_handler()
357 * Set (CPU) timer interval for collection of data (in milliseconds), show
358 * current timer interval.
361 appldata_interval_handler(ctl_table
*ctl
, int write
, struct file
*filp
,
362 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
)
367 if (!*lenp
|| *ppos
) {
372 len
= sprintf(buf
, "%i\n", appldata_interval
);
375 if (copy_to_user(buffer
, buf
, len
))
380 if (copy_from_user(buf
, buffer
, len
> sizeof(buf
) ? sizeof(buf
) : len
)) {
383 sscanf(buf
, "%i", &interval
);
385 P_ERROR("Timer CPU interval has to be > 0!\n");
389 spin_lock(&appldata_timer_lock
);
390 appldata_interval
= interval
;
391 __appldata_vtimer_setup(APPLDATA_MOD_TIMER
);
392 spin_unlock(&appldata_timer_lock
);
394 P_INFO("Monitoring CPU interval set to %u milliseconds.\n",
403 * appldata_generic_handler()
405 * Generic start/stop monitoring and DIAG, show status of
406 * monitoring (0 = not in process, 1 = in process)
409 appldata_generic_handler(ctl_table
*ctl
, int write
, struct file
*filp
,
410 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
)
412 struct appldata_ops
*ops
= NULL
, *tmp_ops
;
415 struct list_head
*lh
;
418 spin_lock(&appldata_ops_lock
);
419 list_for_each(lh
, &appldata_ops_list
) {
420 tmp_ops
= list_entry(lh
, struct appldata_ops
, list
);
421 if (&tmp_ops
->ctl_table
[2] == ctl
) {
426 spin_unlock(&appldata_ops_lock
);
430 if (!try_module_get(ops
->owner
)) { // protect this function
431 spin_unlock(&appldata_ops_lock
);
434 spin_unlock(&appldata_ops_lock
);
436 if (!*lenp
|| *ppos
) {
438 module_put(ops
->owner
);
442 len
= sprintf(buf
, ops
->active
? "1\n" : "0\n");
445 if (copy_to_user(buffer
, buf
, len
)) {
446 module_put(ops
->owner
);
452 if (copy_from_user(buf
, buffer
,
453 len
> sizeof(buf
) ? sizeof(buf
) : len
)) {
454 module_put(ops
->owner
);
458 spin_lock(&appldata_ops_lock
);
459 if ((buf
[0] == '1') && (ops
->active
== 0)) {
460 // protect work queue callback
461 if (!try_module_get(ops
->owner
)) {
462 spin_unlock(&appldata_ops_lock
);
463 module_put(ops
->owner
);
467 ops
->callback(ops
->data
); // init record
468 rc
= appldata_diag(ops
->record_nr
,
469 APPLDATA_START_INTERVAL_REC
,
470 (unsigned long) ops
->data
, ops
->size
);
472 P_ERROR("START DIAG 0xDC for %s failed, "
473 "return code: %d\n", ops
->name
, rc
);
474 module_put(ops
->owner
);
477 P_INFO("Monitoring %s data enabled, "
478 "DIAG 0xDC started.\n", ops
->name
);
480 } else if ((buf
[0] == '0') && (ops
->active
== 1)) {
482 rc
= appldata_diag(ops
->record_nr
, APPLDATA_STOP_REC
,
483 (unsigned long) ops
->data
, ops
->size
);
485 P_ERROR("STOP DIAG 0xDC for %s failed, "
486 "return code: %d\n", ops
->name
, rc
);
488 P_INFO("Monitoring %s data disabled, "
489 "DIAG 0xDC stopped.\n", ops
->name
);
491 module_put(ops
->owner
);
493 spin_unlock(&appldata_ops_lock
);
497 module_put(ops
->owner
);
501 /*************************** /proc stuff <END> *******************************/
504 /************************* module-ops management *****************************/
506 * appldata_register_ops()
508 * update ops list, register /proc/sys entries
510 int appldata_register_ops(struct appldata_ops
*ops
)
512 struct list_head
*lh
;
513 struct appldata_ops
*tmp_ops
;
518 if ((ops
->size
> APPLDATA_MAX_REC_SIZE
) ||
520 P_ERROR("Invalid size of %s record = %i, maximum = %i!\n",
521 ops
->name
, ops
->size
, APPLDATA_MAX_REC_SIZE
);
524 if ((ops
->ctl_nr
== CTL_APPLDATA
) ||
525 (ops
->ctl_nr
== CTL_APPLDATA_TIMER
) ||
526 (ops
->ctl_nr
== CTL_APPLDATA_INTERVAL
)) {
527 P_ERROR("ctl_nr %i already in use!\n", ops
->ctl_nr
);
530 ops
->ctl_table
= kmalloc(4*sizeof(struct ctl_table
), GFP_KERNEL
);
531 if (ops
->ctl_table
== NULL
) {
532 P_ERROR("Not enough memory for %s ctl_table!\n", ops
->name
);
535 memset(ops
->ctl_table
, 0, 4*sizeof(struct ctl_table
));
537 spin_lock(&appldata_ops_lock
);
538 list_for_each(lh
, &appldata_ops_list
) {
539 tmp_ops
= list_entry(lh
, struct appldata_ops
, list
);
540 P_DEBUG("register_ops loop: %i) name = %s, ctl = %i\n",
541 ++i
, tmp_ops
->name
, tmp_ops
->ctl_nr
);
542 P_DEBUG("Comparing %s (ctl %i) with %s (ctl %i)\n",
543 tmp_ops
->name
, tmp_ops
->ctl_nr
, ops
->name
,
545 if (strncmp(tmp_ops
->name
, ops
->name
,
546 APPLDATA_PROC_NAME_LENGTH
) == 0) {
547 P_ERROR("Name \"%s\" already registered!\n", ops
->name
);
548 kfree(ops
->ctl_table
);
549 spin_unlock(&appldata_ops_lock
);
552 if (tmp_ops
->ctl_nr
== ops
->ctl_nr
) {
553 P_ERROR("ctl_nr %i already registered!\n", ops
->ctl_nr
);
554 kfree(ops
->ctl_table
);
555 spin_unlock(&appldata_ops_lock
);
559 list_add(&ops
->list
, &appldata_ops_list
);
560 spin_unlock(&appldata_ops_lock
);
562 ops
->ctl_table
[0].ctl_name
= CTL_APPLDATA
;
563 ops
->ctl_table
[0].procname
= appldata_proc_name
;
564 ops
->ctl_table
[0].maxlen
= 0;
565 ops
->ctl_table
[0].mode
= S_IRUGO
| S_IXUGO
;
566 ops
->ctl_table
[0].child
= &ops
->ctl_table
[2];
568 ops
->ctl_table
[1].ctl_name
= 0;
570 ops
->ctl_table
[2].ctl_name
= ops
->ctl_nr
;
571 ops
->ctl_table
[2].procname
= ops
->name
;
572 ops
->ctl_table
[2].mode
= S_IRUGO
| S_IWUSR
;
573 ops
->ctl_table
[2].proc_handler
= appldata_generic_handler
;
574 ops
->ctl_table
[2].data
= ops
;
576 ops
->ctl_table
[3].ctl_name
= 0;
578 ops
->sysctl_header
= register_sysctl_table(ops
->ctl_table
,1);
580 P_INFO("%s-ops registered!\n", ops
->name
);
585 * appldata_unregister_ops()
587 * update ops list, unregister /proc entries, stop DIAG if necessary
589 void appldata_unregister_ops(struct appldata_ops
*ops
)
591 spin_lock(&appldata_ops_lock
);
592 unregister_sysctl_table(ops
->sysctl_header
);
593 list_del(&ops
->list
);
594 kfree(ops
->ctl_table
);
595 ops
->ctl_table
= NULL
;
596 spin_unlock(&appldata_ops_lock
);
597 P_INFO("%s-ops unregistered!\n", ops
->name
);
599 /********************** module-ops management <END> **************************/
602 /******************************* init / exit *********************************/
605 appldata_online_cpu(int cpu
)
607 init_virt_timer(&per_cpu(appldata_timer
, cpu
));
608 per_cpu(appldata_timer
, cpu
).function
= appldata_timer_function
;
609 per_cpu(appldata_timer
, cpu
).data
= (unsigned long)
611 atomic_inc(&appldata_expire_count
);
612 spin_lock(&appldata_timer_lock
);
613 __appldata_vtimer_setup(APPLDATA_MOD_TIMER
);
614 spin_unlock(&appldata_timer_lock
);
618 appldata_offline_cpu(int cpu
)
620 del_virt_timer(&per_cpu(appldata_timer
, cpu
));
621 if (atomic_dec_and_test(&appldata_expire_count
)) {
622 atomic_set(&appldata_expire_count
, num_online_cpus());
623 queue_work(appldata_wq
, &appldata_work
);
625 spin_lock(&appldata_timer_lock
);
626 __appldata_vtimer_setup(APPLDATA_MOD_TIMER
);
627 spin_unlock(&appldata_timer_lock
);
631 appldata_cpu_notify(struct notifier_block
*self
,
632 unsigned long action
, void *hcpu
)
636 appldata_online_cpu((long) hcpu
);
638 #ifdef CONFIG_HOTPLUG_CPU
640 appldata_offline_cpu((long) hcpu
);
649 static struct notifier_block __devinitdata appldata_nb
= {
650 .notifier_call
= appldata_cpu_notify
,
656 * init timer, register /proc entries
658 static int __init
appldata_init(void)
662 P_DEBUG("sizeof(parameter_list) = %lu\n",
663 sizeof(struct appldata_parameter_list
));
665 appldata_wq
= create_singlethread_workqueue("appldata");
667 P_ERROR("Could not create work queue\n");
671 for_each_online_cpu(i
)
672 appldata_online_cpu(i
);
674 /* Register cpu hotplug notifier */
675 register_cpu_notifier(&appldata_nb
);
677 appldata_sysctl_header
= register_sysctl_table(appldata_dir_table
, 1);
679 appldata_dir_table
[0].de
->owner
= THIS_MODULE
;
680 appldata_table
[0].de
->owner
= THIS_MODULE
;
681 appldata_table
[1].de
->owner
= THIS_MODULE
;
684 P_DEBUG("Base interface initialized.\n");
691 * stop timer, unregister /proc entries
693 static void __exit
appldata_exit(void)
695 struct list_head
*lh
;
696 struct appldata_ops
*ops
;
699 P_DEBUG("Unloading module ...\n");
701 * ops list should be empty, but just in case something went wrong...
703 spin_lock(&appldata_ops_lock
);
704 list_for_each(lh
, &appldata_ops_list
) {
705 ops
= list_entry(lh
, struct appldata_ops
, list
);
706 rc
= appldata_diag(ops
->record_nr
, APPLDATA_STOP_REC
,
707 (unsigned long) ops
->data
, ops
->size
);
709 P_ERROR("STOP DIAG 0xDC for %s failed, "
710 "return code: %d\n", ops
->name
, rc
);
713 spin_unlock(&appldata_ops_lock
);
715 for_each_online_cpu(i
)
716 appldata_offline_cpu(i
);
718 appldata_timer_active
= 0;
720 unregister_sysctl_table(appldata_sysctl_header
);
722 destroy_workqueue(appldata_wq
);
723 P_DEBUG("... module unloaded!\n");
725 /**************************** init / exit <END> ******************************/
728 module_init(appldata_init
);
729 module_exit(appldata_exit
);
730 MODULE_LICENSE("GPL");
731 MODULE_AUTHOR("Gerald Schaefer");
732 MODULE_DESCRIPTION("Linux-VM Monitor Stream, base infrastructure");
734 EXPORT_SYMBOL_GPL(appldata_register_ops
);
735 EXPORT_SYMBOL_GPL(appldata_unregister_ops
);
739 * Kernel symbols needed by appldata_mem and appldata_os modules.
740 * However, if this file is compiled as a module (for testing only), these
741 * symbols are not exported. In this case, we define them locally and export
744 void si_swapinfo(struct sysinfo
*val
)
746 val
->freeswap
= -1ul;
747 val
->totalswap
= -1ul;
750 unsigned long avenrun
[3] = {-1 - FIXED_1
/200, -1 - FIXED_1
/200,
754 void get_full_page_state(struct page_state
*ps
)
756 memset(ps
, -1, sizeof(struct page_state
));
759 unsigned long nr_running(void)
764 unsigned long nr_iowait(void)
769 /*unsigned long nr_context_switches(void)
774 EXPORT_SYMBOL_GPL(si_swapinfo
);
775 EXPORT_SYMBOL_GPL(nr_threads
);
776 EXPORT_SYMBOL_GPL(avenrun
);
777 EXPORT_SYMBOL_GPL(get_full_page_state
);
778 EXPORT_SYMBOL_GPL(nr_running
);
779 EXPORT_SYMBOL_GPL(nr_iowait
);
780 //EXPORT_SYMBOL_GPL(nr_context_switches);