blob: 97e95e07c800ff2a1ba1eeeef296620ffbda8b94 [file] [log] [blame]
Stephen Warren10e50632016-01-15 11:15:24 -07001# SPDX-License-Identifier: GPL-2.0
Tom Rini10e47792018-05-06 17:58:06 -04002# Copyright (c) 2015-2016, NVIDIA CORPORATION. All rights reserved.
Stephen Warren10e50632016-01-15 11:15:24 -07003
Heinrich Schuchardt725bd312021-11-23 00:01:46 +01004"""
5Logic to spawn a sub-process and interact with its stdio.
6"""
Stephen Warren10e50632016-01-15 11:15:24 -07007
8import os
9import re
10import pty
11import signal
12import select
13import time
Heinrich Schuchardt725bd312021-11-23 00:01:46 +010014import traceback
Stephen Warren10e50632016-01-15 11:15:24 -070015
16class Timeout(Exception):
Stephen Warren75e731e2016-01-26 13:41:30 -070017 """An exception sub-class that indicates that a timeout occurred."""
Stephen Warren10e50632016-01-15 11:15:24 -070018
Heinrich Schuchardt725bd312021-11-23 00:01:46 +010019class Spawn:
Stephen Warren75e731e2016-01-26 13:41:30 -070020 """Represents the stdio of a freshly created sub-process. Commands may be
Stephen Warren10e50632016-01-15 11:15:24 -070021 sent to the process, and responses waited for.
Simon Glass9bc20832016-07-04 11:58:39 -060022
23 Members:
24 output: accumulated output from expect()
Stephen Warren75e731e2016-01-26 13:41:30 -070025 """
Stephen Warren10e50632016-01-15 11:15:24 -070026
Simon Glass3f0bd0c2024-06-23 14:30:30 -060027 def __init__(self, args, cwd=None, decode_signal=False):
Stephen Warren75e731e2016-01-26 13:41:30 -070028 """Spawn (fork/exec) the sub-process.
Stephen Warren10e50632016-01-15 11:15:24 -070029
30 Args:
Stephen Warrena85fce92016-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.
Simon Glass3f0bd0c2024-06-23 14:30:30 -060034 decode_signal (bool): True to indicate the exception number when
35 something goes wrong
Stephen Warren10e50632016-01-15 11:15:24 -070036
37 Returns:
38 Nothing.
Stephen Warren75e731e2016-01-26 13:41:30 -070039 """
Simon Glass3f0bd0c2024-06-23 14:30:30 -060040 self.decode_signal = decode_signal
Stephen Warren10e50632016-01-15 11:15:24 -070041 self.waited = False
Simon Glassafd00042021-10-08 09:15:23 -060042 self.exit_code = 0
43 self.exit_info = ''
Stephen Warren10e50632016-01-15 11:15:24 -070044 self.buf = ''
Simon Glass9bc20832016-07-04 11:58:39 -060045 self.output = ''
Stephen Warren10e50632016-01-15 11:15:24 -070046 self.logfile_read = None
47 self.before = ''
48 self.after = ''
49 self.timeout = None
Stephen Warren8e7c3ec2016-07-06 10:34:30 -060050 # http://stackoverflow.com/questions/7857352/python-regex-to-match-vt100-escape-sequences
Tom Rini649bdaf2019-10-24 11:59:28 -040051 self.re_vt100 = re.compile(r'(\x1b\[|\x9b)[^@-_]*[@-_]|\x1b[@-_]', re.I)
Stephen Warren10e50632016-01-15 11:15:24 -070052
53 (self.pid, self.fd) = pty.fork()
54 if self.pid == 0:
55 try:
56 # For some reason, SIGHUP is set to SIG_IGN at this point when
57 # run under "go" (www.go.cd). Perhaps this happens under any
58 # background (non-interactive) system?
59 signal.signal(signal.SIGHUP, signal.SIG_DFL)
Stephen Warrena85fce92016-01-27 23:57:53 -070060 if cwd:
61 os.chdir(cwd)
Stephen Warren10e50632016-01-15 11:15:24 -070062 os.execvp(args[0], args)
63 except:
Paul Burton00f2d202017-09-14 14:34:43 -070064 print('CHILD EXECEPTION:')
Stephen Warren10e50632016-01-15 11:15:24 -070065 traceback.print_exc()
66 finally:
67 os._exit(255)
68
Stephen Warren65503db2016-02-10 16:54:37 -070069 try:
70 self.poll = select.poll()
Heinrich Schuchardt725bd312021-11-23 00:01:46 +010071 self.poll.register(self.fd, select.POLLIN | select.POLLPRI | select.POLLERR |
72 select.POLLHUP | select.POLLNVAL)
Stephen Warren65503db2016-02-10 16:54:37 -070073 except:
74 self.close()
75 raise
Stephen Warren10e50632016-01-15 11:15:24 -070076
77 def kill(self, sig):
Stephen Warren75e731e2016-01-26 13:41:30 -070078 """Send unix signal "sig" to the child process.
Stephen Warren10e50632016-01-15 11:15:24 -070079
80 Args:
81 sig: The signal number to send.
82
83 Returns:
84 Nothing.
Stephen Warren75e731e2016-01-26 13:41:30 -070085 """
Stephen Warren10e50632016-01-15 11:15:24 -070086
87 os.kill(self.pid, sig)
88
Simon Glassafd00042021-10-08 09:15:23 -060089 def checkalive(self):
Stephen Warren75e731e2016-01-26 13:41:30 -070090 """Determine whether the child process is still running.
Stephen Warren10e50632016-01-15 11:15:24 -070091
Stephen Warren10e50632016-01-15 11:15:24 -070092 Returns:
Simon Glassafd00042021-10-08 09:15:23 -060093 tuple:
94 True if process is alive, else False
95 0 if process is alive, else exit code of process
96 string describing what happened ('' or 'status/signal n')
Stephen Warren75e731e2016-01-26 13:41:30 -070097 """
Stephen Warren10e50632016-01-15 11:15:24 -070098
99 if self.waited:
Simon Glassafd00042021-10-08 09:15:23 -0600100 return False, self.exit_code, self.exit_info
Stephen Warren10e50632016-01-15 11:15:24 -0700101
102 w = os.waitpid(self.pid, os.WNOHANG)
103 if w[0] == 0:
Simon Glassafd00042021-10-08 09:15:23 -0600104 return True, 0, 'running'
105 status = w[1]
Stephen Warren10e50632016-01-15 11:15:24 -0700106
Simon Glassafd00042021-10-08 09:15:23 -0600107 if os.WIFEXITED(status):
108 self.exit_code = os.WEXITSTATUS(status)
109 self.exit_info = 'status %d' % self.exit_code
110 elif os.WIFSIGNALED(status):
111 signum = os.WTERMSIG(status)
112 self.exit_code = -signum
Heinrich Schuchardt725bd312021-11-23 00:01:46 +0100113 self.exit_info = 'signal %d (%s)' % (signum, signal.Signals(signum).name)
Stephen Warren10e50632016-01-15 11:15:24 -0700114 self.waited = True
Simon Glassafd00042021-10-08 09:15:23 -0600115 return False, self.exit_code, self.exit_info
116
117 def isalive(self):
118 """Determine whether the child process is still running.
119
120 Args:
121 None.
122
123 Returns:
124 Boolean indicating whether process is alive.
125 """
126 return self.checkalive()[0]
Stephen Warren10e50632016-01-15 11:15:24 -0700127
128 def send(self, data):
Stephen Warren75e731e2016-01-26 13:41:30 -0700129 """Send data to the sub-process's stdin.
Stephen Warren10e50632016-01-15 11:15:24 -0700130
131 Args:
132 data: The data to send to the process.
133
134 Returns:
135 Nothing.
Stephen Warren75e731e2016-01-26 13:41:30 -0700136 """
Stephen Warren10e50632016-01-15 11:15:24 -0700137
Tom Rini6a990412019-10-24 11:59:21 -0400138 os.write(self.fd, data.encode(errors='replace'))
Stephen Warren10e50632016-01-15 11:15:24 -0700139
140 def expect(self, patterns):
Stephen Warren75e731e2016-01-26 13:41:30 -0700141 """Wait for the sub-process to emit specific data.
Stephen Warren10e50632016-01-15 11:15:24 -0700142
143 This function waits for the process to emit one pattern from the
144 supplied list of patterns, or for a timeout to occur.
145
146 Args:
147 patterns: A list of strings or regex objects that we expect to
148 see in the sub-process' stdout.
149
150 Returns:
151 The index within the patterns array of the pattern the process
152 emitted.
153
154 Notable exceptions:
155 Timeout, if the process did not emit any of the patterns within
156 the expected time.
Stephen Warren75e731e2016-01-26 13:41:30 -0700157 """
Stephen Warren10e50632016-01-15 11:15:24 -0700158
Paul Burtond2849ed2017-09-14 14:34:44 -0700159 for pi in range(len(patterns)):
Stephen Warren10e50632016-01-15 11:15:24 -0700160 if type(patterns[pi]) == type(''):
161 patterns[pi] = re.compile(patterns[pi])
162
Stephen Warren22eba122016-01-22 12:30:07 -0700163 tstart_s = time.time()
Stephen Warren10e50632016-01-15 11:15:24 -0700164 try:
165 while True:
166 earliest_m = None
167 earliest_pi = None
Paul Burtond2849ed2017-09-14 14:34:44 -0700168 for pi in range(len(patterns)):
Stephen Warren10e50632016-01-15 11:15:24 -0700169 pattern = patterns[pi]
170 m = pattern.search(self.buf)
171 if not m:
172 continue
Stephen Warren3880dec2016-01-27 23:57:47 -0700173 if earliest_m and m.start() >= earliest_m.start():
Stephen Warren10e50632016-01-15 11:15:24 -0700174 continue
175 earliest_m = m
176 earliest_pi = pi
177 if earliest_m:
178 pos = earliest_m.start()
Stephen Warren4223a2f2016-02-05 18:04:42 -0700179 posafter = earliest_m.end()
Stephen Warren10e50632016-01-15 11:15:24 -0700180 self.before = self.buf[:pos]
181 self.after = self.buf[pos:posafter]
Simon Glass9bc20832016-07-04 11:58:39 -0600182 self.output += self.buf[:posafter]
Stephen Warren10e50632016-01-15 11:15:24 -0700183 self.buf = self.buf[posafter:]
184 return earliest_pi
Stephen Warren22eba122016-01-22 12:30:07 -0700185 tnow_s = time.time()
Stephen Warren33db1ee2016-02-04 16:11:50 -0700186 if self.timeout:
187 tdelta_ms = (tnow_s - tstart_s) * 1000
188 poll_maxwait = self.timeout - tdelta_ms
189 if tdelta_ms > self.timeout:
190 raise Timeout()
191 else:
192 poll_maxwait = None
193 events = self.poll.poll(poll_maxwait)
Stephen Warren10e50632016-01-15 11:15:24 -0700194 if not events:
195 raise Timeout()
Simon Glassafd00042021-10-08 09:15:23 -0600196 try:
197 c = os.read(self.fd, 1024).decode(errors='replace')
198 except OSError as err:
199 # With sandbox, try to detect when U-Boot exits when it
200 # shouldn't and explain why. This is much more friendly than
201 # just dying with an I/O error
Simon Glass3f0bd0c2024-06-23 14:30:30 -0600202 if self.decode_signal and err.errno == 5: # I/O error
Heinrich Schuchardt725bd312021-11-23 00:01:46 +0100203 alive, _, info = self.checkalive()
Simon Glassafd00042021-10-08 09:15:23 -0600204 if alive:
Heinrich Schuchardt725bd312021-11-23 00:01:46 +0100205 raise err
206 raise ValueError('U-Boot exited with %s' % info)
Simon Glass3f0bd0c2024-06-23 14:30:30 -0600207 raise
Stephen Warren10e50632016-01-15 11:15:24 -0700208 if self.logfile_read:
209 self.logfile_read.write(c)
210 self.buf += c
Stephen Warren8e7c3ec2016-07-06 10:34:30 -0600211 # count=0 is supposed to be the default, which indicates
212 # unlimited substitutions, but in practice the version of
213 # Python in Ubuntu 14.04 appears to default to count=2!
214 self.buf = self.re_vt100.sub('', self.buf, count=1000000)
Stephen Warren10e50632016-01-15 11:15:24 -0700215 finally:
216 if self.logfile_read:
217 self.logfile_read.flush()
218
219 def close(self):
Stephen Warren75e731e2016-01-26 13:41:30 -0700220 """Close the stdio connection to the sub-process.
Stephen Warren10e50632016-01-15 11:15:24 -0700221
222 This also waits a reasonable time for the sub-process to stop running.
223
224 Args:
225 None.
226
227 Returns:
228 Nothing.
Stephen Warren75e731e2016-01-26 13:41:30 -0700229 """
Stephen Warren10e50632016-01-15 11:15:24 -0700230
231 os.close(self.fd)
Heinrich Schuchardt725bd312021-11-23 00:01:46 +0100232 for _ in range(100):
Stephen Warren10e50632016-01-15 11:15:24 -0700233 if not self.isalive():
234 break
235 time.sleep(0.1)
Simon Glass9bc20832016-07-04 11:58:39 -0600236
237 def get_expect_output(self):
238 """Return the output read by expect()
239
240 Returns:
241 The output processed by expect(), as a string.
242 """
243 return self.output