2012-04-21 20:59:49 +00:00
|
|
|
{- git-annex file permissions
|
|
|
|
-
|
2015-01-21 16:50:09 +00:00
|
|
|
- Copyright 2012 Joey Hess <id@joeyh.name>
|
2012-04-21 20:59:49 +00:00
|
|
|
-
|
|
|
|
- Licensed under the GNU GPL version 3 or higher.
|
|
|
|
-}
|
|
|
|
|
|
|
|
module Annex.Perms (
|
2013-11-18 22:05:37 +00:00
|
|
|
setAnnexFilePerm,
|
|
|
|
setAnnexDirPerm,
|
2012-04-21 20:59:49 +00:00
|
|
|
annexFileMode,
|
|
|
|
createAnnexDirectory,
|
|
|
|
noUmask,
|
2016-03-09 17:43:22 +00:00
|
|
|
freezeContent,
|
2016-04-14 19:36:53 +00:00
|
|
|
isContentWritePermOk,
|
2016-03-09 17:43:22 +00:00
|
|
|
thawContent,
|
|
|
|
chmodContent,
|
2013-01-26 09:09:15 +00:00
|
|
|
createContentDir,
|
|
|
|
freezeContentDir,
|
2013-04-30 23:09:36 +00:00
|
|
|
thawContentDir,
|
2013-11-15 18:52:03 +00:00
|
|
|
modifyContent,
|
2015-05-19 19:04:24 +00:00
|
|
|
withShared,
|
2012-04-21 20:59:49 +00:00
|
|
|
) where
|
|
|
|
|
2016-01-20 20:36:33 +00:00
|
|
|
import Annex.Common
|
2012-04-21 20:59:49 +00:00
|
|
|
import Utility.FileMode
|
2017-02-17 18:04:43 +00:00
|
|
|
import Git.ConfigTypes
|
2012-04-21 23:42:49 +00:00
|
|
|
import qualified Annex
|
2013-02-14 18:10:36 +00:00
|
|
|
import Config
|
2012-04-21 20:59:49 +00:00
|
|
|
|
2012-04-21 23:42:49 +00:00
|
|
|
withShared :: (SharedRepository -> Annex a) -> Annex a
|
2015-05-19 19:04:24 +00:00
|
|
|
withShared a = a =<< coreSharedRepository <$> Annex.getGitConfig
|
2012-04-21 23:42:49 +00:00
|
|
|
|
2013-11-18 22:05:37 +00:00
|
|
|
setAnnexFilePerm :: FilePath -> Annex ()
|
|
|
|
setAnnexFilePerm = setAnnexPerm False
|
|
|
|
|
|
|
|
setAnnexDirPerm :: FilePath -> Annex ()
|
|
|
|
setAnnexDirPerm = setAnnexPerm True
|
|
|
|
|
2012-04-21 20:59:49 +00:00
|
|
|
{- Sets appropriate file mode for a file or directory in the annex,
|
|
|
|
- other than the content files and content directory. Normally,
|
|
|
|
- use the default mode, but with core.sharedRepository set,
|
|
|
|
- allow the group to write, etc. -}
|
2013-11-18 22:05:37 +00:00
|
|
|
setAnnexPerm :: Bool -> FilePath -> Annex ()
|
|
|
|
setAnnexPerm isdir file = unlessM crippledFileSystem $
|
2013-02-14 18:10:36 +00:00
|
|
|
withShared $ liftIO . go
|
2012-12-13 04:24:19 +00:00
|
|
|
where
|
2016-04-14 19:36:53 +00:00
|
|
|
go GroupShared = void $ tryIO $ modifyFileMode file $ addModes $
|
2013-11-18 22:05:37 +00:00
|
|
|
groupSharedModes ++
|
|
|
|
if isdir then [ ownerExecuteMode, groupExecuteMode ] else []
|
2016-04-14 19:36:53 +00:00
|
|
|
go AllShared = void $ tryIO $ modifyFileMode file $ addModes $
|
2013-11-18 22:05:37 +00:00
|
|
|
readModes ++
|
|
|
|
[ ownerWriteMode, groupWriteMode ] ++
|
|
|
|
if isdir then executeModes else []
|
2012-12-13 04:24:19 +00:00
|
|
|
go _ = noop
|
2012-04-21 20:59:49 +00:00
|
|
|
|
|
|
|
{- Gets the appropriate mode to use for creating a file in the annex
|
|
|
|
- (other than content files, which are locked down more). -}
|
|
|
|
annexFileMode :: Annex FileMode
|
2012-04-21 23:42:49 +00:00
|
|
|
annexFileMode = withShared $ return . go
|
2012-12-13 04:24:19 +00:00
|
|
|
where
|
|
|
|
go GroupShared = sharedmode
|
|
|
|
go AllShared = combineModes (sharedmode:readModes)
|
|
|
|
go _ = stdFileMode
|
2013-11-18 22:05:37 +00:00
|
|
|
sharedmode = combineModes groupSharedModes
|
2012-04-21 20:59:49 +00:00
|
|
|
|
|
|
|
{- Creates a directory inside the gitAnnexDir, including any parent
|
|
|
|
- directories. Makes directories with appropriate permissions. -}
|
|
|
|
createAnnexDirectory :: FilePath -> Annex ()
|
2015-05-10 20:43:09 +00:00
|
|
|
createAnnexDirectory dir = walk dir [] =<< top
|
2012-12-13 04:24:19 +00:00
|
|
|
where
|
2015-01-09 17:11:56 +00:00
|
|
|
top = parentDir <$> fromRepo gitAnnexDir
|
2015-05-10 20:43:09 +00:00
|
|
|
walk d below stop
|
2012-12-13 04:24:19 +00:00
|
|
|
| d `equalFilePath` stop = done
|
|
|
|
| otherwise = ifM (liftIO $ doesDirectoryExist d)
|
|
|
|
( done
|
2015-05-10 20:43:09 +00:00
|
|
|
, walk (parentDir d) (d:below) stop
|
2012-12-13 04:24:19 +00:00
|
|
|
)
|
|
|
|
where
|
|
|
|
done = forM_ below $ \p -> do
|
2013-02-24 21:40:14 +00:00
|
|
|
liftIO $ createDirectoryIfMissing True p
|
2013-11-18 22:05:37 +00:00
|
|
|
setAnnexDirPerm p
|
2013-01-26 09:09:15 +00:00
|
|
|
|
2016-03-09 17:43:22 +00:00
|
|
|
{- Normally, blocks writing to an annexed file, and modifies file
|
|
|
|
- permissions to allow reading it.
|
|
|
|
-
|
|
|
|
- When core.sharedRepository is set, the write bits are not removed from
|
|
|
|
- the file, but instead the appropriate group write bits are set. This is
|
2016-04-14 19:36:53 +00:00
|
|
|
- necessary to let other users in the group lock the file. But, in a
|
|
|
|
- shared repository, the current user may not be able to change a file
|
|
|
|
- owned by another user, so failure to set this mode is ignored.
|
2016-03-09 17:43:22 +00:00
|
|
|
-}
|
|
|
|
freezeContent :: FilePath -> Annex ()
|
|
|
|
freezeContent file = unlessM crippledFileSystem $
|
|
|
|
withShared go
|
|
|
|
where
|
2016-04-14 19:36:53 +00:00
|
|
|
go GroupShared = liftIO $ void $ tryIO $ modifyFileMode file $
|
2016-03-09 17:43:22 +00:00
|
|
|
addModes [ownerReadMode, groupReadMode, ownerWriteMode, groupWriteMode]
|
2016-04-14 19:36:53 +00:00
|
|
|
go AllShared = liftIO $ void $ tryIO $ modifyFileMode file $
|
2016-03-09 17:43:22 +00:00
|
|
|
addModes (readModes ++ writeModes)
|
|
|
|
go _ = liftIO $ modifyFileMode file $
|
|
|
|
removeModes writeModes .
|
|
|
|
addModes [ownerReadMode]
|
|
|
|
|
2016-04-14 19:36:53 +00:00
|
|
|
isContentWritePermOk :: FilePath -> Annex Bool
|
|
|
|
isContentWritePermOk file = ifM crippledFileSystem
|
|
|
|
( return True
|
|
|
|
, withShared go
|
|
|
|
)
|
|
|
|
where
|
|
|
|
go GroupShared = want [ownerWriteMode, groupWriteMode]
|
|
|
|
go AllShared = want writeModes
|
|
|
|
go _ = return True
|
|
|
|
want wantmode = do
|
2017-11-16 16:54:42 +00:00
|
|
|
mmode <- liftIO $ catchMaybeIO $ fileMode <$> getFileStatus file
|
2016-04-14 19:36:53 +00:00
|
|
|
return $ case mmode of
|
|
|
|
Nothing -> True
|
|
|
|
Just havemode -> havemode == combineModes (havemode:wantmode)
|
|
|
|
|
2016-03-09 17:43:22 +00:00
|
|
|
{- Adjusts read mode of annexed file per core.sharedRepository setting. -}
|
|
|
|
chmodContent :: FilePath -> Annex ()
|
|
|
|
chmodContent file = unlessM crippledFileSystem $
|
|
|
|
withShared go
|
|
|
|
where
|
2016-04-14 19:36:53 +00:00
|
|
|
go GroupShared = liftIO $ void $ tryIO $ modifyFileMode file $
|
2016-03-09 17:43:22 +00:00
|
|
|
addModes [ownerReadMode, groupReadMode]
|
2016-04-14 19:36:53 +00:00
|
|
|
go AllShared = liftIO $ void $ tryIO $ modifyFileMode file $
|
2016-03-09 17:43:22 +00:00
|
|
|
addModes readModes
|
|
|
|
go _ = liftIO $ modifyFileMode file $
|
|
|
|
addModes [ownerReadMode]
|
|
|
|
|
|
|
|
{- Allows writing to an annexed file that freezeContent was called on
|
|
|
|
- before. -}
|
|
|
|
thawContent :: FilePath -> Annex ()
|
|
|
|
thawContent file = thawPerms $ withShared go
|
|
|
|
where
|
2016-04-14 19:36:53 +00:00
|
|
|
go GroupShared = liftIO $ void $ tryIO $ groupWriteRead file
|
|
|
|
go AllShared = liftIO $ void $ tryIO $ groupWriteRead file
|
2016-03-09 17:43:22 +00:00
|
|
|
go _ = liftIO $ allowWrite file
|
|
|
|
|
|
|
|
{- Runs an action that thaws a file's permissions. This will probably
|
|
|
|
- fail on a crippled filesystem. But, if file modes are supported on a
|
|
|
|
- crippled filesystem, the file may be frozen, so try to thaw it. -}
|
|
|
|
thawPerms :: Annex () -> Annex ()
|
|
|
|
thawPerms a = ifM crippledFileSystem
|
|
|
|
( void $ tryNonAsync a
|
|
|
|
, a
|
|
|
|
)
|
|
|
|
|
2013-01-26 09:09:15 +00:00
|
|
|
{- Blocks writing to the directory an annexed file is in, to prevent the
|
2017-02-11 09:38:49 +00:00
|
|
|
- file accidentally being deleted. However, if core.sharedRepository
|
2013-01-26 09:09:15 +00:00
|
|
|
- is set, this is not done, since the group must be allowed to delete the
|
|
|
|
- file.
|
|
|
|
-}
|
|
|
|
freezeContentDir :: FilePath -> Annex ()
|
2013-02-14 18:10:36 +00:00
|
|
|
freezeContentDir file = unlessM crippledFileSystem $
|
2015-05-19 19:04:24 +00:00
|
|
|
withShared go
|
2013-01-26 09:09:15 +00:00
|
|
|
where
|
2015-01-09 17:11:56 +00:00
|
|
|
dir = parentDir file
|
2016-04-14 19:36:53 +00:00
|
|
|
go GroupShared = liftIO $ void $ tryIO $ groupWriteRead dir
|
|
|
|
go AllShared = liftIO $ void $ tryIO $ groupWriteRead dir
|
2015-05-19 19:04:24 +00:00
|
|
|
go _ = liftIO $ preventWrite dir
|
2013-01-26 09:09:15 +00:00
|
|
|
|
2013-04-30 23:09:36 +00:00
|
|
|
thawContentDir :: FilePath -> Annex ()
|
2016-03-09 17:43:22 +00:00
|
|
|
thawContentDir file = thawPerms $ liftIO $ allowWrite $ parentDir file
|
2013-04-30 23:09:36 +00:00
|
|
|
|
2013-01-26 09:09:15 +00:00
|
|
|
{- Makes the directory tree to store an annexed file's content,
|
|
|
|
- with appropriate permissions on each level. -}
|
|
|
|
createContentDir :: FilePath -> Annex ()
|
|
|
|
createContentDir dest = do
|
|
|
|
unlessM (liftIO $ doesDirectoryExist dir) $
|
|
|
|
createAnnexDirectory dir
|
|
|
|
-- might have already existed with restricted perms
|
2013-02-14 18:10:36 +00:00
|
|
|
unlessM crippledFileSystem $
|
|
|
|
liftIO $ allowWrite dir
|
2013-01-26 09:09:15 +00:00
|
|
|
where
|
2015-01-09 17:11:56 +00:00
|
|
|
dir = parentDir dest
|
2013-11-15 18:52:03 +00:00
|
|
|
|
|
|
|
{- Creates the content directory for a file if it doesn't already exist,
|
|
|
|
- or thaws it if it does, then runs an action to modify the file, and
|
|
|
|
- finally, freezes the content directory. -}
|
|
|
|
modifyContent :: FilePath -> Annex a -> Annex a
|
|
|
|
modifyContent f a = do
|
|
|
|
createContentDir f -- also thaws it
|
unify exception handling into Utility.Exception
Removed old extensible-exceptions, only needed for very old ghc.
Made webdav use Utility.Exception, to work after some changes in DAV's
exception handling.
Removed Annex.Exception. Mostly this was trivial, but note that
tryAnnex is replaced with tryNonAsync and catchAnnex replaced with
catchNonAsync. In theory that could be a behavior change, since the former
caught all exceptions, and the latter don't catch async exceptions.
However, in practice, nothing in the Annex monad uses async exceptions.
Grepping for throwTo and killThread only find stuff in the assistant,
which does not seem related.
Command.Add.undo is changed to accept a SomeException, and things
that use it for rollback now catch non-async exceptions, rather than
only IOExceptions.
2014-08-08 01:55:44 +00:00
|
|
|
v <- tryNonAsync a
|
2013-11-15 18:52:03 +00:00
|
|
|
freezeContentDir f
|
unify exception handling into Utility.Exception
Removed old extensible-exceptions, only needed for very old ghc.
Made webdav use Utility.Exception, to work after some changes in DAV's
exception handling.
Removed Annex.Exception. Mostly this was trivial, but note that
tryAnnex is replaced with tryNonAsync and catchAnnex replaced with
catchNonAsync. In theory that could be a behavior change, since the former
caught all exceptions, and the latter don't catch async exceptions.
However, in practice, nothing in the Annex monad uses async exceptions.
Grepping for throwTo and killThread only find stuff in the assistant,
which does not seem related.
Command.Add.undo is changed to accept a SomeException, and things
that use it for rollback now catch non-async exceptions, rather than
only IOExceptions.
2014-08-08 01:55:44 +00:00
|
|
|
either throwM return v
|