blob: 40e5b3919e279ee771e9c99603b119bf175492c3 [file] [log] [blame]
Dmitry Torokhov97f5f0c2010-03-21 22:31:26 -07001/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 * Linux Magic System Request Key Hacks
3 *
4 * (c) 1997 Martin Mares <mj@atrey.karlin.mff.cuni.cz>
5 * based on ideas by Pavel Machek <pavel@atrey.karlin.mff.cuni.cz>
6 *
7 * (c) 2000 Crutcher Dunnavant <crutcher+kernel@datastacks.com>
8 * overhauled to use key registration
9 * based upon discusions in irc://irc.openprojects.net/#kernelnewbies
Dmitry Torokhov97f5f0c2010-03-21 22:31:26 -070010 *
11 * Copyright (c) 2010 Dmitry Torokhov
12 * Input handler conversion
Linus Torvalds1da177e2005-04-16 15:20:36 -070013 */
14
Dmitry Torokhov97f5f0c2010-03-21 22:31:26 -070015#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
16
Linus Torvalds1da177e2005-04-16 15:20:36 -070017#include <linux/sched.h>
Clark Williams8bd75c72013-02-07 09:47:07 -060018#include <linux/sched/rt.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070019#include <linux/interrupt.h>
20#include <linux/mm.h>
21#include <linux/fs.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#include <linux/mount.h>
23#include <linux/kdev_t.h>
24#include <linux/major.h>
25#include <linux/reboot.h>
26#include <linux/sysrq.h>
27#include <linux/kbd_kern.h>
Alexey Dobriyanf40cbaa2008-10-15 22:04:23 -070028#include <linux/proc_fs.h>
Ingo Molnarc1dc0b92009-08-02 11:28:21 +020029#include <linux/nmi.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070030#include <linux/quotaops.h>
Ingo Molnarcdd6c482009-09-21 12:02:48 +020031#include <linux/perf_event.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070032#include <linux/kernel.h>
33#include <linux/module.h>
34#include <linux/suspend.h>
35#include <linux/writeback.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070036#include <linux/swap.h>
37#include <linux/spinlock.h>
38#include <linux/vt_kern.h>
39#include <linux/workqueue.h>
Ingo Molnar88ad0bf62007-02-16 01:28:16 -080040#include <linux/hrtimer.h>
David Rientjes5a3135c22007-10-16 23:25:53 -070041#include <linux/oom.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090042#include <linux/slab.h>
Dmitry Torokhov97f5f0c2010-03-21 22:31:26 -070043#include <linux/input.h>
Al Viroff01bb42011-09-16 02:31:11 -040044#include <linux/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070045
46#include <asm/ptrace.h>
Heiko Carstens2033b0c2006-10-06 16:38:42 +020047#include <asm/irq_regs.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070048
49/* Whether we react on sysrq keys or just ignore them */
Andy Whitcroft8c6a98b2011-01-24 09:31:38 -080050static int __read_mostly sysrq_enabled = SYSRQ_DEFAULT_ENABLE;
Dmitry Torokhov97f5f0c2010-03-21 22:31:26 -070051static bool __read_mostly sysrq_always_enabled;
Ingo Molnar5d6f6472006-12-13 00:34:36 -080052
Dmitry Torokhov97f5f0c2010-03-21 22:31:26 -070053static bool sysrq_on(void)
Ingo Molnar5d6f6472006-12-13 00:34:36 -080054{
Dmitry Torokhov97f5f0c2010-03-21 22:31:26 -070055 return sysrq_enabled || sysrq_always_enabled;
Ingo Molnar5d6f6472006-12-13 00:34:36 -080056}
57
58/*
59 * A value of 1 means 'all', other nonzero values are an op mask:
60 */
Dmitry Torokhov97f5f0c2010-03-21 22:31:26 -070061static bool sysrq_on_mask(int mask)
Ingo Molnar5d6f6472006-12-13 00:34:36 -080062{
Dmitry Torokhov97f5f0c2010-03-21 22:31:26 -070063 return sysrq_always_enabled ||
64 sysrq_enabled == 1 ||
65 (sysrq_enabled & mask);
Ingo Molnar5d6f6472006-12-13 00:34:36 -080066}
67
68static int __init sysrq_always_enabled_setup(char *str)
69{
Dmitry Torokhov97f5f0c2010-03-21 22:31:26 -070070 sysrq_always_enabled = true;
71 pr_info("sysrq always enabled.\n");
Ingo Molnar5d6f6472006-12-13 00:34:36 -080072
73 return 1;
74}
75
76__setup("sysrq_always_enabled", sysrq_always_enabled_setup);
77
Linus Torvalds1da177e2005-04-16 15:20:36 -070078
Dmitry Torokhov1495cc92010-08-17 21:15:46 -070079static void sysrq_handle_loglevel(int key)
Linus Torvalds1da177e2005-04-16 15:20:36 -070080{
81 int i;
Dmitry Torokhov97f5f0c2010-03-21 22:31:26 -070082
Linus Torvalds1da177e2005-04-16 15:20:36 -070083 i = key - '0';
84 console_loglevel = 7;
85 printk("Loglevel set to %d\n", i);
86 console_loglevel = i;
Andrew Mortonbf36b902006-03-25 03:07:08 -080087}
Linus Torvalds1da177e2005-04-16 15:20:36 -070088static struct sysrq_key_op sysrq_loglevel_op = {
89 .handler = sysrq_handle_loglevel,
Randy Dunlap208b95c2009-01-06 14:41:13 -080090 .help_msg = "loglevel(0-9)",
Linus Torvalds1da177e2005-04-16 15:20:36 -070091 .action_msg = "Changing Loglevel",
92 .enable_mask = SYSRQ_ENABLE_LOG,
93};
94
Linus Torvalds1da177e2005-04-16 15:20:36 -070095#ifdef CONFIG_VT
Dmitry Torokhov1495cc92010-08-17 21:15:46 -070096static void sysrq_handle_SAK(int key)
Linus Torvalds1da177e2005-04-16 15:20:36 -070097{
Eric W. Biederman8b6312f2007-02-10 01:44:34 -080098 struct work_struct *SAK_work = &vc_cons[fg_console].SAK_work;
Eric W. Biederman8b6312f2007-02-10 01:44:34 -080099 schedule_work(SAK_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100}
101static struct sysrq_key_op sysrq_SAK_op = {
102 .handler = sysrq_handle_SAK,
103 .help_msg = "saK",
104 .action_msg = "SAK",
105 .enable_mask = SYSRQ_ENABLE_KEYBOARD,
106};
Andrew Mortonbf36b902006-03-25 03:07:08 -0800107#else
Dmitry Torokhov97f5f0c2010-03-21 22:31:26 -0700108#define sysrq_SAK_op (*(struct sysrq_key_op *)NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109#endif
110
111#ifdef CONFIG_VT
Dmitry Torokhov1495cc92010-08-17 21:15:46 -0700112static void sysrq_handle_unraw(int key)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113{
Alan Cox079c9532012-02-28 14:49:23 +0000114 vt_reset_unicode(fg_console);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115}
Alan Cox079c9532012-02-28 14:49:23 +0000116
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117static struct sysrq_key_op sysrq_unraw_op = {
118 .handler = sysrq_handle_unraw,
119 .help_msg = "unRaw",
Bill Nottingham2e8ecb92007-10-16 23:29:38 -0700120 .action_msg = "Keyboard mode set to system default",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121 .enable_mask = SYSRQ_ENABLE_KEYBOARD,
122};
Andrew Mortonbf36b902006-03-25 03:07:08 -0800123#else
Dmitry Torokhov97f5f0c2010-03-21 22:31:26 -0700124#define sysrq_unraw_op (*(struct sysrq_key_op *)NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125#endif /* CONFIG_VT */
126
Dmitry Torokhov1495cc92010-08-17 21:15:46 -0700127static void sysrq_handle_crash(int key)
Hariprasad Nellitheertha86b1ae32005-06-25 14:58:25 -0700128{
Neil Hormand6580a92009-06-17 16:28:17 -0700129 char *killer = NULL;
Hidetoshi Setocab8bd32009-07-29 15:04:14 -0700130
131 panic_on_oops = 1; /* force panic */
132 wmb();
Neil Hormand6580a92009-06-17 16:28:17 -0700133 *killer = 1;
Hariprasad Nellitheertha86b1ae32005-06-25 14:58:25 -0700134}
Hidetoshi Setocab8bd32009-07-29 15:04:14 -0700135static struct sysrq_key_op sysrq_crash_op = {
Neil Hormand6580a92009-06-17 16:28:17 -0700136 .handler = sysrq_handle_crash,
137 .help_msg = "Crash",
138 .action_msg = "Trigger a crash",
Hariprasad Nellitheertha86b1ae32005-06-25 14:58:25 -0700139 .enable_mask = SYSRQ_ENABLE_DUMP,
140};
Hariprasad Nellitheertha86b1ae32005-06-25 14:58:25 -0700141
Dmitry Torokhov1495cc92010-08-17 21:15:46 -0700142static void sysrq_handle_reboot(int key)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143{
Peter Zijlstrab2e9c7d2006-09-30 23:28:02 -0700144 lockdep_off();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145 local_irq_enable();
Eric W. Biederman4de8b9b2005-07-26 11:51:06 -0600146 emergency_restart();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148static struct sysrq_key_op sysrq_reboot_op = {
149 .handler = sysrq_handle_reboot,
150 .help_msg = "reBoot",
151 .action_msg = "Resetting",
152 .enable_mask = SYSRQ_ENABLE_BOOT,
153};
154
Dmitry Torokhov1495cc92010-08-17 21:15:46 -0700155static void sysrq_handle_sync(int key)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156{
157 emergency_sync();
158}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159static struct sysrq_key_op sysrq_sync_op = {
160 .handler = sysrq_handle_sync,
161 .help_msg = "Sync",
162 .action_msg = "Emergency Sync",
163 .enable_mask = SYSRQ_ENABLE_SYNC,
164};
165
Dmitry Torokhov1495cc92010-08-17 21:15:46 -0700166static void sysrq_handle_show_timers(int key)
Ingo Molnar88ad0bf62007-02-16 01:28:16 -0800167{
168 sysrq_timer_list_show();
169}
170
171static struct sysrq_key_op sysrq_show_timers_op = {
172 .handler = sysrq_handle_show_timers,
173 .help_msg = "show-all-timers(Q)",
Thomas Gleixner322acf62008-10-20 12:33:14 +0200174 .action_msg = "Show clockevent devices & pending hrtimers (no others)",
Ingo Molnar88ad0bf62007-02-16 01:28:16 -0800175};
176
Dmitry Torokhov1495cc92010-08-17 21:15:46 -0700177static void sysrq_handle_mountro(int key)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178{
179 emergency_remount();
180}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181static struct sysrq_key_op sysrq_mountro_op = {
182 .handler = sysrq_handle_mountro,
183 .help_msg = "Unmount",
184 .action_msg = "Emergency Remount R/O",
185 .enable_mask = SYSRQ_ENABLE_REMOUNT,
186};
187
Ingo Molnar8c645802006-07-03 00:24:56 -0700188#ifdef CONFIG_LOCKDEP
Dmitry Torokhov1495cc92010-08-17 21:15:46 -0700189static void sysrq_handle_showlocks(int key)
Ingo Molnarde5097c2006-01-09 15:59:21 -0800190{
Ingo Molnar9a11b49a2006-07-03 00:24:33 -0700191 debug_show_all_locks();
Ingo Molnarde5097c2006-01-09 15:59:21 -0800192}
Ingo Molnar8c645802006-07-03 00:24:56 -0700193
Ingo Molnarde5097c2006-01-09 15:59:21 -0800194static struct sysrq_key_op sysrq_showlocks_op = {
195 .handler = sysrq_handle_showlocks,
196 .help_msg = "show-all-locks(D)",
197 .action_msg = "Show Locks Held",
198};
Andrew Mortonbf36b902006-03-25 03:07:08 -0800199#else
Dmitry Torokhov97f5f0c2010-03-21 22:31:26 -0700200#define sysrq_showlocks_op (*(struct sysrq_key_op *)NULL)
Ingo Molnarde5097c2006-01-09 15:59:21 -0800201#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202
Rik van Riel5045bca2008-04-29 00:59:21 -0700203#ifdef CONFIG_SMP
204static DEFINE_SPINLOCK(show_lock);
205
206static void showacpu(void *dummy)
207{
208 unsigned long flags;
209
210 /* Idle CPUs have no interesting backtrace. */
211 if (idle_cpu(smp_processor_id()))
212 return;
213
214 spin_lock_irqsave(&show_lock, flags);
215 printk(KERN_INFO "CPU%d:\n", smp_processor_id());
216 show_stack(NULL, NULL);
217 spin_unlock_irqrestore(&show_lock, flags);
218}
219
220static void sysrq_showregs_othercpus(struct work_struct *dummy)
221{
Ingo Molnar8b604d52008-06-27 11:52:45 +0200222 smp_call_function(showacpu, NULL, 0);
Rik van Riel5045bca2008-04-29 00:59:21 -0700223}
224
225static DECLARE_WORK(sysrq_showallcpus, sysrq_showregs_othercpus);
226
Dmitry Torokhov1495cc92010-08-17 21:15:46 -0700227static void sysrq_handle_showallcpus(int key)
Rik van Riel5045bca2008-04-29 00:59:21 -0700228{
Ingo Molnar47cab6a2009-08-03 09:31:54 +0200229 /*
230 * Fall back to the workqueue based printing if the
231 * backtrace printing did not succeed or the
232 * architecture has no support for it:
233 */
234 if (!trigger_all_cpu_backtrace()) {
235 struct pt_regs *regs = get_irq_regs();
236
237 if (regs) {
238 printk(KERN_INFO "CPU%d:\n", smp_processor_id());
239 show_regs(regs);
240 }
241 schedule_work(&sysrq_showallcpus);
242 }
Rik van Riel5045bca2008-04-29 00:59:21 -0700243}
244
245static struct sysrq_key_op sysrq_showallcpus_op = {
246 .handler = sysrq_handle_showallcpus,
Randy Dunlap208b95c2009-01-06 14:41:13 -0800247 .help_msg = "show-backtrace-all-active-cpus(L)",
Rik van Riel5045bca2008-04-29 00:59:21 -0700248 .action_msg = "Show backtrace of all active CPUs",
249 .enable_mask = SYSRQ_ENABLE_DUMP,
250};
251#endif
252
Dmitry Torokhov1495cc92010-08-17 21:15:46 -0700253static void sysrq_handle_showregs(int key)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254{
David Howells7d12e782006-10-05 14:55:46 +0100255 struct pt_regs *regs = get_irq_regs();
256 if (regs)
257 show_regs(regs);
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200258 perf_event_print_debug();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259}
260static struct sysrq_key_op sysrq_showregs_op = {
261 .handler = sysrq_handle_showregs,
Randy Dunlap208b95c2009-01-06 14:41:13 -0800262 .help_msg = "show-registers(P)",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263 .action_msg = "Show Regs",
264 .enable_mask = SYSRQ_ENABLE_DUMP,
265};
266
Dmitry Torokhov1495cc92010-08-17 21:15:46 -0700267static void sysrq_handle_showstate(int key)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268{
269 show_state();
270}
271static struct sysrq_key_op sysrq_showstate_op = {
272 .handler = sysrq_handle_showstate,
Randy Dunlap208b95c2009-01-06 14:41:13 -0800273 .help_msg = "show-task-states(T)",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274 .action_msg = "Show State",
275 .enable_mask = SYSRQ_ENABLE_DUMP,
276};
277
Dmitry Torokhov1495cc92010-08-17 21:15:46 -0700278static void sysrq_handle_showstate_blocked(int key)
Ingo Molnare59e2ae2006-12-06 20:35:59 -0800279{
280 show_state_filter(TASK_UNINTERRUPTIBLE);
281}
282static struct sysrq_key_op sysrq_showstate_blocked_op = {
283 .handler = sysrq_handle_showstate_blocked,
Randy Dunlap208b95c2009-01-06 14:41:13 -0800284 .help_msg = "show-blocked-tasks(W)",
Ingo Molnare59e2ae2006-12-06 20:35:59 -0800285 .action_msg = "Show Blocked State",
286 .enable_mask = SYSRQ_ENABLE_DUMP,
287};
288
Peter Zijlstra69f698a2008-11-01 19:53:34 +0100289#ifdef CONFIG_TRACING
290#include <linux/ftrace.h>
291
Dmitry Torokhov1495cc92010-08-17 21:15:46 -0700292static void sysrq_ftrace_dump(int key)
Peter Zijlstra69f698a2008-11-01 19:53:34 +0100293{
Frederic Weisbeckercecbca92010-04-18 19:08:41 +0200294 ftrace_dump(DUMP_ALL);
Peter Zijlstra69f698a2008-11-01 19:53:34 +0100295}
296static struct sysrq_key_op sysrq_ftrace_dump_op = {
297 .handler = sysrq_ftrace_dump,
Randy Dunlap3871f2f2008-12-24 16:06:57 -0800298 .help_msg = "dump-ftrace-buffer(Z)",
Peter Zijlstra69f698a2008-11-01 19:53:34 +0100299 .action_msg = "Dump ftrace buffer",
300 .enable_mask = SYSRQ_ENABLE_DUMP,
301};
302#else
Dmitry Torokhov97f5f0c2010-03-21 22:31:26 -0700303#define sysrq_ftrace_dump_op (*(struct sysrq_key_op *)NULL)
Peter Zijlstra69f698a2008-11-01 19:53:34 +0100304#endif
Ingo Molnare59e2ae2006-12-06 20:35:59 -0800305
Dmitry Torokhov1495cc92010-08-17 21:15:46 -0700306static void sysrq_handle_showmem(int key)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307{
David Rientjesb2b755b2011-03-24 15:18:15 -0700308 show_mem(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309}
310static struct sysrq_key_op sysrq_showmem_op = {
311 .handler = sysrq_handle_showmem,
Randy Dunlap208b95c2009-01-06 14:41:13 -0800312 .help_msg = "show-memory-usage(M)",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313 .action_msg = "Show Memory",
314 .enable_mask = SYSRQ_ENABLE_DUMP,
315};
316
Andrew Mortonbf36b902006-03-25 03:07:08 -0800317/*
318 * Signal sysrq helper function. Sends a signal to all user processes.
319 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320static void send_sig_all(int sig)
321{
322 struct task_struct *p;
323
Anton Vorontsove502bab2012-02-07 10:49:39 +0400324 read_lock(&tasklist_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325 for_each_process(p) {
Anton Vorontsovd3a532a2012-02-07 10:49:51 +0400326 if (p->flags & PF_KTHREAD)
327 continue;
328 if (is_global_init(p))
329 continue;
330
Anton Vorontsovb82c3282012-04-05 14:25:05 -0700331 do_send_sig_info(sig, SEND_SIG_FORCED, p, true);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332 }
Anton Vorontsove502bab2012-02-07 10:49:39 +0400333 read_unlock(&tasklist_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334}
335
Dmitry Torokhov1495cc92010-08-17 21:15:46 -0700336static void sysrq_handle_term(int key)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337{
338 send_sig_all(SIGTERM);
339 console_loglevel = 8;
340}
341static struct sysrq_key_op sysrq_term_op = {
342 .handler = sysrq_handle_term,
Randy Dunlap208b95c2009-01-06 14:41:13 -0800343 .help_msg = "terminate-all-tasks(E)",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344 .action_msg = "Terminate All Tasks",
345 .enable_mask = SYSRQ_ENABLE_SIGNAL,
346};
347
David Howells65f27f32006-11-22 14:55:48 +0000348static void moom_callback(struct work_struct *ignored)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349{
David Rientjes53186092012-11-14 01:15:19 -0800350 out_of_memory(node_zonelist(first_online_node, GFP_KERNEL), GFP_KERNEL,
351 0, NULL, true);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352}
353
David Howells65f27f32006-11-22 14:55:48 +0000354static DECLARE_WORK(moom_work, moom_callback);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355
Dmitry Torokhov1495cc92010-08-17 21:15:46 -0700356static void sysrq_handle_moom(int key)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357{
358 schedule_work(&moom_work);
359}
360static struct sysrq_key_op sysrq_moom_op = {
361 .handler = sysrq_handle_moom,
Randy Dunlap208b95c2009-01-06 14:41:13 -0800362 .help_msg = "memory-full-oom-kill(F)",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363 .action_msg = "Manual OOM execution",
Naohiro Ooiwab4236f82008-10-15 22:01:43 -0700364 .enable_mask = SYSRQ_ENABLE_SIGNAL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365};
366
Eric Sandeenc2d75432009-03-31 15:23:46 -0700367#ifdef CONFIG_BLOCK
Dmitry Torokhov1495cc92010-08-17 21:15:46 -0700368static void sysrq_handle_thaw(int key)
Eric Sandeenc2d75432009-03-31 15:23:46 -0700369{
370 emergency_thaw_all();
371}
372static struct sysrq_key_op sysrq_thaw_op = {
373 .handler = sysrq_handle_thaw,
374 .help_msg = "thaw-filesystems(J)",
375 .action_msg = "Emergency Thaw of all frozen filesystems",
376 .enable_mask = SYSRQ_ENABLE_SIGNAL,
377};
378#endif
379
Dmitry Torokhov1495cc92010-08-17 21:15:46 -0700380static void sysrq_handle_kill(int key)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381{
382 send_sig_all(SIGKILL);
383 console_loglevel = 8;
384}
385static struct sysrq_key_op sysrq_kill_op = {
386 .handler = sysrq_handle_kill,
Randy Dunlap208b95c2009-01-06 14:41:13 -0800387 .help_msg = "kill-all-tasks(I)",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388 .action_msg = "Kill All Tasks",
389 .enable_mask = SYSRQ_ENABLE_SIGNAL,
390};
391
Dmitry Torokhov1495cc92010-08-17 21:15:46 -0700392static void sysrq_handle_unrt(int key)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393{
394 normalize_rt_tasks();
395}
396static struct sysrq_key_op sysrq_unrt_op = {
397 .handler = sysrq_handle_unrt,
Randy Dunlap208b95c2009-01-06 14:41:13 -0800398 .help_msg = "nice-all-RT-tasks(N)",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399 .action_msg = "Nice All RT Tasks",
400 .enable_mask = SYSRQ_ENABLE_RTNICE,
401};
402
403/* Key Operations table and lock */
404static DEFINE_SPINLOCK(sysrq_key_table_lock);
Andrew Mortonbf36b902006-03-25 03:07:08 -0800405
406static struct sysrq_key_op *sysrq_key_table[36] = {
407 &sysrq_loglevel_op, /* 0 */
408 &sysrq_loglevel_op, /* 1 */
409 &sysrq_loglevel_op, /* 2 */
410 &sysrq_loglevel_op, /* 3 */
411 &sysrq_loglevel_op, /* 4 */
412 &sysrq_loglevel_op, /* 5 */
413 &sysrq_loglevel_op, /* 6 */
414 &sysrq_loglevel_op, /* 7 */
415 &sysrq_loglevel_op, /* 8 */
416 &sysrq_loglevel_op, /* 9 */
417
418 /*
Randy Dunlapd346cce2007-01-31 23:48:17 -0800419 * a: Don't use for system provided sysrqs, it is handled specially on
420 * sparc and will never arrive.
Andrew Mortonbf36b902006-03-25 03:07:08 -0800421 */
422 NULL, /* a */
423 &sysrq_reboot_op, /* b */
Hidetoshi Setocab8bd32009-07-29 15:04:14 -0700424 &sysrq_crash_op, /* c & ibm_emac driver debug */
Andrew Mortonbf36b902006-03-25 03:07:08 -0800425 &sysrq_showlocks_op, /* d */
426 &sysrq_term_op, /* e */
427 &sysrq_moom_op, /* f */
Jason Wessel364b5b72009-05-13 21:56:59 -0500428 /* g: May be registered for the kernel debugger */
Andrew Mortonbf36b902006-03-25 03:07:08 -0800429 NULL, /* g */
Eric Sandeenc2d75432009-03-31 15:23:46 -0700430 NULL, /* h - reserved for help */
Andrew Mortonbf36b902006-03-25 03:07:08 -0800431 &sysrq_kill_op, /* i */
Eric Sandeenc2d75432009-03-31 15:23:46 -0700432#ifdef CONFIG_BLOCK
433 &sysrq_thaw_op, /* j */
434#else
Andrew Mortonbf36b902006-03-25 03:07:08 -0800435 NULL, /* j */
Eric Sandeenc2d75432009-03-31 15:23:46 -0700436#endif
Andrew Mortonbf36b902006-03-25 03:07:08 -0800437 &sysrq_SAK_op, /* k */
Rik van Riel5045bca2008-04-29 00:59:21 -0700438#ifdef CONFIG_SMP
439 &sysrq_showallcpus_op, /* l */
440#else
Andrew Mortonbf36b902006-03-25 03:07:08 -0800441 NULL, /* l */
Rik van Riel5045bca2008-04-29 00:59:21 -0700442#endif
Andrew Mortonbf36b902006-03-25 03:07:08 -0800443 &sysrq_showmem_op, /* m */
444 &sysrq_unrt_op, /* n */
Randy Dunlapd346cce2007-01-31 23:48:17 -0800445 /* o: This will often be registered as 'Off' at init time */
Andrew Mortonbf36b902006-03-25 03:07:08 -0800446 NULL, /* o */
447 &sysrq_showregs_op, /* p */
Ingo Molnar88ad0bf62007-02-16 01:28:16 -0800448 &sysrq_show_timers_op, /* q */
Randy Dunlapd346cce2007-01-31 23:48:17 -0800449 &sysrq_unraw_op, /* r */
Andrew Mortonbf36b902006-03-25 03:07:08 -0800450 &sysrq_sync_op, /* s */
451 &sysrq_showstate_op, /* t */
452 &sysrq_mountro_op, /* u */
Jason Wessel364b5b72009-05-13 21:56:59 -0500453 /* v: May be registered for frame buffer console restore */
Andrew Mortonbf36b902006-03-25 03:07:08 -0800454 NULL, /* v */
Randy Dunlapd346cce2007-01-31 23:48:17 -0800455 &sysrq_showstate_blocked_op, /* w */
456 /* x: May be registered on ppc/powerpc for xmon */
David S. Miller916ca142012-10-16 09:34:01 -0700457 /* x: May be registered on sparc64 for global PMU dump */
Randy Dunlapd346cce2007-01-31 23:48:17 -0800458 NULL, /* x */
David S. Miller93dae5b2008-05-19 23:46:00 -0700459 /* y: May be registered on sparc64 for global register dump */
Andrew Mortonbf36b902006-03-25 03:07:08 -0800460 NULL, /* y */
Peter Zijlstra69f698a2008-11-01 19:53:34 +0100461 &sysrq_ftrace_dump_op, /* z */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462};
463
464/* key2index calculation, -1 on invalid index */
Andrew Mortonbf36b902006-03-25 03:07:08 -0800465static int sysrq_key_table_key2index(int key)
466{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467 int retval;
Andrew Mortonbf36b902006-03-25 03:07:08 -0800468
469 if ((key >= '0') && (key <= '9'))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470 retval = key - '0';
Andrew Mortonbf36b902006-03-25 03:07:08 -0800471 else if ((key >= 'a') && (key <= 'z'))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472 retval = key + 10 - 'a';
Andrew Mortonbf36b902006-03-25 03:07:08 -0800473 else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474 retval = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475 return retval;
476}
477
478/*
479 * get and put functions for the table, exposed to modules.
480 */
Andrew Mortonbf36b902006-03-25 03:07:08 -0800481struct sysrq_key_op *__sysrq_get_key_op(int key)
482{
483 struct sysrq_key_op *op_p = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484 int i;
Andrew Mortonbf36b902006-03-25 03:07:08 -0800485
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486 i = sysrq_key_table_key2index(key);
Andrew Mortonbf36b902006-03-25 03:07:08 -0800487 if (i != -1)
488 op_p = sysrq_key_table[i];
Dmitry Torokhov97f5f0c2010-03-21 22:31:26 -0700489
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490 return op_p;
491}
492
Andrew Mortonbf36b902006-03-25 03:07:08 -0800493static void __sysrq_put_key_op(int key, struct sysrq_key_op *op_p)
494{
495 int i = sysrq_key_table_key2index(key);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497 if (i != -1)
498 sysrq_key_table[i] = op_p;
499}
500
Dmitry Torokhovf3353972010-08-17 21:15:47 -0700501void __handle_sysrq(int key, bool check_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502{
503 struct sysrq_key_op *op_p;
504 int orig_log_level;
Andrew Mortonbf36b902006-03-25 03:07:08 -0800505 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506 unsigned long flags;
507
508 spin_lock_irqsave(&sysrq_key_table_lock, flags);
Andy Whitcroftfb144ad2009-01-15 13:50:52 -0800509 /*
510 * Raise the apparent loglevel to maximum so that the sysrq header
511 * is shown to provide the user with positive feedback. We do not
512 * simply emit this at KERN_EMERG as that would change message
513 * routing in the consumers of /proc/kmsg.
514 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515 orig_log_level = console_loglevel;
516 console_loglevel = 7;
517 printk(KERN_INFO "SysRq : ");
518
519 op_p = __sysrq_get_key_op(key);
520 if (op_p) {
Andrew Mortonbf36b902006-03-25 03:07:08 -0800521 /*
522 * Should we check for enabled operations (/proc/sysrq-trigger
523 * should not) and is the invoked operation enabled?
524 */
Ingo Molnar5d6f6472006-12-13 00:34:36 -0800525 if (!check_mask || sysrq_on_mask(op_p->enable_mask)) {
Andrew Mortonbf36b902006-03-25 03:07:08 -0800526 printk("%s\n", op_p->action_msg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527 console_loglevel = orig_log_level;
Dmitry Torokhov1495cc92010-08-17 21:15:46 -0700528 op_p->handler(key);
Andrew Mortonbf36b902006-03-25 03:07:08 -0800529 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530 printk("This sysrq operation is disabled.\n");
Andrew Mortonbf36b902006-03-25 03:07:08 -0800531 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532 } else {
533 printk("HELP : ");
534 /* Only print the help msg once per handler */
Andrew Mortonbf36b902006-03-25 03:07:08 -0800535 for (i = 0; i < ARRAY_SIZE(sysrq_key_table); i++) {
536 if (sysrq_key_table[i]) {
537 int j;
538
539 for (j = 0; sysrq_key_table[i] !=
540 sysrq_key_table[j]; j++)
541 ;
542 if (j != i)
543 continue;
544 printk("%s ", sysrq_key_table[i]->help_msg);
545 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546 }
Andrew Mortonbf36b902006-03-25 03:07:08 -0800547 printk("\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548 console_loglevel = orig_log_level;
549 }
550 spin_unlock_irqrestore(&sysrq_key_table_lock, flags);
551}
552
Dmitry Torokhovf3353972010-08-17 21:15:47 -0700553void handle_sysrq(int key)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554{
Ingo Molnar5d6f6472006-12-13 00:34:36 -0800555 if (sysrq_on())
Dmitry Torokhovf3353972010-08-17 21:15:47 -0700556 __handle_sysrq(key, true);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557}
Andrew Mortonbf36b902006-03-25 03:07:08 -0800558EXPORT_SYMBOL(handle_sysrq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559
Dmitry Torokhov97f5f0c2010-03-21 22:31:26 -0700560#ifdef CONFIG_INPUT
561
562/* Simple translation table for the SysRq keys */
Dmitry Torokhovfcb71932010-11-15 00:23:42 -0800563static const unsigned char sysrq_xlate[KEY_CNT] =
Dmitry Torokhov97f5f0c2010-03-21 22:31:26 -0700564 "\000\0331234567890-=\177\t" /* 0x00 - 0x0f */
565 "qwertyuiop[]\r\000as" /* 0x10 - 0x1f */
566 "dfghjkl;'`\000\\zxcv" /* 0x20 - 0x2f */
567 "bnm,./\000*\000 \000\201\202\203\204\205" /* 0x30 - 0x3f */
568 "\206\207\210\211\212\000\000789-456+1" /* 0x40 - 0x4f */
569 "230\177\000\000\213\214\000\000\000\000\000\000\000\000\000\000" /* 0x50 - 0x5f */
570 "\r\000/"; /* 0x60 - 0x6f */
571
Dmitry Torokhovfcb71932010-11-15 00:23:42 -0800572struct sysrq_state {
573 struct input_handle handle;
574 struct work_struct reinject_work;
575 unsigned long key_down[BITS_TO_LONGS(KEY_CNT)];
576 unsigned int alt;
577 unsigned int alt_use;
578 bool active;
579 bool need_reinject;
Dmitry Torokhov7ab7b5a2011-02-02 22:59:54 -0800580 bool reinjecting;
Dmitry Torokhovfcb71932010-11-15 00:23:42 -0800581};
Dmitry Torokhov97f5f0c2010-03-21 22:31:26 -0700582
Dmitry Torokhovfcb71932010-11-15 00:23:42 -0800583static void sysrq_reinject_alt_sysrq(struct work_struct *work)
Dmitry Torokhov97f5f0c2010-03-21 22:31:26 -0700584{
Dmitry Torokhovfcb71932010-11-15 00:23:42 -0800585 struct sysrq_state *sysrq =
586 container_of(work, struct sysrq_state, reinject_work);
587 struct input_handle *handle = &sysrq->handle;
588 unsigned int alt_code = sysrq->alt_use;
589
590 if (sysrq->need_reinject) {
Dmitry Torokhov7ab7b5a2011-02-02 22:59:54 -0800591 /* we do not want the assignment to be reordered */
592 sysrq->reinjecting = true;
593 mb();
594
Dmitry Torokhovfcb71932010-11-15 00:23:42 -0800595 /* Simulate press and release of Alt + SysRq */
596 input_inject_event(handle, EV_KEY, alt_code, 1);
597 input_inject_event(handle, EV_KEY, KEY_SYSRQ, 1);
598 input_inject_event(handle, EV_SYN, SYN_REPORT, 1);
599
600 input_inject_event(handle, EV_KEY, KEY_SYSRQ, 0);
601 input_inject_event(handle, EV_KEY, alt_code, 0);
602 input_inject_event(handle, EV_SYN, SYN_REPORT, 1);
Dmitry Torokhov7ab7b5a2011-02-02 22:59:54 -0800603
604 mb();
605 sysrq->reinjecting = false;
Dmitry Torokhovfcb71932010-11-15 00:23:42 -0800606 }
607}
608
609static bool sysrq_filter(struct input_handle *handle,
610 unsigned int type, unsigned int code, int value)
611{
612 struct sysrq_state *sysrq = handle->private;
613 bool was_active = sysrq->active;
Dmitry Torokhov1966cb22010-09-29 18:04:21 -0700614 bool suppress;
615
Dmitry Torokhov7ab7b5a2011-02-02 22:59:54 -0800616 /*
617 * Do not filter anything if we are in the process of re-injecting
618 * Alt+SysRq combination.
619 */
620 if (sysrq->reinjecting)
621 return false;
622
Dmitry Torokhovfcb71932010-11-15 00:23:42 -0800623 switch (type) {
Dmitry Torokhov1966cb22010-09-29 18:04:21 -0700624
Dmitry Torokhovfcb71932010-11-15 00:23:42 -0800625 case EV_SYN:
626 suppress = false;
Dmitry Torokhov97f5f0c2010-03-21 22:31:26 -0700627 break;
628
Dmitry Torokhovfcb71932010-11-15 00:23:42 -0800629 case EV_KEY:
630 switch (code) {
631
632 case KEY_LEFTALT:
633 case KEY_RIGHTALT:
634 if (!value) {
635 /* One of ALTs is being released */
636 if (sysrq->active && code == sysrq->alt_use)
637 sysrq->active = false;
638
639 sysrq->alt = KEY_RESERVED;
640
641 } else if (value != 2) {
642 sysrq->alt = code;
643 sysrq->need_reinject = false;
644 }
645 break;
646
647 case KEY_SYSRQ:
648 if (value == 1 && sysrq->alt != KEY_RESERVED) {
649 sysrq->active = true;
650 sysrq->alt_use = sysrq->alt;
651 /*
652 * If nothing else will be pressed we'll need
Dmitry Torokhov7ab7b5a2011-02-02 22:59:54 -0800653 * to re-inject Alt-SysRq keysroke.
Dmitry Torokhovfcb71932010-11-15 00:23:42 -0800654 */
655 sysrq->need_reinject = true;
656 }
657
658 /*
659 * Pretend that sysrq was never pressed at all. This
660 * is needed to properly handle KGDB which will try
661 * to release all keys after exiting debugger. If we
662 * do not clear key bit it KGDB will end up sending
663 * release events for Alt and SysRq, potentially
664 * triggering print screen function.
665 */
666 if (sysrq->active)
667 clear_bit(KEY_SYSRQ, handle->dev->key);
668
669 break;
670
671 default:
672 if (sysrq->active && value && value != 2) {
673 sysrq->need_reinject = false;
674 __handle_sysrq(sysrq_xlate[code], true);
675 }
676 break;
677 }
678
679 suppress = sysrq->active;
680
681 if (!sysrq->active) {
682 /*
683 * If we are not suppressing key presses keep track of
684 * keyboard state so we can release keys that have been
685 * pressed before entering SysRq mode.
686 */
687 if (value)
688 set_bit(code, sysrq->key_down);
689 else
690 clear_bit(code, sysrq->key_down);
691
692 if (was_active)
693 schedule_work(&sysrq->reinject_work);
694
695 } else if (value == 0 &&
696 test_and_clear_bit(code, sysrq->key_down)) {
697 /*
698 * Pass on release events for keys that was pressed before
699 * entering SysRq mode.
700 */
701 suppress = false;
Dmitry Torokhov97f5f0c2010-03-21 22:31:26 -0700702 }
703 break;
704
705 default:
Dmitry Torokhovfcb71932010-11-15 00:23:42 -0800706 suppress = sysrq->active;
Dmitry Torokhov97f5f0c2010-03-21 22:31:26 -0700707 break;
708 }
709
Dmitry Torokhov1966cb22010-09-29 18:04:21 -0700710 return suppress;
Dmitry Torokhov97f5f0c2010-03-21 22:31:26 -0700711}
712
713static int sysrq_connect(struct input_handler *handler,
714 struct input_dev *dev,
715 const struct input_device_id *id)
716{
Dmitry Torokhovfcb71932010-11-15 00:23:42 -0800717 struct sysrq_state *sysrq;
Dmitry Torokhov97f5f0c2010-03-21 22:31:26 -0700718 int error;
719
Dmitry Torokhovfcb71932010-11-15 00:23:42 -0800720 sysrq = kzalloc(sizeof(struct sysrq_state), GFP_KERNEL);
721 if (!sysrq)
Dmitry Torokhov97f5f0c2010-03-21 22:31:26 -0700722 return -ENOMEM;
723
Dmitry Torokhovfcb71932010-11-15 00:23:42 -0800724 INIT_WORK(&sysrq->reinject_work, sysrq_reinject_alt_sysrq);
Dmitry Torokhov97f5f0c2010-03-21 22:31:26 -0700725
Dmitry Torokhovfcb71932010-11-15 00:23:42 -0800726 sysrq->handle.dev = dev;
727 sysrq->handle.handler = handler;
728 sysrq->handle.name = "sysrq";
729 sysrq->handle.private = sysrq;
730
731 error = input_register_handle(&sysrq->handle);
Dmitry Torokhov97f5f0c2010-03-21 22:31:26 -0700732 if (error) {
733 pr_err("Failed to register input sysrq handler, error %d\n",
734 error);
735 goto err_free;
736 }
737
Dmitry Torokhovfcb71932010-11-15 00:23:42 -0800738 error = input_open_device(&sysrq->handle);
Dmitry Torokhov97f5f0c2010-03-21 22:31:26 -0700739 if (error) {
740 pr_err("Failed to open input device, error %d\n", error);
741 goto err_unregister;
742 }
743
744 return 0;
745
746 err_unregister:
Dmitry Torokhovfcb71932010-11-15 00:23:42 -0800747 input_unregister_handle(&sysrq->handle);
Dmitry Torokhov97f5f0c2010-03-21 22:31:26 -0700748 err_free:
Dmitry Torokhovfcb71932010-11-15 00:23:42 -0800749 kfree(sysrq);
Dmitry Torokhov97f5f0c2010-03-21 22:31:26 -0700750 return error;
751}
752
753static void sysrq_disconnect(struct input_handle *handle)
754{
Dmitry Torokhovfcb71932010-11-15 00:23:42 -0800755 struct sysrq_state *sysrq = handle->private;
756
Dmitry Torokhov97f5f0c2010-03-21 22:31:26 -0700757 input_close_device(handle);
Dmitry Torokhovfcb71932010-11-15 00:23:42 -0800758 cancel_work_sync(&sysrq->reinject_work);
Dmitry Torokhov97f5f0c2010-03-21 22:31:26 -0700759 input_unregister_handle(handle);
Dmitry Torokhovfcb71932010-11-15 00:23:42 -0800760 kfree(sysrq);
Dmitry Torokhov97f5f0c2010-03-21 22:31:26 -0700761}
762
763/*
Dmitry Torokhov1966cb22010-09-29 18:04:21 -0700764 * We are matching on KEY_LEFTALT instead of KEY_SYSRQ because not all
765 * keyboards have SysRq key predefined and so user may add it to keymap
Dmitry Torokhov97f5f0c2010-03-21 22:31:26 -0700766 * later, but we expect all such keyboards to have left alt.
767 */
768static const struct input_device_id sysrq_ids[] = {
769 {
770 .flags = INPUT_DEVICE_ID_MATCH_EVBIT |
771 INPUT_DEVICE_ID_MATCH_KEYBIT,
772 .evbit = { BIT_MASK(EV_KEY) },
773 .keybit = { BIT_MASK(KEY_LEFTALT) },
774 },
775 { },
776};
777
778static struct input_handler sysrq_handler = {
779 .filter = sysrq_filter,
780 .connect = sysrq_connect,
781 .disconnect = sysrq_disconnect,
782 .name = "sysrq",
783 .id_table = sysrq_ids,
784};
785
786static bool sysrq_handler_registered;
787
788static inline void sysrq_register_handler(void)
789{
790 int error;
791
792 error = input_register_handler(&sysrq_handler);
793 if (error)
794 pr_err("Failed to register input handler, error %d", error);
795 else
796 sysrq_handler_registered = true;
797}
798
799static inline void sysrq_unregister_handler(void)
800{
801 if (sysrq_handler_registered) {
802 input_unregister_handler(&sysrq_handler);
803 sysrq_handler_registered = false;
804 }
805}
806
807#else
808
809static inline void sysrq_register_handler(void)
810{
811}
812
813static inline void sysrq_unregister_handler(void)
814{
815}
816
817#endif /* CONFIG_INPUT */
818
819int sysrq_toggle_support(int enable_mask)
820{
821 bool was_enabled = sysrq_on();
822
823 sysrq_enabled = enable_mask;
824
825 if (was_enabled != sysrq_on()) {
826 if (sysrq_on())
827 sysrq_register_handler();
828 else
829 sysrq_unregister_handler();
830 }
831
832 return 0;
833}
834
Adrian Bunkcf62ddc2005-11-08 21:39:47 -0800835static int __sysrq_swap_key_ops(int key, struct sysrq_key_op *insert_op_p,
Andrew Mortonbf36b902006-03-25 03:07:08 -0800836 struct sysrq_key_op *remove_op_p)
837{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838 int retval;
839 unsigned long flags;
840
841 spin_lock_irqsave(&sysrq_key_table_lock, flags);
842 if (__sysrq_get_key_op(key) == remove_op_p) {
843 __sysrq_put_key_op(key, insert_op_p);
844 retval = 0;
845 } else {
846 retval = -1;
847 }
848 spin_unlock_irqrestore(&sysrq_key_table_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849 return retval;
850}
851
852int register_sysrq_key(int key, struct sysrq_key_op *op_p)
853{
854 return __sysrq_swap_key_ops(key, op_p, NULL);
855}
Andrew Mortonbf36b902006-03-25 03:07:08 -0800856EXPORT_SYMBOL(register_sysrq_key);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857
858int unregister_sysrq_key(int key, struct sysrq_key_op *op_p)
859{
860 return __sysrq_swap_key_ops(key, NULL, op_p);
861}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862EXPORT_SYMBOL(unregister_sysrq_key);
Alexey Dobriyanf40cbaa2008-10-15 22:04:23 -0700863
864#ifdef CONFIG_PROC_FS
865/*
866 * writing 'C' to /proc/sysrq-trigger is like sysrq-C
867 */
868static ssize_t write_sysrq_trigger(struct file *file, const char __user *buf,
869 size_t count, loff_t *ppos)
870{
871 if (count) {
872 char c;
873
874 if (get_user(c, buf))
875 return -EFAULT;
Dmitry Torokhovf3353972010-08-17 21:15:47 -0700876 __handle_sysrq(c, false);
Alexey Dobriyanf40cbaa2008-10-15 22:04:23 -0700877 }
Dmitry Torokhov97f5f0c2010-03-21 22:31:26 -0700878
Alexey Dobriyanf40cbaa2008-10-15 22:04:23 -0700879 return count;
880}
881
882static const struct file_operations proc_sysrq_trigger_operations = {
883 .write = write_sysrq_trigger,
Arnd Bergmann6038f372010-08-15 18:52:59 +0200884 .llseek = noop_llseek,
Alexey Dobriyanf40cbaa2008-10-15 22:04:23 -0700885};
886
Dmitry Torokhov97f5f0c2010-03-21 22:31:26 -0700887static void sysrq_init_procfs(void)
888{
889 if (!proc_create("sysrq-trigger", S_IWUSR, NULL,
890 &proc_sysrq_trigger_operations))
891 pr_err("Failed to register proc interface\n");
892}
893
894#else
895
896static inline void sysrq_init_procfs(void)
897{
898}
899
900#endif /* CONFIG_PROC_FS */
901
Alexey Dobriyanf40cbaa2008-10-15 22:04:23 -0700902static int __init sysrq_init(void)
903{
Dmitry Torokhov97f5f0c2010-03-21 22:31:26 -0700904 sysrq_init_procfs();
905
906 if (sysrq_on())
907 sysrq_register_handler();
908
Alexey Dobriyanf40cbaa2008-10-15 22:04:23 -0700909 return 0;
910}
911module_init(sysrq_init);