Windows System Software -- Consulting, Training, Development -- Unique Expertise, Guaranteed Results
The free OSR Learning Library has more than 50 articles on a wide variety of topics about writing and debugging device drivers and Minifilters. From introductory level to advanced. All the articles have been recently reviewed and updated, and are written using the clear and definitive style you've come to expect from OSR over the years.
Check out The OSR Learning Library at: https://www.osr.com/osr-learning-library/
Using ZwCreateFile + ZwDeviceIoControl, I was able to send "EC" Command with "IOCTL_SCSI_PASS_THROUGH_DIRECT" from kernel mode driver, and recieve information from SCSI devices like USBs.
and searching around I've seen mutliple people who state that "IOCTL_ATA_PASS_THROUGH_DIRECT" doesn't work from kernel mode driver sending IOCTLs,
is it possible to send ATA commands from kernel driver at all? if so how?
Upcoming OSR Seminars | ||
---|---|---|
OSR has suspended in-person seminars due to the Covid-19 outbreak. But, don't miss your training! Attend via the internet instead! | ||
Internals & Software Drivers | 7 February 2022 | Live, Online |
Kernel Debugging | 21 March 2022 | Live, Online |
Developing Minifilters | 23 May 2022 | Live, Online |
Writing WDF Drivers | 12 September 2022 | Live, Online |
Comments
IOCTL_ATA_PASS_THROUGH_DIRECT can bsod if sent from kernel mode due to the buggy MS implementation. Best to stick to IOCTL_ATA_PASS_THROUGH from kernel mode.
SCSI and USB don't communicate using ATA protocol so sending native ATA to them using ATA pass through won't work. I am guessing your EC command was sent using IOCTL_SCSI_PASS_THROUGH_DIRECT, wrapped in a pass through CDB, and handled by the firmware of certain drives that support it.
Should that be kernel mode or user mode?