blob: 39115f5a38df2b6cd52463ff9f0557427395d88f [file] [log] [blame]
Heiko Carstensb0c632d2008-03-25 18:47:20 +01001/*
Heiko Carstensa53c8fa2012-07-20 11:15:04 +02002 * hosting zSeries kernel virtual machines
Heiko Carstensb0c632d2008-03-25 18:47:20 +01003 *
Heiko Carstensa53c8fa2012-07-20 11:15:04 +02004 * Copyright IBM Corp. 2008, 2009
Heiko Carstensb0c632d2008-03-25 18:47:20 +01005 *
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): Carsten Otte <cotte@de.ibm.com>
11 * Christian Borntraeger <borntraeger@de.ibm.com>
12 * Heiko Carstens <heiko.carstens@de.ibm.com>
Christian Ehrhardt628eb9b2009-05-25 13:40:51 +020013 * Christian Ehrhardt <ehrhardt@de.ibm.com>
Jason J. Herne15f36eb2012-08-02 10:10:17 -040014 * Jason J. Herne <jjherne@us.ibm.com>
Heiko Carstensb0c632d2008-03-25 18:47:20 +010015 */
16
17#include <linux/compiler.h>
18#include <linux/err.h>
19#include <linux/fs.h>
Christian Borntraegerca872302009-05-12 17:21:49 +020020#include <linux/hrtimer.h>
Heiko Carstensb0c632d2008-03-25 18:47:20 +010021#include <linux/init.h>
22#include <linux/kvm.h>
23#include <linux/kvm_host.h>
Martin Schwidefskyb2d73b22016-03-08 11:54:42 +010024#include <linux/mman.h>
Heiko Carstensb0c632d2008-03-25 18:47:20 +010025#include <linux/module.h>
Paul Gortmakerd3217962017-02-09 15:20:25 -050026#include <linux/moduleparam.h>
Tony Krowiaka374e892014-09-03 10:13:53 +020027#include <linux/random.h>
Heiko Carstensb0c632d2008-03-25 18:47:20 +010028#include <linux/slab.h>
Carsten Otteba5c1e92008-03-25 18:47:26 +010029#include <linux/timer.h>
Thomas Huth41408c282015-02-06 15:01:21 +010030#include <linux/vmalloc.h>
David Hildenbrand15c97052015-03-19 17:36:43 +010031#include <linux/bitmap.h>
Ingo Molnar174cd4b2017-02-02 19:15:33 +010032#include <linux/sched/signal.h>
Claudio Imbrenda190df4a2016-08-04 17:54:42 +020033#include <linux/string.h>
Ingo Molnar174cd4b2017-02-02 19:15:33 +010034
Heiko Carstenscbb870c2010-02-26 22:37:43 +010035#include <asm/asm-offsets.h>
Heiko Carstensb0c632d2008-03-25 18:47:20 +010036#include <asm/lowcore.h>
Martin Schwidefskyfd5ada02016-05-31 15:06:51 +020037#include <asm/stp.h>
Heiko Carstensb0c632d2008-03-25 18:47:20 +010038#include <asm/pgtable.h>
Martin Schwidefsky1e133ab2016-03-08 11:49:57 +010039#include <asm/gmap.h>
Heiko Carstensf5daba12009-03-26 15:24:01 +010040#include <asm/nmi.h>
David Howellsa0616cd2012-03-28 18:30:02 +010041#include <asm/switch_to.h>
Jens Freimann6d3da242013-07-03 15:18:35 +020042#include <asm/isc.h>
Christian Borntraeger1526bf92012-05-15 14:15:25 +020043#include <asm/sclp.h>
David Hildenbrand0a763c72016-05-18 16:03:47 +020044#include <asm/cpacf.h>
Linus Torvalds221bb8a2016-08-02 16:11:27 -040045#include <asm/timex.h>
Christian Borntraeger8f2abe62008-03-25 18:47:23 +010046#include "kvm-s390.h"
Heiko Carstensb0c632d2008-03-25 18:47:20 +010047#include "gaccess.h"
48
David Hildenbrandea2cdd22015-05-20 13:24:02 +020049#define KMSG_COMPONENT "kvm-s390"
50#undef pr_fmt
51#define pr_fmt(fmt) KMSG_COMPONENT ": " fmt
52
Cornelia Huck5786fff2012-07-23 17:20:29 +020053#define CREATE_TRACE_POINTS
54#include "trace.h"
Cornelia Huckade38c32012-07-23 17:20:30 +020055#include "trace-s390.h"
Cornelia Huck5786fff2012-07-23 17:20:29 +020056
Thomas Huth41408c282015-02-06 15:01:21 +010057#define MEM_OP_MAX_SIZE 65536 /* Maximum transfer size for KVM_S390_MEM_OP */
Jens Freimann816c7662014-11-24 17:13:46 +010058#define LOCAL_IRQS 32
59#define VCPU_IRQS_MAX_BUF (sizeof(struct kvm_s390_irq) * \
60 (KVM_MAX_VCPUS + LOCAL_IRQS))
Thomas Huth41408c282015-02-06 15:01:21 +010061
Heiko Carstensb0c632d2008-03-25 18:47:20 +010062#define VCPU_STAT(x) offsetof(struct kvm_vcpu, stat.x), KVM_STAT_VCPU
63
64struct kvm_stats_debugfs_item debugfs_entries[] = {
65 { "userspace_handled", VCPU_STAT(exit_userspace) },
Christian Borntraeger0eaeafa2008-05-07 09:22:53 +020066 { "exit_null", VCPU_STAT(exit_null) },
Christian Borntraeger8f2abe62008-03-25 18:47:23 +010067 { "exit_validity", VCPU_STAT(exit_validity) },
68 { "exit_stop_request", VCPU_STAT(exit_stop_request) },
69 { "exit_external_request", VCPU_STAT(exit_external_request) },
70 { "exit_external_interrupt", VCPU_STAT(exit_external_interrupt) },
Carsten Otteba5c1e92008-03-25 18:47:26 +010071 { "exit_instruction", VCPU_STAT(exit_instruction) },
Alexander Yarygin9ec6de12016-05-06 16:33:06 +030072 { "exit_pei", VCPU_STAT(exit_pei) },
Carsten Otteba5c1e92008-03-25 18:47:26 +010073 { "exit_program_interruption", VCPU_STAT(exit_program_interruption) },
74 { "exit_instr_and_program_int", VCPU_STAT(exit_instr_and_program) },
Janosch Franka011eeb2016-05-09 14:14:01 +020075 { "exit_operation_exception", VCPU_STAT(exit_operation_exception) },
Paolo Bonzinif7819512015-02-04 18:20:58 +010076 { "halt_successful_poll", VCPU_STAT(halt_successful_poll) },
Paolo Bonzini62bea5b2015-09-15 18:27:57 +020077 { "halt_attempted_poll", VCPU_STAT(halt_attempted_poll) },
Christian Borntraeger3491caf2016-05-13 12:16:35 +020078 { "halt_poll_invalid", VCPU_STAT(halt_poll_invalid) },
David Hildenbrandce2e4f02014-07-11 10:00:43 +020079 { "halt_wakeup", VCPU_STAT(halt_wakeup) },
Christian Borntraegerf5e10b02008-07-25 15:52:44 +020080 { "instruction_lctlg", VCPU_STAT(instruction_lctlg) },
Carsten Otteba5c1e92008-03-25 18:47:26 +010081 { "instruction_lctl", VCPU_STAT(instruction_lctl) },
David Hildenbrandaba07502014-01-23 10:47:13 +010082 { "instruction_stctl", VCPU_STAT(instruction_stctl) },
83 { "instruction_stctg", VCPU_STAT(instruction_stctg) },
Carsten Otteba5c1e92008-03-25 18:47:26 +010084 { "deliver_emergency_signal", VCPU_STAT(deliver_emergency_signal) },
Christian Ehrhardt7697e71f2011-10-18 12:27:15 +020085 { "deliver_external_call", VCPU_STAT(deliver_external_call) },
Carsten Otteba5c1e92008-03-25 18:47:26 +010086 { "deliver_service_signal", VCPU_STAT(deliver_service_signal) },
87 { "deliver_virtio_interrupt", VCPU_STAT(deliver_virtio_interrupt) },
88 { "deliver_stop_signal", VCPU_STAT(deliver_stop_signal) },
89 { "deliver_prefix_signal", VCPU_STAT(deliver_prefix_signal) },
90 { "deliver_restart_signal", VCPU_STAT(deliver_restart_signal) },
91 { "deliver_program_interruption", VCPU_STAT(deliver_program_int) },
92 { "exit_wait_state", VCPU_STAT(exit_wait_state) },
Christian Borntraeger69d0d3a2013-06-12 13:54:53 +020093 { "instruction_pfmf", VCPU_STAT(instruction_pfmf) },
Christian Borntraeger453423d2008-03-25 18:47:29 +010094 { "instruction_stidp", VCPU_STAT(instruction_stidp) },
95 { "instruction_spx", VCPU_STAT(instruction_spx) },
96 { "instruction_stpx", VCPU_STAT(instruction_stpx) },
97 { "instruction_stap", VCPU_STAT(instruction_stap) },
98 { "instruction_storage_key", VCPU_STAT(instruction_storage_key) },
Heiko Carstens8a2422342014-01-10 14:33:28 +010099 { "instruction_ipte_interlock", VCPU_STAT(instruction_ipte_interlock) },
Christian Borntraeger453423d2008-03-25 18:47:29 +0100100 { "instruction_stsch", VCPU_STAT(instruction_stsch) },
101 { "instruction_chsc", VCPU_STAT(instruction_chsc) },
Konstantin Weitzb31288f2013-04-17 17:36:29 +0200102 { "instruction_essa", VCPU_STAT(instruction_essa) },
Christian Borntraeger453423d2008-03-25 18:47:29 +0100103 { "instruction_stsi", VCPU_STAT(instruction_stsi) },
104 { "instruction_stfl", VCPU_STAT(instruction_stfl) },
Christian Borntraegerbb25b9b2011-07-24 10:48:17 +0200105 { "instruction_tprot", VCPU_STAT(instruction_tprot) },
Janosch Frank95ca2cb2016-05-23 15:11:58 +0200106 { "instruction_sthyi", VCPU_STAT(instruction_sthyi) },
David Hildenbranda3508fb2015-07-08 13:19:48 +0200107 { "instruction_sie", VCPU_STAT(instruction_sie) },
Christian Borntraeger5288fbf2008-03-25 18:47:31 +0100108 { "instruction_sigp_sense", VCPU_STAT(instruction_sigp_sense) },
Cornelia Huckbd59d3a2011-11-17 11:00:42 +0100109 { "instruction_sigp_sense_running", VCPU_STAT(instruction_sigp_sense_running) },
Christian Ehrhardt7697e71f2011-10-18 12:27:15 +0200110 { "instruction_sigp_external_call", VCPU_STAT(instruction_sigp_external_call) },
Christian Borntraeger5288fbf2008-03-25 18:47:31 +0100111 { "instruction_sigp_emergency", VCPU_STAT(instruction_sigp_emergency) },
David Hildenbrand42cb0c92014-05-23 12:25:11 +0200112 { "instruction_sigp_cond_emergency", VCPU_STAT(instruction_sigp_cond_emergency) },
113 { "instruction_sigp_start", VCPU_STAT(instruction_sigp_start) },
Christian Borntraeger5288fbf2008-03-25 18:47:31 +0100114 { "instruction_sigp_stop", VCPU_STAT(instruction_sigp_stop) },
David Hildenbrand42cb0c92014-05-23 12:25:11 +0200115 { "instruction_sigp_stop_store_status", VCPU_STAT(instruction_sigp_stop_store_status) },
116 { "instruction_sigp_store_status", VCPU_STAT(instruction_sigp_store_status) },
Eric Farmancd7b4b62015-02-12 09:06:34 -0500117 { "instruction_sigp_store_adtl_status", VCPU_STAT(instruction_sigp_store_adtl_status) },
Christian Borntraeger5288fbf2008-03-25 18:47:31 +0100118 { "instruction_sigp_set_arch", VCPU_STAT(instruction_sigp_arch) },
119 { "instruction_sigp_set_prefix", VCPU_STAT(instruction_sigp_prefix) },
120 { "instruction_sigp_restart", VCPU_STAT(instruction_sigp_restart) },
David Hildenbrand42cb0c92014-05-23 12:25:11 +0200121 { "instruction_sigp_cpu_reset", VCPU_STAT(instruction_sigp_cpu_reset) },
122 { "instruction_sigp_init_cpu_reset", VCPU_STAT(instruction_sigp_init_cpu_reset) },
123 { "instruction_sigp_unknown", VCPU_STAT(instruction_sigp_unknown) },
Christian Borntraeger388186b2011-10-30 15:17:03 +0100124 { "diagnose_10", VCPU_STAT(diagnose_10) },
Christian Borntraegere28acfe2008-03-25 18:47:34 +0100125 { "diagnose_44", VCPU_STAT(diagnose_44) },
Konstantin Weitz41628d32012-04-25 15:30:38 +0200126 { "diagnose_9c", VCPU_STAT(diagnose_9c) },
Christian Borntraeger175a5c92015-07-07 15:19:32 +0200127 { "diagnose_258", VCPU_STAT(diagnose_258) },
128 { "diagnose_308", VCPU_STAT(diagnose_308) },
129 { "diagnose_500", VCPU_STAT(diagnose_500) },
Heiko Carstensb0c632d2008-03-25 18:47:20 +0100130 { NULL }
131};
132
Collin L. Walling8fa16962016-07-26 15:29:44 -0400133struct kvm_s390_tod_clock_ext {
134 __u8 epoch_idx;
135 __u64 tod;
136 __u8 reserved[7];
137} __packed;
138
David Hildenbranda411edf2016-02-02 15:41:22 +0100139/* allow nested virtualization in KVM (if enabled by user space) */
140static int nested;
141module_param(nested, int, S_IRUGO);
142MODULE_PARM_DESC(nested, "Nested virtualization support");
143
Michael Mueller9d8d5782015-02-02 15:42:51 +0100144/* upper facilities limit for kvm */
Heiko Carstensf6c1d352016-08-16 10:31:10 +0200145unsigned long kvm_s390_fac_list_mask[16] = { FACILITIES_KVM };
Heiko Carstensb0c632d2008-03-25 18:47:20 +0100146
Michael Mueller9d8d5782015-02-02 15:42:51 +0100147unsigned long kvm_s390_fac_list_mask_size(void)
Michael Mueller78c4b592013-07-26 15:04:04 +0200148{
Michael Mueller9d8d5782015-02-02 15:42:51 +0100149 BUILD_BUG_ON(ARRAY_SIZE(kvm_s390_fac_list_mask) > S390_ARCH_FAC_MASK_SIZE_U64);
150 return ARRAY_SIZE(kvm_s390_fac_list_mask);
Michael Mueller78c4b592013-07-26 15:04:04 +0200151}
152
David Hildenbrand15c97052015-03-19 17:36:43 +0100153/* available cpu features supported by kvm */
154static DECLARE_BITMAP(kvm_s390_available_cpu_feat, KVM_S390_VM_CPU_FEAT_NR_BITS);
David Hildenbrand0a763c72016-05-18 16:03:47 +0200155/* available subfunctions indicated via query / "test bit" */
156static struct kvm_s390_vm_cpu_subfunc kvm_s390_available_subfunc;
David Hildenbrand15c97052015-03-19 17:36:43 +0100157
Michael Mueller9d8d5782015-02-02 15:42:51 +0100158static struct gmap_notifier gmap_notifier;
David Hildenbranda3508fb2015-07-08 13:19:48 +0200159static struct gmap_notifier vsie_gmap_notifier;
Christian Borntraeger78f26132015-07-22 15:50:58 +0200160debug_info_t *kvm_s390_dbf;
Michael Mueller9d8d5782015-02-02 15:42:51 +0100161
Heiko Carstensb0c632d2008-03-25 18:47:20 +0100162/* Section: not file related */
Radim Krčmář13a34e02014-08-28 15:13:03 +0200163int kvm_arch_hardware_enable(void)
Heiko Carstensb0c632d2008-03-25 18:47:20 +0100164{
165 /* every s390 is virtualization enabled ;-) */
Alexander Graf10474ae2009-09-15 11:37:46 +0200166 return 0;
Heiko Carstensb0c632d2008-03-25 18:47:20 +0100167}
168
Martin Schwidefsky414d3b02016-03-08 11:52:54 +0100169static void kvm_gmap_notifier(struct gmap *gmap, unsigned long start,
170 unsigned long end);
Christian Borntraeger2c70fe42013-05-17 14:41:36 +0200171
Fan Zhangfdf03652015-05-13 10:58:41 +0200172/*
173 * This callback is executed during stop_machine(). All CPUs are therefore
174 * temporarily stopped. In order not to change guest behavior, we have to
175 * disable preemption whenever we touch the epoch of kvm and the VCPUs,
176 * so a CPU won't be stopped while calculating with the epoch.
177 */
178static int kvm_clock_sync(struct notifier_block *notifier, unsigned long val,
179 void *v)
180{
181 struct kvm *kvm;
182 struct kvm_vcpu *vcpu;
183 int i;
184 unsigned long long *delta = v;
185
186 list_for_each_entry(kvm, &vm_list, vm_list) {
187 kvm->arch.epoch -= *delta;
188 kvm_for_each_vcpu(i, vcpu, kvm) {
189 vcpu->arch.sie_block->epoch -= *delta;
David Hildenbranddb0758b2016-02-15 09:42:25 +0100190 if (vcpu->arch.cputm_enabled)
191 vcpu->arch.cputm_start += *delta;
David Hildenbrand91473b42015-10-29 10:30:36 +0100192 if (vcpu->arch.vsie_block)
193 vcpu->arch.vsie_block->epoch -= *delta;
Fan Zhangfdf03652015-05-13 10:58:41 +0200194 }
195 }
196 return NOTIFY_OK;
197}
198
199static struct notifier_block kvm_clock_notifier = {
200 .notifier_call = kvm_clock_sync,
201};
202
Heiko Carstensb0c632d2008-03-25 18:47:20 +0100203int kvm_arch_hardware_setup(void)
204{
Christian Borntraeger2c70fe42013-05-17 14:41:36 +0200205 gmap_notifier.notifier_call = kvm_gmap_notifier;
Martin Schwidefskyb2d73b22016-03-08 11:54:42 +0100206 gmap_register_pte_notifier(&gmap_notifier);
David Hildenbranda3508fb2015-07-08 13:19:48 +0200207 vsie_gmap_notifier.notifier_call = kvm_s390_vsie_gmap_notifier;
208 gmap_register_pte_notifier(&vsie_gmap_notifier);
Fan Zhangfdf03652015-05-13 10:58:41 +0200209 atomic_notifier_chain_register(&s390_epoch_delta_notifier,
210 &kvm_clock_notifier);
Heiko Carstensb0c632d2008-03-25 18:47:20 +0100211 return 0;
212}
213
214void kvm_arch_hardware_unsetup(void)
215{
Martin Schwidefskyb2d73b22016-03-08 11:54:42 +0100216 gmap_unregister_pte_notifier(&gmap_notifier);
David Hildenbranda3508fb2015-07-08 13:19:48 +0200217 gmap_unregister_pte_notifier(&vsie_gmap_notifier);
Fan Zhangfdf03652015-05-13 10:58:41 +0200218 atomic_notifier_chain_unregister(&s390_epoch_delta_notifier,
219 &kvm_clock_notifier);
Heiko Carstensb0c632d2008-03-25 18:47:20 +0100220}
221
David Hildenbrand22be5a132016-01-21 13:22:54 +0100222static void allow_cpu_feat(unsigned long nr)
223{
224 set_bit_inv(nr, kvm_s390_available_cpu_feat);
225}
226
David Hildenbrand0a763c72016-05-18 16:03:47 +0200227static inline int plo_test_bit(unsigned char nr)
228{
229 register unsigned long r0 asm("0") = (unsigned long) nr | 0x100;
Heiko Carstensd051ae52016-12-13 14:25:32 +0100230 int cc;
David Hildenbrand0a763c72016-05-18 16:03:47 +0200231
232 asm volatile(
233 /* Parameter registers are ignored for "test bit" */
234 " plo 0,0,0,0(0)\n"
235 " ipm %0\n"
236 " srl %0,28\n"
237 : "=d" (cc)
238 : "d" (r0)
239 : "cc");
240 return cc == 0;
241}
242
David Hildenbrand22be5a132016-01-21 13:22:54 +0100243static void kvm_s390_cpu_feat_init(void)
244{
David Hildenbrand0a763c72016-05-18 16:03:47 +0200245 int i;
246
247 for (i = 0; i < 256; ++i) {
248 if (plo_test_bit(i))
249 kvm_s390_available_subfunc.plo[i >> 3] |= 0x80 >> (i & 7);
250 }
251
252 if (test_facility(28)) /* TOD-clock steering */
Linus Torvalds221bb8a2016-08-02 16:11:27 -0400253 ptff(kvm_s390_available_subfunc.ptff,
254 sizeof(kvm_s390_available_subfunc.ptff),
255 PTFF_QAF);
David Hildenbrand0a763c72016-05-18 16:03:47 +0200256
257 if (test_facility(17)) { /* MSA */
Martin Schwidefsky69c0e362016-08-18 12:59:46 +0200258 __cpacf_query(CPACF_KMAC, (cpacf_mask_t *)
259 kvm_s390_available_subfunc.kmac);
260 __cpacf_query(CPACF_KMC, (cpacf_mask_t *)
261 kvm_s390_available_subfunc.kmc);
262 __cpacf_query(CPACF_KM, (cpacf_mask_t *)
263 kvm_s390_available_subfunc.km);
264 __cpacf_query(CPACF_KIMD, (cpacf_mask_t *)
265 kvm_s390_available_subfunc.kimd);
266 __cpacf_query(CPACF_KLMD, (cpacf_mask_t *)
267 kvm_s390_available_subfunc.klmd);
David Hildenbrand0a763c72016-05-18 16:03:47 +0200268 }
269 if (test_facility(76)) /* MSA3 */
Martin Schwidefsky69c0e362016-08-18 12:59:46 +0200270 __cpacf_query(CPACF_PCKMO, (cpacf_mask_t *)
271 kvm_s390_available_subfunc.pckmo);
David Hildenbrand0a763c72016-05-18 16:03:47 +0200272 if (test_facility(77)) { /* MSA4 */
Martin Schwidefsky69c0e362016-08-18 12:59:46 +0200273 __cpacf_query(CPACF_KMCTR, (cpacf_mask_t *)
274 kvm_s390_available_subfunc.kmctr);
275 __cpacf_query(CPACF_KMF, (cpacf_mask_t *)
276 kvm_s390_available_subfunc.kmf);
277 __cpacf_query(CPACF_KMO, (cpacf_mask_t *)
278 kvm_s390_available_subfunc.kmo);
279 __cpacf_query(CPACF_PCC, (cpacf_mask_t *)
280 kvm_s390_available_subfunc.pcc);
David Hildenbrand0a763c72016-05-18 16:03:47 +0200281 }
282 if (test_facility(57)) /* MSA5 */
Harald Freudenberger985a9d22017-02-24 10:11:54 +0100283 __cpacf_query(CPACF_PRNO, (cpacf_mask_t *)
Martin Schwidefsky69c0e362016-08-18 12:59:46 +0200284 kvm_s390_available_subfunc.ppno);
David Hildenbrand0a763c72016-05-18 16:03:47 +0200285
Jason J. Hernee000b8e2017-03-20 09:57:42 -0400286 if (test_facility(146)) /* MSA8 */
287 __cpacf_query(CPACF_KMA, (cpacf_mask_t *)
288 kvm_s390_available_subfunc.kma);
289
David Hildenbrand22be5a132016-01-21 13:22:54 +0100290 if (MACHINE_HAS_ESOP)
291 allow_cpu_feat(KVM_S390_VM_CPU_FEAT_ESOP);
David Hildenbranda3508fb2015-07-08 13:19:48 +0200292 /*
293 * We need SIE support, ESOP (PROT_READ protection for gmap_shadow),
294 * 64bit SCAO (SCA passthrough) and IDTE (for gmap_shadow unshadowing).
295 */
296 if (!sclp.has_sief2 || !MACHINE_HAS_ESOP || !sclp.has_64bscao ||
David Hildenbranda411edf2016-02-02 15:41:22 +0100297 !test_facility(3) || !nested)
David Hildenbranda3508fb2015-07-08 13:19:48 +0200298 return;
299 allow_cpu_feat(KVM_S390_VM_CPU_FEAT_SIEF2);
David Hildenbrand19c439b2015-11-25 11:02:26 +0100300 if (sclp.has_64bscao)
301 allow_cpu_feat(KVM_S390_VM_CPU_FEAT_64BSCAO);
David Hildenbrand0615a322015-11-25 09:59:49 +0100302 if (sclp.has_siif)
303 allow_cpu_feat(KVM_S390_VM_CPU_FEAT_SIIF);
David Hildenbrand77d18f62015-11-24 16:32:35 +0100304 if (sclp.has_gpere)
305 allow_cpu_feat(KVM_S390_VM_CPU_FEAT_GPERE);
David Hildenbranda1b7b9b2015-11-24 16:41:33 +0100306 if (sclp.has_gsls)
307 allow_cpu_feat(KVM_S390_VM_CPU_FEAT_GSLS);
David Hildenbrand5630a8e2015-11-24 16:53:51 +0100308 if (sclp.has_ib)
309 allow_cpu_feat(KVM_S390_VM_CPU_FEAT_IB);
David Hildenbrand13ee3f62015-11-24 16:54:37 +0100310 if (sclp.has_cei)
311 allow_cpu_feat(KVM_S390_VM_CPU_FEAT_CEI);
David Hildenbrand7fd7f392015-11-24 16:56:23 +0100312 if (sclp.has_ibs)
313 allow_cpu_feat(KVM_S390_VM_CPU_FEAT_IBS);
Farhan Ali730cd632017-02-24 16:12:56 -0500314 if (sclp.has_kss)
315 allow_cpu_feat(KVM_S390_VM_CPU_FEAT_KSS);
David Hildenbrand5d3876a2016-04-13 17:06:50 +0200316 /*
317 * KVM_S390_VM_CPU_FEAT_SKEY: Wrong shadow of PTE.I bits will make
318 * all skey handling functions read/set the skey from the PGSTE
319 * instead of the real storage key.
320 *
321 * KVM_S390_VM_CPU_FEAT_CMMA: Wrong shadow of PTE.I bits will make
322 * pages being detected as preserved although they are resident.
323 *
324 * KVM_S390_VM_CPU_FEAT_PFMFI: Wrong shadow of PTE.I bits will
325 * have the same effect as for KVM_S390_VM_CPU_FEAT_SKEY.
326 *
327 * For KVM_S390_VM_CPU_FEAT_SKEY, KVM_S390_VM_CPU_FEAT_CMMA and
328 * KVM_S390_VM_CPU_FEAT_PFMFI, all PTE.I and PGSTE bits have to be
329 * correctly shadowed. We can do that for the PGSTE but not for PTE.I.
330 *
331 * KVM_S390_VM_CPU_FEAT_SIGPIF: Wrong SCB addresses in the SCA. We
332 * cannot easily shadow the SCA because of the ipte lock.
333 */
David Hildenbrand22be5a132016-01-21 13:22:54 +0100334}
335
Heiko Carstensb0c632d2008-03-25 18:47:20 +0100336int kvm_arch_init(void *opaque)
337{
Christian Borntraeger78f26132015-07-22 15:50:58 +0200338 kvm_s390_dbf = debug_register("kvm-trace", 32, 1, 7 * sizeof(long));
339 if (!kvm_s390_dbf)
340 return -ENOMEM;
341
342 if (debug_register_view(kvm_s390_dbf, &debug_sprintf_view)) {
343 debug_unregister(kvm_s390_dbf);
344 return -ENOMEM;
345 }
346
David Hildenbrand22be5a132016-01-21 13:22:54 +0100347 kvm_s390_cpu_feat_init();
348
Cornelia Huck84877d92014-09-02 10:27:35 +0100349 /* Register floating interrupt controller interface. */
350 return kvm_register_device_ops(&kvm_flic_ops, KVM_DEV_TYPE_FLIC);
Heiko Carstensb0c632d2008-03-25 18:47:20 +0100351}
352
Christian Borntraeger78f26132015-07-22 15:50:58 +0200353void kvm_arch_exit(void)
354{
355 debug_unregister(kvm_s390_dbf);
356}
357
Heiko Carstensb0c632d2008-03-25 18:47:20 +0100358/* Section: device related */
359long kvm_arch_dev_ioctl(struct file *filp,
360 unsigned int ioctl, unsigned long arg)
361{
362 if (ioctl == KVM_S390_ENABLE_SIE)
363 return s390_enable_sie();
364 return -EINVAL;
365}
366
Alexander Graf784aa3d2014-07-14 18:27:35 +0200367int kvm_vm_ioctl_check_extension(struct kvm *kvm, long ext)
Heiko Carstensb0c632d2008-03-25 18:47:20 +0100368{
Carsten Otted7b0b5e2009-11-19 14:21:16 +0100369 int r;
370
Carsten Otte2bd0ac42008-07-25 15:49:13 +0200371 switch (ext) {
Carsten Otted7b0b5e2009-11-19 14:21:16 +0100372 case KVM_CAP_S390_PSW:
Christian Borntraegerb6cf8782011-09-20 17:07:29 +0200373 case KVM_CAP_S390_GMAP:
Christian Borntraeger52e16b12011-11-17 11:00:44 +0100374 case KVM_CAP_SYNC_MMU:
Carsten Otte1efd0f52012-01-04 10:25:29 +0100375#ifdef CONFIG_KVM_S390_UCONTROL
376 case KVM_CAP_S390_UCONTROL:
377#endif
Dominik Dingel3c038e62013-10-07 17:11:48 +0200378 case KVM_CAP_ASYNC_PF:
Christian Borntraeger60b413c2012-01-11 11:20:31 +0100379 case KVM_CAP_SYNC_REGS:
Carsten Otte14eebd92012-05-15 14:15:26 +0200380 case KVM_CAP_ONE_REG:
Cornelia Huckd6712df2012-12-20 15:32:11 +0100381 case KVM_CAP_ENABLE_CAP:
Cornelia Huckfa6b7fe2012-12-20 15:32:12 +0100382 case KVM_CAP_S390_CSS_SUPPORT:
Cornelia Huck10ccaa12013-02-28 12:33:21 +0100383 case KVM_CAP_IOEVENTFD:
Jens Freimannc05c4182013-10-07 16:13:45 +0200384 case KVM_CAP_DEVICE_CTRL:
Cornelia Huckd938dc52013-10-23 18:26:34 +0200385 case KVM_CAP_ENABLE_CAP_VM:
Cornelia Huck78599d92014-07-15 09:54:39 +0200386 case KVM_CAP_S390_IRQCHIP:
Dominik Dingelf2061652014-04-09 13:13:00 +0200387 case KVM_CAP_VM_ATTRIBUTES:
David Hildenbrand6352e4d2014-04-10 17:35:00 +0200388 case KVM_CAP_MP_STATE:
Paolo Bonzini460df4c2017-02-08 11:50:15 +0100389 case KVM_CAP_IMMEDIATE_EXIT:
Jens Freimann47b43c52014-11-11 20:57:06 +0100390 case KVM_CAP_S390_INJECT_IRQ:
David Hildenbrand2444b352014-10-09 14:10:13 +0200391 case KVM_CAP_S390_USER_SIGP:
Ekaterina Tumanovae44fc8c2015-01-30 16:55:56 +0100392 case KVM_CAP_S390_USER_STSI:
Jason J. Herne30ee2a92014-09-23 09:23:01 -0400393 case KVM_CAP_S390_SKEYS:
Jens Freimann816c7662014-11-24 17:13:46 +0100394 case KVM_CAP_S390_IRQ_STATE:
David Hildenbrand6502a342016-06-21 14:19:51 +0200395 case KVM_CAP_S390_USER_INSTR0:
Claudio Imbrenda4036e382016-08-04 17:58:47 +0200396 case KVM_CAP_S390_CMMA_MIGRATION:
Yi Min Zhao47a46932017-03-10 09:29:38 +0100397 case KVM_CAP_S390_AIS:
Carsten Otted7b0b5e2009-11-19 14:21:16 +0100398 r = 1;
399 break;
Thomas Huth41408c282015-02-06 15:01:21 +0100400 case KVM_CAP_S390_MEM_OP:
401 r = MEM_OP_MAX_SIZE;
402 break;
Christian Borntraegere726b1b2012-05-02 10:50:38 +0200403 case KVM_CAP_NR_VCPUS:
404 case KVM_CAP_MAX_VCPUS:
David Hildenbrand76a6dd72015-11-24 13:33:49 +0100405 r = KVM_S390_BSCA_CPU_SLOTS;
David Hildenbranda6940672016-08-08 22:39:32 +0200406 if (!kvm_s390_use_sca_entries())
407 r = KVM_MAX_VCPUS;
408 else if (sclp.has_esca && sclp.has_64bscao)
David Hildenbrand76a6dd72015-11-24 13:33:49 +0100409 r = KVM_S390_ESCA_CPU_SLOTS;
Christian Borntraegere726b1b2012-05-02 10:50:38 +0200410 break;
Nick Wange1e2e602013-03-25 17:22:58 +0100411 case KVM_CAP_NR_MEMSLOTS:
412 r = KVM_USER_MEM_SLOTS;
413 break;
Christian Borntraeger1526bf92012-05-15 14:15:25 +0200414 case KVM_CAP_S390_COW:
Martin Schwidefskyabf09be2012-11-07 13:17:37 +0100415 r = MACHINE_HAS_ESOP;
Christian Borntraeger1526bf92012-05-15 14:15:25 +0200416 break;
Eric Farman68c55752014-06-09 10:57:26 -0400417 case KVM_CAP_S390_VECTOR_REGISTERS:
418 r = MACHINE_HAS_VX;
419 break;
Fan Zhangc6e5f162016-01-07 18:24:29 +0800420 case KVM_CAP_S390_RI:
421 r = test_facility(64);
422 break;
Fan Zhang4e0b1ab2016-11-29 07:17:55 +0100423 case KVM_CAP_S390_GS:
424 r = test_facility(133);
425 break;
Carsten Otte2bd0ac42008-07-25 15:49:13 +0200426 default:
Carsten Otted7b0b5e2009-11-19 14:21:16 +0100427 r = 0;
Carsten Otte2bd0ac42008-07-25 15:49:13 +0200428 }
Carsten Otted7b0b5e2009-11-19 14:21:16 +0100429 return r;
Heiko Carstensb0c632d2008-03-25 18:47:20 +0100430}
431
Jason J. Herne15f36eb2012-08-02 10:10:17 -0400432static void kvm_s390_sync_dirty_log(struct kvm *kvm,
433 struct kvm_memory_slot *memslot)
434{
435 gfn_t cur_gfn, last_gfn;
436 unsigned long address;
437 struct gmap *gmap = kvm->arch.gmap;
438
Jason J. Herne15f36eb2012-08-02 10:10:17 -0400439 /* Loop over all guest pages */
440 last_gfn = memslot->base_gfn + memslot->npages;
441 for (cur_gfn = memslot->base_gfn; cur_gfn <= last_gfn; cur_gfn++) {
442 address = gfn_to_hva_memslot(memslot, cur_gfn);
443
Martin Schwidefsky1e133ab2016-03-08 11:49:57 +0100444 if (test_and_clear_guest_dirty(gmap->mm, address))
Jason J. Herne15f36eb2012-08-02 10:10:17 -0400445 mark_page_dirty(kvm, cur_gfn);
Christian Borntraeger1763f8d2016-02-03 11:12:34 +0100446 if (fatal_signal_pending(current))
447 return;
Christian Borntraeger70c88a02016-02-02 15:15:56 +0100448 cond_resched();
Jason J. Herne15f36eb2012-08-02 10:10:17 -0400449 }
Jason J. Herne15f36eb2012-08-02 10:10:17 -0400450}
451
Heiko Carstensb0c632d2008-03-25 18:47:20 +0100452/* Section: vm related */
Eugene (jno) Dvurechenskia6e2f682015-04-21 15:31:59 +0200453static void sca_del_vcpu(struct kvm_vcpu *vcpu);
454
Heiko Carstensb0c632d2008-03-25 18:47:20 +0100455/*
456 * Get (and clear) the dirty memory log for a memory slot.
457 */
458int kvm_vm_ioctl_get_dirty_log(struct kvm *kvm,
459 struct kvm_dirty_log *log)
460{
Jason J. Herne15f36eb2012-08-02 10:10:17 -0400461 int r;
462 unsigned long n;
Paolo Bonzini9f6b8022015-05-17 16:20:07 +0200463 struct kvm_memslots *slots;
Jason J. Herne15f36eb2012-08-02 10:10:17 -0400464 struct kvm_memory_slot *memslot;
465 int is_dirty = 0;
466
Janosch Franke1e8a962017-02-02 16:39:31 +0100467 if (kvm_is_ucontrol(kvm))
468 return -EINVAL;
469
Jason J. Herne15f36eb2012-08-02 10:10:17 -0400470 mutex_lock(&kvm->slots_lock);
471
472 r = -EINVAL;
473 if (log->slot >= KVM_USER_MEM_SLOTS)
474 goto out;
475
Paolo Bonzini9f6b8022015-05-17 16:20:07 +0200476 slots = kvm_memslots(kvm);
477 memslot = id_to_memslot(slots, log->slot);
Jason J. Herne15f36eb2012-08-02 10:10:17 -0400478 r = -ENOENT;
479 if (!memslot->dirty_bitmap)
480 goto out;
481
482 kvm_s390_sync_dirty_log(kvm, memslot);
483 r = kvm_get_dirty_log(kvm, log, &is_dirty);
484 if (r)
485 goto out;
486
487 /* Clear the dirty log */
488 if (is_dirty) {
489 n = kvm_dirty_bitmap_bytes(memslot);
490 memset(memslot->dirty_bitmap, 0, n);
491 }
492 r = 0;
493out:
494 mutex_unlock(&kvm->slots_lock);
495 return r;
Heiko Carstensb0c632d2008-03-25 18:47:20 +0100496}
497
David Hildenbrand6502a342016-06-21 14:19:51 +0200498static void icpt_operexc_on_all_vcpus(struct kvm *kvm)
499{
500 unsigned int i;
501 struct kvm_vcpu *vcpu;
502
503 kvm_for_each_vcpu(i, vcpu, kvm) {
504 kvm_s390_sync_request(KVM_REQ_ICPT_OPEREXC, vcpu);
505 }
506}
507
Cornelia Huckd938dc52013-10-23 18:26:34 +0200508static int kvm_vm_ioctl_enable_cap(struct kvm *kvm, struct kvm_enable_cap *cap)
509{
510 int r;
511
512 if (cap->flags)
513 return -EINVAL;
514
515 switch (cap->cap) {
Cornelia Huck84223592013-07-15 13:36:01 +0200516 case KVM_CAP_S390_IRQCHIP:
Christian Borntraegerc92ea7b2015-07-22 15:52:10 +0200517 VM_EVENT(kvm, 3, "%s", "ENABLE: CAP_S390_IRQCHIP");
Cornelia Huck84223592013-07-15 13:36:01 +0200518 kvm->arch.use_irqchip = 1;
519 r = 0;
520 break;
David Hildenbrand2444b352014-10-09 14:10:13 +0200521 case KVM_CAP_S390_USER_SIGP:
Christian Borntraegerc92ea7b2015-07-22 15:52:10 +0200522 VM_EVENT(kvm, 3, "%s", "ENABLE: CAP_S390_USER_SIGP");
David Hildenbrand2444b352014-10-09 14:10:13 +0200523 kvm->arch.user_sigp = 1;
524 r = 0;
525 break;
Eric Farman68c55752014-06-09 10:57:26 -0400526 case KVM_CAP_S390_VECTOR_REGISTERS:
David Hildenbrand5967c172015-11-06 12:08:48 +0100527 mutex_lock(&kvm->lock);
Paolo Bonzinia03825b2016-06-13 14:50:04 +0200528 if (kvm->created_vcpus) {
David Hildenbrand5967c172015-11-06 12:08:48 +0100529 r = -EBUSY;
530 } else if (MACHINE_HAS_VX) {
David Hildenbrandc54f0d62015-12-02 08:53:52 +0100531 set_kvm_facility(kvm->arch.model.fac_mask, 129);
532 set_kvm_facility(kvm->arch.model.fac_list, 129);
Guenther Hutzl2f87d942016-06-03 14:37:17 +0200533 if (test_facility(134)) {
534 set_kvm_facility(kvm->arch.model.fac_mask, 134);
535 set_kvm_facility(kvm->arch.model.fac_list, 134);
536 }
Maxim Samoylov53743aa2016-02-10 10:31:23 +0100537 if (test_facility(135)) {
538 set_kvm_facility(kvm->arch.model.fac_mask, 135);
539 set_kvm_facility(kvm->arch.model.fac_list, 135);
540 }
Michael Mueller18280d82015-03-16 16:05:41 +0100541 r = 0;
542 } else
543 r = -EINVAL;
David Hildenbrand5967c172015-11-06 12:08:48 +0100544 mutex_unlock(&kvm->lock);
Christian Borntraegerc92ea7b2015-07-22 15:52:10 +0200545 VM_EVENT(kvm, 3, "ENABLE: CAP_S390_VECTOR_REGISTERS %s",
546 r ? "(not available)" : "(success)");
Eric Farman68c55752014-06-09 10:57:26 -0400547 break;
Fan Zhangc6e5f162016-01-07 18:24:29 +0800548 case KVM_CAP_S390_RI:
549 r = -EINVAL;
550 mutex_lock(&kvm->lock);
Paolo Bonzinia03825b2016-06-13 14:50:04 +0200551 if (kvm->created_vcpus) {
Fan Zhangc6e5f162016-01-07 18:24:29 +0800552 r = -EBUSY;
553 } else if (test_facility(64)) {
David Hildenbrandc54f0d62015-12-02 08:53:52 +0100554 set_kvm_facility(kvm->arch.model.fac_mask, 64);
555 set_kvm_facility(kvm->arch.model.fac_list, 64);
Fan Zhangc6e5f162016-01-07 18:24:29 +0800556 r = 0;
557 }
558 mutex_unlock(&kvm->lock);
559 VM_EVENT(kvm, 3, "ENABLE: CAP_S390_RI %s",
560 r ? "(not available)" : "(success)");
561 break;
Yi Min Zhao47a46932017-03-10 09:29:38 +0100562 case KVM_CAP_S390_AIS:
563 mutex_lock(&kvm->lock);
564 if (kvm->created_vcpus) {
565 r = -EBUSY;
566 } else {
567 set_kvm_facility(kvm->arch.model.fac_mask, 72);
568 set_kvm_facility(kvm->arch.model.fac_list, 72);
Yi Min Zhao47a46932017-03-10 09:29:38 +0100569 r = 0;
570 }
571 mutex_unlock(&kvm->lock);
572 VM_EVENT(kvm, 3, "ENABLE: AIS %s",
573 r ? "(not available)" : "(success)");
574 break;
Fan Zhang4e0b1ab2016-11-29 07:17:55 +0100575 case KVM_CAP_S390_GS:
576 r = -EINVAL;
577 mutex_lock(&kvm->lock);
578 if (atomic_read(&kvm->online_vcpus)) {
579 r = -EBUSY;
580 } else if (test_facility(133)) {
581 set_kvm_facility(kvm->arch.model.fac_mask, 133);
582 set_kvm_facility(kvm->arch.model.fac_list, 133);
583 r = 0;
584 }
585 mutex_unlock(&kvm->lock);
586 VM_EVENT(kvm, 3, "ENABLE: CAP_S390_GS %s",
587 r ? "(not available)" : "(success)");
588 break;
Ekaterina Tumanovae44fc8c2015-01-30 16:55:56 +0100589 case KVM_CAP_S390_USER_STSI:
Christian Borntraegerc92ea7b2015-07-22 15:52:10 +0200590 VM_EVENT(kvm, 3, "%s", "ENABLE: CAP_S390_USER_STSI");
Ekaterina Tumanovae44fc8c2015-01-30 16:55:56 +0100591 kvm->arch.user_stsi = 1;
592 r = 0;
593 break;
David Hildenbrand6502a342016-06-21 14:19:51 +0200594 case KVM_CAP_S390_USER_INSTR0:
595 VM_EVENT(kvm, 3, "%s", "ENABLE: CAP_S390_USER_INSTR0");
596 kvm->arch.user_instr0 = 1;
597 icpt_operexc_on_all_vcpus(kvm);
598 r = 0;
599 break;
Cornelia Huckd938dc52013-10-23 18:26:34 +0200600 default:
601 r = -EINVAL;
602 break;
603 }
604 return r;
605}
606
Dominik Dingel8c0a7ce2014-10-31 14:10:41 +0100607static int kvm_s390_get_mem_control(struct kvm *kvm, struct kvm_device_attr *attr)
608{
609 int ret;
610
611 switch (attr->attr) {
612 case KVM_S390_VM_MEM_LIMIT_SIZE:
613 ret = 0;
Christian Borntraegerc92ea7b2015-07-22 15:52:10 +0200614 VM_EVENT(kvm, 3, "QUERY: max guest memory: %lu bytes",
Dominik Dingela3a92c32014-12-01 17:24:42 +0100615 kvm->arch.mem_limit);
616 if (put_user(kvm->arch.mem_limit, (u64 __user *)attr->addr))
Dominik Dingel8c0a7ce2014-10-31 14:10:41 +0100617 ret = -EFAULT;
618 break;
619 default:
620 ret = -ENXIO;
621 break;
622 }
623 return ret;
624}
625
626static int kvm_s390_set_mem_control(struct kvm *kvm, struct kvm_device_attr *attr)
Dominik Dingel4f718ea2014-04-09 13:13:00 +0200627{
628 int ret;
629 unsigned int idx;
630 switch (attr->attr) {
631 case KVM_S390_VM_MEM_ENABLE_CMMA:
David Hildenbrandf9cbd9b2016-03-03 09:48:47 +0100632 ret = -ENXIO;
David Hildenbrandc24cc9c2015-11-24 13:53:04 +0100633 if (!sclp.has_cmma)
Dominik Dingele6db1d62015-05-07 15:41:57 +0200634 break;
635
Dominik Dingel4f718ea2014-04-09 13:13:00 +0200636 ret = -EBUSY;
Christian Borntraegerc92ea7b2015-07-22 15:52:10 +0200637 VM_EVENT(kvm, 3, "%s", "ENABLE: CMMA support");
Dominik Dingel4f718ea2014-04-09 13:13:00 +0200638 mutex_lock(&kvm->lock);
Paolo Bonzinia03825b2016-06-13 14:50:04 +0200639 if (!kvm->created_vcpus) {
Dominik Dingel4f718ea2014-04-09 13:13:00 +0200640 kvm->arch.use_cmma = 1;
641 ret = 0;
642 }
643 mutex_unlock(&kvm->lock);
644 break;
645 case KVM_S390_VM_MEM_CLR_CMMA:
David Hildenbrandf9cbd9b2016-03-03 09:48:47 +0100646 ret = -ENXIO;
647 if (!sclp.has_cmma)
648 break;
Dominik Dingelc3489152015-06-18 13:17:11 +0200649 ret = -EINVAL;
650 if (!kvm->arch.use_cmma)
651 break;
652
Christian Borntraegerc92ea7b2015-07-22 15:52:10 +0200653 VM_EVENT(kvm, 3, "%s", "RESET: CMMA states");
Dominik Dingel4f718ea2014-04-09 13:13:00 +0200654 mutex_lock(&kvm->lock);
655 idx = srcu_read_lock(&kvm->srcu);
Dominik Dingela13cff32014-10-23 12:07:14 +0200656 s390_reset_cmma(kvm->arch.gmap->mm);
Dominik Dingel4f718ea2014-04-09 13:13:00 +0200657 srcu_read_unlock(&kvm->srcu, idx);
658 mutex_unlock(&kvm->lock);
659 ret = 0;
660 break;
Dominik Dingel8c0a7ce2014-10-31 14:10:41 +0100661 case KVM_S390_VM_MEM_LIMIT_SIZE: {
662 unsigned long new_limit;
663
664 if (kvm_is_ucontrol(kvm))
665 return -EINVAL;
666
667 if (get_user(new_limit, (u64 __user *)attr->addr))
668 return -EFAULT;
669
Dominik Dingela3a92c32014-12-01 17:24:42 +0100670 if (kvm->arch.mem_limit != KVM_S390_NO_MEM_LIMIT &&
671 new_limit > kvm->arch.mem_limit)
Dominik Dingel8c0a7ce2014-10-31 14:10:41 +0100672 return -E2BIG;
673
Dominik Dingela3a92c32014-12-01 17:24:42 +0100674 if (!new_limit)
675 return -EINVAL;
676
Martin Schwidefsky6ea427b2016-03-08 11:55:04 +0100677 /* gmap_create takes last usable address */
Dominik Dingela3a92c32014-12-01 17:24:42 +0100678 if (new_limit != KVM_S390_NO_MEM_LIMIT)
679 new_limit -= 1;
680
Dominik Dingel8c0a7ce2014-10-31 14:10:41 +0100681 ret = -EBUSY;
682 mutex_lock(&kvm->lock);
Paolo Bonzinia03825b2016-06-13 14:50:04 +0200683 if (!kvm->created_vcpus) {
Martin Schwidefsky6ea427b2016-03-08 11:55:04 +0100684 /* gmap_create will round the limit up */
685 struct gmap *new = gmap_create(current->mm, new_limit);
Dominik Dingel8c0a7ce2014-10-31 14:10:41 +0100686
687 if (!new) {
688 ret = -ENOMEM;
689 } else {
Martin Schwidefsky6ea427b2016-03-08 11:55:04 +0100690 gmap_remove(kvm->arch.gmap);
Dominik Dingel8c0a7ce2014-10-31 14:10:41 +0100691 new->private = kvm;
692 kvm->arch.gmap = new;
693 ret = 0;
694 }
695 }
696 mutex_unlock(&kvm->lock);
Dominik Dingela3a92c32014-12-01 17:24:42 +0100697 VM_EVENT(kvm, 3, "SET: max guest address: %lu", new_limit);
698 VM_EVENT(kvm, 3, "New guest asce: 0x%pK",
699 (void *) kvm->arch.gmap->asce);
Dominik Dingel8c0a7ce2014-10-31 14:10:41 +0100700 break;
701 }
Dominik Dingel4f718ea2014-04-09 13:13:00 +0200702 default:
703 ret = -ENXIO;
704 break;
705 }
706 return ret;
707}
708
Tony Krowiaka374e892014-09-03 10:13:53 +0200709static void kvm_s390_vcpu_crypto_setup(struct kvm_vcpu *vcpu);
710
711static int kvm_s390_vm_set_crypto(struct kvm *kvm, struct kvm_device_attr *attr)
712{
713 struct kvm_vcpu *vcpu;
714 int i;
715
Michael Mueller9d8d5782015-02-02 15:42:51 +0100716 if (!test_kvm_facility(kvm, 76))
Tony Krowiaka374e892014-09-03 10:13:53 +0200717 return -EINVAL;
718
719 mutex_lock(&kvm->lock);
720 switch (attr->attr) {
721 case KVM_S390_VM_CRYPTO_ENABLE_AES_KW:
722 get_random_bytes(
723 kvm->arch.crypto.crycb->aes_wrapping_key_mask,
724 sizeof(kvm->arch.crypto.crycb->aes_wrapping_key_mask));
725 kvm->arch.crypto.aes_kw = 1;
Christian Borntraegerc92ea7b2015-07-22 15:52:10 +0200726 VM_EVENT(kvm, 3, "%s", "ENABLE: AES keywrapping support");
Tony Krowiaka374e892014-09-03 10:13:53 +0200727 break;
728 case KVM_S390_VM_CRYPTO_ENABLE_DEA_KW:
729 get_random_bytes(
730 kvm->arch.crypto.crycb->dea_wrapping_key_mask,
731 sizeof(kvm->arch.crypto.crycb->dea_wrapping_key_mask));
732 kvm->arch.crypto.dea_kw = 1;
Christian Borntraegerc92ea7b2015-07-22 15:52:10 +0200733 VM_EVENT(kvm, 3, "%s", "ENABLE: DEA keywrapping support");
Tony Krowiaka374e892014-09-03 10:13:53 +0200734 break;
735 case KVM_S390_VM_CRYPTO_DISABLE_AES_KW:
736 kvm->arch.crypto.aes_kw = 0;
737 memset(kvm->arch.crypto.crycb->aes_wrapping_key_mask, 0,
738 sizeof(kvm->arch.crypto.crycb->aes_wrapping_key_mask));
Christian Borntraegerc92ea7b2015-07-22 15:52:10 +0200739 VM_EVENT(kvm, 3, "%s", "DISABLE: AES keywrapping support");
Tony Krowiaka374e892014-09-03 10:13:53 +0200740 break;
741 case KVM_S390_VM_CRYPTO_DISABLE_DEA_KW:
742 kvm->arch.crypto.dea_kw = 0;
743 memset(kvm->arch.crypto.crycb->dea_wrapping_key_mask, 0,
744 sizeof(kvm->arch.crypto.crycb->dea_wrapping_key_mask));
Christian Borntraegerc92ea7b2015-07-22 15:52:10 +0200745 VM_EVENT(kvm, 3, "%s", "DISABLE: DEA keywrapping support");
Tony Krowiaka374e892014-09-03 10:13:53 +0200746 break;
747 default:
748 mutex_unlock(&kvm->lock);
749 return -ENXIO;
750 }
751
752 kvm_for_each_vcpu(i, vcpu, kvm) {
753 kvm_s390_vcpu_crypto_setup(vcpu);
754 exit_sie(vcpu);
755 }
756 mutex_unlock(&kvm->lock);
757 return 0;
758}
759
Claudio Imbrenda190df4a2016-08-04 17:54:42 +0200760static void kvm_s390_sync_request_broadcast(struct kvm *kvm, int req)
761{
762 int cx;
763 struct kvm_vcpu *vcpu;
764
765 kvm_for_each_vcpu(cx, vcpu, kvm)
766 kvm_s390_sync_request(req, vcpu);
767}
768
769/*
770 * Must be called with kvm->srcu held to avoid races on memslots, and with
771 * kvm->lock to avoid races with ourselves and kvm_s390_vm_stop_migration.
772 */
773static int kvm_s390_vm_start_migration(struct kvm *kvm)
774{
775 struct kvm_s390_migration_state *mgs;
776 struct kvm_memory_slot *ms;
777 /* should be the only one */
778 struct kvm_memslots *slots;
779 unsigned long ram_pages;
780 int slotnr;
781
782 /* migration mode already enabled */
783 if (kvm->arch.migration_state)
784 return 0;
785
786 slots = kvm_memslots(kvm);
787 if (!slots || !slots->used_slots)
788 return -EINVAL;
789
790 mgs = kzalloc(sizeof(*mgs), GFP_KERNEL);
791 if (!mgs)
792 return -ENOMEM;
793 kvm->arch.migration_state = mgs;
794
795 if (kvm->arch.use_cmma) {
796 /*
797 * Get the last slot. They should be sorted by base_gfn, so the
798 * last slot is also the one at the end of the address space.
799 * We have verified above that at least one slot is present.
800 */
801 ms = slots->memslots + slots->used_slots - 1;
802 /* round up so we only use full longs */
803 ram_pages = roundup(ms->base_gfn + ms->npages, BITS_PER_LONG);
804 /* allocate enough bytes to store all the bits */
805 mgs->pgste_bitmap = vmalloc(ram_pages / 8);
806 if (!mgs->pgste_bitmap) {
807 kfree(mgs);
808 kvm->arch.migration_state = NULL;
809 return -ENOMEM;
810 }
811
812 mgs->bitmap_size = ram_pages;
813 atomic64_set(&mgs->dirty_pages, ram_pages);
814 /* mark all the pages in active slots as dirty */
815 for (slotnr = 0; slotnr < slots->used_slots; slotnr++) {
816 ms = slots->memslots + slotnr;
817 bitmap_set(mgs->pgste_bitmap, ms->base_gfn, ms->npages);
818 }
819
820 kvm_s390_sync_request_broadcast(kvm, KVM_REQ_START_MIGRATION);
821 }
822 return 0;
823}
824
825/*
826 * Must be called with kvm->lock to avoid races with ourselves and
827 * kvm_s390_vm_start_migration.
828 */
829static int kvm_s390_vm_stop_migration(struct kvm *kvm)
830{
831 struct kvm_s390_migration_state *mgs;
832
833 /* migration mode already disabled */
834 if (!kvm->arch.migration_state)
835 return 0;
836 mgs = kvm->arch.migration_state;
837 kvm->arch.migration_state = NULL;
838
839 if (kvm->arch.use_cmma) {
840 kvm_s390_sync_request_broadcast(kvm, KVM_REQ_STOP_MIGRATION);
841 vfree(mgs->pgste_bitmap);
842 }
843 kfree(mgs);
844 return 0;
845}
846
847static int kvm_s390_vm_set_migration(struct kvm *kvm,
848 struct kvm_device_attr *attr)
849{
850 int idx, res = -ENXIO;
851
852 mutex_lock(&kvm->lock);
853 switch (attr->attr) {
854 case KVM_S390_VM_MIGRATION_START:
855 idx = srcu_read_lock(&kvm->srcu);
856 res = kvm_s390_vm_start_migration(kvm);
857 srcu_read_unlock(&kvm->srcu, idx);
858 break;
859 case KVM_S390_VM_MIGRATION_STOP:
860 res = kvm_s390_vm_stop_migration(kvm);
861 break;
862 default:
863 break;
864 }
865 mutex_unlock(&kvm->lock);
866
867 return res;
868}
869
870static int kvm_s390_vm_get_migration(struct kvm *kvm,
871 struct kvm_device_attr *attr)
872{
873 u64 mig = (kvm->arch.migration_state != NULL);
874
875 if (attr->attr != KVM_S390_VM_MIGRATION_STATUS)
876 return -ENXIO;
877
878 if (copy_to_user((void __user *)attr->addr, &mig, sizeof(mig)))
879 return -EFAULT;
880 return 0;
881}
882
Collin L. Walling8fa16962016-07-26 15:29:44 -0400883static int kvm_s390_set_tod_ext(struct kvm *kvm, struct kvm_device_attr *attr)
884{
885 struct kvm_s390_vm_tod_clock gtod;
886
887 if (copy_from_user(&gtod, (void __user *)attr->addr, sizeof(gtod)))
888 return -EFAULT;
889
890 if (test_kvm_facility(kvm, 139))
891 kvm_s390_set_tod_clock_ext(kvm, &gtod);
892 else if (gtod.epoch_idx == 0)
893 kvm_s390_set_tod_clock(kvm, gtod.tod);
894 else
895 return -EINVAL;
896
897 VM_EVENT(kvm, 3, "SET: TOD extension: 0x%x, TOD base: 0x%llx",
898 gtod.epoch_idx, gtod.tod);
899
900 return 0;
901}
902
Jason J. Herne72f25022014-11-25 09:46:02 -0500903static int kvm_s390_set_tod_high(struct kvm *kvm, struct kvm_device_attr *attr)
904{
905 u8 gtod_high;
906
907 if (copy_from_user(&gtod_high, (void __user *)attr->addr,
908 sizeof(gtod_high)))
909 return -EFAULT;
910
911 if (gtod_high != 0)
912 return -EINVAL;
Christian Borntraeger58c383c2015-10-12 13:27:29 +0200913 VM_EVENT(kvm, 3, "SET: TOD extension: 0x%x", gtod_high);
Jason J. Herne72f25022014-11-25 09:46:02 -0500914
915 return 0;
916}
917
918static int kvm_s390_set_tod_low(struct kvm *kvm, struct kvm_device_attr *attr)
919{
David Hildenbrand5a3d8832015-09-29 16:27:24 +0200920 u64 gtod;
Jason J. Herne72f25022014-11-25 09:46:02 -0500921
922 if (copy_from_user(&gtod, (void __user *)attr->addr, sizeof(gtod)))
923 return -EFAULT;
924
David Hildenbrand25ed1672015-05-12 09:49:14 +0200925 kvm_s390_set_tod_clock(kvm, gtod);
Christian Borntraeger58c383c2015-10-12 13:27:29 +0200926 VM_EVENT(kvm, 3, "SET: TOD base: 0x%llx", gtod);
Jason J. Herne72f25022014-11-25 09:46:02 -0500927 return 0;
928}
929
930static int kvm_s390_set_tod(struct kvm *kvm, struct kvm_device_attr *attr)
931{
932 int ret;
933
934 if (attr->flags)
935 return -EINVAL;
936
937 switch (attr->attr) {
Collin L. Walling8fa16962016-07-26 15:29:44 -0400938 case KVM_S390_VM_TOD_EXT:
939 ret = kvm_s390_set_tod_ext(kvm, attr);
940 break;
Jason J. Herne72f25022014-11-25 09:46:02 -0500941 case KVM_S390_VM_TOD_HIGH:
942 ret = kvm_s390_set_tod_high(kvm, attr);
943 break;
944 case KVM_S390_VM_TOD_LOW:
945 ret = kvm_s390_set_tod_low(kvm, attr);
946 break;
947 default:
948 ret = -ENXIO;
949 break;
950 }
951 return ret;
952}
953
Collin L. Walling8fa16962016-07-26 15:29:44 -0400954static void kvm_s390_get_tod_clock_ext(struct kvm *kvm,
955 struct kvm_s390_vm_tod_clock *gtod)
956{
957 struct kvm_s390_tod_clock_ext htod;
958
959 preempt_disable();
960
961 get_tod_clock_ext((char *)&htod);
962
963 gtod->tod = htod.tod + kvm->arch.epoch;
964 gtod->epoch_idx = htod.epoch_idx + kvm->arch.epdx;
965
966 if (gtod->tod < htod.tod)
967 gtod->epoch_idx += 1;
968
969 preempt_enable();
970}
971
972static int kvm_s390_get_tod_ext(struct kvm *kvm, struct kvm_device_attr *attr)
973{
974 struct kvm_s390_vm_tod_clock gtod;
975
976 memset(&gtod, 0, sizeof(gtod));
977
978 if (test_kvm_facility(kvm, 139))
979 kvm_s390_get_tod_clock_ext(kvm, &gtod);
980 else
981 gtod.tod = kvm_s390_get_tod_clock_fast(kvm);
982
983 if (copy_to_user((void __user *)attr->addr, &gtod, sizeof(gtod)))
984 return -EFAULT;
985
986 VM_EVENT(kvm, 3, "QUERY: TOD extension: 0x%x, TOD base: 0x%llx",
987 gtod.epoch_idx, gtod.tod);
988 return 0;
989}
990
Jason J. Herne72f25022014-11-25 09:46:02 -0500991static int kvm_s390_get_tod_high(struct kvm *kvm, struct kvm_device_attr *attr)
992{
993 u8 gtod_high = 0;
994
995 if (copy_to_user((void __user *)attr->addr, &gtod_high,
996 sizeof(gtod_high)))
997 return -EFAULT;
Christian Borntraeger58c383c2015-10-12 13:27:29 +0200998 VM_EVENT(kvm, 3, "QUERY: TOD extension: 0x%x", gtod_high);
Jason J. Herne72f25022014-11-25 09:46:02 -0500999
1000 return 0;
1001}
1002
1003static int kvm_s390_get_tod_low(struct kvm *kvm, struct kvm_device_attr *attr)
1004{
David Hildenbrand5a3d8832015-09-29 16:27:24 +02001005 u64 gtod;
Jason J. Herne72f25022014-11-25 09:46:02 -05001006
David Hildenbrand60417fc2015-09-29 16:20:36 +02001007 gtod = kvm_s390_get_tod_clock_fast(kvm);
Jason J. Herne72f25022014-11-25 09:46:02 -05001008 if (copy_to_user((void __user *)attr->addr, &gtod, sizeof(gtod)))
1009 return -EFAULT;
Christian Borntraeger58c383c2015-10-12 13:27:29 +02001010 VM_EVENT(kvm, 3, "QUERY: TOD base: 0x%llx", gtod);
Jason J. Herne72f25022014-11-25 09:46:02 -05001011
1012 return 0;
1013}
1014
1015static int kvm_s390_get_tod(struct kvm *kvm, struct kvm_device_attr *attr)
1016{
1017 int ret;
1018
1019 if (attr->flags)
1020 return -EINVAL;
1021
1022 switch (attr->attr) {
Collin L. Walling8fa16962016-07-26 15:29:44 -04001023 case KVM_S390_VM_TOD_EXT:
1024 ret = kvm_s390_get_tod_ext(kvm, attr);
1025 break;
Jason J. Herne72f25022014-11-25 09:46:02 -05001026 case KVM_S390_VM_TOD_HIGH:
1027 ret = kvm_s390_get_tod_high(kvm, attr);
1028 break;
1029 case KVM_S390_VM_TOD_LOW:
1030 ret = kvm_s390_get_tod_low(kvm, attr);
1031 break;
1032 default:
1033 ret = -ENXIO;
1034 break;
1035 }
1036 return ret;
1037}
1038
Michael Mueller658b6ed2015-02-02 15:49:35 +01001039static int kvm_s390_set_processor(struct kvm *kvm, struct kvm_device_attr *attr)
1040{
1041 struct kvm_s390_vm_cpu_processor *proc;
David Hildenbrand053dd232016-04-04 13:59:42 +02001042 u16 lowest_ibc, unblocked_ibc;
Michael Mueller658b6ed2015-02-02 15:49:35 +01001043 int ret = 0;
1044
1045 mutex_lock(&kvm->lock);
Paolo Bonzinia03825b2016-06-13 14:50:04 +02001046 if (kvm->created_vcpus) {
Michael Mueller658b6ed2015-02-02 15:49:35 +01001047 ret = -EBUSY;
1048 goto out;
1049 }
1050 proc = kzalloc(sizeof(*proc), GFP_KERNEL);
1051 if (!proc) {
1052 ret = -ENOMEM;
1053 goto out;
1054 }
1055 if (!copy_from_user(proc, (void __user *)attr->addr,
1056 sizeof(*proc))) {
David Hildenbrand9bb0ec02016-04-04 14:27:51 +02001057 kvm->arch.model.cpuid = proc->cpuid;
David Hildenbrand053dd232016-04-04 13:59:42 +02001058 lowest_ibc = sclp.ibc >> 16 & 0xfff;
1059 unblocked_ibc = sclp.ibc & 0xfff;
David Hildenbrand0487c442016-06-10 09:22:31 +02001060 if (lowest_ibc && proc->ibc) {
David Hildenbrand053dd232016-04-04 13:59:42 +02001061 if (proc->ibc > unblocked_ibc)
1062 kvm->arch.model.ibc = unblocked_ibc;
1063 else if (proc->ibc < lowest_ibc)
1064 kvm->arch.model.ibc = lowest_ibc;
1065 else
1066 kvm->arch.model.ibc = proc->ibc;
1067 }
David Hildenbrandc54f0d62015-12-02 08:53:52 +01001068 memcpy(kvm->arch.model.fac_list, proc->fac_list,
Michael Mueller658b6ed2015-02-02 15:49:35 +01001069 S390_ARCH_FAC_LIST_SIZE_BYTE);
Christian Borntraegera8c39dd2017-01-18 16:01:02 +01001070 VM_EVENT(kvm, 3, "SET: guest ibc: 0x%4.4x, guest cpuid: 0x%16.16llx",
1071 kvm->arch.model.ibc,
1072 kvm->arch.model.cpuid);
1073 VM_EVENT(kvm, 3, "SET: guest faclist: 0x%16.16llx.%16.16llx.%16.16llx",
1074 kvm->arch.model.fac_list[0],
1075 kvm->arch.model.fac_list[1],
1076 kvm->arch.model.fac_list[2]);
Michael Mueller658b6ed2015-02-02 15:49:35 +01001077 } else
1078 ret = -EFAULT;
1079 kfree(proc);
1080out:
1081 mutex_unlock(&kvm->lock);
1082 return ret;
1083}
1084
David Hildenbrand15c97052015-03-19 17:36:43 +01001085static int kvm_s390_set_processor_feat(struct kvm *kvm,
1086 struct kvm_device_attr *attr)
1087{
1088 struct kvm_s390_vm_cpu_feat data;
1089 int ret = -EBUSY;
1090
1091 if (copy_from_user(&data, (void __user *)attr->addr, sizeof(data)))
1092 return -EFAULT;
1093 if (!bitmap_subset((unsigned long *) data.feat,
1094 kvm_s390_available_cpu_feat,
1095 KVM_S390_VM_CPU_FEAT_NR_BITS))
1096 return -EINVAL;
1097
1098 mutex_lock(&kvm->lock);
1099 if (!atomic_read(&kvm->online_vcpus)) {
1100 bitmap_copy(kvm->arch.cpu_feat, (unsigned long *) data.feat,
1101 KVM_S390_VM_CPU_FEAT_NR_BITS);
1102 ret = 0;
1103 }
1104 mutex_unlock(&kvm->lock);
1105 return ret;
1106}
1107
David Hildenbrand0a763c72016-05-18 16:03:47 +02001108static int kvm_s390_set_processor_subfunc(struct kvm *kvm,
1109 struct kvm_device_attr *attr)
1110{
1111 /*
1112 * Once supported by kernel + hw, we have to store the subfunctions
1113 * in kvm->arch and remember that user space configured them.
1114 */
1115 return -ENXIO;
1116}
1117
Michael Mueller658b6ed2015-02-02 15:49:35 +01001118static int kvm_s390_set_cpu_model(struct kvm *kvm, struct kvm_device_attr *attr)
1119{
1120 int ret = -ENXIO;
1121
1122 switch (attr->attr) {
1123 case KVM_S390_VM_CPU_PROCESSOR:
1124 ret = kvm_s390_set_processor(kvm, attr);
1125 break;
David Hildenbrand15c97052015-03-19 17:36:43 +01001126 case KVM_S390_VM_CPU_PROCESSOR_FEAT:
1127 ret = kvm_s390_set_processor_feat(kvm, attr);
1128 break;
David Hildenbrand0a763c72016-05-18 16:03:47 +02001129 case KVM_S390_VM_CPU_PROCESSOR_SUBFUNC:
1130 ret = kvm_s390_set_processor_subfunc(kvm, attr);
1131 break;
Michael Mueller658b6ed2015-02-02 15:49:35 +01001132 }
1133 return ret;
1134}
1135
1136static int kvm_s390_get_processor(struct kvm *kvm, struct kvm_device_attr *attr)
1137{
1138 struct kvm_s390_vm_cpu_processor *proc;
1139 int ret = 0;
1140
1141 proc = kzalloc(sizeof(*proc), GFP_KERNEL);
1142 if (!proc) {
1143 ret = -ENOMEM;
1144 goto out;
1145 }
David Hildenbrand9bb0ec02016-04-04 14:27:51 +02001146 proc->cpuid = kvm->arch.model.cpuid;
Michael Mueller658b6ed2015-02-02 15:49:35 +01001147 proc->ibc = kvm->arch.model.ibc;
David Hildenbrandc54f0d62015-12-02 08:53:52 +01001148 memcpy(&proc->fac_list, kvm->arch.model.fac_list,
1149 S390_ARCH_FAC_LIST_SIZE_BYTE);
Christian Borntraegera8c39dd2017-01-18 16:01:02 +01001150 VM_EVENT(kvm, 3, "GET: guest ibc: 0x%4.4x, guest cpuid: 0x%16.16llx",
1151 kvm->arch.model.ibc,
1152 kvm->arch.model.cpuid);
1153 VM_EVENT(kvm, 3, "GET: guest faclist: 0x%16.16llx.%16.16llx.%16.16llx",
1154 kvm->arch.model.fac_list[0],
1155 kvm->arch.model.fac_list[1],
1156 kvm->arch.model.fac_list[2]);
Michael Mueller658b6ed2015-02-02 15:49:35 +01001157 if (copy_to_user((void __user *)attr->addr, proc, sizeof(*proc)))
1158 ret = -EFAULT;
1159 kfree(proc);
1160out:
1161 return ret;
1162}
1163
1164static int kvm_s390_get_machine(struct kvm *kvm, struct kvm_device_attr *attr)
1165{
1166 struct kvm_s390_vm_cpu_machine *mach;
1167 int ret = 0;
1168
1169 mach = kzalloc(sizeof(*mach), GFP_KERNEL);
1170 if (!mach) {
1171 ret = -ENOMEM;
1172 goto out;
1173 }
1174 get_cpu_id((struct cpuid *) &mach->cpuid);
David Hildenbrand37c5f6c2015-05-06 13:18:59 +02001175 mach->ibc = sclp.ibc;
David Hildenbrandc54f0d62015-12-02 08:53:52 +01001176 memcpy(&mach->fac_mask, kvm->arch.model.fac_mask,
Michael Mueller981467c2015-02-24 13:51:04 +01001177 S390_ARCH_FAC_LIST_SIZE_BYTE);
Michael Mueller658b6ed2015-02-02 15:49:35 +01001178 memcpy((unsigned long *)&mach->fac_list, S390_lowcore.stfle_fac_list,
Christian Borntraeger04478192017-01-12 16:25:15 +01001179 sizeof(S390_lowcore.stfle_fac_list));
Christian Borntraegera8c39dd2017-01-18 16:01:02 +01001180 VM_EVENT(kvm, 3, "GET: host ibc: 0x%4.4x, host cpuid: 0x%16.16llx",
1181 kvm->arch.model.ibc,
1182 kvm->arch.model.cpuid);
1183 VM_EVENT(kvm, 3, "GET: host facmask: 0x%16.16llx.%16.16llx.%16.16llx",
1184 mach->fac_mask[0],
1185 mach->fac_mask[1],
1186 mach->fac_mask[2]);
1187 VM_EVENT(kvm, 3, "GET: host faclist: 0x%16.16llx.%16.16llx.%16.16llx",
1188 mach->fac_list[0],
1189 mach->fac_list[1],
1190 mach->fac_list[2]);
Michael Mueller658b6ed2015-02-02 15:49:35 +01001191 if (copy_to_user((void __user *)attr->addr, mach, sizeof(*mach)))
1192 ret = -EFAULT;
1193 kfree(mach);
1194out:
1195 return ret;
1196}
1197
David Hildenbrand15c97052015-03-19 17:36:43 +01001198static int kvm_s390_get_processor_feat(struct kvm *kvm,
1199 struct kvm_device_attr *attr)
1200{
1201 struct kvm_s390_vm_cpu_feat data;
1202
1203 bitmap_copy((unsigned long *) data.feat, kvm->arch.cpu_feat,
1204 KVM_S390_VM_CPU_FEAT_NR_BITS);
1205 if (copy_to_user((void __user *)attr->addr, &data, sizeof(data)))
1206 return -EFAULT;
1207 return 0;
1208}
1209
1210static int kvm_s390_get_machine_feat(struct kvm *kvm,
1211 struct kvm_device_attr *attr)
1212{
1213 struct kvm_s390_vm_cpu_feat data;
1214
1215 bitmap_copy((unsigned long *) data.feat,
1216 kvm_s390_available_cpu_feat,
1217 KVM_S390_VM_CPU_FEAT_NR_BITS);
1218 if (copy_to_user((void __user *)attr->addr, &data, sizeof(data)))
1219 return -EFAULT;
1220 return 0;
1221}
1222
David Hildenbrand0a763c72016-05-18 16:03:47 +02001223static int kvm_s390_get_processor_subfunc(struct kvm *kvm,
1224 struct kvm_device_attr *attr)
1225{
1226 /*
1227 * Once we can actually configure subfunctions (kernel + hw support),
1228 * we have to check if they were already set by user space, if so copy
1229 * them from kvm->arch.
1230 */
1231 return -ENXIO;
1232}
1233
1234static int kvm_s390_get_machine_subfunc(struct kvm *kvm,
1235 struct kvm_device_attr *attr)
1236{
1237 if (copy_to_user((void __user *)attr->addr, &kvm_s390_available_subfunc,
1238 sizeof(struct kvm_s390_vm_cpu_subfunc)))
1239 return -EFAULT;
1240 return 0;
1241}
Michael Mueller658b6ed2015-02-02 15:49:35 +01001242static int kvm_s390_get_cpu_model(struct kvm *kvm, struct kvm_device_attr *attr)
1243{
1244 int ret = -ENXIO;
1245
1246 switch (attr->attr) {
1247 case KVM_S390_VM_CPU_PROCESSOR:
1248 ret = kvm_s390_get_processor(kvm, attr);
1249 break;
1250 case KVM_S390_VM_CPU_MACHINE:
1251 ret = kvm_s390_get_machine(kvm, attr);
1252 break;
David Hildenbrand15c97052015-03-19 17:36:43 +01001253 case KVM_S390_VM_CPU_PROCESSOR_FEAT:
1254 ret = kvm_s390_get_processor_feat(kvm, attr);
1255 break;
1256 case KVM_S390_VM_CPU_MACHINE_FEAT:
1257 ret = kvm_s390_get_machine_feat(kvm, attr);
1258 break;
David Hildenbrand0a763c72016-05-18 16:03:47 +02001259 case KVM_S390_VM_CPU_PROCESSOR_SUBFUNC:
1260 ret = kvm_s390_get_processor_subfunc(kvm, attr);
1261 break;
1262 case KVM_S390_VM_CPU_MACHINE_SUBFUNC:
1263 ret = kvm_s390_get_machine_subfunc(kvm, attr);
1264 break;
Michael Mueller658b6ed2015-02-02 15:49:35 +01001265 }
1266 return ret;
1267}
1268
Dominik Dingelf2061652014-04-09 13:13:00 +02001269static int kvm_s390_vm_set_attr(struct kvm *kvm, struct kvm_device_attr *attr)
1270{
1271 int ret;
1272
1273 switch (attr->group) {
Dominik Dingel4f718ea2014-04-09 13:13:00 +02001274 case KVM_S390_VM_MEM_CTRL:
Dominik Dingel8c0a7ce2014-10-31 14:10:41 +01001275 ret = kvm_s390_set_mem_control(kvm, attr);
Dominik Dingel4f718ea2014-04-09 13:13:00 +02001276 break;
Jason J. Herne72f25022014-11-25 09:46:02 -05001277 case KVM_S390_VM_TOD:
1278 ret = kvm_s390_set_tod(kvm, attr);
1279 break;
Michael Mueller658b6ed2015-02-02 15:49:35 +01001280 case KVM_S390_VM_CPU_MODEL:
1281 ret = kvm_s390_set_cpu_model(kvm, attr);
1282 break;
Tony Krowiaka374e892014-09-03 10:13:53 +02001283 case KVM_S390_VM_CRYPTO:
1284 ret = kvm_s390_vm_set_crypto(kvm, attr);
1285 break;
Claudio Imbrenda190df4a2016-08-04 17:54:42 +02001286 case KVM_S390_VM_MIGRATION:
1287 ret = kvm_s390_vm_set_migration(kvm, attr);
1288 break;
Dominik Dingelf2061652014-04-09 13:13:00 +02001289 default:
1290 ret = -ENXIO;
1291 break;
1292 }
1293
1294 return ret;
1295}
1296
1297static int kvm_s390_vm_get_attr(struct kvm *kvm, struct kvm_device_attr *attr)
1298{
Dominik Dingel8c0a7ce2014-10-31 14:10:41 +01001299 int ret;
1300
1301 switch (attr->group) {
1302 case KVM_S390_VM_MEM_CTRL:
1303 ret = kvm_s390_get_mem_control(kvm, attr);
1304 break;
Jason J. Herne72f25022014-11-25 09:46:02 -05001305 case KVM_S390_VM_TOD:
1306 ret = kvm_s390_get_tod(kvm, attr);
1307 break;
Michael Mueller658b6ed2015-02-02 15:49:35 +01001308 case KVM_S390_VM_CPU_MODEL:
1309 ret = kvm_s390_get_cpu_model(kvm, attr);
1310 break;
Claudio Imbrenda190df4a2016-08-04 17:54:42 +02001311 case KVM_S390_VM_MIGRATION:
1312 ret = kvm_s390_vm_get_migration(kvm, attr);
1313 break;
Dominik Dingel8c0a7ce2014-10-31 14:10:41 +01001314 default:
1315 ret = -ENXIO;
1316 break;
1317 }
1318
1319 return ret;
Dominik Dingelf2061652014-04-09 13:13:00 +02001320}
1321
1322static int kvm_s390_vm_has_attr(struct kvm *kvm, struct kvm_device_attr *attr)
1323{
1324 int ret;
1325
1326 switch (attr->group) {
Dominik Dingel4f718ea2014-04-09 13:13:00 +02001327 case KVM_S390_VM_MEM_CTRL:
1328 switch (attr->attr) {
1329 case KVM_S390_VM_MEM_ENABLE_CMMA:
1330 case KVM_S390_VM_MEM_CLR_CMMA:
David Hildenbrandf9cbd9b2016-03-03 09:48:47 +01001331 ret = sclp.has_cmma ? 0 : -ENXIO;
1332 break;
Dominik Dingel8c0a7ce2014-10-31 14:10:41 +01001333 case KVM_S390_VM_MEM_LIMIT_SIZE:
Dominik Dingel4f718ea2014-04-09 13:13:00 +02001334 ret = 0;
1335 break;
1336 default:
1337 ret = -ENXIO;
1338 break;
1339 }
1340 break;
Jason J. Herne72f25022014-11-25 09:46:02 -05001341 case KVM_S390_VM_TOD:
1342 switch (attr->attr) {
1343 case KVM_S390_VM_TOD_LOW:
1344 case KVM_S390_VM_TOD_HIGH:
1345 ret = 0;
1346 break;
1347 default:
1348 ret = -ENXIO;
1349 break;
1350 }
1351 break;
Michael Mueller658b6ed2015-02-02 15:49:35 +01001352 case KVM_S390_VM_CPU_MODEL:
1353 switch (attr->attr) {
1354 case KVM_S390_VM_CPU_PROCESSOR:
1355 case KVM_S390_VM_CPU_MACHINE:
David Hildenbrand15c97052015-03-19 17:36:43 +01001356 case KVM_S390_VM_CPU_PROCESSOR_FEAT:
1357 case KVM_S390_VM_CPU_MACHINE_FEAT:
David Hildenbrand0a763c72016-05-18 16:03:47 +02001358 case KVM_S390_VM_CPU_MACHINE_SUBFUNC:
Michael Mueller658b6ed2015-02-02 15:49:35 +01001359 ret = 0;
1360 break;
David Hildenbrand0a763c72016-05-18 16:03:47 +02001361 /* configuring subfunctions is not supported yet */
1362 case KVM_S390_VM_CPU_PROCESSOR_SUBFUNC:
Michael Mueller658b6ed2015-02-02 15:49:35 +01001363 default:
1364 ret = -ENXIO;
1365 break;
1366 }
1367 break;
Tony Krowiaka374e892014-09-03 10:13:53 +02001368 case KVM_S390_VM_CRYPTO:
1369 switch (attr->attr) {
1370 case KVM_S390_VM_CRYPTO_ENABLE_AES_KW:
1371 case KVM_S390_VM_CRYPTO_ENABLE_DEA_KW:
1372 case KVM_S390_VM_CRYPTO_DISABLE_AES_KW:
1373 case KVM_S390_VM_CRYPTO_DISABLE_DEA_KW:
1374 ret = 0;
1375 break;
1376 default:
1377 ret = -ENXIO;
1378 break;
1379 }
1380 break;
Claudio Imbrenda190df4a2016-08-04 17:54:42 +02001381 case KVM_S390_VM_MIGRATION:
1382 ret = 0;
1383 break;
Dominik Dingelf2061652014-04-09 13:13:00 +02001384 default:
1385 ret = -ENXIO;
1386 break;
1387 }
1388
1389 return ret;
1390}
1391
Jason J. Herne30ee2a92014-09-23 09:23:01 -04001392static long kvm_s390_get_skeys(struct kvm *kvm, struct kvm_s390_skeys *args)
1393{
1394 uint8_t *keys;
1395 uint64_t hva;
Christian Borntraeger4f899142017-07-10 13:35:48 +02001396 int srcu_idx, i, r = 0;
Jason J. Herne30ee2a92014-09-23 09:23:01 -04001397
1398 if (args->flags != 0)
1399 return -EINVAL;
1400
1401 /* Is this guest using storage keys? */
1402 if (!mm_use_skey(current->mm))
1403 return KVM_S390_GET_SKEYS_NONE;
1404
1405 /* Enforce sane limit on memory allocation */
1406 if (args->count < 1 || args->count > KVM_S390_SKEYS_MAX)
1407 return -EINVAL;
1408
Michal Hocko752ade62017-05-08 15:57:27 -07001409 keys = kvmalloc_array(args->count, sizeof(uint8_t), GFP_KERNEL);
Jason J. Herne30ee2a92014-09-23 09:23:01 -04001410 if (!keys)
1411 return -ENOMEM;
1412
Martin Schwidefskyd3ed1ce2016-03-08 11:53:35 +01001413 down_read(&current->mm->mmap_sem);
Christian Borntraeger4f899142017-07-10 13:35:48 +02001414 srcu_idx = srcu_read_lock(&kvm->srcu);
Jason J. Herne30ee2a92014-09-23 09:23:01 -04001415 for (i = 0; i < args->count; i++) {
1416 hva = gfn_to_hva(kvm, args->start_gfn + i);
1417 if (kvm_is_error_hva(hva)) {
1418 r = -EFAULT;
Martin Schwidefskyd3ed1ce2016-03-08 11:53:35 +01001419 break;
Jason J. Herne30ee2a92014-09-23 09:23:01 -04001420 }
1421
David Hildenbrand154c8c12016-05-09 11:22:34 +02001422 r = get_guest_storage_key(current->mm, hva, &keys[i]);
1423 if (r)
Martin Schwidefskyd3ed1ce2016-03-08 11:53:35 +01001424 break;
Jason J. Herne30ee2a92014-09-23 09:23:01 -04001425 }
Christian Borntraeger4f899142017-07-10 13:35:48 +02001426 srcu_read_unlock(&kvm->srcu, srcu_idx);
Martin Schwidefskyd3ed1ce2016-03-08 11:53:35 +01001427 up_read(&current->mm->mmap_sem);
Jason J. Herne30ee2a92014-09-23 09:23:01 -04001428
Martin Schwidefskyd3ed1ce2016-03-08 11:53:35 +01001429 if (!r) {
1430 r = copy_to_user((uint8_t __user *)args->skeydata_addr, keys,
1431 sizeof(uint8_t) * args->count);
1432 if (r)
1433 r = -EFAULT;
Jason J. Herne30ee2a92014-09-23 09:23:01 -04001434 }
1435
Jason J. Herne30ee2a92014-09-23 09:23:01 -04001436 kvfree(keys);
1437 return r;
1438}
1439
1440static long kvm_s390_set_skeys(struct kvm *kvm, struct kvm_s390_skeys *args)
1441{
1442 uint8_t *keys;
1443 uint64_t hva;
Christian Borntraeger4f899142017-07-10 13:35:48 +02001444 int srcu_idx, i, r = 0;
Jason J. Herne30ee2a92014-09-23 09:23:01 -04001445
1446 if (args->flags != 0)
1447 return -EINVAL;
1448
1449 /* Enforce sane limit on memory allocation */
1450 if (args->count < 1 || args->count > KVM_S390_SKEYS_MAX)
1451 return -EINVAL;
1452
Michal Hocko752ade62017-05-08 15:57:27 -07001453 keys = kvmalloc_array(args->count, sizeof(uint8_t), GFP_KERNEL);
Jason J. Herne30ee2a92014-09-23 09:23:01 -04001454 if (!keys)
1455 return -ENOMEM;
1456
1457 r = copy_from_user(keys, (uint8_t __user *)args->skeydata_addr,
1458 sizeof(uint8_t) * args->count);
1459 if (r) {
1460 r = -EFAULT;
1461 goto out;
1462 }
1463
1464 /* Enable storage key handling for the guest */
Dominik Dingel14d4a422015-05-07 15:16:13 +02001465 r = s390_enable_skey();
1466 if (r)
1467 goto out;
Jason J. Herne30ee2a92014-09-23 09:23:01 -04001468
Martin Schwidefskyd3ed1ce2016-03-08 11:53:35 +01001469 down_read(&current->mm->mmap_sem);
Christian Borntraeger4f899142017-07-10 13:35:48 +02001470 srcu_idx = srcu_read_lock(&kvm->srcu);
Jason J. Herne30ee2a92014-09-23 09:23:01 -04001471 for (i = 0; i < args->count; i++) {
1472 hva = gfn_to_hva(kvm, args->start_gfn + i);
1473 if (kvm_is_error_hva(hva)) {
1474 r = -EFAULT;
Martin Schwidefskyd3ed1ce2016-03-08 11:53:35 +01001475 break;
Jason J. Herne30ee2a92014-09-23 09:23:01 -04001476 }
1477
1478 /* Lowest order bit is reserved */
1479 if (keys[i] & 0x01) {
1480 r = -EINVAL;
Martin Schwidefskyd3ed1ce2016-03-08 11:53:35 +01001481 break;
Jason J. Herne30ee2a92014-09-23 09:23:01 -04001482 }
1483
David Hildenbrandfe69eab2016-05-09 13:08:07 +02001484 r = set_guest_storage_key(current->mm, hva, keys[i], 0);
Jason J. Herne30ee2a92014-09-23 09:23:01 -04001485 if (r)
Martin Schwidefskyd3ed1ce2016-03-08 11:53:35 +01001486 break;
Jason J. Herne30ee2a92014-09-23 09:23:01 -04001487 }
Christian Borntraeger4f899142017-07-10 13:35:48 +02001488 srcu_read_unlock(&kvm->srcu, srcu_idx);
Martin Schwidefskyd3ed1ce2016-03-08 11:53:35 +01001489 up_read(&current->mm->mmap_sem);
Jason J. Herne30ee2a92014-09-23 09:23:01 -04001490out:
1491 kvfree(keys);
1492 return r;
1493}
1494
Claudio Imbrenda4036e382016-08-04 17:58:47 +02001495/*
1496 * Base address and length must be sent at the start of each block, therefore
1497 * it's cheaper to send some clean data, as long as it's less than the size of
1498 * two longs.
1499 */
1500#define KVM_S390_MAX_BIT_DISTANCE (2 * sizeof(void *))
1501/* for consistency */
1502#define KVM_S390_CMMA_SIZE_MAX ((u32)KVM_S390_SKEYS_MAX)
1503
1504/*
1505 * This function searches for the next page with dirty CMMA attributes, and
1506 * saves the attributes in the buffer up to either the end of the buffer or
1507 * until a block of at least KVM_S390_MAX_BIT_DISTANCE clean bits is found;
1508 * no trailing clean bytes are saved.
1509 * In case no dirty bits were found, or if CMMA was not enabled or used, the
1510 * output buffer will indicate 0 as length.
1511 */
1512static int kvm_s390_get_cmma_bits(struct kvm *kvm,
1513 struct kvm_s390_cmma_log *args)
1514{
1515 struct kvm_s390_migration_state *s = kvm->arch.migration_state;
1516 unsigned long bufsize, hva, pgstev, i, next, cur;
1517 int srcu_idx, peek, r = 0, rr;
1518 u8 *res;
1519
1520 cur = args->start_gfn;
1521 i = next = pgstev = 0;
1522
1523 if (unlikely(!kvm->arch.use_cmma))
1524 return -ENXIO;
1525 /* Invalid/unsupported flags were specified */
1526 if (args->flags & ~KVM_S390_CMMA_PEEK)
1527 return -EINVAL;
1528 /* Migration mode query, and we are not doing a migration */
1529 peek = !!(args->flags & KVM_S390_CMMA_PEEK);
1530 if (!peek && !s)
1531 return -EINVAL;
1532 /* CMMA is disabled or was not used, or the buffer has length zero */
1533 bufsize = min(args->count, KVM_S390_CMMA_SIZE_MAX);
1534 if (!bufsize || !kvm->mm->context.use_cmma) {
1535 memset(args, 0, sizeof(*args));
1536 return 0;
1537 }
1538
1539 if (!peek) {
1540 /* We are not peeking, and there are no dirty pages */
1541 if (!atomic64_read(&s->dirty_pages)) {
1542 memset(args, 0, sizeof(*args));
1543 return 0;
1544 }
1545 cur = find_next_bit(s->pgste_bitmap, s->bitmap_size,
1546 args->start_gfn);
1547 if (cur >= s->bitmap_size) /* nothing found, loop back */
1548 cur = find_next_bit(s->pgste_bitmap, s->bitmap_size, 0);
1549 if (cur >= s->bitmap_size) { /* again! (very unlikely) */
1550 memset(args, 0, sizeof(*args));
1551 return 0;
1552 }
1553 next = find_next_bit(s->pgste_bitmap, s->bitmap_size, cur + 1);
1554 }
1555
1556 res = vmalloc(bufsize);
1557 if (!res)
1558 return -ENOMEM;
1559
1560 args->start_gfn = cur;
1561
1562 down_read(&kvm->mm->mmap_sem);
1563 srcu_idx = srcu_read_lock(&kvm->srcu);
1564 while (i < bufsize) {
1565 hva = gfn_to_hva(kvm, cur);
1566 if (kvm_is_error_hva(hva)) {
1567 r = -EFAULT;
1568 break;
1569 }
1570 /* decrement only if we actually flipped the bit to 0 */
1571 if (!peek && test_and_clear_bit(cur, s->pgste_bitmap))
1572 atomic64_dec(&s->dirty_pages);
1573 r = get_pgste(kvm->mm, hva, &pgstev);
1574 if (r < 0)
1575 pgstev = 0;
1576 /* save the value */
Claudio Imbrenda1bab1c02016-08-29 15:56:55 +02001577 res[i++] = (pgstev >> 24) & 0x43;
Claudio Imbrenda4036e382016-08-04 17:58:47 +02001578 /*
1579 * if the next bit is too far away, stop.
1580 * if we reached the previous "next", find the next one
1581 */
1582 if (!peek) {
1583 if (next > cur + KVM_S390_MAX_BIT_DISTANCE)
1584 break;
1585 if (cur == next)
1586 next = find_next_bit(s->pgste_bitmap,
1587 s->bitmap_size, cur + 1);
1588 /* reached the end of the bitmap or of the buffer, stop */
1589 if ((next >= s->bitmap_size) ||
1590 (next >= args->start_gfn + bufsize))
1591 break;
1592 }
1593 cur++;
1594 }
1595 srcu_read_unlock(&kvm->srcu, srcu_idx);
1596 up_read(&kvm->mm->mmap_sem);
1597 args->count = i;
1598 args->remaining = s ? atomic64_read(&s->dirty_pages) : 0;
1599
1600 rr = copy_to_user((void __user *)args->values, res, args->count);
1601 if (rr)
1602 r = -EFAULT;
1603
1604 vfree(res);
1605 return r;
1606}
1607
1608/*
1609 * This function sets the CMMA attributes for the given pages. If the input
1610 * buffer has zero length, no action is taken, otherwise the attributes are
1611 * set and the mm->context.use_cmma flag is set.
1612 */
1613static int kvm_s390_set_cmma_bits(struct kvm *kvm,
1614 const struct kvm_s390_cmma_log *args)
1615{
1616 unsigned long hva, mask, pgstev, i;
1617 uint8_t *bits;
1618 int srcu_idx, r = 0;
1619
1620 mask = args->mask;
1621
1622 if (!kvm->arch.use_cmma)
1623 return -ENXIO;
1624 /* invalid/unsupported flags */
1625 if (args->flags != 0)
1626 return -EINVAL;
1627 /* Enforce sane limit on memory allocation */
1628 if (args->count > KVM_S390_CMMA_SIZE_MAX)
1629 return -EINVAL;
1630 /* Nothing to do */
1631 if (args->count == 0)
1632 return 0;
1633
1634 bits = vmalloc(sizeof(*bits) * args->count);
1635 if (!bits)
1636 return -ENOMEM;
1637
1638 r = copy_from_user(bits, (void __user *)args->values, args->count);
1639 if (r) {
1640 r = -EFAULT;
1641 goto out;
1642 }
1643
1644 down_read(&kvm->mm->mmap_sem);
1645 srcu_idx = srcu_read_lock(&kvm->srcu);
1646 for (i = 0; i < args->count; i++) {
1647 hva = gfn_to_hva(kvm, args->start_gfn + i);
1648 if (kvm_is_error_hva(hva)) {
1649 r = -EFAULT;
1650 break;
1651 }
1652
1653 pgstev = bits[i];
1654 pgstev = pgstev << 24;
Claudio Imbrenda1bab1c02016-08-29 15:56:55 +02001655 mask &= _PGSTE_GPS_USAGE_MASK | _PGSTE_GPS_NODAT;
Claudio Imbrenda4036e382016-08-04 17:58:47 +02001656 set_pgste_bits(kvm->mm, hva, mask, pgstev);
1657 }
1658 srcu_read_unlock(&kvm->srcu, srcu_idx);
1659 up_read(&kvm->mm->mmap_sem);
1660
1661 if (!kvm->mm->context.use_cmma) {
1662 down_write(&kvm->mm->mmap_sem);
1663 kvm->mm->context.use_cmma = 1;
1664 up_write(&kvm->mm->mmap_sem);
1665 }
1666out:
1667 vfree(bits);
1668 return r;
1669}
1670
Heiko Carstensb0c632d2008-03-25 18:47:20 +01001671long kvm_arch_vm_ioctl(struct file *filp,
1672 unsigned int ioctl, unsigned long arg)
1673{
1674 struct kvm *kvm = filp->private_data;
1675 void __user *argp = (void __user *)arg;
Dominik Dingelf2061652014-04-09 13:13:00 +02001676 struct kvm_device_attr attr;
Heiko Carstensb0c632d2008-03-25 18:47:20 +01001677 int r;
1678
1679 switch (ioctl) {
Carsten Otteba5c1e92008-03-25 18:47:26 +01001680 case KVM_S390_INTERRUPT: {
1681 struct kvm_s390_interrupt s390int;
1682
1683 r = -EFAULT;
1684 if (copy_from_user(&s390int, argp, sizeof(s390int)))
1685 break;
1686 r = kvm_s390_inject_vm(kvm, &s390int);
1687 break;
1688 }
Cornelia Huckd938dc52013-10-23 18:26:34 +02001689 case KVM_ENABLE_CAP: {
1690 struct kvm_enable_cap cap;
1691 r = -EFAULT;
1692 if (copy_from_user(&cap, argp, sizeof(cap)))
1693 break;
1694 r = kvm_vm_ioctl_enable_cap(kvm, &cap);
1695 break;
1696 }
Cornelia Huck84223592013-07-15 13:36:01 +02001697 case KVM_CREATE_IRQCHIP: {
1698 struct kvm_irq_routing_entry routing;
1699
1700 r = -EINVAL;
1701 if (kvm->arch.use_irqchip) {
1702 /* Set up dummy routing. */
1703 memset(&routing, 0, sizeof(routing));
Nicholas Krause152b2832015-08-06 13:05:54 -04001704 r = kvm_set_irq_routing(kvm, &routing, 0, 0);
Cornelia Huck84223592013-07-15 13:36:01 +02001705 }
1706 break;
1707 }
Dominik Dingelf2061652014-04-09 13:13:00 +02001708 case KVM_SET_DEVICE_ATTR: {
1709 r = -EFAULT;
1710 if (copy_from_user(&attr, (void __user *)arg, sizeof(attr)))
1711 break;
1712 r = kvm_s390_vm_set_attr(kvm, &attr);
1713 break;
1714 }
1715 case KVM_GET_DEVICE_ATTR: {
1716 r = -EFAULT;
1717 if (copy_from_user(&attr, (void __user *)arg, sizeof(attr)))
1718 break;
1719 r = kvm_s390_vm_get_attr(kvm, &attr);
1720 break;
1721 }
1722 case KVM_HAS_DEVICE_ATTR: {
1723 r = -EFAULT;
1724 if (copy_from_user(&attr, (void __user *)arg, sizeof(attr)))
1725 break;
1726 r = kvm_s390_vm_has_attr(kvm, &attr);
1727 break;
1728 }
Jason J. Herne30ee2a92014-09-23 09:23:01 -04001729 case KVM_S390_GET_SKEYS: {
1730 struct kvm_s390_skeys args;
1731
1732 r = -EFAULT;
1733 if (copy_from_user(&args, argp,
1734 sizeof(struct kvm_s390_skeys)))
1735 break;
1736 r = kvm_s390_get_skeys(kvm, &args);
1737 break;
1738 }
1739 case KVM_S390_SET_SKEYS: {
1740 struct kvm_s390_skeys args;
1741
1742 r = -EFAULT;
1743 if (copy_from_user(&args, argp,
1744 sizeof(struct kvm_s390_skeys)))
1745 break;
1746 r = kvm_s390_set_skeys(kvm, &args);
1747 break;
1748 }
Claudio Imbrenda4036e382016-08-04 17:58:47 +02001749 case KVM_S390_GET_CMMA_BITS: {
1750 struct kvm_s390_cmma_log args;
1751
1752 r = -EFAULT;
1753 if (copy_from_user(&args, argp, sizeof(args)))
1754 break;
1755 r = kvm_s390_get_cmma_bits(kvm, &args);
1756 if (!r) {
1757 r = copy_to_user(argp, &args, sizeof(args));
1758 if (r)
1759 r = -EFAULT;
1760 }
1761 break;
1762 }
1763 case KVM_S390_SET_CMMA_BITS: {
1764 struct kvm_s390_cmma_log args;
1765
1766 r = -EFAULT;
1767 if (copy_from_user(&args, argp, sizeof(args)))
1768 break;
1769 r = kvm_s390_set_cmma_bits(kvm, &args);
1770 break;
1771 }
Heiko Carstensb0c632d2008-03-25 18:47:20 +01001772 default:
Avi Kivity367e1312009-08-26 14:57:07 +03001773 r = -ENOTTY;
Heiko Carstensb0c632d2008-03-25 18:47:20 +01001774 }
1775
1776 return r;
1777}
1778
Tony Krowiak45c9b472015-01-13 11:33:26 -05001779static int kvm_s390_query_ap_config(u8 *config)
1780{
1781 u32 fcn_code = 0x04000000UL;
Christian Borntraeger86044c82015-02-26 13:53:47 +01001782 u32 cc = 0;
Tony Krowiak45c9b472015-01-13 11:33:26 -05001783
Christian Borntraeger86044c82015-02-26 13:53:47 +01001784 memset(config, 0, 128);
Tony Krowiak45c9b472015-01-13 11:33:26 -05001785 asm volatile(
1786 "lgr 0,%1\n"
1787 "lgr 2,%2\n"
1788 ".long 0xb2af0000\n" /* PQAP(QCI) */
Christian Borntraeger86044c82015-02-26 13:53:47 +01001789 "0: ipm %0\n"
Tony Krowiak45c9b472015-01-13 11:33:26 -05001790 "srl %0,28\n"
Christian Borntraeger86044c82015-02-26 13:53:47 +01001791 "1:\n"
1792 EX_TABLE(0b, 1b)
1793 : "+r" (cc)
Tony Krowiak45c9b472015-01-13 11:33:26 -05001794 : "r" (fcn_code), "r" (config)
1795 : "cc", "0", "2", "memory"
1796 );
1797
1798 return cc;
1799}
1800
1801static int kvm_s390_apxa_installed(void)
1802{
1803 u8 config[128];
1804 int cc;
1805
Heiko Carstensa6aacc32015-11-24 14:28:12 +01001806 if (test_facility(12)) {
Tony Krowiak45c9b472015-01-13 11:33:26 -05001807 cc = kvm_s390_query_ap_config(config);
1808
1809 if (cc)
1810 pr_err("PQAP(QCI) failed with cc=%d", cc);
1811 else
1812 return config[0] & 0x40;
1813 }
1814
1815 return 0;
1816}
1817
1818static void kvm_s390_set_crycb_format(struct kvm *kvm)
1819{
1820 kvm->arch.crypto.crycbd = (__u32)(unsigned long) kvm->arch.crypto.crycb;
1821
1822 if (kvm_s390_apxa_installed())
1823 kvm->arch.crypto.crycbd |= CRYCB_FORMAT2;
1824 else
1825 kvm->arch.crypto.crycbd |= CRYCB_FORMAT1;
1826}
1827
David Hildenbrand9bb0ec02016-04-04 14:27:51 +02001828static u64 kvm_s390_get_initial_cpuid(void)
Michael Mueller9d8d5782015-02-02 15:42:51 +01001829{
David Hildenbrand9bb0ec02016-04-04 14:27:51 +02001830 struct cpuid cpuid;
1831
1832 get_cpu_id(&cpuid);
1833 cpuid.version = 0xff;
1834 return *((u64 *) &cpuid);
Michael Mueller9d8d5782015-02-02 15:42:51 +01001835}
1836
David Hildenbrandc54f0d62015-12-02 08:53:52 +01001837static void kvm_s390_crypto_init(struct kvm *kvm)
Tony Krowiak5102ee82014-06-27 14:46:01 -04001838{
Michael Mueller9d8d5782015-02-02 15:42:51 +01001839 if (!test_kvm_facility(kvm, 76))
David Hildenbrandc54f0d62015-12-02 08:53:52 +01001840 return;
Tony Krowiak5102ee82014-06-27 14:46:01 -04001841
David Hildenbrandc54f0d62015-12-02 08:53:52 +01001842 kvm->arch.crypto.crycb = &kvm->arch.sie_page2->crycb;
Tony Krowiak45c9b472015-01-13 11:33:26 -05001843 kvm_s390_set_crycb_format(kvm);
Tony Krowiak5102ee82014-06-27 14:46:01 -04001844
Tony Krowiaked6f76b2015-02-24 14:06:57 -05001845 /* Enable AES/DEA protected key functions by default */
1846 kvm->arch.crypto.aes_kw = 1;
1847 kvm->arch.crypto.dea_kw = 1;
1848 get_random_bytes(kvm->arch.crypto.crycb->aes_wrapping_key_mask,
1849 sizeof(kvm->arch.crypto.crycb->aes_wrapping_key_mask));
1850 get_random_bytes(kvm->arch.crypto.crycb->dea_wrapping_key_mask,
1851 sizeof(kvm->arch.crypto.crycb->dea_wrapping_key_mask));
Tony Krowiak5102ee82014-06-27 14:46:01 -04001852}
1853
Eugene (jno) Dvurechenski7d43bafcf2015-04-22 17:09:44 +02001854static void sca_dispose(struct kvm *kvm)
1855{
1856 if (kvm->arch.use_esca)
Eugene (jno) Dvurechenski5e044312015-04-22 18:08:39 +02001857 free_pages_exact(kvm->arch.sca, sizeof(struct esca_block));
Eugene (jno) Dvurechenski7d43bafcf2015-04-22 17:09:44 +02001858 else
1859 free_page((unsigned long)(kvm->arch.sca));
1860 kvm->arch.sca = NULL;
1861}
1862
Carsten Ottee08b9632012-01-04 10:25:20 +01001863int kvm_arch_init_vm(struct kvm *kvm, unsigned long type)
Heiko Carstensb0c632d2008-03-25 18:47:20 +01001864{
David Hildenbrand76a6dd72015-11-24 13:33:49 +01001865 gfp_t alloc_flags = GFP_KERNEL;
Michael Mueller9d8d5782015-02-02 15:42:51 +01001866 int i, rc;
Heiko Carstensb0c632d2008-03-25 18:47:20 +01001867 char debug_name[16];
Christian Borntraegerf6c137f2014-03-19 11:18:29 +01001868 static unsigned long sca_offset;
Heiko Carstensb0c632d2008-03-25 18:47:20 +01001869
Carsten Ottee08b9632012-01-04 10:25:20 +01001870 rc = -EINVAL;
1871#ifdef CONFIG_KVM_S390_UCONTROL
1872 if (type & ~KVM_VM_S390_UCONTROL)
1873 goto out_err;
1874 if ((type & KVM_VM_S390_UCONTROL) && (!capable(CAP_SYS_ADMIN)))
1875 goto out_err;
1876#else
1877 if (type)
1878 goto out_err;
1879#endif
1880
Heiko Carstensb0c632d2008-03-25 18:47:20 +01001881 rc = s390_enable_sie();
1882 if (rc)
Jan Kiszkad89f5ef2010-11-09 17:02:49 +01001883 goto out_err;
Heiko Carstensb0c632d2008-03-25 18:47:20 +01001884
Carsten Otteb2904112011-10-18 12:27:13 +02001885 rc = -ENOMEM;
1886
Janosch Frank7d0a5e62016-05-10 15:03:42 +02001887 ratelimit_state_init(&kvm->arch.sthyi_limit, 5 * HZ, 500);
1888
Eugene (jno) Dvurechenski7d43bafcf2015-04-22 17:09:44 +02001889 kvm->arch.use_esca = 0; /* start with basic SCA */
David Hildenbrand76a6dd72015-11-24 13:33:49 +01001890 if (!sclp.has_64bscao)
1891 alloc_flags |= GFP_DMA;
Eugene (jno) Dvurechenski5e044312015-04-22 18:08:39 +02001892 rwlock_init(&kvm->arch.sca_lock);
David Hildenbrand76a6dd72015-11-24 13:33:49 +01001893 kvm->arch.sca = (struct bsca_block *) get_zeroed_page(alloc_flags);
Heiko Carstensb0c632d2008-03-25 18:47:20 +01001894 if (!kvm->arch.sca)
Jan Kiszkad89f5ef2010-11-09 17:02:49 +01001895 goto out_err;
Christian Borntraegerf6c137f2014-03-19 11:18:29 +01001896 spin_lock(&kvm_lock);
David Hildenbrandc5c2c392015-10-26 08:41:29 +01001897 sca_offset += 16;
Eugene (jno) Dvurechenskibc784cc2015-04-23 16:09:06 +02001898 if (sca_offset + sizeof(struct bsca_block) > PAGE_SIZE)
David Hildenbrandc5c2c392015-10-26 08:41:29 +01001899 sca_offset = 0;
Eugene (jno) Dvurechenskibc784cc2015-04-23 16:09:06 +02001900 kvm->arch.sca = (struct bsca_block *)
1901 ((char *) kvm->arch.sca + sca_offset);
Christian Borntraegerf6c137f2014-03-19 11:18:29 +01001902 spin_unlock(&kvm_lock);
Heiko Carstensb0c632d2008-03-25 18:47:20 +01001903
1904 sprintf(debug_name, "kvm-%u", current->pid);
1905
Christian Borntraeger1cb9cf72015-07-20 15:04:48 +02001906 kvm->arch.dbf = debug_register(debug_name, 32, 1, 7 * sizeof(long));
Heiko Carstensb0c632d2008-03-25 18:47:20 +01001907 if (!kvm->arch.dbf)
Dominik Dingel40f5b732015-03-12 13:55:53 +01001908 goto out_err;
Heiko Carstensb0c632d2008-03-25 18:47:20 +01001909
David Hildenbrandc54f0d62015-12-02 08:53:52 +01001910 kvm->arch.sie_page2 =
1911 (struct sie_page2 *) get_zeroed_page(GFP_KERNEL | GFP_DMA);
1912 if (!kvm->arch.sie_page2)
Dominik Dingel40f5b732015-03-12 13:55:53 +01001913 goto out_err;
Michael Mueller9d8d5782015-02-02 15:42:51 +01001914
Michael Muellerfb5bf932015-02-27 14:25:10 +01001915 /* Populate the facility mask initially. */
David Hildenbrandc54f0d62015-12-02 08:53:52 +01001916 memcpy(kvm->arch.model.fac_mask, S390_lowcore.stfle_fac_list,
Christian Borntraeger04478192017-01-12 16:25:15 +01001917 sizeof(S390_lowcore.stfle_fac_list));
Michael Mueller9d8d5782015-02-02 15:42:51 +01001918 for (i = 0; i < S390_ARCH_FAC_LIST_SIZE_U64; i++) {
1919 if (i < kvm_s390_fac_list_mask_size())
David Hildenbrandc54f0d62015-12-02 08:53:52 +01001920 kvm->arch.model.fac_mask[i] &= kvm_s390_fac_list_mask[i];
Michael Mueller9d8d5782015-02-02 15:42:51 +01001921 else
David Hildenbrandc54f0d62015-12-02 08:53:52 +01001922 kvm->arch.model.fac_mask[i] = 0UL;
Michael Mueller9d8d5782015-02-02 15:42:51 +01001923 }
1924
Michael Mueller981467c2015-02-24 13:51:04 +01001925 /* Populate the facility list initially. */
David Hildenbrandc54f0d62015-12-02 08:53:52 +01001926 kvm->arch.model.fac_list = kvm->arch.sie_page2->fac_list;
1927 memcpy(kvm->arch.model.fac_list, kvm->arch.model.fac_mask,
Michael Mueller981467c2015-02-24 13:51:04 +01001928 S390_ARCH_FAC_LIST_SIZE_BYTE);
1929
David Hildenbrand19352222017-08-29 16:31:08 +02001930 /* we are always in czam mode - even on pre z14 machines */
1931 set_kvm_facility(kvm->arch.model.fac_mask, 138);
1932 set_kvm_facility(kvm->arch.model.fac_list, 138);
1933 /* we emulate STHYI in kvm */
Janosch Frank95ca2cb2016-05-23 15:11:58 +02001934 set_kvm_facility(kvm->arch.model.fac_mask, 74);
1935 set_kvm_facility(kvm->arch.model.fac_list, 74);
Claudio Imbrenda1bab1c02016-08-29 15:56:55 +02001936 if (MACHINE_HAS_TLB_GUEST) {
1937 set_kvm_facility(kvm->arch.model.fac_mask, 147);
1938 set_kvm_facility(kvm->arch.model.fac_list, 147);
1939 }
Janosch Frank95ca2cb2016-05-23 15:11:58 +02001940
David Hildenbrand9bb0ec02016-04-04 14:27:51 +02001941 kvm->arch.model.cpuid = kvm_s390_get_initial_cpuid();
David Hildenbrand37c5f6c2015-05-06 13:18:59 +02001942 kvm->arch.model.ibc = sclp.ibc & 0x0fff;
Michael Mueller9d8d5782015-02-02 15:42:51 +01001943
David Hildenbrandc54f0d62015-12-02 08:53:52 +01001944 kvm_s390_crypto_init(kvm);
Tony Krowiak5102ee82014-06-27 14:46:01 -04001945
Fei Li51978392017-02-17 17:06:26 +08001946 mutex_init(&kvm->arch.float_int.ais_lock);
1947 kvm->arch.float_int.simm = 0;
1948 kvm->arch.float_int.nimm = 0;
Carsten Otteba5c1e92008-03-25 18:47:26 +01001949 spin_lock_init(&kvm->arch.float_int.lock);
Jens Freimann6d3da242013-07-03 15:18:35 +02001950 for (i = 0; i < FIRQ_LIST_COUNT; i++)
1951 INIT_LIST_HEAD(&kvm->arch.float_int.lists[i]);
Heiko Carstens8a2422342014-01-10 14:33:28 +01001952 init_waitqueue_head(&kvm->arch.ipte_wq);
Thomas Hutha6b7e452014-10-01 14:48:42 +02001953 mutex_init(&kvm->arch.ipte_mutex);
Carsten Otteba5c1e92008-03-25 18:47:26 +01001954
Heiko Carstensb0c632d2008-03-25 18:47:20 +01001955 debug_register_view(kvm->arch.dbf, &debug_sprintf_view);
Christian Borntraeger78f26132015-07-22 15:50:58 +02001956 VM_EVENT(kvm, 3, "vm created with type %lu", type);
Heiko Carstensb0c632d2008-03-25 18:47:20 +01001957
Carsten Ottee08b9632012-01-04 10:25:20 +01001958 if (type & KVM_VM_S390_UCONTROL) {
1959 kvm->arch.gmap = NULL;
Dominik Dingela3a92c32014-12-01 17:24:42 +01001960 kvm->arch.mem_limit = KVM_S390_NO_MEM_LIMIT;
Carsten Ottee08b9632012-01-04 10:25:20 +01001961 } else {
Guenther Hutzl32e6b232014-12-01 17:24:42 +01001962 if (sclp.hamax == U64_MAX)
Martin Schwidefskyee71d162017-04-20 14:43:51 +02001963 kvm->arch.mem_limit = TASK_SIZE_MAX;
Guenther Hutzl32e6b232014-12-01 17:24:42 +01001964 else
Martin Schwidefskyee71d162017-04-20 14:43:51 +02001965 kvm->arch.mem_limit = min_t(unsigned long, TASK_SIZE_MAX,
Guenther Hutzl32e6b232014-12-01 17:24:42 +01001966 sclp.hamax + 1);
Martin Schwidefsky6ea427b2016-03-08 11:55:04 +01001967 kvm->arch.gmap = gmap_create(current->mm, kvm->arch.mem_limit - 1);
Carsten Ottee08b9632012-01-04 10:25:20 +01001968 if (!kvm->arch.gmap)
Dominik Dingel40f5b732015-03-12 13:55:53 +01001969 goto out_err;
Christian Borntraeger2c70fe42013-05-17 14:41:36 +02001970 kvm->arch.gmap->private = kvm;
Dominik Dingel24eb3a82013-06-17 16:25:18 +02001971 kvm->arch.gmap->pfault_enabled = 0;
Carsten Ottee08b9632012-01-04 10:25:20 +01001972 }
Cornelia Huckfa6b7fe2012-12-20 15:32:12 +01001973
1974 kvm->arch.css_support = 0;
Cornelia Huck84223592013-07-15 13:36:01 +02001975 kvm->arch.use_irqchip = 0;
Jason J. Herne72f25022014-11-25 09:46:02 -05001976 kvm->arch.epoch = 0;
Cornelia Huckfa6b7fe2012-12-20 15:32:12 +01001977
David Hildenbrand8ad35752014-03-14 11:00:21 +01001978 spin_lock_init(&kvm->arch.start_stop_lock);
David Hildenbranda3508fb2015-07-08 13:19:48 +02001979 kvm_s390_vsie_init(kvm);
Christian Borntraeger8335713a2015-12-08 16:55:27 +01001980 KVM_EVENT(3, "vm 0x%pK created by pid %u", kvm, current->pid);
David Hildenbrand8ad35752014-03-14 11:00:21 +01001981
Jan Kiszkad89f5ef2010-11-09 17:02:49 +01001982 return 0;
Jan Kiszkad89f5ef2010-11-09 17:02:49 +01001983out_err:
David Hildenbrandc54f0d62015-12-02 08:53:52 +01001984 free_page((unsigned long)kvm->arch.sie_page2);
Dominik Dingel40f5b732015-03-12 13:55:53 +01001985 debug_unregister(kvm->arch.dbf);
Eugene (jno) Dvurechenski7d43bafcf2015-04-22 17:09:44 +02001986 sca_dispose(kvm);
Christian Borntraeger78f26132015-07-22 15:50:58 +02001987 KVM_EVENT(3, "creation of vm failed: %d", rc);
Jan Kiszkad89f5ef2010-11-09 17:02:49 +01001988 return rc;
Heiko Carstensb0c632d2008-03-25 18:47:20 +01001989}
1990
Luiz Capitulino235539b2016-09-07 14:47:23 -04001991bool kvm_arch_has_vcpu_debugfs(void)
1992{
1993 return false;
1994}
1995
1996int kvm_arch_create_vcpu_debugfs(struct kvm_vcpu *vcpu)
1997{
1998 return 0;
1999}
2000
Christian Borntraegerd329c032008-11-26 14:50:27 +01002001void kvm_arch_vcpu_destroy(struct kvm_vcpu *vcpu)
2002{
2003 VCPU_EVENT(vcpu, 3, "%s", "free cpu");
Cornelia Huckade38c32012-07-23 17:20:30 +02002004 trace_kvm_s390_destroy_vcpu(vcpu->vcpu_id);
Christian Borntraeger67335e62014-03-25 17:09:08 +01002005 kvm_s390_clear_local_irqs(vcpu);
Dominik Dingel3c038e62013-10-07 17:11:48 +02002006 kvm_clear_async_pf_completion_queue(vcpu);
Eugene (jno) Dvurechenskibc784cc2015-04-23 16:09:06 +02002007 if (!kvm_is_ucontrol(vcpu->kvm))
Eugene (jno) Dvurechenskia6e2f682015-04-21 15:31:59 +02002008 sca_del_vcpu(vcpu);
Carsten Otte27e03932012-01-04 10:25:21 +01002009
2010 if (kvm_is_ucontrol(vcpu->kvm))
Martin Schwidefsky6ea427b2016-03-08 11:55:04 +01002011 gmap_remove(vcpu->arch.gmap);
Carsten Otte27e03932012-01-04 10:25:21 +01002012
Dominik Dingele6db1d62015-05-07 15:41:57 +02002013 if (vcpu->kvm->arch.use_cmma)
Dominik Dingelb31605c2014-03-25 13:47:11 +01002014 kvm_s390_vcpu_unsetup_cmma(vcpu);
Christian Borntraegerd329c032008-11-26 14:50:27 +01002015 free_page((unsigned long)(vcpu->arch.sie_block));
Konstantin Weitzb31288f2013-04-17 17:36:29 +02002016
Christian Borntraeger6692cef2008-11-26 14:51:08 +01002017 kvm_vcpu_uninit(vcpu);
Michael Muellerb110fea2013-06-12 13:54:54 +02002018 kmem_cache_free(kvm_vcpu_cache, vcpu);
Christian Borntraegerd329c032008-11-26 14:50:27 +01002019}
2020
2021static void kvm_free_vcpus(struct kvm *kvm)
2022{
2023 unsigned int i;
Gleb Natapov988a2ca2009-06-09 15:56:29 +03002024 struct kvm_vcpu *vcpu;
Christian Borntraegerd329c032008-11-26 14:50:27 +01002025
Gleb Natapov988a2ca2009-06-09 15:56:29 +03002026 kvm_for_each_vcpu(i, vcpu, kvm)
2027 kvm_arch_vcpu_destroy(vcpu);
2028
2029 mutex_lock(&kvm->lock);
2030 for (i = 0; i < atomic_read(&kvm->online_vcpus); i++)
2031 kvm->vcpus[i] = NULL;
2032
2033 atomic_set(&kvm->online_vcpus, 0);
2034 mutex_unlock(&kvm->lock);
Christian Borntraegerd329c032008-11-26 14:50:27 +01002035}
2036
Heiko Carstensb0c632d2008-03-25 18:47:20 +01002037void kvm_arch_destroy_vm(struct kvm *kvm)
2038{
Christian Borntraegerd329c032008-11-26 14:50:27 +01002039 kvm_free_vcpus(kvm);
Eugene (jno) Dvurechenski7d43bafcf2015-04-22 17:09:44 +02002040 sca_dispose(kvm);
Christian Borntraegerd329c032008-11-26 14:50:27 +01002041 debug_unregister(kvm->arch.dbf);
David Hildenbrandc54f0d62015-12-02 08:53:52 +01002042 free_page((unsigned long)kvm->arch.sie_page2);
Carsten Otte27e03932012-01-04 10:25:21 +01002043 if (!kvm_is_ucontrol(kvm))
Martin Schwidefsky6ea427b2016-03-08 11:55:04 +01002044 gmap_remove(kvm->arch.gmap);
Cornelia Huck841b91c2013-07-15 13:36:01 +02002045 kvm_s390_destroy_adapters(kvm);
Christian Borntraeger67335e62014-03-25 17:09:08 +01002046 kvm_s390_clear_float_irqs(kvm);
David Hildenbranda3508fb2015-07-08 13:19:48 +02002047 kvm_s390_vsie_destroy(kvm);
Claudio Imbrenda190df4a2016-08-04 17:54:42 +02002048 if (kvm->arch.migration_state) {
2049 vfree(kvm->arch.migration_state->pgste_bitmap);
2050 kfree(kvm->arch.migration_state);
2051 }
Christian Borntraeger8335713a2015-12-08 16:55:27 +01002052 KVM_EVENT(3, "vm 0x%pK destroyed", kvm);
Heiko Carstensb0c632d2008-03-25 18:47:20 +01002053}
2054
2055/* Section: vcpu related */
Dominik Dingeldafd0322014-12-02 16:53:21 +01002056static int __kvm_ucontrol_vcpu_init(struct kvm_vcpu *vcpu)
2057{
Martin Schwidefsky6ea427b2016-03-08 11:55:04 +01002058 vcpu->arch.gmap = gmap_create(current->mm, -1UL);
Dominik Dingeldafd0322014-12-02 16:53:21 +01002059 if (!vcpu->arch.gmap)
2060 return -ENOMEM;
2061 vcpu->arch.gmap->private = vcpu->kvm;
2062
2063 return 0;
2064}
2065
Eugene (jno) Dvurechenskia6e2f682015-04-21 15:31:59 +02002066static void sca_del_vcpu(struct kvm_vcpu *vcpu)
2067{
David Hildenbranda6940672016-08-08 22:39:32 +02002068 if (!kvm_s390_use_sca_entries())
2069 return;
Eugene (jno) Dvurechenski5e044312015-04-22 18:08:39 +02002070 read_lock(&vcpu->kvm->arch.sca_lock);
Eugene (jno) Dvurechenski7d43bafcf2015-04-22 17:09:44 +02002071 if (vcpu->kvm->arch.use_esca) {
2072 struct esca_block *sca = vcpu->kvm->arch.sca;
Eugene (jno) Dvurechenskia6e2f682015-04-21 15:31:59 +02002073
Eugene (jno) Dvurechenski7d43bafcf2015-04-22 17:09:44 +02002074 clear_bit_inv(vcpu->vcpu_id, (unsigned long *) sca->mcn);
David Hildenbrand10ce32d2015-10-12 12:41:41 +02002075 sca->cpu[vcpu->vcpu_id].sda = 0;
Eugene (jno) Dvurechenski7d43bafcf2015-04-22 17:09:44 +02002076 } else {
2077 struct bsca_block *sca = vcpu->kvm->arch.sca;
2078
2079 clear_bit_inv(vcpu->vcpu_id, (unsigned long *) &sca->mcn);
David Hildenbrand10ce32d2015-10-12 12:41:41 +02002080 sca->cpu[vcpu->vcpu_id].sda = 0;
Eugene (jno) Dvurechenski7d43bafcf2015-04-22 17:09:44 +02002081 }
Eugene (jno) Dvurechenski5e044312015-04-22 18:08:39 +02002082 read_unlock(&vcpu->kvm->arch.sca_lock);
Eugene (jno) Dvurechenskia6e2f682015-04-21 15:31:59 +02002083}
2084
David Hildenbrandeaa78f32015-10-12 16:29:01 +02002085static void sca_add_vcpu(struct kvm_vcpu *vcpu)
Eugene (jno) Dvurechenskia6e2f682015-04-21 15:31:59 +02002086{
David Hildenbranda6940672016-08-08 22:39:32 +02002087 if (!kvm_s390_use_sca_entries()) {
2088 struct bsca_block *sca = vcpu->kvm->arch.sca;
2089
2090 /* we still need the basic sca for the ipte control */
2091 vcpu->arch.sie_block->scaoh = (__u32)(((__u64)sca) >> 32);
2092 vcpu->arch.sie_block->scaol = (__u32)(__u64)sca;
2093 }
David Hildenbrandeaa78f32015-10-12 16:29:01 +02002094 read_lock(&vcpu->kvm->arch.sca_lock);
2095 if (vcpu->kvm->arch.use_esca) {
2096 struct esca_block *sca = vcpu->kvm->arch.sca;
Eugene (jno) Dvurechenskia6e2f682015-04-21 15:31:59 +02002097
David Hildenbrandeaa78f32015-10-12 16:29:01 +02002098 sca->cpu[vcpu->vcpu_id].sda = (__u64) vcpu->arch.sie_block;
Eugene (jno) Dvurechenski7d43bafcf2015-04-22 17:09:44 +02002099 vcpu->arch.sie_block->scaoh = (__u32)(((__u64)sca) >> 32);
2100 vcpu->arch.sie_block->scaol = (__u32)(__u64)sca & ~0x3fU;
David Hildenbrand0c9d8682017-03-13 11:48:28 +01002101 vcpu->arch.sie_block->ecb2 |= ECB2_ESCA;
David Hildenbrandeaa78f32015-10-12 16:29:01 +02002102 set_bit_inv(vcpu->vcpu_id, (unsigned long *) sca->mcn);
Eugene (jno) Dvurechenski7d43bafcf2015-04-22 17:09:44 +02002103 } else {
David Hildenbrandeaa78f32015-10-12 16:29:01 +02002104 struct bsca_block *sca = vcpu->kvm->arch.sca;
Eugene (jno) Dvurechenski7d43bafcf2015-04-22 17:09:44 +02002105
David Hildenbrandeaa78f32015-10-12 16:29:01 +02002106 sca->cpu[vcpu->vcpu_id].sda = (__u64) vcpu->arch.sie_block;
Eugene (jno) Dvurechenski7d43bafcf2015-04-22 17:09:44 +02002107 vcpu->arch.sie_block->scaoh = (__u32)(((__u64)sca) >> 32);
2108 vcpu->arch.sie_block->scaol = (__u32)(__u64)sca;
David Hildenbrandeaa78f32015-10-12 16:29:01 +02002109 set_bit_inv(vcpu->vcpu_id, (unsigned long *) &sca->mcn);
Eugene (jno) Dvurechenski7d43bafcf2015-04-22 17:09:44 +02002110 }
David Hildenbrandeaa78f32015-10-12 16:29:01 +02002111 read_unlock(&vcpu->kvm->arch.sca_lock);
Eugene (jno) Dvurechenski5e044312015-04-22 18:08:39 +02002112}
2113
2114/* Basic SCA to Extended SCA data copy routines */
2115static inline void sca_copy_entry(struct esca_entry *d, struct bsca_entry *s)
2116{
2117 d->sda = s->sda;
2118 d->sigp_ctrl.c = s->sigp_ctrl.c;
2119 d->sigp_ctrl.scn = s->sigp_ctrl.scn;
2120}
2121
2122static void sca_copy_b_to_e(struct esca_block *d, struct bsca_block *s)
2123{
2124 int i;
2125
2126 d->ipte_control = s->ipte_control;
2127 d->mcn[0] = s->mcn;
2128 for (i = 0; i < KVM_S390_BSCA_CPU_SLOTS; i++)
2129 sca_copy_entry(&d->cpu[i], &s->cpu[i]);
2130}
2131
2132static int sca_switch_to_extended(struct kvm *kvm)
2133{
2134 struct bsca_block *old_sca = kvm->arch.sca;
2135 struct esca_block *new_sca;
2136 struct kvm_vcpu *vcpu;
2137 unsigned int vcpu_idx;
2138 u32 scaol, scaoh;
2139
2140 new_sca = alloc_pages_exact(sizeof(*new_sca), GFP_KERNEL|__GFP_ZERO);
2141 if (!new_sca)
2142 return -ENOMEM;
2143
2144 scaoh = (u32)((u64)(new_sca) >> 32);
2145 scaol = (u32)(u64)(new_sca) & ~0x3fU;
2146
2147 kvm_s390_vcpu_block_all(kvm);
2148 write_lock(&kvm->arch.sca_lock);
2149
2150 sca_copy_b_to_e(new_sca, old_sca);
2151
2152 kvm_for_each_vcpu(vcpu_idx, vcpu, kvm) {
2153 vcpu->arch.sie_block->scaoh = scaoh;
2154 vcpu->arch.sie_block->scaol = scaol;
David Hildenbrand0c9d8682017-03-13 11:48:28 +01002155 vcpu->arch.sie_block->ecb2 |= ECB2_ESCA;
Eugene (jno) Dvurechenski5e044312015-04-22 18:08:39 +02002156 }
2157 kvm->arch.sca = new_sca;
2158 kvm->arch.use_esca = 1;
2159
2160 write_unlock(&kvm->arch.sca_lock);
2161 kvm_s390_vcpu_unblock_all(kvm);
2162
2163 free_page((unsigned long)old_sca);
2164
Christian Borntraeger8335713a2015-12-08 16:55:27 +01002165 VM_EVENT(kvm, 2, "Switched to ESCA (0x%pK -> 0x%pK)",
2166 old_sca, kvm->arch.sca);
Eugene (jno) Dvurechenski5e044312015-04-22 18:08:39 +02002167 return 0;
Eugene (jno) Dvurechenskia6e2f682015-04-21 15:31:59 +02002168}
2169
2170static int sca_can_add_vcpu(struct kvm *kvm, unsigned int id)
2171{
Eugene (jno) Dvurechenski5e044312015-04-22 18:08:39 +02002172 int rc;
2173
David Hildenbranda6940672016-08-08 22:39:32 +02002174 if (!kvm_s390_use_sca_entries()) {
2175 if (id < KVM_MAX_VCPUS)
2176 return true;
2177 return false;
2178 }
Eugene (jno) Dvurechenski5e044312015-04-22 18:08:39 +02002179 if (id < KVM_S390_BSCA_CPU_SLOTS)
2180 return true;
David Hildenbrand76a6dd72015-11-24 13:33:49 +01002181 if (!sclp.has_esca || !sclp.has_64bscao)
Eugene (jno) Dvurechenski5e044312015-04-22 18:08:39 +02002182 return false;
2183
2184 mutex_lock(&kvm->lock);
2185 rc = kvm->arch.use_esca ? 0 : sca_switch_to_extended(kvm);
2186 mutex_unlock(&kvm->lock);
2187
2188 return rc == 0 && id < KVM_S390_ESCA_CPU_SLOTS;
Eugene (jno) Dvurechenskia6e2f682015-04-21 15:31:59 +02002189}
2190
Heiko Carstensb0c632d2008-03-25 18:47:20 +01002191int kvm_arch_vcpu_init(struct kvm_vcpu *vcpu)
2192{
Dominik Dingel3c038e62013-10-07 17:11:48 +02002193 vcpu->arch.pfault_token = KVM_S390_PFAULT_TOKEN_INVALID;
2194 kvm_clear_async_pf_completion_queue(vcpu);
Christian Borntraeger59674c12012-01-11 11:20:33 +01002195 vcpu->run->kvm_valid_regs = KVM_SYNC_PREFIX |
2196 KVM_SYNC_GPRS |
Christian Borntraeger9eed07352012-02-06 10:59:07 +01002197 KVM_SYNC_ACRS |
David Hildenbrandb028ee32014-07-17 10:47:43 +02002198 KVM_SYNC_CRS |
2199 KVM_SYNC_ARCH0 |
2200 KVM_SYNC_PFAULT;
Julius Niedworok75a46152016-08-03 16:39:54 +02002201 kvm_s390_set_prefix(vcpu, 0);
Fan Zhangc6e5f162016-01-07 18:24:29 +08002202 if (test_kvm_facility(vcpu->kvm, 64))
2203 vcpu->run->kvm_valid_regs |= KVM_SYNC_RICCB;
Fan Zhang4e0b1ab2016-11-29 07:17:55 +01002204 if (test_kvm_facility(vcpu->kvm, 133))
2205 vcpu->run->kvm_valid_regs |= KVM_SYNC_GSCB;
David Hildenbrandf6aa6dc2016-01-15 14:11:46 +01002206 /* fprs can be synchronized via vrs, even if the guest has no vx. With
2207 * MACHINE_HAS_VX, (load|store)_fpu_regs() will work with vrs format.
2208 */
2209 if (MACHINE_HAS_VX)
Eric Farman68c55752014-06-09 10:57:26 -04002210 vcpu->run->kvm_valid_regs |= KVM_SYNC_VRS;
David Hildenbrand6fd8e672016-01-18 14:46:34 +01002211 else
2212 vcpu->run->kvm_valid_regs |= KVM_SYNC_FPRS;
Dominik Dingeldafd0322014-12-02 16:53:21 +01002213
2214 if (kvm_is_ucontrol(vcpu->kvm))
2215 return __kvm_ucontrol_vcpu_init(vcpu);
2216
Heiko Carstensb0c632d2008-03-25 18:47:20 +01002217 return 0;
2218}
2219
David Hildenbranddb0758b2016-02-15 09:42:25 +01002220/* needs disabled preemption to protect from TOD sync and vcpu_load/put */
2221static void __start_cpu_timer_accounting(struct kvm_vcpu *vcpu)
2222{
2223 WARN_ON_ONCE(vcpu->arch.cputm_start != 0);
David Hildenbrand9c23a132016-02-17 21:53:33 +01002224 raw_write_seqcount_begin(&vcpu->arch.cputm_seqcount);
David Hildenbranddb0758b2016-02-15 09:42:25 +01002225 vcpu->arch.cputm_start = get_tod_clock_fast();
David Hildenbrand9c23a132016-02-17 21:53:33 +01002226 raw_write_seqcount_end(&vcpu->arch.cputm_seqcount);
David Hildenbranddb0758b2016-02-15 09:42:25 +01002227}
2228
2229/* needs disabled preemption to protect from TOD sync and vcpu_load/put */
2230static void __stop_cpu_timer_accounting(struct kvm_vcpu *vcpu)
2231{
2232 WARN_ON_ONCE(vcpu->arch.cputm_start == 0);
David Hildenbrand9c23a132016-02-17 21:53:33 +01002233 raw_write_seqcount_begin(&vcpu->arch.cputm_seqcount);
David Hildenbranddb0758b2016-02-15 09:42:25 +01002234 vcpu->arch.sie_block->cputm -= get_tod_clock_fast() - vcpu->arch.cputm_start;
2235 vcpu->arch.cputm_start = 0;
David Hildenbrand9c23a132016-02-17 21:53:33 +01002236 raw_write_seqcount_end(&vcpu->arch.cputm_seqcount);
David Hildenbranddb0758b2016-02-15 09:42:25 +01002237}
2238
2239/* needs disabled preemption to protect from TOD sync and vcpu_load/put */
2240static void __enable_cpu_timer_accounting(struct kvm_vcpu *vcpu)
2241{
2242 WARN_ON_ONCE(vcpu->arch.cputm_enabled);
2243 vcpu->arch.cputm_enabled = true;
2244 __start_cpu_timer_accounting(vcpu);
2245}
2246
2247/* needs disabled preemption to protect from TOD sync and vcpu_load/put */
2248static void __disable_cpu_timer_accounting(struct kvm_vcpu *vcpu)
2249{
2250 WARN_ON_ONCE(!vcpu->arch.cputm_enabled);
2251 __stop_cpu_timer_accounting(vcpu);
2252 vcpu->arch.cputm_enabled = false;
2253}
2254
2255static void enable_cpu_timer_accounting(struct kvm_vcpu *vcpu)
2256{
2257 preempt_disable(); /* protect from TOD sync and vcpu_load/put */
2258 __enable_cpu_timer_accounting(vcpu);
2259 preempt_enable();
2260}
2261
2262static void disable_cpu_timer_accounting(struct kvm_vcpu *vcpu)
2263{
2264 preempt_disable(); /* protect from TOD sync and vcpu_load/put */
2265 __disable_cpu_timer_accounting(vcpu);
2266 preempt_enable();
2267}
2268
David Hildenbrand4287f242016-02-15 09:40:12 +01002269/* set the cpu timer - may only be called from the VCPU thread itself */
2270void kvm_s390_set_cpu_timer(struct kvm_vcpu *vcpu, __u64 cputm)
2271{
David Hildenbranddb0758b2016-02-15 09:42:25 +01002272 preempt_disable(); /* protect from TOD sync and vcpu_load/put */
David Hildenbrand9c23a132016-02-17 21:53:33 +01002273 raw_write_seqcount_begin(&vcpu->arch.cputm_seqcount);
David Hildenbranddb0758b2016-02-15 09:42:25 +01002274 if (vcpu->arch.cputm_enabled)
2275 vcpu->arch.cputm_start = get_tod_clock_fast();
David Hildenbrand4287f242016-02-15 09:40:12 +01002276 vcpu->arch.sie_block->cputm = cputm;
David Hildenbrand9c23a132016-02-17 21:53:33 +01002277 raw_write_seqcount_end(&vcpu->arch.cputm_seqcount);
David Hildenbranddb0758b2016-02-15 09:42:25 +01002278 preempt_enable();
David Hildenbrand4287f242016-02-15 09:40:12 +01002279}
2280
David Hildenbranddb0758b2016-02-15 09:42:25 +01002281/* update and get the cpu timer - can also be called from other VCPU threads */
David Hildenbrand4287f242016-02-15 09:40:12 +01002282__u64 kvm_s390_get_cpu_timer(struct kvm_vcpu *vcpu)
2283{
David Hildenbrand9c23a132016-02-17 21:53:33 +01002284 unsigned int seq;
David Hildenbranddb0758b2016-02-15 09:42:25 +01002285 __u64 value;
David Hildenbranddb0758b2016-02-15 09:42:25 +01002286
2287 if (unlikely(!vcpu->arch.cputm_enabled))
2288 return vcpu->arch.sie_block->cputm;
2289
David Hildenbrand9c23a132016-02-17 21:53:33 +01002290 preempt_disable(); /* protect from TOD sync and vcpu_load/put */
2291 do {
2292 seq = raw_read_seqcount(&vcpu->arch.cputm_seqcount);
2293 /*
2294 * If the writer would ever execute a read in the critical
2295 * section, e.g. in irq context, we have a deadlock.
2296 */
2297 WARN_ON_ONCE((seq & 1) && smp_processor_id() == vcpu->cpu);
2298 value = vcpu->arch.sie_block->cputm;
2299 /* if cputm_start is 0, accounting is being started/stopped */
2300 if (likely(vcpu->arch.cputm_start))
2301 value -= get_tod_clock_fast() - vcpu->arch.cputm_start;
2302 } while (read_seqcount_retry(&vcpu->arch.cputm_seqcount, seq & ~1));
2303 preempt_enable();
David Hildenbranddb0758b2016-02-15 09:42:25 +01002304 return value;
David Hildenbrand4287f242016-02-15 09:40:12 +01002305}
2306
Heiko Carstensb0c632d2008-03-25 18:47:20 +01002307void kvm_arch_vcpu_load(struct kvm_vcpu *vcpu, int cpu)
2308{
Hendrik Brueckner9977e882015-06-10 12:53:42 +02002309
David Hildenbrand37d9df92015-03-11 16:47:33 +01002310 gmap_enable(vcpu->arch.enabled_gmap);
Peter Zijlstra805de8f42015-04-24 01:12:32 +02002311 atomic_or(CPUSTAT_RUNNING, &vcpu->arch.sie_block->cpuflags);
David Hildenbrand5ebda312016-02-22 13:52:27 +01002312 if (vcpu->arch.cputm_enabled && !is_vcpu_idle(vcpu))
David Hildenbranddb0758b2016-02-15 09:42:25 +01002313 __start_cpu_timer_accounting(vcpu);
David Hildenbrand01a745a2016-02-12 20:41:56 +01002314 vcpu->cpu = cpu;
Heiko Carstensb0c632d2008-03-25 18:47:20 +01002315}
2316
2317void kvm_arch_vcpu_put(struct kvm_vcpu *vcpu)
2318{
David Hildenbrand01a745a2016-02-12 20:41:56 +01002319 vcpu->cpu = -1;
David Hildenbrand5ebda312016-02-22 13:52:27 +01002320 if (vcpu->arch.cputm_enabled && !is_vcpu_idle(vcpu))
David Hildenbranddb0758b2016-02-15 09:42:25 +01002321 __stop_cpu_timer_accounting(vcpu);
Peter Zijlstra805de8f42015-04-24 01:12:32 +02002322 atomic_andnot(CPUSTAT_RUNNING, &vcpu->arch.sie_block->cpuflags);
David Hildenbrand37d9df92015-03-11 16:47:33 +01002323 vcpu->arch.enabled_gmap = gmap_get_enabled();
2324 gmap_disable(vcpu->arch.enabled_gmap);
Hendrik Brueckner9977e882015-06-10 12:53:42 +02002325
Heiko Carstensb0c632d2008-03-25 18:47:20 +01002326}
2327
2328static void kvm_s390_vcpu_initial_reset(struct kvm_vcpu *vcpu)
2329{
2330 /* this equals initial cpu reset in pop, but we don't switch to ESA */
2331 vcpu->arch.sie_block->gpsw.mask = 0UL;
2332 vcpu->arch.sie_block->gpsw.addr = 0UL;
Christian Borntraeger8d26cf72012-01-11 11:19:32 +01002333 kvm_s390_set_prefix(vcpu, 0);
David Hildenbrand4287f242016-02-15 09:40:12 +01002334 kvm_s390_set_cpu_timer(vcpu, 0);
Heiko Carstensb0c632d2008-03-25 18:47:20 +01002335 vcpu->arch.sie_block->ckc = 0UL;
2336 vcpu->arch.sie_block->todpr = 0;
2337 memset(vcpu->arch.sie_block->gcr, 0, 16 * sizeof(__u64));
2338 vcpu->arch.sie_block->gcr[0] = 0xE0UL;
2339 vcpu->arch.sie_block->gcr[14] = 0xC2000000UL;
David Hildenbrand9abc2a02016-01-14 22:12:47 +01002340 /* make sure the new fpc will be lazily loaded */
2341 save_fpu_regs();
2342 current->thread.fpu.fpc = 0;
Heiko Carstensb0c632d2008-03-25 18:47:20 +01002343 vcpu->arch.sie_block->gbea = 1;
Christian Borntraeger672550f2014-02-10 15:32:19 +01002344 vcpu->arch.sie_block->pp = 0;
Dominik Dingel3c038e62013-10-07 17:11:48 +02002345 vcpu->arch.pfault_token = KVM_S390_PFAULT_TOKEN_INVALID;
2346 kvm_clear_async_pf_completion_queue(vcpu);
David Hildenbrand6352e4d2014-04-10 17:35:00 +02002347 if (!kvm_s390_user_cpu_state_ctrl(vcpu->kvm))
2348 kvm_s390_vcpu_stop(vcpu);
Jens Freimann2ed10cc2014-02-11 13:48:07 +01002349 kvm_s390_clear_local_irqs(vcpu);
Heiko Carstensb0c632d2008-03-25 18:47:20 +01002350}
2351
Dominik Dingel31928aa2014-12-04 15:47:07 +01002352void kvm_arch_vcpu_postcreate(struct kvm_vcpu *vcpu)
Marcelo Tosatti42897d82012-11-27 23:29:02 -02002353{
Jason J. Herne72f25022014-11-25 09:46:02 -05002354 mutex_lock(&vcpu->kvm->lock);
Fan Zhangfdf03652015-05-13 10:58:41 +02002355 preempt_disable();
Jason J. Herne72f25022014-11-25 09:46:02 -05002356 vcpu->arch.sie_block->epoch = vcpu->kvm->arch.epoch;
Fan Zhangfdf03652015-05-13 10:58:41 +02002357 preempt_enable();
Jason J. Herne72f25022014-11-25 09:46:02 -05002358 mutex_unlock(&vcpu->kvm->lock);
David Hildenbrand25508822015-10-12 16:27:23 +02002359 if (!kvm_is_ucontrol(vcpu->kvm)) {
Dominik Dingeldafd0322014-12-02 16:53:21 +01002360 vcpu->arch.gmap = vcpu->kvm->arch.gmap;
David Hildenbrandeaa78f32015-10-12 16:29:01 +02002361 sca_add_vcpu(vcpu);
David Hildenbrand25508822015-10-12 16:27:23 +02002362 }
David Hildenbrand6502a342016-06-21 14:19:51 +02002363 if (test_kvm_facility(vcpu->kvm, 74) || vcpu->kvm->arch.user_instr0)
2364 vcpu->arch.sie_block->ictl |= ICTL_OPEREXC;
David Hildenbrand37d9df92015-03-11 16:47:33 +01002365 /* make vcpu_load load the right gmap on the first trigger */
2366 vcpu->arch.enabled_gmap = vcpu->arch.gmap;
Marcelo Tosatti42897d82012-11-27 23:29:02 -02002367}
2368
Tony Krowiak5102ee82014-06-27 14:46:01 -04002369static void kvm_s390_vcpu_crypto_setup(struct kvm_vcpu *vcpu)
2370{
Michael Mueller9d8d5782015-02-02 15:42:51 +01002371 if (!test_kvm_facility(vcpu->kvm, 76))
Tony Krowiak5102ee82014-06-27 14:46:01 -04002372 return;
2373
Tony Krowiaka374e892014-09-03 10:13:53 +02002374 vcpu->arch.sie_block->ecb3 &= ~(ECB3_AES | ECB3_DEA);
2375
2376 if (vcpu->kvm->arch.crypto.aes_kw)
2377 vcpu->arch.sie_block->ecb3 |= ECB3_AES;
2378 if (vcpu->kvm->arch.crypto.dea_kw)
2379 vcpu->arch.sie_block->ecb3 |= ECB3_DEA;
2380
Tony Krowiak5102ee82014-06-27 14:46:01 -04002381 vcpu->arch.sie_block->crycbd = vcpu->kvm->arch.crypto.crycbd;
2382}
2383
Dominik Dingelb31605c2014-03-25 13:47:11 +01002384void kvm_s390_vcpu_unsetup_cmma(struct kvm_vcpu *vcpu)
2385{
2386 free_page(vcpu->arch.sie_block->cbrlo);
2387 vcpu->arch.sie_block->cbrlo = 0;
2388}
2389
2390int kvm_s390_vcpu_setup_cmma(struct kvm_vcpu *vcpu)
2391{
2392 vcpu->arch.sie_block->cbrlo = get_zeroed_page(GFP_KERNEL);
2393 if (!vcpu->arch.sie_block->cbrlo)
2394 return -ENOMEM;
2395
David Hildenbrand0c9d8682017-03-13 11:48:28 +01002396 vcpu->arch.sie_block->ecb2 &= ~ECB2_PFMFI;
Dominik Dingelb31605c2014-03-25 13:47:11 +01002397 return 0;
2398}
2399
Michael Mueller91520f12015-02-27 14:32:11 +01002400static void kvm_s390_vcpu_setup_model(struct kvm_vcpu *vcpu)
2401{
2402 struct kvm_s390_cpu_model *model = &vcpu->kvm->arch.model;
2403
Michael Mueller91520f12015-02-27 14:32:11 +01002404 vcpu->arch.sie_block->ibc = model->ibc;
David Hildenbrand80bc79d2015-12-02 09:43:29 +01002405 if (test_kvm_facility(vcpu->kvm, 7))
David Hildenbrandc54f0d62015-12-02 08:53:52 +01002406 vcpu->arch.sie_block->fac = (u32)(u64) model->fac_list;
Michael Mueller91520f12015-02-27 14:32:11 +01002407}
2408
Heiko Carstensb0c632d2008-03-25 18:47:20 +01002409int kvm_arch_vcpu_setup(struct kvm_vcpu *vcpu)
2410{
Dominik Dingelb31605c2014-03-25 13:47:11 +01002411 int rc = 0;
Konstantin Weitzb31288f2013-04-17 17:36:29 +02002412
Cornelia Huck9e6dabe2011-11-17 11:00:41 +01002413 atomic_set(&vcpu->arch.sie_block->cpuflags, CPUSTAT_ZARCH |
2414 CPUSTAT_SM |
Guenther Hutzla4a4f192015-03-31 14:39:49 +02002415 CPUSTAT_STOPPED);
2416
Guenther Hutzl53df84f2015-02-18 11:13:03 +01002417 if (test_kvm_facility(vcpu->kvm, 78))
Peter Zijlstra805de8f42015-04-24 01:12:32 +02002418 atomic_or(CPUSTAT_GED2, &vcpu->arch.sie_block->cpuflags);
Guenther Hutzl53df84f2015-02-18 11:13:03 +01002419 else if (test_kvm_facility(vcpu->kvm, 8))
Peter Zijlstra805de8f42015-04-24 01:12:32 +02002420 atomic_or(CPUSTAT_GED, &vcpu->arch.sie_block->cpuflags);
Guenther Hutzla4a4f192015-03-31 14:39:49 +02002421
Michael Mueller91520f12015-02-27 14:32:11 +01002422 kvm_s390_vcpu_setup_model(vcpu);
2423
David Hildenbrandbdab09f2016-04-12 11:07:49 +02002424 /* pgste_set_pte has special handling for !MACHINE_HAS_ESOP */
2425 if (MACHINE_HAS_ESOP)
David Hildenbrand0c9d8682017-03-13 11:48:28 +01002426 vcpu->arch.sie_block->ecb |= ECB_HOSTPROTINT;
David Hildenbrandbd50e8e2016-03-04 12:23:55 +01002427 if (test_kvm_facility(vcpu->kvm, 9))
David Hildenbrand0c9d8682017-03-13 11:48:28 +01002428 vcpu->arch.sie_block->ecb |= ECB_SRSI;
David Hildenbrandf597d242016-04-22 16:26:49 +02002429 if (test_kvm_facility(vcpu->kvm, 73))
David Hildenbrand0c9d8682017-03-13 11:48:28 +01002430 vcpu->arch.sie_block->ecb |= ECB_TE;
Michael Mueller7feb6bb2013-06-28 13:30:24 +02002431
David Hildenbrand873b4252016-04-04 15:53:47 +02002432 if (test_kvm_facility(vcpu->kvm, 8) && sclp.has_pfmfi)
David Hildenbrand0c9d8682017-03-13 11:48:28 +01002433 vcpu->arch.sie_block->ecb2 |= ECB2_PFMFI;
Janosch Frankcd1836f2016-08-04 09:57:36 +02002434 if (test_kvm_facility(vcpu->kvm, 130))
David Hildenbrand0c9d8682017-03-13 11:48:28 +01002435 vcpu->arch.sie_block->ecb2 |= ECB2_IEP;
2436 vcpu->arch.sie_block->eca = ECA_MVPGI | ECA_PROTEXCI;
David Hildenbrand48ee7d32016-04-04 15:49:34 +02002437 if (sclp.has_cei)
David Hildenbrand0c9d8682017-03-13 11:48:28 +01002438 vcpu->arch.sie_block->eca |= ECA_CEI;
David Hildenbrand11ad65b2016-04-04 15:46:26 +02002439 if (sclp.has_ib)
David Hildenbrand0c9d8682017-03-13 11:48:28 +01002440 vcpu->arch.sie_block->eca |= ECA_IB;
David Hildenbrand37c5f6c2015-05-06 13:18:59 +02002441 if (sclp.has_siif)
David Hildenbrand0c9d8682017-03-13 11:48:28 +01002442 vcpu->arch.sie_block->eca |= ECA_SII;
David Hildenbrand37c5f6c2015-05-06 13:18:59 +02002443 if (sclp.has_sigpif)
David Hildenbrand0c9d8682017-03-13 11:48:28 +01002444 vcpu->arch.sie_block->eca |= ECA_SIGPI;
Michael Mueller18280d82015-03-16 16:05:41 +01002445 if (test_kvm_facility(vcpu->kvm, 129)) {
David Hildenbrand0c9d8682017-03-13 11:48:28 +01002446 vcpu->arch.sie_block->eca |= ECA_VX;
2447 vcpu->arch.sie_block->ecd |= ECD_HOSTREGMGMT;
Eric Farman13211ea2014-04-30 13:39:46 -04002448 }
Collin L. Walling8fa16962016-07-26 15:29:44 -04002449 if (test_kvm_facility(vcpu->kvm, 139))
2450 vcpu->arch.sie_block->ecd |= ECD_MEF;
2451
Fan Zhang4e0b1ab2016-11-29 07:17:55 +01002452 vcpu->arch.sie_block->sdnxo = ((unsigned long) &vcpu->run->s.regs.sdnx)
2453 | SDNXC;
Fan Zhangc6e5f162016-01-07 18:24:29 +08002454 vcpu->arch.sie_block->riccbd = (unsigned long) &vcpu->run->s.regs.riccb;
Farhan Ali730cd632017-02-24 16:12:56 -05002455
2456 if (sclp.has_kss)
2457 atomic_or(CPUSTAT_KSS, &vcpu->arch.sie_block->cpuflags);
2458 else
2459 vcpu->arch.sie_block->ictl |= ICTL_ISKE | ICTL_SSKE | ICTL_RRBE;
Matthew Rosato5a5e6532013-01-29 11:48:20 -05002460
Dominik Dingele6db1d62015-05-07 15:41:57 +02002461 if (vcpu->kvm->arch.use_cmma) {
Dominik Dingelb31605c2014-03-25 13:47:11 +01002462 rc = kvm_s390_vcpu_setup_cmma(vcpu);
2463 if (rc)
2464 return rc;
Konstantin Weitzb31288f2013-04-17 17:36:29 +02002465 }
David Hildenbrand0ac96caf2014-12-12 15:17:31 +01002466 hrtimer_init(&vcpu->arch.ckc_timer, CLOCK_MONOTONIC, HRTIMER_MODE_REL);
Christian Borntraegerca872302009-05-12 17:21:49 +02002467 vcpu->arch.ckc_timer.function = kvm_s390_idle_wakeup;
Michael Mueller9d8d5782015-02-02 15:42:51 +01002468
Tony Krowiak5102ee82014-06-27 14:46:01 -04002469 kvm_s390_vcpu_crypto_setup(vcpu);
2470
Dominik Dingelb31605c2014-03-25 13:47:11 +01002471 return rc;
Heiko Carstensb0c632d2008-03-25 18:47:20 +01002472}
2473
2474struct kvm_vcpu *kvm_arch_vcpu_create(struct kvm *kvm,
2475 unsigned int id)
2476{
Carsten Otte4d475552011-10-18 12:27:12 +02002477 struct kvm_vcpu *vcpu;
Michael Mueller7feb6bb2013-06-28 13:30:24 +02002478 struct sie_page *sie_page;
Carsten Otte4d475552011-10-18 12:27:12 +02002479 int rc = -EINVAL;
Heiko Carstensb0c632d2008-03-25 18:47:20 +01002480
David Hildenbrand42158252015-10-12 12:57:22 +02002481 if (!kvm_is_ucontrol(kvm) && !sca_can_add_vcpu(kvm, id))
Carsten Otte4d475552011-10-18 12:27:12 +02002482 goto out;
2483
2484 rc = -ENOMEM;
2485
Michael Muellerb110fea2013-06-12 13:54:54 +02002486 vcpu = kmem_cache_zalloc(kvm_vcpu_cache, GFP_KERNEL);
Heiko Carstensb0c632d2008-03-25 18:47:20 +01002487 if (!vcpu)
Carsten Otte4d475552011-10-18 12:27:12 +02002488 goto out;
Heiko Carstensb0c632d2008-03-25 18:47:20 +01002489
QingFeng Haoda72ca42017-06-07 11:41:19 +02002490 BUILD_BUG_ON(sizeof(struct sie_page) != 4096);
Michael Mueller7feb6bb2013-06-28 13:30:24 +02002491 sie_page = (struct sie_page *) get_zeroed_page(GFP_KERNEL);
2492 if (!sie_page)
Heiko Carstensb0c632d2008-03-25 18:47:20 +01002493 goto out_free_cpu;
2494
Michael Mueller7feb6bb2013-06-28 13:30:24 +02002495 vcpu->arch.sie_block = &sie_page->sie_block;
2496 vcpu->arch.sie_block->itdba = (unsigned long) &sie_page->itdb;
2497
David Hildenbrandefed1102015-04-16 12:32:41 +02002498 /* the real guest size will always be smaller than msl */
2499 vcpu->arch.sie_block->mso = 0;
2500 vcpu->arch.sie_block->msl = sclp.hamax;
2501
Heiko Carstensb0c632d2008-03-25 18:47:20 +01002502 vcpu->arch.sie_block->icpua = id;
Carsten Otteba5c1e92008-03-25 18:47:26 +01002503 spin_lock_init(&vcpu->arch.local_int.lock);
Carsten Otteba5c1e92008-03-25 18:47:26 +01002504 vcpu->arch.local_int.float_int = &kvm->arch.float_int;
Christian Borntraegerd0321a22013-06-12 13:54:55 +02002505 vcpu->arch.local_int.wq = &vcpu->wq;
Christian Borntraeger5288fbf2008-03-25 18:47:31 +01002506 vcpu->arch.local_int.cpuflags = &vcpu->arch.sie_block->cpuflags;
David Hildenbrand9c23a132016-02-17 21:53:33 +01002507 seqcount_init(&vcpu->arch.cputm_seqcount);
Carsten Otteba5c1e92008-03-25 18:47:26 +01002508
Heiko Carstensb0c632d2008-03-25 18:47:20 +01002509 rc = kvm_vcpu_init(vcpu, kvm, id);
2510 if (rc)
David Hildenbrand9abc2a02016-01-14 22:12:47 +01002511 goto out_free_sie_block;
Christian Borntraeger8335713a2015-12-08 16:55:27 +01002512 VM_EVENT(kvm, 3, "create cpu %d at 0x%pK, sie block at 0x%pK", id, vcpu,
Heiko Carstensb0c632d2008-03-25 18:47:20 +01002513 vcpu->arch.sie_block);
Cornelia Huckade38c32012-07-23 17:20:30 +02002514 trace_kvm_s390_create_vcpu(id, vcpu, vcpu->arch.sie_block);
Heiko Carstensb0c632d2008-03-25 18:47:20 +01002515
Heiko Carstensb0c632d2008-03-25 18:47:20 +01002516 return vcpu;
Wei Yongjun7b06bf22010-03-09 14:37:53 +08002517out_free_sie_block:
2518 free_page((unsigned long)(vcpu->arch.sie_block));
Heiko Carstensb0c632d2008-03-25 18:47:20 +01002519out_free_cpu:
Michael Muellerb110fea2013-06-12 13:54:54 +02002520 kmem_cache_free(kvm_vcpu_cache, vcpu);
Carsten Otte4d475552011-10-18 12:27:12 +02002521out:
Heiko Carstensb0c632d2008-03-25 18:47:20 +01002522 return ERR_PTR(rc);
2523}
2524
Heiko Carstensb0c632d2008-03-25 18:47:20 +01002525int kvm_arch_vcpu_runnable(struct kvm_vcpu *vcpu)
2526{
David Hildenbrand9a022062014-08-05 17:40:47 +02002527 return kvm_s390_vcpu_has_irq(vcpu, 0);
Heiko Carstensb0c632d2008-03-25 18:47:20 +01002528}
2529
Christian Borntraeger27406cd2015-04-14 12:17:34 +02002530void kvm_s390_vcpu_block(struct kvm_vcpu *vcpu)
Christian Borntraeger49b99e12013-05-17 14:41:35 +02002531{
Peter Zijlstra805de8f42015-04-24 01:12:32 +02002532 atomic_or(PROG_BLOCK_SIE, &vcpu->arch.sie_block->prog20);
David Hildenbrand61a6df52015-05-12 08:41:40 +02002533 exit_sie(vcpu);
Christian Borntraeger49b99e12013-05-17 14:41:35 +02002534}
2535
Christian Borntraeger27406cd2015-04-14 12:17:34 +02002536void kvm_s390_vcpu_unblock(struct kvm_vcpu *vcpu)
Christian Borntraeger49b99e12013-05-17 14:41:35 +02002537{
Peter Zijlstra805de8f42015-04-24 01:12:32 +02002538 atomic_andnot(PROG_BLOCK_SIE, &vcpu->arch.sie_block->prog20);
Christian Borntraeger49b99e12013-05-17 14:41:35 +02002539}
2540
Christian Borntraeger8e236542015-04-09 13:49:04 +02002541static void kvm_s390_vcpu_request(struct kvm_vcpu *vcpu)
2542{
Peter Zijlstra805de8f42015-04-24 01:12:32 +02002543 atomic_or(PROG_REQUEST, &vcpu->arch.sie_block->prog20);
David Hildenbrand61a6df52015-05-12 08:41:40 +02002544 exit_sie(vcpu);
Christian Borntraeger8e236542015-04-09 13:49:04 +02002545}
2546
2547static void kvm_s390_vcpu_request_handled(struct kvm_vcpu *vcpu)
2548{
Jason J. Herne9bf9fde2015-09-16 09:13:50 -04002549 atomic_andnot(PROG_REQUEST, &vcpu->arch.sie_block->prog20);
Christian Borntraeger8e236542015-04-09 13:49:04 +02002550}
2551
Christian Borntraeger49b99e12013-05-17 14:41:35 +02002552/*
2553 * Kick a guest cpu out of SIE and wait until SIE is not running.
2554 * If the CPU is not running (e.g. waiting as idle) the function will
2555 * return immediately. */
2556void exit_sie(struct kvm_vcpu *vcpu)
2557{
Peter Zijlstra805de8f42015-04-24 01:12:32 +02002558 atomic_or(CPUSTAT_STOP_INT, &vcpu->arch.sie_block->cpuflags);
Christian Borntraeger49b99e12013-05-17 14:41:35 +02002559 while (vcpu->arch.sie_block->prog0c & PROG_IN_SIE)
2560 cpu_relax();
2561}
2562
Christian Borntraeger8e236542015-04-09 13:49:04 +02002563/* Kick a guest cpu out of SIE to process a request synchronously */
2564void kvm_s390_sync_request(int req, struct kvm_vcpu *vcpu)
Christian Borntraeger49b99e12013-05-17 14:41:35 +02002565{
Christian Borntraeger8e236542015-04-09 13:49:04 +02002566 kvm_make_request(req, vcpu);
2567 kvm_s390_vcpu_request(vcpu);
Christian Borntraeger49b99e12013-05-17 14:41:35 +02002568}
2569
Martin Schwidefsky414d3b02016-03-08 11:52:54 +01002570static void kvm_gmap_notifier(struct gmap *gmap, unsigned long start,
2571 unsigned long end)
Christian Borntraeger2c70fe42013-05-17 14:41:36 +02002572{
Christian Borntraeger2c70fe42013-05-17 14:41:36 +02002573 struct kvm *kvm = gmap->private;
2574 struct kvm_vcpu *vcpu;
Martin Schwidefsky414d3b02016-03-08 11:52:54 +01002575 unsigned long prefix;
2576 int i;
Christian Borntraeger2c70fe42013-05-17 14:41:36 +02002577
David Hildenbrand65d0b0d2015-04-27 16:29:34 +02002578 if (gmap_is_shadow(gmap))
2579 return;
Martin Schwidefsky414d3b02016-03-08 11:52:54 +01002580 if (start >= 1UL << 31)
2581 /* We are only interested in prefix pages */
2582 return;
Christian Borntraeger2c70fe42013-05-17 14:41:36 +02002583 kvm_for_each_vcpu(i, vcpu, kvm) {
2584 /* match against both prefix pages */
Martin Schwidefsky414d3b02016-03-08 11:52:54 +01002585 prefix = kvm_s390_get_prefix(vcpu);
2586 if (prefix <= end && start <= prefix + 2*PAGE_SIZE - 1) {
2587 VCPU_EVENT(vcpu, 2, "gmap notifier for %lx-%lx",
2588 start, end);
Christian Borntraeger8e236542015-04-09 13:49:04 +02002589 kvm_s390_sync_request(KVM_REQ_MMU_RELOAD, vcpu);
Christian Borntraeger2c70fe42013-05-17 14:41:36 +02002590 }
2591 }
2592}
2593
Christoffer Dallb6d33832012-03-08 16:44:24 -05002594int kvm_arch_vcpu_should_kick(struct kvm_vcpu *vcpu)
2595{
2596 /* kvm common code refers to this, but never calls it */
2597 BUG();
2598 return 0;
2599}
2600
Carsten Otte14eebd92012-05-15 14:15:26 +02002601static int kvm_arch_vcpu_ioctl_get_one_reg(struct kvm_vcpu *vcpu,
2602 struct kvm_one_reg *reg)
2603{
2604 int r = -EINVAL;
2605
2606 switch (reg->id) {
Carsten Otte29b7c712012-05-15 14:15:27 +02002607 case KVM_REG_S390_TODPR:
2608 r = put_user(vcpu->arch.sie_block->todpr,
2609 (u32 __user *)reg->addr);
2610 break;
2611 case KVM_REG_S390_EPOCHDIFF:
2612 r = put_user(vcpu->arch.sie_block->epoch,
2613 (u64 __user *)reg->addr);
2614 break;
Jason J. herne46a6dd12012-05-15 14:15:28 +02002615 case KVM_REG_S390_CPU_TIMER:
David Hildenbrand4287f242016-02-15 09:40:12 +01002616 r = put_user(kvm_s390_get_cpu_timer(vcpu),
Jason J. herne46a6dd12012-05-15 14:15:28 +02002617 (u64 __user *)reg->addr);
2618 break;
2619 case KVM_REG_S390_CLOCK_COMP:
2620 r = put_user(vcpu->arch.sie_block->ckc,
2621 (u64 __user *)reg->addr);
2622 break;
Dominik Dingel536336c2013-09-30 10:55:33 +02002623 case KVM_REG_S390_PFTOKEN:
2624 r = put_user(vcpu->arch.pfault_token,
2625 (u64 __user *)reg->addr);
2626 break;
2627 case KVM_REG_S390_PFCOMPARE:
2628 r = put_user(vcpu->arch.pfault_compare,
2629 (u64 __user *)reg->addr);
2630 break;
2631 case KVM_REG_S390_PFSELECT:
2632 r = put_user(vcpu->arch.pfault_select,
2633 (u64 __user *)reg->addr);
2634 break;
Christian Borntraeger672550f2014-02-10 15:32:19 +01002635 case KVM_REG_S390_PP:
2636 r = put_user(vcpu->arch.sie_block->pp,
2637 (u64 __user *)reg->addr);
2638 break;
Christian Borntraegerafa45ff2014-02-10 15:39:23 +01002639 case KVM_REG_S390_GBEA:
2640 r = put_user(vcpu->arch.sie_block->gbea,
2641 (u64 __user *)reg->addr);
2642 break;
Carsten Otte14eebd92012-05-15 14:15:26 +02002643 default:
2644 break;
2645 }
2646
2647 return r;
2648}
2649
2650static int kvm_arch_vcpu_ioctl_set_one_reg(struct kvm_vcpu *vcpu,
2651 struct kvm_one_reg *reg)
2652{
2653 int r = -EINVAL;
David Hildenbrand4287f242016-02-15 09:40:12 +01002654 __u64 val;
Carsten Otte14eebd92012-05-15 14:15:26 +02002655
2656 switch (reg->id) {
Carsten Otte29b7c712012-05-15 14:15:27 +02002657 case KVM_REG_S390_TODPR:
2658 r = get_user(vcpu->arch.sie_block->todpr,
2659 (u32 __user *)reg->addr);
2660 break;
2661 case KVM_REG_S390_EPOCHDIFF:
2662 r = get_user(vcpu->arch.sie_block->epoch,
2663 (u64 __user *)reg->addr);
2664 break;
Jason J. herne46a6dd12012-05-15 14:15:28 +02002665 case KVM_REG_S390_CPU_TIMER:
David Hildenbrand4287f242016-02-15 09:40:12 +01002666 r = get_user(val, (u64 __user *)reg->addr);
2667 if (!r)
2668 kvm_s390_set_cpu_timer(vcpu, val);
Jason J. herne46a6dd12012-05-15 14:15:28 +02002669 break;
2670 case KVM_REG_S390_CLOCK_COMP:
2671 r = get_user(vcpu->arch.sie_block->ckc,
2672 (u64 __user *)reg->addr);
2673 break;
Dominik Dingel536336c2013-09-30 10:55:33 +02002674 case KVM_REG_S390_PFTOKEN:
2675 r = get_user(vcpu->arch.pfault_token,
2676 (u64 __user *)reg->addr);
David Hildenbrand9fbd8082014-10-09 15:01:38 +02002677 if (vcpu->arch.pfault_token == KVM_S390_PFAULT_TOKEN_INVALID)
2678 kvm_clear_async_pf_completion_queue(vcpu);
Dominik Dingel536336c2013-09-30 10:55:33 +02002679 break;
2680 case KVM_REG_S390_PFCOMPARE:
2681 r = get_user(vcpu->arch.pfault_compare,
2682 (u64 __user *)reg->addr);
2683 break;
2684 case KVM_REG_S390_PFSELECT:
2685 r = get_user(vcpu->arch.pfault_select,
2686 (u64 __user *)reg->addr);
2687 break;
Christian Borntraeger672550f2014-02-10 15:32:19 +01002688 case KVM_REG_S390_PP:
2689 r = get_user(vcpu->arch.sie_block->pp,
2690 (u64 __user *)reg->addr);
2691 break;
Christian Borntraegerafa45ff2014-02-10 15:39:23 +01002692 case KVM_REG_S390_GBEA:
2693 r = get_user(vcpu->arch.sie_block->gbea,
2694 (u64 __user *)reg->addr);
2695 break;
Carsten Otte14eebd92012-05-15 14:15:26 +02002696 default:
2697 break;
2698 }
2699
2700 return r;
2701}
Christoffer Dallb6d33832012-03-08 16:44:24 -05002702
Heiko Carstensb0c632d2008-03-25 18:47:20 +01002703static int kvm_arch_vcpu_ioctl_initial_reset(struct kvm_vcpu *vcpu)
2704{
Heiko Carstensb0c632d2008-03-25 18:47:20 +01002705 kvm_s390_vcpu_initial_reset(vcpu);
Heiko Carstensb0c632d2008-03-25 18:47:20 +01002706 return 0;
2707}
2708
2709int kvm_arch_vcpu_ioctl_set_regs(struct kvm_vcpu *vcpu, struct kvm_regs *regs)
2710{
Christian Borntraeger5a32c1a2012-01-11 11:20:32 +01002711 memcpy(&vcpu->run->s.regs.gprs, &regs->gprs, sizeof(regs->gprs));
Heiko Carstensb0c632d2008-03-25 18:47:20 +01002712 return 0;
2713}
2714
2715int kvm_arch_vcpu_ioctl_get_regs(struct kvm_vcpu *vcpu, struct kvm_regs *regs)
2716{
Christian Borntraeger5a32c1a2012-01-11 11:20:32 +01002717 memcpy(&regs->gprs, &vcpu->run->s.regs.gprs, sizeof(regs->gprs));
Heiko Carstensb0c632d2008-03-25 18:47:20 +01002718 return 0;
2719}
2720
2721int kvm_arch_vcpu_ioctl_set_sregs(struct kvm_vcpu *vcpu,
2722 struct kvm_sregs *sregs)
2723{
Christian Borntraeger59674c12012-01-11 11:20:33 +01002724 memcpy(&vcpu->run->s.regs.acrs, &sregs->acrs, sizeof(sregs->acrs));
Heiko Carstensb0c632d2008-03-25 18:47:20 +01002725 memcpy(&vcpu->arch.sie_block->gcr, &sregs->crs, sizeof(sregs->crs));
Heiko Carstensb0c632d2008-03-25 18:47:20 +01002726 return 0;
2727}
2728
2729int kvm_arch_vcpu_ioctl_get_sregs(struct kvm_vcpu *vcpu,
2730 struct kvm_sregs *sregs)
2731{
Christian Borntraeger59674c12012-01-11 11:20:33 +01002732 memcpy(&sregs->acrs, &vcpu->run->s.regs.acrs, sizeof(sregs->acrs));
Heiko Carstensb0c632d2008-03-25 18:47:20 +01002733 memcpy(&sregs->crs, &vcpu->arch.sie_block->gcr, sizeof(sregs->crs));
Heiko Carstensb0c632d2008-03-25 18:47:20 +01002734 return 0;
2735}
2736
2737int kvm_arch_vcpu_ioctl_set_fpu(struct kvm_vcpu *vcpu, struct kvm_fpu *fpu)
2738{
Martin Schwidefsky4725c862013-10-15 16:08:34 +02002739 if (test_fp_ctl(fpu->fpc))
2740 return -EINVAL;
Christian Borntraegere1788bb2016-11-22 09:29:38 +01002741 vcpu->run->s.regs.fpc = fpu->fpc;
David Hildenbrand9abc2a02016-01-14 22:12:47 +01002742 if (MACHINE_HAS_VX)
David Hildenbranda7d4b8f2016-08-16 14:38:24 +02002743 convert_fp_to_vx((__vector128 *) vcpu->run->s.regs.vrs,
2744 (freg_t *) fpu->fprs);
David Hildenbrand9abc2a02016-01-14 22:12:47 +01002745 else
David Hildenbranda7d4b8f2016-08-16 14:38:24 +02002746 memcpy(vcpu->run->s.regs.fprs, &fpu->fprs, sizeof(fpu->fprs));
Heiko Carstensb0c632d2008-03-25 18:47:20 +01002747 return 0;
2748}
2749
2750int kvm_arch_vcpu_ioctl_get_fpu(struct kvm_vcpu *vcpu, struct kvm_fpu *fpu)
2751{
David Hildenbrand9abc2a02016-01-14 22:12:47 +01002752 /* make sure we have the latest values */
2753 save_fpu_regs();
2754 if (MACHINE_HAS_VX)
David Hildenbranda7d4b8f2016-08-16 14:38:24 +02002755 convert_vx_to_fp((freg_t *) fpu->fprs,
2756 (__vector128 *) vcpu->run->s.regs.vrs);
David Hildenbrand9abc2a02016-01-14 22:12:47 +01002757 else
David Hildenbranda7d4b8f2016-08-16 14:38:24 +02002758 memcpy(fpu->fprs, vcpu->run->s.regs.fprs, sizeof(fpu->fprs));
Christian Borntraegere1788bb2016-11-22 09:29:38 +01002759 fpu->fpc = vcpu->run->s.regs.fpc;
Heiko Carstensb0c632d2008-03-25 18:47:20 +01002760 return 0;
2761}
2762
2763static int kvm_arch_vcpu_ioctl_set_initial_psw(struct kvm_vcpu *vcpu, psw_t psw)
2764{
2765 int rc = 0;
2766
David Hildenbrand7a42fdc2014-05-05 16:26:19 +02002767 if (!is_vcpu_stopped(vcpu))
Heiko Carstensb0c632d2008-03-25 18:47:20 +01002768 rc = -EBUSY;
Carsten Otted7b0b5e2009-11-19 14:21:16 +01002769 else {
2770 vcpu->run->psw_mask = psw.mask;
2771 vcpu->run->psw_addr = psw.addr;
2772 }
Heiko Carstensb0c632d2008-03-25 18:47:20 +01002773 return rc;
2774}
2775
2776int kvm_arch_vcpu_ioctl_translate(struct kvm_vcpu *vcpu,
2777 struct kvm_translation *tr)
2778{
2779 return -EINVAL; /* not implemented yet */
2780}
2781
David Hildenbrand27291e22014-01-23 12:26:52 +01002782#define VALID_GUESTDBG_FLAGS (KVM_GUESTDBG_SINGLESTEP | \
2783 KVM_GUESTDBG_USE_HW_BP | \
2784 KVM_GUESTDBG_ENABLE)
2785
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002786int kvm_arch_vcpu_ioctl_set_guest_debug(struct kvm_vcpu *vcpu,
2787 struct kvm_guest_debug *dbg)
Heiko Carstensb0c632d2008-03-25 18:47:20 +01002788{
David Hildenbrand27291e22014-01-23 12:26:52 +01002789 int rc = 0;
2790
2791 vcpu->guest_debug = 0;
2792 kvm_s390_clear_bp_data(vcpu);
2793
David Hildenbrand2de3bfc2014-05-20 17:25:20 +02002794 if (dbg->control & ~VALID_GUESTDBG_FLAGS)
David Hildenbrand27291e22014-01-23 12:26:52 +01002795 return -EINVAL;
David Hildenbrand89b5b4d2015-11-24 13:47:13 +01002796 if (!sclp.has_gpere)
2797 return -EINVAL;
David Hildenbrand27291e22014-01-23 12:26:52 +01002798
2799 if (dbg->control & KVM_GUESTDBG_ENABLE) {
2800 vcpu->guest_debug = dbg->control;
2801 /* enforce guest PER */
Peter Zijlstra805de8f42015-04-24 01:12:32 +02002802 atomic_or(CPUSTAT_P, &vcpu->arch.sie_block->cpuflags);
David Hildenbrand27291e22014-01-23 12:26:52 +01002803
2804 if (dbg->control & KVM_GUESTDBG_USE_HW_BP)
2805 rc = kvm_s390_import_bp_data(vcpu, dbg);
2806 } else {
Peter Zijlstra805de8f42015-04-24 01:12:32 +02002807 atomic_andnot(CPUSTAT_P, &vcpu->arch.sie_block->cpuflags);
David Hildenbrand27291e22014-01-23 12:26:52 +01002808 vcpu->arch.guestdbg.last_bp = 0;
2809 }
2810
2811 if (rc) {
2812 vcpu->guest_debug = 0;
2813 kvm_s390_clear_bp_data(vcpu);
Peter Zijlstra805de8f42015-04-24 01:12:32 +02002814 atomic_andnot(CPUSTAT_P, &vcpu->arch.sie_block->cpuflags);
David Hildenbrand27291e22014-01-23 12:26:52 +01002815 }
2816
2817 return rc;
Heiko Carstensb0c632d2008-03-25 18:47:20 +01002818}
2819
Marcelo Tosatti62d9f0d2008-04-11 13:24:45 -03002820int kvm_arch_vcpu_ioctl_get_mpstate(struct kvm_vcpu *vcpu,
2821 struct kvm_mp_state *mp_state)
2822{
David Hildenbrand6352e4d2014-04-10 17:35:00 +02002823 /* CHECK_STOP and LOAD are not supported yet */
2824 return is_vcpu_stopped(vcpu) ? KVM_MP_STATE_STOPPED :
2825 KVM_MP_STATE_OPERATING;
Marcelo Tosatti62d9f0d2008-04-11 13:24:45 -03002826}
2827
2828int kvm_arch_vcpu_ioctl_set_mpstate(struct kvm_vcpu *vcpu,
2829 struct kvm_mp_state *mp_state)
2830{
David Hildenbrand6352e4d2014-04-10 17:35:00 +02002831 int rc = 0;
2832
2833 /* user space knows about this interface - let it control the state */
2834 vcpu->kvm->arch.user_cpu_state_ctrl = 1;
2835
2836 switch (mp_state->mp_state) {
2837 case KVM_MP_STATE_STOPPED:
2838 kvm_s390_vcpu_stop(vcpu);
2839 break;
2840 case KVM_MP_STATE_OPERATING:
2841 kvm_s390_vcpu_start(vcpu);
2842 break;
2843 case KVM_MP_STATE_LOAD:
2844 case KVM_MP_STATE_CHECK_STOP:
2845 /* fall through - CHECK_STOP and LOAD are not supported yet */
2846 default:
2847 rc = -ENXIO;
2848 }
2849
2850 return rc;
Marcelo Tosatti62d9f0d2008-04-11 13:24:45 -03002851}
2852
David Hildenbrand8ad35752014-03-14 11:00:21 +01002853static bool ibs_enabled(struct kvm_vcpu *vcpu)
2854{
2855 return atomic_read(&vcpu->arch.sie_block->cpuflags) & CPUSTAT_IBS;
2856}
2857
Christian Borntraeger2c70fe42013-05-17 14:41:36 +02002858static int kvm_s390_handle_requests(struct kvm_vcpu *vcpu)
2859{
David Hildenbrand8ad35752014-03-14 11:00:21 +01002860retry:
Christian Borntraeger8e236542015-04-09 13:49:04 +02002861 kvm_s390_vcpu_request_handled(vcpu);
Radim Krčmář2fa6e1e2017-06-04 14:43:52 +02002862 if (!kvm_request_pending(vcpu))
Christian Borntraeger586b7cc2015-07-28 15:03:05 +02002863 return 0;
Christian Borntraeger2c70fe42013-05-17 14:41:36 +02002864 /*
2865 * We use MMU_RELOAD just to re-arm the ipte notifier for the
Martin Schwidefskyb2d73b22016-03-08 11:54:42 +01002866 * guest prefix page. gmap_mprotect_notify will wait on the ptl lock.
Christian Borntraeger2c70fe42013-05-17 14:41:36 +02002867 * This ensures that the ipte instruction for this request has
2868 * already finished. We might race against a second unmapper that
2869 * wants to set the blocking bit. Lets just retry the request loop.
2870 */
David Hildenbrand8ad35752014-03-14 11:00:21 +01002871 if (kvm_check_request(KVM_REQ_MMU_RELOAD, vcpu)) {
Christian Borntraeger2c70fe42013-05-17 14:41:36 +02002872 int rc;
Martin Schwidefskyb2d73b22016-03-08 11:54:42 +01002873 rc = gmap_mprotect_notify(vcpu->arch.gmap,
2874 kvm_s390_get_prefix(vcpu),
2875 PAGE_SIZE * 2, PROT_WRITE);
Julius Niedworokaca411a2016-08-03 16:39:55 +02002876 if (rc) {
2877 kvm_make_request(KVM_REQ_MMU_RELOAD, vcpu);
Christian Borntraeger2c70fe42013-05-17 14:41:36 +02002878 return rc;
Julius Niedworokaca411a2016-08-03 16:39:55 +02002879 }
David Hildenbrand8ad35752014-03-14 11:00:21 +01002880 goto retry;
Christian Borntraeger2c70fe42013-05-17 14:41:36 +02002881 }
David Hildenbrand8ad35752014-03-14 11:00:21 +01002882
David Hildenbrandd3d692c2014-07-29 08:53:36 +02002883 if (kvm_check_request(KVM_REQ_TLB_FLUSH, vcpu)) {
2884 vcpu->arch.sie_block->ihcpu = 0xffff;
2885 goto retry;
2886 }
2887
David Hildenbrand8ad35752014-03-14 11:00:21 +01002888 if (kvm_check_request(KVM_REQ_ENABLE_IBS, vcpu)) {
2889 if (!ibs_enabled(vcpu)) {
2890 trace_kvm_s390_enable_disable_ibs(vcpu->vcpu_id, 1);
Peter Zijlstra805de8f42015-04-24 01:12:32 +02002891 atomic_or(CPUSTAT_IBS,
David Hildenbrand8ad35752014-03-14 11:00:21 +01002892 &vcpu->arch.sie_block->cpuflags);
2893 }
2894 goto retry;
2895 }
2896
2897 if (kvm_check_request(KVM_REQ_DISABLE_IBS, vcpu)) {
2898 if (ibs_enabled(vcpu)) {
2899 trace_kvm_s390_enable_disable_ibs(vcpu->vcpu_id, 0);
Peter Zijlstra805de8f42015-04-24 01:12:32 +02002900 atomic_andnot(CPUSTAT_IBS,
David Hildenbrand8ad35752014-03-14 11:00:21 +01002901 &vcpu->arch.sie_block->cpuflags);
2902 }
2903 goto retry;
2904 }
2905
David Hildenbrand6502a342016-06-21 14:19:51 +02002906 if (kvm_check_request(KVM_REQ_ICPT_OPEREXC, vcpu)) {
2907 vcpu->arch.sie_block->ictl |= ICTL_OPEREXC;
2908 goto retry;
2909 }
2910
Claudio Imbrenda190df4a2016-08-04 17:54:42 +02002911 if (kvm_check_request(KVM_REQ_START_MIGRATION, vcpu)) {
2912 /*
2913 * Disable CMMA virtualization; we will emulate the ESSA
2914 * instruction manually, in order to provide additional
2915 * functionalities needed for live migration.
2916 */
2917 vcpu->arch.sie_block->ecb2 &= ~ECB2_CMMA;
2918 goto retry;
2919 }
2920
2921 if (kvm_check_request(KVM_REQ_STOP_MIGRATION, vcpu)) {
2922 /*
2923 * Re-enable CMMA virtualization if CMMA is available and
2924 * was used.
2925 */
2926 if ((vcpu->kvm->arch.use_cmma) &&
2927 (vcpu->kvm->mm->context.use_cmma))
2928 vcpu->arch.sie_block->ecb2 |= ECB2_CMMA;
2929 goto retry;
2930 }
2931
David Hildenbrand0759d062014-05-13 16:54:32 +02002932 /* nothing to do, just clear the request */
Radim Krčmář72875d82017-04-26 22:32:19 +02002933 kvm_clear_request(KVM_REQ_UNHALT, vcpu);
David Hildenbrand0759d062014-05-13 16:54:32 +02002934
Christian Borntraeger2c70fe42013-05-17 14:41:36 +02002935 return 0;
2936}
2937
Collin L. Walling8fa16962016-07-26 15:29:44 -04002938void kvm_s390_set_tod_clock_ext(struct kvm *kvm,
2939 const struct kvm_s390_vm_tod_clock *gtod)
2940{
2941 struct kvm_vcpu *vcpu;
2942 struct kvm_s390_tod_clock_ext htod;
2943 int i;
2944
2945 mutex_lock(&kvm->lock);
2946 preempt_disable();
2947
2948 get_tod_clock_ext((char *)&htod);
2949
2950 kvm->arch.epoch = gtod->tod - htod.tod;
2951 kvm->arch.epdx = gtod->epoch_idx - htod.epoch_idx;
2952
2953 if (kvm->arch.epoch > gtod->tod)
2954 kvm->arch.epdx -= 1;
2955
2956 kvm_s390_vcpu_block_all(kvm);
2957 kvm_for_each_vcpu(i, vcpu, kvm) {
2958 vcpu->arch.sie_block->epoch = kvm->arch.epoch;
2959 vcpu->arch.sie_block->epdx = kvm->arch.epdx;
2960 }
2961
2962 kvm_s390_vcpu_unblock_all(kvm);
2963 preempt_enable();
2964 mutex_unlock(&kvm->lock);
2965}
2966
David Hildenbrand25ed1672015-05-12 09:49:14 +02002967void kvm_s390_set_tod_clock(struct kvm *kvm, u64 tod)
2968{
2969 struct kvm_vcpu *vcpu;
2970 int i;
2971
2972 mutex_lock(&kvm->lock);
2973 preempt_disable();
2974 kvm->arch.epoch = tod - get_tod_clock();
2975 kvm_s390_vcpu_block_all(kvm);
2976 kvm_for_each_vcpu(i, vcpu, kvm)
2977 vcpu->arch.sie_block->epoch = kvm->arch.epoch;
2978 kvm_s390_vcpu_unblock_all(kvm);
2979 preempt_enable();
2980 mutex_unlock(&kvm->lock);
2981}
2982
Thomas Huthfa576c52014-05-06 17:20:16 +02002983/**
2984 * kvm_arch_fault_in_page - fault-in guest page if necessary
2985 * @vcpu: The corresponding virtual cpu
2986 * @gpa: Guest physical address
2987 * @writable: Whether the page should be writable or not
2988 *
2989 * Make sure that a guest page has been faulted-in on the host.
2990 *
2991 * Return: Zero on success, negative error code otherwise.
2992 */
2993long kvm_arch_fault_in_page(struct kvm_vcpu *vcpu, gpa_t gpa, int writable)
Dominik Dingel24eb3a82013-06-17 16:25:18 +02002994{
Martin Schwidefsky527e30b2014-04-30 16:04:25 +02002995 return gmap_fault(vcpu->arch.gmap, gpa,
2996 writable ? FAULT_FLAG_WRITE : 0);
Dominik Dingel24eb3a82013-06-17 16:25:18 +02002997}
2998
Dominik Dingel3c038e62013-10-07 17:11:48 +02002999static void __kvm_inject_pfault_token(struct kvm_vcpu *vcpu, bool start_token,
3000 unsigned long token)
3001{
3002 struct kvm_s390_interrupt inti;
Jens Freimann383d0b02014-07-29 15:11:49 +02003003 struct kvm_s390_irq irq;
Dominik Dingel3c038e62013-10-07 17:11:48 +02003004
3005 if (start_token) {
Jens Freimann383d0b02014-07-29 15:11:49 +02003006 irq.u.ext.ext_params2 = token;
3007 irq.type = KVM_S390_INT_PFAULT_INIT;
3008 WARN_ON_ONCE(kvm_s390_inject_vcpu(vcpu, &irq));
Dominik Dingel3c038e62013-10-07 17:11:48 +02003009 } else {
3010 inti.type = KVM_S390_INT_PFAULT_DONE;
Jens Freimann383d0b02014-07-29 15:11:49 +02003011 inti.parm64 = token;
Dominik Dingel3c038e62013-10-07 17:11:48 +02003012 WARN_ON_ONCE(kvm_s390_inject_vm(vcpu->kvm, &inti));
3013 }
3014}
3015
3016void kvm_arch_async_page_not_present(struct kvm_vcpu *vcpu,
3017 struct kvm_async_pf *work)
3018{
3019 trace_kvm_s390_pfault_init(vcpu, work->arch.pfault_token);
3020 __kvm_inject_pfault_token(vcpu, true, work->arch.pfault_token);
3021}
3022
3023void kvm_arch_async_page_present(struct kvm_vcpu *vcpu,
3024 struct kvm_async_pf *work)
3025{
3026 trace_kvm_s390_pfault_done(vcpu, work->arch.pfault_token);
3027 __kvm_inject_pfault_token(vcpu, false, work->arch.pfault_token);
3028}
3029
3030void kvm_arch_async_page_ready(struct kvm_vcpu *vcpu,
3031 struct kvm_async_pf *work)
3032{
3033 /* s390 will always inject the page directly */
3034}
3035
3036bool kvm_arch_can_inject_async_page_present(struct kvm_vcpu *vcpu)
3037{
3038 /*
3039 * s390 will always inject the page directly,
3040 * but we still want check_async_completion to cleanup
3041 */
3042 return true;
3043}
3044
3045static int kvm_arch_setup_async_pf(struct kvm_vcpu *vcpu)
3046{
3047 hva_t hva;
3048 struct kvm_arch_async_pf arch;
3049 int rc;
3050
3051 if (vcpu->arch.pfault_token == KVM_S390_PFAULT_TOKEN_INVALID)
3052 return 0;
3053 if ((vcpu->arch.sie_block->gpsw.mask & vcpu->arch.pfault_select) !=
3054 vcpu->arch.pfault_compare)
3055 return 0;
3056 if (psw_extint_disabled(vcpu))
3057 return 0;
David Hildenbrand9a022062014-08-05 17:40:47 +02003058 if (kvm_s390_vcpu_has_irq(vcpu, 0))
Dominik Dingel3c038e62013-10-07 17:11:48 +02003059 return 0;
3060 if (!(vcpu->arch.sie_block->gcr[0] & 0x200ul))
3061 return 0;
3062 if (!vcpu->arch.gmap->pfault_enabled)
3063 return 0;
3064
Heiko Carstens81480cc2014-01-01 16:36:07 +01003065 hva = gfn_to_hva(vcpu->kvm, gpa_to_gfn(current->thread.gmap_addr));
3066 hva += current->thread.gmap_addr & ~PAGE_MASK;
3067 if (read_guest_real(vcpu, vcpu->arch.pfault_token, &arch.pfault_token, 8))
Dominik Dingel3c038e62013-10-07 17:11:48 +02003068 return 0;
3069
3070 rc = kvm_setup_async_pf(vcpu, current->thread.gmap_addr, hva, &arch);
3071 return rc;
3072}
3073
Thomas Huth3fb4c402013-09-12 10:33:43 +02003074static int vcpu_pre_run(struct kvm_vcpu *vcpu)
Heiko Carstensb0c632d2008-03-25 18:47:20 +01003075{
Thomas Huth3fb4c402013-09-12 10:33:43 +02003076 int rc, cpuflags;
Carsten Ottee168bf82012-01-04 10:25:22 +01003077
Dominik Dingel3c038e62013-10-07 17:11:48 +02003078 /*
3079 * On s390 notifications for arriving pages will be delivered directly
3080 * to the guest but the house keeping for completed pfaults is
3081 * handled outside the worker.
3082 */
3083 kvm_check_async_pf_completion(vcpu);
3084
Christian Borntraeger7ec7c8c2015-12-02 14:27:03 +01003085 vcpu->arch.sie_block->gg14 = vcpu->run->s.regs.gprs[14];
3086 vcpu->arch.sie_block->gg15 = vcpu->run->s.regs.gprs[15];
Heiko Carstensb0c632d2008-03-25 18:47:20 +01003087
3088 if (need_resched())
3089 schedule();
3090
Martin Schwidefskyd3a73ac2014-04-15 12:55:07 +02003091 if (test_cpu_flag(CIF_MCCK_PENDING))
Christian Borntraeger71cde582008-05-21 13:37:34 +02003092 s390_handle_mcck();
3093
Jens Freimann79395032014-04-17 10:10:30 +02003094 if (!kvm_is_ucontrol(vcpu->kvm)) {
3095 rc = kvm_s390_deliver_pending_interrupts(vcpu);
3096 if (rc)
3097 return rc;
3098 }
Carsten Otte0ff31862008-05-21 13:37:37 +02003099
Christian Borntraeger2c70fe42013-05-17 14:41:36 +02003100 rc = kvm_s390_handle_requests(vcpu);
3101 if (rc)
3102 return rc;
3103
David Hildenbrand27291e22014-01-23 12:26:52 +01003104 if (guestdbg_enabled(vcpu)) {
3105 kvm_s390_backup_guest_per_regs(vcpu);
3106 kvm_s390_patch_guest_per_regs(vcpu);
3107 }
3108
Heiko Carstensb0c632d2008-03-25 18:47:20 +01003109 vcpu->arch.sie_block->icptcode = 0;
Thomas Huth3fb4c402013-09-12 10:33:43 +02003110 cpuflags = atomic_read(&vcpu->arch.sie_block->cpuflags);
3111 VCPU_EVENT(vcpu, 6, "entering sie flags %x", cpuflags);
3112 trace_kvm_s390_sie_enter(vcpu, cpuflags);
Dominik Dingel2b29a9f2013-07-26 15:04:00 +02003113
Thomas Huth3fb4c402013-09-12 10:33:43 +02003114 return 0;
3115}
3116
Thomas Huth492d8642015-02-10 16:11:01 +01003117static int vcpu_post_run_fault_in_sie(struct kvm_vcpu *vcpu)
3118{
David Hildenbrand56317922016-01-12 17:37:58 +01003119 struct kvm_s390_pgm_info pgm_info = {
3120 .code = PGM_ADDRESSING,
3121 };
3122 u8 opcode, ilen;
Thomas Huth492d8642015-02-10 16:11:01 +01003123 int rc;
3124
3125 VCPU_EVENT(vcpu, 3, "%s", "fault in sie instruction");
3126 trace_kvm_s390_sie_fault(vcpu);
3127
3128 /*
3129 * We want to inject an addressing exception, which is defined as a
3130 * suppressing or terminating exception. However, since we came here
3131 * by a DAT access exception, the PSW still points to the faulting
3132 * instruction since DAT exceptions are nullifying. So we've got
3133 * to look up the current opcode to get the length of the instruction
3134 * to be able to forward the PSW.
3135 */
David Hildenbrand3fa8cad72016-05-24 12:00:49 +02003136 rc = read_guest_instr(vcpu, vcpu->arch.sie_block->gpsw.addr, &opcode, 1);
David Hildenbrand56317922016-01-12 17:37:58 +01003137 ilen = insn_length(opcode);
David Hildenbrand9b0d7212016-01-12 17:40:54 +01003138 if (rc < 0) {
3139 return rc;
3140 } else if (rc) {
3141 /* Instruction-Fetching Exceptions - we can't detect the ilen.
3142 * Forward by arbitrary ilc, injection will take care of
3143 * nullification if necessary.
3144 */
3145 pgm_info = vcpu->arch.pgm;
3146 ilen = 4;
3147 }
David Hildenbrand56317922016-01-12 17:37:58 +01003148 pgm_info.flags = ilen | KVM_S390_PGM_FLAGS_ILC_VALID;
3149 kvm_s390_forward_psw(vcpu, ilen);
3150 return kvm_s390_inject_prog_irq(vcpu, &pgm_info);
Thomas Huth492d8642015-02-10 16:11:01 +01003151}
3152
Thomas Huth3fb4c402013-09-12 10:33:43 +02003153static int vcpu_post_run(struct kvm_vcpu *vcpu, int exit_reason)
3154{
QingFeng Hao4d62fcc2017-06-07 12:03:05 +02003155 struct mcck_volatile_info *mcck_info;
3156 struct sie_page *sie_page;
3157
Dominik Dingel2b29a9f2013-07-26 15:04:00 +02003158 VCPU_EVENT(vcpu, 6, "exit sie icptcode %d",
3159 vcpu->arch.sie_block->icptcode);
3160 trace_kvm_s390_sie_exit(vcpu, vcpu->arch.sie_block->icptcode);
3161
David Hildenbrand27291e22014-01-23 12:26:52 +01003162 if (guestdbg_enabled(vcpu))
3163 kvm_s390_restore_guest_per_regs(vcpu);
3164
Christian Borntraeger7ec7c8c2015-12-02 14:27:03 +01003165 vcpu->run->s.regs.gprs[14] = vcpu->arch.sie_block->gg14;
3166 vcpu->run->s.regs.gprs[15] = vcpu->arch.sie_block->gg15;
David Hildenbrand71f116b2015-10-19 16:24:28 +02003167
QingFeng Hao4d62fcc2017-06-07 12:03:05 +02003168 if (exit_reason == -EINTR) {
3169 VCPU_EVENT(vcpu, 3, "%s", "machine check");
3170 sie_page = container_of(vcpu->arch.sie_block,
3171 struct sie_page, sie_block);
3172 mcck_info = &sie_page->mcck_info;
3173 kvm_s390_reinject_machine_check(vcpu, mcck_info);
3174 return 0;
3175 }
3176
David Hildenbrand71f116b2015-10-19 16:24:28 +02003177 if (vcpu->arch.sie_block->icptcode > 0) {
3178 int rc = kvm_handle_sie_intercept(vcpu);
3179
3180 if (rc != -EOPNOTSUPP)
3181 return rc;
3182 vcpu->run->exit_reason = KVM_EXIT_S390_SIEIC;
3183 vcpu->run->s390_sieic.icptcode = vcpu->arch.sie_block->icptcode;
3184 vcpu->run->s390_sieic.ipa = vcpu->arch.sie_block->ipa;
3185 vcpu->run->s390_sieic.ipb = vcpu->arch.sie_block->ipb;
3186 return -EREMOTE;
3187 } else if (exit_reason != -EFAULT) {
3188 vcpu->stat.exit_null++;
3189 return 0;
Thomas Huth210b16072013-09-19 16:26:18 +02003190 } else if (kvm_is_ucontrol(vcpu->kvm)) {
3191 vcpu->run->exit_reason = KVM_EXIT_S390_UCONTROL;
3192 vcpu->run->s390_ucontrol.trans_exc_code =
3193 current->thread.gmap_addr;
3194 vcpu->run->s390_ucontrol.pgm_code = 0x10;
David Hildenbrand71f116b2015-10-19 16:24:28 +02003195 return -EREMOTE;
Dominik Dingel24eb3a82013-06-17 16:25:18 +02003196 } else if (current->thread.gmap_pfault) {
Dominik Dingel3c038e62013-10-07 17:11:48 +02003197 trace_kvm_s390_major_guest_pfault(vcpu);
Dominik Dingel24eb3a82013-06-17 16:25:18 +02003198 current->thread.gmap_pfault = 0;
David Hildenbrand71f116b2015-10-19 16:24:28 +02003199 if (kvm_arch_setup_async_pf(vcpu))
3200 return 0;
3201 return kvm_arch_fault_in_page(vcpu, current->thread.gmap_addr, 1);
Dominik Dingel24eb3a82013-06-17 16:25:18 +02003202 }
David Hildenbrand71f116b2015-10-19 16:24:28 +02003203 return vcpu_post_run_fault_in_sie(vcpu);
Thomas Huth3fb4c402013-09-12 10:33:43 +02003204}
3205
3206static int __vcpu_run(struct kvm_vcpu *vcpu)
3207{
3208 int rc, exit_reason;
3209
Thomas Huth800c1062013-09-12 10:33:45 +02003210 /*
3211 * We try to hold kvm->srcu during most of vcpu_run (except when run-
3212 * ning the guest), so that memslots (and other stuff) are protected
3213 */
3214 vcpu->srcu_idx = srcu_read_lock(&vcpu->kvm->srcu);
3215
Thomas Hutha76ccff2013-09-12 10:33:44 +02003216 do {
3217 rc = vcpu_pre_run(vcpu);
3218 if (rc)
3219 break;
Thomas Huth3fb4c402013-09-12 10:33:43 +02003220
Thomas Huth800c1062013-09-12 10:33:45 +02003221 srcu_read_unlock(&vcpu->kvm->srcu, vcpu->srcu_idx);
Thomas Hutha76ccff2013-09-12 10:33:44 +02003222 /*
3223 * As PF_VCPU will be used in fault handler, between
3224 * guest_enter and guest_exit should be no uaccess.
3225 */
Christian Borntraeger0097d122015-04-30 13:43:30 +02003226 local_irq_disable();
Paolo Bonzini6edaa532016-06-15 15:18:26 +02003227 guest_enter_irqoff();
David Hildenbranddb0758b2016-02-15 09:42:25 +01003228 __disable_cpu_timer_accounting(vcpu);
Christian Borntraeger0097d122015-04-30 13:43:30 +02003229 local_irq_enable();
Thomas Hutha76ccff2013-09-12 10:33:44 +02003230 exit_reason = sie64a(vcpu->arch.sie_block,
3231 vcpu->run->s.regs.gprs);
Christian Borntraeger0097d122015-04-30 13:43:30 +02003232 local_irq_disable();
David Hildenbranddb0758b2016-02-15 09:42:25 +01003233 __enable_cpu_timer_accounting(vcpu);
Paolo Bonzini6edaa532016-06-15 15:18:26 +02003234 guest_exit_irqoff();
Christian Borntraeger0097d122015-04-30 13:43:30 +02003235 local_irq_enable();
Thomas Huth800c1062013-09-12 10:33:45 +02003236 vcpu->srcu_idx = srcu_read_lock(&vcpu->kvm->srcu);
Thomas Huth3fb4c402013-09-12 10:33:43 +02003237
Thomas Hutha76ccff2013-09-12 10:33:44 +02003238 rc = vcpu_post_run(vcpu, exit_reason);
David Hildenbrand27291e22014-01-23 12:26:52 +01003239 } while (!signal_pending(current) && !guestdbg_exit_pending(vcpu) && !rc);
Thomas Huth3fb4c402013-09-12 10:33:43 +02003240
Thomas Huth800c1062013-09-12 10:33:45 +02003241 srcu_read_unlock(&vcpu->kvm->srcu, vcpu->srcu_idx);
Carsten Ottee168bf82012-01-04 10:25:22 +01003242 return rc;
Heiko Carstensb0c632d2008-03-25 18:47:20 +01003243}
3244
David Hildenbrandb028ee32014-07-17 10:47:43 +02003245static void sync_regs(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run)
3246{
Christian Borntraeger4d5f2c02017-02-09 17:15:41 +01003247 struct runtime_instr_cb *riccb;
Fan Zhang4e0b1ab2016-11-29 07:17:55 +01003248 struct gs_cb *gscb;
Christian Borntraeger4d5f2c02017-02-09 17:15:41 +01003249
3250 riccb = (struct runtime_instr_cb *) &kvm_run->s.regs.riccb;
Fan Zhang4e0b1ab2016-11-29 07:17:55 +01003251 gscb = (struct gs_cb *) &kvm_run->s.regs.gscb;
David Hildenbrandb028ee32014-07-17 10:47:43 +02003252 vcpu->arch.sie_block->gpsw.mask = kvm_run->psw_mask;
3253 vcpu->arch.sie_block->gpsw.addr = kvm_run->psw_addr;
3254 if (kvm_run->kvm_dirty_regs & KVM_SYNC_PREFIX)
3255 kvm_s390_set_prefix(vcpu, kvm_run->s.regs.prefix);
3256 if (kvm_run->kvm_dirty_regs & KVM_SYNC_CRS) {
3257 memcpy(&vcpu->arch.sie_block->gcr, &kvm_run->s.regs.crs, 128);
David Hildenbrandd3d692c2014-07-29 08:53:36 +02003258 /* some control register changes require a tlb flush */
3259 kvm_make_request(KVM_REQ_TLB_FLUSH, vcpu);
David Hildenbrandb028ee32014-07-17 10:47:43 +02003260 }
3261 if (kvm_run->kvm_dirty_regs & KVM_SYNC_ARCH0) {
David Hildenbrand4287f242016-02-15 09:40:12 +01003262 kvm_s390_set_cpu_timer(vcpu, kvm_run->s.regs.cputm);
David Hildenbrandb028ee32014-07-17 10:47:43 +02003263 vcpu->arch.sie_block->ckc = kvm_run->s.regs.ckc;
3264 vcpu->arch.sie_block->todpr = kvm_run->s.regs.todpr;
3265 vcpu->arch.sie_block->pp = kvm_run->s.regs.pp;
3266 vcpu->arch.sie_block->gbea = kvm_run->s.regs.gbea;
3267 }
3268 if (kvm_run->kvm_dirty_regs & KVM_SYNC_PFAULT) {
3269 vcpu->arch.pfault_token = kvm_run->s.regs.pft;
3270 vcpu->arch.pfault_select = kvm_run->s.regs.pfs;
3271 vcpu->arch.pfault_compare = kvm_run->s.regs.pfc;
David Hildenbrand9fbd8082014-10-09 15:01:38 +02003272 if (vcpu->arch.pfault_token == KVM_S390_PFAULT_TOKEN_INVALID)
3273 kvm_clear_async_pf_completion_queue(vcpu);
David Hildenbrandb028ee32014-07-17 10:47:43 +02003274 }
Fan Zhang80cd8762016-08-15 04:53:22 +02003275 /*
3276 * If userspace sets the riccb (e.g. after migration) to a valid state,
3277 * we should enable RI here instead of doing the lazy enablement.
3278 */
3279 if ((kvm_run->kvm_dirty_regs & KVM_SYNC_RICCB) &&
Christian Borntraeger4d5f2c02017-02-09 17:15:41 +01003280 test_kvm_facility(vcpu->kvm, 64) &&
3281 riccb->valid &&
David Hildenbrand0c9d8682017-03-13 11:48:28 +01003282 !(vcpu->arch.sie_block->ecb3 & ECB3_RI)) {
Christian Borntraeger4d5f2c02017-02-09 17:15:41 +01003283 VCPU_EVENT(vcpu, 3, "%s", "ENABLE: RI (sync_regs)");
David Hildenbrand0c9d8682017-03-13 11:48:28 +01003284 vcpu->arch.sie_block->ecb3 |= ECB3_RI;
Fan Zhang80cd8762016-08-15 04:53:22 +02003285 }
Fan Zhang4e0b1ab2016-11-29 07:17:55 +01003286 /*
3287 * If userspace sets the gscb (e.g. after migration) to non-zero,
3288 * we should enable GS here instead of doing the lazy enablement.
3289 */
3290 if ((kvm_run->kvm_dirty_regs & KVM_SYNC_GSCB) &&
3291 test_kvm_facility(vcpu->kvm, 133) &&
3292 gscb->gssm &&
3293 !vcpu->arch.gs_enabled) {
3294 VCPU_EVENT(vcpu, 3, "%s", "ENABLE: GS (sync_regs)");
3295 vcpu->arch.sie_block->ecb |= ECB_GS;
3296 vcpu->arch.sie_block->ecd |= ECD_HOSTREGMGMT;
3297 vcpu->arch.gs_enabled = 1;
Fan Zhang80cd8762016-08-15 04:53:22 +02003298 }
Christian Borntraeger31d8b8d2016-11-10 14:22:02 +01003299 save_access_regs(vcpu->arch.host_acrs);
3300 restore_access_regs(vcpu->run->s.regs.acrs);
Christian Borntraegere1788bb2016-11-22 09:29:38 +01003301 /* save host (userspace) fprs/vrs */
3302 save_fpu_regs();
3303 vcpu->arch.host_fpregs.fpc = current->thread.fpu.fpc;
3304 vcpu->arch.host_fpregs.regs = current->thread.fpu.regs;
3305 if (MACHINE_HAS_VX)
3306 current->thread.fpu.regs = vcpu->run->s.regs.vrs;
3307 else
3308 current->thread.fpu.regs = vcpu->run->s.regs.fprs;
3309 current->thread.fpu.fpc = vcpu->run->s.regs.fpc;
3310 if (test_fp_ctl(current->thread.fpu.fpc))
3311 /* User space provided an invalid FPC, let's clear it */
3312 current->thread.fpu.fpc = 0;
Fan Zhang4e0b1ab2016-11-29 07:17:55 +01003313 if (MACHINE_HAS_GS) {
3314 preempt_disable();
3315 __ctl_set_bit(2, 4);
3316 if (current->thread.gs_cb) {
3317 vcpu->arch.host_gscb = current->thread.gs_cb;
3318 save_gs_cb(vcpu->arch.host_gscb);
3319 }
3320 if (vcpu->arch.gs_enabled) {
3321 current->thread.gs_cb = (struct gs_cb *)
3322 &vcpu->run->s.regs.gscb;
3323 restore_gs_cb(current->thread.gs_cb);
3324 }
3325 preempt_enable();
3326 }
Fan Zhang80cd8762016-08-15 04:53:22 +02003327
David Hildenbrandb028ee32014-07-17 10:47:43 +02003328 kvm_run->kvm_dirty_regs = 0;
3329}
3330
3331static void store_regs(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run)
3332{
3333 kvm_run->psw_mask = vcpu->arch.sie_block->gpsw.mask;
3334 kvm_run->psw_addr = vcpu->arch.sie_block->gpsw.addr;
3335 kvm_run->s.regs.prefix = kvm_s390_get_prefix(vcpu);
3336 memcpy(&kvm_run->s.regs.crs, &vcpu->arch.sie_block->gcr, 128);
David Hildenbrand4287f242016-02-15 09:40:12 +01003337 kvm_run->s.regs.cputm = kvm_s390_get_cpu_timer(vcpu);
David Hildenbrandb028ee32014-07-17 10:47:43 +02003338 kvm_run->s.regs.ckc = vcpu->arch.sie_block->ckc;
3339 kvm_run->s.regs.todpr = vcpu->arch.sie_block->todpr;
3340 kvm_run->s.regs.pp = vcpu->arch.sie_block->pp;
3341 kvm_run->s.regs.gbea = vcpu->arch.sie_block->gbea;
3342 kvm_run->s.regs.pft = vcpu->arch.pfault_token;
3343 kvm_run->s.regs.pfs = vcpu->arch.pfault_select;
3344 kvm_run->s.regs.pfc = vcpu->arch.pfault_compare;
Christian Borntraeger31d8b8d2016-11-10 14:22:02 +01003345 save_access_regs(vcpu->run->s.regs.acrs);
3346 restore_access_regs(vcpu->arch.host_acrs);
Christian Borntraegere1788bb2016-11-22 09:29:38 +01003347 /* Save guest register state */
3348 save_fpu_regs();
3349 vcpu->run->s.regs.fpc = current->thread.fpu.fpc;
3350 /* Restore will be done lazily at return */
3351 current->thread.fpu.fpc = vcpu->arch.host_fpregs.fpc;
3352 current->thread.fpu.regs = vcpu->arch.host_fpregs.regs;
Fan Zhang4e0b1ab2016-11-29 07:17:55 +01003353 if (MACHINE_HAS_GS) {
3354 __ctl_set_bit(2, 4);
3355 if (vcpu->arch.gs_enabled)
3356 save_gs_cb(current->thread.gs_cb);
3357 preempt_disable();
3358 current->thread.gs_cb = vcpu->arch.host_gscb;
3359 restore_gs_cb(vcpu->arch.host_gscb);
3360 preempt_enable();
3361 if (!vcpu->arch.host_gscb)
3362 __ctl_clear_bit(2, 4);
3363 vcpu->arch.host_gscb = NULL;
3364 }
Christian Borntraegere1788bb2016-11-22 09:29:38 +01003365
David Hildenbrandb028ee32014-07-17 10:47:43 +02003366}
3367
Heiko Carstensb0c632d2008-03-25 18:47:20 +01003368int kvm_arch_vcpu_ioctl_run(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run)
3369{
Christian Borntraeger8f2abe62008-03-25 18:47:23 +01003370 int rc;
Heiko Carstensb0c632d2008-03-25 18:47:20 +01003371 sigset_t sigsaved;
3372
Paolo Bonzini460df4c2017-02-08 11:50:15 +01003373 if (kvm_run->immediate_exit)
3374 return -EINTR;
3375
David Hildenbrand27291e22014-01-23 12:26:52 +01003376 if (guestdbg_exit_pending(vcpu)) {
3377 kvm_s390_prepare_debug_exit(vcpu);
3378 return 0;
3379 }
3380
Heiko Carstensb0c632d2008-03-25 18:47:20 +01003381 if (vcpu->sigset_active)
3382 sigprocmask(SIG_SETMASK, &vcpu->sigset, &sigsaved);
3383
David Hildenbrand6352e4d2014-04-10 17:35:00 +02003384 if (!kvm_s390_user_cpu_state_ctrl(vcpu->kvm)) {
3385 kvm_s390_vcpu_start(vcpu);
3386 } else if (is_vcpu_stopped(vcpu)) {
David Hildenbrandea2cdd22015-05-20 13:24:02 +02003387 pr_err_ratelimited("can't run stopped vcpu %d\n",
David Hildenbrand6352e4d2014-04-10 17:35:00 +02003388 vcpu->vcpu_id);
3389 return -EINVAL;
3390 }
Heiko Carstensb0c632d2008-03-25 18:47:20 +01003391
David Hildenbrandb028ee32014-07-17 10:47:43 +02003392 sync_regs(vcpu, kvm_run);
David Hildenbranddb0758b2016-02-15 09:42:25 +01003393 enable_cpu_timer_accounting(vcpu);
Carsten Otted7b0b5e2009-11-19 14:21:16 +01003394
Heiko Carstensdab4079d2009-06-12 10:26:32 +02003395 might_fault();
Thomas Hutha76ccff2013-09-12 10:33:44 +02003396 rc = __vcpu_run(vcpu);
Christian Ehrhardt9ace9032009-05-20 15:34:55 +02003397
Christian Ehrhardtb1d16c42009-05-20 15:34:56 +02003398 if (signal_pending(current) && !rc) {
3399 kvm_run->exit_reason = KVM_EXIT_INTR;
Christian Borntraeger8f2abe62008-03-25 18:47:23 +01003400 rc = -EINTR;
Christian Ehrhardtb1d16c42009-05-20 15:34:56 +02003401 }
Christian Borntraeger8f2abe62008-03-25 18:47:23 +01003402
David Hildenbrand27291e22014-01-23 12:26:52 +01003403 if (guestdbg_exit_pending(vcpu) && !rc) {
3404 kvm_s390_prepare_debug_exit(vcpu);
3405 rc = 0;
3406 }
3407
Christian Borntraeger8f2abe62008-03-25 18:47:23 +01003408 if (rc == -EREMOTE) {
David Hildenbrand71f116b2015-10-19 16:24:28 +02003409 /* userspace support is needed, kvm_run has been prepared */
Christian Borntraeger8f2abe62008-03-25 18:47:23 +01003410 rc = 0;
3411 }
Heiko Carstensb0c632d2008-03-25 18:47:20 +01003412
David Hildenbranddb0758b2016-02-15 09:42:25 +01003413 disable_cpu_timer_accounting(vcpu);
David Hildenbrandb028ee32014-07-17 10:47:43 +02003414 store_regs(vcpu, kvm_run);
Carsten Otted7b0b5e2009-11-19 14:21:16 +01003415
Heiko Carstensb0c632d2008-03-25 18:47:20 +01003416 if (vcpu->sigset_active)
3417 sigprocmask(SIG_SETMASK, &sigsaved, NULL);
3418
Heiko Carstensb0c632d2008-03-25 18:47:20 +01003419 vcpu->stat.exit_userspace++;
Heiko Carstens7e8e6ab2008-04-04 15:12:35 +02003420 return rc;
Heiko Carstensb0c632d2008-03-25 18:47:20 +01003421}
3422
Heiko Carstensb0c632d2008-03-25 18:47:20 +01003423/*
3424 * store status at address
3425 * we use have two special cases:
3426 * KVM_S390_STORE_STATUS_NOADDR: -> 0x1200 on 64 bit
3427 * KVM_S390_STORE_STATUS_PREFIXED: -> prefix
3428 */
Heiko Carstensd0bce602014-01-01 16:45:58 +01003429int kvm_s390_store_status_unloaded(struct kvm_vcpu *vcpu, unsigned long gpa)
Heiko Carstensb0c632d2008-03-25 18:47:20 +01003430{
Carsten Otte092670c2011-07-24 10:48:22 +02003431 unsigned char archmode = 1;
David Hildenbrand9abc2a02016-01-14 22:12:47 +01003432 freg_t fprs[NUM_FPRS];
Michael Muellerfda902c2014-05-13 16:58:30 +02003433 unsigned int px;
David Hildenbrand4287f242016-02-15 09:40:12 +01003434 u64 clkcomp, cputm;
Heiko Carstensd0bce602014-01-01 16:45:58 +01003435 int rc;
Heiko Carstensb0c632d2008-03-25 18:47:20 +01003436
Martin Schwidefskyd9a3a092015-10-23 09:02:32 +02003437 px = kvm_s390_get_prefix(vcpu);
Heiko Carstensd0bce602014-01-01 16:45:58 +01003438 if (gpa == KVM_S390_STORE_STATUS_NOADDR) {
3439 if (write_guest_abs(vcpu, 163, &archmode, 1))
Heiko Carstensb0c632d2008-03-25 18:47:20 +01003440 return -EFAULT;
Martin Schwidefskyd9a3a092015-10-23 09:02:32 +02003441 gpa = 0;
Heiko Carstensd0bce602014-01-01 16:45:58 +01003442 } else if (gpa == KVM_S390_STORE_STATUS_PREFIXED) {
3443 if (write_guest_real(vcpu, 163, &archmode, 1))
Heiko Carstensb0c632d2008-03-25 18:47:20 +01003444 return -EFAULT;
Martin Schwidefskyd9a3a092015-10-23 09:02:32 +02003445 gpa = px;
3446 } else
3447 gpa -= __LC_FPREGS_SAVE_AREA;
David Hildenbrand9abc2a02016-01-14 22:12:47 +01003448
3449 /* manually convert vector registers if necessary */
3450 if (MACHINE_HAS_VX) {
David Hildenbrand9522b372016-03-08 12:24:30 +01003451 convert_vx_to_fp(fprs, (__vector128 *) vcpu->run->s.regs.vrs);
David Hildenbrand9abc2a02016-01-14 22:12:47 +01003452 rc = write_guest_abs(vcpu, gpa + __LC_FPREGS_SAVE_AREA,
3453 fprs, 128);
3454 } else {
3455 rc = write_guest_abs(vcpu, gpa + __LC_FPREGS_SAVE_AREA,
David Hildenbrand6fd8e672016-01-18 14:46:34 +01003456 vcpu->run->s.regs.fprs, 128);
David Hildenbrand9abc2a02016-01-14 22:12:47 +01003457 }
Martin Schwidefskyd9a3a092015-10-23 09:02:32 +02003458 rc |= write_guest_abs(vcpu, gpa + __LC_GPREGS_SAVE_AREA,
Heiko Carstensd0bce602014-01-01 16:45:58 +01003459 vcpu->run->s.regs.gprs, 128);
Martin Schwidefskyd9a3a092015-10-23 09:02:32 +02003460 rc |= write_guest_abs(vcpu, gpa + __LC_PSW_SAVE_AREA,
Heiko Carstensd0bce602014-01-01 16:45:58 +01003461 &vcpu->arch.sie_block->gpsw, 16);
Martin Schwidefskyd9a3a092015-10-23 09:02:32 +02003462 rc |= write_guest_abs(vcpu, gpa + __LC_PREFIX_SAVE_AREA,
Michael Muellerfda902c2014-05-13 16:58:30 +02003463 &px, 4);
Martin Schwidefskyd9a3a092015-10-23 09:02:32 +02003464 rc |= write_guest_abs(vcpu, gpa + __LC_FP_CREG_SAVE_AREA,
David Hildenbrand9abc2a02016-01-14 22:12:47 +01003465 &vcpu->run->s.regs.fpc, 4);
Martin Schwidefskyd9a3a092015-10-23 09:02:32 +02003466 rc |= write_guest_abs(vcpu, gpa + __LC_TOD_PROGREG_SAVE_AREA,
Heiko Carstensd0bce602014-01-01 16:45:58 +01003467 &vcpu->arch.sie_block->todpr, 4);
David Hildenbrand4287f242016-02-15 09:40:12 +01003468 cputm = kvm_s390_get_cpu_timer(vcpu);
Martin Schwidefskyd9a3a092015-10-23 09:02:32 +02003469 rc |= write_guest_abs(vcpu, gpa + __LC_CPU_TIMER_SAVE_AREA,
David Hildenbrand4287f242016-02-15 09:40:12 +01003470 &cputm, 8);
Thomas Huth178bd782013-11-13 20:28:18 +01003471 clkcomp = vcpu->arch.sie_block->ckc >> 8;
Martin Schwidefskyd9a3a092015-10-23 09:02:32 +02003472 rc |= write_guest_abs(vcpu, gpa + __LC_CLOCK_COMP_SAVE_AREA,
Heiko Carstensd0bce602014-01-01 16:45:58 +01003473 &clkcomp, 8);
Martin Schwidefskyd9a3a092015-10-23 09:02:32 +02003474 rc |= write_guest_abs(vcpu, gpa + __LC_AREGS_SAVE_AREA,
Heiko Carstensd0bce602014-01-01 16:45:58 +01003475 &vcpu->run->s.regs.acrs, 64);
Martin Schwidefskyd9a3a092015-10-23 09:02:32 +02003476 rc |= write_guest_abs(vcpu, gpa + __LC_CREGS_SAVE_AREA,
Heiko Carstensd0bce602014-01-01 16:45:58 +01003477 &vcpu->arch.sie_block->gcr, 128);
3478 return rc ? -EFAULT : 0;
Heiko Carstensb0c632d2008-03-25 18:47:20 +01003479}
3480
Thomas Huthe8798922013-11-06 15:46:33 +01003481int kvm_s390_vcpu_store_status(struct kvm_vcpu *vcpu, unsigned long addr)
3482{
3483 /*
3484 * The guest FPRS and ACRS are in the host FPRS/ACRS due to the lazy
Christian Borntraeger31d8b8d2016-11-10 14:22:02 +01003485 * switch in the run ioctl. Let's update our copies before we save
Thomas Huthe8798922013-11-06 15:46:33 +01003486 * it into the save area
3487 */
Hendrik Bruecknerd0164ee2015-06-29 16:43:06 +02003488 save_fpu_regs();
David Hildenbrand9abc2a02016-01-14 22:12:47 +01003489 vcpu->run->s.regs.fpc = current->thread.fpu.fpc;
Thomas Huthe8798922013-11-06 15:46:33 +01003490 save_access_regs(vcpu->run->s.regs.acrs);
3491
3492 return kvm_s390_store_status_unloaded(vcpu, addr);
3493}
3494
David Hildenbrand8ad35752014-03-14 11:00:21 +01003495static void __disable_ibs_on_vcpu(struct kvm_vcpu *vcpu)
3496{
3497 kvm_check_request(KVM_REQ_ENABLE_IBS, vcpu);
Christian Borntraeger8e236542015-04-09 13:49:04 +02003498 kvm_s390_sync_request(KVM_REQ_DISABLE_IBS, vcpu);
David Hildenbrand8ad35752014-03-14 11:00:21 +01003499}
3500
3501static void __disable_ibs_on_all_vcpus(struct kvm *kvm)
3502{
3503 unsigned int i;
3504 struct kvm_vcpu *vcpu;
3505
3506 kvm_for_each_vcpu(i, vcpu, kvm) {
3507 __disable_ibs_on_vcpu(vcpu);
3508 }
3509}
3510
3511static void __enable_ibs_on_vcpu(struct kvm_vcpu *vcpu)
3512{
David Hildenbrand09a400e2016-04-04 15:57:08 +02003513 if (!sclp.has_ibs)
3514 return;
David Hildenbrand8ad35752014-03-14 11:00:21 +01003515 kvm_check_request(KVM_REQ_DISABLE_IBS, vcpu);
Christian Borntraeger8e236542015-04-09 13:49:04 +02003516 kvm_s390_sync_request(KVM_REQ_ENABLE_IBS, vcpu);
David Hildenbrand8ad35752014-03-14 11:00:21 +01003517}
3518
David Hildenbrand6852d7b2014-03-14 10:59:29 +01003519void kvm_s390_vcpu_start(struct kvm_vcpu *vcpu)
3520{
David Hildenbrand8ad35752014-03-14 11:00:21 +01003521 int i, online_vcpus, started_vcpus = 0;
3522
3523 if (!is_vcpu_stopped(vcpu))
3524 return;
3525
David Hildenbrand6852d7b2014-03-14 10:59:29 +01003526 trace_kvm_s390_vcpu_start_stop(vcpu->vcpu_id, 1);
David Hildenbrand8ad35752014-03-14 11:00:21 +01003527 /* Only one cpu at a time may enter/leave the STOPPED state. */
David Hildenbrand433b9ee2014-05-06 16:11:14 +02003528 spin_lock(&vcpu->kvm->arch.start_stop_lock);
David Hildenbrand8ad35752014-03-14 11:00:21 +01003529 online_vcpus = atomic_read(&vcpu->kvm->online_vcpus);
3530
3531 for (i = 0; i < online_vcpus; i++) {
3532 if (!is_vcpu_stopped(vcpu->kvm->vcpus[i]))
3533 started_vcpus++;
3534 }
3535
3536 if (started_vcpus == 0) {
3537 /* we're the only active VCPU -> speed it up */
3538 __enable_ibs_on_vcpu(vcpu);
3539 } else if (started_vcpus == 1) {
3540 /*
3541 * As we are starting a second VCPU, we have to disable
3542 * the IBS facility on all VCPUs to remove potentially
3543 * oustanding ENABLE requests.
3544 */
3545 __disable_ibs_on_all_vcpus(vcpu->kvm);
3546 }
3547
Peter Zijlstra805de8f42015-04-24 01:12:32 +02003548 atomic_andnot(CPUSTAT_STOPPED, &vcpu->arch.sie_block->cpuflags);
David Hildenbrand8ad35752014-03-14 11:00:21 +01003549 /*
3550 * Another VCPU might have used IBS while we were offline.
3551 * Let's play safe and flush the VCPU at startup.
3552 */
David Hildenbrandd3d692c2014-07-29 08:53:36 +02003553 kvm_make_request(KVM_REQ_TLB_FLUSH, vcpu);
David Hildenbrand433b9ee2014-05-06 16:11:14 +02003554 spin_unlock(&vcpu->kvm->arch.start_stop_lock);
David Hildenbrand8ad35752014-03-14 11:00:21 +01003555 return;
David Hildenbrand6852d7b2014-03-14 10:59:29 +01003556}
3557
3558void kvm_s390_vcpu_stop(struct kvm_vcpu *vcpu)
3559{
David Hildenbrand8ad35752014-03-14 11:00:21 +01003560 int i, online_vcpus, started_vcpus = 0;
3561 struct kvm_vcpu *started_vcpu = NULL;
3562
3563 if (is_vcpu_stopped(vcpu))
3564 return;
3565
David Hildenbrand6852d7b2014-03-14 10:59:29 +01003566 trace_kvm_s390_vcpu_start_stop(vcpu->vcpu_id, 0);
David Hildenbrand8ad35752014-03-14 11:00:21 +01003567 /* Only one cpu at a time may enter/leave the STOPPED state. */
David Hildenbrand433b9ee2014-05-06 16:11:14 +02003568 spin_lock(&vcpu->kvm->arch.start_stop_lock);
David Hildenbrand8ad35752014-03-14 11:00:21 +01003569 online_vcpus = atomic_read(&vcpu->kvm->online_vcpus);
3570
David Hildenbrand32f5ff632014-04-14 12:40:03 +02003571 /* SIGP STOP and SIGP STOP AND STORE STATUS has been fully processed */
David Hildenbrand6cddd432014-10-15 16:48:53 +02003572 kvm_s390_clear_stop_irq(vcpu);
David Hildenbrand32f5ff632014-04-14 12:40:03 +02003573
Peter Zijlstra805de8f42015-04-24 01:12:32 +02003574 atomic_or(CPUSTAT_STOPPED, &vcpu->arch.sie_block->cpuflags);
David Hildenbrand8ad35752014-03-14 11:00:21 +01003575 __disable_ibs_on_vcpu(vcpu);
3576
3577 for (i = 0; i < online_vcpus; i++) {
3578 if (!is_vcpu_stopped(vcpu->kvm->vcpus[i])) {
3579 started_vcpus++;
3580 started_vcpu = vcpu->kvm->vcpus[i];
3581 }
3582 }
3583
3584 if (started_vcpus == 1) {
3585 /*
3586 * As we only have one VCPU left, we want to enable the
3587 * IBS facility for that VCPU to speed it up.
3588 */
3589 __enable_ibs_on_vcpu(started_vcpu);
3590 }
3591
David Hildenbrand433b9ee2014-05-06 16:11:14 +02003592 spin_unlock(&vcpu->kvm->arch.start_stop_lock);
David Hildenbrand8ad35752014-03-14 11:00:21 +01003593 return;
David Hildenbrand6852d7b2014-03-14 10:59:29 +01003594}
3595
Cornelia Huckd6712df2012-12-20 15:32:11 +01003596static int kvm_vcpu_ioctl_enable_cap(struct kvm_vcpu *vcpu,
3597 struct kvm_enable_cap *cap)
3598{
3599 int r;
3600
3601 if (cap->flags)
3602 return -EINVAL;
3603
3604 switch (cap->cap) {
Cornelia Huckfa6b7fe2012-12-20 15:32:12 +01003605 case KVM_CAP_S390_CSS_SUPPORT:
3606 if (!vcpu->kvm->arch.css_support) {
3607 vcpu->kvm->arch.css_support = 1;
Christian Borntraegerc92ea7b2015-07-22 15:52:10 +02003608 VM_EVENT(vcpu->kvm, 3, "%s", "ENABLE: CSS support");
Cornelia Huckfa6b7fe2012-12-20 15:32:12 +01003609 trace_kvm_s390_enable_css(vcpu->kvm);
3610 }
3611 r = 0;
3612 break;
Cornelia Huckd6712df2012-12-20 15:32:11 +01003613 default:
3614 r = -EINVAL;
3615 break;
3616 }
3617 return r;
3618}
3619
Thomas Huth41408c282015-02-06 15:01:21 +01003620static long kvm_s390_guest_mem_op(struct kvm_vcpu *vcpu,
3621 struct kvm_s390_mem_op *mop)
3622{
3623 void __user *uaddr = (void __user *)mop->buf;
3624 void *tmpbuf = NULL;
3625 int r, srcu_idx;
3626 const u64 supported_flags = KVM_S390_MEMOP_F_INJECT_EXCEPTION
3627 | KVM_S390_MEMOP_F_CHECK_ONLY;
3628
3629 if (mop->flags & ~supported_flags)
3630 return -EINVAL;
3631
3632 if (mop->size > MEM_OP_MAX_SIZE)
3633 return -E2BIG;
3634
3635 if (!(mop->flags & KVM_S390_MEMOP_F_CHECK_ONLY)) {
3636 tmpbuf = vmalloc(mop->size);
3637 if (!tmpbuf)
3638 return -ENOMEM;
3639 }
3640
3641 srcu_idx = srcu_read_lock(&vcpu->kvm->srcu);
3642
3643 switch (mop->op) {
3644 case KVM_S390_MEMOP_LOGICAL_READ:
3645 if (mop->flags & KVM_S390_MEMOP_F_CHECK_ONLY) {
David Hildenbrand92c96322015-11-16 15:42:11 +01003646 r = check_gva_range(vcpu, mop->gaddr, mop->ar,
3647 mop->size, GACC_FETCH);
Thomas Huth41408c282015-02-06 15:01:21 +01003648 break;
3649 }
3650 r = read_guest(vcpu, mop->gaddr, mop->ar, tmpbuf, mop->size);
3651 if (r == 0) {
3652 if (copy_to_user(uaddr, tmpbuf, mop->size))
3653 r = -EFAULT;
3654 }
3655 break;
3656 case KVM_S390_MEMOP_LOGICAL_WRITE:
3657 if (mop->flags & KVM_S390_MEMOP_F_CHECK_ONLY) {
David Hildenbrand92c96322015-11-16 15:42:11 +01003658 r = check_gva_range(vcpu, mop->gaddr, mop->ar,
3659 mop->size, GACC_STORE);
Thomas Huth41408c282015-02-06 15:01:21 +01003660 break;
3661 }
3662 if (copy_from_user(tmpbuf, uaddr, mop->size)) {
3663 r = -EFAULT;
3664 break;
3665 }
3666 r = write_guest(vcpu, mop->gaddr, mop->ar, tmpbuf, mop->size);
3667 break;
3668 default:
3669 r = -EINVAL;
3670 }
3671
3672 srcu_read_unlock(&vcpu->kvm->srcu, srcu_idx);
3673
3674 if (r > 0 && (mop->flags & KVM_S390_MEMOP_F_INJECT_EXCEPTION) != 0)
3675 kvm_s390_inject_prog_irq(vcpu, &vcpu->arch.pgm);
3676
3677 vfree(tmpbuf);
3678 return r;
3679}
3680
Heiko Carstensb0c632d2008-03-25 18:47:20 +01003681long kvm_arch_vcpu_ioctl(struct file *filp,
3682 unsigned int ioctl, unsigned long arg)
3683{
3684 struct kvm_vcpu *vcpu = filp->private_data;
3685 void __user *argp = (void __user *)arg;
Thomas Huth800c1062013-09-12 10:33:45 +02003686 int idx;
Avi Kivitybc923cc2010-05-13 12:21:46 +03003687 long r;
Heiko Carstensb0c632d2008-03-25 18:47:20 +01003688
Avi Kivity93736622010-05-13 12:35:17 +03003689 switch (ioctl) {
Jens Freimann47b43c52014-11-11 20:57:06 +01003690 case KVM_S390_IRQ: {
3691 struct kvm_s390_irq s390irq;
3692
3693 r = -EFAULT;
3694 if (copy_from_user(&s390irq, argp, sizeof(s390irq)))
3695 break;
3696 r = kvm_s390_inject_vcpu(vcpu, &s390irq);
3697 break;
3698 }
Avi Kivity93736622010-05-13 12:35:17 +03003699 case KVM_S390_INTERRUPT: {
Carsten Otteba5c1e92008-03-25 18:47:26 +01003700 struct kvm_s390_interrupt s390int;
Jens Freimann383d0b02014-07-29 15:11:49 +02003701 struct kvm_s390_irq s390irq;
Carsten Otteba5c1e92008-03-25 18:47:26 +01003702
Avi Kivity93736622010-05-13 12:35:17 +03003703 r = -EFAULT;
Carsten Otteba5c1e92008-03-25 18:47:26 +01003704 if (copy_from_user(&s390int, argp, sizeof(s390int)))
Avi Kivity93736622010-05-13 12:35:17 +03003705 break;
Jens Freimann383d0b02014-07-29 15:11:49 +02003706 if (s390int_to_s390irq(&s390int, &s390irq))
3707 return -EINVAL;
3708 r = kvm_s390_inject_vcpu(vcpu, &s390irq);
Avi Kivity93736622010-05-13 12:35:17 +03003709 break;
Carsten Otteba5c1e92008-03-25 18:47:26 +01003710 }
Heiko Carstensb0c632d2008-03-25 18:47:20 +01003711 case KVM_S390_STORE_STATUS:
Thomas Huth800c1062013-09-12 10:33:45 +02003712 idx = srcu_read_lock(&vcpu->kvm->srcu);
Avi Kivitybc923cc2010-05-13 12:21:46 +03003713 r = kvm_s390_vcpu_store_status(vcpu, arg);
Thomas Huth800c1062013-09-12 10:33:45 +02003714 srcu_read_unlock(&vcpu->kvm->srcu, idx);
Avi Kivitybc923cc2010-05-13 12:21:46 +03003715 break;
Heiko Carstensb0c632d2008-03-25 18:47:20 +01003716 case KVM_S390_SET_INITIAL_PSW: {
3717 psw_t psw;
3718
Avi Kivitybc923cc2010-05-13 12:21:46 +03003719 r = -EFAULT;
Heiko Carstensb0c632d2008-03-25 18:47:20 +01003720 if (copy_from_user(&psw, argp, sizeof(psw)))
Avi Kivitybc923cc2010-05-13 12:21:46 +03003721 break;
3722 r = kvm_arch_vcpu_ioctl_set_initial_psw(vcpu, psw);
3723 break;
Heiko Carstensb0c632d2008-03-25 18:47:20 +01003724 }
3725 case KVM_S390_INITIAL_RESET:
Avi Kivitybc923cc2010-05-13 12:21:46 +03003726 r = kvm_arch_vcpu_ioctl_initial_reset(vcpu);
3727 break;
Carsten Otte14eebd92012-05-15 14:15:26 +02003728 case KVM_SET_ONE_REG:
3729 case KVM_GET_ONE_REG: {
3730 struct kvm_one_reg reg;
3731 r = -EFAULT;
3732 if (copy_from_user(&reg, argp, sizeof(reg)))
3733 break;
3734 if (ioctl == KVM_SET_ONE_REG)
3735 r = kvm_arch_vcpu_ioctl_set_one_reg(vcpu, &reg);
3736 else
3737 r = kvm_arch_vcpu_ioctl_get_one_reg(vcpu, &reg);
3738 break;
3739 }
Carsten Otte27e03932012-01-04 10:25:21 +01003740#ifdef CONFIG_KVM_S390_UCONTROL
3741 case KVM_S390_UCAS_MAP: {
3742 struct kvm_s390_ucas_mapping ucasmap;
3743
3744 if (copy_from_user(&ucasmap, argp, sizeof(ucasmap))) {
3745 r = -EFAULT;
3746 break;
3747 }
3748
3749 if (!kvm_is_ucontrol(vcpu->kvm)) {
3750 r = -EINVAL;
3751 break;
3752 }
3753
3754 r = gmap_map_segment(vcpu->arch.gmap, ucasmap.user_addr,
3755 ucasmap.vcpu_addr, ucasmap.length);
3756 break;
3757 }
3758 case KVM_S390_UCAS_UNMAP: {
3759 struct kvm_s390_ucas_mapping ucasmap;
3760
3761 if (copy_from_user(&ucasmap, argp, sizeof(ucasmap))) {
3762 r = -EFAULT;
3763 break;
3764 }
3765
3766 if (!kvm_is_ucontrol(vcpu->kvm)) {
3767 r = -EINVAL;
3768 break;
3769 }
3770
3771 r = gmap_unmap_segment(vcpu->arch.gmap, ucasmap.vcpu_addr,
3772 ucasmap.length);
3773 break;
3774 }
3775#endif
Carsten Otteccc79102012-01-04 10:25:26 +01003776 case KVM_S390_VCPU_FAULT: {
Martin Schwidefsky527e30b2014-04-30 16:04:25 +02003777 r = gmap_fault(vcpu->arch.gmap, arg, 0);
Carsten Otteccc79102012-01-04 10:25:26 +01003778 break;
3779 }
Cornelia Huckd6712df2012-12-20 15:32:11 +01003780 case KVM_ENABLE_CAP:
3781 {
3782 struct kvm_enable_cap cap;
3783 r = -EFAULT;
3784 if (copy_from_user(&cap, argp, sizeof(cap)))
3785 break;
3786 r = kvm_vcpu_ioctl_enable_cap(vcpu, &cap);
3787 break;
3788 }
Thomas Huth41408c282015-02-06 15:01:21 +01003789 case KVM_S390_MEM_OP: {
3790 struct kvm_s390_mem_op mem_op;
3791
3792 if (copy_from_user(&mem_op, argp, sizeof(mem_op)) == 0)
3793 r = kvm_s390_guest_mem_op(vcpu, &mem_op);
3794 else
3795 r = -EFAULT;
3796 break;
3797 }
Jens Freimann816c7662014-11-24 17:13:46 +01003798 case KVM_S390_SET_IRQ_STATE: {
3799 struct kvm_s390_irq_state irq_state;
3800
3801 r = -EFAULT;
3802 if (copy_from_user(&irq_state, argp, sizeof(irq_state)))
3803 break;
3804 if (irq_state.len > VCPU_IRQS_MAX_BUF ||
3805 irq_state.len == 0 ||
3806 irq_state.len % sizeof(struct kvm_s390_irq) > 0) {
3807 r = -EINVAL;
3808 break;
3809 }
3810 r = kvm_s390_set_irq_state(vcpu,
3811 (void __user *) irq_state.buf,
3812 irq_state.len);
3813 break;
3814 }
3815 case KVM_S390_GET_IRQ_STATE: {
3816 struct kvm_s390_irq_state irq_state;
3817
3818 r = -EFAULT;
3819 if (copy_from_user(&irq_state, argp, sizeof(irq_state)))
3820 break;
3821 if (irq_state.len == 0) {
3822 r = -EINVAL;
3823 break;
3824 }
3825 r = kvm_s390_get_irq_state(vcpu,
3826 (__u8 __user *) irq_state.buf,
3827 irq_state.len);
3828 break;
3829 }
Heiko Carstensb0c632d2008-03-25 18:47:20 +01003830 default:
Carsten Otte3e6afcf2012-01-04 10:25:30 +01003831 r = -ENOTTY;
Heiko Carstensb0c632d2008-03-25 18:47:20 +01003832 }
Avi Kivitybc923cc2010-05-13 12:21:46 +03003833 return r;
Heiko Carstensb0c632d2008-03-25 18:47:20 +01003834}
3835
Carsten Otte5b1c1492012-01-04 10:25:23 +01003836int kvm_arch_vcpu_fault(struct kvm_vcpu *vcpu, struct vm_fault *vmf)
3837{
3838#ifdef CONFIG_KVM_S390_UCONTROL
3839 if ((vmf->pgoff == KVM_S390_SIE_PAGE_OFFSET)
3840 && (kvm_is_ucontrol(vcpu->kvm))) {
3841 vmf->page = virt_to_page(vcpu->arch.sie_block);
3842 get_page(vmf->page);
3843 return 0;
3844 }
3845#endif
3846 return VM_FAULT_SIGBUS;
3847}
3848
Aneesh Kumar K.V55870272013-10-07 22:18:00 +05303849int kvm_arch_create_memslot(struct kvm *kvm, struct kvm_memory_slot *slot,
3850 unsigned long npages)
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +09003851{
3852 return 0;
3853}
3854
Heiko Carstensb0c632d2008-03-25 18:47:20 +01003855/* Section: memory related */
Marcelo Tosattif7784b82009-12-23 14:35:18 -02003856int kvm_arch_prepare_memory_region(struct kvm *kvm,
3857 struct kvm_memory_slot *memslot,
Paolo Bonzini09170a42015-05-18 13:59:39 +02003858 const struct kvm_userspace_memory_region *mem,
Takuya Yoshikawa7b6195a2013-02-27 19:44:34 +09003859 enum kvm_mr_change change)
Heiko Carstensb0c632d2008-03-25 18:47:20 +01003860{
Nick Wangdd2887e2013-03-25 17:22:57 +01003861 /* A few sanity checks. We can have memory slots which have to be
3862 located/ended at a segment boundary (1MB). The memory in userland is
3863 ok to be fragmented into various different vmas. It is okay to mmap()
3864 and munmap() stuff in this slot after doing this call at any time */
Heiko Carstensb0c632d2008-03-25 18:47:20 +01003865
Carsten Otte598841c2011-07-24 10:48:21 +02003866 if (mem->userspace_addr & 0xffffful)
Heiko Carstensb0c632d2008-03-25 18:47:20 +01003867 return -EINVAL;
3868
Carsten Otte598841c2011-07-24 10:48:21 +02003869 if (mem->memory_size & 0xffffful)
Heiko Carstensb0c632d2008-03-25 18:47:20 +01003870 return -EINVAL;
3871
Dominik Dingela3a92c32014-12-01 17:24:42 +01003872 if (mem->guest_phys_addr + mem->memory_size > kvm->arch.mem_limit)
3873 return -EINVAL;
3874
Marcelo Tosattif7784b82009-12-23 14:35:18 -02003875 return 0;
3876}
3877
3878void kvm_arch_commit_memory_region(struct kvm *kvm,
Paolo Bonzini09170a42015-05-18 13:59:39 +02003879 const struct kvm_userspace_memory_region *mem,
Takuya Yoshikawa84826442013-02-27 19:45:25 +09003880 const struct kvm_memory_slot *old,
Paolo Bonzinif36f3f22015-05-18 13:20:23 +02003881 const struct kvm_memory_slot *new,
Takuya Yoshikawa84826442013-02-27 19:45:25 +09003882 enum kvm_mr_change change)
Marcelo Tosattif7784b82009-12-23 14:35:18 -02003883{
Carsten Ottef7850c92011-07-24 10:48:23 +02003884 int rc;
Marcelo Tosattif7784b82009-12-23 14:35:18 -02003885
Christian Borntraeger2cef4de2013-03-25 17:22:48 +01003886 /* If the basics of the memslot do not change, we do not want
3887 * to update the gmap. Every update causes several unnecessary
3888 * segment translation exceptions. This is usually handled just
3889 * fine by the normal fault handler + gmap, but it will also
3890 * cause faults on the prefix page of running guest CPUs.
3891 */
3892 if (old->userspace_addr == mem->userspace_addr &&
3893 old->base_gfn * PAGE_SIZE == mem->guest_phys_addr &&
3894 old->npages * PAGE_SIZE == mem->memory_size)
3895 return;
Carsten Otte598841c2011-07-24 10:48:21 +02003896
3897 rc = gmap_map_segment(kvm->arch.gmap, mem->userspace_addr,
3898 mem->guest_phys_addr, mem->memory_size);
3899 if (rc)
David Hildenbrandea2cdd22015-05-20 13:24:02 +02003900 pr_warn("failed to commit memory region\n");
Carsten Otte598841c2011-07-24 10:48:21 +02003901 return;
Heiko Carstensb0c632d2008-03-25 18:47:20 +01003902}
3903
Alexander Yarygin60a37702016-04-01 15:38:57 +03003904static inline unsigned long nonhyp_mask(int i)
3905{
3906 unsigned int nonhyp_fai = (sclp.hmfai << i * 2) >> 30;
3907
3908 return 0x0000ffffffffffffUL >> (nonhyp_fai << 4);
3909}
3910
Christian Borntraeger3491caf2016-05-13 12:16:35 +02003911void kvm_arch_vcpu_block_finish(struct kvm_vcpu *vcpu)
3912{
3913 vcpu->valid_wakeup = false;
3914}
3915
Heiko Carstensb0c632d2008-03-25 18:47:20 +01003916static int __init kvm_s390_init(void)
3917{
Alexander Yarygin60a37702016-04-01 15:38:57 +03003918 int i;
3919
David Hildenbrand07197fd2015-01-30 16:01:38 +01003920 if (!sclp.has_sief2) {
3921 pr_info("SIE not available\n");
3922 return -ENODEV;
3923 }
3924
Alexander Yarygin60a37702016-04-01 15:38:57 +03003925 for (i = 0; i < 16; i++)
3926 kvm_s390_fac_list_mask[i] |=
3927 S390_lowcore.stfle_fac_list[i] & nonhyp_mask(i);
3928
Michael Mueller9d8d5782015-02-02 15:42:51 +01003929 return kvm_init(NULL, sizeof(struct kvm_vcpu), 0, THIS_MODULE);
Heiko Carstensb0c632d2008-03-25 18:47:20 +01003930}
3931
3932static void __exit kvm_s390_exit(void)
3933{
Heiko Carstensb0c632d2008-03-25 18:47:20 +01003934 kvm_exit();
3935}
3936
3937module_init(kvm_s390_init);
3938module_exit(kvm_s390_exit);
Cornelia Huck566af942013-05-27 18:42:33 +02003939
3940/*
3941 * Enable autoloading of the kvm module.
3942 * Note that we add the module alias here instead of virt/kvm/kvm_main.c
3943 * since x86 takes a different approach.
3944 */
3945#include <linux/miscdevice.h>
3946MODULE_ALIAS_MISCDEV(KVM_MINOR);
3947MODULE_ALIAS("devname:kvm");