Linux SCSI subsystem development
 help / color / mirror / Atom feed
From: Damien Le Moal <dlemoal@kernel.org>
To: Chaohai Chen <wdhh6@aliyun.com>
Cc: john.g.garry@oracle.com, yanaijie@huawei.com,
	James.Bottomley@hansenpartnership.com,
	martin.petersen@oracle.com, johannes.thumshirn@wdc.com,
	mingo@kernel.org, cassel@kernel.org, tglx@kernel.org,
	linux-scsi@vger.kernel.org, linux-kernel@vger.kernel.org
Subject: Re: [PATCH] scsi: libsas: Fix dev_list race conditions with proper locking
Date: Mon, 2 Feb 2026 10:21:43 +0900	[thread overview]
Message-ID: <b4f3b1d7-45f7-49c4-ad16-e085d71e2d9b@kernel.org> (raw)
In-Reply-To: <aX3lV4erBYL068PT@LAPTOP-RK2E6KJ3.localdomain>

On 1/31/26 20:19, Chaohai Chen wrote:
>>> +	 * We need to unlock before calling sas_unregister_dev() as it
>>> +	 * may sleep, but we hold a reference to prevent device removal.
>>
>> And why is that necessary ?
>>
> Because when unlocked, it is possible that the device has already been 
> released by another thread. If there is no reference count, it will lead
> to used after free.

Please clearly explain the problem path. Your statements about "another thread"
is too vague.

>>> +	 */
>>> +	spin_lock_irq(&port->dev_list_lock);
>>>  	list_for_each_entry_safe_reverse(dev, n, &port->dev_list, dev_list_node) {
>>>  		if (gone)
>>>  			set_bit(SAS_DEV_GONE, &dev->state);
>>> +		kref_get(&dev->kref);
>>> +		spin_unlock_irq(&port->dev_list_lock);
>>> +
>>>  		sas_unregister_dev(port, dev);
>>> +		sas_put_device(dev);
>>> +
>>> +		spin_lock_irq(&port->dev_list_lock);
>>>  	}
>>> +	spin_unlock_irq(&port->dev_list_lock);

-- 
Damien Le Moal
Western Digital Research

  reply	other threads:[~2026-02-02  1:21 UTC|newest]

Thread overview: 10+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-01-29  9:38 [PATCH] scsi: libsas: Fix dev_list race conditions with proper locking Chaohai Chen
2026-01-30  3:02 ` Damien Le Moal
2026-01-31 11:19   ` Chaohai Chen
2026-02-02  1:21     ` Damien Le Moal [this message]
2026-02-02  7:36       ` Chaohai Chen
2026-02-02  7:45         ` Damien Le Moal
2026-02-02  9:03         ` Jason Yan
2026-01-30  8:27 ` Jason Yan
2026-01-31 10:47   ` Chaohai Chen
2026-02-02  1:46     ` Damien Le Moal

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=b4f3b1d7-45f7-49c4-ad16-e085d71e2d9b@kernel.org \
    --to=dlemoal@kernel.org \
    --cc=James.Bottomley@hansenpartnership.com \
    --cc=cassel@kernel.org \
    --cc=johannes.thumshirn@wdc.com \
    --cc=john.g.garry@oracle.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-scsi@vger.kernel.org \
    --cc=martin.petersen@oracle.com \
    --cc=mingo@kernel.org \
    --cc=tglx@kernel.org \
    --cc=wdhh6@aliyun.com \
    --cc=yanaijie@huawei.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox