2016-06-15 22:43:31 +02:00
|
|
|
package readpassword
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"io"
|
|
|
|
"os"
|
|
|
|
"os/exec"
|
|
|
|
"strings"
|
|
|
|
|
|
|
|
"golang.org/x/crypto/ssh/terminal"
|
|
|
|
|
2016-06-15 23:30:44 +02:00
|
|
|
"github.com/rfjakob/gocryptfs/internal/tlog"
|
2016-06-15 22:43:31 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
const (
|
|
|
|
exitCode = 9
|
|
|
|
)
|
|
|
|
|
|
|
|
// Once() tries to get a password from the user, either from the terminal,
|
|
|
|
// extpass or stdin.
|
|
|
|
func Once(extpass string) string {
|
|
|
|
if extpass != "" {
|
|
|
|
return readPasswordExtpass(extpass)
|
|
|
|
}
|
|
|
|
if !terminal.IsTerminal(int(os.Stdin.Fd())) {
|
|
|
|
return readPasswordStdin()
|
|
|
|
}
|
|
|
|
return readPasswordTerminal("Password: ")
|
|
|
|
}
|
|
|
|
|
|
|
|
// Twice() is the same as Once but will prompt twice if we get
|
|
|
|
// the password from the terminal.
|
|
|
|
func Twice(extpass string) string {
|
|
|
|
if extpass != "" {
|
|
|
|
return readPasswordExtpass(extpass)
|
|
|
|
}
|
|
|
|
if !terminal.IsTerminal(int(os.Stdin.Fd())) {
|
|
|
|
return readPasswordStdin()
|
|
|
|
}
|
|
|
|
p1 := readPasswordTerminal("Password: ")
|
|
|
|
p2 := readPasswordTerminal("Repeat: ")
|
|
|
|
if p1 != p2 {
|
2016-06-15 23:30:44 +02:00
|
|
|
tlog.Fatal.Println("Passwords do not match")
|
2016-06-15 22:43:31 +02:00
|
|
|
os.Exit(exitCode)
|
|
|
|
}
|
|
|
|
return p1
|
|
|
|
}
|
|
|
|
|
|
|
|
// readPasswordTerminal reads a line from the terminal.
|
|
|
|
// Exits on read error or empty result.
|
|
|
|
func readPasswordTerminal(prompt string) string {
|
|
|
|
fd := int(os.Stdin.Fd())
|
|
|
|
fmt.Fprintf(os.Stderr, prompt)
|
|
|
|
// terminal.ReadPassword removes the trailing newline
|
|
|
|
p, err := terminal.ReadPassword(fd)
|
|
|
|
if err != nil {
|
2016-06-15 23:30:44 +02:00
|
|
|
tlog.Fatal.Printf("Could not read password from terminal: %v\n", err)
|
2016-06-15 22:43:31 +02:00
|
|
|
os.Exit(exitCode)
|
|
|
|
}
|
|
|
|
fmt.Fprintf(os.Stderr, "\n")
|
|
|
|
if len(p) == 0 {
|
2016-06-15 23:30:44 +02:00
|
|
|
tlog.Fatal.Println("Password is empty")
|
2016-06-15 22:43:31 +02:00
|
|
|
os.Exit(exitCode)
|
|
|
|
}
|
|
|
|
return string(p)
|
|
|
|
}
|
|
|
|
|
|
|
|
// readPasswordStdin reads a line from stdin
|
|
|
|
// Exits on read error or empty result.
|
|
|
|
func readPasswordStdin() string {
|
2016-06-15 23:30:44 +02:00
|
|
|
tlog.Info.Println("Reading password from stdin")
|
2016-06-15 22:43:31 +02:00
|
|
|
p := readLineUnbuffered(os.Stdin)
|
|
|
|
if len(p) == 0 {
|
2016-06-15 23:30:44 +02:00
|
|
|
tlog.Fatal.Println("Got empty password from stdin")
|
2016-06-15 22:43:31 +02:00
|
|
|
os.Exit(exitCode)
|
|
|
|
}
|
|
|
|
return p
|
|
|
|
}
|
|
|
|
|
|
|
|
// readPasswordExtpass executes the "extpass" program and returns the first line
|
|
|
|
// of the output.
|
|
|
|
// Exits on read error or empty result.
|
|
|
|
func readPasswordExtpass(extpass string) string {
|
2016-06-15 23:30:44 +02:00
|
|
|
tlog.Info.Println("Reading password from extpass program")
|
2016-06-15 22:43:31 +02:00
|
|
|
parts := strings.Split(extpass, " ")
|
|
|
|
cmd := exec.Command(parts[0], parts[1:]...)
|
|
|
|
cmd.Stderr = os.Stderr
|
|
|
|
pipe, err := cmd.StdoutPipe()
|
|
|
|
if err != nil {
|
2016-06-15 23:30:44 +02:00
|
|
|
tlog.Fatal.Printf("extpass pipe setup failed: %v", err)
|
2016-06-15 22:43:31 +02:00
|
|
|
os.Exit(exitCode)
|
|
|
|
}
|
|
|
|
err = cmd.Start()
|
|
|
|
if err != nil {
|
2016-06-15 23:30:44 +02:00
|
|
|
tlog.Fatal.Printf("extpass cmd start failed: %v", err)
|
2016-06-15 22:43:31 +02:00
|
|
|
os.Exit(exitCode)
|
|
|
|
}
|
|
|
|
p := readLineUnbuffered(pipe)
|
|
|
|
pipe.Close()
|
|
|
|
cmd.Wait()
|
|
|
|
if len(p) == 0 {
|
2016-06-15 23:30:44 +02:00
|
|
|
tlog.Fatal.Println("extpass: password is empty")
|
2016-06-15 22:43:31 +02:00
|
|
|
os.Exit(exitCode)
|
|
|
|
}
|
|
|
|
return p
|
|
|
|
}
|
|
|
|
|
|
|
|
// readLineUnbuffered reads single bytes from "r" util it gets "\n" or EOF.
|
|
|
|
// The returned string does NOT contain the trailing "\n".
|
|
|
|
func readLineUnbuffered(r io.Reader) (l string) {
|
|
|
|
b := make([]byte, 1)
|
|
|
|
for {
|
|
|
|
n, err := r.Read(b)
|
|
|
|
if err == io.EOF {
|
|
|
|
return l
|
|
|
|
}
|
|
|
|
if err != nil {
|
2016-06-15 23:30:44 +02:00
|
|
|
tlog.Fatal.Printf("readLineUnbuffered: %v", err)
|
2016-06-15 22:43:31 +02:00
|
|
|
os.Exit(exitCode)
|
|
|
|
}
|
|
|
|
if n == 0 {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
if b[0] == '\n' {
|
|
|
|
return l
|
|
|
|
}
|
|
|
|
l = l + string(b)
|
|
|
|
}
|
|
|
|
}
|