]> git.karo-electronics.de Git - karo-tx-linux.git/blob - arch/x86/kernel/jump_label.c
x86/jump-label: Show where and what was wrong on errors
[karo-tx-linux.git] / arch / x86 / kernel / jump_label.c
1 /*
2  * jump label x86 support
3  *
4  * Copyright (C) 2009 Jason Baron <jbaron@redhat.com>
5  *
6  */
7 #include <linux/jump_label.h>
8 #include <linux/memory.h>
9 #include <linux/uaccess.h>
10 #include <linux/module.h>
11 #include <linux/list.h>
12 #include <linux/jhash.h>
13 #include <linux/cpu.h>
14 #include <asm/kprobes.h>
15 #include <asm/alternative.h>
16
17 #ifdef HAVE_JUMP_LABEL
18
19 union jump_code_union {
20         char code[JUMP_LABEL_NOP_SIZE];
21         struct {
22                 char jump;
23                 int offset;
24         } __attribute__((packed));
25 };
26
27 static void bug_at(unsigned char *ip, int line)
28 {
29         /*
30          * The location is not an op that we were expecting.
31          * Something went wrong. Crash the box, as something could be
32          * corrupting the kernel.
33          */
34         pr_warning("Unexpected op at %pS [%p] (%02x %02x %02x %02x %02x) %s:%d\n",
35                ip, ip, ip[0], ip[1], ip[2], ip[3], ip[4], __FILE__, line);
36         BUG();
37 }
38
39 static void __jump_label_transform(struct jump_entry *entry,
40                                    enum jump_label_type type,
41                                    void *(*poker)(void *, const void *, size_t),
42                                    int init)
43 {
44         union jump_code_union code;
45         const unsigned char *ideal_nop = ideal_nops[NOP_ATOMIC5];
46
47         if (type == JUMP_LABEL_ENABLE) {
48                 /*
49                  * We are enabling this jump label. If it is not a nop
50                  * then something must have gone wrong.
51                  */
52                 if (unlikely(memcmp((void *)entry->code, ideal_nop, 5) != 0))
53                         bug_at((void *)entry->code, __LINE__);
54
55                 code.jump = 0xe9;
56                 code.offset = entry->target -
57                                 (entry->code + JUMP_LABEL_NOP_SIZE);
58         } else {
59                 /*
60                  * We are disabling this jump label. If it is not what
61                  * we think it is, then something must have gone wrong.
62                  * If this is the first initialization call, then we
63                  * are converting the default nop to the ideal nop.
64                  */
65                 if (init) {
66                         const unsigned char default_nop[] = { STATIC_KEY_INIT_NOP };
67                         if (unlikely(memcmp((void *)entry->code, default_nop, 5) != 0))
68                                 bug_at((void *)entry->code, __LINE__);
69                 } else {
70                         code.jump = 0xe9;
71                         code.offset = entry->target -
72                                 (entry->code + JUMP_LABEL_NOP_SIZE);
73                         if (unlikely(memcmp((void *)entry->code, &code, 5) != 0))
74                                 bug_at((void *)entry->code, __LINE__);
75                 }
76                 memcpy(&code, ideal_nops[NOP_ATOMIC5], JUMP_LABEL_NOP_SIZE);
77         }
78
79         (*poker)((void *)entry->code, &code, JUMP_LABEL_NOP_SIZE);
80 }
81
82 void arch_jump_label_transform(struct jump_entry *entry,
83                                enum jump_label_type type)
84 {
85         get_online_cpus();
86         mutex_lock(&text_mutex);
87         __jump_label_transform(entry, type, text_poke_smp, 0);
88         mutex_unlock(&text_mutex);
89         put_online_cpus();
90 }
91
92 static enum {
93         JL_STATE_START,
94         JL_STATE_NO_UPDATE,
95         JL_STATE_UPDATE,
96 } jlstate __initdata_or_module = JL_STATE_START;
97
98 __init_or_module void arch_jump_label_transform_static(struct jump_entry *entry,
99                                       enum jump_label_type type)
100 {
101         /*
102          * This function is called at boot up and when modules are
103          * first loaded. Check if the default nop, the one that is
104          * inserted at compile time, is the ideal nop. If it is, then
105          * we do not need to update the nop, and we can leave it as is.
106          * If it is not, then we need to update the nop to the ideal nop.
107          */
108         if (jlstate == JL_STATE_START) {
109                 const unsigned char default_nop[] = { STATIC_KEY_INIT_NOP };
110                 const unsigned char *ideal_nop = ideal_nops[NOP_ATOMIC5];
111
112                 if (memcmp(ideal_nop, default_nop, 5) != 0)
113                         jlstate = JL_STATE_UPDATE;
114                 else
115                         jlstate = JL_STATE_NO_UPDATE;
116         }
117         if (jlstate == JL_STATE_UPDATE)
118                 __jump_label_transform(entry, type, text_poke_early, 1);
119 }
120
121 #endif