blob: 8db9125133b8bf16bc6b6947775f0b49a1a94e2f [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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070044
45#include <asm/ptrace.h>
Heiko Carstens2033b0c2006-10-06 16:38:42 +020046#include <asm/irq_regs.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070047
48/* Whether we react on sysrq keys or just ignore them */
Andy Whitcroft8c6a98b2011-01-24 09:31:38 -080049static int __read_mostly sysrq_enabled = SYSRQ_DEFAULT_ENABLE;
Dmitry Torokhov97f5f0c2010-03-21 22:31:26 -070050static bool __read_mostly sysrq_always_enabled;
Ingo Molnar5d6f6472006-12-13 00:34:36 -080051
Dmitry Torokhov97f5f0c2010-03-21 22:31:26 -070052static bool sysrq_on(void)
Ingo Molnar5d6f6472006-12-13 00:34:36 -080053{
Dmitry Torokhov97f5f0c2010-03-21 22:31:26 -070054 return sysrq_enabled || sysrq_always_enabled;
Ingo Molnar5d6f6472006-12-13 00:34:36 -080055}
56
57/*
58 * A value of 1 means 'all', other nonzero values are an op mask:
59 */
Dmitry Torokhov97f5f0c2010-03-21 22:31:26 -070060static bool sysrq_on_mask(int mask)
Ingo Molnar5d6f6472006-12-13 00:34:36 -080061{
Dmitry Torokhov97f5f0c2010-03-21 22:31:26 -070062 return sysrq_always_enabled ||
63 sysrq_enabled == 1 ||
64 (sysrq_enabled & mask);
Ingo Molnar5d6f6472006-12-13 00:34:36 -080065}
66
67static int __init sysrq_always_enabled_setup(char *str)
68{
Dmitry Torokhov97f5f0c2010-03-21 22:31:26 -070069 sysrq_always_enabled = true;
70 pr_info("sysrq always enabled.\n");
Ingo Molnar5d6f6472006-12-13 00:34:36 -080071
72 return 1;
73}
74
75__setup("sysrq_always_enabled", sysrq_always_enabled_setup);
76
Linus Torvalds1da177e2005-04-16 15:20:36 -070077
Dmitry Torokhov1495cc92010-08-17 21:15:46 -070078static void sysrq_handle_loglevel(int key)
Linus Torvalds1da177e2005-04-16 15:20:36 -070079{
80 int i;
Dmitry Torokhov97f5f0c2010-03-21 22:31:26 -070081
Linus Torvalds1da177e2005-04-16 15:20:36 -070082 i = key - '0';
83 console_loglevel = 7;
84 printk("Loglevel set to %d\n", i);
85 console_loglevel = i;
Andrew Mortonbf36b902006-03-25 03:07:08 -080086}
Linus Torvalds1da177e2005-04-16 15:20:36 -070087static struct sysrq_key_op sysrq_loglevel_op = {
88 .handler = sysrq_handle_loglevel,
Randy Dunlap208b95c2009-01-06 14:41:13 -080089 .help_msg = "loglevel(0-9)",
Linus Torvalds1da177e2005-04-16 15:20:36 -070090 .action_msg = "Changing Loglevel",
91 .enable_mask = SYSRQ_ENABLE_LOG,
92};
93
Linus Torvalds1da177e2005-04-16 15:20:36 -070094#ifdef CONFIG_VT
Dmitry Torokhov1495cc92010-08-17 21:15:46 -070095static void sysrq_handle_SAK(int key)
Linus Torvalds1da177e2005-04-16 15:20:36 -070096{
Eric W. Biederman8b6312f2007-02-10 01:44:34 -080097 struct work_struct *SAK_work = &vc_cons[fg_console].SAK_work;
Eric W. Biederman8b6312f2007-02-10 01:44:34 -080098 schedule_work(SAK_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -070099}
100static struct sysrq_key_op sysrq_SAK_op = {
101 .handler = sysrq_handle_SAK,
102 .help_msg = "saK",
103 .action_msg = "SAK",
104 .enable_mask = SYSRQ_ENABLE_KEYBOARD,
105};
Andrew Mortonbf36b902006-03-25 03:07:08 -0800106#else
Dmitry Torokhov97f5f0c2010-03-21 22:31:26 -0700107#define sysrq_SAK_op (*(struct sysrq_key_op *)NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108#endif
109
110#ifdef CONFIG_VT
Dmitry Torokhov1495cc92010-08-17 21:15:46 -0700111static void sysrq_handle_unraw(int key)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112{
113 struct kbd_struct *kbd = &kbd_table[fg_console];
114
115 if (kbd)
Bill Nottingham2e8ecb92007-10-16 23:29:38 -0700116 kbd->kbdmode = default_utf8 ? VC_UNICODE : VC_XLATE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117}
118static struct sysrq_key_op sysrq_unraw_op = {
119 .handler = sysrq_handle_unraw,
120 .help_msg = "unRaw",
Bill Nottingham2e8ecb92007-10-16 23:29:38 -0700121 .action_msg = "Keyboard mode set to system default",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122 .enable_mask = SYSRQ_ENABLE_KEYBOARD,
123};
Andrew Mortonbf36b902006-03-25 03:07:08 -0800124#else
Dmitry Torokhov97f5f0c2010-03-21 22:31:26 -0700125#define sysrq_unraw_op (*(struct sysrq_key_op *)NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126#endif /* CONFIG_VT */
127
Dmitry Torokhov1495cc92010-08-17 21:15:46 -0700128static void sysrq_handle_crash(int key)
Hariprasad Nellitheertha86b1ae32005-06-25 14:58:25 -0700129{
Neil Hormand6580a92009-06-17 16:28:17 -0700130 char *killer = NULL;
Hidetoshi Setocab8bd32009-07-29 15:04:14 -0700131
132 panic_on_oops = 1; /* force panic */
133 wmb();
Neil Hormand6580a92009-06-17 16:28:17 -0700134 *killer = 1;
Hariprasad Nellitheertha86b1ae32005-06-25 14:58:25 -0700135}
Hidetoshi Setocab8bd32009-07-29 15:04:14 -0700136static struct sysrq_key_op sysrq_crash_op = {
Neil Hormand6580a92009-06-17 16:28:17 -0700137 .handler = sysrq_handle_crash,
138 .help_msg = "Crash",
139 .action_msg = "Trigger a crash",
Hariprasad Nellitheertha86b1ae32005-06-25 14:58:25 -0700140 .enable_mask = SYSRQ_ENABLE_DUMP,
141};
Hariprasad Nellitheertha86b1ae32005-06-25 14:58:25 -0700142
Dmitry Torokhov1495cc92010-08-17 21:15:46 -0700143static void sysrq_handle_reboot(int key)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144{
Peter Zijlstrab2e9c7d2006-09-30 23:28:02 -0700145 lockdep_off();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146 local_irq_enable();
Eric W. Biederman4de8b9b2005-07-26 11:51:06 -0600147 emergency_restart();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149static struct sysrq_key_op sysrq_reboot_op = {
150 .handler = sysrq_handle_reboot,
151 .help_msg = "reBoot",
152 .action_msg = "Resetting",
153 .enable_mask = SYSRQ_ENABLE_BOOT,
154};
155
Dmitry Torokhov1495cc92010-08-17 21:15:46 -0700156static void sysrq_handle_sync(int key)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157{
158 emergency_sync();
159}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160static struct sysrq_key_op sysrq_sync_op = {
161 .handler = sysrq_handle_sync,
162 .help_msg = "Sync",
163 .action_msg = "Emergency Sync",
164 .enable_mask = SYSRQ_ENABLE_SYNC,
165};
166
Dmitry Torokhov1495cc92010-08-17 21:15:46 -0700167static void sysrq_handle_show_timers(int key)
Ingo Molnar88ad0bf62007-02-16 01:28:16 -0800168{
169 sysrq_timer_list_show();
170}
171
172static struct sysrq_key_op sysrq_show_timers_op = {
173 .handler = sysrq_handle_show_timers,
174 .help_msg = "show-all-timers(Q)",
Thomas Gleixner322acf62008-10-20 12:33:14 +0200175 .action_msg = "Show clockevent devices & pending hrtimers (no others)",
Ingo Molnar88ad0bf62007-02-16 01:28:16 -0800176};
177
Dmitry Torokhov1495cc92010-08-17 21:15:46 -0700178static void sysrq_handle_mountro(int key)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179{
180 emergency_remount();
181}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182static struct sysrq_key_op sysrq_mountro_op = {
183 .handler = sysrq_handle_mountro,
184 .help_msg = "Unmount",
185 .action_msg = "Emergency Remount R/O",
186 .enable_mask = SYSRQ_ENABLE_REMOUNT,
187};
188
Ingo Molnar8c645802006-07-03 00:24:56 -0700189#ifdef CONFIG_LOCKDEP
Dmitry Torokhov1495cc92010-08-17 21:15:46 -0700190static void sysrq_handle_showlocks(int key)
Ingo Molnarde5097c2006-01-09 15:59:21 -0800191{
Ingo Molnar9a11b49a2006-07-03 00:24:33 -0700192 debug_show_all_locks();
Ingo Molnarde5097c2006-01-09 15:59:21 -0800193}
Ingo Molnar8c645802006-07-03 00:24:56 -0700194
Ingo Molnarde5097c2006-01-09 15:59:21 -0800195static struct sysrq_key_op sysrq_showlocks_op = {
196 .handler = sysrq_handle_showlocks,
197 .help_msg = "show-all-locks(D)",
198 .action_msg = "Show Locks Held",
199};
Andrew Mortonbf36b902006-03-25 03:07:08 -0800200#else
Dmitry Torokhov97f5f0c2010-03-21 22:31:26 -0700201#define sysrq_showlocks_op (*(struct sysrq_key_op *)NULL)
Ingo Molnarde5097c2006-01-09 15:59:21 -0800202#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203
Rik van Riel5045bca2008-04-29 00:59:21 -0700204#ifdef CONFIG_SMP
205static DEFINE_SPINLOCK(show_lock);
206
207static void showacpu(void *dummy)
208{
209 unsigned long flags;
210
211 /* Idle CPUs have no interesting backtrace. */
212 if (idle_cpu(smp_processor_id()))
213 return;
214
215 spin_lock_irqsave(&show_lock, flags);
216 printk(KERN_INFO "CPU%d:\n", smp_processor_id());
217 show_stack(NULL, NULL);
218 spin_unlock_irqrestore(&show_lock, flags);
219}
220
221static void sysrq_showregs_othercpus(struct work_struct *dummy)
222{
Ingo Molnar8b604d52008-06-27 11:52:45 +0200223 smp_call_function(showacpu, NULL, 0);
Rik van Riel5045bca2008-04-29 00:59:21 -0700224}
225
226static DECLARE_WORK(sysrq_showallcpus, sysrq_showregs_othercpus);
227
Dmitry Torokhov1495cc92010-08-17 21:15:46 -0700228static void sysrq_handle_showallcpus(int key)
Rik van Riel5045bca2008-04-29 00:59:21 -0700229{
Ingo Molnar47cab6a2009-08-03 09:31:54 +0200230 /*
231 * Fall back to the workqueue based printing if the
232 * backtrace printing did not succeed or the
233 * architecture has no support for it:
234 */
235 if (!trigger_all_cpu_backtrace()) {
236 struct pt_regs *regs = get_irq_regs();
237
238 if (regs) {
239 printk(KERN_INFO "CPU%d:\n", smp_processor_id());
240 show_regs(regs);
241 }
242 schedule_work(&sysrq_showallcpus);
243 }
Rik van Riel5045bca2008-04-29 00:59:21 -0700244}
245
246static struct sysrq_key_op sysrq_showallcpus_op = {
247 .handler = sysrq_handle_showallcpus,
Randy Dunlap208b95c2009-01-06 14:41:13 -0800248 .help_msg = "show-backtrace-all-active-cpus(L)",
Rik van Riel5045bca2008-04-29 00:59:21 -0700249 .action_msg = "Show backtrace of all active CPUs",
250 .enable_mask = SYSRQ_ENABLE_DUMP,
251};
252#endif
253
Dmitry Torokhov1495cc92010-08-17 21:15:46 -0700254static void sysrq_handle_showregs(int key)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255{
David Howells7d12e782006-10-05 14:55:46 +0100256 struct pt_regs *regs = get_irq_regs();
257 if (regs)
258 show_regs(regs);
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200259 perf_event_print_debug();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260}
261static struct sysrq_key_op sysrq_showregs_op = {
262 .handler = sysrq_handle_showregs,
Randy Dunlap208b95c2009-01-06 14:41:13 -0800263 .help_msg = "show-registers(P)",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264 .action_msg = "Show Regs",
265 .enable_mask = SYSRQ_ENABLE_DUMP,
266};
267
Dmitry Torokhov1495cc92010-08-17 21:15:46 -0700268static void sysrq_handle_showstate(int key)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269{
270 show_state();
271}
272static struct sysrq_key_op sysrq_showstate_op = {
273 .handler = sysrq_handle_showstate,
Randy Dunlap208b95c2009-01-06 14:41:13 -0800274 .help_msg = "show-task-states(T)",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275 .action_msg = "Show State",
276 .enable_mask = SYSRQ_ENABLE_DUMP,
277};
278
Dmitry Torokhov1495cc92010-08-17 21:15:46 -0700279static void sysrq_handle_showstate_blocked(int key)
Ingo Molnare59e2ae2006-12-06 20:35:59 -0800280{
281 show_state_filter(TASK_UNINTERRUPTIBLE);
282}
283static struct sysrq_key_op sysrq_showstate_blocked_op = {
284 .handler = sysrq_handle_showstate_blocked,
Randy Dunlap208b95c2009-01-06 14:41:13 -0800285 .help_msg = "show-blocked-tasks(W)",
Ingo Molnare59e2ae2006-12-06 20:35:59 -0800286 .action_msg = "Show Blocked State",
287 .enable_mask = SYSRQ_ENABLE_DUMP,
288};
289
Peter Zijlstra69f698a2008-11-01 19:53:34 +0100290#ifdef CONFIG_TRACING
291#include <linux/ftrace.h>
292
Dmitry Torokhov1495cc92010-08-17 21:15:46 -0700293static void sysrq_ftrace_dump(int key)
Peter Zijlstra69f698a2008-11-01 19:53:34 +0100294{
Frederic Weisbeckercecbca92010-04-18 19:08:41 +0200295 ftrace_dump(DUMP_ALL);
Peter Zijlstra69f698a2008-11-01 19:53:34 +0100296}
297static struct sysrq_key_op sysrq_ftrace_dump_op = {
298 .handler = sysrq_ftrace_dump,
Randy Dunlap3871f2f2008-12-24 16:06:57 -0800299 .help_msg = "dump-ftrace-buffer(Z)",
Peter Zijlstra69f698a2008-11-01 19:53:34 +0100300 .action_msg = "Dump ftrace buffer",
301 .enable_mask = SYSRQ_ENABLE_DUMP,
302};
303#else
Dmitry Torokhov97f5f0c2010-03-21 22:31:26 -0700304#define sysrq_ftrace_dump_op (*(struct sysrq_key_op *)NULL)
Peter Zijlstra69f698a2008-11-01 19:53:34 +0100305#endif
Ingo Molnare59e2ae2006-12-06 20:35:59 -0800306
Dmitry Torokhov1495cc92010-08-17 21:15:46 -0700307static void sysrq_handle_showmem(int key)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308{
David Rientjesb2b755b2011-03-24 15:18:15 -0700309 show_mem(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310}
311static struct sysrq_key_op sysrq_showmem_op = {
312 .handler = sysrq_handle_showmem,
Randy Dunlap208b95c2009-01-06 14:41:13 -0800313 .help_msg = "show-memory-usage(M)",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314 .action_msg = "Show Memory",
315 .enable_mask = SYSRQ_ENABLE_DUMP,
316};
317
Andrew Mortonbf36b902006-03-25 03:07:08 -0800318/*
319 * Signal sysrq helper function. Sends a signal to all user processes.
320 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321static void send_sig_all(int sig)
322{
323 struct task_struct *p;
324
Anton Vorontsove502bab2012-02-07 10:49:39 +0400325 read_lock(&tasklist_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326 for_each_process(p) {
Anton Vorontsovd3a532a2012-02-07 10:49:51 +0400327 if (p->flags & PF_KTHREAD)
328 continue;
329 if (is_global_init(p))
330 continue;
331
332 force_sig(sig, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333 }
Anton Vorontsove502bab2012-02-07 10:49:39 +0400334 read_unlock(&tasklist_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335}
336
Dmitry Torokhov1495cc92010-08-17 21:15:46 -0700337static void sysrq_handle_term(int key)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338{
339 send_sig_all(SIGTERM);
340 console_loglevel = 8;
341}
342static struct sysrq_key_op sysrq_term_op = {
343 .handler = sysrq_handle_term,
Randy Dunlap208b95c2009-01-06 14:41:13 -0800344 .help_msg = "terminate-all-tasks(E)",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345 .action_msg = "Terminate All Tasks",
346 .enable_mask = SYSRQ_ENABLE_SIGNAL,
347};
348
David Howells65f27f32006-11-22 14:55:48 +0000349static void moom_callback(struct work_struct *ignored)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350{
KAMEZAWA Hiroyuki4365a562009-12-15 16:45:33 -0800351 out_of_memory(node_zonelist(0, GFP_KERNEL), GFP_KERNEL, 0, NULL);
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 */
457 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;
Dmitry Torokhovfcb71932010-11-15 00:23:42 -0800580};
Dmitry Torokhov97f5f0c2010-03-21 22:31:26 -0700581
Dmitry Torokhovfcb71932010-11-15 00:23:42 -0800582static void sysrq_reinject_alt_sysrq(struct work_struct *work)
Dmitry Torokhov97f5f0c2010-03-21 22:31:26 -0700583{
Dmitry Torokhovfcb71932010-11-15 00:23:42 -0800584 struct sysrq_state *sysrq =
585 container_of(work, struct sysrq_state, reinject_work);
586 struct input_handle *handle = &sysrq->handle;
587 unsigned int alt_code = sysrq->alt_use;
588
589 if (sysrq->need_reinject) {
Dmitry Torokhov7ab7b5a2011-02-02 22:59:54 -0800590 /* we do not want the assignment to be reordered */
591 sysrq->reinjecting = true;
592 mb();
593
Dmitry Torokhovfcb71932010-11-15 00:23:42 -0800594 /* Simulate press and release of Alt + SysRq */
595 input_inject_event(handle, EV_KEY, alt_code, 1);
596 input_inject_event(handle, EV_KEY, KEY_SYSRQ, 1);
597 input_inject_event(handle, EV_SYN, SYN_REPORT, 1);
598
599 input_inject_event(handle, EV_KEY, KEY_SYSRQ, 0);
600 input_inject_event(handle, EV_KEY, alt_code, 0);
601 input_inject_event(handle, EV_SYN, SYN_REPORT, 1);
Dmitry Torokhov7ab7b5a2011-02-02 22:59:54 -0800602
603 mb();
604 sysrq->reinjecting = false;
Dmitry Torokhovfcb71932010-11-15 00:23:42 -0800605 }
606}
607
608static bool sysrq_filter(struct input_handle *handle,
609 unsigned int type, unsigned int code, int value)
610{
611 struct sysrq_state *sysrq = handle->private;
612 bool was_active = sysrq->active;
Dmitry Torokhov1966cb22010-09-29 18:04:21 -0700613 bool suppress;
614
Dmitry Torokhov7ab7b5a2011-02-02 22:59:54 -0800615 /*
616 * Do not filter anything if we are in the process of re-injecting
617 * Alt+SysRq combination.
618 */
619 if (sysrq->reinjecting)
620 return false;
621
Dmitry Torokhovfcb71932010-11-15 00:23:42 -0800622 switch (type) {
Dmitry Torokhov1966cb22010-09-29 18:04:21 -0700623
Dmitry Torokhovfcb71932010-11-15 00:23:42 -0800624 case EV_SYN:
625 suppress = false;
Dmitry Torokhov97f5f0c2010-03-21 22:31:26 -0700626 break;
627
Dmitry Torokhovfcb71932010-11-15 00:23:42 -0800628 case EV_KEY:
629 switch (code) {
630
631 case KEY_LEFTALT:
632 case KEY_RIGHTALT:
633 if (!value) {
634 /* One of ALTs is being released */
635 if (sysrq->active && code == sysrq->alt_use)
636 sysrq->active = false;
637
638 sysrq->alt = KEY_RESERVED;
639
640 } else if (value != 2) {
641 sysrq->alt = code;
642 sysrq->need_reinject = false;
643 }
644 break;
645
646 case KEY_SYSRQ:
647 if (value == 1 && sysrq->alt != KEY_RESERVED) {
648 sysrq->active = true;
649 sysrq->alt_use = sysrq->alt;
650 /*
651 * If nothing else will be pressed we'll need
Dmitry Torokhov7ab7b5a2011-02-02 22:59:54 -0800652 * to re-inject Alt-SysRq keysroke.
Dmitry Torokhovfcb71932010-11-15 00:23:42 -0800653 */
654 sysrq->need_reinject = true;
655 }
656
657 /*
658 * Pretend that sysrq was never pressed at all. This
659 * is needed to properly handle KGDB which will try
660 * to release all keys after exiting debugger. If we
661 * do not clear key bit it KGDB will end up sending
662 * release events for Alt and SysRq, potentially
663 * triggering print screen function.
664 */
665 if (sysrq->active)
666 clear_bit(KEY_SYSRQ, handle->dev->key);
667
668 break;
669
670 default:
671 if (sysrq->active && value && value != 2) {
672 sysrq->need_reinject = false;
673 __handle_sysrq(sysrq_xlate[code], true);
674 }
675 break;
676 }
677
678 suppress = sysrq->active;
679
680 if (!sysrq->active) {
681 /*
682 * If we are not suppressing key presses keep track of
683 * keyboard state so we can release keys that have been
684 * pressed before entering SysRq mode.
685 */
686 if (value)
687 set_bit(code, sysrq->key_down);
688 else
689 clear_bit(code, sysrq->key_down);
690
691 if (was_active)
692 schedule_work(&sysrq->reinject_work);
693
694 } else if (value == 0 &&
695 test_and_clear_bit(code, sysrq->key_down)) {
696 /*
697 * Pass on release events for keys that was pressed before
698 * entering SysRq mode.
699 */
700 suppress = false;
Dmitry Torokhov97f5f0c2010-03-21 22:31:26 -0700701 }
702 break;
703
704 default:
Dmitry Torokhovfcb71932010-11-15 00:23:42 -0800705 suppress = sysrq->active;
Dmitry Torokhov97f5f0c2010-03-21 22:31:26 -0700706 break;
707 }
708
Dmitry Torokhov1966cb22010-09-29 18:04:21 -0700709 return suppress;
Dmitry Torokhov97f5f0c2010-03-21 22:31:26 -0700710}
711
712static int sysrq_connect(struct input_handler *handler,
713 struct input_dev *dev,
714 const struct input_device_id *id)
715{
Dmitry Torokhovfcb71932010-11-15 00:23:42 -0800716 struct sysrq_state *sysrq;
Dmitry Torokhov97f5f0c2010-03-21 22:31:26 -0700717 int error;
718
Dmitry Torokhovfcb71932010-11-15 00:23:42 -0800719 sysrq = kzalloc(sizeof(struct sysrq_state), GFP_KERNEL);
720 if (!sysrq)
Dmitry Torokhov97f5f0c2010-03-21 22:31:26 -0700721 return -ENOMEM;
722
Dmitry Torokhovfcb71932010-11-15 00:23:42 -0800723 INIT_WORK(&sysrq->reinject_work, sysrq_reinject_alt_sysrq);
Dmitry Torokhov97f5f0c2010-03-21 22:31:26 -0700724
Dmitry Torokhovfcb71932010-11-15 00:23:42 -0800725 sysrq->handle.dev = dev;
726 sysrq->handle.handler = handler;
727 sysrq->handle.name = "sysrq";
728 sysrq->handle.private = sysrq;
729
730 error = input_register_handle(&sysrq->handle);
Dmitry Torokhov97f5f0c2010-03-21 22:31:26 -0700731 if (error) {
732 pr_err("Failed to register input sysrq handler, error %d\n",
733 error);
734 goto err_free;
735 }
736
Dmitry Torokhovfcb71932010-11-15 00:23:42 -0800737 error = input_open_device(&sysrq->handle);
Dmitry Torokhov97f5f0c2010-03-21 22:31:26 -0700738 if (error) {
739 pr_err("Failed to open input device, error %d\n", error);
740 goto err_unregister;
741 }
742
743 return 0;
744
745 err_unregister:
Dmitry Torokhovfcb71932010-11-15 00:23:42 -0800746 input_unregister_handle(&sysrq->handle);
Dmitry Torokhov97f5f0c2010-03-21 22:31:26 -0700747 err_free:
Dmitry Torokhovfcb71932010-11-15 00:23:42 -0800748 kfree(sysrq);
Dmitry Torokhov97f5f0c2010-03-21 22:31:26 -0700749 return error;
750}
751
752static void sysrq_disconnect(struct input_handle *handle)
753{
Dmitry Torokhovfcb71932010-11-15 00:23:42 -0800754 struct sysrq_state *sysrq = handle->private;
755
Dmitry Torokhov97f5f0c2010-03-21 22:31:26 -0700756 input_close_device(handle);
Dmitry Torokhovfcb71932010-11-15 00:23:42 -0800757 cancel_work_sync(&sysrq->reinject_work);
Dmitry Torokhov97f5f0c2010-03-21 22:31:26 -0700758 input_unregister_handle(handle);
Dmitry Torokhovfcb71932010-11-15 00:23:42 -0800759 kfree(sysrq);
Dmitry Torokhov97f5f0c2010-03-21 22:31:26 -0700760}
761
762/*
Dmitry Torokhov1966cb22010-09-29 18:04:21 -0700763 * We are matching on KEY_LEFTALT instead of KEY_SYSRQ because not all
764 * keyboards have SysRq key predefined and so user may add it to keymap
Dmitry Torokhov97f5f0c2010-03-21 22:31:26 -0700765 * later, but we expect all such keyboards to have left alt.
766 */
767static const struct input_device_id sysrq_ids[] = {
768 {
769 .flags = INPUT_DEVICE_ID_MATCH_EVBIT |
770 INPUT_DEVICE_ID_MATCH_KEYBIT,
771 .evbit = { BIT_MASK(EV_KEY) },
772 .keybit = { BIT_MASK(KEY_LEFTALT) },
773 },
774 { },
775};
776
777static struct input_handler sysrq_handler = {
778 .filter = sysrq_filter,
779 .connect = sysrq_connect,
780 .disconnect = sysrq_disconnect,
781 .name = "sysrq",
782 .id_table = sysrq_ids,
783};
784
785static bool sysrq_handler_registered;
786
787static inline void sysrq_register_handler(void)
788{
789 int error;
790
791 error = input_register_handler(&sysrq_handler);
792 if (error)
793 pr_err("Failed to register input handler, error %d", error);
794 else
795 sysrq_handler_registered = true;
796}
797
798static inline void sysrq_unregister_handler(void)
799{
800 if (sysrq_handler_registered) {
801 input_unregister_handler(&sysrq_handler);
802 sysrq_handler_registered = false;
803 }
804}
805
806#else
807
808static inline void sysrq_register_handler(void)
809{
810}
811
812static inline void sysrq_unregister_handler(void)
813{
814}
815
816#endif /* CONFIG_INPUT */
817
818int sysrq_toggle_support(int enable_mask)
819{
820 bool was_enabled = sysrq_on();
821
822 sysrq_enabled = enable_mask;
823
824 if (was_enabled != sysrq_on()) {
825 if (sysrq_on())
826 sysrq_register_handler();
827 else
828 sysrq_unregister_handler();
829 }
830
831 return 0;
832}
833
Adrian Bunkcf62ddc2005-11-08 21:39:47 -0800834static int __sysrq_swap_key_ops(int key, struct sysrq_key_op *insert_op_p,
Andrew Mortonbf36b902006-03-25 03:07:08 -0800835 struct sysrq_key_op *remove_op_p)
836{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837 int retval;
838 unsigned long flags;
839
840 spin_lock_irqsave(&sysrq_key_table_lock, flags);
841 if (__sysrq_get_key_op(key) == remove_op_p) {
842 __sysrq_put_key_op(key, insert_op_p);
843 retval = 0;
844 } else {
845 retval = -1;
846 }
847 spin_unlock_irqrestore(&sysrq_key_table_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848 return retval;
849}
850
851int register_sysrq_key(int key, struct sysrq_key_op *op_p)
852{
853 return __sysrq_swap_key_ops(key, op_p, NULL);
854}
Andrew Mortonbf36b902006-03-25 03:07:08 -0800855EXPORT_SYMBOL(register_sysrq_key);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856
857int unregister_sysrq_key(int key, struct sysrq_key_op *op_p)
858{
859 return __sysrq_swap_key_ops(key, NULL, op_p);
860}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861EXPORT_SYMBOL(unregister_sysrq_key);
Alexey Dobriyanf40cbaa2008-10-15 22:04:23 -0700862
863#ifdef CONFIG_PROC_FS
864/*
865 * writing 'C' to /proc/sysrq-trigger is like sysrq-C
866 */
867static ssize_t write_sysrq_trigger(struct file *file, const char __user *buf,
868 size_t count, loff_t *ppos)
869{
870 if (count) {
871 char c;
872
873 if (get_user(c, buf))
874 return -EFAULT;
Dmitry Torokhovf3353972010-08-17 21:15:47 -0700875 __handle_sysrq(c, false);
Alexey Dobriyanf40cbaa2008-10-15 22:04:23 -0700876 }
Dmitry Torokhov97f5f0c2010-03-21 22:31:26 -0700877
Alexey Dobriyanf40cbaa2008-10-15 22:04:23 -0700878 return count;
879}
880
881static const struct file_operations proc_sysrq_trigger_operations = {
882 .write = write_sysrq_trigger,
Arnd Bergmann6038f372010-08-15 18:52:59 +0200883 .llseek = noop_llseek,
Alexey Dobriyanf40cbaa2008-10-15 22:04:23 -0700884};
885
Dmitry Torokhov97f5f0c2010-03-21 22:31:26 -0700886static void sysrq_init_procfs(void)
887{
888 if (!proc_create("sysrq-trigger", S_IWUSR, NULL,
889 &proc_sysrq_trigger_operations))
890 pr_err("Failed to register proc interface\n");
891}
892
893#else
894
895static inline void sysrq_init_procfs(void)
896{
897}
898
899#endif /* CONFIG_PROC_FS */
900
Alexey Dobriyanf40cbaa2008-10-15 22:04:23 -0700901static int __init sysrq_init(void)
902{
Dmitry Torokhov97f5f0c2010-03-21 22:31:26 -0700903 sysrq_init_procfs();
904
905 if (sysrq_on())
906 sysrq_register_handler();
907
Alexey Dobriyanf40cbaa2008-10-15 22:04:23 -0700908 return 0;
909}
910module_init(sysrq_init);