122938978SHeiko Carstens /* 222938978SHeiko Carstens * guest access functions 322938978SHeiko Carstens * 422938978SHeiko Carstens * Copyright IBM Corp. 2014 522938978SHeiko Carstens * 622938978SHeiko Carstens */ 722938978SHeiko Carstens 822938978SHeiko Carstens #include <linux/vmalloc.h> 922938978SHeiko Carstens #include <linux/err.h> 1022938978SHeiko Carstens #include <asm/pgtable.h> 1122938978SHeiko Carstens #include "kvm-s390.h" 1222938978SHeiko Carstens #include "gaccess.h" 13664b4973SAlexander Yarygin #include <asm/switch_to.h> 1422938978SHeiko Carstens 1522938978SHeiko Carstens union asce { 1622938978SHeiko Carstens unsigned long val; 1722938978SHeiko Carstens struct { 1822938978SHeiko Carstens unsigned long origin : 52; /* Region- or Segment-Table Origin */ 1922938978SHeiko Carstens unsigned long : 2; 2022938978SHeiko Carstens unsigned long g : 1; /* Subspace Group Control */ 2122938978SHeiko Carstens unsigned long p : 1; /* Private Space Control */ 2222938978SHeiko Carstens unsigned long s : 1; /* Storage-Alteration-Event Control */ 2322938978SHeiko Carstens unsigned long x : 1; /* Space-Switch-Event Control */ 2422938978SHeiko Carstens unsigned long r : 1; /* Real-Space Control */ 2522938978SHeiko Carstens unsigned long : 1; 2622938978SHeiko Carstens unsigned long dt : 2; /* Designation-Type Control */ 2722938978SHeiko Carstens unsigned long tl : 2; /* Region- or Segment-Table Length */ 2822938978SHeiko Carstens }; 2922938978SHeiko Carstens }; 3022938978SHeiko Carstens 3122938978SHeiko Carstens enum { 3222938978SHeiko Carstens ASCE_TYPE_SEGMENT = 0, 3322938978SHeiko Carstens ASCE_TYPE_REGION3 = 1, 3422938978SHeiko Carstens ASCE_TYPE_REGION2 = 2, 3522938978SHeiko Carstens ASCE_TYPE_REGION1 = 3 3622938978SHeiko Carstens }; 3722938978SHeiko Carstens 3822938978SHeiko Carstens union region1_table_entry { 3922938978SHeiko Carstens unsigned long val; 4022938978SHeiko Carstens struct { 4122938978SHeiko Carstens unsigned long rto: 52;/* Region-Table Origin */ 4222938978SHeiko Carstens unsigned long : 2; 4322938978SHeiko Carstens unsigned long p : 1; /* DAT-Protection Bit */ 4422938978SHeiko Carstens unsigned long : 1; 4522938978SHeiko Carstens unsigned long tf : 2; /* Region-Second-Table Offset */ 4622938978SHeiko Carstens unsigned long i : 1; /* Region-Invalid Bit */ 4722938978SHeiko Carstens unsigned long : 1; 4822938978SHeiko Carstens unsigned long tt : 2; /* Table-Type Bits */ 4922938978SHeiko Carstens unsigned long tl : 2; /* Region-Second-Table Length */ 5022938978SHeiko Carstens }; 5122938978SHeiko Carstens }; 5222938978SHeiko Carstens 5322938978SHeiko Carstens union region2_table_entry { 5422938978SHeiko Carstens unsigned long val; 5522938978SHeiko Carstens struct { 5622938978SHeiko Carstens unsigned long rto: 52;/* Region-Table Origin */ 5722938978SHeiko Carstens unsigned long : 2; 5822938978SHeiko Carstens unsigned long p : 1; /* DAT-Protection Bit */ 5922938978SHeiko Carstens unsigned long : 1; 6022938978SHeiko Carstens unsigned long tf : 2; /* Region-Third-Table Offset */ 6122938978SHeiko Carstens unsigned long i : 1; /* Region-Invalid Bit */ 6222938978SHeiko Carstens unsigned long : 1; 6322938978SHeiko Carstens unsigned long tt : 2; /* Table-Type Bits */ 6422938978SHeiko Carstens unsigned long tl : 2; /* Region-Third-Table Length */ 6522938978SHeiko Carstens }; 6622938978SHeiko Carstens }; 6722938978SHeiko Carstens 6822938978SHeiko Carstens struct region3_table_entry_fc0 { 6922938978SHeiko Carstens unsigned long sto: 52;/* Segment-Table Origin */ 7022938978SHeiko Carstens unsigned long : 1; 7122938978SHeiko Carstens unsigned long fc : 1; /* Format-Control */ 7222938978SHeiko Carstens unsigned long p : 1; /* DAT-Protection Bit */ 7322938978SHeiko Carstens unsigned long : 1; 7422938978SHeiko Carstens unsigned long tf : 2; /* Segment-Table Offset */ 7522938978SHeiko Carstens unsigned long i : 1; /* Region-Invalid Bit */ 7622938978SHeiko Carstens unsigned long cr : 1; /* Common-Region Bit */ 7722938978SHeiko Carstens unsigned long tt : 2; /* Table-Type Bits */ 7822938978SHeiko Carstens unsigned long tl : 2; /* Segment-Table Length */ 7922938978SHeiko Carstens }; 8022938978SHeiko Carstens 8122938978SHeiko Carstens struct region3_table_entry_fc1 { 8222938978SHeiko Carstens unsigned long rfaa : 33; /* Region-Frame Absolute Address */ 8322938978SHeiko Carstens unsigned long : 14; 8422938978SHeiko Carstens unsigned long av : 1; /* ACCF-Validity Control */ 8522938978SHeiko Carstens unsigned long acc: 4; /* Access-Control Bits */ 8622938978SHeiko Carstens unsigned long f : 1; /* Fetch-Protection Bit */ 8722938978SHeiko Carstens unsigned long fc : 1; /* Format-Control */ 8822938978SHeiko Carstens unsigned long p : 1; /* DAT-Protection Bit */ 8922938978SHeiko Carstens unsigned long co : 1; /* Change-Recording Override */ 9022938978SHeiko Carstens unsigned long : 2; 9122938978SHeiko Carstens unsigned long i : 1; /* Region-Invalid Bit */ 9222938978SHeiko Carstens unsigned long cr : 1; /* Common-Region Bit */ 9322938978SHeiko Carstens unsigned long tt : 2; /* Table-Type Bits */ 9422938978SHeiko Carstens unsigned long : 2; 9522938978SHeiko Carstens }; 9622938978SHeiko Carstens 9722938978SHeiko Carstens union region3_table_entry { 9822938978SHeiko Carstens unsigned long val; 9922938978SHeiko Carstens struct region3_table_entry_fc0 fc0; 10022938978SHeiko Carstens struct region3_table_entry_fc1 fc1; 10122938978SHeiko Carstens struct { 10222938978SHeiko Carstens unsigned long : 53; 10322938978SHeiko Carstens unsigned long fc : 1; /* Format-Control */ 10422938978SHeiko Carstens unsigned long : 4; 10522938978SHeiko Carstens unsigned long i : 1; /* Region-Invalid Bit */ 10622938978SHeiko Carstens unsigned long cr : 1; /* Common-Region Bit */ 10722938978SHeiko Carstens unsigned long tt : 2; /* Table-Type Bits */ 10822938978SHeiko Carstens unsigned long : 2; 10922938978SHeiko Carstens }; 11022938978SHeiko Carstens }; 11122938978SHeiko Carstens 11222938978SHeiko Carstens struct segment_entry_fc0 { 11322938978SHeiko Carstens unsigned long pto: 53;/* Page-Table Origin */ 11422938978SHeiko Carstens unsigned long fc : 1; /* Format-Control */ 11522938978SHeiko Carstens unsigned long p : 1; /* DAT-Protection Bit */ 11622938978SHeiko Carstens unsigned long : 3; 11722938978SHeiko Carstens unsigned long i : 1; /* Segment-Invalid Bit */ 11822938978SHeiko Carstens unsigned long cs : 1; /* Common-Segment Bit */ 11922938978SHeiko Carstens unsigned long tt : 2; /* Table-Type Bits */ 12022938978SHeiko Carstens unsigned long : 2; 12122938978SHeiko Carstens }; 12222938978SHeiko Carstens 12322938978SHeiko Carstens struct segment_entry_fc1 { 12422938978SHeiko Carstens unsigned long sfaa : 44; /* Segment-Frame Absolute Address */ 12522938978SHeiko Carstens unsigned long : 3; 12622938978SHeiko Carstens unsigned long av : 1; /* ACCF-Validity Control */ 12722938978SHeiko Carstens unsigned long acc: 4; /* Access-Control Bits */ 12822938978SHeiko Carstens unsigned long f : 1; /* Fetch-Protection Bit */ 12922938978SHeiko Carstens unsigned long fc : 1; /* Format-Control */ 13022938978SHeiko Carstens unsigned long p : 1; /* DAT-Protection Bit */ 13122938978SHeiko Carstens unsigned long co : 1; /* Change-Recording Override */ 13222938978SHeiko Carstens unsigned long : 2; 13322938978SHeiko Carstens unsigned long i : 1; /* Segment-Invalid Bit */ 13422938978SHeiko Carstens unsigned long cs : 1; /* Common-Segment Bit */ 13522938978SHeiko Carstens unsigned long tt : 2; /* Table-Type Bits */ 13622938978SHeiko Carstens unsigned long : 2; 13722938978SHeiko Carstens }; 13822938978SHeiko Carstens 13922938978SHeiko Carstens union segment_table_entry { 14022938978SHeiko Carstens unsigned long val; 14122938978SHeiko Carstens struct segment_entry_fc0 fc0; 14222938978SHeiko Carstens struct segment_entry_fc1 fc1; 14322938978SHeiko Carstens struct { 14422938978SHeiko Carstens unsigned long : 53; 14522938978SHeiko Carstens unsigned long fc : 1; /* Format-Control */ 14622938978SHeiko Carstens unsigned long : 4; 14722938978SHeiko Carstens unsigned long i : 1; /* Segment-Invalid Bit */ 14822938978SHeiko Carstens unsigned long cs : 1; /* Common-Segment Bit */ 14922938978SHeiko Carstens unsigned long tt : 2; /* Table-Type Bits */ 15022938978SHeiko Carstens unsigned long : 2; 15122938978SHeiko Carstens }; 15222938978SHeiko Carstens }; 15322938978SHeiko Carstens 15422938978SHeiko Carstens enum { 15522938978SHeiko Carstens TABLE_TYPE_SEGMENT = 0, 15622938978SHeiko Carstens TABLE_TYPE_REGION3 = 1, 15722938978SHeiko Carstens TABLE_TYPE_REGION2 = 2, 15822938978SHeiko Carstens TABLE_TYPE_REGION1 = 3 15922938978SHeiko Carstens }; 16022938978SHeiko Carstens 16122938978SHeiko Carstens union page_table_entry { 16222938978SHeiko Carstens unsigned long val; 16322938978SHeiko Carstens struct { 16422938978SHeiko Carstens unsigned long pfra : 52; /* Page-Frame Real Address */ 16522938978SHeiko Carstens unsigned long z : 1; /* Zero Bit */ 16622938978SHeiko Carstens unsigned long i : 1; /* Page-Invalid Bit */ 16722938978SHeiko Carstens unsigned long p : 1; /* DAT-Protection Bit */ 16822938978SHeiko Carstens unsigned long co : 1; /* Change-Recording Override */ 16922938978SHeiko Carstens unsigned long : 8; 17022938978SHeiko Carstens }; 17122938978SHeiko Carstens }; 17222938978SHeiko Carstens 17322938978SHeiko Carstens /* 17422938978SHeiko Carstens * vaddress union in order to easily decode a virtual address into its 17522938978SHeiko Carstens * region first index, region second index etc. parts. 17622938978SHeiko Carstens */ 17722938978SHeiko Carstens union vaddress { 17822938978SHeiko Carstens unsigned long addr; 17922938978SHeiko Carstens struct { 18022938978SHeiko Carstens unsigned long rfx : 11; 18122938978SHeiko Carstens unsigned long rsx : 11; 18222938978SHeiko Carstens unsigned long rtx : 11; 18322938978SHeiko Carstens unsigned long sx : 11; 18422938978SHeiko Carstens unsigned long px : 8; 18522938978SHeiko Carstens unsigned long bx : 12; 18622938978SHeiko Carstens }; 18722938978SHeiko Carstens struct { 18822938978SHeiko Carstens unsigned long rfx01 : 2; 18922938978SHeiko Carstens unsigned long : 9; 19022938978SHeiko Carstens unsigned long rsx01 : 2; 19122938978SHeiko Carstens unsigned long : 9; 19222938978SHeiko Carstens unsigned long rtx01 : 2; 19322938978SHeiko Carstens unsigned long : 9; 19422938978SHeiko Carstens unsigned long sx01 : 2; 19522938978SHeiko Carstens unsigned long : 29; 19622938978SHeiko Carstens }; 19722938978SHeiko Carstens }; 19822938978SHeiko Carstens 19922938978SHeiko Carstens /* 20022938978SHeiko Carstens * raddress union which will contain the result (real or absolute address) 20122938978SHeiko Carstens * after a page table walk. The rfaa, sfaa and pfra members are used to 20222938978SHeiko Carstens * simply assign them the value of a region, segment or page table entry. 20322938978SHeiko Carstens */ 20422938978SHeiko Carstens union raddress { 20522938978SHeiko Carstens unsigned long addr; 20622938978SHeiko Carstens unsigned long rfaa : 33; /* Region-Frame Absolute Address */ 20722938978SHeiko Carstens unsigned long sfaa : 44; /* Segment-Frame Absolute Address */ 20822938978SHeiko Carstens unsigned long pfra : 52; /* Page-Frame Real Address */ 20922938978SHeiko Carstens }; 21022938978SHeiko Carstens 211664b4973SAlexander Yarygin union alet { 212664b4973SAlexander Yarygin u32 val; 213664b4973SAlexander Yarygin struct { 214664b4973SAlexander Yarygin u32 reserved : 7; 215664b4973SAlexander Yarygin u32 p : 1; 216664b4973SAlexander Yarygin u32 alesn : 8; 217664b4973SAlexander Yarygin u32 alen : 16; 218664b4973SAlexander Yarygin }; 219664b4973SAlexander Yarygin }; 220664b4973SAlexander Yarygin 221664b4973SAlexander Yarygin union ald { 222664b4973SAlexander Yarygin u32 val; 223664b4973SAlexander Yarygin struct { 224664b4973SAlexander Yarygin u32 : 1; 225664b4973SAlexander Yarygin u32 alo : 24; 226664b4973SAlexander Yarygin u32 all : 7; 227664b4973SAlexander Yarygin }; 228664b4973SAlexander Yarygin }; 229664b4973SAlexander Yarygin 230664b4973SAlexander Yarygin struct ale { 231664b4973SAlexander Yarygin unsigned long i : 1; /* ALEN-Invalid Bit */ 232664b4973SAlexander Yarygin unsigned long : 5; 233664b4973SAlexander Yarygin unsigned long fo : 1; /* Fetch-Only Bit */ 234664b4973SAlexander Yarygin unsigned long p : 1; /* Private Bit */ 235664b4973SAlexander Yarygin unsigned long alesn : 8; /* Access-List-Entry Sequence Number */ 236664b4973SAlexander Yarygin unsigned long aleax : 16; /* Access-List-Entry Authorization Index */ 237664b4973SAlexander Yarygin unsigned long : 32; 238664b4973SAlexander Yarygin unsigned long : 1; 239664b4973SAlexander Yarygin unsigned long asteo : 25; /* ASN-Second-Table-Entry Origin */ 240664b4973SAlexander Yarygin unsigned long : 6; 241664b4973SAlexander Yarygin unsigned long astesn : 32; /* ASTE Sequence Number */ 242664b4973SAlexander Yarygin } __packed; 243664b4973SAlexander Yarygin 244664b4973SAlexander Yarygin struct aste { 245664b4973SAlexander Yarygin unsigned long i : 1; /* ASX-Invalid Bit */ 246664b4973SAlexander Yarygin unsigned long ato : 29; /* Authority-Table Origin */ 247664b4973SAlexander Yarygin unsigned long : 1; 248664b4973SAlexander Yarygin unsigned long b : 1; /* Base-Space Bit */ 249664b4973SAlexander Yarygin unsigned long ax : 16; /* Authorization Index */ 250664b4973SAlexander Yarygin unsigned long atl : 12; /* Authority-Table Length */ 251664b4973SAlexander Yarygin unsigned long : 2; 252664b4973SAlexander Yarygin unsigned long ca : 1; /* Controlled-ASN Bit */ 253664b4973SAlexander Yarygin unsigned long ra : 1; /* Reusable-ASN Bit */ 254664b4973SAlexander Yarygin unsigned long asce : 64; /* Address-Space-Control Element */ 255664b4973SAlexander Yarygin unsigned long ald : 32; 256664b4973SAlexander Yarygin unsigned long astesn : 32; 257664b4973SAlexander Yarygin /* .. more fields there */ 258664b4973SAlexander Yarygin } __packed; 2598a242234SHeiko Carstens 2608a242234SHeiko Carstens int ipte_lock_held(struct kvm_vcpu *vcpu) 2618a242234SHeiko Carstens { 2628a242234SHeiko Carstens union ipte_control *ic = &vcpu->kvm->arch.sca->ipte_control; 2638a242234SHeiko Carstens 2648a242234SHeiko Carstens if (vcpu->arch.sie_block->eca & 1) 2658a242234SHeiko Carstens return ic->kh != 0; 266a6b7e459SThomas Huth return vcpu->kvm->arch.ipte_lock_count != 0; 2678a242234SHeiko Carstens } 2688a242234SHeiko Carstens 2698a242234SHeiko Carstens static void ipte_lock_simple(struct kvm_vcpu *vcpu) 2708a242234SHeiko Carstens { 2718a242234SHeiko Carstens union ipte_control old, new, *ic; 2728a242234SHeiko Carstens 273a6b7e459SThomas Huth mutex_lock(&vcpu->kvm->arch.ipte_mutex); 274a6b7e459SThomas Huth vcpu->kvm->arch.ipte_lock_count++; 275a6b7e459SThomas Huth if (vcpu->kvm->arch.ipte_lock_count > 1) 2768a242234SHeiko Carstens goto out; 2778a242234SHeiko Carstens ic = &vcpu->kvm->arch.sca->ipte_control; 2788a242234SHeiko Carstens do { 2795de72a22SChristian Borntraeger old = READ_ONCE(*ic); 2808a242234SHeiko Carstens while (old.k) { 2818a242234SHeiko Carstens cond_resched(); 2825de72a22SChristian Borntraeger old = READ_ONCE(*ic); 2838a242234SHeiko Carstens } 2848a242234SHeiko Carstens new = old; 2858a242234SHeiko Carstens new.k = 1; 2868a242234SHeiko Carstens } while (cmpxchg(&ic->val, old.val, new.val) != old.val); 2878a242234SHeiko Carstens out: 288a6b7e459SThomas Huth mutex_unlock(&vcpu->kvm->arch.ipte_mutex); 2898a242234SHeiko Carstens } 2908a242234SHeiko Carstens 2918a242234SHeiko Carstens static void ipte_unlock_simple(struct kvm_vcpu *vcpu) 2928a242234SHeiko Carstens { 2938a242234SHeiko Carstens union ipte_control old, new, *ic; 2948a242234SHeiko Carstens 295a6b7e459SThomas Huth mutex_lock(&vcpu->kvm->arch.ipte_mutex); 296a6b7e459SThomas Huth vcpu->kvm->arch.ipte_lock_count--; 297a6b7e459SThomas Huth if (vcpu->kvm->arch.ipte_lock_count) 2988a242234SHeiko Carstens goto out; 2998a242234SHeiko Carstens ic = &vcpu->kvm->arch.sca->ipte_control; 3008a242234SHeiko Carstens do { 3015de72a22SChristian Borntraeger old = READ_ONCE(*ic); 3021365039dSChristian Borntraeger new = old; 3038a242234SHeiko Carstens new.k = 0; 3048a242234SHeiko Carstens } while (cmpxchg(&ic->val, old.val, new.val) != old.val); 3058a242234SHeiko Carstens wake_up(&vcpu->kvm->arch.ipte_wq); 3068a242234SHeiko Carstens out: 307a6b7e459SThomas Huth mutex_unlock(&vcpu->kvm->arch.ipte_mutex); 3088a242234SHeiko Carstens } 3098a242234SHeiko Carstens 3108a242234SHeiko Carstens static void ipte_lock_siif(struct kvm_vcpu *vcpu) 3118a242234SHeiko Carstens { 3128a242234SHeiko Carstens union ipte_control old, new, *ic; 3138a242234SHeiko Carstens 3148a242234SHeiko Carstens ic = &vcpu->kvm->arch.sca->ipte_control; 3158a242234SHeiko Carstens do { 3165de72a22SChristian Borntraeger old = READ_ONCE(*ic); 3178a242234SHeiko Carstens while (old.kg) { 3188a242234SHeiko Carstens cond_resched(); 3195de72a22SChristian Borntraeger old = READ_ONCE(*ic); 3208a242234SHeiko Carstens } 3218a242234SHeiko Carstens new = old; 3228a242234SHeiko Carstens new.k = 1; 3238a242234SHeiko Carstens new.kh++; 3248a242234SHeiko Carstens } while (cmpxchg(&ic->val, old.val, new.val) != old.val); 3258a242234SHeiko Carstens } 3268a242234SHeiko Carstens 3278a242234SHeiko Carstens static void ipte_unlock_siif(struct kvm_vcpu *vcpu) 3288a242234SHeiko Carstens { 3298a242234SHeiko Carstens union ipte_control old, new, *ic; 3308a242234SHeiko Carstens 3318a242234SHeiko Carstens ic = &vcpu->kvm->arch.sca->ipte_control; 3328a242234SHeiko Carstens do { 3335de72a22SChristian Borntraeger old = READ_ONCE(*ic); 3341365039dSChristian Borntraeger new = old; 3358a242234SHeiko Carstens new.kh--; 3368a242234SHeiko Carstens if (!new.kh) 3378a242234SHeiko Carstens new.k = 0; 3388a242234SHeiko Carstens } while (cmpxchg(&ic->val, old.val, new.val) != old.val); 3398a242234SHeiko Carstens if (!new.kh) 3408a242234SHeiko Carstens wake_up(&vcpu->kvm->arch.ipte_wq); 3418a242234SHeiko Carstens } 3428a242234SHeiko Carstens 343a0465f9aSThomas Huth void ipte_lock(struct kvm_vcpu *vcpu) 3448a242234SHeiko Carstens { 3458a242234SHeiko Carstens if (vcpu->arch.sie_block->eca & 1) 3468a242234SHeiko Carstens ipte_lock_siif(vcpu); 3478a242234SHeiko Carstens else 3488a242234SHeiko Carstens ipte_lock_simple(vcpu); 3498a242234SHeiko Carstens } 3508a242234SHeiko Carstens 351a0465f9aSThomas Huth void ipte_unlock(struct kvm_vcpu *vcpu) 3528a242234SHeiko Carstens { 3538a242234SHeiko Carstens if (vcpu->arch.sie_block->eca & 1) 3548a242234SHeiko Carstens ipte_unlock_siif(vcpu); 3558a242234SHeiko Carstens else 3568a242234SHeiko Carstens ipte_unlock_simple(vcpu); 3578a242234SHeiko Carstens } 3588a242234SHeiko Carstens 359664b4973SAlexander Yarygin static int ar_translation(struct kvm_vcpu *vcpu, union asce *asce, ar_t ar, 360664b4973SAlexander Yarygin int write) 36122938978SHeiko Carstens { 362664b4973SAlexander Yarygin union alet alet; 363664b4973SAlexander Yarygin struct ale ale; 364664b4973SAlexander Yarygin struct aste aste; 365664b4973SAlexander Yarygin unsigned long ald_addr, authority_table_addr; 366664b4973SAlexander Yarygin union ald ald; 367664b4973SAlexander Yarygin int eax, rc; 368664b4973SAlexander Yarygin u8 authority_table; 369664b4973SAlexander Yarygin 370664b4973SAlexander Yarygin if (ar >= NUM_ACRS) 371664b4973SAlexander Yarygin return -EINVAL; 372664b4973SAlexander Yarygin 373664b4973SAlexander Yarygin save_access_regs(vcpu->run->s.regs.acrs); 374664b4973SAlexander Yarygin alet.val = vcpu->run->s.regs.acrs[ar]; 375664b4973SAlexander Yarygin 376664b4973SAlexander Yarygin if (ar == 0 || alet.val == 0) { 377664b4973SAlexander Yarygin asce->val = vcpu->arch.sie_block->gcr[1]; 378664b4973SAlexander Yarygin return 0; 379664b4973SAlexander Yarygin } else if (alet.val == 1) { 380664b4973SAlexander Yarygin asce->val = vcpu->arch.sie_block->gcr[7]; 381664b4973SAlexander Yarygin return 0; 382664b4973SAlexander Yarygin } 383664b4973SAlexander Yarygin 384664b4973SAlexander Yarygin if (alet.reserved) 385664b4973SAlexander Yarygin return PGM_ALET_SPECIFICATION; 386664b4973SAlexander Yarygin 387664b4973SAlexander Yarygin if (alet.p) 388664b4973SAlexander Yarygin ald_addr = vcpu->arch.sie_block->gcr[5]; 389664b4973SAlexander Yarygin else 390664b4973SAlexander Yarygin ald_addr = vcpu->arch.sie_block->gcr[2]; 391664b4973SAlexander Yarygin ald_addr &= 0x7fffffc0; 392664b4973SAlexander Yarygin 393664b4973SAlexander Yarygin rc = read_guest_real(vcpu, ald_addr + 16, &ald.val, sizeof(union ald)); 394664b4973SAlexander Yarygin if (rc) 395664b4973SAlexander Yarygin return rc; 396664b4973SAlexander Yarygin 397664b4973SAlexander Yarygin if (alet.alen / 8 > ald.all) 398664b4973SAlexander Yarygin return PGM_ALEN_TRANSLATION; 399664b4973SAlexander Yarygin 400664b4973SAlexander Yarygin if (0x7fffffff - ald.alo * 128 < alet.alen * 16) 401664b4973SAlexander Yarygin return PGM_ADDRESSING; 402664b4973SAlexander Yarygin 403664b4973SAlexander Yarygin rc = read_guest_real(vcpu, ald.alo * 128 + alet.alen * 16, &ale, 404664b4973SAlexander Yarygin sizeof(struct ale)); 405664b4973SAlexander Yarygin if (rc) 406664b4973SAlexander Yarygin return rc; 407664b4973SAlexander Yarygin 408664b4973SAlexander Yarygin if (ale.i == 1) 409664b4973SAlexander Yarygin return PGM_ALEN_TRANSLATION; 410664b4973SAlexander Yarygin if (ale.alesn != alet.alesn) 411664b4973SAlexander Yarygin return PGM_ALE_SEQUENCE; 412664b4973SAlexander Yarygin 413664b4973SAlexander Yarygin rc = read_guest_real(vcpu, ale.asteo * 64, &aste, sizeof(struct aste)); 414664b4973SAlexander Yarygin if (rc) 415664b4973SAlexander Yarygin return rc; 416664b4973SAlexander Yarygin 417664b4973SAlexander Yarygin if (aste.i) 418664b4973SAlexander Yarygin return PGM_ASTE_VALIDITY; 419664b4973SAlexander Yarygin if (aste.astesn != ale.astesn) 420664b4973SAlexander Yarygin return PGM_ASTE_SEQUENCE; 421664b4973SAlexander Yarygin 422664b4973SAlexander Yarygin if (ale.p == 1) { 423664b4973SAlexander Yarygin eax = (vcpu->arch.sie_block->gcr[8] >> 16) & 0xffff; 424664b4973SAlexander Yarygin if (ale.aleax != eax) { 425664b4973SAlexander Yarygin if (eax / 16 > aste.atl) 426664b4973SAlexander Yarygin return PGM_EXTENDED_AUTHORITY; 427664b4973SAlexander Yarygin 428664b4973SAlexander Yarygin authority_table_addr = aste.ato * 4 + eax / 4; 429664b4973SAlexander Yarygin 430664b4973SAlexander Yarygin rc = read_guest_real(vcpu, authority_table_addr, 431664b4973SAlexander Yarygin &authority_table, 432664b4973SAlexander Yarygin sizeof(u8)); 433664b4973SAlexander Yarygin if (rc) 434664b4973SAlexander Yarygin return rc; 435664b4973SAlexander Yarygin 436664b4973SAlexander Yarygin if ((authority_table & (0x40 >> ((eax & 3) * 2))) == 0) 437664b4973SAlexander Yarygin return PGM_EXTENDED_AUTHORITY; 438664b4973SAlexander Yarygin } 439664b4973SAlexander Yarygin } 440664b4973SAlexander Yarygin 441664b4973SAlexander Yarygin if (ale.fo == 1 && write) 442664b4973SAlexander Yarygin return PGM_PROTECTION; 443664b4973SAlexander Yarygin 444664b4973SAlexander Yarygin asce->val = aste.asce; 445664b4973SAlexander Yarygin return 0; 446664b4973SAlexander Yarygin } 447664b4973SAlexander Yarygin 448664b4973SAlexander Yarygin struct trans_exc_code_bits { 449664b4973SAlexander Yarygin unsigned long addr : 52; /* Translation-exception Address */ 450664b4973SAlexander Yarygin unsigned long fsi : 2; /* Access Exception Fetch/Store Indication */ 451664b4973SAlexander Yarygin unsigned long : 6; 452664b4973SAlexander Yarygin unsigned long b60 : 1; 453664b4973SAlexander Yarygin unsigned long b61 : 1; 454664b4973SAlexander Yarygin unsigned long as : 2; /* ASCE Identifier */ 455664b4973SAlexander Yarygin }; 456664b4973SAlexander Yarygin 457664b4973SAlexander Yarygin enum { 458664b4973SAlexander Yarygin FSI_UNKNOWN = 0, /* Unknown wether fetch or store */ 459664b4973SAlexander Yarygin FSI_STORE = 1, /* Exception was due to store operation */ 460664b4973SAlexander Yarygin FSI_FETCH = 2 /* Exception was due to fetch operation */ 461664b4973SAlexander Yarygin }; 462664b4973SAlexander Yarygin 463664b4973SAlexander Yarygin static int get_vcpu_asce(struct kvm_vcpu *vcpu, union asce *asce, 464664b4973SAlexander Yarygin ar_t ar, int write) 465664b4973SAlexander Yarygin { 466664b4973SAlexander Yarygin int rc; 467664b4973SAlexander Yarygin psw_t *psw = &vcpu->arch.sie_block->gpsw; 468664b4973SAlexander Yarygin struct kvm_s390_pgm_info *pgm = &vcpu->arch.pgm; 469664b4973SAlexander Yarygin struct trans_exc_code_bits *tec_bits; 470664b4973SAlexander Yarygin 471664b4973SAlexander Yarygin memset(pgm, 0, sizeof(*pgm)); 472664b4973SAlexander Yarygin tec_bits = (struct trans_exc_code_bits *)&pgm->trans_exc_code; 473664b4973SAlexander Yarygin tec_bits->fsi = write ? FSI_STORE : FSI_FETCH; 474664b4973SAlexander Yarygin tec_bits->as = psw_bits(*psw).as; 475664b4973SAlexander Yarygin 476664b4973SAlexander Yarygin if (!psw_bits(*psw).t) { 477664b4973SAlexander Yarygin asce->val = 0; 478664b4973SAlexander Yarygin asce->r = 1; 479664b4973SAlexander Yarygin return 0; 480664b4973SAlexander Yarygin } 481664b4973SAlexander Yarygin 48222938978SHeiko Carstens switch (psw_bits(vcpu->arch.sie_block->gpsw).as) { 48322938978SHeiko Carstens case PSW_AS_PRIMARY: 484664b4973SAlexander Yarygin asce->val = vcpu->arch.sie_block->gcr[1]; 485664b4973SAlexander Yarygin return 0; 48622938978SHeiko Carstens case PSW_AS_SECONDARY: 487664b4973SAlexander Yarygin asce->val = vcpu->arch.sie_block->gcr[7]; 488664b4973SAlexander Yarygin return 0; 48922938978SHeiko Carstens case PSW_AS_HOME: 490664b4973SAlexander Yarygin asce->val = vcpu->arch.sie_block->gcr[13]; 491664b4973SAlexander Yarygin return 0; 492664b4973SAlexander Yarygin case PSW_AS_ACCREG: 493664b4973SAlexander Yarygin rc = ar_translation(vcpu, asce, ar, write); 494664b4973SAlexander Yarygin switch (rc) { 495664b4973SAlexander Yarygin case PGM_ALEN_TRANSLATION: 496664b4973SAlexander Yarygin case PGM_ALE_SEQUENCE: 497664b4973SAlexander Yarygin case PGM_ASTE_VALIDITY: 498664b4973SAlexander Yarygin case PGM_ASTE_SEQUENCE: 499664b4973SAlexander Yarygin case PGM_EXTENDED_AUTHORITY: 500664b4973SAlexander Yarygin vcpu->arch.pgm.exc_access_id = ar; 501664b4973SAlexander Yarygin break; 502664b4973SAlexander Yarygin case PGM_PROTECTION: 503664b4973SAlexander Yarygin tec_bits->b60 = 1; 504664b4973SAlexander Yarygin tec_bits->b61 = 1; 505664b4973SAlexander Yarygin break; 506664b4973SAlexander Yarygin } 507664b4973SAlexander Yarygin if (rc > 0) 508664b4973SAlexander Yarygin pgm->code = rc; 509664b4973SAlexander Yarygin return rc; 51022938978SHeiko Carstens } 51122938978SHeiko Carstens return 0; 51222938978SHeiko Carstens } 51322938978SHeiko Carstens 51422938978SHeiko Carstens static int deref_table(struct kvm *kvm, unsigned long gpa, unsigned long *val) 51522938978SHeiko Carstens { 51622938978SHeiko Carstens return kvm_read_guest(kvm, gpa, val, sizeof(*val)); 51722938978SHeiko Carstens } 51822938978SHeiko Carstens 51922938978SHeiko Carstens /** 52022938978SHeiko Carstens * guest_translate - translate a guest virtual into a guest absolute address 52122938978SHeiko Carstens * @vcpu: virtual cpu 52222938978SHeiko Carstens * @gva: guest virtual address 52322938978SHeiko Carstens * @gpa: points to where guest physical (absolute) address should be stored 52475a18122SAlexander Yarygin * @asce: effective asce 52522938978SHeiko Carstens * @write: indicates if access is a write access 52622938978SHeiko Carstens * 52722938978SHeiko Carstens * Translate a guest virtual address into a guest absolute address by means 52816b0fc13SYannick Guerrini * of dynamic address translation as specified by the architecture. 52922938978SHeiko Carstens * If the resulting absolute address is not available in the configuration 53022938978SHeiko Carstens * an addressing exception is indicated and @gpa will not be changed. 53122938978SHeiko Carstens * 53222938978SHeiko Carstens * Returns: - zero on success; @gpa contains the resulting absolute address 53322938978SHeiko Carstens * - a negative value if guest access failed due to e.g. broken 53422938978SHeiko Carstens * guest mapping 53522938978SHeiko Carstens * - a positve value if an access exception happened. In this case 53622938978SHeiko Carstens * the returned value is the program interruption code as defined 53722938978SHeiko Carstens * by the architecture 53822938978SHeiko Carstens */ 53922938978SHeiko Carstens static unsigned long guest_translate(struct kvm_vcpu *vcpu, unsigned long gva, 54075a18122SAlexander Yarygin unsigned long *gpa, const union asce asce, 54175a18122SAlexander Yarygin int write) 54222938978SHeiko Carstens { 54322938978SHeiko Carstens union vaddress vaddr = {.addr = gva}; 54422938978SHeiko Carstens union raddress raddr = {.addr = gva}; 54522938978SHeiko Carstens union page_table_entry pte; 54622938978SHeiko Carstens int dat_protection = 0; 54722938978SHeiko Carstens union ctlreg0 ctlreg0; 54822938978SHeiko Carstens unsigned long ptr; 54922938978SHeiko Carstens int edat1, edat2; 55022938978SHeiko Carstens 55122938978SHeiko Carstens ctlreg0.val = vcpu->arch.sie_block->gcr[0]; 5529d8d5786SMichael Mueller edat1 = ctlreg0.edat && test_kvm_facility(vcpu->kvm, 8); 5539d8d5786SMichael Mueller edat2 = edat1 && test_kvm_facility(vcpu->kvm, 78); 55422938978SHeiko Carstens if (asce.r) 55522938978SHeiko Carstens goto real_address; 55622938978SHeiko Carstens ptr = asce.origin * 4096; 55722938978SHeiko Carstens switch (asce.dt) { 55822938978SHeiko Carstens case ASCE_TYPE_REGION1: 55922938978SHeiko Carstens if (vaddr.rfx01 > asce.tl) 56022938978SHeiko Carstens return PGM_REGION_FIRST_TRANS; 56122938978SHeiko Carstens ptr += vaddr.rfx * 8; 56222938978SHeiko Carstens break; 56322938978SHeiko Carstens case ASCE_TYPE_REGION2: 56422938978SHeiko Carstens if (vaddr.rfx) 56522938978SHeiko Carstens return PGM_ASCE_TYPE; 56622938978SHeiko Carstens if (vaddr.rsx01 > asce.tl) 56722938978SHeiko Carstens return PGM_REGION_SECOND_TRANS; 56822938978SHeiko Carstens ptr += vaddr.rsx * 8; 56922938978SHeiko Carstens break; 57022938978SHeiko Carstens case ASCE_TYPE_REGION3: 57122938978SHeiko Carstens if (vaddr.rfx || vaddr.rsx) 57222938978SHeiko Carstens return PGM_ASCE_TYPE; 57322938978SHeiko Carstens if (vaddr.rtx01 > asce.tl) 57422938978SHeiko Carstens return PGM_REGION_THIRD_TRANS; 57522938978SHeiko Carstens ptr += vaddr.rtx * 8; 57622938978SHeiko Carstens break; 57722938978SHeiko Carstens case ASCE_TYPE_SEGMENT: 57822938978SHeiko Carstens if (vaddr.rfx || vaddr.rsx || vaddr.rtx) 57922938978SHeiko Carstens return PGM_ASCE_TYPE; 58022938978SHeiko Carstens if (vaddr.sx01 > asce.tl) 58122938978SHeiko Carstens return PGM_SEGMENT_TRANSLATION; 58222938978SHeiko Carstens ptr += vaddr.sx * 8; 58322938978SHeiko Carstens break; 58422938978SHeiko Carstens } 58522938978SHeiko Carstens switch (asce.dt) { 58622938978SHeiko Carstens case ASCE_TYPE_REGION1: { 58722938978SHeiko Carstens union region1_table_entry rfte; 58822938978SHeiko Carstens 58922938978SHeiko Carstens if (kvm_is_error_gpa(vcpu->kvm, ptr)) 59022938978SHeiko Carstens return PGM_ADDRESSING; 59122938978SHeiko Carstens if (deref_table(vcpu->kvm, ptr, &rfte.val)) 59222938978SHeiko Carstens return -EFAULT; 59322938978SHeiko Carstens if (rfte.i) 59422938978SHeiko Carstens return PGM_REGION_FIRST_TRANS; 59522938978SHeiko Carstens if (rfte.tt != TABLE_TYPE_REGION1) 59622938978SHeiko Carstens return PGM_TRANSLATION_SPEC; 59722938978SHeiko Carstens if (vaddr.rsx01 < rfte.tf || vaddr.rsx01 > rfte.tl) 59822938978SHeiko Carstens return PGM_REGION_SECOND_TRANS; 59922938978SHeiko Carstens if (edat1) 60022938978SHeiko Carstens dat_protection |= rfte.p; 60122938978SHeiko Carstens ptr = rfte.rto * 4096 + vaddr.rsx * 8; 60222938978SHeiko Carstens } 60322938978SHeiko Carstens /* fallthrough */ 60422938978SHeiko Carstens case ASCE_TYPE_REGION2: { 60522938978SHeiko Carstens union region2_table_entry rste; 60622938978SHeiko Carstens 60722938978SHeiko Carstens if (kvm_is_error_gpa(vcpu->kvm, ptr)) 60822938978SHeiko Carstens return PGM_ADDRESSING; 60922938978SHeiko Carstens if (deref_table(vcpu->kvm, ptr, &rste.val)) 61022938978SHeiko Carstens return -EFAULT; 61122938978SHeiko Carstens if (rste.i) 61222938978SHeiko Carstens return PGM_REGION_SECOND_TRANS; 61322938978SHeiko Carstens if (rste.tt != TABLE_TYPE_REGION2) 61422938978SHeiko Carstens return PGM_TRANSLATION_SPEC; 61522938978SHeiko Carstens if (vaddr.rtx01 < rste.tf || vaddr.rtx01 > rste.tl) 61622938978SHeiko Carstens return PGM_REGION_THIRD_TRANS; 61722938978SHeiko Carstens if (edat1) 61822938978SHeiko Carstens dat_protection |= rste.p; 61922938978SHeiko Carstens ptr = rste.rto * 4096 + vaddr.rtx * 8; 62022938978SHeiko Carstens } 62122938978SHeiko Carstens /* fallthrough */ 62222938978SHeiko Carstens case ASCE_TYPE_REGION3: { 62322938978SHeiko Carstens union region3_table_entry rtte; 62422938978SHeiko Carstens 62522938978SHeiko Carstens if (kvm_is_error_gpa(vcpu->kvm, ptr)) 62622938978SHeiko Carstens return PGM_ADDRESSING; 62722938978SHeiko Carstens if (deref_table(vcpu->kvm, ptr, &rtte.val)) 62822938978SHeiko Carstens return -EFAULT; 62922938978SHeiko Carstens if (rtte.i) 63022938978SHeiko Carstens return PGM_REGION_THIRD_TRANS; 63122938978SHeiko Carstens if (rtte.tt != TABLE_TYPE_REGION3) 63222938978SHeiko Carstens return PGM_TRANSLATION_SPEC; 63322938978SHeiko Carstens if (rtte.cr && asce.p && edat2) 63422938978SHeiko Carstens return PGM_TRANSLATION_SPEC; 63522938978SHeiko Carstens if (rtte.fc && edat2) { 63622938978SHeiko Carstens dat_protection |= rtte.fc1.p; 63722938978SHeiko Carstens raddr.rfaa = rtte.fc1.rfaa; 63822938978SHeiko Carstens goto absolute_address; 63922938978SHeiko Carstens } 64022938978SHeiko Carstens if (vaddr.sx01 < rtte.fc0.tf) 64122938978SHeiko Carstens return PGM_SEGMENT_TRANSLATION; 64222938978SHeiko Carstens if (vaddr.sx01 > rtte.fc0.tl) 64322938978SHeiko Carstens return PGM_SEGMENT_TRANSLATION; 64422938978SHeiko Carstens if (edat1) 64522938978SHeiko Carstens dat_protection |= rtte.fc0.p; 64622938978SHeiko Carstens ptr = rtte.fc0.sto * 4096 + vaddr.sx * 8; 64722938978SHeiko Carstens } 64822938978SHeiko Carstens /* fallthrough */ 64922938978SHeiko Carstens case ASCE_TYPE_SEGMENT: { 65022938978SHeiko Carstens union segment_table_entry ste; 65122938978SHeiko Carstens 65222938978SHeiko Carstens if (kvm_is_error_gpa(vcpu->kvm, ptr)) 65322938978SHeiko Carstens return PGM_ADDRESSING; 65422938978SHeiko Carstens if (deref_table(vcpu->kvm, ptr, &ste.val)) 65522938978SHeiko Carstens return -EFAULT; 65622938978SHeiko Carstens if (ste.i) 65722938978SHeiko Carstens return PGM_SEGMENT_TRANSLATION; 65822938978SHeiko Carstens if (ste.tt != TABLE_TYPE_SEGMENT) 65922938978SHeiko Carstens return PGM_TRANSLATION_SPEC; 66022938978SHeiko Carstens if (ste.cs && asce.p) 66122938978SHeiko Carstens return PGM_TRANSLATION_SPEC; 66222938978SHeiko Carstens if (ste.fc && edat1) { 66322938978SHeiko Carstens dat_protection |= ste.fc1.p; 66422938978SHeiko Carstens raddr.sfaa = ste.fc1.sfaa; 66522938978SHeiko Carstens goto absolute_address; 66622938978SHeiko Carstens } 66722938978SHeiko Carstens dat_protection |= ste.fc0.p; 66822938978SHeiko Carstens ptr = ste.fc0.pto * 2048 + vaddr.px * 8; 66922938978SHeiko Carstens } 67022938978SHeiko Carstens } 67122938978SHeiko Carstens if (kvm_is_error_gpa(vcpu->kvm, ptr)) 67222938978SHeiko Carstens return PGM_ADDRESSING; 67322938978SHeiko Carstens if (deref_table(vcpu->kvm, ptr, &pte.val)) 67422938978SHeiko Carstens return -EFAULT; 67522938978SHeiko Carstens if (pte.i) 67622938978SHeiko Carstens return PGM_PAGE_TRANSLATION; 67722938978SHeiko Carstens if (pte.z) 67822938978SHeiko Carstens return PGM_TRANSLATION_SPEC; 67922938978SHeiko Carstens if (pte.co && !edat1) 68022938978SHeiko Carstens return PGM_TRANSLATION_SPEC; 68122938978SHeiko Carstens dat_protection |= pte.p; 68222938978SHeiko Carstens raddr.pfra = pte.pfra; 68322938978SHeiko Carstens real_address: 68422938978SHeiko Carstens raddr.addr = kvm_s390_real_to_abs(vcpu, raddr.addr); 68522938978SHeiko Carstens absolute_address: 68622938978SHeiko Carstens if (write && dat_protection) 68722938978SHeiko Carstens return PGM_PROTECTION; 68822938978SHeiko Carstens if (kvm_is_error_gpa(vcpu->kvm, raddr.addr)) 68922938978SHeiko Carstens return PGM_ADDRESSING; 69022938978SHeiko Carstens *gpa = raddr.addr; 69122938978SHeiko Carstens return 0; 69222938978SHeiko Carstens } 69322938978SHeiko Carstens 69422938978SHeiko Carstens static inline int is_low_address(unsigned long ga) 69522938978SHeiko Carstens { 69622938978SHeiko Carstens /* Check for address ranges 0..511 and 4096..4607 */ 69722938978SHeiko Carstens return (ga & ~0x11fful) == 0; 69822938978SHeiko Carstens } 69922938978SHeiko Carstens 70075a18122SAlexander Yarygin static int low_address_protection_enabled(struct kvm_vcpu *vcpu, 70175a18122SAlexander Yarygin const union asce asce) 70222938978SHeiko Carstens { 70322938978SHeiko Carstens union ctlreg0 ctlreg0 = {.val = vcpu->arch.sie_block->gcr[0]}; 70422938978SHeiko Carstens psw_t *psw = &vcpu->arch.sie_block->gpsw; 70522938978SHeiko Carstens 70622938978SHeiko Carstens if (!ctlreg0.lap) 70722938978SHeiko Carstens return 0; 70822938978SHeiko Carstens if (psw_bits(*psw).t && asce.p) 70922938978SHeiko Carstens return 0; 71022938978SHeiko Carstens return 1; 71122938978SHeiko Carstens } 71222938978SHeiko Carstens 71322938978SHeiko Carstens static int guest_page_range(struct kvm_vcpu *vcpu, unsigned long ga, 71422938978SHeiko Carstens unsigned long *pages, unsigned long nr_pages, 71575a18122SAlexander Yarygin const union asce asce, int write) 71622938978SHeiko Carstens { 71722938978SHeiko Carstens struct kvm_s390_pgm_info *pgm = &vcpu->arch.pgm; 71822938978SHeiko Carstens psw_t *psw = &vcpu->arch.sie_block->gpsw; 71922938978SHeiko Carstens struct trans_exc_code_bits *tec_bits; 72022938978SHeiko Carstens int lap_enabled, rc; 72122938978SHeiko Carstens 72222938978SHeiko Carstens tec_bits = (struct trans_exc_code_bits *)&pgm->trans_exc_code; 72375a18122SAlexander Yarygin lap_enabled = low_address_protection_enabled(vcpu, asce); 72422938978SHeiko Carstens while (nr_pages) { 72522938978SHeiko Carstens ga = kvm_s390_logical_to_effective(vcpu, ga); 72622938978SHeiko Carstens tec_bits->addr = ga >> PAGE_SHIFT; 72722938978SHeiko Carstens if (write && lap_enabled && is_low_address(ga)) { 72822938978SHeiko Carstens pgm->code = PGM_PROTECTION; 72922938978SHeiko Carstens return pgm->code; 73022938978SHeiko Carstens } 73122938978SHeiko Carstens ga &= PAGE_MASK; 73222938978SHeiko Carstens if (psw_bits(*psw).t) { 73375a18122SAlexander Yarygin rc = guest_translate(vcpu, ga, pages, asce, write); 73422938978SHeiko Carstens if (rc < 0) 73522938978SHeiko Carstens return rc; 73622938978SHeiko Carstens if (rc == PGM_PROTECTION) 73722938978SHeiko Carstens tec_bits->b61 = 1; 73822938978SHeiko Carstens if (rc) 73922938978SHeiko Carstens pgm->code = rc; 74022938978SHeiko Carstens } else { 74122938978SHeiko Carstens *pages = kvm_s390_real_to_abs(vcpu, ga); 74222938978SHeiko Carstens if (kvm_is_error_gpa(vcpu->kvm, *pages)) 74322938978SHeiko Carstens pgm->code = PGM_ADDRESSING; 74422938978SHeiko Carstens } 74522938978SHeiko Carstens if (pgm->code) 74622938978SHeiko Carstens return pgm->code; 74722938978SHeiko Carstens ga += PAGE_SIZE; 74822938978SHeiko Carstens pages++; 74922938978SHeiko Carstens nr_pages--; 75022938978SHeiko Carstens } 75122938978SHeiko Carstens return 0; 75222938978SHeiko Carstens } 75322938978SHeiko Carstens 7548ae04b8fSAlexander Yarygin int access_guest(struct kvm_vcpu *vcpu, unsigned long ga, ar_t ar, void *data, 75522938978SHeiko Carstens unsigned long len, int write) 75622938978SHeiko Carstens { 75722938978SHeiko Carstens psw_t *psw = &vcpu->arch.sie_block->gpsw; 75822938978SHeiko Carstens unsigned long _len, nr_pages, gpa, idx; 75922938978SHeiko Carstens unsigned long pages_array[2]; 76022938978SHeiko Carstens unsigned long *pages; 7618a242234SHeiko Carstens int need_ipte_lock; 7628a242234SHeiko Carstens union asce asce; 76322938978SHeiko Carstens int rc; 76422938978SHeiko Carstens 76522938978SHeiko Carstens if (!len) 76622938978SHeiko Carstens return 0; 767664b4973SAlexander Yarygin rc = get_vcpu_asce(vcpu, &asce, ar, write); 768664b4973SAlexander Yarygin if (rc) 769664b4973SAlexander Yarygin return rc; 77022938978SHeiko Carstens nr_pages = (((ga & ~PAGE_MASK) + len - 1) >> PAGE_SHIFT) + 1; 77122938978SHeiko Carstens pages = pages_array; 77222938978SHeiko Carstens if (nr_pages > ARRAY_SIZE(pages_array)) 77322938978SHeiko Carstens pages = vmalloc(nr_pages * sizeof(unsigned long)); 77422938978SHeiko Carstens if (!pages) 77522938978SHeiko Carstens return -ENOMEM; 7768a242234SHeiko Carstens need_ipte_lock = psw_bits(*psw).t && !asce.r; 7778a242234SHeiko Carstens if (need_ipte_lock) 7788a242234SHeiko Carstens ipte_lock(vcpu); 77975a18122SAlexander Yarygin rc = guest_page_range(vcpu, ga, pages, nr_pages, asce, write); 78022938978SHeiko Carstens for (idx = 0; idx < nr_pages && !rc; idx++) { 78122938978SHeiko Carstens gpa = *(pages + idx) + (ga & ~PAGE_MASK); 78222938978SHeiko Carstens _len = min(PAGE_SIZE - (gpa & ~PAGE_MASK), len); 78322938978SHeiko Carstens if (write) 78422938978SHeiko Carstens rc = kvm_write_guest(vcpu->kvm, gpa, data, _len); 78522938978SHeiko Carstens else 78622938978SHeiko Carstens rc = kvm_read_guest(vcpu->kvm, gpa, data, _len); 78722938978SHeiko Carstens len -= _len; 78822938978SHeiko Carstens ga += _len; 78922938978SHeiko Carstens data += _len; 79022938978SHeiko Carstens } 7918a242234SHeiko Carstens if (need_ipte_lock) 7928a242234SHeiko Carstens ipte_unlock(vcpu); 79322938978SHeiko Carstens if (nr_pages > ARRAY_SIZE(pages_array)) 79422938978SHeiko Carstens vfree(pages); 79522938978SHeiko Carstens return rc; 79622938978SHeiko Carstens } 79722938978SHeiko Carstens 79822938978SHeiko Carstens int access_guest_real(struct kvm_vcpu *vcpu, unsigned long gra, 79922938978SHeiko Carstens void *data, unsigned long len, int write) 80022938978SHeiko Carstens { 80122938978SHeiko Carstens unsigned long _len, gpa; 80222938978SHeiko Carstens int rc = 0; 80322938978SHeiko Carstens 80422938978SHeiko Carstens while (len && !rc) { 80522938978SHeiko Carstens gpa = kvm_s390_real_to_abs(vcpu, gra); 80622938978SHeiko Carstens _len = min(PAGE_SIZE - (gpa & ~PAGE_MASK), len); 80722938978SHeiko Carstens if (write) 80822938978SHeiko Carstens rc = write_guest_abs(vcpu, gpa, data, _len); 80922938978SHeiko Carstens else 81022938978SHeiko Carstens rc = read_guest_abs(vcpu, gpa, data, _len); 81122938978SHeiko Carstens len -= _len; 81222938978SHeiko Carstens gra += _len; 81322938978SHeiko Carstens data += _len; 81422938978SHeiko Carstens } 81522938978SHeiko Carstens return rc; 81622938978SHeiko Carstens } 817f8232c8cSThomas Huth 818f8232c8cSThomas Huth /** 8199fbc0276SThomas Huth * guest_translate_address - translate guest logical into guest absolute address 8209fbc0276SThomas Huth * 8219fbc0276SThomas Huth * Parameter semantics are the same as the ones from guest_translate. 8229fbc0276SThomas Huth * The memory contents at the guest address are not changed. 8239fbc0276SThomas Huth * 8249fbc0276SThomas Huth * Note: The IPTE lock is not taken during this function, so the caller 8259fbc0276SThomas Huth * has to take care of this. 8269fbc0276SThomas Huth */ 8278ae04b8fSAlexander Yarygin int guest_translate_address(struct kvm_vcpu *vcpu, unsigned long gva, ar_t ar, 8289fbc0276SThomas Huth unsigned long *gpa, int write) 8299fbc0276SThomas Huth { 8309fbc0276SThomas Huth struct kvm_s390_pgm_info *pgm = &vcpu->arch.pgm; 8319fbc0276SThomas Huth psw_t *psw = &vcpu->arch.sie_block->gpsw; 8329fbc0276SThomas Huth struct trans_exc_code_bits *tec; 8339fbc0276SThomas Huth union asce asce; 8349fbc0276SThomas Huth int rc; 8359fbc0276SThomas Huth 8369fbc0276SThomas Huth gva = kvm_s390_logical_to_effective(vcpu, gva); 8379fbc0276SThomas Huth tec = (struct trans_exc_code_bits *)&pgm->trans_exc_code; 838664b4973SAlexander Yarygin rc = get_vcpu_asce(vcpu, &asce, ar, write); 8399fbc0276SThomas Huth tec->addr = gva >> PAGE_SHIFT; 840664b4973SAlexander Yarygin if (rc) 841664b4973SAlexander Yarygin return rc; 84275a18122SAlexander Yarygin if (is_low_address(gva) && low_address_protection_enabled(vcpu, asce)) { 8439fbc0276SThomas Huth if (write) { 8449fbc0276SThomas Huth rc = pgm->code = PGM_PROTECTION; 8459fbc0276SThomas Huth return rc; 8469fbc0276SThomas Huth } 8479fbc0276SThomas Huth } 8489fbc0276SThomas Huth 8499fbc0276SThomas Huth if (psw_bits(*psw).t && !asce.r) { /* Use DAT? */ 85075a18122SAlexander Yarygin rc = guest_translate(vcpu, gva, gpa, asce, write); 8519fbc0276SThomas Huth if (rc > 0) { 8529fbc0276SThomas Huth if (rc == PGM_PROTECTION) 8539fbc0276SThomas Huth tec->b61 = 1; 8549fbc0276SThomas Huth pgm->code = rc; 8559fbc0276SThomas Huth } 8569fbc0276SThomas Huth } else { 8579fbc0276SThomas Huth rc = 0; 8589fbc0276SThomas Huth *gpa = kvm_s390_real_to_abs(vcpu, gva); 8599fbc0276SThomas Huth if (kvm_is_error_gpa(vcpu->kvm, *gpa)) 8609fbc0276SThomas Huth rc = pgm->code = PGM_ADDRESSING; 8619fbc0276SThomas Huth } 8629fbc0276SThomas Huth 8639fbc0276SThomas Huth return rc; 8649fbc0276SThomas Huth } 8659fbc0276SThomas Huth 8669fbc0276SThomas Huth /** 867*41408c28SThomas Huth * check_gva_range - test a range of guest virtual addresses for accessibility 868*41408c28SThomas Huth */ 869*41408c28SThomas Huth int check_gva_range(struct kvm_vcpu *vcpu, unsigned long gva, ar_t ar, 870*41408c28SThomas Huth unsigned long length, int is_write) 871*41408c28SThomas Huth { 872*41408c28SThomas Huth unsigned long gpa; 873*41408c28SThomas Huth unsigned long currlen; 874*41408c28SThomas Huth int rc = 0; 875*41408c28SThomas Huth 876*41408c28SThomas Huth ipte_lock(vcpu); 877*41408c28SThomas Huth while (length > 0 && !rc) { 878*41408c28SThomas Huth currlen = min(length, PAGE_SIZE - (gva % PAGE_SIZE)); 879*41408c28SThomas Huth rc = guest_translate_address(vcpu, gva, ar, &gpa, is_write); 880*41408c28SThomas Huth gva += currlen; 881*41408c28SThomas Huth length -= currlen; 882*41408c28SThomas Huth } 883*41408c28SThomas Huth ipte_unlock(vcpu); 884*41408c28SThomas Huth 885*41408c28SThomas Huth return rc; 886*41408c28SThomas Huth } 887*41408c28SThomas Huth 888*41408c28SThomas Huth /** 889dd9e5b7bSAlexander Yarygin * kvm_s390_check_low_addr_prot_real - check for low-address protection 890dd9e5b7bSAlexander Yarygin * @gra: Guest real address 891f8232c8cSThomas Huth * 892f8232c8cSThomas Huth * Checks whether an address is subject to low-address protection and set 893f8232c8cSThomas Huth * up vcpu->arch.pgm accordingly if necessary. 894f8232c8cSThomas Huth * 895f8232c8cSThomas Huth * Return: 0 if no protection exception, or PGM_PROTECTION if protected. 896f8232c8cSThomas Huth */ 897dd9e5b7bSAlexander Yarygin int kvm_s390_check_low_addr_prot_real(struct kvm_vcpu *vcpu, unsigned long gra) 898f8232c8cSThomas Huth { 899f8232c8cSThomas Huth struct kvm_s390_pgm_info *pgm = &vcpu->arch.pgm; 900f8232c8cSThomas Huth psw_t *psw = &vcpu->arch.sie_block->gpsw; 901f8232c8cSThomas Huth struct trans_exc_code_bits *tec_bits; 902dd9e5b7bSAlexander Yarygin union ctlreg0 ctlreg0 = {.val = vcpu->arch.sie_block->gcr[0]}; 903f8232c8cSThomas Huth 904dd9e5b7bSAlexander Yarygin if (!ctlreg0.lap || !is_low_address(gra)) 905f8232c8cSThomas Huth return 0; 906f8232c8cSThomas Huth 907f8232c8cSThomas Huth memset(pgm, 0, sizeof(*pgm)); 908f8232c8cSThomas Huth tec_bits = (struct trans_exc_code_bits *)&pgm->trans_exc_code; 909f8232c8cSThomas Huth tec_bits->fsi = FSI_STORE; 910f8232c8cSThomas Huth tec_bits->as = psw_bits(*psw).as; 911dd9e5b7bSAlexander Yarygin tec_bits->addr = gra >> PAGE_SHIFT; 912f8232c8cSThomas Huth pgm->code = PGM_PROTECTION; 913f8232c8cSThomas Huth 914f8232c8cSThomas Huth return pgm->code; 915f8232c8cSThomas Huth } 916