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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
use core::{marker::PhantomData, mem};

use tracing::error;

use super::interrupts::stack_index;

core::arch::global_asm!(include_str!("idt_vectors.S"));

extern "C" {
    static interrupt_vector_table: [u64; 256];
}

static mut REDIRECTED_INTERRUPTS: [Option<*const u8>; 256] = [None; 256];

pub type BasicInterruptHandler = extern "x86-interrupt" fn(frame: InterruptStackFrame64);
pub type InterruptHandlerWithError =
    extern "x86-interrupt" fn(frame: InterruptStackFrame64, error_code: u64);
pub type InterruptHandlerWithAllState = extern "cdecl" fn(state: &mut InterruptAllSavedState);

#[repr(C, align(8))]
#[derive(Default, Clone, Copy, Debug)]
pub struct InterruptStackFrame64 {
    pub rip: u64,
    pub cs: u8,
    pub rflags: u64,
    pub rsp: u64,
    pub ss: u8,
}

#[repr(C, align(8))]
#[derive(Default, Clone, Copy, Debug)]
pub struct RestSavedRegisters {
    pub ds: u64,
    pub es: u64,
    pub fs: u64,
    pub gs: u64,
    pub dr0: u64,
    pub dr1: u64,
    pub dr2: u64,
    pub dr3: u64,
    pub dr6: u64,
    pub dr7: u64,
    pub rax: u64,
    pub rbx: u64,
    pub rcx: u64,
    pub rdx: u64,
    pub rsi: u64,
    pub rdi: u64,
    pub rbp: u64,
    pub r8: u64,
    pub r9: u64,
    pub r10: u64,
    pub r11: u64,
    pub r12: u64,
    pub r13: u64,
    pub r14: u64,
    pub r15: u64,
}

#[repr(C, align(8))]
#[derive(Default, Clone, Debug)]
pub struct InterruptAllSavedState {
    pub rest: RestSavedRegisters,
    pub number: u64,
    pub error: u64,
    pub frame: InterruptStackFrame64,
}

mod flags {
    pub const GATE_TYPE: u8 = 0b1110;
    pub const KEEP_INTERRUPTS: u8 = 1 << 0;
    pub const PRESENT: u8 = 1 << 7;
    pub const fn dpl(ring: u8) -> u8 {
        ring << 5
    }
}

#[repr(C, align(16))]
#[derive(Default, Clone, Copy)]
pub(super) struct InterruptDescriptorTableEntry<T> {
    offset_low: u16,
    selector: u16,
    ist: u8,
    flags: u8,
    offset_middle: u16,
    offset_high: u32,
    zero: u32,
    phantom: PhantomData<T>,
}

impl<T> InterruptDescriptorTableEntry<T> {
    pub const fn empty() -> Self {
        Self {
            offset_low: 0,
            selector: 0,
            ist: 0,
            flags: 0,
            offset_middle: 0,
            offset_high: 0,
            zero: 0,
            phantom: PhantomData,
        }
    }

    fn set_handler_ptr(&mut self, handler_addr: u64) -> &mut Self {
        let cs = super::get_cs();
        self.offset_low = handler_addr as u16;
        self.offset_middle = (handler_addr >> 16) as u16;
        self.offset_high = (handler_addr >> 32) as u32;
        self.ist = 0;
        self.selector = cs;
        self.flags = flags::PRESENT | flags::GATE_TYPE;
        self
    }

    pub fn set_stack_index(&mut self, stack_index: Option<u8>) -> &mut Self {
        let stack_index = stack_index.map(|i| i + 1).unwrap_or(0);
        assert!(stack_index <= 7);
        self.ist = stack_index;
        self
    }

    pub fn set_disable_interrupts(&mut self, disable_interrupts: bool) -> &mut Self {
        if disable_interrupts {
            self.flags &= !flags::KEEP_INTERRUPTS;
        } else {
            self.flags |= flags::KEEP_INTERRUPTS;
        }
        self
    }

    #[allow(dead_code)]
    pub fn override_code_segment(&mut self, cs: u16) -> &mut Self {
        self.selector = cs;
        self
    }

    pub fn set_privilege_level(&mut self, ring: u8) -> &mut Self {
        self.flags = (self.flags & !flags::dpl(0b11)) | flags::dpl(ring);
        self
    }
}

impl InterruptDescriptorTableEntry<BasicInterruptHandler> {
    pub fn set_handler(&mut self, handler: BasicInterruptHandler) -> &mut Self {
        self.set_handler_ptr(handler as *const u8 as u64)
    }
}

impl InterruptDescriptorTableEntry<InterruptHandlerWithError> {
    pub fn set_handler(&mut self, handler: InterruptHandlerWithError) -> &mut Self {
        self.set_handler_ptr(handler as *const u8 as u64)
    }
}

