source: mainline/kernel/arch/ia32/src/interrupt.c@ 228666c

lfn serial ticket/834-toolchain-update topic/msim-upgrade topic/simplify-dev-export
Last change on this file since 228666c was 203deeb8, checked in by Jakub Jermar <jakub@…>, 16 years ago

Print the stack trace on bad ia32 trap.

  • Property mode set to 100644
File size: 6.6 KB
Line 
1/*
2 * Copyright (c) 2001-2004 Jakub Jermar
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 *
9 * - Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer.
11 * - Redistributions in binary form must reproduce the above copyright
12 * notice, this list of conditions and the following disclaimer in the
13 * documentation and/or other materials provided with the distribution.
14 * - The name of the author may not be used to endorse or promote products
15 * derived from this software without specific prior written permission.
16 *
17 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
18 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
19 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
20 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
21 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
22 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
26 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 */
28
29/** @addtogroup ia32interrupt
30 * @{
31 */
32/** @file
33 */
34
35#include <arch/interrupt.h>
36#include <syscall/syscall.h>
37#include <print.h>
38#include <debug.h>
39#include <panic.h>
40#include <arch/drivers/i8259.h>
41#include <func.h>
42#include <cpu.h>
43#include <arch/asm.h>
44#include <mm/tlb.h>
45#include <mm/as.h>
46#include <arch.h>
47#include <proc/thread.h>
48#include <proc/task.h>
49#include <synch/spinlock.h>
50#include <arch/ddi/ddi.h>
51#include <ipc/sysipc.h>
52#include <interrupt.h>
53#include <ddi/irq.h>
54#include <symtab.h>
55#include <stacktrace.h>
56
57/*
58 * Interrupt and exception dispatching.
59 */
60
61void (* disable_irqs_function)(uint16_t irqmask) = NULL;
62void (* enable_irqs_function)(uint16_t irqmask) = NULL;
63void (* eoi_function)(void) = NULL;
64
65void decode_istate(istate_t *istate)
66{
67 char *symbol;
68
69 symbol = symtab_fmt_name_lookup(istate->eip);
70
71 if (CPU)
72 printf("----------------EXCEPTION OCCURED (cpu%u)----------------\n", CPU->id);
73 else
74 printf("----------------EXCEPTION OCCURED----------------\n");
75
76 printf("%%eip: %#lx (%s)\n", istate->eip, symbol);
77 printf("ERROR_WORD=%#lx\n", istate->error_word);
78 printf("%%cs=%#lx,flags=%#lx\n", istate->cs, istate->eflags);
79 printf("%%eax=%#lx, %%ecx=%#lx, %%edx=%#lx, %%esp=%p\n", istate->eax, istate->ecx, istate->edx, &istate->stack[0]);
80 printf("stack: %#lx, %#lx, %#lx, %#lx\n", istate->stack[0], istate->stack[1], istate->stack[2], istate->stack[3]);
81 printf(" %#lx, %#lx, %#lx, %#lx\n", istate->stack[4], istate->stack[5], istate->stack[6], istate->stack[7]);
82
83 stack_trace_istate(istate);
84}
85
86static void trap_virtual_eoi(void)
87{
88 if (eoi_function)
89 eoi_function();
90 else
91 panic("No eoi_function.");
92
93}
94
95static void null_interrupt(int n, istate_t *istate)
96{
97 fault_if_from_uspace(istate, "Unserviced interrupt: %d.", n);
98
99 decode_istate(istate);
100 panic("Unserviced interrupt: %d.", n);
101}
102
103static void de_fault(int n, istate_t *istate)
104{
105 fault_if_from_uspace(istate, "Divide error.");
106
107 decode_istate(istate);
108 panic("Divide error.");
109}
110
111/** General Protection Fault. */
112static void gp_fault(int n __attribute__((unused)), istate_t *istate)
113{
114 if (TASK) {
115 size_t ver;
116
117 spinlock_lock(&TASK->lock);
118 ver = TASK->arch.iomapver;
119 spinlock_unlock(&TASK->lock);
120
121 if (CPU->arch.iomapver_copy != ver) {
122 /*
123 * This fault can be caused by an early access
124 * to I/O port because of an out-dated
125 * I/O Permission bitmap installed on CPU.
126 * Install the fresh copy and restart
127 * the instruction.
128 */
129 io_perm_bitmap_install();
130 return;
131 }
132 fault_if_from_uspace(istate, "General protection fault.");
133 }
134
135 decode_istate(istate);
136 panic("General protection fault.");
137}
138
139static void ss_fault(int n __attribute__((unused)), istate_t *istate)
140{
141 fault_if_from_uspace(istate, "Stack fault.");
142
143 decode_istate(istate);
144 panic("Stack fault.");
145}
146
147static void simd_fp_exception(int n __attribute__((unused)), istate_t *istate)
148{
149 uint32_t mxcsr;
150 asm (
151 "stmxcsr %[mxcsr]\n"
152 : [mxcsr] "=m" (mxcsr)
153 );
154 fault_if_from_uspace(istate, "SIMD FP exception(19), MXCSR: %#zx.",
155 (unative_t) mxcsr);
156
157 decode_istate(istate);
158 printf("MXCSR: %#lx\n", mxcsr);
159 panic("SIMD FP exception(19).");
160}
161
162static void nm_fault(int n __attribute__((unused)), istate_t *istate __attribute__((unused)))
163{
164#ifdef CONFIG_FPU_LAZY
165 scheduler_fpu_lazy_request();
166#else
167 fault_if_from_uspace(istate, "FPU fault.");
168 panic("FPU fault.");
169#endif
170}
171
172#ifdef CONFIG_SMP
173static void tlb_shootdown_ipi(int n __attribute__((unused)), istate_t *istate __attribute__((unused)))
174{
175 trap_virtual_eoi();
176 tlb_shootdown_ipi_recv();
177}
178#endif
179
180/** Handler of IRQ exceptions */
181static void irq_interrupt(int n, istate_t *istate __attribute__((unused)))
182{
183 ASSERT(n >= IVT_IRQBASE);
184
185 int inum = n - IVT_IRQBASE;
186 bool ack = false;
187 ASSERT(inum < IRQ_COUNT);
188 ASSERT((inum != IRQ_PIC_SPUR) && (inum != IRQ_PIC1));
189
190 irq_t *irq = irq_dispatch_and_lock(inum);
191 if (irq) {
192 /*
193 * The IRQ handler was found.
194 */
195
196 if (irq->preack) {
197 /* Send EOI before processing the interrupt */
198 trap_virtual_eoi();
199 ack = true;
200 }
201 irq->handler(irq);
202 spinlock_unlock(&irq->lock);
203 } else {
204 /*
205 * Spurious interrupt.
206 */
207#ifdef CONFIG_DEBUG
208 printf("cpu%u: spurious interrupt (inum=%d)\n", CPU->id, inum);
209#endif
210 }
211
212 if (!ack)
213 trap_virtual_eoi();
214}
215
216void interrupt_init(void)
217{
218 int i;
219
220 for (i = 0; i < IVT_ITEMS; i++)
221 exc_register(i, "null", (iroutine) null_interrupt);
222
223 for (i = 0; i < IRQ_COUNT; i++) {
224 if ((i != IRQ_PIC_SPUR) && (i != IRQ_PIC1))
225 exc_register(IVT_IRQBASE + i, "irq", (iroutine) irq_interrupt);
226 }
227
228 exc_register(0, "de_fault", (iroutine) de_fault);
229 exc_register(7, "nm_fault", (iroutine) nm_fault);
230 exc_register(12, "ss_fault", (iroutine) ss_fault);
231 exc_register(13, "gp_fault", (iroutine) gp_fault);
232 exc_register(19, "simd_fp", (iroutine) simd_fp_exception);
233
234#ifdef CONFIG_SMP
235 exc_register(VECTOR_TLB_SHOOTDOWN_IPI, "tlb_shootdown", (iroutine) tlb_shootdown_ipi);
236#endif
237}
238
239void trap_virtual_enable_irqs(uint16_t irqmask)
240{
241 if (enable_irqs_function)
242 enable_irqs_function(irqmask);
243 else
244 panic("No enable_irqs_function.");
245}
246
247void trap_virtual_disable_irqs(uint16_t irqmask)
248{
249 if (disable_irqs_function)
250 disable_irqs_function(irqmask);
251 else
252 panic("No disable_irqs_function.");
253}
254
255/** @}
256 */
Note: See TracBrowser for help on using the repository browser.