37 Star 407 Fork 74

GVPrancher/rancher

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
dynamic_driver.go 1.86 KB
一键复制 编辑 原始数据 按行查看 历史
Dan Ramich 提交于 2019-03-01 16:32 . Add jail for drivers
package drivers
import (
"fmt"
"io"
"os"
"os/exec"
"path"
"strings"
"github.com/pkg/errors"
"github.com/sirupsen/logrus"
)
type DynamicDriver struct {
BaseDriver
}
var DockerMachineDriverPrefix = "docker-machine-driver-"
func NewDynamicDriver(builtin bool, name, url, hash string) *DynamicDriver {
d := &DynamicDriver{
BaseDriver{
Builtin: builtin,
DriverName: name,
URL: url,
DriverHash: hash,
BinaryPrefix: DockerMachineDriverPrefix,
},
}
if !strings.HasPrefix(d.DriverName, DockerMachineDriverPrefix) {
d.DriverName = DockerMachineDriverPrefix + d.DriverName
}
return d
}
func (d *DynamicDriver) Install() error {
if d.Builtin {
return nil
}
binaryPath := path.Join(binDir(), d.DriverName)
tmpPath := binaryPath + "-tmp"
f, err := os.OpenFile(tmpPath, os.O_RDWR|os.O_CREATE|os.O_TRUNC, 0755)
if err != nil {
return errors.Wrapf(err, "Couldn't open %v for writing", tmpPath)
}
defer f.Close()
src, err := os.Open(d.srcBinName())
if err != nil {
return errors.Wrapf(err, "Couldn't open %v for copying", d.srcBinName())
}
defer src.Close()
logrus.Infof("Copying %v => %v", d.srcBinName(), tmpPath)
_, err = io.Copy(f, src)
if err != nil {
return errors.Wrapf(err, "Couldn't copy %v to %v", d.srcBinName(), tmpPath)
}
err = os.Rename(tmpPath, binaryPath)
if err != nil {
return errors.Wrapf(err, "Couldn't copy driver %v to %v", d.Name(), binaryPath)
}
return nil
}
func (d *BaseDriver) Excutable() error {
if d.DriverName == "" {
return fmt.Errorf("Empty driver name")
}
if d.Builtin {
return nil
}
binaryPath := path.Join(binDir(), d.DriverName)
_, err := os.Stat(binaryPath)
if err != nil {
return fmt.Errorf("Driver %s not found", binaryPath)
}
err = exec.Command(binaryPath).Start()
if err != nil {
return errors.Wrapf(err, "Driver binary %s couldn't execute", binaryPath)
}
return nil
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/rancher/rancher.git
git@gitee.com:rancher/rancher.git
rancher
rancher
rancher
v2.2.9-alpha1

搜索帮助