impl<T> InterruptDescriptorTableEntry<T> {
    pub fn set_handler_with_number(
        &mut self,
        handler: InterruptHandlerWithAllState,
        vector_n: u8,
    ) -> &mut Self {
        unsafe {
            // save first as it might get called right away
            REDIRECTED_INTERRUPTS[vector_n as usize] = Some(handler as *const u8);
            self.set_handler_ptr(interrupt_vector_table[vector_n as usize] as *const u8 as u64)
        }
    }
}

#[repr(C)]
pub(super) struct InterruptDescriptorTable {
    pub divide_by_zero: InterruptDescriptorTableEntry<BasicInterruptHandler>,
    pub debug: InterruptDescriptorTableEntry<BasicInterruptHandler>,
    pub non_maskable_interrupt: InterruptDescriptorTableEntry<BasicInterruptHandler>,
    pub breakpoint: InterruptDescriptorTableEntry<BasicInterruptHandler>,
    pub overflow: InterruptDescriptorTableEntry<BasicInterruptHandler>,
    pub bound_range_exceeded: InterruptDescriptorTableEntry<BasicInterruptHandler>,
    pub invalid_opcode: InterruptDescriptorTableEntry<BasicInterruptHandler>,
    pub device_not_available: InterruptDescriptorTableEntry<BasicInterruptHandler>,
    pub double_fault: InterruptDescriptorTableEntry<InterruptHandlerWithError>,
    pub coprocessor_segment_overrun: InterruptDescriptorTableEntry<()>,
    pub invalid_tss: InterruptDescriptorTableEntry<InterruptHandlerWithError>,
    pub segment_not_present: InterruptDescriptorTableEntry<InterruptHandlerWithError>,
    pub stack_exception: InterruptDescriptorTableEntry<InterruptHandlerWithError>,
    pub general_protection_fault: InterruptDescriptorTableEntry<InterruptHandlerWithError>,
    pub page_fault: InterruptDescriptorTableEntry<InterruptHandlerWithError>,
    pub reserved_1: InterruptDescriptorTableEntry<()>,
    pub x87_floating_point: InterruptDescriptorTableEntry<BasicInterruptHandler>,
    pub alignment_check: InterruptDescriptorTableEntry<InterruptHandlerWithError>,
    pub machine_check: InterruptDescriptorTableEntry<BasicInterruptHandler>,
    pub simd_floating_point: InterruptDescriptorTableEntry<BasicInterruptHandler>,
    pub reserved_2: InterruptDescriptorTableEntry<()>,
    pub control_protection: InterruptDescriptorTableEntry<BasicInterruptHandler>,
    pub reserved_3: [InterruptDescriptorTableEntry<()>; 6],
    pub hypervisor_injection: InterruptDescriptorTableEntry<BasicInterruptHandler>,
    pub vmm_communication: InterruptDescriptorTableEntry<BasicInterruptHandler>,
    pub security_exception: InterruptDescriptorTableEntry<InterruptHandlerWithError>,
    pub reserved_4: InterruptDescriptorTableEntry<()>,
    pub user_defined: [InterruptDescriptorTableEntry<BasicInterruptHandler>; 256 - 32],
}

impl InterruptDescriptorTable {
    pub(super) const fn empty() -> Self {
        Self {
            divide_by_zero: InterruptDescriptorTableEntry::empty(),
            debug: InterruptDescriptorTableEntry::empty(),
            non_maskable_interrupt: InterruptDescriptorTableEntry::empty(),
            breakpoint: InterruptDescriptorTableEntry::empty(),
            overflow: InterruptDescriptorTableEntry::empty(),
            bound_range_exceeded: InterruptDescriptorTableEntry::empty(),
            invalid_opcode: InterruptDescriptorTableEntry::empty(),
            device_not_available: InterruptDescriptorTableEntry::empty(),
            double_fault: InterruptDescriptorTableEntry::empty(),
            coprocessor_segment_overrun: InterruptDescriptorTableEntry::empty(),
            invalid_tss: InterruptDescriptorTableEntry::empty(),
            segment_not_present: InterruptDescriptorTableEntry::empty(),
            stack_exception: InterruptDescriptorTableEntry::empty(),
            general_protection_fault: InterruptDescriptorTableEntry::empty(),
            page_fault: InterruptDescriptorTableEntry::empty(),
            reserved_1: InterruptDescriptorTableEntry::empty(),
            x87_floating_point: InterruptDescriptorTableEntry::empty(),
            alignment_check: InterruptDescriptorTableEntry::empty(),
            machine_check: InterruptDescriptorTableEntry::empty(),
            simd_floating_point: InterruptDescriptorTableEntry::empty(),
            reserved_2: InterruptDescriptorTableEntry::empty(),
            control_protection: InterruptDescriptorTableEntry::empty(),
            reserved_3: [InterruptDescriptorTableEntry::empty(); 6],
            hypervisor_injection: InterruptDescriptorTableEntry::empty(),
            vmm_communication: InterruptDescriptorTableEntry::empty(),
            security_exception: InterruptDescriptorTableEntry::empty(),
            reserved_4: InterruptDescriptorTableEntry::empty(),
            user_defined: [InterruptDescriptorTableEntry::empty(); 256 - 32],
        }
    }

