1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156
|
// Copyright 2020 PingCAP, Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// See the License for the specific language governing permissions and
// limitations under the License.
package executor
import (
"bytes"
"context"
"fmt"
"os/exec"
"os/user"
"path/filepath"
"strings"
"time"
"github.com/fatih/color"
"github.com/pingcap/tiup/pkg/cluster/ctxt"
"github.com/pingcap/tiup/pkg/tui"
"github.com/pingcap/tiup/pkg/utils"
"go.uber.org/zap"
)
// Local execute the command at local host.
type Local struct {
Config *SSHConfig
Sudo bool // all commands run with this executor will be using sudo
Locale string // the locale used when executing the command
}
var _ ctxt.Executor = &Local{}
// Execute implements Executor interface.
func (l *Local) Execute(ctx context.Context, cmd string, sudo bool, timeout ...time.Duration) ([]byte, []byte, error) {
// change wd to default home
cmd = fmt.Sprintf("cd; %s", cmd)
// get current user name
user, err := user.Current()
if err != nil {
return nil, nil, err
}
// try to acquire root permission
if l.Sudo || sudo {
cmd = fmt.Sprintf("/usr/bin/sudo -H -u root bash -c \"%s\"", strings.ReplaceAll(cmd, "\"", "\\\""))
} else if l.Config.User != user.Name {
cmd = fmt.Sprintf("/usr/bin/sudo -H -u %s bash -c \"%s\"", l.Config.User, strings.ReplaceAll(cmd, "\"", "\\\""))
}
// set a basic PATH in case it's empty on login
cmd = fmt.Sprintf("PATH=$PATH:/bin:/sbin:/usr/bin:/usr/sbin %s", cmd)
if l.Locale != "" {
cmd = fmt.Sprintf("export LANG=%s; %s", l.Locale, cmd)
}
// run command on remote host
if len(timeout) == 0 {
timeout = append(timeout, executeDefaultTimeout)
}
if len(timeout) > 0 {
var cancel context.CancelFunc
ctx, cancel = context.WithTimeout(ctx, timeout[0])
defer cancel()
}
command := exec.CommandContext(ctx, "/bin/bash", "-c", cmd)
stdout := new(bytes.Buffer)
stderr := new(bytes.Buffer)
command.Stdout = stdout
command.Stderr = stderr
err = command.Run()
zap.L().Info("LocalCommand",
zap.String("cmd", cmd),
zap.Error(err),
zap.String("stdout", stdout.String()),
zap.String("stderr", stderr.String()))
if err != nil {
baseErr := ErrSSHExecuteFailed.
Wrap(err, "Failed to execute command locally").
WithProperty(ErrPropSSHCommand, cmd).
WithProperty(ErrPropSSHStdout, stdout).
WithProperty(ErrPropSSHStderr, stderr)
if len(stdout.Bytes()) > 0 || len(stderr.Bytes()) > 0 {
output := strings.TrimSpace(strings.Join([]string{stdout.String(), stderr.String()}, "\n"))
baseErr = baseErr.
WithProperty(tui.SuggestionFromFormat("Command output:\n%s\n", color.YellowString(output)))
}
return stdout.Bytes(), stderr.Bytes(), baseErr
}
return stdout.Bytes(), stderr.Bytes(), err
}
// Transfer implements Executer interface.
func (l *Local) Transfer(ctx context.Context, src, dst string, download bool, limit int, _ bool) error {
targetPath := filepath.Dir(dst)
if err := utils.MkdirAll(targetPath, 0755); err != nil {
return err
}
cmd := ""
user, err := user.Current()
if err != nil {
return err
}
if download || user.Username == l.Config.User {
cmd = fmt.Sprintf("cp %s %s", src, dst)
} else {
cmd = fmt.Sprintf("/usr/bin/sudo -H -u root bash -c \"cp %[1]s %[2]s && chown %[3]s:$(id -g -n %[3]s) %[2]s\"", src, dst, l.Config.User)
}
command := exec.Command("/bin/bash", "-c", cmd)
stdout := new(bytes.Buffer)
stderr := new(bytes.Buffer)
command.Stdout = stdout
command.Stderr = stderr
err = command.Run()
zap.L().Info("CPCommand",
zap.String("cmd", cmd),
zap.Error(err),
zap.String("stdout", stdout.String()),
zap.String("stderr", stderr.String()))
if err != nil {
baseErr := ErrSSHExecuteFailed.
Wrap(err, "Failed to transfer file over local cp").
WithProperty(ErrPropSSHCommand, cmd).
WithProperty(ErrPropSSHStdout, stdout).
WithProperty(ErrPropSSHStderr, stderr)
if len(stdout.Bytes()) > 0 || len(stderr.Bytes()) > 0 {
output := strings.TrimSpace(strings.Join([]string{stdout.String(), stderr.String()}, "\n"))
baseErr = baseErr.
WithProperty(tui.SuggestionFromFormat("Command output:\n%s\n", color.YellowString(output)))
}
return baseErr
}
return err
}
|