blob: fc34816c6f044923ffdc82c0800f6efa68982e9a [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
Thomas Gleixnera754fe22019-04-14 18:00:01 +020054DEFINE_PER_CPU(struct irq_stack *, hardirq_stack_ptr);
55DEFINE_PER_CPU(struct irq_stack *, softirq_stack_ptr);
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();
Thomas Gleixnera754fe22019-04-14 18:00:01 +020079 irqstk = __this_cpu_read(hardirq_stack_ptr);
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/*
Thomas Gleixner66c7ceb2019-04-14 18:00:04 +0200110 * Allocate per-cpu stacks for hardirq and softirq processing
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111 */
Thomas Gleixner66c7ceb2019-04-14 18:00:04 +0200112int irq_init_percpu_irqstack(unsigned int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113{
Thomas Gleixner66c7ceb2019-04-14 18:00:04 +0200114 int node = cpu_to_node(cpu);
115 struct page *ph, *ps;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116
Thomas Gleixnera754fe22019-04-14 18:00:01 +0200117 if (per_cpu(hardirq_stack_ptr, cpu))
Thomas Gleixner66c7ceb2019-04-14 18:00:04 +0200118 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119
Thomas Gleixner66c7ceb2019-04-14 18:00:04 +0200120 ph = alloc_pages_node(node, THREADINFO_GFP, THREAD_SIZE_ORDER);
121 if (!ph)
122 return -ENOMEM;
123 ps = alloc_pages_node(node, THREADINFO_GFP, THREAD_SIZE_ORDER);
124 if (!ps) {
125 __free_pages(ph, THREAD_SIZE_ORDER);
126 return -ENOMEM;
127 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128
Thomas Gleixner66c7ceb2019-04-14 18:00:04 +0200129 per_cpu(hardirq_stack_ptr, cpu) = page_address(ph);
130 per_cpu(softirq_stack_ptr, cpu) = page_address(ps);
131 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132}
133
Frederic Weisbecker7d65f4a2013-09-05 15:49:45 +0200134void do_softirq_own_stack(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135{
Steven Rostedt198d2082014-02-06 09:41:31 -0500136 struct irq_stack *irqstk;
Steven Rostedt0788aa62014-02-06 09:41:30 -0500137 u32 *isp, *prev_esp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138
Thomas Gleixnera754fe22019-04-14 18:00:01 +0200139 irqstk = __this_cpu_read(softirq_stack_ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140
Frederic Weisbecker7d65f4a2013-09-05 15:49:45 +0200141 /* build the stack frame on the softirq stack */
Steven Rostedt198d2082014-02-06 09:41:31 -0500142 isp = (u32 *) ((char *)irqstk + sizeof(*irqstk));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143
Steven Rostedt0788aa62014-02-06 09:41:30 -0500144 /* Push the previous esp onto the stack */
Steven Rostedt198d2082014-02-06 09:41:31 -0500145 prev_esp = (u32 *)irqstk;
Andrey Ryabinin196bd482017-09-29 17:15:36 +0300146 *prev_esp = current_stack_pointer;
Steven Rostedt0788aa62014-02-06 09:41:30 -0500147
Frederic Weisbecker7d65f4a2013-09-05 15:49:45 +0200148 call_on_stack(__do_softirq, isp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149}
Thomas Gleixner403d8ef2008-05-05 18:13:50 +0200150
Thomas Gleixnera782a7e2015-08-02 20:38:27 +0000151bool handle_irq(struct irq_desc *desc, struct pt_regs *regs)
Jeremy Fitzhardinge9b2b76a2009-02-06 14:09:40 -0800152{
Thomas Gleixnerbd0b9ac2015-09-14 10:42:37 +0200153 int overflow = check_stack_overflow();
Jeremy Fitzhardinge9b2b76a2009-02-06 14:09:40 -0800154
Thomas Gleixnera782a7e2015-08-02 20:38:27 +0000155 if (IS_ERR_OR_NULL(desc))
Jeremy Fitzhardinge9b2b76a2009-02-06 14:09:40 -0800156 return false;
157
Thomas Gleixnerbd0b9ac2015-09-14 10:42:37 +0200158 if (user_mode(regs) || !execute_on_irq_stack(overflow, desc)) {
Jeremy Fitzhardinge9b2b76a2009-02-06 14:09:40 -0800159 if (unlikely(overflow))
160 print_stack_overflow();
Thomas Gleixnerbd0b9ac2015-09-14 10:42:37 +0200161 generic_handle_irq_desc(desc);
Jeremy Fitzhardinge9b2b76a2009-02-06 14:09:40 -0800162 }
163
164 return true;
165}