2018-02-05 21:05:59 +00:00
package graphdriver // import "github.com/docker/docker/daemon/graphdriver"
2013-11-01 01:07:54 +00:00
2013-11-04 23:22:34 +00:00
import (
2023-06-23 00:33:17 +00:00
"context"
2022-05-24 15:02:30 +00:00
"fmt"
2016-10-20 23:40:59 +00:00
"io"
2013-11-19 11:13:22 +00:00
"os"
2015-04-24 19:35:51 +00:00
"path/filepath"
2014-11-15 17:54:21 +00:00
"strings"
2014-06-05 19:50:53 +00:00
2023-09-13 15:41:45 +00:00
"github.com/containerd/log"
2014-09-30 06:23:36 +00:00
"github.com/docker/docker/pkg/archive"
2015-10-08 15:51:41 +00:00
"github.com/docker/docker/pkg/idtools"
2016-10-07 20:53:14 +00:00
"github.com/docker/docker/pkg/plugingetter"
2022-03-14 15:42:05 +00:00
"github.com/pkg/errors"
"github.com/vbatts/tar-split/tar/storage"
2013-11-04 23:22:34 +00:00
)
2015-07-21 22:21:05 +00:00
// FsMagic unsigned id of the filesystem in use.
2015-01-09 00:22:38 +00:00
type FsMagic uint32
2014-06-03 01:26:41 +00:00
const (
2015-12-13 16:00:39 +00:00
// FsMagicUnsupported is a predefined constant value other than a valid filesystem id.
2015-01-15 21:40:39 +00:00
FsMagicUnsupported = FsMagic ( 0x00000000 )
)
2022-01-20 12:59:20 +00:00
// All registered drivers
var drivers map [ string ] InitFunc
2014-06-03 01:26:41 +00:00
2019-11-27 14:43:23 +00:00
// CreateOpts contains optional arguments for Create() and CreateReadWrite()
2016-11-09 20:59:58 +00:00
// methods.
type CreateOpts struct {
MountLabel string
StorageOpt map [ string ] string
}
2015-07-21 22:21:05 +00:00
// InitFunc initializes the storage driver.
2022-03-14 19:24:29 +00:00
type InitFunc func ( root string , options [ ] string , idMap idtools . IdentityMapping ) ( Driver , error )
2013-11-05 04:51:12 +00:00
2014-09-16 19:13:50 +00: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-11 03:30:52 +00:00
// String returns a string representation of this driver.
2013-11-15 09:24:48 +00:00
String ( ) string
2016-02-19 01:24:59 +00:00
// CreateReadWrite creates a new, empty filesystem layer that is ready
2016-11-09 20:59:58 +00: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-11 03:30:52 +00:00
// Create creates a new, empty, filesystem layer with the
2016-11-09 20:59:58 +00: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 19:13:50 +00:00
// Remove attempts to remove the filesystem layer with this id.
2013-11-07 20:34:01 +00:00
Remove ( id string ) error
2014-09-11 03:30:52 +00: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.
2022-09-23 18:21:31 +00:00
Get ( id , mountLabel string ) ( fs string , err error )
2014-09-11 03:30:52 +00:00
// Put releases the system resources for the specified id,
// e.g, unmounting layered filesystem.
2015-01-09 22:14:52 +00:00
Put ( id string ) error
2014-09-11 03:30:52 +00:00
// Exists returns whether a filesystem layer with the specified
// ID exists on this driver.
2013-11-19 10:32:08 +00:00
Exists ( id string ) bool
2014-09-11 03:30:52 +00:00
// Status returns a set of key-value pairs which give low
// level diagnostic status about this driver.
2013-11-15 10:04:02 +00:00
Status ( ) [ ] [ 2 ] string
2015-06-15 18:05:10 +00: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-11 03:30:52 +00:00
// Cleanup performs necessary tasks to release resources
// held by the driver, e.g., unmounting all layered filesystems
// known to this driver.
2013-11-12 01:17:38 +00:00
Cleanup ( ) error
}
2016-04-21 16:08:37 +00:00
// DiffDriver is the interface to use to implement graph diffs
type DiffDriver interface {
2014-09-11 03:30:52 +00:00
// Diff produces an archive of the changes between the specified
// layer and its parent layer which may be "".
2016-10-20 23:40:59 +00:00
Diff ( id , parent string ) ( io . ReadCloser , error )
2014-09-11 03:30:52 +00: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-04 01:52:54 +00:00
// The archive.Reader must be an uncompressed stream.
2016-10-20 23:40:59 +00:00
ApplyDiff ( id , parent string , diff io . Reader ) ( size int64 , err error )
2014-09-11 03:30:52 +00: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-18 02:26:03 +00:00
DiffSize ( id , parent string ) ( size int64 , err error )
2013-11-11 15:47:36 +00:00
}
2016-04-21 16:08:37 +00:00
// Driver is the interface for layered/snapshot file system drivers.
type Driver interface {
ProtoDriver
DiffDriver
}
2017-03-20 18:38:17 +00:00
// Capabilities defines a list of capabilities a driver may implement.
// These capabilities are not required; however, they do determine how a
// graphdriver can be used.
type Capabilities struct {
// Flags that this driver is capable of reproducing exactly equivalent
// diffs for read-only layers. If set, clients can rely on the driver
// for consistent tar streams, and avoid extra processing to account
// for potential differences (eg: the layer store's use of tar-split).
ReproducesExactDiffs bool
}
// CapabilityDriver is the interface for layered file system drivers that
// can report on their Capabilities.
type CapabilityDriver interface {
Capabilities ( ) Capabilities
}
2016-02-19 01:58:23 +00: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 20:09:45 +00: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 20:31:50 +00:00
func init ( ) {
drivers = make ( map [ string ] InitFunc )
}
2016-05-08 01:36:10 +00:00
// Register registers an InitFunc for the driver.
2013-11-04 23:22:34 +00:00
func Register ( name string , initFunc InitFunc ) error {
if _ , exists := drivers [ name ] ; exists {
2022-03-14 15:42:05 +00:00
return errors . Errorf ( "name already registered %s" , name )
2013-11-04 23:22:34 +00:00
}
drivers [ name ] = initFunc
return nil
}
2015-07-21 22:21:05 +00:00
// GetDriver initializes and returns the registered driver
2016-11-19 16:41:07 +00:00
func GetDriver ( name string , pg plugingetter . PluginGetter , config Options ) ( Driver , error ) {
2013-11-08 02:49:32 +00:00
if initFunc , exists := drivers [ name ] ; exists {
2022-03-14 19:24:29 +00:00
return initFunc ( filepath . Join ( config . Root , name ) , config . DriverOptions , config . IDMap )
2013-11-08 02:49:32 +00:00
}
2016-12-10 16:40:01 +00:00
2016-11-19 16:41:07 +00:00
pluginDriver , err := lookupPlugin ( name , pg , config )
2016-12-10 16:40:01 +00:00
if err == nil {
2015-06-05 20:09:53 +00:00
return pluginDriver , nil
}
2023-06-23 00:33:17 +00:00
log . G ( context . TODO ( ) ) . WithError ( err ) . WithField ( "driver" , name ) . WithField ( "home-dir" , config . Root ) . Error ( "Failed to GetDriver graph" )
2014-03-27 16:41:06 +00:00
return nil , ErrNotSupported
2013-11-08 02:49:32 +00:00
}
2015-12-13 16:00:39 +00:00
// getBuiltinDriver initializes and returns the registered driver, but does not try to load from plugins
2022-03-14 19:24:29 +00:00
func getBuiltinDriver ( name , home string , options [ ] string , idMap idtools . IdentityMapping ) ( Driver , error ) {
2015-10-09 01:29:20 +00:00
if initFunc , exists := drivers [ name ] ; exists {
2022-03-14 19:24:29 +00:00
return initFunc ( filepath . Join ( home , name ) , options , idMap )
2015-10-09 01:29:20 +00:00
}
2023-06-23 00:33:17 +00:00
log . G ( context . TODO ( ) ) . Errorf ( "Failed to built-in GetDriver graph %s %s" , name , home )
2015-10-09 01:29:20 +00:00
return nil , ErrNotSupported
}
2016-11-19 16:41:07 +00:00
// Options is used to initialize a graphdriver
type Options struct {
Root string
DriverOptions [ ] string
2022-03-14 19:24:29 +00:00
IDMap idtools . IdentityMapping
2016-11-19 16:41:07 +00:00
ExperimentalEnabled bool
}
2015-07-21 22:21:05 +00:00
// New creates the driver and initializes it at the specified root.
2016-11-19 16:41:07 +00:00
func New ( name string , pg plugingetter . PluginGetter , config Options ) ( Driver , error ) {
2023-06-23 00:33:17 +00:00
ctx := context . TODO ( )
2015-12-16 20:32:16 +00:00
if name != "" {
2023-06-23 00:33:17 +00:00
log . G ( ctx ) . Infof ( "[graphdriver] trying configured driver: %s" , name )
2022-05-24 15:02:30 +00:00
if err := checkRemoved ( name ) ; err != nil {
return nil , err
}
2016-11-19 16:41:07 +00:00
return GetDriver ( name , pg , config )
2013-11-08 02:49:32 +00:00
}
2013-11-19 11:13:22 +00:00
2015-04-01 18:12:15 +00:00
// Guess for prior driver
2016-11-19 16:41:07 +00:00
driversMap := scanPriorDrivers ( config . Root )
2022-03-14 15:42:05 +00:00
priorityList := strings . Split ( priority , "," )
2023-06-23 00:33:17 +00:00
log . G ( ctx ) . Debugf ( "[graphdriver] priority list: %v" , priorityList )
2022-03-14 15:42:05 +00:00
for _ , name := range priorityList {
2016-03-09 23:23:31 +00:00
if _ , prior := driversMap [ name ] ; prior {
2015-07-07 19:27:19 +00:00
// of the state found from prior drivers, check in order of our priority
// which we would prefer
2022-03-14 19:24:29 +00:00
driver , err := getBuiltinDriver ( name , config . Root , config . DriverOptions , config . IDMap )
2016-03-09 23:23:31 +00: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".
2023-06-23 00:33:17 +00:00
log . G ( ctx ) . Errorf ( "[graphdriver] prior storage driver %s failed: %s" , name , err )
2016-03-09 23:23:31 +00:00
return nil , err
}
// abort starting when there are other prior configured drivers
// to ensure the user explicitly selects the driver to load
2022-03-14 15:42:05 +00:00
if len ( driversMap ) > 1 {
2016-03-09 23:23:31 +00:00
var driversSlice [ ] string
for name := range driversMap {
driversSlice = append ( driversSlice , name )
2015-07-07 19:27:19 +00:00
}
2016-03-09 23:23:31 +00:00
2022-03-14 15:42:05 +00:00
err = errors . Errorf ( "%s contains several valid graphdrivers: %s; cleanup or explicitly choose storage driver (-s <DRIVER>)" , config . Root , strings . Join ( driversSlice , ", " ) )
2023-06-23 00:33:17 +00:00
log . G ( ctx ) . Errorf ( "[graphdriver] %v" , err )
2022-03-14 15:42:05 +00:00
return nil , err
2015-07-07 19:27:19 +00:00
}
2016-03-09 23:23:31 +00:00
2023-06-23 00:33:17 +00:00
log . G ( ctx ) . Infof ( "[graphdriver] using prior storage driver: %s" , name )
2016-03-09 23:23:31 +00:00
return driver , nil
2015-04-01 18:12:15 +00:00
}
}
2022-03-14 15:42:05 +00:00
// If no prior state was found, continue with automatic selection, and pick
daemon: require storage-driver to be set if the driver is deprecated
Previously, we only printed a warning if a storage driver was deprecated. The
intent was to continue supporting these drivers, to allow users to migrate
to a different storage driver.
This patch changes the behavior; if the user has no storage driver specified
in the daemon configuration (so if we try to detect the previous storage
driver based on what's present in /var/lib/docker), we now produce an error,
informing the user that the storage driver is deprecated (and to be removed),
as well as instructing them to change the daemon configuration to explicitly
select the storage driver (to allow them to migrate).
This should make the deprecation more visible; this will be disruptive, but
it's better to have the failure happening *now* (while the drivers are still
there), than for users to discover the storage driver is no longer there
(which would require them to *downgrade* the daemon in order to migrate
to a different driver).
With this change, `docker info` includes a link in the warnings that:
/ # docker info
Client:
Context: default
Debug Mode: false
Server:
...
Live Restore Enabled: false
WARNING: The overlay storage-driver is deprecated, and will be removed in a future release.
Refer to the documentation for more information: https://docs.docker.com/go/storage-driver/
When starting the daemon without a storage driver configured explicitly, but
previous state was using a deprecated driver, the error is both logged and
printed:
...
ERRO[2022-03-25T14:14:06.032014013Z] [graphdriver] prior storage driver overlay is deprecated and will be removed in a future release; update the the daemon configuration and explicitly choose this storage driver to continue using it; visit https://docs.docker.com/go/storage-driver/ for more information
...
failed to start daemon: error initializing graphdriver: prior storage driver overlay is deprecated and will be removed in a future release; update the the daemon configuration and explicitly choose this storage driver to continue using it; visit https://docs.docker.com/go/storage-driver/ for more information
When starting the daemon and explicitly configuring it with a deprecated storage
driver:
WARN[2022-03-25T14:15:59.042335412Z] [graphdriver] WARNING: the overlay storage-driver is deprecated and will be removed in a future release; visit https://docs.docker.com/go/storage-driver/ for more information
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
2022-03-11 16:51:12 +00:00
// the first supported, non-deprecated, storage driver (in order of priorityList).
2022-03-14 15:42:05 +00:00
for _ , name := range priorityList {
2022-03-14 19:24:29 +00:00
driver , err := getBuiltinDriver ( name , config . Root , config . DriverOptions , config . IDMap )
2014-03-27 16:41:06 +00:00
if err != nil {
2017-11-16 00:48:43 +00:00
if IsDriverNotSupported ( err ) {
2014-03-27 16:41:06 +00:00
continue
}
return nil , err
2013-11-04 23:22:34 +00:00
}
2013-11-08 02:49:32 +00:00
return driver , nil
2013-11-04 23:22:34 +00:00
}
// Check all registered drivers if no priority driver is found
2016-03-09 23:23:31 +00:00
for name , initFunc := range drivers {
2022-03-14 19:24:29 +00:00
driver , err := initFunc ( filepath . Join ( config . Root , name ) , config . DriverOptions , config . IDMap )
2016-03-09 23:23:31 +00:00
if err != nil {
2017-11-16 00:48:43 +00:00
if IsDriverNotSupported ( err ) {
2014-03-27 16:41:06 +00:00
continue
}
return nil , err
2013-11-04 23:22:34 +00:00
}
return driver , nil
}
2022-03-14 15:42:05 +00:00
return nil , errors . Errorf ( "no supported storage driver found" )
2013-11-04 23:22:34 +00:00
}
2014-11-15 17:54:21 +00:00
2022-03-14 15:42:05 +00:00
// scanPriorDrivers returns an un-ordered scan of directories of prior storage
// drivers. The 'vfs' storage driver is not taken into account, and ignored.
2016-03-09 23:23:31 +00:00
func scanPriorDrivers ( root string ) map [ string ] bool {
driversMap := make ( map [ string ] bool )
2015-04-01 18:12:15 +00:00
for driver := range drivers {
2015-04-24 19:35:51 +00:00
p := filepath . Join ( root , driver )
2015-07-07 01:21:44 +00:00
if _ , err := os . Stat ( p ) ; err == nil && driver != "vfs" {
2017-11-16 17:22:22 +00:00
if ! isEmptyDir ( p ) {
driversMap [ driver ] = true
}
2015-04-01 18:12:15 +00:00
}
}
2016-03-09 23:23:31 +00:00
return driversMap
2014-11-15 17:54:21 +00:00
}
2017-11-16 17:22:22 +00:00
// isEmptyDir checks if a directory is empty. It is used to check if prior
// storage-driver directories exist. If an error occurs, it also assumes the
// directory is not empty (which preserves the behavior _before_ this check
// was added)
func isEmptyDir ( name string ) bool {
f , err := os . Open ( name )
if err != nil {
return false
}
defer f . Close ( )
if _ , err = f . Readdirnames ( 1 ) ; err == io . EOF {
return true
}
return false
}
2018-10-11 10:44:43 +00:00
2022-05-24 15:02:30 +00:00
// checkRemoved checks if a storage-driver has been deprecated (and removed)
func checkRemoved ( name string ) error {
switch name {
2022-05-24 15:17:08 +00:00
case "aufs" , "devicemapper" , "overlay" :
2022-05-24 15:02:30 +00:00
return NotSupportedError ( fmt . Sprintf ( "[graphdriver] ERROR: the %s storage-driver has been deprecated and removed; visit https://docs.docker.com/go/storage-driver/ for more information" , name ) )
}
return nil
}