3 * $Id: sysrq.c,v 1.15 1998/08/23 14:56:41 mj Exp $
5 * Linux Magic System Request Key Hacks
7 * (c) 1997 Martin Mares <mj@atrey.karlin.mff.cuni.cz>
8 * based on ideas by Pavel Machek <pavel@atrey.karlin.mff.cuni.cz>
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
15 #include <linux/sched.h>
16 #include <linux/interrupt.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/quotaops.h>
27 #include <linux/smp_lock.h>
28 #include <linux/kernel.h>
29 #include <linux/module.h>
30 #include <linux/suspend.h>
31 #include <linux/writeback.h>
32 #include <linux/buffer_head.h> /* for fsync_bdev() */
33 #include <linux/swap.h>
34 #include <linux/spinlock.h>
35 #include <linux/vt_kern.h>
36 #include <linux/workqueue.h>
37 #include <linux/kexec.h>
38 #include <linux/irq.h>
40 #include <asm/ptrace.h>
41 #include <asm/irq_regs.h>
43 /* Whether we react on sysrq keys or just ignore them */
44 int sysrq_enabled
= 1;
46 static void sysrq_handle_loglevel(int key
, struct tty_struct
*tty
)
51 printk("Loglevel set to %d\n", i
);
54 static struct sysrq_key_op sysrq_loglevel_op
= {
55 .handler
= sysrq_handle_loglevel
,
56 .help_msg
= "loglevel0-8",
57 .action_msg
= "Changing Loglevel",
58 .enable_mask
= SYSRQ_ENABLE_LOG
,
62 static void sysrq_handle_SAK(int key
, struct tty_struct
*tty
)
66 reset_vc(vc_cons
[fg_console
].d
);
68 static struct sysrq_key_op sysrq_SAK_op
= {
69 .handler
= sysrq_handle_SAK
,
72 .enable_mask
= SYSRQ_ENABLE_KEYBOARD
,
75 #define sysrq_SAK_op (*(struct sysrq_key_op *)0)
79 static void sysrq_handle_unraw(int key
, struct tty_struct
*tty
)
81 struct kbd_struct
*kbd
= &kbd_table
[fg_console
];
84 kbd
->kbdmode
= VC_XLATE
;
86 static struct sysrq_key_op sysrq_unraw_op
= {
87 .handler
= sysrq_handle_unraw
,
89 .action_msg
= "Keyboard mode set to XLATE",
90 .enable_mask
= SYSRQ_ENABLE_KEYBOARD
,
93 #define sysrq_unraw_op (*(struct sysrq_key_op *)0)
94 #endif /* CONFIG_VT */
97 static void sysrq_handle_crashdump(int key
, struct tty_struct
*tty
)
99 crash_kexec(get_irq_regs());
101 static struct sysrq_key_op sysrq_crashdump_op
= {
102 .handler
= sysrq_handle_crashdump
,
103 .help_msg
= "Crashdump",
104 .action_msg
= "Trigger a crashdump",
105 .enable_mask
= SYSRQ_ENABLE_DUMP
,
108 #define sysrq_crashdump_op (*(struct sysrq_key_op *)0)
111 static void sysrq_handle_reboot(int key
, struct tty_struct
*tty
)
117 static struct sysrq_key_op sysrq_reboot_op
= {
118 .handler
= sysrq_handle_reboot
,
119 .help_msg
= "reBoot",
120 .action_msg
= "Resetting",
121 .enable_mask
= SYSRQ_ENABLE_BOOT
,
124 static void sysrq_handle_sync(int key
, struct tty_struct
*tty
)
128 static struct sysrq_key_op sysrq_sync_op
= {
129 .handler
= sysrq_handle_sync
,
131 .action_msg
= "Emergency Sync",
132 .enable_mask
= SYSRQ_ENABLE_SYNC
,
135 static void sysrq_handle_mountro(int key
, struct tty_struct
*tty
)
139 static struct sysrq_key_op sysrq_mountro_op
= {
140 .handler
= sysrq_handle_mountro
,
141 .help_msg
= "Unmount",
142 .action_msg
= "Emergency Remount R/O",
143 .enable_mask
= SYSRQ_ENABLE_REMOUNT
,
146 #ifdef CONFIG_LOCKDEP
147 static void sysrq_handle_showlocks(int key
, struct tty_struct
*tty
)
149 debug_show_all_locks();
152 static struct sysrq_key_op sysrq_showlocks_op
= {
153 .handler
= sysrq_handle_showlocks
,
154 .help_msg
= "show-all-locks(D)",
155 .action_msg
= "Show Locks Held",
158 #define sysrq_showlocks_op (*(struct sysrq_key_op *)0)
161 static void sysrq_handle_showregs(int key
, struct tty_struct
*tty
)
163 struct pt_regs
*regs
= get_irq_regs();
167 static struct sysrq_key_op sysrq_showregs_op
= {
168 .handler
= sysrq_handle_showregs
,
169 .help_msg
= "showPc",
170 .action_msg
= "Show Regs",
171 .enable_mask
= SYSRQ_ENABLE_DUMP
,
174 static void sysrq_handle_showstate(int key
, struct tty_struct
*tty
)
178 static struct sysrq_key_op sysrq_showstate_op
= {
179 .handler
= sysrq_handle_showstate
,
180 .help_msg
= "showTasks",
181 .action_msg
= "Show State",
182 .enable_mask
= SYSRQ_ENABLE_DUMP
,
185 static void sysrq_handle_showstate_blocked(int key
, struct tty_struct
*tty
)
187 show_state_filter(TASK_UNINTERRUPTIBLE
);
189 static struct sysrq_key_op sysrq_showstate_blocked_op
= {
190 .handler
= sysrq_handle_showstate_blocked
,
191 .help_msg
= "showBlockedTasks",
192 .action_msg
= "Show Blocked State",
193 .enable_mask
= SYSRQ_ENABLE_DUMP
,
197 static void sysrq_handle_showmem(int key
, struct tty_struct
*tty
)
201 static struct sysrq_key_op sysrq_showmem_op
= {
202 .handler
= sysrq_handle_showmem
,
203 .help_msg
= "showMem",
204 .action_msg
= "Show Memory",
205 .enable_mask
= SYSRQ_ENABLE_DUMP
,
209 * Signal sysrq helper function. Sends a signal to all user processes.
211 static void send_sig_all(int sig
)
213 struct task_struct
*p
;
215 for_each_process(p
) {
216 if (p
->mm
&& !is_init(p
))
217 /* Not swapper, init nor kernel thread */
222 static void sysrq_handle_term(int key
, struct tty_struct
*tty
)
224 send_sig_all(SIGTERM
);
225 console_loglevel
= 8;
227 static struct sysrq_key_op sysrq_term_op
= {
228 .handler
= sysrq_handle_term
,
230 .action_msg
= "Terminate All Tasks",
231 .enable_mask
= SYSRQ_ENABLE_SIGNAL
,
234 static void moom_callback(struct work_struct
*ignored
)
236 out_of_memory(&NODE_DATA(0)->node_zonelists
[ZONE_NORMAL
],
240 static DECLARE_WORK(moom_work
, moom_callback
);
242 static void sysrq_handle_moom(int key
, struct tty_struct
*tty
)
244 schedule_work(&moom_work
);
246 static struct sysrq_key_op sysrq_moom_op
= {
247 .handler
= sysrq_handle_moom
,
249 .action_msg
= "Manual OOM execution",
252 static void sysrq_handle_kill(int key
, struct tty_struct
*tty
)
254 send_sig_all(SIGKILL
);
255 console_loglevel
= 8;
257 static struct sysrq_key_op sysrq_kill_op
= {
258 .handler
= sysrq_handle_kill
,
260 .action_msg
= "Kill All Tasks",
261 .enable_mask
= SYSRQ_ENABLE_SIGNAL
,
264 static void sysrq_handle_unrt(int key
, struct tty_struct
*tty
)
266 normalize_rt_tasks();
268 static struct sysrq_key_op sysrq_unrt_op
= {
269 .handler
= sysrq_handle_unrt
,
271 .action_msg
= "Nice All RT Tasks",
272 .enable_mask
= SYSRQ_ENABLE_RTNICE
,
275 /* Key Operations table and lock */
276 static DEFINE_SPINLOCK(sysrq_key_table_lock
);
278 static struct sysrq_key_op
*sysrq_key_table
[36] = {
279 &sysrq_loglevel_op
, /* 0 */
280 &sysrq_loglevel_op
, /* 1 */
281 &sysrq_loglevel_op
, /* 2 */
282 &sysrq_loglevel_op
, /* 3 */
283 &sysrq_loglevel_op
, /* 4 */
284 &sysrq_loglevel_op
, /* 5 */
285 &sysrq_loglevel_op
, /* 6 */
286 &sysrq_loglevel_op
, /* 7 */
287 &sysrq_loglevel_op
, /* 8 */
288 &sysrq_loglevel_op
, /* 9 */
291 * Don't use for system provided sysrqs, it is handled specially on
292 * sparc and will never arrive
295 &sysrq_reboot_op
, /* b */
296 &sysrq_crashdump_op
, /* c */
297 &sysrq_showlocks_op
, /* d */
298 &sysrq_term_op
, /* e */
299 &sysrq_moom_op
, /* f */
302 &sysrq_kill_op
, /* i */
304 &sysrq_SAK_op
, /* k */
306 &sysrq_showmem_op
, /* m */
307 &sysrq_unrt_op
, /* n */
308 /* This will often be registered as 'Off' at init time */
310 &sysrq_showregs_op
, /* p */
312 &sysrq_unraw_op
, /* r */
313 &sysrq_sync_op
, /* s */
314 &sysrq_showstate_op
, /* t */
315 &sysrq_mountro_op
, /* u */
316 /* May be assigned at init time by SMP VOYAGER */
319 &sysrq_showstate_blocked_op
, /* x */
324 /* key2index calculation, -1 on invalid index */
325 static int sysrq_key_table_key2index(int key
)
329 if ((key
>= '0') && (key
<= '9'))
331 else if ((key
>= 'a') && (key
<= 'z'))
332 retval
= key
+ 10 - 'a';
339 * get and put functions for the table, exposed to modules.
341 struct sysrq_key_op
*__sysrq_get_key_op(int key
)
343 struct sysrq_key_op
*op_p
= NULL
;
346 i
= sysrq_key_table_key2index(key
);
348 op_p
= sysrq_key_table
[i
];
352 static void __sysrq_put_key_op(int key
, struct sysrq_key_op
*op_p
)
354 int i
= sysrq_key_table_key2index(key
);
357 sysrq_key_table
[i
] = op_p
;
361 * This is the non-locking version of handle_sysrq. It must/can only be called
362 * by sysrq key handlers, as they are inside of the lock
364 void __handle_sysrq(int key
, struct tty_struct
*tty
, int check_mask
)
366 struct sysrq_key_op
*op_p
;
371 spin_lock_irqsave(&sysrq_key_table_lock
, flags
);
372 orig_log_level
= console_loglevel
;
373 console_loglevel
= 7;
374 printk(KERN_INFO
"SysRq : ");
376 op_p
= __sysrq_get_key_op(key
);
379 * Should we check for enabled operations (/proc/sysrq-trigger
380 * should not) and is the invoked operation enabled?
382 if (!check_mask
|| sysrq_enabled
== 1 ||
383 (sysrq_enabled
& op_p
->enable_mask
)) {
384 printk("%s\n", op_p
->action_msg
);
385 console_loglevel
= orig_log_level
;
386 op_p
->handler(key
, tty
);
388 printk("This sysrq operation is disabled.\n");
392 /* Only print the help msg once per handler */
393 for (i
= 0; i
< ARRAY_SIZE(sysrq_key_table
); i
++) {
394 if (sysrq_key_table
[i
]) {
397 for (j
= 0; sysrq_key_table
[i
] !=
398 sysrq_key_table
[j
]; j
++)
402 printk("%s ", sysrq_key_table
[i
]->help_msg
);
406 console_loglevel
= orig_log_level
;
408 spin_unlock_irqrestore(&sysrq_key_table_lock
, flags
);
412 * This function is called by the keyboard handler when SysRq is pressed
413 * and any other keycode arrives.
415 void handle_sysrq(int key
, struct tty_struct
*tty
)
419 __handle_sysrq(key
, tty
, 1);
421 EXPORT_SYMBOL(handle_sysrq
);
423 static int __sysrq_swap_key_ops(int key
, struct sysrq_key_op
*insert_op_p
,
424 struct sysrq_key_op
*remove_op_p
)
430 spin_lock_irqsave(&sysrq_key_table_lock
, flags
);
431 if (__sysrq_get_key_op(key
) == remove_op_p
) {
432 __sysrq_put_key_op(key
, insert_op_p
);
437 spin_unlock_irqrestore(&sysrq_key_table_lock
, flags
);
441 int register_sysrq_key(int key
, struct sysrq_key_op
*op_p
)
443 return __sysrq_swap_key_ops(key
, op_p
, NULL
);
445 EXPORT_SYMBOL(register_sysrq_key
);
447 int unregister_sysrq_key(int key
, struct sysrq_key_op
*op_p
)
449 return __sysrq_swap_key_ops(key
, NULL
, op_p
);
451 EXPORT_SYMBOL(unregister_sysrq_key
);