block: deprecate iSCSI 'password' in favour of 'password-secret'
authorDaniel P. Berrangé <berrange@redhat.com>
Thu, 1 Dec 2022 09:08:07 +0000 (04:08 -0500)
committerDaniel P. Berrangé <berrange@redhat.com>
Wed, 15 Feb 2023 16:01:04 +0000 (11:01 -0500)
Support for referencing secret objects was added in

  commit b189346eb1784df95ed6fed610411dbf23d19e1f
  Author: Daniel P. Berrangé <berrange@redhat.com>
  Date:   Thu Jan 21 14:19:21 2016 +0000

    iscsi: add support for getting CHAP password via QCryptoSecret API

The existing 'password' option is overdue for deprecation and
subsequent removal.

Reviewed-by: Fabiano Rosas <farosas@suse.de>
Signed-off-by: Daniel P. Berrangé <berrange@redhat.com>
block/iscsi.c
docs/about/deprecated.rst

index b3e10f40b649cf31eb1afdba339b664176c044d4..ed3e87a548506fedcc23e37f590e80966a75ae76 100644 (file)
@@ -1353,6 +1353,9 @@ static void apply_chap(struct iscsi_context *iscsi, QemuOpts *opts,
     } else if (!password) {
         error_setg(errp, "CHAP username specified but no password was given");
         return;
+    } else {
+        warn_report("iSCSI block driver 'password' option is deprecated, "
+                    "use 'password-secret' instead");
     }
 
     if (iscsi_set_initiator_username_pwd(iscsi, user, password)) {
index cb1ec72347a94689cb3ccfc2173061c20d81b0b2..d31ffa86d407142274c35b67270ede0ef758fcd9 100644 (file)
@@ -301,6 +301,14 @@ The above, converted to the current supported format::
 
   json:{"file.driver":"rbd", "file.pool":"rbd", "file.image":"name"}
 
+``iscsi,password=xxx`` (since 8.0)
+^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+
+Specifying the iSCSI password in plain text on the command line using the
+``password`` option is insecure. The ``password-secret`` option should be
+used instead, to refer to a ``--object secret...`` instance that provides
+a password via a file, or encrypted.
+
 Backwards compatibility
 -----------------------