blob: 3eb97c4212cf6b96ca50e6093868cd626633efcc [file] [log] [blame]
Greg Kroah-Hartmand809aa22017-11-24 15:00:33 +01001// SPDX-License-Identifier: GPL-2.0
Heiko Carstensb0c632d2008-03-25 18:47:20 +01002/*
Christian Borntraegerbb64da92017-11-21 16:02:52 +01003 * hosting IBM Z kernel virtual machines (s390x)
Heiko Carstensb0c632d2008-03-25 18:47:20 +01004 *
Christian Borntraegera37cb072018-01-23 13:28:40 +01005 * Copyright IBM Corp. 2008, 2018
Heiko Carstensb0c632d2008-03-25 18:47:20 +01006 *
7 * Author(s): Carsten Otte <cotte@de.ibm.com>
8 * Christian Borntraeger <borntraeger@de.ibm.com>
9 * Heiko Carstens <heiko.carstens@de.ibm.com>
Christian Ehrhardt628eb9b2009-05-25 13:40:51 +020010 * Christian Ehrhardt <ehrhardt@de.ibm.com>
Jason J. Herne15f36eb2012-08-02 10:10:17 -040011 * Jason J. Herne <jjherne@us.ibm.com>
Heiko Carstensb0c632d2008-03-25 18:47:20 +010012 */
13
14#include <linux/compiler.h>
15#include <linux/err.h>
16#include <linux/fs.h>
Christian Borntraegerca872302009-05-12 17:21:49 +020017#include <linux/hrtimer.h>
Heiko Carstensb0c632d2008-03-25 18:47:20 +010018#include <linux/init.h>
19#include <linux/kvm.h>
20#include <linux/kvm_host.h>
Martin Schwidefskyb2d73b22016-03-08 11:54:42 +010021#include <linux/mman.h>
Heiko Carstensb0c632d2008-03-25 18:47:20 +010022#include <linux/module.h>
Paul Gortmakerd3217962017-02-09 15:20:25 -050023#include <linux/moduleparam.h>
Tony Krowiaka374e892014-09-03 10:13:53 +020024#include <linux/random.h>
Heiko Carstensb0c632d2008-03-25 18:47:20 +010025#include <linux/slab.h>
Carsten Otteba5c1e92008-03-25 18:47:26 +010026#include <linux/timer.h>
Thomas Huth41408c282015-02-06 15:01:21 +010027#include <linux/vmalloc.h>
David Hildenbrand15c97052015-03-19 17:36:43 +010028#include <linux/bitmap.h>
Ingo Molnar174cd4b2017-02-02 19:15:33 +010029#include <linux/sched/signal.h>
Claudio Imbrenda190df4a2016-08-04 17:54:42 +020030#include <linux/string.h>
Ingo Molnar174cd4b2017-02-02 19:15:33 +010031
Heiko Carstenscbb870c2010-02-26 22:37:43 +010032#include <asm/asm-offsets.h>
Heiko Carstensb0c632d2008-03-25 18:47:20 +010033#include <asm/lowcore.h>
Martin Schwidefskyfd5ada02016-05-31 15:06:51 +020034#include <asm/stp.h>
Heiko Carstensb0c632d2008-03-25 18:47:20 +010035#include <asm/pgtable.h>
Martin Schwidefsky1e133ab2016-03-08 11:49:57 +010036#include <asm/gmap.h>
Heiko Carstensf5daba12009-03-26 15:24:01 +010037#include <asm/nmi.h>
David Howellsa0616cd2012-03-28 18:30:02 +010038#include <asm/switch_to.h>
Jens Freimann6d3da242013-07-03 15:18:35 +020039#include <asm/isc.h>
Christian Borntraeger1526bf92012-05-15 14:15:25 +020040#include <asm/sclp.h>
David Hildenbrand0a763c72016-05-18 16:03:47 +020041#include <asm/cpacf.h>
Linus Torvalds221bb8a2016-08-02 16:11:27 -040042#include <asm/timex.h>
Christian Borntraeger8f2abe62008-03-25 18:47:23 +010043#include "kvm-s390.h"
Heiko Carstensb0c632d2008-03-25 18:47:20 +010044#include "gaccess.h"
45
David Hildenbrandea2cdd22015-05-20 13:24:02 +020046#define KMSG_COMPONENT "kvm-s390"
47#undef pr_fmt
48#define pr_fmt(fmt) KMSG_COMPONENT ": " fmt
49
Cornelia Huck5786fff2012-07-23 17:20:29 +020050#define CREATE_TRACE_POINTS
51#include "trace.h"
Cornelia Huckade38c32012-07-23 17:20:30 +020052#include "trace-s390.h"
Cornelia Huck5786fff2012-07-23 17:20:29 +020053
Thomas Huth41408c282015-02-06 15:01:21 +010054#define MEM_OP_MAX_SIZE 65536 /* Maximum transfer size for KVM_S390_MEM_OP */
Jens Freimann816c7662014-11-24 17:13:46 +010055#define LOCAL_IRQS 32
56#define VCPU_IRQS_MAX_BUF (sizeof(struct kvm_s390_irq) * \
57 (KVM_MAX_VCPUS + LOCAL_IRQS))
Thomas Huth41408c282015-02-06 15:01:21 +010058
Heiko Carstensb0c632d2008-03-25 18:47:20 +010059#define VCPU_STAT(x) offsetof(struct kvm_vcpu, stat.x), KVM_STAT_VCPU
60
61struct kvm_stats_debugfs_item debugfs_entries[] = {
62 { "userspace_handled", VCPU_STAT(exit_userspace) },
Christian Borntraeger0eaeafa2008-05-07 09:22:53 +020063 { "exit_null", VCPU_STAT(exit_null) },
Christian Borntraeger8f2abe62008-03-25 18:47:23 +010064 { "exit_validity", VCPU_STAT(exit_validity) },
65 { "exit_stop_request", VCPU_STAT(exit_stop_request) },
66 { "exit_external_request", VCPU_STAT(exit_external_request) },
67 { "exit_external_interrupt", VCPU_STAT(exit_external_interrupt) },
Carsten Otteba5c1e92008-03-25 18:47:26 +010068 { "exit_instruction", VCPU_STAT(exit_instruction) },
Alexander Yarygin9ec6de12016-05-06 16:33:06 +030069 { "exit_pei", VCPU_STAT(exit_pei) },
Carsten Otteba5c1e92008-03-25 18:47:26 +010070 { "exit_program_interruption", VCPU_STAT(exit_program_interruption) },
71 { "exit_instr_and_program_int", VCPU_STAT(exit_instr_and_program) },
Janosch Franka011eeb2016-05-09 14:14:01 +020072 { "exit_operation_exception", VCPU_STAT(exit_operation_exception) },
Paolo Bonzinif7819512015-02-04 18:20:58 +010073 { "halt_successful_poll", VCPU_STAT(halt_successful_poll) },
Paolo Bonzini62bea5b2015-09-15 18:27:57 +020074 { "halt_attempted_poll", VCPU_STAT(halt_attempted_poll) },
Christian Borntraeger3491caf2016-05-13 12:16:35 +020075 { "halt_poll_invalid", VCPU_STAT(halt_poll_invalid) },
David Hildenbrandce2e4f02014-07-11 10:00:43 +020076 { "halt_wakeup", VCPU_STAT(halt_wakeup) },
Christian Borntraegerf5e10b02008-07-25 15:52:44 +020077 { "instruction_lctlg", VCPU_STAT(instruction_lctlg) },
Carsten Otteba5c1e92008-03-25 18:47:26 +010078 { "instruction_lctl", VCPU_STAT(instruction_lctl) },
David Hildenbrandaba07502014-01-23 10:47:13 +010079 { "instruction_stctl", VCPU_STAT(instruction_stctl) },
80 { "instruction_stctg", VCPU_STAT(instruction_stctg) },
Carsten Otteba5c1e92008-03-25 18:47:26 +010081 { "deliver_emergency_signal", VCPU_STAT(deliver_emergency_signal) },
Christian Ehrhardt7697e71f2011-10-18 12:27:15 +020082 { "deliver_external_call", VCPU_STAT(deliver_external_call) },
Carsten Otteba5c1e92008-03-25 18:47:26 +010083 { "deliver_service_signal", VCPU_STAT(deliver_service_signal) },
84 { "deliver_virtio_interrupt", VCPU_STAT(deliver_virtio_interrupt) },
85 { "deliver_stop_signal", VCPU_STAT(deliver_stop_signal) },
86 { "deliver_prefix_signal", VCPU_STAT(deliver_prefix_signal) },
87 { "deliver_restart_signal", VCPU_STAT(deliver_restart_signal) },
88 { "deliver_program_interruption", VCPU_STAT(deliver_program_int) },
89 { "exit_wait_state", VCPU_STAT(exit_wait_state) },
Christian Borntraegera37cb072018-01-23 13:28:40 +010090 { "instruction_epsw", VCPU_STAT(instruction_epsw) },
91 { "instruction_gs", VCPU_STAT(instruction_gs) },
92 { "instruction_io_other", VCPU_STAT(instruction_io_other) },
93 { "instruction_lpsw", VCPU_STAT(instruction_lpsw) },
94 { "instruction_lpswe", VCPU_STAT(instruction_lpswe) },
Christian Borntraeger69d0d3a2013-06-12 13:54:53 +020095 { "instruction_pfmf", VCPU_STAT(instruction_pfmf) },
Christian Borntraegera37cb072018-01-23 13:28:40 +010096 { "instruction_ptff", VCPU_STAT(instruction_ptff) },
Christian Borntraeger453423d2008-03-25 18:47:29 +010097 { "instruction_stidp", VCPU_STAT(instruction_stidp) },
Christian Borntraegera37cb072018-01-23 13:28:40 +010098 { "instruction_sck", VCPU_STAT(instruction_sck) },
99 { "instruction_sckpf", VCPU_STAT(instruction_sckpf) },
Christian Borntraeger453423d2008-03-25 18:47:29 +0100100 { "instruction_spx", VCPU_STAT(instruction_spx) },
101 { "instruction_stpx", VCPU_STAT(instruction_stpx) },
102 { "instruction_stap", VCPU_STAT(instruction_stap) },
Christian Borntraegera37cb072018-01-23 13:28:40 +0100103 { "instruction_iske", VCPU_STAT(instruction_iske) },
104 { "instruction_ri", VCPU_STAT(instruction_ri) },
105 { "instruction_rrbe", VCPU_STAT(instruction_rrbe) },
106 { "instruction_sske", VCPU_STAT(instruction_sske) },
Heiko Carstens8a2422342014-01-10 14:33:28 +0100107 { "instruction_ipte_interlock", VCPU_STAT(instruction_ipte_interlock) },
Konstantin Weitzb31288f2013-04-17 17:36:29 +0200108 { "instruction_essa", VCPU_STAT(instruction_essa) },
Christian Borntraeger453423d2008-03-25 18:47:29 +0100109 { "instruction_stsi", VCPU_STAT(instruction_stsi) },
110 { "instruction_stfl", VCPU_STAT(instruction_stfl) },
Christian Borntraegera37cb072018-01-23 13:28:40 +0100111 { "instruction_tb", VCPU_STAT(instruction_tb) },
112 { "instruction_tpi", VCPU_STAT(instruction_tpi) },
Christian Borntraegerbb25b9b2011-07-24 10:48:17 +0200113 { "instruction_tprot", VCPU_STAT(instruction_tprot) },
Christian Borntraegera37cb072018-01-23 13:28:40 +0100114 { "instruction_tsch", VCPU_STAT(instruction_tsch) },
Janosch Frank95ca2cb2016-05-23 15:11:58 +0200115 { "instruction_sthyi", VCPU_STAT(instruction_sthyi) },
David Hildenbranda3508fb2015-07-08 13:19:48 +0200116 { "instruction_sie", VCPU_STAT(instruction_sie) },
Christian Borntraeger5288fbf2008-03-25 18:47:31 +0100117 { "instruction_sigp_sense", VCPU_STAT(instruction_sigp_sense) },
Cornelia Huckbd59d3a2011-11-17 11:00:42 +0100118 { "instruction_sigp_sense_running", VCPU_STAT(instruction_sigp_sense_running) },
Christian Ehrhardt7697e71f2011-10-18 12:27:15 +0200119 { "instruction_sigp_external_call", VCPU_STAT(instruction_sigp_external_call) },
Christian Borntraeger5288fbf2008-03-25 18:47:31 +0100120 { "instruction_sigp_emergency", VCPU_STAT(instruction_sigp_emergency) },
David Hildenbrand42cb0c92014-05-23 12:25:11 +0200121 { "instruction_sigp_cond_emergency", VCPU_STAT(instruction_sigp_cond_emergency) },
122 { "instruction_sigp_start", VCPU_STAT(instruction_sigp_start) },
Christian Borntraeger5288fbf2008-03-25 18:47:31 +0100123 { "instruction_sigp_stop", VCPU_STAT(instruction_sigp_stop) },
David Hildenbrand42cb0c92014-05-23 12:25:11 +0200124 { "instruction_sigp_stop_store_status", VCPU_STAT(instruction_sigp_stop_store_status) },
125 { "instruction_sigp_store_status", VCPU_STAT(instruction_sigp_store_status) },
Eric Farmancd7b4b62015-02-12 09:06:34 -0500126 { "instruction_sigp_store_adtl_status", VCPU_STAT(instruction_sigp_store_adtl_status) },
Christian Borntraeger5288fbf2008-03-25 18:47:31 +0100127 { "instruction_sigp_set_arch", VCPU_STAT(instruction_sigp_arch) },
128 { "instruction_sigp_set_prefix", VCPU_STAT(instruction_sigp_prefix) },
129 { "instruction_sigp_restart", VCPU_STAT(instruction_sigp_restart) },
David Hildenbrand42cb0c92014-05-23 12:25:11 +0200130 { "instruction_sigp_cpu_reset", VCPU_STAT(instruction_sigp_cpu_reset) },
131 { "instruction_sigp_init_cpu_reset", VCPU_STAT(instruction_sigp_init_cpu_reset) },
132 { "instruction_sigp_unknown", VCPU_STAT(instruction_sigp_unknown) },
Christian Borntraeger866c1382018-01-24 12:27:01 +0100133 { "instruction_diag_10", VCPU_STAT(diagnose_10) },
134 { "instruction_diag_44", VCPU_STAT(diagnose_44) },
135 { "instruction_diag_9c", VCPU_STAT(diagnose_9c) },
136 { "instruction_diag_258", VCPU_STAT(diagnose_258) },
137 { "instruction_diag_308", VCPU_STAT(diagnose_308) },
138 { "instruction_diag_500", VCPU_STAT(diagnose_500) },
Christian Borntraegera37cb072018-01-23 13:28:40 +0100139 { "instruction_diag_other", VCPU_STAT(diagnose_other) },
Heiko Carstensb0c632d2008-03-25 18:47:20 +0100140 { NULL }
141};
142
Collin L. Walling8fa16962016-07-26 15:29:44 -0400143struct kvm_s390_tod_clock_ext {
144 __u8 epoch_idx;
145 __u64 tod;
146 __u8 reserved[7];
147} __packed;
148
David Hildenbranda411edf2016-02-02 15:41:22 +0100149/* allow nested virtualization in KVM (if enabled by user space) */
150static int nested;
151module_param(nested, int, S_IRUGO);
152MODULE_PARM_DESC(nested, "Nested virtualization support");
153
Michael Mueller9d8d5782015-02-02 15:42:51 +0100154/* upper facilities limit for kvm */
Heiko Carstensf6c1d352016-08-16 10:31:10 +0200155unsigned long kvm_s390_fac_list_mask[16] = { FACILITIES_KVM };
Heiko Carstensb0c632d2008-03-25 18:47:20 +0100156
Michael Mueller9d8d5782015-02-02 15:42:51 +0100157unsigned long kvm_s390_fac_list_mask_size(void)
Michael Mueller78c4b592013-07-26 15:04:04 +0200158{
Michael Mueller9d8d5782015-02-02 15:42:51 +0100159 BUILD_BUG_ON(ARRAY_SIZE(kvm_s390_fac_list_mask) > S390_ARCH_FAC_MASK_SIZE_U64);
160 return ARRAY_SIZE(kvm_s390_fac_list_mask);
Michael Mueller78c4b592013-07-26 15:04:04 +0200161}
162
David Hildenbrand15c97052015-03-19 17:36:43 +0100163/* available cpu features supported by kvm */
164static DECLARE_BITMAP(kvm_s390_available_cpu_feat, KVM_S390_VM_CPU_FEAT_NR_BITS);
David Hildenbrand0a763c72016-05-18 16:03:47 +0200165/* available subfunctions indicated via query / "test bit" */
166static struct kvm_s390_vm_cpu_subfunc kvm_s390_available_subfunc;
David Hildenbrand15c97052015-03-19 17:36:43 +0100167
Michael Mueller9d8d5782015-02-02 15:42:51 +0100168static struct gmap_notifier gmap_notifier;
David Hildenbranda3508fb2015-07-08 13:19:48 +0200169static struct gmap_notifier vsie_gmap_notifier;
Christian Borntraeger78f26132015-07-22 15:50:58 +0200170debug_info_t *kvm_s390_dbf;
Michael Mueller9d8d5782015-02-02 15:42:51 +0100171
Heiko Carstensb0c632d2008-03-25 18:47:20 +0100172/* Section: not file related */
Radim Krčmář13a34e02014-08-28 15:13:03 +0200173int kvm_arch_hardware_enable(void)
Heiko Carstensb0c632d2008-03-25 18:47:20 +0100174{
175 /* every s390 is virtualization enabled ;-) */
Alexander Graf10474ae2009-09-15 11:37:46 +0200176 return 0;
Heiko Carstensb0c632d2008-03-25 18:47:20 +0100177}
178
Martin Schwidefsky414d3b02016-03-08 11:52:54 +0100179static void kvm_gmap_notifier(struct gmap *gmap, unsigned long start,
180 unsigned long end);
Christian Borntraeger2c70fe42013-05-17 14:41:36 +0200181
Fan Zhangfdf03652015-05-13 10:58:41 +0200182/*
183 * This callback is executed during stop_machine(). All CPUs are therefore
184 * temporarily stopped. In order not to change guest behavior, we have to
185 * disable preemption whenever we touch the epoch of kvm and the VCPUs,
186 * so a CPU won't be stopped while calculating with the epoch.
187 */
188static int kvm_clock_sync(struct notifier_block *notifier, unsigned long val,
189 void *v)
190{
191 struct kvm *kvm;
192 struct kvm_vcpu *vcpu;
193 int i;
194 unsigned long long *delta = v;
195
196 list_for_each_entry(kvm, &vm_list, vm_list) {
197 kvm->arch.epoch -= *delta;
198 kvm_for_each_vcpu(i, vcpu, kvm) {
199 vcpu->arch.sie_block->epoch -= *delta;
David Hildenbranddb0758b2016-02-15 09:42:25 +0100200 if (vcpu->arch.cputm_enabled)
201 vcpu->arch.cputm_start += *delta;
David Hildenbrand91473b42015-10-29 10:30:36 +0100202 if (vcpu->arch.vsie_block)
203 vcpu->arch.vsie_block->epoch -= *delta;
Fan Zhangfdf03652015-05-13 10:58:41 +0200204 }
205 }
206 return NOTIFY_OK;
207}
208
209static struct notifier_block kvm_clock_notifier = {
210 .notifier_call = kvm_clock_sync,
211};
212
Heiko Carstensb0c632d2008-03-25 18:47:20 +0100213int kvm_arch_hardware_setup(void)
214{
Christian Borntraeger2c70fe42013-05-17 14:41:36 +0200215 gmap_notifier.notifier_call = kvm_gmap_notifier;
Martin Schwidefskyb2d73b22016-03-08 11:54:42 +0100216 gmap_register_pte_notifier(&gmap_notifier);
David Hildenbranda3508fb2015-07-08 13:19:48 +0200217 vsie_gmap_notifier.notifier_call = kvm_s390_vsie_gmap_notifier;
218 gmap_register_pte_notifier(&vsie_gmap_notifier);
Fan Zhangfdf03652015-05-13 10:58:41 +0200219 atomic_notifier_chain_register(&s390_epoch_delta_notifier,
220 &kvm_clock_notifier);
Heiko Carstensb0c632d2008-03-25 18:47:20 +0100221 return 0;
222}
223
224void kvm_arch_hardware_unsetup(void)
225{
Martin Schwidefskyb2d73b22016-03-08 11:54:42 +0100226 gmap_unregister_pte_notifier(&gmap_notifier);
David Hildenbranda3508fb2015-07-08 13:19:48 +0200227 gmap_unregister_pte_notifier(&vsie_gmap_notifier);
Fan Zhangfdf03652015-05-13 10:58:41 +0200228 atomic_notifier_chain_unregister(&s390_epoch_delta_notifier,
229 &kvm_clock_notifier);
Heiko Carstensb0c632d2008-03-25 18:47:20 +0100230}
231
David Hildenbrand22be5a132016-01-21 13:22:54 +0100232static void allow_cpu_feat(unsigned long nr)
233{
234 set_bit_inv(nr, kvm_s390_available_cpu_feat);
235}
236
David Hildenbrand0a763c72016-05-18 16:03:47 +0200237static inline int plo_test_bit(unsigned char nr)
238{
239 register unsigned long r0 asm("0") = (unsigned long) nr | 0x100;
Heiko Carstensd051ae52016-12-13 14:25:32 +0100240 int cc;
David Hildenbrand0a763c72016-05-18 16:03:47 +0200241
242 asm volatile(
243 /* Parameter registers are ignored for "test bit" */
244 " plo 0,0,0,0(0)\n"
245 " ipm %0\n"
246 " srl %0,28\n"
247 : "=d" (cc)
248 : "d" (r0)
249 : "cc");
250 return cc == 0;
251}
252
David Hildenbrand22be5a132016-01-21 13:22:54 +0100253static void kvm_s390_cpu_feat_init(void)
254{
David Hildenbrand0a763c72016-05-18 16:03:47 +0200255 int i;
256
257 for (i = 0; i < 256; ++i) {
258 if (plo_test_bit(i))
259 kvm_s390_available_subfunc.plo[i >> 3] |= 0x80 >> (i & 7);
260 }
261
262 if (test_facility(28)) /* TOD-clock steering */
Linus Torvalds221bb8a2016-08-02 16:11:27 -0400263 ptff(kvm_s390_available_subfunc.ptff,
264 sizeof(kvm_s390_available_subfunc.ptff),
265 PTFF_QAF);
David Hildenbrand0a763c72016-05-18 16:03:47 +0200266
267 if (test_facility(17)) { /* MSA */
Martin Schwidefsky69c0e362016-08-18 12:59:46 +0200268 __cpacf_query(CPACF_KMAC, (cpacf_mask_t *)
269 kvm_s390_available_subfunc.kmac);
270 __cpacf_query(CPACF_KMC, (cpacf_mask_t *)
271 kvm_s390_available_subfunc.kmc);
272 __cpacf_query(CPACF_KM, (cpacf_mask_t *)
273 kvm_s390_available_subfunc.km);
274 __cpacf_query(CPACF_KIMD, (cpacf_mask_t *)
275 kvm_s390_available_subfunc.kimd);
276 __cpacf_query(CPACF_KLMD, (cpacf_mask_t *)
277 kvm_s390_available_subfunc.klmd);
David Hildenbrand0a763c72016-05-18 16:03:47 +0200278 }
279 if (test_facility(76)) /* MSA3 */
Martin Schwidefsky69c0e362016-08-18 12:59:46 +0200280 __cpacf_query(CPACF_PCKMO, (cpacf_mask_t *)
281 kvm_s390_available_subfunc.pckmo);
David Hildenbrand0a763c72016-05-18 16:03:47 +0200282 if (test_facility(77)) { /* MSA4 */
Martin Schwidefsky69c0e362016-08-18 12:59:46 +0200283 __cpacf_query(CPACF_KMCTR, (cpacf_mask_t *)
284 kvm_s390_available_subfunc.kmctr);
285 __cpacf_query(CPACF_KMF, (cpacf_mask_t *)
286 kvm_s390_available_subfunc.kmf);
287 __cpacf_query(CPACF_KMO, (cpacf_mask_t *)
288 kvm_s390_available_subfunc.kmo);
289 __cpacf_query(CPACF_PCC, (cpacf_mask_t *)
290 kvm_s390_available_subfunc.pcc);
David Hildenbrand0a763c72016-05-18 16:03:47 +0200291 }
292 if (test_facility(57)) /* MSA5 */
Harald Freudenberger985a9d22017-02-24 10:11:54 +0100293 __cpacf_query(CPACF_PRNO, (cpacf_mask_t *)
Martin Schwidefsky69c0e362016-08-18 12:59:46 +0200294 kvm_s390_available_subfunc.ppno);
David Hildenbrand0a763c72016-05-18 16:03:47 +0200295
Jason J. Hernee000b8e2017-03-20 09:57:42 -0400296 if (test_facility(146)) /* MSA8 */
297 __cpacf_query(CPACF_KMA, (cpacf_mask_t *)
298 kvm_s390_available_subfunc.kma);
299
David Hildenbrand22be5a132016-01-21 13:22:54 +0100300 if (MACHINE_HAS_ESOP)
301 allow_cpu_feat(KVM_S390_VM_CPU_FEAT_ESOP);
David Hildenbranda3508fb2015-07-08 13:19:48 +0200302 /*
303 * We need SIE support, ESOP (PROT_READ protection for gmap_shadow),
304 * 64bit SCAO (SCA passthrough) and IDTE (for gmap_shadow unshadowing).
305 */
306 if (!sclp.has_sief2 || !MACHINE_HAS_ESOP || !sclp.has_64bscao ||
David Hildenbranda411edf2016-02-02 15:41:22 +0100307 !test_facility(3) || !nested)
David Hildenbranda3508fb2015-07-08 13:19:48 +0200308 return;
309 allow_cpu_feat(KVM_S390_VM_CPU_FEAT_SIEF2);
David Hildenbrand19c439b2015-11-25 11:02:26 +0100310 if (sclp.has_64bscao)
311 allow_cpu_feat(KVM_S390_VM_CPU_FEAT_64BSCAO);
David Hildenbrand0615a322015-11-25 09:59:49 +0100312 if (sclp.has_siif)
313 allow_cpu_feat(KVM_S390_VM_CPU_FEAT_SIIF);
David Hildenbrand77d18f62015-11-24 16:32:35 +0100314 if (sclp.has_gpere)
315 allow_cpu_feat(KVM_S390_VM_CPU_FEAT_GPERE);
David Hildenbranda1b7b9b2015-11-24 16:41:33 +0100316 if (sclp.has_gsls)
317 allow_cpu_feat(KVM_S390_VM_CPU_FEAT_GSLS);
David Hildenbrand5630a8e2015-11-24 16:53:51 +0100318 if (sclp.has_ib)
319 allow_cpu_feat(KVM_S390_VM_CPU_FEAT_IB);
David Hildenbrand13ee3f62015-11-24 16:54:37 +0100320 if (sclp.has_cei)
321 allow_cpu_feat(KVM_S390_VM_CPU_FEAT_CEI);
David Hildenbrand7fd7f392015-11-24 16:56:23 +0100322 if (sclp.has_ibs)
323 allow_cpu_feat(KVM_S390_VM_CPU_FEAT_IBS);
Farhan Ali730cd632017-02-24 16:12:56 -0500324 if (sclp.has_kss)
325 allow_cpu_feat(KVM_S390_VM_CPU_FEAT_KSS);
David Hildenbrand5d3876a2016-04-13 17:06:50 +0200326 /*
327 * KVM_S390_VM_CPU_FEAT_SKEY: Wrong shadow of PTE.I bits will make
328 * all skey handling functions read/set the skey from the PGSTE
329 * instead of the real storage key.
330 *
331 * KVM_S390_VM_CPU_FEAT_CMMA: Wrong shadow of PTE.I bits will make
332 * pages being detected as preserved although they are resident.
333 *
334 * KVM_S390_VM_CPU_FEAT_PFMFI: Wrong shadow of PTE.I bits will
335 * have the same effect as for KVM_S390_VM_CPU_FEAT_SKEY.
336 *
337 * For KVM_S390_VM_CPU_FEAT_SKEY, KVM_S390_VM_CPU_FEAT_CMMA and
338 * KVM_S390_VM_CPU_FEAT_PFMFI, all PTE.I and PGSTE bits have to be
339 * correctly shadowed. We can do that for the PGSTE but not for PTE.I.
340 *
341 * KVM_S390_VM_CPU_FEAT_SIGPIF: Wrong SCB addresses in the SCA. We
342 * cannot easily shadow the SCA because of the ipte lock.
343 */
David Hildenbrand22be5a132016-01-21 13:22:54 +0100344}
345
Heiko Carstensb0c632d2008-03-25 18:47:20 +0100346int kvm_arch_init(void *opaque)
347{
Christian Borntraeger78f26132015-07-22 15:50:58 +0200348 kvm_s390_dbf = debug_register("kvm-trace", 32, 1, 7 * sizeof(long));
349 if (!kvm_s390_dbf)
350 return -ENOMEM;
351
352 if (debug_register_view(kvm_s390_dbf, &debug_sprintf_view)) {
353 debug_unregister(kvm_s390_dbf);
354 return -ENOMEM;
355 }
356
David Hildenbrand22be5a132016-01-21 13:22:54 +0100357 kvm_s390_cpu_feat_init();
358
Cornelia Huck84877d92014-09-02 10:27:35 +0100359 /* Register floating interrupt controller interface. */
360 return kvm_register_device_ops(&kvm_flic_ops, KVM_DEV_TYPE_FLIC);
Heiko Carstensb0c632d2008-03-25 18:47:20 +0100361}
362
Christian Borntraeger78f26132015-07-22 15:50:58 +0200363void kvm_arch_exit(void)
364{
365 debug_unregister(kvm_s390_dbf);
366}
367
Heiko Carstensb0c632d2008-03-25 18:47:20 +0100368/* Section: device related */
369long kvm_arch_dev_ioctl(struct file *filp,
370 unsigned int ioctl, unsigned long arg)
371{
372 if (ioctl == KVM_S390_ENABLE_SIE)
373 return s390_enable_sie();
374 return -EINVAL;
375}
376
Alexander Graf784aa3d2014-07-14 18:27:35 +0200377int kvm_vm_ioctl_check_extension(struct kvm *kvm, long ext)
Heiko Carstensb0c632d2008-03-25 18:47:20 +0100378{
Carsten Otted7b0b5e2009-11-19 14:21:16 +0100379 int r;
380
Carsten Otte2bd0ac42008-07-25 15:49:13 +0200381 switch (ext) {
Carsten Otted7b0b5e2009-11-19 14:21:16 +0100382 case KVM_CAP_S390_PSW:
Christian Borntraegerb6cf8782011-09-20 17:07:29 +0200383 case KVM_CAP_S390_GMAP:
Christian Borntraeger52e16b12011-11-17 11:00:44 +0100384 case KVM_CAP_SYNC_MMU:
Carsten Otte1efd0f52012-01-04 10:25:29 +0100385#ifdef CONFIG_KVM_S390_UCONTROL
386 case KVM_CAP_S390_UCONTROL:
387#endif
Dominik Dingel3c038e62013-10-07 17:11:48 +0200388 case KVM_CAP_ASYNC_PF:
Christian Borntraeger60b413c2012-01-11 11:20:31 +0100389 case KVM_CAP_SYNC_REGS:
Carsten Otte14eebd92012-05-15 14:15:26 +0200390 case KVM_CAP_ONE_REG:
Cornelia Huckd6712df2012-12-20 15:32:11 +0100391 case KVM_CAP_ENABLE_CAP:
Cornelia Huckfa6b7fe2012-12-20 15:32:12 +0100392 case KVM_CAP_S390_CSS_SUPPORT:
Cornelia Huck10ccaa12013-02-28 12:33:21 +0100393 case KVM_CAP_IOEVENTFD:
Jens Freimannc05c4182013-10-07 16:13:45 +0200394 case KVM_CAP_DEVICE_CTRL:
Cornelia Huckd938dc52013-10-23 18:26:34 +0200395 case KVM_CAP_ENABLE_CAP_VM:
Cornelia Huck78599d92014-07-15 09:54:39 +0200396 case KVM_CAP_S390_IRQCHIP:
Dominik Dingelf2061652014-04-09 13:13:00 +0200397 case KVM_CAP_VM_ATTRIBUTES:
David Hildenbrand6352e4d2014-04-10 17:35:00 +0200398 case KVM_CAP_MP_STATE:
Paolo Bonzini460df4c2017-02-08 11:50:15 +0100399 case KVM_CAP_IMMEDIATE_EXIT:
Jens Freimann47b43c52014-11-11 20:57:06 +0100400 case KVM_CAP_S390_INJECT_IRQ:
David Hildenbrand2444b352014-10-09 14:10:13 +0200401 case KVM_CAP_S390_USER_SIGP:
Ekaterina Tumanovae44fc8c2015-01-30 16:55:56 +0100402 case KVM_CAP_S390_USER_STSI:
Jason J. Herne30ee2a92014-09-23 09:23:01 -0400403 case KVM_CAP_S390_SKEYS:
Jens Freimann816c7662014-11-24 17:13:46 +0100404 case KVM_CAP_S390_IRQ_STATE:
David Hildenbrand6502a342016-06-21 14:19:51 +0200405 case KVM_CAP_S390_USER_INSTR0:
Claudio Imbrenda4036e382016-08-04 17:58:47 +0200406 case KVM_CAP_S390_CMMA_MIGRATION:
Yi Min Zhao47a46932017-03-10 09:29:38 +0100407 case KVM_CAP_S390_AIS:
Christian Borntraegerda9a1442017-11-09 10:00:45 +0100408 case KVM_CAP_S390_AIS_MIGRATION:
Carsten Otted7b0b5e2009-11-19 14:21:16 +0100409 r = 1;
410 break;
Thomas Huth41408c282015-02-06 15:01:21 +0100411 case KVM_CAP_S390_MEM_OP:
412 r = MEM_OP_MAX_SIZE;
413 break;
Christian Borntraegere726b1b2012-05-02 10:50:38 +0200414 case KVM_CAP_NR_VCPUS:
415 case KVM_CAP_MAX_VCPUS:
David Hildenbrand76a6dd72015-11-24 13:33:49 +0100416 r = KVM_S390_BSCA_CPU_SLOTS;
David Hildenbranda6940672016-08-08 22:39:32 +0200417 if (!kvm_s390_use_sca_entries())
418 r = KVM_MAX_VCPUS;
419 else if (sclp.has_esca && sclp.has_64bscao)
David Hildenbrand76a6dd72015-11-24 13:33:49 +0100420 r = KVM_S390_ESCA_CPU_SLOTS;
Christian Borntraegere726b1b2012-05-02 10:50:38 +0200421 break;
Nick Wange1e2e602013-03-25 17:22:58 +0100422 case KVM_CAP_NR_MEMSLOTS:
423 r = KVM_USER_MEM_SLOTS;
424 break;
Christian Borntraeger1526bf92012-05-15 14:15:25 +0200425 case KVM_CAP_S390_COW:
Martin Schwidefskyabf09be2012-11-07 13:17:37 +0100426 r = MACHINE_HAS_ESOP;
Christian Borntraeger1526bf92012-05-15 14:15:25 +0200427 break;
Eric Farman68c55752014-06-09 10:57:26 -0400428 case KVM_CAP_S390_VECTOR_REGISTERS:
429 r = MACHINE_HAS_VX;
430 break;
Fan Zhangc6e5f162016-01-07 18:24:29 +0800431 case KVM_CAP_S390_RI:
432 r = test_facility(64);
433 break;
Fan Zhang4e0b1ab2016-11-29 07:17:55 +0100434 case KVM_CAP_S390_GS:
435 r = test_facility(133);
436 break;
Carsten Otte2bd0ac42008-07-25 15:49:13 +0200437 default:
Carsten Otted7b0b5e2009-11-19 14:21:16 +0100438 r = 0;
Carsten Otte2bd0ac42008-07-25 15:49:13 +0200439 }
Carsten Otted7b0b5e2009-11-19 14:21:16 +0100440 return r;
Heiko Carstensb0c632d2008-03-25 18:47:20 +0100441}
442
Jason J. Herne15f36eb2012-08-02 10:10:17 -0400443static void kvm_s390_sync_dirty_log(struct kvm *kvm,
444 struct kvm_memory_slot *memslot)
445{
446 gfn_t cur_gfn, last_gfn;
447 unsigned long address;
448 struct gmap *gmap = kvm->arch.gmap;
449
Jason J. Herne15f36eb2012-08-02 10:10:17 -0400450 /* Loop over all guest pages */
451 last_gfn = memslot->base_gfn + memslot->npages;
452 for (cur_gfn = memslot->base_gfn; cur_gfn <= last_gfn; cur_gfn++) {
453 address = gfn_to_hva_memslot(memslot, cur_gfn);
454
Martin Schwidefsky1e133ab2016-03-08 11:49:57 +0100455 if (test_and_clear_guest_dirty(gmap->mm, address))
Jason J. Herne15f36eb2012-08-02 10:10:17 -0400456 mark_page_dirty(kvm, cur_gfn);
Christian Borntraeger1763f8d2016-02-03 11:12:34 +0100457 if (fatal_signal_pending(current))
458 return;
Christian Borntraeger70c88a02016-02-02 15:15:56 +0100459 cond_resched();
Jason J. Herne15f36eb2012-08-02 10:10:17 -0400460 }
Jason J. Herne15f36eb2012-08-02 10:10:17 -0400461}
462
Heiko Carstensb0c632d2008-03-25 18:47:20 +0100463/* Section: vm related */
Eugene (jno) Dvurechenskia6e2f682015-04-21 15:31:59 +0200464static void sca_del_vcpu(struct kvm_vcpu *vcpu);
465
Heiko Carstensb0c632d2008-03-25 18:47:20 +0100466/*
467 * Get (and clear) the dirty memory log for a memory slot.
468 */
469int kvm_vm_ioctl_get_dirty_log(struct kvm *kvm,
470 struct kvm_dirty_log *log)
471{
Jason J. Herne15f36eb2012-08-02 10:10:17 -0400472 int r;
473 unsigned long n;
Paolo Bonzini9f6b8022015-05-17 16:20:07 +0200474 struct kvm_memslots *slots;
Jason J. Herne15f36eb2012-08-02 10:10:17 -0400475 struct kvm_memory_slot *memslot;
476 int is_dirty = 0;
477
Janosch Franke1e8a962017-02-02 16:39:31 +0100478 if (kvm_is_ucontrol(kvm))
479 return -EINVAL;
480
Jason J. Herne15f36eb2012-08-02 10:10:17 -0400481 mutex_lock(&kvm->slots_lock);
482
483 r = -EINVAL;
484 if (log->slot >= KVM_USER_MEM_SLOTS)
485 goto out;
486
Paolo Bonzini9f6b8022015-05-17 16:20:07 +0200487 slots = kvm_memslots(kvm);
488 memslot = id_to_memslot(slots, log->slot);
Jason J. Herne15f36eb2012-08-02 10:10:17 -0400489 r = -ENOENT;
490 if (!memslot->dirty_bitmap)
491 goto out;
492
493 kvm_s390_sync_dirty_log(kvm, memslot);
494 r = kvm_get_dirty_log(kvm, log, &is_dirty);
495 if (r)
496 goto out;
497
498 /* Clear the dirty log */
499 if (is_dirty) {
500 n = kvm_dirty_bitmap_bytes(memslot);
501 memset(memslot->dirty_bitmap, 0, n);
502 }
503 r = 0;
504out:
505 mutex_unlock(&kvm->slots_lock);
506 return r;
Heiko Carstensb0c632d2008-03-25 18:47:20 +0100507}
508
David Hildenbrand6502a342016-06-21 14:19:51 +0200509static void icpt_operexc_on_all_vcpus(struct kvm *kvm)
510{
511 unsigned int i;
512 struct kvm_vcpu *vcpu;
513
514 kvm_for_each_vcpu(i, vcpu, kvm) {
515 kvm_s390_sync_request(KVM_REQ_ICPT_OPEREXC, vcpu);
516 }
517}
518
Cornelia Huckd938dc52013-10-23 18:26:34 +0200519static int kvm_vm_ioctl_enable_cap(struct kvm *kvm, struct kvm_enable_cap *cap)
520{
521 int r;
522
523 if (cap->flags)
524 return -EINVAL;
525
526 switch (cap->cap) {
Cornelia Huck84223592013-07-15 13:36:01 +0200527 case KVM_CAP_S390_IRQCHIP:
Christian Borntraegerc92ea7b2015-07-22 15:52:10 +0200528 VM_EVENT(kvm, 3, "%s", "ENABLE: CAP_S390_IRQCHIP");
Cornelia Huck84223592013-07-15 13:36:01 +0200529 kvm->arch.use_irqchip = 1;
530 r = 0;
531 break;
David Hildenbrand2444b352014-10-09 14:10:13 +0200532 case KVM_CAP_S390_USER_SIGP:
Christian Borntraegerc92ea7b2015-07-22 15:52:10 +0200533 VM_EVENT(kvm, 3, "%s", "ENABLE: CAP_S390_USER_SIGP");
David Hildenbrand2444b352014-10-09 14:10:13 +0200534 kvm->arch.user_sigp = 1;
535 r = 0;
536 break;
Eric Farman68c55752014-06-09 10:57:26 -0400537 case KVM_CAP_S390_VECTOR_REGISTERS:
David Hildenbrand5967c172015-11-06 12:08:48 +0100538 mutex_lock(&kvm->lock);
Paolo Bonzinia03825b2016-06-13 14:50:04 +0200539 if (kvm->created_vcpus) {
David Hildenbrand5967c172015-11-06 12:08:48 +0100540 r = -EBUSY;
541 } else if (MACHINE_HAS_VX) {
David Hildenbrandc54f0d62015-12-02 08:53:52 +0100542 set_kvm_facility(kvm->arch.model.fac_mask, 129);
543 set_kvm_facility(kvm->arch.model.fac_list, 129);
Guenther Hutzl2f87d942016-06-03 14:37:17 +0200544 if (test_facility(134)) {
545 set_kvm_facility(kvm->arch.model.fac_mask, 134);
546 set_kvm_facility(kvm->arch.model.fac_list, 134);
547 }
Maxim Samoylov53743aa2016-02-10 10:31:23 +0100548 if (test_facility(135)) {
549 set_kvm_facility(kvm->arch.model.fac_mask, 135);
550 set_kvm_facility(kvm->arch.model.fac_list, 135);
551 }
Michael Mueller18280d82015-03-16 16:05:41 +0100552 r = 0;
553 } else
554 r = -EINVAL;
David Hildenbrand5967c172015-11-06 12:08:48 +0100555 mutex_unlock(&kvm->lock);
Christian Borntraegerc92ea7b2015-07-22 15:52:10 +0200556 VM_EVENT(kvm, 3, "ENABLE: CAP_S390_VECTOR_REGISTERS %s",
557 r ? "(not available)" : "(success)");
Eric Farman68c55752014-06-09 10:57:26 -0400558 break;
Fan Zhangc6e5f162016-01-07 18:24:29 +0800559 case KVM_CAP_S390_RI:
560 r = -EINVAL;
561 mutex_lock(&kvm->lock);
Paolo Bonzinia03825b2016-06-13 14:50:04 +0200562 if (kvm->created_vcpus) {
Fan Zhangc6e5f162016-01-07 18:24:29 +0800563 r = -EBUSY;
564 } else if (test_facility(64)) {
David Hildenbrandc54f0d62015-12-02 08:53:52 +0100565 set_kvm_facility(kvm->arch.model.fac_mask, 64);
566 set_kvm_facility(kvm->arch.model.fac_list, 64);
Fan Zhangc6e5f162016-01-07 18:24:29 +0800567 r = 0;
568 }
569 mutex_unlock(&kvm->lock);
570 VM_EVENT(kvm, 3, "ENABLE: CAP_S390_RI %s",
571 r ? "(not available)" : "(success)");
572 break;
Yi Min Zhao47a46932017-03-10 09:29:38 +0100573 case KVM_CAP_S390_AIS:
574 mutex_lock(&kvm->lock);
575 if (kvm->created_vcpus) {
576 r = -EBUSY;
577 } else {
578 set_kvm_facility(kvm->arch.model.fac_mask, 72);
579 set_kvm_facility(kvm->arch.model.fac_list, 72);
Yi Min Zhao47a46932017-03-10 09:29:38 +0100580 r = 0;
581 }
582 mutex_unlock(&kvm->lock);
583 VM_EVENT(kvm, 3, "ENABLE: AIS %s",
584 r ? "(not available)" : "(success)");
585 break;
Fan Zhang4e0b1ab2016-11-29 07:17:55 +0100586 case KVM_CAP_S390_GS:
587 r = -EINVAL;
588 mutex_lock(&kvm->lock);
Christian Borntraeger241e3ec02017-11-16 15:12:52 +0100589 if (kvm->created_vcpus) {
Fan Zhang4e0b1ab2016-11-29 07:17:55 +0100590 r = -EBUSY;
591 } else if (test_facility(133)) {
592 set_kvm_facility(kvm->arch.model.fac_mask, 133);
593 set_kvm_facility(kvm->arch.model.fac_list, 133);
594 r = 0;
595 }
596 mutex_unlock(&kvm->lock);
597 VM_EVENT(kvm, 3, "ENABLE: CAP_S390_GS %s",
598 r ? "(not available)" : "(success)");
599 break;
Ekaterina Tumanovae44fc8c2015-01-30 16:55:56 +0100600 case KVM_CAP_S390_USER_STSI:
Christian Borntraegerc92ea7b2015-07-22 15:52:10 +0200601 VM_EVENT(kvm, 3, "%s", "ENABLE: CAP_S390_USER_STSI");
Ekaterina Tumanovae44fc8c2015-01-30 16:55:56 +0100602 kvm->arch.user_stsi = 1;
603 r = 0;
604 break;
David Hildenbrand6502a342016-06-21 14:19:51 +0200605 case KVM_CAP_S390_USER_INSTR0:
606 VM_EVENT(kvm, 3, "%s", "ENABLE: CAP_S390_USER_INSTR0");
607 kvm->arch.user_instr0 = 1;
608 icpt_operexc_on_all_vcpus(kvm);
609 r = 0;
610 break;
Cornelia Huckd938dc52013-10-23 18:26:34 +0200611 default:
612 r = -EINVAL;
613 break;
614 }
615 return r;
616}
617
Dominik Dingel8c0a7ce2014-10-31 14:10:41 +0100618static int kvm_s390_get_mem_control(struct kvm *kvm, struct kvm_device_attr *attr)
619{
620 int ret;
621
622 switch (attr->attr) {
623 case KVM_S390_VM_MEM_LIMIT_SIZE:
624 ret = 0;
Christian Borntraegerc92ea7b2015-07-22 15:52:10 +0200625 VM_EVENT(kvm, 3, "QUERY: max guest memory: %lu bytes",
Dominik Dingela3a92c32014-12-01 17:24:42 +0100626 kvm->arch.mem_limit);
627 if (put_user(kvm->arch.mem_limit, (u64 __user *)attr->addr))
Dominik Dingel8c0a7ce2014-10-31 14:10:41 +0100628 ret = -EFAULT;
629 break;
630 default:
631 ret = -ENXIO;
632 break;
633 }
634 return ret;
635}
636
637static int kvm_s390_set_mem_control(struct kvm *kvm, struct kvm_device_attr *attr)
Dominik Dingel4f718ea2014-04-09 13:13:00 +0200638{
639 int ret;
640 unsigned int idx;
641 switch (attr->attr) {
642 case KVM_S390_VM_MEM_ENABLE_CMMA:
David Hildenbrandf9cbd9b2016-03-03 09:48:47 +0100643 ret = -ENXIO;
David Hildenbrandc24cc9c2015-11-24 13:53:04 +0100644 if (!sclp.has_cmma)
Dominik Dingele6db1d62015-05-07 15:41:57 +0200645 break;
646
Dominik Dingel4f718ea2014-04-09 13:13:00 +0200647 ret = -EBUSY;
Christian Borntraegerc92ea7b2015-07-22 15:52:10 +0200648 VM_EVENT(kvm, 3, "%s", "ENABLE: CMMA support");
Dominik Dingel4f718ea2014-04-09 13:13:00 +0200649 mutex_lock(&kvm->lock);
Paolo Bonzinia03825b2016-06-13 14:50:04 +0200650 if (!kvm->created_vcpus) {
Dominik Dingel4f718ea2014-04-09 13:13:00 +0200651 kvm->arch.use_cmma = 1;
652 ret = 0;
653 }
654 mutex_unlock(&kvm->lock);
655 break;
656 case KVM_S390_VM_MEM_CLR_CMMA:
David Hildenbrandf9cbd9b2016-03-03 09:48:47 +0100657 ret = -ENXIO;
658 if (!sclp.has_cmma)
659 break;
Dominik Dingelc3489152015-06-18 13:17:11 +0200660 ret = -EINVAL;
661 if (!kvm->arch.use_cmma)
662 break;
663
Christian Borntraegerc92ea7b2015-07-22 15:52:10 +0200664 VM_EVENT(kvm, 3, "%s", "RESET: CMMA states");
Dominik Dingel4f718ea2014-04-09 13:13:00 +0200665 mutex_lock(&kvm->lock);
666 idx = srcu_read_lock(&kvm->srcu);
Dominik Dingela13cff32014-10-23 12:07:14 +0200667 s390_reset_cmma(kvm->arch.gmap->mm);
Dominik Dingel4f718ea2014-04-09 13:13:00 +0200668 srcu_read_unlock(&kvm->srcu, idx);
669 mutex_unlock(&kvm->lock);
670 ret = 0;
671 break;
Dominik Dingel8c0a7ce2014-10-31 14:10:41 +0100672 case KVM_S390_VM_MEM_LIMIT_SIZE: {
673 unsigned long new_limit;
674
675 if (kvm_is_ucontrol(kvm))
676 return -EINVAL;
677
678 if (get_user(new_limit, (u64 __user *)attr->addr))
679 return -EFAULT;
680
Dominik Dingela3a92c32014-12-01 17:24:42 +0100681 if (kvm->arch.mem_limit != KVM_S390_NO_MEM_LIMIT &&
682 new_limit > kvm->arch.mem_limit)
Dominik Dingel8c0a7ce2014-10-31 14:10:41 +0100683 return -E2BIG;
684
Dominik Dingela3a92c32014-12-01 17:24:42 +0100685 if (!new_limit)
686 return -EINVAL;
687
Martin Schwidefsky6ea427b2016-03-08 11:55:04 +0100688 /* gmap_create takes last usable address */
Dominik Dingela3a92c32014-12-01 17:24:42 +0100689 if (new_limit != KVM_S390_NO_MEM_LIMIT)
690 new_limit -= 1;
691
Dominik Dingel8c0a7ce2014-10-31 14:10:41 +0100692 ret = -EBUSY;
693 mutex_lock(&kvm->lock);
Paolo Bonzinia03825b2016-06-13 14:50:04 +0200694 if (!kvm->created_vcpus) {
Martin Schwidefsky6ea427b2016-03-08 11:55:04 +0100695 /* gmap_create will round the limit up */
696 struct gmap *new = gmap_create(current->mm, new_limit);
Dominik Dingel8c0a7ce2014-10-31 14:10:41 +0100697
698 if (!new) {
699 ret = -ENOMEM;
700 } else {
Martin Schwidefsky6ea427b2016-03-08 11:55:04 +0100701 gmap_remove(kvm->arch.gmap);
Dominik Dingel8c0a7ce2014-10-31 14:10:41 +0100702 new->private = kvm;
703 kvm->arch.gmap = new;
704 ret = 0;
705 }
706 }
707 mutex_unlock(&kvm->lock);
Dominik Dingela3a92c32014-12-01 17:24:42 +0100708 VM_EVENT(kvm, 3, "SET: max guest address: %lu", new_limit);
709 VM_EVENT(kvm, 3, "New guest asce: 0x%pK",
710 (void *) kvm->arch.gmap->asce);
Dominik Dingel8c0a7ce2014-10-31 14:10:41 +0100711 break;
712 }
Dominik Dingel4f718ea2014-04-09 13:13:00 +0200713 default:
714 ret = -ENXIO;
715 break;
716 }
717 return ret;
718}
719
Tony Krowiaka374e892014-09-03 10:13:53 +0200720static void kvm_s390_vcpu_crypto_setup(struct kvm_vcpu *vcpu);
721
722static int kvm_s390_vm_set_crypto(struct kvm *kvm, struct kvm_device_attr *attr)
723{
724 struct kvm_vcpu *vcpu;
725 int i;
726
Michael Mueller9d8d5782015-02-02 15:42:51 +0100727 if (!test_kvm_facility(kvm, 76))
Tony Krowiaka374e892014-09-03 10:13:53 +0200728 return -EINVAL;
729
730 mutex_lock(&kvm->lock);
731 switch (attr->attr) {
732 case KVM_S390_VM_CRYPTO_ENABLE_AES_KW:
733 get_random_bytes(
734 kvm->arch.crypto.crycb->aes_wrapping_key_mask,
735 sizeof(kvm->arch.crypto.crycb->aes_wrapping_key_mask));
736 kvm->arch.crypto.aes_kw = 1;
Christian Borntraegerc92ea7b2015-07-22 15:52:10 +0200737 VM_EVENT(kvm, 3, "%s", "ENABLE: AES keywrapping support");
Tony Krowiaka374e892014-09-03 10:13:53 +0200738 break;
739 case KVM_S390_VM_CRYPTO_ENABLE_DEA_KW:
740 get_random_bytes(
741 kvm->arch.crypto.crycb->dea_wrapping_key_mask,
742 sizeof(kvm->arch.crypto.crycb->dea_wrapping_key_mask));
743 kvm->arch.crypto.dea_kw = 1;
Christian Borntraegerc92ea7b2015-07-22 15:52:10 +0200744 VM_EVENT(kvm, 3, "%s", "ENABLE: DEA keywrapping support");
Tony Krowiaka374e892014-09-03 10:13:53 +0200745 break;
746 case KVM_S390_VM_CRYPTO_DISABLE_AES_KW:
747 kvm->arch.crypto.aes_kw = 0;
748 memset(kvm->arch.crypto.crycb->aes_wrapping_key_mask, 0,
749 sizeof(kvm->arch.crypto.crycb->aes_wrapping_key_mask));
Christian Borntraegerc92ea7b2015-07-22 15:52:10 +0200750 VM_EVENT(kvm, 3, "%s", "DISABLE: AES keywrapping support");
Tony Krowiaka374e892014-09-03 10:13:53 +0200751 break;
752 case KVM_S390_VM_CRYPTO_DISABLE_DEA_KW:
753 kvm->arch.crypto.dea_kw = 0;
754 memset(kvm->arch.crypto.crycb->dea_wrapping_key_mask, 0,
755 sizeof(kvm->arch.crypto.crycb->dea_wrapping_key_mask));
Christian Borntraegerc92ea7b2015-07-22 15:52:10 +0200756 VM_EVENT(kvm, 3, "%s", "DISABLE: DEA keywrapping support");
Tony Krowiaka374e892014-09-03 10:13:53 +0200757 break;
758 default:
759 mutex_unlock(&kvm->lock);
760 return -ENXIO;
761 }
762
763 kvm_for_each_vcpu(i, vcpu, kvm) {
764 kvm_s390_vcpu_crypto_setup(vcpu);
765 exit_sie(vcpu);
766 }
767 mutex_unlock(&kvm->lock);
768 return 0;
769}
770
Claudio Imbrenda190df4a2016-08-04 17:54:42 +0200771static void kvm_s390_sync_request_broadcast(struct kvm *kvm, int req)
772{
773 int cx;
774 struct kvm_vcpu *vcpu;
775
776 kvm_for_each_vcpu(cx, vcpu, kvm)
777 kvm_s390_sync_request(req, vcpu);
778}
779
780/*
781 * Must be called with kvm->srcu held to avoid races on memslots, and with
782 * kvm->lock to avoid races with ourselves and kvm_s390_vm_stop_migration.
783 */
784static int kvm_s390_vm_start_migration(struct kvm *kvm)
785{
786 struct kvm_s390_migration_state *mgs;
787 struct kvm_memory_slot *ms;
788 /* should be the only one */
789 struct kvm_memslots *slots;
790 unsigned long ram_pages;
791 int slotnr;
792
793 /* migration mode already enabled */
794 if (kvm->arch.migration_state)
795 return 0;
796
797 slots = kvm_memslots(kvm);
798 if (!slots || !slots->used_slots)
799 return -EINVAL;
800
801 mgs = kzalloc(sizeof(*mgs), GFP_KERNEL);
802 if (!mgs)
803 return -ENOMEM;
804 kvm->arch.migration_state = mgs;
805
806 if (kvm->arch.use_cmma) {
807 /*
808 * Get the last slot. They should be sorted by base_gfn, so the
809 * last slot is also the one at the end of the address space.
810 * We have verified above that at least one slot is present.
811 */
812 ms = slots->memslots + slots->used_slots - 1;
813 /* round up so we only use full longs */
814 ram_pages = roundup(ms->base_gfn + ms->npages, BITS_PER_LONG);
815 /* allocate enough bytes to store all the bits */
816 mgs->pgste_bitmap = vmalloc(ram_pages / 8);
817 if (!mgs->pgste_bitmap) {
818 kfree(mgs);
819 kvm->arch.migration_state = NULL;
820 return -ENOMEM;
821 }
822
823 mgs->bitmap_size = ram_pages;
824 atomic64_set(&mgs->dirty_pages, ram_pages);
825 /* mark all the pages in active slots as dirty */
826 for (slotnr = 0; slotnr < slots->used_slots; slotnr++) {
827 ms = slots->memslots + slotnr;
828 bitmap_set(mgs->pgste_bitmap, ms->base_gfn, ms->npages);
829 }
830
831 kvm_s390_sync_request_broadcast(kvm, KVM_REQ_START_MIGRATION);
832 }
833 return 0;
834}
835
836/*
837 * Must be called with kvm->lock to avoid races with ourselves and
838 * kvm_s390_vm_start_migration.
839 */
840static int kvm_s390_vm_stop_migration(struct kvm *kvm)
841{
842 struct kvm_s390_migration_state *mgs;
843
844 /* migration mode already disabled */
845 if (!kvm->arch.migration_state)
846 return 0;
847 mgs = kvm->arch.migration_state;
848 kvm->arch.migration_state = NULL;
849
850 if (kvm->arch.use_cmma) {
851 kvm_s390_sync_request_broadcast(kvm, KVM_REQ_STOP_MIGRATION);
852 vfree(mgs->pgste_bitmap);
853 }
854 kfree(mgs);
855 return 0;
856}
857
858static int kvm_s390_vm_set_migration(struct kvm *kvm,
859 struct kvm_device_attr *attr)
860{
861 int idx, res = -ENXIO;
862
863 mutex_lock(&kvm->lock);
864 switch (attr->attr) {
865 case KVM_S390_VM_MIGRATION_START:
866 idx = srcu_read_lock(&kvm->srcu);
867 res = kvm_s390_vm_start_migration(kvm);
868 srcu_read_unlock(&kvm->srcu, idx);
869 break;
870 case KVM_S390_VM_MIGRATION_STOP:
871 res = kvm_s390_vm_stop_migration(kvm);
872 break;
873 default:
874 break;
875 }
876 mutex_unlock(&kvm->lock);
877
878 return res;
879}
880
881static int kvm_s390_vm_get_migration(struct kvm *kvm,
882 struct kvm_device_attr *attr)
883{
884 u64 mig = (kvm->arch.migration_state != NULL);
885
886 if (attr->attr != KVM_S390_VM_MIGRATION_STATUS)
887 return -ENXIO;
888
889 if (copy_to_user((void __user *)attr->addr, &mig, sizeof(mig)))
890 return -EFAULT;
891 return 0;
892}
893
Collin L. Walling8fa16962016-07-26 15:29:44 -0400894static int kvm_s390_set_tod_ext(struct kvm *kvm, struct kvm_device_attr *attr)
895{
896 struct kvm_s390_vm_tod_clock gtod;
897
898 if (copy_from_user(&gtod, (void __user *)attr->addr, sizeof(gtod)))
899 return -EFAULT;
900
901 if (test_kvm_facility(kvm, 139))
902 kvm_s390_set_tod_clock_ext(kvm, &gtod);
903 else if (gtod.epoch_idx == 0)
904 kvm_s390_set_tod_clock(kvm, gtod.tod);
905 else
906 return -EINVAL;
907
908 VM_EVENT(kvm, 3, "SET: TOD extension: 0x%x, TOD base: 0x%llx",
909 gtod.epoch_idx, gtod.tod);
910
911 return 0;
912}
913
Jason J. Herne72f25022014-11-25 09:46:02 -0500914static int kvm_s390_set_tod_high(struct kvm *kvm, struct kvm_device_attr *attr)
915{
916 u8 gtod_high;
917
918 if (copy_from_user(&gtod_high, (void __user *)attr->addr,
919 sizeof(gtod_high)))
920 return -EFAULT;
921
922 if (gtod_high != 0)
923 return -EINVAL;
Christian Borntraeger58c383c2015-10-12 13:27:29 +0200924 VM_EVENT(kvm, 3, "SET: TOD extension: 0x%x", gtod_high);
Jason J. Herne72f25022014-11-25 09:46:02 -0500925
926 return 0;
927}
928
929static int kvm_s390_set_tod_low(struct kvm *kvm, struct kvm_device_attr *attr)
930{
David Hildenbrand5a3d8832015-09-29 16:27:24 +0200931 u64 gtod;
Jason J. Herne72f25022014-11-25 09:46:02 -0500932
933 if (copy_from_user(&gtod, (void __user *)attr->addr, sizeof(gtod)))
934 return -EFAULT;
935
David Hildenbrand25ed1672015-05-12 09:49:14 +0200936 kvm_s390_set_tod_clock(kvm, gtod);
Christian Borntraeger58c383c2015-10-12 13:27:29 +0200937 VM_EVENT(kvm, 3, "SET: TOD base: 0x%llx", gtod);
Jason J. Herne72f25022014-11-25 09:46:02 -0500938 return 0;
939}
940
941static int kvm_s390_set_tod(struct kvm *kvm, struct kvm_device_attr *attr)
942{
943 int ret;
944
945 if (attr->flags)
946 return -EINVAL;
947
948 switch (attr->attr) {
Collin L. Walling8fa16962016-07-26 15:29:44 -0400949 case KVM_S390_VM_TOD_EXT:
950 ret = kvm_s390_set_tod_ext(kvm, attr);
951 break;
Jason J. Herne72f25022014-11-25 09:46:02 -0500952 case KVM_S390_VM_TOD_HIGH:
953 ret = kvm_s390_set_tod_high(kvm, attr);
954 break;
955 case KVM_S390_VM_TOD_LOW:
956 ret = kvm_s390_set_tod_low(kvm, attr);
957 break;
958 default:
959 ret = -ENXIO;
960 break;
961 }
962 return ret;
963}
964
Collin L. Walling8fa16962016-07-26 15:29:44 -0400965static void kvm_s390_get_tod_clock_ext(struct kvm *kvm,
966 struct kvm_s390_vm_tod_clock *gtod)
967{
968 struct kvm_s390_tod_clock_ext htod;
969
970 preempt_disable();
971
972 get_tod_clock_ext((char *)&htod);
973
974 gtod->tod = htod.tod + kvm->arch.epoch;
975 gtod->epoch_idx = htod.epoch_idx + kvm->arch.epdx;
976
977 if (gtod->tod < htod.tod)
978 gtod->epoch_idx += 1;
979
980 preempt_enable();
981}
982
983static int kvm_s390_get_tod_ext(struct kvm *kvm, struct kvm_device_attr *attr)
984{
985 struct kvm_s390_vm_tod_clock gtod;
986
987 memset(&gtod, 0, sizeof(gtod));
988
989 if (test_kvm_facility(kvm, 139))
990 kvm_s390_get_tod_clock_ext(kvm, &gtod);
991 else
992 gtod.tod = kvm_s390_get_tod_clock_fast(kvm);
993
994 if (copy_to_user((void __user *)attr->addr, &gtod, sizeof(gtod)))
995 return -EFAULT;
996
997 VM_EVENT(kvm, 3, "QUERY: TOD extension: 0x%x, TOD base: 0x%llx",
998 gtod.epoch_idx, gtod.tod);
999 return 0;
1000}
1001
Jason J. Herne72f25022014-11-25 09:46:02 -05001002static int kvm_s390_get_tod_high(struct kvm *kvm, struct kvm_device_attr *attr)
1003{
1004 u8 gtod_high = 0;
1005
1006 if (copy_to_user((void __user *)attr->addr, &gtod_high,
1007 sizeof(gtod_high)))
1008 return -EFAULT;
Christian Borntraeger58c383c2015-10-12 13:27:29 +02001009 VM_EVENT(kvm, 3, "QUERY: TOD extension: 0x%x", gtod_high);
Jason J. Herne72f25022014-11-25 09:46:02 -05001010
1011 return 0;
1012}
1013
1014static int kvm_s390_get_tod_low(struct kvm *kvm, struct kvm_device_attr *attr)
1015{
David Hildenbrand5a3d8832015-09-29 16:27:24 +02001016 u64 gtod;
Jason J. Herne72f25022014-11-25 09:46:02 -05001017
David Hildenbrand60417fc2015-09-29 16:20:36 +02001018 gtod = kvm_s390_get_tod_clock_fast(kvm);
Jason J. Herne72f25022014-11-25 09:46:02 -05001019 if (copy_to_user((void __user *)attr->addr, &gtod, sizeof(gtod)))
1020 return -EFAULT;
Christian Borntraeger58c383c2015-10-12 13:27:29 +02001021 VM_EVENT(kvm, 3, "QUERY: TOD base: 0x%llx", gtod);
Jason J. Herne72f25022014-11-25 09:46:02 -05001022
1023 return 0;
1024}
1025
1026static int kvm_s390_get_tod(struct kvm *kvm, struct kvm_device_attr *attr)
1027{
1028 int ret;
1029
1030 if (attr->flags)
1031 return -EINVAL;
1032
1033 switch (attr->attr) {
Collin L. Walling8fa16962016-07-26 15:29:44 -04001034 case KVM_S390_VM_TOD_EXT:
1035 ret = kvm_s390_get_tod_ext(kvm, attr);
1036 break;
Jason J. Herne72f25022014-11-25 09:46:02 -05001037 case KVM_S390_VM_TOD_HIGH:
1038 ret = kvm_s390_get_tod_high(kvm, attr);
1039 break;
1040 case KVM_S390_VM_TOD_LOW:
1041 ret = kvm_s390_get_tod_low(kvm, attr);
1042 break;
1043 default:
1044 ret = -ENXIO;
1045 break;
1046 }
1047 return ret;
1048}
1049
Michael Mueller658b6ed2015-02-02 15:49:35 +01001050static int kvm_s390_set_processor(struct kvm *kvm, struct kvm_device_attr *attr)
1051{
1052 struct kvm_s390_vm_cpu_processor *proc;
David Hildenbrand053dd232016-04-04 13:59:42 +02001053 u16 lowest_ibc, unblocked_ibc;
Michael Mueller658b6ed2015-02-02 15:49:35 +01001054 int ret = 0;
1055
1056 mutex_lock(&kvm->lock);
Paolo Bonzinia03825b2016-06-13 14:50:04 +02001057 if (kvm->created_vcpus) {
Michael Mueller658b6ed2015-02-02 15:49:35 +01001058 ret = -EBUSY;
1059 goto out;
1060 }
1061 proc = kzalloc(sizeof(*proc), GFP_KERNEL);
1062 if (!proc) {
1063 ret = -ENOMEM;
1064 goto out;
1065 }
1066 if (!copy_from_user(proc, (void __user *)attr->addr,
1067 sizeof(*proc))) {
David Hildenbrand9bb0ec02016-04-04 14:27:51 +02001068 kvm->arch.model.cpuid = proc->cpuid;
David Hildenbrand053dd232016-04-04 13:59:42 +02001069 lowest_ibc = sclp.ibc >> 16 & 0xfff;
1070 unblocked_ibc = sclp.ibc & 0xfff;
David Hildenbrand0487c442016-06-10 09:22:31 +02001071 if (lowest_ibc && proc->ibc) {
David Hildenbrand053dd232016-04-04 13:59:42 +02001072 if (proc->ibc > unblocked_ibc)
1073 kvm->arch.model.ibc = unblocked_ibc;
1074 else if (proc->ibc < lowest_ibc)
1075 kvm->arch.model.ibc = lowest_ibc;
1076 else
1077 kvm->arch.model.ibc = proc->ibc;
1078 }
David Hildenbrandc54f0d62015-12-02 08:53:52 +01001079 memcpy(kvm->arch.model.fac_list, proc->fac_list,
Michael Mueller658b6ed2015-02-02 15:49:35 +01001080 S390_ARCH_FAC_LIST_SIZE_BYTE);
Christian Borntraegera8c39dd2017-01-18 16:01:02 +01001081 VM_EVENT(kvm, 3, "SET: guest ibc: 0x%4.4x, guest cpuid: 0x%16.16llx",
1082 kvm->arch.model.ibc,
1083 kvm->arch.model.cpuid);
1084 VM_EVENT(kvm, 3, "SET: guest faclist: 0x%16.16llx.%16.16llx.%16.16llx",
1085 kvm->arch.model.fac_list[0],
1086 kvm->arch.model.fac_list[1],
1087 kvm->arch.model.fac_list[2]);
Michael Mueller658b6ed2015-02-02 15:49:35 +01001088 } else
1089 ret = -EFAULT;
1090 kfree(proc);
1091out:
1092 mutex_unlock(&kvm->lock);
1093 return ret;
1094}
1095
David Hildenbrand15c97052015-03-19 17:36:43 +01001096static int kvm_s390_set_processor_feat(struct kvm *kvm,
1097 struct kvm_device_attr *attr)
1098{
1099 struct kvm_s390_vm_cpu_feat data;
David Hildenbrand15c97052015-03-19 17:36:43 +01001100
1101 if (copy_from_user(&data, (void __user *)attr->addr, sizeof(data)))
1102 return -EFAULT;
1103 if (!bitmap_subset((unsigned long *) data.feat,
1104 kvm_s390_available_cpu_feat,
1105 KVM_S390_VM_CPU_FEAT_NR_BITS))
1106 return -EINVAL;
1107
1108 mutex_lock(&kvm->lock);
Christian Borntraeger2f8311c2017-11-16 12:30:15 +01001109 if (kvm->created_vcpus) {
1110 mutex_unlock(&kvm->lock);
1111 return -EBUSY;
David Hildenbrand15c97052015-03-19 17:36:43 +01001112 }
Christian Borntraeger2f8311c2017-11-16 12:30:15 +01001113 bitmap_copy(kvm->arch.cpu_feat, (unsigned long *) data.feat,
1114 KVM_S390_VM_CPU_FEAT_NR_BITS);
David Hildenbrand15c97052015-03-19 17:36:43 +01001115 mutex_unlock(&kvm->lock);
Christian Borntraeger2f8311c2017-11-16 12:30:15 +01001116 VM_EVENT(kvm, 3, "SET: guest feat: 0x%16.16llx.0x%16.16llx.0x%16.16llx",
1117 data.feat[0],
1118 data.feat[1],
1119 data.feat[2]);
1120 return 0;
David Hildenbrand15c97052015-03-19 17:36:43 +01001121}
1122
David Hildenbrand0a763c72016-05-18 16:03:47 +02001123static int kvm_s390_set_processor_subfunc(struct kvm *kvm,
1124 struct kvm_device_attr *attr)
1125{
1126 /*
1127 * Once supported by kernel + hw, we have to store the subfunctions
1128 * in kvm->arch and remember that user space configured them.
1129 */
1130 return -ENXIO;
1131}
1132
Michael Mueller658b6ed2015-02-02 15:49:35 +01001133static int kvm_s390_set_cpu_model(struct kvm *kvm, struct kvm_device_attr *attr)
1134{
1135 int ret = -ENXIO;
1136
1137 switch (attr->attr) {
1138 case KVM_S390_VM_CPU_PROCESSOR:
1139 ret = kvm_s390_set_processor(kvm, attr);
1140 break;
David Hildenbrand15c97052015-03-19 17:36:43 +01001141 case KVM_S390_VM_CPU_PROCESSOR_FEAT:
1142 ret = kvm_s390_set_processor_feat(kvm, attr);
1143 break;
David Hildenbrand0a763c72016-05-18 16:03:47 +02001144 case KVM_S390_VM_CPU_PROCESSOR_SUBFUNC:
1145 ret = kvm_s390_set_processor_subfunc(kvm, attr);
1146 break;
Michael Mueller658b6ed2015-02-02 15:49:35 +01001147 }
1148 return ret;
1149}
1150
1151static int kvm_s390_get_processor(struct kvm *kvm, struct kvm_device_attr *attr)
1152{
1153 struct kvm_s390_vm_cpu_processor *proc;
1154 int ret = 0;
1155
1156 proc = kzalloc(sizeof(*proc), GFP_KERNEL);
1157 if (!proc) {
1158 ret = -ENOMEM;
1159 goto out;
1160 }
David Hildenbrand9bb0ec02016-04-04 14:27:51 +02001161 proc->cpuid = kvm->arch.model.cpuid;
Michael Mueller658b6ed2015-02-02 15:49:35 +01001162 proc->ibc = kvm->arch.model.ibc;
David Hildenbrandc54f0d62015-12-02 08:53:52 +01001163 memcpy(&proc->fac_list, kvm->arch.model.fac_list,
1164 S390_ARCH_FAC_LIST_SIZE_BYTE);
Christian Borntraegera8c39dd2017-01-18 16:01:02 +01001165 VM_EVENT(kvm, 3, "GET: guest ibc: 0x%4.4x, guest cpuid: 0x%16.16llx",
1166 kvm->arch.model.ibc,
1167 kvm->arch.model.cpuid);
1168 VM_EVENT(kvm, 3, "GET: guest faclist: 0x%16.16llx.%16.16llx.%16.16llx",
1169 kvm->arch.model.fac_list[0],
1170 kvm->arch.model.fac_list[1],
1171 kvm->arch.model.fac_list[2]);
Michael Mueller658b6ed2015-02-02 15:49:35 +01001172 if (copy_to_user((void __user *)attr->addr, proc, sizeof(*proc)))
1173 ret = -EFAULT;
1174 kfree(proc);
1175out:
1176 return ret;
1177}
1178
1179static int kvm_s390_get_machine(struct kvm *kvm, struct kvm_device_attr *attr)
1180{
1181 struct kvm_s390_vm_cpu_machine *mach;
1182 int ret = 0;
1183
1184 mach = kzalloc(sizeof(*mach), GFP_KERNEL);
1185 if (!mach) {
1186 ret = -ENOMEM;
1187 goto out;
1188 }
1189 get_cpu_id((struct cpuid *) &mach->cpuid);
David Hildenbrand37c5f6c2015-05-06 13:18:59 +02001190 mach->ibc = sclp.ibc;
David Hildenbrandc54f0d62015-12-02 08:53:52 +01001191 memcpy(&mach->fac_mask, kvm->arch.model.fac_mask,
Michael Mueller981467c2015-02-24 13:51:04 +01001192 S390_ARCH_FAC_LIST_SIZE_BYTE);
Michael Mueller658b6ed2015-02-02 15:49:35 +01001193 memcpy((unsigned long *)&mach->fac_list, S390_lowcore.stfle_fac_list,
Christian Borntraeger04478192017-01-12 16:25:15 +01001194 sizeof(S390_lowcore.stfle_fac_list));
Christian Borntraegera8c39dd2017-01-18 16:01:02 +01001195 VM_EVENT(kvm, 3, "GET: host ibc: 0x%4.4x, host cpuid: 0x%16.16llx",
1196 kvm->arch.model.ibc,
1197 kvm->arch.model.cpuid);
1198 VM_EVENT(kvm, 3, "GET: host facmask: 0x%16.16llx.%16.16llx.%16.16llx",
1199 mach->fac_mask[0],
1200 mach->fac_mask[1],
1201 mach->fac_mask[2]);
1202 VM_EVENT(kvm, 3, "GET: host faclist: 0x%16.16llx.%16.16llx.%16.16llx",
1203 mach->fac_list[0],
1204 mach->fac_list[1],
1205 mach->fac_list[2]);
Michael Mueller658b6ed2015-02-02 15:49:35 +01001206 if (copy_to_user((void __user *)attr->addr, mach, sizeof(*mach)))
1207 ret = -EFAULT;
1208 kfree(mach);
1209out:
1210 return ret;
1211}
1212
David Hildenbrand15c97052015-03-19 17:36:43 +01001213static int kvm_s390_get_processor_feat(struct kvm *kvm,
1214 struct kvm_device_attr *attr)
1215{
1216 struct kvm_s390_vm_cpu_feat data;
1217
1218 bitmap_copy((unsigned long *) data.feat, kvm->arch.cpu_feat,
1219 KVM_S390_VM_CPU_FEAT_NR_BITS);
1220 if (copy_to_user((void __user *)attr->addr, &data, sizeof(data)))
1221 return -EFAULT;
Christian Borntraeger2f8311c2017-11-16 12:30:15 +01001222 VM_EVENT(kvm, 3, "GET: guest feat: 0x%16.16llx.0x%16.16llx.0x%16.16llx",
1223 data.feat[0],
1224 data.feat[1],
1225 data.feat[2]);
David Hildenbrand15c97052015-03-19 17:36:43 +01001226 return 0;
1227}
1228
1229static int kvm_s390_get_machine_feat(struct kvm *kvm,
1230 struct kvm_device_attr *attr)
1231{
1232 struct kvm_s390_vm_cpu_feat data;
1233
1234 bitmap_copy((unsigned long *) data.feat,
1235 kvm_s390_available_cpu_feat,
1236 KVM_S390_VM_CPU_FEAT_NR_BITS);
1237 if (copy_to_user((void __user *)attr->addr, &data, sizeof(data)))
1238 return -EFAULT;
Christian Borntraeger2f8311c2017-11-16 12:30:15 +01001239 VM_EVENT(kvm, 3, "GET: host feat: 0x%16.16llx.0x%16.16llx.0x%16.16llx",
1240 data.feat[0],
1241 data.feat[1],
1242 data.feat[2]);
David Hildenbrand15c97052015-03-19 17:36:43 +01001243 return 0;
1244}
1245
David Hildenbrand0a763c72016-05-18 16:03:47 +02001246static int kvm_s390_get_processor_subfunc(struct kvm *kvm,
1247 struct kvm_device_attr *attr)
1248{
1249 /*
1250 * Once we can actually configure subfunctions (kernel + hw support),
1251 * we have to check if they were already set by user space, if so copy
1252 * them from kvm->arch.
1253 */
1254 return -ENXIO;
1255}
1256
1257static int kvm_s390_get_machine_subfunc(struct kvm *kvm,
1258 struct kvm_device_attr *attr)
1259{
1260 if (copy_to_user((void __user *)attr->addr, &kvm_s390_available_subfunc,
1261 sizeof(struct kvm_s390_vm_cpu_subfunc)))
1262 return -EFAULT;
1263 return 0;
1264}
Michael Mueller658b6ed2015-02-02 15:49:35 +01001265static int kvm_s390_get_cpu_model(struct kvm *kvm, struct kvm_device_attr *attr)
1266{
1267 int ret = -ENXIO;
1268
1269 switch (attr->attr) {
1270 case KVM_S390_VM_CPU_PROCESSOR:
1271 ret = kvm_s390_get_processor(kvm, attr);
1272 break;
1273 case KVM_S390_VM_CPU_MACHINE:
1274 ret = kvm_s390_get_machine(kvm, attr);
1275 break;
David Hildenbrand15c97052015-03-19 17:36:43 +01001276 case KVM_S390_VM_CPU_PROCESSOR_FEAT:
1277 ret = kvm_s390_get_processor_feat(kvm, attr);
1278 break;
1279 case KVM_S390_VM_CPU_MACHINE_FEAT:
1280 ret = kvm_s390_get_machine_feat(kvm, attr);
1281 break;
David Hildenbrand0a763c72016-05-18 16:03:47 +02001282 case KVM_S390_VM_CPU_PROCESSOR_SUBFUNC:
1283 ret = kvm_s390_get_processor_subfunc(kvm, attr);
1284 break;
1285 case KVM_S390_VM_CPU_MACHINE_SUBFUNC:
1286 ret = kvm_s390_get_machine_subfunc(kvm, attr);
1287 break;
Michael Mueller658b6ed2015-02-02 15:49:35 +01001288 }
1289 return ret;
1290}
1291
Dominik Dingelf2061652014-04-09 13:13:00 +02001292static int kvm_s390_vm_set_attr(struct kvm *kvm, struct kvm_device_attr *attr)
1293{
1294 int ret;
1295
1296 switch (attr->group) {
Dominik Dingel4f718ea2014-04-09 13:13:00 +02001297 case KVM_S390_VM_MEM_CTRL:
Dominik Dingel8c0a7ce2014-10-31 14:10:41 +01001298 ret = kvm_s390_set_mem_control(kvm, attr);
Dominik Dingel4f718ea2014-04-09 13:13:00 +02001299 break;
Jason J. Herne72f25022014-11-25 09:46:02 -05001300 case KVM_S390_VM_TOD:
1301 ret = kvm_s390_set_tod(kvm, attr);
1302 break;
Michael Mueller658b6ed2015-02-02 15:49:35 +01001303 case KVM_S390_VM_CPU_MODEL:
1304 ret = kvm_s390_set_cpu_model(kvm, attr);
1305 break;
Tony Krowiaka374e892014-09-03 10:13:53 +02001306 case KVM_S390_VM_CRYPTO:
1307 ret = kvm_s390_vm_set_crypto(kvm, attr);
1308 break;
Claudio Imbrenda190df4a2016-08-04 17:54:42 +02001309 case KVM_S390_VM_MIGRATION:
1310 ret = kvm_s390_vm_set_migration(kvm, attr);
1311 break;
Dominik Dingelf2061652014-04-09 13:13:00 +02001312 default:
1313 ret = -ENXIO;
1314 break;
1315 }
1316
1317 return ret;
1318}
1319
1320static int kvm_s390_vm_get_attr(struct kvm *kvm, struct kvm_device_attr *attr)
1321{
Dominik Dingel8c0a7ce2014-10-31 14:10:41 +01001322 int ret;
1323
1324 switch (attr->group) {
1325 case KVM_S390_VM_MEM_CTRL:
1326 ret = kvm_s390_get_mem_control(kvm, attr);
1327 break;
Jason J. Herne72f25022014-11-25 09:46:02 -05001328 case KVM_S390_VM_TOD:
1329 ret = kvm_s390_get_tod(kvm, attr);
1330 break;
Michael Mueller658b6ed2015-02-02 15:49:35 +01001331 case KVM_S390_VM_CPU_MODEL:
1332 ret = kvm_s390_get_cpu_model(kvm, attr);
1333 break;
Claudio Imbrenda190df4a2016-08-04 17:54:42 +02001334 case KVM_S390_VM_MIGRATION:
1335 ret = kvm_s390_vm_get_migration(kvm, attr);
1336 break;
Dominik Dingel8c0a7ce2014-10-31 14:10:41 +01001337 default:
1338 ret = -ENXIO;
1339 break;
1340 }
1341
1342 return ret;
Dominik Dingelf2061652014-04-09 13:13:00 +02001343}
1344
1345static int kvm_s390_vm_has_attr(struct kvm *kvm, struct kvm_device_attr *attr)
1346{
1347 int ret;
1348
1349 switch (attr->group) {
Dominik Dingel4f718ea2014-04-09 13:13:00 +02001350 case KVM_S390_VM_MEM_CTRL:
1351 switch (attr->attr) {
1352 case KVM_S390_VM_MEM_ENABLE_CMMA:
1353 case KVM_S390_VM_MEM_CLR_CMMA:
David Hildenbrandf9cbd9b2016-03-03 09:48:47 +01001354 ret = sclp.has_cmma ? 0 : -ENXIO;
1355 break;
Dominik Dingel8c0a7ce2014-10-31 14:10:41 +01001356 case KVM_S390_VM_MEM_LIMIT_SIZE:
Dominik Dingel4f718ea2014-04-09 13:13:00 +02001357 ret = 0;
1358 break;
1359 default:
1360 ret = -ENXIO;
1361 break;
1362 }
1363 break;
Jason J. Herne72f25022014-11-25 09:46:02 -05001364 case KVM_S390_VM_TOD:
1365 switch (attr->attr) {
1366 case KVM_S390_VM_TOD_LOW:
1367 case KVM_S390_VM_TOD_HIGH:
1368 ret = 0;
1369 break;
1370 default:
1371 ret = -ENXIO;
1372 break;
1373 }
1374 break;
Michael Mueller658b6ed2015-02-02 15:49:35 +01001375 case KVM_S390_VM_CPU_MODEL:
1376 switch (attr->attr) {
1377 case KVM_S390_VM_CPU_PROCESSOR:
1378 case KVM_S390_VM_CPU_MACHINE:
David Hildenbrand15c97052015-03-19 17:36:43 +01001379 case KVM_S390_VM_CPU_PROCESSOR_FEAT:
1380 case KVM_S390_VM_CPU_MACHINE_FEAT:
David Hildenbrand0a763c72016-05-18 16:03:47 +02001381 case KVM_S390_VM_CPU_MACHINE_SUBFUNC:
Michael Mueller658b6ed2015-02-02 15:49:35 +01001382 ret = 0;
1383 break;
David Hildenbrand0a763c72016-05-18 16:03:47 +02001384 /* configuring subfunctions is not supported yet */
1385 case KVM_S390_VM_CPU_PROCESSOR_SUBFUNC:
Michael Mueller658b6ed2015-02-02 15:49:35 +01001386 default:
1387 ret = -ENXIO;
1388 break;
1389 }
1390 break;
Tony Krowiaka374e892014-09-03 10:13:53 +02001391 case KVM_S390_VM_CRYPTO:
1392 switch (attr->attr) {
1393 case KVM_S390_VM_CRYPTO_ENABLE_AES_KW:
1394 case KVM_S390_VM_CRYPTO_ENABLE_DEA_KW:
1395 case KVM_S390_VM_CRYPTO_DISABLE_AES_KW:
1396 case KVM_S390_VM_CRYPTO_DISABLE_DEA_KW:
1397 ret = 0;
1398 break;
1399 default:
1400 ret = -ENXIO;
1401 break;
1402 }
1403 break;
Claudio Imbrenda190df4a2016-08-04 17:54:42 +02001404 case KVM_S390_VM_MIGRATION:
1405 ret = 0;
1406 break;
Dominik Dingelf2061652014-04-09 13:13:00 +02001407 default:
1408 ret = -ENXIO;
1409 break;
1410 }
1411
1412 return ret;
1413}
1414
Jason J. Herne30ee2a92014-09-23 09:23:01 -04001415static long kvm_s390_get_skeys(struct kvm *kvm, struct kvm_s390_skeys *args)
1416{
1417 uint8_t *keys;
1418 uint64_t hva;
Christian Borntraeger4f899142017-07-10 13:35:48 +02001419 int srcu_idx, i, r = 0;
Jason J. Herne30ee2a92014-09-23 09:23:01 -04001420
1421 if (args->flags != 0)
1422 return -EINVAL;
1423
1424 /* Is this guest using storage keys? */
1425 if (!mm_use_skey(current->mm))
1426 return KVM_S390_GET_SKEYS_NONE;
1427
1428 /* Enforce sane limit on memory allocation */
1429 if (args->count < 1 || args->count > KVM_S390_SKEYS_MAX)
1430 return -EINVAL;
1431
Michal Hocko752ade62017-05-08 15:57:27 -07001432 keys = kvmalloc_array(args->count, sizeof(uint8_t), GFP_KERNEL);
Jason J. Herne30ee2a92014-09-23 09:23:01 -04001433 if (!keys)
1434 return -ENOMEM;
1435
Martin Schwidefskyd3ed1ce2016-03-08 11:53:35 +01001436 down_read(&current->mm->mmap_sem);
Christian Borntraeger4f899142017-07-10 13:35:48 +02001437 srcu_idx = srcu_read_lock(&kvm->srcu);
Jason J. Herne30ee2a92014-09-23 09:23:01 -04001438 for (i = 0; i < args->count; i++) {
1439 hva = gfn_to_hva(kvm, args->start_gfn + i);
1440 if (kvm_is_error_hva(hva)) {
1441 r = -EFAULT;
Martin Schwidefskyd3ed1ce2016-03-08 11:53:35 +01001442 break;
Jason J. Herne30ee2a92014-09-23 09:23:01 -04001443 }
1444
David Hildenbrand154c8c12016-05-09 11:22:34 +02001445 r = get_guest_storage_key(current->mm, hva, &keys[i]);
1446 if (r)
Martin Schwidefskyd3ed1ce2016-03-08 11:53:35 +01001447 break;
Jason J. Herne30ee2a92014-09-23 09:23:01 -04001448 }
Christian Borntraeger4f899142017-07-10 13:35:48 +02001449 srcu_read_unlock(&kvm->srcu, srcu_idx);
Martin Schwidefskyd3ed1ce2016-03-08 11:53:35 +01001450 up_read(&current->mm->mmap_sem);
Jason J. Herne30ee2a92014-09-23 09:23:01 -04001451
Martin Schwidefskyd3ed1ce2016-03-08 11:53:35 +01001452 if (!r) {
1453 r = copy_to_user((uint8_t __user *)args->skeydata_addr, keys,
1454 sizeof(uint8_t) * args->count);
1455 if (r)
1456 r = -EFAULT;
Jason J. Herne30ee2a92014-09-23 09:23:01 -04001457 }
1458
Jason J. Herne30ee2a92014-09-23 09:23:01 -04001459 kvfree(keys);
1460 return r;
1461}
1462
1463static long kvm_s390_set_skeys(struct kvm *kvm, struct kvm_s390_skeys *args)
1464{
1465 uint8_t *keys;
1466 uint64_t hva;
Christian Borntraeger4f899142017-07-10 13:35:48 +02001467 int srcu_idx, i, r = 0;
Jason J. Herne30ee2a92014-09-23 09:23:01 -04001468
1469 if (args->flags != 0)
1470 return -EINVAL;
1471
1472 /* Enforce sane limit on memory allocation */
1473 if (args->count < 1 || args->count > KVM_S390_SKEYS_MAX)
1474 return -EINVAL;
1475
Michal Hocko752ade62017-05-08 15:57:27 -07001476 keys = kvmalloc_array(args->count, sizeof(uint8_t), GFP_KERNEL);
Jason J. Herne30ee2a92014-09-23 09:23:01 -04001477 if (!keys)
1478 return -ENOMEM;
1479
1480 r = copy_from_user(keys, (uint8_t __user *)args->skeydata_addr,
1481 sizeof(uint8_t) * args->count);
1482 if (r) {
1483 r = -EFAULT;
1484 goto out;
1485 }
1486
1487 /* Enable storage key handling for the guest */
Dominik Dingel14d4a422015-05-07 15:16:13 +02001488 r = s390_enable_skey();
1489 if (r)
1490 goto out;
Jason J. Herne30ee2a92014-09-23 09:23:01 -04001491
Martin Schwidefskyd3ed1ce2016-03-08 11:53:35 +01001492 down_read(&current->mm->mmap_sem);
Christian Borntraeger4f899142017-07-10 13:35:48 +02001493 srcu_idx = srcu_read_lock(&kvm->srcu);
Jason J. Herne30ee2a92014-09-23 09:23:01 -04001494 for (i = 0; i < args->count; i++) {
1495 hva = gfn_to_hva(kvm, args->start_gfn + i);
1496 if (kvm_is_error_hva(hva)) {
1497 r = -EFAULT;
Martin Schwidefskyd3ed1ce2016-03-08 11:53:35 +01001498 break;
Jason J. Herne30ee2a92014-09-23 09:23:01 -04001499 }
1500
1501 /* Lowest order bit is reserved */
1502 if (keys[i] & 0x01) {
1503 r = -EINVAL;
Martin Schwidefskyd3ed1ce2016-03-08 11:53:35 +01001504 break;
Jason J. Herne30ee2a92014-09-23 09:23:01 -04001505 }
1506
David Hildenbrandfe69eab2016-05-09 13:08:07 +02001507 r = set_guest_storage_key(current->mm, hva, keys[i], 0);
Jason J. Herne30ee2a92014-09-23 09:23:01 -04001508 if (r)
Martin Schwidefskyd3ed1ce2016-03-08 11:53:35 +01001509 break;
Jason J. Herne30ee2a92014-09-23 09:23:01 -04001510 }
Christian Borntraeger4f899142017-07-10 13:35:48 +02001511 srcu_read_unlock(&kvm->srcu, srcu_idx);
Martin Schwidefskyd3ed1ce2016-03-08 11:53:35 +01001512 up_read(&current->mm->mmap_sem);
Jason J. Herne30ee2a92014-09-23 09:23:01 -04001513out:
1514 kvfree(keys);
1515 return r;
1516}
1517
Claudio Imbrenda4036e382016-08-04 17:58:47 +02001518/*
1519 * Base address and length must be sent at the start of each block, therefore
1520 * it's cheaper to send some clean data, as long as it's less than the size of
1521 * two longs.
1522 */
1523#define KVM_S390_MAX_BIT_DISTANCE (2 * sizeof(void *))
1524/* for consistency */
1525#define KVM_S390_CMMA_SIZE_MAX ((u32)KVM_S390_SKEYS_MAX)
1526
1527/*
1528 * This function searches for the next page with dirty CMMA attributes, and
1529 * saves the attributes in the buffer up to either the end of the buffer or
1530 * until a block of at least KVM_S390_MAX_BIT_DISTANCE clean bits is found;
1531 * no trailing clean bytes are saved.
1532 * In case no dirty bits were found, or if CMMA was not enabled or used, the
1533 * output buffer will indicate 0 as length.
1534 */
1535static int kvm_s390_get_cmma_bits(struct kvm *kvm,
1536 struct kvm_s390_cmma_log *args)
1537{
1538 struct kvm_s390_migration_state *s = kvm->arch.migration_state;
1539 unsigned long bufsize, hva, pgstev, i, next, cur;
1540 int srcu_idx, peek, r = 0, rr;
1541 u8 *res;
1542
1543 cur = args->start_gfn;
1544 i = next = pgstev = 0;
1545
1546 if (unlikely(!kvm->arch.use_cmma))
1547 return -ENXIO;
1548 /* Invalid/unsupported flags were specified */
1549 if (args->flags & ~KVM_S390_CMMA_PEEK)
1550 return -EINVAL;
1551 /* Migration mode query, and we are not doing a migration */
1552 peek = !!(args->flags & KVM_S390_CMMA_PEEK);
1553 if (!peek && !s)
1554 return -EINVAL;
1555 /* CMMA is disabled or was not used, or the buffer has length zero */
1556 bufsize = min(args->count, KVM_S390_CMMA_SIZE_MAX);
1557 if (!bufsize || !kvm->mm->context.use_cmma) {
1558 memset(args, 0, sizeof(*args));
1559 return 0;
1560 }
1561
1562 if (!peek) {
1563 /* We are not peeking, and there are no dirty pages */
1564 if (!atomic64_read(&s->dirty_pages)) {
1565 memset(args, 0, sizeof(*args));
1566 return 0;
1567 }
1568 cur = find_next_bit(s->pgste_bitmap, s->bitmap_size,
1569 args->start_gfn);
1570 if (cur >= s->bitmap_size) /* nothing found, loop back */
1571 cur = find_next_bit(s->pgste_bitmap, s->bitmap_size, 0);
1572 if (cur >= s->bitmap_size) { /* again! (very unlikely) */
1573 memset(args, 0, sizeof(*args));
1574 return 0;
1575 }
1576 next = find_next_bit(s->pgste_bitmap, s->bitmap_size, cur + 1);
1577 }
1578
1579 res = vmalloc(bufsize);
1580 if (!res)
1581 return -ENOMEM;
1582
1583 args->start_gfn = cur;
1584
1585 down_read(&kvm->mm->mmap_sem);
1586 srcu_idx = srcu_read_lock(&kvm->srcu);
1587 while (i < bufsize) {
1588 hva = gfn_to_hva(kvm, cur);
1589 if (kvm_is_error_hva(hva)) {
1590 r = -EFAULT;
1591 break;
1592 }
1593 /* decrement only if we actually flipped the bit to 0 */
1594 if (!peek && test_and_clear_bit(cur, s->pgste_bitmap))
1595 atomic64_dec(&s->dirty_pages);
1596 r = get_pgste(kvm->mm, hva, &pgstev);
1597 if (r < 0)
1598 pgstev = 0;
1599 /* save the value */
Claudio Imbrenda1bab1c02016-08-29 15:56:55 +02001600 res[i++] = (pgstev >> 24) & 0x43;
Claudio Imbrenda4036e382016-08-04 17:58:47 +02001601 /*
1602 * if the next bit is too far away, stop.
1603 * if we reached the previous "next", find the next one
1604 */
1605 if (!peek) {
1606 if (next > cur + KVM_S390_MAX_BIT_DISTANCE)
1607 break;
1608 if (cur == next)
1609 next = find_next_bit(s->pgste_bitmap,
1610 s->bitmap_size, cur + 1);
1611 /* reached the end of the bitmap or of the buffer, stop */
1612 if ((next >= s->bitmap_size) ||
1613 (next >= args->start_gfn + bufsize))
1614 break;
1615 }
1616 cur++;
1617 }
1618 srcu_read_unlock(&kvm->srcu, srcu_idx);
1619 up_read(&kvm->mm->mmap_sem);
1620 args->count = i;
1621 args->remaining = s ? atomic64_read(&s->dirty_pages) : 0;
1622
1623 rr = copy_to_user((void __user *)args->values, res, args->count);
1624 if (rr)
1625 r = -EFAULT;
1626
1627 vfree(res);
1628 return r;
1629}
1630
1631/*
1632 * This function sets the CMMA attributes for the given pages. If the input
1633 * buffer has zero length, no action is taken, otherwise the attributes are
1634 * set and the mm->context.use_cmma flag is set.
1635 */
1636static int kvm_s390_set_cmma_bits(struct kvm *kvm,
1637 const struct kvm_s390_cmma_log *args)
1638{
1639 unsigned long hva, mask, pgstev, i;
1640 uint8_t *bits;
1641 int srcu_idx, r = 0;
1642
1643 mask = args->mask;
1644
1645 if (!kvm->arch.use_cmma)
1646 return -ENXIO;
1647 /* invalid/unsupported flags */
1648 if (args->flags != 0)
1649 return -EINVAL;
1650 /* Enforce sane limit on memory allocation */
1651 if (args->count > KVM_S390_CMMA_SIZE_MAX)
1652 return -EINVAL;
1653 /* Nothing to do */
1654 if (args->count == 0)
1655 return 0;
1656
1657 bits = vmalloc(sizeof(*bits) * args->count);
1658 if (!bits)
1659 return -ENOMEM;
1660
1661 r = copy_from_user(bits, (void __user *)args->values, args->count);
1662 if (r) {
1663 r = -EFAULT;
1664 goto out;
1665 }
1666
1667 down_read(&kvm->mm->mmap_sem);
1668 srcu_idx = srcu_read_lock(&kvm->srcu);
1669 for (i = 0; i < args->count; i++) {
1670 hva = gfn_to_hva(kvm, args->start_gfn + i);
1671 if (kvm_is_error_hva(hva)) {
1672 r = -EFAULT;
1673 break;
1674 }
1675
1676 pgstev = bits[i];
1677 pgstev = pgstev << 24;
Claudio Imbrenda1bab1c02016-08-29 15:56:55 +02001678 mask &= _PGSTE_GPS_USAGE_MASK | _PGSTE_GPS_NODAT;
Claudio Imbrenda4036e382016-08-04 17:58:47 +02001679 set_pgste_bits(kvm->mm, hva, mask, pgstev);
1680 }
1681 srcu_read_unlock(&kvm->srcu, srcu_idx);
1682 up_read(&kvm->mm->mmap_sem);
1683
1684 if (!kvm->mm->context.use_cmma) {
1685 down_write(&kvm->mm->mmap_sem);
1686 kvm->mm->context.use_cmma = 1;
1687 up_write(&kvm->mm->mmap_sem);
1688 }
1689out:
1690 vfree(bits);
1691 return r;
1692}
1693
Heiko Carstensb0c632d2008-03-25 18:47:20 +01001694long kvm_arch_vm_ioctl(struct file *filp,
1695 unsigned int ioctl, unsigned long arg)
1696{
1697 struct kvm *kvm = filp->private_data;
1698 void __user *argp = (void __user *)arg;
Dominik Dingelf2061652014-04-09 13:13:00 +02001699 struct kvm_device_attr attr;
Heiko Carstensb0c632d2008-03-25 18:47:20 +01001700 int r;
1701
1702 switch (ioctl) {
Carsten Otteba5c1e92008-03-25 18:47:26 +01001703 case KVM_S390_INTERRUPT: {
1704 struct kvm_s390_interrupt s390int;
1705
1706 r = -EFAULT;
1707 if (copy_from_user(&s390int, argp, sizeof(s390int)))
1708 break;
1709 r = kvm_s390_inject_vm(kvm, &s390int);
1710 break;
1711 }
Cornelia Huckd938dc52013-10-23 18:26:34 +02001712 case KVM_ENABLE_CAP: {
1713 struct kvm_enable_cap cap;
1714 r = -EFAULT;
1715 if (copy_from_user(&cap, argp, sizeof(cap)))
1716 break;
1717 r = kvm_vm_ioctl_enable_cap(kvm, &cap);
1718 break;
1719 }
Cornelia Huck84223592013-07-15 13:36:01 +02001720 case KVM_CREATE_IRQCHIP: {
1721 struct kvm_irq_routing_entry routing;
1722
1723 r = -EINVAL;
1724 if (kvm->arch.use_irqchip) {
1725 /* Set up dummy routing. */
1726 memset(&routing, 0, sizeof(routing));
Nicholas Krause152b2832015-08-06 13:05:54 -04001727 r = kvm_set_irq_routing(kvm, &routing, 0, 0);
Cornelia Huck84223592013-07-15 13:36:01 +02001728 }
1729 break;
1730 }
Dominik Dingelf2061652014-04-09 13:13:00 +02001731 case KVM_SET_DEVICE_ATTR: {
1732 r = -EFAULT;
1733 if (copy_from_user(&attr, (void __user *)arg, sizeof(attr)))
1734 break;
1735 r = kvm_s390_vm_set_attr(kvm, &attr);
1736 break;
1737 }
1738 case KVM_GET_DEVICE_ATTR: {
1739 r = -EFAULT;
1740 if (copy_from_user(&attr, (void __user *)arg, sizeof(attr)))
1741 break;
1742 r = kvm_s390_vm_get_attr(kvm, &attr);
1743 break;
1744 }
1745 case KVM_HAS_DEVICE_ATTR: {
1746 r = -EFAULT;
1747 if (copy_from_user(&attr, (void __user *)arg, sizeof(attr)))
1748 break;
1749 r = kvm_s390_vm_has_attr(kvm, &attr);
1750 break;
1751 }
Jason J. Herne30ee2a92014-09-23 09:23:01 -04001752 case KVM_S390_GET_SKEYS: {
1753 struct kvm_s390_skeys args;
1754
1755 r = -EFAULT;
1756 if (copy_from_user(&args, argp,
1757 sizeof(struct kvm_s390_skeys)))
1758 break;
1759 r = kvm_s390_get_skeys(kvm, &args);
1760 break;
1761 }
1762 case KVM_S390_SET_SKEYS: {
1763 struct kvm_s390_skeys args;
1764
1765 r = -EFAULT;
1766 if (copy_from_user(&args, argp,
1767 sizeof(struct kvm_s390_skeys)))
1768 break;
1769 r = kvm_s390_set_skeys(kvm, &args);
1770 break;
1771 }
Claudio Imbrenda4036e382016-08-04 17:58:47 +02001772 case KVM_S390_GET_CMMA_BITS: {
1773 struct kvm_s390_cmma_log args;
1774
1775 r = -EFAULT;
1776 if (copy_from_user(&args, argp, sizeof(args)))
1777 break;
1778 r = kvm_s390_get_cmma_bits(kvm, &args);
1779 if (!r) {
1780 r = copy_to_user(argp, &args, sizeof(args));
1781 if (r)
1782 r = -EFAULT;
1783 }
1784 break;
1785 }
1786 case KVM_S390_SET_CMMA_BITS: {
1787 struct kvm_s390_cmma_log args;
1788
1789 r = -EFAULT;
1790 if (copy_from_user(&args, argp, sizeof(args)))
1791 break;
1792 r = kvm_s390_set_cmma_bits(kvm, &args);
1793 break;
1794 }
Heiko Carstensb0c632d2008-03-25 18:47:20 +01001795 default:
Avi Kivity367e1312009-08-26 14:57:07 +03001796 r = -ENOTTY;
Heiko Carstensb0c632d2008-03-25 18:47:20 +01001797 }
1798
1799 return r;
1800}
1801
Tony Krowiak45c9b472015-01-13 11:33:26 -05001802static int kvm_s390_query_ap_config(u8 *config)
1803{
1804 u32 fcn_code = 0x04000000UL;
Christian Borntraeger86044c82015-02-26 13:53:47 +01001805 u32 cc = 0;
Tony Krowiak45c9b472015-01-13 11:33:26 -05001806
Christian Borntraeger86044c82015-02-26 13:53:47 +01001807 memset(config, 0, 128);
Tony Krowiak45c9b472015-01-13 11:33:26 -05001808 asm volatile(
1809 "lgr 0,%1\n"
1810 "lgr 2,%2\n"
1811 ".long 0xb2af0000\n" /* PQAP(QCI) */
Christian Borntraeger86044c82015-02-26 13:53:47 +01001812 "0: ipm %0\n"
Tony Krowiak45c9b472015-01-13 11:33:26 -05001813 "srl %0,28\n"
Christian Borntraeger86044c82015-02-26 13:53:47 +01001814 "1:\n"
1815 EX_TABLE(0b, 1b)
1816 : "+r" (cc)
Tony Krowiak45c9b472015-01-13 11:33:26 -05001817 : "r" (fcn_code), "r" (config)
1818 : "cc", "0", "2", "memory"
1819 );
1820
1821 return cc;
1822}
1823
1824static int kvm_s390_apxa_installed(void)
1825{
1826 u8 config[128];
1827 int cc;
1828
Heiko Carstensa6aacc32015-11-24 14:28:12 +01001829 if (test_facility(12)) {
Tony Krowiak45c9b472015-01-13 11:33:26 -05001830 cc = kvm_s390_query_ap_config(config);
1831
1832 if (cc)
1833 pr_err("PQAP(QCI) failed with cc=%d", cc);
1834 else
1835 return config[0] & 0x40;
1836 }
1837
1838 return 0;
1839}
1840
1841static void kvm_s390_set_crycb_format(struct kvm *kvm)
1842{
1843 kvm->arch.crypto.crycbd = (__u32)(unsigned long) kvm->arch.crypto.crycb;
1844
1845 if (kvm_s390_apxa_installed())
1846 kvm->arch.crypto.crycbd |= CRYCB_FORMAT2;
1847 else
1848 kvm->arch.crypto.crycbd |= CRYCB_FORMAT1;
1849}
1850
David Hildenbrand9bb0ec02016-04-04 14:27:51 +02001851static u64 kvm_s390_get_initial_cpuid(void)
Michael Mueller9d8d5782015-02-02 15:42:51 +01001852{
David Hildenbrand9bb0ec02016-04-04 14:27:51 +02001853 struct cpuid cpuid;
1854
1855 get_cpu_id(&cpuid);
1856 cpuid.version = 0xff;
1857 return *((u64 *) &cpuid);
Michael Mueller9d8d5782015-02-02 15:42:51 +01001858}
1859
David Hildenbrandc54f0d62015-12-02 08:53:52 +01001860static void kvm_s390_crypto_init(struct kvm *kvm)
Tony Krowiak5102ee82014-06-27 14:46:01 -04001861{
Michael Mueller9d8d5782015-02-02 15:42:51 +01001862 if (!test_kvm_facility(kvm, 76))
David Hildenbrandc54f0d62015-12-02 08:53:52 +01001863 return;
Tony Krowiak5102ee82014-06-27 14:46:01 -04001864
David Hildenbrandc54f0d62015-12-02 08:53:52 +01001865 kvm->arch.crypto.crycb = &kvm->arch.sie_page2->crycb;
Tony Krowiak45c9b472015-01-13 11:33:26 -05001866 kvm_s390_set_crycb_format(kvm);
Tony Krowiak5102ee82014-06-27 14:46:01 -04001867
Tony Krowiaked6f76b2015-02-24 14:06:57 -05001868 /* Enable AES/DEA protected key functions by default */
1869 kvm->arch.crypto.aes_kw = 1;
1870 kvm->arch.crypto.dea_kw = 1;
1871 get_random_bytes(kvm->arch.crypto.crycb->aes_wrapping_key_mask,
1872 sizeof(kvm->arch.crypto.crycb->aes_wrapping_key_mask));
1873 get_random_bytes(kvm->arch.crypto.crycb->dea_wrapping_key_mask,
1874 sizeof(kvm->arch.crypto.crycb->dea_wrapping_key_mask));
Tony Krowiak5102ee82014-06-27 14:46:01 -04001875}
1876
Eugene (jno) Dvurechenski7d43bafcf2015-04-22 17:09:44 +02001877static void sca_dispose(struct kvm *kvm)
1878{
1879 if (kvm->arch.use_esca)
Eugene (jno) Dvurechenski5e044312015-04-22 18:08:39 +02001880 free_pages_exact(kvm->arch.sca, sizeof(struct esca_block));
Eugene (jno) Dvurechenski7d43bafcf2015-04-22 17:09:44 +02001881 else
1882 free_page((unsigned long)(kvm->arch.sca));
1883 kvm->arch.sca = NULL;
1884}
1885
Carsten Ottee08b9632012-01-04 10:25:20 +01001886int kvm_arch_init_vm(struct kvm *kvm, unsigned long type)
Heiko Carstensb0c632d2008-03-25 18:47:20 +01001887{
David Hildenbrand76a6dd72015-11-24 13:33:49 +01001888 gfp_t alloc_flags = GFP_KERNEL;
Michael Mueller9d8d5782015-02-02 15:42:51 +01001889 int i, rc;
Heiko Carstensb0c632d2008-03-25 18:47:20 +01001890 char debug_name[16];
Christian Borntraegerf6c137f2014-03-19 11:18:29 +01001891 static unsigned long sca_offset;
Heiko Carstensb0c632d2008-03-25 18:47:20 +01001892
Carsten Ottee08b9632012-01-04 10:25:20 +01001893 rc = -EINVAL;
1894#ifdef CONFIG_KVM_S390_UCONTROL
1895 if (type & ~KVM_VM_S390_UCONTROL)
1896 goto out_err;
1897 if ((type & KVM_VM_S390_UCONTROL) && (!capable(CAP_SYS_ADMIN)))
1898 goto out_err;
1899#else
1900 if (type)
1901 goto out_err;
1902#endif
1903
Heiko Carstensb0c632d2008-03-25 18:47:20 +01001904 rc = s390_enable_sie();
1905 if (rc)
Jan Kiszkad89f5ef2010-11-09 17:02:49 +01001906 goto out_err;
Heiko Carstensb0c632d2008-03-25 18:47:20 +01001907
Carsten Otteb2904112011-10-18 12:27:13 +02001908 rc = -ENOMEM;
1909
Eugene (jno) Dvurechenski7d43bafcf2015-04-22 17:09:44 +02001910 kvm->arch.use_esca = 0; /* start with basic SCA */
David Hildenbrand76a6dd72015-11-24 13:33:49 +01001911 if (!sclp.has_64bscao)
1912 alloc_flags |= GFP_DMA;
Eugene (jno) Dvurechenski5e044312015-04-22 18:08:39 +02001913 rwlock_init(&kvm->arch.sca_lock);
David Hildenbrand76a6dd72015-11-24 13:33:49 +01001914 kvm->arch.sca = (struct bsca_block *) get_zeroed_page(alloc_flags);
Heiko Carstensb0c632d2008-03-25 18:47:20 +01001915 if (!kvm->arch.sca)
Jan Kiszkad89f5ef2010-11-09 17:02:49 +01001916 goto out_err;
Christian Borntraegerf6c137f2014-03-19 11:18:29 +01001917 spin_lock(&kvm_lock);
David Hildenbrandc5c2c392015-10-26 08:41:29 +01001918 sca_offset += 16;
Eugene (jno) Dvurechenskibc784cc2015-04-23 16:09:06 +02001919 if (sca_offset + sizeof(struct bsca_block) > PAGE_SIZE)
David Hildenbrandc5c2c392015-10-26 08:41:29 +01001920 sca_offset = 0;
Eugene (jno) Dvurechenskibc784cc2015-04-23 16:09:06 +02001921 kvm->arch.sca = (struct bsca_block *)
1922 ((char *) kvm->arch.sca + sca_offset);
Christian Borntraegerf6c137f2014-03-19 11:18:29 +01001923 spin_unlock(&kvm_lock);
Heiko Carstensb0c632d2008-03-25 18:47:20 +01001924
1925 sprintf(debug_name, "kvm-%u", current->pid);
1926
Christian Borntraeger1cb9cf72015-07-20 15:04:48 +02001927 kvm->arch.dbf = debug_register(debug_name, 32, 1, 7 * sizeof(long));
Heiko Carstensb0c632d2008-03-25 18:47:20 +01001928 if (!kvm->arch.dbf)
Dominik Dingel40f5b732015-03-12 13:55:53 +01001929 goto out_err;
Heiko Carstensb0c632d2008-03-25 18:47:20 +01001930
David Hildenbrandc54f0d62015-12-02 08:53:52 +01001931 kvm->arch.sie_page2 =
1932 (struct sie_page2 *) get_zeroed_page(GFP_KERNEL | GFP_DMA);
1933 if (!kvm->arch.sie_page2)
Dominik Dingel40f5b732015-03-12 13:55:53 +01001934 goto out_err;
Michael Mueller9d8d5782015-02-02 15:42:51 +01001935
Michael Muellerfb5bf932015-02-27 14:25:10 +01001936 /* Populate the facility mask initially. */
David Hildenbrandc54f0d62015-12-02 08:53:52 +01001937 memcpy(kvm->arch.model.fac_mask, S390_lowcore.stfle_fac_list,
Christian Borntraeger04478192017-01-12 16:25:15 +01001938 sizeof(S390_lowcore.stfle_fac_list));
Michael Mueller9d8d5782015-02-02 15:42:51 +01001939 for (i = 0; i < S390_ARCH_FAC_LIST_SIZE_U64; i++) {
1940 if (i < kvm_s390_fac_list_mask_size())
David Hildenbrandc54f0d62015-12-02 08:53:52 +01001941 kvm->arch.model.fac_mask[i] &= kvm_s390_fac_list_mask[i];
Michael Mueller9d8d5782015-02-02 15:42:51 +01001942 else
David Hildenbrandc54f0d62015-12-02 08:53:52 +01001943 kvm->arch.model.fac_mask[i] = 0UL;
Michael Mueller9d8d5782015-02-02 15:42:51 +01001944 }
1945
Michael Mueller981467c2015-02-24 13:51:04 +01001946 /* Populate the facility list initially. */
David Hildenbrandc54f0d62015-12-02 08:53:52 +01001947 kvm->arch.model.fac_list = kvm->arch.sie_page2->fac_list;
1948 memcpy(kvm->arch.model.fac_list, kvm->arch.model.fac_mask,
Michael Mueller981467c2015-02-24 13:51:04 +01001949 S390_ARCH_FAC_LIST_SIZE_BYTE);
1950
David Hildenbrand19352222017-08-29 16:31:08 +02001951 /* we are always in czam mode - even on pre z14 machines */
1952 set_kvm_facility(kvm->arch.model.fac_mask, 138);
1953 set_kvm_facility(kvm->arch.model.fac_list, 138);
1954 /* we emulate STHYI in kvm */
Janosch Frank95ca2cb2016-05-23 15:11:58 +02001955 set_kvm_facility(kvm->arch.model.fac_mask, 74);
1956 set_kvm_facility(kvm->arch.model.fac_list, 74);
Claudio Imbrenda1bab1c02016-08-29 15:56:55 +02001957 if (MACHINE_HAS_TLB_GUEST) {
1958 set_kvm_facility(kvm->arch.model.fac_mask, 147);
1959 set_kvm_facility(kvm->arch.model.fac_list, 147);
1960 }
Janosch Frank95ca2cb2016-05-23 15:11:58 +02001961
David Hildenbrand9bb0ec02016-04-04 14:27:51 +02001962 kvm->arch.model.cpuid = kvm_s390_get_initial_cpuid();
David Hildenbrand37c5f6c2015-05-06 13:18:59 +02001963 kvm->arch.model.ibc = sclp.ibc & 0x0fff;
Michael Mueller9d8d5782015-02-02 15:42:51 +01001964
David Hildenbrandc54f0d62015-12-02 08:53:52 +01001965 kvm_s390_crypto_init(kvm);
Tony Krowiak5102ee82014-06-27 14:46:01 -04001966
Fei Li51978392017-02-17 17:06:26 +08001967 mutex_init(&kvm->arch.float_int.ais_lock);
1968 kvm->arch.float_int.simm = 0;
1969 kvm->arch.float_int.nimm = 0;
Carsten Otteba5c1e92008-03-25 18:47:26 +01001970 spin_lock_init(&kvm->arch.float_int.lock);
Jens Freimann6d3da242013-07-03 15:18:35 +02001971 for (i = 0; i < FIRQ_LIST_COUNT; i++)
1972 INIT_LIST_HEAD(&kvm->arch.float_int.lists[i]);
Heiko Carstens8a2422342014-01-10 14:33:28 +01001973 init_waitqueue_head(&kvm->arch.ipte_wq);
Thomas Hutha6b7e452014-10-01 14:48:42 +02001974 mutex_init(&kvm->arch.ipte_mutex);
Carsten Otteba5c1e92008-03-25 18:47:26 +01001975
Heiko Carstensb0c632d2008-03-25 18:47:20 +01001976 debug_register_view(kvm->arch.dbf, &debug_sprintf_view);
Christian Borntraeger78f26132015-07-22 15:50:58 +02001977 VM_EVENT(kvm, 3, "vm created with type %lu", type);
Heiko Carstensb0c632d2008-03-25 18:47:20 +01001978
Carsten Ottee08b9632012-01-04 10:25:20 +01001979 if (type & KVM_VM_S390_UCONTROL) {
1980 kvm->arch.gmap = NULL;
Dominik Dingela3a92c32014-12-01 17:24:42 +01001981 kvm->arch.mem_limit = KVM_S390_NO_MEM_LIMIT;
Carsten Ottee08b9632012-01-04 10:25:20 +01001982 } else {
Guenther Hutzl32e6b232014-12-01 17:24:42 +01001983 if (sclp.hamax == U64_MAX)
Martin Schwidefskyee71d162017-04-20 14:43:51 +02001984 kvm->arch.mem_limit = TASK_SIZE_MAX;
Guenther Hutzl32e6b232014-12-01 17:24:42 +01001985 else
Martin Schwidefskyee71d162017-04-20 14:43:51 +02001986 kvm->arch.mem_limit = min_t(unsigned long, TASK_SIZE_MAX,
Guenther Hutzl32e6b232014-12-01 17:24:42 +01001987 sclp.hamax + 1);
Martin Schwidefsky6ea427b2016-03-08 11:55:04 +01001988 kvm->arch.gmap = gmap_create(current->mm, kvm->arch.mem_limit - 1);
Carsten Ottee08b9632012-01-04 10:25:20 +01001989 if (!kvm->arch.gmap)
Dominik Dingel40f5b732015-03-12 13:55:53 +01001990 goto out_err;
Christian Borntraeger2c70fe42013-05-17 14:41:36 +02001991 kvm->arch.gmap->private = kvm;
Dominik Dingel24eb3a82013-06-17 16:25:18 +02001992 kvm->arch.gmap->pfault_enabled = 0;
Carsten Ottee08b9632012-01-04 10:25:20 +01001993 }
Cornelia Huckfa6b7fe2012-12-20 15:32:12 +01001994
1995 kvm->arch.css_support = 0;
Cornelia Huck84223592013-07-15 13:36:01 +02001996 kvm->arch.use_irqchip = 0;
Jason J. Herne72f25022014-11-25 09:46:02 -05001997 kvm->arch.epoch = 0;
Cornelia Huckfa6b7fe2012-12-20 15:32:12 +01001998
David Hildenbrand8ad35752014-03-14 11:00:21 +01001999 spin_lock_init(&kvm->arch.start_stop_lock);
David Hildenbranda3508fb2015-07-08 13:19:48 +02002000 kvm_s390_vsie_init(kvm);
Christian Borntraeger8335713a2015-12-08 16:55:27 +01002001 KVM_EVENT(3, "vm 0x%pK created by pid %u", kvm, current->pid);
David Hildenbrand8ad35752014-03-14 11:00:21 +01002002
Jan Kiszkad89f5ef2010-11-09 17:02:49 +01002003 return 0;
Jan Kiszkad89f5ef2010-11-09 17:02:49 +01002004out_err:
David Hildenbrandc54f0d62015-12-02 08:53:52 +01002005 free_page((unsigned long)kvm->arch.sie_page2);
Dominik Dingel40f5b732015-03-12 13:55:53 +01002006 debug_unregister(kvm->arch.dbf);
Eugene (jno) Dvurechenski7d43bafcf2015-04-22 17:09:44 +02002007 sca_dispose(kvm);
Christian Borntraeger78f26132015-07-22 15:50:58 +02002008 KVM_EVENT(3, "creation of vm failed: %d", rc);
Jan Kiszkad89f5ef2010-11-09 17:02:49 +01002009 return rc;
Heiko Carstensb0c632d2008-03-25 18:47:20 +01002010}
2011
Luiz Capitulino235539b2016-09-07 14:47:23 -04002012bool kvm_arch_has_vcpu_debugfs(void)
2013{
2014 return false;
2015}
2016
2017int kvm_arch_create_vcpu_debugfs(struct kvm_vcpu *vcpu)
2018{
2019 return 0;
2020}
2021
Christian Borntraegerd329c032008-11-26 14:50:27 +01002022void kvm_arch_vcpu_destroy(struct kvm_vcpu *vcpu)
2023{
2024 VCPU_EVENT(vcpu, 3, "%s", "free cpu");
Cornelia Huckade38c32012-07-23 17:20:30 +02002025 trace_kvm_s390_destroy_vcpu(vcpu->vcpu_id);
Christian Borntraeger67335e62014-03-25 17:09:08 +01002026 kvm_s390_clear_local_irqs(vcpu);
Dominik Dingel3c038e62013-10-07 17:11:48 +02002027 kvm_clear_async_pf_completion_queue(vcpu);
Eugene (jno) Dvurechenskibc784cc2015-04-23 16:09:06 +02002028 if (!kvm_is_ucontrol(vcpu->kvm))
Eugene (jno) Dvurechenskia6e2f682015-04-21 15:31:59 +02002029 sca_del_vcpu(vcpu);
Carsten Otte27e03932012-01-04 10:25:21 +01002030
2031 if (kvm_is_ucontrol(vcpu->kvm))
Martin Schwidefsky6ea427b2016-03-08 11:55:04 +01002032 gmap_remove(vcpu->arch.gmap);
Carsten Otte27e03932012-01-04 10:25:21 +01002033
Dominik Dingele6db1d62015-05-07 15:41:57 +02002034 if (vcpu->kvm->arch.use_cmma)
Dominik Dingelb31605c2014-03-25 13:47:11 +01002035 kvm_s390_vcpu_unsetup_cmma(vcpu);
Christian Borntraegerd329c032008-11-26 14:50:27 +01002036 free_page((unsigned long)(vcpu->arch.sie_block));
Konstantin Weitzb31288f2013-04-17 17:36:29 +02002037
Christian Borntraeger6692cef2008-11-26 14:51:08 +01002038 kvm_vcpu_uninit(vcpu);
Michael Muellerb110fea2013-06-12 13:54:54 +02002039 kmem_cache_free(kvm_vcpu_cache, vcpu);
Christian Borntraegerd329c032008-11-26 14:50:27 +01002040}
2041
2042static void kvm_free_vcpus(struct kvm *kvm)
2043{
2044 unsigned int i;
Gleb Natapov988a2ca2009-06-09 15:56:29 +03002045 struct kvm_vcpu *vcpu;
Christian Borntraegerd329c032008-11-26 14:50:27 +01002046
Gleb Natapov988a2ca2009-06-09 15:56:29 +03002047 kvm_for_each_vcpu(i, vcpu, kvm)
2048 kvm_arch_vcpu_destroy(vcpu);
2049
2050 mutex_lock(&kvm->lock);
2051 for (i = 0; i < atomic_read(&kvm->online_vcpus); i++)
2052 kvm->vcpus[i] = NULL;
2053
2054 atomic_set(&kvm->online_vcpus, 0);
2055 mutex_unlock(&kvm->lock);
Christian Borntraegerd329c032008-11-26 14:50:27 +01002056}
2057
Heiko Carstensb0c632d2008-03-25 18:47:20 +01002058void kvm_arch_destroy_vm(struct kvm *kvm)
2059{
Christian Borntraegerd329c032008-11-26 14:50:27 +01002060 kvm_free_vcpus(kvm);
Eugene (jno) Dvurechenski7d43bafcf2015-04-22 17:09:44 +02002061 sca_dispose(kvm);
Christian Borntraegerd329c032008-11-26 14:50:27 +01002062 debug_unregister(kvm->arch.dbf);
David Hildenbrandc54f0d62015-12-02 08:53:52 +01002063 free_page((unsigned long)kvm->arch.sie_page2);
Carsten Otte27e03932012-01-04 10:25:21 +01002064 if (!kvm_is_ucontrol(kvm))
Martin Schwidefsky6ea427b2016-03-08 11:55:04 +01002065 gmap_remove(kvm->arch.gmap);
Cornelia Huck841b91c2013-07-15 13:36:01 +02002066 kvm_s390_destroy_adapters(kvm);
Christian Borntraeger67335e62014-03-25 17:09:08 +01002067 kvm_s390_clear_float_irqs(kvm);
David Hildenbranda3508fb2015-07-08 13:19:48 +02002068 kvm_s390_vsie_destroy(kvm);
Claudio Imbrenda190df4a2016-08-04 17:54:42 +02002069 if (kvm->arch.migration_state) {
2070 vfree(kvm->arch.migration_state->pgste_bitmap);
2071 kfree(kvm->arch.migration_state);
2072 }
Christian Borntraeger8335713a2015-12-08 16:55:27 +01002073 KVM_EVENT(3, "vm 0x%pK destroyed", kvm);
Heiko Carstensb0c632d2008-03-25 18:47:20 +01002074}
2075
2076/* Section: vcpu related */
Dominik Dingeldafd0322014-12-02 16:53:21 +01002077static int __kvm_ucontrol_vcpu_init(struct kvm_vcpu *vcpu)
2078{
Martin Schwidefsky6ea427b2016-03-08 11:55:04 +01002079 vcpu->arch.gmap = gmap_create(current->mm, -1UL);
Dominik Dingeldafd0322014-12-02 16:53:21 +01002080 if (!vcpu->arch.gmap)
2081 return -ENOMEM;
2082 vcpu->arch.gmap->private = vcpu->kvm;
2083
2084 return 0;
2085}
2086
Eugene (jno) Dvurechenskia6e2f682015-04-21 15:31:59 +02002087static void sca_del_vcpu(struct kvm_vcpu *vcpu)
2088{
David Hildenbranda6940672016-08-08 22:39:32 +02002089 if (!kvm_s390_use_sca_entries())
2090 return;
Eugene (jno) Dvurechenski5e044312015-04-22 18:08:39 +02002091 read_lock(&vcpu->kvm->arch.sca_lock);
Eugene (jno) Dvurechenski7d43bafcf2015-04-22 17:09:44 +02002092 if (vcpu->kvm->arch.use_esca) {
2093 struct esca_block *sca = vcpu->kvm->arch.sca;
Eugene (jno) Dvurechenskia6e2f682015-04-21 15:31:59 +02002094
Eugene (jno) Dvurechenski7d43bafcf2015-04-22 17:09:44 +02002095 clear_bit_inv(vcpu->vcpu_id, (unsigned long *) sca->mcn);
David Hildenbrand10ce32d2015-10-12 12:41:41 +02002096 sca->cpu[vcpu->vcpu_id].sda = 0;
Eugene (jno) Dvurechenski7d43bafcf2015-04-22 17:09:44 +02002097 } else {
2098 struct bsca_block *sca = vcpu->kvm->arch.sca;
2099
2100 clear_bit_inv(vcpu->vcpu_id, (unsigned long *) &sca->mcn);
David Hildenbrand10ce32d2015-10-12 12:41:41 +02002101 sca->cpu[vcpu->vcpu_id].sda = 0;
Eugene (jno) Dvurechenski7d43bafcf2015-04-22 17:09:44 +02002102 }
Eugene (jno) Dvurechenski5e044312015-04-22 18:08:39 +02002103 read_unlock(&vcpu->kvm->arch.sca_lock);
Eugene (jno) Dvurechenskia6e2f682015-04-21 15:31:59 +02002104}
2105
David Hildenbrandeaa78f32015-10-12 16:29:01 +02002106static void sca_add_vcpu(struct kvm_vcpu *vcpu)
Eugene (jno) Dvurechenskia6e2f682015-04-21 15:31:59 +02002107{
David Hildenbranda6940672016-08-08 22:39:32 +02002108 if (!kvm_s390_use_sca_entries()) {
2109 struct bsca_block *sca = vcpu->kvm->arch.sca;
2110
2111 /* we still need the basic sca for the ipte control */
2112 vcpu->arch.sie_block->scaoh = (__u32)(((__u64)sca) >> 32);
2113 vcpu->arch.sie_block->scaol = (__u32)(__u64)sca;
2114 }
David Hildenbrandeaa78f32015-10-12 16:29:01 +02002115 read_lock(&vcpu->kvm->arch.sca_lock);
2116 if (vcpu->kvm->arch.use_esca) {
2117 struct esca_block *sca = vcpu->kvm->arch.sca;
Eugene (jno) Dvurechenskia6e2f682015-04-21 15:31:59 +02002118
David Hildenbrandeaa78f32015-10-12 16:29:01 +02002119 sca->cpu[vcpu->vcpu_id].sda = (__u64) vcpu->arch.sie_block;
Eugene (jno) Dvurechenski7d43bafcf2015-04-22 17:09:44 +02002120 vcpu->arch.sie_block->scaoh = (__u32)(((__u64)sca) >> 32);
2121 vcpu->arch.sie_block->scaol = (__u32)(__u64)sca & ~0x3fU;
David Hildenbrand0c9d8682017-03-13 11:48:28 +01002122 vcpu->arch.sie_block->ecb2 |= ECB2_ESCA;
David Hildenbrandeaa78f32015-10-12 16:29:01 +02002123 set_bit_inv(vcpu->vcpu_id, (unsigned long *) sca->mcn);
Eugene (jno) Dvurechenski7d43bafcf2015-04-22 17:09:44 +02002124 } else {
David Hildenbrandeaa78f32015-10-12 16:29:01 +02002125 struct bsca_block *sca = vcpu->kvm->arch.sca;
Eugene (jno) Dvurechenski7d43bafcf2015-04-22 17:09:44 +02002126
David Hildenbrandeaa78f32015-10-12 16:29:01 +02002127 sca->cpu[vcpu->vcpu_id].sda = (__u64) vcpu->arch.sie_block;
Eugene (jno) Dvurechenski7d43bafcf2015-04-22 17:09:44 +02002128 vcpu->arch.sie_block->scaoh = (__u32)(((__u64)sca) >> 32);
2129 vcpu->arch.sie_block->scaol = (__u32)(__u64)sca;
David Hildenbrandeaa78f32015-10-12 16:29:01 +02002130 set_bit_inv(vcpu->vcpu_id, (unsigned long *) &sca->mcn);
Eugene (jno) Dvurechenski7d43bafcf2015-04-22 17:09:44 +02002131 }
David Hildenbrandeaa78f32015-10-12 16:29:01 +02002132 read_unlock(&vcpu->kvm->arch.sca_lock);
Eugene (jno) Dvurechenski5e044312015-04-22 18:08:39 +02002133}
2134
2135/* Basic SCA to Extended SCA data copy routines */
2136static inline void sca_copy_entry(struct esca_entry *d, struct bsca_entry *s)
2137{
2138 d->sda = s->sda;
2139 d->sigp_ctrl.c = s->sigp_ctrl.c;
2140 d->sigp_ctrl.scn = s->sigp_ctrl.scn;
2141}
2142
2143static void sca_copy_b_to_e(struct esca_block *d, struct bsca_block *s)
2144{
2145 int i;
2146
2147 d->ipte_control = s->ipte_control;
2148 d->mcn[0] = s->mcn;
2149 for (i = 0; i < KVM_S390_BSCA_CPU_SLOTS; i++)
2150 sca_copy_entry(&d->cpu[i], &s->cpu[i]);
2151}
2152
2153static int sca_switch_to_extended(struct kvm *kvm)
2154{
2155 struct bsca_block *old_sca = kvm->arch.sca;
2156 struct esca_block *new_sca;
2157 struct kvm_vcpu *vcpu;
2158 unsigned int vcpu_idx;
2159 u32 scaol, scaoh;
2160
2161 new_sca = alloc_pages_exact(sizeof(*new_sca), GFP_KERNEL|__GFP_ZERO);
2162 if (!new_sca)
2163 return -ENOMEM;
2164
2165 scaoh = (u32)((u64)(new_sca) >> 32);
2166 scaol = (u32)(u64)(new_sca) & ~0x3fU;
2167
2168 kvm_s390_vcpu_block_all(kvm);
2169 write_lock(&kvm->arch.sca_lock);
2170
2171 sca_copy_b_to_e(new_sca, old_sca);
2172
2173 kvm_for_each_vcpu(vcpu_idx, vcpu, kvm) {
2174 vcpu->arch.sie_block->scaoh = scaoh;
2175 vcpu->arch.sie_block->scaol = scaol;
David Hildenbrand0c9d8682017-03-13 11:48:28 +01002176 vcpu->arch.sie_block->ecb2 |= ECB2_ESCA;
Eugene (jno) Dvurechenski5e044312015-04-22 18:08:39 +02002177 }
2178 kvm->arch.sca = new_sca;
2179 kvm->arch.use_esca = 1;
2180
2181 write_unlock(&kvm->arch.sca_lock);
2182 kvm_s390_vcpu_unblock_all(kvm);
2183
2184 free_page((unsigned long)old_sca);
2185
Christian Borntraeger8335713a2015-12-08 16:55:27 +01002186 VM_EVENT(kvm, 2, "Switched to ESCA (0x%pK -> 0x%pK)",
2187 old_sca, kvm->arch.sca);
Eugene (jno) Dvurechenski5e044312015-04-22 18:08:39 +02002188 return 0;
Eugene (jno) Dvurechenskia6e2f682015-04-21 15:31:59 +02002189}
2190
2191static int sca_can_add_vcpu(struct kvm *kvm, unsigned int id)
2192{
Eugene (jno) Dvurechenski5e044312015-04-22 18:08:39 +02002193 int rc;
2194
David Hildenbranda6940672016-08-08 22:39:32 +02002195 if (!kvm_s390_use_sca_entries()) {
2196 if (id < KVM_MAX_VCPUS)
2197 return true;
2198 return false;
2199 }
Eugene (jno) Dvurechenski5e044312015-04-22 18:08:39 +02002200 if (id < KVM_S390_BSCA_CPU_SLOTS)
2201 return true;
David Hildenbrand76a6dd72015-11-24 13:33:49 +01002202 if (!sclp.has_esca || !sclp.has_64bscao)
Eugene (jno) Dvurechenski5e044312015-04-22 18:08:39 +02002203 return false;
2204
2205 mutex_lock(&kvm->lock);
2206 rc = kvm->arch.use_esca ? 0 : sca_switch_to_extended(kvm);
2207 mutex_unlock(&kvm->lock);
2208
2209 return rc == 0 && id < KVM_S390_ESCA_CPU_SLOTS;
Eugene (jno) Dvurechenskia6e2f682015-04-21 15:31:59 +02002210}
2211
Heiko Carstensb0c632d2008-03-25 18:47:20 +01002212int kvm_arch_vcpu_init(struct kvm_vcpu *vcpu)
2213{
Dominik Dingel3c038e62013-10-07 17:11:48 +02002214 vcpu->arch.pfault_token = KVM_S390_PFAULT_TOKEN_INVALID;
2215 kvm_clear_async_pf_completion_queue(vcpu);
Christian Borntraeger59674c12012-01-11 11:20:33 +01002216 vcpu->run->kvm_valid_regs = KVM_SYNC_PREFIX |
2217 KVM_SYNC_GPRS |
Christian Borntraeger9eed07352012-02-06 10:59:07 +01002218 KVM_SYNC_ACRS |
David Hildenbrandb028ee32014-07-17 10:47:43 +02002219 KVM_SYNC_CRS |
2220 KVM_SYNC_ARCH0 |
2221 KVM_SYNC_PFAULT;
Julius Niedworok75a46152016-08-03 16:39:54 +02002222 kvm_s390_set_prefix(vcpu, 0);
Fan Zhangc6e5f162016-01-07 18:24:29 +08002223 if (test_kvm_facility(vcpu->kvm, 64))
2224 vcpu->run->kvm_valid_regs |= KVM_SYNC_RICCB;
Fan Zhang4e0b1ab2016-11-29 07:17:55 +01002225 if (test_kvm_facility(vcpu->kvm, 133))
2226 vcpu->run->kvm_valid_regs |= KVM_SYNC_GSCB;
David Hildenbrandf6aa6dc2016-01-15 14:11:46 +01002227 /* fprs can be synchronized via vrs, even if the guest has no vx. With
2228 * MACHINE_HAS_VX, (load|store)_fpu_regs() will work with vrs format.
2229 */
2230 if (MACHINE_HAS_VX)
Eric Farman68c55752014-06-09 10:57:26 -04002231 vcpu->run->kvm_valid_regs |= KVM_SYNC_VRS;
David Hildenbrand6fd8e672016-01-18 14:46:34 +01002232 else
2233 vcpu->run->kvm_valid_regs |= KVM_SYNC_FPRS;
Dominik Dingeldafd0322014-12-02 16:53:21 +01002234
2235 if (kvm_is_ucontrol(vcpu->kvm))
2236 return __kvm_ucontrol_vcpu_init(vcpu);
2237
Heiko Carstensb0c632d2008-03-25 18:47:20 +01002238 return 0;
2239}
2240
David Hildenbranddb0758b2016-02-15 09:42:25 +01002241/* needs disabled preemption to protect from TOD sync and vcpu_load/put */
2242static void __start_cpu_timer_accounting(struct kvm_vcpu *vcpu)
2243{
2244 WARN_ON_ONCE(vcpu->arch.cputm_start != 0);
David Hildenbrand9c23a132016-02-17 21:53:33 +01002245 raw_write_seqcount_begin(&vcpu->arch.cputm_seqcount);
David Hildenbranddb0758b2016-02-15 09:42:25 +01002246 vcpu->arch.cputm_start = get_tod_clock_fast();
David Hildenbrand9c23a132016-02-17 21:53:33 +01002247 raw_write_seqcount_end(&vcpu->arch.cputm_seqcount);
David Hildenbranddb0758b2016-02-15 09:42:25 +01002248}
2249
2250/* needs disabled preemption to protect from TOD sync and vcpu_load/put */
2251static void __stop_cpu_timer_accounting(struct kvm_vcpu *vcpu)
2252{
2253 WARN_ON_ONCE(vcpu->arch.cputm_start == 0);
David Hildenbrand9c23a132016-02-17 21:53:33 +01002254 raw_write_seqcount_begin(&vcpu->arch.cputm_seqcount);
David Hildenbranddb0758b2016-02-15 09:42:25 +01002255 vcpu->arch.sie_block->cputm -= get_tod_clock_fast() - vcpu->arch.cputm_start;
2256 vcpu->arch.cputm_start = 0;
David Hildenbrand9c23a132016-02-17 21:53:33 +01002257 raw_write_seqcount_end(&vcpu->arch.cputm_seqcount);
David Hildenbranddb0758b2016-02-15 09:42:25 +01002258}
2259
2260/* needs disabled preemption to protect from TOD sync and vcpu_load/put */
2261static void __enable_cpu_timer_accounting(struct kvm_vcpu *vcpu)
2262{
2263 WARN_ON_ONCE(vcpu->arch.cputm_enabled);
2264 vcpu->arch.cputm_enabled = true;
2265 __start_cpu_timer_accounting(vcpu);
2266}
2267
2268/* needs disabled preemption to protect from TOD sync and vcpu_load/put */
2269static void __disable_cpu_timer_accounting(struct kvm_vcpu *vcpu)
2270{
2271 WARN_ON_ONCE(!vcpu->arch.cputm_enabled);
2272 __stop_cpu_timer_accounting(vcpu);
2273 vcpu->arch.cputm_enabled = false;
2274}
2275
2276static void enable_cpu_timer_accounting(struct kvm_vcpu *vcpu)
2277{
2278 preempt_disable(); /* protect from TOD sync and vcpu_load/put */
2279 __enable_cpu_timer_accounting(vcpu);
2280 preempt_enable();
2281}
2282
2283static void disable_cpu_timer_accounting(struct kvm_vcpu *vcpu)
2284{
2285 preempt_disable(); /* protect from TOD sync and vcpu_load/put */
2286 __disable_cpu_timer_accounting(vcpu);
2287 preempt_enable();
2288}
2289
David Hildenbrand4287f242016-02-15 09:40:12 +01002290/* set the cpu timer - may only be called from the VCPU thread itself */
2291void kvm_s390_set_cpu_timer(struct kvm_vcpu *vcpu, __u64 cputm)
2292{
David Hildenbranddb0758b2016-02-15 09:42:25 +01002293 preempt_disable(); /* protect from TOD sync and vcpu_load/put */
David Hildenbrand9c23a132016-02-17 21:53:33 +01002294 raw_write_seqcount_begin(&vcpu->arch.cputm_seqcount);
David Hildenbranddb0758b2016-02-15 09:42:25 +01002295 if (vcpu->arch.cputm_enabled)
2296 vcpu->arch.cputm_start = get_tod_clock_fast();
David Hildenbrand4287f242016-02-15 09:40:12 +01002297 vcpu->arch.sie_block->cputm = cputm;
David Hildenbrand9c23a132016-02-17 21:53:33 +01002298 raw_write_seqcount_end(&vcpu->arch.cputm_seqcount);
David Hildenbranddb0758b2016-02-15 09:42:25 +01002299 preempt_enable();
David Hildenbrand4287f242016-02-15 09:40:12 +01002300}
2301
David Hildenbranddb0758b2016-02-15 09:42:25 +01002302/* update and get the cpu timer - can also be called from other VCPU threads */
David Hildenbrand4287f242016-02-15 09:40:12 +01002303__u64 kvm_s390_get_cpu_timer(struct kvm_vcpu *vcpu)
2304{
David Hildenbrand9c23a132016-02-17 21:53:33 +01002305 unsigned int seq;
David Hildenbranddb0758b2016-02-15 09:42:25 +01002306 __u64 value;
David Hildenbranddb0758b2016-02-15 09:42:25 +01002307
2308 if (unlikely(!vcpu->arch.cputm_enabled))
2309 return vcpu->arch.sie_block->cputm;
2310
David Hildenbrand9c23a132016-02-17 21:53:33 +01002311 preempt_disable(); /* protect from TOD sync and vcpu_load/put */
2312 do {
2313 seq = raw_read_seqcount(&vcpu->arch.cputm_seqcount);
2314 /*
2315 * If the writer would ever execute a read in the critical
2316 * section, e.g. in irq context, we have a deadlock.
2317 */
2318 WARN_ON_ONCE((seq & 1) && smp_processor_id() == vcpu->cpu);
2319 value = vcpu->arch.sie_block->cputm;
2320 /* if cputm_start is 0, accounting is being started/stopped */
2321 if (likely(vcpu->arch.cputm_start))
2322 value -= get_tod_clock_fast() - vcpu->arch.cputm_start;
2323 } while (read_seqcount_retry(&vcpu->arch.cputm_seqcount, seq & ~1));
2324 preempt_enable();
David Hildenbranddb0758b2016-02-15 09:42:25 +01002325 return value;
David Hildenbrand4287f242016-02-15 09:40:12 +01002326}
2327
Heiko Carstensb0c632d2008-03-25 18:47:20 +01002328void kvm_arch_vcpu_load(struct kvm_vcpu *vcpu, int cpu)
2329{
Hendrik Brueckner9977e882015-06-10 12:53:42 +02002330
David Hildenbrand37d9df92015-03-11 16:47:33 +01002331 gmap_enable(vcpu->arch.enabled_gmap);
David Hildenbrandef8f4f42018-01-23 18:05:29 +01002332 kvm_s390_set_cpuflags(vcpu, CPUSTAT_RUNNING);
David Hildenbrand5ebda312016-02-22 13:52:27 +01002333 if (vcpu->arch.cputm_enabled && !is_vcpu_idle(vcpu))
David Hildenbranddb0758b2016-02-15 09:42:25 +01002334 __start_cpu_timer_accounting(vcpu);
David Hildenbrand01a745a2016-02-12 20:41:56 +01002335 vcpu->cpu = cpu;
Heiko Carstensb0c632d2008-03-25 18:47:20 +01002336}
2337
2338void kvm_arch_vcpu_put(struct kvm_vcpu *vcpu)
2339{
David Hildenbrand01a745a2016-02-12 20:41:56 +01002340 vcpu->cpu = -1;
David Hildenbrand5ebda312016-02-22 13:52:27 +01002341 if (vcpu->arch.cputm_enabled && !is_vcpu_idle(vcpu))
David Hildenbranddb0758b2016-02-15 09:42:25 +01002342 __stop_cpu_timer_accounting(vcpu);
David Hildenbrand9daecfc2018-01-23 18:05:30 +01002343 kvm_s390_clear_cpuflags(vcpu, CPUSTAT_RUNNING);
David Hildenbrand37d9df92015-03-11 16:47:33 +01002344 vcpu->arch.enabled_gmap = gmap_get_enabled();
2345 gmap_disable(vcpu->arch.enabled_gmap);
Hendrik Brueckner9977e882015-06-10 12:53:42 +02002346
Heiko Carstensb0c632d2008-03-25 18:47:20 +01002347}
2348
2349static void kvm_s390_vcpu_initial_reset(struct kvm_vcpu *vcpu)
2350{
2351 /* this equals initial cpu reset in pop, but we don't switch to ESA */
2352 vcpu->arch.sie_block->gpsw.mask = 0UL;
2353 vcpu->arch.sie_block->gpsw.addr = 0UL;
Christian Borntraeger8d26cf72012-01-11 11:19:32 +01002354 kvm_s390_set_prefix(vcpu, 0);
David Hildenbrand4287f242016-02-15 09:40:12 +01002355 kvm_s390_set_cpu_timer(vcpu, 0);
Heiko Carstensb0c632d2008-03-25 18:47:20 +01002356 vcpu->arch.sie_block->ckc = 0UL;
2357 vcpu->arch.sie_block->todpr = 0;
2358 memset(vcpu->arch.sie_block->gcr, 0, 16 * sizeof(__u64));
2359 vcpu->arch.sie_block->gcr[0] = 0xE0UL;
2360 vcpu->arch.sie_block->gcr[14] = 0xC2000000UL;
David Hildenbrand9abc2a02016-01-14 22:12:47 +01002361 /* make sure the new fpc will be lazily loaded */
2362 save_fpu_regs();
2363 current->thread.fpu.fpc = 0;
Heiko Carstensb0c632d2008-03-25 18:47:20 +01002364 vcpu->arch.sie_block->gbea = 1;
Christian Borntraeger672550f2014-02-10 15:32:19 +01002365 vcpu->arch.sie_block->pp = 0;
Dominik Dingel3c038e62013-10-07 17:11:48 +02002366 vcpu->arch.pfault_token = KVM_S390_PFAULT_TOKEN_INVALID;
2367 kvm_clear_async_pf_completion_queue(vcpu);
David Hildenbrand6352e4d2014-04-10 17:35:00 +02002368 if (!kvm_s390_user_cpu_state_ctrl(vcpu->kvm))
2369 kvm_s390_vcpu_stop(vcpu);
Jens Freimann2ed10cc2014-02-11 13:48:07 +01002370 kvm_s390_clear_local_irqs(vcpu);
Heiko Carstensb0c632d2008-03-25 18:47:20 +01002371}
2372
Dominik Dingel31928aa2014-12-04 15:47:07 +01002373void kvm_arch_vcpu_postcreate(struct kvm_vcpu *vcpu)
Marcelo Tosatti42897d82012-11-27 23:29:02 -02002374{
Jason J. Herne72f25022014-11-25 09:46:02 -05002375 mutex_lock(&vcpu->kvm->lock);
Fan Zhangfdf03652015-05-13 10:58:41 +02002376 preempt_disable();
Jason J. Herne72f25022014-11-25 09:46:02 -05002377 vcpu->arch.sie_block->epoch = vcpu->kvm->arch.epoch;
Fan Zhangfdf03652015-05-13 10:58:41 +02002378 preempt_enable();
Jason J. Herne72f25022014-11-25 09:46:02 -05002379 mutex_unlock(&vcpu->kvm->lock);
David Hildenbrand25508822015-10-12 16:27:23 +02002380 if (!kvm_is_ucontrol(vcpu->kvm)) {
Dominik Dingeldafd0322014-12-02 16:53:21 +01002381 vcpu->arch.gmap = vcpu->kvm->arch.gmap;
David Hildenbrandeaa78f32015-10-12 16:29:01 +02002382 sca_add_vcpu(vcpu);
David Hildenbrand25508822015-10-12 16:27:23 +02002383 }
David Hildenbrand6502a342016-06-21 14:19:51 +02002384 if (test_kvm_facility(vcpu->kvm, 74) || vcpu->kvm->arch.user_instr0)
2385 vcpu->arch.sie_block->ictl |= ICTL_OPEREXC;
David Hildenbrand37d9df92015-03-11 16:47:33 +01002386 /* make vcpu_load load the right gmap on the first trigger */
2387 vcpu->arch.enabled_gmap = vcpu->arch.gmap;
Marcelo Tosatti42897d82012-11-27 23:29:02 -02002388}
2389
Tony Krowiak5102ee82014-06-27 14:46:01 -04002390static void kvm_s390_vcpu_crypto_setup(struct kvm_vcpu *vcpu)
2391{
Michael Mueller9d8d5782015-02-02 15:42:51 +01002392 if (!test_kvm_facility(vcpu->kvm, 76))
Tony Krowiak5102ee82014-06-27 14:46:01 -04002393 return;
2394
Tony Krowiaka374e892014-09-03 10:13:53 +02002395 vcpu->arch.sie_block->ecb3 &= ~(ECB3_AES | ECB3_DEA);
2396
2397 if (vcpu->kvm->arch.crypto.aes_kw)
2398 vcpu->arch.sie_block->ecb3 |= ECB3_AES;
2399 if (vcpu->kvm->arch.crypto.dea_kw)
2400 vcpu->arch.sie_block->ecb3 |= ECB3_DEA;
2401
Tony Krowiak5102ee82014-06-27 14:46:01 -04002402 vcpu->arch.sie_block->crycbd = vcpu->kvm->arch.crypto.crycbd;
2403}
2404
Dominik Dingelb31605c2014-03-25 13:47:11 +01002405void kvm_s390_vcpu_unsetup_cmma(struct kvm_vcpu *vcpu)
2406{
2407 free_page(vcpu->arch.sie_block->cbrlo);
2408 vcpu->arch.sie_block->cbrlo = 0;
2409}
2410
2411int kvm_s390_vcpu_setup_cmma(struct kvm_vcpu *vcpu)
2412{
2413 vcpu->arch.sie_block->cbrlo = get_zeroed_page(GFP_KERNEL);
2414 if (!vcpu->arch.sie_block->cbrlo)
2415 return -ENOMEM;
2416
David Hildenbrand0c9d8682017-03-13 11:48:28 +01002417 vcpu->arch.sie_block->ecb2 &= ~ECB2_PFMFI;
Dominik Dingelb31605c2014-03-25 13:47:11 +01002418 return 0;
2419}
2420
Michael Mueller91520f12015-02-27 14:32:11 +01002421static void kvm_s390_vcpu_setup_model(struct kvm_vcpu *vcpu)
2422{
2423 struct kvm_s390_cpu_model *model = &vcpu->kvm->arch.model;
2424
Michael Mueller91520f12015-02-27 14:32:11 +01002425 vcpu->arch.sie_block->ibc = model->ibc;
David Hildenbrand80bc79d2015-12-02 09:43:29 +01002426 if (test_kvm_facility(vcpu->kvm, 7))
David Hildenbrandc54f0d62015-12-02 08:53:52 +01002427 vcpu->arch.sie_block->fac = (u32)(u64) model->fac_list;
Michael Mueller91520f12015-02-27 14:32:11 +01002428}
2429
Heiko Carstensb0c632d2008-03-25 18:47:20 +01002430int kvm_arch_vcpu_setup(struct kvm_vcpu *vcpu)
2431{
Dominik Dingelb31605c2014-03-25 13:47:11 +01002432 int rc = 0;
Konstantin Weitzb31288f2013-04-17 17:36:29 +02002433
Cornelia Huck9e6dabe2011-11-17 11:00:41 +01002434 atomic_set(&vcpu->arch.sie_block->cpuflags, CPUSTAT_ZARCH |
2435 CPUSTAT_SM |
Guenther Hutzla4a4f192015-03-31 14:39:49 +02002436 CPUSTAT_STOPPED);
2437
Guenther Hutzl53df84f2015-02-18 11:13:03 +01002438 if (test_kvm_facility(vcpu->kvm, 78))
David Hildenbrandef8f4f42018-01-23 18:05:29 +01002439 kvm_s390_set_cpuflags(vcpu, CPUSTAT_GED2);
Guenther Hutzl53df84f2015-02-18 11:13:03 +01002440 else if (test_kvm_facility(vcpu->kvm, 8))
David Hildenbrandef8f4f42018-01-23 18:05:29 +01002441 kvm_s390_set_cpuflags(vcpu, CPUSTAT_GED);
Guenther Hutzla4a4f192015-03-31 14:39:49 +02002442
Michael Mueller91520f12015-02-27 14:32:11 +01002443 kvm_s390_vcpu_setup_model(vcpu);
2444
David Hildenbrandbdab09f2016-04-12 11:07:49 +02002445 /* pgste_set_pte has special handling for !MACHINE_HAS_ESOP */
2446 if (MACHINE_HAS_ESOP)
David Hildenbrand0c9d8682017-03-13 11:48:28 +01002447 vcpu->arch.sie_block->ecb |= ECB_HOSTPROTINT;
David Hildenbrandbd50e8e2016-03-04 12:23:55 +01002448 if (test_kvm_facility(vcpu->kvm, 9))
David Hildenbrand0c9d8682017-03-13 11:48:28 +01002449 vcpu->arch.sie_block->ecb |= ECB_SRSI;
David Hildenbrandf597d242016-04-22 16:26:49 +02002450 if (test_kvm_facility(vcpu->kvm, 73))
David Hildenbrand0c9d8682017-03-13 11:48:28 +01002451 vcpu->arch.sie_block->ecb |= ECB_TE;
Michael Mueller7feb6bb2013-06-28 13:30:24 +02002452
David Hildenbrand873b4252016-04-04 15:53:47 +02002453 if (test_kvm_facility(vcpu->kvm, 8) && sclp.has_pfmfi)
David Hildenbrand0c9d8682017-03-13 11:48:28 +01002454 vcpu->arch.sie_block->ecb2 |= ECB2_PFMFI;
Janosch Frankcd1836f2016-08-04 09:57:36 +02002455 if (test_kvm_facility(vcpu->kvm, 130))
David Hildenbrand0c9d8682017-03-13 11:48:28 +01002456 vcpu->arch.sie_block->ecb2 |= ECB2_IEP;
2457 vcpu->arch.sie_block->eca = ECA_MVPGI | ECA_PROTEXCI;
David Hildenbrand48ee7d32016-04-04 15:49:34 +02002458 if (sclp.has_cei)
David Hildenbrand0c9d8682017-03-13 11:48:28 +01002459 vcpu->arch.sie_block->eca |= ECA_CEI;
David Hildenbrand11ad65b2016-04-04 15:46:26 +02002460 if (sclp.has_ib)
David Hildenbrand0c9d8682017-03-13 11:48:28 +01002461 vcpu->arch.sie_block->eca |= ECA_IB;
David Hildenbrand37c5f6c2015-05-06 13:18:59 +02002462 if (sclp.has_siif)
David Hildenbrand0c9d8682017-03-13 11:48:28 +01002463 vcpu->arch.sie_block->eca |= ECA_SII;
David Hildenbrand37c5f6c2015-05-06 13:18:59 +02002464 if (sclp.has_sigpif)
David Hildenbrand0c9d8682017-03-13 11:48:28 +01002465 vcpu->arch.sie_block->eca |= ECA_SIGPI;
Michael Mueller18280d82015-03-16 16:05:41 +01002466 if (test_kvm_facility(vcpu->kvm, 129)) {
David Hildenbrand0c9d8682017-03-13 11:48:28 +01002467 vcpu->arch.sie_block->eca |= ECA_VX;
2468 vcpu->arch.sie_block->ecd |= ECD_HOSTREGMGMT;
Eric Farman13211ea2014-04-30 13:39:46 -04002469 }
Collin L. Walling8fa16962016-07-26 15:29:44 -04002470 if (test_kvm_facility(vcpu->kvm, 139))
2471 vcpu->arch.sie_block->ecd |= ECD_MEF;
2472
Fan Zhang4e0b1ab2016-11-29 07:17:55 +01002473 vcpu->arch.sie_block->sdnxo = ((unsigned long) &vcpu->run->s.regs.sdnx)
2474 | SDNXC;
Fan Zhangc6e5f162016-01-07 18:24:29 +08002475 vcpu->arch.sie_block->riccbd = (unsigned long) &vcpu->run->s.regs.riccb;
Farhan Ali730cd632017-02-24 16:12:56 -05002476
2477 if (sclp.has_kss)
David Hildenbrandef8f4f42018-01-23 18:05:29 +01002478 kvm_s390_set_cpuflags(vcpu, CPUSTAT_KSS);
Farhan Ali730cd632017-02-24 16:12:56 -05002479 else
2480 vcpu->arch.sie_block->ictl |= ICTL_ISKE | ICTL_SSKE | ICTL_RRBE;
Matthew Rosato5a5e6532013-01-29 11:48:20 -05002481
Dominik Dingele6db1d62015-05-07 15:41:57 +02002482 if (vcpu->kvm->arch.use_cmma) {
Dominik Dingelb31605c2014-03-25 13:47:11 +01002483 rc = kvm_s390_vcpu_setup_cmma(vcpu);
2484 if (rc)
2485 return rc;
Konstantin Weitzb31288f2013-04-17 17:36:29 +02002486 }
David Hildenbrand0ac96caf2014-12-12 15:17:31 +01002487 hrtimer_init(&vcpu->arch.ckc_timer, CLOCK_MONOTONIC, HRTIMER_MODE_REL);
Christian Borntraegerca872302009-05-12 17:21:49 +02002488 vcpu->arch.ckc_timer.function = kvm_s390_idle_wakeup;
Michael Mueller9d8d5782015-02-02 15:42:51 +01002489
Tony Krowiak5102ee82014-06-27 14:46:01 -04002490 kvm_s390_vcpu_crypto_setup(vcpu);
2491
Dominik Dingelb31605c2014-03-25 13:47:11 +01002492 return rc;
Heiko Carstensb0c632d2008-03-25 18:47:20 +01002493}
2494
2495struct kvm_vcpu *kvm_arch_vcpu_create(struct kvm *kvm,
2496 unsigned int id)
2497{
Carsten Otte4d475552011-10-18 12:27:12 +02002498 struct kvm_vcpu *vcpu;
Michael Mueller7feb6bb2013-06-28 13:30:24 +02002499 struct sie_page *sie_page;
Carsten Otte4d475552011-10-18 12:27:12 +02002500 int rc = -EINVAL;
Heiko Carstensb0c632d2008-03-25 18:47:20 +01002501
David Hildenbrand42158252015-10-12 12:57:22 +02002502 if (!kvm_is_ucontrol(kvm) && !sca_can_add_vcpu(kvm, id))
Carsten Otte4d475552011-10-18 12:27:12 +02002503 goto out;
2504
2505 rc = -ENOMEM;
2506
Michael Muellerb110fea2013-06-12 13:54:54 +02002507 vcpu = kmem_cache_zalloc(kvm_vcpu_cache, GFP_KERNEL);
Heiko Carstensb0c632d2008-03-25 18:47:20 +01002508 if (!vcpu)
Carsten Otte4d475552011-10-18 12:27:12 +02002509 goto out;
Heiko Carstensb0c632d2008-03-25 18:47:20 +01002510
QingFeng Haoda72ca42017-06-07 11:41:19 +02002511 BUILD_BUG_ON(sizeof(struct sie_page) != 4096);
Michael Mueller7feb6bb2013-06-28 13:30:24 +02002512 sie_page = (struct sie_page *) get_zeroed_page(GFP_KERNEL);
2513 if (!sie_page)
Heiko Carstensb0c632d2008-03-25 18:47:20 +01002514 goto out_free_cpu;
2515
Michael Mueller7feb6bb2013-06-28 13:30:24 +02002516 vcpu->arch.sie_block = &sie_page->sie_block;
2517 vcpu->arch.sie_block->itdba = (unsigned long) &sie_page->itdb;
2518
David Hildenbrandefed1102015-04-16 12:32:41 +02002519 /* the real guest size will always be smaller than msl */
2520 vcpu->arch.sie_block->mso = 0;
2521 vcpu->arch.sie_block->msl = sclp.hamax;
2522
Heiko Carstensb0c632d2008-03-25 18:47:20 +01002523 vcpu->arch.sie_block->icpua = id;
Carsten Otteba5c1e92008-03-25 18:47:26 +01002524 spin_lock_init(&vcpu->arch.local_int.lock);
David Hildenbrand9c23a132016-02-17 21:53:33 +01002525 seqcount_init(&vcpu->arch.cputm_seqcount);
Carsten Otteba5c1e92008-03-25 18:47:26 +01002526
Heiko Carstensb0c632d2008-03-25 18:47:20 +01002527 rc = kvm_vcpu_init(vcpu, kvm, id);
2528 if (rc)
David Hildenbrand9abc2a02016-01-14 22:12:47 +01002529 goto out_free_sie_block;
Christian Borntraeger8335713a2015-12-08 16:55:27 +01002530 VM_EVENT(kvm, 3, "create cpu %d at 0x%pK, sie block at 0x%pK", id, vcpu,
Heiko Carstensb0c632d2008-03-25 18:47:20 +01002531 vcpu->arch.sie_block);
Cornelia Huckade38c32012-07-23 17:20:30 +02002532 trace_kvm_s390_create_vcpu(id, vcpu, vcpu->arch.sie_block);
Heiko Carstensb0c632d2008-03-25 18:47:20 +01002533
Heiko Carstensb0c632d2008-03-25 18:47:20 +01002534 return vcpu;
Wei Yongjun7b06bf22010-03-09 14:37:53 +08002535out_free_sie_block:
2536 free_page((unsigned long)(vcpu->arch.sie_block));
Heiko Carstensb0c632d2008-03-25 18:47:20 +01002537out_free_cpu:
Michael Muellerb110fea2013-06-12 13:54:54 +02002538 kmem_cache_free(kvm_vcpu_cache, vcpu);
Carsten Otte4d475552011-10-18 12:27:12 +02002539out:
Heiko Carstensb0c632d2008-03-25 18:47:20 +01002540 return ERR_PTR(rc);
2541}
2542
Heiko Carstensb0c632d2008-03-25 18:47:20 +01002543int kvm_arch_vcpu_runnable(struct kvm_vcpu *vcpu)
2544{
David Hildenbrand9a022062014-08-05 17:40:47 +02002545 return kvm_s390_vcpu_has_irq(vcpu, 0);
Heiko Carstensb0c632d2008-03-25 18:47:20 +01002546}
2547
Longpeng(Mike)199b5762017-08-08 12:05:32 +08002548bool kvm_arch_vcpu_in_kernel(struct kvm_vcpu *vcpu)
2549{
Longpeng(Mike)0546c632017-08-08 12:05:34 +08002550 return !(vcpu->arch.sie_block->gpsw.mask & PSW_MASK_PSTATE);
Longpeng(Mike)199b5762017-08-08 12:05:32 +08002551}
2552
Christian Borntraeger27406cd2015-04-14 12:17:34 +02002553void kvm_s390_vcpu_block(struct kvm_vcpu *vcpu)
Christian Borntraeger49b99e12013-05-17 14:41:35 +02002554{
Peter Zijlstra805de8f42015-04-24 01:12:32 +02002555 atomic_or(PROG_BLOCK_SIE, &vcpu->arch.sie_block->prog20);
David Hildenbrand61a6df52015-05-12 08:41:40 +02002556 exit_sie(vcpu);
Christian Borntraeger49b99e12013-05-17 14:41:35 +02002557}
2558
Christian Borntraeger27406cd2015-04-14 12:17:34 +02002559void kvm_s390_vcpu_unblock(struct kvm_vcpu *vcpu)
Christian Borntraeger49b99e12013-05-17 14:41:35 +02002560{
Peter Zijlstra805de8f42015-04-24 01:12:32 +02002561 atomic_andnot(PROG_BLOCK_SIE, &vcpu->arch.sie_block->prog20);
Christian Borntraeger49b99e12013-05-17 14:41:35 +02002562}
2563
Christian Borntraeger8e236542015-04-09 13:49:04 +02002564static void kvm_s390_vcpu_request(struct kvm_vcpu *vcpu)
2565{
Peter Zijlstra805de8f42015-04-24 01:12:32 +02002566 atomic_or(PROG_REQUEST, &vcpu->arch.sie_block->prog20);
David Hildenbrand61a6df52015-05-12 08:41:40 +02002567 exit_sie(vcpu);
Christian Borntraeger8e236542015-04-09 13:49:04 +02002568}
2569
2570static void kvm_s390_vcpu_request_handled(struct kvm_vcpu *vcpu)
2571{
Jason J. Herne9bf9fde2015-09-16 09:13:50 -04002572 atomic_andnot(PROG_REQUEST, &vcpu->arch.sie_block->prog20);
Christian Borntraeger8e236542015-04-09 13:49:04 +02002573}
2574
Christian Borntraeger49b99e12013-05-17 14:41:35 +02002575/*
2576 * Kick a guest cpu out of SIE and wait until SIE is not running.
2577 * If the CPU is not running (e.g. waiting as idle) the function will
2578 * return immediately. */
2579void exit_sie(struct kvm_vcpu *vcpu)
2580{
David Hildenbrandef8f4f42018-01-23 18:05:29 +01002581 kvm_s390_set_cpuflags(vcpu, CPUSTAT_STOP_INT);
Christian Borntraeger49b99e12013-05-17 14:41:35 +02002582 while (vcpu->arch.sie_block->prog0c & PROG_IN_SIE)
2583 cpu_relax();
2584}
2585
Christian Borntraeger8e236542015-04-09 13:49:04 +02002586/* Kick a guest cpu out of SIE to process a request synchronously */
2587void kvm_s390_sync_request(int req, struct kvm_vcpu *vcpu)
Christian Borntraeger49b99e12013-05-17 14:41:35 +02002588{
Christian Borntraeger8e236542015-04-09 13:49:04 +02002589 kvm_make_request(req, vcpu);
2590 kvm_s390_vcpu_request(vcpu);
Christian Borntraeger49b99e12013-05-17 14:41:35 +02002591}
2592
Martin Schwidefsky414d3b02016-03-08 11:52:54 +01002593static void kvm_gmap_notifier(struct gmap *gmap, unsigned long start,
2594 unsigned long end)
Christian Borntraeger2c70fe42013-05-17 14:41:36 +02002595{
Christian Borntraeger2c70fe42013-05-17 14:41:36 +02002596 struct kvm *kvm = gmap->private;
2597 struct kvm_vcpu *vcpu;
Martin Schwidefsky414d3b02016-03-08 11:52:54 +01002598 unsigned long prefix;
2599 int i;
Christian Borntraeger2c70fe42013-05-17 14:41:36 +02002600
David Hildenbrand65d0b0d2015-04-27 16:29:34 +02002601 if (gmap_is_shadow(gmap))
2602 return;
Martin Schwidefsky414d3b02016-03-08 11:52:54 +01002603 if (start >= 1UL << 31)
2604 /* We are only interested in prefix pages */
2605 return;
Christian Borntraeger2c70fe42013-05-17 14:41:36 +02002606 kvm_for_each_vcpu(i, vcpu, kvm) {
2607 /* match against both prefix pages */
Martin Schwidefsky414d3b02016-03-08 11:52:54 +01002608 prefix = kvm_s390_get_prefix(vcpu);
2609 if (prefix <= end && start <= prefix + 2*PAGE_SIZE - 1) {
2610 VCPU_EVENT(vcpu, 2, "gmap notifier for %lx-%lx",
2611 start, end);
Christian Borntraeger8e236542015-04-09 13:49:04 +02002612 kvm_s390_sync_request(KVM_REQ_MMU_RELOAD, vcpu);
Christian Borntraeger2c70fe42013-05-17 14:41:36 +02002613 }
2614 }
2615}
2616
Christoffer Dallb6d33832012-03-08 16:44:24 -05002617int kvm_arch_vcpu_should_kick(struct kvm_vcpu *vcpu)
2618{
2619 /* kvm common code refers to this, but never calls it */
2620 BUG();
2621 return 0;
2622}
2623
Carsten Otte14eebd92012-05-15 14:15:26 +02002624static int kvm_arch_vcpu_ioctl_get_one_reg(struct kvm_vcpu *vcpu,
2625 struct kvm_one_reg *reg)
2626{
2627 int r = -EINVAL;
2628
2629 switch (reg->id) {
Carsten Otte29b7c712012-05-15 14:15:27 +02002630 case KVM_REG_S390_TODPR:
2631 r = put_user(vcpu->arch.sie_block->todpr,
2632 (u32 __user *)reg->addr);
2633 break;
2634 case KVM_REG_S390_EPOCHDIFF:
2635 r = put_user(vcpu->arch.sie_block->epoch,
2636 (u64 __user *)reg->addr);
2637 break;
Jason J. herne46a6dd12012-05-15 14:15:28 +02002638 case KVM_REG_S390_CPU_TIMER:
David Hildenbrand4287f242016-02-15 09:40:12 +01002639 r = put_user(kvm_s390_get_cpu_timer(vcpu),
Jason J. herne46a6dd12012-05-15 14:15:28 +02002640 (u64 __user *)reg->addr);
2641 break;
2642 case KVM_REG_S390_CLOCK_COMP:
2643 r = put_user(vcpu->arch.sie_block->ckc,
2644 (u64 __user *)reg->addr);
2645 break;
Dominik Dingel536336c2013-09-30 10:55:33 +02002646 case KVM_REG_S390_PFTOKEN:
2647 r = put_user(vcpu->arch.pfault_token,
2648 (u64 __user *)reg->addr);
2649 break;
2650 case KVM_REG_S390_PFCOMPARE:
2651 r = put_user(vcpu->arch.pfault_compare,
2652 (u64 __user *)reg->addr);
2653 break;
2654 case KVM_REG_S390_PFSELECT:
2655 r = put_user(vcpu->arch.pfault_select,
2656 (u64 __user *)reg->addr);
2657 break;
Christian Borntraeger672550f2014-02-10 15:32:19 +01002658 case KVM_REG_S390_PP:
2659 r = put_user(vcpu->arch.sie_block->pp,
2660 (u64 __user *)reg->addr);
2661 break;
Christian Borntraegerafa45ff2014-02-10 15:39:23 +01002662 case KVM_REG_S390_GBEA:
2663 r = put_user(vcpu->arch.sie_block->gbea,
2664 (u64 __user *)reg->addr);
2665 break;
Carsten Otte14eebd92012-05-15 14:15:26 +02002666 default:
2667 break;
2668 }
2669
2670 return r;
2671}
2672
2673static int kvm_arch_vcpu_ioctl_set_one_reg(struct kvm_vcpu *vcpu,
2674 struct kvm_one_reg *reg)
2675{
2676 int r = -EINVAL;
David Hildenbrand4287f242016-02-15 09:40:12 +01002677 __u64 val;
Carsten Otte14eebd92012-05-15 14:15:26 +02002678
2679 switch (reg->id) {
Carsten Otte29b7c712012-05-15 14:15:27 +02002680 case KVM_REG_S390_TODPR:
2681 r = get_user(vcpu->arch.sie_block->todpr,
2682 (u32 __user *)reg->addr);
2683 break;
2684 case KVM_REG_S390_EPOCHDIFF:
2685 r = get_user(vcpu->arch.sie_block->epoch,
2686 (u64 __user *)reg->addr);
2687 break;
Jason J. herne46a6dd12012-05-15 14:15:28 +02002688 case KVM_REG_S390_CPU_TIMER:
David Hildenbrand4287f242016-02-15 09:40:12 +01002689 r = get_user(val, (u64 __user *)reg->addr);
2690 if (!r)
2691 kvm_s390_set_cpu_timer(vcpu, val);
Jason J. herne46a6dd12012-05-15 14:15:28 +02002692 break;
2693 case KVM_REG_S390_CLOCK_COMP:
2694 r = get_user(vcpu->arch.sie_block->ckc,
2695 (u64 __user *)reg->addr);
2696 break;
Dominik Dingel536336c2013-09-30 10:55:33 +02002697 case KVM_REG_S390_PFTOKEN:
2698 r = get_user(vcpu->arch.pfault_token,
2699 (u64 __user *)reg->addr);
David Hildenbrand9fbd8082014-10-09 15:01:38 +02002700 if (vcpu->arch.pfault_token == KVM_S390_PFAULT_TOKEN_INVALID)
2701 kvm_clear_async_pf_completion_queue(vcpu);
Dominik Dingel536336c2013-09-30 10:55:33 +02002702 break;
2703 case KVM_REG_S390_PFCOMPARE:
2704 r = get_user(vcpu->arch.pfault_compare,
2705 (u64 __user *)reg->addr);
2706 break;
2707 case KVM_REG_S390_PFSELECT:
2708 r = get_user(vcpu->arch.pfault_select,
2709 (u64 __user *)reg->addr);
2710 break;
Christian Borntraeger672550f2014-02-10 15:32:19 +01002711 case KVM_REG_S390_PP:
2712 r = get_user(vcpu->arch.sie_block->pp,
2713 (u64 __user *)reg->addr);
2714 break;
Christian Borntraegerafa45ff2014-02-10 15:39:23 +01002715 case KVM_REG_S390_GBEA:
2716 r = get_user(vcpu->arch.sie_block->gbea,
2717 (u64 __user *)reg->addr);
2718 break;
Carsten Otte14eebd92012-05-15 14:15:26 +02002719 default:
2720 break;
2721 }
2722
2723 return r;
2724}
Christoffer Dallb6d33832012-03-08 16:44:24 -05002725
Heiko Carstensb0c632d2008-03-25 18:47:20 +01002726static int kvm_arch_vcpu_ioctl_initial_reset(struct kvm_vcpu *vcpu)
2727{
Heiko Carstensb0c632d2008-03-25 18:47:20 +01002728 kvm_s390_vcpu_initial_reset(vcpu);
Heiko Carstensb0c632d2008-03-25 18:47:20 +01002729 return 0;
2730}
2731
2732int kvm_arch_vcpu_ioctl_set_regs(struct kvm_vcpu *vcpu, struct kvm_regs *regs)
2733{
Christian Borntraeger5a32c1a2012-01-11 11:20:32 +01002734 memcpy(&vcpu->run->s.regs.gprs, &regs->gprs, sizeof(regs->gprs));
Heiko Carstensb0c632d2008-03-25 18:47:20 +01002735 return 0;
2736}
2737
2738int kvm_arch_vcpu_ioctl_get_regs(struct kvm_vcpu *vcpu, struct kvm_regs *regs)
2739{
Christian Borntraeger5a32c1a2012-01-11 11:20:32 +01002740 memcpy(&regs->gprs, &vcpu->run->s.regs.gprs, sizeof(regs->gprs));
Heiko Carstensb0c632d2008-03-25 18:47:20 +01002741 return 0;
2742}
2743
2744int kvm_arch_vcpu_ioctl_set_sregs(struct kvm_vcpu *vcpu,
2745 struct kvm_sregs *sregs)
2746{
Christian Borntraeger59674c12012-01-11 11:20:33 +01002747 memcpy(&vcpu->run->s.regs.acrs, &sregs->acrs, sizeof(sregs->acrs));
Heiko Carstensb0c632d2008-03-25 18:47:20 +01002748 memcpy(&vcpu->arch.sie_block->gcr, &sregs->crs, sizeof(sregs->crs));
Heiko Carstensb0c632d2008-03-25 18:47:20 +01002749 return 0;
2750}
2751
2752int kvm_arch_vcpu_ioctl_get_sregs(struct kvm_vcpu *vcpu,
2753 struct kvm_sregs *sregs)
2754{
Christian Borntraeger59674c12012-01-11 11:20:33 +01002755 memcpy(&sregs->acrs, &vcpu->run->s.regs.acrs, sizeof(sregs->acrs));
Heiko Carstensb0c632d2008-03-25 18:47:20 +01002756 memcpy(&sregs->crs, &vcpu->arch.sie_block->gcr, sizeof(sregs->crs));
Heiko Carstensb0c632d2008-03-25 18:47:20 +01002757 return 0;
2758}
2759
2760int kvm_arch_vcpu_ioctl_set_fpu(struct kvm_vcpu *vcpu, struct kvm_fpu *fpu)
2761{
Martin Schwidefsky4725c862013-10-15 16:08:34 +02002762 if (test_fp_ctl(fpu->fpc))
2763 return -EINVAL;
Christian Borntraegere1788bb2016-11-22 09:29:38 +01002764 vcpu->run->s.regs.fpc = fpu->fpc;
David Hildenbrand9abc2a02016-01-14 22:12:47 +01002765 if (MACHINE_HAS_VX)
David Hildenbranda7d4b8f2016-08-16 14:38:24 +02002766 convert_fp_to_vx((__vector128 *) vcpu->run->s.regs.vrs,
2767 (freg_t *) fpu->fprs);
David Hildenbrand9abc2a02016-01-14 22:12:47 +01002768 else
David Hildenbranda7d4b8f2016-08-16 14:38:24 +02002769 memcpy(vcpu->run->s.regs.fprs, &fpu->fprs, sizeof(fpu->fprs));
Heiko Carstensb0c632d2008-03-25 18:47:20 +01002770 return 0;
2771}
2772
2773int kvm_arch_vcpu_ioctl_get_fpu(struct kvm_vcpu *vcpu, struct kvm_fpu *fpu)
2774{
David Hildenbrand9abc2a02016-01-14 22:12:47 +01002775 /* make sure we have the latest values */
2776 save_fpu_regs();
2777 if (MACHINE_HAS_VX)
David Hildenbranda7d4b8f2016-08-16 14:38:24 +02002778 convert_vx_to_fp((freg_t *) fpu->fprs,
2779 (__vector128 *) vcpu->run->s.regs.vrs);
David Hildenbrand9abc2a02016-01-14 22:12:47 +01002780 else
David Hildenbranda7d4b8f2016-08-16 14:38:24 +02002781 memcpy(fpu->fprs, vcpu->run->s.regs.fprs, sizeof(fpu->fprs));
Christian Borntraegere1788bb2016-11-22 09:29:38 +01002782 fpu->fpc = vcpu->run->s.regs.fpc;
Heiko Carstensb0c632d2008-03-25 18:47:20 +01002783 return 0;
2784}
2785
2786static int kvm_arch_vcpu_ioctl_set_initial_psw(struct kvm_vcpu *vcpu, psw_t psw)
2787{
2788 int rc = 0;
2789
David Hildenbrand7a42fdc2014-05-05 16:26:19 +02002790 if (!is_vcpu_stopped(vcpu))
Heiko Carstensb0c632d2008-03-25 18:47:20 +01002791 rc = -EBUSY;
Carsten Otted7b0b5e2009-11-19 14:21:16 +01002792 else {
2793 vcpu->run->psw_mask = psw.mask;
2794 vcpu->run->psw_addr = psw.addr;
2795 }
Heiko Carstensb0c632d2008-03-25 18:47:20 +01002796 return rc;
2797}
2798
2799int kvm_arch_vcpu_ioctl_translate(struct kvm_vcpu *vcpu,
2800 struct kvm_translation *tr)
2801{
2802 return -EINVAL; /* not implemented yet */
2803}
2804
David Hildenbrand27291e22014-01-23 12:26:52 +01002805#define VALID_GUESTDBG_FLAGS (KVM_GUESTDBG_SINGLESTEP | \
2806 KVM_GUESTDBG_USE_HW_BP | \
2807 KVM_GUESTDBG_ENABLE)
2808
Jan Kiszkad0bfb942008-12-15 13:52:10 +01002809int kvm_arch_vcpu_ioctl_set_guest_debug(struct kvm_vcpu *vcpu,
2810 struct kvm_guest_debug *dbg)
Heiko Carstensb0c632d2008-03-25 18:47:20 +01002811{
David Hildenbrand27291e22014-01-23 12:26:52 +01002812 int rc = 0;
2813
2814 vcpu->guest_debug = 0;
2815 kvm_s390_clear_bp_data(vcpu);
2816
David Hildenbrand2de3bfc2014-05-20 17:25:20 +02002817 if (dbg->control & ~VALID_GUESTDBG_FLAGS)
David Hildenbrand27291e22014-01-23 12:26:52 +01002818 return -EINVAL;
David Hildenbrand89b5b4d2015-11-24 13:47:13 +01002819 if (!sclp.has_gpere)
2820 return -EINVAL;
David Hildenbrand27291e22014-01-23 12:26:52 +01002821
2822 if (dbg->control & KVM_GUESTDBG_ENABLE) {
2823 vcpu->guest_debug = dbg->control;
2824 /* enforce guest PER */
David Hildenbrandef8f4f42018-01-23 18:05:29 +01002825 kvm_s390_set_cpuflags(vcpu, CPUSTAT_P);
David Hildenbrand27291e22014-01-23 12:26:52 +01002826
2827 if (dbg->control & KVM_GUESTDBG_USE_HW_BP)
2828 rc = kvm_s390_import_bp_data(vcpu, dbg);
2829 } else {
David Hildenbrand9daecfc2018-01-23 18:05:30 +01002830 kvm_s390_clear_cpuflags(vcpu, CPUSTAT_P);
David Hildenbrand27291e22014-01-23 12:26:52 +01002831 vcpu->arch.guestdbg.last_bp = 0;
2832 }
2833
2834 if (rc) {
2835 vcpu->guest_debug = 0;
2836 kvm_s390_clear_bp_data(vcpu);
David Hildenbrand9daecfc2018-01-23 18:05:30 +01002837 kvm_s390_clear_cpuflags(vcpu, CPUSTAT_P);
David Hildenbrand27291e22014-01-23 12:26:52 +01002838 }
2839
2840 return rc;
Heiko Carstensb0c632d2008-03-25 18:47:20 +01002841}
2842
Marcelo Tosatti62d9f0d2008-04-11 13:24:45 -03002843int kvm_arch_vcpu_ioctl_get_mpstate(struct kvm_vcpu *vcpu,
2844 struct kvm_mp_state *mp_state)
2845{
David Hildenbrand6352e4d2014-04-10 17:35:00 +02002846 /* CHECK_STOP and LOAD are not supported yet */
2847 return is_vcpu_stopped(vcpu) ? KVM_MP_STATE_STOPPED :
2848 KVM_MP_STATE_OPERATING;
Marcelo Tosatti62d9f0d2008-04-11 13:24:45 -03002849}
2850
2851int kvm_arch_vcpu_ioctl_set_mpstate(struct kvm_vcpu *vcpu,
2852 struct kvm_mp_state *mp_state)
2853{
David Hildenbrand6352e4d2014-04-10 17:35:00 +02002854 int rc = 0;
2855
2856 /* user space knows about this interface - let it control the state */
2857 vcpu->kvm->arch.user_cpu_state_ctrl = 1;
2858
2859 switch (mp_state->mp_state) {
2860 case KVM_MP_STATE_STOPPED:
2861 kvm_s390_vcpu_stop(vcpu);
2862 break;
2863 case KVM_MP_STATE_OPERATING:
2864 kvm_s390_vcpu_start(vcpu);
2865 break;
2866 case KVM_MP_STATE_LOAD:
2867 case KVM_MP_STATE_CHECK_STOP:
2868 /* fall through - CHECK_STOP and LOAD are not supported yet */
2869 default:
2870 rc = -ENXIO;
2871 }
2872
2873 return rc;
Marcelo Tosatti62d9f0d2008-04-11 13:24:45 -03002874}
2875
David Hildenbrand8ad35752014-03-14 11:00:21 +01002876static bool ibs_enabled(struct kvm_vcpu *vcpu)
2877{
2878 return atomic_read(&vcpu->arch.sie_block->cpuflags) & CPUSTAT_IBS;
2879}
2880
Christian Borntraeger2c70fe42013-05-17 14:41:36 +02002881static int kvm_s390_handle_requests(struct kvm_vcpu *vcpu)
2882{
David Hildenbrand8ad35752014-03-14 11:00:21 +01002883retry:
Christian Borntraeger8e236542015-04-09 13:49:04 +02002884 kvm_s390_vcpu_request_handled(vcpu);
Radim Krčmář2fa6e1e2017-06-04 14:43:52 +02002885 if (!kvm_request_pending(vcpu))
Christian Borntraeger586b7cc2015-07-28 15:03:05 +02002886 return 0;
Christian Borntraeger2c70fe42013-05-17 14:41:36 +02002887 /*
2888 * We use MMU_RELOAD just to re-arm the ipte notifier for the
Martin Schwidefskyb2d73b22016-03-08 11:54:42 +01002889 * guest prefix page. gmap_mprotect_notify will wait on the ptl lock.
Christian Borntraeger2c70fe42013-05-17 14:41:36 +02002890 * This ensures that the ipte instruction for this request has
2891 * already finished. We might race against a second unmapper that
2892 * wants to set the blocking bit. Lets just retry the request loop.
2893 */
David Hildenbrand8ad35752014-03-14 11:00:21 +01002894 if (kvm_check_request(KVM_REQ_MMU_RELOAD, vcpu)) {
Christian Borntraeger2c70fe42013-05-17 14:41:36 +02002895 int rc;
Martin Schwidefskyb2d73b22016-03-08 11:54:42 +01002896 rc = gmap_mprotect_notify(vcpu->arch.gmap,
2897 kvm_s390_get_prefix(vcpu),
2898 PAGE_SIZE * 2, PROT_WRITE);
Julius Niedworokaca411a2016-08-03 16:39:55 +02002899 if (rc) {
2900 kvm_make_request(KVM_REQ_MMU_RELOAD, vcpu);
Christian Borntraeger2c70fe42013-05-17 14:41:36 +02002901 return rc;
Julius Niedworokaca411a2016-08-03 16:39:55 +02002902 }
David Hildenbrand8ad35752014-03-14 11:00:21 +01002903 goto retry;
Christian Borntraeger2c70fe42013-05-17 14:41:36 +02002904 }
David Hildenbrand8ad35752014-03-14 11:00:21 +01002905
David Hildenbrandd3d692c2014-07-29 08:53:36 +02002906 if (kvm_check_request(KVM_REQ_TLB_FLUSH, vcpu)) {
2907 vcpu->arch.sie_block->ihcpu = 0xffff;
2908 goto retry;
2909 }
2910
David Hildenbrand8ad35752014-03-14 11:00:21 +01002911 if (kvm_check_request(KVM_REQ_ENABLE_IBS, vcpu)) {
2912 if (!ibs_enabled(vcpu)) {
2913 trace_kvm_s390_enable_disable_ibs(vcpu->vcpu_id, 1);
David Hildenbrandef8f4f42018-01-23 18:05:29 +01002914 kvm_s390_set_cpuflags(vcpu, CPUSTAT_IBS);
David Hildenbrand8ad35752014-03-14 11:00:21 +01002915 }
2916 goto retry;
2917 }
2918
2919 if (kvm_check_request(KVM_REQ_DISABLE_IBS, vcpu)) {
2920 if (ibs_enabled(vcpu)) {
2921 trace_kvm_s390_enable_disable_ibs(vcpu->vcpu_id, 0);
David Hildenbrand9daecfc2018-01-23 18:05:30 +01002922 kvm_s390_clear_cpuflags(vcpu, CPUSTAT_IBS);
David Hildenbrand8ad35752014-03-14 11:00:21 +01002923 }
2924 goto retry;
2925 }
2926
David Hildenbrand6502a342016-06-21 14:19:51 +02002927 if (kvm_check_request(KVM_REQ_ICPT_OPEREXC, vcpu)) {
2928 vcpu->arch.sie_block->ictl |= ICTL_OPEREXC;
2929 goto retry;
2930 }
2931
Claudio Imbrenda190df4a2016-08-04 17:54:42 +02002932 if (kvm_check_request(KVM_REQ_START_MIGRATION, vcpu)) {
2933 /*
2934 * Disable CMMA virtualization; we will emulate the ESSA
2935 * instruction manually, in order to provide additional
2936 * functionalities needed for live migration.
2937 */
2938 vcpu->arch.sie_block->ecb2 &= ~ECB2_CMMA;
2939 goto retry;
2940 }
2941
2942 if (kvm_check_request(KVM_REQ_STOP_MIGRATION, vcpu)) {
2943 /*
2944 * Re-enable CMMA virtualization if CMMA is available and
2945 * was used.
2946 */
2947 if ((vcpu->kvm->arch.use_cmma) &&
2948 (vcpu->kvm->mm->context.use_cmma))
2949 vcpu->arch.sie_block->ecb2 |= ECB2_CMMA;
2950 goto retry;
2951 }
2952
David Hildenbrand0759d062014-05-13 16:54:32 +02002953 /* nothing to do, just clear the request */
Radim Krčmář72875d82017-04-26 22:32:19 +02002954 kvm_clear_request(KVM_REQ_UNHALT, vcpu);
David Hildenbrand0759d062014-05-13 16:54:32 +02002955
Christian Borntraeger2c70fe42013-05-17 14:41:36 +02002956 return 0;
2957}
2958
Collin L. Walling8fa16962016-07-26 15:29:44 -04002959void kvm_s390_set_tod_clock_ext(struct kvm *kvm,
2960 const struct kvm_s390_vm_tod_clock *gtod)
2961{
2962 struct kvm_vcpu *vcpu;
2963 struct kvm_s390_tod_clock_ext htod;
2964 int i;
2965
2966 mutex_lock(&kvm->lock);
2967 preempt_disable();
2968
2969 get_tod_clock_ext((char *)&htod);
2970
2971 kvm->arch.epoch = gtod->tod - htod.tod;
2972 kvm->arch.epdx = gtod->epoch_idx - htod.epoch_idx;
2973
2974 if (kvm->arch.epoch > gtod->tod)
2975 kvm->arch.epdx -= 1;
2976
2977 kvm_s390_vcpu_block_all(kvm);
2978 kvm_for_each_vcpu(i, vcpu, kvm) {
2979 vcpu->arch.sie_block->epoch = kvm->arch.epoch;
2980 vcpu->arch.sie_block->epdx = kvm->arch.epdx;
2981 }
2982
2983 kvm_s390_vcpu_unblock_all(kvm);
2984 preempt_enable();
2985 mutex_unlock(&kvm->lock);
2986}
2987
David Hildenbrand25ed1672015-05-12 09:49:14 +02002988void kvm_s390_set_tod_clock(struct kvm *kvm, u64 tod)
2989{
2990 struct kvm_vcpu *vcpu;
2991 int i;
2992
2993 mutex_lock(&kvm->lock);
2994 preempt_disable();
2995 kvm->arch.epoch = tod - get_tod_clock();
2996 kvm_s390_vcpu_block_all(kvm);
2997 kvm_for_each_vcpu(i, vcpu, kvm)
2998 vcpu->arch.sie_block->epoch = kvm->arch.epoch;
2999 kvm_s390_vcpu_unblock_all(kvm);
3000 preempt_enable();
3001 mutex_unlock(&kvm->lock);
3002}
3003
Thomas Huthfa576c52014-05-06 17:20:16 +02003004/**
3005 * kvm_arch_fault_in_page - fault-in guest page if necessary
3006 * @vcpu: The corresponding virtual cpu
3007 * @gpa: Guest physical address
3008 * @writable: Whether the page should be writable or not
3009 *
3010 * Make sure that a guest page has been faulted-in on the host.
3011 *
3012 * Return: Zero on success, negative error code otherwise.
3013 */
3014long kvm_arch_fault_in_page(struct kvm_vcpu *vcpu, gpa_t gpa, int writable)
Dominik Dingel24eb3a82013-06-17 16:25:18 +02003015{
Martin Schwidefsky527e30b2014-04-30 16:04:25 +02003016 return gmap_fault(vcpu->arch.gmap, gpa,
3017 writable ? FAULT_FLAG_WRITE : 0);
Dominik Dingel24eb3a82013-06-17 16:25:18 +02003018}
3019
Dominik Dingel3c038e62013-10-07 17:11:48 +02003020static void __kvm_inject_pfault_token(struct kvm_vcpu *vcpu, bool start_token,
3021 unsigned long token)
3022{
3023 struct kvm_s390_interrupt inti;
Jens Freimann383d0b02014-07-29 15:11:49 +02003024 struct kvm_s390_irq irq;
Dominik Dingel3c038e62013-10-07 17:11:48 +02003025
3026 if (start_token) {
Jens Freimann383d0b02014-07-29 15:11:49 +02003027 irq.u.ext.ext_params2 = token;
3028 irq.type = KVM_S390_INT_PFAULT_INIT;
3029 WARN_ON_ONCE(kvm_s390_inject_vcpu(vcpu, &irq));
Dominik Dingel3c038e62013-10-07 17:11:48 +02003030 } else {
3031 inti.type = KVM_S390_INT_PFAULT_DONE;
Jens Freimann383d0b02014-07-29 15:11:49 +02003032 inti.parm64 = token;
Dominik Dingel3c038e62013-10-07 17:11:48 +02003033 WARN_ON_ONCE(kvm_s390_inject_vm(vcpu->kvm, &inti));
3034 }
3035}
3036
3037void kvm_arch_async_page_not_present(struct kvm_vcpu *vcpu,
3038 struct kvm_async_pf *work)
3039{
3040 trace_kvm_s390_pfault_init(vcpu, work->arch.pfault_token);
3041 __kvm_inject_pfault_token(vcpu, true, work->arch.pfault_token);
3042}
3043
3044void kvm_arch_async_page_present(struct kvm_vcpu *vcpu,
3045 struct kvm_async_pf *work)
3046{
3047 trace_kvm_s390_pfault_done(vcpu, work->arch.pfault_token);
3048 __kvm_inject_pfault_token(vcpu, false, work->arch.pfault_token);
3049}
3050
3051void kvm_arch_async_page_ready(struct kvm_vcpu *vcpu,
3052 struct kvm_async_pf *work)
3053{
3054 /* s390 will always inject the page directly */
3055}
3056
3057bool kvm_arch_can_inject_async_page_present(struct kvm_vcpu *vcpu)
3058{
3059 /*
3060 * s390 will always inject the page directly,
3061 * but we still want check_async_completion to cleanup
3062 */
3063 return true;
3064}
3065
3066static int kvm_arch_setup_async_pf(struct kvm_vcpu *vcpu)
3067{
3068 hva_t hva;
3069 struct kvm_arch_async_pf arch;
3070 int rc;
3071
3072 if (vcpu->arch.pfault_token == KVM_S390_PFAULT_TOKEN_INVALID)
3073 return 0;
3074 if ((vcpu->arch.sie_block->gpsw.mask & vcpu->arch.pfault_select) !=
3075 vcpu->arch.pfault_compare)
3076 return 0;
3077 if (psw_extint_disabled(vcpu))
3078 return 0;
David Hildenbrand9a022062014-08-05 17:40:47 +02003079 if (kvm_s390_vcpu_has_irq(vcpu, 0))
Dominik Dingel3c038e62013-10-07 17:11:48 +02003080 return 0;
3081 if (!(vcpu->arch.sie_block->gcr[0] & 0x200ul))
3082 return 0;
3083 if (!vcpu->arch.gmap->pfault_enabled)
3084 return 0;
3085
Heiko Carstens81480cc2014-01-01 16:36:07 +01003086 hva = gfn_to_hva(vcpu->kvm, gpa_to_gfn(current->thread.gmap_addr));
3087 hva += current->thread.gmap_addr & ~PAGE_MASK;
3088 if (read_guest_real(vcpu, vcpu->arch.pfault_token, &arch.pfault_token, 8))
Dominik Dingel3c038e62013-10-07 17:11:48 +02003089 return 0;
3090
3091 rc = kvm_setup_async_pf(vcpu, current->thread.gmap_addr, hva, &arch);
3092 return rc;
3093}
3094
Thomas Huth3fb4c402013-09-12 10:33:43 +02003095static int vcpu_pre_run(struct kvm_vcpu *vcpu)
Heiko Carstensb0c632d2008-03-25 18:47:20 +01003096{
Thomas Huth3fb4c402013-09-12 10:33:43 +02003097 int rc, cpuflags;
Carsten Ottee168bf82012-01-04 10:25:22 +01003098
Dominik Dingel3c038e62013-10-07 17:11:48 +02003099 /*
3100 * On s390 notifications for arriving pages will be delivered directly
3101 * to the guest but the house keeping for completed pfaults is
3102 * handled outside the worker.
3103 */
3104 kvm_check_async_pf_completion(vcpu);
3105
Christian Borntraeger7ec7c8c2015-12-02 14:27:03 +01003106 vcpu->arch.sie_block->gg14 = vcpu->run->s.regs.gprs[14];
3107 vcpu->arch.sie_block->gg15 = vcpu->run->s.regs.gprs[15];
Heiko Carstensb0c632d2008-03-25 18:47:20 +01003108
3109 if (need_resched())
3110 schedule();
3111
Martin Schwidefskyd3a73ac2014-04-15 12:55:07 +02003112 if (test_cpu_flag(CIF_MCCK_PENDING))
Christian Borntraeger71cde582008-05-21 13:37:34 +02003113 s390_handle_mcck();
3114
Jens Freimann79395032014-04-17 10:10:30 +02003115 if (!kvm_is_ucontrol(vcpu->kvm)) {
3116 rc = kvm_s390_deliver_pending_interrupts(vcpu);
3117 if (rc)
3118 return rc;
3119 }
Carsten Otte0ff31862008-05-21 13:37:37 +02003120
Christian Borntraeger2c70fe42013-05-17 14:41:36 +02003121 rc = kvm_s390_handle_requests(vcpu);
3122 if (rc)
3123 return rc;
3124
David Hildenbrand27291e22014-01-23 12:26:52 +01003125 if (guestdbg_enabled(vcpu)) {
3126 kvm_s390_backup_guest_per_regs(vcpu);
3127 kvm_s390_patch_guest_per_regs(vcpu);
3128 }
3129
Heiko Carstensb0c632d2008-03-25 18:47:20 +01003130 vcpu->arch.sie_block->icptcode = 0;
Thomas Huth3fb4c402013-09-12 10:33:43 +02003131 cpuflags = atomic_read(&vcpu->arch.sie_block->cpuflags);
3132 VCPU_EVENT(vcpu, 6, "entering sie flags %x", cpuflags);
3133 trace_kvm_s390_sie_enter(vcpu, cpuflags);
Dominik Dingel2b29a9f2013-07-26 15:04:00 +02003134
Thomas Huth3fb4c402013-09-12 10:33:43 +02003135 return 0;
3136}
3137
Thomas Huth492d8642015-02-10 16:11:01 +01003138static int vcpu_post_run_fault_in_sie(struct kvm_vcpu *vcpu)
3139{
David Hildenbrand56317922016-01-12 17:37:58 +01003140 struct kvm_s390_pgm_info pgm_info = {
3141 .code = PGM_ADDRESSING,
3142 };
3143 u8 opcode, ilen;
Thomas Huth492d8642015-02-10 16:11:01 +01003144 int rc;
3145
3146 VCPU_EVENT(vcpu, 3, "%s", "fault in sie instruction");
3147 trace_kvm_s390_sie_fault(vcpu);
3148
3149 /*
3150 * We want to inject an addressing exception, which is defined as a
3151 * suppressing or terminating exception. However, since we came here
3152 * by a DAT access exception, the PSW still points to the faulting
3153 * instruction since DAT exceptions are nullifying. So we've got
3154 * to look up the current opcode to get the length of the instruction
3155 * to be able to forward the PSW.
3156 */
David Hildenbrand3fa8cad72016-05-24 12:00:49 +02003157 rc = read_guest_instr(vcpu, vcpu->arch.sie_block->gpsw.addr, &opcode, 1);
David Hildenbrand56317922016-01-12 17:37:58 +01003158 ilen = insn_length(opcode);
David Hildenbrand9b0d7212016-01-12 17:40:54 +01003159 if (rc < 0) {
3160 return rc;
3161 } else if (rc) {
3162 /* Instruction-Fetching Exceptions - we can't detect the ilen.
3163 * Forward by arbitrary ilc, injection will take care of
3164 * nullification if necessary.
3165 */
3166 pgm_info = vcpu->arch.pgm;
3167 ilen = 4;
3168 }
David Hildenbrand56317922016-01-12 17:37:58 +01003169 pgm_info.flags = ilen | KVM_S390_PGM_FLAGS_ILC_VALID;
3170 kvm_s390_forward_psw(vcpu, ilen);
3171 return kvm_s390_inject_prog_irq(vcpu, &pgm_info);
Thomas Huth492d8642015-02-10 16:11:01 +01003172}
3173
Thomas Huth3fb4c402013-09-12 10:33:43 +02003174static int vcpu_post_run(struct kvm_vcpu *vcpu, int exit_reason)
3175{
QingFeng Hao4d62fcc2017-06-07 12:03:05 +02003176 struct mcck_volatile_info *mcck_info;
3177 struct sie_page *sie_page;
3178
Dominik Dingel2b29a9f2013-07-26 15:04:00 +02003179 VCPU_EVENT(vcpu, 6, "exit sie icptcode %d",
3180 vcpu->arch.sie_block->icptcode);
3181 trace_kvm_s390_sie_exit(vcpu, vcpu->arch.sie_block->icptcode);
3182
David Hildenbrand27291e22014-01-23 12:26:52 +01003183 if (guestdbg_enabled(vcpu))
3184 kvm_s390_restore_guest_per_regs(vcpu);
3185
Christian Borntraeger7ec7c8c2015-12-02 14:27:03 +01003186 vcpu->run->s.regs.gprs[14] = vcpu->arch.sie_block->gg14;
3187 vcpu->run->s.regs.gprs[15] = vcpu->arch.sie_block->gg15;
David Hildenbrand71f116b2015-10-19 16:24:28 +02003188
QingFeng Hao4d62fcc2017-06-07 12:03:05 +02003189 if (exit_reason == -EINTR) {
3190 VCPU_EVENT(vcpu, 3, "%s", "machine check");
3191 sie_page = container_of(vcpu->arch.sie_block,
3192 struct sie_page, sie_block);
3193 mcck_info = &sie_page->mcck_info;
3194 kvm_s390_reinject_machine_check(vcpu, mcck_info);
3195 return 0;
3196 }
3197
David Hildenbrand71f116b2015-10-19 16:24:28 +02003198 if (vcpu->arch.sie_block->icptcode > 0) {
3199 int rc = kvm_handle_sie_intercept(vcpu);
3200
3201 if (rc != -EOPNOTSUPP)
3202 return rc;
3203 vcpu->run->exit_reason = KVM_EXIT_S390_SIEIC;
3204 vcpu->run->s390_sieic.icptcode = vcpu->arch.sie_block->icptcode;
3205 vcpu->run->s390_sieic.ipa = vcpu->arch.sie_block->ipa;
3206 vcpu->run->s390_sieic.ipb = vcpu->arch.sie_block->ipb;
3207 return -EREMOTE;
3208 } else if (exit_reason != -EFAULT) {
3209 vcpu->stat.exit_null++;
3210 return 0;
Thomas Huth210b16072013-09-19 16:26:18 +02003211 } else if (kvm_is_ucontrol(vcpu->kvm)) {
3212 vcpu->run->exit_reason = KVM_EXIT_S390_UCONTROL;
3213 vcpu->run->s390_ucontrol.trans_exc_code =
3214 current->thread.gmap_addr;
3215 vcpu->run->s390_ucontrol.pgm_code = 0x10;
David Hildenbrand71f116b2015-10-19 16:24:28 +02003216 return -EREMOTE;
Dominik Dingel24eb3a82013-06-17 16:25:18 +02003217 } else if (current->thread.gmap_pfault) {
Dominik Dingel3c038e62013-10-07 17:11:48 +02003218 trace_kvm_s390_major_guest_pfault(vcpu);
Dominik Dingel24eb3a82013-06-17 16:25:18 +02003219 current->thread.gmap_pfault = 0;
David Hildenbrand71f116b2015-10-19 16:24:28 +02003220 if (kvm_arch_setup_async_pf(vcpu))
3221 return 0;
3222 return kvm_arch_fault_in_page(vcpu, current->thread.gmap_addr, 1);
Dominik Dingel24eb3a82013-06-17 16:25:18 +02003223 }
David Hildenbrand71f116b2015-10-19 16:24:28 +02003224 return vcpu_post_run_fault_in_sie(vcpu);
Thomas Huth3fb4c402013-09-12 10:33:43 +02003225}
3226
3227static int __vcpu_run(struct kvm_vcpu *vcpu)
3228{
3229 int rc, exit_reason;
3230
Thomas Huth800c1062013-09-12 10:33:45 +02003231 /*
3232 * We try to hold kvm->srcu during most of vcpu_run (except when run-
3233 * ning the guest), so that memslots (and other stuff) are protected
3234 */
3235 vcpu->srcu_idx = srcu_read_lock(&vcpu->kvm->srcu);
3236
Thomas Hutha76ccff2013-09-12 10:33:44 +02003237 do {
3238 rc = vcpu_pre_run(vcpu);
3239 if (rc)
3240 break;
Thomas Huth3fb4c402013-09-12 10:33:43 +02003241
Thomas Huth800c1062013-09-12 10:33:45 +02003242 srcu_read_unlock(&vcpu->kvm->srcu, vcpu->srcu_idx);
Thomas Hutha76ccff2013-09-12 10:33:44 +02003243 /*
3244 * As PF_VCPU will be used in fault handler, between
3245 * guest_enter and guest_exit should be no uaccess.
3246 */
Christian Borntraeger0097d122015-04-30 13:43:30 +02003247 local_irq_disable();
Paolo Bonzini6edaa532016-06-15 15:18:26 +02003248 guest_enter_irqoff();
David Hildenbranddb0758b2016-02-15 09:42:25 +01003249 __disable_cpu_timer_accounting(vcpu);
Christian Borntraeger0097d122015-04-30 13:43:30 +02003250 local_irq_enable();
Thomas Hutha76ccff2013-09-12 10:33:44 +02003251 exit_reason = sie64a(vcpu->arch.sie_block,
3252 vcpu->run->s.regs.gprs);
Christian Borntraeger0097d122015-04-30 13:43:30 +02003253 local_irq_disable();
David Hildenbranddb0758b2016-02-15 09:42:25 +01003254 __enable_cpu_timer_accounting(vcpu);
Paolo Bonzini6edaa532016-06-15 15:18:26 +02003255 guest_exit_irqoff();
Christian Borntraeger0097d122015-04-30 13:43:30 +02003256 local_irq_enable();
Thomas Huth800c1062013-09-12 10:33:45 +02003257 vcpu->srcu_idx = srcu_read_lock(&vcpu->kvm->srcu);
Thomas Huth3fb4c402013-09-12 10:33:43 +02003258
Thomas Hutha76ccff2013-09-12 10:33:44 +02003259 rc = vcpu_post_run(vcpu, exit_reason);
David Hildenbrand27291e22014-01-23 12:26:52 +01003260 } while (!signal_pending(current) && !guestdbg_exit_pending(vcpu) && !rc);
Thomas Huth3fb4c402013-09-12 10:33:43 +02003261
Thomas Huth800c1062013-09-12 10:33:45 +02003262 srcu_read_unlock(&vcpu->kvm->srcu, vcpu->srcu_idx);
Carsten Ottee168bf82012-01-04 10:25:22 +01003263 return rc;
Heiko Carstensb0c632d2008-03-25 18:47:20 +01003264}
3265
David Hildenbrandb028ee32014-07-17 10:47:43 +02003266static void sync_regs(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run)
3267{
Christian Borntraeger4d5f2c02017-02-09 17:15:41 +01003268 struct runtime_instr_cb *riccb;
Fan Zhang4e0b1ab2016-11-29 07:17:55 +01003269 struct gs_cb *gscb;
Christian Borntraeger4d5f2c02017-02-09 17:15:41 +01003270
3271 riccb = (struct runtime_instr_cb *) &kvm_run->s.regs.riccb;
Fan Zhang4e0b1ab2016-11-29 07:17:55 +01003272 gscb = (struct gs_cb *) &kvm_run->s.regs.gscb;
David Hildenbrandb028ee32014-07-17 10:47:43 +02003273 vcpu->arch.sie_block->gpsw.mask = kvm_run->psw_mask;
3274 vcpu->arch.sie_block->gpsw.addr = kvm_run->psw_addr;
3275 if (kvm_run->kvm_dirty_regs & KVM_SYNC_PREFIX)
3276 kvm_s390_set_prefix(vcpu, kvm_run->s.regs.prefix);
3277 if (kvm_run->kvm_dirty_regs & KVM_SYNC_CRS) {
3278 memcpy(&vcpu->arch.sie_block->gcr, &kvm_run->s.regs.crs, 128);
David Hildenbrandd3d692c2014-07-29 08:53:36 +02003279 /* some control register changes require a tlb flush */
3280 kvm_make_request(KVM_REQ_TLB_FLUSH, vcpu);
David Hildenbrandb028ee32014-07-17 10:47:43 +02003281 }
3282 if (kvm_run->kvm_dirty_regs & KVM_SYNC_ARCH0) {
David Hildenbrand4287f242016-02-15 09:40:12 +01003283 kvm_s390_set_cpu_timer(vcpu, kvm_run->s.regs.cputm);
David Hildenbrandb028ee32014-07-17 10:47:43 +02003284 vcpu->arch.sie_block->ckc = kvm_run->s.regs.ckc;
3285 vcpu->arch.sie_block->todpr = kvm_run->s.regs.todpr;
3286 vcpu->arch.sie_block->pp = kvm_run->s.regs.pp;
3287 vcpu->arch.sie_block->gbea = kvm_run->s.regs.gbea;
3288 }
3289 if (kvm_run->kvm_dirty_regs & KVM_SYNC_PFAULT) {
3290 vcpu->arch.pfault_token = kvm_run->s.regs.pft;
3291 vcpu->arch.pfault_select = kvm_run->s.regs.pfs;
3292 vcpu->arch.pfault_compare = kvm_run->s.regs.pfc;
David Hildenbrand9fbd8082014-10-09 15:01:38 +02003293 if (vcpu->arch.pfault_token == KVM_S390_PFAULT_TOKEN_INVALID)
3294 kvm_clear_async_pf_completion_queue(vcpu);
David Hildenbrandb028ee32014-07-17 10:47:43 +02003295 }
Fan Zhang80cd8762016-08-15 04:53:22 +02003296 /*
3297 * If userspace sets the riccb (e.g. after migration) to a valid state,
3298 * we should enable RI here instead of doing the lazy enablement.
3299 */
3300 if ((kvm_run->kvm_dirty_regs & KVM_SYNC_RICCB) &&
Christian Borntraeger4d5f2c02017-02-09 17:15:41 +01003301 test_kvm_facility(vcpu->kvm, 64) &&
Alice Frosibb59c2d2017-09-14 12:35:45 +02003302 riccb->v &&
David Hildenbrand0c9d8682017-03-13 11:48:28 +01003303 !(vcpu->arch.sie_block->ecb3 & ECB3_RI)) {
Christian Borntraeger4d5f2c02017-02-09 17:15:41 +01003304 VCPU_EVENT(vcpu, 3, "%s", "ENABLE: RI (sync_regs)");
David Hildenbrand0c9d8682017-03-13 11:48:28 +01003305 vcpu->arch.sie_block->ecb3 |= ECB3_RI;
Fan Zhang80cd8762016-08-15 04:53:22 +02003306 }
Fan Zhang4e0b1ab2016-11-29 07:17:55 +01003307 /*
3308 * If userspace sets the gscb (e.g. after migration) to non-zero,
3309 * we should enable GS here instead of doing the lazy enablement.
3310 */
3311 if ((kvm_run->kvm_dirty_regs & KVM_SYNC_GSCB) &&
3312 test_kvm_facility(vcpu->kvm, 133) &&
3313 gscb->gssm &&
3314 !vcpu->arch.gs_enabled) {
3315 VCPU_EVENT(vcpu, 3, "%s", "ENABLE: GS (sync_regs)");
3316 vcpu->arch.sie_block->ecb |= ECB_GS;
3317 vcpu->arch.sie_block->ecd |= ECD_HOSTREGMGMT;
3318 vcpu->arch.gs_enabled = 1;
Fan Zhang80cd8762016-08-15 04:53:22 +02003319 }
Christian Borntraeger31d8b8d2016-11-10 14:22:02 +01003320 save_access_regs(vcpu->arch.host_acrs);
3321 restore_access_regs(vcpu->run->s.regs.acrs);
Christian Borntraegere1788bb2016-11-22 09:29:38 +01003322 /* save host (userspace) fprs/vrs */
3323 save_fpu_regs();
3324 vcpu->arch.host_fpregs.fpc = current->thread.fpu.fpc;
3325 vcpu->arch.host_fpregs.regs = current->thread.fpu.regs;
3326 if (MACHINE_HAS_VX)
3327 current->thread.fpu.regs = vcpu->run->s.regs.vrs;
3328 else
3329 current->thread.fpu.regs = vcpu->run->s.regs.fprs;
3330 current->thread.fpu.fpc = vcpu->run->s.regs.fpc;
3331 if (test_fp_ctl(current->thread.fpu.fpc))
3332 /* User space provided an invalid FPC, let's clear it */
3333 current->thread.fpu.fpc = 0;
Fan Zhang4e0b1ab2016-11-29 07:17:55 +01003334 if (MACHINE_HAS_GS) {
3335 preempt_disable();
3336 __ctl_set_bit(2, 4);
3337 if (current->thread.gs_cb) {
3338 vcpu->arch.host_gscb = current->thread.gs_cb;
3339 save_gs_cb(vcpu->arch.host_gscb);
3340 }
3341 if (vcpu->arch.gs_enabled) {
3342 current->thread.gs_cb = (struct gs_cb *)
3343 &vcpu->run->s.regs.gscb;
3344 restore_gs_cb(current->thread.gs_cb);
3345 }
3346 preempt_enable();
3347 }
Fan Zhang80cd8762016-08-15 04:53:22 +02003348
David Hildenbrandb028ee32014-07-17 10:47:43 +02003349 kvm_run->kvm_dirty_regs = 0;
3350}
3351
3352static void store_regs(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run)
3353{
3354 kvm_run->psw_mask = vcpu->arch.sie_block->gpsw.mask;
3355 kvm_run->psw_addr = vcpu->arch.sie_block->gpsw.addr;
3356 kvm_run->s.regs.prefix = kvm_s390_get_prefix(vcpu);
3357 memcpy(&kvm_run->s.regs.crs, &vcpu->arch.sie_block->gcr, 128);
David Hildenbrand4287f242016-02-15 09:40:12 +01003358 kvm_run->s.regs.cputm = kvm_s390_get_cpu_timer(vcpu);
David Hildenbrandb028ee32014-07-17 10:47:43 +02003359 kvm_run->s.regs.ckc = vcpu->arch.sie_block->ckc;
3360 kvm_run->s.regs.todpr = vcpu->arch.sie_block->todpr;
3361 kvm_run->s.regs.pp = vcpu->arch.sie_block->pp;
3362 kvm_run->s.regs.gbea = vcpu->arch.sie_block->gbea;
3363 kvm_run->s.regs.pft = vcpu->arch.pfault_token;
3364 kvm_run->s.regs.pfs = vcpu->arch.pfault_select;
3365 kvm_run->s.regs.pfc = vcpu->arch.pfault_compare;
Christian Borntraeger31d8b8d2016-11-10 14:22:02 +01003366 save_access_regs(vcpu->run->s.regs.acrs);
3367 restore_access_regs(vcpu->arch.host_acrs);
Christian Borntraegere1788bb2016-11-22 09:29:38 +01003368 /* Save guest register state */
3369 save_fpu_regs();
3370 vcpu->run->s.regs.fpc = current->thread.fpu.fpc;
3371 /* Restore will be done lazily at return */
3372 current->thread.fpu.fpc = vcpu->arch.host_fpregs.fpc;
3373 current->thread.fpu.regs = vcpu->arch.host_fpregs.regs;
Fan Zhang4e0b1ab2016-11-29 07:17:55 +01003374 if (MACHINE_HAS_GS) {
3375 __ctl_set_bit(2, 4);
3376 if (vcpu->arch.gs_enabled)
3377 save_gs_cb(current->thread.gs_cb);
3378 preempt_disable();
3379 current->thread.gs_cb = vcpu->arch.host_gscb;
3380 restore_gs_cb(vcpu->arch.host_gscb);
3381 preempt_enable();
3382 if (!vcpu->arch.host_gscb)
3383 __ctl_clear_bit(2, 4);
3384 vcpu->arch.host_gscb = NULL;
3385 }
Christian Borntraegere1788bb2016-11-22 09:29:38 +01003386
David Hildenbrandb028ee32014-07-17 10:47:43 +02003387}
3388
Heiko Carstensb0c632d2008-03-25 18:47:20 +01003389int kvm_arch_vcpu_ioctl_run(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run)
3390{
Christian Borntraeger8f2abe62008-03-25 18:47:23 +01003391 int rc;
Heiko Carstensb0c632d2008-03-25 18:47:20 +01003392
Paolo Bonzini460df4c2017-02-08 11:50:15 +01003393 if (kvm_run->immediate_exit)
3394 return -EINTR;
3395
David Hildenbrand27291e22014-01-23 12:26:52 +01003396 if (guestdbg_exit_pending(vcpu)) {
3397 kvm_s390_prepare_debug_exit(vcpu);
3398 return 0;
3399 }
3400
Jan H. Schönherr20b70352017-11-24 22:39:01 +01003401 kvm_sigset_activate(vcpu);
Heiko Carstensb0c632d2008-03-25 18:47:20 +01003402
David Hildenbrand6352e4d2014-04-10 17:35:00 +02003403 if (!kvm_s390_user_cpu_state_ctrl(vcpu->kvm)) {
3404 kvm_s390_vcpu_start(vcpu);
3405 } else if (is_vcpu_stopped(vcpu)) {
David Hildenbrandea2cdd22015-05-20 13:24:02 +02003406 pr_err_ratelimited("can't run stopped vcpu %d\n",
David Hildenbrand6352e4d2014-04-10 17:35:00 +02003407 vcpu->vcpu_id);
3408 return -EINVAL;
3409 }
Heiko Carstensb0c632d2008-03-25 18:47:20 +01003410
David Hildenbrandb028ee32014-07-17 10:47:43 +02003411 sync_regs(vcpu, kvm_run);
David Hildenbranddb0758b2016-02-15 09:42:25 +01003412 enable_cpu_timer_accounting(vcpu);
Carsten Otted7b0b5e2009-11-19 14:21:16 +01003413
Heiko Carstensdab4079d2009-06-12 10:26:32 +02003414 might_fault();
Thomas Hutha76ccff2013-09-12 10:33:44 +02003415 rc = __vcpu_run(vcpu);
Christian Ehrhardt9ace9032009-05-20 15:34:55 +02003416
Christian Ehrhardtb1d16c42009-05-20 15:34:56 +02003417 if (signal_pending(current) && !rc) {
3418 kvm_run->exit_reason = KVM_EXIT_INTR;
Christian Borntraeger8f2abe62008-03-25 18:47:23 +01003419 rc = -EINTR;
Christian Ehrhardtb1d16c42009-05-20 15:34:56 +02003420 }
Christian Borntraeger8f2abe62008-03-25 18:47:23 +01003421
David Hildenbrand27291e22014-01-23 12:26:52 +01003422 if (guestdbg_exit_pending(vcpu) && !rc) {
3423 kvm_s390_prepare_debug_exit(vcpu);
3424 rc = 0;
3425 }
3426
Christian Borntraeger8f2abe62008-03-25 18:47:23 +01003427 if (rc == -EREMOTE) {
David Hildenbrand71f116b2015-10-19 16:24:28 +02003428 /* userspace support is needed, kvm_run has been prepared */
Christian Borntraeger8f2abe62008-03-25 18:47:23 +01003429 rc = 0;
3430 }
Heiko Carstensb0c632d2008-03-25 18:47:20 +01003431
David Hildenbranddb0758b2016-02-15 09:42:25 +01003432 disable_cpu_timer_accounting(vcpu);
David Hildenbrandb028ee32014-07-17 10:47:43 +02003433 store_regs(vcpu, kvm_run);
Carsten Otted7b0b5e2009-11-19 14:21:16 +01003434
Jan H. Schönherr20b70352017-11-24 22:39:01 +01003435 kvm_sigset_deactivate(vcpu);
Heiko Carstensb0c632d2008-03-25 18:47:20 +01003436
Heiko Carstensb0c632d2008-03-25 18:47:20 +01003437 vcpu->stat.exit_userspace++;
Heiko Carstens7e8e6ab2008-04-04 15:12:35 +02003438 return rc;
Heiko Carstensb0c632d2008-03-25 18:47:20 +01003439}
3440
Heiko Carstensb0c632d2008-03-25 18:47:20 +01003441/*
3442 * store status at address
3443 * we use have two special cases:
3444 * KVM_S390_STORE_STATUS_NOADDR: -> 0x1200 on 64 bit
3445 * KVM_S390_STORE_STATUS_PREFIXED: -> prefix
3446 */
Heiko Carstensd0bce602014-01-01 16:45:58 +01003447int kvm_s390_store_status_unloaded(struct kvm_vcpu *vcpu, unsigned long gpa)
Heiko Carstensb0c632d2008-03-25 18:47:20 +01003448{
Carsten Otte092670c2011-07-24 10:48:22 +02003449 unsigned char archmode = 1;
David Hildenbrand9abc2a02016-01-14 22:12:47 +01003450 freg_t fprs[NUM_FPRS];
Michael Muellerfda902c2014-05-13 16:58:30 +02003451 unsigned int px;
David Hildenbrand4287f242016-02-15 09:40:12 +01003452 u64 clkcomp, cputm;
Heiko Carstensd0bce602014-01-01 16:45:58 +01003453 int rc;
Heiko Carstensb0c632d2008-03-25 18:47:20 +01003454
Martin Schwidefskyd9a3a092015-10-23 09:02:32 +02003455 px = kvm_s390_get_prefix(vcpu);
Heiko Carstensd0bce602014-01-01 16:45:58 +01003456 if (gpa == KVM_S390_STORE_STATUS_NOADDR) {
3457 if (write_guest_abs(vcpu, 163, &archmode, 1))
Heiko Carstensb0c632d2008-03-25 18:47:20 +01003458 return -EFAULT;
Martin Schwidefskyd9a3a092015-10-23 09:02:32 +02003459 gpa = 0;
Heiko Carstensd0bce602014-01-01 16:45:58 +01003460 } else if (gpa == KVM_S390_STORE_STATUS_PREFIXED) {
3461 if (write_guest_real(vcpu, 163, &archmode, 1))
Heiko Carstensb0c632d2008-03-25 18:47:20 +01003462 return -EFAULT;
Martin Schwidefskyd9a3a092015-10-23 09:02:32 +02003463 gpa = px;
3464 } else
3465 gpa -= __LC_FPREGS_SAVE_AREA;
David Hildenbrand9abc2a02016-01-14 22:12:47 +01003466
3467 /* manually convert vector registers if necessary */
3468 if (MACHINE_HAS_VX) {
David Hildenbrand9522b372016-03-08 12:24:30 +01003469 convert_vx_to_fp(fprs, (__vector128 *) vcpu->run->s.regs.vrs);
David Hildenbrand9abc2a02016-01-14 22:12:47 +01003470 rc = write_guest_abs(vcpu, gpa + __LC_FPREGS_SAVE_AREA,
3471 fprs, 128);
3472 } else {
3473 rc = write_guest_abs(vcpu, gpa + __LC_FPREGS_SAVE_AREA,
David Hildenbrand6fd8e672016-01-18 14:46:34 +01003474 vcpu->run->s.regs.fprs, 128);
David Hildenbrand9abc2a02016-01-14 22:12:47 +01003475 }
Martin Schwidefskyd9a3a092015-10-23 09:02:32 +02003476 rc |= write_guest_abs(vcpu, gpa + __LC_GPREGS_SAVE_AREA,
Heiko Carstensd0bce602014-01-01 16:45:58 +01003477 vcpu->run->s.regs.gprs, 128);
Martin Schwidefskyd9a3a092015-10-23 09:02:32 +02003478 rc |= write_guest_abs(vcpu, gpa + __LC_PSW_SAVE_AREA,
Heiko Carstensd0bce602014-01-01 16:45:58 +01003479 &vcpu->arch.sie_block->gpsw, 16);
Martin Schwidefskyd9a3a092015-10-23 09:02:32 +02003480 rc |= write_guest_abs(vcpu, gpa + __LC_PREFIX_SAVE_AREA,
Michael Muellerfda902c2014-05-13 16:58:30 +02003481 &px, 4);
Martin Schwidefskyd9a3a092015-10-23 09:02:32 +02003482 rc |= write_guest_abs(vcpu, gpa + __LC_FP_CREG_SAVE_AREA,
David Hildenbrand9abc2a02016-01-14 22:12:47 +01003483 &vcpu->run->s.regs.fpc, 4);
Martin Schwidefskyd9a3a092015-10-23 09:02:32 +02003484 rc |= write_guest_abs(vcpu, gpa + __LC_TOD_PROGREG_SAVE_AREA,
Heiko Carstensd0bce602014-01-01 16:45:58 +01003485 &vcpu->arch.sie_block->todpr, 4);
David Hildenbrand4287f242016-02-15 09:40:12 +01003486 cputm = kvm_s390_get_cpu_timer(vcpu);
Martin Schwidefskyd9a3a092015-10-23 09:02:32 +02003487 rc |= write_guest_abs(vcpu, gpa + __LC_CPU_TIMER_SAVE_AREA,
David Hildenbrand4287f242016-02-15 09:40:12 +01003488 &cputm, 8);
Thomas Huth178bd782013-11-13 20:28:18 +01003489 clkcomp = vcpu->arch.sie_block->ckc >> 8;
Martin Schwidefskyd9a3a092015-10-23 09:02:32 +02003490 rc |= write_guest_abs(vcpu, gpa + __LC_CLOCK_COMP_SAVE_AREA,
Heiko Carstensd0bce602014-01-01 16:45:58 +01003491 &clkcomp, 8);
Martin Schwidefskyd9a3a092015-10-23 09:02:32 +02003492 rc |= write_guest_abs(vcpu, gpa + __LC_AREGS_SAVE_AREA,
Heiko Carstensd0bce602014-01-01 16:45:58 +01003493 &vcpu->run->s.regs.acrs, 64);
Martin Schwidefskyd9a3a092015-10-23 09:02:32 +02003494 rc |= write_guest_abs(vcpu, gpa + __LC_CREGS_SAVE_AREA,
Heiko Carstensd0bce602014-01-01 16:45:58 +01003495 &vcpu->arch.sie_block->gcr, 128);
3496 return rc ? -EFAULT : 0;
Heiko Carstensb0c632d2008-03-25 18:47:20 +01003497}
3498
Thomas Huthe8798922013-11-06 15:46:33 +01003499int kvm_s390_vcpu_store_status(struct kvm_vcpu *vcpu, unsigned long addr)
3500{
3501 /*
3502 * The guest FPRS and ACRS are in the host FPRS/ACRS due to the lazy
Christian Borntraeger31d8b8d2016-11-10 14:22:02 +01003503 * switch in the run ioctl. Let's update our copies before we save
Thomas Huthe8798922013-11-06 15:46:33 +01003504 * it into the save area
3505 */
Hendrik Bruecknerd0164ee2015-06-29 16:43:06 +02003506 save_fpu_regs();
David Hildenbrand9abc2a02016-01-14 22:12:47 +01003507 vcpu->run->s.regs.fpc = current->thread.fpu.fpc;
Thomas Huthe8798922013-11-06 15:46:33 +01003508 save_access_regs(vcpu->run->s.regs.acrs);
3509
3510 return kvm_s390_store_status_unloaded(vcpu, addr);
3511}
3512
David Hildenbrand8ad35752014-03-14 11:00:21 +01003513static void __disable_ibs_on_vcpu(struct kvm_vcpu *vcpu)
3514{
3515 kvm_check_request(KVM_REQ_ENABLE_IBS, vcpu);
Christian Borntraeger8e236542015-04-09 13:49:04 +02003516 kvm_s390_sync_request(KVM_REQ_DISABLE_IBS, vcpu);
David Hildenbrand8ad35752014-03-14 11:00:21 +01003517}
3518
3519static void __disable_ibs_on_all_vcpus(struct kvm *kvm)
3520{
3521 unsigned int i;
3522 struct kvm_vcpu *vcpu;
3523
3524 kvm_for_each_vcpu(i, vcpu, kvm) {
3525 __disable_ibs_on_vcpu(vcpu);
3526 }
3527}
3528
3529static void __enable_ibs_on_vcpu(struct kvm_vcpu *vcpu)
3530{
David Hildenbrand09a400e2016-04-04 15:57:08 +02003531 if (!sclp.has_ibs)
3532 return;
David Hildenbrand8ad35752014-03-14 11:00:21 +01003533 kvm_check_request(KVM_REQ_DISABLE_IBS, vcpu);
Christian Borntraeger8e236542015-04-09 13:49:04 +02003534 kvm_s390_sync_request(KVM_REQ_ENABLE_IBS, vcpu);
David Hildenbrand8ad35752014-03-14 11:00:21 +01003535}
3536
David Hildenbrand6852d7b2014-03-14 10:59:29 +01003537void kvm_s390_vcpu_start(struct kvm_vcpu *vcpu)
3538{
David Hildenbrand8ad35752014-03-14 11:00:21 +01003539 int i, online_vcpus, started_vcpus = 0;
3540
3541 if (!is_vcpu_stopped(vcpu))
3542 return;
3543
David Hildenbrand6852d7b2014-03-14 10:59:29 +01003544 trace_kvm_s390_vcpu_start_stop(vcpu->vcpu_id, 1);
David Hildenbrand8ad35752014-03-14 11:00:21 +01003545 /* Only one cpu at a time may enter/leave the STOPPED state. */
David Hildenbrand433b9ee2014-05-06 16:11:14 +02003546 spin_lock(&vcpu->kvm->arch.start_stop_lock);
David Hildenbrand8ad35752014-03-14 11:00:21 +01003547 online_vcpus = atomic_read(&vcpu->kvm->online_vcpus);
3548
3549 for (i = 0; i < online_vcpus; i++) {
3550 if (!is_vcpu_stopped(vcpu->kvm->vcpus[i]))
3551 started_vcpus++;
3552 }
3553
3554 if (started_vcpus == 0) {
3555 /* we're the only active VCPU -> speed it up */
3556 __enable_ibs_on_vcpu(vcpu);
3557 } else if (started_vcpus == 1) {
3558 /*
3559 * As we are starting a second VCPU, we have to disable
3560 * the IBS facility on all VCPUs to remove potentially
3561 * oustanding ENABLE requests.
3562 */
3563 __disable_ibs_on_all_vcpus(vcpu->kvm);
3564 }
3565
David Hildenbrand9daecfc2018-01-23 18:05:30 +01003566 kvm_s390_clear_cpuflags(vcpu, CPUSTAT_STOPPED);
David Hildenbrand8ad35752014-03-14 11:00:21 +01003567 /*
3568 * Another VCPU might have used IBS while we were offline.
3569 * Let's play safe and flush the VCPU at startup.
3570 */
David Hildenbrandd3d692c2014-07-29 08:53:36 +02003571 kvm_make_request(KVM_REQ_TLB_FLUSH, vcpu);
David Hildenbrand433b9ee2014-05-06 16:11:14 +02003572 spin_unlock(&vcpu->kvm->arch.start_stop_lock);
David Hildenbrand8ad35752014-03-14 11:00:21 +01003573 return;
David Hildenbrand6852d7b2014-03-14 10:59:29 +01003574}
3575
3576void kvm_s390_vcpu_stop(struct kvm_vcpu *vcpu)
3577{
David Hildenbrand8ad35752014-03-14 11:00:21 +01003578 int i, online_vcpus, started_vcpus = 0;
3579 struct kvm_vcpu *started_vcpu = NULL;
3580
3581 if (is_vcpu_stopped(vcpu))
3582 return;
3583
David Hildenbrand6852d7b2014-03-14 10:59:29 +01003584 trace_kvm_s390_vcpu_start_stop(vcpu->vcpu_id, 0);
David Hildenbrand8ad35752014-03-14 11:00:21 +01003585 /* Only one cpu at a time may enter/leave the STOPPED state. */
David Hildenbrand433b9ee2014-05-06 16:11:14 +02003586 spin_lock(&vcpu->kvm->arch.start_stop_lock);
David Hildenbrand8ad35752014-03-14 11:00:21 +01003587 online_vcpus = atomic_read(&vcpu->kvm->online_vcpus);
3588
David Hildenbrand32f5ff632014-04-14 12:40:03 +02003589 /* SIGP STOP and SIGP STOP AND STORE STATUS has been fully processed */
David Hildenbrand6cddd432014-10-15 16:48:53 +02003590 kvm_s390_clear_stop_irq(vcpu);
David Hildenbrand32f5ff632014-04-14 12:40:03 +02003591
David Hildenbrandef8f4f42018-01-23 18:05:29 +01003592 kvm_s390_set_cpuflags(vcpu, CPUSTAT_STOPPED);
David Hildenbrand8ad35752014-03-14 11:00:21 +01003593 __disable_ibs_on_vcpu(vcpu);
3594
3595 for (i = 0; i < online_vcpus; i++) {
3596 if (!is_vcpu_stopped(vcpu->kvm->vcpus[i])) {
3597 started_vcpus++;
3598 started_vcpu = vcpu->kvm->vcpus[i];
3599 }
3600 }
3601
3602 if (started_vcpus == 1) {
3603 /*
3604 * As we only have one VCPU left, we want to enable the
3605 * IBS facility for that VCPU to speed it up.
3606 */
3607 __enable_ibs_on_vcpu(started_vcpu);
3608 }
3609
David Hildenbrand433b9ee2014-05-06 16:11:14 +02003610 spin_unlock(&vcpu->kvm->arch.start_stop_lock);
David Hildenbrand8ad35752014-03-14 11:00:21 +01003611 return;
David Hildenbrand6852d7b2014-03-14 10:59:29 +01003612}
3613
Cornelia Huckd6712df2012-12-20 15:32:11 +01003614static int kvm_vcpu_ioctl_enable_cap(struct kvm_vcpu *vcpu,
3615 struct kvm_enable_cap *cap)
3616{
3617 int r;
3618
3619 if (cap->flags)
3620 return -EINVAL;
3621
3622 switch (cap->cap) {
Cornelia Huckfa6b7fe2012-12-20 15:32:12 +01003623 case KVM_CAP_S390_CSS_SUPPORT:
3624 if (!vcpu->kvm->arch.css_support) {
3625 vcpu->kvm->arch.css_support = 1;
Christian Borntraegerc92ea7b2015-07-22 15:52:10 +02003626 VM_EVENT(vcpu->kvm, 3, "%s", "ENABLE: CSS support");
Cornelia Huckfa6b7fe2012-12-20 15:32:12 +01003627 trace_kvm_s390_enable_css(vcpu->kvm);
3628 }
3629 r = 0;
3630 break;
Cornelia Huckd6712df2012-12-20 15:32:11 +01003631 default:
3632 r = -EINVAL;
3633 break;
3634 }
3635 return r;
3636}
3637
Thomas Huth41408c282015-02-06 15:01:21 +01003638static long kvm_s390_guest_mem_op(struct kvm_vcpu *vcpu,
3639 struct kvm_s390_mem_op *mop)
3640{
3641 void __user *uaddr = (void __user *)mop->buf;
3642 void *tmpbuf = NULL;
3643 int r, srcu_idx;
3644 const u64 supported_flags = KVM_S390_MEMOP_F_INJECT_EXCEPTION
3645 | KVM_S390_MEMOP_F_CHECK_ONLY;
3646
3647 if (mop->flags & ~supported_flags)
3648 return -EINVAL;
3649
3650 if (mop->size > MEM_OP_MAX_SIZE)
3651 return -E2BIG;
3652
3653 if (!(mop->flags & KVM_S390_MEMOP_F_CHECK_ONLY)) {
3654 tmpbuf = vmalloc(mop->size);
3655 if (!tmpbuf)
3656 return -ENOMEM;
3657 }
3658
3659 srcu_idx = srcu_read_lock(&vcpu->kvm->srcu);
3660
3661 switch (mop->op) {
3662 case KVM_S390_MEMOP_LOGICAL_READ:
3663 if (mop->flags & KVM_S390_MEMOP_F_CHECK_ONLY) {
David Hildenbrand92c96322015-11-16 15:42:11 +01003664 r = check_gva_range(vcpu, mop->gaddr, mop->ar,
3665 mop->size, GACC_FETCH);
Thomas Huth41408c282015-02-06 15:01:21 +01003666 break;
3667 }
3668 r = read_guest(vcpu, mop->gaddr, mop->ar, tmpbuf, mop->size);
3669 if (r == 0) {
3670 if (copy_to_user(uaddr, tmpbuf, mop->size))
3671 r = -EFAULT;
3672 }
3673 break;
3674 case KVM_S390_MEMOP_LOGICAL_WRITE:
3675 if (mop->flags & KVM_S390_MEMOP_F_CHECK_ONLY) {
David Hildenbrand92c96322015-11-16 15:42:11 +01003676 r = check_gva_range(vcpu, mop->gaddr, mop->ar,
3677 mop->size, GACC_STORE);
Thomas Huth41408c282015-02-06 15:01:21 +01003678 break;
3679 }
3680 if (copy_from_user(tmpbuf, uaddr, mop->size)) {
3681 r = -EFAULT;
3682 break;
3683 }
3684 r = write_guest(vcpu, mop->gaddr, mop->ar, tmpbuf, mop->size);
3685 break;
3686 default:
3687 r = -EINVAL;
3688 }
3689
3690 srcu_read_unlock(&vcpu->kvm->srcu, srcu_idx);
3691
3692 if (r > 0 && (mop->flags & KVM_S390_MEMOP_F_INJECT_EXCEPTION) != 0)
3693 kvm_s390_inject_prog_irq(vcpu, &vcpu->arch.pgm);
3694
3695 vfree(tmpbuf);
3696 return r;
3697}
3698
Heiko Carstensb0c632d2008-03-25 18:47:20 +01003699long kvm_arch_vcpu_ioctl(struct file *filp,
3700 unsigned int ioctl, unsigned long arg)
3701{
3702 struct kvm_vcpu *vcpu = filp->private_data;
3703 void __user *argp = (void __user *)arg;
Thomas Huth800c1062013-09-12 10:33:45 +02003704 int idx;
Avi Kivitybc923cc2010-05-13 12:21:46 +03003705 long r;
Heiko Carstensb0c632d2008-03-25 18:47:20 +01003706
Avi Kivity93736622010-05-13 12:35:17 +03003707 switch (ioctl) {
Jens Freimann47b43c52014-11-11 20:57:06 +01003708 case KVM_S390_IRQ: {
3709 struct kvm_s390_irq s390irq;
3710
3711 r = -EFAULT;
3712 if (copy_from_user(&s390irq, argp, sizeof(s390irq)))
3713 break;
3714 r = kvm_s390_inject_vcpu(vcpu, &s390irq);
3715 break;
3716 }
Avi Kivity93736622010-05-13 12:35:17 +03003717 case KVM_S390_INTERRUPT: {
Carsten Otteba5c1e92008-03-25 18:47:26 +01003718 struct kvm_s390_interrupt s390int;
Jens Freimann383d0b02014-07-29 15:11:49 +02003719 struct kvm_s390_irq s390irq;
Carsten Otteba5c1e92008-03-25 18:47:26 +01003720
Avi Kivity93736622010-05-13 12:35:17 +03003721 r = -EFAULT;
Carsten Otteba5c1e92008-03-25 18:47:26 +01003722 if (copy_from_user(&s390int, argp, sizeof(s390int)))
Avi Kivity93736622010-05-13 12:35:17 +03003723 break;
Jens Freimann383d0b02014-07-29 15:11:49 +02003724 if (s390int_to_s390irq(&s390int, &s390irq))
3725 return -EINVAL;
3726 r = kvm_s390_inject_vcpu(vcpu, &s390irq);
Avi Kivity93736622010-05-13 12:35:17 +03003727 break;
Carsten Otteba5c1e92008-03-25 18:47:26 +01003728 }
Heiko Carstensb0c632d2008-03-25 18:47:20 +01003729 case KVM_S390_STORE_STATUS:
Thomas Huth800c1062013-09-12 10:33:45 +02003730 idx = srcu_read_lock(&vcpu->kvm->srcu);
Avi Kivitybc923cc2010-05-13 12:21:46 +03003731 r = kvm_s390_vcpu_store_status(vcpu, arg);
Thomas Huth800c1062013-09-12 10:33:45 +02003732 srcu_read_unlock(&vcpu->kvm->srcu, idx);
Avi Kivitybc923cc2010-05-13 12:21:46 +03003733 break;
Heiko Carstensb0c632d2008-03-25 18:47:20 +01003734 case KVM_S390_SET_INITIAL_PSW: {
3735 psw_t psw;
3736
Avi Kivitybc923cc2010-05-13 12:21:46 +03003737 r = -EFAULT;
Heiko Carstensb0c632d2008-03-25 18:47:20 +01003738 if (copy_from_user(&psw, argp, sizeof(psw)))
Avi Kivitybc923cc2010-05-13 12:21:46 +03003739 break;
3740 r = kvm_arch_vcpu_ioctl_set_initial_psw(vcpu, psw);
3741 break;
Heiko Carstensb0c632d2008-03-25 18:47:20 +01003742 }
3743 case KVM_S390_INITIAL_RESET:
Avi Kivitybc923cc2010-05-13 12:21:46 +03003744 r = kvm_arch_vcpu_ioctl_initial_reset(vcpu);
3745 break;
Carsten Otte14eebd92012-05-15 14:15:26 +02003746 case KVM_SET_ONE_REG:
3747 case KVM_GET_ONE_REG: {
3748 struct kvm_one_reg reg;
3749 r = -EFAULT;
3750 if (copy_from_user(&reg, argp, sizeof(reg)))
3751 break;
3752 if (ioctl == KVM_SET_ONE_REG)
3753 r = kvm_arch_vcpu_ioctl_set_one_reg(vcpu, &reg);
3754 else
3755 r = kvm_arch_vcpu_ioctl_get_one_reg(vcpu, &reg);
3756 break;
3757 }
Carsten Otte27e03932012-01-04 10:25:21 +01003758#ifdef CONFIG_KVM_S390_UCONTROL
3759 case KVM_S390_UCAS_MAP: {
3760 struct kvm_s390_ucas_mapping ucasmap;
3761
3762 if (copy_from_user(&ucasmap, argp, sizeof(ucasmap))) {
3763 r = -EFAULT;
3764 break;
3765 }
3766
3767 if (!kvm_is_ucontrol(vcpu->kvm)) {
3768 r = -EINVAL;
3769 break;
3770 }
3771
3772 r = gmap_map_segment(vcpu->arch.gmap, ucasmap.user_addr,
3773 ucasmap.vcpu_addr, ucasmap.length);
3774 break;
3775 }
3776 case KVM_S390_UCAS_UNMAP: {
3777 struct kvm_s390_ucas_mapping ucasmap;
3778
3779 if (copy_from_user(&ucasmap, argp, sizeof(ucasmap))) {
3780 r = -EFAULT;
3781 break;
3782 }
3783
3784 if (!kvm_is_ucontrol(vcpu->kvm)) {
3785 r = -EINVAL;
3786 break;
3787 }
3788
3789 r = gmap_unmap_segment(vcpu->arch.gmap, ucasmap.vcpu_addr,
3790 ucasmap.length);
3791 break;
3792 }
3793#endif
Carsten Otteccc79102012-01-04 10:25:26 +01003794 case KVM_S390_VCPU_FAULT: {
Martin Schwidefsky527e30b2014-04-30 16:04:25 +02003795 r = gmap_fault(vcpu->arch.gmap, arg, 0);
Carsten Otteccc79102012-01-04 10:25:26 +01003796 break;
3797 }
Cornelia Huckd6712df2012-12-20 15:32:11 +01003798 case KVM_ENABLE_CAP:
3799 {
3800 struct kvm_enable_cap cap;
3801 r = -EFAULT;
3802 if (copy_from_user(&cap, argp, sizeof(cap)))
3803 break;
3804 r = kvm_vcpu_ioctl_enable_cap(vcpu, &cap);
3805 break;
3806 }
Thomas Huth41408c282015-02-06 15:01:21 +01003807 case KVM_S390_MEM_OP: {
3808 struct kvm_s390_mem_op mem_op;
3809
3810 if (copy_from_user(&mem_op, argp, sizeof(mem_op)) == 0)
3811 r = kvm_s390_guest_mem_op(vcpu, &mem_op);
3812 else
3813 r = -EFAULT;
3814 break;
3815 }
Jens Freimann816c7662014-11-24 17:13:46 +01003816 case KVM_S390_SET_IRQ_STATE: {
3817 struct kvm_s390_irq_state irq_state;
3818
3819 r = -EFAULT;
3820 if (copy_from_user(&irq_state, argp, sizeof(irq_state)))
3821 break;
3822 if (irq_state.len > VCPU_IRQS_MAX_BUF ||
3823 irq_state.len == 0 ||
3824 irq_state.len % sizeof(struct kvm_s390_irq) > 0) {
3825 r = -EINVAL;
3826 break;
3827 }
Christian Borntraegerbb64da92017-11-21 16:02:52 +01003828 /* do not use irq_state.flags, it will break old QEMUs */
Jens Freimann816c7662014-11-24 17:13:46 +01003829 r = kvm_s390_set_irq_state(vcpu,
3830 (void __user *) irq_state.buf,
3831 irq_state.len);
3832 break;
3833 }
3834 case KVM_S390_GET_IRQ_STATE: {
3835 struct kvm_s390_irq_state irq_state;
3836
3837 r = -EFAULT;
3838 if (copy_from_user(&irq_state, argp, sizeof(irq_state)))
3839 break;
3840 if (irq_state.len == 0) {
3841 r = -EINVAL;
3842 break;
3843 }
Christian Borntraegerbb64da92017-11-21 16:02:52 +01003844 /* do not use irq_state.flags, it will break old QEMUs */
Jens Freimann816c7662014-11-24 17:13:46 +01003845 r = kvm_s390_get_irq_state(vcpu,
3846 (__u8 __user *) irq_state.buf,
3847 irq_state.len);
3848 break;
3849 }
Heiko Carstensb0c632d2008-03-25 18:47:20 +01003850 default:
Carsten Otte3e6afcf2012-01-04 10:25:30 +01003851 r = -ENOTTY;
Heiko Carstensb0c632d2008-03-25 18:47:20 +01003852 }
Avi Kivitybc923cc2010-05-13 12:21:46 +03003853 return r;
Heiko Carstensb0c632d2008-03-25 18:47:20 +01003854}
3855
Carsten Otte5b1c1492012-01-04 10:25:23 +01003856int kvm_arch_vcpu_fault(struct kvm_vcpu *vcpu, struct vm_fault *vmf)
3857{
3858#ifdef CONFIG_KVM_S390_UCONTROL
3859 if ((vmf->pgoff == KVM_S390_SIE_PAGE_OFFSET)
3860 && (kvm_is_ucontrol(vcpu->kvm))) {
3861 vmf->page = virt_to_page(vcpu->arch.sie_block);
3862 get_page(vmf->page);
3863 return 0;
3864 }
3865#endif
3866 return VM_FAULT_SIGBUS;
3867}
3868
Aneesh Kumar K.V55870272013-10-07 22:18:00 +05303869int kvm_arch_create_memslot(struct kvm *kvm, struct kvm_memory_slot *slot,
3870 unsigned long npages)
Takuya Yoshikawadb3fe4e2012-02-08 13:02:18 +09003871{
3872 return 0;
3873}
3874
Heiko Carstensb0c632d2008-03-25 18:47:20 +01003875/* Section: memory related */
Marcelo Tosattif7784b82009-12-23 14:35:18 -02003876int kvm_arch_prepare_memory_region(struct kvm *kvm,
3877 struct kvm_memory_slot *memslot,
Paolo Bonzini09170a42015-05-18 13:59:39 +02003878 const struct kvm_userspace_memory_region *mem,
Takuya Yoshikawa7b6195a2013-02-27 19:44:34 +09003879 enum kvm_mr_change change)
Heiko Carstensb0c632d2008-03-25 18:47:20 +01003880{
Nick Wangdd2887e2013-03-25 17:22:57 +01003881 /* A few sanity checks. We can have memory slots which have to be
3882 located/ended at a segment boundary (1MB). The memory in userland is
3883 ok to be fragmented into various different vmas. It is okay to mmap()
3884 and munmap() stuff in this slot after doing this call at any time */
Heiko Carstensb0c632d2008-03-25 18:47:20 +01003885
Carsten Otte598841c2011-07-24 10:48:21 +02003886 if (mem->userspace_addr & 0xffffful)
Heiko Carstensb0c632d2008-03-25 18:47:20 +01003887 return -EINVAL;
3888
Carsten Otte598841c2011-07-24 10:48:21 +02003889 if (mem->memory_size & 0xffffful)
Heiko Carstensb0c632d2008-03-25 18:47:20 +01003890 return -EINVAL;
3891
Dominik Dingela3a92c32014-12-01 17:24:42 +01003892 if (mem->guest_phys_addr + mem->memory_size > kvm->arch.mem_limit)
3893 return -EINVAL;
3894
Marcelo Tosattif7784b82009-12-23 14:35:18 -02003895 return 0;
3896}
3897
3898void kvm_arch_commit_memory_region(struct kvm *kvm,
Paolo Bonzini09170a42015-05-18 13:59:39 +02003899 const struct kvm_userspace_memory_region *mem,
Takuya Yoshikawa84826442013-02-27 19:45:25 +09003900 const struct kvm_memory_slot *old,
Paolo Bonzinif36f3f22015-05-18 13:20:23 +02003901 const struct kvm_memory_slot *new,
Takuya Yoshikawa84826442013-02-27 19:45:25 +09003902 enum kvm_mr_change change)
Marcelo Tosattif7784b82009-12-23 14:35:18 -02003903{
Carsten Ottef7850c92011-07-24 10:48:23 +02003904 int rc;
Marcelo Tosattif7784b82009-12-23 14:35:18 -02003905
Christian Borntraeger2cef4de2013-03-25 17:22:48 +01003906 /* If the basics of the memslot do not change, we do not want
3907 * to update the gmap. Every update causes several unnecessary
3908 * segment translation exceptions. This is usually handled just
3909 * fine by the normal fault handler + gmap, but it will also
3910 * cause faults on the prefix page of running guest CPUs.
3911 */
3912 if (old->userspace_addr == mem->userspace_addr &&
3913 old->base_gfn * PAGE_SIZE == mem->guest_phys_addr &&
3914 old->npages * PAGE_SIZE == mem->memory_size)
3915 return;
Carsten Otte598841c2011-07-24 10:48:21 +02003916
3917 rc = gmap_map_segment(kvm->arch.gmap, mem->userspace_addr,
3918 mem->guest_phys_addr, mem->memory_size);
3919 if (rc)
David Hildenbrandea2cdd22015-05-20 13:24:02 +02003920 pr_warn("failed to commit memory region\n");
Carsten Otte598841c2011-07-24 10:48:21 +02003921 return;
Heiko Carstensb0c632d2008-03-25 18:47:20 +01003922}
3923
Alexander Yarygin60a37702016-04-01 15:38:57 +03003924static inline unsigned long nonhyp_mask(int i)
3925{
3926 unsigned int nonhyp_fai = (sclp.hmfai << i * 2) >> 30;
3927
3928 return 0x0000ffffffffffffUL >> (nonhyp_fai << 4);
3929}
3930
Christian Borntraeger3491caf2016-05-13 12:16:35 +02003931void kvm_arch_vcpu_block_finish(struct kvm_vcpu *vcpu)
3932{
3933 vcpu->valid_wakeup = false;
3934}
3935
Heiko Carstensb0c632d2008-03-25 18:47:20 +01003936static int __init kvm_s390_init(void)
3937{
Alexander Yarygin60a37702016-04-01 15:38:57 +03003938 int i;
3939
David Hildenbrand07197fd2015-01-30 16:01:38 +01003940 if (!sclp.has_sief2) {
3941 pr_info("SIE not available\n");
3942 return -ENODEV;
3943 }
3944
Alexander Yarygin60a37702016-04-01 15:38:57 +03003945 for (i = 0; i < 16; i++)
3946 kvm_s390_fac_list_mask[i] |=
3947 S390_lowcore.stfle_fac_list[i] & nonhyp_mask(i);
3948
Michael Mueller9d8d5782015-02-02 15:42:51 +01003949 return kvm_init(NULL, sizeof(struct kvm_vcpu), 0, THIS_MODULE);
Heiko Carstensb0c632d2008-03-25 18:47:20 +01003950}
3951
3952static void __exit kvm_s390_exit(void)
3953{
Heiko Carstensb0c632d2008-03-25 18:47:20 +01003954 kvm_exit();
3955}
3956
3957module_init(kvm_s390_init);
3958module_exit(kvm_s390_exit);
Cornelia Huck566af942013-05-27 18:42:33 +02003959
3960/*
3961 * Enable autoloading of the kvm module.
3962 * Note that we add the module alias here instead of virt/kvm/kvm_main.c
3963 * since x86 takes a different approach.
3964 */
3965#include <linux/miscdevice.h>
3966MODULE_ALIAS_MISCDEV(KVM_MINOR);
3967MODULE_ALIAS("devname:kvm");