diff options
author | Andrew M. Kuchling <amk@amk.ca> | 2003-05-13 14:16:18 (GMT) |
---|---|---|
committer | Andrew M. Kuchling <amk@amk.ca> | 2003-05-13 14:16:18 (GMT) |
commit | eabd9a1314e8721e6046ceb57856de1211a1c9c8 (patch) | |
tree | c1683351eba05e44b2ebf1f30f5776b59d6c18d6 /Doc | |
parent | 032bd0a9a89cd17e33f9db724126a3b434315d03 (diff) | |
download | cpython-eabd9a1314e8721e6046ceb57856de1211a1c9c8.zip cpython-eabd9a1314e8721e6046ceb57856de1211a1c9c8.tar.gz cpython-eabd9a1314e8721e6046ceb57856de1211a1c9c8.tar.bz2 |
[Bug #729817] Document the rexec and Bastion modules as dead
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/lib/libbastion.tex | 5 | ||||
-rw-r--r-- | Doc/lib/librestricted.tex | 26 | ||||
-rw-r--r-- | Doc/lib/librexec.tex | 5 |
3 files changed, 17 insertions, 19 deletions
diff --git a/Doc/lib/libbastion.tex b/Doc/lib/libbastion.tex index 7a4f932..9f45c47 100644 --- a/Doc/lib/libbastion.tex +++ b/Doc/lib/libbastion.tex @@ -4,7 +4,12 @@ \declaremodule{standard}{Bastion} \modulesynopsis{Providing restricted access to objects.} \moduleauthor{Barry Warsaw}{bwarsaw@python.org} +\versionchanged[Disabled module]{2.3} +\begin{notice}[warning] + The documentation has been left in place to help in reading old code + that uses the module. +\end{notice} % I'm concerned that the word 'bastion' won't be understood by people % for whom English is a second language, making the module name diff --git a/Doc/lib/librestricted.tex b/Doc/lib/librestricted.tex index 20c76e5..5d4b157 100644 --- a/Doc/lib/librestricted.tex +++ b/Doc/lib/librestricted.tex @@ -1,22 +1,14 @@ \chapter{Restricted Execution \label{restricted}} -In general, Python programs have complete access to the underlying -operating system throug the various functions and classes, For -example, a Python program can open any file for reading and writing by -using the \function{open()} built-in function (provided the underlying -operating system gives you permission!). This is exactly what you want -for most applications. - -There exists a class of applications for which this ``openness'' is -inappropriate. Take Grail: a Web browser that accepts ``applets,'' -snippets of Python code, from anywhere on the Internet for execution -on the local system. This can be used to improve the user interface -of forms, for instance. Since the originator of the code is unknown, -it is obvious that it cannot be trusted with the full resources of the -local machine. +\begin{notice}[warning] + In Python 2.3 these modules have been disabled due to various known + and not readily fixable security holes. The modules are still + documented here to help in reading old code that uses the + \module{rexec} and \module{Bastion} modules. +\end{notice} \emph{Restricted execution} is the basic framework in Python that allows -for the segregation of trusted and untrusted code. It is based on the +for the segregation of trusted and untrusted code. The framework is based on the notion that trusted Python code (a \emph{supervisor}) can create a ``padded cell' (or environment) with limited permissions, and run the untrusted code within this cell. The untrusted code cannot break out @@ -66,10 +58,6 @@ environments: \localmoduletable \begin{seealso} - \seetitle[http://www.python.org/doc/howto/rexec/] - {Restricted Execution HOWTO} - {Andrew Kuchling's tutorial on the use of the restricted - execution facilities in Python.} \seetitle[http://grail.sourceforge.net/]{Grail Home Page} {Grail, an Internet browser written in Python, uses these modules to support Python applets. More diff --git a/Doc/lib/librexec.tex b/Doc/lib/librexec.tex index 71ae9a3..a456864 100644 --- a/Doc/lib/librexec.tex +++ b/Doc/lib/librexec.tex @@ -3,7 +3,12 @@ \declaremodule{standard}{rexec} \modulesynopsis{Basic restricted execution framework.} +\versionchanged[Disabled module]{2.3} +\begin{notice}[warning] + The documentation has been left in place to help in reading old code + that uses the module. +\end{notice} This module contains the \class{RExec} class, which supports \method{r_eval()}, \method{r_execfile()}, \method{r_exec()}, and |