blob: 7c48d96210e9dfb66737edd6169bc41a095b68f6 [file] [log] [blame]
Stephen Warrend2015062016-01-15 11:15:24 -07001# SPDX-License-Identifier: GPL-2.0
Tom Rini83d290c2018-05-06 17:58:06 -04002# Copyright (c) 2015-2016, NVIDIA CORPORATION. All rights reserved.
Stephen Warrend2015062016-01-15 11:15:24 -07003
Heinrich Schuchardt67e9b642021-11-23 00:01:46 +01004"""
5Logic to spawn a sub-process and interact with its stdio.
6"""
Stephen Warrend2015062016-01-15 11:15:24 -07007
8import os
9import re
10import pty
11import signal
12import select
13import time
Heinrich Schuchardt67e9b642021-11-23 00:01:46 +010014import traceback
Stephen Warrend2015062016-01-15 11:15:24 -070015
16class Timeout(Exception):
Stephen Warrene8debf32016-01-26 13:41:30 -070017 """An exception sub-class that indicates that a timeout occurred."""
Stephen Warrend2015062016-01-15 11:15:24 -070018
Heinrich Schuchardt67e9b642021-11-23 00:01:46 +010019class Spawn:
Stephen Warrene8debf32016-01-26 13:41:30 -070020 """Represents the stdio of a freshly created sub-process. Commands may be
Stephen Warrend2015062016-01-15 11:15:24 -070021 sent to the process, and responses waited for.
Simon Glassebec58f2016-07-04 11:58:39 -060022
23 Members:
24 output: accumulated output from expect()
Stephen Warrene8debf32016-01-26 13:41:30 -070025 """
Stephen Warrend2015062016-01-15 11:15:24 -070026
Stephen Warrend27f2fc2016-01-27 23:57:53 -070027 def __init__(self, args, cwd=None):
Stephen Warrene8debf32016-01-26 13:41:30 -070028 """Spawn (fork/exec) the sub-process.
Stephen Warrend2015062016-01-15 11:15:24 -070029
30 Args:
Stephen Warrend27f2fc2016-01-27 23:57:53 -070031 args: array of processs arguments. argv[0] is the command to
32 execute.
33 cwd: the directory to run the process in, or None for no change.
Stephen Warrend2015062016-01-15 11:15:24 -070034
35 Returns:
36 Nothing.
Stephen Warrene8debf32016-01-26 13:41:30 -070037 """
Stephen Warrend2015062016-01-15 11:15:24 -070038
39 self.waited = False
Simon Glass35839ed2021-10-08 09:15:23 -060040 self.exit_code = 0
41 self.exit_info = ''
Stephen Warrend2015062016-01-15 11:15:24 -070042 self.buf = ''
Simon Glassebec58f2016-07-04 11:58:39 -060043 self.output = ''
Stephen Warrend2015062016-01-15 11:15:24 -070044 self.logfile_read = None
45 self.before = ''
46 self.after = ''
47 self.timeout = None
Stephen Warren085e64d2016-07-06 10:34:30 -060048 # http://stackoverflow.com/questions/7857352/python-regex-to-match-vt100-escape-sequences
Tom Rini15579632019-10-24 11:59:28 -040049 self.re_vt100 = re.compile(r'(\x1b\[|\x9b)[^@-_]*[@-_]|\x1b[@-_]', re.I)
Stephen Warrend2015062016-01-15 11:15:24 -070050
51 (self.pid, self.fd) = pty.fork()
52 if self.pid == 0:
53 try:
54 # For some reason, SIGHUP is set to SIG_IGN at this point when
55 # run under "go" (www.go.cd). Perhaps this happens under any
56 # background (non-interactive) system?
57 signal.signal(signal.SIGHUP, signal.SIG_DFL)
Stephen Warrend27f2fc2016-01-27 23:57:53 -070058 if cwd:
59 os.chdir(cwd)
Stephen Warrend2015062016-01-15 11:15:24 -070060 os.execvp(args[0], args)
61 except:
Paul Burtondffd56d2017-09-14 14:34:43 -070062 print('CHILD EXECEPTION:')
Stephen Warrend2015062016-01-15 11:15:24 -070063 traceback.print_exc()
64 finally:
65 os._exit(255)
66
Stephen Warren93134e12016-02-10 16:54:37 -070067 try:
68 self.poll = select.poll()
Heinrich Schuchardt67e9b642021-11-23 00:01:46 +010069 self.poll.register(self.fd, select.POLLIN | select.POLLPRI | select.POLLERR |
70 select.POLLHUP | select.POLLNVAL)
Stephen Warren93134e12016-02-10 16:54:37 -070071 except:
72 self.close()
73 raise
Stephen Warrend2015062016-01-15 11:15:24 -070074
75 def kill(self, sig):
Stephen Warrene8debf32016-01-26 13:41:30 -070076 """Send unix signal "sig" to the child process.
Stephen Warrend2015062016-01-15 11:15:24 -070077
78 Args:
79 sig: The signal number to send.
80
81 Returns:
82 Nothing.
Stephen Warrene8debf32016-01-26 13:41:30 -070083 """
Stephen Warrend2015062016-01-15 11:15:24 -070084
85 os.kill(self.pid, sig)
86
Simon Glass35839ed2021-10-08 09:15:23 -060087 def checkalive(self):
88 """Determine whether the child process is still running.
89
90 Returns:
91 tuple:
92 True if process is alive, else False
93 0 if process is alive, else exit code of process
94 string describing what happened ('' or 'status/signal n')
95 """
96
97 if self.waited:
98 return False, self.exit_code, self.exit_info
99
100 w = os.waitpid(self.pid, os.WNOHANG)
101 if w[0] == 0:
102 return True, 0, 'running'
103 status = w[1]
104
105 if os.WIFEXITED(status):
106 self.exit_code = os.WEXITSTATUS(status)
107 self.exit_info = 'status %d' % self.exit_code
108 elif os.WIFSIGNALED(status):
109 signum = os.WTERMSIG(status)
110 self.exit_code = -signum
Heinrich Schuchardt67e9b642021-11-23 00:01:46 +0100111 self.exit_info = 'signal %d (%s)' % (signum, signal.Signals(signum).name)
Simon Glass35839ed2021-10-08 09:15:23 -0600112 self.waited = True
113 return False, self.exit_code, self.exit_info
114
Stephen Warrend2015062016-01-15 11:15:24 -0700115 def isalive(self):
Stephen Warrene8debf32016-01-26 13:41:30 -0700116 """Determine whether the child process is still running.
Stephen Warrend2015062016-01-15 11:15:24 -0700117
118 Args:
119 None.
120
121 Returns:
122 Boolean indicating whether process is alive.
Stephen Warrene8debf32016-01-26 13:41:30 -0700123 """
Simon Glass35839ed2021-10-08 09:15:23 -0600124 return self.checkalive()[0]
Stephen Warrend2015062016-01-15 11:15:24 -0700125
126 def send(self, data):
Stephen Warrene8debf32016-01-26 13:41:30 -0700127 """Send data to the sub-process's stdin.
Stephen Warrend2015062016-01-15 11:15:24 -0700128
129 Args:
130 data: The data to send to the process.
131
132 Returns:
133 Nothing.
Stephen Warrene8debf32016-01-26 13:41:30 -0700134 """
Stephen Warrend2015062016-01-15 11:15:24 -0700135
Tom Rinifd31fc12019-10-24 11:59:21 -0400136 os.write(self.fd, data.encode(errors='replace'))
Stephen Warrend2015062016-01-15 11:15:24 -0700137
138 def expect(self, patterns):
Stephen Warrene8debf32016-01-26 13:41:30 -0700139 """Wait for the sub-process to emit specific data.
Stephen Warrend2015062016-01-15 11:15:24 -0700140
141 This function waits for the process to emit one pattern from the
142 supplied list of patterns, or for a timeout to occur.
143
144 Args:
145 patterns: A list of strings or regex objects that we expect to
146 see in the sub-process' stdout.
147
148 Returns:
149 The index within the patterns array of the pattern the process
150 emitted.
151
152 Notable exceptions:
153 Timeout, if the process did not emit any of the patterns within
154 the expected time.
Stephen Warrene8debf32016-01-26 13:41:30 -0700155 """
Stephen Warrend2015062016-01-15 11:15:24 -0700156
Paul Burtonb8c45552017-09-14 14:34:44 -0700157 for pi in range(len(patterns)):
Stephen Warrend2015062016-01-15 11:15:24 -0700158 if type(patterns[pi]) == type(''):
159 patterns[pi] = re.compile(patterns[pi])
160
Stephen Warrend314e242016-01-22 12:30:07 -0700161 tstart_s = time.time()
Stephen Warrend2015062016-01-15 11:15:24 -0700162 try:
163 while True:
164 earliest_m = None
165 earliest_pi = None
Paul Burtonb8c45552017-09-14 14:34:44 -0700166 for pi in range(len(patterns)):
Stephen Warrend2015062016-01-15 11:15:24 -0700167 pattern = patterns[pi]
168 m = pattern.search(self.buf)
169 if not m:
170 continue
Stephen Warren44ac7622016-01-27 23:57:47 -0700171 if earliest_m and m.start() >= earliest_m.start():
Stephen Warrend2015062016-01-15 11:15:24 -0700172 continue
173 earliest_m = m
174 earliest_pi = pi
175 if earliest_m:
176 pos = earliest_m.start()
Stephen Warrend8926812016-02-05 18:04:42 -0700177 posafter = earliest_m.end()
Stephen Warrend2015062016-01-15 11:15:24 -0700178 self.before = self.buf[:pos]
179 self.after = self.buf[pos:posafter]
Simon Glassebec58f2016-07-04 11:58:39 -0600180 self.output += self.buf[:posafter]
Stephen Warrend2015062016-01-15 11:15:24 -0700181 self.buf = self.buf[posafter:]
182 return earliest_pi
Stephen Warrend314e242016-01-22 12:30:07 -0700183 tnow_s = time.time()
Stephen Warren89ab8412016-02-04 16:11:50 -0700184 if self.timeout:
185 tdelta_ms = (tnow_s - tstart_s) * 1000
186 poll_maxwait = self.timeout - tdelta_ms
187 if tdelta_ms > self.timeout:
188 raise Timeout()
189 else:
190 poll_maxwait = None
191 events = self.poll.poll(poll_maxwait)
Stephen Warrend2015062016-01-15 11:15:24 -0700192 if not events:
193 raise Timeout()
Simon Glass35839ed2021-10-08 09:15:23 -0600194 try:
195 c = os.read(self.fd, 1024).decode(errors='replace')
196 except OSError as err:
197 # With sandbox, try to detect when U-Boot exits when it
198 # shouldn't and explain why. This is much more friendly than
199 # just dying with an I/O error
200 if err.errno == 5: # Input/output error
Heinrich Schuchardt67e9b642021-11-23 00:01:46 +0100201 alive, _, info = self.checkalive()
Simon Glass35839ed2021-10-08 09:15:23 -0600202 if alive:
Heinrich Schuchardt67e9b642021-11-23 00:01:46 +0100203 raise err
204 raise ValueError('U-Boot exited with %s' % info)
205 raise err
Stephen Warrend2015062016-01-15 11:15:24 -0700206 if self.logfile_read:
207 self.logfile_read.write(c)
208 self.buf += c
Stephen Warren085e64d2016-07-06 10:34:30 -0600209 # count=0 is supposed to be the default, which indicates
210 # unlimited substitutions, but in practice the version of
211 # Python in Ubuntu 14.04 appears to default to count=2!
212 self.buf = self.re_vt100.sub('', self.buf, count=1000000)
Stephen Warrend2015062016-01-15 11:15:24 -0700213 finally:
214 if self.logfile_read:
215 self.logfile_read.flush()
216
217 def close(self):
Stephen Warrene8debf32016-01-26 13:41:30 -0700218 """Close the stdio connection to the sub-process.
Stephen Warrend2015062016-01-15 11:15:24 -0700219
220 This also waits a reasonable time for the sub-process to stop running.
221
222 Args:
223 None.
224
225 Returns:
226 Nothing.
Stephen Warrene8debf32016-01-26 13:41:30 -0700227 """
Stephen Warrend2015062016-01-15 11:15:24 -0700228
229 os.close(self.fd)
Heinrich Schuchardt67e9b642021-11-23 00:01:46 +0100230 for _ in range(100):
Stephen Warrend2015062016-01-15 11:15:24 -0700231 if not self.isalive():
232 break
233 time.sleep(0.1)
Simon Glassebec58f2016-07-04 11:58:39 -0600234
235 def get_expect_output(self):
236 """Return the output read by expect()
237
238 Returns:
239 The output processed by expect(), as a string.
240 """
241 return self.output