sysrq.c 14.8 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
/* -*- linux-c -*-
 *
 *	$Id: sysrq.c,v 1.15 1998/08/23 14:56:41 mj Exp $
 *
 *	Linux Magic System Request Key Hacks
 *
 *	(c) 1997 Martin Mares <mj@atrey.karlin.mff.cuni.cz>
 *	based on ideas by Pavel Machek <pavel@atrey.karlin.mff.cuni.cz>
 *
 *	(c) 2000 Crutcher Dunnavant <crutcher+kernel@datastacks.com>
 *	overhauled to use key registration
 *	based upon discusions in irc://irc.openprojects.net/#kernelnewbies
 */

#include <linux/sched.h>
#include <linux/interrupt.h>
#include <linux/mm.h>
#include <linux/fs.h>
#include <linux/tty.h>
#include <linux/mount.h>
#include <linux/kdev_t.h>
#include <linux/major.h>
#include <linux/reboot.h>
#include <linux/sysrq.h>
#include <linux/kbd_kern.h>
26
#include <linux/proc_fs.h>
27
#include <linux/nmi.h>
L
Linus Torvalds 已提交
28
#include <linux/quotaops.h>
T
Thomas Gleixner 已提交
29
#include <linux/perf_counter.h>
L
Linus Torvalds 已提交
30 31 32 33 34 35 36 37 38
#include <linux/kernel.h>
#include <linux/module.h>
#include <linux/suspend.h>
#include <linux/writeback.h>
#include <linux/buffer_head.h>		/* for fsync_bdev() */
#include <linux/swap.h>
#include <linux/spinlock.h>
#include <linux/vt_kern.h>
#include <linux/workqueue.h>
39
#include <linux/hrtimer.h>
40
#include <linux/oom.h>
L
Linus Torvalds 已提交
41 42

#include <asm/ptrace.h>
43
#include <asm/irq_regs.h>
L
Linus Torvalds 已提交
44 45

/* Whether we react on sysrq keys or just ignore them */
46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73
int __read_mostly __sysrq_enabled = 1;

static int __read_mostly sysrq_always_enabled;

int sysrq_on(void)
{
	return __sysrq_enabled || sysrq_always_enabled;
}

/*
 * A value of 1 means 'all', other nonzero values are an op mask:
 */
static inline int sysrq_on_mask(int mask)
{
	return sysrq_always_enabled || __sysrq_enabled == 1 ||
						(__sysrq_enabled & mask);
}

static int __init sysrq_always_enabled_setup(char *str)
{
	sysrq_always_enabled = 1;
	printk(KERN_INFO "debug: sysrq always enabled.\n");

	return 1;
}

__setup("sysrq_always_enabled", sysrq_always_enabled_setup);

L
Linus Torvalds 已提交
74

75
static void sysrq_handle_loglevel(int key, struct tty_struct *tty)
L
Linus Torvalds 已提交
76 77 78 79 80 81
{
	int i;
	i = key - '0';
	console_loglevel = 7;
	printk("Loglevel set to %d\n", i);
	console_loglevel = i;
A
Andrew Morton 已提交
82
}
L
Linus Torvalds 已提交
83 84
static struct sysrq_key_op sysrq_loglevel_op = {
	.handler	= sysrq_handle_loglevel,
85
	.help_msg	= "loglevel(0-9)",
L
Linus Torvalds 已提交
86 87 88 89 90
	.action_msg	= "Changing Loglevel",
	.enable_mask	= SYSRQ_ENABLE_LOG,
};

#ifdef CONFIG_VT
91
static void sysrq_handle_SAK(int key, struct tty_struct *tty)
L
Linus Torvalds 已提交
92
{
93 94
	struct work_struct *SAK_work = &vc_cons[fg_console].SAK_work;
	schedule_work(SAK_work);
L
Linus Torvalds 已提交
95 96 97 98 99 100 101
}
static struct sysrq_key_op sysrq_SAK_op = {
	.handler	= sysrq_handle_SAK,
	.help_msg	= "saK",
	.action_msg	= "SAK",
	.enable_mask	= SYSRQ_ENABLE_KEYBOARD,
};
A
Andrew Morton 已提交
102 103
#else
#define sysrq_SAK_op (*(struct sysrq_key_op *)0)
L
Linus Torvalds 已提交
104 105 106
#endif

#ifdef CONFIG_VT
107
static void sysrq_handle_unraw(int key, struct tty_struct *tty)
L
Linus Torvalds 已提交
108 109 110 111
{
	struct kbd_struct *kbd = &kbd_table[fg_console];

	if (kbd)
B
Bill Nottingham 已提交
112
		kbd->kbdmode = default_utf8 ? VC_UNICODE : VC_XLATE;
L
Linus Torvalds 已提交
113 114 115 116
}
static struct sysrq_key_op sysrq_unraw_op = {
	.handler	= sysrq_handle_unraw,
	.help_msg	= "unRaw",
B
Bill Nottingham 已提交
117
	.action_msg	= "Keyboard mode set to system default",
L
Linus Torvalds 已提交
118 119
	.enable_mask	= SYSRQ_ENABLE_KEYBOARD,
};
A
Andrew Morton 已提交
120 121
#else
#define sysrq_unraw_op (*(struct sysrq_key_op *)0)
L
Linus Torvalds 已提交
122 123
#endif /* CONFIG_VT */

124
static void sysrq_handle_crash(int key, struct tty_struct *tty)
125
{
126
	char *killer = NULL;
127 128 129

	panic_on_oops = 1;	/* force panic */
	wmb();
130
	*killer = 1;
131
}
132
static struct sysrq_key_op sysrq_crash_op = {
133 134 135
	.handler	= sysrq_handle_crash,
	.help_msg	= "Crash",
	.action_msg	= "Trigger a crash",
136 137 138
	.enable_mask	= SYSRQ_ENABLE_DUMP,
};

139
static void sysrq_handle_reboot(int key, struct tty_struct *tty)
L
Linus Torvalds 已提交
140
{
141
	lockdep_off();
L
Linus Torvalds 已提交
142
	local_irq_enable();
143
	emergency_restart();
L
Linus Torvalds 已提交
144 145 146 147 148 149 150 151
}
static struct sysrq_key_op sysrq_reboot_op = {
	.handler	= sysrq_handle_reboot,
	.help_msg	= "reBoot",
	.action_msg	= "Resetting",
	.enable_mask	= SYSRQ_ENABLE_BOOT,
};

152
static void sysrq_handle_sync(int key, struct tty_struct *tty)
L
Linus Torvalds 已提交
153 154 155 156 157 158 159 160 161 162
{
	emergency_sync();
}
static struct sysrq_key_op sysrq_sync_op = {
	.handler	= sysrq_handle_sync,
	.help_msg	= "Sync",
	.action_msg	= "Emergency Sync",
	.enable_mask	= SYSRQ_ENABLE_SYNC,
};

163 164 165 166 167 168 169 170
static void sysrq_handle_show_timers(int key, struct tty_struct *tty)
{
	sysrq_timer_list_show();
}

static struct sysrq_key_op sysrq_show_timers_op = {
	.handler	= sysrq_handle_show_timers,
	.help_msg	= "show-all-timers(Q)",
171
	.action_msg	= "Show clockevent devices & pending hrtimers (no others)",
172 173
};

174
static void sysrq_handle_mountro(int key, struct tty_struct *tty)
L
Linus Torvalds 已提交
175 176 177 178 179 180 181 182 183 184
{
	emergency_remount();
}
static struct sysrq_key_op sysrq_mountro_op = {
	.handler	= sysrq_handle_mountro,
	.help_msg	= "Unmount",
	.action_msg	= "Emergency Remount R/O",
	.enable_mask	= SYSRQ_ENABLE_REMOUNT,
};

