blob: 95600a99ae93652dbbd4143c9e538e808911bb24 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001// SPDX-License-Identifier: GPL-2.0
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 * Copyright (C) 1992, 1998 Linus Torvalds, Ingo Molnar
4 *
5 * This file contains the lowest level x86-specific interrupt
6 * entry, irq-stacks and irq statistics code. All the remaining
7 * irq logic is done by the generic kernel/irq/ code and
8 * by the x86-specific irq controller code. (e.g. i8259.c and
9 * io_apic.c.)
10 */
11
Linus Torvalds1da177e2005-04-16 15:20:36 -070012#include <linux/seq_file.h>
13#include <linux/interrupt.h>
Nicolai Stange447ae312018-07-29 12:15:33 +020014#include <linux/irq.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070015#include <linux/kernel_stat.h>
Zwane Mwaikambof3705132005-06-25 14:54:50 -070016#include <linux/notifier.h>
17#include <linux/cpu.h>
18#include <linux/delay.h>
Jaswinder Singh Rajput72ade5f2009-01-04 16:32:36 +053019#include <linux/uaccess.h>
Lai Jiangshan42f8fae2009-02-17 11:46:42 +080020#include <linux/percpu.h>
Eric Dumazet5c1eb082010-10-28 16:40:54 +020021#include <linux/mm.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070022
Thomas Gleixnere05d7232007-02-16 01:27:58 -080023#include <asm/apic.h>
Andi Kleen7614e912018-01-11 21:46:33 +000024#include <asm/nospec-branch.h>
Thomas Gleixnere05d7232007-02-16 01:27:58 -080025
Thomas Gleixnerde9b10a2008-05-05 15:58:15 +020026#ifdef CONFIG_DEBUG_STACKOVERFLOW
Ingo Molnar53b56502011-12-05 12:25:44 +010027
28int sysctl_panic_on_stackoverflow __read_mostly;
29
Thomas Gleixnerde9b10a2008-05-05 15:58:15 +020030/* Debugging check for stack overflow: is there less than 1KB free? */
31static int check_stack_overflow(void)
32{
33 long sp;
34
35 __asm__ __volatile__("andl %%esp,%0" :
36 "=r" (sp) : "0" (THREAD_SIZE - 1));
37
38 return sp < (sizeof(struct thread_info) + STACK_WARN);
39}
40
41static void print_stack_overflow(void)
42{
43 printk(KERN_WARNING "low stack detected by irq handler\n");
44 dump_stack();
Mitsuo Hayasaka55af7792011-11-29 15:08:36 +090045 if (sysctl_panic_on_stackoverflow)
46 panic("low stack detected by irq handler - check messages\n");
Thomas Gleixnerde9b10a2008-05-05 15:58:15 +020047}
48
49#else
50static inline int check_stack_overflow(void) { return 0; }
51static inline void print_stack_overflow(void) { }
52#endif
53
Steven Rostedt198d2082014-02-06 09:41:31 -050054DEFINE_PER_CPU(struct irq_stack *, hardirq_stack);
55DEFINE_PER_CPU(struct irq_stack *, softirq_stack);
Linus Torvalds1da177e2005-04-16 15:20:36 -070056
Thomas Gleixner403d8ef2008-05-05 18:13:50 +020057static void call_on_stack(void *func, void *stack)
58{
59 asm volatile("xchgl %%ebx,%%esp \n"
Andi Kleen7614e912018-01-11 21:46:33 +000060 CALL_NOSPEC
Thomas Gleixner403d8ef2008-05-05 18:13:50 +020061 "movl %%ebx,%%esp \n"
62 : "=b" (stack)
63 : "0" (stack),
Andi Kleen7614e912018-01-11 21:46:33 +000064 [thunk_target] "D"(func)
Thomas Gleixner403d8ef2008-05-05 18:13:50 +020065 : "memory", "cc", "edx", "ecx", "eax");
Andi Kleen04b361a2008-05-05 12:36:38 +020066}
67
Steven Rostedt198d2082014-02-06 09:41:31 -050068static inline void *current_stack(void)
69{
Andrey Ryabinin196bd482017-09-29 17:15:36 +030070 return (void *)(current_stack_pointer & ~(THREAD_SIZE - 1));
Steven Rostedt198d2082014-02-06 09:41:31 -050071}
72
Thomas Gleixnerbd0b9ac2015-09-14 10:42:37 +020073static inline int execute_on_irq_stack(int overflow, struct irq_desc *desc)
Thomas Gleixnerde9b10a2008-05-05 15:58:15 +020074{
Steven Rostedt198d2082014-02-06 09:41:31 -050075 struct irq_stack *curstk, *irqstk;
Thomas Gleixnerbd0b9ac2015-09-14 10:42:37 +020076 u32 *isp, *prev_esp, arg1;
Linus Torvalds1da177e2005-04-16 15:20:36 -070077
Steven Rostedt198d2082014-02-06 09:41:31 -050078 curstk = (struct irq_stack *) current_stack();
79 irqstk = __this_cpu_read(hardirq_stack);
Linus Torvalds1da177e2005-04-16 15:20:36 -070080
81 /*
82 * this is where we switch to the IRQ stack. However, if we are
83 * already using the IRQ stack (because we interrupted a hardirq
84 * handler) we can't do that and just have to keep using the
85 * current stack (which is the irq stack already after all)
86 */
Steven Rostedt198d2082014-02-06 09:41:31 -050087 if (unlikely(curstk == irqstk))
Thomas Gleixnerde9b10a2008-05-05 15:58:15 +020088 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070089
Steven Rostedt198d2082014-02-06 09:41:31 -050090 isp = (u32 *) ((char *)irqstk + sizeof(*irqstk));
91
92 /* Save the next esp at the bottom of the stack */
93 prev_esp = (u32 *)irqstk;
Andrey Ryabinin196bd482017-09-29 17:15:36 +030094 *prev_esp = current_stack_pointer;
Linus Torvalds1da177e2005-04-16 15:20:36 -070095
Thomas Gleixnerde9b10a2008-05-05 15:58:15 +020096 if (unlikely(overflow))
Thomas Gleixner403d8ef2008-05-05 18:13:50 +020097 call_on_stack(print_stack_overflow, isp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070098
Thomas Gleixner403d8ef2008-05-05 18:13:50 +020099 asm volatile("xchgl %%ebx,%%esp \n"
Andi Kleen7614e912018-01-11 21:46:33 +0000100 CALL_NOSPEC
Thomas Gleixner403d8ef2008-05-05 18:13:50 +0200101 "movl %%ebx,%%esp \n"
Thomas Gleixnerbd0b9ac2015-09-14 10:42:37 +0200102 : "=a" (arg1), "=b" (isp)
103 : "0" (desc), "1" (isp),
Andi Kleen7614e912018-01-11 21:46:33 +0000104 [thunk_target] "D" (desc->handle_irq)
Thomas Gleixner403d8ef2008-05-05 18:13:50 +0200105 : "memory", "cc", "ecx");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106 return 1;
107}
108
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109/*
110 * allocate per-cpu stacks for hardirq and for softirq processing
111 */
Paul Gortmaker148f9bb2013-06-18 18:23:59 -0400112void irq_ctx_init(int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113{
Steven Rostedt198d2082014-02-06 09:41:31 -0500114 struct irq_stack *irqstk;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115
Steven Rostedt198d2082014-02-06 09:41:31 -0500116 if (per_cpu(hardirq_stack, cpu))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117 return;
118
Steven Rostedt198d2082014-02-06 09:41:31 -0500119 irqstk = page_address(alloc_pages_node(cpu_to_node(cpu),
Thomas Gleixner38e7c572012-05-05 15:05:42 +0000120 THREADINFO_GFP,
121 THREAD_SIZE_ORDER));
Steven Rostedt198d2082014-02-06 09:41:31 -0500122 per_cpu(hardirq_stack, cpu) = irqstk;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123
Steven Rostedt198d2082014-02-06 09:41:31 -0500124 irqstk = page_address(alloc_pages_node(cpu_to_node(cpu),
Thomas Gleixner38e7c572012-05-05 15:05:42 +0000125 THREADINFO_GFP,
126 THREAD_SIZE_ORDER));
Steven Rostedt198d2082014-02-06 09:41:31 -0500127 per_cpu(softirq_stack, cpu) = irqstk;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128
Thomas Gleixner403d8ef2008-05-05 18:13:50 +0200129 printk(KERN_DEBUG "CPU %u irqstacks, hard=%p soft=%p\n",
Steven Rostedt198d2082014-02-06 09:41:31 -0500130 cpu, per_cpu(hardirq_stack, cpu), per_cpu(softirq_stack, cpu));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131}
132
Frederic Weisbecker7d65f4a2013-09-05 15:49:45 +0200133void do_softirq_own_stack(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134{
Steven Rostedt198d2082014-02-06 09:41:31 -0500135 struct irq_stack *irqstk;
Steven Rostedt0788aa62014-02-06 09:41:30 -0500136 u32 *isp, *prev_esp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137
Steven Rostedt198d2082014-02-06 09:41:31 -0500138 irqstk = __this_cpu_read(softirq_stack);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139
Frederic Weisbecker7d65f4a2013-09-05 15:49:45 +0200140 /* build the stack frame on the softirq stack */
Steven Rostedt198d2082014-02-06 09:41:31 -0500141 isp = (u32 *) ((char *)irqstk + sizeof(*irqstk));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142
Steven Rostedt0788aa62014-02-06 09:41:30 -0500143 /* Push the previous esp onto the stack */
Steven Rostedt198d2082014-02-06 09:41:31 -0500144 prev_esp = (u32 *)irqstk;
Andrey Ryabinin196bd482017-09-29 17:15:36 +0300145 *prev_esp = current_stack_pointer;
Steven Rostedt0788aa62014-02-06 09:41:30 -0500146
Frederic Weisbecker7d65f4a2013-09-05 15:49:45 +0200147 call_on_stack(__do_softirq, isp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148}
Thomas Gleixner403d8ef2008-05-05 18:13:50 +0200149
Thomas Gleixnera782a7e2015-08-02 20:38:27 +0000150bool handle_irq(struct irq_desc *desc, struct pt_regs *regs)
Jeremy Fitzhardinge9b2b76a2009-02-06 14:09:40 -0800151{
Thomas Gleixnerbd0b9ac2015-09-14 10:42:37 +0200152 int overflow = check_stack_overflow();
Jeremy Fitzhardinge9b2b76a2009-02-06 14:09:40 -0800153
Thomas Gleixnera782a7e2015-08-02 20:38:27 +0000154 if (IS_ERR_OR_NULL(desc))
Jeremy Fitzhardinge9b2b76a2009-02-06 14:09:40 -0800155 return false;
156
Thomas Gleixnerbd0b9ac2015-09-14 10:42:37 +0200157 if (user_mode(regs) || !execute_on_irq_stack(overflow, desc)) {
Jeremy Fitzhardinge9b2b76a2009-02-06 14:09:40 -0800158 if (unlikely(overflow))
159 print_stack_overflow();
Thomas Gleixnerbd0b9ac2015-09-14 10:42:37 +0200160 generic_handle_irq_desc(desc);
Jeremy Fitzhardinge9b2b76a2009-02-06 14:09:40 -0800161 }
162
163 return true;
164}