All of lore.kernel.org
 help / color / mirror / Atom feed
* [bug report] scsi: tcmu: avoid cmd/qfull timers updated whenever a new cmd comes
@ 2019-01-22  9:27 Dan Carpenter
  2019-01-22  9:43 ` Xiubo Li
  0 siblings, 1 reply; 2+ messages in thread
From: Dan Carpenter @ 2019-01-22  9:27 UTC (permalink / raw)
  To: target-devel

Hello Xiubo Li,

The patch a94a2572b977: "scsi: tcmu: avoid cmd/qfull timers updated
whenever a new cmd comes" from Nov 23, 2018, leads to the following
static checker warning:

	drivers/target/target_core_user.c:1325 tcmu_check_expired_cmd()
	warn: 'cmd' was already freed.

drivers/target/target_core_user.c
    1290 static int tcmu_check_expired_cmd(int id, void *p, void *data)
    1291 {
    1292 	struct tcmu_cmd *cmd = p;
    1293 	struct tcmu_dev *udev = cmd->tcmu_dev;
    1294 	u8 scsi_status;
    1295 	struct se_cmd *se_cmd;
    1296 	bool is_running;
    1297 
    1298 	if (test_bit(TCMU_CMD_BIT_EXPIRED, &cmd->flags))
    1299 		return 0;
    1300 
    1301 	if (!time_after(jiffies, cmd->deadline))
    1302 		return 0;
    1303 
    1304 	is_running = test_bit(TCMU_CMD_BIT_INFLIGHT, &cmd->flags);
    1305 	se_cmd = cmd->se_cmd;
    1306 
    1307 	if (is_running) {
    1308 		/*
    1309 		 * If cmd_time_out is disabled but qfull is set deadline
    1310 		 * will only reflect the qfull timeout. Ignore it.
    1311 		 */
    1312 		if (!udev->cmd_time_out)
    1313 			return 0;
    1314 
    1315 		set_bit(TCMU_CMD_BIT_EXPIRED, &cmd->flags);
    1316 		/*
    1317 		 * target_complete_cmd will translate this to LUN COMM FAILURE
    1318 		 */
    1319 		scsi_status = SAM_STAT_CHECK_CONDITION;
    1320 	} else {
    1321 		idr_remove(&udev->commands, id);
    1322 		tcmu_free_cmd(cmd);
                        ^^^^^^^^^^^^^^^^^^
    1323 		scsi_status = SAM_STAT_TASK_SET_FULL;
    1324 	}
--> 1325 	list_del_init(&cmd->queue_entry);
                              ^^^^^^^^^^^^^^^^^
    1326 
    1327 	pr_debug("Timing out cmd %u on dev %s that is %s.\n",
    1328 		 id, udev->name, is_running ? "inflight" : "queued");
    1329 
    1330 	target_complete_cmd(se_cmd, scsi_status);
    1331 	return 0;
    1332 }

regards,
dan carpenter

^ permalink raw reply	[flat|nested] 2+ messages in thread

* Re: [bug report] scsi: tcmu: avoid cmd/qfull timers updated whenever a new cmd comes
  2019-01-22  9:27 [bug report] scsi: tcmu: avoid cmd/qfull timers updated whenever a new cmd comes Dan Carpenter
@ 2019-01-22  9:43 ` Xiubo Li
  0 siblings, 0 replies; 2+ messages in thread
From: Xiubo Li @ 2019-01-22  9:43 UTC (permalink / raw)
  To: target-devel

Hi Dan,

Thanks very much. Will fix it.
And the fixing patch is:

commit b63f9f2c0e722af3a838e65e613d2ab9178f9314
Author: Xiubo Li <xiubli@redhat.com>
Date:   Tue Jan 22 17:41:14 2019 +0800

     scsi: tcmu: fix use after free

     Fixes: 4147ebb3 ("scsi: tcmu: avoid cmd/qfull timers updated 
whenever a new cmd comes")

     Signed-off-by: Xiubo Li <xiubli@redhat.com>

diff --git a/drivers/target/target_core_user.c 
b/drivers/target/target_core_user.c
index ac76201..c46efa4 100644
--- a/drivers/target/target_core_user.c
+++ b/drivers/target/target_core_user.c
@@ -1317,12 +1317,13 @@ static int tcmu_check_expired_cmd(int id, void 
*p, void *data)
                  * target_complete_cmd will translate this to LUN COMM 
FAILURE
                  */
                 scsi_status = SAM_STAT_CHECK_CONDITION;
+               list_del_init(&cmd->queue_entry);
         } else {
+               list_del_init(&cmd->queue_entry);
                 idr_remove(&udev->commands, id);
                 tcmu_free_cmd(cmd);
                 scsi_status = SAM_STAT_TASK_SET_FULL;
         }
-       list_del_init(&cmd->queue_entry);

         pr_debug("Timing out cmd %u on dev %s that is %s.\n",
                  id, udev->name, is_running ? "inflight" : "queued");



On 2019/1/22 17:27, Dan Carpenter wrote:
> Hello Xiubo Li,
>
> The patch a94a2572b977: "scsi: tcmu: avoid cmd/qfull timers updated
> whenever a new cmd comes" from Nov 23, 2018, leads to the following
> static checker warning:
>
> 	drivers/target/target_core_user.c:1325 tcmu_check_expired_cmd()
> 	warn: 'cmd' was already freed.
>
> drivers/target/target_core_user.c
>      1290 static int tcmu_check_expired_cmd(int id, void *p, void *data)
>      1291 {
>      1292 	struct tcmu_cmd *cmd = p;
>      1293 	struct tcmu_dev *udev = cmd->tcmu_dev;
>      1294 	u8 scsi_status;
>      1295 	struct se_cmd *se_cmd;
>      1296 	bool is_running;
>      1297
>      1298 	if (test_bit(TCMU_CMD_BIT_EXPIRED, &cmd->flags))
>      1299 		return 0;
>      1300
>      1301 	if (!time_after(jiffies, cmd->deadline))
>      1302 		return 0;
>      1303
>      1304 	is_running = test_bit(TCMU_CMD_BIT_INFLIGHT, &cmd->flags);
>      1305 	se_cmd = cmd->se_cmd;
>      1306
>      1307 	if (is_running) {
>      1308 		/*
>      1309 		 * If cmd_time_out is disabled but qfull is set deadline
>      1310 		 * will only reflect the qfull timeout. Ignore it.
>      1311 		 */
>      1312 		if (!udev->cmd_time_out)
>      1313 			return 0;
>      1314
>      1315 		set_bit(TCMU_CMD_BIT_EXPIRED, &cmd->flags);
>      1316 		/*
>      1317 		 * target_complete_cmd will translate this to LUN COMM FAILURE
>      1318 		 */
>      1319 		scsi_status = SAM_STAT_CHECK_CONDITION;
>      1320 	} else {
>      1321 		idr_remove(&udev->commands, id);
>      1322 		tcmu_free_cmd(cmd);
>                          ^^^^^^^^^^^^^^^^^^
>      1323 		scsi_status = SAM_STAT_TASK_SET_FULL;
>      1324 	}
> --> 1325 	list_del_init(&cmd->queue_entry);
>                                ^^^^^^^^^^^^^^^^^
>      1326
>      1327 	pr_debug("Timing out cmd %u on dev %s that is %s.\n",
>      1328 		 id, udev->name, is_running ? "inflight" : "queued");
>      1329
>      1330 	target_complete_cmd(se_cmd, scsi_status);
>      1331 	return 0;
>      1332 }
>
> regards,
> dan carpenter

^ permalink raw reply related	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2019-01-22  9:43 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-01-22  9:27 [bug report] scsi: tcmu: avoid cmd/qfull timers updated whenever a new cmd comes Dan Carpenter
2019-01-22  9:43 ` Xiubo Li

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.