185
#ifdef CONFIG_LOCKDEP
186
static void sysrq_handle_showlocks(int key, struct tty_struct *tty)
187
{
188
	debug_show_all_locks();
189
}
190

191 192 193 194 195
static struct sysrq_key_op sysrq_showlocks_op = {
	.handler	= sysrq_handle_showlocks,
	.help_msg	= "show-all-locks(D)",
	.action_msg	= "Show Locks Held",
};
A
Andrew Morton 已提交
196 197
#else
#define sysrq_showlocks_op (*(struct sysrq_key_op *)0)
198
#endif
L
Linus Torvalds 已提交
199

200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218
#ifdef CONFIG_SMP
static DEFINE_SPINLOCK(show_lock);

static void showacpu(void *dummy)
{
	unsigned long flags;

	/* Idle CPUs have no interesting backtrace. */
	if (idle_cpu(smp_processor_id()))
		return;

	spin_lock_irqsave(&show_lock, flags);
	printk(KERN_INFO "CPU%d:\n", smp_processor_id());
	show_stack(NULL, NULL);
	spin_unlock_irqrestore(&show_lock, flags);
}

static void sysrq_showregs_othercpus(struct work_struct *dummy)
{
219
	smp_call_function(showacpu, NULL, 0);
220 221 222 223 224 225
}

static DECLARE_WORK(sysrq_showallcpus, sysrq_showregs_othercpus);

static void sysrq_handle_showallcpus(int key, struct tty_struct *tty)
{
226 227 228 229 230 231 232 233 234 235 236 237 238 239
	/*
	 * Fall back to the workqueue based printing if the
	 * backtrace printing did not succeed or the
	 * architecture has no support for it:
	 */
	if (!trigger_all_cpu_backtrace()) {
		struct pt_regs *regs = get_irq_regs();

		if (regs) {
			printk(KERN_INFO "CPU%d:\n", smp_processor_id());
			show_regs(regs);
		}
		schedule_work(&sysrq_showallcpus);
	}
240 241 242 243
}

static struct sysrq_key_op sysrq_showallcpus_op = {
	.handler	= sysrq_handle_showallcpus,
244
	.help_msg	= "show-backtrace-all-active-cpus(L)",
245 246 247 248 249
	.action_msg	= "Show backtrace of all active CPUs",
	.enable_mask	= SYSRQ_ENABLE_DUMP,
};
#endif

250
static void sysrq_handle_showregs(int key, struct tty_struct *tty)
L
Linus Torvalds 已提交
251
{
252 253 254
	struct pt_regs *regs = get_irq_regs();
	if (regs)
		show_regs(regs);
T
Thomas Gleixner 已提交
255
	perf_counter_print_debug();
L
Linus Torvalds 已提交
256 257 258
}
static struct sysrq_key_op sysrq_showregs_op = {
	.handler	= sysrq_handle_showregs,
259
	.help_msg	= "show-registers(P)",
L
Linus Torvalds 已提交
260 261 262 263
	.action_msg	= "Show Regs",
	.enable_mask	= SYSRQ_ENABLE_DUMP,
};

264
static void sysrq_handle_showstate(int key, struct tty_struct *tty)
L
Linus Torvalds 已提交
265 266 267 268 269
{
	show_state();
}
static struct sysrq_key_op sysrq_showstate_op = {
	.handler	= sysrq_handle_showstate,
270
	.help_msg	= "show-task-states(T)",
L
Linus Torvalds 已提交
271 272 273 274
	.action_msg	= "Show State",
	.enable_mask	= SYSRQ_ENABLE_DUMP,
};

