mirror of
https://github.com/containers/podman.git
synced 2025-06-01 17:17:47 +08:00

* Do not discard errors when panicing on lockfile open * config: drop skip_mount_home * storage: drop ostree deduplication Signed-off-by: Valentin Rothberg <rothberg@redhat.com>
273 lines
8.4 KiB
Go
273 lines
8.4 KiB
Go
package vfs
|
|
|
|
import (
|
|
"fmt"
|
|
"io"
|
|
"os"
|
|
"path/filepath"
|
|
"strconv"
|
|
"strings"
|
|
|
|
"github.com/containers/storage/drivers"
|
|
"github.com/containers/storage/pkg/archive"
|
|
"github.com/containers/storage/pkg/idtools"
|
|
"github.com/containers/storage/pkg/parsers"
|
|
"github.com/containers/storage/pkg/system"
|
|
"github.com/opencontainers/selinux/go-selinux/label"
|
|
"github.com/sirupsen/logrus"
|
|
)
|
|
|
|
var (
|
|
// CopyDir defines the copy method to use.
|
|
CopyDir = dirCopy
|
|
)
|
|
|
|
func init() {
|
|
graphdriver.Register("vfs", Init)
|
|
}
|
|
|
|
// Init returns a new VFS driver.
|
|
// This sets the home directory for the driver and returns NaiveDiffDriver.
|
|
func Init(home string, options graphdriver.Options) (graphdriver.Driver, error) {
|
|
d := &Driver{
|
|
name: "vfs",
|
|
homes: []string{home},
|
|
idMappings: idtools.NewIDMappingsFromMaps(options.UIDMaps, options.GIDMaps),
|
|
}
|
|
|
|
rootIDs := d.idMappings.RootPair()
|
|
if err := idtools.MkdirAllAndChown(home, 0700, rootIDs); err != nil {
|
|
return nil, err
|
|
}
|
|
for _, option := range options.DriverOptions {
|
|
|
|
key, val, err := parsers.ParseKeyValueOpt(option)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
key = strings.ToLower(key)
|
|
switch key {
|
|
case "vfs.imagestore", ".imagestore":
|
|
d.homes = append(d.homes, strings.Split(val, ",")...)
|
|
continue
|
|
case "vfs.mountopt":
|
|
return nil, fmt.Errorf("vfs driver does not support mount options")
|
|
case ".ignore_chown_errors", "vfs.ignore_chown_errors":
|
|
logrus.Debugf("vfs: ignore_chown_errors=%s", val)
|
|
var err error
|
|
d.ignoreChownErrors, err = strconv.ParseBool(val)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
default:
|
|
return nil, fmt.Errorf("vfs driver does not support %s options", key)
|
|
}
|
|
}
|
|
d.updater = graphdriver.NewNaiveLayerIDMapUpdater(d)
|
|
d.naiveDiff = graphdriver.NewNaiveDiffDriver(d, d.updater)
|
|
|
|
return d, nil
|
|
}
|
|
|
|
// Driver holds information about the driver, home directory of the driver.
|
|
// Driver implements graphdriver.ProtoDriver. It uses only basic vfs operations.
|
|
// In order to support layering, files are copied from the parent layer into the new layer. There is no copy-on-write support.
|
|
// Driver must be wrapped in NaiveDiffDriver to be used as a graphdriver.Driver
|
|
type Driver struct {
|
|
name string
|
|
homes []string
|
|
idMappings *idtools.IDMappings
|
|
ignoreChownErrors bool
|
|
naiveDiff graphdriver.DiffDriver
|
|
updater graphdriver.LayerIDMapUpdater
|
|
}
|
|
|
|
func (d *Driver) String() string {
|
|
return "vfs"
|
|
}
|
|
|
|
// Status is used for implementing the graphdriver.ProtoDriver interface. VFS does not currently have any status information.
|
|
func (d *Driver) Status() [][2]string {
|
|
return nil
|
|
}
|
|
|
|
// Metadata is used for implementing the graphdriver.ProtoDriver interface. VFS does not currently have any meta data.
|
|
func (d *Driver) Metadata(id string) (map[string]string, error) {
|
|
return nil, nil
|
|
}
|
|
|
|
// Cleanup is used to implement graphdriver.ProtoDriver. There is no cleanup required for this driver.
|
|
func (d *Driver) Cleanup() error {
|
|
return nil
|
|
}
|
|
|
|
// CreateFromTemplate creates a layer with the same contents and parent as another layer.
|
|
func (d *Driver) CreateFromTemplate(id, template string, templateIDMappings *idtools.IDMappings, parent string, parentIDMappings *idtools.IDMappings, opts *graphdriver.CreateOpts, readWrite bool) error {
|
|
if readWrite {
|
|
return d.CreateReadWrite(id, template, opts)
|
|
}
|
|
return d.Create(id, template, opts)
|
|
}
|
|
|
|
// ApplyDiff applies the new layer into a root
|
|
func (d *Driver) ApplyDiff(id, parent string, options graphdriver.ApplyDiffOpts) (size int64, err error) {
|
|
if d.ignoreChownErrors {
|
|
options.IgnoreChownErrors = d.ignoreChownErrors
|
|
}
|
|
return d.naiveDiff.ApplyDiff(id, parent, options)
|
|
}
|
|
|
|
// CreateReadWrite creates a layer that is writable for use as a container
|
|
// file system.
|
|
func (d *Driver) CreateReadWrite(id, parent string, opts *graphdriver.CreateOpts) error {
|
|
return d.create(id, parent, opts, false)
|
|
}
|
|
|
|
// Create prepares the filesystem for the VFS driver and copies the directory for the given id under the parent.
|
|
func (d *Driver) Create(id, parent string, opts *graphdriver.CreateOpts) error {
|
|
return d.create(id, parent, opts, true)
|
|
}
|
|
|
|
func (d *Driver) create(id, parent string, opts *graphdriver.CreateOpts, ro bool) (retErr error) {
|
|
if opts != nil && len(opts.StorageOpt) != 0 {
|
|
return fmt.Errorf("--storage-opt is not supported for vfs")
|
|
}
|
|
|
|
idMappings := d.idMappings
|
|
if opts != nil && opts.IDMappings != nil {
|
|
idMappings = opts.IDMappings
|
|
}
|
|
|
|
dir := d.dir(id)
|
|
rootIDs := idMappings.RootPair()
|
|
if err := idtools.MkdirAllAndChown(filepath.Dir(dir), 0700, rootIDs); err != nil {
|
|
return err
|
|
}
|
|
|
|
defer func() {
|
|
if retErr != nil {
|
|
os.RemoveAll(dir)
|
|
}
|
|
}()
|
|
|
|
if parent != "" {
|
|
st, err := system.Stat(d.dir(parent))
|
|
if err != nil {
|
|
return err
|
|
}
|
|
rootIDs.UID = int(st.UID())
|
|
rootIDs.GID = int(st.GID())
|
|
}
|
|
if err := idtools.MkdirAndChown(dir, 0755, rootIDs); err != nil {
|
|
return err
|
|
}
|
|
labelOpts := []string{"level:s0"}
|
|
if _, mountLabel, err := label.InitLabels(labelOpts); err == nil {
|
|
label.SetFileLabel(dir, mountLabel)
|
|
}
|
|
if parent != "" {
|
|
parentDir, err := d.Get(parent, graphdriver.MountOpts{})
|
|
if err != nil {
|
|
return fmt.Errorf("%s: %s", parent, err)
|
|
}
|
|
if err := dirCopy(parentDir, dir); err != nil {
|
|
return err
|
|
}
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
func (d *Driver) dir(id string) string {
|
|
for i, home := range d.homes {
|
|
if i > 0 {
|
|
home = filepath.Join(home, d.String())
|
|
}
|
|
candidate := filepath.Join(home, "dir", filepath.Base(id))
|
|
fi, err := os.Stat(candidate)
|
|
if err == nil && fi.IsDir() {
|
|
return candidate
|
|
}
|
|
}
|
|
return filepath.Join(d.homes[0], "dir", filepath.Base(id))
|
|
}
|
|
|
|
// Remove deletes the content from the directory for a given id.
|
|
func (d *Driver) Remove(id string) error {
|
|
return system.EnsureRemoveAll(d.dir(id))
|
|
}
|
|
|
|
// Get returns the directory for the given id.
|
|
func (d *Driver) Get(id string, options graphdriver.MountOpts) (_ string, retErr error) {
|
|
dir := d.dir(id)
|
|
switch len(options.Options) {
|
|
case 0:
|
|
case 1:
|
|
if options.Options[0] == "ro" {
|
|
// ignore "ro" option
|
|
break
|
|
}
|
|
fallthrough
|
|
default:
|
|
return "", fmt.Errorf("vfs driver does not support mount options")
|
|
}
|
|
if st, err := os.Stat(dir); err != nil {
|
|
return "", err
|
|
} else if !st.IsDir() {
|
|
return "", fmt.Errorf("%s: not a directory", dir)
|
|
}
|
|
return dir, nil
|
|
}
|
|
|
|
// Put is a noop for vfs that return nil for the error, since this driver has no runtime resources to clean up.
|
|
func (d *Driver) Put(id string) error {
|
|
// The vfs driver has no runtime resources (e.g. mounts)
|
|
// to clean up, so we don't need anything here
|
|
return nil
|
|
}
|
|
|
|
// Exists checks to see if the directory exists for the given id.
|
|
func (d *Driver) Exists(id string) bool {
|
|
_, err := os.Stat(d.dir(id))
|
|
return err == nil
|
|
}
|
|
|
|
// AdditionalImageStores returns additional image stores supported by the driver
|
|
func (d *Driver) AdditionalImageStores() []string {
|
|
if len(d.homes) > 1 {
|
|
return d.homes[1:]
|
|
}
|
|
return nil
|
|
}
|
|
|
|
// SupportsShifting tells whether the driver support shifting of the UIDs/GIDs in an userNS
|
|
func (d *Driver) SupportsShifting() bool {
|
|
return d.updater.SupportsShifting()
|
|
}
|
|
|
|
// UpdateLayerIDMap updates ID mappings in a from matching the ones specified
|
|
// by toContainer to those specified by toHost.
|
|
func (d *Driver) UpdateLayerIDMap(id string, toContainer, toHost *idtools.IDMappings, mountLabel string) error {
|
|
return d.updater.UpdateLayerIDMap(id, toContainer, toHost, mountLabel)
|
|
}
|
|
|
|
// 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 (d *Driver) Changes(id string, idMappings *idtools.IDMappings, parent string, parentMappings *idtools.IDMappings, mountLabel string) ([]archive.Change, error) {
|
|
return d.naiveDiff.Changes(id, idMappings, parent, parentMappings, mountLabel)
|
|
}
|
|
|
|
// Diff produces an archive of the changes between the specified
|
|
// layer and its parent layer which may be "".
|
|
func (d *Driver) Diff(id string, idMappings *idtools.IDMappings, parent string, parentMappings *idtools.IDMappings, mountLabel string) (io.ReadCloser, error) {
|
|
return d.naiveDiff.Diff(id, idMappings, parent, parentMappings, mountLabel)
|
|
}
|
|
|
|
// 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.
|
|
func (d *Driver) DiffSize(id string, idMappings *idtools.IDMappings, parent string, parentMappings *idtools.IDMappings, mountLabel string) (size int64, err error) {
|
|
return d.naiveDiff.DiffSize(id, idMappings, parent, parentMappings, mountLabel)
|
|
}
|