blob: b011a3e3da255f5301163973bc52f72af9da3a32 [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
45 # Note that re.I doesn't seem to work with this regex (or perhaps the
46 # version of Python in Ubuntu 14.04), hence the inclusion of a-z inside
47 # [] instead.
48 self.re_vt100 = re.compile('(\x1b\[|\x9b)[^@-_a-z]*[@-_a-z]|\x1b[@-_a-z]')
Stephen Warrend2015062016-01-15 11:15:24 -070049
50 (self.pid, self.fd) = pty.fork()
51 if self.pid == 0:
52 try:
53 # For some reason, SIGHUP is set to SIG_IGN at this point when
54 # run under "go" (www.go.cd). Perhaps this happens under any
55 # background (non-interactive) system?
56 signal.signal(signal.SIGHUP, signal.SIG_DFL)
Stephen Warrend27f2fc2016-01-27 23:57:53 -070057 if cwd:
58 os.chdir(cwd)
Stephen Warrend2015062016-01-15 11:15:24 -070059 os.execvp(args[0], args)
60 except:
Paul Burtondffd56d2017-09-14 14:34:43 -070061 print('CHILD EXECEPTION:')
Stephen Warrend2015062016-01-15 11:15:24 -070062 import traceback
63 traceback.print_exc()
64 finally:
65 os._exit(255)
66
Stephen Warren93134e12016-02-10 16:54:37 -070067 try:
68 self.poll = select.poll()
69 self.poll.register(self.fd, select.POLLIN | select.POLLPRI | select.POLLERR | select.POLLHUP | select.POLLNVAL)
70 except:
71 self.close()
72 raise
Stephen Warrend2015062016-01-15 11:15:24 -070073
74 def kill(self, sig):
Stephen Warrene8debf32016-01-26 13:41:30 -070075 """Send unix signal "sig" to the child process.
Stephen Warrend2015062016-01-15 11:15:24 -070076
77 Args:
78 sig: The signal number to send.
79
80 Returns:
81 Nothing.
Stephen Warrene8debf32016-01-26 13:41:30 -070082 """
Stephen Warrend2015062016-01-15 11:15:24 -070083
84 os.kill(self.pid, sig)
85
86 def isalive(self):
Stephen Warrene8debf32016-01-26 13:41:30 -070087 """Determine whether the child process is still running.
Stephen Warrend2015062016-01-15 11:15:24 -070088
89 Args:
90 None.
91
92 Returns:
93 Boolean indicating whether process is alive.
Stephen Warrene8debf32016-01-26 13:41:30 -070094 """
Stephen Warrend2015062016-01-15 11:15:24 -070095
96 if self.waited:
97 return False
98
99 w = os.waitpid(self.pid, os.WNOHANG)
100 if w[0] == 0:
101 return True
102
103 self.waited = True
104 return False
105
106 def send(self, data):
Stephen Warrene8debf32016-01-26 13:41:30 -0700107 """Send data to the sub-process's stdin.
Stephen Warrend2015062016-01-15 11:15:24 -0700108
109 Args:
110 data: The data to send to the process.
111
112 Returns:
113 Nothing.
Stephen Warrene8debf32016-01-26 13:41:30 -0700114 """
Stephen Warrend2015062016-01-15 11:15:24 -0700115
116 os.write(self.fd, data)
117
118 def expect(self, patterns):
Stephen Warrene8debf32016-01-26 13:41:30 -0700119 """Wait for the sub-process to emit specific data.
Stephen Warrend2015062016-01-15 11:15:24 -0700120
121 This function waits for the process to emit one pattern from the
122 supplied list of patterns, or for a timeout to occur.
123
124 Args:
125 patterns: A list of strings or regex objects that we expect to
126 see in the sub-process' stdout.
127
128 Returns:
129 The index within the patterns array of the pattern the process
130 emitted.
131
132 Notable exceptions:
133 Timeout, if the process did not emit any of the patterns within
134 the expected time.
Stephen Warrene8debf32016-01-26 13:41:30 -0700135 """
Stephen Warrend2015062016-01-15 11:15:24 -0700136
Paul Burtonb8c45552017-09-14 14:34:44 -0700137 for pi in range(len(patterns)):
Stephen Warrend2015062016-01-15 11:15:24 -0700138 if type(patterns[pi]) == type(''):
139 patterns[pi] = re.compile(patterns[pi])
140
Stephen Warrend314e242016-01-22 12:30:07 -0700141 tstart_s = time.time()
Stephen Warrend2015062016-01-15 11:15:24 -0700142 try:
143 while True:
144 earliest_m = None
145 earliest_pi = None
Paul Burtonb8c45552017-09-14 14:34:44 -0700146 for pi in range(len(patterns)):
Stephen Warrend2015062016-01-15 11:15:24 -0700147 pattern = patterns[pi]
148 m = pattern.search(self.buf)
149 if not m:
150 continue
Stephen Warren44ac7622016-01-27 23:57:47 -0700151 if earliest_m and m.start() >= earliest_m.start():
Stephen Warrend2015062016-01-15 11:15:24 -0700152 continue
153 earliest_m = m
154 earliest_pi = pi
155 if earliest_m:
156 pos = earliest_m.start()
Stephen Warrend8926812016-02-05 18:04:42 -0700157 posafter = earliest_m.end()
Stephen Warrend2015062016-01-15 11:15:24 -0700158 self.before = self.buf[:pos]
159 self.after = self.buf[pos:posafter]
Simon Glassebec58f2016-07-04 11:58:39 -0600160 self.output += self.buf[:posafter]
Stephen Warrend2015062016-01-15 11:15:24 -0700161 self.buf = self.buf[posafter:]
162 return earliest_pi
Stephen Warrend314e242016-01-22 12:30:07 -0700163 tnow_s = time.time()
Stephen Warren89ab8412016-02-04 16:11:50 -0700164 if self.timeout:
165 tdelta_ms = (tnow_s - tstart_s) * 1000
166 poll_maxwait = self.timeout - tdelta_ms
167 if tdelta_ms > self.timeout:
168 raise Timeout()
169 else:
170 poll_maxwait = None
171 events = self.poll.poll(poll_maxwait)
Stephen Warrend2015062016-01-15 11:15:24 -0700172 if not events:
173 raise Timeout()
174 c = os.read(self.fd, 1024)
175 if not c:
176 raise EOFError()
177 if self.logfile_read:
178 self.logfile_read.write(c)
179 self.buf += c
Stephen Warren085e64d2016-07-06 10:34:30 -0600180 # count=0 is supposed to be the default, which indicates
181 # unlimited substitutions, but in practice the version of
182 # Python in Ubuntu 14.04 appears to default to count=2!
183 self.buf = self.re_vt100.sub('', self.buf, count=1000000)
Stephen Warrend2015062016-01-15 11:15:24 -0700184 finally:
185 if self.logfile_read:
186 self.logfile_read.flush()
187
188 def close(self):
Stephen Warrene8debf32016-01-26 13:41:30 -0700189 """Close the stdio connection to the sub-process.
Stephen Warrend2015062016-01-15 11:15:24 -0700190
191 This also waits a reasonable time for the sub-process to stop running.
192
193 Args:
194 None.
195
196 Returns:
197 Nothing.
Stephen Warrene8debf32016-01-26 13:41:30 -0700198 """
Stephen Warrend2015062016-01-15 11:15:24 -0700199
200 os.close(self.fd)
Paul Burtonb8c45552017-09-14 14:34:44 -0700201 for i in range(100):
Stephen Warrend2015062016-01-15 11:15:24 -0700202 if not self.isalive():
203 break
204 time.sleep(0.1)
Simon Glassebec58f2016-07-04 11:58:39 -0600205
206 def get_expect_output(self):
207 """Return the output read by expect()
208
209 Returns:
210 The output processed by expect(), as a string.
211 """
212 return self.output