winfsp / winspd

Windows Storage Proxy Driver - User mode disk storage

Home Page:https://winfsp.dev

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

WinSpd Β· Windows Storage Proxy Driver

Download




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.

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.
    • πŸ“ inc/winspd: Public headers for the WinSpd API.
  • πŸ“ 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

Windows Storage Proxy Driver - User mode disk storage

https://winfsp.dev

License:Other


Languages

Language:C 76.2%Language:C# 9.8%Language:C++ 9.2%Language:Batchfile 4.3%Language:Makefile 0.4%Language:PowerShell 0.2%