python安全管理子进程-subprocess

经常会用到python去调用外部 工具或者命令去干活

有的时候子进程并不按预期退出

比如,子进程由于某种原因挂在那里,

这时候也许,我们有这样一种需求:需要父进程对子进程有监控动作,即,超过一定的时间,就不再等待子进程自己退出,而是去kill子进程,回收资源


以下会列出几张实现方法

1.os.system

http://docs.python.org/library/os.html

Python代码   收藏代码
  1. Python 2.5.2 (r252:60911, Jan  4 200917:40:26)  
  2. [GCC 4.3.2] on linux2  
  3. Type "help""copyright""credits" or "license" for more information.  
  4. >>> import os  
  5. >>> os.system("date")  
  6. Wed Jun 10 19:34:23 CST 2009  
  7. 0  
  8. >>>  
Python 2.5.2 (r252:60911, Jan  4 2009, 17:40:26)
[GCC 4.3.2] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> import os
>>> os.system("date")
Wed Jun 10 19:34:23 CST 2009
0
>>>



其实是执行 linux shell 命令

Shell代码   收藏代码
  1. $ date  
  2. Wed Jun 10 19:36:02 CST 2009  
$ date
Wed Jun 10 19:36:02 CST 2009



缺点:
A. os.system() 是新起一个shell去干活的,对系统的开销比较大
B. 获得输出等信息比较麻烦,不能与外部命令或工具交互
C. 无法控制,(如果调用的外部命令,挂死或者执行时间很长),主进程无法控制os.system(), 因为调用os.system(cmd) 调用进程会block, until os.system() 自己退出

2.commands
[url]
http://docs.python.org/library/commands.html[/url]

Python代码   收藏代码
  1. tommy@lab3:~$ python  
  2. Python 2.5.2 (r252:60911, Jan  4 200917:40:26)  
  3. [GCC 4.3.2] on linux2  
  4. Type "help""copyright""credits" or "license" for more information.  
  5. >>> import commands  
  6. >>> dir(commands)  
  7. ['__all__''__builtins__''__doc__''__file__''__name__''getoutput''getstatus''getstatusoutput''mk2arg''mkarg']  
  8. >>> commands.getoutput("date")  
  9. 'Wed Jun 10 19:39:57 CST 2009'  
  10. >>>  
  11. >>> commands.getstatusoutput("date")  
  12. (0'Wed Jun 10 19:40:41 CST 2009')  
tommy@lab3:~$ python
Python 2.5.2 (r252:60911, Jan  4 2009, 17:40:26)
[GCC 4.3.2] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> import commands
>>> dir(commands)
['__all__', '__builtins__', '__doc__', '__file__', '__name__', 'getoutput', 'getstatus', 'getstatusoutput', 'mk2arg', 'mkarg']
>>> commands.getoutput("date")
'Wed Jun 10 19:39:57 CST 2009'
>>>
>>> commands.getstatusoutput("date")
(0, 'Wed Jun 10 19:40:41 CST 2009')



优点:
A. 容易获得外部命令的输出,已经退出状态
缺点:
同os.system()中的B,C

3.subprocess

http://docs.python.org/library/subprocess.html

Python代码   收藏代码
  1. tommy@lab3:~$ python  
  2. Python 2.5.2 (r252:60911, Jan  4 200917:40:26)  
  3. [GCC 4.3.2] on linux2  
  4. Type "help""copyright""credits" or "license" for more information.  
  5. >>> import subprocess  
  6. >>> dir(subprocess)  
  7. ['CalledProcessError''MAXFD''PIPE''Popen''STDOUT''__all__''__builtins__''__doc__''__file__''__name__''_active''_cleanup''_demo_posix''_demo_windows''call''check_call''errno''fcntl''gc''list2cmdline''mswindows''os''pickle''select''signal''sys''traceback''types']  
  8. >>> Popen = subprocess.Popen(["date"])  
  9. Wed Jun 10 19:48:41 CST 2009  
  10. >>> Popen.pid  
  11. 24723  
  12. >>>  
