blob: e5dd6da78713bc1f37def623d2bf07577ea981ae [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 Gleixnerdb1cc7a2021-02-10 00:40:53 +010025#include <asm/softirq_stack.h>
Thomas Gleixnere05d7232007-02-16 01:27:58 -080026
Thomas Gleixnerde9b10a2008-05-05 15:58:15 +020027#ifdef CONFIG_DEBUG_STACKOVERFLOW
Ingo Molnar53b56502011-12-05 12:25:44 +010028
29int sysctl_panic_on_stackoverflow __read_mostly;
30
Thomas Gleixnerde9b10a2008-05-05 15:58:15 +020031/* Debugging check for stack overflow: is there less than 1KB free? */
32static int check_stack_overflow(void)
33{
34 long sp;
35
36 __asm__ __volatile__("andl %%esp,%0" :
37 "=r" (sp) : "0" (THREAD_SIZE - 1));
38
39 return sp < (sizeof(struct thread_info) + STACK_WARN);
40}
41
42static void print_stack_overflow(void)
43{
44 printk(KERN_WARNING "low stack detected by irq handler\n");
45 dump_stack();
Mitsuo Hayasaka55af7792011-11-29 15:08:36 +090046 if (sysctl_panic_on_stackoverflow)
47 panic("low stack detected by irq handler - check messages\n");
Thomas Gleixnerde9b10a2008-05-05 15:58:15 +020048}
49
50#else
51static inline int check_stack_overflow(void) { return 0; }
52static inline void print_stack_overflow(void) { }
53#endif
54
Thomas Gleixnera754fe22019-04-14 18:00:01 +020055DEFINE_PER_CPU(struct irq_stack *, hardirq_stack_ptr);
56DEFINE_PER_CPU(struct irq_stack *, softirq_stack_ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -070057
Thomas Gleixner403d8ef2008-05-05 18:13:50 +020058static void call_on_stack(void *func, void *stack)
59{
60 asm volatile("xchgl %%ebx,%%esp \n"
Andi Kleen7614e912018-01-11 21:46:33 +000061 CALL_NOSPEC
Thomas Gleixner403d8ef2008-05-05 18:13:50 +020062 "movl %%ebx,%%esp \n"
63 : "=b" (stack)
64 : "0" (stack),
Andi Kleen7614e912018-01-11 21:46:33 +000065 [thunk_target] "D"(func)
Thomas Gleixner403d8ef2008-05-05 18:13:50 +020066 : "memory", "cc", "edx", "ecx", "eax");
Andi Kleen04b361a2008-05-05 12:36:38 +020067}
68
Steven Rostedt198d2082014-02-06 09:41:31 -050069static inline void *current_stack(void)
70{
Andrey Ryabinin196bd482017-09-29 17:15:36 +030071 return (void *)(current_stack_pointer & ~(THREAD_SIZE - 1));
Steven Rostedt198d2082014-02-06 09:41:31 -050072}
73
Thomas Gleixnerbd0b9ac2015-09-14 10:42:37 +020074static inline int execute_on_irq_stack(int overflow, struct irq_desc *desc)
Thomas Gleixnerde9b10a2008-05-05 15:58:15 +020075{
Steven Rostedt198d2082014-02-06 09:41:31 -050076 struct irq_stack *curstk, *irqstk;
Thomas Gleixnerbd0b9ac2015-09-14 10:42:37 +020077 u32 *isp, *prev_esp, arg1;
Linus Torvalds1da177e2005-04-16 15:20:36 -070078
Steven Rostedt198d2082014-02-06 09:41:31 -050079 curstk = (struct irq_stack *) current_stack();
Thomas Gleixnera754fe22019-04-14 18:00:01 +020080 irqstk = __this_cpu_read(hardirq_stack_ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -070081
82 /*
83 * this is where we switch to the IRQ stack. However, if we are
84 * already using the IRQ stack (because we interrupted a hardirq
85 * handler) we can't do that and just have to keep using the
86 * current stack (which is the irq stack already after all)
87 */
Steven Rostedt198d2082014-02-06 09:41:31 -050088 if (unlikely(curstk == irqstk))
Thomas Gleixnerde9b10a2008-05-05 15:58:15 +020089 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070090
Steven Rostedt198d2082014-02-06 09:41:31 -050091 isp = (u32 *) ((char *)irqstk + sizeof(*irqstk));
92
93 /* Save the next esp at the bottom of the stack */
94 prev_esp = (u32 *)irqstk;
Andrey Ryabinin196bd482017-09-29 17:15:36 +030095 *prev_esp = current_stack_pointer;
Linus Torvalds1da177e2005-04-16 15:20:36 -070096
Thomas Gleixnerde9b10a2008-05-05 15:58:15 +020097 if (unlikely(overflow))
Thomas Gleixner403d8ef2008-05-05 18:13:50 +020098 call_on_stack(print_stack_overflow, isp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070099
Thomas Gleixner403d8ef2008-05-05 18:13:50 +0200100 asm volatile("xchgl %%ebx,%%esp \n"
Andi Kleen7614e912018-01-11 21:46:33 +0000101 CALL_NOSPEC
Thomas Gleixner403d8ef2008-05-05 18:13:50 +0200102 "movl %%ebx,%%esp \n"
Thomas Gleixnerbd0b9ac2015-09-14 10:42:37 +0200103 : "=a" (arg1), "=b" (isp)
104 : "0" (desc), "1" (isp),
Andi Kleen7614e912018-01-11 21:46:33 +0000105 [thunk_target] "D" (desc->handle_irq)
Thomas Gleixner403d8ef2008-05-05 18:13:50 +0200106 : "memory", "cc", "ecx");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107 return 1;
108}
109
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110/*
Thomas Gleixner66c7ceb2019-04-14 18:00:04 +0200111 * Allocate per-cpu stacks for hardirq and softirq processing
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112 */
Thomas Gleixner66c7ceb2019-04-14 18:00:04 +0200113int irq_init_percpu_irqstack(unsigned int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114{
Thomas Gleixner66c7ceb2019-04-14 18:00:04 +0200115 int node = cpu_to_node(cpu);
116 struct page *ph, *ps;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117
Thomas Gleixnera754fe22019-04-14 18:00:01 +0200118 if (per_cpu(hardirq_stack_ptr, cpu))
Thomas Gleixner66c7ceb2019-04-14 18:00:04 +0200119 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120
Thomas Gleixner66c7ceb2019-04-14 18:00:04 +0200121 ph = alloc_pages_node(node, THREADINFO_GFP, THREAD_SIZE_ORDER);
122 if (!ph)
123 return -ENOMEM;
124 ps = alloc_pages_node(node, THREADINFO_GFP, THREAD_SIZE_ORDER);
125 if (!ps) {
126 __free_pages(ph, THREAD_SIZE_ORDER);
127 return -ENOMEM;
128 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129
Thomas Gleixner66c7ceb2019-04-14 18:00:04 +0200130 per_cpu(hardirq_stack_ptr, cpu) = page_address(ph);
131 per_cpu(softirq_stack_ptr, cpu) = page_address(ps);
132 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133}
134
Thomas Gleixner441e9032021-09-24 18:12:45 +0200135#ifndef CONFIG_PREEMPT_RT
Frederic Weisbecker7d65f4a2013-09-05 15:49:45 +0200136void do_softirq_own_stack(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137{
Steven Rostedt198d2082014-02-06 09:41:31 -0500138 struct irq_stack *irqstk;
Steven Rostedt0788aa62014-02-06 09:41:30 -0500139 u32 *isp, *prev_esp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140
Thomas Gleixnera754fe22019-04-14 18:00:01 +0200141 irqstk = __this_cpu_read(softirq_stack_ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142
Frederic Weisbecker7d65f4a2013-09-05 15:49:45 +0200143 /* build the stack frame on the softirq stack */
Steven Rostedt198d2082014-02-06 09:41:31 -0500144 isp = (u32 *) ((char *)irqstk + sizeof(*irqstk));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145
Steven Rostedt0788aa62014-02-06 09:41:30 -0500146 /* Push the previous esp onto the stack */
Steven Rostedt198d2082014-02-06 09:41:31 -0500147 prev_esp = (u32 *)irqstk;
Andrey Ryabinin196bd482017-09-29 17:15:36 +0300148 *prev_esp = current_stack_pointer;
Steven Rostedt0788aa62014-02-06 09:41:30 -0500149
Frederic Weisbecker7d65f4a2013-09-05 15:49:45 +0200150 call_on_stack(__do_softirq, isp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151}
Thomas Gleixner441e9032021-09-24 18:12:45 +0200152#endif
Thomas Gleixner403d8ef2008-05-05 18:13:50 +0200153
Thomas Gleixner7c2a5732020-05-21 22:05:35 +0200154void __handle_irq(struct irq_desc *desc, struct pt_regs *regs)
Jeremy Fitzhardinge9b2b76a2009-02-06 14:09:40 -0800155{
Thomas Gleixnerbd0b9ac2015-09-14 10:42:37 +0200156 int overflow = check_stack_overflow();
Jeremy Fitzhardinge9b2b76a2009-02-06 14:09:40 -0800157
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 }
Jeremy Fitzhardinge9b2b76a2009-02-06 14:09:40 -0800163}