blob: a75eed841eedc1899755580a710b307567a0519b [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001/* SPDX-License-Identifier: GPL-2.0 */
Andy Lutomirski35de5b02016-04-26 12:23:24 -07002#ifndef _ASM_X86_TEXT_PATCHING_H
3#define _ASM_X86_TEXT_PATCHING_H
4
5#include <linux/types.h>
6#include <linux/stddef.h>
7#include <asm/ptrace.h>
8
9struct paravirt_patch_site;
10#ifdef CONFIG_PARAVIRT
11void apply_paravirt(struct paravirt_patch_site *start,
12 struct paravirt_patch_site *end);
13#else
14static inline void apply_paravirt(struct paravirt_patch_site *start,
15 struct paravirt_patch_site *end)
16{}
17#define __parainstructions NULL
18#define __parainstructions_end NULL
19#endif
20
21extern void *text_poke_early(void *addr, const void *opcode, size_t len);
22
23/*
24 * Clear and restore the kernel write-protection flag on the local CPU.
25 * Allows the kernel to edit read-only pages.
26 * Side-effect: any interrupt handler running between save and restore will have
27 * the ability to write to read-only pages.
28 *
29 * Warning:
30 * Code patching in the UP case is safe if NMIs and MCE handlers are stopped and
31 * no thread can be preempted in the instructions being modified (no iret to an
32 * invalid instruction possible) or if the instructions are changed from a
33 * consistent state to another consistent state atomically.
34 * On the local CPU you need to be protected again NMI or MCE handlers seeing an
35 * inconsistent instruction while you patch.
36 */
37extern void *text_poke(void *addr, const void *opcode, size_t len);
Nadav Amite8366732019-04-25 17:11:21 -070038extern void *text_poke_kgdb(void *addr, const void *opcode, size_t len);
Andy Lutomirski35de5b02016-04-26 12:23:24 -070039extern int poke_int3_handler(struct pt_regs *regs);
40extern void *text_poke_bp(void *addr, const void *opcode, size_t len, void *handler);
Pavel Tatashin6fffacb2018-07-19 16:55:27 -040041extern int after_bootmem;
Nadav Amit4fc19702019-04-26 16:22:46 -070042extern __ro_after_init struct mm_struct *poking_mm;
43extern __ro_after_init unsigned long poking_addr;
Andy Lutomirski35de5b02016-04-26 12:23:24 -070044
45#endif /* _ASM_X86_TEXT_PATCHING_H */