Fred Drake | 295da24 | 1998-08-10 19:42:37 +0000 | [diff] [blame] | 1 | \section{\module{cgi} --- |
| 2 | Common Gateway Interface support.} |
Fred Drake | b91e934 | 1998-07-23 17:59:49 +0000 | [diff] [blame] | 3 | \declaremodule{standard}{cgi} |
| 4 | |
Fred Drake | 295da24 | 1998-08-10 19:42:37 +0000 | [diff] [blame] | 5 | \modulesynopsis{Common Gateway Interface support, used to interpret |
| 6 | forms in server-side scripts.} |
Fred Drake | b91e934 | 1998-07-23 17:59:49 +0000 | [diff] [blame] | 7 | |
Guido van Rossum | a12ef94 | 1995-02-27 17:53:25 +0000 | [diff] [blame] | 8 | \indexii{WWW}{server} |
| 9 | \indexii{CGI}{protocol} |
| 10 | \indexii{HTTP}{protocol} |
| 11 | \indexii{MIME}{headers} |
| 12 | \index{URL} |
| 13 | |
Guido van Rossum | 8675115 | 1995-02-28 17:14:32 +0000 | [diff] [blame] | 14 | |
Fred Drake | 6a79be8 | 1998-04-03 03:47:03 +0000 | [diff] [blame] | 15 | Support module for CGI (Common Gateway Interface) scripts.% |
| 16 | \index{Common Gateway Interface} |
Guido van Rossum | a12ef94 | 1995-02-27 17:53:25 +0000 | [diff] [blame] | 17 | |
Guido van Rossum | a29cc97 | 1996-07-30 18:22:07 +0000 | [diff] [blame] | 18 | This module defines a number of utilities for use by CGI scripts |
| 19 | written in Python. |
Guido van Rossum | a12ef94 | 1995-02-27 17:53:25 +0000 | [diff] [blame] | 20 | |
Guido van Rossum | a29cc97 | 1996-07-30 18:22:07 +0000 | [diff] [blame] | 21 | \subsection{Introduction} |
Fred Drake | 12d9fc9 | 1998-04-14 17:19:54 +0000 | [diff] [blame] | 22 | \nodename{cgi-intro} |
Guido van Rossum | a12ef94 | 1995-02-27 17:53:25 +0000 | [diff] [blame] | 23 | |
Guido van Rossum | a29cc97 | 1996-07-30 18:22:07 +0000 | [diff] [blame] | 24 | A CGI script is invoked by an HTTP server, usually to process user |
Fred Drake | 637af13 | 1998-08-21 20:02:06 +0000 | [diff] [blame] | 25 | input submitted through an HTML \code{<FORM>} or \code{<ISINDEX>} element. |
Guido van Rossum | a29cc97 | 1996-07-30 18:22:07 +0000 | [diff] [blame] | 26 | |
Fred Drake | a2e268a | 1997-12-09 03:28:42 +0000 | [diff] [blame] | 27 | Most often, CGI scripts live in the server's special \file{cgi-bin} |
Guido van Rossum | a29cc97 | 1996-07-30 18:22:07 +0000 | [diff] [blame] | 28 | directory. The HTTP server places all sorts of information about the |
| 29 | request (such as the client's hostname, the requested URL, the query |
| 30 | string, and lots of other goodies) in the script's shell environment, |
| 31 | executes the script, and sends the script's output back to the client. |
| 32 | |
| 33 | The script's input is connected to the client too, and sometimes the |
| 34 | form data is read this way; at other times the form data is passed via |
Fred Drake | 6ef871c | 1998-03-12 06:52:05 +0000 | [diff] [blame] | 35 | the ``query string'' part of the URL. This module is intended |
Guido van Rossum | a29cc97 | 1996-07-30 18:22:07 +0000 | [diff] [blame] | 36 | to take care of the different cases and provide a simpler interface to |
| 37 | the Python script. It also provides a number of utilities that help |
| 38 | in debugging scripts, and the latest addition is support for file |
Fred Drake | 6ef871c | 1998-03-12 06:52:05 +0000 | [diff] [blame] | 39 | uploads from a form (if your browser supports it --- Grail 0.3 and |
Guido van Rossum | a29cc97 | 1996-07-30 18:22:07 +0000 | [diff] [blame] | 40 | Netscape 2.0 do). |
| 41 | |
| 42 | The output of a CGI script should consist of two sections, separated |
| 43 | by a blank line. The first section contains a number of headers, |
| 44 | telling the client what kind of data is following. Python code to |
| 45 | generate a minimal header section looks like this: |
Guido van Rossum | a12ef94 | 1995-02-27 17:53:25 +0000 | [diff] [blame] | 46 | |
Fred Drake | 1947991 | 1998-02-13 06:58:54 +0000 | [diff] [blame] | 47 | \begin{verbatim} |
Guido van Rossum | e47da0a | 1997-07-17 16:34:52 +0000 | [diff] [blame] | 48 | print "Content-type: text/html" # HTML is following |
| 49 | print # blank line, end of headers |
Fred Drake | 1947991 | 1998-02-13 06:58:54 +0000 | [diff] [blame] | 50 | \end{verbatim} |
Fred Drake | 6ef871c | 1998-03-12 06:52:05 +0000 | [diff] [blame] | 51 | |
Guido van Rossum | a29cc97 | 1996-07-30 18:22:07 +0000 | [diff] [blame] | 52 | The second section is usually HTML, which allows the client software |
| 53 | to display nicely formatted text with header, in-line images, etc. |
| 54 | Here's Python code that prints a simple piece of HTML: |
Guido van Rossum | 470be14 | 1995-03-17 16:07:09 +0000 | [diff] [blame] | 55 | |
Fred Drake | 1947991 | 1998-02-13 06:58:54 +0000 | [diff] [blame] | 56 | \begin{verbatim} |
Guido van Rossum | e47da0a | 1997-07-17 16:34:52 +0000 | [diff] [blame] | 57 | print "<TITLE>CGI script output</TITLE>" |
| 58 | print "<H1>This is my first CGI script</H1>" |
| 59 | print "Hello, world!" |
Fred Drake | 1947991 | 1998-02-13 06:58:54 +0000 | [diff] [blame] | 60 | \end{verbatim} |
Fred Drake | 6ef871c | 1998-03-12 06:52:05 +0000 | [diff] [blame] | 61 | |
Guido van Rossum | a29cc97 | 1996-07-30 18:22:07 +0000 | [diff] [blame] | 62 | (It may not be fully legal HTML according to the letter of the |
| 63 | standard, but any browser will understand it.) |
Guido van Rossum | 470be14 | 1995-03-17 16:07:09 +0000 | [diff] [blame] | 64 | |
Guido van Rossum | a29cc97 | 1996-07-30 18:22:07 +0000 | [diff] [blame] | 65 | \subsection{Using the cgi module} |
| 66 | \nodename{Using the cgi module} |
| 67 | |
Fred Drake | 6ef871c | 1998-03-12 06:52:05 +0000 | [diff] [blame] | 68 | Begin by writing \samp{import cgi}. Do not use \samp{from cgi import |
| 69 | *} --- the module defines all sorts of names for its own use or for |
| 70 | backward compatibility that you don't want in your namespace. |
Guido van Rossum | a29cc97 | 1996-07-30 18:22:07 +0000 | [diff] [blame] | 71 | |
Fred Drake | 6ef871c | 1998-03-12 06:52:05 +0000 | [diff] [blame] | 72 | It's best to use the \class{FieldStorage} class. The other classes |
| 73 | defined in this module are provided mostly for backward compatibility. |
| 74 | Instantiate it exactly once, without arguments. This reads the form |
| 75 | contents from standard input or the environment (depending on the |
| 76 | value of various environment variables set according to the CGI |
| 77 | standard). Since it may consume standard input, it should be |
| 78 | instantiated only once. |
Guido van Rossum | a29cc97 | 1996-07-30 18:22:07 +0000 | [diff] [blame] | 79 | |
Fred Drake | 6ef871c | 1998-03-12 06:52:05 +0000 | [diff] [blame] | 80 | The \class{FieldStorage} instance can be accessed as if it were a Python |
Guido van Rossum | a29cc97 | 1996-07-30 18:22:07 +0000 | [diff] [blame] | 81 | dictionary. For instance, the following code (which assumes that the |
Fred Drake | 6ef871c | 1998-03-12 06:52:05 +0000 | [diff] [blame] | 82 | \code{content-type} header and blank line have already been printed) |
| 83 | checks that the fields \code{name} and \code{addr} are both set to a |
| 84 | non-empty string: |
Guido van Rossum | 470be14 | 1995-03-17 16:07:09 +0000 | [diff] [blame] | 85 | |
Fred Drake | 1947991 | 1998-02-13 06:58:54 +0000 | [diff] [blame] | 86 | \begin{verbatim} |
Guido van Rossum | e47da0a | 1997-07-17 16:34:52 +0000 | [diff] [blame] | 87 | form = cgi.FieldStorage() |
| 88 | form_ok = 0 |
| 89 | if form.has_key("name") and form.has_key("addr"): |
| 90 | if form["name"].value != "" and form["addr"].value != "": |
| 91 | form_ok = 1 |
| 92 | if not form_ok: |
| 93 | print "<H1>Error</H1>" |
| 94 | print "Please fill in the name and addr fields." |
| 95 | return |
| 96 | ...further form processing here... |
Fred Drake | 1947991 | 1998-02-13 06:58:54 +0000 | [diff] [blame] | 97 | \end{verbatim} |
Fred Drake | 6ef871c | 1998-03-12 06:52:05 +0000 | [diff] [blame] | 98 | |
| 99 | Here the fields, accessed through \samp{form[\var{key}]}, are |
| 100 | themselves instances of \class{FieldStorage} (or |
| 101 | \class{MiniFieldStorage}, depending on the form encoding). |
Guido van Rossum | 470be14 | 1995-03-17 16:07:09 +0000 | [diff] [blame] | 102 | |
Guido van Rossum | a29cc97 | 1996-07-30 18:22:07 +0000 | [diff] [blame] | 103 | If the submitted form data contains more than one field with the same |
Fred Drake | 6ef871c | 1998-03-12 06:52:05 +0000 | [diff] [blame] | 104 | name, the object retrieved by \samp{form[\var{key}]} is not a |
| 105 | \class{FieldStorage} or \class{MiniFieldStorage} |
Guido van Rossum | a29cc97 | 1996-07-30 18:22:07 +0000 | [diff] [blame] | 106 | instance but a list of such instances. If you expect this possibility |
| 107 | (i.e., when your HTML form comtains multiple fields with the same |
Fred Drake | 6ef871c | 1998-03-12 06:52:05 +0000 | [diff] [blame] | 108 | name), use the \function{type()} function to determine whether you |
| 109 | have a single instance or a list of instances. For example, here's |
| 110 | code that concatenates any number of username fields, separated by |
| 111 | commas: |
Guido van Rossum | 470be14 | 1995-03-17 16:07:09 +0000 | [diff] [blame] | 112 | |
Fred Drake | 1947991 | 1998-02-13 06:58:54 +0000 | [diff] [blame] | 113 | \begin{verbatim} |
Guido van Rossum | e47da0a | 1997-07-17 16:34:52 +0000 | [diff] [blame] | 114 | username = form["username"] |
| 115 | if type(username) is type([]): |
| 116 | # Multiple username fields specified |
| 117 | usernames = "" |
| 118 | for item in username: |
| 119 | if usernames: |
| 120 | # Next item -- insert comma |
| 121 | usernames = usernames + "," + item.value |
| 122 | else: |
| 123 | # First item -- don't insert comma |
| 124 | usernames = item.value |
| 125 | else: |
| 126 | # Single username field specified |
| 127 | usernames = username.value |
Fred Drake | 1947991 | 1998-02-13 06:58:54 +0000 | [diff] [blame] | 128 | \end{verbatim} |
Fred Drake | 6ef871c | 1998-03-12 06:52:05 +0000 | [diff] [blame] | 129 | |
| 130 | If a field represents an uploaded file, the value attribute reads the |
| 131 | entire file in memory as a string. This may not be what you want. |
| 132 | You can test for an uploaded file by testing either the filename |
| 133 | attribute or the file attribute. You can then read the data at |
| 134 | leasure from the file attribute: |
Guido van Rossum | a29cc97 | 1996-07-30 18:22:07 +0000 | [diff] [blame] | 135 | |
Fred Drake | 1947991 | 1998-02-13 06:58:54 +0000 | [diff] [blame] | 136 | \begin{verbatim} |
Guido van Rossum | e47da0a | 1997-07-17 16:34:52 +0000 | [diff] [blame] | 137 | fileitem = form["userfile"] |
| 138 | if fileitem.file: |
| 139 | # It's an uploaded file; count lines |
| 140 | linecount = 0 |
| 141 | while 1: |
| 142 | line = fileitem.file.readline() |
| 143 | if not line: break |
| 144 | linecount = linecount + 1 |
Fred Drake | 1947991 | 1998-02-13 06:58:54 +0000 | [diff] [blame] | 145 | \end{verbatim} |
Guido van Rossum | a29cc97 | 1996-07-30 18:22:07 +0000 | [diff] [blame] | 146 | |
Fred Drake | 6ef871c | 1998-03-12 06:52:05 +0000 | [diff] [blame] | 147 | The file upload draft standard entertains the possibility of uploading |
| 148 | multiple files from one field (using a recursive |
| 149 | \mimetype{multipart/*} encoding). When this occurs, the item will be |
| 150 | a dictionary-like \class{FieldStorage} item. This can be determined |
| 151 | by testing its \member{type} attribute, which should be |
| 152 | \mimetype{multipart/form-data} (or perhaps another MIME type matching |
| 153 | \mimetype{multipart/*}). It this case, it can be iterated over |
| 154 | recursively just like the top-level form object. |
| 155 | |
| 156 | When a form is submitted in the ``old'' format (as the query string or |
| 157 | as a single data part of type |
| 158 | \mimetype{application/x-www-form-urlencoded}), the items will actually |
| 159 | be instances of the class \class{MiniFieldStorage}. In this case, the |
| 160 | list, file and filename attributes are always \code{None}. |
Guido van Rossum | a29cc97 | 1996-07-30 18:22:07 +0000 | [diff] [blame] | 161 | |
| 162 | |
| 163 | \subsection{Old classes} |
| 164 | |
Fred Drake | 6ef871c | 1998-03-12 06:52:05 +0000 | [diff] [blame] | 165 | These classes, present in earlier versions of the \module{cgi} module, |
| 166 | are still supported for backward compatibility. New applications |
| 167 | should use the \class{FieldStorage} class. |
Guido van Rossum | a29cc97 | 1996-07-30 18:22:07 +0000 | [diff] [blame] | 168 | |
Fred Drake | 6ef871c | 1998-03-12 06:52:05 +0000 | [diff] [blame] | 169 | \class{SvFormContentDict} stores single value form content as |
| 170 | dictionary; it assumes each field name occurs in the form only once. |
Guido van Rossum | a29cc97 | 1996-07-30 18:22:07 +0000 | [diff] [blame] | 171 | |
Fred Drake | 6ef871c | 1998-03-12 06:52:05 +0000 | [diff] [blame] | 172 | \class{FormContentDict} stores multiple value form content as a |
| 173 | dictionary (the form items are lists of values). Useful if your form |
| 174 | contains multiple fields with the same name. |
Guido van Rossum | a29cc97 | 1996-07-30 18:22:07 +0000 | [diff] [blame] | 175 | |
Fred Drake | 6ef871c | 1998-03-12 06:52:05 +0000 | [diff] [blame] | 176 | Other classes (\class{FormContent}, \class{InterpFormContentDict}) are |
| 177 | present for backwards compatibility with really old applications only. |
| 178 | If you still use these and would be inconvenienced when they |
| 179 | disappeared from a next version of this module, drop me a note. |
Guido van Rossum | a29cc97 | 1996-07-30 18:22:07 +0000 | [diff] [blame] | 180 | |
| 181 | |
| 182 | \subsection{Functions} |
Fred Drake | 4b3f031 | 1996-12-13 22:04:31 +0000 | [diff] [blame] | 183 | \nodename{Functions in cgi module} |
Guido van Rossum | a29cc97 | 1996-07-30 18:22:07 +0000 | [diff] [blame] | 184 | |
| 185 | These are useful if you want more control, or if you want to employ |
| 186 | some of the algorithms implemented in this module in other |
| 187 | circumstances. |
| 188 | |
Guido van Rossum | 81e479a | 1997-08-25 18:28:03 +0000 | [diff] [blame] | 189 | \begin{funcdesc}{parse}{fp} |
Fred Drake | 6ef871c | 1998-03-12 06:52:05 +0000 | [diff] [blame] | 190 | Parse a query in the environment or from a file (default |
| 191 | \code{sys.stdin}). |
Guido van Rossum | a29cc97 | 1996-07-30 18:22:07 +0000 | [diff] [blame] | 192 | \end{funcdesc} |
| 193 | |
Guido van Rossum | 81e479a | 1997-08-25 18:28:03 +0000 | [diff] [blame] | 194 | \begin{funcdesc}{parse_qs}{qs} |
Fred Drake | 6ef871c | 1998-03-12 06:52:05 +0000 | [diff] [blame] | 195 | Parse a query string given as a string argument (data of type |
| 196 | \mimetype{application/x-www-form-urlencoded}). |
Guido van Rossum | a29cc97 | 1996-07-30 18:22:07 +0000 | [diff] [blame] | 197 | \end{funcdesc} |
| 198 | |
Fred Drake | cce1090 | 1998-03-17 06:33:25 +0000 | [diff] [blame] | 199 | \begin{funcdesc}{parse_multipart}{fp, pdict} |
Fred Drake | 6ef871c | 1998-03-12 06:52:05 +0000 | [diff] [blame] | 200 | Parse input of type \mimetype{multipart/form-data} (for |
| 201 | file uploads). Arguments are \var{fp} for the input file and |
| 202 | \var{pdict} for the dictionary containing other parameters of |
| 203 | \code{content-type} header |
Guido van Rossum | a29cc97 | 1996-07-30 18:22:07 +0000 | [diff] [blame] | 204 | |
Fred Drake | 6ef871c | 1998-03-12 06:52:05 +0000 | [diff] [blame] | 205 | Returns a dictionary just like \function{parse_qs()} keys are the |
| 206 | field names, each value is a list of values for that field. This is |
| 207 | easy to use but not much good if you are expecting megabytes to be |
| 208 | uploaded --- in that case, use the \class{FieldStorage} class instead |
| 209 | which is much more flexible. Note that \code{content-type} is the |
| 210 | raw, unparsed contents of the \code{content-type} header. |
Guido van Rossum | a29cc97 | 1996-07-30 18:22:07 +0000 | [diff] [blame] | 211 | |
Fred Drake | 6ef871c | 1998-03-12 06:52:05 +0000 | [diff] [blame] | 212 | Note that this does not parse nested multipart parts --- use |
| 213 | \class{FieldStorage} for that. |
Guido van Rossum | a29cc97 | 1996-07-30 18:22:07 +0000 | [diff] [blame] | 214 | \end{funcdesc} |
| 215 | |
Guido van Rossum | 81e479a | 1997-08-25 18:28:03 +0000 | [diff] [blame] | 216 | \begin{funcdesc}{parse_header}{string} |
Fred Drake | 6ef871c | 1998-03-12 06:52:05 +0000 | [diff] [blame] | 217 | Parse a header like \code{content-type} into a main |
Guido van Rossum | a29cc97 | 1996-07-30 18:22:07 +0000 | [diff] [blame] | 218 | content-type and a dictionary of parameters. |
| 219 | \end{funcdesc} |
| 220 | |
Guido van Rossum | 81e479a | 1997-08-25 18:28:03 +0000 | [diff] [blame] | 221 | \begin{funcdesc}{test}{} |
Fred Drake | 6ef871c | 1998-03-12 06:52:05 +0000 | [diff] [blame] | 222 | Robust test CGI script, usable as main program. |
| 223 | Writes minimal HTTP headers and formats all information provided to |
| 224 | the script in HTML form. |
Guido van Rossum | a29cc97 | 1996-07-30 18:22:07 +0000 | [diff] [blame] | 225 | \end{funcdesc} |
| 226 | |
Guido van Rossum | 81e479a | 1997-08-25 18:28:03 +0000 | [diff] [blame] | 227 | \begin{funcdesc}{print_environ}{} |
Fred Drake | 6ef871c | 1998-03-12 06:52:05 +0000 | [diff] [blame] | 228 | Format the shell environment in HTML. |
Guido van Rossum | a29cc97 | 1996-07-30 18:22:07 +0000 | [diff] [blame] | 229 | \end{funcdesc} |
| 230 | |
Guido van Rossum | 81e479a | 1997-08-25 18:28:03 +0000 | [diff] [blame] | 231 | \begin{funcdesc}{print_form}{form} |
Fred Drake | 6ef871c | 1998-03-12 06:52:05 +0000 | [diff] [blame] | 232 | Format a form in HTML. |
Guido van Rossum | a29cc97 | 1996-07-30 18:22:07 +0000 | [diff] [blame] | 233 | \end{funcdesc} |
| 234 | |
Guido van Rossum | 81e479a | 1997-08-25 18:28:03 +0000 | [diff] [blame] | 235 | \begin{funcdesc}{print_directory}{} |
Fred Drake | 6ef871c | 1998-03-12 06:52:05 +0000 | [diff] [blame] | 236 | Format the current directory in HTML. |
Guido van Rossum | a29cc97 | 1996-07-30 18:22:07 +0000 | [diff] [blame] | 237 | \end{funcdesc} |
| 238 | |
Guido van Rossum | 81e479a | 1997-08-25 18:28:03 +0000 | [diff] [blame] | 239 | \begin{funcdesc}{print_environ_usage}{} |
Fred Drake | 6ef871c | 1998-03-12 06:52:05 +0000 | [diff] [blame] | 240 | Print a list of useful (used by CGI) environment variables in |
Guido van Rossum | a29cc97 | 1996-07-30 18:22:07 +0000 | [diff] [blame] | 241 | HTML. |
| 242 | \end{funcdesc} |
| 243 | |
Fred Drake | cce1090 | 1998-03-17 06:33:25 +0000 | [diff] [blame] | 244 | \begin{funcdesc}{escape}{s\optional{, quote}} |
Fred Drake | 6ef871c | 1998-03-12 06:52:05 +0000 | [diff] [blame] | 245 | Convert the characters |
| 246 | \character{\&}, \character{<} and \character{>} in string \var{s} to |
| 247 | HTML-safe sequences. Use this if you need to display text that might |
| 248 | contain such characters in HTML. If the optional flag \var{quote} is |
| 249 | true, the double quote character (\character{"}) is also translated; |
| 250 | this helps for inclusion in an HTML attribute value, e.g. in \code{<A |
| 251 | HREF="...">}. |
Guido van Rossum | a29cc97 | 1996-07-30 18:22:07 +0000 | [diff] [blame] | 252 | \end{funcdesc} |
| 253 | |
| 254 | |
| 255 | \subsection{Caring about security} |
| 256 | |
| 257 | There's one important rule: if you invoke an external program (e.g. |
Fred Drake | 6ef871c | 1998-03-12 06:52:05 +0000 | [diff] [blame] | 258 | via the \function{os.system()} or \function{os.popen()} functions), |
| 259 | make very sure you don't pass arbitrary strings received from the |
| 260 | client to the shell. This is a well-known security hole whereby |
| 261 | clever hackers anywhere on the web can exploit a gullible CGI script |
| 262 | to invoke arbitrary shell commands. Even parts of the URL or field |
| 263 | names cannot be trusted, since the request doesn't have to come from |
| 264 | your form! |
Guido van Rossum | a29cc97 | 1996-07-30 18:22:07 +0000 | [diff] [blame] | 265 | |
| 266 | To be on the safe side, if you must pass a string gotten from a form |
| 267 | to a shell command, you should make sure the string contains only |
| 268 | alphanumeric characters, dashes, underscores, and periods. |
| 269 | |
| 270 | |
| 271 | \subsection{Installing your CGI script on a Unix system} |
| 272 | |
| 273 | Read the documentation for your HTTP server and check with your local |
| 274 | system administrator to find the directory where CGI scripts should be |
Fred Drake | a2e268a | 1997-12-09 03:28:42 +0000 | [diff] [blame] | 275 | installed; usually this is in a directory \file{cgi-bin} in the server tree. |
Guido van Rossum | a29cc97 | 1996-07-30 18:22:07 +0000 | [diff] [blame] | 276 | |
| 277 | Make sure that your script is readable and executable by ``others''; the |
Fred Drake | 6ef871c | 1998-03-12 06:52:05 +0000 | [diff] [blame] | 278 | \UNIX{} file mode should be \code{0755} octal (use \samp{chmod 0755 |
| 279 | filename}). Make sure that the first line of the script contains |
| 280 | \code{\#!} starting in column 1 followed by the pathname of the Python |
| 281 | interpreter, for instance: |
Guido van Rossum | a29cc97 | 1996-07-30 18:22:07 +0000 | [diff] [blame] | 282 | |
Fred Drake | 1947991 | 1998-02-13 06:58:54 +0000 | [diff] [blame] | 283 | \begin{verbatim} |
Guido van Rossum | e47da0a | 1997-07-17 16:34:52 +0000 | [diff] [blame] | 284 | #!/usr/local/bin/python |
Fred Drake | 1947991 | 1998-02-13 06:58:54 +0000 | [diff] [blame] | 285 | \end{verbatim} |
Fred Drake | 6ef871c | 1998-03-12 06:52:05 +0000 | [diff] [blame] | 286 | |
Guido van Rossum | a29cc97 | 1996-07-30 18:22:07 +0000 | [diff] [blame] | 287 | Make sure the Python interpreter exists and is executable by ``others''. |
| 288 | |
| 289 | Make sure that any files your script needs to read or write are |
Fred Drake | 6ef871c | 1998-03-12 06:52:05 +0000 | [diff] [blame] | 290 | readable or writable, respectively, by ``others'' --- their mode |
| 291 | should be \code{0644} for readable and \code{0666} for writable. This |
| 292 | is because, for security reasons, the HTTP server executes your script |
| 293 | as user ``nobody'', without any special privileges. It can only read |
| 294 | (write, execute) files that everybody can read (write, execute). The |
| 295 | current directory at execution time is also different (it is usually |
| 296 | the server's cgi-bin directory) and the set of environment variables |
| 297 | is also different from what you get at login. In particular, don't |
| 298 | count on the shell's search path for executables (\envvar{PATH}) or |
| 299 | the Python module search path (\envvar{PYTHONPATH}) to be set to |
| 300 | anything interesting. |
Guido van Rossum | a29cc97 | 1996-07-30 18:22:07 +0000 | [diff] [blame] | 301 | |
| 302 | If you need to load modules from a directory which is not on Python's |
| 303 | default module search path, you can change the path in your script, |
| 304 | before importing other modules, e.g.: |
| 305 | |
Fred Drake | 1947991 | 1998-02-13 06:58:54 +0000 | [diff] [blame] | 306 | \begin{verbatim} |
Guido van Rossum | e47da0a | 1997-07-17 16:34:52 +0000 | [diff] [blame] | 307 | import sys |
| 308 | sys.path.insert(0, "/usr/home/joe/lib/python") |
| 309 | sys.path.insert(0, "/usr/local/lib/python") |
Fred Drake | 1947991 | 1998-02-13 06:58:54 +0000 | [diff] [blame] | 310 | \end{verbatim} |
Fred Drake | 6ef871c | 1998-03-12 06:52:05 +0000 | [diff] [blame] | 311 | |
Guido van Rossum | a29cc97 | 1996-07-30 18:22:07 +0000 | [diff] [blame] | 312 | (This way, the directory inserted last will be searched first!) |
| 313 | |
Fred Drake | efc1e0f | 1998-01-13 19:00:33 +0000 | [diff] [blame] | 314 | Instructions for non-\UNIX{} systems will vary; check your HTTP server's |
Guido van Rossum | a29cc97 | 1996-07-30 18:22:07 +0000 | [diff] [blame] | 315 | documentation (it will usually have a section on CGI scripts). |
| 316 | |
| 317 | |
| 318 | \subsection{Testing your CGI script} |
| 319 | |
| 320 | Unfortunately, a CGI script will generally not run when you try it |
| 321 | from the command line, and a script that works perfectly from the |
| 322 | command line may fail mysteriously when run from the server. There's |
| 323 | one reason why you should still test your script from the command |
Fred Drake | 6a79be8 | 1998-04-03 03:47:03 +0000 | [diff] [blame] | 324 | line: if it contains a syntax error, the Python interpreter won't |
Guido van Rossum | a29cc97 | 1996-07-30 18:22:07 +0000 | [diff] [blame] | 325 | execute it at all, and the HTTP server will most likely send a cryptic |
| 326 | error to the client. |
| 327 | |
| 328 | Assuming your script has no syntax errors, yet it does not work, you |
Fred Drake | 6ef871c | 1998-03-12 06:52:05 +0000 | [diff] [blame] | 329 | have no choice but to read the next section. |
Guido van Rossum | a29cc97 | 1996-07-30 18:22:07 +0000 | [diff] [blame] | 330 | |
| 331 | |
| 332 | \subsection{Debugging CGI scripts} |
| 333 | |
Fred Drake | 6ef871c | 1998-03-12 06:52:05 +0000 | [diff] [blame] | 334 | First of all, check for trivial installation errors --- reading the |
Guido van Rossum | a29cc97 | 1996-07-30 18:22:07 +0000 | [diff] [blame] | 335 | section above on installing your CGI script carefully can save you a |
| 336 | lot of time. If you wonder whether you have understood the |
| 337 | installation procedure correctly, try installing a copy of this module |
Fred Drake | a2e268a | 1997-12-09 03:28:42 +0000 | [diff] [blame] | 338 | file (\file{cgi.py}) as a CGI script. When invoked as a script, the file |
Guido van Rossum | a29cc97 | 1996-07-30 18:22:07 +0000 | [diff] [blame] | 339 | will dump its environment and the contents of the form in HTML form. |
| 340 | Give it the right mode etc, and send it a request. If it's installed |
Fred Drake | a2e268a | 1997-12-09 03:28:42 +0000 | [diff] [blame] | 341 | in the standard \file{cgi-bin} directory, it should be possible to send it a |
Guido van Rossum | a29cc97 | 1996-07-30 18:22:07 +0000 | [diff] [blame] | 342 | request by entering a URL into your browser of the form: |
| 343 | |
Fred Drake | 1947991 | 1998-02-13 06:58:54 +0000 | [diff] [blame] | 344 | \begin{verbatim} |
Guido van Rossum | e47da0a | 1997-07-17 16:34:52 +0000 | [diff] [blame] | 345 | http://yourhostname/cgi-bin/cgi.py?name=Joe+Blow&addr=At+Home |
Fred Drake | 1947991 | 1998-02-13 06:58:54 +0000 | [diff] [blame] | 346 | \end{verbatim} |
Fred Drake | 6ef871c | 1998-03-12 06:52:05 +0000 | [diff] [blame] | 347 | |
Guido van Rossum | a29cc97 | 1996-07-30 18:22:07 +0000 | [diff] [blame] | 348 | If this gives an error of type 404, the server cannot find the script |
| 349 | -- perhaps you need to install it in a different directory. If it |
| 350 | gives another error (e.g. 500), there's an installation problem that |
| 351 | you should fix before trying to go any further. If you get a nicely |
| 352 | formatted listing of the environment and form content (in this |
| 353 | example, the fields should be listed as ``addr'' with value ``At Home'' |
Fred Drake | a2e268a | 1997-12-09 03:28:42 +0000 | [diff] [blame] | 354 | and ``name'' with value ``Joe Blow''), the \file{cgi.py} script has been |
Guido van Rossum | a29cc97 | 1996-07-30 18:22:07 +0000 | [diff] [blame] | 355 | installed correctly. If you follow the same procedure for your own |
| 356 | script, you should now be able to debug it. |
| 357 | |
Fred Drake | 6ef871c | 1998-03-12 06:52:05 +0000 | [diff] [blame] | 358 | The next step could be to call the \module{cgi} module's |
| 359 | \function{test()} function from your script: replace its main code |
| 360 | with the single statement |
Guido van Rossum | a29cc97 | 1996-07-30 18:22:07 +0000 | [diff] [blame] | 361 | |
Fred Drake | 1947991 | 1998-02-13 06:58:54 +0000 | [diff] [blame] | 362 | \begin{verbatim} |
Guido van Rossum | e47da0a | 1997-07-17 16:34:52 +0000 | [diff] [blame] | 363 | cgi.test() |
Fred Drake | 1947991 | 1998-02-13 06:58:54 +0000 | [diff] [blame] | 364 | \end{verbatim} |
Fred Drake | 6ef871c | 1998-03-12 06:52:05 +0000 | [diff] [blame] | 365 | |
Guido van Rossum | a29cc97 | 1996-07-30 18:22:07 +0000 | [diff] [blame] | 366 | This should produce the same results as those gotten from installing |
Fred Drake | a2e268a | 1997-12-09 03:28:42 +0000 | [diff] [blame] | 367 | the \file{cgi.py} file itself. |
Guido van Rossum | a29cc97 | 1996-07-30 18:22:07 +0000 | [diff] [blame] | 368 | |
| 369 | When an ordinary Python script raises an unhandled exception |
| 370 | (e.g. because of a typo in a module name, a file that can't be opened, |
| 371 | etc.), the Python interpreter prints a nice traceback and exits. |
| 372 | While the Python interpreter will still do this when your CGI script |
| 373 | raises an exception, most likely the traceback will end up in one of |
| 374 | the HTTP server's log file, or be discarded altogether. |
| 375 | |
| 376 | Fortunately, once you have managed to get your script to execute |
Fred Drake | 6ef871c | 1998-03-12 06:52:05 +0000 | [diff] [blame] | 377 | \emph{some} code, it is easy to catch exceptions and cause a traceback |
| 378 | to be printed. The \function{test()} function below in this module is |
| 379 | an example. Here are the rules: |
Guido van Rossum | a29cc97 | 1996-07-30 18:22:07 +0000 | [diff] [blame] | 380 | |
| 381 | \begin{enumerate} |
Fred Drake | 6ef871c | 1998-03-12 06:52:05 +0000 | [diff] [blame] | 382 | \item Import the traceback module before entering the \keyword{try} |
| 383 | ... \keyword{except} statement |
| 384 | |
| 385 | \item Assign \code{sys.stderr} to be \code{sys.stdout} |
| 386 | |
| 387 | \item Make sure you finish printing the headers and the blank line |
| 388 | early |
| 389 | |
| 390 | \item Wrap all remaining code in a \keyword{try} ... \keyword{except} |
| 391 | statement |
| 392 | |
| 393 | \item In the except clause, call \function{traceback.print_exc()} |
Guido van Rossum | a29cc97 | 1996-07-30 18:22:07 +0000 | [diff] [blame] | 394 | \end{enumerate} |
| 395 | |
| 396 | For example: |
| 397 | |
Fred Drake | 1947991 | 1998-02-13 06:58:54 +0000 | [diff] [blame] | 398 | \begin{verbatim} |
Guido van Rossum | e47da0a | 1997-07-17 16:34:52 +0000 | [diff] [blame] | 399 | import sys |
| 400 | import traceback |
| 401 | print "Content-type: text/html" |
| 402 | print |
| 403 | sys.stderr = sys.stdout |
| 404 | try: |
| 405 | ...your code here... |
| 406 | except: |
| 407 | print "\n\n<PRE>" |
| 408 | traceback.print_exc() |
Fred Drake | 1947991 | 1998-02-13 06:58:54 +0000 | [diff] [blame] | 409 | \end{verbatim} |
Fred Drake | 6ef871c | 1998-03-12 06:52:05 +0000 | [diff] [blame] | 410 | |
| 411 | Notes: The assignment to \code{sys.stderr} is needed because the |
| 412 | traceback prints to \code{sys.stderr}. |
Guido van Rossum | 9d62e80 | 1997-11-25 00:35:44 +0000 | [diff] [blame] | 413 | The \code{print "{\e}n{\e}n<PRE>"} statement is necessary to |
Guido van Rossum | a29cc97 | 1996-07-30 18:22:07 +0000 | [diff] [blame] | 414 | disable the word wrapping in HTML. |
| 415 | |
| 416 | If you suspect that there may be a problem in importing the traceback |
| 417 | module, you can use an even more robust approach (which only uses |
| 418 | built-in modules): |
| 419 | |
Fred Drake | 1947991 | 1998-02-13 06:58:54 +0000 | [diff] [blame] | 420 | \begin{verbatim} |
Guido van Rossum | e47da0a | 1997-07-17 16:34:52 +0000 | [diff] [blame] | 421 | import sys |
| 422 | sys.stderr = sys.stdout |
| 423 | print "Content-type: text/plain" |
| 424 | print |
| 425 | ...your code here... |
Fred Drake | 1947991 | 1998-02-13 06:58:54 +0000 | [diff] [blame] | 426 | \end{verbatim} |
Fred Drake | 6ef871c | 1998-03-12 06:52:05 +0000 | [diff] [blame] | 427 | |
Guido van Rossum | a29cc97 | 1996-07-30 18:22:07 +0000 | [diff] [blame] | 428 | This relies on the Python interpreter to print the traceback. The |
| 429 | content type of the output is set to plain text, which disables all |
| 430 | HTML processing. If your script works, the raw HTML will be displayed |
| 431 | by your client. If it raises an exception, most likely after the |
| 432 | first two lines have been printed, a traceback will be displayed. |
| 433 | Because no HTML interpretation is going on, the traceback will |
| 434 | readable. |
| 435 | |
| 436 | |
| 437 | \subsection{Common problems and solutions} |
Guido van Rossum | 470be14 | 1995-03-17 16:07:09 +0000 | [diff] [blame] | 438 | |
| 439 | \begin{itemize} |
Guido van Rossum | a29cc97 | 1996-07-30 18:22:07 +0000 | [diff] [blame] | 440 | \item Most HTTP servers buffer the output from CGI scripts until the |
| 441 | script is completed. This means that it is not possible to display a |
| 442 | progress report on the client's display while the script is running. |
| 443 | |
| 444 | \item Check the installation instructions above. |
| 445 | |
Fred Drake | 6ef871c | 1998-03-12 06:52:05 +0000 | [diff] [blame] | 446 | \item Check the HTTP server's log files. (\samp{tail -f logfile} in a |
| 447 | separate window may be useful!) |
Guido van Rossum | a29cc97 | 1996-07-30 18:22:07 +0000 | [diff] [blame] | 448 | |
| 449 | \item Always check a script for syntax errors first, by doing something |
Fred Drake | 6ef871c | 1998-03-12 06:52:05 +0000 | [diff] [blame] | 450 | like \samp{python script.py}. |
Guido van Rossum | a29cc97 | 1996-07-30 18:22:07 +0000 | [diff] [blame] | 451 | |
| 452 | \item When using any of the debugging techniques, don't forget to add |
Fred Drake | 6ef871c | 1998-03-12 06:52:05 +0000 | [diff] [blame] | 453 | \samp{import sys} to the top of the script. |
Guido van Rossum | a29cc97 | 1996-07-30 18:22:07 +0000 | [diff] [blame] | 454 | |
| 455 | \item When invoking external programs, make sure they can be found. |
Fred Drake | 6ef871c | 1998-03-12 06:52:05 +0000 | [diff] [blame] | 456 | Usually, this means using absolute path names --- \envvar{PATH} is |
| 457 | usually not set to a very useful value in a CGI script. |
Guido van Rossum | a29cc97 | 1996-07-30 18:22:07 +0000 | [diff] [blame] | 458 | |
| 459 | \item When reading or writing external files, make sure they can be read |
| 460 | or written by every user on the system. |
| 461 | |
| 462 | \item Don't try to give a CGI script a set-uid mode. This doesn't work on |
| 463 | most systems, and is a security liability as well. |
Guido van Rossum | 470be14 | 1995-03-17 16:07:09 +0000 | [diff] [blame] | 464 | \end{itemize} |
| 465 | |