s390/vfio-ap: r/w lock for PQAP interception handler function pointer
authorTony Krowiak <akrowiak@linux.ibm.com>
Mon, 23 Aug 2021 21:20:46 +0000 (17:20 -0400)
committerAlex Williamson <alex.williamson@redhat.com>
Tue, 24 Aug 2021 18:14:05 +0000 (12:14 -0600)
The function pointer to the interception handler for the PQAP instruction
can get changed during the interception process. Let's add a
semaphore to struct kvm_s390_crypto to control read/write access to the
function pointer contained therein.

The semaphore must be locked for write access by the vfio_ap device driver
when notified that the KVM pointer has been set or cleared. It must be
locked for read access by the interception framework when the PQAP
instruction is intercepted.

Signed-off-by: Tony Krowiak <akrowiak@linux.ibm.com>
Reviewed-by: Jason Gunthorpe <jgg@nvidia.com>
Reviewed-by: Christian Borntraeger <borntraeger@de.ibm.com>
Link: https://lore.kernel.org/r/20210823212047.1476436-2-akrowiak@linux.ibm.com
Signed-off-by: Alex Williamson <alex.williamson@redhat.com>
arch/s390/include/asm/kvm_host.h
arch/s390/kvm/kvm-s390.c
arch/s390/kvm/priv.c
drivers/s390/crypto/vfio_ap_ops.c
drivers/s390/crypto/vfio_ap_private.h

index 161a9e12bfb865d61b5262d79b3028925127ad4d..d681ae462350861c5f235fc8fac4019227fa93a4 100644 (file)
@@ -798,14 +798,12 @@ struct kvm_s390_cpu_model {
        unsigned short ibc;
 };
 