I
Ingo Molnar 已提交
275 276 277 278 279 280
static void sysrq_handle_showstate_blocked(int key, struct tty_struct *tty)
{
	show_state_filter(TASK_UNINTERRUPTIBLE);
}
static struct sysrq_key_op sysrq_showstate_blocked_op = {
	.handler	= sysrq_handle_showstate_blocked,
281
	.help_msg	= "show-blocked-tasks(W)",
I
Ingo Molnar 已提交
282 283 284 285
	.action_msg	= "Show Blocked State",
	.enable_mask	= SYSRQ_ENABLE_DUMP,
};

286 287 288 289 290 291 292 293 294
#ifdef CONFIG_TRACING
#include <linux/ftrace.h>

static void sysrq_ftrace_dump(int key, struct tty_struct *tty)
{
	ftrace_dump();
}
static struct sysrq_key_op sysrq_ftrace_dump_op = {
	.handler	= sysrq_ftrace_dump,
R
Randy Dunlap 已提交
295
	.help_msg	= "dump-ftrace-buffer(Z)",
296 297 298 299 300 301
	.action_msg	= "Dump ftrace buffer",
	.enable_mask	= SYSRQ_ENABLE_DUMP,
};
#else
#define sysrq_ftrace_dump_op (*(struct sysrq_key_op *)0)
#endif
I
Ingo Molnar 已提交
302

303
static void sysrq_handle_showmem(int key, struct tty_struct *tty)
L
Linus Torvalds 已提交
304 305 306 307 308
{
	show_mem();
}
static struct sysrq_key_op sysrq_showmem_op = {
	.handler	= sysrq_handle_showmem,
309
	.help_msg	= "show-memory-usage(M)",
L
Linus Torvalds 已提交
310 311 312 313
	.action_msg	= "Show Memory",
	.enable_mask	= SYSRQ_ENABLE_DUMP,
};

A
Andrew Morton 已提交
314 315 316
/*
 * Signal sysrq helper function.  Sends a signal to all user processes.
 */
L
Linus Torvalds 已提交
317 318 319 320 321
static void send_sig_all(int sig)
{
	struct task_struct *p;

	for_each_process(p) {
322
		if (p->mm && !is_global_init(p))
L
Linus Torvalds 已提交
323 324 325 326 327
			/* Not swapper, init nor kernel thread */
			force_sig(sig, p);
	}
}

328
static void sysrq_handle_term(int key, struct tty_struct *tty)
L
Linus Torvalds 已提交
329 330 331 332 333 334
{
	send_sig_all(SIGTERM);
	console_loglevel = 8;
}
static struct sysrq_key_op sysrq_term_op = {
	.handler	= sysrq_handle_term,
335
	.help_msg	= "terminate-all-tasks(E)",
L
Linus Torvalds 已提交
336 337 338 339
	.action_msg	= "Terminate All Tasks",
	.enable_mask	= SYSRQ_ENABLE_SIGNAL,
};

340
static void moom_callback(struct work_struct *ignored)
L
Linus Torvalds 已提交
341
{
342
	out_of_memory(node_zonelist(0, GFP_KERNEL), GFP_KERNEL, 0);
L
Linus Torvalds 已提交
343 344
}

345
static DECLARE_WORK(moom_work, moom_callback);
L
Linus Torvalds 已提交
346

347
static void sysrq_handle_moom(int key, struct tty_struct *tty)
L
Linus Torvalds 已提交
348 349 350 351 352
{
	schedule_work(&moom_work);
}
static struct sysrq_key_op sysrq_moom_op = {
	.handler	= sysrq_handle_moom,
353
	.help_msg	= "memory-full-oom-kill(F)",
L
Linus Torvalds 已提交
354
	.action_msg	= "Manual OOM execution",
355
	.enable_mask	= SYSRQ_ENABLE_SIGNAL,
L
Linus Torvalds 已提交
356 357
};

