[PATCH v16 09/14] s390/vfio-ap: reset queues after adapter/domain unassignment

From: Tony Krowiak
Date: Mon May 10 2021 - 12:45:51 EST


When an adapter or domain is unassigned from an mdev providing the AP
configuration to a KVM guest, one or more of the guest's queues may get
dynamically removed. Since the removed queues could get re-assigned to
another mdev, they need to be reset. So, when an adapter or domain is
unassigned from the mdev, the queues that are removed from the guest's
AP configuration will be reset.

Signed-off-by: Tony Krowiak <akrowiak@xxxxxxxxxxxxx>
---
drivers/s390/crypto/vfio_ap_ops.c | 155 +++++++++++++++++++++++---
drivers/s390/crypto/vfio_ap_private.h | 1 +
2 files changed, 138 insertions(+), 18 deletions(-)

diff --git a/drivers/s390/crypto/vfio_ap_ops.c b/drivers/s390/crypto/vfio_ap_ops.c
index e388eaf4f601..48e3db2f1c28 100644
--- a/drivers/s390/crypto/vfio_ap_ops.c
+++ b/drivers/s390/crypto/vfio_ap_ops.c
@@ -25,6 +25,8 @@
#define VFIO_AP_MDEV_NAME_HWVIRT "VFIO AP Passthrough Device"

static int vfio_ap_mdev_reset_queues(struct ap_matrix *matrix);
+static int vfio_ap_mdev_reset_queue(struct vfio_ap_queue *q,
+ unsigned int retry);
static struct vfio_ap_queue *vfio_ap_find_queue(int apqn);

static struct vfio_ap_queue *
@@ -488,12 +490,6 @@ static void vfio_ap_mdev_unlink_fr_queue(struct vfio_ap_queue *q)
q->matrix_mdev = NULL;
}

