-
Notifications
You must be signed in to change notification settings - Fork 4.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Allow vault ssh to accept ssh commands in any ssh compatible format (#…
…4710) * Allow vault ssh to accept ssh commands in any ssh compatible format Previously vault ssh required ssh commands to be in the format `username@hostname <flags> command`. While this works just fine for human users this breaks a lot of automation workflows and is not compatible with the options that the ssh client supports. Motivation We currently run ansible which uses vault ssh to connect to hosts. Ansible generates ssh commands with the format `ssh <flags> -o User=username hostname command`. While this is a valid ssh command it currently breaks with vault because vault expects the format to be `username@hostname`. To work around this we currently use a wrapper script to parse the correct username being set by ansible and translate this into a vault ssh compatible `username@hostname` format Changes * You can now specify arguments in any order that ssh client allows. All arguments are passed directly to the ssh command and the format isn't modified in any way. * The username and port are parsed from the specified ssh command. It will accept all of the options supported by the ssh command and also will properly prefer `-p` and `user@` if both options are specified. * The ssh port is only added from the vault credentials if it hasn't been specified on the command line
- Loading branch information
Showing
2 changed files
with
258 additions
and
51 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -243,17 +243,27 @@ func (c *SSHCommand) Run(args []string) int { | |
return 1 | ||
} | ||
|
||
// Extract the username and IP. | ||
username, hostname, ip, err := c.userHostAndIP(args[0]) | ||
// Extract the hostname, username and port from the ssh command | ||
hostname, username, port, err := c.parseSSHCommand(args) | ||
if err != nil { | ||
c.UI.Error(fmt.Sprintf("Error parsing user and IP: %s", err)) | ||
c.UI.Error(fmt.Sprintf("Error parsing the ssh command: %q", err)) | ||
return 1 | ||
} | ||
|
||
// The rest of the args are ssh args | ||
sshArgs := []string{} | ||
if len(args) > 1 { | ||
sshArgs = args[1:] | ||
// Use the current user if no user was specified in the ssh command | ||
if username == "" { | ||
u, err := user.Current() | ||
if err != nil { | ||
c.UI.Error(fmt.Sprintf("Error getting the current user: %q", err)) | ||
return 1 | ||
} | ||
username = u.Username | ||
} | ||
|
||
ip, err := c.resolveHostname(hostname) | ||
if err != nil { | ||
c.UI.Error(fmt.Sprintf("Error resolving the ssh hostname: %q", err)) | ||
return 1 | ||
} | ||
|
||
// Set the client in the command | ||
|
@@ -329,19 +339,19 @@ func (c *SSHCommand) Run(args []string) int { | |
|
||
switch strings.ToLower(c.flagMode) { | ||
case ssh.KeyTypeCA: | ||
return c.handleTypeCA(username, hostname, ip, sshArgs) | ||
return c.handleTypeCA(username, ip, port, args) | ||
case ssh.KeyTypeOTP: | ||
return c.handleTypeOTP(username, hostname, ip, sshArgs) | ||
return c.handleTypeOTP(username, ip, port, args) | ||
case ssh.KeyTypeDynamic: | ||
return c.handleTypeDynamic(username, ip, sshArgs) | ||
return c.handleTypeDynamic(username, ip, port, args) | ||
default: | ||
c.UI.Error(fmt.Sprintf("Unknown SSH mode: %s", c.flagMode)) | ||
return 1 | ||
} | ||
} | ||
|
||
// handleTypeCA is used to handle SSH logins using the "CA" key type. | ||
func (c *SSHCommand) handleTypeCA(username, hostname, ip string, sshArgs []string) int { | ||
func (c *SSHCommand) handleTypeCA(username, ip, port string, sshArgs []string) int { | ||
// Read the key from disk | ||
publicKey, err := ioutil.ReadFile(c.flagPublicKeyPath) | ||
if err != nil { | ||
|
@@ -460,10 +470,6 @@ func (c *SSHCommand) handleTypeCA(username, hostname, ip string, sshArgs []strin | |
) | ||
} | ||
|
||
args = append(args, | ||
username+"@"+hostname, | ||
) | ||
|
||
// Add extra user defined ssh arguments | ||
args = append(args, sshArgs...) | ||
|
||
|
@@ -493,7 +499,7 @@ func (c *SSHCommand) handleTypeCA(username, hostname, ip string, sshArgs []strin | |
} | ||
|
||
// handleTypeOTP is used to handle SSH logins using the "otp" key type. | ||
func (c *SSHCommand) handleTypeOTP(username, hostname string, ip string, sshArgs []string) int { | ||
func (c *SSHCommand) handleTypeOTP(username, ip, port string, sshArgs []string) int { | ||
secret, cred, err := c.generateCredential(username, ip) | ||
if err != nil { | ||
c.UI.Error(fmt.Sprintf("failed to generate credential: %s", err)) | ||
|
@@ -543,10 +549,13 @@ func (c *SSHCommand) handleTypeOTP(username, hostname string, ip string, sshArgs | |
) | ||
} | ||
|
||
// If a port wasn't specified in the ssh arguments lets use the port we got back from vault | ||
if port == "" { | ||
args = append(args, "-p", cred.Port) | ||
} | ||
|
||
args = append(args, | ||
"-o StrictHostKeyChecking="+c.flagStrictHostKeyChecking, | ||
"-p", cred.Port, | ||
username+"@"+hostname, | ||
) | ||
|
||
// Add the rest of the ssh args appended by the user | ||
|
@@ -585,7 +594,7 @@ func (c *SSHCommand) handleTypeOTP(username, hostname string, ip string, sshArgs | |
} | ||
|
||
// handleTypeDynamic is used to handle SSH logins using the "dyanmic" key type. | ||
func (c *SSHCommand) handleTypeDynamic(username, ip string, sshArgs []string) int { | ||
func (c *SSHCommand) handleTypeDynamic(username, ip, port string, sshArgs []string) int { | ||
// Generate the credential | ||
secret, cred, err := c.generateCredential(username, ip) | ||
if err != nil { | ||
|
@@ -610,13 +619,20 @@ func (c *SSHCommand) handleTypeDynamic(username, ip string, sshArgs []string) in | |
return 1 | ||
} | ||
|
||
args := append([]string{ | ||
args := make([]string, 0) | ||
// If a port wasn't specified in the ssh arguments lets use the port we got back from vault | ||
if port == "" { | ||
args = append(args, "-p", cred.Port) | ||
} | ||
|
||
args = append(args, | ||
"-i", keyPath, | ||
"-o UserKnownHostsFile=" + c.flagUserKnownHostsFile, | ||
"-o StrictHostKeyChecking=" + c.flagStrictHostKeyChecking, | ||
"-p", cred.Port, | ||
username + "@" + ip, | ||
}, sshArgs...) | ||
"-o UserKnownHostsFile="+c.flagUserKnownHostsFile, | ||
"-o StrictHostKeyChecking="+c.flagStrictHostKeyChecking, | ||
) | ||
|
||
// Add extra user defined ssh arguments | ||
args = append(args, sshArgs...) | ||
|
||
cmd := exec.Command("ssh", args...) | ||
cmd.Stdin = os.Stdin | ||
|
@@ -745,37 +761,95 @@ func (c *SSHCommand) defaultRole(mountPoint, ip string) (string, error) { | |
} | ||
} | ||
|
||
// userAndIP takes an argument in the format [email protected] and separates the IP | ||
// and user parts, returning any errors. | ||
func (c *SSHCommand) userHostAndIP(s string) (string, string, string, error) { | ||
// split the parameter username@ip | ||
input := strings.Split(s, "@") | ||
var username, address string | ||
|
||
// If only IP is mentioned and username is skipped, assume username to | ||
// be the current username. Vault SSH role's default username could have | ||
// been used, but in order to retain the consistency with SSH command, | ||
// current username is employed. | ||
switch len(input) { | ||
case 1: | ||
u, err := user.Current() | ||
if err != nil { | ||
return "", "", "", errors.Wrap(err, "failed to fetch current user") | ||
// Finds the hostname, username (optional) and port (optional) from any valid ssh command | ||
// Supports usrname@hostname but also specifying valid ssh flags like -o User=username, | ||
// -o Port=2222 and -p 2222 anywhere in the command | ||
func (c *SSHCommand) parseSSHCommand(args []string) (hostname string, username string, port string, err error) { | ||
lastArg := "" | ||
|
||
for _, i := range args { | ||
arg := lastArg | ||
lastArg = "" | ||
|
||
// If -p has been specified then this is our ssh port | ||
if arg == "-p" { | ||
port = i | ||
continue | ||
} | ||
username, address = u.Username, input[0] | ||
case 2: | ||
username, address = input[0], input[1] | ||
default: | ||
return "", "", "", fmt.Errorf("invalid arguments: %q", s) | ||
|
||
// this is an ssh option, lets see if User or Port have been set and use it | ||
if arg == "-o" { | ||
split := strings.Split(i, "=") | ||
key := split[0] | ||
// Incase the value contains = signs we want to get all of them | ||
value := strings.Join(split[1:], " ") | ||
|
||
if key == "User" { | ||
// Don't overwrite the user if it is already set by username@hostname | ||
// This matches the behaviour for how regular ssh reponds when both are specified | ||
if username == "" { | ||
username = value | ||
} | ||
} | ||
|
||
if key == "Port" { | ||
// Don't overwrite the port if it is already set by -p | ||
// This matches the behaviour for how regular ssh reponds when both are specified | ||
if port == "" { | ||
port = value | ||
} | ||
} | ||
continue | ||
} | ||
|
||
// This isn't an ssh argument that we care about. Lets keep on parsing the command | ||
if arg != "" { | ||
continue | ||
} | ||
|
||
// If this is an ssh argument we want to look at the value | ||
if strings.HasPrefix(i, "-") { | ||
lastArg = i | ||
continue | ||
} | ||
|
||
// If we have gotten this far it means this is a bare argument | ||
// The first bare argument is the hostname | ||
// The second bare argument is the command to run on the remote host | ||
|
||
// If the hostname hasn't been set yet than it means we have found the first bare argument | ||
if hostname == "" { | ||
if strings.Contains(i, "@") { | ||
split := strings.Split(i, "@") | ||
username = split[0] | ||
hostname = split[1] | ||
} else { | ||
hostname = i | ||
} | ||
continue | ||
} else { | ||
// The second bare argument is the command to run on the remote host. | ||
// We need to break out and stop parsing arugments now | ||
break | ||
} | ||
|
||
} | ||
if hostname == "" { | ||
return "", "", "", errors.Wrap( | ||
err, | ||
fmt.Sprintf("failed to find a hostname in ssh command %q", strings.Join(args, " ")), | ||
) | ||
} | ||
return hostname, username, port, nil | ||
} | ||
|
||
func (c *SSHCommand) resolveHostname(hostname string) (ip string, err error) { | ||
// Resolving domain names to IP address on the client side. | ||
// Vault only deals with IP addresses. | ||
ipAddr, err := net.ResolveIPAddr("ip", address) | ||
ipAddr, err := net.ResolveIPAddr("ip", hostname) | ||
if err != nil { | ||
return "", "", "", errors.Wrap(err, "failed to resolve IP address") | ||
return "", errors.Wrap(err, "failed to resolve IP address") | ||
} | ||
ip := ipAddr.String() | ||
|
||
return username, address, ip, nil | ||
ip = ipAddr.String() | ||
return ip, nil | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters