linux-scsi.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* Question about scsi_qla_host_t.fcports list protection (qla2xxx)
@ 2006-08-15 10:18 Vladislav Bolkhovitin
  2006-08-16 17:57 ` [Suspected Spam:#] " Andrew Vasquez
  0 siblings, 1 reply; 5+ messages in thread
From: Vladislav Bolkhovitin @ 2006-08-15 10:18 UTC (permalink / raw)
  To: linux-driver; +Cc: linux-scsi

Hello

Looking at the qla2xxx driver source code I noticed that 
scsi_qla_host_t.fcports is used without any protection. For instance, 
qla2x00_loop_reset() walks over this list. This function is called from 
qla2xxx_eh_bus_reset(), which could be called at any time. What does 
protect fcports from being changed, eg, by some async loop event during 
the walking and eventually oops'ing? Do I miss something? There are many 
such unprotected fcports list usages in the driver.

Vlad

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

* Re: [Suspected Spam:#] Question about scsi_qla_host_t.fcports list protection (qla2xxx)
  2006-08-15 10:18 Question about scsi_qla_host_t.fcports list protection (qla2xxx) Vladislav Bolkhovitin
@ 2006-08-16 17:57 ` Andrew Vasquez
  2006-08-17  9:58   ` Vladislav Bolkhovitin
  2006-09-05 10:08   ` [Suspected Spam:#] " Vladislav Bolkhovitin
  0 siblings, 2 replies; 5+ messages in thread
From: Andrew Vasquez @ 2006-08-16 17:57 UTC (permalink / raw)
  To: Vladislav Bolkhovitin; +Cc: linux-driver, linux-scsi

On Tue, 15 Aug 2006, Vladislav Bolkhovitin wrote:

> Looking at the qla2xxx driver source code I noticed that 
> scsi_qla_host_t.fcports is used without any protection. For instance, 
> qla2x00_loop_reset() walks over this list. This function is called from 
> qla2xxx_eh_bus_reset(), which could be called at any time. What does 
> protect fcports from being changed, eg, by some async loop event during 
> the walking and eventually oops'ing? Do I miss something? There are many 
> such unprotected fcports list usages in the driver.

Nothing is ever removed from the fcports list during driver execution.
fcports are also only added from a single context (post init-time)
within the DPC thread.  We are safe here.

Regards,
Andrew Vasquez

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

* Re: Question about scsi_qla_host_t.fcports list protection (qla2xxx)
  2006-08-16 17:57 ` [Suspected Spam:#] " Andrew Vasquez
@ 2006-08-17  9:58   ` Vladislav Bolkhovitin
  2006-09-05 10:08   ` [Suspected Spam:#] " Vladislav Bolkhovitin
  1 sibling, 0 replies; 5+ messages in thread
From: Vladislav Bolkhovitin @ 2006-08-17  9:58 UTC (permalink / raw)
  To: Andrew Vasquez; +Cc: linux-driver, linux-scsi

Andrew Vasquez wrote:
> On Tue, 15 Aug 2006, Vladislav Bolkhovitin wrote:
> 
> 
>>Looking at the qla2xxx driver source code I noticed that 
>>scsi_qla_host_t.fcports is used without any protection. For instance, 
>>qla2x00_loop_reset() walks over this list. This function is called from 
>>qla2xxx_eh_bus_reset(), which could be called at any time. What does 
>>protect fcports from being changed, eg, by some async loop event during 
>>the walking and eventually oops'ing? Do I miss something? There are many 
>>such unprotected fcports list usages in the driver.
> 
> 
> Nothing is ever removed from the fcports list during driver execution.
> fcports are also only added from a single context (post init-time)
> within the DPC thread.  We are safe here.

Sorry, I don't think so. For lockless iterating over a list concurrently 
with the addition to it you need to use *_rcu() list functions and do 
some RCU locking or, at least, disable preemption. Otherwise it is not safe.

Also, I don't think that keeping dead FC ports entries forever is a good 
idea. What does prevent you from deleting them, for instance, after 
fc_remote_port_delete() call?

Vlad

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

* Re: [Suspected Spam:#] Question about scsi_qla_host_t.fcports list protection (qla2xxx)
  2006-08-16 17:57 ` [Suspected Spam:#] " Andrew Vasquez
  2006-08-17  9:58   ` Vladislav Bolkhovitin
@ 2006-09-05 10:08   ` Vladislav Bolkhovitin
  2006-09-05 11:30     ` Vladislav Bolkhovitin
  1 sibling, 1 reply; 5+ messages in thread
From: Vladislav Bolkhovitin @ 2006-09-05 10:08 UTC (permalink / raw)
  To: Andrew Vasquez; +Cc: linux-driver, linux-scsi

Andrew Vasquez wrote:
> On Tue, 15 Aug 2006, Vladislav Bolkhovitin wrote:
> 
> 
>>Looking at the qla2xxx driver source code I noticed that 
>>scsi_qla_host_t.fcports is used without any protection. For instance, 
>>qla2x00_loop_reset() walks over this list. This function is called from 
>>qla2xxx_eh_bus_reset(), which could be called at any time. What does 
>>protect fcports from being changed, eg, by some async loop event during 
>>the walking and eventually oops'ing? Do I miss something? There are many 
>>such unprotected fcports list usages in the driver.
> 
> 
> Nothing is ever removed from the fcports list during driver execution.
> fcports are also only added from a single context (post init-time)
> within the DPC thread. 

How about qla2x00_send_login_iocb_cb(), where an entry is added to 
fcports list and which is called from IRQ context from 
qla2x00_process_iodesc()?

> We are safe here.

> Regards,
> Andrew Vasquez
> 


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

* Re: Question about scsi_qla_host_t.fcports list protection (qla2xxx)
  2006-09-05 10:08   ` [Suspected Spam:#] " Vladislav Bolkhovitin
@ 2006-09-05 11:30     ` Vladislav Bolkhovitin
  0 siblings, 0 replies; 5+ messages in thread
From: Vladislav Bolkhovitin @ 2006-09-05 11:30 UTC (permalink / raw)
  To: linux-scsi; +Cc: Andrew Vasquez, linux-driver

Vladislav Bolkhovitin wrote:
> Andrew Vasquez wrote:
> 
>> On Tue, 15 Aug 2006, Vladislav Bolkhovitin wrote:
>>
>>
>>> Looking at the qla2xxx driver source code I noticed that 
>>> scsi_qla_host_t.fcports is used without any protection. For instance, 
>>> qla2x00_loop_reset() walks over this list. This function is called 
>>> from qla2xxx_eh_bus_reset(), which could be called at any time. What 
>>> does protect fcports from being changed, eg, by some async loop event 
>>> during the walking and eventually oops'ing? Do I miss something? 
>>> There are many such unprotected fcports list usages in the driver.
>>
>>
>>
>> Nothing is ever removed from the fcports list during driver execution.
>> fcports are also only added from a single context (post init-time)
>> within the DPC thread. 
> 
> 
> How about qla2x00_send_login_iocb_cb(), where an entry is added to 
> fcports list and which is called from IRQ context from 
> qla2x00_process_iodesc()?

Sorry for the noise, I just checked in 2.6.18-rc6 and from it all that 
code was removed. Anyway, the problem with unsafe fcports list iterating 
remains valid.

Vlad

>> We are safe here.
> 
> 
>> Regards,
>> Andrew Vasquez
>>
> 
> -
> To unsubscribe from this list: send the line "unsubscribe linux-scsi" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html
> 


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

end of thread, other threads:[~2006-09-05 11:31 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2006-08-15 10:18 Question about scsi_qla_host_t.fcports list protection (qla2xxx) Vladislav Bolkhovitin
2006-08-16 17:57 ` [Suspected Spam:#] " Andrew Vasquez
2006-08-17  9:58   ` Vladislav Bolkhovitin
2006-09-05 10:08   ` [Suspected Spam:#] " Vladislav Bolkhovitin
2006-09-05 11:30     ` Vladislav Bolkhovitin

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).