blob: 6991b78cca89ea75c733d2ee8b537695fbd77c63 [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
4# Logic to spawn a sub-process and interact with its stdio.
5
6import os
7import re
8import pty
9import signal
10import select
11import time
12
13class Timeout(Exception):
Stephen Warrene8debf32016-01-26 13:41:30 -070014 """An exception sub-class that indicates that a timeout occurred."""
Stephen Warrend2015062016-01-15 11:15:24 -070015 pass
16
17class Spawn(object):
Stephen Warrene8debf32016-01-26 13:41:30 -070018 """Represents the stdio of a freshly created sub-process. Commands may be
Stephen Warrend2015062016-01-15 11:15:24 -070019 sent to the process, and responses waited for.
Simon Glassebec58f2016-07-04 11:58:39 -060020
21 Members:
22 output: accumulated output from expect()
Stephen Warrene8debf32016-01-26 13:41:30 -070023 """
Stephen Warrend2015062016-01-15 11:15:24 -070024
Stephen Warrend27f2fc2016-01-27 23:57:53 -070025 def __init__(self, args, cwd=None):
Stephen Warrene8debf32016-01-26 13:41:30 -070026 """Spawn (fork/exec) the sub-process.
Stephen Warrend2015062016-01-15 11:15:24 -070027
28 Args:
Stephen Warrend27f2fc2016-01-27 23:57:53 -070029 args: array of processs arguments. argv[0] is the command to
30 execute.
31 cwd: the directory to run the process in, or None for no change.
Stephen Warrend2015062016-01-15 11:15:24 -070032
33 Returns:
34 Nothing.
Stephen Warrene8debf32016-01-26 13:41:30 -070035 """
Stephen Warrend2015062016-01-15 11:15:24 -070036
37 self.waited = False
38 self.buf = ''
Simon Glassebec58f2016-07-04 11:58:39 -060039 self.output = ''
Stephen Warrend2015062016-01-15 11:15:24 -070040 self.logfile_read = None
41 self.before = ''
42 self.after = ''
43 self.timeout = None
Stephen Warren085e64d2016-07-06 10:34:30 -060044 # http://stackoverflow.com/questions/7857352/python-regex-to-match-vt100-escape-sequences
Tom Rini15579632019-10-24 11:59:28 -040045 self.re_vt100 = re.compile(r'(\x1b\[|\x9b)[^@-_]*[@-_]|\x1b[@-_]', re.I)
Stephen Warrend2015062016-01-15 11:15:24 -070046
47 (self.pid, self.fd) = pty.fork()
48 if self.pid == 0:
49 try:
50 # For some reason, SIGHUP is set to SIG_IGN at this point when
51 # run under "go" (www.go.cd). Perhaps this happens under any
52 # background (non-interactive) system?
53 signal.signal(signal.SIGHUP, signal.SIG_DFL)
Stephen Warrend27f2fc2016-01-27 23:57:53 -070054 if cwd:
55 os.chdir(cwd)
Stephen Warrend2015062016-01-15 11:15:24 -070056 os.execvp(args[0], args)
57 except:
Paul Burtondffd56d2017-09-14 14:34:43 -070058 print('CHILD EXECEPTION:')
Stephen Warrend2015062016-01-15 11:15:24 -070059 import traceback
60 traceback.print_exc()
61 finally:
62 os._exit(255)
63
Stephen Warren93134e12016-02-10 16:54:37 -070064 try:
65 self.poll = select.poll()
66 self.poll.register(self.fd, select.POLLIN | select.POLLPRI | select.POLLERR | select.POLLHUP | select.POLLNVAL)
67 except:
68 self.close()
69 raise
Stephen Warrend2015062016-01-15 11:15:24 -070070
71 def kill(self, sig):
Stephen Warrene8debf32016-01-26 13:41:30 -070072 """Send unix signal "sig" to the child process.
Stephen Warrend2015062016-01-15 11:15:24 -070073
74 Args:
75 sig: The signal number to send.
76
77 Returns:
78 Nothing.
Stephen Warrene8debf32016-01-26 13:41:30 -070079 """
Stephen Warrend2015062016-01-15 11:15:24 -070080
81 os.kill(self.pid, sig)
82
83 def isalive(self):
Stephen Warrene8debf32016-01-26 13:41:30 -070084 """Determine whether the child process is still running.
Stephen Warrend2015062016-01-15 11:15:24 -070085
86 Args:
87 None.
88
89 Returns:
90 Boolean indicating whether process is alive.
Stephen Warrene8debf32016-01-26 13:41:30 -070091 """
Stephen Warrend2015062016-01-15 11:15:24 -070092
93 if self.waited:
94 return False
95
96 w = os.waitpid(self.pid, os.WNOHANG)
97 if w[0] == 0:
98 return True
99
100 self.waited = True
101 return False
102
103 def send(self, data):
Stephen Warrene8debf32016-01-26 13:41:30 -0700104 """Send data to the sub-process's stdin.
Stephen Warrend2015062016-01-15 11:15:24 -0700105
106 Args:
107 data: The data to send to the process.
108
109 Returns:
110 Nothing.
Stephen Warrene8debf32016-01-26 13:41:30 -0700111 """
Stephen Warrend2015062016-01-15 11:15:24 -0700112
Tom Rinifd31fc12019-10-24 11:59:21 -0400113 os.write(self.fd, data.encode(errors='replace'))
Stephen Warrend2015062016-01-15 11:15:24 -0700114
115 def expect(self, patterns):
Stephen Warrene8debf32016-01-26 13:41:30 -0700116 """Wait for the sub-process to emit specific data.
Stephen Warrend2015062016-01-15 11:15:24 -0700117
118 This function waits for the process to emit one pattern from the
119 supplied list of patterns, or for a timeout to occur.
120
121 Args:
122 patterns: A list of strings or regex objects that we expect to
123 see in the sub-process' stdout.
124
125 Returns:
126 The index within the patterns array of the pattern the process
127 emitted.
128
129 Notable exceptions:
130 Timeout, if the process did not emit any of the patterns within
131 the expected time.
Stephen Warrene8debf32016-01-26 13:41:30 -0700132 """
Stephen Warrend2015062016-01-15 11:15:24 -0700133
Paul Burtonb8c45552017-09-14 14:34:44 -0700134 for pi in range(len(patterns)):
Stephen Warrend2015062016-01-15 11:15:24 -0700135 if type(patterns[pi]) == type(''):
136 patterns[pi] = re.compile(patterns[pi])
137
Stephen Warrend314e242016-01-22 12:30:07 -0700138 tstart_s = time.time()
Stephen Warrend2015062016-01-15 11:15:24 -0700139 try:
140 while True:
141 earliest_m = None
142 earliest_pi = None
Paul Burtonb8c45552017-09-14 14:34:44 -0700143 for pi in range(len(patterns)):
Stephen Warrend2015062016-01-15 11:15:24 -0700144 pattern = patterns[pi]
145 m = pattern.search(self.buf)
146 if not m:
147 continue
Stephen Warren44ac7622016-01-27 23:57:47 -0700148 if earliest_m and m.start() >= earliest_m.start():
Stephen Warrend2015062016-01-15 11:15:24 -0700149 continue
150 earliest_m = m
151 earliest_pi = pi
152 if earliest_m:
153 pos = earliest_m.start()
Stephen Warrend8926812016-02-05 18:04:42 -0700154 posafter = earliest_m.end()
Stephen Warrend2015062016-01-15 11:15:24 -0700155 self.before = self.buf[:pos]
156 self.after = self.buf[pos:posafter]
Simon Glassebec58f2016-07-04 11:58:39 -0600157 self.output += self.buf[:posafter]
Stephen Warrend2015062016-01-15 11:15:24 -0700158 self.buf = self.buf[posafter:]
159 return earliest_pi
Stephen Warrend314e242016-01-22 12:30:07 -0700160 tnow_s = time.time()
Stephen Warren89ab8412016-02-04 16:11:50 -0700161 if self.timeout:
162 tdelta_ms = (tnow_s - tstart_s) * 1000
163 poll_maxwait = self.timeout - tdelta_ms
164 if tdelta_ms > self.timeout:
165 raise Timeout()
166 else:
167 poll_maxwait = None
168 events = self.poll.poll(poll_maxwait)
Stephen Warrend2015062016-01-15 11:15:24 -0700169 if not events:
170 raise Timeout()
Tom Rinifd31fc12019-10-24 11:59:21 -0400171 c = os.read(self.fd, 1024).decode(errors='replace')
Stephen Warrend2015062016-01-15 11:15:24 -0700172 if not c:
173 raise EOFError()
174 if self.logfile_read:
175 self.logfile_read.write(c)
176 self.buf += c
Stephen Warren085e64d2016-07-06 10:34:30 -0600177 # count=0 is supposed to be the default, which indicates
178 # unlimited substitutions, but in practice the version of
179 # Python in Ubuntu 14.04 appears to default to count=2!
180 self.buf = self.re_vt100.sub('', self.buf, count=1000000)
Stephen Warrend2015062016-01-15 11:15:24 -0700181 finally:
182 if self.logfile_read:
183 self.logfile_read.flush()
184
185 def close(self):
Stephen Warrene8debf32016-01-26 13:41:30 -0700186 """Close the stdio connection to the sub-process.
Stephen Warrend2015062016-01-15 11:15:24 -0700187
188 This also waits a reasonable time for the sub-process to stop running.
189
190 Args:
191 None.
192
193 Returns:
194 Nothing.
Stephen Warrene8debf32016-01-26 13:41:30 -0700195 """
Stephen Warrend2015062016-01-15 11:15:24 -0700196
197 os.close(self.fd)
Paul Burtonb8c45552017-09-14 14:34:44 -0700198 for i in range(100):
Stephen Warrend2015062016-01-15 11:15:24 -0700199 if not self.isalive():
200 break
201 time.sleep(0.1)
Simon Glassebec58f2016-07-04 11:58:39 -0600202
203 def get_expect_output(self):
204 """Return the output read by expect()
205
206 Returns:
207 The output processed by expect(), as a string.
208 """
209 return self.output