What difference between subprocess.call() and subprocess.Popen() makes PIPE less secure for the former?(subprocess.call() 和 subprocess.Popen() 之间有什么区别使 PIPE 对前者的安全性降低?)
问题描述
我已经查看了他们两个的文档.
JF 在这里的评论提示了这个问题:
不管你的 Python 版本是什么——管道缓冲区(看图片)在你的 Python 进程之外.Python 3 不使用 C stdio,但它只影响内部缓冲.当内部缓冲区被刷新时,数据进入管道.如果 command2
(你的父 Python 程序)没有从管道中读取,那么 command1
(子进程,例如,由 call()
启动)将管道缓冲区满后立即挂起 (pipe_size = fcntl(p.stdout, F_GETPIPE_SZ)
~65K 在我的 Linux 机器上(最大值是 /proc/sys/fs/pipe-max-size
~1M)).
如果您稍后从管道中读取,您可以使用 stdout=PIPE
,例如,使用 Popen.communicate()
方法.您也可以直接从process.stdout
(代表管道的文件对象)读取.
I've had a look at the documentation for both of them.
This question is prompted by J.F.'s comment here: Retrieving the output of subprocess.call()
The current Python documentation for subprocess.call()
says the following about using PIPE
for subprocess.call()
:
Note Do not use
stdout=PIPE
orstderr=PIPE
with this function. The child process will block if it generates enough output to a pipe to fill up the OS pipe buffer as the pipes are not being read from.
Python 2.7 subprocess.call()
:
Note Do not use
stdout=PIPE
orstderr=PIPE
with this function as that can deadlock based on the child process output volume. Use Popen with the communicate() method when you need pipes.
Python 2.6 includes no such warnings.
Also, the subprocess.call()
and subprocess.check_call()
don't seem to have a way to access their output, except for using stdout=PIPE with communicate():
https://docs.python.org/2.6/library/subprocess.html#convenience-functions
Note that if you want to send data to the process’s
stdin
, you need to create thePopen
object withstdin=PIPE
. Similarly, to get anything other than None in the result tuple, you need to givestdout=PIPE
and/orstderr=PIPE
too.
https://docs.python.org/2.6/library/subprocess.html#subprocess.Popen.communicate
What difference between subprocess.call()
and subprocess.Popen()
makes PIPE
less secure for subprocess.call()
?
More Specific: Why does subprocess.call()
"deadlock based on the child process output volume.", and not Popen()
?
call()
is just Popen().wait()
(± error handling).
You should not use stdout=PIPE
with call()
because it does not read from the pipe and therefore the child process will hang as soon as it fills the corresponding OS pipe buffer. Here's a picture that shows how data flows in command1 | command2
shell pipeline:
It does not matter what your Python version is -- the pipe buffer (look at the picture) is outside of your Python process. Python 3 does not use C stdio but it affects only the internal buffering. When the internal buffer is flushed the data goes into the pipe. If command2
(your parent Python program) does not read from the pipe then command1
(the child process e.g., started by call()
) will hang as soon as the pipe buffer is full (pipe_size = fcntl(p.stdout, F_GETPIPE_SZ)
~65K on my Linux box (max value is /proc/sys/fs/pipe-max-size
~1M)).
You may use stdout=PIPE
if you read from the pipe later e.g., using Popen.communicate()
method. You could also read from process.stdout
(the file object that represents the pipe) directly.
这篇关于subprocess.call() 和 subprocess.Popen() 之间有什么区别使 PIPE 对前者的安全性降低?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:subprocess.call() 和 subprocess.Popen() 之间有什么区别使 PIPE 对前者的安全性降低?


基础教程推荐
- 使用PyInstaller后在Windows中打开可执行文件时出错 2022-01-01
- 线程时出现 msgbox 错误,GUI 块 2022-01-01
- 在 Python 中,如果我在一个“with"中返回.块,文件还会关闭吗? 2022-01-01
- 何时使用 os.name、sys.platform 或 platform.system? 2022-01-01
- Python kivy 入口点 inflateRest2 无法定位 libpng16-16.dll 2022-01-01
- 筛选NumPy数组 2022-01-01
- Dask.array.套用_沿_轴:由于额外的元素([1]),使用dask.array的每一行作为另一个函数的输入失败 2022-01-01
- 用于分类数据的跳跃记号标签 2022-01-01
- 如何在海运重新绘制中自定义标题和y标签 2022-01-01
- 如何让 python 脚本监听来自另一个脚本的输入 2022-01-01