-struct kvm_s390_module_hook {
-       int (*hook)(struct kvm_vcpu *vcpu);
-       struct module *owner;
-};
+typedef int (*crypto_hook)(struct kvm_vcpu *vcpu);
 
 struct kvm_s390_crypto {
        struct kvm_s390_crypto_cb *crycb;
-       struct kvm_s390_module_hook *pqap_hook;
+       struct rw_semaphore pqap_hook_rwsem;
+       crypto_hook *pqap_hook;
        __u32 crycbd;
        __u8 aes_kw;
        __u8 dea_kw;
index 4527ac7b5961dde9ce74cb80c89c88f2777e79aa..5c4f559bcd606853d6b8e0897f83cafc2b06ae76 100644 (file)
@@ -2630,6 +2630,7 @@ static void kvm_s390_crypto_init(struct kvm *kvm)
 {
        kvm->arch.crypto.crycb = &kvm->arch.sie_page2->crycb;
        kvm_s390_set_crycb_format(kvm);
+       init_rwsem(&kvm->arch.crypto.pqap_hook_rwsem);
 
        if (!test_kvm_facility(kvm, 76))
                return;
index 9928f785c6773a7ac1c5aa3453828428f13b7083..53da4ceb16a3a60d0157db35af45eca224164d45 100644 (file)
@@ -610,6 +610,7 @@ static int handle_io_inst(struct kvm_vcpu *vcpu)
 static int handle_pqap(struct kvm_vcpu *vcpu)
 {
        struct ap_queue_status status = {};
+       crypto_hook pqap_hook;
        unsigned long reg0;
        int ret;
        uint8_t fc;
@@ -654,18 +655,20 @@ static int handle_pqap(struct kvm_vcpu *vcpu)
                return kvm_s390_inject_program_int(vcpu, PGM_SPECIFICATION);
 
        /*
-        * Verify that the hook callback is registered, lock the owner
-        * and call the hook.
+        * If the hook callback is registered, there will be a pointer to the
+        * hook function pointer in the kvm_s390_crypto structure. Lock the
+        * owner, retrieve the hook function pointer and call the hook.
         */
+       down_read(&vcpu->kvm->arch.crypto.pqap_hook_rwsem);
        if (vcpu->kvm->arch.crypto.pqap_hook) {
-               if (!try_module_get(vcpu->kvm->arch.crypto.pqap_hook->owner))
-                       return -EOPNOTSUPP;
-               ret = vcpu->kvm->arch.crypto.pqap_hook->hook(vcpu);
-               module_put(vcpu->kvm->arch.crypto.pqap_hook->owner);
+               pqap_hook = *vcpu->kvm->arch.crypto.pqap_hook;
+               ret = pqap_hook(vcpu);
                if (!ret && vcpu->run->s.regs.gprs[1] & 0x00ff0000)
                        kvm_s390_set_psw_cc(vcpu, 3);
+               up_read(&vcpu->kvm->arch.crypto.pqap_hook_rwsem);
                return ret;
        }
+       up_read(&vcpu->kvm->arch.crypto.pqap_hook_rwsem);
        /*
         * A vfio_driver must register a hook.
         * No hook means no driver to enable the SIE CRYCB and no queues.
index cee5626fe0a4ef1b1581e10449824262610034a3..439ca7768eb751fa1996563521be906d1d4eecbc 100644 (file)
@@ -352,8 +352,7 @@ static int vfio_ap_mdev_create(struct mdev_device *mdev)
        vfio_ap_matrix_init(&matrix_dev->info, &matrix_mdev->matrix);
        init_waitqueue_head(&matrix_mdev->wait_for_kvm);
        mdev_set_drvdata(mdev, matrix_mdev);
-       matrix_mdev->pqap_hook.hook = handle_pqap;
-       matrix_mdev->pqap_hook.owner = THIS_MODULE;
+       matrix_mdev->pqap_hook = handle_pqap;
        mutex_lock(&matrix_dev->lock);
        list_add(&matrix_mdev->node, &matrix_dev->mdev_list);
        mutex_unlock(&matrix_dev->lock);
@@ -1115,15 +1114,20 @@ static int vfio_ap_mdev_set_kvm(struct ap_matrix_mdev *matrix_mdev,
                }
 
                kvm_get_kvm(kvm);
+               matrix_mdev->kvm = kvm;
                matrix_mdev->kvm_busy = true;
                mutex_unlock(&matrix_dev->lock);
+
+               down_write(&matrix_mdev->kvm->arch.crypto.pqap_hook_rwsem);
+               kvm->arch.crypto.pqap_hook = &matrix_mdev->pqap_hook;
+               up_write(&matrix_mdev->kvm->arch.crypto.pqap_hook_rwsem);
+
                kvm_arch_crypto_set_masks(kvm,
                                          matrix_mdev->matrix.apm,
                                          matrix_mdev->matrix.aqm,
                                          matrix_mdev->matrix.adm);
+
                mutex_lock(&matrix_dev->lock);
-               kvm->arch.crypto.pqap_hook = &matrix_mdev->pqap_hook;
-               matrix_mdev->kvm = kvm;
                matrix_mdev->kvm_busy = false;
                wake_up_all(&matrix_mdev->wait_for_kvm);
        }
@@ -1189,10 +1193,17 @@ static void vfio_ap_mdev_unset_kvm(struct ap_matrix_mdev *matrix_mdev)
        if (matrix_mdev->kvm) {
                matrix_mdev->kvm_busy = true;
                mutex_unlock(&matrix_dev->lock);
-               kvm_arch_crypto_clear_masks(matrix_mdev->kvm);
+
+               if (matrix_mdev->kvm->arch.crypto.crycbd) {
+                       down_write(&matrix_mdev->kvm->arch.crypto.pqap_hook_rwsem);
+                       matrix_mdev->kvm->arch.crypto.pqap_hook = NULL;
+                       up_write(&matrix_mdev->kvm->arch.crypto.pqap_hook_rwsem);
+
+                       kvm_arch_crypto_clear_masks(matrix_mdev->kvm);
+               }
+
                mutex_lock(&matrix_dev->lock);
                vfio_ap_mdev_reset_queues(matrix_mdev->mdev);
-               matrix_mdev->kvm->arch.crypto.pqap_hook = NULL;
                kvm_put_kvm(matrix_mdev->kvm);
                matrix_mdev->kvm = NULL;
                matrix_mdev->kvm_busy = false;
index f82a6396acae7a4c2ff842bafcf7ba4e9b6d37d3..e12218e5a62957b1d3fa49f498b99adbe42e3b5c 100644 (file)
@@ -86,7 +86,7 @@ struct ap_matrix_mdev {
        bool kvm_busy;
        wait_queue_head_t wait_for_kvm;
        struct kvm *kvm;
-       struct kvm_s390_module_hook pqap_hook;
+       crypto_hook pqap_hook;
        struct mdev_device *mdev;
 };