2016-03-25 19:38:00 -04:00
|
|
|
// +build linux freebsd solaris
|
2015-09-16 17:18:24 -04:00
|
|
|
|
|
|
|
// Package local provides the default implementation for volumes. It
|
|
|
|
// is used to mount data volume containers and directories local to
|
|
|
|
// the host server.
|
|
|
|
package local
|
|
|
|
|
|
|
|
import (
|
2016-02-11 21:48:16 -05:00
|
|
|
"fmt"
|
2015-09-16 17:18:24 -04:00
|
|
|
"path/filepath"
|
|
|
|
"strings"
|
2016-02-11 21:48:16 -05:00
|
|
|
|
|
|
|
"github.com/docker/docker/pkg/mount"
|
|
|
|
)
|
|
|
|
|
|
|
|
var (
|
|
|
|
oldVfsDir = filepath.Join("vfs", "dir")
|
|
|
|
|
|
|
|
validOpts = map[string]bool{
|
|
|
|
"type": true, // specify the filesystem type for mount, e.g. nfs
|
|
|
|
"o": true, // generic mount options
|
|
|
|
"device": true, // device to mount from
|
|
|
|
}
|
2015-09-16 17:18:24 -04:00
|
|
|
)
|
|
|
|
|
2016-02-11 21:48:16 -05:00
|
|
|
type optsConfig struct {
|
|
|
|
MountType string
|
|
|
|
MountOpts string
|
|
|
|
MountDevice string
|
|
|
|
}
|
2015-09-16 17:18:24 -04:00
|
|
|
|
|
|
|
// scopedPath verifies that the path where the volume is located
|
|
|
|
// is under Docker's root and the valid local paths.
|
|
|
|
func (r *Root) scopedPath(realPath string) bool {
|
|
|
|
// Volumes path for Docker version >= 1.7
|
|
|
|
if strings.HasPrefix(realPath, filepath.Join(r.scope, volumesPathName)) && realPath != filepath.Join(r.scope, volumesPathName) {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
|
|
|
// Volumes path for Docker version < 1.7
|
|
|
|
if strings.HasPrefix(realPath, filepath.Join(r.scope, oldVfsDir)) {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
|
|
|
return false
|
|
|
|
}
|
2016-02-11 21:48:16 -05:00
|
|
|
|
|
|
|
func setOpts(v *localVolume, opts map[string]string) error {
|
|
|
|
if len(opts) == 0 {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
if err := validateOpts(opts); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
v.opts = &optsConfig{
|
|
|
|
MountType: opts["type"],
|
|
|
|
MountOpts: opts["o"],
|
|
|
|
MountDevice: opts["device"],
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (v *localVolume) mount() error {
|
|
|
|
if v.opts.MountDevice == "" {
|
|
|
|
return fmt.Errorf("missing device in volume options")
|
|
|
|
}
|
|
|
|
return mount.Mount(v.opts.MountDevice, v.path, v.opts.MountType, v.opts.MountOpts)
|
|
|
|
}
|