Python CGI 脚本 IOError Broken Pipe

Posted

技术标签:

【中文标题】Python CGI 脚本 IOError Broken Pipe【英文标题】:Python CGI script IOError Broken Pipe 【发布时间】:2009-11-25 16:51:18 【问题描述】:

我有一个旧的基于 Python 的 Web 表单,我正在更新它以使用 GPG 进行加密,而不是不再支持的 Python 包。当通过命令行调用脚本时,它工作得很好,但通过网络浏览器和 CGI​​ 出现错误:IOError: [Errno 32] Broken pipe。如果我使用 gnupg 包或尝试通过子进程直接与 gpg 对话,则会发生此错误。

版本:

Python 2.4.1 
gnupg 0.2.2 (python GPG wrapper)
Apache/2.2.9 
gpg 1.4.9

这是一个简化的脚本:

#!/usr/bin/python 

import sys
# send python tracebacks out to the web browser
sys.stderr = sys.stdout
import gnupg
gpg = gnupg.GPG()
gpgkey = 'np'
message = 'Our secret message!'
print "Content-type: text/html\r\n"
print '''<html><head><title>Test GPG access via cgi</title>
          </head><body><pre>'''
print 'message in the clear:'
print message
encrypted = str(gpg.encrypt(message, 'np'))
print 'message encrypted:' 
print encrypted
print '''</pre></body></html>'''sf

通过命令行调用上述脚本时,运行正常,但通过 CGI 调用时,会产生以下错误:

message in the clear:
Our secret message!
Traceback (most recent call last):
  File "/home/dkmaster/www/nickads/secure-cgi/gpgtest.py", line 23, in 
    encrypted = str(gpg.encrypt(message, 'np'))
  File "/home/dkmaster/www/nickads/secure-cgi/gnupg.py", line 517, in encrypt
    return self.encrypt_file(StringIO(data), recipients, **kwargs)
  File "/home/dkmaster/www/nickads/secure-cgi/gnupg.py", line 467, in encrypt_file
    self._handle_io(args, file, result, passphrase=passphrase)
  File "/home/dkmaster/www/nickads/secure-cgi/gnupg.py", line 201, in _handle_io
    _copy_data(file, stdin)
  File "/home/dkmaster/www/nickads/secure-cgi/gnupg.py", line 75, in _copy_data
    outstream.write(data)
IOError: [Errno 32] Broken pipe

我还尝试通过子进程而不是 gnupg 模块直接与 GPG 对话。

#!/usr/bin/python

import sys
import subprocess
sys.stderr = sys.stdout
print "Content-type: text/html\r\n"
print '''<html><head><title>Test subprocess via cgi</title>
           </head><body><pre>'''

plain_text = 'the quick fox ' * 10
print plain_text
gpgCommand = "/usr/bin/gpg --quiet -a -e -r 'np' "
gpgProcess = subprocess.Popen(
                      gpgCommand,
                      stdin=subprocess.PIPE, 
                      stdout=subprocess.PIPE, 
                      stderr=subprocess.PIPE, 
                      shell=True
                      )
encrypted_text = gpgProcess.communicate(plain_text)[0]
print encrypted_text

同样,这在命令行中可以正常工作,但不能通过 CGI 生成类似错误:

Traceback (most recent call last):
  File "/home/dkmaster/www/nickads/secure-cgi/subprocesstest.py", line 20, in 
    encrypted_text = gpgProcess.communicate(plain_text)[0]
  File "/usr/lib/python2.5/subprocess.py", line 670, in communicate
    return self._communicate(input)
  File "/usr/lib/python2.5/subprocess.py", line 1220, in _communicate
    bytes_written = self._write_no_intr(self.stdin.fileno(), buffer(input, input_offset, 512))
  File "/usr/lib/python2.5/subprocess.py", line 999, in _write_no_intr
    return os.write(fd, s)
OSError: [Errno 32] Broken pipe

那么如何修复 CGI 中的管道?

【问题讨论】:

【参考方案1】:

我知道我的答案可能来得太晚了,但我最近遇到了同样的问题,我想我可以解决它。

无论标准输出是否被重定向,GPG 似乎都会向终端输出一些内容(“您需要密码”) - 不要问我如何:)

但是,Broken Pipe 的出现似乎是因为 gpg 无法在 cgi 环境中输出这些消息(在 uwsgi 中发生在我身上)。如果通过了--quiet,它甚至会打印出来。如果你另外传递--batch,它似乎真的很安静。

【讨论】:

【参考方案2】:

好问题 - 我不确定这是 python-gnupg 问题还是 gpg 问题。 subprocesscgi 或两者之间的某些交互可能存在问题。如果您使用从标准输入读取并将输出写入文件的非常小的脚本尝试此操作,会发生什么?这行得通吗?

还值得启用日志记录以查看抛出的内容(如果有的话)。有关如何执行此操作的示例,请参阅 test_gnupg.py 脚本。

【讨论】:

以上是关于Python CGI 脚本 IOError Broken Pipe的主要内容,如果未能解决你的问题,请参考以下文章

在 python scraper 脚本中解析 facebook mobile 时出现 lxml 错误“IOError:读取文件时出错”

Python ----脚本CGI特点应用开发环境

Python ----脚本CGI特点应用开发环境

Python ----脚本CGI特点应用开发环境

python [用于测试apache的python CGI脚本正在工作] #cgi #python #apache

在其他位置从 cgi-bin 运行 python 脚本