blob: d42428c11794122434261abdbb578259c11f0a33 [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>
Tony Krowiaka374e892014-09-03 10:13:53 +020026#include <linux/random.h>
Heiko Carstensb0c632d2008-03-25 18:47:20 +010027#include <linux/slab.h>
Carsten Otteba5c1e92008-03-25 18:47:26 +010028#include <linux/timer.h>
Thomas Huth41408c282015-02-06 15:01:21 +010029#include <linux/vmalloc.h>
David Hildenbrand15c97052015-03-19 17:36:43 +010030#include <linux/bitmap.h>
Heiko Carstenscbb870c2010-02-26 22:37:43 +010031#include <asm/asm-offsets.h>
Heiko Carstensb0c632d2008-03-25 18:47:20 +010032#include <asm/lowcore.h>
Fan Zhangfdf03652015-05-13 10:58:41 +020033#include <asm/etr.h>
Heiko Carstensb0c632d2008-03-25 18:47:20 +010034#include <asm/pgtable.h>
Martin Schwidefsky1e133ab2016-03-08 11:49:57 +010035#include <asm/gmap.h>
Heiko Carstensf5daba12009-03-26 15:24:01 +010036#include <asm/nmi.h>
David Howellsa0616cd2012-03-28 18:30:02 +010037#include <asm/switch_to.h>
Jens Freimann6d3da242013-07-03 15:18:35 +020038#include <asm/isc.h>
Christian Borntraeger1526bf92012-05-15 14:15:25 +020039#include <asm/sclp.h>
David Hildenbrand0a763c72016-05-18 16:03:47 +020040#include <asm/cpacf.h>
41#include <asm/etr.h>
Christian Borntraeger8f2abe62008-03-25 18:47:23 +010042#include "kvm-s390.h"
Heiko Carstensb0c632d2008-03-25 18:47:20 +010043#include "gaccess.h"
44
David Hildenbrandea2cdd22015-05-20 13:24:02 +020045#define KMSG_COMPONENT "kvm-s390"
46#undef pr_fmt
47#define pr_fmt(fmt) KMSG_COMPONENT ": " fmt
48
Cornelia Huck5786fff2012-07-23 17:20:29 +020049#define CREATE_TRACE_POINTS
50#include "trace.h"
Cornelia Huckade38c32012-07-23 17:20:30 +020051#include "trace-s390.h"
Cornelia Huck5786fff2012-07-23 17:20:29 +020052
Thomas Huth41408c282015-02-06 15:01:21 +010053#define MEM_OP_MAX_SIZE 65536 /* Maximum transfer size for KVM_S390_MEM_OP */
Jens Freimann816c7662014-11-24 17:13:46 +010054#define LOCAL_IRQS 32
55#define VCPU_IRQS_MAX_BUF (sizeof(struct kvm_s390_irq) * \
56 (KVM_MAX_VCPUS + LOCAL_IRQS))
Thomas Huth41408c282015-02-06 15:01:21 +010057
Heiko Carstensb0c632d2008-03-25 18:47:20 +010058#define VCPU_STAT(x) offsetof(struct kvm_vcpu, stat.x), KVM_STAT_VCPU
59
60struct kvm_stats_debugfs_item debugfs_entries[] = {
61 { "userspace_handled", VCPU_STAT(exit_userspace) },
Christian Borntraeger0eaeafa2008-05-07 09:22:53 +020062 { "exit_null", VCPU_STAT(exit_null) },
Christian Borntraeger8f2abe62008-03-25 18:47:23 +010063 { "exit_validity", VCPU_STAT(exit_validity) },
64 { "exit_stop_request", VCPU_STAT(exit_stop_request) },
65 { "exit_external_request", VCPU_STAT(exit_external_request) },
66 { "exit_external_interrupt", VCPU_STAT(exit_external_interrupt) },
Carsten Otteba5c1e92008-03-25 18:47:26 +010067 { "exit_instruction", VCPU_STAT(exit_instruction) },
68 { "exit_program_interruption", VCPU_STAT(exit_program_interruption) },
69 { "exit_instr_and_program_int", VCPU_STAT(exit_instr_and_program) },
Janosch Franka011eeb2016-05-09 14:14:01 +020070 { "exit_operation_exception", VCPU_STAT(exit_operation_exception) },
Paolo Bonzinif7819512015-02-04 18:20:58 +010071 { "halt_successful_poll", VCPU_STAT(halt_successful_poll) },
Paolo Bonzini62bea5b2015-09-15 18:27:57 +020072 { "halt_attempted_poll", VCPU_STAT(halt_attempted_poll) },
Christian Borntraeger3491caf2016-05-13 12:16:35 +020073 { "halt_poll_invalid", VCPU_STAT(halt_poll_invalid) },
David Hildenbrandce2e4f02014-07-11 10:00:43 +020074 { "halt_wakeup", VCPU_STAT(halt_wakeup) },
Christian Borntraegerf5e10b02008-07-25 15:52:44 +020075 { "instruction_lctlg", VCPU_STAT(instruction_lctlg) },
Carsten Otteba5c1e92008-03-25 18:47:26 +010076 { "instruction_lctl", VCPU_STAT(instruction_lctl) },
David Hildenbrandaba07502014-01-23 10:47:13 +010077 { "instruction_stctl", VCPU_STAT(instruction_stctl) },
78 { "instruction_stctg", VCPU_STAT(instruction_stctg) },
Carsten Otteba5c1e92008-03-25 18:47:26 +010079 { "deliver_emergency_signal", VCPU_STAT(deliver_emergency_signal) },
Christian Ehrhardt7697e71f2011-10-18 12:27:15 +020080 { "deliver_external_call", VCPU_STAT(deliver_external_call) },
Carsten Otteba5c1e92008-03-25 18:47:26 +010081 { "deliver_service_signal", VCPU_STAT(deliver_service_signal) },
82 { "deliver_virtio_interrupt", VCPU_STAT(deliver_virtio_interrupt) },
83 { "deliver_stop_signal", VCPU_STAT(deliver_stop_signal) },
84 { "deliver_prefix_signal", VCPU_STAT(deliver_prefix_signal) },
85 { "deliver_restart_signal", VCPU_STAT(deliver_restart_signal) },
86 { "deliver_program_interruption", VCPU_STAT(deliver_program_int) },
87 { "exit_wait_state", VCPU_STAT(exit_wait_state) },
Christian Borntraeger69d0d3a2013-06-12 13:54:53 +020088 { "instruction_pfmf", VCPU_STAT(instruction_pfmf) },
Christian Borntraeger453423d2008-03-25 18:47:29 +010089 { "instruction_stidp", VCPU_STAT(instruction_stidp) },
90 { "instruction_spx", VCPU_STAT(instruction_spx) },
91 { "instruction_stpx", VCPU_STAT(instruction_stpx) },
92 { "instruction_stap", VCPU_STAT(instruction_stap) },
93 { "instruction_storage_key", VCPU_STAT(instruction_storage_key) },
Heiko Carstens8a2422342014-01-10 14:33:28 +010094 { "instruction_ipte_interlock", VCPU_STAT(instruction_ipte_interlock) },
Christian Borntraeger453423d2008-03-25 18:47:29 +010095 { "instruction_stsch", VCPU_STAT(instruction_stsch) },
96 { "instruction_chsc", VCPU_STAT(instruction_chsc) },
Konstantin Weitzb31288f2013-04-17 17:36:29 +020097 { "instruction_essa", VCPU_STAT(instruction_essa) },
Christian Borntraeger453423d2008-03-25 18:47:29 +010098 { "instruction_stsi", VCPU_STAT(instruction_stsi) },
99 { "instruction_stfl", VCPU_STAT(instruction_stfl) },
Christian Borntraegerbb25b9b2011-07-24 10:48:17 +0200100 { "instruction_tprot", VCPU_STAT(instruction_tprot) },
Janosch Frank95ca2cb2016-05-23 15:11:58 +0200101 { "instruction_sthyi", VCPU_STAT(instruction_sthyi) },
David Hildenbranda3508fb2015-07-08 13:19:48 +0200102 { "instruction_sie", VCPU_STAT(instruction_sie) },
Christian Borntraeger5288fbf2008-03-25 18:47:31 +0100103 { "instruction_sigp_sense", VCPU_STAT(instruction_sigp_sense) },
Cornelia Huckbd59d3a2011-11-17 11:00:42 +0100104 { "instruction_sigp_sense_running", VCPU_STAT(instruction_sigp_sense_running) },
Christian Ehrhardt7697e71f2011-10-18 12:27:15 +0200105 { "instruction_sigp_external_call", VCPU_STAT(instruction_sigp_external_call) },
Christian Borntraeger5288fbf2008-03-25 18:47:31 +0100106 { "instruction_sigp_emergency", VCPU_STAT(instruction_sigp_emergency) },
David Hildenbrand42cb0c92014-05-23 12:25:11 +0200107 { "instruction_sigp_cond_emergency", VCPU_STAT(instruction_sigp_cond_emergency) },
108 { "instruction_sigp_start", VCPU_STAT(instruction_sigp_start) },
Christian Borntraeger5288fbf2008-03-25 18:47:31 +0100109 { "instruction_sigp_stop", VCPU_STAT(instruction_sigp_stop) },
David Hildenbrand42cb0c92014-05-23 12:25:11 +0200110 { "instruction_sigp_stop_store_status", VCPU_STAT(instruction_sigp_stop_store_status) },
111 { "instruction_sigp_store_status", VCPU_STAT(instruction_sigp_store_status) },
Eric Farmancd7b4b62015-02-12 09:06:34 -0500112 { "instruction_sigp_store_adtl_status", VCPU_STAT(instruction_sigp_store_adtl_status) },
Christian Borntraeger5288fbf2008-03-25 18:47:31 +0100113 { "instruction_sigp_set_arch", VCPU_STAT(instruction_sigp_arch) },
114 { "instruction_sigp_set_prefix", VCPU_STAT(instruction_sigp_prefix) },
115 { "instruction_sigp_restart", VCPU_STAT(instruction_sigp_restart) },
David Hildenbrand42cb0c92014-05-23 12:25:11 +0200116 { "instruction_sigp_cpu_reset", VCPU_STAT(instruction_sigp_cpu_reset) },
117 { "instruction_sigp_init_cpu_reset", VCPU_STAT(instruction_sigp_init_cpu_reset) },
118 { "instruction_sigp_unknown", VCPU_STAT(instruction_sigp_unknown) },
Christian Borntraeger388186b2011-10-30 15:17:03 +0100119 { "diagnose_10", VCPU_STAT(diagnose_10) },
Christian Borntraegere28acfe2008-03-25 18:47:34 +0100120 { "diagnose_44", VCPU_STAT(diagnose_44) },
Konstantin Weitz41628d32012-04-25 15:30:38 +0200121 { "diagnose_9c", VCPU_STAT(diagnose_9c) },
Christian Borntraeger175a5c92015-07-07 15:19:32 +0200122 { "diagnose_258", VCPU_STAT(diagnose_258) },
123 { "diagnose_308", VCPU_STAT(diagnose_308) },
124 { "diagnose_500", VCPU_STAT(diagnose_500) },
Heiko Carstensb0c632d2008-03-25 18:47:20 +0100125 { NULL }
126};
127
David Hildenbranda411edf2016-02-02 15:41:22 +0100128/* allow nested virtualization in KVM (if enabled by user space) */
129static int nested;
130module_param(nested, int, S_IRUGO);
131MODULE_PARM_DESC(nested, "Nested virtualization support");
132
Michael Mueller9d8d5782015-02-02 15:42:51 +0100133/* upper facilities limit for kvm */
Alexander Yarygin60a37702016-04-01 15:38:57 +0300134unsigned long kvm_s390_fac_list_mask[16] = {
135 0xffe6000000000000UL,
136 0x005e000000000000UL,
Michael Mueller9d8d5782015-02-02 15:42:51 +0100137};
Heiko Carstensb0c632d2008-03-25 18:47:20 +0100138
Michael Mueller9d8d5782015-02-02 15:42:51 +0100139unsigned long kvm_s390_fac_list_mask_size(void)
Michael Mueller78c4b59f2013-07-26 15:04:04 +0200140{
Michael Mueller9d8d5782015-02-02 15:42:51 +0100141 BUILD_BUG_ON(ARRAY_SIZE(kvm_s390_fac_list_mask) > S390_ARCH_FAC_MASK_SIZE_U64);
142 return ARRAY_SIZE(kvm_s390_fac_list_mask);
Michael Mueller78c4b59f2013-07-26 15:04:04 +0200143}
144
David Hildenbrand15c97052015-03-19 17:36:43 +0100145/* available cpu features supported by kvm */
146static DECLARE_BITMAP(kvm_s390_available_cpu_feat, KVM_S390_VM_CPU_FEAT_NR_BITS);
David Hildenbrand0a763c72016-05-18 16:03:47 +0200147/* available subfunctions indicated via query / "test bit" */
148static struct kvm_s390_vm_cpu_subfunc kvm_s390_available_subfunc;
David Hildenbrand15c97052015-03-19 17:36:43 +0100149
Michael Mueller9d8d5782015-02-02 15:42:51 +0100150static struct gmap_notifier gmap_notifier;
David Hildenbranda3508fb2015-07-08 13:19:48 +0200151static struct gmap_notifier vsie_gmap_notifier;
Christian Borntraeger78f26132015-07-22 15:50:58 +0200152debug_info_t *kvm_s390_dbf;
Michael Mueller9d8d5782015-02-02 15:42:51 +0100153
Heiko Carstensb0c632d2008-03-25 18:47:20 +0100154/* Section: not file related */
Radim Krčmář13a34e02014-08-28 15:13:03 +0200155int kvm_arch_hardware_enable(void)
Heiko Carstensb0c632d2008-03-25 18:47:20 +0100156{
157 /* every s390 is virtualization enabled ;-) */
Alexander Graf10474ae2009-09-15 11:37:46 +0200158 return 0;
Heiko Carstensb0c632d2008-03-25 18:47:20 +0100159}
160
Martin Schwidefsky414d3b02016-03-08 11:52:54 +0100161static void kvm_gmap_notifier(struct gmap *gmap, unsigned long start,
162 unsigned long end);
Christian Borntraeger2c70fe42013-05-17 14:41:36 +0200163
Fan Zhangfdf03652015-05-13 10:58:41 +0200164/*
165 * This callback is executed during stop_machine(). All CPUs are therefore
166 * temporarily stopped. In order not to change guest behavior, we have to
167 * disable preemption whenever we touch the epoch of kvm and the VCPUs,
168 * so a CPU won't be stopped while calculating with the epoch.
169 */
170static int kvm_clock_sync(struct notifier_block *notifier, unsigned long val,
171 void *v)
172{
173 struct kvm *kvm;
174 struct kvm_vcpu *vcpu;
175 int i;
176 unsigned long long *delta = v;
177
178 list_for_each_entry(kvm, &vm_list, vm_list) {
179 kvm->arch.epoch -= *delta;
180 kvm_for_each_vcpu(i, vcpu, kvm) {
181 vcpu->arch.sie_block->epoch -= *delta;
David Hildenbranddb0758b2016-02-15 09:42:25 +0100182 if (vcpu->arch.cputm_enabled)
183 vcpu->arch.cputm_start += *delta;
David Hildenbrand91473b42015-10-29 10:30:36 +0100184 if (vcpu->arch.vsie_block)
185 vcpu->arch.vsie_block->epoch -= *delta;
Fan Zhangfdf03652015-05-13 10:58:41 +0200186 }
187 }
188 return NOTIFY_OK;
189}
190
191static struct notifier_block kvm_clock_notifier = {
192 .notifier_call = kvm_clock_sync,
193};
194
Heiko Carstensb0c632d2008-03-25 18:47:20 +0100195int kvm_arch_hardware_setup(void)
196{
Christian Borntraeger2c70fe42013-05-17 14:41:36 +0200197 gmap_notifier.notifier_call = kvm_gmap_notifier;
Martin Schwidefskyb2d73b22016-03-08 11:54:42 +0100198 gmap_register_pte_notifier(&gmap_notifier);
David Hildenbranda3508fb2015-07-08 13:19:48 +0200199 vsie_gmap_notifier.notifier_call = kvm_s390_vsie_gmap_notifier;
200 gmap_register_pte_notifier(&vsie_gmap_notifier);
Fan Zhangfdf03652015-05-13 10:58:41 +0200201 atomic_notifier_chain_register(&s390_epoch_delta_notifier,
202 &kvm_clock_notifier);
Heiko Carstensb0c632d2008-03-25 18:47:20 +0100203 return 0;
204}
205
206void kvm_arch_hardware_unsetup(void)
207{
Martin Schwidefskyb2d73b22016-03-08 11:54:42 +0100208 gmap_unregister_pte_notifier(&gmap_notifier);
David Hildenbranda3508fb2015-07-08 13:19:48 +0200209 gmap_unregister_pte_notifier(&vsie_gmap_notifier);
Fan Zhangfdf03652015-05-13 10:58:41 +0200210 atomic_notifier_chain_unregister(&s390_epoch_delta_notifier,
211 &kvm_clock_notifier);
Heiko Carstensb0c632d2008-03-25 18:47:20 +0100212}
213
David Hildenbrand22be5a12016-01-21 13:22:54 +0100214static void allow_cpu_feat(unsigned long nr)
215{
216 set_bit_inv(nr, kvm_s390_available_cpu_feat);
217}
218
David Hildenbrand0a763c72016-05-18 16:03:47 +0200219static inline int plo_test_bit(unsigned char nr)
220{
221 register unsigned long r0 asm("0") = (unsigned long) nr | 0x100;
222 int cc = 3; /* subfunction not available */
223
224 asm volatile(
225 /* Parameter registers are ignored for "test bit" */
226 " plo 0,0,0,0(0)\n"
227 " ipm %0\n"
228 " srl %0,28\n"
229 : "=d" (cc)
230 : "d" (r0)
231 : "cc");
232 return cc == 0;
233}
234
David Hildenbrand22be5a12016-01-21 13:22:54 +0100235static void kvm_s390_cpu_feat_init(void)
236{
David Hildenbrand0a763c72016-05-18 16:03:47 +0200237 int i;
238
239 for (i = 0; i < 256; ++i) {
240 if (plo_test_bit(i))
241 kvm_s390_available_subfunc.plo[i >> 3] |= 0x80 >> (i & 7);
242 }
243
244 if (test_facility(28)) /* TOD-clock steering */
245 etr_ptff(kvm_s390_available_subfunc.ptff, ETR_PTFF_QAF);
246
247 if (test_facility(17)) { /* MSA */
248 __cpacf_query(CPACF_KMAC, kvm_s390_available_subfunc.kmac);
249 __cpacf_query(CPACF_KMC, kvm_s390_available_subfunc.kmc);
250 __cpacf_query(CPACF_KM, kvm_s390_available_subfunc.km);
251 __cpacf_query(CPACF_KIMD, kvm_s390_available_subfunc.kimd);
252 __cpacf_query(CPACF_KLMD, kvm_s390_available_subfunc.klmd);
253 }
254 if (test_facility(76)) /* MSA3 */
255 __cpacf_query(CPACF_PCKMO, kvm_s390_available_subfunc.pckmo);
256 if (test_facility(77)) { /* MSA4 */
257 __cpacf_query(CPACF_KMCTR, kvm_s390_available_subfunc.kmctr);
258 __cpacf_query(CPACF_KMF, kvm_s390_available_subfunc.kmf);
259 __cpacf_query(CPACF_KMO, kvm_s390_available_subfunc.kmo);
260 __cpacf_query(CPACF_PCC, kvm_s390_available_subfunc.pcc);
261 }
262 if (test_facility(57)) /* MSA5 */
263 __cpacf_query(CPACF_PPNO, kvm_s390_available_subfunc.ppno);
264
David Hildenbrand22be5a12016-01-21 13:22:54 +0100265 if (MACHINE_HAS_ESOP)
266 allow_cpu_feat(KVM_S390_VM_CPU_FEAT_ESOP);
David Hildenbranda3508fb2015-07-08 13:19:48 +0200267 /*
268 * We need SIE support, ESOP (PROT_READ protection for gmap_shadow),
269 * 64bit SCAO (SCA passthrough) and IDTE (for gmap_shadow unshadowing).
270 */
271 if (!sclp.has_sief2 || !MACHINE_HAS_ESOP || !sclp.has_64bscao ||
David Hildenbranda411edf2016-02-02 15:41:22 +0100272 !test_facility(3) || !nested)
David Hildenbranda3508fb2015-07-08 13:19:48 +0200273 return;
274 allow_cpu_feat(KVM_S390_VM_CPU_FEAT_SIEF2);
David Hildenbrand19c439b2015-11-25 11:02:26 +0100275 if (sclp.has_64bscao)
276 allow_cpu_feat(KVM_S390_VM_CPU_FEAT_64BSCAO);
David Hildenbrand0615a322015-11-25 09:59:49 +0100277 if (sclp.has_siif)
278 allow_cpu_feat(KVM_S390_VM_CPU_FEAT_SIIF);
David Hildenbrand77d18f62015-11-24 16:32:35 +0100279 if (sclp.has_gpere)
280 allow_cpu_feat(KVM_S390_VM_CPU_FEAT_GPERE);
David Hildenbranda1b7b9b2015-11-24 16:41:33 +0100281 if (sclp.has_gsls)
282 allow_cpu_feat(KVM_S390_VM_CPU_FEAT_GSLS);
David Hildenbrand5630a8e2015-11-24 16:53:51 +0100283 if (sclp.has_ib)
284 allow_cpu_feat(KVM_S390_VM_CPU_FEAT_IB);
David Hildenbrand13ee3f62015-11-24 16:54:37 +0100285 if (sclp.has_cei)
286 allow_cpu_feat(KVM_S390_VM_CPU_FEAT_CEI);
David Hildenbrand7fd7f392015-11-24 16:56:23 +0100287 if (sclp.has_ibs)
288 allow_cpu_feat(KVM_S390_VM_CPU_FEAT_IBS);
David Hildenbrand5d3876a2016-04-13 17:06:50 +0200289 /*
290 * KVM_S390_VM_CPU_FEAT_SKEY: Wrong shadow of PTE.I bits will make
291 * all skey handling functions read/set the skey from the PGSTE
292 * instead of the real storage key.
293 *
294 * KVM_S390_VM_CPU_FEAT_CMMA: Wrong shadow of PTE.I bits will make
295 * pages being detected as preserved although they are resident.
296 *
297 * KVM_S390_VM_CPU_FEAT_PFMFI: Wrong shadow of PTE.I bits will
298 * have the same effect as for KVM_S390_VM_CPU_FEAT_SKEY.
299 *
300 * For KVM_S390_VM_CPU_FEAT_SKEY, KVM_S390_VM_CPU_FEAT_CMMA and
301 * KVM_S390_VM_CPU_FEAT_PFMFI, all PTE.I and PGSTE bits have to be
302 * correctly shadowed. We can do that for the PGSTE but not for PTE.I.
303 *
304 * KVM_S390_VM_CPU_FEAT_SIGPIF: Wrong SCB addresses in the SCA. We
305 * cannot easily shadow the SCA because of the ipte lock.
306 */
David Hildenbrand22be5a12016-01-21 13:22:54 +0100307}
308
Heiko Carstensb0c632d2008-03-25 18:47:20 +0100309int kvm_arch_init(void *opaque)
310{
Christian Borntraeger78f26132015-07-22 15:50:58 +0200311 kvm_s390_dbf = debug_register("kvm-trace", 32, 1, 7 * sizeof(long));
312 if (!kvm_s390_dbf)
313 return -ENOMEM;
314
315 if (debug_register_view(kvm_s390_dbf, &debug_sprintf_view)) {
316 debug_unregister(kvm_s390_dbf);
317 return -ENOMEM;
318 }
319
David Hildenbrand22be5a12016-01-21 13:22:54 +0100320 kvm_s390_cpu_feat_init();
321
Cornelia Huck84877d92014-09-02 10:27:35 +0100322 /* Register floating interrupt controller interface. */
323 return kvm_register_device_ops(&kvm_flic_ops, KVM_DEV_TYPE_FLIC);
Heiko Carstensb0c632d2008-03-25 18:47:20 +0100324}
325
Christian Borntraeger78f26132015-07-22 15:50:58 +0200326void kvm_arch_exit(void)
327{
328 debug_unregister(kvm_s390_dbf);
329}
330
Heiko Carstensb0c632d2008-03-25 18:47:20 +0100331/* Section: device related */
332long kvm_arch_dev_ioctl(struct file *filp,
333 unsigned int ioctl, unsigned long arg)
334{
335 if (ioctl == KVM_S390_ENABLE_SIE)
336 return s390_enable_sie();
337 return -EINVAL;
338}
339
Alexander Graf784aa3d2014-07-14 18:27:35 +0200340int kvm_vm_ioctl_check_extension(struct kvm *kvm, long ext)
Heiko Carstensb0c632d2008-03-25 18:47:20 +0100341{
Carsten Otted7b0b5e2009-11-19 14:21:16 +0100342 int r;
343
Carsten Otte2bd0ac42008-07-25 15:49:13 +0200344 switch (ext) {
Carsten Otted7b0b5e2009-11-19 14:21:16 +0100345 case KVM_CAP_S390_PSW:
Christian Borntraegerb6cf8782011-09-20 17:07:29 +0200346 case KVM_CAP_S390_GMAP:
Christian Borntraeger52e16b12011-11-17 11:00:44 +0100347 case KVM_CAP_SYNC_MMU:
Carsten Otte1efd0f52012-01-04 10:25:29 +0100348#ifdef CONFIG_KVM_S390_UCONTROL
349 case KVM_CAP_S390_UCONTROL:
350#endif
Dominik Dingel3c038e62013-10-07 17:11:48 +0200351 case KVM_CAP_ASYNC_PF:
Christian Borntraeger60b413c2012-01-11 11:20:31 +0100352 case KVM_CAP_SYNC_REGS:
Carsten Otte14eebd92012-05-15 14:15:26 +0200353 case KVM_CAP_ONE_REG:
Cornelia Huckd6712df2012-12-20 15:32:11 +0100354 case KVM_CAP_ENABLE_CAP:
Cornelia Huckfa6b7fe2012-12-20 15:32:12 +0100355 case KVM_CAP_S390_CSS_SUPPORT:
Cornelia Huck10ccaa12013-02-28 12:33:21 +0100356 case KVM_CAP_IOEVENTFD:
Jens Freimannc05c4182013-10-07 16:13:45 +0200357 case KVM_CAP_DEVICE_CTRL:
Cornelia Huckd938dc52013-10-23 18:26:34 +0200358 case KVM_CAP_ENABLE_CAP_VM:
Cornelia Huck78599d92014-07-15 09:54:39 +0200359 case KVM_CAP_S390_IRQCHIP:
Dominik Dingelf2061652014-04-09 13:13:00 +0200360 case KVM_CAP_VM_ATTRIBUTES:
David Hildenbrand6352e4d2014-04-10 17:35:00 +0200361 case KVM_CAP_MP_STATE:
Jens Freimann47b43c52014-11-11 20:57:06 +0100362 case KVM_CAP_S390_INJECT_IRQ:
David Hildenbrand2444b352014-10-09 14:10:13 +0200363 case KVM_CAP_S390_USER_SIGP:
Ekaterina Tumanovae44fc8c2015-01-30 16:55:56 +0100364 case KVM_CAP_S390_USER_STSI:
Jason J. Herne30ee2a92014-09-23 09:23:01 -0400365 case KVM_CAP_S390_SKEYS:
Jens Freimann816c7662014-11-24 17:13:46 +0100366 case KVM_CAP_S390_IRQ_STATE:
Carsten Otted7b0b5e2009-11-19 14:21:16 +0100367 r = 1;
368 break;
Thomas Huth41408c282015-02-06 15:01:21 +0100369 case KVM_CAP_S390_MEM_OP:
370 r = MEM_OP_MAX_SIZE;
371 break;
Christian Borntraegere726b1b2012-05-02 10:50:38 +0200372 case KVM_CAP_NR_VCPUS:
373 case KVM_CAP_MAX_VCPUS:
David Hildenbrand76a6dd72015-11-24 13:33:49 +0100374 r = KVM_S390_BSCA_CPU_SLOTS;
375 if (sclp.has_esca && sclp.has_64bscao)
376 r = KVM_S390_ESCA_CPU_SLOTS;
Christian Borntraegere726b1b2012-05-02 10:50:38 +0200377 break;
Nick Wange1e2e602013-03-25 17:22:58 +0100378 case KVM_CAP_NR_MEMSLOTS:
379 r = KVM_USER_MEM_SLOTS;
380 break;
Christian Borntraeger1526bf92012-05-15 14:15:25 +0200381 case KVM_CAP_S390_COW:
Martin Schwidefskyabf09be2012-11-07 13:17:37 +0100382 r = MACHINE_HAS_ESOP;
Christian Borntraeger1526bf92012-05-15 14:15:25 +0200383 break;
Eric Farman68c55752014-06-09 10:57:26 -0400384 case KVM_CAP_S390_VECTOR_REGISTERS:
385 r = MACHINE_HAS_VX;
386 break;
Fan Zhangc6e5f162016-01-07 18:24:29 +0800387 case KVM_CAP_S390_RI:
388 r = test_facility(64);
389 break;
Carsten Otte2bd0ac42008-07-25 15:49:13 +0200390 default:
Carsten Otted7b0b5e2009-11-19 14:21:16 +0100391 r = 0;
Carsten Otte2bd0ac42008-07-25 15:49:13 +0200392 }
Carsten Otted7b0b5e2009-11-19 14:21:16 +0100393 return r;
Heiko Carstensb0c632d2008-03-25 18:47:20 +0100394}
395
Jason J. Herne15f36eb2012-08-02 10:10:17 -0400396static void kvm_s390_sync_dirty_log(struct kvm *kvm,
397 struct kvm_memory_slot *memslot)
398{
399 gfn_t cur_gfn, last_gfn;
400 unsigned long address;
401 struct gmap *gmap = kvm->arch.gmap;
402
Jason J. Herne15f36eb2012-08-02 10:10:17 -0400403 /* Loop over all guest pages */
404 last_gfn = memslot->base_gfn + memslot->npages;
405 for (cur_gfn = memslot->base_gfn; cur_gfn <= last_gfn; cur_gfn++) {
406 address = gfn_to_hva_memslot(memslot, cur_gfn);
407
Martin Schwidefsky1e133ab2016-03-08 11:49:57 +0100408 if (test_and_clear_guest_dirty(gmap->mm, address))
Jason J. Herne15f36eb2012-08-02 10:10:17 -0400409 mark_page_dirty(kvm, cur_gfn);
Christian Borntraeger1763f8d2016-02-03 11:12:34 +0100410 if (fatal_signal_pending(current))
411 return;
Christian Borntraeger70c88a02016-02-02 15:15:56 +0100412 cond_resched();
Jason J. Herne15f36eb2012-08-02 10:10:17 -0400413 }
Jason J. Herne15f36eb2012-08-02 10:10:17 -0400414}
415
Heiko Carstensb0c632d2008-03-25 18:47:20 +0100416/* Section: vm related */
Eugene (jno) Dvurechenskia6e2f682015-04-21 15:31:59 +0200417static void sca_del_vcpu(struct kvm_vcpu *vcpu);
418
Heiko Carstensb0c632d2008-03-25 18:47:20 +0100419/*
420 * Get (and clear) the dirty memory log for a memory slot.
421 */
422int kvm_vm_ioctl_get_dirty_log(struct kvm *kvm,
423 struct kvm_dirty_log *log)
424{
Jason J. Herne15f36eb2012-08-02 10:10:17 -0400425 int r;
426 unsigned long n;
Paolo Bonzini9f6b8022015-05-17 16:20:07 +0200427 struct kvm_memslots *slots;
Jason J. Herne15f36eb2012-08-02 10:10:17 -0400428 struct kvm_memory_slot *memslot;
429 int is_dirty = 0;
430
431 mutex_lock(&kvm->slots_lock);
432
433 r = -EINVAL;
434 if (log->slot >= KVM_USER_MEM_SLOTS)
435 goto out;
436
Paolo Bonzini9f6b8022015-05-17 16:20:07 +0200437 slots = kvm_memslots(kvm);
438 memslot = id_to_memslot(slots, log->slot);
Jason J. Herne15f36eb2012-08-02 10:10:17 -0400439 r = -ENOENT;
440 if (!memslot->dirty_bitmap)
441 goto out;
442
443 kvm_s390_sync_dirty_log(kvm, memslot);
444 r = kvm_get_dirty_log(kvm, log, &is_dirty);
445 if (r)
446 goto out;
447
448 /* Clear the dirty log */
449 if (is_dirty) {
450 n = kvm_dirty_bitmap_bytes(memslot);
451 memset(memslot->dirty_bitmap, 0, n);
452 }
453 r = 0;
454out:
455 mutex_unlock(&kvm->slots_lock);
456 return r;
Heiko Carstensb0c632d2008-03-25 18:47:20 +0100457}
458
Cornelia Huckd938dc52013-10-23 18:26:34 +0200459static int kvm_vm_ioctl_enable_cap(struct kvm *kvm, struct kvm_enable_cap *cap)
460{
461 int r;
462
463 if (cap->flags)
464 return -EINVAL;
465
466 switch (cap->cap) {
Cornelia Huck84223592013-07-15 13:36:01 +0200467 case KVM_CAP_S390_IRQCHIP:
Christian Borntraegerc92ea7b2015-07-22 15:52:10 +0200468 VM_EVENT(kvm, 3, "%s", "ENABLE: CAP_S390_IRQCHIP");
Cornelia Huck84223592013-07-15 13:36:01 +0200469 kvm->arch.use_irqchip = 1;
470 r = 0;
471 break;
David Hildenbrand2444b352014-10-09 14:10:13 +0200472 case KVM_CAP_S390_USER_SIGP:
Christian Borntraegerc92ea7b2015-07-22 15:52:10 +0200473 VM_EVENT(kvm, 3, "%s", "ENABLE: CAP_S390_USER_SIGP");
David Hildenbrand2444b352014-10-09 14:10:13 +0200474 kvm->arch.user_sigp = 1;
475 r = 0;
476 break;
Eric Farman68c55752014-06-09 10:57:26 -0400477 case KVM_CAP_S390_VECTOR_REGISTERS:
David Hildenbrand5967c172015-11-06 12:08:48 +0100478 mutex_lock(&kvm->lock);
Paolo Bonzinia03825b2016-06-13 14:50:04 +0200479 if (kvm->created_vcpus) {
David Hildenbrand5967c172015-11-06 12:08:48 +0100480 r = -EBUSY;
481 } else if (MACHINE_HAS_VX) {
David Hildenbrandc54f0d62015-12-02 08:53:52 +0100482 set_kvm_facility(kvm->arch.model.fac_mask, 129);
483 set_kvm_facility(kvm->arch.model.fac_list, 129);
Michael Mueller18280d82015-03-16 16:05:41 +0100484 r = 0;
485 } else
486 r = -EINVAL;
David Hildenbrand5967c172015-11-06 12:08:48 +0100487 mutex_unlock(&kvm->lock);
Christian Borntraegerc92ea7b2015-07-22 15:52:10 +0200488 VM_EVENT(kvm, 3, "ENABLE: CAP_S390_VECTOR_REGISTERS %s",
489 r ? "(not available)" : "(success)");
Eric Farman68c55752014-06-09 10:57:26 -0400490 break;
Fan Zhangc6e5f162016-01-07 18:24:29 +0800491 case KVM_CAP_S390_RI:
492 r = -EINVAL;
493 mutex_lock(&kvm->lock);
Paolo Bonzinia03825b2016-06-13 14:50:04 +0200494 if (kvm->created_vcpus) {
Fan Zhangc6e5f162016-01-07 18:24:29 +0800495 r = -EBUSY;
496 } else if (test_facility(64)) {
David Hildenbrandc54f0d62015-12-02 08:53:52 +0100497 set_kvm_facility(kvm->arch.model.fac_mask, 64);
498 set_kvm_facility(kvm->arch.model.fac_list, 64);
Fan Zhangc6e5f162016-01-07 18:24:29 +0800499 r = 0;
500 }
501 mutex_unlock(&kvm->lock);
502 VM_EVENT(kvm, 3, "ENABLE: CAP_S390_RI %s",
503 r ? "(not available)" : "(success)");
504 break;
Ekaterina Tumanovae44fc8c2015-01-30 16:55:56 +0100505 case KVM_CAP_S390_USER_STSI:
Christian Borntraegerc92ea7b2015-07-22 15:52:10 +0200506 VM_EVENT(kvm, 3, "%s", "ENABLE: CAP_S390_USER_STSI");
Ekaterina Tumanovae44fc8c2015-01-30 16:55:56 +0100507 kvm->arch.user_stsi = 1;
508 r = 0;
509 break;
Cornelia Huckd938dc52013-10-23 18:26:34 +0200510 default:
511 r = -EINVAL;
512 break;
513 }
514 return r;
515}
516
Dominik Dingel8c0a7ce2014-10-31 14:10:41 +0100517static int kvm_s390_get_mem_control(struct kvm *kvm, struct kvm_device_attr *attr)
518{
519 int ret;
520
521 switch (attr->attr) {
522 case KVM_S390_VM_MEM_LIMIT_SIZE:
523 ret = 0;
Christian Borntraegerc92ea7b2015-07-22 15:52:10 +0200524 VM_EVENT(kvm, 3, "QUERY: max guest memory: %lu bytes",
Dominik Dingela3a92c32014-12-01 17:24:42 +0100525 kvm->arch.mem_limit);
526 if (put_user(kvm->arch.mem_limit, (u64 __user *)attr->addr))
Dominik Dingel8c0a7ce2014-10-31 14:10:41 +0100527 ret = -EFAULT;
528 break;
529 default:
530 ret = -ENXIO;
531 break;
532 }
533 return ret;
534}
535
536static int kvm_s390_set_mem_control(struct kvm *kvm, struct kvm_device_attr *attr)
Dominik Dingel4f718ea2014-04-09 13:13:00 +0200537{
538 int ret;
539 unsigned int idx;
540 switch (attr->attr) {
541 case KVM_S390_VM_MEM_ENABLE_CMMA:
David Hildenbrandf9cbd9b2016-03-03 09:48:47 +0100542 ret = -ENXIO;
David Hildenbrandc24cc9c2015-11-24 13:53:04 +0100543 if (!sclp.has_cmma)
Dominik Dingele6db1d62015-05-07 15:41:57 +0200544 break;
545
Dominik Dingel4f718ea2014-04-09 13:13:00 +0200546 ret = -EBUSY;
Christian Borntraegerc92ea7b2015-07-22 15:52:10 +0200547 VM_EVENT(kvm, 3, "%s", "ENABLE: CMMA support");
Dominik Dingel4f718ea2014-04-09 13:13:00 +0200548 mutex_lock(&kvm->lock);
Paolo Bonzinia03825b2016-06-13 14:50:04 +0200549 if (!kvm->created_vcpus) {
Dominik Dingel4f718ea2014-04-09 13:13:00 +0200550 kvm->arch.use_cmma = 1;
551 ret = 0;
552 }
553 mutex_unlock(&kvm->lock);
554 break;
555 case KVM_S390_VM_MEM_CLR_CMMA:
David Hildenbrandf9cbd9b2016-03-03 09:48:47 +0100556 ret = -ENXIO;
557 if (!sclp.has_cmma)
558 break;
Dominik Dingelc3489152015-06-18 13:17:11 +0200559 ret = -EINVAL;
560 if (!kvm->arch.use_cmma)
561 break;
562
Christian Borntraegerc92ea7b2015-07-22 15:52:10 +0200563 VM_EVENT(kvm, 3, "%s", "RESET: CMMA states");
Dominik Dingel4f718ea2014-04-09 13:13:00 +0200564 mutex_lock(&kvm->lock);
565 idx = srcu_read_lock(&kvm->srcu);
Dominik Dingela13cff32014-10-23 12:07:14 +0200566 s390_reset_cmma(kvm->arch.gmap->mm);
Dominik Dingel4f718ea2014-04-09 13:13:00 +0200567 srcu_read_unlock(&kvm->srcu, idx);
568 mutex_unlock(&kvm->lock);
569 ret = 0;
570 break;
Dominik Dingel8c0a7ce2014-10-31 14:10:41 +0100571 case KVM_S390_VM_MEM_LIMIT_SIZE: {
572 unsigned long new_limit;
573
574 if (kvm_is_ucontrol(kvm))
575 return -EINVAL;
576
577 if (get_user(new_limit, (u64 __user *)attr->addr))
578 return -EFAULT;
579
Dominik Dingela3a92c32014-12-01 17:24:42 +0100580 if (kvm->arch.mem_limit != KVM_S390_NO_MEM_LIMIT &&
581 new_limit > kvm->arch.mem_limit)
Dominik Dingel8c0a7ce2014-10-31 14:10:41 +0100582 return -E2BIG;
583
Dominik Dingela3a92c32014-12-01 17:24:42 +0100584 if (!new_limit)
585 return -EINVAL;
586
Martin Schwidefsky6ea427b2016-03-08 11:55:04 +0100587 /* gmap_create takes last usable address */
Dominik Dingela3a92c32014-12-01 17:24:42 +0100588 if (new_limit != KVM_S390_NO_MEM_LIMIT)
589 new_limit -= 1;
590
Dominik Dingel8c0a7ce2014-10-31 14:10:41 +0100591 ret = -EBUSY;
592 mutex_lock(&kvm->lock);
Paolo Bonzinia03825b2016-06-13 14:50:04 +0200593 if (!kvm->created_vcpus) {
Martin Schwidefsky6ea427b2016-03-08 11:55:04 +0100594 /* gmap_create will round the limit up */
595 struct gmap *new = gmap_create(current->mm, new_limit);
Dominik Dingel8c0a7ce2014-10-31 14:10:41 +0100596
597 if (!new) {
598 ret = -ENOMEM;
599 } else {
Martin Schwidefsky6ea427b2016-03-08 11:55:04 +0100600 gmap_remove(kvm->arch.gmap);
Dominik Dingel8c0a7ce2014-10-31 14:10:41 +0100601 new->private = kvm;
602 kvm->arch.gmap = new;
603 ret = 0;
604 }
605 }
606 mutex_unlock(&kvm->lock);
Dominik Dingela3a92c32014-12-01 17:24:42 +0100607 VM_EVENT(kvm, 3, "SET: max guest address: %lu", new_limit);
608 VM_EVENT(kvm, 3, "New guest asce: 0x%pK",
609 (void *) kvm->arch.gmap->asce);
Dominik Dingel8c0a7ce2014-10-31 14:10:41 +0100610 break;
611 }
Dominik Dingel4f718ea2014-04-09 13:13:00 +0200612 default:
613 ret = -ENXIO;
614 break;
615 }
616 return ret;
617}
618
Tony Krowiaka374e892014-09-03 10:13:53 +0200619static void kvm_s390_vcpu_crypto_setup(struct kvm_vcpu *vcpu);
620
621static int kvm_s390_vm_set_crypto(struct kvm *kvm, struct kvm_device_attr *attr)
622{
623 struct kvm_vcpu *vcpu;
624 int i;
625
Michael Mueller9d8d5782015-02-02 15:42:51 +0100626 if (!test_kvm_facility(kvm, 76))
Tony Krowiaka374e892014-09-03 10:13:53 +0200627 return -EINVAL;
628
629 mutex_lock(&kvm->lock);
630 switch (attr->attr) {
631 case KVM_S390_VM_CRYPTO_ENABLE_AES_KW:
632 get_random_bytes(
633 kvm->arch.crypto.crycb->aes_wrapping_key_mask,
634 sizeof(kvm->arch.crypto.crycb->aes_wrapping_key_mask));
635 kvm->arch.crypto.aes_kw = 1;
Christian Borntraegerc92ea7b2015-07-22 15:52:10 +0200636 VM_EVENT(kvm, 3, "%s", "ENABLE: AES keywrapping support");
Tony Krowiaka374e892014-09-03 10:13:53 +0200637 break;
638 case KVM_S390_VM_CRYPTO_ENABLE_DEA_KW:
639 get_random_bytes(
640 kvm->arch.crypto.crycb->dea_wrapping_key_mask,
641 sizeof(kvm->arch.crypto.crycb->dea_wrapping_key_mask));
642 kvm->arch.crypto.dea_kw = 1;
Christian Borntraegerc92ea7b2015-07-22 15:52:10 +0200643 VM_EVENT(kvm, 3, "%s", "ENABLE: DEA keywrapping support");
Tony Krowiaka374e892014-09-03 10:13:53 +0200644 break;
645 case KVM_S390_VM_CRYPTO_DISABLE_AES_KW:
646 kvm->arch.crypto.aes_kw = 0;
647 memset(kvm->arch.crypto.crycb->aes_wrapping_key_mask, 0,
648 sizeof(kvm->arch.crypto.crycb->aes_wrapping_key_mask));
Christian Borntraegerc92ea7b2015-07-22 15:52:10 +0200649 VM_EVENT(kvm, 3, "%s", "DISABLE: AES keywrapping support");
Tony Krowiaka374e892014-09-03 10:13:53 +0200650 break;
651 case KVM_S390_VM_CRYPTO_DISABLE_DEA_KW:
652 kvm->arch.crypto.dea_kw = 0;
653 memset(kvm->arch.crypto.crycb->dea_wrapping_key_mask, 0,
654 sizeof(kvm->arch.crypto.crycb->dea_wrapping_key_mask));
Christian Borntraegerc92ea7b2015-07-22 15:52:10 +0200655 VM_EVENT(kvm, 3, "%s", "DISABLE: DEA keywrapping support");
Tony Krowiaka374e892014-09-03 10:13:53 +0200656 break;
657 default:
658 mutex_unlock(&kvm->lock);
659 return -ENXIO;
660 }
661
662 kvm_for_each_vcpu(i, vcpu, kvm) {
663 kvm_s390_vcpu_crypto_setup(vcpu);
664 exit_sie(vcpu);
665 }
666 mutex_unlock(&kvm->lock);
667 return 0;
668}
669
Jason J. Herne72f25022014-11-25 09:46:02 -0500670static int kvm_s390_set_tod_high(struct kvm *kvm, struct kvm_device_attr *attr)
671{
672 u8 gtod_high;
673
674 if (copy_from_user(&gtod_high, (void __user *)attr->addr,
675 sizeof(gtod_high)))
676 return -EFAULT;
677
678 if (gtod_high != 0)
679 return -EINVAL;
Christian Borntraeger58c383c2015-10-12 13:27:29 +0200680 VM_EVENT(kvm, 3, "SET: TOD extension: 0x%x", gtod_high);
Jason J. Herne72f25022014-11-25 09:46:02 -0500681
682 return 0;
683}
684
685static int kvm_s390_set_tod_low(struct kvm *kvm, struct kvm_device_attr *attr)
686{
David Hildenbrand5a3d8832015-09-29 16:27:24 +0200687 u64 gtod;
Jason J. Herne72f25022014-11-25 09:46:02 -0500688
689 if (copy_from_user(&gtod, (void __user *)attr->addr, sizeof(gtod)))
690 return -EFAULT;
691
David Hildenbrand25ed1672015-05-12 09:49:14 +0200692 kvm_s390_set_tod_clock(kvm, gtod);
Christian Borntraeger58c383c2015-10-12 13:27:29 +0200693 VM_EVENT(kvm, 3, "SET: TOD base: 0x%llx", gtod);
Jason J. Herne72f25022014-11-25 09:46:02 -0500694 return 0;
695}
696
697static int kvm_s390_set_tod(struct kvm *kvm, struct kvm_device_attr *attr)
698{
699 int ret;
700
701 if (attr->flags)
702 return -EINVAL;
703
704 switch (attr->attr) {
705 case KVM_S390_VM_TOD_HIGH:
706 ret = kvm_s390_set_tod_high(kvm, attr);
707 break;
708 case KVM_S390_VM_TOD_LOW:
709 ret = kvm_s390_set_tod_low(kvm, attr);
710 break;
711 default:
712 ret = -ENXIO;
713 break;
714 }
715 return ret;
716}
717
718static int kvm_s390_get_tod_high(struct kvm *kvm, struct kvm_device_attr *attr)
719{
720 u8 gtod_high = 0;
721
722 if (copy_to_user((void __user *)attr->addr, &gtod_high,
723 sizeof(gtod_high)))
724 return -EFAULT;
Christian Borntraeger58c383c2015-10-12 13:27:29 +0200725 VM_EVENT(kvm, 3, "QUERY: TOD extension: 0x%x", gtod_high);
Jason J. Herne72f25022014-11-25 09:46:02 -0500726
727 return 0;
728}
729
730static int kvm_s390_get_tod_low(struct kvm *kvm, struct kvm_device_attr *attr)
731{
David Hildenbrand5a3d8832015-09-29 16:27:24 +0200732 u64 gtod;
Jason J. Herne72f25022014-11-25 09:46:02 -0500733
David Hildenbrand60417fc2015-09-29 16:20:36 +0200734 gtod = kvm_s390_get_tod_clock_fast(kvm);
Jason J. Herne72f25022014-11-25 09:46:02 -0500735 if (copy_to_user((void __user *)attr->addr, &gtod, sizeof(gtod)))
736 return -EFAULT;
Christian Borntraeger58c383c2015-10-12 13:27:29 +0200737 VM_EVENT(kvm, 3, "QUERY: TOD base: 0x%llx", gtod);
Jason J. Herne72f25022014-11-25 09:46:02 -0500738
739 return 0;
740}
741
742static int kvm_s390_get_tod(struct kvm *kvm, struct kvm_device_attr *attr)
743{
744 int ret;
745
746 if (attr->flags)
747 return -EINVAL;
748
749 switch (attr->attr) {
750 case KVM_S390_VM_TOD_HIGH:
751 ret = kvm_s390_get_tod_high(kvm, attr);
752 break;
753 case KVM_S390_VM_TOD_LOW:
754 ret = kvm_s390_get_tod_low(kvm, attr);
755 break;
756 default:
757 ret = -ENXIO;
758 break;
759 }
760 return ret;
761}
762
Michael Mueller658b6ed2015-02-02 15:49:35 +0100763static int kvm_s390_set_processor(struct kvm *kvm, struct kvm_device_attr *attr)
764{
765 struct kvm_s390_vm_cpu_processor *proc;
David Hildenbrand053dd232016-04-04 13:59:42 +0200766 u16 lowest_ibc, unblocked_ibc;
Michael Mueller658b6ed2015-02-02 15:49:35 +0100767 int ret = 0;
768
769 mutex_lock(&kvm->lock);
Paolo Bonzinia03825b2016-06-13 14:50:04 +0200770 if (kvm->created_vcpus) {
Michael Mueller658b6ed2015-02-02 15:49:35 +0100771 ret = -EBUSY;
772 goto out;
773 }
774 proc = kzalloc(sizeof(*proc), GFP_KERNEL);
775 if (!proc) {
776 ret = -ENOMEM;
777 goto out;
778 }
779 if (!copy_from_user(proc, (void __user *)attr->addr,
780 sizeof(*proc))) {
David Hildenbrand9bb0ec02016-04-04 14:27:51 +0200781 kvm->arch.model.cpuid = proc->cpuid;
David Hildenbrand053dd232016-04-04 13:59:42 +0200782 lowest_ibc = sclp.ibc >> 16 & 0xfff;
783 unblocked_ibc = sclp.ibc & 0xfff;
784 if (lowest_ibc) {
785 if (proc->ibc > unblocked_ibc)
786 kvm->arch.model.ibc = unblocked_ibc;
787 else if (proc->ibc < lowest_ibc)
788 kvm->arch.model.ibc = lowest_ibc;
789 else
790 kvm->arch.model.ibc = proc->ibc;
791 }
David Hildenbrandc54f0d62015-12-02 08:53:52 +0100792 memcpy(kvm->arch.model.fac_list, proc->fac_list,
Michael Mueller658b6ed2015-02-02 15:49:35 +0100793 S390_ARCH_FAC_LIST_SIZE_BYTE);
794 } else
795 ret = -EFAULT;
796 kfree(proc);
797out:
798 mutex_unlock(&kvm->lock);
799 return ret;
800}
801
David Hildenbrand15c97052015-03-19 17:36:43 +0100802static int kvm_s390_set_processor_feat(struct kvm *kvm,
803 struct kvm_device_attr *attr)
804{
805 struct kvm_s390_vm_cpu_feat data;
806 int ret = -EBUSY;
807
808 if (copy_from_user(&data, (void __user *)attr->addr, sizeof(data)))
809 return -EFAULT;
810 if (!bitmap_subset((unsigned long *) data.feat,
811 kvm_s390_available_cpu_feat,
812 KVM_S390_VM_CPU_FEAT_NR_BITS))
813 return -EINVAL;
814
815 mutex_lock(&kvm->lock);
816 if (!atomic_read(&kvm->online_vcpus)) {
817 bitmap_copy(kvm->arch.cpu_feat, (unsigned long *) data.feat,
818 KVM_S390_VM_CPU_FEAT_NR_BITS);
819 ret = 0;
820 }
821 mutex_unlock(&kvm->lock);
822 return ret;
823}
824
David Hildenbrand0a763c72016-05-18 16:03:47 +0200825static int kvm_s390_set_processor_subfunc(struct kvm *kvm,
826 struct kvm_device_attr *attr)
827{
828 /*
829 * Once supported by kernel + hw, we have to store the subfunctions
830 * in kvm->arch and remember that user space configured them.
831 */
832 return -ENXIO;
833}
834
Michael Mueller658b6ed2015-02-02 15:49:35 +0100835static int kvm_s390_set_cpu_model(struct kvm *kvm, struct kvm_device_attr *attr)
836{
837 int ret = -ENXIO;
838
839 switch (attr->attr) {
840 case KVM_S390_VM_CPU_PROCESSOR:
841 ret = kvm_s390_set_processor(kvm, attr);
842 break;
David Hildenbrand15c97052015-03-19 17:36:43 +0100843 case KVM_S390_VM_CPU_PROCESSOR_FEAT:
844 ret = kvm_s390_set_processor_feat(kvm, attr);
845 break;
David Hildenbrand0a763c72016-05-18 16:03:47 +0200846 case KVM_S390_VM_CPU_PROCESSOR_SUBFUNC:
847 ret = kvm_s390_set_processor_subfunc(kvm, attr);
848 break;
Michael Mueller658b6ed2015-02-02 15:49:35 +0100849 }
850 return ret;
851}
852
853static int kvm_s390_get_processor(struct kvm *kvm, struct kvm_device_attr *attr)
854{
855 struct kvm_s390_vm_cpu_processor *proc;
856 int ret = 0;
857
858 proc = kzalloc(sizeof(*proc), GFP_KERNEL);
859 if (!proc) {
860 ret = -ENOMEM;
861 goto out;
862 }
David Hildenbrand9bb0ec02016-04-04 14:27:51 +0200863 proc->cpuid = kvm->arch.model.cpuid;
Michael Mueller658b6ed2015-02-02 15:49:35 +0100864 proc->ibc = kvm->arch.model.ibc;
David Hildenbrandc54f0d62015-12-02 08:53:52 +0100865 memcpy(&proc->fac_list, kvm->arch.model.fac_list,
866 S390_ARCH_FAC_LIST_SIZE_BYTE);
Michael Mueller658b6ed2015-02-02 15:49:35 +0100867 if (copy_to_user((void __user *)attr->addr, proc, sizeof(*proc)))
868 ret = -EFAULT;
869 kfree(proc);
870out:
871 return ret;
872}
873
874static int kvm_s390_get_machine(struct kvm *kvm, struct kvm_device_attr *attr)
875{
876 struct kvm_s390_vm_cpu_machine *mach;
877 int ret = 0;
878
879 mach = kzalloc(sizeof(*mach), GFP_KERNEL);
880 if (!mach) {
881 ret = -ENOMEM;
882 goto out;
883 }
884 get_cpu_id((struct cpuid *) &mach->cpuid);
David Hildenbrand37c5f6c2015-05-06 13:18:59 +0200885 mach->ibc = sclp.ibc;
David Hildenbrandc54f0d62015-12-02 08:53:52 +0100886 memcpy(&mach->fac_mask, kvm->arch.model.fac_mask,
Michael Mueller981467c2015-02-24 13:51:04 +0100887 S390_ARCH_FAC_LIST_SIZE_BYTE);
Michael Mueller658b6ed2015-02-02 15:49:35 +0100888 memcpy((unsigned long *)&mach->fac_list, S390_lowcore.stfle_fac_list,
Michael Mueller94422ee2015-02-26 12:12:40 +0100889 S390_ARCH_FAC_LIST_SIZE_BYTE);
Michael Mueller658b6ed2015-02-02 15:49:35 +0100890 if (copy_to_user((void __user *)attr->addr, mach, sizeof(*mach)))
891 ret = -EFAULT;
892 kfree(mach);
893out:
894 return ret;
895}
896
David Hildenbrand15c97052015-03-19 17:36:43 +0100897static int kvm_s390_get_processor_feat(struct kvm *kvm,
898 struct kvm_device_attr *attr)
899{
900 struct kvm_s390_vm_cpu_feat data;
901
902 bitmap_copy((unsigned long *) data.feat, kvm->arch.cpu_feat,
903 KVM_S390_VM_CPU_FEAT_NR_BITS);
904 if (copy_to_user((void __user *)attr->addr, &data, sizeof(data)))
905 return -EFAULT;
906 return 0;
907}
908
909static int kvm_s390_get_machine_feat(struct kvm *kvm,
910 struct kvm_device_attr *attr)
911{
912 struct kvm_s390_vm_cpu_feat data;
913
914 bitmap_copy((unsigned long *) data.feat,
915 kvm_s390_available_cpu_feat,
916 KVM_S390_VM_CPU_FEAT_NR_BITS);
917 if (copy_to_user((void __user *)attr->addr, &data, sizeof(data)))
918 return -EFAULT;
919 return 0;
920}
921
David Hildenbrand0a763c72016-05-18 16:03:47 +0200922static int kvm_s390_get_processor_subfunc(struct kvm *kvm,
923 struct kvm_device_attr *attr)
924{
925 /*
926 * Once we can actually configure subfunctions (kernel + hw support),
927 * we have to check if they were already set by user space, if so copy
928 * them from kvm->arch.
929 */
930 return -ENXIO;
931}
932
933static int kvm_s390_get_machine_subfunc(struct kvm *kvm,
934 struct kvm_device_attr *attr)
935{
936 if (copy_to_user((void __user *)attr->addr, &kvm_s390_available_subfunc,
937 sizeof(struct kvm_s390_vm_cpu_subfunc)))
938 return -EFAULT;
939 return 0;
940}
Michael Mueller658b6ed2015-02-02 15:49:35 +0100941static int kvm_s390_get_cpu_model(struct kvm *kvm, struct kvm_device_attr *attr)
942{
943 int ret = -ENXIO;
944
945 switch (attr->attr) {
946 case KVM_S390_VM_CPU_PROCESSOR:
947 ret = kvm_s390_get_processor(kvm, attr);
948 break;
949 case KVM_S390_VM_CPU_MACHINE:
950 ret = kvm_s390_get_machine(kvm, attr);
951 break;
David Hildenbrand15c97052015-03-19 17:36:43 +0100952 case KVM_S390_VM_CPU_PROCESSOR_FEAT:
953 ret = kvm_s390_get_processor_feat(kvm, attr);
954 break;
955 case KVM_S390_VM_CPU_MACHINE_FEAT:
956 ret = kvm_s390_get_machine_feat(kvm, attr);
957 break;
David Hildenbrand0a763c72016-05-18 16:03:47 +0200958 case KVM_S390_VM_CPU_PROCESSOR_SUBFUNC:
959 ret = kvm_s390_get_processor_subfunc(kvm, attr);
960 break;
961 case KVM_S390_VM_CPU_MACHINE_SUBFUNC:
962 ret = kvm_s390_get_machine_subfunc(kvm, attr);
963 break;
Michael Mueller658b6ed2015-02-02 15:49:35 +0100964 }
965 return ret;
966}
967
Dominik Dingelf2061652014-04-09 13:13:00 +0200968static int kvm_s390_vm_set_attr(struct kvm *kvm, struct kvm_device_attr *attr)
969{
970 int ret;
971
972 switch (attr->group) {
Dominik Dingel4f718ea2014-04-09 13:13:00 +0200973 case KVM_S390_VM_MEM_CTRL:
Dominik Dingel8c0a7ce2014-10-31 14:10:41 +0100974 ret = kvm_s390_set_mem_control(kvm, attr);
Dominik Dingel4f718ea2014-04-09 13:13:00 +0200975 break;
Jason J. Herne72f25022014-11-25 09:46:02 -0500976 case KVM_S390_VM_TOD:
977 ret = kvm_s390_set_tod(kvm, attr);
978 break;
Michael Mueller658b6ed2015-02-02 15:49:35 +0100979 case KVM_S390_VM_CPU_MODEL:
980 ret = kvm_s390_set_cpu_model(kvm, attr);
981 break;
Tony Krowiaka374e892014-09-03 10:13:53 +0200982 case KVM_S390_VM_CRYPTO:
983 ret = kvm_s390_vm_set_crypto(kvm, attr);
984 break;
Dominik Dingelf2061652014-04-09 13:13:00 +0200985 default:
986 ret = -ENXIO;
987 break;
988 }
989
990 return ret;
991}
992
993static int kvm_s390_vm_get_attr(struct kvm *kvm, struct kvm_device_attr *attr)
994{
Dominik Dingel8c0a7ce2014-10-31 14:10:41 +0100995 int ret;
996
997 switch (attr->group) {
998 case KVM_S390_VM_MEM_CTRL:
999 ret = kvm_s390_get_mem_control(kvm, attr);
1000 break;
Jason J. Herne72f25022014-11-25 09:46:02 -05001001 case KVM_S390_VM_TOD:
1002 ret = kvm_s390_get_tod(kvm, attr);
1003 break;
Michael Mueller658b6ed2015-02-02 15:49:35 +01001004 case KVM_S390_VM_CPU_MODEL:
1005 ret = kvm_s390_get_cpu_model(kvm, attr);
1006 break;
Dominik Dingel8c0a7ce2014-10-31 14:10:41 +01001007 default:
1008 ret = -ENXIO;
1009 break;
1010 }
1011
1012 return ret;
Dominik Dingelf2061652014-04-09 13:13:00 +02001013}
1014
1015static int kvm_s390_vm_has_attr(struct kvm *kvm, struct kvm_device_attr *attr)
1016{
1017 int ret;
1018
1019 switch (attr->group) {
Dominik Dingel4f718ea2014-04-09 13:13:00 +02001020 case KVM_S390_VM_MEM_CTRL:
1021 switch (attr->attr) {
1022 case KVM_S390_VM_MEM_ENABLE_CMMA:
1023 case KVM_S390_VM_MEM_CLR_CMMA:
David Hildenbrandf9cbd9b2016-03-03 09:48:47 +01001024 ret = sclp.has_cmma ? 0 : -ENXIO;
1025 break;
Dominik Dingel8c0a7ce2014-10-31 14:10:41 +01001026 case KVM_S390_VM_MEM_LIMIT_SIZE:
Dominik Dingel4f718ea2014-04-09 13:13:00 +02001027 ret = 0;
1028 break;
1029 default:
1030 ret = -ENXIO;
1031 break;
1032 }
1033 break;
Jason J. Herne72f25022014-11-25 09:46:02 -05001034 case KVM_S390_VM_TOD:
1035 switch (attr->attr) {
1036 case KVM_S390_VM_TOD_LOW:
1037 case KVM_S390_VM_TOD_HIGH:
1038 ret = 0;
1039 break;
1040 default:
1041 ret = -ENXIO;
1042 break;
1043 }
1044 break;
Michael Mueller658b6ed2015-02-02 15:49:35 +01001045 case KVM_S390_VM_CPU_MODEL:
1046 switch (attr->attr) {
1047 case KVM_S390_VM_CPU_PROCESSOR:
1048 case KVM_S390_VM_CPU_MACHINE:
David Hildenbrand15c97052015-03-19 17:36:43 +01001049 case KVM_S390_VM_CPU_PROCESSOR_FEAT:
1050 case KVM_S390_VM_CPU_MACHINE_FEAT:
David Hildenbrand0a763c72016-05-18 16:03:47 +02001051 case KVM_S390_VM_CPU_MACHINE_SUBFUNC:
Michael Mueller658b6ed2015-02-02 15:49:35 +01001052 ret = 0;
1053 break;
David Hildenbrand0a763c72016-05-18 16:03:47 +02001054 /* configuring subfunctions is not supported yet */
1055 case KVM_S390_VM_CPU_PROCESSOR_SUBFUNC:
Michael Mueller658b6ed2015-02-02 15:49:35 +01001056 default:
1057 ret = -ENXIO;
1058 break;
1059 }
1060 break;
Tony Krowiaka374e892014-09-03 10:13:53 +02001061 case KVM_S390_VM_CRYPTO:
1062 switch (attr->attr) {
1063 case KVM_S390_VM_CRYPTO_ENABLE_AES_KW:
1064 case KVM_S390_VM_CRYPTO_ENABLE_DEA_KW:
1065 case KVM_S390_VM_CRYPTO_DISABLE_AES_KW:
1066 case KVM_S390_VM_CRYPTO_DISABLE_DEA_KW:
1067 ret = 0;
1068 break;
1069 default:
1070 ret = -ENXIO;
1071 break;
1072 }
1073 break;
Dominik Dingelf2061652014-04-09 13:13:00 +02001074 default:
1075 ret = -ENXIO;
1076 break;
1077 }
1078
1079 return ret;
1080}
1081
Jason J. Herne30ee2a92014-09-23 09:23:01 -04001082static long kvm_s390_get_skeys(struct kvm *kvm, struct kvm_s390_skeys *args)
1083{
1084 uint8_t *keys;
1085 uint64_t hva;
Jason J. Herne30ee2a92014-09-23 09:23:01 -04001086 int i, r = 0;
1087
1088 if (args->flags != 0)
1089 return -EINVAL;
1090
1091 /* Is this guest using storage keys? */
1092 if (!mm_use_skey(current->mm))
1093 return KVM_S390_GET_SKEYS_NONE;
1094
1095 /* Enforce sane limit on memory allocation */
1096 if (args->count < 1 || args->count > KVM_S390_SKEYS_MAX)
1097 return -EINVAL;
1098
1099 keys = kmalloc_array(args->count, sizeof(uint8_t),
1100 GFP_KERNEL | __GFP_NOWARN);
1101 if (!keys)
1102 keys = vmalloc(sizeof(uint8_t) * args->count);
1103 if (!keys)
1104 return -ENOMEM;
1105
Martin Schwidefskyd3ed1ce2016-03-08 11:53:35 +01001106 down_read(&current->mm->mmap_sem);
Jason J. Herne30ee2a92014-09-23 09:23:01 -04001107 for (i = 0; i < args->count; i++) {
1108 hva = gfn_to_hva(kvm, args->start_gfn + i);
1109 if (kvm_is_error_hva(hva)) {
1110 r = -EFAULT;
Martin Schwidefskyd3ed1ce2016-03-08 11:53:35 +01001111 break;
Jason J. Herne30ee2a92014-09-23 09:23:01 -04001112 }
1113
David Hildenbrand154c8c12016-05-09 11:22:34 +02001114 r = get_guest_storage_key(current->mm, hva, &keys[i]);
1115 if (r)
Martin Schwidefskyd3ed1ce2016-03-08 11:53:35 +01001116 break;
Jason J. Herne30ee2a92014-09-23 09:23:01 -04001117 }
Martin Schwidefskyd3ed1ce2016-03-08 11:53:35 +01001118 up_read(&current->mm->mmap_sem);
Jason J. Herne30ee2a92014-09-23 09:23:01 -04001119
Martin Schwidefskyd3ed1ce2016-03-08 11:53:35 +01001120 if (!r) {
1121 r = copy_to_user((uint8_t __user *)args->skeydata_addr, keys,
1122 sizeof(uint8_t) * args->count);
1123 if (r)
1124 r = -EFAULT;
1125 }
1126
Jason J. Herne30ee2a92014-09-23 09:23:01 -04001127 kvfree(keys);
1128 return r;
1129}
1130
1131static long kvm_s390_set_skeys(struct kvm *kvm, struct kvm_s390_skeys *args)
1132{
1133 uint8_t *keys;
1134 uint64_t hva;
1135 int i, r = 0;
1136
1137 if (args->flags != 0)
1138 return -EINVAL;
1139
1140 /* Enforce sane limit on memory allocation */
1141 if (args->count < 1 || args->count > KVM_S390_SKEYS_MAX)
1142 return -EINVAL;
1143
1144 keys = kmalloc_array(args->count, sizeof(uint8_t),
1145 GFP_KERNEL | __GFP_NOWARN);
1146 if (!keys)
1147 keys = vmalloc(sizeof(uint8_t) * args->count);
1148 if (!keys)
1149 return -ENOMEM;
1150
1151 r = copy_from_user(keys, (uint8_t __user *)args->skeydata_addr,
1152 sizeof(uint8_t) * args->count);
1153 if (r) {
1154 r = -EFAULT;
1155 goto out;
1156 }
1157
1158 /* Enable storage key handling for the guest */
Dominik Dingel14d4a422015-05-07 15:16:13 +02001159 r = s390_enable_skey();
1160 if (r)
1161 goto out;
Jason J. Herne30ee2a92014-09-23 09:23:01 -04001162
Martin Schwidefskyd3ed1ce2016-03-08 11:53:35 +01001163 down_read(&current->mm->mmap_sem);
Jason J. Herne30ee2a92014-09-23 09:23:01 -04001164 for (i = 0; i < args->count; i++) {
1165 hva = gfn_to_hva(kvm, args->start_gfn + i);
1166 if (kvm_is_error_hva(hva)) {
1167 r = -EFAULT;
Martin Schwidefskyd3ed1ce2016-03-08 11:53:35 +01001168 break;
Jason J. Herne30ee2a92014-09-23 09:23:01 -04001169 }
1170
1171 /* Lowest order bit is reserved */
1172 if (keys[i] & 0x01) {
1173 r = -EINVAL;
Martin Schwidefskyd3ed1ce2016-03-08 11:53:35 +01001174 break;
Jason J. Herne30ee2a92014-09-23 09:23:01 -04001175 }
1176
David Hildenbrandfe69eab2016-05-09 13:08:07 +02001177 r = set_guest_storage_key(current->mm, hva, keys[i], 0);
Jason J. Herne30ee2a92014-09-23 09:23:01 -04001178 if (r)
Martin Schwidefskyd3ed1ce2016-03-08 11:53:35 +01001179 break;
Jason J. Herne30ee2a92014-09-23 09:23:01 -04001180 }
Martin Schwidefskyd3ed1ce2016-03-08 11:53:35 +01001181 up_read(&current->mm->mmap_sem);
Jason J. Herne30ee2a92014-09-23 09:23:01 -04001182out:
1183 kvfree(keys);
1184 return r;
1185}
1186
Heiko Carstensb0c632d2008-03-25 18:47:20 +01001187long kvm_arch_vm_ioctl(struct file *filp,
1188 unsigned int ioctl, unsigned long arg)
1189{
1190 struct kvm *kvm = filp->private_data;
1191 void __user *argp = (void __user *)arg;
Dominik Dingelf2061652014-04-09 13:13:00 +02001192 struct kvm_device_attr attr;
Heiko Carstensb0c632d2008-03-25 18:47:20 +01001193 int r;
1194
1195 switch (ioctl) {
Carsten Otteba5c1e92008-03-25 18:47:26 +01001196 case KVM_S390_INTERRUPT: {
1197 struct kvm_s390_interrupt s390int;
1198
1199 r = -EFAULT;
1200 if (copy_from_user(&s390int, argp, sizeof(s390int)))
1201 break;
1202 r = kvm_s390_inject_vm(kvm, &s390int);
1203 break;
1204 }
Cornelia Huckd938dc52013-10-23 18:26:34 +02001205 case KVM_ENABLE_CAP: {
1206 struct kvm_enable_cap cap;
1207 r = -EFAULT;
1208 if (copy_from_user(&cap, argp, sizeof(cap)))
1209 break;
1210 r = kvm_vm_ioctl_enable_cap(kvm, &cap);
1211 break;
1212 }
Cornelia Huck84223592013-07-15 13:36:01 +02001213 case KVM_CREATE_IRQCHIP: {
1214 struct kvm_irq_routing_entry routing;
1215
1216 r = -EINVAL;
1217 if (kvm->arch.use_irqchip) {
1218 /* Set up dummy routing. */
1219 memset(&routing, 0, sizeof(routing));
Nicholas Krause152b2832015-08-06 13:05:54 -04001220 r = kvm_set_irq_routing(kvm, &routing, 0, 0);
Cornelia Huck84223592013-07-15 13:36:01 +02001221 }
1222 break;
1223 }
Dominik Dingelf2061652014-04-09 13:13:00 +02001224 case KVM_SET_DEVICE_ATTR: {
1225 r = -EFAULT;
1226 if (copy_from_user(&attr, (void __user *)arg, sizeof(attr)))
1227 break;
1228 r = kvm_s390_vm_set_attr(kvm, &attr);
1229 break;
1230 }
1231 case KVM_GET_DEVICE_ATTR: {
1232 r = -EFAULT;
1233 if (copy_from_user(&attr, (void __user *)arg, sizeof(attr)))
1234 break;
1235 r = kvm_s390_vm_get_attr(kvm, &attr);
1236 break;
1237 }
1238 case KVM_HAS_DEVICE_ATTR: {
1239 r = -EFAULT;
1240 if (copy_from_user(&attr, (void __user *)arg, sizeof(attr)))
1241 break;
1242 r = kvm_s390_vm_has_attr(kvm, &attr);
1243 break;
1244 }
Jason J. Herne30ee2a92014-09-23 09:23:01 -04001245 case KVM_S390_GET_SKEYS: {
1246 struct kvm_s390_skeys args;
1247
1248 r = -EFAULT;
1249 if (copy_from_user(&args, argp,
1250 sizeof(struct kvm_s390_skeys)))
1251 break;
1252 r = kvm_s390_get_skeys(kvm, &args);
1253 break;
1254 }
1255 case KVM_S390_SET_SKEYS: {
1256 struct kvm_s390_skeys args;
1257
1258 r = -EFAULT;
1259 if (copy_from_user(&args, argp,
1260 sizeof(struct kvm_s390_skeys)))
1261 break;
1262 r = kvm_s390_set_skeys(kvm, &args);
1263 break;
1264 }
Heiko Carstensb0c632d2008-03-25 18:47:20 +01001265 default:
Avi Kivity367e1312009-08-26 14:57:07 +03001266 r = -ENOTTY;
Heiko Carstensb0c632d2008-03-25 18:47:20 +01001267 }
1268
1269 return r;
1270}
1271
Tony Krowiak45c9b472015-01-13 11:33:26 -05001272static int kvm_s390_query_ap_config(u8 *config)
1273{
1274 u32 fcn_code = 0x04000000UL;
Christian Borntraeger86044c82015-02-26 13:53:47 +01001275 u32 cc = 0;
Tony Krowiak45c9b472015-01-13 11:33:26 -05001276
Christian Borntraeger86044c82015-02-26 13:53:47 +01001277 memset(config, 0, 128);
Tony Krowiak45c9b472015-01-13 11:33:26 -05001278 asm volatile(
1279 "lgr 0,%1\n"
1280 "lgr 2,%2\n"
1281 ".long 0xb2af0000\n" /* PQAP(QCI) */
Christian Borntraeger86044c82015-02-26 13:53:47 +01001282 "0: ipm %0\n"
Tony Krowiak45c9b472015-01-13 11:33:26 -05001283 "srl %0,28\n"
Christian Borntraeger86044c82015-02-26 13:53:47 +01001284 "1:\n"
1285 EX_TABLE(0b, 1b)
1286 : "+r" (cc)
Tony Krowiak45c9b472015-01-13 11:33:26 -05001287 : "r" (fcn_code), "r" (config)
1288 : "cc", "0", "2", "memory"
1289 );
1290
1291 return cc;
1292}
1293
1294static int kvm_s390_apxa_installed(void)
1295{
1296 u8 config[128];
1297 int cc;
1298
Heiko Carstensa6aacc32015-11-24 14:28:12 +01001299 if (test_facility(12)) {
Tony Krowiak45c9b472015-01-13 11:33:26 -05001300 cc = kvm_s390_query_ap_config(config);
1301
1302 if (cc)
1303 pr_err("PQAP(QCI) failed with cc=%d", cc);
1304 else
1305 return config[0] & 0x40;
1306 }
1307
1308 return 0;
1309}
1310
1311static void kvm_s390_set_crycb_format(struct kvm *kvm)
1312{
1313 kvm->arch.crypto.crycbd = (__u32)(unsigned long) kvm->arch.crypto.crycb;
1314
1315 if (kvm_s390_apxa_installed())
1316 kvm->arch.crypto.crycbd |= CRYCB_FORMAT2;
1317 else
1318 kvm->arch.crypto.crycbd |= CRYCB_FORMAT1;
1319}
1320
David Hildenbrand9bb0ec02016-04-04 14:27:51 +02001321static u64 kvm_s390_get_initial_cpuid(void)
Michael Mueller9d8d5782015-02-02 15:42:51 +01001322{
David Hildenbrand9bb0ec02016-04-04 14:27:51 +02001323 struct cpuid cpuid;
1324
1325 get_cpu_id(&cpuid);
1326 cpuid.version = 0xff;
1327 return *((u64 *) &cpuid);
Michael Mueller9d8d5782015-02-02 15:42:51 +01001328}
1329
David Hildenbrandc54f0d62015-12-02 08:53:52 +01001330static void kvm_s390_crypto_init(struct kvm *kvm)
Tony Krowiak5102ee82014-06-27 14:46:01 -04001331{
Michael Mueller9d8d5782015-02-02 15:42:51 +01001332 if (!test_kvm_facility(kvm, 76))
David Hildenbrandc54f0d62015-12-02 08:53:52 +01001333 return;
Tony Krowiak5102ee82014-06-27 14:46:01 -04001334
David Hildenbrandc54f0d62015-12-02 08:53:52 +01001335 kvm->arch.crypto.crycb = &kvm->arch.sie_page2->crycb;
Tony Krowiak45c9b472015-01-13 11:33:26 -05001336 kvm_s390_set_crycb_format(kvm);
Tony Krowiak5102ee82014-06-27 14:46:01 -04001337
Tony Krowiaked6f76b2015-02-24 14:06:57 -05001338 /* Enable AES/DEA protected key functions by default */
1339 kvm->arch.crypto.aes_kw = 1;
1340 kvm->arch.crypto.dea_kw = 1;
1341 get_random_bytes(kvm->arch.crypto.crycb->aes_wrapping_key_mask,
1342 sizeof(kvm->arch.crypto.crycb->aes_wrapping_key_mask));
1343 get_random_bytes(kvm->arch.crypto.crycb->dea_wrapping_key_mask,
1344 sizeof(kvm->arch.crypto.crycb->dea_wrapping_key_mask));
Tony Krowiak5102ee82014-06-27 14:46:01 -04001345}
1346
Eugene (jno) Dvurechenski7d43baf2015-04-22 17:09:44 +02001347static void sca_dispose(struct kvm *kvm)
1348{
1349 if (kvm->arch.use_esca)
Eugene (jno) Dvurechenski5e044312015-04-22 18:08:39 +02001350 free_pages_exact(kvm->arch.sca, sizeof(struct esca_block));
Eugene (jno) Dvurechenski7d43baf2015-04-22 17:09:44 +02001351 else
1352 free_page((unsigned long)(kvm->arch.sca));
1353 kvm->arch.sca = NULL;
1354}
1355
Carsten Ottee08b9632012-01-04 10:25:20 +01001356int kvm_arch_init_vm(struct kvm *kvm, unsigned long type)
Heiko Carstensb0c632d2008-03-25 18:47:20 +01001357{
David Hildenbrand76a6dd72015-11-24 13:33:49 +01001358 gfp_t alloc_flags = GFP_KERNEL;
Michael Mueller9d8d5782015-02-02 15:42:51 +01001359 int i, rc;
Heiko Carstensb0c632d2008-03-25 18:47:20 +01001360 char debug_name[16];
Christian Borntraegerf6c137f2014-03-19 11:18:29 +01001361 static unsigned long sca_offset;
Heiko Carstensb0c632d2008-03-25 18:47:20 +01001362
Carsten Ottee08b9632012-01-04 10:25:20 +01001363 rc = -EINVAL;
1364#ifdef CONFIG_KVM_S390_UCONTROL
1365 if (type & ~KVM_VM_S390_UCONTROL)
1366 goto out_err;
1367 if ((type & KVM_VM_S390_UCONTROL) && (!capable(CAP_SYS_ADMIN)))
1368 goto out_err;
1369#else
1370 if (type)
1371 goto out_err;
1372#endif
1373
Heiko Carstensb0c632d2008-03-25 18:47:20 +01001374 rc = s390_enable_sie();
1375 if (rc)
Jan Kiszkad89f5ef2010-11-09 17:02:49 +01001376 goto out_err;
Heiko Carstensb0c632d2008-03-25 18:47:20 +01001377
Carsten Otteb2904112011-10-18 12:27:13 +02001378 rc = -ENOMEM;
1379
Janosch Frank7d0a5e62016-05-10 15:03:42 +02001380 ratelimit_state_init(&kvm->arch.sthyi_limit, 5 * HZ, 500);
1381
Eugene (jno) Dvurechenski7d43baf2015-04-22 17:09:44 +02001382 kvm->arch.use_esca = 0; /* start with basic SCA */
David Hildenbrand76a6dd72015-11-24 13:33:49 +01001383 if (!sclp.has_64bscao)
1384 alloc_flags |= GFP_DMA;
Eugene (jno) Dvurechenski5e044312015-04-22 18:08:39 +02001385 rwlock_init(&kvm->arch.sca_lock);
David Hildenbrand76a6dd72015-11-24 13:33:49 +01001386 kvm->arch.sca = (struct bsca_block *) get_zeroed_page(alloc_flags);
Heiko Carstensb0c632d2008-03-25 18:47:20 +01001387 if (!kvm->arch.sca)
Jan Kiszkad89f5ef2010-11-09 17:02:49 +01001388 goto out_err;
Christian Borntraegerf6c137f2014-03-19 11:18:29 +01001389 spin_lock(&kvm_lock);
David Hildenbrandc5c2c392015-10-26 08:41:29 +01001390 sca_offset += 16;
Eugene (jno) Dvurechenskibc784cc2015-04-23 16:09:06 +02001391 if (sca_offset + sizeof(struct bsca_block) > PAGE_SIZE)
David Hildenbrandc5c2c392015-10-26 08:41:29 +01001392 sca_offset = 0;
Eugene (jno) Dvurechenskibc784cc2015-04-23 16:09:06 +02001393 kvm->arch.sca = (struct bsca_block *)
1394 ((char *) kvm->arch.sca + sca_offset);
Christian Borntraegerf6c137f2014-03-19 11:18:29 +01001395 spin_unlock(&kvm_lock);
Heiko Carstensb0c632d2008-03-25 18:47:20 +01001396
1397 sprintf(debug_name, "kvm-%u", current->pid);
1398
Christian Borntraeger1cb9cf72015-07-20 15:04:48 +02001399 kvm->arch.dbf = debug_register(debug_name, 32, 1, 7 * sizeof(long));
Heiko Carstensb0c632d2008-03-25 18:47:20 +01001400 if (!kvm->arch.dbf)
Dominik Dingel40f5b732015-03-12 13:55:53 +01001401 goto out_err;
Heiko Carstensb0c632d2008-03-25 18:47:20 +01001402
David Hildenbrandc54f0d62015-12-02 08:53:52 +01001403 kvm->arch.sie_page2 =
1404 (struct sie_page2 *) get_zeroed_page(GFP_KERNEL | GFP_DMA);
1405 if (!kvm->arch.sie_page2)
Dominik Dingel40f5b732015-03-12 13:55:53 +01001406 goto out_err;
Michael Mueller9d8d5782015-02-02 15:42:51 +01001407
Michael Muellerfb5bf932015-02-27 14:25:10 +01001408 /* Populate the facility mask initially. */
David Hildenbrandc54f0d62015-12-02 08:53:52 +01001409 memcpy(kvm->arch.model.fac_mask, S390_lowcore.stfle_fac_list,
Michael Mueller94422ee2015-02-26 12:12:40 +01001410 S390_ARCH_FAC_LIST_SIZE_BYTE);
Michael Mueller9d8d5782015-02-02 15:42:51 +01001411 for (i = 0; i < S390_ARCH_FAC_LIST_SIZE_U64; i++) {
1412 if (i < kvm_s390_fac_list_mask_size())
David Hildenbrandc54f0d62015-12-02 08:53:52 +01001413 kvm->arch.model.fac_mask[i] &= kvm_s390_fac_list_mask[i];
Michael Mueller9d8d5782015-02-02 15:42:51 +01001414 else
David Hildenbrandc54f0d62015-12-02 08:53:52 +01001415 kvm->arch.model.fac_mask[i] = 0UL;
Michael Mueller9d8d5782015-02-02 15:42:51 +01001416 }
1417
Michael Mueller981467c2015-02-24 13:51:04 +01001418 /* Populate the facility list initially. */
David Hildenbrandc54f0d62015-12-02 08:53:52 +01001419 kvm->arch.model.fac_list = kvm->arch.sie_page2->fac_list;
1420 memcpy(kvm->arch.model.fac_list, kvm->arch.model.fac_mask,
Michael Mueller981467c2015-02-24 13:51:04 +01001421 S390_ARCH_FAC_LIST_SIZE_BYTE);
1422
Janosch Frank95ca2cb2016-05-23 15:11:58 +02001423 set_kvm_facility(kvm->arch.model.fac_mask, 74);
1424 set_kvm_facility(kvm->arch.model.fac_list, 74);
1425
David Hildenbrand9bb0ec02016-04-04 14:27:51 +02001426 kvm->arch.model.cpuid = kvm_s390_get_initial_cpuid();
David Hildenbrand37c5f6c2015-05-06 13:18:59 +02001427 kvm->arch.model.ibc = sclp.ibc & 0x0fff;
Michael Mueller9d8d5782015-02-02 15:42:51 +01001428
David Hildenbrandc54f0d62015-12-02 08:53:52 +01001429 kvm_s390_crypto_init(kvm);
Tony Krowiak5102ee82014-06-27 14:46:01 -04001430
Carsten Otteba5c1e92008-03-25 18:47:26 +01001431 spin_lock_init(&kvm->arch.float_int.lock);
Jens Freimann6d3da242013-07-03 15:18:35 +02001432 for (i = 0; i < FIRQ_LIST_COUNT; i++)
1433 INIT_LIST_HEAD(&kvm->arch.float_int.lists[i]);
Heiko Carstens8a2422342014-01-10 14:33:28 +01001434 init_waitqueue_head(&kvm->arch.ipte_wq);
Thomas Hutha6b7e452014-10-01 14:48:42 +02001435 mutex_init(&kvm->arch.ipte_mutex);
Carsten Otteba5c1e92008-03-25 18:47:26 +01001436
Heiko Carstensb0c632d2008-03-25 18:47:20 +01001437 debug_register_view(kvm->arch.dbf, &debug_sprintf_view);
Christian Borntraeger78f26132015-07-22 15:50:58 +02001438 VM_EVENT(kvm, 3, "vm created with type %lu", type);
Heiko Carstensb0c632d2008-03-25 18:47:20 +01001439
Carsten Ottee08b9632012-01-04 10:25:20 +01001440 if (type & KVM_VM_S390_UCONTROL) {
1441 kvm->arch.gmap = NULL;
Dominik Dingela3a92c32014-12-01 17:24:42 +01001442 kvm->arch.mem_limit = KVM_S390_NO_MEM_LIMIT;
Carsten Ottee08b9632012-01-04 10:25:20 +01001443 } else {
Guenther Hutzl32e6b232014-12-01 17:24:42 +01001444 if (sclp.hamax == U64_MAX)
1445 kvm->arch.mem_limit = TASK_MAX_SIZE;
1446 else
1447 kvm->arch.mem_limit = min_t(unsigned long, TASK_MAX_SIZE,
1448 sclp.hamax + 1);
Martin Schwidefsky6ea427b2016-03-08 11:55:04 +01001449 kvm->arch.gmap = gmap_create(current->mm, kvm->arch.mem_limit - 1);
Carsten Ottee08b9632012-01-04 10:25:20 +01001450 if (!kvm->arch.gmap)
Dominik Dingel40f5b732015-03-12 13:55:53 +01001451 goto out_err;
Christian Borntraeger2c70fe42013-05-17 14:41:36 +02001452 kvm->arch.gmap->private = kvm;
Dominik Dingel24eb3a82013-06-17 16:25:18 +02001453 kvm->arch.gmap->pfault_enabled = 0;
Carsten Ottee08b9632012-01-04 10:25:20 +01001454 }
Cornelia Huckfa6b7fe2012-12-20 15:32:12 +01001455
1456 kvm->arch.css_support = 0;
Cornelia Huck84223592013-07-15 13:36:01 +02001457 kvm->arch.use_irqchip = 0;
Jason J. Herne72f25022014-11-25 09:46:02 -05001458 kvm->arch.epoch = 0;
Cornelia Huckfa6b7fe2012-12-20 15:32:12 +01001459
David Hildenbrand8ad35752014-03-14 11:00:21 +01001460 spin_lock_init(&kvm->arch.start_stop_lock);
David Hildenbranda3508fb2015-07-08 13:19:48 +02001461 kvm_s390_vsie_init(kvm);
Christian Borntraeger8335713a2015-12-08 16:55:27 +01001462 KVM_EVENT(3, "vm 0x%pK created by pid %u", kvm, current->pid);
David Hildenbrand8ad35752014-03-14 11:00:21 +01001463
Jan Kiszkad89f5ef2010-11-09 17:02:49 +01001464 return 0;
Jan Kiszkad89f5ef2010-11-09 17:02:49 +01001465out_err:
David Hildenbrandc54f0d62015-12-02 08:53:52 +01001466 free_page((unsigned long)kvm->arch.sie_page2);
Dominik Dingel40f5b732015-03-12 13:55:53 +01001467 debug_unregister(kvm->arch.dbf);
Eugene (jno) Dvurechenski7d43baf2015-04-22 17:09:44 +02001468 sca_dispose(kvm);
Christian Borntraeger78f26132015-07-22 15:50:58 +02001469 KVM_EVENT(3, "creation of vm failed: %d", rc);
Jan Kiszkad89f5ef2010-11-09 17:02:49 +01001470 return rc;
Heiko Carstensb0c632d2008-03-25 18:47:20 +01001471}
1472
Christian Borntraegerd329c032008-11-26 14:50:27 +01001473void kvm_arch_vcpu_destroy(struct kvm_vcpu *vcpu)
1474{
1475 VCPU_EVENT(vcpu, 3, "%s", "free cpu");
Cornelia Huckade38c32012-07-23 17:20:30 +02001476 trace_kvm_s390_destroy_vcpu(vcpu->vcpu_id);
Christian Borntraeger67335e62014-03-25 17:09:08 +01001477 kvm_s390_clear_local_irqs(vcpu);
Dominik Dingel3c038e62013-10-07 17:11:48 +02001478 kvm_clear_async_pf_completion_queue(vcpu);
Eugene (jno) Dvurechenskibc784cc2015-04-23 16:09:06 +02001479 if (!kvm_is_ucontrol(vcpu->kvm))
Eugene (jno) Dvurechenskia6e2f682015-04-21 15:31:59 +02001480 sca_del_vcpu(vcpu);
Carsten Otte27e03932012-01-04 10:25:21 +01001481
1482 if (kvm_is_ucontrol(vcpu->kvm))
Martin Schwidefsky6ea427b2016-03-08 11:55:04 +01001483 gmap_remove(vcpu->arch.gmap);
Carsten Otte27e03932012-01-04 10:25:21 +01001484
Dominik Dingele6db1d62015-05-07 15:41:57 +02001485 if (vcpu->kvm->arch.use_cmma)
Dominik Dingelb31605c2014-03-25 13:47:11 +01001486 kvm_s390_vcpu_unsetup_cmma(vcpu);
Christian Borntraegerd329c032008-11-26 14:50:27 +01001487 free_page((unsigned long)(vcpu->arch.sie_block));
Konstantin Weitzb31288f2013-04-17 17:36:29 +02001488
Christian Borntraeger6692cef2008-11-26 14:51:08 +01001489 kvm_vcpu_uninit(vcpu);
Michael Muellerb110fea2013-06-12 13:54:54 +02001490 kmem_cache_free(kvm_vcpu_cache, vcpu);
Christian Borntraegerd329c032008-11-26 14:50:27 +01001491}
1492
1493static void kvm_free_vcpus(struct kvm *kvm)
1494{
1495 unsigned int i;
Gleb Natapov988a2ca2009-06-09 15:56:29 +03001496 struct kvm_vcpu *vcpu;
Christian Borntraegerd329c032008-11-26 14:50:27 +01001497
Gleb Natapov988a2ca2009-06-09 15:56:29 +03001498 kvm_for_each_vcpu(i, vcpu, kvm)
1499 kvm_arch_vcpu_destroy(vcpu);
1500
1501 mutex_lock(&kvm->lock);
1502 for (i = 0; i < atomic_read(&kvm->online_vcpus); i++)
1503 kvm->vcpus[i] = NULL;
1504
1505 atomic_set(&kvm->online_vcpus, 0);
1506 mutex_unlock(&kvm->lock);
Christian Borntraegerd329c032008-11-26 14:50:27 +01001507}
1508
Heiko Carstensb0c632d2008-03-25 18:47:20 +01001509void kvm_arch_destroy_vm(struct kvm *kvm)
1510{
Christian Borntraegerd329c032008-11-26 14:50:27 +01001511 kvm_free_vcpus(kvm);
Eugene (jno) Dvurechenski7d43baf2015-04-22 17:09:44 +02001512 sca_dispose(kvm);
Christian Borntraegerd329c032008-11-26 14:50:27 +01001513 debug_unregister(kvm->arch.dbf);
David Hildenbrandc54f0d62015-12-02 08:53:52 +01001514 free_page((unsigned long)kvm->arch.sie_page2);
Carsten Otte27e03932012-01-04 10:25:21 +01001515 if (!kvm_is_ucontrol(kvm))
Martin Schwidefsky6ea427b2016-03-08 11:55:04 +01001516 gmap_remove(kvm->arch.gmap);
Cornelia Huck841b91c2013-07-15 13:36:01 +02001517 kvm_s390_destroy_adapters(kvm);
Christian Borntraeger67335e62014-03-25 17:09:08 +01001518 kvm_s390_clear_float_irqs(kvm);
David Hildenbranda3508fb2015-07-08 13:19:48 +02001519 kvm_s390_vsie_destroy(kvm);
Christian Borntraeger8335713a2015-12-08 16:55:27 +01001520 KVM_EVENT(3, "vm 0x%pK destroyed", kvm);
Heiko Carstensb0c632d2008-03-25 18:47:20 +01001521}
1522
1523/* Section: vcpu related */
Dominik Dingeldafd0322014-12-02 16:53:21 +01001524static int __kvm_ucontrol_vcpu_init(struct kvm_vcpu *vcpu)
1525{
Martin Schwidefsky6ea427b2016-03-08 11:55:04 +01001526 vcpu->arch.gmap = gmap_create(current->mm, -1UL);
Dominik Dingeldafd0322014-12-02 16:53:21 +01001527 if (!vcpu->arch.gmap)
1528 return -ENOMEM;
1529 vcpu->arch.gmap->private = vcpu->kvm;
1530
1531 return 0;
1532}
1533
Eugene (jno) Dvurechenskia6e2f682015-04-21 15:31:59 +02001534static void sca_del_vcpu(struct kvm_vcpu *vcpu)
1535{
Eugene (jno) Dvurechenski5e044312015-04-22 18:08:39 +02001536 read_lock(&vcpu->kvm->arch.sca_lock);
Eugene (jno) Dvurechenski7d43baf2015-04-22 17:09:44 +02001537 if (vcpu->kvm->arch.use_esca) {
1538 struct esca_block *sca = vcpu->kvm->arch.sca;
Eugene (jno) Dvurechenskia6e2f682015-04-21 15:31:59 +02001539
Eugene (jno) Dvurechenski7d43baf2015-04-22 17:09:44 +02001540 clear_bit_inv(vcpu->vcpu_id, (unsigned long *) sca->mcn);
David Hildenbrand10ce32d2015-10-12 12:41:41 +02001541 sca->cpu[vcpu->vcpu_id].sda = 0;
Eugene (jno) Dvurechenski7d43baf2015-04-22 17:09:44 +02001542 } else {
1543 struct bsca_block *sca = vcpu->kvm->arch.sca;
1544
1545 clear_bit_inv(vcpu->vcpu_id, (unsigned long *) &sca->mcn);
David Hildenbrand10ce32d2015-10-12 12:41:41 +02001546 sca->cpu[vcpu->vcpu_id].sda = 0;
Eugene (jno) Dvurechenski7d43baf2015-04-22 17:09:44 +02001547 }
Eugene (jno) Dvurechenski5e044312015-04-22 18:08:39 +02001548 read_unlock(&vcpu->kvm->arch.sca_lock);
Eugene (jno) Dvurechenskia6e2f682015-04-21 15:31:59 +02001549}
1550
David Hildenbrandeaa78f32015-10-12 16:29:01 +02001551static void sca_add_vcpu(struct kvm_vcpu *vcpu)
Eugene (jno) Dvurechenskia6e2f682015-04-21 15:31:59 +02001552{
David Hildenbrandeaa78f32015-10-12 16:29:01 +02001553 read_lock(&vcpu->kvm->arch.sca_lock);
1554 if (vcpu->kvm->arch.use_esca) {
1555 struct esca_block *sca = vcpu->kvm->arch.sca;
Eugene (jno) Dvurechenskia6e2f682015-04-21 15:31:59 +02001556
David Hildenbrandeaa78f32015-10-12 16:29:01 +02001557 sca->cpu[vcpu->vcpu_id].sda = (__u64) vcpu->arch.sie_block;
Eugene (jno) Dvurechenski7d43baf2015-04-22 17:09:44 +02001558 vcpu->arch.sie_block->scaoh = (__u32)(((__u64)sca) >> 32);
1559 vcpu->arch.sie_block->scaol = (__u32)(__u64)sca & ~0x3fU;
David Hildenbrand25508822015-10-12 16:27:23 +02001560 vcpu->arch.sie_block->ecb2 |= 0x04U;
David Hildenbrandeaa78f32015-10-12 16:29:01 +02001561 set_bit_inv(vcpu->vcpu_id, (unsigned long *) sca->mcn);
Eugene (jno) Dvurechenski7d43baf2015-04-22 17:09:44 +02001562 } else {
David Hildenbrandeaa78f32015-10-12 16:29:01 +02001563 struct bsca_block *sca = vcpu->kvm->arch.sca;
Eugene (jno) Dvurechenski7d43baf2015-04-22 17:09:44 +02001564
David Hildenbrandeaa78f32015-10-12 16:29:01 +02001565 sca->cpu[vcpu->vcpu_id].sda = (__u64) vcpu->arch.sie_block;
Eugene (jno) Dvurechenski7d43baf2015-04-22 17:09:44 +02001566 vcpu->arch.sie_block->scaoh = (__u32)(((__u64)sca) >> 32);
1567 vcpu->arch.sie_block->scaol = (__u32)(__u64)sca;
David Hildenbrandeaa78f32015-10-12 16:29:01 +02001568 set_bit_inv(vcpu->vcpu_id, (unsigned long *) &sca->mcn);
Eugene (jno) Dvurechenski7d43baf2015-04-22 17:09:44 +02001569 }
David Hildenbrandeaa78f32015-10-12 16:29:01 +02001570 read_unlock(&vcpu->kvm->arch.sca_lock);
Eugene (jno) Dvurechenski5e044312015-04-22 18:08:39 +02001571}
1572
1573/* Basic SCA to Extended SCA data copy routines */
1574static inline void sca_copy_entry(struct esca_entry *d, struct bsca_entry *s)
1575{
1576 d->sda = s->sda;
1577 d->sigp_ctrl.c = s->sigp_ctrl.c;
1578 d->sigp_ctrl.scn = s->sigp_ctrl.scn;
1579}
1580
1581static void sca_copy_b_to_e(struct esca_block *d, struct bsca_block *s)
1582{
1583 int i;
1584
1585 d->ipte_control = s->ipte_control;
1586 d->mcn[0] = s->mcn;
1587 for (i = 0; i < KVM_S390_BSCA_CPU_SLOTS; i++)
1588 sca_copy_entry(&d->cpu[i], &s->cpu[i]);
1589}
1590
1591static int sca_switch_to_extended(struct kvm *kvm)
1592{
1593 struct bsca_block *old_sca = kvm->arch.sca;
1594 struct esca_block *new_sca;
1595 struct kvm_vcpu *vcpu;
1596 unsigned int vcpu_idx;
1597 u32 scaol, scaoh;
1598
1599 new_sca = alloc_pages_exact(sizeof(*new_sca), GFP_KERNEL|__GFP_ZERO);
1600 if (!new_sca)
1601 return -ENOMEM;
1602
1603 scaoh = (u32)((u64)(new_sca) >> 32);
1604 scaol = (u32)(u64)(new_sca) & ~0x3fU;
1605
1606 kvm_s390_vcpu_block_all(kvm);
1607 write_lock(&kvm->arch.sca_lock);
1608
1609 sca_copy_b_to_e(new_sca, old_sca);
1610
1611 kvm_for_each_vcpu(vcpu_idx, vcpu, kvm) {
1612 vcpu->arch.sie_block->scaoh = scaoh;
1613 vcpu->arch.sie_block->scaol = scaol;
1614 vcpu->arch.sie_block->ecb2 |= 0x04U;
1615 }
1616 kvm->arch.sca = new_sca;
1617 kvm->arch.use_esca = 1;
1618
1619 write_unlock(&kvm->arch.sca_lock);
1620 kvm_s390_vcpu_unblock_all(kvm);
1621
1622 free_page((unsigned long)old_sca);
1623
Christian Borntraeger8335713a2015-12-08 16:55:27 +01001624 VM_EVENT(kvm, 2, "Switched to ESCA (0x%pK -> 0x%pK)",
1625 old_sca, kvm->arch.sca);
Eugene (jno) Dvurechenski5e044312015-04-22 18:08:39 +02001626 return 0;
Eugene (jno) Dvurechenskia6e2f682015-04-21 15:31:59 +02001627}
1628
1629static int sca_can_add_vcpu(struct kvm *kvm, unsigned int id)
1630{
Eugene (jno) Dvurechenski5e044312015-04-22 18:08:39 +02001631 int rc;
1632
1633 if (id < KVM_S390_BSCA_CPU_SLOTS)
1634 return true;
David Hildenbrand76a6dd72015-11-24 13:33:49 +01001635 if (!sclp.has_esca || !sclp.has_64bscao)
Eugene (jno) Dvurechenski5e044312015-04-22 18:08:39 +02001636 return false;
1637
1638 mutex_lock(&kvm->lock);
1639 rc = kvm->arch.use_esca ? 0 : sca_switch_to_extended(kvm);
1640 mutex_unlock(&kvm->lock);
1641
1642 return rc == 0 && id < KVM_S390_ESCA_CPU_SLOTS;
Eugene (jno) Dvurechenskia6e2f682015-04-21 15:31:59 +02001643}
1644
Heiko Carstensb0c632d2008-03-25 18:47:20 +01001645int kvm_arch_vcpu_init(struct kvm_vcpu *vcpu)
1646{
Dominik Dingel3c038e62013-10-07 17:11:48 +02001647 vcpu->arch.pfault_token = KVM_S390_PFAULT_TOKEN_INVALID;
1648 kvm_clear_async_pf_completion_queue(vcpu);
Christian Borntraeger59674c12012-01-11 11:20:33 +01001649 vcpu->run->kvm_valid_regs = KVM_SYNC_PREFIX |
1650 KVM_SYNC_GPRS |
Christian Borntraeger9eed07352012-02-06 10:59:07 +01001651 KVM_SYNC_ACRS |
David Hildenbrandb028ee32014-07-17 10:47:43 +02001652 KVM_SYNC_CRS |
1653 KVM_SYNC_ARCH0 |
1654 KVM_SYNC_PFAULT;
Fan Zhangc6e5f162016-01-07 18:24:29 +08001655 if (test_kvm_facility(vcpu->kvm, 64))
1656 vcpu->run->kvm_valid_regs |= KVM_SYNC_RICCB;
David Hildenbrandf6aa6dc2016-01-15 14:11:46 +01001657 /* fprs can be synchronized via vrs, even if the guest has no vx. With
1658 * MACHINE_HAS_VX, (load|store)_fpu_regs() will work with vrs format.
1659 */
1660 if (MACHINE_HAS_VX)
Eric Farman68c55752014-06-09 10:57:26 -04001661 vcpu->run->kvm_valid_regs |= KVM_SYNC_VRS;
David Hildenbrand6fd8e672016-01-18 14:46:34 +01001662 else
1663 vcpu->run->kvm_valid_regs |= KVM_SYNC_FPRS;
Dominik Dingeldafd0322014-12-02 16:53:21 +01001664
1665 if (kvm_is_ucontrol(vcpu->kvm))
1666 return __kvm_ucontrol_vcpu_init(vcpu);
1667
Heiko Carstensb0c632d2008-03-25 18:47:20 +01001668 return 0;
1669}
1670
David Hildenbranddb0758b2016-02-15 09:42:25 +01001671/* needs disabled preemption to protect from TOD sync and vcpu_load/put */
1672static void __start_cpu_timer_accounting(struct kvm_vcpu *vcpu)
1673{
1674 WARN_ON_ONCE(vcpu->arch.cputm_start != 0);
David Hildenbrand9c23a132016-02-17 21:53:33 +01001675 raw_write_seqcount_begin(&vcpu->arch.cputm_seqcount);
David Hildenbranddb0758b2016-02-15 09:42:25 +01001676 vcpu->arch.cputm_start = get_tod_clock_fast();
David Hildenbrand9c23a132016-02-17 21:53:33 +01001677 raw_write_seqcount_end(&vcpu->arch.cputm_seqcount);
David Hildenbranddb0758b2016-02-15 09:42:25 +01001678}
1679
1680/* needs disabled preemption to protect from TOD sync and vcpu_load/put */
1681static void __stop_cpu_timer_accounting(struct kvm_vcpu *vcpu)
1682{
1683 WARN_ON_ONCE(vcpu->arch.cputm_start == 0);
David Hildenbrand9c23a132016-02-17 21:53:33 +01001684 raw_write_seqcount_begin(&vcpu->arch.cputm_seqcount);
David Hildenbranddb0758b2016-02-15 09:42:25 +01001685 vcpu->arch.sie_block->cputm -= get_tod_clock_fast() - vcpu->arch.cputm_start;
1686 vcpu->arch.cputm_start = 0;
David Hildenbrand9c23a132016-02-17 21:53:33 +01001687 raw_write_seqcount_end(&vcpu->arch.cputm_seqcount);
David Hildenbranddb0758b2016-02-15 09:42:25 +01001688}
1689
1690/* needs disabled preemption to protect from TOD sync and vcpu_load/put */
1691static void __enable_cpu_timer_accounting(struct kvm_vcpu *vcpu)
1692{
1693 WARN_ON_ONCE(vcpu->arch.cputm_enabled);
1694 vcpu->arch.cputm_enabled = true;
1695 __start_cpu_timer_accounting(vcpu);
1696}
1697
1698/* needs disabled preemption to protect from TOD sync and vcpu_load/put */
1699static void __disable_cpu_timer_accounting(struct kvm_vcpu *vcpu)
1700{
1701 WARN_ON_ONCE(!vcpu->arch.cputm_enabled);
1702 __stop_cpu_timer_accounting(vcpu);
1703 vcpu->arch.cputm_enabled = false;
1704}
1705
1706static void enable_cpu_timer_accounting(struct kvm_vcpu *vcpu)
1707{
1708 preempt_disable(); /* protect from TOD sync and vcpu_load/put */
1709 __enable_cpu_timer_accounting(vcpu);
1710 preempt_enable();
1711}
1712
1713static void disable_cpu_timer_accounting(struct kvm_vcpu *vcpu)
1714{
1715 preempt_disable(); /* protect from TOD sync and vcpu_load/put */
1716 __disable_cpu_timer_accounting(vcpu);
1717 preempt_enable();
1718}
1719
David Hildenbrand4287f242016-02-15 09:40:12 +01001720/* set the cpu timer - may only be called from the VCPU thread itself */
1721void kvm_s390_set_cpu_timer(struct kvm_vcpu *vcpu, __u64 cputm)
1722{
David Hildenbranddb0758b2016-02-15 09:42:25 +01001723 preempt_disable(); /* protect from TOD sync and vcpu_load/put */
David Hildenbrand9c23a132016-02-17 21:53:33 +01001724 raw_write_seqcount_begin(&vcpu->arch.cputm_seqcount);
David Hildenbranddb0758b2016-02-15 09:42:25 +01001725 if (vcpu->arch.cputm_enabled)
1726 vcpu->arch.cputm_start = get_tod_clock_fast();
David Hildenbrand4287f242016-02-15 09:40:12 +01001727 vcpu->arch.sie_block->cputm = cputm;
David Hildenbrand9c23a132016-02-17 21:53:33 +01001728 raw_write_seqcount_end(&vcpu->arch.cputm_seqcount);
David Hildenbranddb0758b2016-02-15 09:42:25 +01001729 preempt_enable();
David Hildenbrand4287f242016-02-15 09:40:12 +01001730}
1731
David Hildenbranddb0758b2016-02-15 09:42:25 +01001732/* update and get the cpu timer - can also be called from other VCPU threads */
David Hildenbrand4287f242016-02-15 09:40:12 +01001733__u64 kvm_s390_get_cpu_timer(struct kvm_vcpu *vcpu)
1734{
David Hildenbrand9c23a132016-02-17 21:53:33 +01001735 unsigned int seq;
David Hildenbranddb0758b2016-02-15 09:42:25 +01001736 __u64 value;
David Hildenbranddb0758b2016-02-15 09:42:25 +01001737
1738 if (unlikely(!vcpu->arch.cputm_enabled))
1739 return vcpu->arch.sie_block->cputm;
1740
David Hildenbrand9c23a132016-02-17 21:53:33 +01001741 preempt_disable(); /* protect from TOD sync and vcpu_load/put */
1742 do {
1743 seq = raw_read_seqcount(&vcpu->arch.cputm_seqcount);
1744 /*
1745 * If the writer would ever execute a read in the critical
1746 * section, e.g. in irq context, we have a deadlock.
1747 */
1748 WARN_ON_ONCE((seq & 1) && smp_processor_id() == vcpu->cpu);
1749 value = vcpu->arch.sie_block->cputm;
1750 /* if cputm_start is 0, accounting is being started/stopped */
1751 if (likely(vcpu->arch.cputm_start))
1752 value -= get_tod_clock_fast() - vcpu->arch.cputm_start;
1753 } while (read_seqcount_retry(&vcpu->arch.cputm_seqcount, seq & ~1));
1754 preempt_enable();
David Hildenbranddb0758b2016-02-15 09:42:25 +01001755 return value;
David Hildenbrand4287f242016-02-15 09:40:12 +01001756}
1757
Heiko Carstensb0c632d2008-03-25 18:47:20 +01001758void kvm_arch_vcpu_load(struct kvm_vcpu *vcpu, int cpu)
1759{
Hendrik Brueckner9977e882015-06-10 12:53:42 +02001760 /* Save host register state */
Hendrik Bruecknerd0164ee2015-06-29 16:43:06 +02001761 save_fpu_regs();
David Hildenbrand9abc2a02016-01-14 22:12:47 +01001762 vcpu->arch.host_fpregs.fpc = current->thread.fpu.fpc;
1763 vcpu->arch.host_fpregs.regs = current->thread.fpu.regs;
Hendrik Brueckner96b2d7a2015-06-12 13:53:51 +02001764
David Hildenbrand6fd8e672016-01-18 14:46:34 +01001765 if (MACHINE_HAS_VX)
1766 current->thread.fpu.regs = vcpu->run->s.regs.vrs;
1767 else
1768 current->thread.fpu.regs = vcpu->run->s.regs.fprs;
David Hildenbrand9abc2a02016-01-14 22:12:47 +01001769 current->thread.fpu.fpc = vcpu->run->s.regs.fpc;
Hendrik Brueckner9977e882015-06-10 12:53:42 +02001770 if (test_fp_ctl(current->thread.fpu.fpc))
Hendrik Brueckner96b2d7a2015-06-12 13:53:51 +02001771 /* User space provided an invalid FPC, let's clear it */
Hendrik Brueckner9977e882015-06-10 12:53:42 +02001772 current->thread.fpu.fpc = 0;
1773
1774 save_access_regs(vcpu->arch.host_acrs);
Christian Borntraeger59674c12012-01-11 11:20:33 +01001775 restore_access_regs(vcpu->run->s.regs.acrs);
David Hildenbrand37d9df92015-03-11 16:47:33 +01001776 gmap_enable(vcpu->arch.enabled_gmap);
Peter Zijlstra805de8f42015-04-24 01:12:32 +02001777 atomic_or(CPUSTAT_RUNNING, &vcpu->arch.sie_block->cpuflags);
David Hildenbrand5ebda312016-02-22 13:52:27 +01001778 if (vcpu->arch.cputm_enabled && !is_vcpu_idle(vcpu))
David Hildenbranddb0758b2016-02-15 09:42:25 +01001779 __start_cpu_timer_accounting(vcpu);
David Hildenbrand01a745a2016-02-12 20:41:56 +01001780 vcpu->cpu = cpu;
Heiko Carstensb0c632d2008-03-25 18:47:20 +01001781}
1782
1783void kvm_arch_vcpu_put(struct kvm_vcpu *vcpu)
1784{
David Hildenbrand01a745a2016-02-12 20:41:56 +01001785 vcpu->cpu = -1;
David Hildenbrand5ebda312016-02-22 13:52:27 +01001786 if (vcpu->arch.cputm_enabled && !is_vcpu_idle(vcpu))
David Hildenbranddb0758b2016-02-15 09:42:25 +01001787 __stop_cpu_timer_accounting(vcpu);
Peter Zijlstra805de8f42015-04-24 01:12:32 +02001788 atomic_andnot(CPUSTAT_RUNNING, &vcpu->arch.sie_block->cpuflags);
David Hildenbrand37d9df92015-03-11 16:47:33 +01001789 vcpu->arch.enabled_gmap = gmap_get_enabled();
1790 gmap_disable(vcpu->arch.enabled_gmap);
Hendrik Brueckner9977e882015-06-10 12:53:42 +02001791
David Hildenbrand9abc2a02016-01-14 22:12:47 +01001792 /* Save guest register state */
Hendrik Bruecknerd0164ee2015-06-29 16:43:06 +02001793 save_fpu_regs();
David Hildenbrand9abc2a02016-01-14 22:12:47 +01001794 vcpu->run->s.regs.fpc = current->thread.fpu.fpc;
Hendrik Brueckner9977e882015-06-10 12:53:42 +02001795
David Hildenbrand9abc2a02016-01-14 22:12:47 +01001796 /* Restore host register state */
1797 current->thread.fpu.fpc = vcpu->arch.host_fpregs.fpc;
1798 current->thread.fpu.regs = vcpu->arch.host_fpregs.regs;
Hendrik Brueckner9977e882015-06-10 12:53:42 +02001799
1800 save_access_regs(vcpu->run->s.regs.acrs);
Heiko Carstensb0c632d2008-03-25 18:47:20 +01001801 restore_access_regs(vcpu->arch.host_acrs);
1802}
1803
1804static void kvm_s390_vcpu_initial_reset(struct kvm_vcpu *vcpu)
1805{
1806 /* this equals initial cpu reset in pop, but we don't switch to ESA */
1807 vcpu->arch.sie_block->gpsw.mask = 0UL;
1808 vcpu->arch.sie_block->gpsw.addr = 0UL;
Christian Borntraeger8d26cf72012-01-11 11:19:32 +01001809 kvm_s390_set_prefix(vcpu, 0);
David Hildenbrand4287f242016-02-15 09:40:12 +01001810 kvm_s390_set_cpu_timer(vcpu, 0);
Heiko Carstensb0c632d2008-03-25 18:47:20 +01001811 vcpu->arch.sie_block->ckc = 0UL;
1812 vcpu->arch.sie_block->todpr = 0;
1813 memset(vcpu->arch.sie_block->gcr, 0, 16 * sizeof(__u64));
1814 vcpu->arch.sie_block->gcr[0] = 0xE0UL;
1815 vcpu->arch.sie_block->gcr[14] = 0xC2000000UL;
David Hildenbrand9abc2a02016-01-14 22:12:47 +01001816 /* make sure the new fpc will be lazily loaded */
1817 save_fpu_regs();
1818 current->thread.fpu.fpc = 0;
Heiko Carstensb0c632d2008-03-25 18:47:20 +01001819 vcpu->arch.sie_block->gbea = 1;
Christian Borntraeger672550f2014-02-10 15:32:19 +01001820 vcpu->arch.sie_block->pp = 0;
Dominik Dingel3c038e62013-10-07 17:11:48 +02001821 vcpu->arch.pfault_token = KVM_S390_PFAULT_TOKEN_INVALID;
1822 kvm_clear_async_pf_completion_queue(vcpu);
David Hildenbrand6352e4d2014-04-10 17:35:00 +02001823 if (!kvm_s390_user_cpu_state_ctrl(vcpu->kvm))
1824 kvm_s390_vcpu_stop(vcpu);
Jens Freimann2ed10cc2014-02-11 13:48:07 +01001825 kvm_s390_clear_local_irqs(vcpu);
Heiko Carstensb0c632d2008-03-25 18:47:20 +01001826}
1827
Dominik Dingel31928aa2014-12-04 15:47:07 +01001828void kvm_arch_vcpu_postcreate(struct kvm_vcpu *vcpu)
Marcelo Tosatti42897d82012-11-27 23:29:02 -02001829{
Jason J. Herne72f25022014-11-25 09:46:02 -05001830 mutex_lock(&vcpu->kvm->lock);
Fan Zhangfdf03652015-05-13 10:58:41 +02001831 preempt_disable();
Jason J. Herne72f25022014-11-25 09:46:02 -05001832 vcpu->arch.sie_block->epoch = vcpu->kvm->arch.epoch;
Fan Zhangfdf03652015-05-13 10:58:41 +02001833 preempt_enable();
Jason J. Herne72f25022014-11-25 09:46:02 -05001834 mutex_unlock(&vcpu->kvm->lock);
David Hildenbrand25508822015-10-12 16:27:23 +02001835 if (!kvm_is_ucontrol(vcpu->kvm)) {
Dominik Dingeldafd0322014-12-02 16:53:21 +01001836 vcpu->arch.gmap = vcpu->kvm->arch.gmap;
David Hildenbrandeaa78f32015-10-12 16:29:01 +02001837 sca_add_vcpu(vcpu);
David Hildenbrand25508822015-10-12 16:27:23 +02001838 }
David Hildenbrand37d9df92015-03-11 16:47:33 +01001839 /* make vcpu_load load the right gmap on the first trigger */
1840 vcpu->arch.enabled_gmap = vcpu->arch.gmap;
Marcelo Tosatti42897d82012-11-27 23:29:02 -02001841}
1842
Tony Krowiak5102ee82014-06-27 14:46:01 -04001843static void kvm_s390_vcpu_crypto_setup(struct kvm_vcpu *vcpu)
1844{
Michael Mueller9d8d5782015-02-02 15:42:51 +01001845 if (!test_kvm_facility(vcpu->kvm, 76))
Tony Krowiak5102ee82014-06-27 14:46:01 -04001846 return;
1847
Tony Krowiaka374e892014-09-03 10:13:53 +02001848 vcpu->arch.sie_block->ecb3 &= ~(ECB3_AES | ECB3_DEA);
1849
1850 if (vcpu->kvm->arch.crypto.aes_kw)
1851 vcpu->arch.sie_block->ecb3 |= ECB3_AES;
1852 if (vcpu->kvm->arch.crypto.dea_kw)
1853 vcpu->arch.sie_block->ecb3 |= ECB3_DEA;
1854
Tony Krowiak5102ee82014-06-27 14:46:01 -04001855 vcpu->arch.sie_block->crycbd = vcpu->kvm->arch.crypto.crycbd;
1856}
1857
Dominik Dingelb31605c2014-03-25 13:47:11 +01001858void kvm_s390_vcpu_unsetup_cmma(struct kvm_vcpu *vcpu)
1859{
1860 free_page(vcpu->arch.sie_block->cbrlo);
1861 vcpu->arch.sie_block->cbrlo = 0;
1862}
1863
1864int kvm_s390_vcpu_setup_cmma(struct kvm_vcpu *vcpu)
1865{
1866 vcpu->arch.sie_block->cbrlo = get_zeroed_page(GFP_KERNEL);
1867 if (!vcpu->arch.sie_block->cbrlo)
1868 return -ENOMEM;
1869
1870 vcpu->arch.sie_block->ecb2 |= 0x80;
1871 vcpu->arch.sie_block->ecb2 &= ~0x08;
1872 return 0;
1873}
1874
Michael Mueller91520f12015-02-27 14:32:11 +01001875static void kvm_s390_vcpu_setup_model(struct kvm_vcpu *vcpu)
1876{
1877 struct kvm_s390_cpu_model *model = &vcpu->kvm->arch.model;
1878
Michael Mueller91520f12015-02-27 14:32:11 +01001879 vcpu->arch.sie_block->ibc = model->ibc;
David Hildenbrand80bc79d2015-12-02 09:43:29 +01001880 if (test_kvm_facility(vcpu->kvm, 7))
David Hildenbrandc54f0d62015-12-02 08:53:52 +01001881 vcpu->arch.sie_block->fac = (u32)(u64) model->fac_list;
Michael Mueller91520f12015-02-27 14:32:11 +01001882}
1883
Heiko Carstensb0c632d2008-03-25 18:47:20 +01001884int kvm_arch_vcpu_setup(struct kvm_vcpu *vcpu)
1885{
Dominik Dingelb31605c2014-03-25 13:47:11 +01001886 int rc = 0;
Konstantin Weitzb31288f2013-04-17 17:36:29 +02001887
Cornelia Huck9e6dabe2011-11-17 11:00:41 +01001888 atomic_set(&vcpu->arch.sie_block->cpuflags, CPUSTAT_ZARCH |
1889 CPUSTAT_SM |
Guenther Hutzla4a4f192015-03-31 14:39:49 +02001890 CPUSTAT_STOPPED);
1891
Guenther Hutzl53df84f2015-02-18 11:13:03 +01001892 if (test_kvm_facility(vcpu->kvm, 78))
Peter Zijlstra805de8f42015-04-24 01:12:32 +02001893 atomic_or(CPUSTAT_GED2, &vcpu->arch.sie_block->cpuflags);
Guenther Hutzl53df84f2015-02-18 11:13:03 +01001894 else if (test_kvm_facility(vcpu->kvm, 8))
Peter Zijlstra805de8f42015-04-24 01:12:32 +02001895 atomic_or(CPUSTAT_GED, &vcpu->arch.sie_block->cpuflags);
Guenther Hutzla4a4f192015-03-31 14:39:49 +02001896
Michael Mueller91520f12015-02-27 14:32:11 +01001897 kvm_s390_vcpu_setup_model(vcpu);
1898
David Hildenbrandbdab09f2016-04-12 11:07:49 +02001899 /* pgste_set_pte has special handling for !MACHINE_HAS_ESOP */
1900 if (MACHINE_HAS_ESOP)
1901 vcpu->arch.sie_block->ecb |= 0x02;
David Hildenbrandbd50e8e2016-03-04 12:23:55 +01001902 if (test_kvm_facility(vcpu->kvm, 9))
1903 vcpu->arch.sie_block->ecb |= 0x04;
David Hildenbrandf597d242016-04-22 16:26:49 +02001904 if (test_kvm_facility(vcpu->kvm, 73))
Michael Mueller7feb6bb2013-06-28 13:30:24 +02001905 vcpu->arch.sie_block->ecb |= 0x10;
1906
David Hildenbrand873b4252016-04-04 15:53:47 +02001907 if (test_kvm_facility(vcpu->kvm, 8) && sclp.has_pfmfi)
David Hildenbrandd6af0b42016-03-04 11:55:56 +01001908 vcpu->arch.sie_block->ecb2 |= 0x08;
David Hildenbrand48ee7d32016-04-04 15:49:34 +02001909 vcpu->arch.sie_block->eca = 0x1002000U;
1910 if (sclp.has_cei)
1911 vcpu->arch.sie_block->eca |= 0x80000000U;
David Hildenbrand11ad65b2016-04-04 15:46:26 +02001912 if (sclp.has_ib)
1913 vcpu->arch.sie_block->eca |= 0x40000000U;
David Hildenbrand37c5f6c2015-05-06 13:18:59 +02001914 if (sclp.has_siif)
Heiko Carstens217a4402013-12-30 12:54:14 +01001915 vcpu->arch.sie_block->eca |= 1;
David Hildenbrand37c5f6c2015-05-06 13:18:59 +02001916 if (sclp.has_sigpif)
David Hildenbrandea5f4962014-10-14 15:29:30 +02001917 vcpu->arch.sie_block->eca |= 0x10000000U;
Fan Zhangc6e5f162016-01-07 18:24:29 +08001918 if (test_kvm_facility(vcpu->kvm, 64))
1919 vcpu->arch.sie_block->ecb3 |= 0x01;
Michael Mueller18280d82015-03-16 16:05:41 +01001920 if (test_kvm_facility(vcpu->kvm, 129)) {
Eric Farman13211ea2014-04-30 13:39:46 -04001921 vcpu->arch.sie_block->eca |= 0x00020000;
1922 vcpu->arch.sie_block->ecd |= 0x20000000;
1923 }
Fan Zhangc6e5f162016-01-07 18:24:29 +08001924 vcpu->arch.sie_block->riccbd = (unsigned long) &vcpu->run->s.regs.riccb;
Thomas Huth492d8642015-02-10 16:11:01 +01001925 vcpu->arch.sie_block->ictl |= ICTL_ISKE | ICTL_SSKE | ICTL_RRBE;
Janosch Frank95ca2cb2016-05-23 15:11:58 +02001926 if (test_kvm_facility(vcpu->kvm, 74))
1927 vcpu->arch.sie_block->ictl |= ICTL_OPEREXC;
Matthew Rosato5a5e6532013-01-29 11:48:20 -05001928
Dominik Dingele6db1d62015-05-07 15:41:57 +02001929 if (vcpu->kvm->arch.use_cmma) {
Dominik Dingelb31605c2014-03-25 13:47:11 +01001930 rc = kvm_s390_vcpu_setup_cmma(vcpu);
1931 if (rc)
1932 return rc;
Konstantin Weitzb31288f2013-04-17 17:36:29 +02001933 }
David Hildenbrand0ac96ca2014-12-12 15:17:31 +01001934 hrtimer_init(&vcpu->arch.ckc_timer, CLOCK_MONOTONIC, HRTIMER_MODE_REL);
Christian Borntraegerca872302009-05-12 17:21:49 +02001935 vcpu->arch.ckc_timer.function = kvm_s390_idle_wakeup;
Michael Mueller9d8d5782015-02-02 15:42:51 +01001936
Tony Krowiak5102ee82014-06-27 14:46:01 -04001937 kvm_s390_vcpu_crypto_setup(vcpu);
1938
Dominik Dingelb31605c2014-03-25 13:47:11 +01001939 return rc;
Heiko Carstensb0c632d2008-03-25 18:47:20 +01001940}
1941
1942struct kvm_vcpu *kvm_arch_vcpu_create(struct kvm *kvm,
1943 unsigned int id)
1944{
Carsten Otte4d475552011-10-18 12:27:12 +02001945 struct kvm_vcpu *vcpu;
Michael Mueller7feb6bb2013-06-28 13:30:24 +02001946 struct sie_page *sie_page;
Carsten Otte4d475552011-10-18 12:27:12 +02001947 int rc = -EINVAL;
Heiko Carstensb0c632d2008-03-25 18:47:20 +01001948
David Hildenbrand42158252015-10-12 12:57:22 +02001949 if (!kvm_is_ucontrol(kvm) && !sca_can_add_vcpu(kvm, id))
Carsten Otte4d475552011-10-18 12:27:12 +02001950 goto out;
1951
1952 rc = -ENOMEM;
1953
Michael Muellerb110fea2013-06-12 13:54:54 +02001954 vcpu = kmem_cache_zalloc(kvm_vcpu_cache, GFP_KERNEL);
Heiko Carstensb0c632d2008-03-25 18:47:20 +01001955 if (!vcpu)
Carsten Otte4d475552011-10-18 12:27:12 +02001956 goto out;
Heiko Carstensb0c632d2008-03-25 18:47:20 +01001957
Michael Mueller7feb6bb2013-06-28 13:30:24 +02001958 sie_page = (struct sie_page *) get_zeroed_page(GFP_KERNEL);
1959 if (!sie_page)
Heiko Carstensb0c632d2008-03-25 18:47:20 +01001960 goto out_free_cpu;
1961
Michael Mueller7feb6bb2013-06-28 13:30:24 +02001962 vcpu->arch.sie_block = &sie_page->sie_block;
1963 vcpu->arch.sie_block->itdba = (unsigned long) &sie_page->itdb;
1964
David Hildenbrandefed1102015-04-16 12:32:41 +02001965 /* the real guest size will always be smaller than msl */
1966 vcpu->arch.sie_block->mso = 0;
1967 vcpu->arch.sie_block->msl = sclp.hamax;
1968
Heiko Carstensb0c632d2008-03-25 18:47:20 +01001969 vcpu->arch.sie_block->icpua = id;
Carsten Otteba5c1e92008-03-25 18:47:26 +01001970 spin_lock_init(&vcpu->arch.local_int.lock);
Carsten Otteba5c1e92008-03-25 18:47:26 +01001971 vcpu->arch.local_int.float_int = &kvm->arch.float_int;
Christian Borntraegerd0321a22013-06-12 13:54:55 +02001972 vcpu->arch.local_int.wq = &vcpu->wq;
Christian Borntraeger5288fbf2008-03-25 18:47:31 +01001973 vcpu->arch.local_int.cpuflags = &vcpu->arch.sie_block->cpuflags;
David Hildenbrand9c23a132016-02-17 21:53:33 +01001974 seqcount_init(&vcpu->arch.cputm_seqcount);
Carsten Otteba5c1e92008-03-25 18:47:26 +01001975
Heiko Carstensb0c632d2008-03-25 18:47:20 +01001976 rc = kvm_vcpu_init(vcpu, kvm, id);
1977 if (rc)
David Hildenbrand9abc2a02016-01-14 22:12:47 +01001978 goto out_free_sie_block;
Christian Borntraeger8335713a2015-12-08 16:55:27 +01001979 VM_EVENT(kvm, 3, "create cpu %d at 0x%pK, sie block at 0x%pK", id, vcpu,
Heiko Carstensb0c632d2008-03-25 18:47:20 +01001980 vcpu->arch.sie_block);
Cornelia Huckade38c32012-07-23 17:20:30 +02001981 trace_kvm_s390_create_vcpu(id, vcpu, vcpu->arch.sie_block);
Heiko Carstensb0c632d2008-03-25 18:47:20 +01001982
Heiko Carstensb0c632d2008-03-25 18:47:20 +01001983 return vcpu;
Wei Yongjun7b06bf22010-03-09 14:37:53 +08001984out_free_sie_block:
1985 free_page((unsigned long)(vcpu->arch.sie_block));
Heiko Carstensb0c632d2008-03-25 18:47:20 +01001986out_free_cpu:
Michael Muellerb110fea2013-06-12 13:54:54 +02001987 kmem_cache_free(kvm_vcpu_cache, vcpu);
Carsten Otte4d475552011-10-18 12:27:12 +02001988out:
Heiko Carstensb0c632d2008-03-25 18:47:20 +01001989 return ERR_PTR(rc);
1990}
1991
Heiko Carstensb0c632d2008-03-25 18:47:20 +01001992int kvm_arch_vcpu_runnable(struct kvm_vcpu *vcpu)
1993{
David Hildenbrand9a022062014-08-05 17:40:47 +02001994 return kvm_s390_vcpu_has_irq(vcpu, 0);
Heiko Carstensb0c632d2008-03-25 18:47:20 +01001995}
1996
Christian Borntraeger27406cd2015-04-14 12:17:34 +02001997void kvm_s390_vcpu_block(struct kvm_vcpu *vcpu)
Christian Borntraeger49b99e12013-05-17 14:41:35 +02001998{
Peter Zijlstra805de8f42015-04-24 01:12:32 +02001999 atomic_or(PROG_BLOCK_SIE, &vcpu->arch.sie_block->prog20);
David Hildenbrand61a6df52015-05-12 08:41:40 +02002000 exit_sie(vcpu);
Christian Borntraeger49b99e12013-05-17 14:41:35 +02002001}
2002
Christian Borntraeger27406cd2015-04-14 12:17:34 +02002003void kvm_s390_vcpu_unblock(struct kvm_vcpu *vcpu)
Christian Borntraeger49b99e12013-05-17 14:41:35 +02002004{
Peter Zijlstra805de8f42015-04-24 01:12:32 +02002005 atomic_andnot(PROG_BLOCK_SIE, &vcpu->arch.sie_block->prog20);
Christian Borntraeger49b99e12013-05-17 14:41:35 +02002006}
2007
Christian Borntraeger8e236542015-04-09 13:49:04 +02002008static void kvm_s390_vcpu_request(struct kvm_vcpu *vcpu)
2009{
Peter Zijlstra805de8f42015-04-24 01:12:32 +02002010 atomic_or(PROG_REQUEST, &vcpu->arch.sie_block->prog20);
David Hildenbrand61a6df52015-05-12 08:41:40 +02002011 exit_sie(vcpu);
Christian Borntraeger8e236542015-04-09 13:49:04 +02002012}
2013
2014static void kvm_s390_vcpu_request_handled(struct kvm_vcpu *vcpu)
2015{
Jason J. Herne9bf9fde2015-09-16 09:13:50 -04002016 atomic_andnot(PROG_REQUEST, &vcpu->arch.sie_block->prog20);
Christian Borntraeger8e236542015-04-09 13:49:04 +02002017}
2018
Christian Borntraeger49b99e12013-05-17 14:41:35 +02002019/*
2020 * Kick a guest cpu out of SIE and wait until SIE is not running.
2021 * If the CPU is not running (e.g. waiting as idle) the function will
2022 * return immediately. */
2023void exit_sie(struct kvm_vcpu *vcpu)
2024{
Peter Zijlstra805de8f42015-04-24 01:12:32 +02002025 atomic_or(CPUSTAT_STOP_INT, &vcpu->arch.sie_block->cpuflags);
Christian Borntraeger49b99e12013-05-17 14:41:35 +02002026 while (vcpu->arch.sie_block->prog0c & PROG_IN_SIE)
2027 cpu_relax();
2028}
2029
Christian Borntraeger8e236542015-04-09 13:49:04 +02002030/* Kick a guest cpu out of SIE to process a request synchronously */
2031void kvm_s390_sync_request(int req, struct kvm_vcpu *vcpu)
Christian Borntraeger49b99e12013-05-17 14:41:35 +02002032{
Christian Borntraeger8e236542015-04-09 13:49:04 +02002033 kvm_make_request(req, vcpu);
2034 kvm_s390_vcpu_request(vcpu);
Christian Borntraeger49b99e12013-05-17 14:41:35 +02002035}
2036
Martin Schwidefsky414d3b02016-03-08 11:52:54 +01002037static void kvm_gmap_notifier(struct gmap *gmap, unsigned long start,
2038 unsigned long end)
Christian Borntraeger2c70fe42013-05-17 14:41:36 +02002039{
Christian Borntraeger2c70fe42013-05-17 14:41:36 +02002040 struct kvm *kvm = gmap->private;
2041 struct kvm_vcpu *vcpu;
Martin Schwidefsky414d3b02016-03-08 11:52:54 +01002042 unsigned long prefix;
2043 int i;
Christian Borntraeger2c70fe42013-05-17 14:41:36 +02002044
David Hildenbrand65d0b0d2015-04-27 16:29:34 +02002045 if (gmap_is_shadow(gmap))
2046 return;
Martin Schwidefsky414d3b02016-03-08 11:52:54 +01002047 if (start >= 1UL << 31)
2048 /* We are only interested in prefix pages */
2049 return;
Christian Borntraeger2c70fe42013-05-17 14:41:36 +02002050 kvm_for_each_vcpu(i, vcpu, kvm) {
2051 /* match against both prefix pages */
Martin Schwidefsky414d3b02016-03-08 11:52:54 +01002052 prefix = kvm_s390_get_prefix(vcpu);
2053 if (prefix <= end && start <= prefix + 2*PAGE_SIZE - 1) {
2054 VCPU_EVENT(vcpu, 2, "gmap notifier for %lx-%lx",
2055 start, end);
Christian Borntraeger8e236542015-04-09 13:49:04 +02002056 kvm_s390_sync_request(KVM_REQ_MMU_RELOAD, vcpu);
Christian Borntraeger2c70fe42013-05-17 14:41:36 +02002057 }
2058 }
2059}
2060
Christoffer Dallb6d33832012-03-08 16:44:24 -05002061int kvm_arch_vcpu_should_kick(struct kvm_vcpu *vcpu)
2062{
2063 /* kvm common code refers to this, but never calls it */
2064 BUG();
2065 return 0;
2066}
2067
Carsten Otte14eebd92012-05-15 14:15:26 +02002068static int kvm_arch_vcpu_ioctl_get_one_reg(struct kvm_vcpu *vcpu,
2069 struct kvm_one_reg *reg)
2070{
2071 int r = -EINVAL;
2072
2073 switch (reg->id) {
Carsten Otte29b7c712012-05-15 14:15:27 +02002074 case KVM_REG_S390_TODPR:
2075 r = put_user(vcpu->arch.sie_block->todpr,
2076 (u32 __user *)reg->addr);
2077 break;
2078 case KVM_REG_S390_EPOCHDIFF:
2079 r = put_user(vcpu->arch.sie_block->epoch,
2080 (u64 __user *)reg->addr);
2081 break;
Jason J. herne46a6dd12012-05-15 14:15:28 +02002082 case KVM_REG_S390_CPU_TIMER:
David Hildenbrand4287f242016-02-15 09:40:12 +01002083 r = put_user(kvm_s390_get_cpu_timer(vcpu),
Jason J. herne46a6dd12012-05-15 14:15:28 +02002084 (u64 __user *)reg->addr);
2085 break;
2086 case KVM_REG_S390_CLOCK_COMP:
2087 r = put_user(vcpu->arch.sie_block->ckc,
2088 (u64 __user *)reg->addr);
2089 break;
Dominik Dingel536336c2013-09-30 10:55:33 +02002090 case KVM_REG_S390_PFTOKEN:
2091 r = put_user(vcpu->arch.pfault_token,
2092 (u64 __user *)reg->addr);
2093 break;
2094 case KVM_REG_S390_PFCOMPARE:
2095 r = put_user(vcpu->arch.pfault_compare,
2096 (u64 __user *)reg->addr);
2097 break;
2098 case KVM_REG_S390_PFSELECT:
2099 r = put_user(vcpu->arch.pfault_select,
2100 (u64 __user *)reg->addr);
2101 break;
Christian Borntraeger672550f2014-02-10 15:32:19 +01002102 case KVM_REG_S390_PP:
2103 r = put_user(vcpu->arch.sie_block->pp,
2104 (u64 __user *)reg->addr);
2105 break;
Christian Borntraegerafa45ff2014-02-10 15:39:23 +01002106 case KVM_REG_S390_GBEA:
2107 r = put_user(vcpu->arch.sie_block->gbea,
2108 (u64 __user *)reg->addr);
2109 break;
Carsten Otte14eebd92012-05-15 14:15:26 +02002110 default:
2111 break;
2112 }
2113
2114 return r;
2115}
2116
2117static int kvm_arch_vcpu_ioctl_set_one_reg(struct kvm_vcpu *vcpu,
2118 struct kvm_one_reg *reg)
2119{
2120 int r = -EINVAL;
David Hildenbrand4287f242016-02-15 09:40:12 +01002121 __u64 val;
Carsten Otte14eebd92012-05-15 14:15:26 +02002122
2123 switch (reg->id) {
Carsten Otte29b7c712012-05-15 14:15:27 +02002124 case KVM_REG_S390_TODPR:
2125 r = get_user(vcpu->arch.sie_block->todpr,
2126 (u32 __user *)reg->addr);
2127 break;
2128 case KVM_REG_S390_EPOCHDIFF:
2129 r = get_user(vcpu->arch.sie_block->epoch,
2130 (u64 __user *)reg->addr);
2131 break;
Jason J. herne46a6dd12012-05-15 14:15:28 +02002132 case KVM_REG_S390_CPU_TIMER:
David Hildenbrand4287f242016-02-15 09:40:12 +01002133 r = get_user(val, (u64 __user *)reg->addr);
2134 if (!r)
2135 kvm_s390_set_cpu_timer(vcpu, val);
Jason J. herne46a6dd12012-05-15 14:15:28 +02002136 break;
2137 case KVM_REG_S390_CLOCK_COMP:
2138 r = get_user(vcpu->arch.sie_block->ckc,
2139 (u64 __user *)reg->addr);
2140 break;
Dominik Dingel536336c2013-09-30 10:55:33 +02002141 case KVM_REG_S390_PFTOKEN:
2142 r = get_user(vcpu->arch.pfault_token,
2143 (u64 __user *)reg->addr);
David Hildenbrand9fbd8082014-10-09 15:01:38 +02002144 if (vcpu->arch.pfault_token == KVM_S390_PFAULT_TOKEN_INVALID)
2145 kvm_clear_async_pf_completion_queue(vcpu);
Dominik Dingel536336c2013-09-30 10:55:33 +02002146 break;
2147 case KVM_REG_S390_PFCOMPARE:
2148 r = get_user(vcpu->arch.pfault_compare,
2149 (u64 __user *)reg->addr);
2150 break;
2151 case KVM_REG_S390_PFSELECT:
2152 r = get_user(vcpu->arch.pfault_select,
2153 (u64 __user *)reg->addr);
2154 break;
Christian Borntraeger672550f2014-02-10 15:32:19 +01002155 case KVM_REG_S390_PP:
2156 r = get_user(vcpu->arch.sie_block->pp,
2157 (u64 __user *)reg->addr);
2158 break;
Christian Borntraegerafa45ff2014-02-10 15:39:23 +01002159 case KVM_REG_S390_GBEA:
2160 r = get_user(vcpu->arch.sie_block->gbea,
2161 (u64 __user *)reg->addr);
2162 break;
Carsten Otte14eebd92012-05-15 14:15:26 +02002163 default:
2164 break;
2165 }
2166
2167 return r;
2168}
Christoffer Dallb6d33832012-03-08 16:44:24 -05002169
Heiko Carstensb0c632d2008-03-25 18:47:20 +01002170static int kvm_arch_vcpu_ioctl_initial_reset(struct kvm_vcpu *vcpu)
2171{
Heiko Carstensb0c632d2008-03-25 18:47:20 +01002172 kvm_s390_vcpu_initial_reset(vcpu);
Heiko Carstensb0c632d2008-03-25 18:47:20 +01002173 return 0;
2174}
2175
2176int kvm_arch_vcpu_ioctl_set_regs(struct kvm_vcpu *vcpu, struct kvm_regs *regs)
2177{
Christian Borntraeger5a32c1a2012-01-11 11:20:32 +01002178 memcpy(&vcpu->run->s.regs.gprs, &regs->gprs, sizeof(regs->gprs));
Heiko Carstensb0c632d2008-03-25 18:47:20 +01002179 return 0;
2180}
2181
2182int kvm_arch_vcpu_ioctl_get_regs(struct kvm_vcpu *vcpu, struct kvm_regs *regs)
2183{
Christian Borntraeger5a32c1a2012-01-11 11:20:32 +01002184 memcpy(&regs->gprs, &vcpu->run->s.regs.gprs, sizeof(regs->gprs));
Heiko Carstensb0c632d2008-03-25 18:47:20 +01002185 return 0;
2186}
2187
2188int kvm_arch_vcpu_ioctl_set_sregs(struct kvm_vcpu *vcpu,
2189 struct kvm_sregs *sregs)
2190{
Christian Borntraeger59674c12012-01-11 11:20:33 +01002191 memcpy(&vcpu->run->s.regs.acrs, &sregs->acrs, sizeof(sregs->acrs));
Heiko Carstensb0c632d2008-03-25 18:47:20 +01002192 memcpy(&vcpu->arch.sie_block->gcr, &sregs->crs, sizeof(sregs->crs));
Christian Borntraeger59674c12012-01-11 11:20:33 +01002193 restore_access_regs(vcpu->run->s.regs.acrs);
Heiko Carstensb0c632d2008-03-25 18:47:20 +01002194 return 0;
2195}
2196
2197int kvm_arch_vcpu_ioctl_get_sregs(struct kvm_vcpu *vcpu,
2198 struct kvm_sregs *sregs)
2199{
Christian Borntraeger59674c12012-01-11 11:20:33 +01002200 memcpy(&sregs->acrs, &vcpu->run->s.regs.acrs, sizeof(sregs->acrs));
Heiko Carstensb0c632d2008-03-25 18:47:20 +01002201 memcpy(&sregs->crs, &vcpu->arch.sie_block->gcr, sizeof(sregs->crs));
Heiko Carstensb0c632d2008-03-25 18:47:20 +01002202 return 0;
2203}
2204
2205int kvm_arch_vcpu_ioctl_set_fpu(struct kvm_vcpu *vcpu, struct kvm_fpu *fpu)
2206{
David Hildenbrand9abc2a02016-01-14 22:12:47 +01002207 /* make sure the new values will be lazily loaded */
2208 save_fpu_regs();
Martin Schwidefsky4725c862013-10-15 16:08:34 +02002209 if (test_fp_ctl(fpu->fpc))
2210 return -EINVAL;
David Hildenbrand9abc2a02016-01-14 22:12:47 +01002211 current->thread.fpu.fpc = fpu->fpc;
2212 if (MACHINE_HAS_VX)
2213 convert_fp_to_vx(current->thread.fpu.vxrs, (freg_t *)fpu->fprs);
2214 else
2215 memcpy(current->thread.fpu.fprs, &fpu->fprs, sizeof(fpu->fprs));
Heiko Carstensb0c632d2008-03-25 18:47:20 +01002216 return 0;
2217}
2218
2219int kvm_arch_vcpu_ioctl_get_fpu(struct kvm_vcpu *vcpu, struct kvm_fpu *fpu)
2220{
David Hildenbrand9abc2a02016-01-14 22:12:47 +01002221 /* make sure we have the latest values */
2222 save_fpu_regs();
2223 if (MACHINE_HAS_VX)
2224 convert_vx_to_fp((freg_t *)fpu->fprs, current->thread.fpu.vxrs);
2225 else
2226 memcpy(fpu->fprs, current->thread.fpu.fprs, sizeof(fpu->fprs));
2227 fpu->fpc = current->thread.fpu.fpc;
Heiko Carstensb0c632d2008-03-25 18:47:20 +01002228 return 0;
2229}
2230
2231static int kvm_arch_vcpu_ioctl_set_initial_psw(struct kvm_vcpu *vcpu, psw_t psw)
2232{
2233 int rc = 0;
2234
David Hildenbrand7a42fdc2014-05-05 16:26:19 +02002235 if (!is_vcpu_stopped(vcpu))
Heiko Carstensb0c632d2008-03-25 18:47:20 +01002236 rc = -EBUSY;
Carsten Otted7b0b5e2009-11-19 14:21:16 +01002237 else {
2238 vcpu->run->psw_mask = psw.mask;
2239 vcpu->run->psw_addr = psw.addr;
2240 }
Heiko Carstensb0c632d2008-03-25 18:47:20 +01002241 return rc;
2242}
2243
2244int kvm_arch_vcpu_ioctl_translate(struct kvm_vcpu *vcpu,
2245 struct kvm_translation *tr)
2246{
2247 return -EINVAL; /* not implemented yet */
2248}
2249
David Hildenbrand27291e22014-01-23 12:26:52 +01002250#define VALID_GUESTDBG_FLAGS (KVM_GUESTDBG_SINGLESTEP | \
2251 KVM_GUESTDBG_USE_HW_BP | \
2252 KVM_GUESTDBG_ENABLE)
2253
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002254int kvm_arch_vcpu_ioctl_set_guest_debug(struct kvm_vcpu *vcpu,
2255 struct kvm_guest_debug *dbg)
Heiko Carstensb0c632d2008-03-25 18:47:20 +01002256{
David Hildenbrand27291e22014-01-23 12:26:52 +01002257 int rc = 0;
2258
2259 vcpu->guest_debug = 0;
2260 kvm_s390_clear_bp_data(vcpu);
2261
David Hildenbrand2de3bfc2014-05-20 17:25:20 +02002262 if (dbg->control & ~VALID_GUESTDBG_FLAGS)
David Hildenbrand27291e22014-01-23 12:26:52 +01002263 return -EINVAL;
David Hildenbrand89b5b4d2015-11-24 13:47:13 +01002264 if (!sclp.has_gpere)
2265 return -EINVAL;
David Hildenbrand27291e22014-01-23 12:26:52 +01002266
2267 if (dbg->control & KVM_GUESTDBG_ENABLE) {
2268 vcpu->guest_debug = dbg->control;
2269 /* enforce guest PER */
Peter Zijlstra805de8f42015-04-24 01:12:32 +02002270 atomic_or(CPUSTAT_P, &vcpu->arch.sie_block->cpuflags);
David Hildenbrand27291e22014-01-23 12:26:52 +01002271
2272 if (dbg->control & KVM_GUESTDBG_USE_HW_BP)
2273 rc = kvm_s390_import_bp_data(vcpu, dbg);
2274 } else {
Peter Zijlstra805de8f42015-04-24 01:12:32 +02002275 atomic_andnot(CPUSTAT_P, &vcpu->arch.sie_block->cpuflags);
David Hildenbrand27291e22014-01-23 12:26:52 +01002276 vcpu->arch.guestdbg.last_bp = 0;
2277 }
2278
2279 if (rc) {
2280 vcpu->guest_debug = 0;
2281 kvm_s390_clear_bp_data(vcpu);
Peter Zijlstra805de8f42015-04-24 01:12:32 +02002282 atomic_andnot(CPUSTAT_P, &vcpu->arch.sie_block->cpuflags);
David Hildenbrand27291e22014-01-23 12:26:52 +01002283 }
2284
2285 return rc;
Heiko Carstensb0c632d2008-03-25 18:47:20 +01002286}
2287
Marcelo Tosatti62d9f0d2008-04-11 13:24:45 -03002288int kvm_arch_vcpu_ioctl_get_mpstate(struct kvm_vcpu *vcpu,
2289 struct kvm_mp_state *mp_state)
2290{
David Hildenbrand6352e4d2014-04-10 17:35:00 +02002291 /* CHECK_STOP and LOAD are not supported yet */
2292 return is_vcpu_stopped(vcpu) ? KVM_MP_STATE_STOPPED :
2293 KVM_MP_STATE_OPERATING;
Marcelo Tosatti62d9f0d2008-04-11 13:24:45 -03002294}
2295
2296int kvm_arch_vcpu_ioctl_set_mpstate(struct kvm_vcpu *vcpu,
2297 struct kvm_mp_state *mp_state)
2298{
David Hildenbrand6352e4d2014-04-10 17:35:00 +02002299 int rc = 0;
2300
2301 /* user space knows about this interface - let it control the state */
2302 vcpu->kvm->arch.user_cpu_state_ctrl = 1;
2303
2304 switch (mp_state->mp_state) {
2305 case KVM_MP_STATE_STOPPED:
2306 kvm_s390_vcpu_stop(vcpu);
2307 break;
2308 case KVM_MP_STATE_OPERATING:
2309 kvm_s390_vcpu_start(vcpu);
2310 break;
2311 case KVM_MP_STATE_LOAD:
2312 case KVM_MP_STATE_CHECK_STOP:
2313 /* fall through - CHECK_STOP and LOAD are not supported yet */
2314 default:
2315 rc = -ENXIO;
2316 }
2317
2318 return rc;
Marcelo Tosatti62d9f0d2008-04-11 13:24:45 -03002319}
2320
David Hildenbrand8ad35752014-03-14 11:00:21 +01002321static bool ibs_enabled(struct kvm_vcpu *vcpu)
2322{
2323 return atomic_read(&vcpu->arch.sie_block->cpuflags) & CPUSTAT_IBS;
2324}
2325
Christian Borntraeger2c70fe42013-05-17 14:41:36 +02002326static int kvm_s390_handle_requests(struct kvm_vcpu *vcpu)
2327{
David Hildenbrand8ad35752014-03-14 11:00:21 +01002328retry:
Christian Borntraeger8e236542015-04-09 13:49:04 +02002329 kvm_s390_vcpu_request_handled(vcpu);
Christian Borntraeger586b7cc2015-07-28 15:03:05 +02002330 if (!vcpu->requests)
2331 return 0;
Christian Borntraeger2c70fe42013-05-17 14:41:36 +02002332 /*
2333 * We use MMU_RELOAD just to re-arm the ipte notifier for the
Martin Schwidefskyb2d73b22016-03-08 11:54:42 +01002334 * guest prefix page. gmap_mprotect_notify will wait on the ptl lock.
Christian Borntraeger2c70fe42013-05-17 14:41:36 +02002335 * This ensures that the ipte instruction for this request has
2336 * already finished. We might race against a second unmapper that
2337 * wants to set the blocking bit. Lets just retry the request loop.
2338 */
David Hildenbrand8ad35752014-03-14 11:00:21 +01002339 if (kvm_check_request(KVM_REQ_MMU_RELOAD, vcpu)) {
Christian Borntraeger2c70fe42013-05-17 14:41:36 +02002340 int rc;
Martin Schwidefskyb2d73b22016-03-08 11:54:42 +01002341 rc = gmap_mprotect_notify(vcpu->arch.gmap,
2342 kvm_s390_get_prefix(vcpu),
2343 PAGE_SIZE * 2, PROT_WRITE);
Christian Borntraeger2c70fe42013-05-17 14:41:36 +02002344 if (rc)
2345 return rc;
David Hildenbrand8ad35752014-03-14 11:00:21 +01002346 goto retry;
Christian Borntraeger2c70fe42013-05-17 14:41:36 +02002347 }
David Hildenbrand8ad35752014-03-14 11:00:21 +01002348
David Hildenbrandd3d692c2014-07-29 08:53:36 +02002349 if (kvm_check_request(KVM_REQ_TLB_FLUSH, vcpu)) {
2350 vcpu->arch.sie_block->ihcpu = 0xffff;
2351 goto retry;
2352 }
2353
David Hildenbrand8ad35752014-03-14 11:00:21 +01002354 if (kvm_check_request(KVM_REQ_ENABLE_IBS, vcpu)) {
2355 if (!ibs_enabled(vcpu)) {
2356 trace_kvm_s390_enable_disable_ibs(vcpu->vcpu_id, 1);
Peter Zijlstra805de8f42015-04-24 01:12:32 +02002357 atomic_or(CPUSTAT_IBS,
David Hildenbrand8ad35752014-03-14 11:00:21 +01002358 &vcpu->arch.sie_block->cpuflags);
2359 }
2360 goto retry;
2361 }
2362
2363 if (kvm_check_request(KVM_REQ_DISABLE_IBS, vcpu)) {
2364 if (ibs_enabled(vcpu)) {
2365 trace_kvm_s390_enable_disable_ibs(vcpu->vcpu_id, 0);
Peter Zijlstra805de8f42015-04-24 01:12:32 +02002366 atomic_andnot(CPUSTAT_IBS,
David Hildenbrand8ad35752014-03-14 11:00:21 +01002367 &vcpu->arch.sie_block->cpuflags);
2368 }
2369 goto retry;
2370 }
2371
David Hildenbrand0759d062014-05-13 16:54:32 +02002372 /* nothing to do, just clear the request */
2373 clear_bit(KVM_REQ_UNHALT, &vcpu->requests);
2374
Christian Borntraeger2c70fe42013-05-17 14:41:36 +02002375 return 0;
2376}
2377
David Hildenbrand25ed1672015-05-12 09:49:14 +02002378void kvm_s390_set_tod_clock(struct kvm *kvm, u64 tod)
2379{
2380 struct kvm_vcpu *vcpu;
2381 int i;
2382
2383 mutex_lock(&kvm->lock);
2384 preempt_disable();
2385 kvm->arch.epoch = tod - get_tod_clock();
2386 kvm_s390_vcpu_block_all(kvm);
2387 kvm_for_each_vcpu(i, vcpu, kvm)
2388 vcpu->arch.sie_block->epoch = kvm->arch.epoch;
2389 kvm_s390_vcpu_unblock_all(kvm);
2390 preempt_enable();
2391 mutex_unlock(&kvm->lock);
2392}
2393
Thomas Huthfa576c52014-05-06 17:20:16 +02002394/**
2395 * kvm_arch_fault_in_page - fault-in guest page if necessary
2396 * @vcpu: The corresponding virtual cpu
2397 * @gpa: Guest physical address
2398 * @writable: Whether the page should be writable or not
2399 *
2400 * Make sure that a guest page has been faulted-in on the host.
2401 *
2402 * Return: Zero on success, negative error code otherwise.
2403 */
2404long kvm_arch_fault_in_page(struct kvm_vcpu *vcpu, gpa_t gpa, int writable)
Dominik Dingel24eb3a82013-06-17 16:25:18 +02002405{
Martin Schwidefsky527e30b2014-04-30 16:04:25 +02002406 return gmap_fault(vcpu->arch.gmap, gpa,
2407 writable ? FAULT_FLAG_WRITE : 0);
Dominik Dingel24eb3a82013-06-17 16:25:18 +02002408}
2409
Dominik Dingel3c038e62013-10-07 17:11:48 +02002410static void __kvm_inject_pfault_token(struct kvm_vcpu *vcpu, bool start_token,
2411 unsigned long token)
2412{
2413 struct kvm_s390_interrupt inti;
Jens Freimann383d0b02014-07-29 15:11:49 +02002414 struct kvm_s390_irq irq;
Dominik Dingel3c038e62013-10-07 17:11:48 +02002415
2416 if (start_token) {
Jens Freimann383d0b02014-07-29 15:11:49 +02002417 irq.u.ext.ext_params2 = token;
2418 irq.type = KVM_S390_INT_PFAULT_INIT;
2419 WARN_ON_ONCE(kvm_s390_inject_vcpu(vcpu, &irq));
Dominik Dingel3c038e62013-10-07 17:11:48 +02002420 } else {
2421 inti.type = KVM_S390_INT_PFAULT_DONE;
Jens Freimann383d0b02014-07-29 15:11:49 +02002422 inti.parm64 = token;
Dominik Dingel3c038e62013-10-07 17:11:48 +02002423 WARN_ON_ONCE(kvm_s390_inject_vm(vcpu->kvm, &inti));
2424 }
2425}
2426
2427void kvm_arch_async_page_not_present(struct kvm_vcpu *vcpu,
2428 struct kvm_async_pf *work)
2429{
2430 trace_kvm_s390_pfault_init(vcpu, work->arch.pfault_token);
2431 __kvm_inject_pfault_token(vcpu, true, work->arch.pfault_token);
2432}
2433
2434void kvm_arch_async_page_present(struct kvm_vcpu *vcpu,
2435 struct kvm_async_pf *work)
2436{
2437 trace_kvm_s390_pfault_done(vcpu, work->arch.pfault_token);
2438 __kvm_inject_pfault_token(vcpu, false, work->arch.pfault_token);
2439}
2440
2441void kvm_arch_async_page_ready(struct kvm_vcpu *vcpu,
2442 struct kvm_async_pf *work)
2443{
2444 /* s390 will always inject the page directly */
2445}
2446
2447bool kvm_arch_can_inject_async_page_present(struct kvm_vcpu *vcpu)
2448{
2449 /*
2450 * s390 will always inject the page directly,
2451 * but we still want check_async_completion to cleanup
2452 */
2453 return true;
2454}
2455
2456static int kvm_arch_setup_async_pf(struct kvm_vcpu *vcpu)
2457{
2458 hva_t hva;
2459 struct kvm_arch_async_pf arch;
2460 int rc;
2461
2462 if (vcpu->arch.pfault_token == KVM_S390_PFAULT_TOKEN_INVALID)
2463 return 0;
2464 if ((vcpu->arch.sie_block->gpsw.mask & vcpu->arch.pfault_select) !=
2465 vcpu->arch.pfault_compare)
2466 return 0;
2467 if (psw_extint_disabled(vcpu))
2468 return 0;
David Hildenbrand9a022062014-08-05 17:40:47 +02002469 if (kvm_s390_vcpu_has_irq(vcpu, 0))
Dominik Dingel3c038e62013-10-07 17:11:48 +02002470 return 0;
2471 if (!(vcpu->arch.sie_block->gcr[0] & 0x200ul))
2472 return 0;
2473 if (!vcpu->arch.gmap->pfault_enabled)
2474 return 0;
2475
Heiko Carstens81480cc2014-01-01 16:36:07 +01002476 hva = gfn_to_hva(vcpu->kvm, gpa_to_gfn(current->thread.gmap_addr));
2477 hva += current->thread.gmap_addr & ~PAGE_MASK;
2478 if (read_guest_real(vcpu, vcpu->arch.pfault_token, &arch.pfault_token, 8))
Dominik Dingel3c038e62013-10-07 17:11:48 +02002479 return 0;
2480
2481 rc = kvm_setup_async_pf(vcpu, current->thread.gmap_addr, hva, &arch);
2482 return rc;
2483}
2484
Thomas Huth3fb4c402013-09-12 10:33:43 +02002485static int vcpu_pre_run(struct kvm_vcpu *vcpu)
Heiko Carstensb0c632d2008-03-25 18:47:20 +01002486{
Thomas Huth3fb4c402013-09-12 10:33:43 +02002487 int rc, cpuflags;
Carsten Ottee168bf82012-01-04 10:25:22 +01002488
Dominik Dingel3c038e62013-10-07 17:11:48 +02002489 /*
2490 * On s390 notifications for arriving pages will be delivered directly
2491 * to the guest but the house keeping for completed pfaults is
2492 * handled outside the worker.
2493 */
2494 kvm_check_async_pf_completion(vcpu);
2495
Christian Borntraeger7ec7c8c2015-12-02 14:27:03 +01002496 vcpu->arch.sie_block->gg14 = vcpu->run->s.regs.gprs[14];
2497 vcpu->arch.sie_block->gg15 = vcpu->run->s.regs.gprs[15];
Heiko Carstensb0c632d2008-03-25 18:47:20 +01002498
2499 if (need_resched())
2500 schedule();
2501
Martin Schwidefskyd3a73ac2014-04-15 12:55:07 +02002502 if (test_cpu_flag(CIF_MCCK_PENDING))
Christian Borntraeger71cde582008-05-21 13:37:34 +02002503 s390_handle_mcck();
2504
Jens Freimann79395032014-04-17 10:10:30 +02002505 if (!kvm_is_ucontrol(vcpu->kvm)) {
2506 rc = kvm_s390_deliver_pending_interrupts(vcpu);
2507 if (rc)
2508 return rc;
2509 }
Carsten Otte0ff31862008-05-21 13:37:37 +02002510
Christian Borntraeger2c70fe42013-05-17 14:41:36 +02002511 rc = kvm_s390_handle_requests(vcpu);
2512 if (rc)
2513 return rc;
2514
David Hildenbrand27291e22014-01-23 12:26:52 +01002515 if (guestdbg_enabled(vcpu)) {
2516 kvm_s390_backup_guest_per_regs(vcpu);
2517 kvm_s390_patch_guest_per_regs(vcpu);
2518 }
2519
Heiko Carstensb0c632d2008-03-25 18:47:20 +01002520 vcpu->arch.sie_block->icptcode = 0;
Thomas Huth3fb4c402013-09-12 10:33:43 +02002521 cpuflags = atomic_read(&vcpu->arch.sie_block->cpuflags);
2522 VCPU_EVENT(vcpu, 6, "entering sie flags %x", cpuflags);
2523 trace_kvm_s390_sie_enter(vcpu, cpuflags);
Dominik Dingel2b29a9f2013-07-26 15:04:00 +02002524
Thomas Huth3fb4c402013-09-12 10:33:43 +02002525 return 0;
2526}
2527
Thomas Huth492d8642015-02-10 16:11:01 +01002528static int vcpu_post_run_fault_in_sie(struct kvm_vcpu *vcpu)
2529{
David Hildenbrand56317922016-01-12 17:37:58 +01002530 struct kvm_s390_pgm_info pgm_info = {
2531 .code = PGM_ADDRESSING,
2532 };
2533 u8 opcode, ilen;
Thomas Huth492d8642015-02-10 16:11:01 +01002534 int rc;
2535
2536 VCPU_EVENT(vcpu, 3, "%s", "fault in sie instruction");
2537 trace_kvm_s390_sie_fault(vcpu);
2538
2539 /*
2540 * We want to inject an addressing exception, which is defined as a
2541 * suppressing or terminating exception. However, since we came here
2542 * by a DAT access exception, the PSW still points to the faulting
2543 * instruction since DAT exceptions are nullifying. So we've got
2544 * to look up the current opcode to get the length of the instruction
2545 * to be able to forward the PSW.
2546 */
David Hildenbrand65977322015-11-16 16:17:45 +01002547 rc = read_guest_instr(vcpu, &opcode, 1);
David Hildenbrand56317922016-01-12 17:37:58 +01002548 ilen = insn_length(opcode);
David Hildenbrand9b0d7212016-01-12 17:40:54 +01002549 if (rc < 0) {
2550 return rc;
2551 } else if (rc) {
2552 /* Instruction-Fetching Exceptions - we can't detect the ilen.
2553 * Forward by arbitrary ilc, injection will take care of
2554 * nullification if necessary.
2555 */
2556 pgm_info = vcpu->arch.pgm;
2557 ilen = 4;
2558 }
David Hildenbrand56317922016-01-12 17:37:58 +01002559 pgm_info.flags = ilen | KVM_S390_PGM_FLAGS_ILC_VALID;
2560 kvm_s390_forward_psw(vcpu, ilen);
2561 return kvm_s390_inject_prog_irq(vcpu, &pgm_info);
Thomas Huth492d8642015-02-10 16:11:01 +01002562}
2563
Thomas Huth3fb4c402013-09-12 10:33:43 +02002564static int vcpu_post_run(struct kvm_vcpu *vcpu, int exit_reason)
2565{
Dominik Dingel2b29a9f2013-07-26 15:04:00 +02002566 VCPU_EVENT(vcpu, 6, "exit sie icptcode %d",
2567 vcpu->arch.sie_block->icptcode);
2568 trace_kvm_s390_sie_exit(vcpu, vcpu->arch.sie_block->icptcode);
2569
David Hildenbrand27291e22014-01-23 12:26:52 +01002570 if (guestdbg_enabled(vcpu))
2571 kvm_s390_restore_guest_per_regs(vcpu);
2572
Christian Borntraeger7ec7c8c2015-12-02 14:27:03 +01002573 vcpu->run->s.regs.gprs[14] = vcpu->arch.sie_block->gg14;
2574 vcpu->run->s.regs.gprs[15] = vcpu->arch.sie_block->gg15;
David Hildenbrand71f116b2015-10-19 16:24:28 +02002575
2576 if (vcpu->arch.sie_block->icptcode > 0) {
2577 int rc = kvm_handle_sie_intercept(vcpu);
2578
2579 if (rc != -EOPNOTSUPP)
2580 return rc;
2581 vcpu->run->exit_reason = KVM_EXIT_S390_SIEIC;
2582 vcpu->run->s390_sieic.icptcode = vcpu->arch.sie_block->icptcode;
2583 vcpu->run->s390_sieic.ipa = vcpu->arch.sie_block->ipa;
2584 vcpu->run->s390_sieic.ipb = vcpu->arch.sie_block->ipb;
2585 return -EREMOTE;
2586 } else if (exit_reason != -EFAULT) {
2587 vcpu->stat.exit_null++;
2588 return 0;
Thomas Huth210b16072013-09-19 16:26:18 +02002589 } else if (kvm_is_ucontrol(vcpu->kvm)) {
2590 vcpu->run->exit_reason = KVM_EXIT_S390_UCONTROL;
2591 vcpu->run->s390_ucontrol.trans_exc_code =
2592 current->thread.gmap_addr;
2593 vcpu->run->s390_ucontrol.pgm_code = 0x10;
David Hildenbrand71f116b2015-10-19 16:24:28 +02002594 return -EREMOTE;
Dominik Dingel24eb3a82013-06-17 16:25:18 +02002595 } else if (current->thread.gmap_pfault) {
Dominik Dingel3c038e62013-10-07 17:11:48 +02002596 trace_kvm_s390_major_guest_pfault(vcpu);
Dominik Dingel24eb3a82013-06-17 16:25:18 +02002597 current->thread.gmap_pfault = 0;
David Hildenbrand71f116b2015-10-19 16:24:28 +02002598 if (kvm_arch_setup_async_pf(vcpu))
2599 return 0;
2600 return kvm_arch_fault_in_page(vcpu, current->thread.gmap_addr, 1);
Dominik Dingel24eb3a82013-06-17 16:25:18 +02002601 }
David Hildenbrand71f116b2015-10-19 16:24:28 +02002602 return vcpu_post_run_fault_in_sie(vcpu);
Thomas Huth3fb4c402013-09-12 10:33:43 +02002603}
2604
2605static int __vcpu_run(struct kvm_vcpu *vcpu)
2606{
2607 int rc, exit_reason;
2608
Thomas Huth800c1062013-09-12 10:33:45 +02002609 /*
2610 * We try to hold kvm->srcu during most of vcpu_run (except when run-
2611 * ning the guest), so that memslots (and other stuff) are protected
2612 */
2613 vcpu->srcu_idx = srcu_read_lock(&vcpu->kvm->srcu);
2614
Thomas Hutha76ccff2013-09-12 10:33:44 +02002615 do {
2616 rc = vcpu_pre_run(vcpu);
2617 if (rc)
2618 break;
Thomas Huth3fb4c402013-09-12 10:33:43 +02002619
Thomas Huth800c1062013-09-12 10:33:45 +02002620 srcu_read_unlock(&vcpu->kvm->srcu, vcpu->srcu_idx);
Thomas Hutha76ccff2013-09-12 10:33:44 +02002621 /*
2622 * As PF_VCPU will be used in fault handler, between
2623 * guest_enter and guest_exit should be no uaccess.
2624 */
Christian Borntraeger0097d122015-04-30 13:43:30 +02002625 local_irq_disable();
Paolo Bonzini6edaa532016-06-15 15:18:26 +02002626 guest_enter_irqoff();
David Hildenbranddb0758b2016-02-15 09:42:25 +01002627 __disable_cpu_timer_accounting(vcpu);
Christian Borntraeger0097d122015-04-30 13:43:30 +02002628 local_irq_enable();
Thomas Hutha76ccff2013-09-12 10:33:44 +02002629 exit_reason = sie64a(vcpu->arch.sie_block,
2630 vcpu->run->s.regs.gprs);
Christian Borntraeger0097d122015-04-30 13:43:30 +02002631 local_irq_disable();
David Hildenbranddb0758b2016-02-15 09:42:25 +01002632 __enable_cpu_timer_accounting(vcpu);
Paolo Bonzini6edaa532016-06-15 15:18:26 +02002633 guest_exit_irqoff();
Christian Borntraeger0097d122015-04-30 13:43:30 +02002634 local_irq_enable();
Thomas Huth800c1062013-09-12 10:33:45 +02002635 vcpu->srcu_idx = srcu_read_lock(&vcpu->kvm->srcu);
Thomas Huth3fb4c402013-09-12 10:33:43 +02002636
Thomas Hutha76ccff2013-09-12 10:33:44 +02002637 rc = vcpu_post_run(vcpu, exit_reason);
David Hildenbrand27291e22014-01-23 12:26:52 +01002638 } while (!signal_pending(current) && !guestdbg_exit_pending(vcpu) && !rc);
Thomas Huth3fb4c402013-09-12 10:33:43 +02002639
Thomas Huth800c1062013-09-12 10:33:45 +02002640 srcu_read_unlock(&vcpu->kvm->srcu, vcpu->srcu_idx);
Carsten Ottee168bf82012-01-04 10:25:22 +01002641 return rc;
Heiko Carstensb0c632d2008-03-25 18:47:20 +01002642}
2643
David Hildenbrandb028ee32014-07-17 10:47:43 +02002644static void sync_regs(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run)
2645{
2646 vcpu->arch.sie_block->gpsw.mask = kvm_run->psw_mask;
2647 vcpu->arch.sie_block->gpsw.addr = kvm_run->psw_addr;
2648 if (kvm_run->kvm_dirty_regs & KVM_SYNC_PREFIX)
2649 kvm_s390_set_prefix(vcpu, kvm_run->s.regs.prefix);
2650 if (kvm_run->kvm_dirty_regs & KVM_SYNC_CRS) {
2651 memcpy(&vcpu->arch.sie_block->gcr, &kvm_run->s.regs.crs, 128);
David Hildenbrandd3d692c2014-07-29 08:53:36 +02002652 /* some control register changes require a tlb flush */
2653 kvm_make_request(KVM_REQ_TLB_FLUSH, vcpu);
David Hildenbrandb028ee32014-07-17 10:47:43 +02002654 }
2655 if (kvm_run->kvm_dirty_regs & KVM_SYNC_ARCH0) {
David Hildenbrand4287f242016-02-15 09:40:12 +01002656 kvm_s390_set_cpu_timer(vcpu, kvm_run->s.regs.cputm);
David Hildenbrandb028ee32014-07-17 10:47:43 +02002657 vcpu->arch.sie_block->ckc = kvm_run->s.regs.ckc;
2658 vcpu->arch.sie_block->todpr = kvm_run->s.regs.todpr;
2659 vcpu->arch.sie_block->pp = kvm_run->s.regs.pp;
2660 vcpu->arch.sie_block->gbea = kvm_run->s.regs.gbea;
2661 }
2662 if (kvm_run->kvm_dirty_regs & KVM_SYNC_PFAULT) {
2663 vcpu->arch.pfault_token = kvm_run->s.regs.pft;
2664 vcpu->arch.pfault_select = kvm_run->s.regs.pfs;
2665 vcpu->arch.pfault_compare = kvm_run->s.regs.pfc;
David Hildenbrand9fbd8082014-10-09 15:01:38 +02002666 if (vcpu->arch.pfault_token == KVM_S390_PFAULT_TOKEN_INVALID)
2667 kvm_clear_async_pf_completion_queue(vcpu);
David Hildenbrandb028ee32014-07-17 10:47:43 +02002668 }
2669 kvm_run->kvm_dirty_regs = 0;
2670}
2671
2672static void store_regs(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run)
2673{
2674 kvm_run->psw_mask = vcpu->arch.sie_block->gpsw.mask;
2675 kvm_run->psw_addr = vcpu->arch.sie_block->gpsw.addr;
2676 kvm_run->s.regs.prefix = kvm_s390_get_prefix(vcpu);
2677 memcpy(&kvm_run->s.regs.crs, &vcpu->arch.sie_block->gcr, 128);
David Hildenbrand4287f242016-02-15 09:40:12 +01002678 kvm_run->s.regs.cputm = kvm_s390_get_cpu_timer(vcpu);
David Hildenbrandb028ee32014-07-17 10:47:43 +02002679 kvm_run->s.regs.ckc = vcpu->arch.sie_block->ckc;
2680 kvm_run->s.regs.todpr = vcpu->arch.sie_block->todpr;
2681 kvm_run->s.regs.pp = vcpu->arch.sie_block->pp;
2682 kvm_run->s.regs.gbea = vcpu->arch.sie_block->gbea;
2683 kvm_run->s.regs.pft = vcpu->arch.pfault_token;
2684 kvm_run->s.regs.pfs = vcpu->arch.pfault_select;
2685 kvm_run->s.regs.pfc = vcpu->arch.pfault_compare;
2686}
2687
Heiko Carstensb0c632d2008-03-25 18:47:20 +01002688int kvm_arch_vcpu_ioctl_run(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run)
2689{
Christian Borntraeger8f2abe62008-03-25 18:47:23 +01002690 int rc;
Heiko Carstensb0c632d2008-03-25 18:47:20 +01002691 sigset_t sigsaved;
2692
David Hildenbrand27291e22014-01-23 12:26:52 +01002693 if (guestdbg_exit_pending(vcpu)) {
2694 kvm_s390_prepare_debug_exit(vcpu);
2695 return 0;
2696 }
2697
Heiko Carstensb0c632d2008-03-25 18:47:20 +01002698 if (vcpu->sigset_active)
2699 sigprocmask(SIG_SETMASK, &vcpu->sigset, &sigsaved);
2700
David Hildenbrand6352e4d2014-04-10 17:35:00 +02002701 if (!kvm_s390_user_cpu_state_ctrl(vcpu->kvm)) {
2702 kvm_s390_vcpu_start(vcpu);
2703 } else if (is_vcpu_stopped(vcpu)) {
David Hildenbrandea2cdd22015-05-20 13:24:02 +02002704 pr_err_ratelimited("can't run stopped vcpu %d\n",
David Hildenbrand6352e4d2014-04-10 17:35:00 +02002705 vcpu->vcpu_id);
2706 return -EINVAL;
2707 }
Heiko Carstensb0c632d2008-03-25 18:47:20 +01002708
David Hildenbrandb028ee32014-07-17 10:47:43 +02002709 sync_regs(vcpu, kvm_run);
David Hildenbranddb0758b2016-02-15 09:42:25 +01002710 enable_cpu_timer_accounting(vcpu);
Carsten Otted7b0b5e2009-11-19 14:21:16 +01002711
Heiko Carstensdab4079d2009-06-12 10:26:32 +02002712 might_fault();
Thomas Hutha76ccff2013-09-12 10:33:44 +02002713 rc = __vcpu_run(vcpu);
Christian Ehrhardt9ace9032009-05-20 15:34:55 +02002714
Christian Ehrhardtb1d16c42009-05-20 15:34:56 +02002715 if (signal_pending(current) && !rc) {
2716 kvm_run->exit_reason = KVM_EXIT_INTR;
Christian Borntraeger8f2abe62008-03-25 18:47:23 +01002717 rc = -EINTR;
Christian Ehrhardtb1d16c42009-05-20 15:34:56 +02002718 }
Christian Borntraeger8f2abe62008-03-25 18:47:23 +01002719
David Hildenbrand27291e22014-01-23 12:26:52 +01002720 if (guestdbg_exit_pending(vcpu) && !rc) {
2721 kvm_s390_prepare_debug_exit(vcpu);
2722 rc = 0;
2723 }
2724
Christian Borntraeger8f2abe62008-03-25 18:47:23 +01002725 if (rc == -EREMOTE) {
David Hildenbrand71f116b2015-10-19 16:24:28 +02002726 /* userspace support is needed, kvm_run has been prepared */
Christian Borntraeger8f2abe62008-03-25 18:47:23 +01002727 rc = 0;
2728 }
Heiko Carstensb0c632d2008-03-25 18:47:20 +01002729
David Hildenbranddb0758b2016-02-15 09:42:25 +01002730 disable_cpu_timer_accounting(vcpu);
David Hildenbrandb028ee32014-07-17 10:47:43 +02002731 store_regs(vcpu, kvm_run);
Carsten Otted7b0b5e2009-11-19 14:21:16 +01002732
Heiko Carstensb0c632d2008-03-25 18:47:20 +01002733 if (vcpu->sigset_active)
2734 sigprocmask(SIG_SETMASK, &sigsaved, NULL);
2735
Heiko Carstensb0c632d2008-03-25 18:47:20 +01002736 vcpu->stat.exit_userspace++;
Heiko Carstens7e8e6ab2008-04-04 15:12:35 +02002737 return rc;
Heiko Carstensb0c632d2008-03-25 18:47:20 +01002738}
2739
Heiko Carstensb0c632d2008-03-25 18:47:20 +01002740/*
2741 * store status at address
2742 * we use have two special cases:
2743 * KVM_S390_STORE_STATUS_NOADDR: -> 0x1200 on 64 bit
2744 * KVM_S390_STORE_STATUS_PREFIXED: -> prefix
2745 */
Heiko Carstensd0bce602014-01-01 16:45:58 +01002746int kvm_s390_store_status_unloaded(struct kvm_vcpu *vcpu, unsigned long gpa)
Heiko Carstensb0c632d2008-03-25 18:47:20 +01002747{
Carsten Otte092670c2011-07-24 10:48:22 +02002748 unsigned char archmode = 1;
David Hildenbrand9abc2a02016-01-14 22:12:47 +01002749 freg_t fprs[NUM_FPRS];
Michael Muellerfda902c2014-05-13 16:58:30 +02002750 unsigned int px;
David Hildenbrand4287f242016-02-15 09:40:12 +01002751 u64 clkcomp, cputm;
Heiko Carstensd0bce602014-01-01 16:45:58 +01002752 int rc;
Heiko Carstensb0c632d2008-03-25 18:47:20 +01002753
Martin Schwidefskyd9a3a092015-10-23 09:02:32 +02002754 px = kvm_s390_get_prefix(vcpu);
Heiko Carstensd0bce602014-01-01 16:45:58 +01002755 if (gpa == KVM_S390_STORE_STATUS_NOADDR) {
2756 if (write_guest_abs(vcpu, 163, &archmode, 1))
Heiko Carstensb0c632d2008-03-25 18:47:20 +01002757 return -EFAULT;
Martin Schwidefskyd9a3a092015-10-23 09:02:32 +02002758 gpa = 0;
Heiko Carstensd0bce602014-01-01 16:45:58 +01002759 } else if (gpa == KVM_S390_STORE_STATUS_PREFIXED) {
2760 if (write_guest_real(vcpu, 163, &archmode, 1))
Heiko Carstensb0c632d2008-03-25 18:47:20 +01002761 return -EFAULT;
Martin Schwidefskyd9a3a092015-10-23 09:02:32 +02002762 gpa = px;
2763 } else
2764 gpa -= __LC_FPREGS_SAVE_AREA;
David Hildenbrand9abc2a02016-01-14 22:12:47 +01002765
2766 /* manually convert vector registers if necessary */
2767 if (MACHINE_HAS_VX) {
David Hildenbrand9522b372016-03-08 12:24:30 +01002768 convert_vx_to_fp(fprs, (__vector128 *) vcpu->run->s.regs.vrs);
David Hildenbrand9abc2a02016-01-14 22:12:47 +01002769 rc = write_guest_abs(vcpu, gpa + __LC_FPREGS_SAVE_AREA,
2770 fprs, 128);
2771 } else {
2772 rc = write_guest_abs(vcpu, gpa + __LC_FPREGS_SAVE_AREA,
David Hildenbrand6fd8e672016-01-18 14:46:34 +01002773 vcpu->run->s.regs.fprs, 128);
David Hildenbrand9abc2a02016-01-14 22:12:47 +01002774 }
Martin Schwidefskyd9a3a092015-10-23 09:02:32 +02002775 rc |= write_guest_abs(vcpu, gpa + __LC_GPREGS_SAVE_AREA,
Heiko Carstensd0bce602014-01-01 16:45:58 +01002776 vcpu->run->s.regs.gprs, 128);
Martin Schwidefskyd9a3a092015-10-23 09:02:32 +02002777 rc |= write_guest_abs(vcpu, gpa + __LC_PSW_SAVE_AREA,
Heiko Carstensd0bce602014-01-01 16:45:58 +01002778 &vcpu->arch.sie_block->gpsw, 16);
Martin Schwidefskyd9a3a092015-10-23 09:02:32 +02002779 rc |= write_guest_abs(vcpu, gpa + __LC_PREFIX_SAVE_AREA,
Michael Muellerfda902c2014-05-13 16:58:30 +02002780 &px, 4);
Martin Schwidefskyd9a3a092015-10-23 09:02:32 +02002781 rc |= write_guest_abs(vcpu, gpa + __LC_FP_CREG_SAVE_AREA,
David Hildenbrand9abc2a02016-01-14 22:12:47 +01002782 &vcpu->run->s.regs.fpc, 4);
Martin Schwidefskyd9a3a092015-10-23 09:02:32 +02002783 rc |= write_guest_abs(vcpu, gpa + __LC_TOD_PROGREG_SAVE_AREA,
Heiko Carstensd0bce602014-01-01 16:45:58 +01002784 &vcpu->arch.sie_block->todpr, 4);
David Hildenbrand4287f242016-02-15 09:40:12 +01002785 cputm = kvm_s390_get_cpu_timer(vcpu);
Martin Schwidefskyd9a3a092015-10-23 09:02:32 +02002786 rc |= write_guest_abs(vcpu, gpa + __LC_CPU_TIMER_SAVE_AREA,
David Hildenbrand4287f242016-02-15 09:40:12 +01002787 &cputm, 8);
Thomas Huth178bd782013-11-13 20:28:18 +01002788 clkcomp = vcpu->arch.sie_block->ckc >> 8;
Martin Schwidefskyd9a3a092015-10-23 09:02:32 +02002789 rc |= write_guest_abs(vcpu, gpa + __LC_CLOCK_COMP_SAVE_AREA,
Heiko Carstensd0bce602014-01-01 16:45:58 +01002790 &clkcomp, 8);
Martin Schwidefskyd9a3a092015-10-23 09:02:32 +02002791 rc |= write_guest_abs(vcpu, gpa + __LC_AREGS_SAVE_AREA,
Heiko Carstensd0bce602014-01-01 16:45:58 +01002792 &vcpu->run->s.regs.acrs, 64);
Martin Schwidefskyd9a3a092015-10-23 09:02:32 +02002793 rc |= write_guest_abs(vcpu, gpa + __LC_CREGS_SAVE_AREA,
Heiko Carstensd0bce602014-01-01 16:45:58 +01002794 &vcpu->arch.sie_block->gcr, 128);
2795 return rc ? -EFAULT : 0;
Heiko Carstensb0c632d2008-03-25 18:47:20 +01002796}
2797
Thomas Huthe8798922013-11-06 15:46:33 +01002798int kvm_s390_vcpu_store_status(struct kvm_vcpu *vcpu, unsigned long addr)
2799{
2800 /*
2801 * The guest FPRS and ACRS are in the host FPRS/ACRS due to the lazy
2802 * copying in vcpu load/put. Lets update our copies before we save
2803 * it into the save area
2804 */
Hendrik Bruecknerd0164ee2015-06-29 16:43:06 +02002805 save_fpu_regs();
David Hildenbrand9abc2a02016-01-14 22:12:47 +01002806 vcpu->run->s.regs.fpc = current->thread.fpu.fpc;
Thomas Huthe8798922013-11-06 15:46:33 +01002807 save_access_regs(vcpu->run->s.regs.acrs);
2808
2809 return kvm_s390_store_status_unloaded(vcpu, addr);
2810}
2811
Eric Farmanbc17de72014-04-14 16:01:09 -04002812/*
2813 * store additional status at address
2814 */
2815int kvm_s390_store_adtl_status_unloaded(struct kvm_vcpu *vcpu,
2816 unsigned long gpa)
2817{
2818 /* Only bits 0-53 are used for address formation */
2819 if (!(gpa & ~0x3ff))
2820 return 0;
2821
2822 return write_guest_abs(vcpu, gpa & ~0x3ff,
2823 (void *)&vcpu->run->s.regs.vrs, 512);
2824}
2825
2826int kvm_s390_vcpu_store_adtl_status(struct kvm_vcpu *vcpu, unsigned long addr)
2827{
2828 if (!test_kvm_facility(vcpu->kvm, 129))
2829 return 0;
2830
2831 /*
2832 * The guest VXRS are in the host VXRs due to the lazy
Hendrik Brueckner9977e882015-06-10 12:53:42 +02002833 * copying in vcpu load/put. We can simply call save_fpu_regs()
2834 * to save the current register state because we are in the
2835 * middle of a load/put cycle.
2836 *
2837 * Let's update our copies before we save it into the save area.
Eric Farmanbc17de72014-04-14 16:01:09 -04002838 */
Hendrik Bruecknerd0164ee2015-06-29 16:43:06 +02002839 save_fpu_regs();
Eric Farmanbc17de72014-04-14 16:01:09 -04002840
2841 return kvm_s390_store_adtl_status_unloaded(vcpu, addr);
2842}
2843
David Hildenbrand8ad35752014-03-14 11:00:21 +01002844static void __disable_ibs_on_vcpu(struct kvm_vcpu *vcpu)
2845{
2846 kvm_check_request(KVM_REQ_ENABLE_IBS, vcpu);
Christian Borntraeger8e236542015-04-09 13:49:04 +02002847 kvm_s390_sync_request(KVM_REQ_DISABLE_IBS, vcpu);
David Hildenbrand8ad35752014-03-14 11:00:21 +01002848}
2849
2850static void __disable_ibs_on_all_vcpus(struct kvm *kvm)
2851{
2852 unsigned int i;
2853 struct kvm_vcpu *vcpu;
2854
2855 kvm_for_each_vcpu(i, vcpu, kvm) {
2856 __disable_ibs_on_vcpu(vcpu);
2857 }
2858}
2859
2860static void __enable_ibs_on_vcpu(struct kvm_vcpu *vcpu)
2861{
David Hildenbrand09a400e2016-04-04 15:57:08 +02002862 if (!sclp.has_ibs)
2863 return;
David Hildenbrand8ad35752014-03-14 11:00:21 +01002864 kvm_check_request(KVM_REQ_DISABLE_IBS, vcpu);
Christian Borntraeger8e236542015-04-09 13:49:04 +02002865 kvm_s390_sync_request(KVM_REQ_ENABLE_IBS, vcpu);
David Hildenbrand8ad35752014-03-14 11:00:21 +01002866}
2867
David Hildenbrand6852d7b2014-03-14 10:59:29 +01002868void kvm_s390_vcpu_start(struct kvm_vcpu *vcpu)
2869{
David Hildenbrand8ad35752014-03-14 11:00:21 +01002870 int i, online_vcpus, started_vcpus = 0;
2871
2872 if (!is_vcpu_stopped(vcpu))
2873 return;
2874
David Hildenbrand6852d7b2014-03-14 10:59:29 +01002875 trace_kvm_s390_vcpu_start_stop(vcpu->vcpu_id, 1);
David Hildenbrand8ad35752014-03-14 11:00:21 +01002876 /* Only one cpu at a time may enter/leave the STOPPED state. */
David Hildenbrand433b9ee2014-05-06 16:11:14 +02002877 spin_lock(&vcpu->kvm->arch.start_stop_lock);
David Hildenbrand8ad35752014-03-14 11:00:21 +01002878 online_vcpus = atomic_read(&vcpu->kvm->online_vcpus);
2879
2880 for (i = 0; i < online_vcpus; i++) {
2881 if (!is_vcpu_stopped(vcpu->kvm->vcpus[i]))
2882 started_vcpus++;
2883 }
2884
2885 if (started_vcpus == 0) {
2886 /* we're the only active VCPU -> speed it up */
2887 __enable_ibs_on_vcpu(vcpu);
2888 } else if (started_vcpus == 1) {
2889 /*
2890 * As we are starting a second VCPU, we have to disable
2891 * the IBS facility on all VCPUs to remove potentially
2892 * oustanding ENABLE requests.
2893 */
2894 __disable_ibs_on_all_vcpus(vcpu->kvm);
2895 }
2896
Peter Zijlstra805de8f42015-04-24 01:12:32 +02002897 atomic_andnot(CPUSTAT_STOPPED, &vcpu->arch.sie_block->cpuflags);
David Hildenbrand8ad35752014-03-14 11:00:21 +01002898 /*
2899 * Another VCPU might have used IBS while we were offline.
2900 * Let's play safe and flush the VCPU at startup.
2901 */
David Hildenbrandd3d692c2014-07-29 08:53:36 +02002902 kvm_make_request(KVM_REQ_TLB_FLUSH, vcpu);
David Hildenbrand433b9ee2014-05-06 16:11:14 +02002903 spin_unlock(&vcpu->kvm->arch.start_stop_lock);
David Hildenbrand8ad35752014-03-14 11:00:21 +01002904 return;
David Hildenbrand6852d7b2014-03-14 10:59:29 +01002905}
2906
2907void kvm_s390_vcpu_stop(struct kvm_vcpu *vcpu)
2908{
David Hildenbrand8ad35752014-03-14 11:00:21 +01002909 int i, online_vcpus, started_vcpus = 0;
2910 struct kvm_vcpu *started_vcpu = NULL;
2911
2912 if (is_vcpu_stopped(vcpu))
2913 return;
2914
David Hildenbrand6852d7b2014-03-14 10:59:29 +01002915 trace_kvm_s390_vcpu_start_stop(vcpu->vcpu_id, 0);
David Hildenbrand8ad35752014-03-14 11:00:21 +01002916 /* Only one cpu at a time may enter/leave the STOPPED state. */
David Hildenbrand433b9ee2014-05-06 16:11:14 +02002917 spin_lock(&vcpu->kvm->arch.start_stop_lock);
David Hildenbrand8ad35752014-03-14 11:00:21 +01002918 online_vcpus = atomic_read(&vcpu->kvm->online_vcpus);
2919
David Hildenbrand32f5ff632014-04-14 12:40:03 +02002920 /* SIGP STOP and SIGP STOP AND STORE STATUS has been fully processed */
David Hildenbrand6cddd432014-10-15 16:48:53 +02002921 kvm_s390_clear_stop_irq(vcpu);
David Hildenbrand32f5ff632014-04-14 12:40:03 +02002922
Peter Zijlstra805de8f42015-04-24 01:12:32 +02002923 atomic_or(CPUSTAT_STOPPED, &vcpu->arch.sie_block->cpuflags);
David Hildenbrand8ad35752014-03-14 11:00:21 +01002924 __disable_ibs_on_vcpu(vcpu);
2925
2926 for (i = 0; i < online_vcpus; i++) {
2927 if (!is_vcpu_stopped(vcpu->kvm->vcpus[i])) {
2928 started_vcpus++;
2929 started_vcpu = vcpu->kvm->vcpus[i];
2930 }
2931 }
2932
2933 if (started_vcpus == 1) {
2934 /*
2935 * As we only have one VCPU left, we want to enable the
2936 * IBS facility for that VCPU to speed it up.
2937 */
2938 __enable_ibs_on_vcpu(started_vcpu);
2939 }
2940
David Hildenbrand433b9ee2014-05-06 16:11:14 +02002941 spin_unlock(&vcpu->kvm->arch.start_stop_lock);
David Hildenbrand8ad35752014-03-14 11:00:21 +01002942 return;
David Hildenbrand6852d7b2014-03-14 10:59:29 +01002943}
2944
Cornelia Huckd6712df2012-12-20 15:32:11 +01002945static int kvm_vcpu_ioctl_enable_cap(struct kvm_vcpu *vcpu,
2946 struct kvm_enable_cap *cap)
2947{
2948 int r;
2949
2950 if (cap->flags)
2951 return -EINVAL;
2952
2953 switch (cap->cap) {
Cornelia Huckfa6b7fe2012-12-20 15:32:12 +01002954 case KVM_CAP_S390_CSS_SUPPORT:
2955 if (!vcpu->kvm->arch.css_support) {
2956 vcpu->kvm->arch.css_support = 1;
Christian Borntraegerc92ea7b2015-07-22 15:52:10 +02002957 VM_EVENT(vcpu->kvm, 3, "%s", "ENABLE: CSS support");
Cornelia Huckfa6b7fe2012-12-20 15:32:12 +01002958 trace_kvm_s390_enable_css(vcpu->kvm);
2959 }
2960 r = 0;
2961 break;
Cornelia Huckd6712df2012-12-20 15:32:11 +01002962 default:
2963 r = -EINVAL;
2964 break;
2965 }
2966 return r;
2967}
2968
Thomas Huth41408c282015-02-06 15:01:21 +01002969static long kvm_s390_guest_mem_op(struct kvm_vcpu *vcpu,
2970 struct kvm_s390_mem_op *mop)
2971{
2972 void __user *uaddr = (void __user *)mop->buf;
2973 void *tmpbuf = NULL;
2974 int r, srcu_idx;
2975 const u64 supported_flags = KVM_S390_MEMOP_F_INJECT_EXCEPTION
2976 | KVM_S390_MEMOP_F_CHECK_ONLY;
2977
2978 if (mop->flags & ~supported_flags)
2979 return -EINVAL;
2980
2981 if (mop->size > MEM_OP_MAX_SIZE)
2982 return -E2BIG;
2983
2984 if (!(mop->flags & KVM_S390_MEMOP_F_CHECK_ONLY)) {
2985 tmpbuf = vmalloc(mop->size);
2986 if (!tmpbuf)
2987 return -ENOMEM;
2988 }
2989
2990 srcu_idx = srcu_read_lock(&vcpu->kvm->srcu);
2991
2992 switch (mop->op) {
2993 case KVM_S390_MEMOP_LOGICAL_READ:
2994 if (mop->flags & KVM_S390_MEMOP_F_CHECK_ONLY) {
David Hildenbrand92c96322015-11-16 15:42:11 +01002995 r = check_gva_range(vcpu, mop->gaddr, mop->ar,
2996 mop->size, GACC_FETCH);
Thomas Huth41408c282015-02-06 15:01:21 +01002997 break;
2998 }
2999 r = read_guest(vcpu, mop->gaddr, mop->ar, tmpbuf, mop->size);
3000 if (r == 0) {
3001 if (copy_to_user(uaddr, tmpbuf, mop->size))
3002 r = -EFAULT;
3003 }
3004 break;
3005 case KVM_S390_MEMOP_LOGICAL_WRITE:
3006 if (mop->flags & KVM_S390_MEMOP_F_CHECK_ONLY) {
David Hildenbrand92c96322015-11-16 15:42:11 +01003007 r = check_gva_range(vcpu, mop->gaddr, mop->ar,
3008 mop->size, GACC_STORE);
Thomas Huth41408c282015-02-06 15:01:21 +01003009 break;
3010 }
3011 if (copy_from_user(tmpbuf, uaddr, mop->size)) {
3012 r = -EFAULT;
3013 break;
3014 }
3015 r = write_guest(vcpu, mop->gaddr, mop->ar, tmpbuf, mop->size);
3016 break;
3017 default:
3018 r = -EINVAL;
3019 }
3020
3021 srcu_read_unlock(&vcpu->kvm->srcu, srcu_idx);
3022
3023 if (r > 0 && (mop->flags & KVM_S390_MEMOP_F_INJECT_EXCEPTION) != 0)
3024 kvm_s390_inject_prog_irq(vcpu, &vcpu->arch.pgm);
3025
3026 vfree(tmpbuf);
3027 return r;
3028}
3029
Heiko Carstensb0c632d2008-03-25 18:47:20 +01003030long kvm_arch_vcpu_ioctl(struct file *filp,
3031 unsigned int ioctl, unsigned long arg)
3032{
3033 struct kvm_vcpu *vcpu = filp->private_data;
3034 void __user *argp = (void __user *)arg;
Thomas Huth800c1062013-09-12 10:33:45 +02003035 int idx;
Avi Kivitybc923cc2010-05-13 12:21:46 +03003036 long r;
Heiko Carstensb0c632d2008-03-25 18:47:20 +01003037
Avi Kivity937366242010-05-13 12:35:17 +03003038 switch (ioctl) {
Jens Freimann47b43c52014-11-11 20:57:06 +01003039 case KVM_S390_IRQ: {
3040 struct kvm_s390_irq s390irq;
3041
3042 r = -EFAULT;
3043 if (copy_from_user(&s390irq, argp, sizeof(s390irq)))
3044 break;
3045 r = kvm_s390_inject_vcpu(vcpu, &s390irq);
3046 break;
3047 }
Avi Kivity937366242010-05-13 12:35:17 +03003048 case KVM_S390_INTERRUPT: {
Carsten Otteba5c1e92008-03-25 18:47:26 +01003049 struct kvm_s390_interrupt s390int;
Jens Freimann383d0b02014-07-29 15:11:49 +02003050 struct kvm_s390_irq s390irq;
Carsten Otteba5c1e92008-03-25 18:47:26 +01003051
Avi Kivity937366242010-05-13 12:35:17 +03003052 r = -EFAULT;
Carsten Otteba5c1e92008-03-25 18:47:26 +01003053 if (copy_from_user(&s390int, argp, sizeof(s390int)))
Avi Kivity937366242010-05-13 12:35:17 +03003054 break;
Jens Freimann383d0b02014-07-29 15:11:49 +02003055 if (s390int_to_s390irq(&s390int, &s390irq))
3056 return -EINVAL;
3057 r = kvm_s390_inject_vcpu(vcpu, &s390irq);
Avi Kivity937366242010-05-13 12:35:17 +03003058 break;
Carsten Otteba5c1e92008-03-25 18:47:26 +01003059 }
Heiko Carstensb0c632d2008-03-25 18:47:20 +01003060 case KVM_S390_STORE_STATUS:
Thomas Huth800c1062013-09-12 10:33:45 +02003061 idx = srcu_read_lock(&vcpu->kvm->srcu);
Avi Kivitybc923cc2010-05-13 12:21:46 +03003062 r = kvm_s390_vcpu_store_status(vcpu, arg);
Thomas Huth800c1062013-09-12 10:33:45 +02003063 srcu_read_unlock(&vcpu->kvm->srcu, idx);
Avi Kivitybc923cc2010-05-13 12:21:46 +03003064 break;
Heiko Carstensb0c632d2008-03-25 18:47:20 +01003065 case KVM_S390_SET_INITIAL_PSW: {
3066 psw_t psw;
3067
Avi Kivitybc923cc2010-05-13 12:21:46 +03003068 r = -EFAULT;
Heiko Carstensb0c632d2008-03-25 18:47:20 +01003069 if (copy_from_user(&psw, argp, sizeof(psw)))
Avi Kivitybc923cc2010-05-13 12:21:46 +03003070 break;
3071 r = kvm_arch_vcpu_ioctl_set_initial_psw(vcpu, psw);
3072 break;
Heiko Carstensb0c632d2008-03-25 18:47:20 +01003073 }
3074 case KVM_S390_INITIAL_RESET:
Avi Kivitybc923cc2010-05-13 12:21:46 +03003075 r = kvm_arch_vcpu_ioctl_initial_reset(vcpu);
3076 break;
Carsten Otte14eebd92012-05-15 14:15:26 +02003077 case KVM_SET_ONE_REG:
3078 case KVM_GET_ONE_REG: {
3079 struct kvm_one_reg reg;
3080 r = -EFAULT;
3081 if (copy_from_user(&reg, argp, sizeof(reg)))
3082 break;
3083 if (ioctl == KVM_SET_ONE_REG)
3084 r = kvm_arch_vcpu_ioctl_set_one_reg(vcpu, &reg);
3085 else
3086 r = kvm_arch_vcpu_ioctl_get_one_reg(vcpu, &reg);
3087 break;
3088 }
Carsten Otte27e03932012-01-04 10:25:21 +01003089#ifdef CONFIG_KVM_S390_UCONTROL
3090 case KVM_S390_UCAS_MAP: {
3091 struct kvm_s390_ucas_mapping ucasmap;
3092
3093 if (copy_from_user(&ucasmap, argp, sizeof(ucasmap))) {
3094 r = -EFAULT;
3095 break;
3096 }
3097
3098 if (!kvm_is_ucontrol(vcpu->kvm)) {
3099 r = -EINVAL;
3100 break;
3101 }
3102
3103 r = gmap_map_segment(vcpu->arch.gmap, ucasmap.user_addr,
3104 ucasmap.vcpu_addr, ucasmap.length);
3105 break;
3106 }
3107 case KVM_S390_UCAS_UNMAP: {
3108 struct kvm_s390_ucas_mapping ucasmap;
3109
3110 if (copy_from_user(&ucasmap, argp, sizeof(ucasmap))) {
3111 r = -EFAULT;
3112 break;
3113 }
3114
3115 if (!kvm_is_ucontrol(vcpu->kvm)) {
3116 r = -EINVAL;
3117 break;
3118 }
3119
3120 r = gmap_unmap_segment(vcpu->arch.gmap, ucasmap.vcpu_addr,
3121 ucasmap.length);
3122 break;
3123 }
3124#endif
Carsten Otteccc79102012-01-04 10:25:26 +01003125 case KVM_S390_VCPU_FAULT: {
Martin Schwidefsky527e30b2014-04-30 16:04:25 +02003126 r = gmap_fault(vcpu->arch.gmap, arg, 0);
Carsten Otteccc79102012-01-04 10:25:26 +01003127 break;
3128 }
Cornelia Huckd6712df2012-12-20 15:32:11 +01003129 case KVM_ENABLE_CAP:
3130 {
3131 struct kvm_enable_cap cap;
3132 r = -EFAULT;
3133 if (copy_from_user(&cap, argp, sizeof(cap)))
3134 break;
3135 r = kvm_vcpu_ioctl_enable_cap(vcpu, &cap);
3136 break;
3137 }
Thomas Huth41408c282015-02-06 15:01:21 +01003138 case KVM_S390_MEM_OP: {
3139 struct kvm_s390_mem_op mem_op;
3140
3141 if (copy_from_user(&mem_op, argp, sizeof(mem_op)) == 0)
3142 r = kvm_s390_guest_mem_op(vcpu, &mem_op);
3143 else
3144 r = -EFAULT;
3145 break;
3146 }
Jens Freimann816c7662014-11-24 17:13:46 +01003147 case KVM_S390_SET_IRQ_STATE: {
3148 struct kvm_s390_irq_state irq_state;
3149
3150 r = -EFAULT;
3151 if (copy_from_user(&irq_state, argp, sizeof(irq_state)))
3152 break;
3153 if (irq_state.len > VCPU_IRQS_MAX_BUF ||
3154 irq_state.len == 0 ||
3155 irq_state.len % sizeof(struct kvm_s390_irq) > 0) {
3156 r = -EINVAL;
3157 break;
3158 }
3159 r = kvm_s390_set_irq_state(vcpu,
3160 (void __user *) irq_state.buf,
3161 irq_state.len);
3162 break;
3163 }
3164 case KVM_S390_GET_IRQ_STATE: {
3165 struct kvm_s390_irq_state irq_state;
3166
3167 r = -EFAULT;
3168 if (copy_from_user(&irq_state, argp, sizeof(irq_state)))
3169 break;
3170 if (irq_state.len == 0) {
3171 r = -EINVAL;
3172 break;
3173 }
3174 r = kvm_s390_get_irq_state(vcpu,
3175 (__u8 __user *) irq_state.buf,
3176 irq_state.len);
3177 break;
3178 }
Heiko Carstensb0c632d2008-03-25 18:47:20 +01003179 default:
Carsten Otte3e6afcf2012-01-04 10:25:30 +01003180 r = -ENOTTY;
Heiko Carstensb0c632d2008-03-25 18:47:20 +01003181 }
Avi Kivitybc923cc2010-05-13 12:21:46 +03003182 return r;
Heiko Carstensb0c632d2008-03-25 18:47:20 +01003183}
3184
Carsten Otte5b1c1492012-01-04 10:25:23 +01003185int kvm_arch_vcpu_fault(struct kvm_vcpu *vcpu, struct vm_fault *vmf)
3186{
3187#ifdef CONFIG_KVM_S390_UCONTROL
3188 if ((vmf->pgoff == KVM_S390_SIE_PAGE_OFFSET)
3189 && (kvm_is_ucontrol(vcpu->kvm))) {
3190 vmf->page = virt_to_page(vcpu->arch.sie_block);
3191 get_page(vmf->page);
3192 return 0;
3193 }
3194#endif
3195 return VM_FAULT_SIGBUS;
3196}
3197
Aneesh Kumar K.V55870272013-10-07 22:18:00 +05303198int kvm_arch_create_memslot(struct kvm *kvm, struct kvm_memory_slot *slot,
3199 unsigned long npages)
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +09003200{
3201 return 0;
3202}
3203
Heiko Carstensb0c632d2008-03-25 18:47:20 +01003204/* Section: memory related */
Marcelo Tosattif7784b82009-12-23 14:35:18 -02003205int kvm_arch_prepare_memory_region(struct kvm *kvm,
3206 struct kvm_memory_slot *memslot,
Paolo Bonzini09170a42015-05-18 13:59:39 +02003207 const struct kvm_userspace_memory_region *mem,
Takuya Yoshikawa7b6195a2013-02-27 19:44:34 +09003208 enum kvm_mr_change change)
Heiko Carstensb0c632d2008-03-25 18:47:20 +01003209{
Nick Wangdd2887e2013-03-25 17:22:57 +01003210 /* A few sanity checks. We can have memory slots which have to be
3211 located/ended at a segment boundary (1MB). The memory in userland is
3212 ok to be fragmented into various different vmas. It is okay to mmap()
3213 and munmap() stuff in this slot after doing this call at any time */
Heiko Carstensb0c632d2008-03-25 18:47:20 +01003214
Carsten Otte598841c2011-07-24 10:48:21 +02003215 if (mem->userspace_addr & 0xffffful)
Heiko Carstensb0c632d2008-03-25 18:47:20 +01003216 return -EINVAL;
3217
Carsten Otte598841c2011-07-24 10:48:21 +02003218 if (mem->memory_size & 0xffffful)
Heiko Carstensb0c632d2008-03-25 18:47:20 +01003219 return -EINVAL;
3220
Dominik Dingela3a92c32014-12-01 17:24:42 +01003221 if (mem->guest_phys_addr + mem->memory_size > kvm->arch.mem_limit)
3222 return -EINVAL;
3223
Marcelo Tosattif7784b82009-12-23 14:35:18 -02003224 return 0;
3225}
3226
3227void kvm_arch_commit_memory_region(struct kvm *kvm,
Paolo Bonzini09170a42015-05-18 13:59:39 +02003228 const struct kvm_userspace_memory_region *mem,
Takuya Yoshikawa84826442013-02-27 19:45:25 +09003229 const struct kvm_memory_slot *old,
Paolo Bonzinif36f3f22015-05-18 13:20:23 +02003230 const struct kvm_memory_slot *new,
Takuya Yoshikawa84826442013-02-27 19:45:25 +09003231 enum kvm_mr_change change)
Marcelo Tosattif7784b82009-12-23 14:35:18 -02003232{
Carsten Ottef7850c92011-07-24 10:48:23 +02003233 int rc;
Marcelo Tosattif7784b82009-12-23 14:35:18 -02003234
Christian Borntraeger2cef4de2013-03-25 17:22:48 +01003235 /* If the basics of the memslot do not change, we do not want
3236 * to update the gmap. Every update causes several unnecessary
3237 * segment translation exceptions. This is usually handled just
3238 * fine by the normal fault handler + gmap, but it will also
3239 * cause faults on the prefix page of running guest CPUs.
3240 */
3241 if (old->userspace_addr == mem->userspace_addr &&
3242 old->base_gfn * PAGE_SIZE == mem->guest_phys_addr &&
3243 old->npages * PAGE_SIZE == mem->memory_size)
3244 return;
Carsten Otte598841c2011-07-24 10:48:21 +02003245
3246 rc = gmap_map_segment(kvm->arch.gmap, mem->userspace_addr,
3247 mem->guest_phys_addr, mem->memory_size);
3248 if (rc)
David Hildenbrandea2cdd22015-05-20 13:24:02 +02003249 pr_warn("failed to commit memory region\n");
Carsten Otte598841c2011-07-24 10:48:21 +02003250 return;
Heiko Carstensb0c632d2008-03-25 18:47:20 +01003251}
3252
Alexander Yarygin60a37702016-04-01 15:38:57 +03003253static inline unsigned long nonhyp_mask(int i)
3254{
3255 unsigned int nonhyp_fai = (sclp.hmfai << i * 2) >> 30;
3256
3257 return 0x0000ffffffffffffUL >> (nonhyp_fai << 4);
3258}
3259
Christian Borntraeger3491caf2016-05-13 12:16:35 +02003260void kvm_arch_vcpu_block_finish(struct kvm_vcpu *vcpu)
3261{
3262 vcpu->valid_wakeup = false;
3263}
3264
Heiko Carstensb0c632d2008-03-25 18:47:20 +01003265static int __init kvm_s390_init(void)
3266{
Alexander Yarygin60a37702016-04-01 15:38:57 +03003267 int i;
3268
David Hildenbrand07197fd2015-01-30 16:01:38 +01003269 if (!sclp.has_sief2) {
3270 pr_info("SIE not available\n");
3271 return -ENODEV;
3272 }
3273
Alexander Yarygin60a37702016-04-01 15:38:57 +03003274 for (i = 0; i < 16; i++)
3275 kvm_s390_fac_list_mask[i] |=
3276 S390_lowcore.stfle_fac_list[i] & nonhyp_mask(i);
3277
Michael Mueller9d8d5782015-02-02 15:42:51 +01003278 return kvm_init(NULL, sizeof(struct kvm_vcpu), 0, THIS_MODULE);
Heiko Carstensb0c632d2008-03-25 18:47:20 +01003279}
3280
3281static void __exit kvm_s390_exit(void)
3282{
Heiko Carstensb0c632d2008-03-25 18:47:20 +01003283 kvm_exit();
3284}
3285
3286module_init(kvm_s390_init);
3287module_exit(kvm_s390_exit);
Cornelia Huck566af942013-05-27 18:42:33 +02003288
3289/*
3290 * Enable autoloading of the kvm module.
3291 * Note that we add the module alias here instead of virt/kvm/kvm_main.c
3292 * since x86 takes a different approach.
3293 */
3294#include <linux/miscdevice.h>
3295MODULE_ALIAS_MISCDEV(KVM_MINOR);
3296MODULE_ALIAS("devname:kvm");