diff options
author | Marvin Borner | 2021-04-01 19:39:14 +0200 |
---|---|---|
committer | Marvin Borner | 2021-04-01 19:39:14 +0200 |
commit | afa00abb2b68205bee539d7947130d6b1b1ec6e9 (patch) | |
tree | 3a821a75af6c4d4ff1bd4128c4859d77abf87e66 /kernel/inc/interrupts.h | |
parent | 4c168fb34c15a1b8981abef7ccef1542a6fb05ca (diff) |
Hardened entire system
By using the nonnull attribute and replace buffer-overflow-prone
functions like strcpy, strcat and sprintf by strlcpy, strlcat and
snprintf.
Diffstat (limited to 'kernel/inc/interrupts.h')
-rw-r--r-- | kernel/inc/interrupts.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/kernel/inc/interrupts.h b/kernel/inc/interrupts.h index fc00402..a22bebb 100644 --- a/kernel/inc/interrupts.h +++ b/kernel/inc/interrupts.h @@ -18,21 +18,21 @@ struct idt_entry { u8 always0; // Always 0 u8 flags; u16 base_high; -} __attribute__((packed)); +} PACKED; struct idt_ptr { u16 limit; void *base; -} __attribute__((packed)); +} PACKED; void idt_set_gate(u8 num, u32 base, u16 sel, u8 flags); -void irq_install_handler(int irq, void (*handler)(struct regs *r)); +void irq_install_handler(int irq, void (*handler)(struct regs *r)) NONNULL; void irq_uninstall_handler(int irq); -void isr_install_handler(int isr, void (*handler)(struct regs *r)); +void isr_install_handler(int isr, void (*handler)(struct regs *r)) NONNULL; void isr_uninstall_handler(int isr); -void isr_panic(struct regs *r); +void isr_panic(struct regs *r) NONNULL; void interrupts_install(void); |