2013-11-03 20:54:51 -05:00
|
|
|
package graphdriver
|
2013-10-31 21:07:54 -04:00
|
|
|
|
2013-11-04 18:22:34 -05:00
|
|
|
import (
|
2014-03-27 12:41:06 -04:00
|
|
|
"errors"
|
2013-11-04 18:22:34 -05:00
|
|
|
"fmt"
|
2016-10-20 19:40:59 -04:00
|
|
|
"io"
|
2013-11-19 06:13:22 -05:00
|
|
|
"os"
|
2015-04-24 15:35:51 -04:00
|
|
|
"path/filepath"
|
2014-11-15 12:54:21 -05:00
|
|
|
"strings"
|
2014-06-05 15:50:53 -04:00
|
|
|
|
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-09-30 02:23:36 -04:00
|
|
|
"github.com/docker/docker/pkg/archive"
|
2015-10-08 11:51:41 -04:00
|
|
|
"github.com/docker/docker/pkg/idtools"
|
2016-10-07 16:53:14 -04:00
|
|
|
"github.com/docker/docker/pkg/plugingetter"
|
2013-11-04 18:22:34 -05:00
|
|
|
)
|
|
|
|
|
2015-07-21 18:21:05 -04:00
|
|
|
// FsMagic unsigned id of the filesystem in use.
|
2015-01-08 19:22:38 -05:00
|
|
|
type FsMagic uint32
|
2014-06-02 21:26:41 -04:00
|
|
|
|
|
|
|
const (
|
2015-12-13 11:00:39 -05:00
|
|
|
// FsMagicUnsupported is a predefined constant value other than a valid filesystem id.
|
2015-01-15 16:40:39 -05:00
|
|
|
FsMagicUnsupported = FsMagic(0x00000000)
|
|
|
|
)
|
|
|
|
|
|
|
|
var (
|
2015-12-13 11:00:39 -05:00
|
|
|
// All registered drivers
|
2015-01-15 16:40:39 -05:00
|
|
|
drivers map[string]InitFunc
|
|
|
|
|
2015-07-21 18:21:05 -04:00
|
|
|
// ErrNotSupported returned when driver is not supported.
|
|
|
|
ErrNotSupported = errors.New("driver not supported")
|
|
|
|
// ErrPrerequisites retuned when driver does not meet prerequisites.
|
|
|
|
ErrPrerequisites = errors.New("prerequisites for driver not satisfied (wrong filesystem?)")
|
|
|
|
// ErrIncompatibleFS returned when file system is not supported.
|
2015-07-07 15:27:19 -04:00
|
|
|
ErrIncompatibleFS = fmt.Errorf("backing file system is unsupported for this graph driver")
|
2014-06-02 21:26:41 -04:00
|
|
|
)
|
|
|
|
|
2016-11-09 15:59:58 -05:00
|
|
|
//CreateOpts contains optional arguments for Create() and CreateReadWrite()
|
|
|
|
// methods.
|
|
|
|
type CreateOpts struct {
|
|
|
|
MountLabel string
|
|
|
|
StorageOpt map[string]string
|
|
|
|
}
|
|
|
|
|
2015-07-21 18:21:05 -04:00
|
|
|
// InitFunc initializes the storage driver.
|
2015-10-08 11:51:41 -04:00
|
|
|
type InitFunc func(root string, options []string, uidMaps, gidMaps []idtools.IDMap) (Driver, error)
|
2013-11-04 23:51:12 -05:00
|
|
|
|
2014-09-16 15:13:50 -04:00
|
|
|
// ProtoDriver defines the basic capabilities of a driver.
|
|
|
|
// This interface exists solely to be a minimum set of methods
|
|
|
|
// for client code which choose not to implement the entire Driver
|
|
|
|
// interface and use the NaiveDiffDriver wrapper constructor.
|
|
|
|
//
|
|
|
|
// Use of ProtoDriver directly by client code is not recommended.
|
|
|
|
type ProtoDriver interface {
|
2014-09-10 23:30:52 -04:00
|
|
|
// String returns a string representation of this driver.
|
2013-11-15 04:24:48 -05:00
|
|
|
String() string
|
2016-02-18 20:24:59 -05:00
|
|
|
// CreateReadWrite creates a new, empty filesystem layer that is ready
|
2016-11-09 15:59:58 -05:00
|
|
|
// to be used as the storage for a container. Additional options can
|
|
|
|
// be passed in opts. parent may be "" and opts may be nil.
|
|
|
|
CreateReadWrite(id, parent string, opts *CreateOpts) error
|
2014-09-10 23:30:52 -04:00
|
|
|
// Create creates a new, empty, filesystem layer with the
|
2016-11-09 15:59:58 -05:00
|
|
|
// specified id and parent and options passed in opts. Parent
|
|
|
|
// may be "" and opts may be nil.
|
|
|
|
Create(id, parent string, opts *CreateOpts) error
|
2014-09-16 15:13:50 -04:00
|
|
|
// Remove attempts to remove the filesystem layer with this id.
|
2013-11-07 15:34:01 -05:00
|
|
|
Remove(id string) error
|
2014-09-10 23:30:52 -04:00
|
|
|
// Get returns the mountpoint for the layered filesystem referred
|
|
|
|
// to by this id. You can optionally specify a mountLabel or "".
|
|
|
|
// Returns the absolute path to the mounted layered filesystem.
|
2014-04-17 19:47:27 -04:00
|
|
|
Get(id, mountLabel string) (dir string, err error)
|
2014-09-10 23:30:52 -04:00
|
|
|
// Put releases the system resources for the specified id,
|
|
|
|
// e.g, unmounting layered filesystem.
|
2015-01-09 17:14:52 -05:00
|
|
|
Put(id string) error
|
2014-09-10 23:30:52 -04:00
|
|
|
// Exists returns whether a filesystem layer with the specified
|
|
|
|
// ID exists on this driver.
|
2013-11-19 05:32:08 -05:00
|
|
|
Exists(id string) bool
|
2014-09-10 23:30:52 -04:00
|
|
|
// Status returns a set of key-value pairs which give low
|
|
|
|
// level diagnostic status about this driver.
|
2013-11-15 05:04:02 -05:00
|
|
|
Status() [][2]string
|
2015-06-15 14:05:10 -04:00
|
|
|
// Returns a set of key-value pairs which give low level information
|
|
|
|
// about the image/container driver is managing.
|
|
|
|
GetMetadata(id string) (map[string]string, error)
|
2014-09-10 23:30:52 -04:00
|
|
|
// Cleanup performs necessary tasks to release resources
|
|
|
|
// held by the driver, e.g., unmounting all layered filesystems
|
|
|
|
// known to this driver.
|
2013-11-11 20:17:38 -05:00
|
|
|
Cleanup() error
|
|
|
|
}
|
|
|
|
|
2016-04-21 12:08:37 -04:00
|
|
|
// DiffDriver is the interface to use to implement graph diffs
|
|
|
|
type DiffDriver interface {
|
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 "".
|
2016-10-20 19:40:59 -04:00
|
|
|
Diff(id, parent string) (io.ReadCloser, error)
|
2014-09-10 23:30:52 -04:00
|
|
|
// Changes produces a list of changes between the specified layer
|
|
|
|
// and its parent layer. If parent is "", then all changes will be ADD changes.
|
|
|
|
Changes(id, parent string) ([]archive.Change, error)
|
|
|
|
// 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
|
|
|
// The archive.Reader must be an uncompressed stream.
|
2016-10-20 19:40:59 -04:00
|
|
|
ApplyDiff(id, parent string, diff io.Reader) (size int64, err error)
|
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
|
|
|
DiffSize(id, parent string) (size int64, err error)
|
2013-11-11 10:47:36 -05:00
|
|
|
}
|
|
|
|
|
2016-04-21 12:08:37 -04:00
|
|
|
// Driver is the interface for layered/snapshot file system drivers.
|
|
|
|
type Driver interface {
|
|
|
|
ProtoDriver
|
|
|
|
DiffDriver
|
|
|
|
}
|
|
|
|
|
2016-02-18 20:58:23 -05:00
|
|
|
// DiffGetterDriver is the interface for layered file system drivers that
|
|
|
|
// provide a specialized function for getting file contents for tar-split.
|
|
|
|
type DiffGetterDriver interface {
|
|
|
|
Driver
|
|
|
|
// DiffGetter returns an interface to efficiently retrieve the contents
|
|
|
|
// of files in a layer.
|
|
|
|
DiffGetter(id string) (FileGetCloser, error)
|
|
|
|
}
|
|
|
|
|
|
|
|
// FileGetCloser extends the storage.FileGetter interface with a Close method
|
|
|
|
// for cleaning up.
|
|
|
|
type FileGetCloser interface {
|
|
|
|
storage.FileGetter
|
|
|
|
// Close cleans up any resources associated with the FileGetCloser.
|
|
|
|
Close() error
|
|
|
|
}
|
|
|
|
|
2016-05-06 16:09:45 -04:00
|
|
|
// Checker makes checks on specified filesystems.
|
|
|
|
type Checker interface {
|
|
|
|
// IsMounted returns true if the provided path is mounted for the specific checker
|
|
|
|
IsMounted(path string) bool
|
|
|
|
}
|
|
|
|
|
2013-11-07 15:31:50 -05:00
|
|
|
func init() {
|
|
|
|
drivers = make(map[string]InitFunc)
|
|
|
|
}
|
|
|
|
|
2016-05-07 21:36:10 -04:00
|
|
|
// Register registers an InitFunc for the driver.
|
2013-11-04 18:22:34 -05:00
|
|
|
func Register(name string, initFunc InitFunc) error {
|
|
|
|
if _, exists := drivers[name]; exists {
|
|
|
|
return fmt.Errorf("Name already registered %s", name)
|
|
|
|
}
|
|
|
|
drivers[name] = initFunc
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2015-07-21 18:21:05 -04:00
|
|
|
// GetDriver initializes and returns the registered driver
|
2016-11-19 11:41:07 -05:00
|
|
|
func GetDriver(name string, pg plugingetter.PluginGetter, config Options) (Driver, error) {
|
2013-11-07 21:49:32 -05:00
|
|
|
if initFunc, exists := drivers[name]; exists {
|
2016-11-19 11:41:07 -05:00
|
|
|
return initFunc(filepath.Join(config.Root, name), config.DriverOptions, config.UIDMaps, config.GIDMaps)
|
2013-11-07 21:49:32 -05:00
|
|
|
}
|
2016-12-10 11:40:01 -05:00
|
|
|
|
2016-11-19 11:41:07 -05:00
|
|
|
pluginDriver, err := lookupPlugin(name, pg, config)
|
2016-12-10 11:40:01 -05:00
|
|
|
if err == nil {
|
2015-06-05 16:09:53 -04:00
|
|
|
return pluginDriver, nil
|
|
|
|
}
|
2016-11-19 11:41:07 -05:00
|
|
|
logrus.WithError(err).WithField("driver", name).WithField("home-dir", config.Root).Error("Failed to GetDriver graph")
|
2014-03-27 12:41:06 -04:00
|
|
|
return nil, ErrNotSupported
|
2013-11-07 21:49:32 -05:00
|
|
|
}
|
|
|
|
|
2015-12-13 11:00:39 -05:00
|
|
|
// getBuiltinDriver initializes and returns the registered driver, but does not try to load from plugins
|
2015-10-08 11:51:41 -04:00
|
|
|
func getBuiltinDriver(name, home string, options []string, uidMaps, gidMaps []idtools.IDMap) (Driver, error) {
|
2015-10-08 21:29:20 -04:00
|
|
|
if initFunc, exists := drivers[name]; exists {
|
2015-10-08 11:51:41 -04:00
|
|
|
return initFunc(filepath.Join(home, name), options, uidMaps, gidMaps)
|
2015-10-08 21:29:20 -04:00
|
|
|
}
|
|
|
|
logrus.Errorf("Failed to built-in GetDriver graph %s %s", name, home)
|
|
|
|
return nil, ErrNotSupported
|
|
|
|
}
|
|
|
|
|
2016-11-19 11:41:07 -05:00
|
|
|
// Options is used to initialize a graphdriver
|
|
|
|
type Options struct {
|
|
|
|
Root string
|
|
|
|
DriverOptions []string
|
|
|
|
UIDMaps []idtools.IDMap
|
|
|
|
GIDMaps []idtools.IDMap
|
|
|
|
ExperimentalEnabled bool
|
|
|
|
}
|
|
|
|
|
2015-07-21 18:21:05 -04:00
|
|
|
// New creates the driver and initializes it at the specified root.
|
2016-11-19 11:41:07 -05:00
|
|
|
func New(name string, pg plugingetter.PluginGetter, config Options) (Driver, error) {
|
2015-12-16 15:32:16 -05:00
|
|
|
if name != "" {
|
2016-07-29 14:12:55 -04:00
|
|
|
logrus.Debugf("[graphdriver] trying provided driver: %s", name) // so the logs show specified driver
|
2016-11-19 11:41:07 -05:00
|
|
|
return GetDriver(name, pg, config)
|
2013-11-07 21:49:32 -05:00
|
|
|
}
|
2013-11-19 06:13:22 -05:00
|
|
|
|
2015-04-01 14:12:15 -04:00
|
|
|
// Guess for prior driver
|
2016-11-19 11:41:07 -05:00
|
|
|
driversMap := scanPriorDrivers(config.Root)
|
2015-07-07 15:27:19 -04:00
|
|
|
for _, name := range priority {
|
|
|
|
if name == "vfs" {
|
|
|
|
// don't use vfs even if there is state present.
|
|
|
|
continue
|
2015-04-01 14:12:15 -04:00
|
|
|
}
|
2016-03-09 18:23:31 -05:00
|
|
|
if _, prior := driversMap[name]; prior {
|
2015-07-07 15:27:19 -04:00
|
|
|
// of the state found from prior drivers, check in order of our priority
|
|
|
|
// which we would prefer
|
2016-11-19 11:41:07 -05:00
|
|
|
driver, err := getBuiltinDriver(name, config.Root, config.DriverOptions, config.UIDMaps, config.GIDMaps)
|
2016-03-09 18:23:31 -05:00
|
|
|
if err != nil {
|
|
|
|
// unlike below, we will return error here, because there is prior
|
|
|
|
// state, and now it is no longer supported/prereq/compatible, so
|
|
|
|
// something changed and needs attention. Otherwise the daemon's
|
|
|
|
// images would just "disappear".
|
2016-07-29 14:12:55 -04:00
|
|
|
logrus.Errorf("[graphdriver] prior storage driver %s failed: %s", name, err)
|
2016-03-09 18:23:31 -05:00
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
// abort starting when there are other prior configured drivers
|
|
|
|
// to ensure the user explicitly selects the driver to load
|
|
|
|
if len(driversMap)-1 > 0 {
|
|
|
|
var driversSlice []string
|
|
|
|
for name := range driversMap {
|
|
|
|
driversSlice = append(driversSlice, name)
|
2015-07-07 15:27:19 -04:00
|
|
|
}
|
2016-03-09 18:23:31 -05:00
|
|
|
|
2016-11-19 11:41:07 -05:00
|
|
|
return nil, fmt.Errorf("%s contains several valid graphdrivers: %s; Please cleanup or explicitly choose storage driver (-s <DRIVER>)", config.Root, strings.Join(driversSlice, ", "))
|
2015-07-07 15:27:19 -04:00
|
|
|
}
|
2016-03-09 18:23:31 -05:00
|
|
|
|
2016-07-29 14:12:55 -04:00
|
|
|
logrus.Infof("[graphdriver] using prior storage driver: %s", name)
|
2016-03-09 18:23:31 -05:00
|
|
|
return driver, nil
|
2015-04-01 14:12:15 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-11-04 18:22:34 -05:00
|
|
|
// Check for priority drivers first
|
|
|
|
for _, name := range priority {
|
2016-11-19 11:41:07 -05:00
|
|
|
driver, err := getBuiltinDriver(name, config.Root, config.DriverOptions, config.UIDMaps, config.GIDMaps)
|
2014-03-27 12:41:06 -04:00
|
|
|
if err != nil {
|
2016-03-09 18:23:31 -05:00
|
|
|
if isDriverNotSupported(err) {
|
2014-03-27 12:41:06 -04:00
|
|
|
continue
|
|
|
|
}
|
|
|
|
return nil, err
|
2013-11-04 18:22:34 -05:00
|
|
|
}
|
2013-11-07 21:49:32 -05:00
|
|
|
return driver, nil
|
2013-11-04 18:22:34 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
// Check all registered drivers if no priority driver is found
|
2016-03-09 18:23:31 -05:00
|
|
|
for name, initFunc := range drivers {
|
2016-11-19 11:41:07 -05:00
|
|
|
driver, err := initFunc(filepath.Join(config.Root, name), config.DriverOptions, config.UIDMaps, config.GIDMaps)
|
2016-03-09 18:23:31 -05:00
|
|
|
if err != nil {
|
|
|
|
if isDriverNotSupported(err) {
|
2014-03-27 12:41:06 -04:00
|
|
|
continue
|
|
|
|
}
|
|
|
|
return nil, err
|
2013-11-04 18:22:34 -05:00
|
|
|
}
|
|
|
|
return driver, nil
|
|
|
|
}
|
2014-03-27 12:41:06 -04:00
|
|
|
return nil, fmt.Errorf("No supported storage backend found")
|
2013-11-04 18:22:34 -05:00
|
|
|
}
|
2014-11-15 12:54:21 -05:00
|
|
|
|
2016-03-09 18:23:31 -05:00
|
|
|
// isDriverNotSupported returns true if the error initializing
|
|
|
|
// the graph driver is a non-supported error.
|
|
|
|
func isDriverNotSupported(err error) bool {
|
|
|
|
return err == ErrNotSupported || err == ErrPrerequisites || err == ErrIncompatibleFS
|
|
|
|
}
|
|
|
|
|
2015-07-07 15:27:19 -04:00
|
|
|
// scanPriorDrivers returns an un-ordered scan of directories of prior storage drivers
|
2016-03-09 18:23:31 -05:00
|
|
|
func scanPriorDrivers(root string) map[string]bool {
|
|
|
|
driversMap := make(map[string]bool)
|
|
|
|
|
2015-04-01 14:12:15 -04:00
|
|
|
for driver := range drivers {
|
2015-04-24 15:35:51 -04:00
|
|
|
p := filepath.Join(root, driver)
|
2015-07-06 21:21:44 -04:00
|
|
|
if _, err := os.Stat(p); err == nil && driver != "vfs" {
|
2016-03-09 18:23:31 -05:00
|
|
|
driversMap[driver] = true
|
2015-04-01 14:12:15 -04:00
|
|
|
}
|
|
|
|
}
|
2016-03-09 18:23:31 -05:00
|
|
|
return driversMap
|
2014-11-15 12:54:21 -05:00
|
|
|
}
|