tommy@lab3:~$ python
Python 2.5.2 (r252:60911, Jan  4 2009, 17:40:26)
[GCC 4.3.2] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> import subprocess
>>> dir(subprocess)
['CalledProcessError', 'MAXFD', 'PIPE', 'Popen', 'STDOUT', '__all__', '__builtins__', '__doc__', '__file__', '__name__', '_active', '_cleanup', '_demo_posix', '_demo_windows', 'call', 'check_call', 'errno', 'fcntl', 'gc', 'list2cmdline', 'mswindows', 'os', 'pickle', 'select', 'signal', 'sys', 'traceback', 'types']
>>> Popen = subprocess.Popen(["date"])
Wed Jun 10 19:48:41 CST 2009
>>> Popen.pid
24723
>>>



优点:
看文档吧,可以支持和子进程交互等等

虽然 python2.6中的subprocess模块增加了
kill()
terminate()
来控制子进程退出

但是在实际的使用过程中会发现

如果子进程并不是自己退出,而是调用 kill()/terminate() 给子进程发信退出

通过 top 或者 ps -A 看到,子进程的确是释放资源了,但是却变成了 zombie(僵尸进程)

于是分析 subprocess.py模块

Python代码   收藏代码
  1. 1201  
  2. 1202         def send_signal(self, sig):  
  3. 1203             """Send a signal to the process 
  4. 1204             """  
  5. 1205             os.kill(self.pid, sig)  
  6. 1206  
  7. 1207         def terminate(self):  
  8. 1208             """Terminate the process with SIGTERM 
  9. 1209             """  
  10. 1210             self.send_signal(signal.SIGTERM)  
  11. 1211  
  12. 1212         def kill(self):  
  13. 1213             """Kill the process with SIGKILL 
  14. 1214             """  
  15. 1215             self.send_signal(signal.SIGKILL)  
1201
1202         def send_signal(self, sig):
1203             """Send a signal to the process
1204             """
1205             os.kill(self.pid, sig)
1206
1207         def terminate(self):
1208             """Terminate the process with SIGTERM
1209             """
1210             self.send_signal(signal.SIGTERM)
1211
1212         def kill(self):
1213             """Kill the process with SIGKILL
1214             """
1215             self.send_signal(signal.SIGKILL)



程序仅仅是 调用 os.kill(self.pid, sig) 向子进程发送了一个信号后,标准subprocess.py库 父进程并没有显示区 wait() 子进程,导致了 zombie(僵尸进程) 的生成

所以问题找到,

修改subprocess.py模块,显然不妥,
那就封装一下(继承subprocess),

我是用这个subprocess去调用mencoder 做批量转码,所以为子进程超时,要有很好控制,

具体实现见附件

显示的封装成两个函数

1.
shell_2_tty(_cmd=cmds, _cwd=None, _timeout=10*60)
# _cmd 是要执行的外面命令行,要是一个 list, 如果是str,shell=True,会启动一个新的shell去干活的,这样,不利于进程的控制
# _cwd 是执行这个命令行前,cd到这个路径下面,这个,对我的用应很重要,如果不需要可以用默认值
# _timeout 这个是主角,设置超时时间(秒单位),从真重执行命令行开始计时,墙上时间超过 _timeout后,父进程会kill掉子进程,回收资源,并避免产生 zombie(僵尸进程)
# 并将调用的命令行输出,直接输出到stdout,即是屏幕的终端上,
(如果对输出比较讨厌,可以将 stdout = open("/dev/null", "w"), stderr=open("/dev/null"),等等)

2.
shell_2_tempfile(_cmd=cmds, _cwd=None, _timeout=10)
类同1,主要是增加,对命令行的输出,捕获,并返回给父进程,留作分析

 

------------------------

 

  • 0
    点赞
  • 3
    收藏
    觉得还不错? 一键收藏
  • 1
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值