1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309
|
{-# LANGUAGE LambdaCase #-}
{-# LANGUAGE ViewPatterns #-}
{-# LANGUAGE ScopedTypeVariables #-}
{-# LANGUAGE RankNTypes #-}
{-# OPTIONS_HADDOCK hide #-}
{-# OPTIONS_GHC -Wno-unrecognised-pragmas #-}
{-# HLINT ignore "Use for_" #-}
{-# HLINT ignore "Avoid restricted function" #-}
-----------------------------------------------------------------------------
-- |
-- Module : Codec.Archive.Tar
-- Copyright : (c) 2007 Bjorn Bringert,
-- 2008 Andrea Vezzosi,
-- 2008-2009, 2012, 2016 Duncan Coutts
-- License : BSD3
--
-- Maintainer : duncan@community.haskell.org
-- Portability : portable
--
-----------------------------------------------------------------------------
module Codec.Archive.Tar.Unpack (
unpack,
unpackAndCheck,
) where
import Codec.Archive.Tar.Types
import Codec.Archive.Tar.Check
import Codec.Archive.Tar.LongNames
import Codec.Archive.Tar.PackAscii (filePathToOsPath)
import Data.Bits
( testBit )
import Data.List (partition, nub)
import Data.Maybe ( fromMaybe )
import qualified Data.ByteString.Char8 as Char8
import qualified Data.ByteString.Lazy as BS
import Prelude hiding (writeFile)
import System.File.OsPath
import System.OsPath
( OsPath, (</>) )
import qualified System.OsPath as FilePath.Native
( takeDirectory )
import System.Directory.OsPath
( createDirectoryIfMissing,
copyFile,
setPermissions,
listDirectory,
doesDirectoryExist,
createDirectoryLink,
createFileLink,
setModificationTime,
emptyPermissions,
setOwnerReadable,
setOwnerWritable,
setOwnerExecutable,
setOwnerSearchable )
import Control.Exception
( Exception, throwIO, handle )
import System.IO ( stderr, hPutStr )
import System.IO.Error ( ioeGetErrorType, isPermissionError )
import GHC.IO (unsafeInterleaveIO)
import Data.Foldable (traverse_)
import GHC.IO.Exception (IOErrorType(InappropriateType, IllegalOperation, PermissionDenied, InvalidArgument))
import Data.Time.Clock.POSIX
( posixSecondsToUTCTime )
import Control.Exception as Exception
( catch, SomeException(..) )
-- | Create local files and directories based on the entries of a tar archive.
--
-- This is a portable implementation of unpacking suitable for portable
-- archives. It handles 'NormalFile' and 'Directory' entries and has simulated
-- support for 'SymbolicLink' and 'HardLink' entries. Links are implemented by
-- copying the target file. This therefore works on Windows as well as Unix.
-- All other entry types are ignored, that is they are not unpacked and no
-- exception is raised.
--
-- If the 'Entries' ends in an error then it is raised an an exception. Any
-- files or directories that have been unpacked before the error was
-- encountered will not be deleted. For this reason you may want to unpack
-- into an empty directory so that you can easily clean up if unpacking fails
-- part-way.
--
-- On its own, this function only checks for security (using 'checkEntrySecurity').
-- Use 'unpackAndCheck' if you need more checks.
--
unpack
:: Exception e
=> FilePath
-- ^ Base directory
-> Entries e
-- ^ Entries to upack
-> IO ()
unpack = unpackAndCheck (fmap SomeException . checkEntrySecurity)
-- | Like 'Codec.Archive.Tar.unpack', but run custom sanity/security checks instead of 'checkEntrySecurity'.
-- For example,
--
-- > import Control.Exception (SomeException(..))
-- > import Control.Applicative ((<|>))
-- >
-- > unpackAndCheck (\x -> SomeException <$> checkEntryPortability x
-- > <|> SomeException <$> checkEntrySecurity x) dir entries
--
-- @since 0.6.0.0
unpackAndCheck
:: Exception e
=> (GenEntry FilePath FilePath -> Maybe SomeException)
-- ^ Checks to run on each entry before unpacking
-> FilePath
-- ^ Base directory
-> Entries e
-- ^ Entries to upack
-> IO ()
unpackAndCheck secCB (filePathToOsPath -> baseDir) entries = do
let resolvedEntries = decodeLongNames entries
uEntries <- unpackEntries [] resolvedEntries
let (hardlinks, symlinks) = partition (\(_, _, x) -> x) uEntries
-- handle hardlinks first, in case a symlink points to it
handleHardLinks hardlinks
handleSymlinks symlinks
where
-- We're relying here on 'secCB' to make sure we're not scribbling
-- files all over the place.
unpackEntries :: Exception e
=> [(OsPath, OsPath, Bool)]
-- ^ links (path, link, isHardLink)
-> GenEntries FilePath FilePath (Either e DecodeLongNamesError)
-- ^ entries
-> IO [(OsPath, OsPath, Bool)]
unpackEntries _ (Fail err) = either throwIO throwIO err
unpackEntries links Done = return links
unpackEntries links (Next entry es) = do
case secCB entry of
Nothing -> pure ()
Just e -> throwIO e
case entryContent entry of
NormalFile file _ -> do
extractFile (entryPermissions entry) (entryTarPath entry) file (entryTime entry)
unpackEntries links es
Directory -> do
extractDir (entryTarPath entry) (entryTime entry)
unpackEntries links es
HardLink link -> do
(unpackEntries $! saveLink True (entryTarPath entry) link links) es
SymbolicLink link -> do
(unpackEntries $! saveLink False (entryTarPath entry) link links) es
OtherEntryType{} ->
-- the spec demands that we attempt to extract as normal file on unknown typecode,
-- but we just skip it
unpackEntries links es
CharacterDevice{} -> unpackEntries links es
BlockDevice{} -> unpackEntries links es
NamedPipe -> unpackEntries links es
extractFile :: Permissions -> FilePath -> BS.ByteString -> EpochTime -> IO ()
extractFile permissions (filePathToNativeOsPath -> path) content mtime = do
-- Note that tar archives do not make sure each directory is created
-- before files they contain, indeed we may have to create several
-- levels of directory.
createDirectoryIfMissing True absDir
writeFile absPath content
setOwnerPermissions absPath permissions
setModTime absPath mtime
where
absDir = baseDir </> FilePath.Native.takeDirectory path
absPath = baseDir </> path
extractDir :: FilePath -> EpochTime -> IO ()
extractDir (filePathToNativeOsPath -> path) mtime = do
createDirectoryIfMissing True absPath
setModTime absPath mtime
where
absPath = baseDir </> path
saveLink
:: t
-> FilePath
-> FilePath
-> [(OsPath, OsPath, t)]
-> [(OsPath, OsPath, t)]
saveLink isHardLink (filePathToNativeOsPath -> path) (filePathToNativeOsPath -> link) =
path `seq` link `seq` ((path, link, isHardLink) :)
-- for hardlinks, we just copy
handleHardLinks :: [(OsPath, OsPath, t)] -> IO ()
handleHardLinks = mapM_ $ \(relPath, relLinkTarget, _) ->
let absPath = baseDir </> relPath
-- hard links link targets are always "absolute" paths in
-- the context of the tar root
absTarget = baseDir </> relLinkTarget
-- we don't expect races here, since we should be the
-- only process unpacking the tar archive and writing to
-- the destination
in doesDirectoryExist absTarget >>= \case
True -> copyDirectoryRecursive absTarget absPath
False -> copyFile absTarget absPath
-- For symlinks, we first try to recreate them and if that fails
-- with 'IllegalOperation', 'PermissionDenied' or 'InvalidArgument',
-- we fall back to copying.
-- This error handling isn't too fine grained and maybe should be
-- platform specific, but this way it might catch erros on unix even on
-- FAT32 fuse mounted volumes.
handleSymlinks :: [(OsPath, OsPath, c)] -> IO ()
handleSymlinks = mapM_ $ \(relPath, relLinkTarget, _) ->
let absPath = baseDir </> relPath
-- hard links link targets are always "absolute" paths in
-- the context of the tar root
absTarget = FilePath.Native.takeDirectory absPath </> relLinkTarget
-- we don't expect races here, since we should be the
-- only process unpacking the tar archive and writing to
-- the destination
in doesDirectoryExist absTarget >>= \case
True -> handleSymlinkError (copyDirectoryRecursive absTarget absPath)
$ createDirectoryLink relLinkTarget absPath
False -> handleSymlinkError (copyFile absTarget absPath)
$ createFileLink relLinkTarget absPath
where
handleSymlinkError action =
handle (\e -> if ioeGetErrorType e `elem` [IllegalOperation
,PermissionDenied
,InvalidArgument]
then action
else throwIO e
)
filePathToNativeOsPath :: FilePath -> OsPath
filePathToNativeOsPath = filePathToOsPath . fromFilePathToNative
-- | Recursively copy the contents of one directory to another path.
--
-- This is a rip-off of Cabal library.
copyDirectoryRecursive :: OsPath -> OsPath -> IO ()
copyDirectoryRecursive srcDir destDir = do
srcFiles <- getDirectoryContentsRecursive srcDir
copyFilesWith copyFile destDir [ (srcDir, f)
| f <- srcFiles ]
where
-- | Common implementation of 'copyFiles', 'installOrdinaryFiles',
-- 'installExecutableFiles' and 'installMaybeExecutableFiles'.
copyFilesWith :: (OsPath -> OsPath -> IO ())
-> OsPath -> [(OsPath, OsPath)] -> IO ()
copyFilesWith doCopy targetDir srcFiles = do
-- Create parent directories for everything
let dirs = map (targetDir </>) . nub . map (FilePath.Native.takeDirectory . snd) $ srcFiles
traverse_ (createDirectoryIfMissing True) dirs
-- Copy all the files
sequence_ [ let src = srcBase </> srcFile
dest = targetDir </> srcFile
in doCopy src dest
| (srcBase, srcFile) <- srcFiles ]
-- | List all the files in a directory and all subdirectories.
--
-- The order places files in sub-directories after all the files in their
-- parent directories. The list is generated lazily so is not well defined if
-- the source directory structure changes before the list is used.
--
getDirectoryContentsRecursive :: OsPath -> IO [OsPath]
getDirectoryContentsRecursive topdir = recurseDirectories [mempty]
where
recurseDirectories :: [OsPath] -> IO [OsPath]
recurseDirectories [] = return []
recurseDirectories (dir:dirs) = unsafeInterleaveIO $ do
(files, dirs') <- collect [] [] =<< listDirectory (topdir </> dir)
files' <- recurseDirectories (dirs' ++ dirs)
return (files ++ files')
where
collect files dirs' [] = return (reverse files
,reverse dirs')
collect files dirs' (entry:entries) = do
let dirEntry = dir </> entry
isDirectory <- doesDirectoryExist (topdir </> dirEntry)
if isDirectory
then collect files (dirEntry:dirs') entries
else collect (dirEntry:files) dirs' entries
setModTime :: OsPath -> EpochTime -> IO ()
setModTime path t =
setModificationTime path (posixSecondsToUTCTime (fromIntegral t))
`Exception.catch` \e -> case ioeGetErrorType e of
PermissionDenied -> return ()
-- On FAT32 file system setting time prior to DOS Epoch (1980-01-01)
-- throws InvalidArgument, https://github.com/haskell/tar/issues/37
InvalidArgument -> return ()
_ -> throwIO e
setOwnerPermissions :: OsPath -> Permissions -> IO ()
setOwnerPermissions path permissions =
setPermissions path ownerPermissions
where
-- | Info on Permission bits can be found here:
-- https://www.gnu.org/software/libc/manual/html_node/Permission-Bits.html
ownerPermissions =
setOwnerReadable (testBit permissions 8) $
setOwnerWritable (testBit permissions 7) $
setOwnerExecutable (testBit permissions 6) $
setOwnerSearchable (testBit permissions 6)
emptyPermissions
|