lkml.org 
[lkml]   [2019]   [Apr]   [1]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
/
From
SubjectRE: [PATCH] usb: uas: fix usb subsystem hang after power off hub port
Date
Hi,

>> Hi,
>>
>> > Sorry,
>> >
>> > I thought this was clear. Your patch is making the assumption that the reset is triggered by the SCSI layer. You cannot make that assumption, as there is an ioctl for resetting a USB device.
>> > In case we are getting an error during the reset (our endpoints vanish), the device driver must report that to the USB layer, so the driver will always be disconnected.
>> > We cannot drop errors.
>> >
>> > Regards
>> > Oliver
>>
>> This patch modified uas_post_reset to skip rebind operation to avoid exception while -ENODEV happens not drop error.
>> If uas_post_reset happens -ENODEV, usb_reset_and_verify_device must happen error.
>> So,when we use ioctl(USBDEVFS_RESET) to reset device, if usb_reset_and_verify_device happens error, the error will be reported through ioctl return value.
>
>OK, It is possible that I am stupid. We must rebind if uas_post_reset() fails. The driver will crash without the endpoints. Can you please explain again in greater detail, what you are trying to achieve?

Follow is details for this patch.

Issue
- USB subsystem hangs if power off the hub port connecting UAS USB3.0/3.1 device by calling ioctl(USBDEVFS_CONTROL) to do Hub Class Request(CLEAR_FEATURE:PORT_POWER) while the device is being accessed.
- Status of the process that is accessing the device becomes DEAD and cannot be killed.

Root Cause
- Block layer timeout happens after power off UAS USB device which is accessed as reproduce step. During timeout error handler process, scsi host state becomes SHOST_CANCEL_RECOVERY that causes IO hangs up and lock cannot be released. And in final, usb subsystem hangs up.
Follow is function call:
blk_mq_timeout_work
…->scsi_times_out (… means some functions are not listed before this function.)
…-> scsi_eh_scmd_add(scsi_host_set_state to SHOST_RECOVERY)
… -> scsi_error_handler
…-> uas_eh_device_reset_handler
-> usb_lock_device_for_reset <- take lock
-> usb_reset_device
…-> rebind = uas_post_reset (return 1 since ENODEV)
…-> usb_unbind_and_rebind_marked_interfaces (rebind=1)
…-> uas_disconnect (scsi_host_set_state to SHOST_CANCEL_RECOVERY)
… -> scsi_queue_rq
-> scsi_host_queue_ready(return 0 causes IO hangs up.)
-> usb_unlock_device <- lock cannot be release since usb_reset_device not finish.


Countermeasure
- Make uas_post_reset doesn’t return 1 when ENODEV returns from uas_configure_endpoints since usb_unbind_and_rebind_marded_interfaces doesn’t need to do unbind/rebind operations in this situation.
blk_mq_timeout_work
…->scsi_times_out (… means some functions are not listed before this function.)
…-> scsi_eh_scmd_add(scsi_host_set_state to SHOST_RECOVERY)
… -> scsi_error_handler
…-> uas_eh_device_reset_handler (*1)
-> usb_lock_device_for_reset <- take lock
-> usb_reset_device
-> usb_reset_and_verify_device (return ENODEV and FAILED will be reported to *1)
-> uas_post_reset returns 0 when ENODEV => rebind=0
-> usb_unbind_and_rebind_marked_interfaces (rebind=0)
-> usb_unlock_device <- release lock


We can get error(-ENODEV) at uas_eh_device_reset_handler from usb_reset_and_verify_device.

Regards,
Kento Kobayashi
\
 
 \ /
  Last update: 2019-04-02 02:28    [W:0.086 / U:1.816 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site