All of lore.kernel.org
 help / color / mirror / Atom feed
* Possible use after free in scsi_put_command()?
@ 2014-06-24 15:07 Maurizio Lombardi
  2014-06-25  6:52 ` Bart Van Assche
  0 siblings, 1 reply; 5+ messages in thread
From: Maurizio Lombardi @ 2014-06-24 15:07 UTC (permalink / raw)
  To: hare; +Cc: linux-scsi

Hi Hannes,

I've a question regarding the asynchronous scsi abort handler,
look at the scsi_put_command() function:

void scsi_put_command(struct scsi_cmnd *cmd)
{
        unsigned long flags;
	[...]
        cancel_delayed_work(&cmd->abort_work);
        __scsi_put_command(cmd->device->host, cmd);
}

cancel_delayed_work() may return while the abort handler is still running,
the problem is that __scsi_put_command() frees the cmd pointer that
is still used by the abort handler.

Is it correct? Isn't safer to use cancel_delayed_work_sync() here?

Thanks,
Maurizio Lombardi


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

end of thread, other threads:[~2014-06-25  9:01 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-06-24 15:07 Possible use after free in scsi_put_command()? Maurizio Lombardi
2014-06-25  6:52 ` Bart Van Assche
2014-06-25  7:03   ` Maurizio Lombardi
2014-06-25  7:45     ` Bart Van Assche
2014-06-25  9:01       ` Christoph Hellwig

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.