-
Notifications
You must be signed in to change notification settings - Fork 0
/
ssh_config_tool.go
302 lines (257 loc) · 7.13 KB
/
ssh_config_tool.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
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
301
302
package main
import (
"bufio"
"flag"
"fmt"
"io"
"io/ioutil"
"os"
"os/user"
"path/filepath"
"sort"
"strings"
"github.com/google/shlex"
"github.com/pmezard/go-difflib/difflib"
)
type SSHCommand struct {
Hostname string
User string
Options map[string]string
}
func parseSSHCommand(sshCommand string) (*SSHCommand, error) {
tokens, err := shlex.Split(sshCommand)
if err != nil {
return nil, err
}
hostname := ""
user := ""
options := make(map[string]string)
for i := 0; i < len(tokens); i++ {
switch tokens[i] {
case "ssh":
// skip
case "-p":
i++
options["Port"] = tokens[i]
case "-i":
i++
options["IdentityFile"] = tokens[i]
case "-o":
i++
opt := strings.SplitN(tokens[i], "=", 2)
options[opt[0]] = opt[1]
case "-X":
options["ForwardX11"] = "yes"
case "-A":
options["ForwardAgent"] = "yes"
case "-L":
i++
localForwardParts := strings.SplitN(tokens[i], ":", 3)
options["LocalForward"] = fmt.Sprintf(
"%s %s:%s",
localForwardParts[0],
localForwardParts[1],
localForwardParts[2])
case "-J":
i++
options["ProxyJump"] = tokens[i]
default:
if strings.Contains(tokens[i], "@") {
parts := strings.Split(tokens[i], "@")
user = parts[0]
hostname = parts[1]
} else {
hostname = tokens[i]
}
}
}
return &SSHCommand{
Hostname: hostname,
User: user,
Options: options,
}, nil
}
func sshCommandToConfigEntry(sshCommand string) string {
sshCmd, _ := parseSSHCommand(sshCommand)
var b strings.Builder
fmt.Fprintf(&b, "Host %s\n", sshCmd.Hostname)
fmt.Fprintf(&b, " HostName %s\n", sshCmd.Hostname)
fmt.Fprintf(&b, " User %s\n", sshCmd.User)
// Get sorted keys
keys := make([]string, 0, len(sshCmd.Options))
for k := range sshCmd.Options {
keys = append(keys, k)
}
sort.Strings(keys)
// Iterate through sorted keys for deterministic output
for _, k := range keys {
fmt.Fprintf(&b, " %s %s\n", k, sshCmd.Options[k])
}
return b.String()
}
func calculateDiff(existingConfig, newConfig string) string {
diff := difflib.UnifiedDiff{
A: difflib.SplitLines(existingConfig),
B: difflib.SplitLines(newConfig),
FromFile: "Existing Config",
ToFile: "New Config",
Context: 3,
}
diffStr, _ := difflib.GetUnifiedDiffString(diff)
return diffStr
}
func splitSSHConfig(force bool, configPath string, dryRun bool) {
usr, _ := user.Current()
if configPath == "" {
configPath = filepath.Join(usr.HomeDir, ".ssh", "config")
}
configData, err := ioutil.ReadFile(configPath)
if err != nil {
fmt.Fprintf(os.Stderr, "Error reading SSH config file: %v\n", err)
os.Exit(1)
}
hosts := parseSSHConfig(string(configData))
sshConfigD := filepath.Join(usr.HomeDir, ".ssh", "config.d")
if !dryRun {
_ = os.MkdirAll(sshConfigD, 0755)
}
createNewDotSSHConfig := true
for hostName, hostLines := range hosts {
if hostName == "" {
continue
}
hostConfigFile := filepath.Join(sshConfigD, hostName+".conf")
hostConfig := strings.Join(hostLines, "\n")
overwrite := force
if !force {
if _, err := os.Stat(hostConfigFile); err == nil {
existingData, _ := ioutil.ReadFile(hostConfigFile)
existingConfig := string(existingData)
if existingConfig != hostConfig {
diffStr := calculateDiff(existingConfig, hostConfig)
fmt.Fprintf(os.Stderr, "Differences in host %s configuration:\n%s\n", hostName, diffStr)
fmt.Fprintf(os.Stderr, "Not modifying %s - use --force to overwrite\n", hostConfigFile)
createNewDotSSHConfig = false
}
continue
} else {
overwrite = true
}
}
if overwrite && !dryRun {
err = ioutil.WriteFile(hostConfigFile, []byte(hostConfig), 0644)
if err != nil {
fmt.Fprintf(os.Stderr, "Error writing host config file: %v\n", err)
os.Exit(1)
}
} else if dryRun {
fmt.Fprintf(os.Stderr, "Dry run: would write file %s with content:\n%s\n", hostConfigFile, hostConfig)
}
}
if !dryRun {
backupSSHConfig()
}
if ((createNewDotSSHConfig && len(hosts) > 0) || force) && !dryRun {
newConfig := "# This file is generated by sshcfgtool - see ~/.ssh/config.d for host configurations.\n"
newConfig += "Include " + filepath.Join(usr.HomeDir, ".ssh", "config.d", "*")
err = ioutil.WriteFile(configPath, []byte(newConfig), 0644)
if err != nil {
fmt.Fprintf(os.Stderr, "Error writing new SSH config file: %v\n", err)
os.Exit(1)
}
} else if dryRun {
fmt.Fprintf(os.Stderr, "Dry run: would update SSH config file %s\n", configPath)
}
}
func copyFile(srcPath, dstPath string) error {
srcFile, err := os.Open(srcPath)
if err != nil {
return err
}
defer srcFile.Close()
dstFile, err := os.Create(dstPath)
if err != nil {
return err
}
defer dstFile.Close()
_, err = io.Copy(dstFile, srcFile)
if err != nil {
return err
}
srcInfo, err := srcFile.Stat()
if err != nil {
return err
}
return os.Chmod(dstPath, srcInfo.Mode())
}
func backupSSHConfig() {
usr, _ := user.Current()
sshConfigPath := filepath.Join(usr.HomeDir, ".ssh", "config")
backupBase := filepath.Join(usr.HomeDir, ".ssh", "config.backup")
var backupPath string
for i := 0; ; i++ {
backupPath = backupBase
if i > 0 {
backupPath = fmt.Sprintf("%s.%d", backupBase, i)
}
if _, err := os.Stat(backupPath); os.IsNotExist(err) {
break
}
}
//err := exec.Command("cp", "-p", sshConfigPath, backupPath).Run()
err := copyFile(sshConfigPath, backupPath)
if err != nil {
fmt.Fprintf(os.Stderr, "Error creating backup: %v\n", err)
os.Exit(1)
}
}
func parseSSHConfig(configData string) map[string][]string {
hosts := make(map[string][]string)
scanner := bufio.NewScanner(strings.NewReader(configData))
hostName := ""
for scanner.Scan() {
line := strings.TrimSpace(scanner.Text())
if line == "" {
continue
}
if strings.HasPrefix(line, "Host ") {
hostName = strings.TrimSpace(strings.TrimPrefix(line, "Host"))
} else if hostName != "" {
hosts[hostName] = append(hosts[hostName], " "+line)
}
}
return hosts
}
func main() {
flag.Usage = func() {
fmt.Fprintf(flag.CommandLine.Output(), "Usage: %s [subcommand] [options]\n\n", os.Args[0])
fmt.Fprintln(flag.CommandLine.Output(), "Subcommands:")
fmt.Fprintln(flag.CommandLine.Output(), " split\tSplit SSH config into separate files")
fmt.Fprintln(flag.CommandLine.Output(), " translate\tTranslate SSH command to SSH config entry")
flag.PrintDefaults()
}
force := flag.Bool("force", false, "Force overwriting existing files in split subcommand")
var dryRun bool
flag.BoolVar(&dryRun, "dry-run", false, "Print intentions but don't actually change any files")
flag.BoolVar(&dryRun, "n", false, "Print intentions but don't actually change any files (shorthand)")
var configPath string
flag.StringVar(&configPath, "config", "", "Path to the SSH config file")
flag.StringVar(&configPath, "c", "", "Path to the SSH config file (shorthand)")
flag.Parse()
if flag.NArg() < 1 {
flag.Usage()
os.Exit(1)
}
subcommand := flag.Arg(0)
switch subcommand {
case "split":
splitSSHConfig(*force, configPath, dryRun)
case "translate":
sshCommand := flag.Args()[1:]
configEntry := sshCommandToConfigEntry(strings.Join(sshCommand, " "))
fmt.Println(configEntry)
default:
flag.Usage()
os.Exit(1)
}
}