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