浏览代码

Merge pull request #5748 from crosbymichael/libcontainer-bindmounts

libcontainer: Create dirs/files as needed for bind mounts
Michael Crosby 11 年之前
父节点
当前提交
30a40de205
共有 1 个文件被更改,包括 31 次插入0 次删除
  1. 31 0
      pkg/libcontainer/mount/init.go

+ 31 - 0
pkg/libcontainer/mount/init.go

@@ -91,6 +91,28 @@ func mountSystem(rootfs string, container *libcontainer.Container) error {
 	return nil
 }
 
+func createIfNotExists(path string, isDir bool) error {
+	if _, err := os.Stat(path); err != nil {
+		if os.IsNotExist(err) {
+			if isDir {
+				if err := os.MkdirAll(path, 0755); err != nil {
+					return err
+				}
+			} else {
+				if err := os.MkdirAll(filepath.Dir(path), 0755); err != nil {
+					return err
+				}
+				f, err := os.OpenFile(path, os.O_CREATE, 0755)
+				if err != nil {
+					return err
+				}
+				f.Close()
+			}
+		}
+	}
+	return nil
+}
+
 func setupBindmounts(rootfs string, bindMounts libcontainer.Mounts) error {
 	for _, m := range bindMounts.OfType("bind") {
 		var (
@@ -100,6 +122,15 @@ func setupBindmounts(rootfs string, bindMounts libcontainer.Mounts) error {
 		if !m.Writable {
 			flags = flags | syscall.MS_RDONLY
 		}
+
+		stat, err := os.Stat(m.Source)
+		if err != nil {
+			return err
+		}
+		if err := createIfNotExists(dest, stat.IsDir()); err != nil {
+			return fmt.Errorf("Creating new bind-mount target, %s", err)
+		}
+
 		if err := system.Mount(m.Source, dest, "bind", uintptr(flags), ""); err != nil {
 			return fmt.Errorf("mounting %s into %s %s", m.Source, dest, err)
 		}