Safe Haskell | None |
---|---|
Language | Haskell98 |
functions for mounting, umounting, parsing /proc/mounts, etc
- umountBelow :: Bool -> FilePath -> IO [(FilePath, (ExitCode, String, String))]
- umount :: [String] -> IO (ExitCode, String, String)
- isMountPoint :: FilePath -> IO Bool
- withMount :: (MonadIO m, MonadMask m) => FilePath -> FilePath -> m a -> m a
- data WithProcAndSys m a
- withProcAndSys :: (MonadIO m, MonadMask m) => FilePath -> WithProcAndSys m a -> m a
- withTmp :: (MonadIO m, MonadMask m) => FilePath -> m a -> m a
Documentation
:: Bool | Lazy (umount -l flag) if true |
-> FilePath | canonicalised, absolute path |
-> IO [(FilePath, (ExitCode, String, String))] | paths that we attempted to umount, and the responding output from the umount command |
umountBelow
- unmounts all mount points below belowPath
/proc/mounts must be present and readable. Because of the way
linux handles changeroots, we can't trust everything we see in
/proc/mounts. However, we make the following assumptions:
- there is a one-to-one correspondence between the entries in /proc/mounts and the actual mounts, and
- every mount point we might encounter is a suffix of one of the mount points listed in /proc/mounts (because being in a a chroot doesn't affect /proc/mounts.)
So we can search /proc/mounts for an entry has the mount point we are looking for as a substring, then add the extra text on the right to our path and try to unmount that. Then we start again since nested mounts might have been revealed.
For example, suppose we are chrooted into /home/david/environments/sid and we call "umountBelow /proc". We might see the mount point /home/david/environments/sid/proc/bus/usb in /proc/mounts, which means we need to run "umount /proc/bus/usb".
See also: umountSucceeded
umount :: [String] -> IO (ExitCode, String, String) Source
umount
- run umount with the specified args
NOTE: this function uses exec, so you do not need to shell-escape
NOTE: we don't use the umount system call because the system call
is not smart enough to update /etc/mtab
isMountPoint :: FilePath -> IO Bool Source
withMount :: (MonadIO m, MonadMask m) => FilePath -> FilePath -> m a -> m a Source
Do an IO task with a file system remounted using mount --bind. This was written to set up a build environment.
data WithProcAndSys m a Source
Monad transformer to ensure that proc and sys are mounted during a computation.
MonadTrans WithProcAndSys | |
Monad m => Monad (WithProcAndSys m) | |
Functor m => Functor (WithProcAndSys m) | |
Applicative m => Applicative (WithProcAndSys m) | |
MonadIO m => MonadIO (WithProcAndSys m) |
withProcAndSys :: (MonadIO m, MonadMask m) => FilePath -> WithProcAndSys m a -> m a Source
Mount proc and sys in the specified build root and execute a task. Typically, the task would start with a chroot into the build root. If the build root given is "/" it is assumed that the file systems are already mounted, no mounting or unmounting is done.