1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
|
// Copyright 2017 syzkaller project authors. All rights reserved.
// Use of this source code is governed by Apache 2 LICENSE that can be found in the LICENSE file.
package vmimpl
import (
"fmt"
"io"
"os/exec"
"sync"
"syscall"
"github.com/google/syzkaller/pkg/osutil"
"golang.org/x/sys/unix"
)
// Tested on Suzy-Q and BeagleBone.
func OpenConsole(con string) (rc io.ReadCloser, err error) {
fd, err := syscall.Open(con, syscall.O_RDONLY|syscall.O_NOCTTY|syscall.O_SYNC, 0)
if err != nil {
return nil, fmt.Errorf("failed to open console file: %v", err)
}
defer func() {
if fd != -1 {
syscall.Close(fd)
}
}()
term, err := unix.IoctlGetTermios(fd, syscallTCGETS)
if err != nil {
return nil, fmt.Errorf("failed to get console termios: %v", err)
}
// No parity bit, only need 1 stop bit, no hardware flowcontrol,
term.Cflag &^= unixCBAUD | unix.CSIZE | unix.PARENB | unix.CSTOPB | unixCRTSCTS
// Ignore modem controls.
term.Cflag |= unix.B115200 | unix.CS8 | unix.CLOCAL | unix.CREAD
// Setup for non-canonical mode.
term.Iflag &^= unix.IGNBRK | unix.BRKINT | unix.PARMRK | unix.ISTRIP | unix.INLCR |
unix.IGNCR | unix.ICRNL | unix.IXON
term.Lflag &^= unix.ECHO | unix.ECHONL | unix.ICANON | unix.ISIG | unix.IEXTEN
term.Oflag &^= unix.OPOST
term.Cc[unix.VMIN] = 0
term.Cc[unix.VTIME] = 10 // 1 second timeout
if err = unix.IoctlSetTermios(fd, syscallTCSETS, term); err != nil {
return nil, fmt.Errorf("failed to get console termios: %v", err)
}
tmp := fd
fd = -1
return &tty{fd: tmp}, nil
}
type tty struct {
mu sync.Mutex
fd int
}
func (t *tty) Read(buf []byte) (int, error) {
t.mu.Lock()
defer t.mu.Unlock()
if t.fd == -1 {
return 0, io.EOF
}
n, err := syscall.Read(t.fd, buf)
if n < 0 {
n = 0
}
return n, err
}
func (t *tty) Close() error {
t.mu.Lock()
defer t.mu.Unlock()
if t.fd != -1 {
syscall.Close(t.fd)
t.fd = -1
}
return nil
}
// Open dmesg remotely.
func OpenRemoteConsole(bin string, args ...string) (rc io.ReadCloser, err error) {
rpipe, wpipe, err := osutil.LongPipe()
if err != nil {
return nil, err
}
args = append(args, "dmesg -w")
cmd := osutil.Command(bin, args...)
cmd.Stdout = wpipe
cmd.Stderr = wpipe
if err := cmd.Start(); err != nil {
rpipe.Close()
wpipe.Close()
return nil, fmt.Errorf("failed to start adb: %v", err)
}
wpipe.Close()
con := &remoteCon{
cmd: cmd,
rpipe: rpipe,
}
return con, err
}
// OpenAdbConsole provides fallback console output using 'adb shell dmesg -w'.
func OpenAdbConsole(bin, dev string) (rc io.ReadCloser, err error) {
return OpenRemoteConsole(bin, "-s", dev, "shell")
}
type remoteCon struct {
closeMu sync.Mutex
readMu sync.Mutex
cmd *exec.Cmd
rpipe io.ReadCloser
}
func (t *remoteCon) Read(buf []byte) (int, error) {
t.readMu.Lock()
n, err := t.rpipe.Read(buf)
t.readMu.Unlock()
return n, err
}
func (t *remoteCon) Close() error {
t.closeMu.Lock()
cmd := t.cmd
t.cmd = nil
t.closeMu.Unlock()
if cmd == nil {
return nil
}
cmd.Process.Kill()
t.readMu.Lock()
t.rpipe.Close()
t.readMu.Unlock()
cmd.Process.Wait()
return nil
}
|