[commit: ghc] master: Fix decomposition error on Windows (3c6b2fc)

git at git.haskell.org git at git.haskell.org
Tue Aug 29 22:00:03 UTC 2017


Repository : ssh://git@git.haskell.org/ghc

On branch  : master
Link       : http://ghc.haskell.org/trac/ghc/changeset/3c6b2fc3b5ca11a5410405664e4640767ef941dd/ghc

>---------------------------------------------------------------

commit 3c6b2fc3b5ca11a5410405664e4640767ef941dd
Author: Tamar Christina <tamar at zhox.com>
Date:   Tue Aug 29 22:59:38 2017 +0100

    Fix decomposition error on Windows
    
    Summary:
    Fix the path decomposition error that occurs when the Symlink resolver
    fails. `Win32.try` throws an exception, so catch it and assume the path
    isn't a symlink to use the old behavior.
    
    Test Plan: ./validate
    
    Reviewers: austin, bgamari
    
    Reviewed By: bgamari
    
    Subscribers: rwbarton, thomie
    
    GHC Trac Issues: #14159
    
    Differential Revision: https://phabricator.haskell.org/D3891


>---------------------------------------------------------------

3c6b2fc3b5ca11a5410405664e4640767ef941dd
 compiler/main/SysTools.hs | 13 +++++++++++--
 1 file changed, 11 insertions(+), 2 deletions(-)

diff --git a/compiler/main/SysTools.hs b/compiler/main/SysTools.hs
index 57d77a3..b48bbf4 100644
--- a/compiler/main/SysTools.hs
+++ b/compiler/main/SysTools.hs
@@ -1340,9 +1340,18 @@ getFinalPath name = do
                                                      (fILE_ATTRIBUTE_NORMAL .|. fILE_FLAG_BACKUP_SEMANTICS)
                                                      Nothing
                       let fnPtr = makeGetFinalPathNameByHandle $ castPtrToFunPtr addr
-                      path    <- Win32.try "GetFinalPathName"
+                      -- First try to resolve the path to get the actual path
+                      -- of any symlinks or other file system redirections that
+                      -- may be in place. However this function can fail, and in
+                      -- the event it does fail, we need to try using the
+                      -- original path and see if we can decompose that.
+                      -- If the call fails Win32.try will raise an exception
+                      -- that needs to be caught. See #14159
+                      path    <- (Win32.try "GetFinalPathName"
                                     (\buf len -> fnPtr handle buf len 0) 512
-                                    `finally` closeHandle handle
+                                    `finally` closeHandle handle)
+                                `catch`
+                                 (\(_ :: IOException) -> return name)
                       return $ Just path
 
 type GetFinalPath = HANDLE -> LPTSTR -> DWORD -> DWORD -> IO DWORD



More information about the ghc-commits mailing list