27

GitHub - billziss-gh/winspd: Windows Storage Proxy Driver - User mode disk stora...

 5 years ago
source link: https://github.com/billziss-gh/winspd
Go to the source link to view the article. You can view the picture content, updated content and better typesetting reading experience. If the link is broken, please click the button below to view the snapshot at that time.

README.md

WinSpd · Windows Storage Proxy Driver

Download
68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f72656c656173652f62696c6c7a6973732d67682f77696e7370642f616c6c2e7376673f6c6162656c3d6c617465737426636f6c6f72423d653532653462267374796c653d666f722d7468652d6261646765

68747470733a2f2f696d672e736869656c64732e696f2f6170707665796f722f63692f62696c6c7a6973732d67682f77696e7370642e737667

WinSpd enables the creation of storage units ("SCSI disks") in user mode (i.e. without writing any kernel mode code). Such storage units are created and served by user mode storage devices (i.e. user mode processes) and are added to the Windows OS storage stack. They appear to Windows as real disks that can be formatted and accessed via a file system such as NTFS.

cap.gif

User Mode Storage Devices

A user mode storage device is a user mode process that can create and serve storage units. As storage unit is a SCSI "direct-access block device" (as per the definition in the SCSI SBC standard) or more commonly referred to as a "SCSI disk". It is used to store data in logical blocks; each block contains the same amount of data (the Block Length) and has a Logical Block Address (LBA), which is a 64-bit number in a single contiguous address space. In particular WinSpd (and the SCSI standard) do not assume the traditional geometry of cylinder-head-sector (CHS) for how blocks are laid out.

Storage units support two primary operations: read and write, and two secondary operations: flush and unmap:

  • Read: read blocks at the specified LBA.
  • Write: write blocks at the specified LBA.
  • Flush: flush any cached block data at the specified LBA.
  • Unmap: unmap (deallocate) blocks at the specified LBA. This is like the well known TRIM command.

For a full tutorial on creating a user mode storage device see the Tutorial.

Design

WinSpd consists of a number of software components with different responsibilities:

  • The core components are a kernel driver (implemented as a StorPort virtual miniport) and a user mode DLL. User mode storage devices use the DLL to communicate with the driver via special IOCTL's.
  • A launcher service that is used to launch and control user mode storage devices.
  • A shell extension that is used to implement the "mount" and "eject" functionalities available via the Windows Explorer and Shell.

Archictecture diagram

The WinSpd virtual miniport implements the following SCSI commands:

  • REPORT LUNS
  • TEST UNIT READY
  • INQUIRY: Standard, Supported Pages VPD, Serial Number VPD, Device Identifiers VPD, Block Limits VPD, Logical Block Provisioning VPD
  • MODE SENSE(6), MODE SENSE(10): All Pages, Mode Caching Page
  • READ CAPACITY(10), READ CAPACITY(16)
  • READ(6), READ(10), READ(12), READ(16)
  • WRITE(6), WRITE(10), WRITE(12), WRITE(16)
  • SYNCHRONIZE CACHE(10), SYNCHRONIZE CACHE(16)
  • UNMAP

Project Organization

The project source code is organized as follows:

  • ?build/VStudio: WinSpd solution and project files.
  • ?ext: External dependencies.
    • ?ext/tlib: A small test library originally from the secfs (Secure Cloud File System) project.
  • ?inc: Public headers.
  • ?src: WinSpd source code.
    • ?src/devsetup: Source code to the devsetup utility. It is used to add or remove the WinSpd device driver from the system.
    • ?src/dll: Source code to the WinSpd DLL. It is used by user mode storage devices to communicate with the WinSpd device driver.
    • ?src/dotnet: Source code to the .NET layer.
    • ?src/launcher: Source code to the launcher service and the launchctl utility. The launcher service is used to launch and control user mode storage devices.
    • ?src/scsitool: Source code to the scsitool command line utility.
    • ?src/shellex: Source code to the WinSpd shell extension. It is used to implement the "mount" and "eject" functionalities available via the Windows Explorer and the Shell.
    • ?src/stgtest: Source code to the stgtest storage testing tool.
    • ?src/sys: Source code to the WinSpd kernel driver.
  • ?tst: Source code to example user mode storage devices and test tools.
  • ?tools: Various tools for building and testing WinSpd.

License

WinSpd is available under the GPLv3 license with a special exception for Free/Libre and Open Source Software. A commercial license is also available. Please contact Bill Zissimopoulos <billziss at navimatics.com> for more details.


About Joyk


Aggregate valuable and interesting links.
Joyk means Joy of geeK