Blame SOURCES/kvm-iscsi-Query-and-save-device-designator-when-opening.patch

357786
From 20dcbb9776926fea51e6178298ed76f2c64a1d03 Mon Sep 17 00:00:00 2001
357786
From: Fam Zheng <famz@redhat.com>
357786
Date: Fri, 29 Jun 2018 06:11:46 +0200
357786
Subject: [PATCH 42/57] iscsi: Query and save device designator when opening
357786
357786
RH-Author: Fam Zheng <famz@redhat.com>
357786
Message-id: <20180629061153.12687-7-famz@redhat.com>
357786
Patchwork-id: 81157
357786
O-Subject: [RHEL-7.6 qemu-kvm-rhev PATCH v2 06/13] iscsi: Query and save device designator when opening
357786
Bugzilla: 1482537
357786
RH-Acked-by: Stefan Hajnoczi <stefanha@redhat.com>
357786
RH-Acked-by: Max Reitz <mreitz@redhat.com>
357786
RH-Acked-by: Kevin Wolf <kwolf@redhat.com>
357786
357786
The device designator data returned in INQUIRY command will be useful to
357786
fill in source/target fields during copy offloading. Do this when
357786
connecting to the target and save the data for later use.
357786
357786
Signed-off-by: Fam Zheng <famz@redhat.com>
357786
Reviewed-by: Stefan Hajnoczi <stefanha@redhat.com>
357786
Message-id: 20180601092648.24614-7-famz@redhat.com
357786
Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com>
357786
(cherry picked from commit cc9743c236cce8a35449e3ef67140287b68bb705)
357786
Signed-off-by: Fam Zheng <famz@redhat.com>
357786
Signed-off-by: Miroslav Rezanina <mrezanin@redhat.com>
357786
---
357786
 block/iscsi.c | 41 +++++++++++++++++++++++++++++++++++++++++
357786
 1 file changed, 41 insertions(+)
357786
357786
diff --git a/block/iscsi.c b/block/iscsi.c
357786
index 1705187..a1a0044 100644
357786
--- a/block/iscsi.c
357786
+++ b/block/iscsi.c
357786
@@ -69,6 +69,7 @@ typedef struct IscsiLun {
357786
     QemuMutex mutex;
357786
     struct scsi_inquiry_logical_block_provisioning lbp;
357786
     struct scsi_inquiry_block_limits bl;
357786
+    struct scsi_inquiry_device_designator *dd;
357786
     unsigned char *zeroblock;
357786
     /* The allocmap tracks which clusters (pages) on the iSCSI target are
357786
      * allocated and which are not. In case a target returns zeros for
357786
@@ -1737,6 +1738,30 @@ static QemuOptsList runtime_opts = {
357786
     },
357786
 };
357786
 
357786
+static void iscsi_save_designator(IscsiLun *lun,
357786
+                                  struct scsi_inquiry_device_identification *inq_di)
357786
+{
357786
+    struct scsi_inquiry_device_designator *desig, *copy = NULL;
357786
+
357786
+    for (desig = inq_di->designators; desig; desig = desig->next) {
357786
+        if (desig->association ||
357786
+            desig->designator_type > SCSI_DESIGNATOR_TYPE_NAA) {
357786
+            continue;
357786
+        }
357786
+        /* NAA works better than T10 vendor ID based designator. */
357786
+        if (!copy || copy->designator_type < desig->designator_type) {
357786
+            copy = desig;
357786
+        }
357786
+    }
357786
+    if (copy) {
357786
+        lun->dd = g_new(struct scsi_inquiry_device_designator, 1);
357786
+        *lun->dd = *copy;
357786
+        lun->dd->next = NULL;
357786
+        lun->dd->designator = g_malloc(copy->designator_length);
357786
+        memcpy(lun->dd->designator, copy->designator, copy->designator_length);
357786
+    }
357786
+}
357786
+
357786
 static int iscsi_open(BlockDriverState *bs, QDict *options, int flags,
357786
                       Error **errp)
357786
 {
357786
@@ -1904,6 +1929,7 @@ static int iscsi_open(BlockDriverState *bs, QDict *options, int flags,
357786
         struct scsi_task *inq_task;
357786
         struct scsi_inquiry_logical_block_provisioning *inq_lbp;
357786
         struct scsi_inquiry_block_limits *inq_bl;
357786
+        struct scsi_inquiry_device_identification *inq_di;
357786
         switch (inq_vpd->pages[i]) {
357786
         case SCSI_INQUIRY_PAGECODE_LOGICAL_BLOCK_PROVISIONING:
357786
             inq_task = iscsi_do_inquiry(iscsilun->iscsi, iscsilun->lun, 1,
357786
@@ -1929,6 +1955,17 @@ static int iscsi_open(BlockDriverState *bs, QDict *options, int flags,
357786
                    sizeof(struct scsi_inquiry_block_limits));
357786
             scsi_free_scsi_task(inq_task);
357786
             break;
357786
+        case SCSI_INQUIRY_PAGECODE_DEVICE_IDENTIFICATION:
357786
+            inq_task = iscsi_do_inquiry(iscsilun->iscsi, iscsilun->lun, 1,
357786
+                                    SCSI_INQUIRY_PAGECODE_DEVICE_IDENTIFICATION,
357786
+                                    (void **) &inq_di, errp);
357786
+            if (inq_task == NULL) {
357786
+                ret = -EINVAL;
357786
+                goto out;
357786
+            }
357786
+            iscsi_save_designator(iscsilun, inq_di);
357786
+            scsi_free_scsi_task(inq_task);
357786
+            break;
357786
         default:
357786
             break;
357786
         }
357786
@@ -1985,6 +2022,10 @@ static void iscsi_close(BlockDriverState *bs)
357786
         iscsi_logout_sync(iscsi);
357786
     }
357786
     iscsi_destroy_context(iscsi);
357786
+    if (iscsilun->dd) {
357786
+        g_free(iscsilun->dd->designator);
357786
+        g_free(iscsilun->dd);
357786
+    }
357786
     g_free(iscsilun->zeroblock);
357786
     iscsi_allocmap_free(iscsilun);
357786
     qemu_mutex_destroy(&iscsilun->mutex);
357786
-- 
357786
1.8.3.1
357786