blob: 757ccef62fd59257077769345f16a0746dccb254 [file] [log] [blame]
David Hildenbrand27291e22014-01-23 12:26:52 +01001/*
2 * kvm guest debug support
3 *
4 * Copyright IBM Corp. 2014
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License (version 2 only)
8 * as published by the Free Software Foundation.
9 *
10 * Author(s): David Hildenbrand <dahi@linux.vnet.ibm.com>
11 */
12#include <linux/kvm_host.h>
13#include <linux/errno.h>
14#include "kvm-s390.h"
15#include "gaccess.h"
16
17/*
18 * Extends the address range given by *start and *stop to include the address
19 * range starting with estart and the length len. Takes care of overflowing
20 * intervals and tries to minimize the overall intervall size.
21 */
22static void extend_address_range(u64 *start, u64 *stop, u64 estart, int len)
23{
24 u64 estop;
25
26 if (len > 0)
27 len--;
28 else
29 len = 0;
30
31 estop = estart + len;
32
33 /* 0-0 range represents "not set" */
34 if ((*start == 0) && (*stop == 0)) {
35 *start = estart;
36 *stop = estop;
37 } else if (*start <= *stop) {
38 /* increase the existing range */
39 if (estart < *start)
40 *start = estart;
41 if (estop > *stop)
42 *stop = estop;
43 } else {
44 /* "overflowing" interval, whereby *stop > *start */
45 if (estart <= *stop) {
46 if (estop > *stop)
47 *stop = estop;
48 } else if (estop > *start) {
49 if (estart < *start)
50 *start = estart;
51 }
52 /* minimize the range */
53 else if ((estop - *stop) < (*start - estart))
54 *stop = estop;
55 else
56 *start = estart;
57 }
58}
59
60#define MAX_INST_SIZE 6
61
62static void enable_all_hw_bp(struct kvm_vcpu *vcpu)
63{
64 unsigned long start, len;
65 u64 *cr9 = &vcpu->arch.sie_block->gcr[9];
66 u64 *cr10 = &vcpu->arch.sie_block->gcr[10];
67 u64 *cr11 = &vcpu->arch.sie_block->gcr[11];
68 int i;
69
70 if (vcpu->arch.guestdbg.nr_hw_bp <= 0 ||
71 vcpu->arch.guestdbg.hw_bp_info == NULL)
72 return;
73
74 /*
75 * If the guest is not interrested in branching events, we can savely
76 * limit them to the PER address range.
77 */
78 if (!(*cr9 & PER_EVENT_BRANCH))
79 *cr9 |= PER_CONTROL_BRANCH_ADDRESS;
80 *cr9 |= PER_EVENT_IFETCH | PER_EVENT_BRANCH;
81
82 for (i = 0; i < vcpu->arch.guestdbg.nr_hw_bp; i++) {
83 start = vcpu->arch.guestdbg.hw_bp_info[i].addr;
84 len = vcpu->arch.guestdbg.hw_bp_info[i].len;
85
86 /*
87 * The instruction in front of the desired bp has to
88 * report instruction-fetching events
89 */
90 if (start < MAX_INST_SIZE) {
91 len += start;
92 start = 0;
93 } else {
94 start -= MAX_INST_SIZE;
95 len += MAX_INST_SIZE;
96 }
97
98 extend_address_range(cr10, cr11, start, len);
99 }
100}
101
102static void enable_all_hw_wp(struct kvm_vcpu *vcpu)
103{
104 unsigned long start, len;
105 u64 *cr9 = &vcpu->arch.sie_block->gcr[9];
106 u64 *cr10 = &vcpu->arch.sie_block->gcr[10];
107 u64 *cr11 = &vcpu->arch.sie_block->gcr[11];
108 int i;
109
110 if (vcpu->arch.guestdbg.nr_hw_wp <= 0 ||
111 vcpu->arch.guestdbg.hw_wp_info == NULL)
112 return;
113
114 /* if host uses storage alternation for special address
115 * spaces, enable all events and give all to the guest */
116 if (*cr9 & PER_EVENT_STORE && *cr9 & PER_CONTROL_ALTERATION) {
117 *cr9 &= ~PER_CONTROL_ALTERATION;
118 *cr10 = 0;
119 *cr11 = PSW_ADDR_INSN;
120 } else {
121 *cr9 &= ~PER_CONTROL_ALTERATION;
122 *cr9 |= PER_EVENT_STORE;
123
124 for (i = 0; i < vcpu->arch.guestdbg.nr_hw_wp; i++) {
125 start = vcpu->arch.guestdbg.hw_wp_info[i].addr;
126 len = vcpu->arch.guestdbg.hw_wp_info[i].len;
127
128 extend_address_range(cr10, cr11, start, len);
129 }
130 }
131}
132
133void kvm_s390_backup_guest_per_regs(struct kvm_vcpu *vcpu)
134{
135 vcpu->arch.guestdbg.cr0 = vcpu->arch.sie_block->gcr[0];
136 vcpu->arch.guestdbg.cr9 = vcpu->arch.sie_block->gcr[9];
137 vcpu->arch.guestdbg.cr10 = vcpu->arch.sie_block->gcr[10];
138 vcpu->arch.guestdbg.cr11 = vcpu->arch.sie_block->gcr[11];
139}
140
141void kvm_s390_restore_guest_per_regs(struct kvm_vcpu *vcpu)
142{
143 vcpu->arch.sie_block->gcr[0] = vcpu->arch.guestdbg.cr0;
144 vcpu->arch.sie_block->gcr[9] = vcpu->arch.guestdbg.cr9;
145 vcpu->arch.sie_block->gcr[10] = vcpu->arch.guestdbg.cr10;
146 vcpu->arch.sie_block->gcr[11] = vcpu->arch.guestdbg.cr11;
147}
148
149void kvm_s390_patch_guest_per_regs(struct kvm_vcpu *vcpu)
150{
151 /*
152 * TODO: if guest psw has per enabled, otherwise 0s!
153 * This reduces the amount of reported events.
154 * Need to intercept all psw changes!
155 */
156
157 if (guestdbg_sstep_enabled(vcpu)) {
David Hildenbrandf71d0dc2014-03-18 10:06:14 +0100158 /* disable timer (clock-comparator) interrupts */
159 vcpu->arch.sie_block->gcr[0] &= ~0x800ul;
David Hildenbrand27291e22014-01-23 12:26:52 +0100160 vcpu->arch.sie_block->gcr[9] |= PER_EVENT_IFETCH;
161 vcpu->arch.sie_block->gcr[10] = 0;
162 vcpu->arch.sie_block->gcr[11] = PSW_ADDR_INSN;
163 }
164
165 if (guestdbg_hw_bp_enabled(vcpu)) {
166 enable_all_hw_bp(vcpu);
167 enable_all_hw_wp(vcpu);
168 }
169
170 /* TODO: Instruction-fetching-nullification not allowed for now */
171 if (vcpu->arch.sie_block->gcr[9] & PER_EVENT_NULLIFICATION)
172 vcpu->arch.sie_block->gcr[9] &= ~PER_EVENT_NULLIFICATION;
173}
174
175#define MAX_WP_SIZE 100
176
177static int __import_wp_info(struct kvm_vcpu *vcpu,
178 struct kvm_hw_breakpoint *bp_data,
179 struct kvm_hw_wp_info_arch *wp_info)
180{
181 int ret = 0;
182 wp_info->len = bp_data->len;
183 wp_info->addr = bp_data->addr;
184 wp_info->phys_addr = bp_data->phys_addr;
185 wp_info->old_data = NULL;
186
187 if (wp_info->len < 0 || wp_info->len > MAX_WP_SIZE)
188 return -EINVAL;
189
190 wp_info->old_data = kmalloc(bp_data->len, GFP_KERNEL);
191 if (!wp_info->old_data)
192 return -ENOMEM;
193 /* try to backup the original value */
194 ret = read_guest(vcpu, wp_info->phys_addr, wp_info->old_data,
195 wp_info->len);
196 if (ret) {
197 kfree(wp_info->old_data);
198 wp_info->old_data = NULL;
199 }
200
201 return ret;
202}
203
204#define MAX_BP_COUNT 50
205
206int kvm_s390_import_bp_data(struct kvm_vcpu *vcpu,
207 struct kvm_guest_debug *dbg)
208{
209 int ret = 0, nr_wp = 0, nr_bp = 0, i, size;
210 struct kvm_hw_breakpoint *bp_data = NULL;
211 struct kvm_hw_wp_info_arch *wp_info = NULL;
212 struct kvm_hw_bp_info_arch *bp_info = NULL;
213
214 if (dbg->arch.nr_hw_bp <= 0 || !dbg->arch.hw_bp)
215 return 0;
216 else if (dbg->arch.nr_hw_bp > MAX_BP_COUNT)
217 return -EINVAL;
218
219 size = dbg->arch.nr_hw_bp * sizeof(struct kvm_hw_breakpoint);
220 bp_data = kmalloc(size, GFP_KERNEL);
221 if (!bp_data) {
222 ret = -ENOMEM;
223 goto error;
224 }
225
226 ret = copy_from_user(bp_data, dbg->arch.hw_bp, size);
227 if (ret)
228 goto error;
229
230 for (i = 0; i < dbg->arch.nr_hw_bp; i++) {
231 switch (bp_data[i].type) {
232 case KVM_HW_WP_WRITE:
233 nr_wp++;
234 break;
235 case KVM_HW_BP:
236 nr_bp++;
237 break;
238 default:
239 break;
240 }
241 }
242
243 size = nr_wp * sizeof(struct kvm_hw_wp_info_arch);
244 if (size > 0) {
245 wp_info = kmalloc(size, GFP_KERNEL);
246 if (!wp_info) {
247 ret = -ENOMEM;
248 goto error;
249 }
250 }
251 size = nr_bp * sizeof(struct kvm_hw_bp_info_arch);
252 if (size > 0) {
253 bp_info = kmalloc(size, GFP_KERNEL);
254 if (!bp_info) {
255 ret = -ENOMEM;
256 goto error;
257 }
258 }
259
260 for (nr_wp = 0, nr_bp = 0, i = 0; i < dbg->arch.nr_hw_bp; i++) {
261 switch (bp_data[i].type) {
262 case KVM_HW_WP_WRITE:
263 ret = __import_wp_info(vcpu, &bp_data[i],
264 &wp_info[nr_wp]);
265 if (ret)
266 goto error;
267 nr_wp++;
268 break;
269 case KVM_HW_BP:
270 bp_info[nr_bp].len = bp_data[i].len;
271 bp_info[nr_bp].addr = bp_data[i].addr;
272 nr_bp++;
273 break;
274 }
275 }
276
277 vcpu->arch.guestdbg.nr_hw_bp = nr_bp;
278 vcpu->arch.guestdbg.hw_bp_info = bp_info;
279 vcpu->arch.guestdbg.nr_hw_wp = nr_wp;
280 vcpu->arch.guestdbg.hw_wp_info = wp_info;
281 return 0;
282error:
283 kfree(bp_data);
284 kfree(wp_info);
285 kfree(bp_info);
286 return ret;
287}
288
289void kvm_s390_clear_bp_data(struct kvm_vcpu *vcpu)
290{
291 int i;
292 struct kvm_hw_wp_info_arch *hw_wp_info = NULL;
293
294 for (i = 0; i < vcpu->arch.guestdbg.nr_hw_wp; i++) {
295 hw_wp_info = &vcpu->arch.guestdbg.hw_wp_info[i];
296 kfree(hw_wp_info->old_data);
297 hw_wp_info->old_data = NULL;
298 }
299 kfree(vcpu->arch.guestdbg.hw_wp_info);
300 vcpu->arch.guestdbg.hw_wp_info = NULL;
301
302 kfree(vcpu->arch.guestdbg.hw_bp_info);
303 vcpu->arch.guestdbg.hw_bp_info = NULL;
304
305 vcpu->arch.guestdbg.nr_hw_wp = 0;
306 vcpu->arch.guestdbg.nr_hw_bp = 0;
307}
308
309static inline int in_addr_range(u64 addr, u64 a, u64 b)
310{
311 if (a <= b)
312 return (addr >= a) && (addr <= b);
313 else
314 /* "overflowing" interval */
315 return (addr <= a) && (addr >= b);
316}
317
318#define end_of_range(bp_info) (bp_info->addr + bp_info->len - 1)
319
320static struct kvm_hw_bp_info_arch *find_hw_bp(struct kvm_vcpu *vcpu,
321 unsigned long addr)
322{
323 struct kvm_hw_bp_info_arch *bp_info = vcpu->arch.guestdbg.hw_bp_info;
324 int i;
325
326 if (vcpu->arch.guestdbg.nr_hw_bp == 0)
327 return NULL;
328
329 for (i = 0; i < vcpu->arch.guestdbg.nr_hw_bp; i++) {
330 /* addr is directly the start or in the range of a bp */
331 if (addr == bp_info->addr)
332 goto found;
333 if (bp_info->len > 0 &&
334 in_addr_range(addr, bp_info->addr, end_of_range(bp_info)))
335 goto found;
336
337 bp_info++;
338 }
339
340 return NULL;
341found:
342 return bp_info;
343}
344
345static struct kvm_hw_wp_info_arch *any_wp_changed(struct kvm_vcpu *vcpu)
346{
347 int i;
348 struct kvm_hw_wp_info_arch *wp_info = NULL;
349 void *temp = NULL;
350
351 if (vcpu->arch.guestdbg.nr_hw_wp == 0)
352 return NULL;
353
354 for (i = 0; i < vcpu->arch.guestdbg.nr_hw_wp; i++) {
355 wp_info = &vcpu->arch.guestdbg.hw_wp_info[i];
356 if (!wp_info || !wp_info->old_data || wp_info->len <= 0)
357 continue;
358
359 temp = kmalloc(wp_info->len, GFP_KERNEL);
360 if (!temp)
361 continue;
362
363 /* refetch the wp data and compare it to the old value */
364 if (!read_guest(vcpu, wp_info->phys_addr, temp,
365 wp_info->len)) {
366 if (memcmp(temp, wp_info->old_data, wp_info->len)) {
367 kfree(temp);
368 return wp_info;
369 }
370 }
371 kfree(temp);
372 temp = NULL;
373 }
374
375 return NULL;
376}
377
378void kvm_s390_prepare_debug_exit(struct kvm_vcpu *vcpu)
379{
380 vcpu->run->exit_reason = KVM_EXIT_DEBUG;
381 vcpu->guest_debug &= ~KVM_GUESTDBG_EXIT_PENDING;
382}
383
384#define per_bp_event(code) \
385 (code & (PER_EVENT_IFETCH | PER_EVENT_BRANCH))
386#define per_write_wp_event(code) \
387 (code & (PER_EVENT_STORE | PER_EVENT_STORE_REAL))
388
389static int debug_exit_required(struct kvm_vcpu *vcpu)
390{
391 u32 perc = (vcpu->arch.sie_block->perc << 24);
392 struct kvm_debug_exit_arch *debug_exit = &vcpu->run->debug.arch;
393 struct kvm_hw_wp_info_arch *wp_info = NULL;
394 struct kvm_hw_bp_info_arch *bp_info = NULL;
395 unsigned long addr = vcpu->arch.sie_block->gpsw.addr;
396 unsigned long peraddr = vcpu->arch.sie_block->peraddr;
397
398 if (guestdbg_hw_bp_enabled(vcpu)) {
399 if (per_write_wp_event(perc) &&
400 vcpu->arch.guestdbg.nr_hw_wp > 0) {
401 wp_info = any_wp_changed(vcpu);
402 if (wp_info) {
403 debug_exit->addr = wp_info->addr;
404 debug_exit->type = KVM_HW_WP_WRITE;
405 goto exit_required;
406 }
407 }
408 if (per_bp_event(perc) &&
409 vcpu->arch.guestdbg.nr_hw_bp > 0) {
410 bp_info = find_hw_bp(vcpu, addr);
411 /* remove duplicate events if PC==PER address */
412 if (bp_info && (addr != peraddr)) {
413 debug_exit->addr = addr;
414 debug_exit->type = KVM_HW_BP;
415 vcpu->arch.guestdbg.last_bp = addr;
416 goto exit_required;
417 }
418 /* breakpoint missed */
419 bp_info = find_hw_bp(vcpu, peraddr);
420 if (bp_info && vcpu->arch.guestdbg.last_bp != peraddr) {
421 debug_exit->addr = peraddr;
422 debug_exit->type = KVM_HW_BP;
423 goto exit_required;
424 }
425 }
426 }
427 if (guestdbg_sstep_enabled(vcpu) && per_bp_event(perc)) {
428 debug_exit->addr = addr;
429 debug_exit->type = KVM_SINGLESTEP;
430 goto exit_required;
431 }
432
433 return 0;
434exit_required:
435 return 1;
436}
437
438#define guest_per_enabled(vcpu) \
439 (vcpu->arch.sie_block->gpsw.mask & PSW_MASK_PER)
440
441static void filter_guest_per_event(struct kvm_vcpu *vcpu)
442{
443 u32 perc = vcpu->arch.sie_block->perc << 24;
444 u64 peraddr = vcpu->arch.sie_block->peraddr;
445 u64 addr = vcpu->arch.sie_block->gpsw.addr;
446 u64 cr9 = vcpu->arch.sie_block->gcr[9];
447 u64 cr10 = vcpu->arch.sie_block->gcr[10];
448 u64 cr11 = vcpu->arch.sie_block->gcr[11];
449 /* filter all events, demanded by the guest */
450 u32 guest_perc = perc & cr9 & PER_EVENT_MASK;
451
452 if (!guest_per_enabled(vcpu))
453 guest_perc = 0;
454
455 /* filter "successful-branching" events */
456 if (guest_perc & PER_EVENT_BRANCH &&
457 cr9 & PER_CONTROL_BRANCH_ADDRESS &&
458 !in_addr_range(addr, cr10, cr11))
459 guest_perc &= ~PER_EVENT_BRANCH;
460
461 /* filter "instruction-fetching" events */
462 if (guest_perc & PER_EVENT_IFETCH &&
463 !in_addr_range(peraddr, cr10, cr11))
464 guest_perc &= ~PER_EVENT_IFETCH;
465
466 /* All other PER events will be given to the guest */
467 /* TODO: Check alterated address/address space */
468
469 vcpu->arch.sie_block->perc = guest_perc >> 24;
470
471 if (!guest_perc)
472 vcpu->arch.sie_block->iprcc &= ~PGM_PER;
473}
474
475void kvm_s390_handle_per_event(struct kvm_vcpu *vcpu)
476{
477 if (debug_exit_required(vcpu))
478 vcpu->guest_debug |= KVM_GUESTDBG_EXIT_PENDING;
479
480 filter_guest_per_event(vcpu);
481}