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