This is the mail archive of the cygwin-patches mailing list for the Cygwin project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: Patch to enable proper handling of Win32 //?/GLOBALROOT/device paths


On Oct  6 15:32, d3@mutable.net wrote:
> This patch is to enable Win32 device paths in the form of:
> 
> //?/GLOBALROOT/Device/Harddisk0/Partition1/
> //?/GLOBALROOT/Device/Harddiskvolume1/
> //?/GLOBALROOT/Device/HarddiskVolumeShadowCopy1/
> 
> Etc... 
> 
> This patch to cygwin enables tools like rsync to access Win32 volume
> shadow copies that can be created with Win32 tools like vshadow.exe so
> that you can access open files, SQL, and Exchange databases.
> 
> A note about the change in fhandle_disk_file.cc: The patch enforces
> Win32 style paths (i.e. backslashes) because the NT kernal functions do
> not like mixed paths when accessing \\?\GLOBALROOT. They will only
> accept backslashes.
> 
> Here is a rsync test I have been successfully using with this patch
> applied:
> 
> rsync -av --modify-window=2
> //?/globalroot/device/harddiskvolume1/testfiles/ server::test/testfiles/

Sorry, but I have a hard time to see how accessing GLOBALROOT directly
would be good for us.  Usually we don't want Cygwin to make more
concessions related to Windows or NT paths than already necessary.
These paths should rather only be used under the hood and Cygwin is
supposed to provide a POSIXy way to access stuff. 

So, what should the patch accomplish?  Access to harddisks and
partitions is already possible using POSIX paths, access to files or
directories, naturally, too.  One new thing here is that you can access
the whole NT namespace, which is not very useful, unless you allow
qualified access.  This in turn requires fhandlers which know the
devices they are supposed to access, as well as matching POSIX paths.
Raw access to NT devices is not what Cygwin is designed for(*).

The really interesting new thing would be the ability to access volume
shadow copies.  Opening up GLOBALROOT access just to access shadow
copies looks rather wrong to me.  Rather there should be a useful
mapping from the NT paths to POSIX-like paths.  I don't know off-hand
how these paths would look like(**), though.  I assume the
implementation could look very similar to the implementation of the
cygdrive fhandler(***).


Corinna


(*) Though in the long run it could be funny to allow something similar
    to generic SCSI access (/dev/sgX).  For instance, the /Device directory
    in the NT namespace could be mapped to /dev/nt/ or something.

(**) Is there some shadow copy concept in the POSIX world somewhere?  Does
    anybody know about this and how device names are constructed for this
    access?

(***) Please don't forget to sign and send the copyright assignment form
    when providing longer patches.  See http://cygwin.com/contrib.html

-- 
Corinna Vinschen                  Please, send mails regarding Cygwin to
Cygwin Project Co-Leader          cygwin AT cygwin DOT com
Red Hat


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]