    pub fn init_default_handlers(&mut self) {
        self.divide_by_zero.set_handler(default_handler::<0>);
        self.debug.set_handler(default_handler::<1>);
        self.non_maskable_interrupt
            .set_handler(default_handler::<2>);
        self.breakpoint.set_handler(default_handler::<3>);
        self.overflow.set_handler(default_handler::<4>);
        self.bound_range_exceeded
            .set_handler(default_handler::<5>)
            .set_stack_index(Some(stack_index::FAULTS_STACK));
        self.invalid_opcode
            .set_handler(default_handler::<6>)
            .set_stack_index(Some(stack_index::FAULTS_STACK));
        self.device_not_available
            .set_handler(default_handler::<7>)
            .set_stack_index(Some(stack_index::FAULTS_STACK));
        self.double_fault
            .set_handler(default_handler_with_error::<8>)
            .set_stack_index(Some(stack_index::DOUBLE_FAULT_STACK));
        self.invalid_tss
            .set_handler(default_handler_with_error::<10>);
        self.segment_not_present
            .set_handler(default_handler_with_error::<11>);
        self.stack_exception
            .set_handler(default_handler_with_error::<12>);
        self.general_protection_fault
            .set_handler(default_handler_with_error::<13>);
        self.page_fault
            .set_handler(default_handler_with_error::<14>)
            .set_stack_index(Some(stack_index::FAULTS_STACK));
        self.x87_floating_point.set_handler(default_handler::<16>);
        self.alignment_check
            .set_handler(default_handler_with_error::<17>)
            .set_stack_index(Some(stack_index::FAULTS_STACK));
        self.machine_check.set_handler(default_handler::<18>);
        self.simd_floating_point.set_handler(default_handler::<19>);
        self.control_protection.set_handler(default_handler::<21>);
        self.hypervisor_injection.set_handler(default_handler::<28>);
        self.vmm_communication.set_handler(default_handler::<29>);
        self.security_exception
            .set_handler(default_handler_with_error::<30>);

        for entry in self.user_defined.iter_mut() {
            entry.set_handler(default_handler::<0xFF>);
        }
    }

    pub(super) fn apply_idt(&'static self) {
        let idt_ptr = InterruptDescriptorTablePointer {
            limit: mem::size_of::<InterruptDescriptorTable>() as u16 - 1,
            base: self,
        };

        unsafe {
            super::lidt(&idt_ptr);
        }
    }
}

#[repr(C, packed(2))]
pub(super) struct InterruptDescriptorTablePointer {
    limit: u16,
    base: *const InterruptDescriptorTable,
}

#[no_mangle]
pub extern "cdecl" fn rust_interrupt_handler_for_all_state(mut state: InterruptAllSavedState) {
    let handler = unsafe { REDIRECTED_INTERRUPTS[state.number as usize] };
    if let Some(handler) = handler {
        let handler: InterruptHandlerWithAllState = unsafe { mem::transmute(handler) };
        handler(&mut state);
        return;
    }

    panic!("Could not find handler for interrupt {}", state.number);
}

extern "x86-interrupt" fn default_handler<const N: u8>(frame: InterruptStackFrame64) {
    error!("[{N}] Got exception: \n frame: {:x?}", frame);

    crate::panic_handler::print_originating_stack_trace(&frame, super::rbp!());
    panic!("Unhandled exception");
}

extern "x86-interrupt" fn default_handler_with_error<const N: u8>(
    frame: InterruptStackFrame64,
    error_code: u64,
) {
    let cr2: u64;
    unsafe {
        core::arch:: asm!("mov {}, cr2", out(reg) cr2);
    }
    let current_cpu = super::cpu();
    let proc_id = current_cpu.context.map(|_| current_cpu.process_id);
    error!(
        "[{N}] {proc_id:?} Got exception: \n frame: {frame:x?}\n error: {error_code:016X}\n cr2: {cr2:X}",
    );

    crate::panic_handler::print_originating_stack_trace(&frame, super::rbp!());
    panic!("Unhandled exception");
}