358 359 360 361 362 363 364 365 366 367 368 369 370
#ifdef CONFIG_BLOCK
static void sysrq_handle_thaw(int key, struct tty_struct *tty)
{
	emergency_thaw_all();
}
static struct sysrq_key_op sysrq_thaw_op = {
	.handler	= sysrq_handle_thaw,
	.help_msg	= "thaw-filesystems(J)",
	.action_msg	= "Emergency Thaw of all frozen filesystems",
	.enable_mask	= SYSRQ_ENABLE_SIGNAL,
};
#endif

371
static void sysrq_handle_kill(int key, struct tty_struct *tty)
L
Linus Torvalds 已提交
372 373 374 375 376 377
{
	send_sig_all(SIGKILL);
	console_loglevel = 8;
}
static struct sysrq_key_op sysrq_kill_op = {
	.handler	= sysrq_handle_kill,
378
	.help_msg	= "kill-all-tasks(I)",
L
Linus Torvalds 已提交
379 380 381 382
	.action_msg	= "Kill All Tasks",
	.enable_mask	= SYSRQ_ENABLE_SIGNAL,
};

383
static void sysrq_handle_unrt(int key, struct tty_struct *tty)
L
Linus Torvalds 已提交
384 385 386 387 388
{
	normalize_rt_tasks();
}
static struct sysrq_key_op sysrq_unrt_op = {
	.handler	= sysrq_handle_unrt,
389
	.help_msg	= "nice-all-RT-tasks(N)",
L
Linus Torvalds 已提交
390 391 392 393 394 395
	.action_msg	= "Nice All RT Tasks",
	.enable_mask	= SYSRQ_ENABLE_RTNICE,
};

/* Key Operations table and lock */
static DEFINE_SPINLOCK(sysrq_key_table_lock);
A
Andrew Morton 已提交
396 397 398 399 400 401 402 403 404 405 406 407 408 409

static struct sysrq_key_op *sysrq_key_table[36] = {
	&sysrq_loglevel_op,		/* 0 */
	&sysrq_loglevel_op,		/* 1 */
	&sysrq_loglevel_op,		/* 2 */
	&sysrq_loglevel_op,		/* 3 */
	&sysrq_loglevel_op,		/* 4 */
	&sysrq_loglevel_op,		/* 5 */
	&sysrq_loglevel_op,		/* 6 */
	&sysrq_loglevel_op,		/* 7 */
	&sysrq_loglevel_op,		/* 8 */
	&sysrq_loglevel_op,		/* 9 */

	/*
410 411
	 * a: Don't use for system provided sysrqs, it is handled specially on
	 * sparc and will never arrive.
A
Andrew Morton 已提交
412 413 414
	 */
	NULL,				/* a */
	&sysrq_reboot_op,		/* b */
415
	&sysrq_crash_op,		/* c & ibm_emac driver debug */
A
Andrew Morton 已提交
416 417 418
	&sysrq_showlocks_op,		/* d */
	&sysrq_term_op,			/* e */
	&sysrq_moom_op,			/* f */
419
	/* g: May be registered for the kernel debugger */
A
Andrew Morton 已提交
420
	NULL,				/* g */
421
	NULL,				/* h - reserved for help */
A
Andrew Morton 已提交
422
	&sysrq_kill_op,			/* i */
423 424 425
#ifdef CONFIG_BLOCK
	&sysrq_thaw_op,			/* j */
#else
A
Andrew Morton 已提交
426
	NULL,				/* j */
427
#endif
A
Andrew Morton 已提交
428
	&sysrq_SAK_op,			/* k */
429 430 431
#ifdef CONFIG_SMP
	&sysrq_showallcpus_op,		/* l */
#else
A
Andrew Morton 已提交
432
	NULL,				/* l */
433
#endif
A
Andrew Morton 已提交
434 435
	&sysrq_showmem_op,		/* m */
	&sysrq_unrt_op,			/* n */
436
	/* o: This will often be registered as 'Off' at init time */
A
Andrew Morton 已提交
437 438
	NULL,				/* o */
	&sysrq_showregs_op,		/* p */
439
	&sysrq_show_timers_op,		/* q */
440
	&sysrq_unraw_op,		/* r */
A
Andrew Morton 已提交
441 442 443
	&sysrq_sync_op,			/* s */
	&sysrq_showstate_op,		/* t */
	&sysrq_mountro_op,		/* u */
444
	/* v: May be registered for frame buffer console restore */
A
Andrew Morton 已提交
445
	NULL,				/* v */
446 447 448
	&sysrq_showstate_blocked_op,	/* w */
	/* x: May be registered on ppc/powerpc for xmon */
	NULL,				/* x */
449
	/* y: May be registered on sparc64 for global register dump */
A
Andrew Morton 已提交
450
	NULL,				/* y */
451
	&sysrq_ftrace_dump_op,		/* z */
L
Linus Torvalds 已提交
452 453 454
};

