blob: d01919614744199eb54de6a9b95693270f45f13f [file] [log] [blame]
David Symonds521edf82012-03-30 15:27:01 +11001// Copyright 2011 The Go Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style
3// license that can be found in the LICENSE file.
4
Mikio Harab71337f2014-05-05 12:07:22 -07005// +build darwin dragonfly freebsd linux,!appengine netbsd openbsd
David Symonds521edf82012-03-30 15:27:01 +11006
7// Package terminal provides support functions for dealing with terminals, as
8// commonly found on UNIX systems.
9//
10// Putting a terminal into raw mode is the most common requirement:
11//
12// oldState, err := terminal.MakeRaw(0)
13// if err != nil {
14// panic(err)
15// }
16// defer terminal.Restore(0, oldState)
David Symonds1fbbd622014-12-09 13:38:15 +110017package terminal // import "golang.org/x/crypto/ssh/terminal"
David Symonds521edf82012-03-30 15:27:01 +110018
19import (
David Symonds521edf82012-03-30 15:27:01 +110020 "syscall"
21 "unsafe"
22)
23
24// State contains the state of a terminal.
25type State struct {
26 termios syscall.Termios
27}
28
29// IsTerminal returns true if the given file descriptor is a terminal.
30func IsTerminal(fd int) bool {
31 var termios syscall.Termios
Adam Langleydb732cb2013-02-04 10:36:09 -050032 _, _, err := syscall.Syscall6(syscall.SYS_IOCTL, uintptr(fd), ioctlReadTermios, uintptr(unsafe.Pointer(&termios)), 0, 0, 0)
David Symonds521edf82012-03-30 15:27:01 +110033 return err == 0
34}
35
36// MakeRaw put the terminal connected to the given file descriptor into raw
37// mode and returns the previous state of the terminal so that it can be
38// restored.
39func MakeRaw(fd int) (*State, error) {
40 var oldState State
Adam Langleydb732cb2013-02-04 10:36:09 -050041 if _, _, err := syscall.Syscall6(syscall.SYS_IOCTL, uintptr(fd), ioctlReadTermios, uintptr(unsafe.Pointer(&oldState.termios)), 0, 0, 0); err != 0 {
David Symonds521edf82012-03-30 15:27:01 +110042 return nil, err
43 }
44
45 newState := oldState.termios
Faiyaz Ahmed911fafb2016-05-09 20:08:17 -070046 // This attempts to replicate the behaviour documented for cfmakeraw in
47 // the termios(3) manpage.
48 newState.Iflag &^= syscall.IGNBRK | syscall.BRKINT | syscall.PARMRK | syscall.ISTRIP | syscall.INLCR | syscall.IGNCR | syscall.ICRNL | syscall.IXON
49 newState.Oflag &^= syscall.OPOST
50 newState.Lflag &^= syscall.ECHO | syscall.ECHONL | syscall.ICANON | syscall.ISIG | syscall.IEXTEN
51 newState.Cflag &^= syscall.CSIZE | syscall.PARENB
52 newState.Cflag |= syscall.CS8
Adam Langleydb732cb2013-02-04 10:36:09 -050053 if _, _, err := syscall.Syscall6(syscall.SYS_IOCTL, uintptr(fd), ioctlWriteTermios, uintptr(unsafe.Pointer(&newState)), 0, 0, 0); err != 0 {
David Symonds521edf82012-03-30 15:27:01 +110054 return nil, err
55 }
56
57 return &oldState, nil
58}
59
Adam Langley03be8f32012-12-22 11:02:28 -050060// GetState returns the current state of a terminal which may be useful to
61// restore the terminal after a signal.
62func GetState(fd int) (*State, error) {
63 var oldState State
Adam Langleydb732cb2013-02-04 10:36:09 -050064 if _, _, err := syscall.Syscall6(syscall.SYS_IOCTL, uintptr(fd), ioctlReadTermios, uintptr(unsafe.Pointer(&oldState.termios)), 0, 0, 0); err != 0 {
Adam Langley03be8f32012-12-22 11:02:28 -050065 return nil, err
66 }
67
68 return &oldState, nil
69}
70
David Symonds521edf82012-03-30 15:27:01 +110071// Restore restores the terminal connected to the given file descriptor to a
72// previous state.
73func Restore(fd int, state *State) error {
Peter Morjanc3b1d0d2017-01-07 15:41:52 +010074 if _, _, err := syscall.Syscall6(syscall.SYS_IOCTL, uintptr(fd), ioctlWriteTermios, uintptr(unsafe.Pointer(&state.termios)), 0, 0, 0); err != 0 {
75 return err
76 }
77 return nil
David Symonds521edf82012-03-30 15:27:01 +110078}
79
80// GetSize returns the dimensions of the given terminal.
81func GetSize(fd int) (width, height int, err error) {
82 var dimensions [4]uint16
83
84 if _, _, err := syscall.Syscall6(syscall.SYS_IOCTL, uintptr(fd), uintptr(syscall.TIOCGWINSZ), uintptr(unsafe.Pointer(&dimensions)), 0, 0, 0); err != 0 {
85 return -1, -1, err
86 }
87 return int(dimensions[1]), int(dimensions[0]), nil
88}
89
Alex Brainman13d9f612016-08-02 12:34:46 +100090// passwordReader is an io.Reader that reads from a specific file descriptor.
91type passwordReader int
92
93func (r passwordReader) Read(buf []byte) (int, error) {
94 return syscall.Read(int(r), buf)
95}
96
David Symonds521edf82012-03-30 15:27:01 +110097// ReadPassword reads a line of input from a terminal without local echo. This
98// is commonly used for inputting passwords and other sensitive data. The slice
99// returned does not include the \n.
100func ReadPassword(fd int) ([]byte, error) {
101 var oldState syscall.Termios
Adam Langleydb732cb2013-02-04 10:36:09 -0500102 if _, _, err := syscall.Syscall6(syscall.SYS_IOCTL, uintptr(fd), ioctlReadTermios, uintptr(unsafe.Pointer(&oldState)), 0, 0, 0); err != 0 {
David Symonds521edf82012-03-30 15:27:01 +1100103 return nil, err
104 }
105
106 newState := oldState
107 newState.Lflag &^= syscall.ECHO
Adam Langley03be8f32012-12-22 11:02:28 -0500108 newState.Lflag |= syscall.ICANON | syscall.ISIG
109 newState.Iflag |= syscall.ICRNL
Adam Langleydb732cb2013-02-04 10:36:09 -0500110 if _, _, err := syscall.Syscall6(syscall.SYS_IOCTL, uintptr(fd), ioctlWriteTermios, uintptr(unsafe.Pointer(&newState)), 0, 0, 0); err != 0 {
David Symonds521edf82012-03-30 15:27:01 +1100111 return nil, err
112 }
113
114 defer func() {
Adam Langleydb732cb2013-02-04 10:36:09 -0500115 syscall.Syscall6(syscall.SYS_IOCTL, uintptr(fd), ioctlWriteTermios, uintptr(unsafe.Pointer(&oldState)), 0, 0, 0)
David Symonds521edf82012-03-30 15:27:01 +1100116 }()
117
Alex Brainman13d9f612016-08-02 12:34:46 +1000118 return readPasswordLine(passwordReader(fd))
David Symonds521edf82012-03-30 15:27:01 +1100119}