-static void vfio_ap_mdev_unlink_queue(struct vfio_ap_queue *q)
-{
- vfio_ap_mdev_unlink_queue_fr_mdev(q);
- vfio_ap_mdev_unlink_fr_queue(q);
-}
-
static void vfio_ap_mdev_unlink_fr_queues(struct ap_matrix_mdev *matrix_mdev)
{
struct vfio_ap_queue *q;
@@ -740,8 +736,20 @@ static ssize_t assign_adapter_store(struct device *dev,
}
static DEVICE_ATTR_WO(assign_adapter);

-static void vfio_ap_mdev_unlink_adapter(struct ap_matrix_mdev *matrix_mdev,
- unsigned long apid)
+/*
+ * vfio_ap_unlink_adapter_fr_mdev
+ *
+ * @matrix_mdev: a pointer to the mdev currently in use by the KVM guest
+ * @apqi: the APID of the adapter that was unassigned from the mdev
+ * @qlist: a pointer to a list to which the queues unlinked from the mdev
+ * will be stored.
+ *
+ * Unlinks the queues associated with the adapter from the mdev. Each queue that
+ * is unlinked will be added to @qlist.
+ */
+static void vfio_ap_unlink_adapter_fr_mdev(struct ap_matrix_mdev *matrix_mdev,
+ unsigned long apid,
+ struct list_head *qlist)
{
unsigned long apqi;
struct vfio_ap_queue *q;
@@ -749,11 +757,79 @@ static void vfio_ap_mdev_unlink_adapter(struct ap_matrix_mdev *matrix_mdev,
for_each_set_bit_inv(apqi, matrix_mdev->matrix.aqm, AP_DOMAINS) {
q = vfio_ap_mdev_get_queue(matrix_mdev, AP_MKQID(apid, apqi));

- if (q)
- vfio_ap_mdev_unlink_queue(q);
+ if (q) {
+ vfio_ap_mdev_unlink_queue_fr_mdev(q);
+ list_add(&q->qlist_node, qlist);
+ }
}
}

+/*
+ * vfio_ap_reset_queues_removed
+ *
+ * @guest_apcb: a pointer to a matrix object containing the values from the
+ * guest's APCB prior to refreshing the guest's AP configuration
+ * as a result of unassigning an adapter or domain from an mdev.
+ * @qlist: the list of queues unlinked from the mdev as a result of unassigning
+ * an adapter or domain from an mdev.
+ *
+ * Resets the queues that were removed from the guest's AP configuration.
+ */
+static void vfio_ap_reset_queues_removed(struct ap_matrix *guest_apcb,
+ struct list_head *qlist)
+{
+ struct vfio_ap_queue *q;
+ unsigned long apid, apqi;
+
+ list_for_each_entry(q, qlist, qlist_node) {
+ apid = AP_QID_CARD(q->apqn);
+ apqi = AP_QID_QUEUE(q->apqn);
+
+ if (test_bit_inv(apid, guest_apcb->apm) &&
+ test_bit_inv(apqi, guest_apcb->aqm))
+ vfio_ap_mdev_reset_queue(q, 1);
+ }
+}
+
+/*
+ * vfio_ap_unlink_mdev_fr_queues
+ *
+ * @qlist: the list of queues unlinked from the mdev to which they were
+ * previously assigned.
+ *
+ * Unlink the mdev from each queue.
+ */
+static void vfio_ap_unlink_mdev_fr_queues(struct list_head *qlist)
+{
+ struct vfio_ap_queue *q;
+
+ list_for_each_entry(q, qlist, qlist_node)
+ vfio_ap_mdev_unlink_fr_queue(q);
+}
+
+/*
+ * vfio_ap_mdev_rem_adapter_refresh
+ *
+ * @matrix_mdev: the mdev currently in use by the KVM guest
+ * @apqi: the APID of the adapter unassigned from the mdev
+ *
+ * Refreshes the KVM guest's APCB and resets any queues that may have been
+ * dynamically removed from the guest's AP configuration.
+ */
+static void vfio_ap_mdev_rem_adapter_refresh(struct ap_matrix_mdev *matrix_mdev,
+ unsigned long apid)
+{
+ LIST_HEAD(qlist);
+ struct ap_matrix shadow_matrix;
+
+ memcpy(&shadow_matrix, &matrix_mdev->shadow_apcb,
+ sizeof(shadow_matrix));
+ vfio_ap_unlink_adapter_fr_mdev(matrix_mdev, apid, &qlist);
+ vfio_ap_mdev_refresh_apcb(matrix_mdev);
+ vfio_ap_reset_queues_removed(&shadow_matrix, &qlist);
+ vfio_ap_unlink_mdev_fr_queues(&qlist);
+}
+
/**
* unassign_adapter_store
*
@@ -801,8 +877,7 @@ static ssize_t unassign_adapter_store(struct device *dev,
}

clear_bit_inv((unsigned long)apid, matrix_mdev->matrix.apm);
- vfio_ap_mdev_unlink_adapter(matrix_mdev, apid);
- vfio_ap_mdev_refresh_apcb(matrix_mdev);
+ vfio_ap_mdev_rem_adapter_refresh(matrix_mdev, apid);
ret = count;
done:
mutex_unlock(&matrix_dev->lock);
@@ -898,8 +973,20 @@ static ssize_t assign_domain_store(struct device *dev,
}
static DEVICE_ATTR_WO(assign_domain);

-static void vfio_ap_mdev_unlink_domain(struct ap_matrix_mdev *matrix_mdev,
- unsigned long apqi)
+/*
+ * vfio_ap_unlink_domain_fr_mdev
+ *
+ * @matrix_mdev: a pointer to the mdev currently in use by the KVM guest
+ * @apqi: the APQI of the domain that was unassigned from the mdev
+ * @qlist: a pointer to a list to which the queues unlinked from the mdev
+ * will be stored.
+ *
+ * Unlinks the queues associated with the domain from the mdev. Each queue that
+ * is unlinked will be added to @qlist.
+ */
+static void vfio_ap_unlink_domain_fr_mdev(struct ap_matrix_mdev *matrix_mdev,
+ unsigned long apqi,
+ struct list_head *qlist)
{
unsigned long apid;
struct vfio_ap_queue *q;
@@ -907,11 +994,44 @@ static void vfio_ap_mdev_unlink_domain(struct ap_matrix_mdev *matrix_mdev,
for_each_set_bit_inv(apid, matrix_mdev->matrix.apm, AP_DEVICES) {
q = vfio_ap_mdev_get_queue(matrix_mdev, AP_MKQID(apid, apqi));

- if (q)
- vfio_ap_mdev_unlink_queue(q);
+ if (q) {
+ vfio_ap_mdev_unlink_queue_fr_mdev(q);
+ list_add(&q->qlist_node, qlist);
+ }
}
}

+/*
+ * vfio_ap_mdev_rem_domain_refresh
+ *
+ * @matrix_mdev: the mdev currently in use by the KVM guest
+ * @apqi: the APQI of the domain unassigned from the mdev
+ *
+ * Refreshes the KVM guest's APCB and resets any queues that may have been
+ * dynamically removed from the guest's AP configuration.
+ */
+static void vfio_ap_mdev_rem_domain_refresh(struct ap_matrix_mdev *matrix_mdev,
+ unsigned long apqi)
+{
+ LIST_HEAD(qlist);
+ struct ap_matrix shadow_matrix;
+
+ memcpy(&shadow_matrix, &matrix_mdev->shadow_apcb,
+ sizeof(shadow_matrix));
+ /*
+ * Unlink the queues associated with the domain from the mdev
+ * so the refresh can determine what adapter to unplug from the guest.
+ */
+ vfio_ap_unlink_domain_fr_mdev(matrix_mdev, apqi, &qlist);
+ vfio_ap_mdev_refresh_apcb(matrix_mdev);
+ vfio_ap_reset_queues_removed(&shadow_matrix, &qlist);
+ /*
+ * Complete the unlinking of the queues associated with the domain
+ * by unlinking the mdev from each queue.
+ */
+ vfio_ap_unlink_mdev_fr_queues(&qlist);
+}
+
/**
* unassign_domain_store
*
@@ -959,8 +1079,7 @@ static ssize_t unassign_domain_store(struct device *dev,
}

clear_bit_inv((unsigned long)apqi, matrix_mdev->matrix.aqm);
- vfio_ap_mdev_unlink_domain(matrix_mdev, apqi);
- vfio_ap_mdev_refresh_apcb(matrix_mdev);
+ vfio_ap_mdev_rem_domain_refresh(matrix_mdev, apqi);
ret = count;

done:
diff --git a/drivers/s390/crypto/vfio_ap_private.h b/drivers/s390/crypto/vfio_ap_private.h
index 6f4f1f5bd611..1b95486fccf0 100644
--- a/drivers/s390/crypto/vfio_ap_private.h
+++ b/drivers/s390/crypto/vfio_ap_private.h
@@ -101,6 +101,7 @@ struct vfio_ap_queue {
#define VFIO_AP_ISC_INVALID 0xff
unsigned char saved_isc;
struct hlist_node mdev_qnode;
+ struct list_head qlist_node;
};

int vfio_ap_mdev_register(void);
--
2.30.2