{-# LINE 1 "libraries/unix/System/Posix/Files.hsc" #-} {-# LINE 2 "libraries/unix/System/Posix/Files.hsc" #-} {-# LANGUAGE Safe #-} {-# LINE 6 "libraries/unix/System/Posix/Files.hsc" #-} {-# LANGUAGE CApiFFI #-} ----------------------------------------------------------------------------- -- | -- Module : System.Posix.Files -- Copyright : (c) The University of Glasgow 2002 -- License : BSD-style (see the file libraries/base/LICENSE) -- -- Maintainer : [email protected] -- Stability : provisional -- Portability : non-portable (requires POSIX) -- -- Functions defined by the POSIX standards for manipulating and querying the -- file system. Names of underlying POSIX functions are indicated whenever -- possible. A more complete documentation of the POSIX functions together -- with a more detailed description of different error conditions are usually -- available in the system's manual pages or from -- <http://www.unix.org/version3/online.html> (free registration required). -- -- When a function that calls an underlying POSIX function fails, the errno -- code is converted to an 'IOError' using 'Foreign.C.Error.errnoToIOError'. -- For a list of which errno codes may be generated, consult the POSIX -- documentation for the underlying function. -- ----------------------------------------------------------------------------- module System.Posix.Files ( -- * File modes -- FileMode exported by System.Posix.Types unionFileModes, intersectFileModes, nullFileMode, ownerReadMode, ownerWriteMode, ownerExecuteMode, ownerModes, groupReadMode, groupWriteMode, groupExecuteMode, groupModes, otherReadMode, otherWriteMode, otherExecuteMode, otherModes, setUserIDMode, setGroupIDMode, stdFileMode, accessModes, fileTypeModes, blockSpecialMode, characterSpecialMode, namedPipeMode, regularFileMode, directoryMode, symbolicLinkMode, socketMode, -- ** Setting file modes setFileMode, setFdMode, setFileCreationMask, -- ** Checking file existence and permissions fileAccess, fileExist, -- * File status FileStatus, -- ** Obtaining file status getFileStatus, getFdStatus, getSymbolicLinkStatus, -- ** Querying file status deviceID, fileID, fileMode, linkCount, fileOwner, fileGroup, specialDeviceID, fileSize, accessTime, modificationTime, statusChangeTime, accessTimeHiRes, modificationTimeHiRes, statusChangeTimeHiRes, isBlockDevice, isCharacterDevice, isNamedPipe, isRegularFile, isDirectory, isSymbolicLink, isSocket, -- * Creation createNamedPipe, createDevice, -- * Hard links createLink, removeLink, -- * Symbolic links createSymbolicLink, readSymbolicLink, -- * Renaming files rename, -- * Changing file ownership setOwnerAndGroup, setFdOwnerAndGroup, {-# LINE 82 "libraries/unix/System/Posix/Files.hsc" #-} setSymbolicLinkOwnerAndGroup, {-# LINE 84 "libraries/unix/System/Posix/Files.hsc" #-} -- * Changing file timestamps setFileTimes, setFileTimesHiRes, setFdTimesHiRes, setSymbolicLinkTimesHiRes, touchFile, touchFd, touchSymbolicLink, -- * Setting file sizes setFileSize, setFdSize, -- * Find system-specific limits for a file PathVar(..), getPathVar, getFdPathVar, ) where import Foreign import Foreign.C import System.Posix.Types import System.Posix.Files.Common import System.Posix.Error import System.Posix.Internals import Data.Time.Clock.POSIX (POSIXTime) -- ----------------------------------------------------------------------------- -- chmod() -- | @setFileMode path [email protected] changes permission of the file given by @[email protected] -- to @[email protected] This operation may fail with 'throwErrnoPathIfMinus1_' if @[email protected] -- doesn't exist or if the effective user ID of the current process is not that -- of the file's owner. -- -- Note: calls @[email protected] setFileMode :: FilePath -> FileMode -> IO () setFileMode name m = withFilePath name $ \s -> do throwErrnoPathIfMinus1_ "setFileMode" name (c_chmod s m) -- ----------------------------------------------------------------------------- -- access() -- | @fileAccess name read write [email protected] checks if the file (or other file system -- object) @[email protected] can be accessed for reading, writing and\/or executing. To -- check a permission set the corresponding argument to 'True'. -- -- Note: calls @[email protected] fileAccess :: FilePath -> Bool -> Bool -> Bool -> IO Bool fileAccess name readOK writeOK execOK = access name flags where flags = read_f .|. write_f .|. exec_f read_f = if readOK then (4) else 0 {-# LINE 135 "libraries/unix/System/Posix/Files.hsc" #-} write_f = if writeOK then (2) else 0 {-# LINE 136 "libraries/unix/System/Posix/Files.hsc" #-} exec_f = if execOK then (1) else 0 {-# LINE 137 "libraries/unix/System/Posix/Files.hsc" #-} -- | Checks for the existence of the file. -- -- Note: calls @[email protected] fileExist :: FilePath -> IO Bool fileExist name = withFilePath name $ \s -> do r <- c_access s (0) {-# LINE 145 "libraries/unix/System/Posix/Files.hsc" #-} if (r == 0) then return True else do err <- getErrno if (err == eNOENT) then return False else throwErrnoPath "fileExist" name access :: FilePath -> CMode -> IO Bool access name flags = withFilePath name $ \s -> do r <- c_access s (fromIntegral flags) if (r == 0) then return True else do err <- getErrno if (err == eACCES || err == eROFS || err == eTXTBSY || err == ePERM) then return False else throwErrnoPath "fileAccess" name -- | @getFileStatus [email protected] calls gets the @[email protected] information (user ID, -- size, access times, etc.) for the file @[email protected] -- -- Note: calls @[email protected] getFileStatus :: FilePath -> IO FileStatus getFileStatus path = do fp <- mallocForeignPtrBytes (144) {-# LINE 172 "libraries/unix/System/Posix/Files.hsc" #-} withForeignPtr fp $ \p -> withFilePath path $ \s -> throwErrnoPathIfMinus1Retry_ "getFileStatus" path (c_stat s p) return (FileStatus fp) -- | Acts as 'getFileStatus' except when the 'FilePath' refers to a symbolic -- link. In that case the @[email protected] information of the symbolic link itself -- is returned instead of that of the file it points to. -- -- Note: calls @[email protected] getSymbolicLinkStatus :: FilePath -> IO FileStatus getSymbolicLinkStatus path = do fp <- mallocForeignPtrBytes (144) {-# LINE 185 "libraries/unix/System/Posix/Files.hsc" #-} withForeignPtr fp $ \p -> withFilePath path $ \s -> throwErrnoPathIfMinus1_ "getSymbolicLinkStatus" path (c_lstat s p) return (FileStatus fp) foreign import capi unsafe "HsUnix.h lstat" c_lstat :: CString -> Ptr CStat -> IO CInt -- | @createNamedPipe fifo [email protected] -- creates a new named pipe, @[email protected], with permissions based on -- @[email protected] May fail with 'throwErrnoPathIfMinus1_' if a file named @[email protected] -- already exists or if the effective user ID of the current process doesn't -- have permission to create the pipe. -- -- Note: calls @[email protected] createNamedPipe :: FilePath -> FileMode -> IO () createNamedPipe name mode = do withFilePath name $ \s -> throwErrnoPathIfMinus1_ "createNamedPipe" name (c_mkfifo s mode) -- | @createDevice path mode [email protected] creates either a regular or a special file -- depending on the value of @[email protected] (and @[email protected]). @[email protected] will normally be either -- 'blockSpecialMode' or 'characterSpecialMode'. May fail with -- 'throwErrnoPathIfMinus1_' if a file named @[email protected] already exists or if the -- effective user ID of the current process doesn't have permission to create -- the file. -- -- Note: calls @[email protected] createDevice :: FilePath -> FileMode -> DeviceID -> IO () createDevice path mode dev = withFilePath path $ \s -> throwErrnoPathIfMinus1_ "createDevice" path (c_mknod s mode dev) foreign import capi unsafe "HsUnix.h mknod" c_mknod :: CString -> CMode -> CDev -> IO CInt -- ----------------------------------------------------------------------------- -- Hard links -- | @createLink old [email protected] creates a new path, @[email protected], linked to an existing file, -- @[email protected] -- -- Note: calls @[email protected] createLink :: FilePath -> FilePath -> IO () createLink name1 name2 = withFilePath name1 $ \s1 -> withFilePath name2 $ \s2 -> throwErrnoPathIfMinus1_ "createLink" name1 (c_link s1 s2) -- | @removeLink [email protected] removes the link named @[email protected] -- -- Note: calls @[email protected] removeLink :: FilePath -> IO () removeLink name = withFilePath name $ \s -> throwErrnoPathIfMinus1_ "removeLink" name (c_unlink s) -- ----------------------------------------------------------------------------- -- Symbolic Links -- | @createSymbolicLink file1 [email protected] creates a symbolic link named @[email protected] -- which points to the file @[email protected] -- -- Symbolic links are interpreted at run-time as if the contents of the link -- had been substituted into the path being followed to find a file or directory. -- -- Note: calls @[email protected] createSymbolicLink :: FilePath -> FilePath -> IO () createSymbolicLink file1 file2 = withFilePath file1 $ \s1 -> withFilePath file2 $ \s2 -> throwErrnoPathIfMinus1_ "createSymbolicLink" file2 (c_symlink s1 s2) foreign import ccall unsafe "symlink" c_symlink :: CString -> CString -> IO CInt -- ToDo: should really use SYMLINK_MAX, but not everyone supports it yet, -- and it seems that the intention is that SYMLINK_MAX is no larger than -- PATH_MAX. {-# LINE 269 "libraries/unix/System/Posix/Files.hsc" #-} -- | Reads the @[email protected] pointed to by the symbolic link and returns it. -- -- Note: calls @[email protected] readSymbolicLink :: FilePath -> IO FilePath readSymbolicLink file = allocaArray0 (4096) $ \buf -> do {-# LINE 276 "libraries/unix/System/Posix/Files.hsc" #-} withFilePath file $ \s -> do len <- throwErrnoPathIfMinus1 "readSymbolicLink" file $ c_readlink s buf (4096) {-# LINE 279 "libraries/unix/System/Posix/Files.hsc" #-} peekFilePathLen (buf,fromIntegral len) foreign import ccall unsafe "readlink" c_readlink :: CString -> CString -> CSize -> IO CInt -- ----------------------------------------------------------------------------- -- Renaming files -- | @rename old [email protected] renames a file or directory from @[email protected] to @[email protected] -- -- Note: calls @[email protected] rename :: FilePath -> FilePath -> IO () rename name1 name2 = withFilePath name1 $ \s1 -> withFilePath name2 $ \s2 -> throwErrnoPathIfMinus1_ "rename" name1 (c_rename s1 s2) foreign import ccall unsafe "rename" c_rename :: CString -> CString -> IO CInt -- ----------------------------------------------------------------------------- -- chown() -- | @setOwnerAndGroup path uid [email protected] changes the owner and group of @[email protected] to -- @[email protected] and @[email protected], respectively. -- -- If @[email protected] or @[email protected] is specified as -1, then that ID is not changed. -- -- Note: calls @[email protected] setOwnerAndGroup :: FilePath -> UserID -> GroupID -> IO () setOwnerAndGroup name uid gid = do withFilePath name $ \s -> throwErrnoPathIfMinus1_ "setOwnerAndGroup" name (c_chown s uid gid) foreign import ccall unsafe "chown" c_chown :: CString -> CUid -> CGid -> IO CInt {-# LINE 317 "libraries/unix/System/Posix/Files.hsc" #-} -- | Acts as 'setOwnerAndGroup' but does not follow symlinks (and thus -- changes permissions on the link itself). -- -- Note: calls @[email protected] setSymbolicLinkOwnerAndGroup :: FilePath -> UserID -> GroupID -> IO () setSymbolicLinkOwnerAndGroup name uid gid = do withFilePath name $ \s -> throwErrnoPathIfMinus1_ "setSymbolicLinkOwnerAndGroup" name (c_lchown s uid gid) foreign import ccall unsafe "lchown" c_lchown :: CString -> CUid -> CGid -> IO CInt {-# LINE 330 "libraries/unix/System/Posix/Files.hsc" #-} -- ----------------------------------------------------------------------------- -- Setting file times -- | @setFileTimes path atime [email protected] sets the access and modification times -- associated with file @[email protected] to @[email protected] and @[email protected], respectively. -- -- Note: calls @[email protected] setFileTimes :: FilePath -> EpochTime -> EpochTime -> IO () setFileTimes name atime mtime = do withFilePath name $ \s -> allocaBytes (16) $ \p -> do {-# LINE 342 "libraries/unix/System/Posix/Files.hsc" #-} ((\hsc_ptr -> pokeByteOff hsc_ptr 0)) p atime {-# LINE 343 "libraries/unix/System/Posix/Files.hsc" #-} ((\hsc_ptr -> pokeByteOff hsc_ptr 8)) p mtime {-# LINE 344 "libraries/unix/System/Posix/Files.hsc" #-} throwErrnoPathIfMinus1_ "setFileTimes" name (c_utime s p) -- | Like 'setFileTimes' but timestamps can have sub-second resolution. -- -- Note: calls @[email protected] or @[email protected] -- -- @since 2.7.0.0 setFileTimesHiRes :: FilePath -> POSIXTime -> POSIXTime -> IO () {-# LINE 353 "libraries/unix/System/Posix/Files.hsc" #-} setFileTimesHiRes name atime mtime = withFilePath name $ \s -> withArray [toCTimeSpec atime, toCTimeSpec mtime] $ \times -> throwErrnoPathIfMinus1_ "setFileTimesHiRes" name $ c_utimensat (-100) s times 0 {-# LINE 358 "libraries/unix/System/Posix/Files.hsc" #-} {-# LINE 364 "libraries/unix/System/Posix/Files.hsc" #-} -- | Like 'setFileTimesHiRes' but does not follow symbolic links. -- This operation is not supported on all platforms. On these platforms, -- this function will raise an exception. -- -- Note: calls @[email protected] or @[email protected] -- -- @since 2.7.0.0 setSymbolicLinkTimesHiRes :: FilePath -> POSIXTime -> POSIXTime -> IO () {-# LINE 374 "libraries/unix/System/Posix/Files.hsc" #-} setSymbolicLinkTimesHiRes name atime mtime = withFilePath name $ \s -> withArray [toCTimeSpec atime, toCTimeSpec mtime] $ \times -> throwErrnoPathIfMinus1_ "setSymbolicLinkTimesHiRes" name $ c_utimensat (-100) s times (256) {-# LINE 379 "libraries/unix/System/Posix/Files.hsc" #-} {-# LINE 389 "libraries/unix/System/Posix/Files.hsc" #-} -- | @touchFile [email protected] sets the access and modification times associated with -- file @[email protected] to the current time. -- -- Note: calls @[email protected] touchFile :: FilePath -> IO () touchFile name = do withFilePath name $ \s -> throwErrnoPathIfMinus1_ "touchFile" name (c_utime s nullPtr) -- | Like 'touchFile' but does not follow symbolic links. -- This operation is not supported on all platforms. On these platforms, -- this function will raise an exception. -- -- Note: calls @[email protected] -- -- @since 2.7.0.0 touchSymbolicLink :: FilePath -> IO () {-# LINE 408 "libraries/unix/System/Posix/Files.hsc" #-} touchSymbolicLink name = withFilePath name $ \s -> throwErrnoPathIfMinus1_ "touchSymbolicLink" name (c_lutimes s nullPtr) {-# LINE 415 "libraries/unix/System/Posix/Files.hsc" #-} -- ----------------------------------------------------------------------------- -- Setting file sizes -- | Truncates the file down to the specified length. If the file was larger -- than the given length before this operation was performed the extra is lost. -- -- Note: calls @[email protected] setFileSize :: FilePath -> FileOffset -> IO () setFileSize file off = withFilePath file $ \s -> throwErrnoPathIfMinus1_ "setFileSize" file (c_truncate s off) foreign import capi unsafe "HsUnix.h truncate" c_truncate :: CString -> COff -> IO CInt -- ----------------------------------------------------------------------------- -- pathconf()/fpathconf() support -- | @getPathVar var [email protected] obtains the dynamic value of the requested -- configurable file limit or option associated with file or directory @[email protected] -- For defined file limits, @[email protected] returns the associated -- value. For defined file options, the result of @[email protected] -- is undefined, but not failure. -- -- Note: calls @[email protected] getPathVar :: FilePath -> PathVar -> IO Limit getPathVar name v = do withFilePath name $ \ nameP -> throwErrnoPathIfMinus1 "getPathVar" name $ c_pathconf nameP (pathVarConst v) foreign import ccall unsafe "pathconf" c_pathconf :: CString -> CInt -> IO CLong