2021-05-15 10:08:31 +00:00
|
|
|
// Copyright 2019 The Go Authors. All rights reserved.
|
2019-01-18 01:50:10 +00:00
|
|
|
// Use of this source code is governed by a BSD-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
2021-05-15 10:08:31 +00:00
|
|
|
//go:build aix || darwin || dragonfly || freebsd || linux || netbsd || openbsd || zos
|
|
|
|
// +build aix darwin dragonfly freebsd linux netbsd openbsd zos
|
2019-01-18 01:50:10 +00:00
|
|
|
|
2021-05-15 10:08:31 +00:00
|
|
|
package term
|
2019-01-18 01:50:10 +00:00
|
|
|
|
|
|
|
import (
|
|
|
|
"golang.org/x/sys/unix"
|
|
|
|
)
|
|
|
|
|
2021-05-15 10:08:31 +00:00
|
|
|
type state struct {
|
2019-01-18 01:50:10 +00:00
|
|
|
termios unix.Termios
|
|
|
|
}
|
|
|
|
|
2021-05-15 10:08:31 +00:00
|
|
|
func isTerminal(fd int) bool {
|
2019-01-18 01:50:10 +00:00
|
|
|
_, err := unix.IoctlGetTermios(fd, ioctlReadTermios)
|
|
|
|
return err == nil
|
|
|
|
}
|
|
|
|
|
2021-05-15 10:08:31 +00:00
|
|
|
func makeRaw(fd int) (*State, error) {
|
2019-01-18 01:50:10 +00:00
|
|
|
termios, err := unix.IoctlGetTermios(fd, ioctlReadTermios)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2021-05-15 10:08:31 +00:00
|
|
|
oldState := State{state{termios: *termios}}
|
2019-01-18 01:50:10 +00:00
|
|
|
|
|
|
|
// This attempts to replicate the behaviour documented for cfmakeraw in
|
|
|
|
// the termios(3) manpage.
|
|
|
|
termios.Iflag &^= unix.IGNBRK | unix.BRKINT | unix.PARMRK | unix.ISTRIP | unix.INLCR | unix.IGNCR | unix.ICRNL | unix.IXON
|
|
|
|
termios.Oflag &^= unix.OPOST
|
|
|
|
termios.Lflag &^= unix.ECHO | unix.ECHONL | unix.ICANON | unix.ISIG | unix.IEXTEN
|
|
|
|
termios.Cflag &^= unix.CSIZE | unix.PARENB
|
|
|
|
termios.Cflag |= unix.CS8
|
|
|
|
termios.Cc[unix.VMIN] = 1
|
|
|
|
termios.Cc[unix.VTIME] = 0
|
|
|
|
if err := unix.IoctlSetTermios(fd, ioctlWriteTermios, termios); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
return &oldState, nil
|
|
|
|
}
|
|
|
|
|
2021-05-15 10:08:31 +00:00
|
|
|
func getState(fd int) (*State, error) {
|
2019-01-18 01:50:10 +00:00
|
|
|
termios, err := unix.IoctlGetTermios(fd, ioctlReadTermios)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2021-05-15 10:08:31 +00:00
|
|
|
return &State{state{termios: *termios}}, nil
|
2019-01-18 01:50:10 +00:00
|
|
|
}
|
|
|
|
|
2021-05-15 10:08:31 +00:00
|
|
|
func restore(fd int, state *State) error {
|
2019-01-18 01:50:10 +00:00
|
|
|
return unix.IoctlSetTermios(fd, ioctlWriteTermios, &state.termios)
|
|
|
|
}
|
|
|
|
|
2021-05-15 10:08:31 +00:00
|
|
|
func getSize(fd int) (width, height int, err error) {
|
2019-01-18 01:50:10 +00:00
|
|
|
ws, err := unix.IoctlGetWinsize(fd, unix.TIOCGWINSZ)
|
|
|
|
if err != nil {
|
|
|
|
return -1, -1, err
|
|
|
|
}
|
|
|
|
return int(ws.Col), int(ws.Row), nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// passwordReader is an io.Reader that reads from a specific file descriptor.
|
|
|
|
type passwordReader int
|
|
|
|
|
|
|
|
func (r passwordReader) Read(buf []byte) (int, error) {
|
|
|
|
return unix.Read(int(r), buf)
|
|
|
|
}
|
|
|
|
|
2021-05-15 10:08:31 +00:00
|
|
|
func readPassword(fd int) ([]byte, error) {
|
2019-01-18 01:50:10 +00:00
|
|
|
termios, err := unix.IoctlGetTermios(fd, ioctlReadTermios)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
newState := *termios
|
|
|
|
newState.Lflag &^= unix.ECHO
|
|
|
|
newState.Lflag |= unix.ICANON | unix.ISIG
|
|
|
|
newState.Iflag |= unix.ICRNL
|
|
|
|
if err := unix.IoctlSetTermios(fd, ioctlWriteTermios, &newState); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
defer unix.IoctlSetTermios(fd, ioctlWriteTermios, termios)
|
|
|
|
|
|
|
|
return readPasswordLine(passwordReader(fd))
|
|
|
|
}
|