2020-11-18 23:19:03 +01:00
|
|
|
// Copyright 2019 The Go Authors. All rights reserved.
|
2020-05-09 19:09:27 +02:00
|
|
|
// Use of this source code is governed by a BSD-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
2020-11-18 23:19:03 +01:00
|
|
|
package term
|
2020-05-09 19:09:27 +02:00
|
|
|
|
|
|
|
import (
|
|
|
|
"io"
|
|
|
|
"syscall"
|
2020-11-18 23:19:03 +01:00
|
|
|
|
|
|
|
"golang.org/x/sys/unix"
|
2020-05-09 19:09:27 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
// State contains the state of a terminal.
|
2020-11-18 23:19:03 +01:00
|
|
|
type state struct {
|
2020-05-09 19:09:27 +02:00
|
|
|
termios unix.Termios
|
|
|
|
}
|
|
|
|
|
2020-11-18 23:19:03 +01:00
|
|
|
func isTerminal(fd int) bool {
|
2020-05-09 19:09:27 +02:00
|
|
|
_, err := unix.IoctlGetTermio(fd, unix.TCGETA)
|
|
|
|
return err == nil
|
|
|
|
}
|
|
|
|
|
2020-11-18 23:19:03 +01:00
|
|
|
func readPassword(fd int) ([]byte, error) {
|
2020-05-09 19:09:27 +02:00
|
|
|
// see also: http://src.illumos.org/source/xref/illumos-gate/usr/src/lib/libast/common/uwin/getpass.c
|
|
|
|
val, err := unix.IoctlGetTermios(fd, unix.TCGETS)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
oldState := *val
|
|
|
|
|
|
|
|
newState := oldState
|
|
|
|
newState.Lflag &^= syscall.ECHO
|
|
|
|
newState.Lflag |= syscall.ICANON | syscall.ISIG
|
|
|
|
newState.Iflag |= syscall.ICRNL
|
|
|
|
err = unix.IoctlSetTermios(fd, unix.TCSETS, &newState)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
defer unix.IoctlSetTermios(fd, unix.TCSETS, &oldState)
|
|
|
|
|
|
|
|
var buf [16]byte
|
|
|
|
var ret []byte
|
|
|
|
for {
|
|
|
|
n, err := syscall.Read(fd, buf[:])
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
if n == 0 {
|
|
|
|
if len(ret) == 0 {
|
|
|
|
return nil, io.EOF
|
|
|
|
}
|
|
|
|
break
|
|
|
|
}
|
|
|
|
if buf[n-1] == '\n' {
|
|
|
|
n--
|
|
|
|
}
|
|
|
|
ret = append(ret, buf[:n]...)
|
|
|
|
if n < len(buf) {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return ret, nil
|
|
|
|
}
|
|
|
|
|
2020-11-18 23:19:03 +01:00
|
|
|
func makeRaw(fd int) (*State, error) {
|
|
|
|
// see http://cr.illumos.org/~webrev/andy_js/1060/
|
2020-05-09 19:09:27 +02:00
|
|
|
termios, err := unix.IoctlGetTermios(fd, unix.TCGETS)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2020-11-18 23:19:03 +01:00
|
|
|
oldState := State{state{termios: *termios}}
|
2020-05-09 19:09:27 +02:00
|
|
|
|
|
|
|
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, unix.TCSETS, termios); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
return &oldState, nil
|
|
|
|
}
|
|
|
|
|
2020-11-18 23:19:03 +01:00
|
|
|
func restore(fd int, oldState *State) error {
|
2020-05-09 19:09:27 +02:00
|
|
|
return unix.IoctlSetTermios(fd, unix.TCSETS, &oldState.termios)
|
|
|
|
}
|
|
|
|
|
2020-11-18 23:19:03 +01:00
|
|
|
func getState(fd int) (*State, error) {
|
2020-05-09 19:09:27 +02:00
|
|
|
termios, err := unix.IoctlGetTermios(fd, unix.TCGETS)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2020-11-18 23:19:03 +01:00
|
|
|
return &State{state{termios: *termios}}, nil
|
2020-05-09 19:09:27 +02:00
|
|
|
}
|
|
|
|
|
2020-11-18 23:19:03 +01:00
|
|
|
func getSize(fd int) (width, height int, err error) {
|
2020-05-09 19:09:27 +02:00
|
|
|
ws, err := unix.IoctlGetWinsize(fd, unix.TIOCGWINSZ)
|
|
|
|
if err != nil {
|
|
|
|
return 0, 0, err
|
|
|
|
}
|
|
|
|
return int(ws.Col), int(ws.Row), nil
|
|
|
|
}
|