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