[Python-bugs-list] [ python-Bugs-510910 ] File inheritance across exec/spawn
noreply@sourceforge.net
noreply@sourceforge.net
Wed, 30 Jan 2002 13:26:35 -0800
Bugs item #510910, was opened at 2002-01-30 13:26
You can respond by visiting:
http://sourceforge.net/tracker/?func=detail&atid=105470&aid=510910&group_id=5470
Category: Python Library
Group: None
Status: Open
Resolution: None
Priority: 5
Submitted By: Tim Peters (tim_one)
Assigned to: Nobody/Anonymous (nobody)
Summary: File inheritance across exec/spawn
Initial Comment:
For 2.3, I added a new tempfile.TemporaryFile
implementation for Windows that (among other good
things) arranges that spawned processes will no longer
inherit the temp files' underlying open file
descriptors. There are multiple reasons for doing so
on Windows, and one that's "an issue" across all
platforms is security.
Temp files may (will, AFAICT) still get inherited on
other platforms. And inheriting open files of other
kinds may still be an issue on all platforms.
Guido sez (from email):
"""
This is exactly what happens on Unix, I'm afraid. Is
there a way around that? Across fork(), I think it's
fair (might be intentional). Across exec(), I think
there's no point. We should use fcntl() with F_SETFD
to set the FD_CLOEXEC bit.
"""
There is no fork on Windows, so life is simpler there;
OTOH, there's no FD_CLOEXEC bit on Windows either, so
life is harder there if we want to extend this to
other files. I'm inclined to think we should stick to
setting policy only for temp files; *we* create them,
and the user has no control over how we create them.
For files the user opens themself, they can get at
FD_CLOEXEC (on platforms supporting it) from Python.
They can also get at O_NOINHERIT on Windows in 2.3
(when using os.open()).
----------------------------------------------------------------------
You can respond by visiting:
http://sourceforge.net/tracker/?func=detail&atid=105470&aid=510910&group_id=5470