8786 Commits

Author SHA1 Message Date
Gleb Chesnokov
9152b4740a qla2x00t-32gbit: edif: Fix n2n login retry for secure device
After initiator has burned up all login retries, target authentication
application begins to run. This triggers a link bounce on target side.
Initiator will attempt another login. Due to N2N, the PRLI [nvme | fcp] can
fail because of the mode mismatch with target. This patch add a few more
login retries to revive the connection.

Link: https://lore.kernel.org/r/20220607044627.19563-11-njavali@marvell.com
Fixes: 4de067e5df12 ("scsi: qla2xxx: edif: Add N2N support for EDIF")
Signed-off-by: Quinn Tran <qutran@marvell.com>
Signed-off-by: Nilesh Javali <njavali@marvell.com>
Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>
[ commit aec55325ddec upstream ]
2022-09-13 10:49:31 +03:00
Gleb Chesnokov
bf6504c1e4 qla2x00t-32gbit: edif: Fix n2n discovery issue with secure target
User failed to see disk via n2n topology. Driver used up all login retries
before authentication application started. When authentication application
started, driver did not have enough login retries to connect securely. On
app_start, driver will reset the login retry attempt count.

Link: https://lore.kernel.org/r/20220607044627.19563-10-njavali@marvell.com
Fixes: 4de067e5df12 ("scsi: qla2xxx: edif: Add N2N support for EDIF")
Signed-off-by: Quinn Tran <qutran@marvell.com>
Signed-off-by: Nilesh Javali <njavali@marvell.com>
Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>
[ commit 789d54a41786 upstream ]
2022-09-13 10:49:31 +03:00
Gleb Chesnokov
51acb6f8f8 qla2x00t-32gbit: edif: Remove old doorbell interface
Recently driver has implemented a new doorbell mechanism via bsg.  The new
doorbell tells driver the exact buffer size application has where driver
can fill it up with events. The old doorbell guestimated application buffer
size is 256.

Remove duplicate functionality, the application has moved on to the new
doorbell interface.

Link: https://lore.kernel.org/r/20220607044627.19563-9-njavali@marvell.com
Signed-off-by: Quinn Tran <qutran@marvell.com>
Signed-off-by: Nilesh Javali <njavali@marvell.com>
Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>
[ commit 1040e5f75ddf upstream ]
2022-09-13 10:49:31 +03:00
Gleb Chesnokov
b805073c83 qla2x00t-32gbit: edif: Add retry for ELS passthrough
Relating to EDIF, when sending IKE message, updating key or deleting key,
driver can encounter IOCB queue full. Add additional retries to reduce
higher level recovery.

Link: https://lore.kernel.org/r/20220607044627.19563-8-njavali@marvell.com
Fixes: dd30706e73b7 ("scsi: qla2xxx: edif: Add key update")
Signed-off-by: Quinn Tran <qutran@marvell.com>
Signed-off-by: Nilesh Javali <njavali@marvell.com>
Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>
[ commit 0b3f3143d473 upstream ]
2022-09-13 10:49:31 +03:00
Gleb Chesnokov
7118ccf7c4 qla2x00t-32gbit: edif: Synchronize NPIV deletion with authentication application
Notify authentication application of a NPIV deletion event is about to
occur. This allows app to perform cleanup.

Link: https://lore.kernel.org/r/20220607044627.19563-7-njavali@marvell.com
Fixes: 9efea843a906 ("scsi: qla2xxx: edif: Add detection of secure device")
Signed-off-by: Quinn Tran <qutran@marvell.com>
Signed-off-by: Nilesh Javali <njavali@marvell.com>
Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>
[ commit cf79716e6636 upstream ]
2022-09-13 10:49:31 +03:00
Gleb Chesnokov
b3cc9f3628 qla2x00t-32gbit: edif: Fix potential stuck session in sa update
When a thread is in the process of reestablish a session, a flag is set to
prevent multiple threads/triggers from doing the same task. This flag was
left on, and any attempt to relogin was locked out. Clear this flag if the
attempt has failed.

