scsi: zfcp: log FC Endpoint Security of connections
authorJens Remus <jremus@linux.ibm.com>
Thu, 12 Mar 2020 17:45:02 +0000 (18:45 +0100)
committerMartin K. Petersen <martin.petersen@oracle.com>
Tue, 17 Mar 2020 17:12:39 +0000 (13:12 -0400)
Log the usage of and subsequent changes in FC Endpoint Security of
connections between FCP devices and FC remote ports to the kernel ring
buffer. Activation of FC Endpoint Security is logged as informational.
Change and deactivation are logged as warning.

No logging takes place, if FC Endpoint Security is not used (i.e. never
activated) on a connection or if it does not change during reopen of a port
(e.g. due to adapter or port recovery).

Link: https://lore.kernel.org/r/20200312174505.51294-8-maier@linux.ibm.com
Reviewed-by: Steffen Maier <maier@linux.ibm.com>
Reviewed-by: Fedor Loshakov <loshakov@linux.ibm.com>
Signed-off-by: Jens Remus <jremus@linux.ibm.com>
Signed-off-by: Steffen Maier <maier@linux.ibm.com>
Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>
drivers/s390/scsi/zfcp_def.h
drivers/s390/scsi/zfcp_fsf.c

index 861ddc1ef2a9ac2c5531826148993e4a58a73dd0..b6af4a93681cbd55e0ca4494e029af697ca3bd5e 100644 (file)
@@ -220,6 +220,7 @@ struct zfcp_port {
        u32                    maxframe_size;
        u32                    supported_classes;
        u32                    connection_info;
+       u32                    connection_info_old;
        struct work_struct     gid_pn_work;
        struct work_struct     test_link_work;
        struct work_struct     rport_work;
index 068cb94beb58a9a3faac7d481d8aae8ba18b3f6a..08ce0fa04665c48d1e87734e82ea3525acfbc32a 100644 (file)
@@ -666,6 +666,9 @@ static void zfcp_fsf_exchange_config_data_handler(struct zfcp_fsf_req *req)
 
 /*
  * Mapping of FC Endpoint Security flag masks to mnemonics
+ *
+ * NOTE: Update macro ZFCP_FSF_MAX_FC_SECURITY_MNEMONIC_LENGTH when making any
+ *       changes.
  */
 static const struct {
        u32     mask;
@@ -676,6 +679,9 @@ static const struct {
          FSF_FC_SECURITY_ENC_ERAS,     "Encryption" },
 };
 
+/* maximum strlen(zfcp_fsf_fc_security_mnemonics[...].name) + 1 */
+#define ZFCP_FSF_MAX_FC_SECURITY_MNEMONIC_LENGTH 15
+
 /**
  * zfcp_fsf_scnprint_fc_security() - translate FC Endpoint Security flags into
  *                                   mnemonics and place in a buffer
@@ -700,7 +706,8 @@ static const struct {
  * undefined in zfcp_fsf_fc_security_mnemonics, its value in hexadecimal
  * representation is placed into the buffer. If more than one FC Endpoint
  * Security flag was specified, their value in hexadecimal representation is
- * placed into the buffer.
+ * placed into the buffer. The macro ZFCP_FSF_MAX_FC_SECURITY_MNEMONIC_LENGTH
+ * can be used to define a buffer that is large enough to hold one mnemonic.
  *
  * Return: The number of characters written into buf not including the trailing
  *         '\0'. If size is == 0 the function returns 0.
@@ -1572,6 +1579,50 @@ out_unlock:
        return retval;
 }
 
+static void zfcp_fsf_log_port_fc_security(struct zfcp_port *port)
+{
+       char mnemonic_old[ZFCP_FSF_MAX_FC_SECURITY_MNEMONIC_LENGTH];
+       char mnemonic_new[ZFCP_FSF_MAX_FC_SECURITY_MNEMONIC_LENGTH];
+
+       if (port->connection_info == port->connection_info_old) {
+               /* no change, no log */
+               return;
+       }
+
+       zfcp_fsf_scnprint_fc_security(mnemonic_old, sizeof(mnemonic_old),
+                                     port->connection_info_old,
+                                     ZFCP_FSF_PRINT_FMT_SINGLEITEM);
+       zfcp_fsf_scnprint_fc_security(mnemonic_new, sizeof(mnemonic_new),
+                                     port->connection_info,
+                                     ZFCP_FSF_PRINT_FMT_SINGLEITEM);
+
+       if (strncmp(mnemonic_old, mnemonic_new,
+                   ZFCP_FSF_MAX_FC_SECURITY_MNEMONIC_LENGTH) == 0) {
+               /* no change in string representation, no log */
+               goto out;
+       }
+
+       if (port->connection_info_old == 0) {
+               /* activation */
+               dev_info(&port->adapter->ccw_device->dev,
+                        "FC Endpoint Security of connection to remote port 0x%16llx enabled: %s\n",
+                        port->wwpn, mnemonic_new);
+       } else if (port->connection_info == 0) {
+               /* deactivation */
+               dev_warn(&port->adapter->ccw_device->dev,
+                        "FC Endpoint Security of connection to remote port 0x%16llx disabled: was %s\n",
+                        port->wwpn, mnemonic_old);
+       } else {
+               /* change */
+               dev_warn(&port->adapter->ccw_device->dev,
+                        "FC Endpoint Security of connection to remote port 0x%16llx changed: from %s to %s\n",
+                        port->wwpn, mnemonic_old, mnemonic_new);
+       }
+
+out:
+       port->connection_info_old = port->connection_info;
+}
+
 static void zfcp_fsf_open_port_handler(struct zfcp_fsf_req *req)
 {
        struct zfcp_adapter *adapter = req->adapter;
@@ -1612,6 +1663,7 @@ static void zfcp_fsf_open_port_handler(struct zfcp_fsf_req *req)
                        port->connection_info = bottom->connection_info;
                else
                        port->connection_info = 0;
+               zfcp_fsf_log_port_fc_security(port);
                atomic_or(ZFCP_STATUS_COMMON_OPEN |
                                ZFCP_STATUS_PORT_PHYS_OPEN, &port->status);
                atomic_andnot(ZFCP_STATUS_COMMON_ACCESS_BOXED,