2015-02-12 20:09:18 +03:00
|
|
|
/*
|
|
|
|
* S390x MMU related functions
|
|
|
|
*
|
|
|
|
* Copyright (c) 2011 Alexander Graf
|
|
|
|
* Copyright (c) 2015 Thomas Huth, IBM Corporation
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*/
|
|
|
|
|
2016-01-26 21:17:00 +03:00
|
|
|
#include "qemu/osdep.h"
|
2015-02-12 20:09:31 +03:00
|
|
|
#include "qemu/error-report.h"
|
|
|
|
#include "exec/address-spaces.h"
|
2015-02-12 20:09:18 +03:00
|
|
|
#include "cpu.h"
|
2017-08-18 14:43:49 +03:00
|
|
|
#include "internal.h"
|
2017-08-18 14:43:52 +03:00
|
|
|
#include "kvm_s390x.h"
|
2015-07-03 17:18:24 +03:00
|
|
|
#include "sysemu/kvm.h"
|
2019-05-23 17:35:05 +03:00
|
|
|
#include "sysemu/tcg.h"
|
2017-11-30 19:27:35 +03:00
|
|
|
#include "exec/exec-all.h"
|
2015-06-26 21:01:00 +03:00
|
|
|
#include "trace.h"
|
2019-08-12 08:23:48 +03:00
|
|
|
#include "hw/hw.h"
|
2015-06-26 21:01:00 +03:00
|
|
|
#include "hw/s390x/storage-keys.h"
|
2015-02-12 20:09:18 +03:00
|
|
|
|
2015-02-12 20:09:23 +03:00
|
|
|
/* Fetch/store bits in the translation exception code: */
|
|
|
|
#define FS_READ 0x800
|
|
|
|
#define FS_WRITE 0x400
|
2015-02-12 20:09:18 +03:00
|
|
|
|
2015-02-12 20:09:30 +03:00
|
|
|
static void trigger_access_exception(CPUS390XState *env, uint32_t type,
|
|
|
|
uint32_t ilen, uint64_t tec)
|
|
|
|
{
|
2019-03-23 05:21:48 +03:00
|
|
|
S390CPU *cpu = env_archcpu(env);
|
2015-02-12 20:09:30 +03:00
|
|
|
|
|
|
|
if (kvm_enabled()) {
|
|
|
|
kvm_s390_access_exception(cpu, type, tec);
|
|
|
|
} else {
|
2019-03-23 05:21:48 +03:00
|
|
|
CPUState *cs = env_cpu(env);
|
2017-11-30 19:27:36 +03:00
|
|
|
if (type != PGM_ADDRESSING) {
|
|
|
|
stq_phys(cs->as, env->psa + offsetof(LowCore, trans_exc_code), tec);
|
|
|
|
}
|
2015-02-12 20:09:30 +03:00
|
|
|
trigger_pgm_exception(env, type, ilen);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-10-16 23:23:58 +03:00
|
|
|
/* check whether the address would be proteted by Low-Address Protection */
|
|
|
|
static bool is_low_address(uint64_t addr)
|
|
|
|
{
|
|
|
|
return addr <= 511 || (addr >= 4096 && addr <= 4607);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* check whether Low-Address Protection is enabled for mmu_translate() */
|
|
|
|
static bool lowprot_enabled(const CPUS390XState *env, uint64_t asc)
|
|
|
|
{
|
|
|
|
if (!(env->cregs[0] & CR0_LOWPROT)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
if (!(env->psw.mask & PSW_MASK_DAT)) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Check the private-space control bit */
|
|
|
|
switch (asc) {
|
|
|
|
case PSW_ASC_PRIMARY:
|
2018-03-05 08:16:58 +03:00
|
|
|
return !(env->cregs[1] & ASCE_PRIVATE_SPACE);
|
2017-10-16 23:23:58 +03:00
|
|
|
case PSW_ASC_SECONDARY:
|
2018-03-05 08:16:58 +03:00
|
|
|
return !(env->cregs[7] & ASCE_PRIVATE_SPACE);
|
2017-10-16 23:23:58 +03:00
|
|
|
case PSW_ASC_HOME:
|
2018-03-05 08:16:58 +03:00
|
|
|
return !(env->cregs[13] & ASCE_PRIVATE_SPACE);
|
2017-10-16 23:23:58 +03:00
|
|
|
default:
|
|
|
|
/* We don't support access register mode */
|
|
|
|
error_report("unsupported addressing mode");
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-02-12 20:09:18 +03:00
|
|
|
/**
|
|
|
|
* Translate real address to absolute (= physical)
|
|
|
|
* address by taking care of the prefix mapping.
|
|
|
|
*/
|
2017-05-18 20:26:40 +03:00
|
|
|
target_ulong mmu_real2abs(CPUS390XState *env, target_ulong raddr)
|
2015-02-12 20:09:18 +03:00
|
|
|
{
|
|
|
|
if (raddr < 0x2000) {
|
|
|
|
return raddr + env->psa; /* Map the lowcore. */
|
|
|
|
} else if (raddr >= env->psa && raddr < env->psa + 0x2000) {
|
|
|
|
return raddr - env->psa; /* Map the 0 page. */
|
|
|
|
}
|
|
|
|
return raddr;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Decode page table entry (normal 4KB page) */
|
|
|
|
static int mmu_translate_pte(CPUS390XState *env, target_ulong vaddr,
|
2015-02-12 20:09:27 +03:00
|
|
|
uint64_t asc, uint64_t pt_entry,
|
2015-02-12 20:09:22 +03:00
|
|
|
target_ulong *raddr, int *flags, int rw, bool exc)
|
2015-02-12 20:09:18 +03:00
|
|
|
{
|
2018-03-05 08:16:58 +03:00
|
|
|
if (pt_entry & PAGE_INVALID) {
|
2019-09-25 12:59:14 +03:00
|
|
|
return PGM_PAGE_TRANS;
|
2015-02-12 20:09:18 +03:00
|
|
|
}
|
2018-03-05 08:16:58 +03:00
|
|
|
if (pt_entry & PAGE_RES0) {
|
2019-09-25 12:59:14 +03:00
|
|
|
return PGM_TRANS_SPEC;
|
2015-02-12 20:09:28 +03:00
|
|
|
}
|
2018-03-05 08:16:58 +03:00
|
|
|
if (pt_entry & PAGE_RO) {
|
2015-02-12 20:09:18 +03:00
|
|
|
*flags &= ~PAGE_WRITE;
|
|
|
|
}
|
|
|
|
|
2018-03-05 08:16:58 +03:00
|
|
|
*raddr = pt_entry & ASCE_ORIGIN;
|
2015-02-12 20:09:18 +03:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2015-02-12 20:09:20 +03:00
|
|
|
/* Decode segment table entry */
|
|
|
|
static int mmu_translate_segment(CPUS390XState *env, target_ulong vaddr,
|
|
|
|
uint64_t asc, uint64_t st_entry,
|
2015-02-12 20:09:22 +03:00
|
|
|
target_ulong *raddr, int *flags, int rw,
|
|
|
|
bool exc)
|
2015-02-12 20:09:18 +03:00
|
|
|
{
|
2019-03-23 05:21:48 +03:00
|
|
|
CPUState *cs = env_cpu(env);
|
2015-02-12 20:09:20 +03:00
|
|
|
uint64_t origin, offs, pt_entry;
|
2015-02-12 20:09:18 +03:00
|
|
|
|
2018-03-05 08:16:58 +03:00
|
|
|
if (st_entry & SEGMENT_ENTRY_RO) {
|
2015-02-12 20:09:18 +03:00
|
|
|
*flags &= ~PAGE_WRITE;
|
|
|
|
}
|
|
|
|
|
2018-03-05 08:16:58 +03:00
|
|
|
if ((st_entry & SEGMENT_ENTRY_FC) && (env->cregs[0] & CR0_EDAT)) {
|
2015-02-12 20:09:20 +03:00
|
|
|
/* Decode EDAT1 segment frame absolute address (1MB page) */
|
|
|
|
*raddr = (st_entry & 0xfffffffffff00000ULL) | (vaddr & 0xfffff);
|
|
|
|
return 0;
|
|
|
|
}
|
2015-02-12 20:09:18 +03:00
|
|
|
|
2015-02-12 20:09:20 +03:00
|
|
|
/* Look up 4KB page entry */
|
2018-03-05 08:16:58 +03:00
|
|
|
origin = st_entry & SEGMENT_ENTRY_ORIGIN;
|
2015-02-12 20:09:20 +03:00
|
|
|
offs = (vaddr & VADDR_PX) >> 9;
|
|
|
|
pt_entry = ldq_phys(cs->as, origin + offs);
|
2015-02-12 20:09:22 +03:00
|
|
|
return mmu_translate_pte(env, vaddr, asc, pt_entry, raddr, flags, rw, exc);
|
2015-02-12 20:09:18 +03:00
|
|
|
}
|
|
|
|
|
2015-02-12 20:09:20 +03:00
|
|
|
/* Decode region table entries */
|
|
|
|
static int mmu_translate_region(CPUS390XState *env, target_ulong vaddr,
|
|
|
|
uint64_t asc, uint64_t entry, int level,
|
2015-02-12 20:09:22 +03:00
|
|
|
target_ulong *raddr, int *flags, int rw,
|
|
|
|
bool exc)
|
2015-02-12 20:09:18 +03:00
|
|
|
{
|
2019-03-23 05:21:48 +03:00
|
|
|
CPUState *cs = env_cpu(env);
|
2015-02-12 20:09:20 +03:00
|
|
|
uint64_t origin, offs, new_entry;
|
2015-02-12 20:09:21 +03:00
|
|
|
const int pchks[4] = {
|
|
|
|
PGM_SEGMENT_TRANS, PGM_REG_THIRD_TRANS,
|
|
|
|
PGM_REG_SEC_TRANS, PGM_REG_FIRST_TRANS
|
|
|
|
};
|
2015-02-12 20:09:20 +03:00
|
|
|
|
2018-03-05 08:16:58 +03:00
|
|
|
origin = entry & REGION_ENTRY_ORIGIN;
|
2015-02-12 20:09:20 +03:00
|
|
|
offs = (vaddr >> (17 + 11 * level / 4)) & 0x3ff8;
|
|
|
|
|
|
|
|
new_entry = ldq_phys(cs->as, origin + offs);
|
2015-02-12 20:09:18 +03:00
|
|
|
|
2018-03-05 08:16:58 +03:00
|
|
|
if ((new_entry & REGION_ENTRY_INV) != 0) {
|
2019-09-25 12:59:14 +03:00
|
|
|
return pchks[level / 4];
|
2015-02-12 20:09:18 +03:00
|
|
|
}
|
|
|
|
|
2018-03-05 08:16:58 +03:00
|
|
|
if ((new_entry & REGION_ENTRY_TYPE_MASK) != level) {
|
2019-09-25 12:59:14 +03:00
|
|
|
return PGM_TRANS_SPEC;
|
2015-02-12 20:09:18 +03:00
|
|
|
}
|
|
|
|
|
2018-03-05 08:16:58 +03:00
|
|
|
if (level == ASCE_TYPE_SEGMENT) {
|
2015-02-12 20:09:20 +03:00
|
|
|
return mmu_translate_segment(env, vaddr, asc, new_entry, raddr, flags,
|
2015-02-12 20:09:22 +03:00
|
|
|
rw, exc);
|
2015-02-12 20:09:18 +03:00
|
|
|
}
|
2015-02-12 20:09:20 +03:00
|
|
|
|
2015-02-12 20:09:21 +03:00
|
|
|
/* Check region table offset and length */
|
|
|
|
offs = (vaddr >> (28 + 11 * (level - 4) / 4)) & 3;
|
2018-03-05 08:16:58 +03:00
|
|
|
if (offs < ((new_entry & REGION_ENTRY_TF) >> 6)
|
|
|
|
|| offs > (new_entry & REGION_ENTRY_LENGTH)) {
|
2019-09-25 12:59:14 +03:00
|
|
|
return pchks[level / 4 - 1];
|
2015-02-12 20:09:21 +03:00
|
|
|
}
|
|
|
|
|
2018-03-05 08:16:58 +03:00
|
|
|
if ((env->cregs[0] & CR0_EDAT) && (new_entry & REGION_ENTRY_RO)) {
|
2015-02-12 20:09:26 +03:00
|
|
|
*flags &= ~PAGE_WRITE;
|
|
|
|
}
|
|
|
|
|
2015-02-12 20:09:20 +03:00
|
|
|
/* yet another region */
|
|
|
|
return mmu_translate_region(env, vaddr, asc, new_entry, level - 4,
|
2015-02-12 20:09:22 +03:00
|
|
|
raddr, flags, rw, exc);
|
2015-02-12 20:09:18 +03:00
|
|
|
}
|
|
|
|
|
2015-02-12 20:09:29 +03:00
|
|
|
static int mmu_translate_asce(CPUS390XState *env, target_ulong vaddr,
|
|
|
|
uint64_t asc, uint64_t asce, target_ulong *raddr,
|
|
|
|
int *flags, int rw, bool exc)
|
2015-02-12 20:09:18 +03:00
|
|
|
{
|
2015-02-12 20:09:20 +03:00
|
|
|
int level;
|
2015-02-12 20:09:18 +03:00
|
|
|
|
2018-03-05 08:16:58 +03:00
|
|
|
if (asce & ASCE_REAL_SPACE) {
|
2015-02-12 20:09:19 +03:00
|
|
|
/* direct mapping */
|
|
|
|
*raddr = vaddr;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2018-03-05 08:16:58 +03:00
|
|
|
level = asce & ASCE_TYPE_MASK;
|
2015-02-12 20:09:20 +03:00
|
|
|
switch (level) {
|
2018-03-05 08:16:58 +03:00
|
|
|
case ASCE_TYPE_REGION1:
|
|
|
|
if ((vaddr >> 62) > (asce & ASCE_TABLE_LENGTH)) {
|
2019-09-25 12:59:14 +03:00
|
|
|
return PGM_REG_FIRST_TRANS;
|
2015-02-12 20:09:21 +03:00
|
|
|
}
|
2015-02-12 20:09:18 +03:00
|
|
|
break;
|
2018-03-05 08:16:58 +03:00
|
|
|
case ASCE_TYPE_REGION2:
|
2015-02-12 20:09:18 +03:00
|
|
|
if (vaddr & 0xffe0000000000000ULL) {
|
2019-09-25 12:59:14 +03:00
|
|
|
return PGM_ASCE_TYPE;
|
2015-02-12 20:09:18 +03:00
|
|
|
}
|
2018-03-05 08:16:58 +03:00
|
|
|
if ((vaddr >> 51 & 3) > (asce & ASCE_TABLE_LENGTH)) {
|
2019-09-25 12:59:14 +03:00
|
|
|
return PGM_REG_SEC_TRANS;
|
2015-02-12 20:09:21 +03:00
|
|
|
}
|
2015-02-12 20:09:18 +03:00
|
|
|
break;
|
2018-03-05 08:16:58 +03:00
|
|
|
case ASCE_TYPE_REGION3:
|
2015-02-12 20:09:18 +03:00
|
|
|
if (vaddr & 0xfffffc0000000000ULL) {
|
2019-09-25 12:59:14 +03:00
|
|
|
return PGM_ASCE_TYPE;
|
2015-02-12 20:09:18 +03:00
|
|
|
}
|
2018-03-05 08:16:58 +03:00
|
|
|
if ((vaddr >> 40 & 3) > (asce & ASCE_TABLE_LENGTH)) {
|
2019-09-25 12:59:14 +03:00
|
|
|
return PGM_REG_THIRD_TRANS;
|
2015-02-12 20:09:21 +03:00
|
|
|
}
|
2015-02-12 20:09:18 +03:00
|
|
|
break;
|
2018-03-05 08:16:58 +03:00
|
|
|
case ASCE_TYPE_SEGMENT:
|
2015-02-12 20:09:18 +03:00
|
|
|
if (vaddr & 0xffffffff80000000ULL) {
|
2019-09-25 12:59:14 +03:00
|
|
|
return PGM_ASCE_TYPE;
|
2015-02-12 20:09:18 +03:00
|
|
|
}
|
2018-03-05 08:16:58 +03:00
|
|
|
if ((vaddr >> 29 & 3) > (asce & ASCE_TABLE_LENGTH)) {
|
2019-09-25 12:59:14 +03:00
|
|
|
return PGM_SEGMENT_TRANS;
|
2015-02-12 20:09:21 +03:00
|
|
|
}
|
2015-02-12 20:09:18 +03:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2019-09-25 12:53:52 +03:00
|
|
|
return mmu_translate_region(env, vaddr, asc, asce, level, raddr, flags, rw,
|
|
|
|
exc);
|
2015-02-12 20:09:18 +03:00
|
|
|
}
|
|
|
|
|
2019-08-16 11:47:08 +03:00
|
|
|
static void mmu_handle_skey(target_ulong addr, int rw, int *flags)
|
|
|
|
{
|
|
|
|
static S390SKeysClass *skeyclass;
|
|
|
|
static S390SKeysState *ss;
|
|
|
|
uint8_t key;
|
|
|
|
int rc;
|
|
|
|
|
|
|
|
if (unlikely(addr >= ram_size)) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (unlikely(!ss)) {
|
|
|
|
ss = s390_get_skeys_device();
|
|
|
|
skeyclass = S390_SKEYS_GET_CLASS(ss);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Whenever we create a new TLB entry, we set the storage key reference
|
|
|
|
* bit. In case we allow write accesses, we set the storage key change
|
|
|
|
* bit. Whenever the guest changes the storage key, we have to flush the
|
|
|
|
* TLBs of all CPUs (the whole TLB or all affected entries), so that the
|
|
|
|
* next reference/change will result in an MMU fault and make us properly
|
|
|
|
* update the storage key here.
|
|
|
|
*
|
|
|
|
* Note 1: "record of references ... is not necessarily accurate",
|
|
|
|
* "change bit may be set in case no storing has occurred".
|
|
|
|
* -> We can set reference/change bits even on exceptions.
|
|
|
|
* Note 2: certain accesses seem to ignore storage keys. For example,
|
|
|
|
* DAT translation does not set reference bits for table accesses.
|
|
|
|
*
|
|
|
|
* TODO: key-controlled protection. Only CPU accesses make use of the
|
|
|
|
* PSW key. CSS accesses are different - we have to pass in the key.
|
|
|
|
*
|
|
|
|
* TODO: we have races between getting and setting the key.
|
|
|
|
*/
|
|
|
|
rc = skeyclass->get_skeys(ss, addr / TARGET_PAGE_SIZE, 1, &key);
|
|
|
|
if (rc) {
|
|
|
|
trace_get_skeys_nonzero(rc);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
switch (rw) {
|
|
|
|
case MMU_DATA_LOAD:
|
|
|
|
case MMU_INST_FETCH:
|
|
|
|
/*
|
|
|
|
* The TLB entry has to remain write-protected on read-faults if
|
|
|
|
* the storage key does not indicate a change already. Otherwise
|
|
|
|
* we might miss setting the change bit on write accesses.
|
|
|
|
*/
|
|
|
|
if (!(key & SK_C)) {
|
|
|
|
*flags &= ~PAGE_WRITE;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case MMU_DATA_STORE:
|
|
|
|
key |= SK_C;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
g_assert_not_reached();
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Any store/fetch sets the reference bit */
|
|
|
|
key |= SK_R;
|
|
|
|
|
|
|
|
rc = skeyclass->set_skeys(ss, addr / TARGET_PAGE_SIZE, 1, &key);
|
|
|
|
if (rc) {
|
|
|
|
trace_set_skeys_nonzero(rc);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-02-12 20:09:22 +03:00
|
|
|
/**
|
|
|
|
* Translate a virtual (logical) address into a physical (absolute) address.
|
|
|
|
* @param vaddr the virtual address
|
|
|
|
* @param rw 0 = read, 1 = write, 2 = code fetch
|
|
|
|
* @param asc address space control (one of the PSW_ASC_* modes)
|
|
|
|
* @param raddr the translated address is stored to this pointer
|
|
|
|
* @param flags the PAGE_READ/WRITE/EXEC flags are stored to this pointer
|
2015-04-09 21:32:39 +03:00
|
|
|
* @param exc true = inject a program check if a fault occurred
|
|
|
|
* @return 0 if the translation was successful, -1 if a fault occurred
|
2015-02-12 20:09:22 +03:00
|
|
|
*/
|
2015-02-12 20:09:18 +03:00
|
|
|
int mmu_translate(CPUS390XState *env, target_ulong vaddr, int rw, uint64_t asc,
|
2015-02-12 20:09:22 +03:00
|
|
|
target_ulong *raddr, int *flags, bool exc)
|
2015-02-12 20:09:18 +03:00
|
|
|
{
|
2019-09-25 12:53:52 +03:00
|
|
|
/* Code accesses have an undefined ilc, let's use 2 bytes. */
|
|
|
|
const int ilen = (rw == MMU_INST_FETCH) ? 2 : ILEN_AUTO;
|
|
|
|
uint64_t tec = (vaddr & TARGET_PAGE_MASK) | (asc >> 46) |
|
|
|
|
(rw == MMU_DATA_STORE ? FS_WRITE : FS_READ);
|
2019-08-16 11:47:05 +03:00
|
|
|
uint64_t asce;
|
|
|
|
int r;
|
2015-06-26 21:01:00 +03:00
|
|
|
|
2015-02-12 20:09:18 +03:00
|
|
|
|
|
|
|
*flags = PAGE_READ | PAGE_WRITE | PAGE_EXEC;
|
2017-10-16 23:23:58 +03:00
|
|
|
if (is_low_address(vaddr & TARGET_PAGE_MASK) && lowprot_enabled(env, asc)) {
|
|
|
|
/*
|
|
|
|
* If any part of this page is currently protected, make sure the
|
|
|
|
* TLB entry will not be reused.
|
|
|
|
*
|
|
|
|
* As the protected range is always the first 512 bytes of the
|
|
|
|
* two first pages, we are able to catch all writes to these areas
|
|
|
|
* just by looking at the start address (triggering the tlb miss).
|
|
|
|
*/
|
|
|
|
*flags |= PAGE_WRITE_INV;
|
|
|
|
if (is_low_address(vaddr) && rw == MMU_DATA_STORE) {
|
|
|
|
if (exc) {
|
|
|
|
trigger_access_exception(env, PGM_PROTECTION, ILEN_AUTO, 0);
|
|
|
|
}
|
|
|
|
return -EACCES;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-02-12 20:09:18 +03:00
|
|
|
vaddr &= TARGET_PAGE_MASK;
|
|
|
|
|
|
|
|
if (!(env->psw.mask & PSW_MASK_DAT)) {
|
|
|
|
*raddr = vaddr;
|
2019-08-16 11:47:05 +03:00
|
|
|
goto nodat;
|
2015-02-12 20:09:18 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
switch (asc) {
|
|
|
|
case PSW_ASC_PRIMARY:
|
2019-08-16 11:47:05 +03:00
|
|
|
asce = env->cregs[1];
|
2015-02-12 20:09:29 +03:00
|
|
|
break;
|
2015-02-12 20:09:18 +03:00
|
|
|
case PSW_ASC_HOME:
|
2019-08-16 11:47:05 +03:00
|
|
|
asce = env->cregs[13];
|
2015-02-12 20:09:18 +03:00
|
|
|
break;
|
|
|
|
case PSW_ASC_SECONDARY:
|
2019-08-16 11:47:05 +03:00
|
|
|
asce = env->cregs[7];
|
2015-02-12 20:09:18 +03:00
|
|
|
break;
|
|
|
|
case PSW_ASC_ACCREG:
|
|
|
|
default:
|
|
|
|
hw_error("guest switched to unknown asc mode\n");
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2019-08-16 11:47:05 +03:00
|
|
|
/* perform the DAT translation */
|
|
|
|
r = mmu_translate_asce(env, vaddr, asc, asce, raddr, flags, rw, exc);
|
2019-09-25 12:59:14 +03:00
|
|
|
if (unlikely(r)) {
|
|
|
|
if (exc) {
|
|
|
|
trigger_access_exception(env, r, ilen, tec);
|
|
|
|
}
|
|
|
|
return -1;
|
2019-08-16 11:47:05 +03:00
|
|
|
}
|
|
|
|
|
2019-09-25 12:53:52 +03:00
|
|
|
/* check for DAT protection */
|
|
|
|
if (unlikely(rw == MMU_DATA_STORE && !(*flags & PAGE_WRITE))) {
|
|
|
|
if (exc) {
|
|
|
|
/* DAT sets bit 61 only */
|
|
|
|
tec |= 0x4;
|
|
|
|
trigger_access_exception(env, PGM_PROTECTION, ilen, tec);
|
|
|
|
}
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2019-08-16 11:47:05 +03:00
|
|
|
nodat:
|
2015-02-12 20:09:18 +03:00
|
|
|
/* Convert real address -> absolute address */
|
|
|
|
*raddr = mmu_real2abs(env, *raddr);
|
|
|
|
|
2019-08-16 11:47:08 +03:00
|
|
|
mmu_handle_skey(*raddr, rw, flags);
|
2019-08-16 11:47:05 +03:00
|
|
|
return 0;
|
2015-02-12 20:09:18 +03:00
|
|
|
}
|
2015-02-12 20:09:31 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* translate_pages: Translate a set of consecutive logical page addresses
|
2017-11-30 19:27:36 +03:00
|
|
|
* to absolute addresses. This function is used for TCG and old KVM without
|
|
|
|
* the MEMOP interface.
|
2015-02-12 20:09:31 +03:00
|
|
|
*/
|
|
|
|
static int translate_pages(S390CPU *cpu, vaddr addr, int nr_pages,
|
|
|
|
target_ulong *pages, bool is_write)
|
|
|
|
{
|
|
|
|
uint64_t asc = cpu->env.psw.mask & PSW_MASK_ASC;
|
|
|
|
CPUS390XState *env = &cpu->env;
|
|
|
|
int ret, i, pflags;
|
|
|
|
|
|
|
|
for (i = 0; i < nr_pages; i++) {
|
|
|
|
ret = mmu_translate(env, addr, is_write, asc, &pages[i], &pflags, true);
|
|
|
|
if (ret) {
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
if (!address_space_access_valid(&address_space_memory, pages[i],
|
2018-05-31 16:50:52 +03:00
|
|
|
TARGET_PAGE_SIZE, is_write,
|
|
|
|
MEMTXATTRS_UNSPECIFIED)) {
|
2017-11-30 19:27:36 +03:00
|
|
|
trigger_access_exception(env, PGM_ADDRESSING, ILEN_AUTO, 0);
|
2015-02-12 20:09:31 +03:00
|
|
|
return -EFAULT;
|
|
|
|
}
|
|
|
|
addr += TARGET_PAGE_SIZE;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* s390_cpu_virt_mem_rw:
|
|
|
|
* @laddr: the logical start address
|
2015-03-05 12:36:48 +03:00
|
|
|
* @ar: the access register number
|
2015-02-12 20:09:31 +03:00
|
|
|
* @hostbuf: buffer in host memory. NULL = do only checks w/o copying
|
2015-04-09 21:32:39 +03:00
|
|
|
* @len: length that should be transferred
|
2015-02-12 20:09:31 +03:00
|
|
|
* @is_write: true = write, false = read
|
2015-04-09 21:32:39 +03:00
|
|
|
* Returns: 0 on success, non-zero if an exception occurred
|
2015-02-12 20:09:31 +03:00
|
|
|
*
|
|
|
|
* Copy from/to guest memory using logical addresses. Note that we inject a
|
|
|
|
* program interrupt in case there is an error while accessing the memory.
|
2017-11-30 19:27:35 +03:00
|
|
|
*
|
|
|
|
* This function will always return (also for TCG), make sure to call
|
|
|
|
* s390_cpu_virt_mem_handle_exc() to properly exit the CPU loop.
|
2015-02-12 20:09:31 +03:00
|
|
|
*/
|
2015-03-05 12:36:48 +03:00
|
|
|
int s390_cpu_virt_mem_rw(S390CPU *cpu, vaddr laddr, uint8_t ar, void *hostbuf,
|
2015-02-12 20:09:31 +03:00
|
|
|
int len, bool is_write)
|
|
|
|
{
|
|
|
|
int currlen, nr_pages, i;
|
|
|
|
target_ulong *pages;
|
|
|
|
int ret;
|
|
|
|
|
2015-02-06 17:54:58 +03:00
|
|
|
if (kvm_enabled()) {
|
2015-03-05 12:36:48 +03:00
|
|
|
ret = kvm_s390_mem_op(cpu, laddr, ar, hostbuf, len, is_write);
|
2015-02-06 17:54:58 +03:00
|
|
|
if (ret >= 0) {
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-02-12 20:09:31 +03:00
|
|
|
nr_pages = (((laddr & ~TARGET_PAGE_MASK) + len - 1) >> TARGET_PAGE_BITS)
|
|
|
|
+ 1;
|
|
|
|
pages = g_malloc(nr_pages * sizeof(*pages));
|
|
|
|
|
|
|
|
ret = translate_pages(cpu, laddr, nr_pages, pages, is_write);
|
|
|
|
if (ret == 0 && hostbuf != NULL) {
|
|
|
|
/* Copy data by stepping through the area page by page */
|
|
|
|
for (i = 0; i < nr_pages; i++) {
|
|
|
|
currlen = MIN(len, TARGET_PAGE_SIZE - (laddr % TARGET_PAGE_SIZE));
|
|
|
|
cpu_physical_memory_rw(pages[i] | (laddr & ~TARGET_PAGE_MASK),
|
|
|
|
hostbuf, currlen, is_write);
|
|
|
|
laddr += currlen;
|
|
|
|
hostbuf += currlen;
|
|
|
|
len -= currlen;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
g_free(pages);
|
|
|
|
return ret;
|
|
|
|
}
|
2017-09-26 21:33:14 +03:00
|
|
|
|
2017-11-30 19:27:35 +03:00
|
|
|
void s390_cpu_virt_mem_handle_exc(S390CPU *cpu, uintptr_t ra)
|
|
|
|
{
|
|
|
|
/* KVM will handle the interrupt automatically, TCG has to exit the TB */
|
|
|
|
#ifdef CONFIG_TCG
|
|
|
|
if (tcg_enabled()) {
|
|
|
|
cpu_loop_exit_restore(CPU(cpu), ra);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2017-09-26 21:33:14 +03:00
|
|
|
/**
|
|
|
|
* Translate a real address into a physical (absolute) address.
|
|
|
|
* @param raddr the real address
|
|
|
|
* @param rw 0 = read, 1 = write, 2 = code fetch
|
|
|
|
* @param addr the translated address is stored to this pointer
|
|
|
|
* @param flags the PAGE_READ/WRITE/EXEC flags are stored to this pointer
|
|
|
|
* @return 0 if the translation was successful, < 0 if a fault occurred
|
|
|
|
*/
|
|
|
|
int mmu_translate_real(CPUS390XState *env, target_ulong raddr, int rw,
|
|
|
|
target_ulong *addr, int *flags)
|
|
|
|
{
|
2017-10-16 23:23:58 +03:00
|
|
|
const bool lowprot_enabled = env->cregs[0] & CR0_LOWPROT;
|
|
|
|
|
2018-02-13 19:12:40 +03:00
|
|
|
*flags = PAGE_READ | PAGE_WRITE | PAGE_EXEC;
|
2017-10-16 23:23:58 +03:00
|
|
|
if (is_low_address(raddr & TARGET_PAGE_MASK) && lowprot_enabled) {
|
|
|
|
/* see comment in mmu_translate() how this works */
|
|
|
|
*flags |= PAGE_WRITE_INV;
|
|
|
|
if (is_low_address(raddr) && rw == MMU_DATA_STORE) {
|
|
|
|
trigger_access_exception(env, PGM_PROTECTION, ILEN_AUTO, 0);
|
|
|
|
return -EACCES;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
*addr = mmu_real2abs(env, raddr & TARGET_PAGE_MASK);
|
2017-09-26 21:33:14 +03:00
|
|
|
|
2019-08-16 11:47:08 +03:00
|
|
|
mmu_handle_skey(*addr, rw, flags);
|
2017-09-26 21:33:14 +03:00
|
|
|
return 0;
|
|
|
|
}
|