forked from stevensu1977/commandcast
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.go
More file actions
300 lines (261 loc) · 6.46 KB
/
main.go
File metadata and controls
300 lines (261 loc) · 6.46 KB
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
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
package main
import (
"bufio"
"fmt"
"io/ioutil"
"net"
"net/url"
"os"
"path/filepath"
"strings"
"time"
"github.com/fatih/color"
"github.com/kevinburke/ssh_config"
"github.com/urfave/cli"
"golang.org/x/crypto/ssh"
"golang.org/x/crypto/ssh/agent"
)
// Colors
var labelColor = color.New(color.FgMagenta).Add(color.Bold).SprintFunc()
var hostColor = color.New(color.FgCyan).SprintFunc()
// Clean command - trim space and new line
func CleanText(cmd string) string {
return strings.TrimSpace(strings.Trim(cmd, "\n"))
}
func ReadHostsFromFile(file string) []string {
buffer, err := ioutil.ReadFile(file)
if err != nil {
return nil
}
var results []string
for _, host := range strings.Split(strings.Trim(string(buffer), "\n"), "\n") {
if strings.TrimSpace(host) != "" {
results = append(results, strings.TrimSpace(host))
}
}
return results
}
func AgentAuth() ssh.AuthMethod {
socket := os.Getenv("SSH_AUTH_SOCK")
conn, err := net.Dial("unix", socket)
if err != nil {
return nil
}
agentClient := agent.NewClient(conn)
return ssh.PublicKeysCallback(agentClient.Signers)
}
func PublicKeyFile(file string) ssh.AuthMethod {
buffer, err := ioutil.ReadFile(file)
if err != nil {
return nil
}
key, err := ssh.ParsePrivateKey(buffer)
if err != nil {
return nil
}
return ssh.PublicKeys(key)
}
func GetAuthPassword(password string) []ssh.AuthMethod {
return []ssh.AuthMethod{ssh.Password(password)}
}
func GetAuthKeys(keys []string) []ssh.AuthMethod {
methods := []ssh.AuthMethod{}
aa := AgentAuth()
if aa != nil {
methods = append(methods, aa)
}
for _, keyname := range keys {
pkey := PublicKeyFile(keyname)
if pkey != nil {
methods = append(methods, pkey)
}
}
return methods
}
func Execute(cmd string, hosts []HostConfig, to int) {
// Run parallel ssh session (max 10)
results := make(chan string, 10)
timeout := time.After(time.Duration(to) * time.Second)
// Execute command on hosts
for _, host := range hosts {
go func(host HostConfig) {
var result string
if text, err := host.ExecuteCmd(cmd); err != nil {
result = err.Error()
} else {
result = text
}
results <- fmt.Sprintf("%s > %s\n%s\n", hostColor(host), cmd, result)
}(host)
}
for i := 0; i < len(hosts); i++ {
select {
case res := <-results:
if res != "" {
fmt.Println(res)
}
case <-timeout:
color.Red("Timed out!")
return
}
}
}
func main() {
app := cli.NewApp()
app.Name = "commandcast"
app.Usage = "Run command on multiple hosts over SSH"
app.Version = "1.0.0"
app.Author = "Jaynti Kanani"
app.Email = "jdkanani@gmail.com"
var hostString, user, keyString, hostFileName string
var to int
var interactive bool = false
app.Commands = []cli.Command{
{
Name: "exec",
Aliases: []string{"e"},
Usage: "Execute command to all hosts",
Flags: []cli.Flag{
cli.BoolFlag{
Name: "interactive, i",
Usage: "Enable intereactive mode",
Destination: &interactive,
},
cli.StringFlag{
Name: "hosts",
Value: "localhost",
Usage: "Multiple hosts (comma separated)",
Destination: &hostString,
},
cli.StringFlag{
Name: "hostfile",
Usage: "File containing host names",
Destination: &hostFileName,
},
cli.StringFlag{
Name: "user, u",
Usage: "SSH auth user",
EnvVar: "USER",
Destination: &user,
},
cli.IntFlag{
Name: "timeout",
Usage: "SSH timeout (seconds)",
Value: 15,
Destination: &to,
},
cli.StringFlag{
Name: "keys",
Value: strings.Join([]string{
os.Getenv("HOME") + "/.ssh/id_ed25519",
os.Getenv("HOME") + "/.ssh/id_dsa",
os.Getenv("HOME") + "/.ssh/id_rsa",
}, ","),
Usage: "SSH auth keys (comma separated)",
Destination: &keyString,
},
},
Action: func(c *cli.Context) {
keys := strings.Split(keyString, ",")
var hosts []string = nil
if hostFileName != "" {
hosts = ReadHostsFromFile(hostFileName)
}
if hosts == nil && hostString != "" {
hosts = strings.Split(hostString, ",")
}
authKeys := GetAuthKeys(keys)
if len(authKeys) < 1 {
color.Red("Key(s) doesn't exist.")
return
}
getSSHConfig := func() (*ssh_config.Config, error) {
configPath := filepath.Join(os.Getenv("HOME"), ".ssh", "config")
f, err := os.Open(configPath)
if err != nil {
return nil, err
}
defer f.Close()
sshCfg, err := ssh_config.Decode(f)
if err != nil { /* handle */
return nil, err
}
return sshCfg, nil
}
sshCfg, _ := getSSHConfig()
hostConfigs := make([]HostConfig, len(hosts))
for i, hostName := range hosts {
userName := user
if sshCfg != nil {
hn, _ := sshCfg.Get(hostName, "Hostname")
un, _ := sshCfg.Get(hostName, "User")
if hn != "" {
hostName = hn
}
if un != "" {
userName = un
}
}
urlInfo, err := url.Parse("ssh://" + hostName)
if err != nil || urlInfo.Host == "" {
continue
}
// client config
username := userName
keys := authKeys
if urlInfo.User != nil {
if urlInfo.User.Username() != "" {
username = urlInfo.User.Username()
}
if password, ok := urlInfo.User.Password(); ok {
keys = append(keys, GetAuthPassword(password)...)
}
}
// create new host config
hostConfigs[i] = HostConfig{
User: username,
Host: urlInfo.Host,
Timeout: to,
ClientConfig: &ssh.ClientConfig{
User: username,
Auth: keys,
HostKeyCallback: ssh.InsecureIgnoreHostKey(),
},
}
}
// Print host configs and keys
fmt.Printf("%s %s\n", labelColor("Keys: "), keys)
fmt.Printf("%s %+v\n", labelColor("Hosts: "), hostConfigs)
// single command mode
if !interactive {
cmd := CleanText(c.Args().First())
if cmd != "" {
fmt.Printf(">>> %s\n", cmd)
Execute(cmd, hostConfigs, to)
}
}
// Interactive mode
if interactive {
for {
reader := bufio.NewReader(os.Stdin)
fmt.Print(">>> ")
cmd, _ := reader.ReadString('\n')
cmd = CleanText(cmd)
if cmd == "exit" {
break
}
if cmd != "" {
Execute(cmd, hostConfigs, to)
}
}
}
// Stop host session
for _, hostConfig := range hostConfigs {
hostConfig.StopSession()
}
},
},
}
// Run app
app.Run(os.Args)
}