2014-04-17 17:43:01 -04:00
|
|
|
package daemon
|
2014-02-14 20:15:40 -05:00
|
|
|
|
|
|
|
import (
|
2015-05-19 16:05:25 -04:00
|
|
|
"encoding/json"
|
2014-02-14 20:15:40 -05:00
|
|
|
"fmt"
|
|
|
|
"io/ioutil"
|
|
|
|
"os"
|
|
|
|
"path/filepath"
|
|
|
|
"strings"
|
2014-05-05 17:45:14 -04:00
|
|
|
|
2014-07-24 18:19:50 -04:00
|
|
|
"github.com/docker/docker/daemon/execdriver"
|
2014-10-29 15:06:51 -04:00
|
|
|
"github.com/docker/docker/pkg/chrootarchive"
|
2015-05-19 16:05:25 -04:00
|
|
|
"github.com/docker/docker/runconfig"
|
|
|
|
"github.com/docker/docker/volume"
|
2014-02-14 20:15:40 -05:00
|
|
|
)
|
|
|
|
|
2015-05-19 16:05:25 -04:00
|
|
|
type mountPoint struct {
|
|
|
|
Name string
|
|
|
|
Destination string
|
|
|
|
Driver string
|
|
|
|
RW bool
|
|
|
|
Volume volume.Volume `json:"-"`
|
|
|
|
Source string
|
|
|
|
}
|
2014-12-16 10:06:45 -05:00
|
|
|
|
2015-05-19 16:05:25 -04:00
|
|
|
func (m *mountPoint) Setup() (string, error) {
|
|
|
|
if m.Volume != nil {
|
|
|
|
return m.Volume.Mount()
|
2014-08-21 17:57:46 -04:00
|
|
|
}
|
|
|
|
|
2015-05-19 16:05:25 -04:00
|
|
|
if len(m.Source) > 0 {
|
|
|
|
if _, err := os.Stat(m.Source); err != nil {
|
|
|
|
if !os.IsNotExist(err) {
|
|
|
|
return "", err
|
|
|
|
}
|
|
|
|
if err := os.MkdirAll(m.Source, 0755); err != nil {
|
|
|
|
return "", err
|
|
|
|
}
|
2015-02-10 13:45:50 -05:00
|
|
|
}
|
2015-05-19 16:05:25 -04:00
|
|
|
return m.Source, nil
|
2014-08-28 10:18:08 -04:00
|
|
|
}
|
|
|
|
|
2015-05-19 16:05:25 -04:00
|
|
|
return "", fmt.Errorf("Unable to setup mount point, neither source nor volume defined")
|
2014-12-16 10:06:45 -05:00
|
|
|
}
|
|
|
|
|
2015-05-19 16:05:25 -04:00
|
|
|
func (m *mountPoint) Path() string {
|
|
|
|
if m.Volume != nil {
|
|
|
|
return m.Volume.Path()
|
2014-08-21 17:57:46 -04:00
|
|
|
}
|
|
|
|
|
2015-05-19 16:05:25 -04:00
|
|
|
return m.Source
|
2014-08-28 10:18:08 -04:00
|
|
|
}
|
2014-08-21 17:57:46 -04:00
|
|
|
|
2015-05-19 16:05:25 -04:00
|
|
|
func parseBindMount(spec string, config *runconfig.Config) (*mountPoint, error) {
|
|
|
|
bind := &mountPoint{
|
|
|
|
RW: true,
|
2014-08-21 17:57:46 -04:00
|
|
|
}
|
2015-05-19 16:05:25 -04:00
|
|
|
arr := strings.Split(spec, ":")
|
2015-01-16 14:48:25 -05:00
|
|
|
|
2015-05-19 16:05:25 -04:00
|
|
|
switch len(arr) {
|
|
|
|
case 2:
|
|
|
|
bind.Destination = arr[1]
|
|
|
|
case 3:
|
|
|
|
bind.Destination = arr[1]
|
|
|
|
if !validMountMode(arr[2]) {
|
|
|
|
return nil, fmt.Errorf("invalid mode for volumes-from: %s", arr[2])
|
2015-01-16 14:48:25 -05:00
|
|
|
}
|
2015-05-19 16:05:25 -04:00
|
|
|
bind.RW = arr[2] == "rw"
|
|
|
|
default:
|
|
|
|
return nil, fmt.Errorf("Invalid volume specification: %s", spec)
|
2014-10-08 13:13:32 -04:00
|
|
|
}
|
|
|
|
|
2015-05-21 13:57:59 -04:00
|
|
|
name, source, err := parseVolumeSource(arr[0], config)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
if len(source) == 0 {
|
|
|
|
bind.Driver = config.VolumeDriver
|
|
|
|
if len(bind.Driver) == 0 {
|
|
|
|
bind.Driver = volume.DefaultDriverName
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
bind.Source = filepath.Clean(source)
|
2014-08-28 10:18:08 -04:00
|
|
|
}
|
2014-02-14 20:15:40 -05:00
|
|
|
|
2015-05-21 13:57:59 -04:00
|
|
|
bind.Name = name
|
2015-05-19 16:05:25 -04:00
|
|
|
bind.Destination = filepath.Clean(bind.Destination)
|
|
|
|
return bind, nil
|
|
|
|
}
|
2014-08-06 15:27:58 -04:00
|
|
|
|
2015-05-19 16:05:25 -04:00
|
|
|
func parseVolumesFrom(spec string) (string, string, error) {
|
|
|
|
if len(spec) == 0 {
|
2014-12-18 09:57:36 -05:00
|
|
|
return "", "", fmt.Errorf("malformed volumes-from specification: %s", spec)
|
|
|
|
}
|
|
|
|
|
2015-05-19 16:05:25 -04:00
|
|
|
specParts := strings.SplitN(spec, ":", 2)
|
|
|
|
id := specParts[0]
|
|
|
|
mode := "rw"
|
|
|
|
|
2014-12-18 09:57:36 -05:00
|
|
|
if len(specParts) == 2 {
|
|
|
|
mode = specParts[1]
|
|
|
|
if !validMountMode(mode) {
|
|
|
|
return "", "", fmt.Errorf("invalid mode for volumes-from: %s", mode)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return id, mode, nil
|
|
|
|
}
|
|
|
|
|
2014-08-28 10:18:08 -04:00
|
|
|
func validMountMode(mode string) bool {
|
|
|
|
validModes := map[string]bool{
|
|
|
|
"rw": true,
|
|
|
|
"ro": true,
|
2014-05-19 18:04:51 -04:00
|
|
|
}
|
2014-08-28 10:18:08 -04:00
|
|
|
return validModes[mode]
|
2014-05-19 18:04:51 -04:00
|
|
|
}
|
|
|
|
|
2015-02-24 17:17:13 -05:00
|
|
|
func (container *Container) specialMounts() []execdriver.Mount {
|
|
|
|
var mounts []execdriver.Mount
|
|
|
|
if container.ResolvConfPath != "" {
|
2015-05-02 11:29:00 -04:00
|
|
|
mounts = append(mounts, execdriver.Mount{Source: container.ResolvConfPath, Destination: "/etc/resolv.conf", Writable: !container.hostConfig.ReadonlyRootfs, Private: true})
|
2015-02-24 17:17:13 -05:00
|
|
|
}
|
|
|
|
if container.HostnamePath != "" {
|
2015-05-02 11:29:00 -04:00
|
|
|
mounts = append(mounts, execdriver.Mount{Source: container.HostnamePath, Destination: "/etc/hostname", Writable: !container.hostConfig.ReadonlyRootfs, Private: true})
|
2015-02-24 17:17:13 -05:00
|
|
|
}
|
|
|
|
if container.HostsPath != "" {
|
2015-05-02 11:29:00 -04:00
|
|
|
mounts = append(mounts, execdriver.Mount{Source: container.HostsPath, Destination: "/etc/hosts", Writable: !container.hostConfig.ReadonlyRootfs, Private: true})
|
2015-02-24 17:17:13 -05:00
|
|
|
}
|
|
|
|
return mounts
|
|
|
|
}
|
|
|
|
|
2014-06-02 17:16:30 -04:00
|
|
|
func copyExistingContents(source, destination string) error {
|
|
|
|
volList, err := ioutil.ReadDir(source)
|
2014-05-19 18:18:37 -04:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
if len(volList) > 0 {
|
2014-06-02 17:16:30 -04:00
|
|
|
srcList, err := ioutil.ReadDir(destination)
|
2014-05-19 18:04:51 -04:00
|
|
|
if err != nil {
|
2014-03-18 18:28:40 -04:00
|
|
|
return err
|
2014-02-14 20:15:40 -05:00
|
|
|
}
|
2014-05-19 18:18:37 -04:00
|
|
|
if len(srcList) == 0 {
|
|
|
|
// If the source volume is empty copy files from the root into the volume
|
2014-10-29 15:06:51 -04:00
|
|
|
if err := chrootarchive.CopyWithTar(source, destination); err != nil {
|
2014-02-14 20:15:40 -05:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
2014-05-19 18:18:37 -04:00
|
|
|
}
|
2014-06-02 17:16:30 -04:00
|
|
|
return copyOwnership(source, destination)
|
|
|
|
}
|
|
|
|
|
2015-05-19 16:05:25 -04:00
|
|
|
// registerMountPoints initializes the container mount points with the configured volumes and bind mounts.
|
|
|
|
// It follows the next sequence to decide what to mount in each final destination:
|
|
|
|
//
|
|
|
|
// 1. Select the previously configured mount points for the containers, if any.
|
|
|
|
// 2. Select the volumes mounted from another containers. Overrides previously configured mount point destination.
|
|
|
|
// 3. Select the bind mounts set by the client. Overrides previously configured mount point destinations.
|
|
|
|
func (daemon *Daemon) registerMountPoints(container *Container, hostConfig *runconfig.HostConfig) error {
|
|
|
|
binds := map[string]bool{}
|
|
|
|
mountPoints := map[string]*mountPoint{}
|
|
|
|
|
|
|
|
// 1. Read already configured mount points.
|
|
|
|
for name, point := range container.MountPoints {
|
|
|
|
mountPoints[name] = point
|
|
|
|
}
|
|
|
|
|
|
|
|
// 2. Read volumes from other containers.
|
|
|
|
for _, v := range hostConfig.VolumesFrom {
|
|
|
|
containerID, mode, err := parseVolumesFrom(v)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
2015-02-24 17:17:13 -05:00
|
|
|
}
|
|
|
|
|
2015-05-19 16:05:25 -04:00
|
|
|
c, err := daemon.Get(containerID)
|
2015-02-24 17:17:13 -05:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2015-05-19 16:05:25 -04:00
|
|
|
for _, m := range c.MountPoints {
|
|
|
|
cp := m
|
|
|
|
cp.RW = m.RW && mode != "ro"
|
|
|
|
|
|
|
|
if len(m.Source) == 0 {
|
|
|
|
v, err := createVolume(m.Name, m.Driver)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
cp.Volume = v
|
|
|
|
}
|
|
|
|
|
|
|
|
mountPoints[cp.Destination] = cp
|
2015-02-24 17:17:13 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-05-19 16:05:25 -04:00
|
|
|
// 3. Read bind mounts
|
|
|
|
for _, b := range hostConfig.Binds {
|
|
|
|
// #10618
|
|
|
|
bind, err := parseBindMount(b, container.Config)
|
2015-02-24 17:17:13 -05:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2015-05-19 16:05:25 -04:00
|
|
|
|
|
|
|
if binds[bind.Destination] {
|
|
|
|
return fmt.Errorf("Duplicate bind mount %s", bind.Destination)
|
2015-02-24 17:17:13 -05:00
|
|
|
}
|
2015-05-19 16:05:25 -04:00
|
|
|
|
|
|
|
if len(bind.Name) > 0 && len(bind.Driver) > 0 {
|
|
|
|
v, err := createVolume(bind.Name, bind.Driver)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
bind.Volume = v
|
|
|
|
}
|
|
|
|
|
|
|
|
binds[bind.Destination] = true
|
|
|
|
mountPoints[bind.Destination] = bind
|
2015-02-24 17:17:13 -05:00
|
|
|
}
|
2015-05-19 16:05:25 -04:00
|
|
|
|
|
|
|
container.MountPoints = mountPoints
|
|
|
|
|
2015-02-24 17:17:13 -05:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2015-05-19 16:05:25 -04:00
|
|
|
// verifyOldVolumesInfo ports volumes configured for the containers pre docker 1.7.
|
|
|
|
// It reads the container configuration and creates valid mount points for the old volumes.
|
|
|
|
func (daemon *Daemon) verifyOldVolumesInfo(container *Container) error {
|
|
|
|
jsonPath, err := container.jsonPath()
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
f, err := os.Open(jsonPath)
|
|
|
|
if err != nil {
|
|
|
|
if os.IsNotExist(err) {
|
|
|
|
return nil
|
2015-02-24 17:17:13 -05:00
|
|
|
}
|
2015-05-19 16:05:25 -04:00
|
|
|
return err
|
2015-02-24 17:17:13 -05:00
|
|
|
}
|
|
|
|
|
2015-05-19 16:05:25 -04:00
|
|
|
type oldContVolCfg struct {
|
|
|
|
Volumes map[string]string
|
|
|
|
VolumesRW map[string]bool
|
|
|
|
}
|
|
|
|
|
|
|
|
vols := oldContVolCfg{
|
|
|
|
Volumes: make(map[string]string),
|
|
|
|
VolumesRW: make(map[string]bool),
|
|
|
|
}
|
|
|
|
if err := json.NewDecoder(f).Decode(&vols); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
for destination, hostPath := range vols.Volumes {
|
|
|
|
vfsPath := filepath.Join(daemon.root, "vfs", "dir")
|
|
|
|
|
|
|
|
if strings.HasPrefix(hostPath, vfsPath) {
|
|
|
|
id := filepath.Base(hostPath)
|
|
|
|
|
2015-05-21 13:57:59 -04:00
|
|
|
rw := vols.VolumesRW != nil && vols.VolumesRW[destination]
|
|
|
|
container.addLocalMountPoint(id, destination, rw)
|
2015-02-24 17:17:13 -05:00
|
|
|
}
|
|
|
|
}
|
2015-05-19 16:05:25 -04:00
|
|
|
|
|
|
|
return container.ToDisk()
|
|
|
|
}
|
|
|
|
|
|
|
|
func createVolume(name, driverName string) (volume.Volume, error) {
|
|
|
|
vd, err := getVolumeDriver(driverName)
|
2015-05-21 13:57:59 -04:00
|
|
|
|
2015-05-19 16:05:25 -04:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return vd.Create(name)
|
|
|
|
}
|
|
|
|
|
|
|
|
func removeVolume(v volume.Volume) error {
|
|
|
|
vd, err := getVolumeDriver(v.DriverName())
|
|
|
|
if err != nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
return vd.Remove(v)
|
|
|
|
}
|