-
Notifications
You must be signed in to change notification settings - Fork 3
Description
The problem
It's not possible to run any program from in the same process where the VFS is running. It doesn't matter what kind of process creation is used (CreateProcess, ShellExecute, etc). An attempt to do so causes VFS unmounting. In case of CreateProcess the functions fails with ERROR_INVALID_PARAMETER.
Environment
- Version: any version.
- Operation system: Windows 7 x64 (should occur on any system)
Details
This is somehow related to security functions KxVFSBase::OnGetFileSecurity and KxVFSBase::OnSetFileSecurity. If they are implemented as in Dokany mirror sample it's not possible to run any process at all no matter in which process it's created. If these functions returns STATUS_NOT_IMPLEMENTED then process creation is possible, but only from another process.
Related issue in Dokany repository: dokan-dev/dokany#650
Workaround
Use proxy process to run VFS and some kind of interprocess communication (IPC) to control VFS.