2014-04-17 17:43:01 -04:00
|
|
|
package daemon
|
2014-02-14 20:15:40 -05:00
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"io/ioutil"
|
|
|
|
"os"
|
|
|
|
"path/filepath"
|
2014-09-15 20:51:06 -04:00
|
|
|
"sort"
|
2014-02-14 20:15:40 -05:00
|
|
|
"strings"
|
|
|
|
"syscall"
|
2014-05-05 17:45:14 -04:00
|
|
|
|
2014-07-24 18:19:50 -04:00
|
|
|
"github.com/docker/docker/archive"
|
|
|
|
"github.com/docker/docker/daemon/execdriver"
|
2014-08-28 10:18:08 -04:00
|
|
|
"github.com/docker/docker/pkg/log"
|
2014-07-24 18:19:50 -04:00
|
|
|
"github.com/docker/docker/pkg/symlink"
|
2014-08-28 10:18:08 -04:00
|
|
|
"github.com/docker/docker/volumes"
|
2014-02-14 20:15:40 -05:00
|
|
|
)
|
|
|
|
|
2014-08-28 10:18:08 -04:00
|
|
|
type Mount struct {
|
|
|
|
MountToPath string
|
|
|
|
container *Container
|
|
|
|
volume *volumes.Volume
|
|
|
|
Writable bool
|
2014-08-08 11:00:18 -04:00
|
|
|
}
|
|
|
|
|
2014-08-28 10:18:08 -04:00
|
|
|
func (container *Container) prepareVolumes() error {
|
2014-02-14 20:15:40 -05:00
|
|
|
if container.Volumes == nil || len(container.Volumes) == 0 {
|
|
|
|
container.Volumes = make(map[string]string)
|
|
|
|
container.VolumesRW = make(map[string]bool)
|
2014-08-28 10:18:08 -04:00
|
|
|
if err := container.applyVolumesFrom(); err != nil {
|
2014-02-20 12:18:27 -05:00
|
|
|
return err
|
|
|
|
}
|
2014-02-14 20:15:40 -05:00
|
|
|
}
|
|
|
|
|
2014-08-28 10:18:08 -04:00
|
|
|
return container.createVolumes()
|
2014-02-14 20:15:40 -05:00
|
|
|
}
|
|
|
|
|
2014-09-15 20:51:06 -04:00
|
|
|
// sortedVolumeMounts returns the list of container volume mount points sorted in lexicographic order
|
|
|
|
func (container *Container) sortedVolumeMounts() []string {
|
|
|
|
var mountPaths []string
|
|
|
|
for path := range container.Volumes {
|
|
|
|
mountPaths = append(mountPaths, path)
|
|
|
|
}
|
|
|
|
|
|
|
|
sort.Strings(mountPaths)
|
|
|
|
return mountPaths
|
|
|
|
}
|
|
|
|
|
2014-08-28 10:18:08 -04:00
|
|
|
func (container *Container) createVolumes() error {
|
|
|
|
mounts, err := container.parseVolumeMountConfig()
|
|
|
|
if err != nil {
|
|
|
|
return err
|
2014-08-21 17:57:46 -04:00
|
|
|
}
|
|
|
|
|
2014-08-28 10:18:08 -04:00
|
|
|
for _, mnt := range mounts {
|
|
|
|
if err := mnt.initialize(); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2014-08-21 17:57:46 -04:00
|
|
|
}
|
|
|
|
|
2014-08-28 10:18:08 -04:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *Mount) initialize() error {
|
|
|
|
// No need to initialize anything since it's already been initialized
|
|
|
|
if _, exists := m.container.Volumes[m.MountToPath]; exists {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// This is the full path to container fs + mntToPath
|
|
|
|
containerMntPath, err := symlink.FollowSymlinkInScope(filepath.Join(m.container.basefs, m.MountToPath), m.container.basefs)
|
2014-08-21 17:57:46 -04:00
|
|
|
if err != nil {
|
2014-08-28 10:18:08 -04:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
m.container.VolumesRW[m.MountToPath] = m.Writable
|
|
|
|
m.container.Volumes[m.MountToPath] = m.volume.Path
|
|
|
|
m.volume.AddContainer(m.container.ID)
|
|
|
|
if m.Writable && !m.volume.IsBindMount {
|
|
|
|
// Copy whatever is in the container at the mntToPath to the volume
|
|
|
|
copyExistingContents(containerMntPath, m.volume.Path)
|
2014-08-21 17:57:46 -04:00
|
|
|
}
|
|
|
|
|
2014-08-28 10:18:08 -04:00
|
|
|
return nil
|
|
|
|
}
|
2014-08-21 17:57:46 -04:00
|
|
|
|
2014-08-28 10:18:08 -04:00
|
|
|
func (container *Container) VolumePaths() map[string]struct{} {
|
|
|
|
var paths = make(map[string]struct{})
|
|
|
|
for _, path := range container.Volumes {
|
|
|
|
paths[path] = struct{}{}
|
2014-08-21 17:57:46 -04:00
|
|
|
}
|
2014-08-28 10:18:08 -04:00
|
|
|
return paths
|
2014-08-21 17:57:46 -04:00
|
|
|
}
|
|
|
|
|
2014-08-28 10:18:08 -04:00
|
|
|
func (container *Container) derefVolumes() {
|
|
|
|
for path := range container.VolumePaths() {
|
|
|
|
vol := container.daemon.volumes.Get(path)
|
|
|
|
if vol == nil {
|
|
|
|
log.Debugf("Volume %s was not found and could not be dereferenced", path)
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
vol.RemoveContainer(container.ID)
|
|
|
|
}
|
|
|
|
}
|
2014-02-14 20:15:40 -05:00
|
|
|
|
2014-08-28 10:18:08 -04:00
|
|
|
func (container *Container) parseVolumeMountConfig() (map[string]*Mount, error) {
|
|
|
|
var mounts = make(map[string]*Mount)
|
|
|
|
// Get all the bind mounts
|
|
|
|
for _, spec := range container.hostConfig.Binds {
|
|
|
|
path, mountToPath, writable, err := parseBindMountSpec(spec)
|
2014-08-21 17:57:46 -04:00
|
|
|
if err != nil {
|
2014-08-28 10:18:08 -04:00
|
|
|
return nil, err
|
2014-08-21 17:57:46 -04:00
|
|
|
}
|
2014-08-28 10:18:08 -04:00
|
|
|
// Check if a volume already exists for this and use it
|
|
|
|
vol := container.daemon.volumes.Get(path)
|
|
|
|
if vol == nil {
|
|
|
|
vol, err = container.daemon.volumes.NewVolume(path, writable)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
2014-02-14 20:15:40 -05:00
|
|
|
}
|
|
|
|
}
|
2014-08-28 10:18:08 -04:00
|
|
|
mounts[mountToPath] = &Mount{container: container, volume: vol, MountToPath: mountToPath, Writable: writable}
|
2014-02-14 20:15:40 -05:00
|
|
|
}
|
|
|
|
|
2014-08-28 10:18:08 -04:00
|
|
|
// Get the rest of the volumes
|
|
|
|
for path := range container.Config.Volumes {
|
|
|
|
// Check if this is already added as a bind-mount
|
|
|
|
if _, exists := mounts[path]; exists {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
vol, err := container.daemon.volumes.NewVolume("", true)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
mounts[path] = &Mount{container: container, MountToPath: path, volume: vol, Writable: true}
|
2014-08-21 17:57:46 -04:00
|
|
|
}
|
|
|
|
|
2014-08-28 10:18:08 -04:00
|
|
|
return mounts, nil
|
2014-08-21 17:57:46 -04:00
|
|
|
}
|
|
|
|
|
2014-08-28 10:18:08 -04:00
|
|
|
func parseBindMountSpec(spec string) (string, string, bool, error) {
|
2014-08-06 15:27:58 -04:00
|
|
|
var (
|
2014-08-28 10:18:08 -04:00
|
|
|
path, mountToPath string
|
|
|
|
writable bool
|
|
|
|
arr = strings.Split(spec, ":")
|
2014-08-06 15:27:58 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
switch len(arr) {
|
|
|
|
case 2:
|
2014-08-28 10:18:08 -04:00
|
|
|
path = arr[0]
|
|
|
|
mountToPath = arr[1]
|
|
|
|
writable = true
|
2014-08-06 15:27:58 -04:00
|
|
|
case 3:
|
2014-08-28 10:18:08 -04:00
|
|
|
path = arr[0]
|
|
|
|
mountToPath = arr[1]
|
|
|
|
writable = validMountMode(arr[2]) && arr[2] == "rw"
|
2014-08-06 15:27:58 -04:00
|
|
|
default:
|
2014-08-28 10:18:08 -04:00
|
|
|
return "", "", false, fmt.Errorf("Invalid volume specification: %s", spec)
|
2014-08-06 15:27:58 -04:00
|
|
|
}
|
2014-08-08 11:00:18 -04:00
|
|
|
|
2014-08-28 10:18:08 -04:00
|
|
|
if !filepath.IsAbs(path) {
|
|
|
|
return "", "", false, fmt.Errorf("cannot bind mount volume: %s volume paths must be absolute.", path)
|
2014-08-08 11:00:18 -04:00
|
|
|
}
|
|
|
|
|
2014-08-28 10:18:08 -04:00
|
|
|
return path, mountToPath, writable, nil
|
2014-08-06 15:27:58 -04:00
|
|
|
}
|
|
|
|
|
2014-08-28 10:18:08 -04:00
|
|
|
func (container *Container) applyVolumesFrom() error {
|
|
|
|
volumesFrom := container.hostConfig.VolumesFrom
|
2014-02-14 20:15:40 -05:00
|
|
|
|
2014-08-28 10:18:08 -04:00
|
|
|
for _, spec := range volumesFrom {
|
|
|
|
mounts, err := parseVolumesFromSpec(container.daemon, spec)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
2014-02-14 20:15:40 -05:00
|
|
|
}
|
2014-05-19 18:18:37 -04:00
|
|
|
|
2014-08-28 10:18:08 -04:00
|
|
|
for _, mnt := range mounts {
|
|
|
|
mnt.container = container
|
|
|
|
if err = mnt.initialize(); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2014-05-19 18:18:37 -04:00
|
|
|
}
|
|
|
|
}
|
2014-08-21 17:57:46 -04:00
|
|
|
return nil
|
2014-05-19 18:04:51 -04:00
|
|
|
}
|
2014-02-14 20:15:40 -05:00
|
|
|
|
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-06-02 17:16:30 -04:00
|
|
|
|
2014-08-28 10:18:08 -04:00
|
|
|
return validModes[mode]
|
2014-05-19 18:04:51 -04:00
|
|
|
}
|
|
|
|
|
2014-08-28 10:18:08 -04:00
|
|
|
func (container *Container) setupMounts() error {
|
|
|
|
mounts := []execdriver.Mount{
|
|
|
|
{Source: container.ResolvConfPath, Destination: "/etc/resolv.conf", Writable: true, Private: true},
|
2014-05-19 18:04:51 -04:00
|
|
|
}
|
2014-04-24 21:22:22 -04:00
|
|
|
|
2014-08-28 10:18:08 -04:00
|
|
|
if container.HostnamePath != "" {
|
|
|
|
mounts = append(mounts, execdriver.Mount{Source: container.HostnamePath, Destination: "/etc/hostname", Writable: true, Private: true})
|
2014-05-19 18:04:51 -04:00
|
|
|
}
|
2014-04-24 21:22:22 -04:00
|
|
|
|
2014-08-28 10:18:08 -04:00
|
|
|
if container.HostsPath != "" {
|
|
|
|
mounts = append(mounts, execdriver.Mount{Source: container.HostsPath, Destination: "/etc/hosts", Writable: true, Private: true})
|
2014-05-19 18:04:51 -04:00
|
|
|
}
|
|
|
|
|
2014-08-28 10:18:08 -04:00
|
|
|
// Mount user specified volumes
|
|
|
|
// Note, these are not private because you may want propagation of (un)mounts from host
|
|
|
|
// volumes. For instance if you use -v /usr:/usr and the host later mounts /usr/share you
|
|
|
|
// want this new mount in the container
|
|
|
|
// These mounts must be ordered based on the length of the path that it is being mounted to (lexicographic)
|
|
|
|
for _, path := range container.sortedVolumeMounts() {
|
|
|
|
mounts = append(mounts, execdriver.Mount{
|
|
|
|
Source: container.Volumes[path],
|
|
|
|
Destination: path,
|
|
|
|
Writable: container.VolumesRW[path],
|
|
|
|
})
|
2014-08-08 11:00:18 -04:00
|
|
|
}
|
2014-05-19 18:04:51 -04:00
|
|
|
|
2014-08-28 10:18:08 -04:00
|
|
|
container.command.Mounts = mounts
|
2014-08-08 11:00:18 -04:00
|
|
|
return nil
|
|
|
|
}
|
2014-05-19 18:04:51 -04:00
|
|
|
|
2014-08-28 10:18:08 -04:00
|
|
|
func parseVolumesFromSpec(daemon *Daemon, spec string) (map[string]*Mount, error) {
|
|
|
|
specParts := strings.SplitN(spec, ":", 2)
|
|
|
|
if len(specParts) == 0 {
|
|
|
|
return nil, fmt.Errorf("Malformed volumes-from specification: %s", spec)
|
2014-08-08 11:00:18 -04:00
|
|
|
}
|
2014-05-19 18:04:51 -04:00
|
|
|
|
2014-08-28 10:18:08 -04:00
|
|
|
c := daemon.Get(specParts[0])
|
|
|
|
if c == nil {
|
|
|
|
return nil, fmt.Errorf("Container %s not found. Impossible to mount its volumes", specParts[0])
|
2014-08-08 11:00:18 -04:00
|
|
|
}
|
|
|
|
|
2014-08-28 10:18:08 -04:00
|
|
|
mounts := c.VolumeMounts()
|
|
|
|
|
|
|
|
if len(specParts) == 2 {
|
|
|
|
mode := specParts[1]
|
|
|
|
if validMountMode(mode) {
|
|
|
|
return nil, fmt.Errorf("Invalid mode for volumes-from: %s", mode)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Set the mode for the inheritted volume
|
|
|
|
for _, mnt := range mounts {
|
|
|
|
// Ensure that if the inherited volume is not writable, that we don't make
|
|
|
|
// it writable here
|
|
|
|
mnt.Writable = mnt.Writable && (mode == "rw")
|
|
|
|
}
|
2014-05-19 18:04:51 -04:00
|
|
|
}
|
2014-04-24 21:22:22 -04:00
|
|
|
|
2014-08-28 10:18:08 -04:00
|
|
|
return mounts, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (container *Container) VolumeMounts() map[string]*Mount {
|
|
|
|
mounts := make(map[string]*Mount)
|
|
|
|
|
|
|
|
for mountToPath, path := range container.Volumes {
|
|
|
|
if v := container.daemon.volumes.Get(path); v != nil {
|
|
|
|
mounts[mountToPath] = &Mount{volume: v, container: container, MountToPath: mountToPath, Writable: container.VolumesRW[mountToPath]}
|
|
|
|
}
|
2014-05-19 18:18:37 -04:00
|
|
|
}
|
2014-08-08 11:00:18 -04:00
|
|
|
|
2014-08-28 10:18:08 -04:00
|
|
|
return mounts
|
2014-05-19 18:18:37 -04:00
|
|
|
}
|
|
|
|
|
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-06-02 17:16:30 -04:00
|
|
|
if err := archive.CopyWithTar(source, destination); err != nil {
|
2014-02-14 20:15:40 -05:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
2014-05-19 18:18:37 -04:00
|
|
|
}
|
2014-03-18 18:28:40 -04:00
|
|
|
|
2014-06-02 17:16:30 -04:00
|
|
|
return copyOwnership(source, destination)
|
|
|
|
}
|
|
|
|
|
|
|
|
// copyOwnership copies the permissions and uid:gid of the source file
|
|
|
|
// into the destination file
|
|
|
|
func copyOwnership(source, destination string) error {
|
|
|
|
var stat syscall.Stat_t
|
2014-05-19 18:18:37 -04:00
|
|
|
|
2014-06-02 17:16:30 -04:00
|
|
|
if err := syscall.Stat(source, &stat); err != nil {
|
2014-05-19 18:18:37 -04:00
|
|
|
return err
|
|
|
|
}
|
2014-06-02 17:16:30 -04:00
|
|
|
|
|
|
|
if err := os.Chown(destination, int(stat.Uid), int(stat.Gid)); err != nil {
|
2014-05-19 18:18:37 -04:00
|
|
|
return err
|
|
|
|
}
|
2014-06-02 17:16:30 -04:00
|
|
|
|
|
|
|
return os.Chmod(destination, os.FileMode(stat.Mode))
|
2014-03-18 18:28:40 -04:00
|
|
|
}
|