/* key2index calculation, -1 on invalid index */
A
Andrew Morton 已提交
455 456
static int sysrq_key_table_key2index(int key)
{
L
Linus Torvalds 已提交
457
	int retval;
A
Andrew Morton 已提交
458 459

	if ((key >= '0') && (key <= '9'))
L
Linus Torvalds 已提交
460
		retval = key - '0';
A
Andrew Morton 已提交
461
	else if ((key >= 'a') && (key <= 'z'))
L
Linus Torvalds 已提交
462
		retval = key + 10 - 'a';
A
Andrew Morton 已提交
463
	else
L
Linus Torvalds 已提交
464 465 466 467 468 469 470
		retval = -1;
	return retval;
}

/*
 * get and put functions for the table, exposed to modules.
 */
A
Andrew Morton 已提交
471 472 473
struct sysrq_key_op *__sysrq_get_key_op(int key)
{
        struct sysrq_key_op *op_p = NULL;
L
Linus Torvalds 已提交
474
        int i;
A
Andrew Morton 已提交
475

L
Linus Torvalds 已提交
476
	i = sysrq_key_table_key2index(key);
A
Andrew Morton 已提交
477 478
	if (i != -1)
	        op_p = sysrq_key_table[i];
L
Linus Torvalds 已提交
479 480 481
        return op_p;
}

A
Andrew Morton 已提交
482 483 484
static void __sysrq_put_key_op(int key, struct sysrq_key_op *op_p)
{
        int i = sysrq_key_table_key2index(key);
L
Linus Torvalds 已提交
485 486 487 488 489 490

        if (i != -1)
                sysrq_key_table[i] = op_p;
}

/*
A
Andrew Morton 已提交
491 492
 * This is the non-locking version of handle_sysrq.  It must/can only be called
 * by sysrq key handlers, as they are inside of the lock
L
Linus Torvalds 已提交
493
 */
