blob: 77fcad4371ce74efa24f6fa72ab6eb39050cc497 [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>
18#include <linux/interrupt.h>
19#include <linux/mm.h>
20#include <linux/fs.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070021#include <linux/mount.h>
22#include <linux/kdev_t.h>
23#include <linux/major.h>
24#include <linux/reboot.h>
25#include <linux/sysrq.h>
26#include <linux/kbd_kern.h>
Alexey Dobriyanf40cbaa2008-10-15 22:04:23 -070027#include <linux/proc_fs.h>
Ingo Molnarc1dc0b92009-08-02 11:28:21 +020028#include <linux/nmi.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070029#include <linux/quotaops.h>
Ingo Molnarcdd6c482009-09-21 12:02:48 +020030#include <linux/perf_event.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070031#include <linux/kernel.h>
32#include <linux/module.h>
33#include <linux/suspend.h>
34#include <linux/writeback.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070035#include <linux/swap.h>
36#include <linux/spinlock.h>
37#include <linux/vt_kern.h>
38#include <linux/workqueue.h>
Ingo Molnar88ad0bf62007-02-16 01:28:16 -080039#include <linux/hrtimer.h>
David Rientjes5a3135c22007-10-16 23:25:53 -070040#include <linux/oom.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090041#include <linux/slab.h>
Dmitry Torokhov97f5f0c2010-03-21 22:31:26 -070042#include <linux/input.h>
Al Viroff01bb482011-09-16 02:31:11 -040043#include <linux/uaccess.h>
Mathieu Poirier154b7a42013-01-06 23:23:33 -080044#include <linux/moduleparam.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 Rientjes08ab9b12012-03-21 16:34:04 -0700350 out_of_memory(node_zonelist(0, GFP_KERNEL), GFP_KERNEL, 0, NULL, true);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351}
352
David Howells65f27f32006-11-22 14:55:48 +0000353static DECLARE_WORK(moom_work, moom_callback);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354
Dmitry Torokhov1495cc92010-08-17 21:15:46 -0700355static void sysrq_handle_moom(int key)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356{
357 schedule_work(&moom_work);
358}
359static struct sysrq_key_op sysrq_moom_op = {
360 .handler = sysrq_handle_moom,
Randy Dunlap208b95c2009-01-06 14:41:13 -0800361 .help_msg = "memory-full-oom-kill(F)",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362 .action_msg = "Manual OOM execution",
Naohiro Ooiwab4236f82008-10-15 22:01:43 -0700363 .enable_mask = SYSRQ_ENABLE_SIGNAL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364};
365
Eric Sandeenc2d75432009-03-31 15:23:46 -0700366#ifdef CONFIG_BLOCK
Dmitry Torokhov1495cc92010-08-17 21:15:46 -0700367static void sysrq_handle_thaw(int key)
Eric Sandeenc2d75432009-03-31 15:23:46 -0700368{
369 emergency_thaw_all();
370}
371static struct sysrq_key_op sysrq_thaw_op = {
372 .handler = sysrq_handle_thaw,
373 .help_msg = "thaw-filesystems(J)",
374 .action_msg = "Emergency Thaw of all frozen filesystems",
375 .enable_mask = SYSRQ_ENABLE_SIGNAL,
376};
377#endif
378
Dmitry Torokhov1495cc92010-08-17 21:15:46 -0700379static void sysrq_handle_kill(int key)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380{
381 send_sig_all(SIGKILL);
382 console_loglevel = 8;
383}
384static struct sysrq_key_op sysrq_kill_op = {
385 .handler = sysrq_handle_kill,
Randy Dunlap208b95c2009-01-06 14:41:13 -0800386 .help_msg = "kill-all-tasks(I)",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387 .action_msg = "Kill All Tasks",
388 .enable_mask = SYSRQ_ENABLE_SIGNAL,
389};
390
Dmitry Torokhov1495cc92010-08-17 21:15:46 -0700391static void sysrq_handle_unrt(int key)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392{
393 normalize_rt_tasks();
394}
395static struct sysrq_key_op sysrq_unrt_op = {
396 .handler = sysrq_handle_unrt,
Randy Dunlap208b95c2009-01-06 14:41:13 -0800397 .help_msg = "nice-all-RT-tasks(N)",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398 .action_msg = "Nice All RT Tasks",
399 .enable_mask = SYSRQ_ENABLE_RTNICE,
400};
401
402/* Key Operations table and lock */
403static DEFINE_SPINLOCK(sysrq_key_table_lock);
Andrew Mortonbf36b902006-03-25 03:07:08 -0800404
405static struct sysrq_key_op *sysrq_key_table[36] = {
406 &sysrq_loglevel_op, /* 0 */
407 &sysrq_loglevel_op, /* 1 */
408 &sysrq_loglevel_op, /* 2 */
409 &sysrq_loglevel_op, /* 3 */
410 &sysrq_loglevel_op, /* 4 */
411 &sysrq_loglevel_op, /* 5 */
412 &sysrq_loglevel_op, /* 6 */
413 &sysrq_loglevel_op, /* 7 */
414 &sysrq_loglevel_op, /* 8 */
415 &sysrq_loglevel_op, /* 9 */
416
417 /*
Randy Dunlapd346cce2007-01-31 23:48:17 -0800418 * a: Don't use for system provided sysrqs, it is handled specially on
419 * sparc and will never arrive.
Andrew Mortonbf36b902006-03-25 03:07:08 -0800420 */
421 NULL, /* a */
422 &sysrq_reboot_op, /* b */
Hidetoshi Setocab8bd32009-07-29 15:04:14 -0700423 &sysrq_crash_op, /* c & ibm_emac driver debug */
Andrew Mortonbf36b902006-03-25 03:07:08 -0800424 &sysrq_showlocks_op, /* d */
425 &sysrq_term_op, /* e */
426 &sysrq_moom_op, /* f */
Jason Wessel364b5b72009-05-13 21:56:59 -0500427 /* g: May be registered for the kernel debugger */
Andrew Mortonbf36b902006-03-25 03:07:08 -0800428 NULL, /* g */
Eric Sandeenc2d75432009-03-31 15:23:46 -0700429 NULL, /* h - reserved for help */
Andrew Mortonbf36b902006-03-25 03:07:08 -0800430 &sysrq_kill_op, /* i */
Eric Sandeenc2d75432009-03-31 15:23:46 -0700431#ifdef CONFIG_BLOCK
432 &sysrq_thaw_op, /* j */
433#else
Andrew Mortonbf36b902006-03-25 03:07:08 -0800434 NULL, /* j */
Eric Sandeenc2d75432009-03-31 15:23:46 -0700435#endif
Andrew Mortonbf36b902006-03-25 03:07:08 -0800436 &sysrq_SAK_op, /* k */
Rik van Riel5045bca2008-04-29 00:59:21 -0700437#ifdef CONFIG_SMP
438 &sysrq_showallcpus_op, /* l */
439#else
Andrew Mortonbf36b902006-03-25 03:07:08 -0800440 NULL, /* l */
Rik van Riel5045bca2008-04-29 00:59:21 -0700441#endif
Andrew Mortonbf36b902006-03-25 03:07:08 -0800442 &sysrq_showmem_op, /* m */
443 &sysrq_unrt_op, /* n */
Randy Dunlapd346cce2007-01-31 23:48:17 -0800444 /* o: This will often be registered as 'Off' at init time */
Andrew Mortonbf36b902006-03-25 03:07:08 -0800445 NULL, /* o */
446 &sysrq_showregs_op, /* p */
Ingo Molnar88ad0bf62007-02-16 01:28:16 -0800447 &sysrq_show_timers_op, /* q */
Randy Dunlapd346cce2007-01-31 23:48:17 -0800448 &sysrq_unraw_op, /* r */
Andrew Mortonbf36b902006-03-25 03:07:08 -0800449 &sysrq_sync_op, /* s */
450 &sysrq_showstate_op, /* t */
451 &sysrq_mountro_op, /* u */
Jason Wessel364b5b72009-05-13 21:56:59 -0500452 /* v: May be registered for frame buffer console restore */
Andrew Mortonbf36b902006-03-25 03:07:08 -0800453 NULL, /* v */
Randy Dunlapd346cce2007-01-31 23:48:17 -0800454 &sysrq_showstate_blocked_op, /* w */
455 /* x: May be registered on ppc/powerpc for xmon */
David S. Miller916ca142012-10-16 09:34:01 -0700456 /* x: May be registered on sparc64 for global PMU dump */
Randy Dunlapd346cce2007-01-31 23:48:17 -0800457 NULL, /* x */
David S. Miller93dae5b2008-05-19 23:46:00 -0700458 /* y: May be registered on sparc64 for global register dump */
Andrew Mortonbf36b902006-03-25 03:07:08 -0800459 NULL, /* y */
Peter Zijlstra69f698a2008-11-01 19:53:34 +0100460 &sysrq_ftrace_dump_op, /* z */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461};
462
463/* key2index calculation, -1 on invalid index */
Andrew Mortonbf36b902006-03-25 03:07:08 -0800464static int sysrq_key_table_key2index(int key)
465{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466 int retval;
Andrew Mortonbf36b902006-03-25 03:07:08 -0800467
468 if ((key >= '0') && (key <= '9'))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469 retval = key - '0';
Andrew Mortonbf36b902006-03-25 03:07:08 -0800470 else if ((key >= 'a') && (key <= 'z'))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471 retval = key + 10 - 'a';
Andrew Mortonbf36b902006-03-25 03:07:08 -0800472 else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473 retval = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474 return retval;
475}
476
477/*
478 * get and put functions for the table, exposed to modules.
479 */
Andrew Mortonbf36b902006-03-25 03:07:08 -0800480struct sysrq_key_op *__sysrq_get_key_op(int key)
481{
482 struct sysrq_key_op *op_p = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483 int i;
Andrew Mortonbf36b902006-03-25 03:07:08 -0800484
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485 i = sysrq_key_table_key2index(key);
Andrew Mortonbf36b902006-03-25 03:07:08 -0800486 if (i != -1)
487 op_p = sysrq_key_table[i];
Dmitry Torokhov97f5f0c2010-03-21 22:31:26 -0700488
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489 return op_p;
490}
491
Andrew Mortonbf36b902006-03-25 03:07:08 -0800492static void __sysrq_put_key_op(int key, struct sysrq_key_op *op_p)
493{
494 int i = sysrq_key_table_key2index(key);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496 if (i != -1)
497 sysrq_key_table[i] = op_p;
498}
499
Dmitry Torokhovf3353972010-08-17 21:15:47 -0700500void __handle_sysrq(int key, bool check_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501{
502 struct sysrq_key_op *op_p;
503 int orig_log_level;
Andrew Mortonbf36b902006-03-25 03:07:08 -0800504 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505 unsigned long flags;
506
507 spin_lock_irqsave(&sysrq_key_table_lock, flags);
Andy Whitcroftfb144ad2009-01-15 13:50:52 -0800508 /*
509 * Raise the apparent loglevel to maximum so that the sysrq header
510 * is shown to provide the user with positive feedback. We do not
511 * simply emit this at KERN_EMERG as that would change message
512 * routing in the consumers of /proc/kmsg.
513 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514 orig_log_level = console_loglevel;
515 console_loglevel = 7;
516 printk(KERN_INFO "SysRq : ");
517
518 op_p = __sysrq_get_key_op(key);
519 if (op_p) {
Andrew Mortonbf36b902006-03-25 03:07:08 -0800520 /*
521 * Should we check for enabled operations (/proc/sysrq-trigger
522 * should not) and is the invoked operation enabled?
523 */
Ingo Molnar5d6f6472006-12-13 00:34:36 -0800524 if (!check_mask || sysrq_on_mask(op_p->enable_mask)) {
Andrew Mortonbf36b902006-03-25 03:07:08 -0800525 printk("%s\n", op_p->action_msg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526 console_loglevel = orig_log_level;
Dmitry Torokhov1495cc92010-08-17 21:15:46 -0700527 op_p->handler(key);
Andrew Mortonbf36b902006-03-25 03:07:08 -0800528 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529 printk("This sysrq operation is disabled.\n");
Andrew Mortonbf36b902006-03-25 03:07:08 -0800530 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531 } else {
532 printk("HELP : ");
533 /* Only print the help msg once per handler */
Andrew Mortonbf36b902006-03-25 03:07:08 -0800534 for (i = 0; i < ARRAY_SIZE(sysrq_key_table); i++) {
535 if (sysrq_key_table[i]) {
536 int j;
537
538 for (j = 0; sysrq_key_table[i] !=
539 sysrq_key_table[j]; j++)
540 ;
541 if (j != i)
542 continue;
543 printk("%s ", sysrq_key_table[i]->help_msg);
544 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545 }
Andrew Mortonbf36b902006-03-25 03:07:08 -0800546 printk("\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547 console_loglevel = orig_log_level;
548 }
549 spin_unlock_irqrestore(&sysrq_key_table_lock, flags);
550}
551
Dmitry Torokhovf3353972010-08-17 21:15:47 -0700552void handle_sysrq(int key)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553{
Ingo Molnar5d6f6472006-12-13 00:34:36 -0800554 if (sysrq_on())
Dmitry Torokhovf3353972010-08-17 21:15:47 -0700555 __handle_sysrq(key, true);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556}
Andrew Mortonbf36b902006-03-25 03:07:08 -0800557EXPORT_SYMBOL(handle_sysrq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558
Dmitry Torokhov97f5f0c2010-03-21 22:31:26 -0700559#ifdef CONFIG_INPUT
560
561/* Simple translation table for the SysRq keys */
Dmitry Torokhovfcb71932010-11-15 00:23:42 -0800562static const unsigned char sysrq_xlate[KEY_CNT] =
Dmitry Torokhov97f5f0c2010-03-21 22:31:26 -0700563 "\000\0331234567890-=\177\t" /* 0x00 - 0x0f */
564 "qwertyuiop[]\r\000as" /* 0x10 - 0x1f */
565 "dfghjkl;'`\000\\zxcv" /* 0x20 - 0x2f */
566 "bnm,./\000*\000 \000\201\202\203\204\205" /* 0x30 - 0x3f */
567 "\206\207\210\211\212\000\000789-456+1" /* 0x40 - 0x4f */
568 "230\177\000\000\213\214\000\000\000\000\000\000\000\000\000\000" /* 0x50 - 0x5f */
569 "\r\000/"; /* 0x60 - 0x6f */
570
Dmitry Torokhovfcb71932010-11-15 00:23:42 -0800571struct sysrq_state {
572 struct input_handle handle;
573 struct work_struct reinject_work;
574 unsigned long key_down[BITS_TO_LONGS(KEY_CNT)];
575 unsigned int alt;
576 unsigned int alt_use;
577 bool active;
578 bool need_reinject;
Dmitry Torokhov7ab7b5a2011-02-02 22:59:54 -0800579 bool reinjecting;
Mathieu Poirier154b7a42013-01-06 23:23:33 -0800580
581 /* reset sequence handling */
582 bool reset_canceled;
583 unsigned long reset_keybit[BITS_TO_LONGS(KEY_CNT)];
584 int reset_seq_len;
585 int reset_seq_cnt;
586 int reset_seq_version;
Dmitry Torokhovfcb71932010-11-15 00:23:42 -0800587};
Dmitry Torokhov97f5f0c2010-03-21 22:31:26 -0700588
Mathieu Poirier154b7a42013-01-06 23:23:33 -0800589#define SYSRQ_KEY_RESET_MAX 20 /* Should be plenty */
590static unsigned short sysrq_reset_seq[SYSRQ_KEY_RESET_MAX];
591static unsigned int sysrq_reset_seq_len;
592static unsigned int sysrq_reset_seq_version = 1;
593
594static void sysrq_parse_reset_sequence(struct sysrq_state *state)
595{
596 int i;
597 unsigned short key;
598
599 state->reset_seq_cnt = 0;
600
601 for (i = 0; i < sysrq_reset_seq_len; i++) {
602 key = sysrq_reset_seq[i];
603
604 if (key == KEY_RESERVED || key > KEY_MAX)
605 break;
606
607 __set_bit(key, state->reset_keybit);
608 state->reset_seq_len++;
609
610 if (test_bit(key, state->key_down))
611 state->reset_seq_cnt++;
612 }
613
614 /* Disable reset until old keys are not released */
615 state->reset_canceled = state->reset_seq_cnt != 0;
616
617 state->reset_seq_version = sysrq_reset_seq_version;
618}
619
620static bool sysrq_detect_reset_sequence(struct sysrq_state *state,
621 unsigned int code, int value)
622{
623 if (!test_bit(code, state->reset_keybit)) {
624 /*
625 * Pressing any key _not_ in reset sequence cancels
626 * the reset sequence.
627 */
628 if (value && state->reset_seq_cnt)
629 state->reset_canceled = true;
630 } else if (value == 0) {
631 /* key release */
632 if (--state->reset_seq_cnt == 0)
633 state->reset_canceled = false;
634 } else if (value == 1) {
635 /* key press, not autorepeat */
636 if (++state->reset_seq_cnt == state->reset_seq_len &&
637 !state->reset_canceled) {
638 return true;
639 }
640 }
641
642 return false;
643}
644
Dmitry Torokhovfcb71932010-11-15 00:23:42 -0800645static void sysrq_reinject_alt_sysrq(struct work_struct *work)
Dmitry Torokhov97f5f0c2010-03-21 22:31:26 -0700646{
Dmitry Torokhovfcb71932010-11-15 00:23:42 -0800647 struct sysrq_state *sysrq =
648 container_of(work, struct sysrq_state, reinject_work);
649 struct input_handle *handle = &sysrq->handle;
650 unsigned int alt_code = sysrq->alt_use;
651
652 if (sysrq->need_reinject) {
Dmitry Torokhov7ab7b5a2011-02-02 22:59:54 -0800653 /* we do not want the assignment to be reordered */
654 sysrq->reinjecting = true;
655 mb();
656
Dmitry Torokhovfcb71932010-11-15 00:23:42 -0800657 /* Simulate press and release of Alt + SysRq */
658 input_inject_event(handle, EV_KEY, alt_code, 1);
659 input_inject_event(handle, EV_KEY, KEY_SYSRQ, 1);
660 input_inject_event(handle, EV_SYN, SYN_REPORT, 1);
661
662 input_inject_event(handle, EV_KEY, KEY_SYSRQ, 0);
663 input_inject_event(handle, EV_KEY, alt_code, 0);
664 input_inject_event(handle, EV_SYN, SYN_REPORT, 1);
Dmitry Torokhov7ab7b5a2011-02-02 22:59:54 -0800665
666 mb();
667 sysrq->reinjecting = false;
Dmitry Torokhovfcb71932010-11-15 00:23:42 -0800668 }
669}
670
Mathieu Poirier154b7a42013-01-06 23:23:33 -0800671static bool sysrq_handle_keypress(struct sysrq_state *sysrq,
672 unsigned int code, int value)
673{
674 bool was_active = sysrq->active;
675 bool suppress;
676
677 switch (code) {
678
679 case KEY_LEFTALT:
680 case KEY_RIGHTALT:
681 if (!value) {
682 /* One of ALTs is being released */
683 if (sysrq->active && code == sysrq->alt_use)
684 sysrq->active = false;
685
686 sysrq->alt = KEY_RESERVED;
687
688 } else if (value != 2) {
689 sysrq->alt = code;
690 sysrq->need_reinject = false;
691 }
692 break;
693
694 case KEY_SYSRQ:
695 if (value == 1 && sysrq->alt != KEY_RESERVED) {
696 sysrq->active = true;
697 sysrq->alt_use = sysrq->alt;
698 /*
699 * If nothing else will be pressed we'll need
700 * to re-inject Alt-SysRq keysroke.
701 */
702 sysrq->need_reinject = true;
703 }
704
705 /*
706 * Pretend that sysrq was never pressed at all. This
707 * is needed to properly handle KGDB which will try
708 * to release all keys after exiting debugger. If we
709 * do not clear key bit it KGDB will end up sending
710 * release events for Alt and SysRq, potentially
711 * triggering print screen function.
712 */
713 if (sysrq->active)
714 clear_bit(KEY_SYSRQ, sysrq->handle.dev->key);
715
716 break;
717
718 default:
719 if (sysrq->active && value && value != 2) {
720 sysrq->need_reinject = false;
721 __handle_sysrq(sysrq_xlate[code], true);
722 }
723 break;
724 }
725
726 suppress = sysrq->active;
727
728 if (!sysrq->active) {
729
730 /*
731 * See if reset sequence has changed since the last time.
732 */
733 if (sysrq->reset_seq_version != sysrq_reset_seq_version)
734 sysrq_parse_reset_sequence(sysrq);
735
736 /*
737 * If we are not suppressing key presses keep track of
738 * keyboard state so we can release keys that have been
739 * pressed before entering SysRq mode.
740 */
741 if (value)
742 set_bit(code, sysrq->key_down);
743 else
744 clear_bit(code, sysrq->key_down);
745
746 if (was_active)
747 schedule_work(&sysrq->reinject_work);
748
749 if (sysrq_detect_reset_sequence(sysrq, code, value)) {
750 /* Force emergency reboot */
751 __handle_sysrq(sysrq_xlate[KEY_B], false);
752 }
753
754 } else if (value == 0 && test_and_clear_bit(code, sysrq->key_down)) {
755 /*
756 * Pass on release events for keys that was pressed before
757 * entering SysRq mode.
758 */
759 suppress = false;
760 }
761
762 return suppress;
763}
764
Dmitry Torokhovfcb71932010-11-15 00:23:42 -0800765static bool sysrq_filter(struct input_handle *handle,
766 unsigned int type, unsigned int code, int value)
767{
768 struct sysrq_state *sysrq = handle->private;
Dmitry Torokhov1966cb22010-09-29 18:04:21 -0700769 bool suppress;
770
Dmitry Torokhov7ab7b5a2011-02-02 22:59:54 -0800771 /*
772 * Do not filter anything if we are in the process of re-injecting
773 * Alt+SysRq combination.
774 */
775 if (sysrq->reinjecting)
776 return false;
777
Dmitry Torokhovfcb71932010-11-15 00:23:42 -0800778 switch (type) {
Dmitry Torokhov1966cb22010-09-29 18:04:21 -0700779
Dmitry Torokhovfcb71932010-11-15 00:23:42 -0800780 case EV_SYN:
781 suppress = false;
Dmitry Torokhov97f5f0c2010-03-21 22:31:26 -0700782 break;
783
Dmitry Torokhovfcb71932010-11-15 00:23:42 -0800784 case EV_KEY:
Mathieu Poirier154b7a42013-01-06 23:23:33 -0800785 suppress = sysrq_handle_keypress(sysrq, code, value);
Dmitry Torokhov97f5f0c2010-03-21 22:31:26 -0700786 break;
787
788 default:
Dmitry Torokhovfcb71932010-11-15 00:23:42 -0800789 suppress = sysrq->active;
Dmitry Torokhov97f5f0c2010-03-21 22:31:26 -0700790 break;
791 }
792
Dmitry Torokhov1966cb22010-09-29 18:04:21 -0700793 return suppress;
Dmitry Torokhov97f5f0c2010-03-21 22:31:26 -0700794}
795
796static int sysrq_connect(struct input_handler *handler,
797 struct input_dev *dev,
798 const struct input_device_id *id)
799{
Dmitry Torokhovfcb71932010-11-15 00:23:42 -0800800 struct sysrq_state *sysrq;
Dmitry Torokhov97f5f0c2010-03-21 22:31:26 -0700801 int error;
802
Dmitry Torokhovfcb71932010-11-15 00:23:42 -0800803 sysrq = kzalloc(sizeof(struct sysrq_state), GFP_KERNEL);
804 if (!sysrq)
Dmitry Torokhov97f5f0c2010-03-21 22:31:26 -0700805 return -ENOMEM;
806
Dmitry Torokhovfcb71932010-11-15 00:23:42 -0800807 INIT_WORK(&sysrq->reinject_work, sysrq_reinject_alt_sysrq);
Dmitry Torokhov97f5f0c2010-03-21 22:31:26 -0700808
Dmitry Torokhovfcb71932010-11-15 00:23:42 -0800809 sysrq->handle.dev = dev;
810 sysrq->handle.handler = handler;
811 sysrq->handle.name = "sysrq";
812 sysrq->handle.private = sysrq;
813
814 error = input_register_handle(&sysrq->handle);
Dmitry Torokhov97f5f0c2010-03-21 22:31:26 -0700815 if (error) {
816 pr_err("Failed to register input sysrq handler, error %d\n",
817 error);
818 goto err_free;
819 }
820
Dmitry Torokhovfcb71932010-11-15 00:23:42 -0800821 error = input_open_device(&sysrq->handle);
Dmitry Torokhov97f5f0c2010-03-21 22:31:26 -0700822 if (error) {
823 pr_err("Failed to open input device, error %d\n", error);
824 goto err_unregister;
825 }
826
827 return 0;
828
829 err_unregister:
Dmitry Torokhovfcb71932010-11-15 00:23:42 -0800830 input_unregister_handle(&sysrq->handle);
Dmitry Torokhov97f5f0c2010-03-21 22:31:26 -0700831 err_free:
Dmitry Torokhovfcb71932010-11-15 00:23:42 -0800832 kfree(sysrq);
Dmitry Torokhov97f5f0c2010-03-21 22:31:26 -0700833 return error;
834}
835
836static void sysrq_disconnect(struct input_handle *handle)
837{
Dmitry Torokhovfcb71932010-11-15 00:23:42 -0800838 struct sysrq_state *sysrq = handle->private;
839
Dmitry Torokhov97f5f0c2010-03-21 22:31:26 -0700840 input_close_device(handle);
Dmitry Torokhovfcb71932010-11-15 00:23:42 -0800841 cancel_work_sync(&sysrq->reinject_work);
Dmitry Torokhov97f5f0c2010-03-21 22:31:26 -0700842 input_unregister_handle(handle);
Dmitry Torokhovfcb71932010-11-15 00:23:42 -0800843 kfree(sysrq);
Dmitry Torokhov97f5f0c2010-03-21 22:31:26 -0700844}
845
846/*
Dmitry Torokhov1966cb22010-09-29 18:04:21 -0700847 * We are matching on KEY_LEFTALT instead of KEY_SYSRQ because not all
848 * keyboards have SysRq key predefined and so user may add it to keymap
Dmitry Torokhov97f5f0c2010-03-21 22:31:26 -0700849 * later, but we expect all such keyboards to have left alt.
850 */
851static const struct input_device_id sysrq_ids[] = {
852 {
853 .flags = INPUT_DEVICE_ID_MATCH_EVBIT |
854 INPUT_DEVICE_ID_MATCH_KEYBIT,
855 .evbit = { BIT_MASK(EV_KEY) },
856 .keybit = { BIT_MASK(KEY_LEFTALT) },
857 },
858 { },
859};
860
861static struct input_handler sysrq_handler = {
862 .filter = sysrq_filter,
863 .connect = sysrq_connect,
864 .disconnect = sysrq_disconnect,
865 .name = "sysrq",
866 .id_table = sysrq_ids,
867};
868
869static bool sysrq_handler_registered;
870
871static inline void sysrq_register_handler(void)
872{
Mathieu Poirier154b7a42013-01-06 23:23:33 -0800873 extern unsigned short platform_sysrq_reset_seq[] __weak;
874 unsigned short key;
Dmitry Torokhov97f5f0c2010-03-21 22:31:26 -0700875 int error;
Mathieu Poirier154b7a42013-01-06 23:23:33 -0800876 int i;
877
878 if (platform_sysrq_reset_seq) {
879 for (i = 0; i < ARRAY_SIZE(sysrq_reset_seq); i++) {
880 key = platform_sysrq_reset_seq[i];
881 if (key == KEY_RESERVED || key > KEY_MAX)
882 break;
883
884 sysrq_reset_seq[sysrq_reset_seq_len++] = key;
885 }
886 }
Dmitry Torokhov97f5f0c2010-03-21 22:31:26 -0700887
888 error = input_register_handler(&sysrq_handler);
889 if (error)
890 pr_err("Failed to register input handler, error %d", error);
891 else
892 sysrq_handler_registered = true;
893}
894
895static inline void sysrq_unregister_handler(void)
896{
897 if (sysrq_handler_registered) {
898 input_unregister_handler(&sysrq_handler);
899 sysrq_handler_registered = false;
900 }
901}
902
Mathieu Poirier154b7a42013-01-06 23:23:33 -0800903static int sysrq_reset_seq_param_set(const char *buffer,
904 const struct kernel_param *kp)
905{
906 unsigned long val;
907 int error;
908
909 error = strict_strtoul(buffer, 0, &val);
910 if (error < 0)
911 return error;
912
913 if (val > KEY_MAX)
914 return -EINVAL;
915
916 *((unsigned short *)kp->arg) = val;
917 sysrq_reset_seq_version++;
918
919 return 0;
920}
921
922static struct kernel_param_ops param_ops_sysrq_reset_seq = {
923 .get = param_get_ushort,
924 .set = sysrq_reset_seq_param_set,
925};
926
927#define param_check_sysrq_reset_seq(name, p) \
928 __param_check(name, p, unsigned short)
929
930module_param_array_named(reset_seq, sysrq_reset_seq, sysrq_reset_seq,
931 &sysrq_reset_seq_len, 0644);
932
Dmitry Torokhov97f5f0c2010-03-21 22:31:26 -0700933#else
934
935static inline void sysrq_register_handler(void)
936{
937}
938
939static inline void sysrq_unregister_handler(void)
940{
941}
942
943#endif /* CONFIG_INPUT */
944
945int sysrq_toggle_support(int enable_mask)
946{
947 bool was_enabled = sysrq_on();
948
949 sysrq_enabled = enable_mask;
950
951 if (was_enabled != sysrq_on()) {
952 if (sysrq_on())
953 sysrq_register_handler();
954 else
955 sysrq_unregister_handler();
956 }
957
958 return 0;
959}
960
Adrian Bunkcf62ddc2005-11-08 21:39:47 -0800961static int __sysrq_swap_key_ops(int key, struct sysrq_key_op *insert_op_p,
Andrew Mortonbf36b902006-03-25 03:07:08 -0800962 struct sysrq_key_op *remove_op_p)
963{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964 int retval;
965 unsigned long flags;
966
967 spin_lock_irqsave(&sysrq_key_table_lock, flags);
968 if (__sysrq_get_key_op(key) == remove_op_p) {
969 __sysrq_put_key_op(key, insert_op_p);
970 retval = 0;
971 } else {
972 retval = -1;
973 }
974 spin_unlock_irqrestore(&sysrq_key_table_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975 return retval;
976}
977
978int register_sysrq_key(int key, struct sysrq_key_op *op_p)
979{
980 return __sysrq_swap_key_ops(key, op_p, NULL);
981}
Andrew Mortonbf36b902006-03-25 03:07:08 -0800982EXPORT_SYMBOL(register_sysrq_key);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983
984int unregister_sysrq_key(int key, struct sysrq_key_op *op_p)
985{
986 return __sysrq_swap_key_ops(key, NULL, op_p);
987}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700988EXPORT_SYMBOL(unregister_sysrq_key);
Alexey Dobriyanf40cbaa2008-10-15 22:04:23 -0700989
990#ifdef CONFIG_PROC_FS
991/*
992 * writing 'C' to /proc/sysrq-trigger is like sysrq-C
993 */
994static ssize_t write_sysrq_trigger(struct file *file, const char __user *buf,
995 size_t count, loff_t *ppos)
996{
997 if (count) {
998 char c;
999
1000 if (get_user(c, buf))
1001 return -EFAULT;
Dmitry Torokhovf3353972010-08-17 21:15:47 -07001002 __handle_sysrq(c, false);
Alexey Dobriyanf40cbaa2008-10-15 22:04:23 -07001003 }
Dmitry Torokhov97f5f0c2010-03-21 22:31:26 -07001004
Alexey Dobriyanf40cbaa2008-10-15 22:04:23 -07001005 return count;
1006}
1007
1008static const struct file_operations proc_sysrq_trigger_operations = {
1009 .write = write_sysrq_trigger,
Arnd Bergmann6038f372010-08-15 18:52:59 +02001010 .llseek = noop_llseek,
Alexey Dobriyanf40cbaa2008-10-15 22:04:23 -07001011};
1012
Dmitry Torokhov97f5f0c2010-03-21 22:31:26 -07001013static void sysrq_init_procfs(void)
1014{
1015 if (!proc_create("sysrq-trigger", S_IWUSR, NULL,
1016 &proc_sysrq_trigger_operations))
1017 pr_err("Failed to register proc interface\n");
1018}
1019
1020#else
1021
1022static inline void sysrq_init_procfs(void)
1023{
1024}
1025
1026#endif /* CONFIG_PROC_FS */
1027
Alexey Dobriyanf40cbaa2008-10-15 22:04:23 -07001028static int __init sysrq_init(void)
1029{
Dmitry Torokhov97f5f0c2010-03-21 22:31:26 -07001030 sysrq_init_procfs();
1031
1032 if (sysrq_on())
1033 sysrq_register_handler();
1034
Alexey Dobriyanf40cbaa2008-10-15 22:04:23 -07001035 return 0;
1036}
1037module_init(sysrq_init);