2015-10-07 21:26:17 +02:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"os"
|
2015-11-15 13:38:19 +01:00
|
|
|
"os/exec"
|
|
|
|
"strings"
|
|
|
|
|
|
|
|
"golang.org/x/crypto/ssh/terminal"
|
2015-10-07 21:26:17 +02:00
|
|
|
)
|
|
|
|
|
2015-11-15 13:38:19 +01:00
|
|
|
func readPasswordTwice(extpass string) string {
|
2015-10-07 21:26:17 +02:00
|
|
|
fmt.Printf("Password: ")
|
2015-11-15 13:38:19 +01:00
|
|
|
p1 := readPassword(extpass)
|
|
|
|
fmt.Printf("Repeat: ")
|
|
|
|
p2 := readPassword(extpass)
|
2015-10-07 21:26:17 +02:00
|
|
|
if p1 != p2 {
|
|
|
|
fmt.Printf("Passwords do not match\n")
|
|
|
|
os.Exit(ERREXIT_PASSWORD)
|
|
|
|
}
|
|
|
|
return p1
|
|
|
|
}
|
|
|
|
|
2015-11-15 13:38:19 +01:00
|
|
|
// readPassword - get password from terminal
|
|
|
|
// or from the "extpass" program
|
|
|
|
func readPassword(extpass string) string {
|
|
|
|
var password string
|
|
|
|
var err error
|
|
|
|
var output []byte
|
|
|
|
if extpass != "" {
|
|
|
|
parts := strings.Split(extpass, " ")
|
|
|
|
cmd := exec.Command(parts[0], parts[1:]...)
|
|
|
|
cmd.Stderr = os.Stderr
|
|
|
|
output, err = cmd.Output()
|
|
|
|
if err != nil {
|
|
|
|
fmt.Printf("extpass program returned error: %v\n", err)
|
|
|
|
os.Exit(ERREXIT_PASSWORD)
|
|
|
|
}
|
|
|
|
fmt.Printf("(extpass)\n")
|
|
|
|
// Trim trailing newline like terminal.ReadPassword() does
|
|
|
|
if output[len(output)-1] == '\n' {
|
|
|
|
output = output[:len(output)-1]
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
fd := int(os.Stdin.Fd())
|
|
|
|
output, err = terminal.ReadPassword(fd)
|
|
|
|
if err != nil {
|
|
|
|
fmt.Printf("Error: Could not read password from terminal: %v\n", err)
|
|
|
|
os.Exit(ERREXIT_PASSWORD)
|
|
|
|
}
|
|
|
|
fmt.Printf("\n")
|
|
|
|
}
|
|
|
|
password = string(output)
|
|
|
|
if password == "" {
|
|
|
|
fmt.Printf("Error: password is empty\n")
|
2015-10-07 21:26:17 +02:00
|
|
|
os.Exit(ERREXIT_PASSWORD)
|
|
|
|
}
|
2015-11-15 13:38:19 +01:00
|
|
|
return password
|
2015-10-07 21:26:17 +02:00
|
|
|
}
|