494
void __handle_sysrq(int key, struct tty_struct *tty, int check_mask)
L
Linus Torvalds 已提交
495 496 497
{
	struct sysrq_key_op *op_p;
	int orig_log_level;
A
Andrew Morton 已提交
498
	int i;
L
Linus Torvalds 已提交
499 500 501
	unsigned long flags;

	spin_lock_irqsave(&sysrq_key_table_lock, flags);
502 503 504 505 506 507
	/*
	 * Raise the apparent loglevel to maximum so that the sysrq header
	 * is shown to provide the user with positive feedback.  We do not
	 * simply emit this at KERN_EMERG as that would change message
	 * routing in the consumers of /proc/kmsg.
	 */
L
Linus Torvalds 已提交
508 509 510 511 512 513
	orig_log_level = console_loglevel;
	console_loglevel = 7;
	printk(KERN_INFO "SysRq : ");

        op_p = __sysrq_get_key_op(key);
        if (op_p) {
A
Andrew Morton 已提交
514 515 516 517
		/*
		 * Should we check for enabled operations (/proc/sysrq-trigger
		 * should not) and is the invoked operation enabled?
		 */
518
		if (!check_mask || sysrq_on_mask(op_p->enable_mask)) {
A
Andrew Morton 已提交
519
			printk("%s\n", op_p->action_msg);
L
Linus Torvalds 已提交
520
			console_loglevel = orig_log_level;
521
			op_p->handler(key, tty);
A
Andrew Morton 已提交
522
		} else {
L
Linus Torvalds 已提交
523
			printk("This sysrq operation is disabled.\n");
A
Andrew Morton 已提交
524
		}
L
Linus Torvalds 已提交
525 526 527
	} else {
		printk("HELP : ");
		/* Only print the help msg once per handler */
A
Andrew Morton 已提交
528 529 530 531 532 533 534 535 536 537 538
		for (i = 0; i < ARRAY_SIZE(sysrq_key_table); i++) {
			if (sysrq_key_table[i]) {
				int j;

				for (j = 0; sysrq_key_table[i] !=
						sysrq_key_table[j]; j++)
					;
				if (j != i)
					continue;
				printk("%s ", sysrq_key_table[i]->help_msg);
			}
L
Linus Torvalds 已提交
539
		}
A
Andrew Morton 已提交
540
		printk("\n");
L
Linus Torvalds 已提交
541 542 543 544 545 546 547 548 549
		console_loglevel = orig_log_level;
	}
	spin_unlock_irqrestore(&sysrq_key_table_lock, flags);
}

/*
 * This function is called by the keyboard handler when SysRq is pressed
 * and any other keycode arrives.
 */
550
void handle_sysrq(int key, struct tty_struct *tty)
L
Linus Torvalds 已提交
551
{
552 553
	if (sysrq_on())
		__handle_sysrq(key, tty, 1);
L
Linus Torvalds 已提交
554
}
A
Andrew Morton 已提交
555
EXPORT_SYMBOL(handle_sysrq);
L
Linus Torvalds 已提交
556

557
static int __sysrq_swap_key_ops(int key, struct sysrq_key_op *insert_op_p,
A
Andrew Morton 已提交
558 559
                                struct sysrq_key_op *remove_op_p)
{
L
Linus Torvalds 已提交
560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578

	int retval;
	unsigned long flags;

	spin_lock_irqsave(&sysrq_key_table_lock, flags);
	if (__sysrq_get_key_op(key) == remove_op_p) {
		__sysrq_put_key_op(key, insert_op_p);
		retval = 0;
	} else {
		retval = -1;
	}
	spin_unlock_irqrestore(&sysrq_key_table_lock, flags);
	return retval;
}

int register_sysrq_key(int key, struct sysrq_key_op *op_p)
{
	return __sysrq_swap_key_ops(key, op_p, NULL);
}
A
Andrew Morton 已提交
579
EXPORT_SYMBOL(register_sysrq_key);
L
Linus Torvalds 已提交
580 581 582 583 584 585

int unregister_sysrq_key(int key, struct sysrq_key_op *op_p)
{
	return __sysrq_swap_key_ops(key, NULL, op_p);
}
EXPORT_SYMBOL(unregister_sysrq_key);
586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614

#ifdef CONFIG_PROC_FS
/*
 * writing 'C' to /proc/sysrq-trigger is like sysrq-C
 */
static ssize_t write_sysrq_trigger(struct file *file, const char __user *buf,
				   size_t count, loff_t *ppos)
{
	if (count) {
		char c;

		if (get_user(c, buf))
			return -EFAULT;
		__handle_sysrq(c, NULL, 0);
	}
	return count;
}

static const struct file_operations proc_sysrq_trigger_operations = {
	.write		= write_sysrq_trigger,
};

static int __init sysrq_init(void)
{
	proc_create("sysrq-trigger", S_IWUSR, NULL, &proc_sysrq_trigger_operations);
	return 0;
}
module_init(sysrq_init);
#endif