diff options
-rw-r--r-- | arch/ia64/kernel/kprobes.c | 178 | ||||
-rw-r--r-- | include/asm-ia64/kprobes.h | 7 |
2 files changed, 84 insertions, 101 deletions
diff --git a/arch/ia64/kernel/kprobes.c b/arch/ia64/kernel/kprobes.c index 20a250e2e9b2..b7a204137fbb 100644 --- a/arch/ia64/kernel/kprobes.c +++ b/arch/ia64/kernel/kprobes.c | |||
@@ -84,121 +84,97 @@ static enum instruction_type bundle_encoding[32][3] = { | |||
84 | int arch_prepare_kprobe(struct kprobe *p) | 84 | int arch_prepare_kprobe(struct kprobe *p) |
85 | { | 85 | { |
86 | unsigned long addr = (unsigned long) p->addr; | 86 | unsigned long addr = (unsigned long) p->addr; |
87 | unsigned long bundle_addr = addr & ~0xFULL; | 87 | unsigned long *bundle_addr = (unsigned long *)(addr & ~0xFULL); |
88 | unsigned long slot = addr & 0xf; | 88 | unsigned long slot = addr & 0xf; |
89 | bundle_t bundle; | ||
90 | unsigned long template; | 89 | unsigned long template; |
90 | unsigned long major_opcode = 0; | ||
91 | unsigned long lx_type_inst = 0; | ||
92 | unsigned long kprobe_inst = 0; | ||
93 | bundle_t *bundle = &p->ainsn.insn.bundle; | ||
91 | 94 | ||
92 | /* | 95 | memcpy(&p->opcode.bundle, bundle_addr, sizeof(bundle_t)); |
93 | * TODO: Verify that a probe is not being inserted | 96 | memcpy(&p->ainsn.insn.bundle, bundle_addr, sizeof(bundle_t)); |
94 | * in sensitive regions of code | ||
95 | * TODO: Verify that the memory holding the probe is rwx | ||
96 | * TODO: verify this is a kernel address | ||
97 | */ | ||
98 | memcpy(&bundle, (unsigned long *)bundle_addr, sizeof(bundle_t)); | ||
99 | template = bundle.quad0.template; | ||
100 | if (((bundle_encoding[template][1] == L) && slot > 1) || (slot > 2)) { | ||
101 | printk(KERN_WARNING "Attempting to insert unaligned kprobe at 0x%lx\n", addr); | ||
102 | return -EINVAL; | ||
103 | } | ||
104 | return 0; | ||
105 | } | ||
106 | 97 | ||
107 | void arch_copy_kprobe(struct kprobe *p) | 98 | p->ainsn.inst_flag = 0; |
108 | { | 99 | p->ainsn.target_br_reg = 0; |
109 | unsigned long addr = (unsigned long)p->addr; | ||
110 | unsigned long bundle_addr = addr & ~0xFULL; | ||
111 | 100 | ||
112 | memcpy(&p->ainsn.insn.bundle, (unsigned long *)bundle_addr, | 101 | template = bundle->quad0.template; |
113 | sizeof(bundle_t)); | ||
114 | memcpy(&p->opcode.bundle, &p->ainsn.insn.bundle, sizeof(bundle_t)); | ||
115 | } | ||
116 | 102 | ||
117 | void arch_arm_kprobe(struct kprobe *p) | 103 | if (((bundle_encoding[template][1] == L) && slot > 1) || (slot > 2)) { |
118 | { | 104 | printk(KERN_WARNING "Attempting to insert unaligned kprobe at 0x%lx\n", |
119 | unsigned long addr = (unsigned long)p->addr; | 105 | addr); |
120 | unsigned long arm_addr = addr & ~0xFULL; | 106 | return -EINVAL; |
121 | unsigned long slot = addr & 0xf; | 107 | } |
122 | unsigned long template; | ||
123 | unsigned long major_opcode = 0; | ||
124 | unsigned long lx_type_inst = 0; | ||
125 | unsigned long kprobe_inst = 0; | ||
126 | bundle_t bundle; | ||
127 | |||
128 | p->ainsn.inst_flag = 0; | ||
129 | p->ainsn.target_br_reg = 0; | ||
130 | |||
131 | memcpy(&bundle, &p->ainsn.insn.bundle, sizeof(bundle_t)); | ||
132 | template = bundle.quad0.template; | ||
133 | if (slot == 1 && bundle_encoding[template][1] == L) { | ||
134 | lx_type_inst = 1; | ||
135 | slot = 2; | ||
136 | } | ||
137 | 108 | ||
109 | if (slot == 1 && bundle_encoding[template][1] == L) { | ||
110 | lx_type_inst = 1; | ||
111 | slot = 2; | ||
112 | } | ||
138 | 113 | ||
139 | switch (slot) { | 114 | switch (slot) { |
140 | case 0: | 115 | case 0: |
141 | major_opcode = (bundle.quad0.slot0 >> SLOT0_OPCODE_SHIFT); | 116 | major_opcode = (bundle->quad0.slot0 >> SLOT0_OPCODE_SHIFT); |
142 | kprobe_inst = bundle.quad0.slot0; | 117 | kprobe_inst = bundle->quad0.slot0; |
143 | bundle.quad0.slot0 = BREAK_INST; | 118 | bundle->quad0.slot0 = BREAK_INST; |
144 | break; | 119 | break; |
145 | case 1: | 120 | case 1: |
146 | major_opcode = (bundle.quad1.slot1_p1 >> SLOT1_p1_OPCODE_SHIFT); | 121 | major_opcode = (bundle->quad1.slot1_p1 >> SLOT1_p1_OPCODE_SHIFT); |
147 | kprobe_inst = (bundle.quad0.slot1_p0 | | 122 | kprobe_inst = (bundle->quad0.slot1_p0 | |
148 | (bundle.quad1.slot1_p1 << (64-46))); | 123 | (bundle->quad1.slot1_p1 << (64-46))); |
149 | bundle.quad0.slot1_p0 = BREAK_INST; | 124 | bundle->quad0.slot1_p0 = BREAK_INST; |
150 | bundle.quad1.slot1_p1 = (BREAK_INST >> (64-46)); | 125 | bundle->quad1.slot1_p1 = (BREAK_INST >> (64-46)); |
151 | break; | 126 | break; |
152 | case 2: | 127 | case 2: |
153 | major_opcode = (bundle.quad1.slot2 >> SLOT2_OPCODE_SHIFT); | 128 | major_opcode = (bundle->quad1.slot2 >> SLOT2_OPCODE_SHIFT); |
154 | kprobe_inst = bundle.quad1.slot2; | 129 | kprobe_inst = bundle->quad1.slot2; |
155 | bundle.quad1.slot2 = BREAK_INST; | 130 | bundle->quad1.slot2 = BREAK_INST; |
156 | break; | 131 | break; |
157 | } | 132 | } |
158 | /* | 133 | |
159 | * Look for IP relative Branches, IP relative call or | 134 | /* |
160 | * IP relative predicate instructions | 135 | * Look for IP relative Branches, IP relative call or |
161 | */ | 136 | * IP relative predicate instructions |
162 | if (bundle_encoding[template][slot] == B) { | 137 | */ |
163 | switch (major_opcode) { | 138 | if (bundle_encoding[template][slot] == B) { |
164 | case INDIRECT_CALL_OPCODE: | 139 | switch (major_opcode) { |
165 | p->ainsn.inst_flag |= INST_FLAG_FIX_BRANCH_REG; | 140 | case INDIRECT_CALL_OPCODE: |
166 | p->ainsn.target_br_reg = ((kprobe_inst >> 6) & 0x7); | 141 | p->ainsn.inst_flag |= INST_FLAG_FIX_BRANCH_REG; |
167 | break; | 142 | p->ainsn.target_br_reg = ((kprobe_inst >> 6) & 0x7); |
168 | case IP_RELATIVE_PREDICT_OPCODE: | 143 | break; |
169 | case IP_RELATIVE_BRANCH_OPCODE: | 144 | case IP_RELATIVE_PREDICT_OPCODE: |
170 | p->ainsn.inst_flag |= INST_FLAG_FIX_RELATIVE_IP_ADDR; | 145 | case IP_RELATIVE_BRANCH_OPCODE: |
171 | break; | 146 | p->ainsn.inst_flag |= INST_FLAG_FIX_RELATIVE_IP_ADDR; |
172 | case IP_RELATIVE_CALL_OPCODE: | 147 | break; |
173 | p->ainsn.inst_flag |= INST_FLAG_FIX_RELATIVE_IP_ADDR; | 148 | case IP_RELATIVE_CALL_OPCODE: |
174 | p->ainsn.inst_flag |= INST_FLAG_FIX_BRANCH_REG; | 149 | p->ainsn.inst_flag |= INST_FLAG_FIX_RELATIVE_IP_ADDR; |
175 | p->ainsn.target_br_reg = ((kprobe_inst >> 6) & 0x7); | 150 | p->ainsn.inst_flag |= INST_FLAG_FIX_BRANCH_REG; |
176 | break; | 151 | p->ainsn.target_br_reg = ((kprobe_inst >> 6) & 0x7); |
177 | default: | 152 | break; |
178 | /* Do nothing */ | 153 | default: |
179 | break; | 154 | /* Do nothing */ |
180 | } | 155 | break; |
181 | } else if (lx_type_inst) { | 156 | } |
182 | switch (major_opcode) { | 157 | } else if (lx_type_inst) { |
183 | case LONG_CALL_OPCODE: | 158 | switch (major_opcode) { |
184 | p->ainsn.inst_flag |= INST_FLAG_FIX_BRANCH_REG; | 159 | case LONG_CALL_OPCODE: |
185 | p->ainsn.target_br_reg = ((kprobe_inst >> 6) & 0x7); | 160 | p->ainsn.inst_flag |= INST_FLAG_FIX_BRANCH_REG; |
186 | break; | 161 | p->ainsn.target_br_reg = ((kprobe_inst >> 6) & 0x7); |
187 | default: | 162 | break; |
188 | /* Do nothing */ | 163 | default: |
189 | break; | 164 | /* Do nothing */ |
190 | } | 165 | break; |
191 | } | 166 | } |
192 | 167 | } | |
193 | /* Flush icache for the instruction at the emulated address */ | 168 | |
194 | flush_icache_range((unsigned long)&p->ainsn.insn.bundle, | 169 | return 0; |
195 | (unsigned long)&p->ainsn.insn.bundle + | 170 | } |
196 | sizeof(bundle_t)); | 171 | |
197 | /* | 172 | void arch_arm_kprobe(struct kprobe *p) |
198 | * Patch the original instruction with the probe instruction | 173 | { |
199 | * and flush the instruction cache | 174 | unsigned long addr = (unsigned long)p->addr; |
200 | */ | 175 | unsigned long arm_addr = addr & ~0xFULL; |
201 | memcpy((char *) arm_addr, (char *) &bundle, sizeof(bundle_t)); | 176 | |
177 | memcpy((char *)arm_addr, &p->ainsn.insn.bundle, sizeof(bundle_t)); | ||
202 | flush_icache_range(arm_addr, arm_addr + sizeof(bundle_t)); | 178 | flush_icache_range(arm_addr, arm_addr + sizeof(bundle_t)); |
203 | } | 179 | } |
204 | 180 | ||
@@ -226,7 +202,7 @@ void arch_remove_kprobe(struct kprobe *p) | |||
226 | */ | 202 | */ |
227 | static void resume_execution(struct kprobe *p, struct pt_regs *regs) | 203 | static void resume_execution(struct kprobe *p, struct pt_regs *regs) |
228 | { | 204 | { |
229 | unsigned long bundle_addr = ((unsigned long) (&p->ainsn.insn.bundle)) & ~0xFULL; | 205 | unsigned long bundle_addr = ((unsigned long) (&p->opcode.bundle)) & ~0xFULL; |
230 | unsigned long resume_addr = (unsigned long)p->addr & ~0xFULL; | 206 | unsigned long resume_addr = (unsigned long)p->addr & ~0xFULL; |
231 | unsigned long template; | 207 | unsigned long template; |
232 | int slot = ((unsigned long)p->addr & 0xf); | 208 | int slot = ((unsigned long)p->addr & 0xf); |
@@ -293,7 +269,7 @@ turn_ss_off: | |||
293 | 269 | ||
294 | static void prepare_ss(struct kprobe *p, struct pt_regs *regs) | 270 | static void prepare_ss(struct kprobe *p, struct pt_regs *regs) |
295 | { | 271 | { |
296 | unsigned long bundle_addr = (unsigned long) &p->ainsn.insn.bundle; | 272 | unsigned long bundle_addr = (unsigned long) &p->opcode.bundle; |
297 | unsigned long slot = (unsigned long)p->addr & 0xf; | 273 | unsigned long slot = (unsigned long)p->addr & 0xf; |
298 | 274 | ||
299 | /* Update instruction pointer (IIP) and slot number (IPSR.ri) */ | 275 | /* Update instruction pointer (IIP) and slot number (IPSR.ri) */ |
diff --git a/include/asm-ia64/kprobes.h b/include/asm-ia64/kprobes.h index d30af77a0b11..cec4d9958307 100644 --- a/include/asm-ia64/kprobes.h +++ b/include/asm-ia64/kprobes.h | |||
@@ -30,6 +30,8 @@ | |||
30 | 30 | ||
31 | #define BREAK_INST (long)(__IA64_BREAK_KPROBE << 6) | 31 | #define BREAK_INST (long)(__IA64_BREAK_KPROBE << 6) |
32 | 32 | ||
33 | struct kprobe; | ||
34 | |||
33 | typedef struct _bundle { | 35 | typedef struct _bundle { |
34 | struct { | 36 | struct { |
35 | unsigned long long template : 5; | 37 | unsigned long long template : 5; |
@@ -79,6 +81,11 @@ static inline void jprobe_return(void) | |||
79 | { | 81 | { |
80 | } | 82 | } |
81 | 83 | ||
84 | /* ia64 does not need this */ | ||
85 | static inline void arch_copy_kprobe(struct kprobe *p) | ||
86 | { | ||
87 | } | ||
88 | |||
82 | #ifdef CONFIG_KPROBES | 89 | #ifdef CONFIG_KPROBES |
83 | extern int kprobe_exceptions_notify(struct notifier_block *self, | 90 | extern int kprobe_exceptions_notify(struct notifier_block *self, |
84 | unsigned long val, void *data); | 91 | unsigned long val, void *data); |