mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
5ef07d79c4
Instead of forcing users to manually configure a block device to use with devmapper, this gives the user the option to let the devmapper driver configure a device for them. Adds several new options to the devmapper storage-opts: - dm.directlvm_device="" - path to the block device to configure for direct-lvm - dm.thinp_percent=95 - sets the percentage of space to use for storage from the passed in block device - dm.thinp_metapercent=1 - sets the percentage of space to for metadata storage from the passed in block device - dm.thinp_autoextend_threshold=80 - sets the threshold for when `lvm` should automatically extend the thin pool as a percentage of the total storage space - dm.thinp_autoextend_percent=20 - sets the percentage to increase the thin pool by when an autoextend is triggered. Defaults are taken from [here](https://docs.docker.com/engine/userguide/storagedriver/device-mapper-driver/#/configure-direct-lvm-mode-for-production) The only option that is required is `dm.directlvm_device` for docker to set everything up. Changes to these settings are not currently supported and will error out. Future work could support allowing changes to these values. Signed-off-by: Brian Goff <cpuguy83@gmail.com>
247 lines
6.6 KiB
Go
247 lines
6.6 KiB
Go
package devmapper
|
|
|
|
import (
|
|
"bufio"
|
|
"bytes"
|
|
"encoding/json"
|
|
"fmt"
|
|
"io/ioutil"
|
|
"os"
|
|
"os/exec"
|
|
"path/filepath"
|
|
"reflect"
|
|
"strings"
|
|
|
|
"github.com/Sirupsen/logrus"
|
|
"github.com/pkg/errors"
|
|
)
|
|
|
|
type directLVMConfig struct {
|
|
Device string
|
|
ThinpPercent uint64
|
|
ThinpMetaPercent uint64
|
|
AutoExtendPercent uint64
|
|
AutoExtendThreshold uint64
|
|
}
|
|
|
|
var (
|
|
errThinpPercentMissing = errors.New("must set both `dm.thinp_percent` and `dm.thinp_metapercent` if either is specified")
|
|
errThinpPercentTooBig = errors.New("combined `dm.thinp_percent` and `dm.thinp_metapercent` must not be greater than 100")
|
|
errMissingSetupDevice = errors.New("must provide device path in `dm.setup_device` in order to configure direct-lvm")
|
|
)
|
|
|
|
func validateLVMConfig(cfg directLVMConfig) error {
|
|
if reflect.DeepEqual(cfg, directLVMConfig{}) {
|
|
return nil
|
|
}
|
|
if cfg.Device == "" {
|
|
return errMissingSetupDevice
|
|
}
|
|
if (cfg.ThinpPercent > 0 && cfg.ThinpMetaPercent == 0) || cfg.ThinpMetaPercent > 0 && cfg.ThinpPercent == 0 {
|
|
return errThinpPercentMissing
|
|
}
|
|
|
|
if cfg.ThinpPercent+cfg.ThinpMetaPercent > 100 {
|
|
return errThinpPercentTooBig
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func checkDevAvailable(dev string) error {
|
|
lvmScan, err := exec.LookPath("lvmdiskscan")
|
|
if err != nil {
|
|
logrus.Debug("could not find lvmdiskscan")
|
|
return nil
|
|
}
|
|
|
|
out, err := exec.Command(lvmScan).CombinedOutput()
|
|
if err != nil {
|
|
logrus.WithError(err).Error(string(out))
|
|
return nil
|
|
}
|
|
|
|
if !bytes.Contains(out, []byte(dev)) {
|
|
return errors.Errorf("%s is not available for use with devicemapper", dev)
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func checkDevInVG(dev string) error {
|
|
pvDisplay, err := exec.LookPath("pvdisplay")
|
|
if err != nil {
|
|
logrus.Debug("could not find pvdisplay")
|
|
return nil
|
|
}
|
|
|
|
out, err := exec.Command(pvDisplay, dev).CombinedOutput()
|
|
if err != nil {
|
|
logrus.WithError(err).Error(string(out))
|
|
return nil
|
|
}
|
|
|
|
scanner := bufio.NewScanner(bytes.NewReader(bytes.TrimSpace(out)))
|
|
for scanner.Scan() {
|
|
fields := strings.SplitAfter(strings.TrimSpace(scanner.Text()), "VG Name")
|
|
if len(fields) > 1 {
|
|
// got "VG Name" line"
|
|
vg := strings.TrimSpace(fields[1])
|
|
if len(vg) > 0 {
|
|
return errors.Errorf("%s is already part of a volume group %q: must remove this device from any volume group or provide a different device", dev, vg)
|
|
}
|
|
logrus.Error(fields)
|
|
break
|
|
}
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func checkDevHasFS(dev string) error {
|
|
blkid, err := exec.LookPath("blkid")
|
|
if err != nil {
|
|
logrus.Debug("could not find blkid")
|
|
return nil
|
|
}
|
|
|
|
out, err := exec.Command(blkid, dev).CombinedOutput()
|
|
if err != nil {
|
|
logrus.WithError(err).Error(string(out))
|
|
return nil
|
|
}
|
|
|
|
fields := bytes.Fields(out)
|
|
for _, f := range fields {
|
|
kv := bytes.Split(f, []byte{'='})
|
|
if bytes.Equal(kv[0], []byte("TYPE")) {
|
|
v := bytes.Trim(kv[1], "\"")
|
|
if len(v) > 0 {
|
|
return errors.Errorf("%s has a filesystem already, use dm.directlvm_device_force=true if you want to wipe the device", dev)
|
|
}
|
|
return nil
|
|
}
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func verifyBlockDevice(dev string, force bool) error {
|
|
if err := checkDevAvailable(dev); err != nil {
|
|
return err
|
|
}
|
|
if err := checkDevInVG(dev); err != nil {
|
|
return err
|
|
}
|
|
|
|
if force {
|
|
return nil
|
|
}
|
|
|
|
if err := checkDevHasFS(dev); err != nil {
|
|
return err
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func readLVMConfig(root string) (directLVMConfig, error) {
|
|
var cfg directLVMConfig
|
|
|
|
p := filepath.Join(root, "setup-config.json")
|
|
b, err := ioutil.ReadFile(p)
|
|
if err != nil {
|
|
if os.IsNotExist(err) {
|
|
return cfg, nil
|
|
}
|
|
return cfg, errors.Wrap(err, "error reading existing setup config")
|
|
}
|
|
|
|
// check if this is just an empty file, no need to produce a json error later if so
|
|
if len(b) == 0 {
|
|
return cfg, nil
|
|
}
|
|
|
|
err = json.Unmarshal(b, &cfg)
|
|
return cfg, errors.Wrap(err, "error unmarshaling previous device setup config")
|
|
}
|
|
|
|
func writeLVMConfig(root string, cfg directLVMConfig) error {
|
|
p := filepath.Join(root, "setup-config.json")
|
|
b, err := json.Marshal(cfg)
|
|
if err != nil {
|
|
return errors.Wrap(err, "error marshalling direct lvm config")
|
|
}
|
|
err = ioutil.WriteFile(p, b, 0600)
|
|
return errors.Wrap(err, "error writing direct lvm config to file")
|
|
}
|
|
|
|
func setupDirectLVM(cfg directLVMConfig) error {
|
|
pvCreate, err := exec.LookPath("pvcreate")
|
|
if err != nil {
|
|
return errors.Wrap(err, "error lookuping up command `pvcreate` while setting up direct lvm")
|
|
}
|
|
|
|
vgCreate, err := exec.LookPath("vgcreate")
|
|
if err != nil {
|
|
return errors.Wrap(err, "error lookuping up command `vgcreate` while setting up direct lvm")
|
|
}
|
|
|
|
lvCreate, err := exec.LookPath("lvcreate")
|
|
if err != nil {
|
|
return errors.Wrap(err, "error lookuping up command `lvcreate` while setting up direct lvm")
|
|
}
|
|
|
|
lvConvert, err := exec.LookPath("lvconvert")
|
|
if err != nil {
|
|
return errors.Wrap(err, "error lookuping up command `lvconvert` while setting up direct lvm")
|
|
}
|
|
|
|
lvChange, err := exec.LookPath("lvchange")
|
|
if err != nil {
|
|
return errors.Wrap(err, "error lookuping up command `lvchange` while setting up direct lvm")
|
|
}
|
|
|
|
if cfg.AutoExtendPercent == 0 {
|
|
cfg.AutoExtendPercent = 20
|
|
}
|
|
|
|
if cfg.AutoExtendThreshold == 0 {
|
|
cfg.AutoExtendThreshold = 80
|
|
}
|
|
|
|
if cfg.ThinpPercent == 0 {
|
|
cfg.ThinpPercent = 95
|
|
}
|
|
if cfg.ThinpMetaPercent == 0 {
|
|
cfg.ThinpMetaPercent = 1
|
|
}
|
|
|
|
out, err := exec.Command(pvCreate, "-f", cfg.Device).CombinedOutput()
|
|
if err != nil {
|
|
return errors.Wrap(err, string(out))
|
|
}
|
|
|
|
out, err = exec.Command(vgCreate, "docker", cfg.Device).CombinedOutput()
|
|
if err != nil {
|
|
return errors.Wrap(err, string(out))
|
|
}
|
|
|
|
out, err = exec.Command(lvCreate, "--wipesignatures", "y", "-n", "thinpool", "docker", "--extents", fmt.Sprintf("%d%%VG", cfg.ThinpPercent)).CombinedOutput()
|
|
if err != nil {
|
|
return errors.Wrap(err, string(out))
|
|
}
|
|
out, err = exec.Command(lvCreate, "--wipesignatures", "y", "-n", "thinpoolmeta", "docker", "--extents", fmt.Sprintf("%d%%VG", cfg.ThinpMetaPercent)).CombinedOutput()
|
|
if err != nil {
|
|
return errors.Wrap(err, string(out))
|
|
}
|
|
|
|
out, err = exec.Command(lvConvert, "-y", "--zero", "n", "-c", "512K", "--thinpool", "docker/thinpool", "--poolmetadata", "docker/thinpoolmeta").CombinedOutput()
|
|
if err != nil {
|
|
return errors.Wrap(err, string(out))
|
|
}
|
|
|
|
profile := fmt.Sprintf("activation{\nthin_pool_autoextend_threshold=%d\nthin_pool_autoextend_percent=%d\n}", cfg.AutoExtendThreshold, cfg.AutoExtendPercent)
|
|
err = ioutil.WriteFile("/etc/lvm/profile/docker-thinpool.profile", []byte(profile), 0600)
|
|
if err != nil {
|
|
return errors.Wrap(err, "error writing docker thinp autoextend profile")
|
|
}
|
|
|
|
out, err = exec.Command(lvChange, "--metadataprofile", "docker-thinpool", "docker/thinpool").CombinedOutput()
|
|
return errors.Wrap(err, string(out))
|
|
}
|