blob: c8d9903bc5696f3ac4b3c2338f460f3d53eec557 [file] [log] [blame]
Georg Brandl116aa622007-08-15 14:28:22 +00001
2:mod:`cgi` --- Common Gateway Interface support.
3================================================
4
5.. module:: cgi
6 :synopsis: Helpers for running Python scripts via the Common Gateway Interface.
7
8
9.. index::
10 pair: WWW; server
11 pair: CGI; protocol
12 pair: HTTP; protocol
13 pair: MIME; headers
14 single: URL
15 single: Common Gateway Interface
16
17Support module for Common Gateway Interface (CGI) scripts.
18
19This module defines a number of utilities for use by CGI scripts written in
20Python.
21
22
23Introduction
24------------
25
26.. _cgi-intro:
27
28A CGI script is invoked by an HTTP server, usually to process user input
29submitted through an HTML ``<FORM>`` or ``<ISINDEX>`` element.
30
31Most often, CGI scripts live in the server's special :file:`cgi-bin` directory.
32The HTTP server places all sorts of information about the request (such as the
33client's hostname, the requested URL, the query string, and lots of other
34goodies) in the script's shell environment, executes the script, and sends the
35script's output back to the client.
36
37The script's input is connected to the client too, and sometimes the form data
38is read this way; at other times the form data is passed via the "query string"
39part of the URL. This module is intended to take care of the different cases
40and provide a simpler interface to the Python script. It also provides a number
41of utilities that help in debugging scripts, and the latest addition is support
42for file uploads from a form (if your browser supports it).
43
44The output of a CGI script should consist of two sections, separated by a blank
45line. The first section contains a number of headers, telling the client what
46kind of data is following. Python code to generate a minimal header section
47looks like this::
48
Georg Brandl6911e3c2007-09-04 07:15:32 +000049 print("Content-Type: text/html") # HTML is following
50 print() # blank line, end of headers
Georg Brandl116aa622007-08-15 14:28:22 +000051
52The second section is usually HTML, which allows the client software to display
53nicely formatted text with header, in-line images, etc. Here's Python code that
54prints a simple piece of HTML::
55
Georg Brandl6911e3c2007-09-04 07:15:32 +000056 print("<TITLE>CGI script output</TITLE>")
57 print("<H1>This is my first CGI script</H1>")
58 print("Hello, world!")
Georg Brandl116aa622007-08-15 14:28:22 +000059
60
61.. _using-the-cgi-module:
62
63Using the cgi module
64--------------------
65
Georg Brandl49d1b4f2008-05-11 21:42:51 +000066Begin by writing ``import cgi``.
Georg Brandl116aa622007-08-15 14:28:22 +000067
68When you write a new script, consider adding the line::
69
70 import cgitb; cgitb.enable()
71
72This activates a special exception handler that will display detailed reports in
73the Web browser if any errors occur. If you'd rather not show the guts of your
74program to users of your script, you can have the reports saved to files
75instead, with a line like this::
76
77 import cgitb; cgitb.enable(display=0, logdir="/tmp")
78
79It's very helpful to use this feature during script development. The reports
80produced by :mod:`cgitb` provide information that can save you a lot of time in
81tracking down bugs. You can always remove the ``cgitb`` line later when you
82have tested your script and are confident that it works correctly.
83
Georg Brandl49d1b4f2008-05-11 21:42:51 +000084To get at submitted form data, use the :class:`FieldStorage` class. Instantiate
85it exactly once, without arguments. This reads the form contents from standard
86input or the environment (depending on the value of various environment
87variables set according to the CGI standard). Since it may consume standard
88input, it should be instantiated only once.
Georg Brandl116aa622007-08-15 14:28:22 +000089
90The :class:`FieldStorage` instance can be indexed like a Python dictionary, and
Collin Winterc79461b2007-09-01 23:34:30 +000091also supports the standard dictionary methods :meth:`__contains__` and
92:meth:`keys`. The built-in :func:`len` is also supported. Form fields
93containing empty strings are ignored and do not appear in the dictionary; to
94keep such values, provide a true value for the optional *keep_blank_values*
95keyword parameter when creating the :class:`FieldStorage` instance.
Georg Brandl116aa622007-08-15 14:28:22 +000096
97For instance, the following code (which assumes that the
98:mailheader:`Content-Type` header and blank line have already been printed)
99checks that the fields ``name`` and ``addr`` are both set to a non-empty
100string::
101
102 form = cgi.FieldStorage()
Collin Winterc79461b2007-09-01 23:34:30 +0000103 if not ("name" in form and "addr" in form):
Georg Brandl6911e3c2007-09-04 07:15:32 +0000104 print("<H1>Error</H1>")
105 print("Please fill in the name and addr fields.")
Georg Brandl116aa622007-08-15 14:28:22 +0000106 return
Georg Brandl6911e3c2007-09-04 07:15:32 +0000107 print("<p>name:", form["name"].value)
108 print("<p>addr:", form["addr"].value)
Georg Brandl116aa622007-08-15 14:28:22 +0000109 ...further form processing here...
110
111Here the fields, accessed through ``form[key]``, are themselves instances of
112:class:`FieldStorage` (or :class:`MiniFieldStorage`, depending on the form
113encoding). The :attr:`value` attribute of the instance yields the string value
114of the field. The :meth:`getvalue` method returns this string value directly;
115it also accepts an optional second argument as a default to return if the
116requested key is not present.
117
118If the submitted form data contains more than one field with the same name, the
119object retrieved by ``form[key]`` is not a :class:`FieldStorage` or
120:class:`MiniFieldStorage` instance but a list of such instances. Similarly, in
121this situation, ``form.getvalue(key)`` would return a list of strings. If you
122expect this possibility (when your HTML form contains multiple fields with the
123same name), use the :func:`getlist` function, which always returns a list of
124values (so that you do not need to special-case the single item case). For
125example, this code concatenates any number of username fields, separated by
126commas::
127
128 value = form.getlist("username")
129 usernames = ",".join(value)
130
131If a field represents an uploaded file, accessing the value via the
132:attr:`value` attribute or the :func:`getvalue` method reads the entire file in
133memory as a string. This may not be what you want. You can test for an uploaded
134file by testing either the :attr:`filename` attribute or the :attr:`file`
135attribute. You can then read the data at leisure from the :attr:`file`
136attribute::
137
138 fileitem = form["userfile"]
139 if fileitem.file:
140 # It's an uploaded file; count lines
141 linecount = 0
Collin Winter46334482007-09-10 00:49:57 +0000142 while True:
Georg Brandl116aa622007-08-15 14:28:22 +0000143 line = fileitem.file.readline()
144 if not line: break
145 linecount = linecount + 1
146
Sean Reifscheider782d6b42007-09-18 23:39:35 +0000147If an error is encountered when obtaining the contents of an uploaded file
148(for example, when the user interrupts the form submission by clicking on
149a Back or Cancel button) the :attr:`done` attribute of the object for the
150field will be set to the value -1.
151
Georg Brandl116aa622007-08-15 14:28:22 +0000152The file upload draft standard entertains the possibility of uploading multiple
153files from one field (using a recursive :mimetype:`multipart/\*` encoding).
154When this occurs, the item will be a dictionary-like :class:`FieldStorage` item.
155This can be determined by testing its :attr:`type` attribute, which should be
156:mimetype:`multipart/form-data` (or perhaps another MIME type matching
157:mimetype:`multipart/\*`). In this case, it can be iterated over recursively
158just like the top-level form object.
159
160When a form is submitted in the "old" format (as the query string or as a single
161data part of type :mimetype:`application/x-www-form-urlencoded`), the items will
162actually be instances of the class :class:`MiniFieldStorage`. In this case, the
163:attr:`list`, :attr:`file`, and :attr:`filename` attributes are always ``None``.
164
Benjamin Petersondcf97b92008-07-02 17:30:14 +0000165A form submitted via POST that also has a query string will contain both
166:class:`FieldStorage` and :class:`MiniFieldStorage` items.
Georg Brandl116aa622007-08-15 14:28:22 +0000167
168Higher Level Interface
169----------------------
170
Georg Brandl116aa622007-08-15 14:28:22 +0000171The previous section explains how to read CGI form data using the
172:class:`FieldStorage` class. This section describes a higher level interface
173which was added to this class to allow one to do it in a more readable and
174intuitive way. The interface doesn't make the techniques described in previous
175sections obsolete --- they are still useful to process file uploads efficiently,
176for example.
177
Christian Heimes5b5e81c2007-12-31 16:14:33 +0000178.. XXX: Is this true ?
Georg Brandl116aa622007-08-15 14:28:22 +0000179
180The interface consists of two simple methods. Using the methods you can process
181form data in a generic way, without the need to worry whether only one or more
182values were posted under one name.
183
184In the previous section, you learned to write following code anytime you
185expected a user to post more than one value under one name::
186
187 item = form.getvalue("item")
188 if isinstance(item, list):
189 # The user is requesting more than one item.
190 else:
191 # The user is requesting only one item.
192
193This situation is common for example when a form contains a group of multiple
194checkboxes with the same name::
195
196 <input type="checkbox" name="item" value="1" />
197 <input type="checkbox" name="item" value="2" />
198
199In most situations, however, there's only one form control with a particular
200name in a form and then you expect and need only one value associated with this
201name. So you write a script containing for example this code::
202
203 user = form.getvalue("user").upper()
204
205The problem with the code is that you should never expect that a client will
206provide valid input to your scripts. For example, if a curious user appends
207another ``user=foo`` pair to the query string, then the script would crash,
208because in this situation the ``getvalue("user")`` method call returns a list
209instead of a string. Calling the :meth:`toupper` method on a list is not valid
210(since lists do not have a method of this name) and results in an
211:exc:`AttributeError` exception.
212
213Therefore, the appropriate way to read form data values was to always use the
214code which checks whether the obtained value is a single value or a list of
215values. That's annoying and leads to less readable scripts.
216
217A more convenient approach is to use the methods :meth:`getfirst` and
218:meth:`getlist` provided by this higher level interface.
219
220
221.. method:: FieldStorage.getfirst(name[, default])
222
223 This method always returns only one value associated with form field *name*.
224 The method returns only the first value in case that more values were posted
225 under such name. Please note that the order in which the values are received
226 may vary from browser to browser and should not be counted on. [#]_ If no such
227 form field or value exists then the method returns the value specified by the
228 optional parameter *default*. This parameter defaults to ``None`` if not
229 specified.
230
231
232.. method:: FieldStorage.getlist(name)
233
234 This method always returns a list of values associated with form field *name*.
235 The method returns an empty list if no such form field or value exists for
236 *name*. It returns a list consisting of one item if only one such value exists.
237
238Using these methods you can write nice compact code::
239
240 import cgi
241 form = cgi.FieldStorage()
242 user = form.getfirst("user", "").upper() # This way it's safe.
243 for item in form.getlist("item"):
244 do_something(item)
245
246
Georg Brandl116aa622007-08-15 14:28:22 +0000247.. _functions-in-cgi-module:
248
249Functions
250---------
251
252These are useful if you want more control, or if you want to employ some of the
253algorithms implemented in this module in other circumstances.
254
255
256.. function:: parse(fp[, keep_blank_values[, strict_parsing]])
257
258 Parse a query in the environment or from a file (the file defaults to
259 ``sys.stdin``). The *keep_blank_values* and *strict_parsing* parameters are
Facundo Batistac469d4c2008-09-03 22:49:01 +0000260 passed to :func:`urllib.parse.parse_qs` unchanged.
Georg Brandl116aa622007-08-15 14:28:22 +0000261
262
263.. function:: parse_qs(qs[, keep_blank_values[, strict_parsing]])
264
Facundo Batistac469d4c2008-09-03 22:49:01 +0000265 This function is deprecated in this module. Use :func:`urllib.parse.parse_qs`
266 instead. It is maintained here only for backward compatiblity.
Georg Brandl116aa622007-08-15 14:28:22 +0000267
268.. function:: parse_qsl(qs[, keep_blank_values[, strict_parsing]])
269
Facundo Batistac469d4c2008-09-03 22:49:01 +0000270 This function is deprecated in this module. Use :func:`urllib.parse.parse_qs`
271 instead. It is maintained here only for backward compatiblity.
Georg Brandl116aa622007-08-15 14:28:22 +0000272
273.. function:: parse_multipart(fp, pdict)
274
275 Parse input of type :mimetype:`multipart/form-data` (for file uploads).
276 Arguments are *fp* for the input file and *pdict* for a dictionary containing
277 other parameters in the :mailheader:`Content-Type` header.
278
Facundo Batistac469d4c2008-09-03 22:49:01 +0000279 Returns a dictionary just like :func:`urllib.parse.parse_qs` keys are the field names, each
Georg Brandl116aa622007-08-15 14:28:22 +0000280 value is a list of values for that field. This is easy to use but not much good
281 if you are expecting megabytes to be uploaded --- in that case, use the
282 :class:`FieldStorage` class instead which is much more flexible.
283
284 Note that this does not parse nested multipart parts --- use
285 :class:`FieldStorage` for that.
286
287
288.. function:: parse_header(string)
289
290 Parse a MIME header (such as :mailheader:`Content-Type`) into a main value and a
291 dictionary of parameters.
292
293
294.. function:: test()
295
296 Robust test CGI script, usable as main program. Writes minimal HTTP headers and
297 formats all information provided to the script in HTML form.
298
299
300.. function:: print_environ()
301
302 Format the shell environment in HTML.
303
304
305.. function:: print_form(form)
306
307 Format a form in HTML.
308
309
310.. function:: print_directory()
311
312 Format the current directory in HTML.
313
314
315.. function:: print_environ_usage()
316
317 Print a list of useful (used by CGI) environment variables in HTML.
318
319
320.. function:: escape(s[, quote])
321
322 Convert the characters ``'&'``, ``'<'`` and ``'>'`` in string *s* to HTML-safe
323 sequences. Use this if you need to display text that might contain such
324 characters in HTML. If the optional flag *quote* is true, the quotation mark
325 character (``'"'``) is also translated; this helps for inclusion in an HTML
326 attribute value, as in ``<A HREF="...">``. If the value to be quoted might
327 include single- or double-quote characters, or both, consider using the
328 :func:`quoteattr` function in the :mod:`xml.sax.saxutils` module instead.
329
330
331.. _cgi-security:
332
333Caring about security
334---------------------
335
336.. index:: pair: CGI; security
337
338There's one important rule: if you invoke an external program (via the
339:func:`os.system` or :func:`os.popen` functions. or others with similar
340functionality), make very sure you don't pass arbitrary strings received from
341the client to the shell. This is a well-known security hole whereby clever
342hackers anywhere on the Web can exploit a gullible CGI script to invoke
343arbitrary shell commands. Even parts of the URL or field names cannot be
344trusted, since the request doesn't have to come from your form!
345
346To be on the safe side, if you must pass a string gotten from a form to a shell
347command, you should make sure the string contains only alphanumeric characters,
348dashes, underscores, and periods.
349
350
351Installing your CGI script on a Unix system
352-------------------------------------------
353
354Read the documentation for your HTTP server and check with your local system
355administrator to find the directory where CGI scripts should be installed;
356usually this is in a directory :file:`cgi-bin` in the server tree.
357
358Make sure that your script is readable and executable by "others"; the Unix file
Georg Brandlf4a41232008-05-26 17:55:52 +0000359mode should be ``0o755`` octal (use ``chmod 0755 filename``). Make sure that the
Georg Brandl116aa622007-08-15 14:28:22 +0000360first line of the script contains ``#!`` starting in column 1 followed by the
361pathname of the Python interpreter, for instance::
362
363 #!/usr/local/bin/python
364
365Make sure the Python interpreter exists and is executable by "others".
366
367Make sure that any files your script needs to read or write are readable or
Georg Brandlf4a41232008-05-26 17:55:52 +0000368writable, respectively, by "others" --- their mode should be ``0o644`` for
369readable and ``0o666`` for writable. This is because, for security reasons, the
Georg Brandl116aa622007-08-15 14:28:22 +0000370HTTP server executes your script as user "nobody", without any special
371privileges. It can only read (write, execute) files that everybody can read
372(write, execute). The current directory at execution time is also different (it
373is usually the server's cgi-bin directory) and the set of environment variables
374is also different from what you get when you log in. In particular, don't count
375on the shell's search path for executables (:envvar:`PATH`) or the Python module
376search path (:envvar:`PYTHONPATH`) to be set to anything interesting.
377
378If you need to load modules from a directory which is not on Python's default
379module search path, you can change the path in your script, before importing
380other modules. For example::
381
382 import sys
383 sys.path.insert(0, "/usr/home/joe/lib/python")
384 sys.path.insert(0, "/usr/local/lib/python")
385
386(This way, the directory inserted last will be searched first!)
387
388Instructions for non-Unix systems will vary; check your HTTP server's
389documentation (it will usually have a section on CGI scripts).
390
391
392Testing your CGI script
393-----------------------
394
395Unfortunately, a CGI script will generally not run when you try it from the
396command line, and a script that works perfectly from the command line may fail
397mysteriously when run from the server. There's one reason why you should still
398test your script from the command line: if it contains a syntax error, the
399Python interpreter won't execute it at all, and the HTTP server will most likely
400send a cryptic error to the client.
401
402Assuming your script has no syntax errors, yet it does not work, you have no
403choice but to read the next section.
404
405
406Debugging CGI scripts
407---------------------
408
409.. index:: pair: CGI; debugging
410
411First of all, check for trivial installation errors --- reading the section
412above on installing your CGI script carefully can save you a lot of time. If
413you wonder whether you have understood the installation procedure correctly, try
414installing a copy of this module file (:file:`cgi.py`) as a CGI script. When
415invoked as a script, the file will dump its environment and the contents of the
416form in HTML form. Give it the right mode etc, and send it a request. If it's
417installed in the standard :file:`cgi-bin` directory, it should be possible to
418send it a request by entering a URL into your browser of the form::
419
420 http://yourhostname/cgi-bin/cgi.py?name=Joe+Blow&addr=At+Home
421
422If this gives an error of type 404, the server cannot find the script -- perhaps
423you need to install it in a different directory. If it gives another error,
424there's an installation problem that you should fix before trying to go any
425further. If you get a nicely formatted listing of the environment and form
426content (in this example, the fields should be listed as "addr" with value "At
427Home" and "name" with value "Joe Blow"), the :file:`cgi.py` script has been
428installed correctly. If you follow the same procedure for your own script, you
429should now be able to debug it.
430
431The next step could be to call the :mod:`cgi` module's :func:`test` function
432from your script: replace its main code with the single statement ::
433
434 cgi.test()
435
436This should produce the same results as those gotten from installing the
437:file:`cgi.py` file itself.
438
439When an ordinary Python script raises an unhandled exception (for whatever
440reason: of a typo in a module name, a file that can't be opened, etc.), the
441Python interpreter prints a nice traceback and exits. While the Python
442interpreter will still do this when your CGI script raises an exception, most
443likely the traceback will end up in one of the HTTP server's log files, or be
444discarded altogether.
445
446Fortunately, once you have managed to get your script to execute *some* code,
447you can easily send tracebacks to the Web browser using the :mod:`cgitb` module.
448If you haven't done so already, just add the line::
449
450 import cgitb; cgitb.enable()
451
452to the top of your script. Then try running it again; when a problem occurs,
453you should see a detailed report that will likely make apparent the cause of the
454crash.
455
456If you suspect that there may be a problem in importing the :mod:`cgitb` module,
457you can use an even more robust approach (which only uses built-in modules)::
458
459 import sys
460 sys.stderr = sys.stdout
Georg Brandl6911e3c2007-09-04 07:15:32 +0000461 print("Content-Type: text/plain")
462 print()
Georg Brandl116aa622007-08-15 14:28:22 +0000463 ...your code here...
464
465This relies on the Python interpreter to print the traceback. The content type
466of the output is set to plain text, which disables all HTML processing. If your
467script works, the raw HTML will be displayed by your client. If it raises an
468exception, most likely after the first two lines have been printed, a traceback
469will be displayed. Because no HTML interpretation is going on, the traceback
470will be readable.
471
472
473Common problems and solutions
474-----------------------------
475
476* Most HTTP servers buffer the output from CGI scripts until the script is
477 completed. This means that it is not possible to display a progress report on
478 the client's display while the script is running.
479
480* Check the installation instructions above.
481
482* Check the HTTP server's log files. (``tail -f logfile`` in a separate window
483 may be useful!)
484
485* Always check a script for syntax errors first, by doing something like
486 ``python script.py``.
487
488* If your script does not have any syntax errors, try adding ``import cgitb;
489 cgitb.enable()`` to the top of the script.
490
491* When invoking external programs, make sure they can be found. Usually, this
492 means using absolute path names --- :envvar:`PATH` is usually not set to a very
493 useful value in a CGI script.
494
495* When reading or writing external files, make sure they can be read or written
496 by the userid under which your CGI script will be running: this is typically the
497 userid under which the web server is running, or some explicitly specified
498 userid for a web server's ``suexec`` feature.
499
500* Don't try to give a CGI script a set-uid mode. This doesn't work on most
501 systems, and is a security liability as well.
502
503.. rubric:: Footnotes
504
505.. [#] Note that some recent versions of the HTML specification do state what order the
506 field values should be supplied in, but knowing whether a request was
507 received from a conforming browser, or even from a browser at all, is tedious
508 and error-prone.
509