1 """CGI-savvy HTTP Server.
3 This module builds on SimpleHTTPServer by implementing GET and POST
4 requests to cgi-bin scripts.
6 If the os.fork() function is not present (e.g. on Windows),
7 os.popen2() is used as a fallback, with slightly altered semantics; if
8 that function is not present either (e.g. on Macintosh), only Python
9 scripts are supported, and they are executed by the current process.
11 In all cases, the implementation is intentionally naive -- all
12 requests are executed sychronously.
14 SECURITY WARNING: DON'T USE THIS CODE UNLESS YOU ARE INSIDE A FIREWALL
15 -- it may execute arbitrary Python code or external programs.
22 __all__
= ["CGIHTTPRequestHandler"]
28 import SimpleHTTPServer
31 class CGIHTTPRequestHandler(SimpleHTTPServer
.SimpleHTTPRequestHandler
):
33 """Complete HTTP server with GET, HEAD and POST commands.
35 GET and HEAD also support running CGI scripts.
37 The POST command is *only* implemented for CGI scripts.
41 # Determine platform specifics
42 have_fork
= hasattr(os
, 'fork')
43 have_popen2
= hasattr(os
, 'popen2')
44 have_popen3
= hasattr(os
, 'popen3')
46 # Make rfile unbuffered -- we need to read one line and then pass
47 # the rest to a subprocess, so we can't use buffered input.
51 """Serve a POST request.
53 This is only implemented for CGI scripts.
60 self
.send_error(501, "Can only POST to CGI scripts")
63 """Version of send_head that support CGI scripts"""
67 return SimpleHTTPServer
.SimpleHTTPRequestHandler
.send_head(self
)
70 """Test whether self.path corresponds to a CGI script.
72 Return a tuple (dir, rest) if self.path requires running a
73 CGI script, None if not. Note that rest begins with a
74 slash if it is not empty.
76 The default implementation tests whether the path
77 begins with one of the strings in the list
78 self.cgi_directories (and the next character is a '/'
79 or the end of the string).
85 for x
in self
.cgi_directories
:
87 if path
[:i
] == x
and (not path
[i
:] or path
[i
] == '/'):
88 self
.cgi_info
= path
[:i
], path
[i
+1:]
92 cgi_directories
= ['/cgi-bin', '/htbin']
94 def is_executable(self
, path
):
95 """Test whether argument path is an executable file."""
96 return executable(path
)
98 def is_python(self
, path
):
99 """Test whether argument path is a Python script."""
100 head
, tail
= os
.path
.splitext(path
)
101 return tail
.lower() in (".py", ".pyw")
104 """Execute a CGI script."""
105 dir, rest
= self
.cgi_info
108 rest
, query
= rest
[:i
], rest
[i
+1:]
113 script
, rest
= rest
[:i
], rest
[i
:]
115 script
, rest
= rest
, ''
116 scriptname
= dir + '/' + script
117 scriptfile
= self
.translate_path(scriptname
)
118 if not os
.path
.exists(scriptfile
):
119 self
.send_error(404, "No such CGI script (%s)" % `scriptname`
)
121 if not os
.path
.isfile(scriptfile
):
122 self
.send_error(403, "CGI script is not a plain file (%s)" %
125 ispy
= self
.is_python(scriptname
)
127 if not (self
.have_fork
or self
.have_popen2
or self
.have_popen3
):
128 self
.send_error(403, "CGI script is not a Python script (%s)" %
131 if not self
.is_executable(scriptfile
):
132 self
.send_error(403, "CGI script is not executable (%s)" %
136 # Reference: http://hoohoo.ncsa.uiuc.edu/cgi/env.html
137 # XXX Much of the following could be prepared ahead of time!
139 env
['SERVER_SOFTWARE'] = self
.version_string()
140 env
['SERVER_NAME'] = self
.server
.server_name
141 env
['GATEWAY_INTERFACE'] = 'CGI/1.1'
142 env
['SERVER_PROTOCOL'] = self
.protocol_version
143 env
['SERVER_PORT'] = str(self
.server
.server_port
)
144 env
['REQUEST_METHOD'] = self
.command
145 uqrest
= urllib
.unquote(rest
)
146 env
['PATH_INFO'] = uqrest
147 env
['PATH_TRANSLATED'] = self
.translate_path(uqrest
)
148 env
['SCRIPT_NAME'] = scriptname
150 env
['QUERY_STRING'] = query
151 host
= self
.address_string()
152 if host
!= self
.client_address
[0]:
153 env
['REMOTE_HOST'] = host
154 env
['REMOTE_ADDR'] = self
.client_address
[0]
158 if self
.headers
.typeheader
is None:
159 env
['CONTENT_TYPE'] = self
.headers
.type
161 env
['CONTENT_TYPE'] = self
.headers
.typeheader
162 length
= self
.headers
.getheader('content-length')
164 env
['CONTENT_LENGTH'] = length
166 for line
in self
.headers
.getallmatchingheaders('accept'):
167 if line
[:1] in "\t\n\r ":
168 accept
.append(line
.strip())
170 accept
= accept
+ line
[7:].split(',')
171 env
['HTTP_ACCEPT'] = ','.join(accept
)
172 ua
= self
.headers
.getheader('user-agent')
174 env
['HTTP_USER_AGENT'] = ua
175 co
= filter(None, self
.headers
.getheaders('cookie'))
177 env
['HTTP_COOKIE'] = ', '.join(co
)
178 # XXX Other HTTP_* headers
179 if not self
.have_fork
:
180 # Since we're setting the env in the parent, provide empty
181 # values to override previously set values
182 for k
in ('QUERY_STRING', 'REMOTE_HOST', 'CONTENT_LENGTH',
183 'HTTP_USER_AGENT', 'HTTP_COOKIE'):
184 env
.setdefault(k
, "")
185 os
.environ
.update(env
)
187 self
.send_response(200, "Script output follows")
189 decoded_query
= query
.replace('+', ' ')
192 # Unix -- fork as we should
194 if '=' not in decoded_query
:
195 args
.append(decoded_query
)
196 nobody
= nobody_uid()
197 self
.wfile
.flush() # Always flush before forking
201 pid
, sts
= os
.waitpid(pid
, 0)
203 self
.log_error("CGI script exit status %#x", sts
)
211 os
.dup2(self
.rfile
.fileno(), 0)
212 os
.dup2(self
.wfile
.fileno(), 1)
213 os
.execve(scriptfile
, args
, env
)
215 self
.server
.handle_error(self
.request
, self
.client_address
)
218 elif self
.have_popen2
or self
.have_popen3
:
219 # Windows -- use popen2 or popen3 to create a subprocess
226 if self
.is_python(scriptfile
):
227 interp
= sys
.executable
228 if interp
.lower().endswith("w.exe"):
229 # On Windows, use python.exe, not pythonw.exe
230 interp
= interp
[:-5] + interp
[-4:]
231 cmdline
= "%s -u %s" % (interp
, cmdline
)
232 if '=' not in query
and '"' not in query
:
233 cmdline
= '%s "%s"' % (cmdline
, query
)
234 self
.log_message("command: %s", cmdline
)
237 except (TypeError, ValueError):
239 files
= popenx(cmdline
, 'b')
244 if self
.command
.lower() == "post" and nbytes
> 0:
245 data
= self
.rfile
.read(nbytes
)
248 shutil
.copyfileobj(fo
, self
.wfile
)
253 self
.log_error('%s', errors
)
256 self
.log_error("CGI script exit status %#x", sts
)
258 self
.log_message("CGI script exited OK")
261 # Other O.S. -- execute script in this process
263 save_stdin
= sys
.stdin
264 save_stdout
= sys
.stdout
265 save_stderr
= sys
.stderr
268 sys
.argv
= [scriptfile
]
269 if '=' not in decoded_query
:
270 sys
.argv
.append(decoded_query
)
271 sys
.stdout
= self
.wfile
272 sys
.stdin
= self
.rfile
273 execfile(scriptfile
, {"__name__": "__main__"})
276 sys
.stdin
= save_stdin
277 sys
.stdout
= save_stdout
278 sys
.stderr
= save_stderr
279 except SystemExit, sts
:
280 self
.log_error("CGI script exit status %s", str(sts
))
282 self
.log_message("CGI script exited OK")
288 """Internal routine to get nobody's uid"""
297 nobody
= pwd
.getpwnam('nobody')[2]
299 nobody
= 1 + max(map(lambda x
: x
[2], pwd
.getpwall()))
303 def executable(path
):
304 """Test for executable file."""
309 return st
.st_mode
& 0111 != 0
312 def test(HandlerClass
= CGIHTTPRequestHandler
,
313 ServerClass
= BaseHTTPServer
.HTTPServer
):
314 SimpleHTTPServer
.test(HandlerClass
, ServerClass
)
317 if __name__
== '__main__':