subprocess.py 67 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787
  1. # subprocess - Subprocesses with accessible I/O streams
  2. #
  3. # For more information about this module, see PEP 324.
  4. #
  5. # Copyright (c) 2003-2005 by Peter Astrand <astrand@lysator.liu.se>
  6. #
  7. # Licensed to PSF under a Contributor Agreement.
  8. # See http://www.python.org/2.4/license for licensing details.
  9. r"""subprocess - Subprocesses with accessible I/O streams
  10. This module allows you to spawn processes, connect to their
  11. input/output/error pipes, and obtain their return codes. This module
  12. intends to replace several older modules and functions:
  13. os.system
  14. os.spawn*
  15. Information about how the subprocess module can be used to replace these
  16. modules and functions can be found below.
  17. Using the subprocess module
  18. ===========================
  19. This module defines one class called Popen:
  20. class Popen(args, bufsize=-1, executable=None,
  21. stdin=None, stdout=None, stderr=None,
  22. preexec_fn=None, close_fds=True, shell=False,
  23. cwd=None, env=None, universal_newlines=False,
  24. startupinfo=None, creationflags=0,
  25. restore_signals=True, start_new_session=False, pass_fds=()):
  26. Arguments are:
  27. args should be a string, or a sequence of program arguments. The
  28. program to execute is normally the first item in the args sequence or
  29. string, but can be explicitly set by using the executable argument.
  30. On POSIX, with shell=False (default): In this case, the Popen class
  31. uses os.execvp() to execute the child program. args should normally
  32. be a sequence. A string will be treated as a sequence with the string
  33. as the only item (the program to execute).
  34. On POSIX, with shell=True: If args is a string, it specifies the
  35. command string to execute through the shell. If args is a sequence,
  36. the first item specifies the command string, and any additional items
  37. will be treated as additional shell arguments.
  38. On Windows: the Popen class uses CreateProcess() to execute the child
  39. program, which operates on strings. If args is a sequence, it will be
  40. converted to a string using the list2cmdline method. Please note that
  41. not all MS Windows applications interpret the command line the same
  42. way: The list2cmdline is designed for applications using the same
  43. rules as the MS C runtime.
  44. bufsize will be supplied as the corresponding argument to the io.open()
  45. function when creating the stdin/stdout/stderr pipe file objects:
  46. 0 means unbuffered (read & write are one system call and can return short),
  47. 1 means line buffered, any other positive value means use a buffer of
  48. approximately that size. A negative bufsize, the default, means the system
  49. default of io.DEFAULT_BUFFER_SIZE will be used.
  50. stdin, stdout and stderr specify the executed programs' standard
  51. input, standard output and standard error file handles, respectively.
  52. Valid values are PIPE, an existing file descriptor (a positive
  53. integer), an existing file object, and None. PIPE indicates that a
  54. new pipe to the child should be created. With None, no redirection
  55. will occur; the child's file handles will be inherited from the
  56. parent. Additionally, stderr can be STDOUT, which indicates that the
  57. stderr data from the applications should be captured into the same
  58. file handle as for stdout.
  59. On POSIX, if preexec_fn is set to a callable object, this object will be
  60. called in the child process just before the child is executed. The use
  61. of preexec_fn is not thread safe, using it in the presence of threads
  62. could lead to a deadlock in the child process before the new executable
  63. is executed.
  64. If close_fds is true, all file descriptors except 0, 1 and 2 will be
  65. closed before the child process is executed. The default for close_fds
  66. varies by platform: Always true on POSIX. True when stdin/stdout/stderr
  67. are None on Windows, false otherwise.
  68. pass_fds is an optional sequence of file descriptors to keep open between the
  69. parent and child. Providing any pass_fds implicitly sets close_fds to true.
  70. if shell is true, the specified command will be executed through the
  71. shell.
  72. If cwd is not None, the current directory will be changed to cwd
  73. before the child is executed.
  74. On POSIX, if restore_signals is True all signals that Python sets to
  75. SIG_IGN are restored to SIG_DFL in the child process before the exec.
  76. Currently this includes the SIGPIPE, SIGXFZ and SIGXFSZ signals. This
  77. parameter does nothing on Windows.
  78. On POSIX, if start_new_session is True, the setsid() system call will be made
  79. in the child process prior to executing the command.
  80. If env is not None, it defines the environment variables for the new
  81. process.
  82. If universal_newlines is False, the file objects stdin, stdout and stderr
  83. are opened as binary files, and no line ending conversion is done.
  84. If universal_newlines is True, the file objects stdout and stderr are
  85. opened as a text file, but lines may be terminated by any of '\n',
  86. the Unix end-of-line convention, '\r', the old Macintosh convention or
  87. '\r\n', the Windows convention. All of these external representations
  88. are seen as '\n' by the Python program. Also, the newlines attribute
  89. of the file objects stdout, stdin and stderr are not updated by the
  90. communicate() method.
  91. In either case, the process being communicated with should start up
  92. expecting to receive bytes on its standard input and decode them with
  93. the same encoding they are sent in.
  94. The startupinfo and creationflags, if given, will be passed to the
  95. underlying CreateProcess() function. They can specify things such as
  96. appearance of the main window and priority for the new process.
  97. (Windows only)
  98. This module also defines some shortcut functions:
  99. call(*popenargs, **kwargs):
  100. Run command with arguments. Wait for command to complete, then
  101. return the returncode attribute.
  102. The arguments are the same as for the Popen constructor. Example:
  103. >>> retcode = subprocess.call(["ls", "-l"])
  104. check_call(*popenargs, **kwargs):
  105. Run command with arguments. Wait for command to complete. If the
  106. exit code was zero then return, otherwise raise
  107. CalledProcessError. The CalledProcessError object will have the
  108. return code in the returncode attribute.
  109. The arguments are the same as for the Popen constructor. Example:
  110. >>> subprocess.check_call(["ls", "-l"])
  111. 0
  112. getstatusoutput(cmd):
  113. Return (status, output) of executing cmd in a shell.
  114. Execute the string 'cmd' in a shell with 'check_output' and
  115. return a 2-tuple (status, output). Universal newlines mode is used,
  116. meaning that the result with be decoded to a string.
  117. A trailing newline is stripped from the output.
  118. The exit status for the command can be interpreted
  119. according to the rules for the function 'wait'. Example:
  120. >>> subprocess.getstatusoutput('ls /bin/ls')
  121. (0, '/bin/ls')
  122. >>> subprocess.getstatusoutput('cat /bin/junk')
  123. (256, 'cat: /bin/junk: No such file or directory')
  124. >>> subprocess.getstatusoutput('/bin/junk')
  125. (256, 'sh: /bin/junk: not found')
  126. getoutput(cmd):
  127. Return output (stdout or stderr) of executing cmd in a shell.
  128. Like getstatusoutput(), except the exit status is ignored and the return
  129. value is a string containing the command's output. Example:
  130. >>> subprocess.getoutput('ls /bin/ls')
  131. '/bin/ls'
  132. check_output(*popenargs, **kwargs):
  133. Run command with arguments and return its output.
  134. If the exit code was non-zero it raises a CalledProcessError. The
  135. CalledProcessError object will have the return code in the returncode
  136. attribute and output in the output attribute.
  137. The arguments are the same as for the Popen constructor. Example:
  138. >>> output = subprocess.check_output(["ls", "-l", "/dev/null"])
  139. There is an additional optional argument, "input", allowing you to
  140. pass a string to the subprocess's stdin. If you use this argument
  141. you may not also use the Popen constructor's "stdin" argument.
  142. If universal_newlines is set to True, the "input" argument must
  143. be a string rather than bytes, and the return value will be a string.
  144. Exceptions
  145. ----------
  146. Exceptions raised in the child process, before the new program has
  147. started to execute, will be re-raised in the parent. Additionally,
  148. the exception object will have one extra attribute called
  149. 'child_traceback', which is a string containing traceback information
  150. from the child's point of view.
  151. The most common exception raised is OSError. This occurs, for
  152. example, when trying to execute a non-existent file. Applications
  153. should prepare for OSErrors.
  154. A ValueError will be raised if Popen is called with invalid arguments.
  155. Exceptions defined within this module inherit from SubprocessError.
  156. check_call() and check_output() will raise CalledProcessError if the
  157. called process returns a non-zero return code. TimeoutExpired
  158. be raised if a timeout was specified and expired.
  159. Security
  160. --------
  161. Unlike some other popen functions, this implementation will never call
  162. /bin/sh implicitly. This means that all characters, including shell
  163. metacharacters, can safely be passed to child processes.
  164. Popen objects
  165. =============
  166. Instances of the Popen class have the following methods:
  167. poll()
  168. Check if child process has terminated. Returns returncode
  169. attribute.
  170. wait()
  171. Wait for child process to terminate. Returns returncode attribute.
  172. communicate(input=None)
  173. Interact with process: Send data to stdin. Read data from stdout
  174. and stderr, until end-of-file is reached. Wait for process to
  175. terminate. The optional input argument should be data to be
  176. sent to the child process, or None, if no data should be sent to
  177. the child. If the Popen instance was constructed with universal_newlines
  178. set to True, the input argument should be a string and will be encoded
  179. using the preferred system encoding (see locale.getpreferredencoding);
  180. if universal_newlines is False, the input argument should be a
  181. byte string.
  182. communicate() returns a tuple (stdout, stderr).
  183. Note: The data read is buffered in memory, so do not use this
  184. method if the data size is large or unlimited.
  185. The following attributes are also available:
  186. stdin
  187. If the stdin argument is PIPE, this attribute is a file object
  188. that provides input to the child process. Otherwise, it is None.
  189. stdout
  190. If the stdout argument is PIPE, this attribute is a file object
  191. that provides output from the child process. Otherwise, it is
  192. None.
  193. stderr
  194. If the stderr argument is PIPE, this attribute is file object that
  195. provides error output from the child process. Otherwise, it is
  196. None.
  197. pid
  198. The process ID of the child process.
  199. returncode
  200. The child return code. A None value indicates that the process
  201. hasn't terminated yet. A negative value -N indicates that the
  202. child was terminated by signal N (POSIX only).
  203. Replacing older functions with the subprocess module
  204. ====================================================
  205. In this section, "a ==> b" means that b can be used as a replacement
  206. for a.
  207. Note: All functions in this section fail (more or less) silently if
  208. the executed program cannot be found; this module raises an OSError
  209. exception.
  210. In the following examples, we assume that the subprocess module is
  211. imported with "from subprocess import *".
  212. Replacing /bin/sh shell backquote
  213. ---------------------------------
  214. output=`mycmd myarg`
  215. ==>
  216. output = Popen(["mycmd", "myarg"], stdout=PIPE).communicate()[0]
  217. Replacing shell pipe line
  218. -------------------------
  219. output=`dmesg | grep hda`
  220. ==>
  221. p1 = Popen(["dmesg"], stdout=PIPE)
  222. p2 = Popen(["grep", "hda"], stdin=p1.stdout, stdout=PIPE)
  223. output = p2.communicate()[0]
  224. Replacing os.system()
  225. ---------------------
  226. sts = os.system("mycmd" + " myarg")
  227. ==>
  228. p = Popen("mycmd" + " myarg", shell=True)
  229. pid, sts = os.waitpid(p.pid, 0)
  230. Note:
  231. * Calling the program through the shell is usually not required.
  232. * It's easier to look at the returncode attribute than the
  233. exitstatus.
  234. A more real-world example would look like this:
  235. try:
  236. retcode = call("mycmd" + " myarg", shell=True)
  237. if retcode < 0:
  238. print("Child was terminated by signal", -retcode, file=sys.stderr)
  239. else:
  240. print("Child returned", retcode, file=sys.stderr)
  241. except OSError as e:
  242. print("Execution failed:", e, file=sys.stderr)
  243. Replacing os.spawn*
  244. -------------------
  245. P_NOWAIT example:
  246. pid = os.spawnlp(os.P_NOWAIT, "/bin/mycmd", "mycmd", "myarg")
  247. ==>
  248. pid = Popen(["/bin/mycmd", "myarg"]).pid
  249. P_WAIT example:
  250. retcode = os.spawnlp(os.P_WAIT, "/bin/mycmd", "mycmd", "myarg")
  251. ==>
  252. retcode = call(["/bin/mycmd", "myarg"])
  253. Vector example:
  254. os.spawnvp(os.P_NOWAIT, path, args)
  255. ==>
  256. Popen([path] + args[1:])
  257. Environment example:
  258. os.spawnlpe(os.P_NOWAIT, "/bin/mycmd", "mycmd", "myarg", env)
  259. ==>
  260. Popen(["/bin/mycmd", "myarg"], env={"PATH": "/usr/bin"})
  261. """
  262. import sys
  263. _mswindows = (sys.platform == "win32")
  264. import io
  265. import os
  266. import time
  267. import signal
  268. import builtins
  269. import warnings
  270. import errno
  271. from time import monotonic as _time
  272. # Exception classes used by this module.
  273. class SubprocessError(Exception): pass
  274. class CalledProcessError(SubprocessError):
  275. """This exception is raised when a process run by check_call() or
  276. check_output() returns a non-zero exit status.
  277. The exit status will be stored in the returncode attribute;
  278. check_output() will also store the output in the output attribute.
  279. """
  280. def __init__(self, returncode, cmd, output=None, stderr=None):
  281. self.returncode = returncode
  282. self.cmd = cmd
  283. self.output = output
  284. self.stderr = stderr
  285. def __str__(self):
  286. return "Command '%s' returned non-zero exit status %d" % (self.cmd, self.returncode)
  287. @property
  288. def stdout(self):
  289. """Alias for output attribute, to match stderr"""
  290. return self.output
  291. @stdout.setter
  292. def stdout(self, value):
  293. # There's no obvious reason to set this, but allow it anyway so
  294. # .stdout is a transparent alias for .output
  295. self.output = value
  296. class TimeoutExpired(SubprocessError):
  297. """This exception is raised when the timeout expires while waiting for a
  298. child process.
  299. """
  300. def __init__(self, cmd, timeout, output=None, stderr=None):
  301. self.cmd = cmd
  302. self.timeout = timeout
  303. self.output = output
  304. self.stderr = stderr
  305. def __str__(self):
  306. return ("Command '%s' timed out after %s seconds" %
  307. (self.cmd, self.timeout))
  308. @property
  309. def stdout(self):
  310. return self.output
  311. @stdout.setter
  312. def stdout(self, value):
  313. # There's no obvious reason to set this, but allow it anyway so
  314. # .stdout is a transparent alias for .output
  315. self.output = value
  316. if _mswindows:
  317. import threading
  318. import msvcrt
  319. import _winapi
  320. class STARTUPINFO:
  321. dwFlags = 0
  322. hStdInput = None
  323. hStdOutput = None
  324. hStdError = None
  325. wShowWindow = 0
  326. else:
  327. import _posixsubprocess
  328. import select
  329. import selectors
  330. try:
  331. import threading
  332. except ImportError:
  333. import dummy_threading as threading
  334. # When select or poll has indicated that the file is writable,
  335. # we can write up to _PIPE_BUF bytes without risk of blocking.
  336. # POSIX defines PIPE_BUF as >= 512.
  337. _PIPE_BUF = getattr(select, 'PIPE_BUF', 512)
  338. # poll/select have the advantage of not requiring any extra file
  339. # descriptor, contrarily to epoll/kqueue (also, they require a single
  340. # syscall).
  341. if hasattr(selectors, 'PollSelector'):
  342. _PopenSelector = selectors.PollSelector
  343. else:
  344. _PopenSelector = selectors.SelectSelector
  345. __all__ = ["Popen", "PIPE", "STDOUT", "call", "check_call", "getstatusoutput",
  346. "getoutput", "check_output", "run", "CalledProcessError", "DEVNULL",
  347. "SubprocessError", "TimeoutExpired", "CompletedProcess"]
  348. # NOTE: We intentionally exclude list2cmdline as it is
  349. # considered an internal implementation detail. issue10838.
  350. if _mswindows:
  351. from _winapi import (CREATE_NEW_CONSOLE, CREATE_NEW_PROCESS_GROUP,
  352. STD_INPUT_HANDLE, STD_OUTPUT_HANDLE,
  353. STD_ERROR_HANDLE, SW_HIDE,
  354. STARTF_USESTDHANDLES, STARTF_USESHOWWINDOW)
  355. __all__.extend(["CREATE_NEW_CONSOLE", "CREATE_NEW_PROCESS_GROUP",
  356. "STD_INPUT_HANDLE", "STD_OUTPUT_HANDLE",
  357. "STD_ERROR_HANDLE", "SW_HIDE",
  358. "STARTF_USESTDHANDLES", "STARTF_USESHOWWINDOW"])
  359. class Handle(int):
  360. closed = False
  361. def Close(self, CloseHandle=_winapi.CloseHandle):
  362. if not self.closed:
  363. self.closed = True
  364. CloseHandle(self)
  365. def Detach(self):
  366. if not self.closed:
  367. self.closed = True
  368. return int(self)
  369. raise ValueError("already closed")
  370. def __repr__(self):
  371. return "%s(%d)" % (self.__class__.__name__, int(self))
  372. __del__ = Close
  373. __str__ = __repr__
  374. # This lists holds Popen instances for which the underlying process had not
  375. # exited at the time its __del__ method got called: those processes are wait()ed
  376. # for synchronously from _cleanup() when a new Popen object is created, to avoid
  377. # zombie processes.
  378. _active = []
  379. def _cleanup():
  380. for inst in _active[:]:
  381. res = inst._internal_poll(_deadstate=sys.maxsize)
  382. if res is not None:
  383. try:
  384. _active.remove(inst)
  385. except ValueError:
  386. # This can happen if two threads create a new Popen instance.
  387. # It's harmless that it was already removed, so ignore.
  388. pass
  389. PIPE = -1
  390. STDOUT = -2
  391. DEVNULL = -3
  392. # XXX This function is only used by multiprocessing and the test suite,
  393. # but it's here so that it can be imported when Python is compiled without
  394. # threads.
  395. def _args_from_interpreter_flags():
  396. """Return a list of command-line arguments reproducing the current
  397. settings in sys.flags and sys.warnoptions."""
  398. flag_opt_map = {
  399. 'debug': 'd',
  400. # 'inspect': 'i',
  401. # 'interactive': 'i',
  402. 'optimize': 'O',
  403. 'dont_write_bytecode': 'B',
  404. 'no_user_site': 's',
  405. 'no_site': 'S',
  406. 'ignore_environment': 'E',
  407. 'verbose': 'v',
  408. 'bytes_warning': 'b',
  409. 'quiet': 'q',
  410. }
  411. args = []
  412. for flag, opt in flag_opt_map.items():
  413. v = getattr(sys.flags, flag)
  414. if v > 0:
  415. args.append('-' + opt * v)
  416. for opt in sys.warnoptions:
  417. args.append('-W' + opt)
  418. return args
  419. def call(*popenargs, timeout=None, **kwargs):
  420. """Run command with arguments. Wait for command to complete or
  421. timeout, then return the returncode attribute.
  422. The arguments are the same as for the Popen constructor. Example:
  423. retcode = call(["ls", "-l"])
  424. """
  425. with Popen(*popenargs, **kwargs) as p:
  426. try:
  427. return p.wait(timeout=timeout)
  428. except:
  429. p.kill()
  430. p.wait()
  431. raise
  432. def check_call(*popenargs, **kwargs):
  433. """Run command with arguments. Wait for command to complete. If
  434. the exit code was zero then return, otherwise raise
  435. CalledProcessError. The CalledProcessError object will have the
  436. return code in the returncode attribute.
  437. The arguments are the same as for the call function. Example:
  438. check_call(["ls", "-l"])
  439. """
  440. retcode = call(*popenargs, **kwargs)
  441. if retcode:
  442. cmd = kwargs.get("args")
  443. if cmd is None:
  444. cmd = popenargs[0]
  445. raise CalledProcessError(retcode, cmd)
  446. return 0
  447. def check_output(*popenargs, timeout=None, **kwargs):
  448. r"""Run command with arguments and return its output.
  449. If the exit code was non-zero it raises a CalledProcessError. The
  450. CalledProcessError object will have the return code in the returncode
  451. attribute and output in the output attribute.
  452. The arguments are the same as for the Popen constructor. Example:
  453. >>> check_output(["ls", "-l", "/dev/null"])
  454. b'crw-rw-rw- 1 root root 1, 3 Oct 18 2007 /dev/null\n'
  455. The stdout argument is not allowed as it is used internally.
  456. To capture standard error in the result, use stderr=STDOUT.
  457. >>> check_output(["/bin/sh", "-c",
  458. ... "ls -l non_existent_file ; exit 0"],
  459. ... stderr=STDOUT)
  460. b'ls: non_existent_file: No such file or directory\n'
  461. There is an additional optional argument, "input", allowing you to
  462. pass a string to the subprocess's stdin. If you use this argument
  463. you may not also use the Popen constructor's "stdin" argument, as
  464. it too will be used internally. Example:
  465. >>> check_output(["sed", "-e", "s/foo/bar/"],
  466. ... input=b"when in the course of fooman events\n")
  467. b'when in the course of barman events\n'
  468. If universal_newlines=True is passed, the "input" argument must be a
  469. string and the return value will be a string rather than bytes.
  470. """
  471. if 'stdout' in kwargs:
  472. raise ValueError('stdout argument not allowed, it will be overridden.')
  473. if 'input' in kwargs and kwargs['input'] is None:
  474. # Explicitly passing input=None was previously equivalent to passing an
  475. # empty string. That is maintained here for backwards compatibility.
  476. kwargs['input'] = '' if kwargs.get('universal_newlines', False) else b''
  477. return run(*popenargs, stdout=PIPE, timeout=timeout, check=True,
  478. **kwargs).stdout
  479. class CompletedProcess(object):
  480. """A process that has finished running.
  481. This is returned by run().
  482. Attributes:
  483. args: The list or str args passed to run().
  484. returncode: The exit code of the process, negative for signals.
  485. stdout: The standard output (None if not captured).
  486. stderr: The standard error (None if not captured).
  487. """
  488. def __init__(self, args, returncode, stdout=None, stderr=None):
  489. self.args = args
  490. self.returncode = returncode
  491. self.stdout = stdout
  492. self.stderr = stderr
  493. def __repr__(self):
  494. args = ['args={!r}'.format(self.args),
  495. 'returncode={!r}'.format(self.returncode)]
  496. if self.stdout is not None:
  497. args.append('stdout={!r}'.format(self.stdout))
  498. if self.stderr is not None:
  499. args.append('stderr={!r}'.format(self.stderr))
  500. return "{}({})".format(type(self).__name__, ', '.join(args))
  501. def check_returncode(self):
  502. """Raise CalledProcessError if the exit code is non-zero."""
  503. if self.returncode:
  504. raise CalledProcessError(self.returncode, self.args, self.stdout,
  505. self.stderr)
  506. def run(*popenargs, input=None, timeout=None, check=False, **kwargs):
  507. """Run command with arguments and return a CompletedProcess instance.
  508. The returned instance will have attributes args, returncode, stdout and
  509. stderr. By default, stdout and stderr are not captured, and those attributes
  510. will be None. Pass stdout=PIPE and/or stderr=PIPE in order to capture them.
  511. If check is True and the exit code was non-zero, it raises a
  512. CalledProcessError. The CalledProcessError object will have the return code
  513. in the returncode attribute, and output & stderr attributes if those streams
  514. were captured.
  515. If timeout is given, and the process takes too long, a TimeoutExpired
  516. exception will be raised.
  517. There is an optional argument "input", allowing you to
  518. pass a string to the subprocess's stdin. If you use this argument
  519. you may not also use the Popen constructor's "stdin" argument, as
  520. it will be used internally.
  521. The other arguments are the same as for the Popen constructor.
  522. If universal_newlines=True is passed, the "input" argument must be a
  523. string and stdout/stderr in the returned object will be strings rather than
  524. bytes.
  525. """
  526. if input is not None:
  527. if 'stdin' in kwargs:
  528. raise ValueError('stdin and input arguments may not both be used.')
  529. kwargs['stdin'] = PIPE
  530. with Popen(*popenargs, **kwargs) as process:
  531. try:
  532. stdout, stderr = process.communicate(input, timeout=timeout)
  533. except TimeoutExpired:
  534. process.kill()
  535. stdout, stderr = process.communicate()
  536. raise TimeoutExpired(process.args, timeout, output=stdout,
  537. stderr=stderr)
  538. except:
  539. process.kill()
  540. process.wait()
  541. raise
  542. retcode = process.poll()
  543. if check and retcode:
  544. raise CalledProcessError(retcode, process.args,
  545. output=stdout, stderr=stderr)
  546. return CompletedProcess(process.args, retcode, stdout, stderr)
  547. def list2cmdline(seq):
  548. """
  549. Translate a sequence of arguments into a command line
  550. string, using the same rules as the MS C runtime:
  551. 1) Arguments are delimited by white space, which is either a
  552. space or a tab.
  553. 2) A string surrounded by double quotation marks is
  554. interpreted as a single argument, regardless of white space
  555. contained within. A quoted string can be embedded in an
  556. argument.
  557. 3) A double quotation mark preceded by a backslash is
  558. interpreted as a literal double quotation mark.
  559. 4) Backslashes are interpreted literally, unless they
  560. immediately precede a double quotation mark.
  561. 5) If backslashes immediately precede a double quotation mark,
  562. every pair of backslashes is interpreted as a literal
  563. backslash. If the number of backslashes is odd, the last
  564. backslash escapes the next double quotation mark as
  565. described in rule 3.
  566. """
  567. # See
  568. # http://msdn.microsoft.com/en-us/library/17w5ykft.aspx
  569. # or search http://msdn.microsoft.com for
  570. # "Parsing C++ Command-Line Arguments"
  571. result = []
  572. needquote = False
  573. for arg in seq:
  574. bs_buf = []
  575. # Add a space to separate this argument from the others
  576. if result:
  577. result.append(' ')
  578. needquote = (" " in arg) or ("\t" in arg) or not arg
  579. if needquote:
  580. result.append('"')
  581. for c in arg:
  582. if c == '\\':
  583. # Don't know if we need to double yet.
  584. bs_buf.append(c)
  585. elif c == '"':
  586. # Double backslashes.
  587. result.append('\\' * len(bs_buf)*2)
  588. bs_buf = []
  589. result.append('\\"')
  590. else:
  591. # Normal char
  592. if bs_buf:
  593. result.extend(bs_buf)
  594. bs_buf = []
  595. result.append(c)
  596. # Add remaining backslashes, if any.
  597. if bs_buf:
  598. result.extend(bs_buf)
  599. if needquote:
  600. result.extend(bs_buf)
  601. result.append('"')
  602. return ''.join(result)
  603. # Various tools for executing commands and looking at their output and status.
  604. #
  605. def getstatusoutput(cmd):
  606. """ Return (status, output) of executing cmd in a shell.
  607. Execute the string 'cmd' in a shell with 'check_output' and
  608. return a 2-tuple (status, output). Universal newlines mode is used,
  609. meaning that the result with be decoded to a string.
  610. A trailing newline is stripped from the output.
  611. The exit status for the command can be interpreted
  612. according to the rules for the function 'wait'. Example:
  613. >>> import subprocess
  614. >>> subprocess.getstatusoutput('ls /bin/ls')
  615. (0, '/bin/ls')
  616. >>> subprocess.getstatusoutput('cat /bin/junk')
  617. (256, 'cat: /bin/junk: No such file or directory')
  618. >>> subprocess.getstatusoutput('/bin/junk')
  619. (256, 'sh: /bin/junk: not found')
  620. """
  621. try:
  622. data = check_output(cmd, shell=True, universal_newlines=True, stderr=STDOUT)
  623. status = 0
  624. except CalledProcessError as ex:
  625. data = ex.output
  626. status = ex.returncode
  627. if data[-1:] == '\n':
  628. data = data[:-1]
  629. return status, data
  630. def getoutput(cmd):
  631. """Return output (stdout or stderr) of executing cmd in a shell.
  632. Like getstatusoutput(), except the exit status is ignored and the return
  633. value is a string containing the command's output. Example:
  634. >>> import subprocess
  635. >>> subprocess.getoutput('ls /bin/ls')
  636. '/bin/ls'
  637. """
  638. return getstatusoutput(cmd)[1]
  639. _PLATFORM_DEFAULT_CLOSE_FDS = object()
  640. class Popen(object):
  641. _child_created = False # Set here since __del__ checks it
  642. def __init__(self, args, bufsize=-1, executable=None,
  643. stdin=None, stdout=None, stderr=None,
  644. preexec_fn=None, close_fds=_PLATFORM_DEFAULT_CLOSE_FDS,
  645. shell=False, cwd=None, env=None, universal_newlines=False,
  646. startupinfo=None, creationflags=0,
  647. restore_signals=True, start_new_session=False,
  648. pass_fds=()):
  649. """Create new Popen instance."""
  650. _cleanup()
  651. # Held while anything is calling waitpid before returncode has been
  652. # updated to prevent clobbering returncode if wait() or poll() are
  653. # called from multiple threads at once. After acquiring the lock,
  654. # code must re-check self.returncode to see if another thread just
  655. # finished a waitpid() call.
  656. self._waitpid_lock = threading.Lock()
  657. self._input = None
  658. self._communication_started = False
  659. if bufsize is None:
  660. bufsize = -1 # Restore default
  661. if not isinstance(bufsize, int):
  662. raise TypeError("bufsize must be an integer")
  663. if _mswindows:
  664. if preexec_fn is not None:
  665. raise ValueError("preexec_fn is not supported on Windows "
  666. "platforms")
  667. any_stdio_set = (stdin is not None or stdout is not None or
  668. stderr is not None)
  669. if close_fds is _PLATFORM_DEFAULT_CLOSE_FDS:
  670. if any_stdio_set:
  671. close_fds = False
  672. else:
  673. close_fds = True
  674. elif close_fds and any_stdio_set:
  675. raise ValueError(
  676. "close_fds is not supported on Windows platforms"
  677. " if you redirect stdin/stdout/stderr")
  678. else:
  679. # POSIX
  680. if close_fds is _PLATFORM_DEFAULT_CLOSE_FDS:
  681. close_fds = True
  682. if pass_fds and not close_fds:
  683. warnings.warn("pass_fds overriding close_fds.", RuntimeWarning)
  684. close_fds = True
  685. if startupinfo is not None:
  686. raise ValueError("startupinfo is only supported on Windows "
  687. "platforms")
  688. if creationflags != 0:
  689. raise ValueError("creationflags is only supported on Windows "
  690. "platforms")
  691. self.args = args
  692. self.stdin = None
  693. self.stdout = None
  694. self.stderr = None
  695. self.pid = None
  696. self.returncode = None
  697. self.universal_newlines = universal_newlines
  698. # Input and output objects. The general principle is like
  699. # this:
  700. #
  701. # Parent Child
  702. # ------ -----
  703. # p2cwrite ---stdin---> p2cread
  704. # c2pread <--stdout--- c2pwrite
  705. # errread <--stderr--- errwrite
  706. #
  707. # On POSIX, the child objects are file descriptors. On
  708. # Windows, these are Windows file handles. The parent objects
  709. # are file descriptors on both platforms. The parent objects
  710. # are -1 when not using PIPEs. The child objects are -1
  711. # when not redirecting.
  712. (p2cread, p2cwrite,
  713. c2pread, c2pwrite,
  714. errread, errwrite) = self._get_handles(stdin, stdout, stderr)
  715. # We wrap OS handles *before* launching the child, otherwise a
  716. # quickly terminating child could make our fds unwrappable
  717. # (see #8458).
  718. if _mswindows:
  719. if p2cwrite != -1:
  720. p2cwrite = msvcrt.open_osfhandle(p2cwrite.Detach(), 0)
  721. if c2pread != -1:
  722. c2pread = msvcrt.open_osfhandle(c2pread.Detach(), 0)
  723. if errread != -1:
  724. errread = msvcrt.open_osfhandle(errread.Detach(), 0)
  725. if p2cwrite != -1:
  726. self.stdin = io.open(p2cwrite, 'wb', bufsize)
  727. if universal_newlines:
  728. self.stdin = io.TextIOWrapper(self.stdin, write_through=True,
  729. line_buffering=(bufsize == 1))
  730. if c2pread != -1:
  731. self.stdout = io.open(c2pread, 'rb', bufsize)
  732. if universal_newlines:
  733. self.stdout = io.TextIOWrapper(self.stdout)
  734. if errread != -1:
  735. self.stderr = io.open(errread, 'rb', bufsize)
  736. if universal_newlines:
  737. self.stderr = io.TextIOWrapper(self.stderr)
  738. self._closed_child_pipe_fds = False
  739. try:
  740. self._execute_child(args, executable, preexec_fn, close_fds,
  741. pass_fds, cwd, env,
  742. startupinfo, creationflags, shell,
  743. p2cread, p2cwrite,
  744. c2pread, c2pwrite,
  745. errread, errwrite,
  746. restore_signals, start_new_session)
  747. except:
  748. # Cleanup if the child failed starting.
  749. for f in filter(None, (self.stdin, self.stdout, self.stderr)):
  750. try:
  751. f.close()
  752. except OSError:
  753. pass # Ignore EBADF or other errors.
  754. if not self._closed_child_pipe_fds:
  755. to_close = []
  756. if stdin == PIPE:
  757. to_close.append(p2cread)
  758. if stdout == PIPE:
  759. to_close.append(c2pwrite)
  760. if stderr == PIPE:
  761. to_close.append(errwrite)
  762. if hasattr(self, '_devnull'):
  763. to_close.append(self._devnull)
  764. for fd in to_close:
  765. try:
  766. os.close(fd)
  767. except OSError:
  768. pass
  769. raise
  770. def _translate_newlines(self, data, encoding):
  771. data = data.decode(encoding)
  772. return data.replace("\r\n", "\n").replace("\r", "\n")
  773. def __enter__(self):
  774. return self
  775. def __exit__(self, type, value, traceback):
  776. if self.stdout:
  777. self.stdout.close()
  778. if self.stderr:
  779. self.stderr.close()
  780. try: # Flushing a BufferedWriter may raise an error
  781. if self.stdin:
  782. self.stdin.close()
  783. finally:
  784. # Wait for the process to terminate, to avoid zombies.
  785. self.wait()
  786. def __del__(self, _maxsize=sys.maxsize):
  787. if not self._child_created:
  788. # We didn't get to successfully create a child process.
  789. return
  790. # In case the child hasn't been waited on, check if it's done.
  791. self._internal_poll(_deadstate=_maxsize)
  792. if self.returncode is None and _active is not None:
  793. # Child is still running, keep us alive until we can wait on it.
  794. _active.append(self)
  795. def _get_devnull(self):
  796. if not hasattr(self, '_devnull'):
  797. self._devnull = os.open(os.devnull, os.O_RDWR)
  798. return self._devnull
  799. def _stdin_write(self, input):
  800. if input:
  801. try:
  802. self.stdin.write(input)
  803. except BrokenPipeError:
  804. pass # communicate() must ignore broken pipe errors.
  805. except OSError as e:
  806. if e.errno == errno.EINVAL and self.poll() is not None:
  807. # Issue #19612: On Windows, stdin.write() fails with EINVAL
  808. # if the process already exited before the write
  809. pass
  810. else:
  811. raise
  812. try:
  813. self.stdin.close()
  814. except BrokenPipeError:
  815. pass # communicate() must ignore broken pipe errors.
  816. except OSError as e:
  817. if e.errno == errno.EINVAL and self.poll() is not None:
  818. pass
  819. else:
  820. raise
  821. def communicate(self, input=None, timeout=None):
  822. """Interact with process: Send data to stdin. Read data from
  823. stdout and stderr, until end-of-file is reached. Wait for
  824. process to terminate.
  825. The optional "input" argument should be data to be sent to the
  826. child process (if self.universal_newlines is True, this should
  827. be a string; if it is False, "input" should be bytes), or
  828. None, if no data should be sent to the child.
  829. communicate() returns a tuple (stdout, stderr). These will be
  830. bytes or, if self.universal_newlines was True, a string.
  831. """
  832. if self._communication_started and input:
  833. raise ValueError("Cannot send input after starting communication")
  834. # Optimization: If we are not worried about timeouts, we haven't
  835. # started communicating, and we have one or zero pipes, using select()
  836. # or threads is unnecessary.
  837. if (timeout is None and not self._communication_started and
  838. [self.stdin, self.stdout, self.stderr].count(None) >= 2):
  839. stdout = None
  840. stderr = None
  841. if self.stdin:
  842. self._stdin_write(input)
  843. elif self.stdout:
  844. stdout = self.stdout.read()
  845. self.stdout.close()
  846. elif self.stderr:
  847. stderr = self.stderr.read()
  848. self.stderr.close()
  849. self.wait()
  850. else:
  851. if timeout is not None:
  852. endtime = _time() + timeout
  853. else:
  854. endtime = None
  855. try:
  856. stdout, stderr = self._communicate(input, endtime, timeout)
  857. finally:
  858. self._communication_started = True
  859. sts = self.wait(timeout=self._remaining_time(endtime))
  860. return (stdout, stderr)
  861. def poll(self):
  862. return self._internal_poll()
  863. def _remaining_time(self, endtime):
  864. """Convenience for _communicate when computing timeouts."""
  865. if endtime is None:
  866. return None
  867. else:
  868. return endtime - _time()
  869. def _check_timeout(self, endtime, orig_timeout):
  870. """Convenience for checking if a timeout has expired."""
  871. if endtime is None:
  872. return
  873. if _time() > endtime:
  874. raise TimeoutExpired(self.args, orig_timeout)
  875. if _mswindows:
  876. #
  877. # Windows methods
  878. #
  879. def _get_handles(self, stdin, stdout, stderr):
  880. """Construct and return tuple with IO objects:
  881. p2cread, p2cwrite, c2pread, c2pwrite, errread, errwrite
  882. """
  883. if stdin is None and stdout is None and stderr is None:
  884. return (-1, -1, -1, -1, -1, -1)
  885. p2cread, p2cwrite = -1, -1
  886. c2pread, c2pwrite = -1, -1
  887. errread, errwrite = -1, -1
  888. if stdin is None:
  889. p2cread = _winapi.GetStdHandle(_winapi.STD_INPUT_HANDLE)
  890. if p2cread is None:
  891. p2cread, _ = _winapi.CreatePipe(None, 0)
  892. p2cread = Handle(p2cread)
  893. _winapi.CloseHandle(_)
  894. elif stdin == PIPE:
  895. p2cread, p2cwrite = _winapi.CreatePipe(None, 0)
  896. p2cread, p2cwrite = Handle(p2cread), Handle(p2cwrite)
  897. elif stdin == DEVNULL:
  898. p2cread = msvcrt.get_osfhandle(self._get_devnull())
  899. elif isinstance(stdin, int):
  900. p2cread = msvcrt.get_osfhandle(stdin)
  901. else:
  902. # Assuming file-like object
  903. p2cread = msvcrt.get_osfhandle(stdin.fileno())
  904. p2cread = self._make_inheritable(p2cread)
  905. if stdout is None:
  906. c2pwrite = _winapi.GetStdHandle(_winapi.STD_OUTPUT_HANDLE)
  907. if c2pwrite is None:
  908. _, c2pwrite = _winapi.CreatePipe(None, 0)
  909. c2pwrite = Handle(c2pwrite)
  910. _winapi.CloseHandle(_)
  911. elif stdout == PIPE:
  912. c2pread, c2pwrite = _winapi.CreatePipe(None, 0)
  913. c2pread, c2pwrite = Handle(c2pread), Handle(c2pwrite)
  914. elif stdout == DEVNULL:
  915. c2pwrite = msvcrt.get_osfhandle(self._get_devnull())
  916. elif isinstance(stdout, int):
  917. c2pwrite = msvcrt.get_osfhandle(stdout)
  918. else:
  919. # Assuming file-like object
  920. c2pwrite = msvcrt.get_osfhandle(stdout.fileno())
  921. c2pwrite = self._make_inheritable(c2pwrite)
  922. if stderr is None:
  923. errwrite = _winapi.GetStdHandle(_winapi.STD_ERROR_HANDLE)
  924. if errwrite is None:
  925. _, errwrite = _winapi.CreatePipe(None, 0)
  926. errwrite = Handle(errwrite)
  927. _winapi.CloseHandle(_)
  928. elif stderr == PIPE:
  929. errread, errwrite = _winapi.CreatePipe(None, 0)
  930. errread, errwrite = Handle(errread), Handle(errwrite)
  931. elif stderr == STDOUT:
  932. errwrite = c2pwrite
  933. elif stderr == DEVNULL:
  934. errwrite = msvcrt.get_osfhandle(self._get_devnull())
  935. elif isinstance(stderr, int):
  936. errwrite = msvcrt.get_osfhandle(stderr)
  937. else:
  938. # Assuming file-like object
  939. errwrite = msvcrt.get_osfhandle(stderr.fileno())
  940. errwrite = self._make_inheritable(errwrite)
  941. return (p2cread, p2cwrite,
  942. c2pread, c2pwrite,
  943. errread, errwrite)
  944. def _make_inheritable(self, handle):
  945. """Return a duplicate of handle, which is inheritable"""
  946. h = _winapi.DuplicateHandle(
  947. _winapi.GetCurrentProcess(), handle,
  948. _winapi.GetCurrentProcess(), 0, 1,
  949. _winapi.DUPLICATE_SAME_ACCESS)
  950. return Handle(h)
  951. def _execute_child(self, args, executable, preexec_fn, close_fds,
  952. pass_fds, cwd, env,
  953. startupinfo, creationflags, shell,
  954. p2cread, p2cwrite,
  955. c2pread, c2pwrite,
  956. errread, errwrite,
  957. unused_restore_signals, unused_start_new_session):
  958. """Execute program (MS Windows version)"""
  959. assert not pass_fds, "pass_fds not supported on Windows."
  960. if not isinstance(args, str):
  961. args = list2cmdline(args)
  962. # Process startup details
  963. if startupinfo is None:
  964. startupinfo = STARTUPINFO()
  965. if -1 not in (p2cread, c2pwrite, errwrite):
  966. startupinfo.dwFlags |= _winapi.STARTF_USESTDHANDLES
  967. startupinfo.hStdInput = p2cread
  968. startupinfo.hStdOutput = c2pwrite
  969. startupinfo.hStdError = errwrite
  970. if shell:
  971. startupinfo.dwFlags |= _winapi.STARTF_USESHOWWINDOW
  972. startupinfo.wShowWindow = _winapi.SW_HIDE
  973. comspec = os.environ.get("COMSPEC", "cmd.exe")
  974. args = '{} /c "{}"'.format (comspec, args)
  975. # Start the process
  976. try:
  977. hp, ht, pid, tid = _winapi.CreateProcess(executable, args,
  978. # no special security
  979. None, None,
  980. int(not close_fds),
  981. creationflags,
  982. env,
  983. cwd,
  984. startupinfo)
  985. finally:
  986. # Child is launched. Close the parent's copy of those pipe
  987. # handles that only the child should have open. You need
  988. # to make sure that no handles to the write end of the
  989. # output pipe are maintained in this process or else the
  990. # pipe will not close when the child process exits and the
  991. # ReadFile will hang.
  992. if p2cread != -1:
  993. p2cread.Close()
  994. if c2pwrite != -1:
  995. c2pwrite.Close()
  996. if errwrite != -1:
  997. errwrite.Close()
  998. if hasattr(self, '_devnull'):
  999. os.close(self._devnull)
  1000. # Retain the process handle, but close the thread handle
  1001. self._child_created = True
  1002. self._handle = Handle(hp)
  1003. self.pid = pid
  1004. _winapi.CloseHandle(ht)
  1005. def _internal_poll(self, _deadstate=None,
  1006. _WaitForSingleObject=_winapi.WaitForSingleObject,
  1007. _WAIT_OBJECT_0=_winapi.WAIT_OBJECT_0,
  1008. _GetExitCodeProcess=_winapi.GetExitCodeProcess):
  1009. """Check if child process has terminated. Returns returncode
  1010. attribute.
  1011. This method is called by __del__, so it can only refer to objects
  1012. in its local scope.
  1013. """
  1014. if self.returncode is None:
  1015. if _WaitForSingleObject(self._handle, 0) == _WAIT_OBJECT_0:
  1016. self.returncode = _GetExitCodeProcess(self._handle)
  1017. return self.returncode
  1018. def wait(self, timeout=None, endtime=None):
  1019. """Wait for child process to terminate. Returns returncode
  1020. attribute."""
  1021. if endtime is not None:
  1022. timeout = self._remaining_time(endtime)
  1023. if timeout is None:
  1024. timeout_millis = _winapi.INFINITE
  1025. else:
  1026. timeout_millis = int(timeout * 1000)
  1027. if self.returncode is None:
  1028. result = _winapi.WaitForSingleObject(self._handle,
  1029. timeout_millis)
  1030. if result == _winapi.WAIT_TIMEOUT:
  1031. raise TimeoutExpired(self.args, timeout)
  1032. self.returncode = _winapi.GetExitCodeProcess(self._handle)
  1033. return self.returncode
  1034. def _readerthread(self, fh, buffer):
  1035. buffer.append(fh.read())
  1036. fh.close()
  1037. def _communicate(self, input, endtime, orig_timeout):
  1038. # Start reader threads feeding into a list hanging off of this
  1039. # object, unless they've already been started.
  1040. if self.stdout and not hasattr(self, "_stdout_buff"):
  1041. self._stdout_buff = []
  1042. self.stdout_thread = \
  1043. threading.Thread(target=self._readerthread,
  1044. args=(self.stdout, self._stdout_buff))
  1045. self.stdout_thread.daemon = True
  1046. self.stdout_thread.start()
  1047. if self.stderr and not hasattr(self, "_stderr_buff"):
  1048. self._stderr_buff = []
  1049. self.stderr_thread = \
  1050. threading.Thread(target=self._readerthread,
  1051. args=(self.stderr, self._stderr_buff))
  1052. self.stderr_thread.daemon = True
  1053. self.stderr_thread.start()
  1054. if self.stdin:
  1055. self._stdin_write(input)
  1056. # Wait for the reader threads, or time out. If we time out, the
  1057. # threads remain reading and the fds left open in case the user
  1058. # calls communicate again.
  1059. if self.stdout is not None:
  1060. self.stdout_thread.join(self._remaining_time(endtime))
  1061. if self.stdout_thread.is_alive():
  1062. raise TimeoutExpired(self.args, orig_timeout)
  1063. if self.stderr is not None:
  1064. self.stderr_thread.join(self._remaining_time(endtime))
  1065. if self.stderr_thread.is_alive():
  1066. raise TimeoutExpired(self.args, orig_timeout)
  1067. # Collect the output from and close both pipes, now that we know
  1068. # both have been read successfully.
  1069. stdout = None
  1070. stderr = None
  1071. if self.stdout:
  1072. stdout = self._stdout_buff
  1073. self.stdout.close()
  1074. if self.stderr:
  1075. stderr = self._stderr_buff
  1076. self.stderr.close()
  1077. # All data exchanged. Translate lists into strings.
  1078. if stdout is not None:
  1079. stdout = stdout[0]
  1080. if stderr is not None:
  1081. stderr = stderr[0]
  1082. return (stdout, stderr)
  1083. def send_signal(self, sig):
  1084. """Send a signal to the process."""
  1085. # Don't signal a process that we know has already died.
  1086. if self.returncode is not None:
  1087. return
  1088. if sig == signal.SIGTERM:
  1089. self.terminate()
  1090. elif sig == signal.CTRL_C_EVENT:
  1091. os.kill(self.pid, signal.CTRL_C_EVENT)
  1092. elif sig == signal.CTRL_BREAK_EVENT:
  1093. os.kill(self.pid, signal.CTRL_BREAK_EVENT)
  1094. else:
  1095. raise ValueError("Unsupported signal: {}".format(sig))
  1096. def terminate(self):
  1097. """Terminates the process."""
  1098. # Don't terminate a process that we know has already died.
  1099. if self.returncode is not None:
  1100. return
  1101. try:
  1102. _winapi.TerminateProcess(self._handle, 1)
  1103. except PermissionError:
  1104. # ERROR_ACCESS_DENIED (winerror 5) is received when the
  1105. # process already died.
  1106. rc = _winapi.GetExitCodeProcess(self._handle)
  1107. if rc == _winapi.STILL_ACTIVE:
  1108. raise
  1109. self.returncode = rc
  1110. kill = terminate
  1111. else:
  1112. #
  1113. # POSIX methods
  1114. #
  1115. def _get_handles(self, stdin, stdout, stderr):
  1116. """Construct and return tuple with IO objects:
  1117. p2cread, p2cwrite, c2pread, c2pwrite, errread, errwrite
  1118. """
  1119. p2cread, p2cwrite = -1, -1
  1120. c2pread, c2pwrite = -1, -1
  1121. errread, errwrite = -1, -1
  1122. if stdin is None:
  1123. pass
  1124. elif stdin == PIPE:
  1125. p2cread, p2cwrite = os.pipe()
  1126. elif stdin == DEVNULL:
  1127. p2cread = self._get_devnull()
  1128. elif isinstance(stdin, int):
  1129. p2cread = stdin
  1130. else:
  1131. # Assuming file-like object
  1132. p2cread = stdin.fileno()
  1133. if stdout is None:
  1134. pass
  1135. elif stdout == PIPE:
  1136. c2pread, c2pwrite = os.pipe()
  1137. elif stdout == DEVNULL:
  1138. c2pwrite = self._get_devnull()
  1139. elif isinstance(stdout, int):
  1140. c2pwrite = stdout
  1141. else:
  1142. # Assuming file-like object
  1143. c2pwrite = stdout.fileno()
  1144. if stderr is None:
  1145. pass
  1146. elif stderr == PIPE:
  1147. errread, errwrite = os.pipe()
  1148. elif stderr == STDOUT:
  1149. if c2pwrite != -1:
  1150. errwrite = c2pwrite
  1151. else: # child's stdout is not set, use parent's stdout
  1152. errwrite = sys.__stdout__.fileno()
  1153. elif stderr == DEVNULL:
  1154. errwrite = self._get_devnull()
  1155. elif isinstance(stderr, int):
  1156. errwrite = stderr
  1157. else:
  1158. # Assuming file-like object
  1159. errwrite = stderr.fileno()
  1160. return (p2cread, p2cwrite,
  1161. c2pread, c2pwrite,
  1162. errread, errwrite)
  1163. def _execute_child(self, args, executable, preexec_fn, close_fds,
  1164. pass_fds, cwd, env,
  1165. startupinfo, creationflags, shell,
  1166. p2cread, p2cwrite,
  1167. c2pread, c2pwrite,
  1168. errread, errwrite,
  1169. restore_signals, start_new_session):
  1170. """Execute program (POSIX version)"""
  1171. if isinstance(args, (str, bytes)):
  1172. args = [args]
  1173. else:
  1174. args = list(args)
  1175. if shell:
  1176. args = ["/bin/sh", "-c"] + args
  1177. if executable:
  1178. args[0] = executable
  1179. if executable is None:
  1180. executable = args[0]
  1181. orig_executable = executable
  1182. # For transferring possible exec failure from child to parent.
  1183. # Data format: "exception name:hex errno:description"
  1184. # Pickle is not used; it is complex and involves memory allocation.
  1185. errpipe_read, errpipe_write = os.pipe()
  1186. # errpipe_write must not be in the standard io 0, 1, or 2 fd range.
  1187. low_fds_to_close = []
  1188. while errpipe_write < 3:
  1189. low_fds_to_close.append(errpipe_write)
  1190. errpipe_write = os.dup(errpipe_write)
  1191. for low_fd in low_fds_to_close:
  1192. os.close(low_fd)
  1193. try:
  1194. try:
  1195. # We must avoid complex work that could involve
  1196. # malloc or free in the child process to avoid
  1197. # potential deadlocks, thus we do all this here.
  1198. # and pass it to fork_exec()
  1199. if env is not None:
  1200. env_list = [os.fsencode(k) + b'=' + os.fsencode(v)
  1201. for k, v in env.items()]
  1202. else:
  1203. env_list = None # Use execv instead of execve.
  1204. executable = os.fsencode(executable)
  1205. if os.path.dirname(executable):
  1206. executable_list = (executable,)
  1207. else:
  1208. # This matches the behavior of os._execvpe().
  1209. executable_list = tuple(
  1210. os.path.join(os.fsencode(dir), executable)
  1211. for dir in os.get_exec_path(env))
  1212. fds_to_keep = set(pass_fds)
  1213. fds_to_keep.add(errpipe_write)
  1214. self.pid = _posixsubprocess.fork_exec(
  1215. args, executable_list,
  1216. close_fds, sorted(fds_to_keep), cwd, env_list,
  1217. p2cread, p2cwrite, c2pread, c2pwrite,
  1218. errread, errwrite,
  1219. errpipe_read, errpipe_write,
  1220. restore_signals, start_new_session, preexec_fn)
  1221. self._child_created = True
  1222. finally:
  1223. # be sure the FD is closed no matter what
  1224. os.close(errpipe_write)
  1225. # self._devnull is not always defined.
  1226. devnull_fd = getattr(self, '_devnull', None)
  1227. if p2cread != -1 and p2cwrite != -1 and p2cread != devnull_fd:
  1228. os.close(p2cread)
  1229. if c2pwrite != -1 and c2pread != -1 and c2pwrite != devnull_fd:
  1230. os.close(c2pwrite)
  1231. if errwrite != -1 and errread != -1 and errwrite != devnull_fd:
  1232. os.close(errwrite)
  1233. if devnull_fd is not None:
  1234. os.close(devnull_fd)
  1235. # Prevent a double close of these fds from __init__ on error.
  1236. self._closed_child_pipe_fds = True
  1237. # Wait for exec to fail or succeed; possibly raising an
  1238. # exception (limited in size)
  1239. errpipe_data = bytearray()
  1240. while True:
  1241. part = os.read(errpipe_read, 50000)
  1242. errpipe_data += part
  1243. if not part or len(errpipe_data) > 50000:
  1244. break
  1245. finally:
  1246. # be sure the FD is closed no matter what
  1247. os.close(errpipe_read)
  1248. if errpipe_data:
  1249. try:
  1250. os.waitpid(self.pid, 0)
  1251. except ChildProcessError:
  1252. pass
  1253. try:
  1254. exception_name, hex_errno, err_msg = (
  1255. errpipe_data.split(b':', 2))
  1256. except ValueError:
  1257. exception_name = b'SubprocessError'
  1258. hex_errno = b'0'
  1259. err_msg = (b'Bad exception data from child: ' +
  1260. repr(errpipe_data))
  1261. child_exception_type = getattr(
  1262. builtins, exception_name.decode('ascii'),
  1263. SubprocessError)
  1264. err_msg = err_msg.decode(errors="surrogatepass")
  1265. if issubclass(child_exception_type, OSError) and hex_errno:
  1266. errno_num = int(hex_errno, 16)
  1267. child_exec_never_called = (err_msg == "noexec")
  1268. if child_exec_never_called:
  1269. err_msg = ""
  1270. if errno_num != 0:
  1271. err_msg = os.strerror(errno_num)
  1272. if errno_num == errno.ENOENT:
  1273. if child_exec_never_called:
  1274. # The error must be from chdir(cwd).
  1275. err_msg += ': ' + repr(cwd)
  1276. else:
  1277. err_msg += ': ' + repr(orig_executable)
  1278. raise child_exception_type(errno_num, err_msg)
  1279. raise child_exception_type(err_msg)
  1280. def _handle_exitstatus(self, sts, _WIFSIGNALED=os.WIFSIGNALED,
  1281. _WTERMSIG=os.WTERMSIG, _WIFEXITED=os.WIFEXITED,
  1282. _WEXITSTATUS=os.WEXITSTATUS):
  1283. """All callers to this function MUST hold self._waitpid_lock."""
  1284. # This method is called (indirectly) by __del__, so it cannot
  1285. # refer to anything outside of its local scope.
  1286. if _WIFSIGNALED(sts):
  1287. self.returncode = -_WTERMSIG(sts)
  1288. elif _WIFEXITED(sts):
  1289. self.returncode = _WEXITSTATUS(sts)
  1290. else:
  1291. # Should never happen
  1292. raise SubprocessError("Unknown child exit status!")
  1293. def _internal_poll(self, _deadstate=None, _waitpid=os.waitpid,
  1294. _WNOHANG=os.WNOHANG, _ECHILD=errno.ECHILD):
  1295. """Check if child process has terminated. Returns returncode
  1296. attribute.
  1297. This method is called by __del__, so it cannot reference anything
  1298. outside of the local scope (nor can any methods it calls).
  1299. """
  1300. if self.returncode is None:
  1301. if not self._waitpid_lock.acquire(False):
  1302. # Something else is busy calling waitpid. Don't allow two
  1303. # at once. We know nothing yet.
  1304. return None
  1305. try:
  1306. if self.returncode is not None:
  1307. return self.returncode # Another thread waited.
  1308. pid, sts = _waitpid(self.pid, _WNOHANG)
  1309. if pid == self.pid:
  1310. self._handle_exitstatus(sts)
  1311. except OSError as e:
  1312. if _deadstate is not None:
  1313. self.returncode = _deadstate
  1314. elif e.errno == _ECHILD:
  1315. # This happens if SIGCLD is set to be ignored or
  1316. # waiting for child processes has otherwise been
  1317. # disabled for our process. This child is dead, we
  1318. # can't get the status.
  1319. # http://bugs.python.org/issue15756
  1320. self.returncode = 0
  1321. finally:
  1322. self._waitpid_lock.release()
  1323. return self.returncode
  1324. def _try_wait(self, wait_flags):
  1325. """All callers to this function MUST hold self._waitpid_lock."""
  1326. try:
  1327. (pid, sts) = os.waitpid(self.pid, wait_flags)
  1328. except ChildProcessError:
  1329. # This happens if SIGCLD is set to be ignored or waiting
  1330. # for child processes has otherwise been disabled for our
  1331. # process. This child is dead, we can't get the status.
  1332. pid = self.pid
  1333. sts = 0
  1334. return (pid, sts)
  1335. def wait(self, timeout=None, endtime=None):
  1336. """Wait for child process to terminate. Returns returncode
  1337. attribute."""
  1338. if self.returncode is not None:
  1339. return self.returncode
  1340. # endtime is preferred to timeout. timeout is only used for
  1341. # printing.
  1342. if endtime is not None or timeout is not None:
  1343. if endtime is None:
  1344. endtime = _time() + timeout
  1345. elif timeout is None:
  1346. timeout = self._remaining_time(endtime)
  1347. if endtime is not None:
  1348. # Enter a busy loop if we have a timeout. This busy loop was
  1349. # cribbed from Lib/threading.py in Thread.wait() at r71065.
  1350. delay = 0.0005 # 500 us -> initial delay of 1 ms
  1351. while True:
  1352. if self._waitpid_lock.acquire(False):
  1353. try:
  1354. if self.returncode is not None:
  1355. break # Another thread waited.
  1356. (pid, sts) = self._try_wait(os.WNOHANG)
  1357. assert pid == self.pid or pid == 0
  1358. if pid == self.pid:
  1359. self._handle_exitstatus(sts)
  1360. break
  1361. finally:
  1362. self._waitpid_lock.release()
  1363. remaining = self._remaining_time(endtime)
  1364. if remaining <= 0:
  1365. raise TimeoutExpired(self.args, timeout)
  1366. delay = min(delay * 2, remaining, .05)
  1367. time.sleep(delay)
  1368. else:
  1369. while self.returncode is None:
  1370. with self._waitpid_lock:
  1371. if self.returncode is not None:
  1372. break # Another thread waited.
  1373. (pid, sts) = self._try_wait(0)
  1374. # Check the pid and loop as waitpid has been known to
  1375. # return 0 even without WNOHANG in odd situations.
  1376. # http://bugs.python.org/issue14396.
  1377. if pid == self.pid:
  1378. self._handle_exitstatus(sts)
  1379. return self.returncode
  1380. def _communicate(self, input, endtime, orig_timeout):
  1381. if self.stdin and not self._communication_started:
  1382. # Flush stdio buffer. This might block, if the user has
  1383. # been writing to .stdin in an uncontrolled fashion.
  1384. try:
  1385. self.stdin.flush()
  1386. except BrokenPipeError:
  1387. pass # communicate() must ignore BrokenPipeError.
  1388. if not input:
  1389. try:
  1390. self.stdin.close()
  1391. except BrokenPipeError:
  1392. pass # communicate() must ignore BrokenPipeError.
  1393. stdout = None
  1394. stderr = None
  1395. # Only create this mapping if we haven't already.
  1396. if not self._communication_started:
  1397. self._fileobj2output = {}
  1398. if self.stdout:
  1399. self._fileobj2output[self.stdout] = []
  1400. if self.stderr:
  1401. self._fileobj2output[self.stderr] = []
  1402. if self.stdout:
  1403. stdout = self._fileobj2output[self.stdout]
  1404. if self.stderr:
  1405. stderr = self._fileobj2output[self.stderr]
  1406. self._save_input(input)
  1407. if self._input:
  1408. input_view = memoryview(self._input)
  1409. with _PopenSelector() as selector:
  1410. if self.stdin and input:
  1411. selector.register(self.stdin, selectors.EVENT_WRITE)
  1412. if self.stdout:
  1413. selector.register(self.stdout, selectors.EVENT_READ)
  1414. if self.stderr:
  1415. selector.register(self.stderr, selectors.EVENT_READ)
  1416. while selector.get_map():
  1417. timeout = self._remaining_time(endtime)
  1418. if timeout is not None and timeout < 0:
  1419. raise TimeoutExpired(self.args, orig_timeout)
  1420. ready = selector.select(timeout)
  1421. self._check_timeout(endtime, orig_timeout)
  1422. # XXX Rewrite these to use non-blocking I/O on the file
  1423. # objects; they are no longer using C stdio!
  1424. for key, events in ready:
  1425. if key.fileobj is self.stdin:
  1426. chunk = input_view[self._input_offset :
  1427. self._input_offset + _PIPE_BUF]
  1428. try:
  1429. self._input_offset += os.write(key.fd, chunk)
  1430. except BrokenPipeError:
  1431. selector.unregister(key.fileobj)
  1432. key.fileobj.close()
  1433. else:
  1434. if self._input_offset >= len(self._input):
  1435. selector.unregister(key.fileobj)
  1436. key.fileobj.close()
  1437. elif key.fileobj in (self.stdout, self.stderr):
  1438. data = os.read(key.fd, 32768)
  1439. if not data:
  1440. selector.unregister(key.fileobj)
  1441. key.fileobj.close()
  1442. self._fileobj2output[key.fileobj].append(data)
  1443. self.wait(timeout=self._remaining_time(endtime))
  1444. # All data exchanged. Translate lists into strings.
  1445. if stdout is not None:
  1446. stdout = b''.join(stdout)
  1447. if stderr is not None:
  1448. stderr = b''.join(stderr)
  1449. # Translate newlines, if requested.
  1450. # This also turns bytes into strings.
  1451. if self.universal_newlines:
  1452. if stdout is not None:
  1453. stdout = self._translate_newlines(stdout,
  1454. self.stdout.encoding)
  1455. if stderr is not None:
  1456. stderr = self._translate_newlines(stderr,
  1457. self.stderr.encoding)
  1458. return (stdout, stderr)
  1459. def _save_input(self, input):
  1460. # This method is called from the _communicate_with_*() methods
  1461. # so that if we time out while communicating, we can continue
  1462. # sending input if we retry.
  1463. if self.stdin and self._input is None:
  1464. self._input_offset = 0
  1465. self._input = input
  1466. if self.universal_newlines and input is not None:
  1467. self._input = self._input.encode(self.stdin.encoding)
  1468. def send_signal(self, sig):
  1469. """Send a signal to the process."""
  1470. # Skip signalling a process that we know has already died.
  1471. if self.returncode is None:
  1472. os.kill(self.pid, sig)
  1473. def terminate(self):
  1474. """Terminate the process with SIGTERM
  1475. """
  1476. self.send_signal(signal.SIGTERM)
  1477. def kill(self):
  1478. """Kill the process with SIGKILL
  1479. """
  1480. self.send_signal(signal.SIGKILL)