Merge branch 'fix/hda' into for-linus
[deliverable/linux.git] / drivers / char / sysrq.c
1 /* -*- linux-c -*-
2 *
3 * $Id: sysrq.c,v 1.15 1998/08/23 14:56:41 mj Exp $
4 *
5 * Linux Magic System Request Key Hacks
6 *
7 * (c) 1997 Martin Mares <mj@atrey.karlin.mff.cuni.cz>
8 * based on ideas by Pavel Machek <pavel@atrey.karlin.mff.cuni.cz>
9 *
10 * (c) 2000 Crutcher Dunnavant <crutcher+kernel@datastacks.com>
11 * overhauled to use key registration
12 * based upon discusions in irc://irc.openprojects.net/#kernelnewbies
13 */
14
15 #include <linux/sched.h>
16 #include <linux/interrupt.h>
17 #include <linux/mm.h>
18 #include <linux/fs.h>
19 #include <linux/tty.h>
20 #include <linux/mount.h>
21 #include <linux/kdev_t.h>
22 #include <linux/major.h>
23 #include <linux/reboot.h>
24 #include <linux/sysrq.h>
25 #include <linux/kbd_kern.h>
26 #include <linux/proc_fs.h>
27 #include <linux/quotaops.h>
28 #include <linux/perf_counter.h>
29 #include <linux/kernel.h>
30 #include <linux/module.h>
31 #include <linux/suspend.h>
32 #include <linux/writeback.h>
33 #include <linux/buffer_head.h> /* for fsync_bdev() */
34 #include <linux/swap.h>
35 #include <linux/spinlock.h>
36 #include <linux/vt_kern.h>
37 #include <linux/workqueue.h>
38 #include <linux/hrtimer.h>
39 #include <linux/oom.h>
40
41 #include <asm/ptrace.h>
42 #include <asm/irq_regs.h>
43
44 /* Whether we react on sysrq keys or just ignore them */
45 int __read_mostly __sysrq_enabled = 1;
46
47 static int __read_mostly sysrq_always_enabled;
48
49 int sysrq_on(void)
50 {
51 return __sysrq_enabled || sysrq_always_enabled;
52 }
53
54 /*
55 * A value of 1 means 'all', other nonzero values are an op mask:
56 */
57 static inline int sysrq_on_mask(int mask)
58 {
59 return sysrq_always_enabled || __sysrq_enabled == 1 ||
60 (__sysrq_enabled & mask);
61 }
62
63 static int __init sysrq_always_enabled_setup(char *str)
64 {
65 sysrq_always_enabled = 1;
66 printk(KERN_INFO "debug: sysrq always enabled.\n");
67
68 return 1;
69 }
70
71 __setup("sysrq_always_enabled", sysrq_always_enabled_setup);
72
73
74 static void sysrq_handle_loglevel(int key, struct tty_struct *tty)
75 {
76 int i;
77 i = key - '0';
78 console_loglevel = 7;
79 printk("Loglevel set to %d\n", i);
80 console_loglevel = i;
81 }
82 static struct sysrq_key_op sysrq_loglevel_op = {
83 .handler = sysrq_handle_loglevel,
84 .help_msg = "loglevel(0-9)",
85 .action_msg = "Changing Loglevel",
86 .enable_mask = SYSRQ_ENABLE_LOG,
87 };
88
89 #ifdef CONFIG_VT
90 static void sysrq_handle_SAK(int key, struct tty_struct *tty)
91 {
92 struct work_struct *SAK_work = &vc_cons[fg_console].SAK_work;
93 schedule_work(SAK_work);
94 }
95 static struct sysrq_key_op sysrq_SAK_op = {
96 .handler = sysrq_handle_SAK,
97 .help_msg = "saK",
98 .action_msg = "SAK",
99 .enable_mask = SYSRQ_ENABLE_KEYBOARD,
100 };
101 #else
102 #define sysrq_SAK_op (*(struct sysrq_key_op *)0)
103 #endif
104
105 #ifdef CONFIG_VT
106 static void sysrq_handle_unraw(int key, struct tty_struct *tty)
107 {
108 struct kbd_struct *kbd = &kbd_table[fg_console];
109
110 if (kbd)
111 kbd->kbdmode = default_utf8 ? VC_UNICODE : VC_XLATE;
112 }
113 static struct sysrq_key_op sysrq_unraw_op = {
114 .handler = sysrq_handle_unraw,
115 .help_msg = "unRaw",
116 .action_msg = "Keyboard mode set to system default",
117 .enable_mask = SYSRQ_ENABLE_KEYBOARD,
118 };
119 #else
120 #define sysrq_unraw_op (*(struct sysrq_key_op *)0)
121 #endif /* CONFIG_VT */
122
123 static void sysrq_handle_crash(int key, struct tty_struct *tty)
124 {
125 char *killer = NULL;
126
127 panic_on_oops = 1; /* force panic */
128 wmb();
129 *killer = 1;
130 }
131 static struct sysrq_key_op sysrq_crash_op = {
132 .handler = sysrq_handle_crash,
133 .help_msg = "Crash",
134 .action_msg = "Trigger a crash",
135 .enable_mask = SYSRQ_ENABLE_DUMP,
136 };
137
138 static void sysrq_handle_reboot(int key, struct tty_struct *tty)
139 {
140 lockdep_off();
141 local_irq_enable();
142 emergency_restart();
143 }
144 static struct sysrq_key_op sysrq_reboot_op = {
145 .handler = sysrq_handle_reboot,
146 .help_msg = "reBoot",
147 .action_msg = "Resetting",
148 .enable_mask = SYSRQ_ENABLE_BOOT,
149 };
150
151 static void sysrq_handle_sync(int key, struct tty_struct *tty)
152 {
153 emergency_sync();
154 }
155 static struct sysrq_key_op sysrq_sync_op = {
156 .handler = sysrq_handle_sync,
157 .help_msg = "Sync",
158 .action_msg = "Emergency Sync",
159 .enable_mask = SYSRQ_ENABLE_SYNC,
160 };
161
162 static void sysrq_handle_show_timers(int key, struct tty_struct *tty)
163 {
164 sysrq_timer_list_show();
165 }
166
167 static struct sysrq_key_op sysrq_show_timers_op = {
168 .handler = sysrq_handle_show_timers,
169 .help_msg = "show-all-timers(Q)",
170 .action_msg = "Show clockevent devices & pending hrtimers (no others)",
171 };
172
173 static void sysrq_handle_mountro(int key, struct tty_struct *tty)
174 {
175 emergency_remount();
176 }
177 static struct sysrq_key_op sysrq_mountro_op = {
178 .handler = sysrq_handle_mountro,
179 .help_msg = "Unmount",
180 .action_msg = "Emergency Remount R/O",
181 .enable_mask = SYSRQ_ENABLE_REMOUNT,
182 };
183
184 #ifdef CONFIG_LOCKDEP
185 static void sysrq_handle_showlocks(int key, struct tty_struct *tty)
186 {
187 debug_show_all_locks();
188 }
189
190 static struct sysrq_key_op sysrq_showlocks_op = {
191 .handler = sysrq_handle_showlocks,
192 .help_msg = "show-all-locks(D)",
193 .action_msg = "Show Locks Held",
194 };
195 #else
196 #define sysrq_showlocks_op (*(struct sysrq_key_op *)0)
197 #endif
198
199 #ifdef CONFIG_SMP
200 static DEFINE_SPINLOCK(show_lock);
201
202 static void showacpu(void *dummy)
203 {
204 unsigned long flags;
205
206 /* Idle CPUs have no interesting backtrace. */
207 if (idle_cpu(smp_processor_id()))
208 return;
209
210 spin_lock_irqsave(&show_lock, flags);
211 printk(KERN_INFO "CPU%d:\n", smp_processor_id());
212 show_stack(NULL, NULL);
213 spin_unlock_irqrestore(&show_lock, flags);
214 }
215
216 static void sysrq_showregs_othercpus(struct work_struct *dummy)
217 {
218 smp_call_function(showacpu, NULL, 0);
219 }
220
221 static DECLARE_WORK(sysrq_showallcpus, sysrq_showregs_othercpus);
222
223 static void sysrq_handle_showallcpus(int key, struct tty_struct *tty)
224 {
225 struct pt_regs *regs = get_irq_regs();
226 if (regs) {
227 printk(KERN_INFO "CPU%d:\n", smp_processor_id());
228 show_regs(regs);
229 }
230 schedule_work(&sysrq_showallcpus);
231 }
232
233 static struct sysrq_key_op sysrq_showallcpus_op = {
234 .handler = sysrq_handle_showallcpus,
235 .help_msg = "show-backtrace-all-active-cpus(L)",
236 .action_msg = "Show backtrace of all active CPUs",
237 .enable_mask = SYSRQ_ENABLE_DUMP,
238 };
239 #endif
240
241 static void sysrq_handle_showregs(int key, struct tty_struct *tty)
242 {
243 struct pt_regs *regs = get_irq_regs();
244 if (regs)
245 show_regs(regs);
246 perf_counter_print_debug();
247 }
248 static struct sysrq_key_op sysrq_showregs_op = {
249 .handler = sysrq_handle_showregs,
250 .help_msg = "show-registers(P)",
251 .action_msg = "Show Regs",
252 .enable_mask = SYSRQ_ENABLE_DUMP,
253 };
254
255 static void sysrq_handle_showstate(int key, struct tty_struct *tty)
256 {
257 show_state();
258 }
259 static struct sysrq_key_op sysrq_showstate_op = {
260 .handler = sysrq_handle_showstate,
261 .help_msg = "show-task-states(T)",
262 .action_msg = "Show State",
263 .enable_mask = SYSRQ_ENABLE_DUMP,
264 };
265
266 static void sysrq_handle_showstate_blocked(int key, struct tty_struct *tty)
267 {
268 show_state_filter(TASK_UNINTERRUPTIBLE);
269 }
270 static struct sysrq_key_op sysrq_showstate_blocked_op = {
271 .handler = sysrq_handle_showstate_blocked,
272 .help_msg = "show-blocked-tasks(W)",
273 .action_msg = "Show Blocked State",
274 .enable_mask = SYSRQ_ENABLE_DUMP,
275 };
276
277 #ifdef CONFIG_TRACING
278 #include <linux/ftrace.h>
279
280 static void sysrq_ftrace_dump(int key, struct tty_struct *tty)
281 {
282 ftrace_dump();
283 }
284 static struct sysrq_key_op sysrq_ftrace_dump_op = {
285 .handler = sysrq_ftrace_dump,
286 .help_msg = "dump-ftrace-buffer(Z)",
287 .action_msg = "Dump ftrace buffer",
288 .enable_mask = SYSRQ_ENABLE_DUMP,
289 };
290 #else
291 #define sysrq_ftrace_dump_op (*(struct sysrq_key_op *)0)
292 #endif
293
294 static void sysrq_handle_showmem(int key, struct tty_struct *tty)
295 {
296 show_mem();
297 }
298 static struct sysrq_key_op sysrq_showmem_op = {
299 .handler = sysrq_handle_showmem,
300 .help_msg = "show-memory-usage(M)",
301 .action_msg = "Show Memory",
302 .enable_mask = SYSRQ_ENABLE_DUMP,
303 };
304
305 /*
306 * Signal sysrq helper function. Sends a signal to all user processes.
307 */
308 static void send_sig_all(int sig)
309 {
310 struct task_struct *p;
311
312 for_each_process(p) {
313 if (p->mm && !is_global_init(p))
314 /* Not swapper, init nor kernel thread */
315 force_sig(sig, p);
316 }
317 }
318
319 static void sysrq_handle_term(int key, struct tty_struct *tty)
320 {
321 send_sig_all(SIGTERM);
322 console_loglevel = 8;
323 }
324 static struct sysrq_key_op sysrq_term_op = {
325 .handler = sysrq_handle_term,
326 .help_msg = "terminate-all-tasks(E)",
327 .action_msg = "Terminate All Tasks",
328 .enable_mask = SYSRQ_ENABLE_SIGNAL,
329 };
330
331 static void moom_callback(struct work_struct *ignored)
332 {
333 out_of_memory(node_zonelist(0, GFP_KERNEL), GFP_KERNEL, 0);
334 }
335
336 static DECLARE_WORK(moom_work, moom_callback);
337
338 static void sysrq_handle_moom(int key, struct tty_struct *tty)
339 {
340 schedule_work(&moom_work);
341 }
342 static struct sysrq_key_op sysrq_moom_op = {
343 .handler = sysrq_handle_moom,
344 .help_msg = "memory-full-oom-kill(F)",
345 .action_msg = "Manual OOM execution",
346 .enable_mask = SYSRQ_ENABLE_SIGNAL,
347 };
348
349 #ifdef CONFIG_BLOCK
350 static void sysrq_handle_thaw(int key, struct tty_struct *tty)
351 {
352 emergency_thaw_all();
353 }
354 static struct sysrq_key_op sysrq_thaw_op = {
355 .handler = sysrq_handle_thaw,
356 .help_msg = "thaw-filesystems(J)",
357 .action_msg = "Emergency Thaw of all frozen filesystems",
358 .enable_mask = SYSRQ_ENABLE_SIGNAL,
359 };
360 #endif
361
362 static void sysrq_handle_kill(int key, struct tty_struct *tty)
363 {
364 send_sig_all(SIGKILL);
365 console_loglevel = 8;
366 }
367 static struct sysrq_key_op sysrq_kill_op = {
368 .handler = sysrq_handle_kill,
369 .help_msg = "kill-all-tasks(I)",
370 .action_msg = "Kill All Tasks",
371 .enable_mask = SYSRQ_ENABLE_SIGNAL,
372 };
373
374 static void sysrq_handle_unrt(int key, struct tty_struct *tty)
375 {
376 normalize_rt_tasks();
377 }
378 static struct sysrq_key_op sysrq_unrt_op = {
379 .handler = sysrq_handle_unrt,
380 .help_msg = "nice-all-RT-tasks(N)",
381 .action_msg = "Nice All RT Tasks",
382 .enable_mask = SYSRQ_ENABLE_RTNICE,
383 };
384
385 /* Key Operations table and lock */
386 static DEFINE_SPINLOCK(sysrq_key_table_lock);
387
388 static struct sysrq_key_op *sysrq_key_table[36] = {
389 &sysrq_loglevel_op, /* 0 */
390 &sysrq_loglevel_op, /* 1 */
391 &sysrq_loglevel_op, /* 2 */
392 &sysrq_loglevel_op, /* 3 */
393 &sysrq_loglevel_op, /* 4 */
394 &sysrq_loglevel_op, /* 5 */
395 &sysrq_loglevel_op, /* 6 */
396 &sysrq_loglevel_op, /* 7 */
397 &sysrq_loglevel_op, /* 8 */
398 &sysrq_loglevel_op, /* 9 */
399
400 /*
401 * a: Don't use for system provided sysrqs, it is handled specially on
402 * sparc and will never arrive.
403 */
404 NULL, /* a */
405 &sysrq_reboot_op, /* b */
406 &sysrq_crash_op, /* c & ibm_emac driver debug */
407 &sysrq_showlocks_op, /* d */
408 &sysrq_term_op, /* e */
409 &sysrq_moom_op, /* f */
410 /* g: May be registered for the kernel debugger */
411 NULL, /* g */
412 NULL, /* h - reserved for help */
413 &sysrq_kill_op, /* i */
414 #ifdef CONFIG_BLOCK
415 &sysrq_thaw_op, /* j */
416 #else
417 NULL, /* j */
418 #endif
419 &sysrq_SAK_op, /* k */
420 #ifdef CONFIG_SMP
421 &sysrq_showallcpus_op, /* l */
422 #else
423 NULL, /* l */
424 #endif
425 &sysrq_showmem_op, /* m */
426 &sysrq_unrt_op, /* n */
427 /* o: This will often be registered as 'Off' at init time */
428 NULL, /* o */
429 &sysrq_showregs_op, /* p */
430 &sysrq_show_timers_op, /* q */
431 &sysrq_unraw_op, /* r */
432 &sysrq_sync_op, /* s */
433 &sysrq_showstate_op, /* t */
434 &sysrq_mountro_op, /* u */
435 /* v: May be registered for frame buffer console restore */
436 NULL, /* v */
437 &sysrq_showstate_blocked_op, /* w */
438 /* x: May be registered on ppc/powerpc for xmon */
439 NULL, /* x */
440 /* y: May be registered on sparc64 for global register dump */
441 NULL, /* y */
442 &sysrq_ftrace_dump_op, /* z */
443 };
444
445 /* key2index calculation, -1 on invalid index */
446 static int sysrq_key_table_key2index(int key)
447 {
448 int retval;
449
450 if ((key >= '0') && (key <= '9'))
451 retval = key - '0';
452 else if ((key >= 'a') && (key <= 'z'))
453 retval = key + 10 - 'a';
454 else
455 retval = -1;
456 return retval;
457 }
458
459 /*
460 * get and put functions for the table, exposed to modules.
461 */
462 struct sysrq_key_op *__sysrq_get_key_op(int key)
463 {
464 struct sysrq_key_op *op_p = NULL;
465 int i;
466
467 i = sysrq_key_table_key2index(key);
468 if (i != -1)
469 op_p = sysrq_key_table[i];
470 return op_p;
471 }
472
473 static void __sysrq_put_key_op(int key, struct sysrq_key_op *op_p)
474 {
475 int i = sysrq_key_table_key2index(key);
476
477 if (i != -1)
478 sysrq_key_table[i] = op_p;
479 }
480
481 /*
482 * This is the non-locking version of handle_sysrq. It must/can only be called
483 * by sysrq key handlers, as they are inside of the lock
484 */
485 void __handle_sysrq(int key, struct tty_struct *tty, int check_mask)
486 {
487 struct sysrq_key_op *op_p;
488 int orig_log_level;
489 int i;
490 unsigned long flags;
491
492 spin_lock_irqsave(&sysrq_key_table_lock, flags);
493 /*
494 * Raise the apparent loglevel to maximum so that the sysrq header
495 * is shown to provide the user with positive feedback. We do not
496 * simply emit this at KERN_EMERG as that would change message
497 * routing in the consumers of /proc/kmsg.
498 */
499 orig_log_level = console_loglevel;
500 console_loglevel = 7;
501 printk(KERN_INFO "SysRq : ");
502
503 op_p = __sysrq_get_key_op(key);
504 if (op_p) {
505 /*
506 * Should we check for enabled operations (/proc/sysrq-trigger
507 * should not) and is the invoked operation enabled?
508 */
509 if (!check_mask || sysrq_on_mask(op_p->enable_mask)) {
510 printk("%s\n", op_p->action_msg);
511 console_loglevel = orig_log_level;
512 op_p->handler(key, tty);
513 } else {
514 printk("This sysrq operation is disabled.\n");
515 }
516 } else {
517 printk("HELP : ");
518 /* Only print the help msg once per handler */
519 for (i = 0; i < ARRAY_SIZE(sysrq_key_table); i++) {
520 if (sysrq_key_table[i]) {
521 int j;
522
523 for (j = 0; sysrq_key_table[i] !=
524 sysrq_key_table[j]; j++)
525 ;
526 if (j != i)
527 continue;
528 printk("%s ", sysrq_key_table[i]->help_msg);
529 }
530 }
531 printk("\n");
532 console_loglevel = orig_log_level;
533 }
534 spin_unlock_irqrestore(&sysrq_key_table_lock, flags);
535 }
536
537 /*
538 * This function is called by the keyboard handler when SysRq is pressed
539 * and any other keycode arrives.
540 */
541 void handle_sysrq(int key, struct tty_struct *tty)
542 {
543 if (sysrq_on())
544 __handle_sysrq(key, tty, 1);
545 }
546 EXPORT_SYMBOL(handle_sysrq);
547
548 static int __sysrq_swap_key_ops(int key, struct sysrq_key_op *insert_op_p,
549 struct sysrq_key_op *remove_op_p)
550 {
551
552 int retval;
553 unsigned long flags;
554
555 spin_lock_irqsave(&sysrq_key_table_lock, flags);
556 if (__sysrq_get_key_op(key) == remove_op_p) {
557 __sysrq_put_key_op(key, insert_op_p);
558 retval = 0;
559 } else {
560 retval = -1;
561 }
562 spin_unlock_irqrestore(&sysrq_key_table_lock, flags);
563 return retval;
564 }
565
566 int register_sysrq_key(int key, struct sysrq_key_op *op_p)
567 {
568 return __sysrq_swap_key_ops(key, op_p, NULL);
569 }
570 EXPORT_SYMBOL(register_sysrq_key);
571
572 int unregister_sysrq_key(int key, struct sysrq_key_op *op_p)
573 {
574 return __sysrq_swap_key_ops(key, NULL, op_p);
575 }
576 EXPORT_SYMBOL(unregister_sysrq_key);
577
578 #ifdef CONFIG_PROC_FS
579 /*
580 * writing 'C' to /proc/sysrq-trigger is like sysrq-C
581 */
582 static ssize_t write_sysrq_trigger(struct file *file, const char __user *buf,
583 size_t count, loff_t *ppos)
584 {
585 if (count) {
586 char c;
587
588 if (get_user(c, buf))
589 return -EFAULT;
590 __handle_sysrq(c, NULL, 0);
591 }
592 return count;
593 }
594
595 static const struct file_operations proc_sysrq_trigger_operations = {
596 .write = write_sysrq_trigger,
597 };
598
599 static int __init sysrq_init(void)
600 {
601 proc_create("sysrq-trigger", S_IWUSR, NULL, &proc_sysrq_trigger_operations);
602 return 0;
603 }
604 module_init(sysrq_init);
605 #endif
This page took 0.042964 seconds and 6 git commands to generate.