Page MenuHomeFreeBSD

Fix busdma resource leak on usb device detach
ClosedPublic

Authored by ian on Sep 28 2021, 4:20 PM.
Tags
None
Referenced Files
F154293422: D32208.id95872.diff
Mon, Apr 27, 4:05 PM
Unknown Object (File)
Sat, Apr 25, 12:21 AM
Unknown Object (File)
Sun, Apr 19, 8:07 PM
Unknown Object (File)
Fri, Apr 17, 8:20 AM
Unknown Object (File)
Sat, Apr 4, 2:04 PM
Unknown Object (File)
Sat, Apr 4, 6:57 AM
Unknown Object (File)
Fri, Apr 3, 5:13 AM
Unknown Object (File)
Mon, Mar 30, 4:45 PM
Subscribers

Details

Summary

When a usb device is detached, usb_pc_dmamap_destroy() called bus_dmamap_destroy() while the map was still loaded. That's harmless on x86 architectures, but on all other platforms it causes bus_dmamap_destroy() to return EBUSY and leak away any memory resources (including bounce buffers) associated with the mapping, as well as any allocated map structure itself.

This change introduces a new is_loaded flag to the usb_page_cache struct to track whether a map is loaded or not. If the map is loaded, bus_dmamap_unload() is called before bus_dmamap_destroy() to avoid leaking away resources.

Test Plan

On a non-x86 platform such as arm, sysctl vm.kvm_free can be used to track the resource leaks. Before this change, you can see kvm_free go down with each usb device attach/detach. (Using usbconfig reset in a shell while 1 loop will eventually run the kernel out of memory and hang or panic the system.) After this change, the sysctl shows no change in kvm_free across multiple attach/detach cycles.

Diff Detail

Repository
rG FreeBSD src repository
Lint
Lint Not Applicable
Unit
Tests Not Applicable