Link: https://lore.kernel.org/r/20220607044627.19563-6-njavali@marvell.com
Fixes: dd30706e73b7 ("scsi: qla2xxx: edif: Add key update")
Signed-off-by: Quinn Tran <qutran@marvell.com>
Signed-off-by: Nilesh Javali <njavali@marvell.com>
Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>
[ commit e0fb8ce2bb9e upstream ]
2022-09-13 10:49:31 +03:00
Gleb Chesnokov
c3b8db1d41 qla2x00t-32gbit: Backport to older kernel versions
The commit ec325c9913bd ("qla2x00t-32gbit: edif: Add bsg interface to
read doorbell events") introduced the use of the sg_copy_buffer()
function.

The kernel has only exported this function since version v4.2, so use
sg_pcopy_from_buffer() instead, which is already supported by older
kernel versions.
2022-09-13 10:49:31 +03:00
Gleb Chesnokov
8f0b70f56f qla2x00t-32gbit: edif: Add bsg interface to read doorbell events
Add bsg interface for app to read doorbell events. This interface lets
driver know how much app can read based on return buffer size. When the
next event(s) occur, driver will return the bsg_job with the event(s) in
the return buffer.

If there is no event to read, driver will hold on to the bsg_job up to few
seconds as a way to control the polling interval.

Link: https://lore.kernel.org/r/20220607044627.19563-5-njavali@marvell.com
Fixes: dd30706e73b7 ("scsi: qla2xxx: edif: Add key update")
Signed-off-by: Quinn Tran <qutran@marvell.com>
Signed-off-by: Nilesh Javali <njavali@marvell.com>
Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>
[ commit 5ecd241bd7b1 upstream ]
2022-09-13 10:49:31 +03:00
Gleb Chesnokov
eb5f7c5a2c qla2x00t-32gbit: edif: Wait for app to ack on sess down
On session deletion, wait for app to acknowledge before moving on. This
allows both app and driver to stay in sync. In addition, this gives a
chance for authentication app to do any type of cleanup before moving on.

Link: https://lore.kernel.org/r/20220607044627.19563-4-njavali@marvell.com
Fixes: dd30706e73b7 ("scsi: qla2xxx: edif: Add key update")
Signed-off-by: Quinn Tran <qutran@marvell.com>
Signed-off-by: Nilesh Javali <njavali@marvell.com>
Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>
[ commit df648afa39da upstream ]
2022-09-13 10:49:31 +03:00
Gleb Chesnokov
fe93ca4c50 qla2x00t-32gbit: edif: bsg refactor
- Add version field to edif bsg for future enhancement.

 - Add version edif bsg version check

 - Remove unused interfaces and fields.

Link: https://lore.kernel.org/r/20220607044627.19563-3-njavali@marvell.com
Fixes: dd30706e73b7 ("scsi: qla2xxx: edif: Add key update")
Signed-off-by: Quinn Tran <qutran@marvell.com>
Signed-off-by: Nilesh Javali <njavali@marvell.com>
Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>
[ commit 7a7b0b4865d3 upstream ]
2022-09-13 10:49:31 +03:00
Gleb Chesnokov
b5561a6b4a qla2x00t-32gbit: edif: Reduce Initiator-Initiator thrashing
This patch uses GFFID switch command to scan whether remote device is
Target or Initiator mode.  Based on that info, driver will not pass up
Initiator info to authentication application. This helps reduce unnecessary
stress for authentication application to deal with unused connections.

Link: https://lore.kernel.org/r/20220607044627.19563-2-njavali@marvell.com
Fixes: 7ebb336e45ef ("scsi: qla2xxx: edif: Add start + stop bsgs")
Signed-off-by: Quinn Tran <qutran@marvell.com>
Signed-off-by: Nilesh Javali <njavali@marvell.com>
Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>
[ commit 9c40c36e75ff upstream ]
2022-09-13 10:49:31 +03:00
Gleb Chesnokov
1807f82e39 scst_mem: Check for errors in scst_sgv_pools_init()
The register_shrinker() function may return an error since Linux
kernel v3.12.
2022-09-12 23:31:25 +03:00
Gleb Chesnokov
a13ef3be90 scst_mem: Allow NULL 'pool' pointer in sgv_pool_destroy()
sgv_pool_destroy() does not tolerate a NULL sgv_pool pointer argument and
performs a NULL-pointer dereference. This requires additional attention
and effort from developers/reviewers and forces all sgv_pool_destroy()
callers to do a NULL check

    if (pool)
        sgv_pool_destroy(pool);

Or, otherwise, be invalid sgv_pool_destroy() users.

Tweak sgv_pool_destroy() and NULL-check the pointer there.
2022-09-12 23:31:25 +03:00
Gleb Chesnokov
96f5cfb7b3 scst/include/backport.h: Fix the register_shrinker() backport
The register_shrinker() function has begun to return non void value since
v3.12 version. So fix the backport of this function for kernel versions
before v3.12.

Fixes: 84bd33f9a1 ("scst_mem: Port to Linux kernel v6.0")
2022-09-12 23:31:25 +03:00
Gleb Chesnokov
4f1003104f iscsi-scst: Fix a typo in SCSTTarget RA
Extraneous space in "status" breaks resource monitoring:

    <action name="status " timeout="10" interval="10" depth="0" />

Fixes: https://github.com/SCST-project/scst/issues/80
2022-09-01 12:42:52 +03:00
Gleb Chesnokov
84bd33f9a1 scst_mem: Port to Linux kernel v6.0
Support for the following mm layer changes in the Linux kernel v6.0:
- e33c267ab70d ("mm: shrinkers: provide shrinkers with names")
2022-08-21 19:41:49 +03:00
Gleb Chesnokov
46ad98f072 scst: Remove else after a break or return
Remove the else because the if statement has a break or return statement.

This patch fixes the following checkpatch warnings:

    WARNING:UNNECESSARY_ELSE: else is not generally useful after a break
    or return.
2022-08-09 19:38:00 +03:00
Gleb Chesnokov
ebae8bd223 scst: Remove unnecessary null check
kmem_cache_destroy() can handle NULL pointer correctly, so there is no need
to check NULL pointer before calling kmem_cache_destroy().

For kernel versions before v4.3 there is a backport of
kmem_cache_destroy() that checks for a null pointer.

This patch fixes the following checkpatch warnings:

    WARNING:NEEDLESS_IF: kmem_cache_destroy(NULL) is safe and this check
    is probably not required
2022-08-09 19:38:00 +03:00
Gleb Chesnokov
4649a6abd4 scst/include/backport.h, scst_sysfs: Prefer 'unsigned int' over bare 'unsigned'
The bare "unsigned" type implicitly means "unsigned int", but the preferred
coding style is to use the complete type name.

This patch fixes the following checkpatch warnings:

    WARNING:UNSPECIFIED_INT: Prefer 'unsigned int' to bare use of 'unsigned'
2022-08-09 19:38:00 +03:00
Gleb Chesnokov
1e168e6676 iscsi-scst: Fix spelling mistake in comment
Change 'compability' to 'compatibility'.

This patch fixes the following checkpatch warning:

    WARNING: 'compability' may be misspelled - perhaps 'compatibility'?
2022-08-09 19:38:00 +03:00
Gleb Chesnokov
d94c7fb06e scst_lib, scst_vdisk: Remove unlikely from IS_ERR_OR_NULL
This patch fixes the following checkpatch warnings:

    WARNING:LIKELY_MISUSE: nested (un)?likely() calls,
    IS_ERR_OR_NULL already uses unlikely() internally.
2022-08-09 19:38:00 +03:00
Gleb Chesnokov
b4e09bac10 nightly build: Update kernel versions 2022-08-02 15:17:10 +03:00
Gleb Chesnokov
7b55903875 mailmap: Update Gleb Chesnokov's email address
I have created a new dedicated email address for SCST. So add
information about it.

New email: gleb.chesnokov@scst.dev
2022-07-29 21:42:15 +03:00
Bart Van Assche
6641fa81bf ib_srpt: Remove the obsolete max_sge_delta kernel module parameter 2022-07-27 20:17:03 -07:00
Bart Van Assche
4b7b3e2c58 ib_srpt: Remove obsolete parameters and update documentation
Support for the ib_srpt_target_<n> target port names was removed in 2015.
Update the documentation that still uses this target port name format.
Remove all references to the obsolete ib_srpt kernel module parameters
use_port_guid_in_session_name and use_node_guid_in_target_name. Remove
the references from srpt/README to target port name formats that are no
longer supported.
2022-07-27 20:14:23 -07:00
Gleb Chesnokov
8ac0b4e6b4 scst_lib: Fix memory leak reported by Coverity
This patch fixes the following Coverity complaint:

    CID 275306 (#1 of 1): Resource leak (RESOURCE_LEAK)
    Variable cwrp going out of scope leaks the storage it points to.

In the scst_cmp_wr_local() function, we don't free 'cwrp' if the next
check after the memory allocation fails. Hence move this check before
allocating memory.

Fixes: 4525b04b2 ("scst: Reject inconsistent COMPARE AND WRITE commands")
2022-07-26 18:43:34 +03:00
Gleb Chesnokov
60e0a15f41 README.md: Use the preferred way to integrate the Coverity Scan Badge 2022-07-26 16:11:11 +03:00
Gleb Chesnokov
fabd3dadc9 github: Ignore errors when building SCST for Coverity
The GitHub virtual environment provides Ubuntu with a kernel that doesn't
support FCoE, causing the build to fail:

ERROR: modpost: "fc_seq_release" [/root/gleb/SCST/scst/fcst/fcst.ko] undefined!
ERROR: modpost: "fc_fc4_register_provider" [/root/gleb/SCST/scst/fcst/fcst.ko] undefined!
ERROR: modpost: "fc_lport_iterate" [/root/gleb/SCST/scst/fcst/fcst.ko] undefined!
ERROR: modpost: "fc_seq_els_rsp_send" [/root/gleb/SCST/scst/fcst/fcst.ko] undefined!
ERROR: modpost: "fc_seq_assign" [/root/gleb/SCST/scst/fcst/fcst.ko] undefined!
ERROR: modpost: "_fc_frame_alloc" [/root/gleb/SCST/scst/fcst/fcst.ko] undefined!
ERROR: modpost: "fc_fill_reply_hdr" [/root/gleb/SCST/scst/fcst/fcst.ko] undefined!
ERROR: modpost: "fc_exch_done" [/root/gleb/SCST/scst/fcst/fcst.ko] undefined!
ERROR: modpost: "fc_fc4_deregister_provider" [/root/gleb/SCST/scst/fcst/fcst.ko] undefined!
ERROR: modpost: "fc_frame_alloc_fill" [/root/gleb/SCST/scst/fcst/fcst.ko] undefined!
WARNING: modpost: suppressed 4 unresolved symbol warnings because there were too many)

Ignore these errors and continue building SCST to get all the information
for analysis.
2022-07-26 16:11:11 +03:00
Gleb Chesnokov
b6b23e9a0c README.md: Add Coverity Scan Badge 2022-07-25 14:41:32 +03:00
Gleb Chesnokov
4418538578 github: Add a GitHub action to run a Coverity scan upon push
Submit a build to the Coverity analyzer for every change in the
master branch.

You can find the results of Coverity's analysis here:
https://scan.coverity.com/projects/scst-project
2022-07-25 14:41:32 +03:00
Gleb Chesnokov
5c7fa24031 Makefile: Introduce the 'make cov-build'
Introduce a new helper target to build the SCST for the Coverity scan.
2022-07-25 14:41:32 +03:00
Gleb Chesnokov
1db47d2a3e scst_main: Fix up the error handling
We should clear sysfs during copy manager device registration failure.
Otherwise, we will not be able to re-register this device, since the
sysfs for it has already been created.
2022-07-23 20:46:21 +03:00
Gleb Chesnokov
4a02996629 scst_copy_mgr, initial inquiry: Fix up the error handling
1. scst_cm_send_init_inquiry() gets a reference on struct scst_device, but
   doesn't put it in case of an error, so this may cause a reference leak.

2. scst_cm_init_inq_finish() shouldn't put a reference on struct
   scst_device during the retry, since we have to hold the reference as
   long as there is a pointer to struct scst_device in the priv field.
   Otherwise, the retry command will run without holding the reference.

Fixes: ec3c6b5a ("scst_copy_mgr, initial inquiry: Hold a reference on
struct scst_device")
2022-07-23 20:46:21 +03:00
Gleb Chesnokov
f06a86e4aa scstadmin/scstadmin.sysfs/Makefile: Add makefile target
Most targets of this Makefile require a underlying Makefile to be
created before they are called. Otherwise you will get an error like
this:

  make -C scst-1.0.0 clean
  make[3]: Entering directory '/.../scst/scstadmin/scstadmin.sysfs/scst-1.0.0'
  make[3]: *** No rule to make target 'clean'.  Stop.

Hence add a target that creates a underlying Makefile and add it as a
dependency for all required targets.
2022-07-12 19:34:18 +03:00
Gleb Chesnokov
fa8f125ed8 scst_vdisk: Introduce the primitives for [de]activating a virt device
Currently we have several places where activating/deactivating of
virtual device happens:

  1. sysfs 'active' attribute
  2. on_alua_state_change_*() callback functions

They all use the same code to activate/deactivate virtual device.

Hence introduce the new vdisk_activate_dev() and vdisk_disable_dev()
helpers in order to reduce code duplication.

This patch doesn't change any functionality.
2022-07-12 16:02:44 +03:00
Gleb Chesnokov
904bd8428b scst_vdisk: Unbreak the RHEL 9 build 2022-07-11 22:03:32 +03:00
Gleb Chesnokov
b93b18731f scst_tg: Fix usage of the on_alua_state_change_*() callback functions
The use of the on_alua_state_change_*() callback functions was changed in
commit d333ce82 ("Restore the on_alua_state_change_*() callback functions")
in a such way that they are now only invoked if the state of a local target
port group is being modified.

But when compared to the old implementation, which was removed in commit
29548a4a ("scst: Remove the on_alua_state_change_*() callback functions"),
they won't be invoked for devices that do not have target devices, or have
only those that aren't included in the target group.

Hence additionally invoke these callbacks for such devices if the state of
a local target port group is being modified.

Fixes: https://github.com/SCST-project/scst/issues/55
2022-07-08 14:47:30 +03:00
Gleb Chesnokov
b07796ccca scst_tg: Introduce __scst_tg_have_tgt()
Introduce the helper function __scst_tg_have_tgt(), which purpose
is to check if the given target group contains the given target.
2022-07-08 14:47:30 +03:00
Gleb Chesnokov
0a25757b97 nightly build: Add UEK 7 kernels 2022-07-07 13:52:01 +03:00
Gleb Chesnokov
1139a7847d scst.spec.in, scst-dkms.spec.in: Unbreak the UEK 7 build 2022-07-07 13:52:01 +03:00
Gleb Chesnokov
90485f0c97 iscsi-scst: Fix up the error handling to avoid crash
This patch should fix the following bug:

iscsi-scst: ***ERROR***: Sending data failed: initiator ..., write_size 0, write_state 1, res 0
iscsi-scst: ***CRITICAL ERROR***: 0 6 31
 ------------[ cut here ]------------
kernel BUG at /usr/src/packages/BUILD/scst-3.7.0.8695/iscsi-scst/kernel/nthread.c:1517!
invalid opcode: 0000 [#1] SMP NOPTI
CPU: 12 PID: 997595 Comm: iscsiwr0_14 ...
...
RIP: 0010:iscsi_send+0x877/0x8b0 [iscsi_scst]
Call Trace:
 istwr+0x123/0x3b0 [iscsi_scst]
 kthread+0x120/0x136
 ret_from_fork+0x24/0x36
 -------------------------------------

What happens:

 - istwr() calls scst_do_job_wr().

 - scst_do_job_wr() calls iscsi_send().

 - iscsi_send() sets the 'res' variable to 0 during error
   in one of three possible places:
   iscsi_do_send(), tx_padding(), tx_ddigest().

 - All of these functions call exit_tx() which sets conn->write_state to TX_END.

 - After iscsi_send() has completed for the current iteration, the next time
   it processes iscsi_conn with conn->write_state == TX_END,
   which will call BUG() in the switch default case.

Therefore, remove the res == 0 check in iscsi_send() to handle TX_END state.

Fixes: https://github.com/SCST-project/scst/issues/12
2022-06-28 18:46:30 +03:00
Gleb Chesnokov
276aeeb211 iscsi-scst: Make exit_tx() return void
exit_tx() doesn't change the return variable res, so make it return
void.

This patch doesn't change any functionality.
2022-06-28 18:46:30 +03:00
Gleb Chesnokov
33861d0a6d iscsi-scst: Suppress a Coverity taint complaint
Suppress the following (false positive) Coverity complaint:

    CID 271578 (#1 of 1): Dereference after null check (FORWARD_NULL)
    var_deref_model: Passing null pointer (*ref_cmd).scst_cmd to
    scst_set_delivery_status, which dereferences it

(*ref_cmd).scst_aen is set when (*ref_cmd).scst_state == ISCSI_CMD_STATE_AEN
and vice versa, so the Coverity complaint is a false positive. Hence rewrite
the code to suppress this complaint and make the code cleaner.
2022-06-27 14:14:52 +03:00
Gleb Chesnokov
828940842a iscsi-scst/usr/iscsi_adm.c: Fix use of uninitialized struct field
This patch fixes the following Coverity complaint:

    CID 271601 (#1 of 1): Uninitialized scalar variable (UNINIT)
    uninit_use_in_call: Using uninitialized value req.
    Field req.cid is uninitialized when calling iscsid_request.
2022-06-27 14:14:52 +03:00
Gleb Chesnokov
d9442eaa18 iscsi-scst: Fix use of uninitialized struct field
This patch fixes the following Coverity complaint:

    CID 271606 (#1 of 1): Uninitialized scalar variable (UNINIT)
    uninit_use_in_call: Using uninitialized value event.
    Field event.target_name is uninitialized when calling __event_send.
2022-06-27 14:14:52 +03:00
Gleb Chesnokov
4399f2d109 scst_lib: Simplify redundant boolean expression
This was detected by Coverity.
2022-06-21 00:50:58 +03:00
Gleb Chesnokov
590d0c6d24 scst_vdisk: Make vdev_sysfs_process_active_store() more readable
This patch doesn't change any functionality.
2022-06-21 00:50:58 +03:00
Gleb Chesnokov
6f9e451360 scst: Display default SCST module parameters values
The 'modinfo scst' command lack of the information about default parameters
values. Hence this patch.
2022-06-20 16:08:18 +03:00
Gleb Chesnokov
19a03ed163 scst_main: Use bool type for boolean module params
This patch doesn't change any functionality.
2022-06-20 16:08:18 +03:00
Gleb Chesnokov
4123e521cc qla2x00t-32gbit: Remove unused 'ql_dm_tgt_ex_pct' parameter
The ql_dm_tgt_ex_pct parameter was introduced in commit ead038556f64
("qla2xxx: Add Dual mode support in the driver"). Then the use of this
parameter was dropped in commit 99e1b683c4be ("scsi: qla2xxx: Add
ql2xiniexchg parameter").

Thus, remove ql_dm_tgt_ex_pct since it is no longer used.

Link: https://lore.kernel.org/r/AM9PR10MB41185ADE95B92B4E6926BE639DD49@AM9PR10MB4118.EURPRD10.PROD.OUTLOOK.COM
Reviewed-by: Himanshu Madhani <himanshu.madhani@oracle.com>
Signed-off-by: Gleb Chesnokov <Chesnokov.G@raidix.com>
Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>
[ commit aa2a4ded0505 upstream ]
2022-06-17 16:03:13 +03:00