forked from k0sproject/rig
-
Notifications
You must be signed in to change notification settings - Fork 0
/
localhost.go
190 lines (153 loc) · 4.27 KB
/
localhost.go
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
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
package rig
import (
"bufio"
"fmt"
"io"
"os"
osexec "os/exec"
"runtime"
"strings"
"sync"
"github.com/k0sproject/rig/exec"
"github.com/kballard/go-shellquote"
)
const name = "[local] localhost"
// Localhost is a direct localhost connection
type Localhost struct {
Enabled bool `yaml:"enabled" validate:"required,eq=true" default:"true"`
}
// Protocol returns the protocol name, "Local"
func (c *Localhost) Protocol() string {
return "Local"
}
// IPAddress returns the connection address
func (c *Localhost) IPAddress() string {
return "127.0.0.1"
}
// String returns the connection's printable name
func (c *Localhost) String() string {
return name
}
// IsConnected for local connections is always true
func (c *Localhost) IsConnected() bool {
return true
}
// IsWindows is true when running on a windows host
func (c *Localhost) IsWindows() bool {
return runtime.GOOS == "windows"
}
// Connect on local connection does nothing
func (c *Localhost) Connect() error {
return nil
}
// Disconnect on local connection does nothing
func (c *Localhost) Disconnect() {}
// ExecStreams executes a command on the remote host and uses the passed in streams for stdin, stdout and stderr. It returns a Waiter with a .Wait() function that
// blocks until the command finishes and returns an error if the exit code is not zero.
func (c *Localhost) ExecStreams(cmd string, stdin io.ReadCloser, stdout, stderr io.Writer, opts ...exec.Option) (Waiter, error) {
execOpts := exec.Build(opts...)
command, err := c.command(cmd, execOpts)
if err != nil {
return nil, ErrCommandFailed.Wrapf("failed to build command: %w", err)
}
command.Stdin = stdin
command.Stdout = stdout
command.Stderr = stderr
execOpts.LogCmd(name, cmd)
if err := command.Start(); err != nil {
return nil, ErrCommandFailed.Wrapf("failed to start command: %w", err)
}
return command, nil
}
// Exec executes a command on the host
func (c *Localhost) Exec(cmd string, opts ...exec.Option) error {
execOpts := exec.Build(opts...)
command, err := c.command(cmd, execOpts)
if err != nil {
return err
}
if execOpts.Stdin != "" {
execOpts.LogStdin(name)
command.Stdin = strings.NewReader(execOpts.Stdin)
}
stdout, err := command.StdoutPipe()
if err != nil {
return fmt.Errorf("failed to get stdout pipe: %w", err)
}
stderr, err := command.StderrPipe()
if err != nil {
return fmt.Errorf("failed to get stderr pipe: %w", err)
}
execOpts.LogCmd(name, cmd)
if err := command.Start(); err != nil {
return fmt.Errorf("failed to start command: %w", err)
}
var wg sync.WaitGroup
wg.Add(1)
go func() {
defer wg.Done()
if execOpts.Writer == nil {
outputScanner := bufio.NewScanner(stdout)
for outputScanner.Scan() {
execOpts.AddOutput(name, outputScanner.Text()+"\n", "")
}
} else {
if _, err := io.Copy(execOpts.Writer, stdout); err != nil {
execOpts.LogErrorf("%s: failed to stream stdout: %v", c, err)
}
}
}()
wg.Add(1)
go func() {
defer wg.Done()
outputScanner := bufio.NewScanner(stderr)
for outputScanner.Scan() {
execOpts.AddOutput(name, "", outputScanner.Text()+"\n")
}
}()
err = command.Wait()
wg.Wait()
if err != nil {
return fmt.Errorf("command wait: %w", err)
}
return nil
}
func (c *Localhost) command(cmd string, o *exec.Options) (*osexec.Cmd, error) {
cmd, err := o.Command(cmd)
if err != nil {
return nil, fmt.Errorf("build command: %w", err)
}
if c.IsWindows() {
return osexec.Command("cmd.exe", "/c", cmd), nil
}
return osexec.Command("bash", "-c", "--", cmd), nil
}
// ExecInteractive executes a command on the host and copies stdin/stdout/stderr from local host
func (c *Localhost) ExecInteractive(cmd string) error {
if cmd == "" {
cmd = os.Getenv("SHELL") + " -l"
}
if cmd == " -l" {
cmd = "cmd"
}
cwd, err := os.Getwd()
if err != nil {
return fmt.Errorf("failed to get current working directory: %w", err)
}
pa := os.ProcAttr{
Files: []*os.File{os.Stdin, os.Stdout, os.Stderr},
Dir: cwd,
}
parts, err := shellquote.Split(cmd)
if err != nil {
return fmt.Errorf("failed to parse command: %w", err)
}
proc, err := os.StartProcess(parts[0], parts[1:], &pa)
if err != nil {
return fmt.Errorf("failed to start process: %w", err)
}
if _, err := proc.Wait(); err != nil {
return fmt.Errorf("process wait: %w", err)
}
return nil
}