2013-10-31 21:07:54 -04:00
|
|
|
package aufs
|
2013-03-21 01:41:03 -04:00
|
|
|
|
|
|
|
import (
|
2013-06-04 14:30:47 -04:00
|
|
|
"github.com/dotcloud/docker/utils"
|
2013-03-21 01:41:03 -04:00
|
|
|
"os"
|
2013-06-04 14:30:47 -04:00
|
|
|
"os/exec"
|
2013-03-21 01:41:03 -04:00
|
|
|
"path/filepath"
|
|
|
|
"syscall"
|
|
|
|
)
|
|
|
|
|
|
|
|
func Unmount(target string) error {
|
2013-06-04 14:30:47 -04:00
|
|
|
if err := exec.Command("auplink", target, "flush").Run(); err != nil {
|
2013-10-08 03:54:47 -04:00
|
|
|
utils.Errorf("[warning]: couldn't run auplink before unmount: %s", err)
|
2013-06-04 14:30:47 -04:00
|
|
|
}
|
2013-03-21 01:41:03 -04:00
|
|
|
if err := syscall.Unmount(target, 0); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2013-11-08 13:17:51 -05:00
|
|
|
return nil
|
2013-03-21 01:41:03 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
func Mounted(mountpoint string) (bool, error) {
|
|
|
|
mntpoint, err := os.Stat(mountpoint)
|
|
|
|
if err != nil {
|
|
|
|
if os.IsNotExist(err) {
|
|
|
|
return false, nil
|
|
|
|
}
|
|
|
|
return false, err
|
|
|
|
}
|
|
|
|
parent, err := os.Stat(filepath.Join(mountpoint, ".."))
|
|
|
|
if err != nil {
|
|
|
|
return false, err
|
|
|
|
}
|
|
|
|
mntpointSt := mntpoint.Sys().(*syscall.Stat_t)
|
|
|
|
parentSt := parent.Sys().(*syscall.Stat_t)
|
2013-11-07 07:33:31 -05:00
|
|
|
|
2013-03-21 01:41:03 -04:00
|
|
|
return mntpointSt.Dev != parentSt.Dev, nil
|
|
|
|
}
|