blob: 3cb07b2da3ddadf53605b5cd8168c9b5d4158a94 [file] [log] [blame]
Fred Drake295da241998-08-10 19:42:37 +00001\section{\module{cgi} ---
2 Common Gateway Interface support.}
Fred Drakeb91e9341998-07-23 17:59:49 +00003\declaremodule{standard}{cgi}
4
Fred Drake295da241998-08-10 19:42:37 +00005\modulesynopsis{Common Gateway Interface support, used to interpret
6forms in server-side scripts.}
Fred Drakeb91e9341998-07-23 17:59:49 +00007
Guido van Rossuma12ef941995-02-27 17:53:25 +00008\indexii{WWW}{server}
9\indexii{CGI}{protocol}
10\indexii{HTTP}{protocol}
11\indexii{MIME}{headers}
12\index{URL}
13
Guido van Rossum86751151995-02-28 17:14:32 +000014
Fred Drake8ee679f2001-07-14 02:50:55 +000015Support module for Common Gateway Interface (CGI) scripts.%
Fred Drake6a79be81998-04-03 03:47:03 +000016\index{Common Gateway Interface}
Guido van Rossuma12ef941995-02-27 17:53:25 +000017
Guido van Rossuma29cc971996-07-30 18:22:07 +000018This module defines a number of utilities for use by CGI scripts
19written in Python.
Guido van Rossuma12ef941995-02-27 17:53:25 +000020
Guido van Rossuma29cc971996-07-30 18:22:07 +000021\subsection{Introduction}
Fred Drake12d9fc91998-04-14 17:19:54 +000022\nodename{cgi-intro}
Guido van Rossuma12ef941995-02-27 17:53:25 +000023
Guido van Rossuma29cc971996-07-30 18:22:07 +000024A CGI script is invoked by an HTTP server, usually to process user
Fred Drake637af131998-08-21 20:02:06 +000025input submitted through an HTML \code{<FORM>} or \code{<ISINDEX>} element.
Guido van Rossuma29cc971996-07-30 18:22:07 +000026
Fred Drakea2e268a1997-12-09 03:28:42 +000027Most often, CGI scripts live in the server's special \file{cgi-bin}
Guido van Rossuma29cc971996-07-30 18:22:07 +000028directory. The HTTP server places all sorts of information about the
29request (such as the client's hostname, the requested URL, the query
30string, and lots of other goodies) in the script's shell environment,
31executes the script, and sends the script's output back to the client.
32
33The script's input is connected to the client too, and sometimes the
34form data is read this way; at other times the form data is passed via
Fred Drake6ef871c1998-03-12 06:52:05 +000035the ``query string'' part of the URL. This module is intended
Guido van Rossuma29cc971996-07-30 18:22:07 +000036to take care of the different cases and provide a simpler interface to
37the Python script. It also provides a number of utilities that help
38in debugging scripts, and the latest addition is support for file
Fred Drake6ef871c1998-03-12 06:52:05 +000039uploads from a form (if your browser supports it --- Grail 0.3 and
Guido van Rossuma29cc971996-07-30 18:22:07 +000040Netscape 2.0 do).
41
42The output of a CGI script should consist of two sections, separated
43by a blank line. The first section contains a number of headers,
44telling the client what kind of data is following. Python code to
45generate a minimal header section looks like this:
Guido van Rossuma12ef941995-02-27 17:53:25 +000046
Fred Drake19479911998-02-13 06:58:54 +000047\begin{verbatim}
Moshe Zadkaa1a4b592000-08-25 21:47:56 +000048print "Content-Type: text/html" # HTML is following
Guido van Rossume47da0a1997-07-17 16:34:52 +000049print # blank line, end of headers
Fred Drake19479911998-02-13 06:58:54 +000050\end{verbatim}
Fred Drake6ef871c1998-03-12 06:52:05 +000051
Guido van Rossuma29cc971996-07-30 18:22:07 +000052The second section is usually HTML, which allows the client software
53to display nicely formatted text with header, in-line images, etc.
54Here's Python code that prints a simple piece of HTML:
Guido van Rossum470be141995-03-17 16:07:09 +000055
Fred Drake19479911998-02-13 06:58:54 +000056\begin{verbatim}
Guido van Rossume47da0a1997-07-17 16:34:52 +000057print "<TITLE>CGI script output</TITLE>"
58print "<H1>This is my first CGI script</H1>"
59print "Hello, world!"
Fred Drake19479911998-02-13 06:58:54 +000060\end{verbatim}
Fred Drake6ef871c1998-03-12 06:52:05 +000061
Guido van Rossuma29cc971996-07-30 18:22:07 +000062\subsection{Using the cgi module}
63\nodename{Using the cgi module}
64
Fred Drake6ef871c1998-03-12 06:52:05 +000065Begin by writing \samp{import cgi}. Do not use \samp{from cgi import
66*} --- the module defines all sorts of names for its own use or for
67backward compatibility that you don't want in your namespace.
Guido van Rossuma29cc971996-07-30 18:22:07 +000068
Fred Drake34a37b82001-12-20 17:13:09 +000069When you write a new script, consider adding the line:
70
71\begin{verbatim}
72import cgitb; cgitb.enable()
73\end{verbatim}
74
75This activates a special exception handler that will display detailed
76reports in the Web browser if any errors occur. If you'd rather not
77show the guts of your program to users of your script, you can have
78the reports saved to files instead, with a line like this:
79
80\begin{verbatim}
81import cgitb; cgitb.enable(display=0, logdir="/tmp")
82\end{verbatim}
83
84It's very helpful to use this feature during script development.
85The reports produced by \refmodule{cgitb} provide information that
86can save you a lot of time in tracking down bugs. You can always
87remove the \code{cgitb} line later when you have tested your script
88and are confident that it works correctly.
89
90To get at submitted form data,
91it's best to use the \class{FieldStorage} class. The other classes
Fred Drake6ef871c1998-03-12 06:52:05 +000092defined in this module are provided mostly for backward compatibility.
93Instantiate it exactly once, without arguments. This reads the form
94contents from standard input or the environment (depending on the
95value of various environment variables set according to the CGI
96standard). Since it may consume standard input, it should be
97instantiated only once.
Guido van Rossuma29cc971996-07-30 18:22:07 +000098
Moshe Zadkaa1a4b592000-08-25 21:47:56 +000099The \class{FieldStorage} instance can be indexed like a Python
100dictionary, and also supports the standard dictionary methods
Fred Drake84e58ab2001-08-11 03:28:41 +0000101\method{has_key()} and \method{keys()}. The built-in \function{len()}
102is also supported. Form fields containing empty strings are ignored
Moshe Zadkaa1a4b592000-08-25 21:47:56 +0000103and do not appear in the dictionary; to keep such values, provide
Raymond Hettingerf17d65d2003-08-12 00:01:16 +0000104a true value for the optional \var{keep_blank_values} keyword
Fred Drake84e58ab2001-08-11 03:28:41 +0000105parameter when creating the \class{FieldStorage} instance.
Moshe Zadkaa1a4b592000-08-25 21:47:56 +0000106
107For instance, the following code (which assumes that the
Fred Drake84e58ab2001-08-11 03:28:41 +0000108\mailheader{Content-Type} header and blank line have already been
109printed) checks that the fields \code{name} and \code{addr} are both
110set to a non-empty string:
Guido van Rossum470be141995-03-17 16:07:09 +0000111
Fred Drake19479911998-02-13 06:58:54 +0000112\begin{verbatim}
Guido van Rossume47da0a1997-07-17 16:34:52 +0000113form = cgi.FieldStorage()
Fred Drake9f9bd6a2001-06-29 14:59:01 +0000114if not (form.has_key("name") and form.has_key("addr")):
Guido van Rossume47da0a1997-07-17 16:34:52 +0000115 print "<H1>Error</H1>"
116 print "Please fill in the name and addr fields."
117 return
Moshe Zadkaa1a4b592000-08-25 21:47:56 +0000118print "<p>name:", form["name"].value
119print "<p>addr:", form["addr"].value
Guido van Rossume47da0a1997-07-17 16:34:52 +0000120...further form processing here...
Fred Drake19479911998-02-13 06:58:54 +0000121\end{verbatim}
Fred Drake6ef871c1998-03-12 06:52:05 +0000122
123Here the fields, accessed through \samp{form[\var{key}]}, are
124themselves instances of \class{FieldStorage} (or
125\class{MiniFieldStorage}, depending on the form encoding).
Moshe Zadkaa1a4b592000-08-25 21:47:56 +0000126The \member{value} attribute of the instance yields the string value
Fred Drake84e58ab2001-08-11 03:28:41 +0000127of the field. The \method{getvalue()} method returns this string value
Moshe Zadkaa1a4b592000-08-25 21:47:56 +0000128directly; it also accepts an optional second argument as a default to
129return if the requested key is not present.
Guido van Rossum470be141995-03-17 16:07:09 +0000130
Guido van Rossuma29cc971996-07-30 18:22:07 +0000131If the submitted form data contains more than one field with the same
Fred Drake6ef871c1998-03-12 06:52:05 +0000132name, the object retrieved by \samp{form[\var{key}]} is not a
133\class{FieldStorage} or \class{MiniFieldStorage}
Moshe Zadkaa1a4b592000-08-25 21:47:56 +0000134instance but a list of such instances. Similarly, in this situation,
135\samp{form.getvalue(\var{key})} would return a list of strings.
136If you expect this possibility
Fred Drake84e58ab2001-08-11 03:28:41 +0000137(when your HTML form contains multiple fields with the same name), use
Andrew M. Kuchling44cbfd72004-06-06 23:28:23 +0000138the \function{getlist()} function, which always returns a list of values (so that you
139do not need to special-case the single item case). For example, this
Fred Drake84e58ab2001-08-11 03:28:41 +0000140code concatenates any number of username fields, separated by
Fred Drake6ef871c1998-03-12 06:52:05 +0000141commas:
Guido van Rossum470be141995-03-17 16:07:09 +0000142
Fred Drake19479911998-02-13 06:58:54 +0000143\begin{verbatim}
Andrew M. Kuchling44cbfd72004-06-06 23:28:23 +0000144value = form.getlist("username")
145usernames = ",".join(value)
Fred Drake19479911998-02-13 06:58:54 +0000146\end{verbatim}
Fred Drake6ef871c1998-03-12 06:52:05 +0000147
Moshe Zadkaa1a4b592000-08-25 21:47:56 +0000148If a field represents an uploaded file, accessing the value via the
149\member{value} attribute or the \function{getvalue()} method reads the
Fred Drake6ef871c1998-03-12 06:52:05 +0000150entire file in memory as a string. This may not be what you want.
Moshe Zadkaa1a4b592000-08-25 21:47:56 +0000151You can test for an uploaded file by testing either the \member{filename}
152attribute or the \member{file} attribute. You can then read the data at
153leisure from the \member{file} attribute:
Guido van Rossuma29cc971996-07-30 18:22:07 +0000154
Fred Drake19479911998-02-13 06:58:54 +0000155\begin{verbatim}
Guido van Rossume47da0a1997-07-17 16:34:52 +0000156fileitem = form["userfile"]
157if fileitem.file:
158 # It's an uploaded file; count lines
159 linecount = 0
160 while 1:
161 line = fileitem.file.readline()
162 if not line: break
163 linecount = linecount + 1
Fred Drake19479911998-02-13 06:58:54 +0000164\end{verbatim}
Guido van Rossuma29cc971996-07-30 18:22:07 +0000165
Fred Drake6ef871c1998-03-12 06:52:05 +0000166The file upload draft standard entertains the possibility of uploading
167multiple files from one field (using a recursive
168\mimetype{multipart/*} encoding). When this occurs, the item will be
169a dictionary-like \class{FieldStorage} item. This can be determined
170by testing its \member{type} attribute, which should be
171\mimetype{multipart/form-data} (or perhaps another MIME type matching
Fred Drake7eca8e51999-01-18 15:46:02 +0000172\mimetype{multipart/*}). In this case, it can be iterated over
Fred Drake6ef871c1998-03-12 06:52:05 +0000173recursively just like the top-level form object.
174
175When a form is submitted in the ``old'' format (as the query string or
176as a single data part of type
177\mimetype{application/x-www-form-urlencoded}), the items will actually
178be instances of the class \class{MiniFieldStorage}. In this case, the
Moshe Zadkaa1a4b592000-08-25 21:47:56 +0000179\member{list}, \member{file}, and \member{filename} attributes are
180always \code{None}.
Guido van Rossuma29cc971996-07-30 18:22:07 +0000181
182
Fred Drake2732cb42001-09-11 16:27:03 +0000183\subsection{Higher Level Interface}
184
185\versionadded{2.2} % XXX: Is this true ?
186
187The previous section explains how to read CGI form data using the
188\class{FieldStorage} class. This section describes a higher level
189interface which was added to this class to allow one to do it in a
190more readable and intuitive way. The interface doesn't make the
191techniques described in previous sections obsolete --- they are still
192useful to process file uploads efficiently, for example.
193
194The interface consists of two simple methods. Using the methods
195you can process form data in a generic way, without the need to worry
196whether only one or more values were posted under one name.
197
198In the previous section, you learned to write following code anytime
199you expected a user to post more than one value under one name:
200
201\begin{verbatim}
Fred Drake2732cb42001-09-11 16:27:03 +0000202item = form.getvalue("item")
Fred Drake5b09eee2002-08-21 19:24:21 +0000203if isinstance(item, list):
Fred Drake2732cb42001-09-11 16:27:03 +0000204 # The user is requesting more than one item.
205else:
206 # The user is requesting only one item.
207\end{verbatim}
208
209This situation is common for example when a form contains a group of
210multiple checkboxes with the same name:
211
212\begin{verbatim}
213<input type="checkbox" name="item" value="1" />
214<input type="checkbox" name="item" value="2" />
215\end{verbatim}
216
217In most situations, however, there's only one form control with a
218particular name in a form and then you expect and need only one value
219associated with this name. So you write a script containing for
220example this code:
221
222\begin{verbatim}
Fred Drake226f6972004-01-23 04:05:27 +0000223user = form.getvalue("user").upper()
Fred Drake2732cb42001-09-11 16:27:03 +0000224\end{verbatim}
225
226The problem with the code is that you should never expect that a
227client will provide valid input to your scripts. For example, if a
228curious user appends another \samp{user=foo} pair to the query string,
229then the script would crash, because in this situation the
230\code{getvalue("user")} method call returns a list instead of a
231string. Calling the \method{toupper()} method on a list is not valid
232(since lists do not have a method of this name) and results in an
233\exception{AttributeError} exception.
234
235Therefore, the appropriate way to read form data values was to always
236use the code which checks whether the obtained value is a single value
237or a list of values. That's annoying and leads to less readable
238scripts.
239
240A more convenient approach is to use the methods \method{getfirst()}
241and \method{getlist()} provided by this higher level interface.
242
243\begin{methoddesc}[FieldStorage]{getfirst}{name\optional{, default}}
244 Thin method always returns only one value associated with form field
245 \var{name}. The method returns only the first value in case that
246 more values were posted under such name. Please note that the order
247 in which the values are received may vary from browser to browser
Fred Drake5b09eee2002-08-21 19:24:21 +0000248 and should not be counted on.\footnote{Note that some recent
249 versions of the HTML specification do state what order the
250 field values should be supplied in, but knowing whether a
251 request was received from a conforming browser, or even from a
252 browser at all, is tedious and error-prone.} If no such form
253 field or value exists then the method returns the value specified by
254 the optional parameter \var{default}. This parameter defaults to
255 \code{None} if not specified.
Fred Drake2732cb42001-09-11 16:27:03 +0000256\end{methoddesc}
257
258\begin{methoddesc}[FieldStorage]{getlist}{name}
259 This method always returns a list of values associated with form
260 field \var{name}. The method returns an empty list if no such form
261 field or value exists for \var{name}. It returns a list consisting
262 of one item if only one such value exists.
263\end{methoddesc}
264
265Using these methods you can write nice compact code:
266
267\begin{verbatim}
268import cgi
269form = cgi.FieldStorage()
Fred Drake226f6972004-01-23 04:05:27 +0000270user = form.getfirst("user", "").upper() # This way it's safe.
Fred Drake2732cb42001-09-11 16:27:03 +0000271for item in form.getlist("item"):
272 do_something(item)
273\end{verbatim}
274
275
Guido van Rossuma29cc971996-07-30 18:22:07 +0000276\subsection{Old classes}
277
Fred Drake6ef871c1998-03-12 06:52:05 +0000278These classes, present in earlier versions of the \module{cgi} module,
279are still supported for backward compatibility. New applications
280should use the \class{FieldStorage} class.
Guido van Rossuma29cc971996-07-30 18:22:07 +0000281
Fred Drake6ef871c1998-03-12 06:52:05 +0000282\class{SvFormContentDict} stores single value form content as
283dictionary; it assumes each field name occurs in the form only once.
Guido van Rossuma29cc971996-07-30 18:22:07 +0000284
Fred Drake6ef871c1998-03-12 06:52:05 +0000285\class{FormContentDict} stores multiple value form content as a
286dictionary (the form items are lists of values). Useful if your form
287contains multiple fields with the same name.
Guido van Rossuma29cc971996-07-30 18:22:07 +0000288
Fred Drake6ef871c1998-03-12 06:52:05 +0000289Other classes (\class{FormContent}, \class{InterpFormContentDict}) are
290present for backwards compatibility with really old applications only.
291If you still use these and would be inconvenienced when they
292disappeared from a next version of this module, drop me a note.
Guido van Rossuma29cc971996-07-30 18:22:07 +0000293
294
295\subsection{Functions}
Fred Drake4b3f0311996-12-13 22:04:31 +0000296\nodename{Functions in cgi module}
Guido van Rossuma29cc971996-07-30 18:22:07 +0000297
298These are useful if you want more control, or if you want to employ
299some of the algorithms implemented in this module in other
300circumstances.
301
Fred Drake2732cb42001-09-11 16:27:03 +0000302\begin{funcdesc}{parse}{fp\optional{, keep_blank_values\optional{,
303 strict_parsing}}}
304 Parse a query in the environment or from a file (the file defaults
305 to \code{sys.stdin}). The \var{keep_blank_values} and
306 \var{strict_parsing} parameters are passed to \function{parse_qs()}
307 unchanged.
Guido van Rossuma29cc971996-07-30 18:22:07 +0000308\end{funcdesc}
309
Fred Drake2732cb42001-09-11 16:27:03 +0000310\begin{funcdesc}{parse_qs}{qs\optional{, keep_blank_values\optional{,
311 strict_parsing}}}
Fred Drake6ef871c1998-03-12 06:52:05 +0000312Parse a query string given as a string argument (data of type
Guido van Rossum66ab4e81999-06-10 03:11:41 +0000313\mimetype{application/x-www-form-urlencoded}). Data are
314returned as a dictionary. The dictionary keys are the unique query
Fred Drake38e5d272000-04-03 20:13:55 +0000315variable names and the values are lists of values for each name.
Guido van Rossum66ab4e81999-06-10 03:11:41 +0000316
317The optional argument \var{keep_blank_values} is
318a flag indicating whether blank values in
319URL encoded queries should be treated as blank strings.
320A true value indicates that blanks should be retained as
321blank strings. The default false value indicates that
322blank values are to be ignored and treated as if they were
323not included.
324
325The optional argument \var{strict_parsing} is a flag indicating what
326to do with parsing errors. If false (the default), errors
327are silently ignored. If true, errors raise a ValueError
328exception.
Brett Cannon1213bdd2003-05-13 02:50:36 +0000329
330Use the \function{\refmodule{urllib}.urlencode()} function to convert
331such dictionaries into query strings.
332
Guido van Rossum66ab4e81999-06-10 03:11:41 +0000333\end{funcdesc}
334
Fred Drake2732cb42001-09-11 16:27:03 +0000335\begin{funcdesc}{parse_qsl}{qs\optional{, keep_blank_values\optional{,
336 strict_parsing}}}
Guido van Rossum66ab4e81999-06-10 03:11:41 +0000337Parse a query string given as a string argument (data of type
338\mimetype{application/x-www-form-urlencoded}). Data are
339returned as a list of name, value pairs.
340
341The optional argument \var{keep_blank_values} is
342a flag indicating whether blank values in
343URL encoded queries should be treated as blank strings.
344A true value indicates that blanks should be retained as
345blank strings. The default false value indicates that
346blank values are to be ignored and treated as if they were
347not included.
348
349The optional argument \var{strict_parsing} is a flag indicating what
350to do with parsing errors. If false (the default), errors
351are silently ignored. If true, errors raise a ValueError
352exception.
Fred Draked859d472003-04-24 16:22:47 +0000353
Brett Cannon1213bdd2003-05-13 02:50:36 +0000354Use the \function{\refmodule{urllib}.urlencode()} function to convert
Fred Draked859d472003-04-24 16:22:47 +0000355such lists of pairs into query strings.
Guido van Rossuma29cc971996-07-30 18:22:07 +0000356\end{funcdesc}
357
Fred Drakecce10901998-03-17 06:33:25 +0000358\begin{funcdesc}{parse_multipart}{fp, pdict}
Fred Drake6ef871c1998-03-12 06:52:05 +0000359Parse input of type \mimetype{multipart/form-data} (for
360file uploads). Arguments are \var{fp} for the input file and
Moshe Zadkaa1a4b592000-08-25 21:47:56 +0000361\var{pdict} for a dictionary containing other parameters in
Fred Drake84e58ab2001-08-11 03:28:41 +0000362the \mailheader{Content-Type} header.
Guido van Rossuma29cc971996-07-30 18:22:07 +0000363
Fred Drake6ef871c1998-03-12 06:52:05 +0000364Returns a dictionary just like \function{parse_qs()} keys are the
365field names, each value is a list of values for that field. This is
366easy to use but not much good if you are expecting megabytes to be
367uploaded --- in that case, use the \class{FieldStorage} class instead
Moshe Zadkaa1a4b592000-08-25 21:47:56 +0000368which is much more flexible.
Guido van Rossuma29cc971996-07-30 18:22:07 +0000369
Fred Drake6ef871c1998-03-12 06:52:05 +0000370Note that this does not parse nested multipart parts --- use
371\class{FieldStorage} for that.
Guido van Rossuma29cc971996-07-30 18:22:07 +0000372\end{funcdesc}
373
Guido van Rossum81e479a1997-08-25 18:28:03 +0000374\begin{funcdesc}{parse_header}{string}
Fred Drake84e58ab2001-08-11 03:28:41 +0000375Parse a MIME header (such as \mailheader{Content-Type}) into a main
Moshe Zadkaa1a4b592000-08-25 21:47:56 +0000376value and a dictionary of parameters.
Guido van Rossuma29cc971996-07-30 18:22:07 +0000377\end{funcdesc}
378
Guido van Rossum81e479a1997-08-25 18:28:03 +0000379\begin{funcdesc}{test}{}
Fred Drake6ef871c1998-03-12 06:52:05 +0000380Robust test CGI script, usable as main program.
381Writes minimal HTTP headers and formats all information provided to
382the script in HTML form.
Guido van Rossuma29cc971996-07-30 18:22:07 +0000383\end{funcdesc}
384
Guido van Rossum81e479a1997-08-25 18:28:03 +0000385\begin{funcdesc}{print_environ}{}
Fred Drake6ef871c1998-03-12 06:52:05 +0000386Format the shell environment in HTML.
Guido van Rossuma29cc971996-07-30 18:22:07 +0000387\end{funcdesc}
388
Guido van Rossum81e479a1997-08-25 18:28:03 +0000389\begin{funcdesc}{print_form}{form}
Fred Drake6ef871c1998-03-12 06:52:05 +0000390Format a form in HTML.
Guido van Rossuma29cc971996-07-30 18:22:07 +0000391\end{funcdesc}
392
Guido van Rossum81e479a1997-08-25 18:28:03 +0000393\begin{funcdesc}{print_directory}{}
Fred Drake6ef871c1998-03-12 06:52:05 +0000394Format the current directory in HTML.
Guido van Rossuma29cc971996-07-30 18:22:07 +0000395\end{funcdesc}
396
Guido van Rossum81e479a1997-08-25 18:28:03 +0000397\begin{funcdesc}{print_environ_usage}{}
Fred Drake6ef871c1998-03-12 06:52:05 +0000398Print a list of useful (used by CGI) environment variables in
Guido van Rossuma29cc971996-07-30 18:22:07 +0000399HTML.
400\end{funcdesc}
401
Fred Drakecce10901998-03-17 06:33:25 +0000402\begin{funcdesc}{escape}{s\optional{, quote}}
Fred Drake6ef871c1998-03-12 06:52:05 +0000403Convert the characters
404\character{\&}, \character{<} and \character{>} in string \var{s} to
405HTML-safe sequences. Use this if you need to display text that might
406contain such characters in HTML. If the optional flag \var{quote} is
Fred Drake84e58ab2001-08-11 03:28:41 +0000407true, the double-quote character (\character{"}) is also translated;
Fred Drake91f2f262001-07-06 19:28:48 +0000408this helps for inclusion in an HTML attribute value, as in \code{<A
Fred Drake055be472002-08-23 21:19:53 +0000409HREF="...">}. If the value to be quoted might include single- or
Fred Drake84e58ab2001-08-11 03:28:41 +0000410double-quote characters, or both, consider using the
411\function{quoteattr()} function in the \refmodule{xml.sax.saxutils}
412module instead.
Guido van Rossuma29cc971996-07-30 18:22:07 +0000413\end{funcdesc}
414
415
Fred Drake34a37b82001-12-20 17:13:09 +0000416\subsection{Caring about security \label{cgi-security}}
417
418\indexii{CGI}{security}
Guido van Rossuma29cc971996-07-30 18:22:07 +0000419
Fred Drake91f2f262001-07-06 19:28:48 +0000420There's one important rule: if you invoke an external program (via the
421\function{os.system()} or \function{os.popen()} functions. or others
422with similar functionality), make very sure you don't pass arbitrary
423strings received from the client to the shell. This is a well-known
Fred Drake8ee679f2001-07-14 02:50:55 +0000424security hole whereby clever hackers anywhere on the Web can exploit a
Fred Drake91f2f262001-07-06 19:28:48 +0000425gullible CGI script to invoke arbitrary shell commands. Even parts of
426the URL or field names cannot be trusted, since the request doesn't
427have to come from your form!
Guido van Rossuma29cc971996-07-30 18:22:07 +0000428
429To be on the safe side, if you must pass a string gotten from a form
430to a shell command, you should make sure the string contains only
431alphanumeric characters, dashes, underscores, and periods.
432
433
Fred Drakec37b65e2001-11-28 07:26:15 +0000434\subsection{Installing your CGI script on a \UNIX\ system}
Guido van Rossuma29cc971996-07-30 18:22:07 +0000435
436Read the documentation for your HTTP server and check with your local
437system administrator to find the directory where CGI scripts should be
Fred Drakea2e268a1997-12-09 03:28:42 +0000438installed; usually this is in a directory \file{cgi-bin} in the server tree.
Guido van Rossuma29cc971996-07-30 18:22:07 +0000439
440Make sure that your script is readable and executable by ``others''; the
Fred Drake6ef871c1998-03-12 06:52:05 +0000441\UNIX{} file mode should be \code{0755} octal (use \samp{chmod 0755
Fred Drake7eca8e51999-01-18 15:46:02 +0000442\var{filename}}). Make sure that the first line of the script contains
Fred Drake6ef871c1998-03-12 06:52:05 +0000443\code{\#!} starting in column 1 followed by the pathname of the Python
444interpreter, for instance:
Guido van Rossuma29cc971996-07-30 18:22:07 +0000445
Fred Drake19479911998-02-13 06:58:54 +0000446\begin{verbatim}
Guido van Rossume47da0a1997-07-17 16:34:52 +0000447#!/usr/local/bin/python
Fred Drake19479911998-02-13 06:58:54 +0000448\end{verbatim}
Fred Drake6ef871c1998-03-12 06:52:05 +0000449
Guido van Rossuma29cc971996-07-30 18:22:07 +0000450Make sure the Python interpreter exists and is executable by ``others''.
451
452Make sure that any files your script needs to read or write are
Fred Drake6ef871c1998-03-12 06:52:05 +0000453readable or writable, respectively, by ``others'' --- their mode
454should be \code{0644} for readable and \code{0666} for writable. This
455is because, for security reasons, the HTTP server executes your script
456as user ``nobody'', without any special privileges. It can only read
457(write, execute) files that everybody can read (write, execute). The
458current directory at execution time is also different (it is usually
459the server's cgi-bin directory) and the set of environment variables
Fred Drake8ee679f2001-07-14 02:50:55 +0000460is also different from what you get when you log in. In particular, don't
Fred Drake6ef871c1998-03-12 06:52:05 +0000461count on the shell's search path for executables (\envvar{PATH}) or
462the Python module search path (\envvar{PYTHONPATH}) to be set to
463anything interesting.
Guido van Rossuma29cc971996-07-30 18:22:07 +0000464
465If you need to load modules from a directory which is not on Python's
466default module search path, you can change the path in your script,
Fred Drake91f2f262001-07-06 19:28:48 +0000467before importing other modules. For example:
Guido van Rossuma29cc971996-07-30 18:22:07 +0000468
Fred Drake19479911998-02-13 06:58:54 +0000469\begin{verbatim}
Guido van Rossume47da0a1997-07-17 16:34:52 +0000470import sys
471sys.path.insert(0, "/usr/home/joe/lib/python")
472sys.path.insert(0, "/usr/local/lib/python")
Fred Drake19479911998-02-13 06:58:54 +0000473\end{verbatim}
Fred Drake6ef871c1998-03-12 06:52:05 +0000474
Guido van Rossuma29cc971996-07-30 18:22:07 +0000475(This way, the directory inserted last will be searched first!)
476
Fred Drakeefc1e0f1998-01-13 19:00:33 +0000477Instructions for non-\UNIX{} systems will vary; check your HTTP server's
Guido van Rossuma29cc971996-07-30 18:22:07 +0000478documentation (it will usually have a section on CGI scripts).
479
480
481\subsection{Testing your CGI script}
482
483Unfortunately, a CGI script will generally not run when you try it
484from the command line, and a script that works perfectly from the
485command line may fail mysteriously when run from the server. There's
486one reason why you should still test your script from the command
Fred Drake6a79be81998-04-03 03:47:03 +0000487line: if it contains a syntax error, the Python interpreter won't
Guido van Rossuma29cc971996-07-30 18:22:07 +0000488execute it at all, and the HTTP server will most likely send a cryptic
489error to the client.
490
491Assuming your script has no syntax errors, yet it does not work, you
Fred Drake6ef871c1998-03-12 06:52:05 +0000492have no choice but to read the next section.
Guido van Rossuma29cc971996-07-30 18:22:07 +0000493
494
Fred Drake34a37b82001-12-20 17:13:09 +0000495\subsection{Debugging CGI scripts} \indexii{CGI}{debugging}
Guido van Rossuma29cc971996-07-30 18:22:07 +0000496
Fred Drake6ef871c1998-03-12 06:52:05 +0000497First of all, check for trivial installation errors --- reading the
Guido van Rossuma29cc971996-07-30 18:22:07 +0000498section above on installing your CGI script carefully can save you a
499lot of time. If you wonder whether you have understood the
500installation procedure correctly, try installing a copy of this module
Fred Drakea2e268a1997-12-09 03:28:42 +0000501file (\file{cgi.py}) as a CGI script. When invoked as a script, the file
Guido van Rossuma29cc971996-07-30 18:22:07 +0000502will dump its environment and the contents of the form in HTML form.
503Give it the right mode etc, and send it a request. If it's installed
Fred Drakea2e268a1997-12-09 03:28:42 +0000504in the standard \file{cgi-bin} directory, it should be possible to send it a
Guido van Rossuma29cc971996-07-30 18:22:07 +0000505request by entering a URL into your browser of the form:
506
Fred Drake19479911998-02-13 06:58:54 +0000507\begin{verbatim}
Guido van Rossume47da0a1997-07-17 16:34:52 +0000508http://yourhostname/cgi-bin/cgi.py?name=Joe+Blow&addr=At+Home
Fred Drake19479911998-02-13 06:58:54 +0000509\end{verbatim}
Fred Drake6ef871c1998-03-12 06:52:05 +0000510
Guido van Rossuma29cc971996-07-30 18:22:07 +0000511If this gives an error of type 404, the server cannot find the script
512-- perhaps you need to install it in a different directory. If it
Fred Drake91f2f262001-07-06 19:28:48 +0000513gives another error, there's an installation problem that
Guido van Rossuma29cc971996-07-30 18:22:07 +0000514you should fix before trying to go any further. If you get a nicely
515formatted listing of the environment and form content (in this
516example, the fields should be listed as ``addr'' with value ``At Home''
Fred Drakea2e268a1997-12-09 03:28:42 +0000517and ``name'' with value ``Joe Blow''), the \file{cgi.py} script has been
Guido van Rossuma29cc971996-07-30 18:22:07 +0000518installed correctly. If you follow the same procedure for your own
519script, you should now be able to debug it.
520
Fred Drake6ef871c1998-03-12 06:52:05 +0000521The next step could be to call the \module{cgi} module's
522\function{test()} function from your script: replace its main code
523with the single statement
Guido van Rossuma29cc971996-07-30 18:22:07 +0000524
Fred Drake19479911998-02-13 06:58:54 +0000525\begin{verbatim}
Guido van Rossume47da0a1997-07-17 16:34:52 +0000526cgi.test()
Fred Drake19479911998-02-13 06:58:54 +0000527\end{verbatim}
Fred Drake6ef871c1998-03-12 06:52:05 +0000528
Guido van Rossuma29cc971996-07-30 18:22:07 +0000529This should produce the same results as those gotten from installing
Fred Drakea2e268a1997-12-09 03:28:42 +0000530the \file{cgi.py} file itself.
Guido van Rossuma29cc971996-07-30 18:22:07 +0000531
Fred Drake91f2f262001-07-06 19:28:48 +0000532When an ordinary Python script raises an unhandled exception (for
533whatever reason: of a typo in a module name, a file that can't be
534opened, etc.), the Python interpreter prints a nice traceback and
535exits. While the Python interpreter will still do this when your CGI
536script raises an exception, most likely the traceback will end up in
Fred Drake34a37b82001-12-20 17:13:09 +0000537one of the HTTP server's log files, or be discarded altogether.
Guido van Rossuma29cc971996-07-30 18:22:07 +0000538
539Fortunately, once you have managed to get your script to execute
Fred Drake34a37b82001-12-20 17:13:09 +0000540\emph{some} code, you can easily send tracebacks to the Web browser
541using the \refmodule{cgitb} module. If you haven't done so already,
542just add the line:
Guido van Rossuma29cc971996-07-30 18:22:07 +0000543
Fred Drake19479911998-02-13 06:58:54 +0000544\begin{verbatim}
Fred Drake34a37b82001-12-20 17:13:09 +0000545import cgitb; cgitb.enable()
Fred Drake19479911998-02-13 06:58:54 +0000546\end{verbatim}
Fred Drake6ef871c1998-03-12 06:52:05 +0000547
Fred Drake34a37b82001-12-20 17:13:09 +0000548to the top of your script. Then try running it again; when a
549problem occurs, you should see a detailed report that will
550likely make apparent the cause of the crash.
Guido van Rossuma29cc971996-07-30 18:22:07 +0000551
Fred Drake34a37b82001-12-20 17:13:09 +0000552If you suspect that there may be a problem in importing the
553\refmodule{cgitb} module, you can use an even more robust approach
554(which only uses built-in modules):
Guido van Rossuma29cc971996-07-30 18:22:07 +0000555
Fred Drake19479911998-02-13 06:58:54 +0000556\begin{verbatim}
Guido van Rossume47da0a1997-07-17 16:34:52 +0000557import sys
558sys.stderr = sys.stdout
Moshe Zadkaa1a4b592000-08-25 21:47:56 +0000559print "Content-Type: text/plain"
Guido van Rossume47da0a1997-07-17 16:34:52 +0000560print
561...your code here...
Fred Drake19479911998-02-13 06:58:54 +0000562\end{verbatim}
Fred Drake6ef871c1998-03-12 06:52:05 +0000563
Guido van Rossuma29cc971996-07-30 18:22:07 +0000564This relies on the Python interpreter to print the traceback. The
565content type of the output is set to plain text, which disables all
566HTML processing. If your script works, the raw HTML will be displayed
567by your client. If it raises an exception, most likely after the
568first two lines have been printed, a traceback will be displayed.
Fred Drake34a37b82001-12-20 17:13:09 +0000569Because no HTML interpretation is going on, the traceback will be
Guido van Rossuma29cc971996-07-30 18:22:07 +0000570readable.
571
572
573\subsection{Common problems and solutions}
Guido van Rossum470be141995-03-17 16:07:09 +0000574
575\begin{itemize}
Guido van Rossuma29cc971996-07-30 18:22:07 +0000576\item Most HTTP servers buffer the output from CGI scripts until the
577script is completed. This means that it is not possible to display a
578progress report on the client's display while the script is running.
579
580\item Check the installation instructions above.
581
Fred Drake6ef871c1998-03-12 06:52:05 +0000582\item Check the HTTP server's log files. (\samp{tail -f logfile} in a
583separate window may be useful!)
Guido van Rossuma29cc971996-07-30 18:22:07 +0000584
585\item Always check a script for syntax errors first, by doing something
Fred Drake6ef871c1998-03-12 06:52:05 +0000586like \samp{python script.py}.
Guido van Rossuma29cc971996-07-30 18:22:07 +0000587
Fred Drake34a37b82001-12-20 17:13:09 +0000588\item If your script does not have any syntax errors, try adding
589\samp{import cgitb; cgitb.enable()} to the top of the script.
Guido van Rossuma29cc971996-07-30 18:22:07 +0000590
591\item When invoking external programs, make sure they can be found.
Fred Drake6ef871c1998-03-12 06:52:05 +0000592Usually, this means using absolute path names --- \envvar{PATH} is
593usually not set to a very useful value in a CGI script.
Guido van Rossuma29cc971996-07-30 18:22:07 +0000594
595\item When reading or writing external files, make sure they can be read
Alex Martelli50324a62003-11-09 16:31:18 +0000596or written by the userid under which your CGI script will be running:
597this is typically the userid under which the web server is running, or some
598explicitly specified userid for a web server's \samp{suexec} feature.
Guido van Rossuma29cc971996-07-30 18:22:07 +0000599
600\item Don't try to give a CGI script a set-uid mode. This doesn't work on
601most systems, and is a security liability as well.
Guido van Rossum470be141995-03-17 16:07:09 +0000602\end{itemize}
603