2015-04-27 10:53:12 -04:00
|
|
|
// +build linux
|
|
|
|
|
2013-11-07 07:33:31 -05:00
|
|
|
/*
|
|
|
|
|
|
|
|
aufs driver directory structure
|
|
|
|
|
2015-04-27 10:53:12 -04:00
|
|
|
.
|
|
|
|
├── layers // Metadata of layers
|
|
|
|
│ ├── 1
|
|
|
|
│ ├── 2
|
|
|
|
│ └── 3
|
|
|
|
├── diff // Content of the layer
|
|
|
|
│ ├── 1 // Contains layers that need to be mounted for the id
|
|
|
|
│ ├── 2
|
|
|
|
│ └── 3
|
|
|
|
└── mnt // Mount points for the rw layers to be mounted
|
|
|
|
├── 1
|
|
|
|
├── 2
|
|
|
|
└── 3
|
2013-11-07 07:33:31 -05:00
|
|
|
|
|
|
|
*/
|
|
|
|
|
2013-10-31 21:07:54 -04:00
|
|
|
package aufs
|
|
|
|
|
|
|
|
import (
|
2013-11-07 20:57:14 -05:00
|
|
|
"bufio"
|
2013-10-31 21:07:54 -04:00
|
|
|
"fmt"
|
2015-03-26 02:02:21 -04:00
|
|
|
"io/ioutil"
|
2013-10-31 21:07:54 -04:00
|
|
|
"os"
|
|
|
|
"os/exec"
|
|
|
|
"path"
|
2016-03-09 16:23:04 -05:00
|
|
|
"path/filepath"
|
2013-11-07 20:57:14 -05:00
|
|
|
"strings"
|
2014-01-14 06:23:20 -05:00
|
|
|
"sync"
|
2014-05-29 15:55:59 -04:00
|
|
|
"syscall"
|
|
|
|
|
2015-03-26 18:22:04 -04:00
|
|
|
"github.com/Sirupsen/logrus"
|
2016-02-18 20:58:23 -05:00
|
|
|
"github.com/vbatts/tar-split/tar/storage"
|
2015-10-08 11:51:41 -04:00
|
|
|
|
2014-07-24 18:19:50 -04:00
|
|
|
"github.com/docker/docker/daemon/graphdriver"
|
2014-09-30 02:23:36 -04:00
|
|
|
"github.com/docker/docker/pkg/archive"
|
2014-10-29 15:06:51 -04:00
|
|
|
"github.com/docker/docker/pkg/chrootarchive"
|
2015-02-27 13:50:55 -05:00
|
|
|
"github.com/docker/docker/pkg/directory"
|
2015-10-08 11:51:41 -04:00
|
|
|
"github.com/docker/docker/pkg/idtools"
|
2014-07-24 18:19:50 -04:00
|
|
|
mountpk "github.com/docker/docker/pkg/mount"
|
2015-03-24 07:25:26 -04:00
|
|
|
"github.com/docker/docker/pkg/stringid"
|
2015-10-08 11:51:41 -04:00
|
|
|
|
2015-07-16 19:00:55 -04:00
|
|
|
"github.com/opencontainers/runc/libcontainer/label"
|
2013-10-31 21:07:54 -04:00
|
|
|
)
|
|
|
|
|
2014-02-18 05:58:38 -05:00
|
|
|
var (
|
2015-07-21 22:15:14 -04:00
|
|
|
// ErrAufsNotSupported is returned if aufs is not supported by the host.
|
2014-02-18 05:58:38 -05:00
|
|
|
ErrAufsNotSupported = fmt.Errorf("AUFS was not found in /proc/filesystems")
|
2014-06-02 21:26:41 -04:00
|
|
|
incompatibleFsMagic = []graphdriver.FsMagic{
|
|
|
|
graphdriver.FsMagicBtrfs,
|
|
|
|
graphdriver.FsMagicAufs,
|
|
|
|
}
|
2015-01-15 16:40:39 -05:00
|
|
|
backingFs = "<unknown>"
|
2015-03-26 02:02:21 -04:00
|
|
|
|
|
|
|
enableDirpermLock sync.Once
|
|
|
|
enableDirperm bool
|
2014-02-18 05:58:38 -05:00
|
|
|
)
|
|
|
|
|
2013-11-04 18:22:34 -05:00
|
|
|
func init() {
|
|
|
|
graphdriver.Register("aufs", Init)
|
|
|
|
}
|
|
|
|
|
2015-07-21 22:15:14 -04:00
|
|
|
// Driver contains information about the filesystem mounted.
|
2013-11-19 06:27:59 -05:00
|
|
|
type Driver struct {
|
2016-03-09 16:23:04 -05:00
|
|
|
root string
|
|
|
|
uidMaps []idtools.IDMap
|
|
|
|
gidMaps []idtools.IDMap
|
|
|
|
pathCacheLock sync.Mutex
|
|
|
|
pathCache map[string]string
|
2013-10-31 21:07:54 -04:00
|
|
|
}
|
|
|
|
|
2015-07-21 22:15:14 -04:00
|
|
|
// Init returns a new AUFS driver.
|
2013-11-03 20:54:51 -05:00
|
|
|
// An error is returned if AUFS is not supported.
|
2015-10-08 11:51:41 -04:00
|
|
|
func Init(root string, options []string, uidMaps, gidMaps []idtools.IDMap) (graphdriver.Driver, error) {
|
2015-01-15 16:40:39 -05:00
|
|
|
|
2013-11-04 18:22:34 -05:00
|
|
|
// Try to load the aufs kernel module
|
2013-11-07 20:57:14 -05:00
|
|
|
if err := supportsAufs(); err != nil {
|
2014-03-27 12:41:06 -04:00
|
|
|
return nil, graphdriver.ErrNotSupported
|
2013-11-04 18:22:34 -05:00
|
|
|
}
|
2014-05-29 15:55:59 -04:00
|
|
|
|
2015-01-15 16:40:39 -05:00
|
|
|
fsMagic, err := graphdriver.GetFSMagic(root)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
if fsName, ok := graphdriver.FsNames[fsMagic]; ok {
|
|
|
|
backingFs = fsName
|
2014-05-29 15:55:59 -04:00
|
|
|
}
|
|
|
|
|
2014-06-02 21:26:41 -04:00
|
|
|
for _, magic := range incompatibleFsMagic {
|
2015-01-15 16:40:39 -05:00
|
|
|
if fsMagic == magic {
|
2014-05-29 15:55:59 -04:00
|
|
|
return nil, graphdriver.ErrIncompatibleFS
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-11-07 07:33:31 -05:00
|
|
|
paths := []string{
|
|
|
|
"mnt",
|
|
|
|
"diff",
|
|
|
|
"layers",
|
|
|
|
}
|
|
|
|
|
2014-01-14 06:23:20 -05:00
|
|
|
a := &Driver{
|
2016-03-09 16:23:04 -05:00
|
|
|
root: root,
|
|
|
|
uidMaps: uidMaps,
|
|
|
|
gidMaps: gidMaps,
|
|
|
|
pathCache: make(map[string]string),
|
2014-01-14 06:23:20 -05:00
|
|
|
}
|
|
|
|
|
2015-10-08 11:51:41 -04:00
|
|
|
rootUID, rootGID, err := idtools.GetRootUIDGID(uidMaps, gidMaps)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
// Create the root aufs driver dir and return
|
|
|
|
// if it already exists
|
|
|
|
// If not populate the dir structure
|
2016-01-05 11:51:14 -05:00
|
|
|
if err := idtools.MkdirAllAs(root, 0700, rootUID, rootGID); err != nil {
|
2015-10-08 11:51:41 -04:00
|
|
|
if os.IsExist(err) {
|
|
|
|
return a, nil
|
|
|
|
}
|
2013-11-07 07:33:31 -05:00
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2014-10-30 17:04:56 -04:00
|
|
|
if err := mountpk.MakePrivate(root); err != nil {
|
2014-06-05 15:50:53 -04:00
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
Simplify and fix os.MkdirAll() usage
TL;DR: check for IsExist(err) after a failed MkdirAll() is both
redundant and wrong -- so two reasons to remove it.
Quoting MkdirAll documentation:
> MkdirAll creates a directory named path, along with any necessary
> parents, and returns nil, or else returns an error. If path
> is already a directory, MkdirAll does nothing and returns nil.
This means two things:
1. If a directory to be created already exists, no error is returned.
2. If the error returned is IsExist (EEXIST), it means there exists
a non-directory with the same name as MkdirAll need to use for
directory. Example: we want to MkdirAll("a/b"), but file "a"
(or "a/b") already exists, so MkdirAll fails.
The above is a theory, based on quoted documentation and my UNIX
knowledge.
3. In practice, though, current MkdirAll implementation [1] returns
ENOTDIR in most of cases described in #2, with the exception when
there is a race between MkdirAll and someone else creating the
last component of MkdirAll argument as a file. In this very case
MkdirAll() will indeed return EEXIST.
Because of #1, IsExist check after MkdirAll is not needed.
Because of #2 and #3, ignoring IsExist error is just plain wrong,
as directory we require is not created. It's cleaner to report
the error now.
Note this error is all over the tree, I guess due to copy-paste,
or trying to follow the same usage pattern as for Mkdir(),
or some not quite correct examples on the Internet.
[v2: a separate aufs commit is merged into this one]
[1] https://github.com/golang/go/blob/f9ed2f75/src/os/path.go
Signed-off-by: Kir Kolyshkin <kir@openvz.org>
2015-07-29 19:49:05 -04:00
|
|
|
// Populate the dir structure
|
2013-11-07 07:33:31 -05:00
|
|
|
for _, p := range paths {
|
2016-01-05 11:51:14 -05:00
|
|
|
if err := idtools.MkdirAllAs(path.Join(root, p), 0700, rootUID, rootGID); err != nil {
|
2013-11-07 07:33:31 -05:00
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
}
|
2014-01-14 06:23:20 -05:00
|
|
|
return a, nil
|
2013-10-31 21:07:54 -04:00
|
|
|
}
|
|
|
|
|
2013-11-07 20:57:14 -05:00
|
|
|
// Return a nil error if the kernel supports aufs
|
|
|
|
// We cannot modprobe because inside dind modprobe fails
|
|
|
|
// to run
|
|
|
|
func supportsAufs() error {
|
2013-11-14 12:42:12 -05:00
|
|
|
// We can try to modprobe aufs first before looking at
|
|
|
|
// proc/filesystems for when aufs is supported
|
|
|
|
exec.Command("modprobe", "aufs").Run()
|
|
|
|
|
2013-11-07 20:57:14 -05:00
|
|
|
f, err := os.Open("/proc/filesystems")
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
defer f.Close()
|
|
|
|
|
|
|
|
s := bufio.NewScanner(f)
|
|
|
|
for s.Scan() {
|
|
|
|
if strings.Contains(s.Text(), "aufs") {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
}
|
2014-02-18 05:58:38 -05:00
|
|
|
return ErrAufsNotSupported
|
2013-11-07 20:57:14 -05:00
|
|
|
}
|
|
|
|
|
2014-12-12 13:46:09 -05:00
|
|
|
func (a *Driver) rootPath() string {
|
2013-11-08 14:36:58 -05:00
|
|
|
return a.root
|
2013-11-07 07:33:31 -05:00
|
|
|
}
|
|
|
|
|
2014-12-12 13:46:09 -05:00
|
|
|
func (*Driver) String() string {
|
2013-11-07 07:33:31 -05:00
|
|
|
return "aufs"
|
|
|
|
}
|
|
|
|
|
2015-07-21 22:15:14 -04:00
|
|
|
// Status returns current information about the filesystem such as root directory, number of directories mounted, etc.
|
2014-12-12 13:46:09 -05:00
|
|
|
func (a *Driver) Status() [][2]string {
|
2013-11-20 16:53:54 -05:00
|
|
|
ids, _ := loadIds(path.Join(a.rootPath(), "layers"))
|
|
|
|
return [][2]string{
|
|
|
|
{"Root Dir", a.rootPath()},
|
2015-01-15 16:40:39 -05:00
|
|
|
{"Backing Filesystem", backingFs},
|
2013-11-20 16:53:54 -05:00
|
|
|
{"Dirs", fmt.Sprintf("%d", len(ids))},
|
2015-03-26 13:58:49 -04:00
|
|
|
{"Dirperm1 Supported", fmt.Sprintf("%v", useDirperm())},
|
2013-11-20 16:53:54 -05:00
|
|
|
}
|
2013-11-15 05:04:02 -05:00
|
|
|
}
|
|
|
|
|
2015-07-21 22:15:14 -04:00
|
|
|
// GetMetadata not implemented
|
2015-06-15 14:05:10 -04:00
|
|
|
func (a *Driver) GetMetadata(id string) (map[string]string, error) {
|
|
|
|
return nil, nil
|
|
|
|
}
|
|
|
|
|
2013-11-18 20:20:03 -05:00
|
|
|
// Exists returns true if the given id is registered with
|
|
|
|
// this driver
|
2014-12-12 13:46:09 -05:00
|
|
|
func (a *Driver) Exists(id string) bool {
|
2013-11-19 02:28:45 -05:00
|
|
|
if _, err := os.Lstat(path.Join(a.rootPath(), "layers", id)); err != nil {
|
2013-11-15 20:16:30 -05:00
|
|
|
return false
|
|
|
|
}
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
2015-07-21 22:15:14 -04:00
|
|
|
// Create three folders for each id
|
2013-11-07 07:33:31 -05:00
|
|
|
// mnt, layers, and diff
|
2015-10-28 09:19:51 -04:00
|
|
|
func (a *Driver) Create(id, parent, mountLabel string) error {
|
2016-02-27 07:54:17 -05:00
|
|
|
if err := a.createDirsFor(id); err != nil {
|
2013-11-04 23:51:12 -05:00
|
|
|
return err
|
|
|
|
}
|
2013-11-07 07:33:31 -05:00
|
|
|
// Write the layers metadata
|
|
|
|
f, err := os.Create(path.Join(a.rootPath(), "layers", id))
|
|
|
|
if err != nil {
|
2013-11-04 23:51:12 -05:00
|
|
|
return err
|
|
|
|
}
|
2013-11-07 07:33:31 -05:00
|
|
|
defer f.Close()
|
2013-11-04 23:51:12 -05:00
|
|
|
|
2013-11-07 07:33:31 -05:00
|
|
|
if parent != "" {
|
2016-02-27 07:54:17 -05:00
|
|
|
ids, err := getParentIds(a.rootPath(), parent)
|
2013-11-07 07:33:31 -05:00
|
|
|
if err != nil {
|
2013-11-04 23:51:12 -05:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2016-02-27 07:54:17 -05:00
|
|
|
if _, err := fmt.Fprintln(f, parent); err != nil {
|
2013-11-08 14:10:33 -05:00
|
|
|
return err
|
|
|
|
}
|
2013-11-07 07:33:31 -05:00
|
|
|
for _, i := range ids {
|
2016-02-27 07:54:17 -05:00
|
|
|
if _, err := fmt.Fprintln(f, i); err != nil {
|
2013-11-08 14:10:33 -05:00
|
|
|
return err
|
|
|
|
}
|
2013-11-07 07:33:31 -05:00
|
|
|
}
|
2013-11-04 23:51:12 -05:00
|
|
|
}
|
2016-03-09 16:23:04 -05:00
|
|
|
|
2013-11-04 23:51:12 -05:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2016-03-01 00:32:30 -05:00
|
|
|
// createDirsFor creates two directories for the given id.
|
|
|
|
// mnt and diff
|
2013-11-19 06:27:59 -05:00
|
|
|
func (a *Driver) createDirsFor(id string) error {
|
2013-11-07 07:33:31 -05:00
|
|
|
paths := []string{
|
|
|
|
"mnt",
|
|
|
|
"diff",
|
|
|
|
}
|
2013-11-04 23:51:12 -05:00
|
|
|
|
2015-10-08 11:51:41 -04:00
|
|
|
rootUID, rootGID, err := idtools.GetRootUIDGID(a.uidMaps, a.gidMaps)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2016-03-01 00:32:30 -05:00
|
|
|
// Directory permission is 0755.
|
|
|
|
// The path of directories are <aufs_root_path>/mnt/<image_id>
|
|
|
|
// and <aufs_root_path>/diff/<image_id>
|
2013-11-07 07:33:31 -05:00
|
|
|
for _, p := range paths {
|
2015-10-08 11:51:41 -04:00
|
|
|
if err := idtools.MkdirAllAs(path.Join(a.rootPath(), p, id), 0755, rootUID, rootGID); err != nil {
|
2013-11-07 07:33:31 -05:00
|
|
|
return err
|
|
|
|
}
|
2013-11-04 23:51:12 -05:00
|
|
|
}
|
2013-11-07 07:33:31 -05:00
|
|
|
return nil
|
|
|
|
}
|
2013-11-04 23:51:12 -05:00
|
|
|
|
2015-07-21 22:15:14 -04:00
|
|
|
// Remove will unmount and remove the given id.
|
2013-11-19 06:27:59 -05:00
|
|
|
func (a *Driver) Remove(id string) error {
|
2016-03-09 16:23:04 -05:00
|
|
|
a.pathCacheLock.Lock()
|
|
|
|
mountpoint, exists := a.pathCache[id]
|
|
|
|
a.pathCacheLock.Unlock()
|
|
|
|
if !exists {
|
|
|
|
mountpoint = a.getMountpoint(id)
|
2013-11-04 23:51:12 -05:00
|
|
|
}
|
2016-03-09 16:23:04 -05:00
|
|
|
if err := a.unmount(mountpoint); err != nil {
|
|
|
|
// no need to return here, we can still try to remove since the `Rename` will fail below if still mounted
|
|
|
|
logrus.Debugf("aufs: error while unmounting %s: %v", mountpoint, err)
|
2013-11-07 07:33:31 -05:00
|
|
|
}
|
|
|
|
|
2014-01-27 13:07:30 -05:00
|
|
|
// Atomically remove each directory in turn by first moving it out of the
|
|
|
|
// way (so that docker doesn't find it anymore) before doing removal of
|
|
|
|
// the whole tree.
|
2016-03-09 16:23:04 -05:00
|
|
|
tmpMntPath := path.Join(a.mntPath(), fmt.Sprintf("%s-removing", id))
|
|
|
|
if err := os.Rename(mountpoint, tmpMntPath); err != nil && !os.IsNotExist(err) {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
defer os.RemoveAll(tmpMntPath)
|
|
|
|
|
|
|
|
tmpDiffpath := path.Join(a.diffPath(), fmt.Sprintf("%s-removing", id))
|
|
|
|
if err := os.Rename(a.getDiffPath(id), tmpDiffpath); err != nil && !os.IsNotExist(err) {
|
|
|
|
return err
|
2013-11-07 07:33:31 -05:00
|
|
|
}
|
2016-03-09 16:23:04 -05:00
|
|
|
defer os.RemoveAll(tmpDiffpath)
|
|
|
|
|
2013-11-07 07:33:31 -05:00
|
|
|
// Remove the layers file for the id
|
2013-11-19 20:08:21 -05:00
|
|
|
if err := os.Remove(path.Join(a.rootPath(), "layers", id)); err != nil && !os.IsNotExist(err) {
|
|
|
|
return err
|
|
|
|
}
|
2016-03-09 16:23:04 -05:00
|
|
|
|
|
|
|
a.pathCacheLock.Lock()
|
|
|
|
delete(a.pathCache, id)
|
|
|
|
a.pathCacheLock.Unlock()
|
2013-11-19 20:08:21 -05:00
|
|
|
return nil
|
2013-11-04 23:51:12 -05:00
|
|
|
}
|
|
|
|
|
2015-07-21 22:15:14 -04:00
|
|
|
// Get returns the rootfs path for the id.
|
2013-11-07 07:33:31 -05:00
|
|
|
// This will mount the dir at it's given path
|
2014-04-17 19:47:27 -04:00
|
|
|
func (a *Driver) Get(id, mountLabel string) (string, error) {
|
2016-02-12 10:20:16 -05:00
|
|
|
parents, err := a.getParentLayerPaths(id)
|
|
|
|
if err != nil && !os.IsNotExist(err) {
|
|
|
|
return "", err
|
|
|
|
}
|
|
|
|
|
2016-03-09 16:23:04 -05:00
|
|
|
a.pathCacheLock.Lock()
|
|
|
|
m, exists := a.pathCache[id]
|
|
|
|
a.pathCacheLock.Unlock()
|
|
|
|
|
|
|
|
if !exists {
|
|
|
|
m = a.getDiffPath(id)
|
|
|
|
if len(parents) > 0 {
|
|
|
|
m = a.getMountpoint(id)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-11-07 07:33:31 -05:00
|
|
|
// If a dir does not have a parent ( no layers )do not try to mount
|
|
|
|
// just return the diff path to the data
|
2016-02-12 10:20:16 -05:00
|
|
|
if len(parents) > 0 {
|
2016-03-09 16:23:04 -05:00
|
|
|
if err := a.mount(id, m, mountLabel, parents); err != nil {
|
|
|
|
return "", err
|
2013-11-07 07:33:31 -05:00
|
|
|
}
|
|
|
|
}
|
2016-03-09 16:23:04 -05:00
|
|
|
|
|
|
|
a.pathCacheLock.Lock()
|
|
|
|
a.pathCache[id] = m
|
|
|
|
a.pathCacheLock.Unlock()
|
|
|
|
return m, nil
|
2013-11-07 07:33:31 -05:00
|
|
|
}
|
|
|
|
|
2015-07-21 22:15:14 -04:00
|
|
|
// Put unmounts and updates list of active mounts.
|
2015-01-09 17:14:52 -05:00
|
|
|
func (a *Driver) Put(id string) error {
|
2016-03-09 16:23:04 -05:00
|
|
|
a.pathCacheLock.Lock()
|
|
|
|
m, exists := a.pathCache[id]
|
|
|
|
if !exists {
|
|
|
|
m = a.getMountpoint(id)
|
|
|
|
a.pathCache[id] = m
|
2015-08-26 19:12:17 -04:00
|
|
|
}
|
2016-03-09 16:23:04 -05:00
|
|
|
a.pathCacheLock.Unlock()
|
|
|
|
|
|
|
|
err := a.unmount(m)
|
|
|
|
if err != nil {
|
|
|
|
logrus.Debugf("Failed to unmount %s aufs: %v", id, err)
|
2014-01-14 06:23:20 -05:00
|
|
|
}
|
2016-03-09 16:23:04 -05:00
|
|
|
return err
|
2013-12-05 16:18:02 -05:00
|
|
|
}
|
|
|
|
|
2014-09-10 23:30:52 -04:00
|
|
|
// Diff produces an archive of the changes between the specified
|
|
|
|
// layer and its parent layer which may be "".
|
|
|
|
func (a *Driver) Diff(id, parent string) (archive.Archive, error) {
|
|
|
|
// AUFS doesn't need the parent layer to produce a diff.
|
2014-02-13 19:05:36 -05:00
|
|
|
return archive.TarWithOptions(path.Join(a.rootPath(), "diff", id), &archive.TarOptions{
|
2014-10-23 17:30:11 -04:00
|
|
|
Compression: archive.Uncompressed,
|
2015-09-29 13:18:28 -04:00
|
|
|
ExcludePatterns: []string{archive.WhiteoutMetaPrefix + "*", "!" + archive.WhiteoutOpaqueDir},
|
2015-10-08 11:51:41 -04:00
|
|
|
UIDMaps: a.uidMaps,
|
|
|
|
GIDMaps: a.gidMaps,
|
2013-11-11 20:17:38 -05:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2016-02-18 20:58:23 -05:00
|
|
|
type fileGetNilCloser struct {
|
|
|
|
storage.FileGetter
|
|
|
|
}
|
|
|
|
|
|
|
|
func (f fileGetNilCloser) Close() error {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// DiffGetter returns a FileGetCloser that can read files from the directory that
|
|
|
|
// contains files for the layer differences. Used for direct access for tar-split.
|
|
|
|
func (a *Driver) DiffGetter(id string) (graphdriver.FileGetCloser, error) {
|
|
|
|
p := path.Join(a.rootPath(), "diff", id)
|
|
|
|
return fileGetNilCloser{storage.NewPathFileGetter(p)}, nil
|
2015-12-04 16:27:44 -05:00
|
|
|
}
|
|
|
|
|
2015-08-03 21:52:54 -04:00
|
|
|
func (a *Driver) applyDiff(id string, diff archive.Reader) error {
|
2016-01-21 10:52:37 -05:00
|
|
|
return chrootarchive.UntarUncompressed(diff, path.Join(a.rootPath(), "diff", id), &archive.TarOptions{
|
2015-10-08 11:51:41 -04:00
|
|
|
UIDMaps: a.uidMaps,
|
|
|
|
GIDMaps: a.gidMaps,
|
2016-01-21 10:52:37 -05:00
|
|
|
})
|
2013-11-07 07:33:31 -05:00
|
|
|
}
|
2013-10-31 21:07:54 -04:00
|
|
|
|
2014-09-10 23:30:52 -04:00
|
|
|
// DiffSize calculates the changes between the specified id
|
|
|
|
// and its parent and returns the size in bytes of the changes
|
|
|
|
// relative to its base filesystem directory.
|
2014-12-17 21:26:03 -05:00
|
|
|
func (a *Driver) DiffSize(id, parent string) (size int64, err error) {
|
2014-09-10 23:30:52 -04:00
|
|
|
// AUFS doesn't need the parent layer to calculate the diff size.
|
2015-02-27 13:50:55 -05:00
|
|
|
return directory.Size(path.Join(a.rootPath(), "diff", id))
|
2013-11-07 07:33:31 -05:00
|
|
|
}
|
|
|
|
|
2014-09-10 23:30:52 -04:00
|
|
|
// ApplyDiff extracts the changeset from the given diff into the
|
|
|
|
// layer with the specified id and parent, returning the size of the
|
|
|
|
// new layer in bytes.
|
2015-08-03 21:52:54 -04:00
|
|
|
func (a *Driver) ApplyDiff(id, parent string, diff archive.Reader) (size int64, err error) {
|
2014-09-10 23:30:52 -04:00
|
|
|
// AUFS doesn't need the parent id to apply the diff.
|
|
|
|
if err = a.applyDiff(id, diff); err != nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
return a.DiffSize(id, parent)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Changes produces a list of changes between the specified layer
|
|
|
|
// and its parent layer. If parent is "", then all changes will be ADD changes.
|
|
|
|
func (a *Driver) Changes(id, parent string) ([]archive.Change, error) {
|
|
|
|
// AUFS doesn't have snapshots, so we need to get changes from all parent
|
|
|
|
// layers.
|
2013-11-08 14:10:33 -05:00
|
|
|
layers, err := a.getParentLayerPaths(id)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return archive.Changes(layers, path.Join(a.rootPath(), "diff", id))
|
|
|
|
}
|
|
|
|
|
2013-11-19 06:27:59 -05:00
|
|
|
func (a *Driver) getParentLayerPaths(id string) ([]string, error) {
|
2013-11-08 14:10:33 -05:00
|
|
|
parentIds, err := getParentIds(a.rootPath(), id)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
layers := make([]string, len(parentIds))
|
|
|
|
|
|
|
|
// Get the diff paths for all the parent ids
|
|
|
|
for i, p := range parentIds {
|
|
|
|
layers[i] = path.Join(a.rootPath(), "diff", p)
|
|
|
|
}
|
|
|
|
return layers, nil
|
2013-11-07 07:33:31 -05:00
|
|
|
}
|
|
|
|
|
2016-03-09 16:23:04 -05:00
|
|
|
func (a *Driver) mount(id string, target string, mountLabel string, layers []string) error {
|
2013-11-07 07:33:31 -05:00
|
|
|
// If the id is mounted or we get an error return
|
2016-03-09 16:23:04 -05:00
|
|
|
if mounted, err := a.mounted(target); err != nil || mounted {
|
2013-10-31 21:07:54 -04:00
|
|
|
return err
|
|
|
|
}
|
2013-11-07 07:33:31 -05:00
|
|
|
|
2016-03-09 16:23:04 -05:00
|
|
|
rw := a.getDiffPath(id)
|
2013-11-07 07:33:31 -05:00
|
|
|
|
2014-04-17 19:47:27 -04:00
|
|
|
if err := a.aufsMount(layers, rw, target, mountLabel); err != nil {
|
2015-03-12 09:15:32 -04:00
|
|
|
return fmt.Errorf("error creating aufs mount to %s: %v", target, err)
|
2013-10-31 21:07:54 -04:00
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2016-03-09 16:23:04 -05:00
|
|
|
func (a *Driver) unmount(mountPath string) error {
|
|
|
|
if mounted, err := a.mounted(mountPath); err != nil || !mounted {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
if err := Unmount(mountPath); err != nil {
|
2013-10-31 21:07:54 -04:00
|
|
|
return err
|
|
|
|
}
|
2016-03-09 16:23:04 -05:00
|
|
|
return nil
|
2013-10-31 21:07:54 -04:00
|
|
|
}
|
|
|
|
|
2016-03-09 16:23:04 -05:00
|
|
|
func (a *Driver) mounted(mountpoint string) (bool, error) {
|
|
|
|
return graphdriver.Mounted(graphdriver.FsMagicAufs, mountpoint)
|
2013-11-04 23:51:12 -05:00
|
|
|
}
|
|
|
|
|
2015-07-21 22:15:14 -04:00
|
|
|
// Cleanup aufs and unmount all mountpoints
|
2013-11-19 06:27:59 -05:00
|
|
|
func (a *Driver) Cleanup() error {
|
2016-03-09 16:23:04 -05:00
|
|
|
var dirs []string
|
|
|
|
if err := filepath.Walk(a.mntPath(), func(path string, info os.FileInfo, err error) error {
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
if !info.IsDir() {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
dirs = append(dirs, path)
|
|
|
|
return nil
|
|
|
|
}); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, m := range dirs {
|
2015-08-26 19:12:17 -04:00
|
|
|
if err := a.unmount(m); err != nil {
|
2016-03-09 16:23:04 -05:00
|
|
|
logrus.Debugf("aufs error unmounting %s: %s", stringid.TruncateID(m), err)
|
2013-11-04 23:51:12 -05:00
|
|
|
}
|
|
|
|
}
|
2014-06-05 15:50:53 -04:00
|
|
|
return mountpk.Unmount(a.root)
|
2013-10-31 21:07:54 -04:00
|
|
|
}
|
|
|
|
|
2014-04-17 19:47:27 -04:00
|
|
|
func (a *Driver) aufsMount(ro []string, rw, target, mountLabel string) (err error) {
|
2013-11-26 13:50:53 -05:00
|
|
|
defer func() {
|
|
|
|
if err != nil {
|
|
|
|
Unmount(target)
|
|
|
|
}
|
|
|
|
}()
|
2013-10-31 21:07:54 -04:00
|
|
|
|
2014-11-13 12:57:28 -05:00
|
|
|
// Mount options are clipped to page size(4096 bytes). If there are more
|
|
|
|
// layers then these are remounted individually using append.
|
|
|
|
|
2015-03-26 02:02:21 -04:00
|
|
|
offset := 54
|
|
|
|
if useDirperm() {
|
|
|
|
offset += len("dirperm1")
|
|
|
|
}
|
|
|
|
b := make([]byte, syscall.Getpagesize()-len(mountLabel)-offset) // room for xino & mountLabel
|
2014-11-13 12:57:28 -05:00
|
|
|
bp := copy(b, fmt.Sprintf("br:%s=rw", rw))
|
|
|
|
|
|
|
|
firstMount := true
|
|
|
|
i := 0
|
|
|
|
|
|
|
|
for {
|
|
|
|
for ; i < len(ro); i++ {
|
|
|
|
layer := fmt.Sprintf(":%s=ro+wh", ro[i])
|
|
|
|
|
|
|
|
if firstMount {
|
|
|
|
if bp+len(layer) > len(b) {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
bp += copy(b[bp:], layer)
|
|
|
|
} else {
|
|
|
|
data := label.FormatMountLabel(fmt.Sprintf("append%s", layer), mountLabel)
|
2015-07-21 22:15:14 -04:00
|
|
|
if err = mount("none", target, "aufs", syscall.MS_REMOUNT, data); err != nil {
|
2014-11-13 12:57:28 -05:00
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
2013-10-31 21:07:54 -04:00
|
|
|
}
|
2013-11-26 13:50:53 -05:00
|
|
|
|
2014-11-13 12:57:28 -05:00
|
|
|
if firstMount {
|
2016-01-21 10:52:37 -05:00
|
|
|
opts := "dio,xino=/dev/shm/aufs.xino"
|
2015-03-26 02:02:21 -04:00
|
|
|
if useDirperm() {
|
|
|
|
opts += ",dirperm1"
|
|
|
|
}
|
|
|
|
data := label.FormatMountLabel(fmt.Sprintf("%s,%s", string(b[:bp]), opts), mountLabel)
|
2014-11-13 12:57:28 -05:00
|
|
|
if err = mount("none", target, "aufs", 0, data); err != nil {
|
2013-11-26 13:50:53 -05:00
|
|
|
return
|
|
|
|
}
|
2014-11-13 12:57:28 -05:00
|
|
|
firstMount = false
|
2013-10-31 21:07:54 -04:00
|
|
|
}
|
2013-11-26 13:50:53 -05:00
|
|
|
|
2014-11-13 12:57:28 -05:00
|
|
|
if i == len(ro) {
|
|
|
|
break
|
|
|
|
}
|
2013-11-26 13:50:53 -05:00
|
|
|
}
|
2014-11-13 12:57:28 -05:00
|
|
|
|
|
|
|
return
|
2013-10-31 21:07:54 -04:00
|
|
|
}
|
2015-03-26 02:02:21 -04:00
|
|
|
|
|
|
|
// useDirperm checks dirperm1 mount option can be used with the current
|
|
|
|
// version of aufs.
|
|
|
|
func useDirperm() bool {
|
|
|
|
enableDirpermLock.Do(func() {
|
|
|
|
base, err := ioutil.TempDir("", "docker-aufs-base")
|
|
|
|
if err != nil {
|
2015-03-30 14:46:44 -04:00
|
|
|
logrus.Errorf("error checking dirperm1: %v", err)
|
2015-03-26 02:02:21 -04:00
|
|
|
return
|
|
|
|
}
|
|
|
|
defer os.RemoveAll(base)
|
|
|
|
|
|
|
|
union, err := ioutil.TempDir("", "docker-aufs-union")
|
|
|
|
if err != nil {
|
2015-03-30 14:46:44 -04:00
|
|
|
logrus.Errorf("error checking dirperm1: %v", err)
|
2015-03-26 02:02:21 -04:00
|
|
|
return
|
|
|
|
}
|
|
|
|
defer os.RemoveAll(union)
|
|
|
|
|
|
|
|
opts := fmt.Sprintf("br:%s,dirperm1,xino=/dev/shm/aufs.xino", base)
|
|
|
|
if err := mount("none", union, "aufs", 0, opts); err != nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
enableDirperm = true
|
|
|
|
if err := Unmount(union); err != nil {
|
2015-03-30 14:46:44 -04:00
|
|
|
logrus.Errorf("error checking dirperm1: failed to unmount %v", err)
|
2015-03-26 02:02:21 -04:00
|
|
|
}
|
|
|
|
})
|
|
|
|
return enableDirperm
|
|
|
|
}
|