1 /* SPDX-License-Identifier: GPL-2.0 */
5 * Copyright IBM Corp. 2008, 2014
7 * Author(s): Carsten Otte <cotte@de.ibm.com>
10 #ifndef __KVM_S390_GACCESS_H
11 #define __KVM_S390_GACCESS_H
13 #include <linux/compiler.h>
14 #include <linux/kvm_host.h>
15 #include <linux/uaccess.h>
16 #include <linux/ptrace.h>
20 * kvm_s390_real_to_abs - convert guest real address to guest absolute address
21 * @vcpu - guest virtual cpu
22 * @gra - guest real address
24 * Returns the guest absolute address that corresponds to the passed guest real
25 * address @gra of a virtual guest cpu by applying its prefix.
27 static inline unsigned long kvm_s390_real_to_abs(struct kvm_vcpu
*vcpu
,
30 unsigned long prefix
= kvm_s390_get_prefix(vcpu
);
32 if (gra
< 2 * PAGE_SIZE
)
34 else if (gra
>= prefix
&& gra
< prefix
+ 2 * PAGE_SIZE
)
40 * kvm_s390_logical_to_effective - convert guest logical to effective address
41 * @vcpu: guest virtual cpu
42 * @ga: guest logical address
44 * Convert a guest vcpu logical address to a guest vcpu effective address by
45 * applying the rules of the vcpu's addressing mode defined by PSW bits 31
46 * and 32 (extendended/basic addressing mode).
48 * Depending on the vcpu's addressing mode the upper 40 bits (24 bit addressing
49 * mode), 33 bits (31 bit addressing mode) or no bits (64 bit addressing mode)
50 * of @ga will be zeroed and the remaining bits will be returned.
52 static inline unsigned long kvm_s390_logical_to_effective(struct kvm_vcpu
*vcpu
,
55 psw_t
*psw
= &vcpu
->arch
.sie_block
->gpsw
;
57 if (psw_bits(*psw
).eaba
== PSW_BITS_AMODE_64BIT
)
59 if (psw_bits(*psw
).eaba
== PSW_BITS_AMODE_31BIT
)
60 return ga
& ((1UL << 31) - 1);
61 return ga
& ((1UL << 24) - 1);
65 * put_guest_lc, read_guest_lc and write_guest_lc are guest access functions
66 * which shall only be used to access the lowcore of a vcpu.
67 * These functions should be used for e.g. interrupt handlers where no
68 * guest memory access protection facilities, like key or low address
69 * protection, are applicable.
70 * At a later point guest vcpu lowcore access should happen via pinned
71 * prefix pages, so that these pages can be accessed directly via the
72 * kernel mapping. All of these *_lc functions can be removed then.
76 * put_guest_lc - write a simple variable to a guest vcpu's lowcore
78 * @x: value to copy to guest
79 * @gra: vcpu's destination guest real address
81 * Copies a simple value from kernel space to a guest vcpu's lowcore.
82 * The size of the variable may be 1, 2, 4 or 8 bytes. The destination
83 * must be located in the vcpu's lowcore. Otherwise the result is undefined.
85 * Returns zero on success or -EFAULT on error.
87 * Note: an error indicates that either the kernel is out of memory or
88 * the guest memory mapping is broken. In any case the best solution
89 * would be to terminate the guest.
90 * It is wrong to inject a guest exception.
92 #define put_guest_lc(vcpu, x, gra) \
94 struct kvm_vcpu *__vcpu = (vcpu); \
95 __typeof__(*(gra)) __x = (x); \
96 unsigned long __gpa; \
98 __gpa = (unsigned long)(gra); \
99 __gpa += kvm_s390_get_prefix(__vcpu); \
100 kvm_write_guest(__vcpu->kvm, __gpa, &__x, sizeof(__x)); \
104 * write_guest_lc - copy data from kernel space to guest vcpu's lowcore
106 * @gra: vcpu's source guest real address
107 * @data: source address in kernel space
108 * @len: number of bytes to copy
110 * Copy data from kernel space to guest vcpu's lowcore. The entire range must
111 * be located within the vcpu's lowcore, otherwise the result is undefined.
113 * Returns zero on success or -EFAULT on error.
115 * Note: an error indicates that either the kernel is out of memory or
116 * the guest memory mapping is broken. In any case the best solution
117 * would be to terminate the guest.
118 * It is wrong to inject a guest exception.
120 static inline __must_check
121 int write_guest_lc(struct kvm_vcpu
*vcpu
, unsigned long gra
, void *data
,
124 unsigned long gpa
= gra
+ kvm_s390_get_prefix(vcpu
);
126 return kvm_write_guest(vcpu
->kvm
, gpa
, data
, len
);
130 * read_guest_lc - copy data from guest vcpu's lowcore to kernel space
132 * @gra: vcpu's source guest real address
133 * @data: destination address in kernel space
134 * @len: number of bytes to copy
136 * Copy data from guest vcpu's lowcore to kernel space. The entire range must
137 * be located within the vcpu's lowcore, otherwise the result is undefined.
139 * Returns zero on success or -EFAULT on error.
141 * Note: an error indicates that either the kernel is out of memory or
142 * the guest memory mapping is broken. In any case the best solution
143 * would be to terminate the guest.
144 * It is wrong to inject a guest exception.
146 static inline __must_check
147 int read_guest_lc(struct kvm_vcpu
*vcpu
, unsigned long gra
, void *data
,
150 unsigned long gpa
= gra
+ kvm_s390_get_prefix(vcpu
);
152 return kvm_read_guest(vcpu
->kvm
, gpa
, data
, len
);
161 int guest_translate_address(struct kvm_vcpu
*vcpu
, unsigned long gva
,
162 u8 ar
, unsigned long *gpa
, enum gacc_mode mode
);
163 int check_gva_range(struct kvm_vcpu
*vcpu
, unsigned long gva
, u8 ar
,
164 unsigned long length
, enum gacc_mode mode
);
166 int access_guest(struct kvm_vcpu
*vcpu
, unsigned long ga
, u8 ar
, void *data
,
167 unsigned long len
, enum gacc_mode mode
);
169 int access_guest_real(struct kvm_vcpu
*vcpu
, unsigned long gra
,
170 void *data
, unsigned long len
, enum gacc_mode mode
);
173 * write_guest - copy data from kernel space to guest space
176 * @ar: access register
177 * @data: source address in kernel space
178 * @len: number of bytes to copy
180 * Copy @len bytes from @data (kernel space) to @ga (guest address).
181 * In order to copy data to guest space the PSW of the vcpu is inspected:
182 * If DAT is off data will be copied to guest real or absolute memory.
183 * If DAT is on data will be copied to the address space as specified by
184 * the address space bits of the PSW:
185 * Primary, secondary, home space or access register mode.
186 * The addressing mode of the PSW is also inspected, so that address wrap
187 * around is taken into account for 24-, 31- and 64-bit addressing mode,
188 * if the to be copied data crosses page boundaries in guest address space.
189 * In addition also low address and DAT protection are inspected before
190 * copying any data (key protection is currently not implemented).
192 * This function modifies the 'struct kvm_s390_pgm_info pgm' member of @vcpu.
193 * In case of an access exception (e.g. protection exception) pgm will contain
194 * all data necessary so that a subsequent call to 'kvm_s390_inject_prog_vcpu()'
195 * will inject a correct exception into the guest.
196 * If no access exception happened, the contents of pgm are undefined when
197 * this function returns.
199 * Returns: - zero on success
200 * - a negative value if e.g. the guest mapping is broken or in
201 * case of out-of-memory. In this case the contents of pgm are
202 * undefined. Also parts of @data may have been copied to guest
204 * - a positive value if an access exception happened. In this case
205 * the returned value is the program interruption code and the
206 * contents of pgm may be used to inject an exception into the
207 * guest. No data has been copied to guest space.
209 * Note: in case an access exception is recognized no data has been copied to
210 * guest space (this is also true, if the to be copied data would cross
211 * one or more page boundaries in guest space).
212 * Therefore this function may be used for nullifying and suppressing
213 * instruction emulation.
214 * It may also be used for terminating instructions, if it is undefined
215 * if data has been changed in guest space in case of an exception.
217 static inline __must_check
218 int write_guest(struct kvm_vcpu
*vcpu
, unsigned long ga
, u8 ar
, void *data
,
221 return access_guest(vcpu
, ga
, ar
, data
, len
, GACC_STORE
);
225 * read_guest - copy data from guest space to kernel space
228 * @ar: access register
229 * @data: destination address in kernel space
230 * @len: number of bytes to copy
232 * Copy @len bytes from @ga (guest address) to @data (kernel space).
234 * The behaviour of read_guest is identical to write_guest, except that
235 * data will be copied from guest space to kernel space.
237 static inline __must_check
238 int read_guest(struct kvm_vcpu
*vcpu
, unsigned long ga
, u8 ar
, void *data
,
241 return access_guest(vcpu
, ga
, ar
, data
, len
, GACC_FETCH
);
245 * read_guest_instr - copy instruction data from guest space to kernel space
248 * @data: destination address in kernel space
249 * @len: number of bytes to copy
251 * Copy @len bytes from the given address (guest space) to @data (kernel
254 * The behaviour of read_guest_instr is identical to read_guest, except that
255 * instruction data will be read from primary space when in home-space or
256 * address-space mode.
258 static inline __must_check
259 int read_guest_instr(struct kvm_vcpu
*vcpu
, unsigned long ga
, void *data
,
262 return access_guest(vcpu
, ga
, 0, data
, len
, GACC_IFETCH
);
266 * write_guest_abs - copy data from kernel space to guest space absolute
268 * @gpa: guest physical (absolute) address
269 * @data: source address in kernel space
270 * @len: number of bytes to copy
272 * Copy @len bytes from @data (kernel space) to @gpa (guest absolute address).
273 * It is up to the caller to ensure that the entire guest memory range is
274 * valid memory before calling this function.
275 * Guest low address and key protection are not checked.
277 * Returns zero on success or -EFAULT on error.
279 * If an error occurs data may have been copied partially to guest memory.
281 static inline __must_check
282 int write_guest_abs(struct kvm_vcpu
*vcpu
, unsigned long gpa
, void *data
,
285 return kvm_write_guest(vcpu
->kvm
, gpa
, data
, len
);
289 * read_guest_abs - copy data from guest space absolute to kernel space
291 * @gpa: guest physical (absolute) address
292 * @data: destination address in kernel space
293 * @len: number of bytes to copy
295 * Copy @len bytes from @gpa (guest absolute address) to @data (kernel space).
296 * It is up to the caller to ensure that the entire guest memory range is
297 * valid memory before calling this function.
298 * Guest key protection is not checked.
300 * Returns zero on success or -EFAULT on error.
302 * If an error occurs data may have been copied partially to kernel space.
304 static inline __must_check
305 int read_guest_abs(struct kvm_vcpu
*vcpu
, unsigned long gpa
, void *data
,
308 return kvm_read_guest(vcpu
->kvm
, gpa
, data
, len
);
312 * write_guest_real - copy data from kernel space to guest space real
314 * @gra: guest real address
315 * @data: source address in kernel space
316 * @len: number of bytes to copy
318 * Copy @len bytes from @data (kernel space) to @gra (guest real address).
319 * It is up to the caller to ensure that the entire guest memory range is
320 * valid memory before calling this function.
321 * Guest low address and key protection are not checked.
323 * Returns zero on success or -EFAULT on error.
325 * If an error occurs data may have been copied partially to guest memory.
327 static inline __must_check
328 int write_guest_real(struct kvm_vcpu
*vcpu
, unsigned long gra
, void *data
,
331 return access_guest_real(vcpu
, gra
, data
, len
, 1);
335 * read_guest_real - copy data from guest space real to kernel space
337 * @gra: guest real address
338 * @data: destination address in kernel space
339 * @len: number of bytes to copy
341 * Copy @len bytes from @gra (guest real address) to @data (kernel space).
342 * It is up to the caller to ensure that the entire guest memory range is
343 * valid memory before calling this function.
344 * Guest key protection is not checked.
346 * Returns zero on success or -EFAULT on error.
348 * If an error occurs data may have been copied partially to kernel space.
350 static inline __must_check
351 int read_guest_real(struct kvm_vcpu
*vcpu
, unsigned long gra
, void *data
,
354 return access_guest_real(vcpu
, gra
, data
, len
, 0);
357 void ipte_lock(struct kvm_vcpu
*vcpu
);
358 void ipte_unlock(struct kvm_vcpu
*vcpu
);
359 int ipte_lock_held(struct kvm_vcpu
*vcpu
);
360 int kvm_s390_check_low_addr_prot_real(struct kvm_vcpu
*vcpu
, unsigned long gra
);
362 int kvm_s390_shadow_fault(struct kvm_vcpu
*vcpu
, struct gmap
*shadow
,
363 unsigned long saddr
);
365 #endif /* __KVM_S390_GACCESS_H */