Georg Brandl | 2442015 | 2008-05-26 16:32:26 +0000 | [diff] [blame] | 1 | """HTTP server classes. |
| 2 | |
| 3 | Note: BaseHTTPRequestHandler doesn't implement any HTTP request; see |
| 4 | SimpleHTTPRequestHandler for simple implementations of GET, HEAD and POST, |
| 5 | and CGIHTTPRequestHandler for CGI scripts. |
| 6 | |
| 7 | It does, however, optionally implement HTTP/1.1 persistent connections, |
| 8 | as of version 0.3. |
| 9 | |
| 10 | Notes on CGIHTTPRequestHandler |
| 11 | ------------------------------ |
| 12 | |
| 13 | This class implements GET and POST requests to cgi-bin scripts. |
| 14 | |
| 15 | If the os.fork() function is not present (e.g. on Windows), |
Amaury Forgeot d'Arc | cb0d2d7 | 2008-06-18 22:19:22 +0000 | [diff] [blame] | 16 | subprocess.Popen() is used as a fallback, with slightly altered semantics. |
Georg Brandl | 2442015 | 2008-05-26 16:32:26 +0000 | [diff] [blame] | 17 | |
| 18 | In all cases, the implementation is intentionally naive -- all |
| 19 | requests are executed synchronously. |
| 20 | |
| 21 | SECURITY WARNING: DON'T USE THIS CODE UNLESS YOU ARE INSIDE A FIREWALL |
| 22 | -- it may execute arbitrary Python code or external programs. |
| 23 | |
| 24 | Note that status code 200 is sent prior to execution of a CGI script, so |
| 25 | scripts cannot send other status codes such as 302 (redirect). |
| 26 | |
| 27 | XXX To do: |
| 28 | |
| 29 | - log requests even later (to capture byte count) |
| 30 | - log user-agent header and other interesting goodies |
| 31 | - send error log to separate file |
| 32 | """ |
| 33 | |
| 34 | |
| 35 | # See also: |
| 36 | # |
| 37 | # HTTP Working Group T. Berners-Lee |
| 38 | # INTERNET-DRAFT R. T. Fielding |
| 39 | # <draft-ietf-http-v10-spec-00.txt> H. Frystyk Nielsen |
| 40 | # Expires September 8, 1995 March 8, 1995 |
| 41 | # |
| 42 | # URL: http://www.ics.uci.edu/pub/ietf/http/draft-ietf-http-v10-spec-00.txt |
| 43 | # |
| 44 | # and |
| 45 | # |
| 46 | # Network Working Group R. Fielding |
| 47 | # Request for Comments: 2616 et al |
| 48 | # Obsoletes: 2068 June 1999 |
| 49 | # Category: Standards Track |
| 50 | # |
| 51 | # URL: http://www.faqs.org/rfcs/rfc2616.html |
| 52 | |
| 53 | # Log files |
| 54 | # --------- |
| 55 | # |
| 56 | # Here's a quote from the NCSA httpd docs about log file format. |
| 57 | # |
| 58 | # | The logfile format is as follows. Each line consists of: |
| 59 | # | |
| 60 | # | host rfc931 authuser [DD/Mon/YYYY:hh:mm:ss] "request" ddd bbbb |
| 61 | # | |
| 62 | # | host: Either the DNS name or the IP number of the remote client |
| 63 | # | rfc931: Any information returned by identd for this person, |
| 64 | # | - otherwise. |
| 65 | # | authuser: If user sent a userid for authentication, the user name, |
| 66 | # | - otherwise. |
| 67 | # | DD: Day |
| 68 | # | Mon: Month (calendar name) |
| 69 | # | YYYY: Year |
| 70 | # | hh: hour (24-hour format, the machine's timezone) |
| 71 | # | mm: minutes |
| 72 | # | ss: seconds |
| 73 | # | request: The first line of the HTTP request as sent by the client. |
| 74 | # | ddd: the status code returned by the server, - if not available. |
| 75 | # | bbbb: the total number of bytes sent, |
| 76 | # | *not including the HTTP/1.0 header*, - if not available |
| 77 | # | |
| 78 | # | You can determine the name of the file accessed through request. |
| 79 | # |
| 80 | # (Actually, the latter is only true if you know the server configuration |
| 81 | # at the time the request was made!) |
| 82 | |
| 83 | __version__ = "0.6" |
| 84 | |
| 85 | __all__ = ["HTTPServer", "BaseHTTPRequestHandler"] |
| 86 | |
Georg Brandl | 1f7fffb | 2010-10-15 15:57:45 +0000 | [diff] [blame] | 87 | import html |
Barry Warsaw | 820c120 | 2008-06-12 04:06:45 +0000 | [diff] [blame] | 88 | import email.message |
| 89 | import email.parser |
Jeremy Hylton | 914ab45 | 2009-03-27 17:16:06 +0000 | [diff] [blame] | 90 | import http.client |
| 91 | import io |
| 92 | import mimetypes |
| 93 | import os |
| 94 | import posixpath |
| 95 | import select |
| 96 | import shutil |
| 97 | import socket # For gethostbyaddr() |
| 98 | import socketserver |
| 99 | import sys |
| 100 | import time |
| 101 | import urllib.parse |
Senthil Kumaran | 4271372 | 2010-10-03 17:55:45 +0000 | [diff] [blame] | 102 | import copy |
Senthil Kumaran | 1251faf | 2012-06-03 16:15:54 +0800 | [diff] [blame] | 103 | import argparse |
| 104 | |
Georg Brandl | 2442015 | 2008-05-26 16:32:26 +0000 | [diff] [blame] | 105 | |
| 106 | # Default error message template |
| 107 | DEFAULT_ERROR_MESSAGE = """\ |
Senthil Kumaran | 1b407fe | 2011-03-20 10:44:30 +0800 | [diff] [blame] | 108 | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" |
| 109 | "http://www.w3.org/TR/html4/strict.dtd"> |
Ezio Melotti | ca897e9 | 2011-11-02 19:33:29 +0200 | [diff] [blame] | 110 | <html> |
Senthil Kumaran | b253c9f | 2011-03-17 16:43:22 +0800 | [diff] [blame] | 111 | <head> |
Senthil Kumaran | 1b407fe | 2011-03-20 10:44:30 +0800 | [diff] [blame] | 112 | <meta http-equiv="Content-Type" content="text/html;charset=utf-8"> |
Senthil Kumaran | b253c9f | 2011-03-17 16:43:22 +0800 | [diff] [blame] | 113 | <title>Error response</title> |
| 114 | </head> |
| 115 | <body> |
| 116 | <h1>Error response</h1> |
| 117 | <p>Error code: %(code)d</p> |
| 118 | <p>Message: %(message)s.</p> |
| 119 | <p>Error code explanation: %(code)s - %(explain)s.</p> |
| 120 | </body> |
| 121 | </html> |
Georg Brandl | 2442015 | 2008-05-26 16:32:26 +0000 | [diff] [blame] | 122 | """ |
| 123 | |
| 124 | DEFAULT_ERROR_CONTENT_TYPE = "text/html;charset=utf-8" |
| 125 | |
| 126 | def _quote_html(html): |
| 127 | return html.replace("&", "&").replace("<", "<").replace(">", ">") |
| 128 | |
| 129 | class HTTPServer(socketserver.TCPServer): |
| 130 | |
| 131 | allow_reuse_address = 1 # Seems to make sense in testing environment |
| 132 | |
| 133 | def server_bind(self): |
| 134 | """Override server_bind to store the server name.""" |
| 135 | socketserver.TCPServer.server_bind(self) |
| 136 | host, port = self.socket.getsockname()[:2] |
| 137 | self.server_name = socket.getfqdn(host) |
| 138 | self.server_port = port |
| 139 | |
| 140 | |
| 141 | class BaseHTTPRequestHandler(socketserver.StreamRequestHandler): |
| 142 | |
| 143 | """HTTP request handler base class. |
| 144 | |
| 145 | The following explanation of HTTP serves to guide you through the |
| 146 | code as well as to expose any misunderstandings I may have about |
| 147 | HTTP (so you don't need to read the code to figure out I'm wrong |
| 148 | :-). |
| 149 | |
| 150 | HTTP (HyperText Transfer Protocol) is an extensible protocol on |
| 151 | top of a reliable stream transport (e.g. TCP/IP). The protocol |
| 152 | recognizes three parts to a request: |
| 153 | |
| 154 | 1. One line identifying the request type and path |
| 155 | 2. An optional set of RFC-822-style headers |
| 156 | 3. An optional data part |
| 157 | |
| 158 | The headers and data are separated by a blank line. |
| 159 | |
| 160 | The first line of the request has the form |
| 161 | |
| 162 | <command> <path> <version> |
| 163 | |
| 164 | where <command> is a (case-sensitive) keyword such as GET or POST, |
| 165 | <path> is a string containing path information for the request, |
| 166 | and <version> should be the string "HTTP/1.0" or "HTTP/1.1". |
| 167 | <path> is encoded using the URL encoding scheme (using %xx to signify |
| 168 | the ASCII character with hex code xx). |
| 169 | |
| 170 | The specification specifies that lines are separated by CRLF but |
| 171 | for compatibility with the widest range of clients recommends |
| 172 | servers also handle LF. Similarly, whitespace in the request line |
| 173 | is treated sensibly (allowing multiple spaces between components |
| 174 | and allowing trailing whitespace). |
| 175 | |
| 176 | Similarly, for output, lines ought to be separated by CRLF pairs |
| 177 | but most clients grok LF characters just fine. |
| 178 | |
| 179 | If the first line of the request has the form |
| 180 | |
| 181 | <command> <path> |
| 182 | |
| 183 | (i.e. <version> is left out) then this is assumed to be an HTTP |
| 184 | 0.9 request; this form has no optional headers and data part and |
| 185 | the reply consists of just the data. |
| 186 | |
| 187 | The reply form of the HTTP 1.x protocol again has three parts: |
| 188 | |
| 189 | 1. One line giving the response code |
| 190 | 2. An optional set of RFC-822-style headers |
| 191 | 3. The data |
| 192 | |
| 193 | Again, the headers and data are separated by a blank line. |
| 194 | |
| 195 | The response code line has the form |
| 196 | |
| 197 | <version> <responsecode> <responsestring> |
| 198 | |
| 199 | where <version> is the protocol version ("HTTP/1.0" or "HTTP/1.1"), |
| 200 | <responsecode> is a 3-digit response code indicating success or |
| 201 | failure of the request, and <responsestring> is an optional |
| 202 | human-readable string explaining what the response code means. |
| 203 | |
| 204 | This server parses the request and the headers, and then calls a |
| 205 | function specific to the request type (<command>). Specifically, |
| 206 | a request SPAM will be handled by a method do_SPAM(). If no |
| 207 | such method exists the server sends an error response to the |
| 208 | client. If it exists, it is called with no arguments: |
| 209 | |
| 210 | do_SPAM() |
| 211 | |
| 212 | Note that the request name is case sensitive (i.e. SPAM and spam |
| 213 | are different requests). |
| 214 | |
| 215 | The various request details are stored in instance variables: |
| 216 | |
| 217 | - client_address is the client IP address in the form (host, |
| 218 | port); |
| 219 | |
| 220 | - command, path and version are the broken-down request line; |
| 221 | |
Barry Warsaw | 820c120 | 2008-06-12 04:06:45 +0000 | [diff] [blame] | 222 | - headers is an instance of email.message.Message (or a derived |
Georg Brandl | 2442015 | 2008-05-26 16:32:26 +0000 | [diff] [blame] | 223 | class) containing the header information; |
| 224 | |
| 225 | - rfile is a file object open for reading positioned at the |
| 226 | start of the optional input data part; |
| 227 | |
| 228 | - wfile is a file object open for writing. |
| 229 | |
| 230 | IT IS IMPORTANT TO ADHERE TO THE PROTOCOL FOR WRITING! |
| 231 | |
| 232 | The first thing to be written must be the response line. Then |
| 233 | follow 0 or more header lines, then a blank line, and then the |
| 234 | actual data (if any). The meaning of the header lines depends on |
| 235 | the command executed by the server; in most cases, when data is |
| 236 | returned, there should be at least one header line of the form |
| 237 | |
| 238 | Content-type: <type>/<subtype> |
| 239 | |
| 240 | where <type> and <subtype> should be registered MIME types, |
| 241 | e.g. "text/html" or "text/plain". |
| 242 | |
| 243 | """ |
| 244 | |
| 245 | # The Python system version, truncated to its first component. |
| 246 | sys_version = "Python/" + sys.version.split()[0] |
| 247 | |
| 248 | # The server software version. You may want to override this. |
| 249 | # The format is multiple whitespace-separated strings, |
| 250 | # where each string is of the form name[/version]. |
| 251 | server_version = "BaseHTTP/" + __version__ |
| 252 | |
| 253 | error_message_format = DEFAULT_ERROR_MESSAGE |
| 254 | error_content_type = DEFAULT_ERROR_CONTENT_TYPE |
| 255 | |
| 256 | # The default request version. This only affects responses up until |
| 257 | # the point where the request line is parsed, so it mainly decides what |
| 258 | # the client gets back when sending a malformed request line. |
| 259 | # Most web servers default to HTTP 0.9, i.e. don't send a status line. |
| 260 | default_request_version = "HTTP/0.9" |
| 261 | |
| 262 | def parse_request(self): |
| 263 | """Parse a request (internal). |
| 264 | |
| 265 | The request should be stored in self.raw_requestline; the results |
| 266 | are in self.command, self.path, self.request_version and |
| 267 | self.headers. |
| 268 | |
| 269 | Return True for success, False for failure; on failure, an |
| 270 | error is sent back. |
| 271 | |
| 272 | """ |
| 273 | self.command = None # set in case of error on the first line |
| 274 | self.request_version = version = self.default_request_version |
| 275 | self.close_connection = 1 |
| 276 | requestline = str(self.raw_requestline, 'iso-8859-1') |
Senthil Kumaran | 3075549 | 2011-12-23 17:03:41 +0800 | [diff] [blame] | 277 | requestline = requestline.rstrip('\r\n') |
Georg Brandl | 2442015 | 2008-05-26 16:32:26 +0000 | [diff] [blame] | 278 | self.requestline = requestline |
| 279 | words = requestline.split() |
| 280 | if len(words) == 3: |
Senthil Kumaran | 3075549 | 2011-12-23 17:03:41 +0800 | [diff] [blame] | 281 | command, path, version = words |
Georg Brandl | 2442015 | 2008-05-26 16:32:26 +0000 | [diff] [blame] | 282 | if version[:5] != 'HTTP/': |
| 283 | self.send_error(400, "Bad request version (%r)" % version) |
| 284 | return False |
| 285 | try: |
| 286 | base_version_number = version.split('/', 1)[1] |
| 287 | version_number = base_version_number.split(".") |
| 288 | # RFC 2145 section 3.1 says there can be only one "." and |
| 289 | # - major and minor numbers MUST be treated as |
| 290 | # separate integers; |
| 291 | # - HTTP/2.4 is a lower version than HTTP/2.13, which in |
| 292 | # turn is lower than HTTP/12.3; |
| 293 | # - Leading zeros MUST be ignored by recipients. |
| 294 | if len(version_number) != 2: |
| 295 | raise ValueError |
| 296 | version_number = int(version_number[0]), int(version_number[1]) |
| 297 | except (ValueError, IndexError): |
| 298 | self.send_error(400, "Bad request version (%r)" % version) |
| 299 | return False |
| 300 | if version_number >= (1, 1) and self.protocol_version >= "HTTP/1.1": |
| 301 | self.close_connection = 0 |
| 302 | if version_number >= (2, 0): |
| 303 | self.send_error(505, |
| 304 | "Invalid HTTP Version (%s)" % base_version_number) |
| 305 | return False |
| 306 | elif len(words) == 2: |
Senthil Kumaran | 3075549 | 2011-12-23 17:03:41 +0800 | [diff] [blame] | 307 | command, path = words |
Georg Brandl | 2442015 | 2008-05-26 16:32:26 +0000 | [diff] [blame] | 308 | self.close_connection = 1 |
| 309 | if command != 'GET': |
| 310 | self.send_error(400, |
| 311 | "Bad HTTP/0.9 request type (%r)" % command) |
| 312 | return False |
| 313 | elif not words: |
| 314 | return False |
| 315 | else: |
| 316 | self.send_error(400, "Bad request syntax (%r)" % requestline) |
| 317 | return False |
| 318 | self.command, self.path, self.request_version = command, path, version |
| 319 | |
| 320 | # Examine the headers and look for a Connection directive. |
Senthil Kumaran | 5466bf1 | 2010-12-18 16:55:23 +0000 | [diff] [blame] | 321 | try: |
| 322 | self.headers = http.client.parse_headers(self.rfile, |
| 323 | _class=self.MessageClass) |
| 324 | except http.client.LineTooLong: |
| 325 | self.send_error(400, "Line too long") |
| 326 | return False |
Georg Brandl | 2442015 | 2008-05-26 16:32:26 +0000 | [diff] [blame] | 327 | |
| 328 | conntype = self.headers.get('Connection', "") |
| 329 | if conntype.lower() == 'close': |
| 330 | self.close_connection = 1 |
| 331 | elif (conntype.lower() == 'keep-alive' and |
| 332 | self.protocol_version >= "HTTP/1.1"): |
| 333 | self.close_connection = 0 |
Senthil Kumaran | 0f476d4 | 2010-09-30 06:09:18 +0000 | [diff] [blame] | 334 | # Examine the headers and look for an Expect directive |
| 335 | expect = self.headers.get('Expect', "") |
| 336 | if (expect.lower() == "100-continue" and |
| 337 | self.protocol_version >= "HTTP/1.1" and |
| 338 | self.request_version >= "HTTP/1.1"): |
| 339 | if not self.handle_expect_100(): |
| 340 | return False |
| 341 | return True |
| 342 | |
| 343 | def handle_expect_100(self): |
| 344 | """Decide what to do with an "Expect: 100-continue" header. |
| 345 | |
| 346 | If the client is expecting a 100 Continue response, we must |
| 347 | respond with either a 100 Continue or a final response before |
| 348 | waiting for the request body. The default is to always respond |
| 349 | with a 100 Continue. You can behave differently (for example, |
| 350 | reject unauthorized requests) by overriding this method. |
| 351 | |
| 352 | This method should either return True (possibly after sending |
| 353 | a 100 Continue response) or send an error response and return |
| 354 | False. |
| 355 | |
| 356 | """ |
| 357 | self.send_response_only(100) |
Senthil Kumaran | c7ae19b | 2011-05-09 23:25:02 +0800 | [diff] [blame] | 358 | self.flush_headers() |
Georg Brandl | 2442015 | 2008-05-26 16:32:26 +0000 | [diff] [blame] | 359 | return True |
| 360 | |
| 361 | def handle_one_request(self): |
| 362 | """Handle a single HTTP request. |
| 363 | |
| 364 | You normally don't need to override this method; see the class |
| 365 | __doc__ string for information on how to handle specific HTTP |
| 366 | commands such as GET and POST. |
| 367 | |
| 368 | """ |
Kristján Valur Jónsson | 985fc6a | 2009-07-01 10:01:31 +0000 | [diff] [blame] | 369 | try: |
Antoine Pitrou | c492437 | 2010-12-16 16:48:36 +0000 | [diff] [blame] | 370 | self.raw_requestline = self.rfile.readline(65537) |
| 371 | if len(self.raw_requestline) > 65536: |
| 372 | self.requestline = '' |
| 373 | self.request_version = '' |
| 374 | self.command = '' |
| 375 | self.send_error(414) |
| 376 | return |
Kristján Valur Jónsson | 985fc6a | 2009-07-01 10:01:31 +0000 | [diff] [blame] | 377 | if not self.raw_requestline: |
| 378 | self.close_connection = 1 |
| 379 | return |
| 380 | if not self.parse_request(): |
| 381 | # An error code has been sent, just exit |
| 382 | return |
| 383 | mname = 'do_' + self.command |
| 384 | if not hasattr(self, mname): |
| 385 | self.send_error(501, "Unsupported method (%r)" % self.command) |
| 386 | return |
| 387 | method = getattr(self, mname) |
| 388 | method() |
| 389 | self.wfile.flush() #actually send the response if not already done. |
| 390 | except socket.timeout as e: |
| 391 | #a read or a write timed out. Discard this connection |
| 392 | self.log_error("Request timed out: %r", e) |
Georg Brandl | 2442015 | 2008-05-26 16:32:26 +0000 | [diff] [blame] | 393 | self.close_connection = 1 |
| 394 | return |
Georg Brandl | 2442015 | 2008-05-26 16:32:26 +0000 | [diff] [blame] | 395 | |
| 396 | def handle(self): |
| 397 | """Handle multiple requests if necessary.""" |
| 398 | self.close_connection = 1 |
| 399 | |
| 400 | self.handle_one_request() |
| 401 | while not self.close_connection: |
| 402 | self.handle_one_request() |
| 403 | |
| 404 | def send_error(self, code, message=None): |
| 405 | """Send and log an error reply. |
| 406 | |
| 407 | Arguments are the error code, and a detailed message. |
| 408 | The detailed message defaults to the short entry matching the |
| 409 | response code. |
| 410 | |
| 411 | This sends an error response (so it must be called before any |
| 412 | output has been generated), logs the error, and finally sends |
| 413 | a piece of HTML explaining the error to the user. |
| 414 | |
| 415 | """ |
| 416 | |
| 417 | try: |
| 418 | shortmsg, longmsg = self.responses[code] |
| 419 | except KeyError: |
| 420 | shortmsg, longmsg = '???', '???' |
| 421 | if message is None: |
| 422 | message = shortmsg |
| 423 | explain = longmsg |
| 424 | self.log_error("code %d, message %s", code, message) |
| 425 | # using _quote_html to prevent Cross Site Scripting attacks (see bug #1100201) |
| 426 | content = (self.error_message_format % |
| 427 | {'code': code, 'message': _quote_html(message), 'explain': explain}) |
Senthil Kumaran | 1e7551d | 2013-03-05 02:25:58 -0800 | [diff] [blame] | 428 | self.send_response(code, message) |
Georg Brandl | 2442015 | 2008-05-26 16:32:26 +0000 | [diff] [blame] | 429 | self.send_header("Content-Type", self.error_content_type) |
| 430 | self.send_header('Connection', 'close') |
| 431 | self.end_headers() |
| 432 | if self.command != 'HEAD' and code >= 200 and code not in (204, 304): |
| 433 | self.wfile.write(content.encode('UTF-8', 'replace')) |
| 434 | |
| 435 | def send_response(self, code, message=None): |
Senthil Kumaran | c7ae19b | 2011-05-09 23:25:02 +0800 | [diff] [blame] | 436 | """Add the response header to the headers buffer and log the |
| 437 | response code. |
Georg Brandl | 2442015 | 2008-05-26 16:32:26 +0000 | [diff] [blame] | 438 | |
| 439 | Also send two standard headers with the server software |
| 440 | version and the current date. |
| 441 | |
| 442 | """ |
| 443 | self.log_request(code) |
Senthil Kumaran | 0f476d4 | 2010-09-30 06:09:18 +0000 | [diff] [blame] | 444 | self.send_response_only(code, message) |
| 445 | self.send_header('Server', self.version_string()) |
| 446 | self.send_header('Date', self.date_time_string()) |
| 447 | |
| 448 | def send_response_only(self, code, message=None): |
| 449 | """Send the response header only.""" |
Georg Brandl | 2442015 | 2008-05-26 16:32:26 +0000 | [diff] [blame] | 450 | if message is None: |
| 451 | if code in self.responses: |
| 452 | message = self.responses[code][0] |
| 453 | else: |
| 454 | message = '' |
| 455 | if self.request_version != 'HTTP/0.9': |
Senthil Kumaran | c7ae19b | 2011-05-09 23:25:02 +0800 | [diff] [blame] | 456 | if not hasattr(self, '_headers_buffer'): |
| 457 | self._headers_buffer = [] |
| 458 | self._headers_buffer.append(("%s %d %s\r\n" % |
| 459 | (self.protocol_version, code, message)).encode( |
| 460 | 'latin-1', 'strict')) |
Georg Brandl | 2442015 | 2008-05-26 16:32:26 +0000 | [diff] [blame] | 461 | |
| 462 | def send_header(self, keyword, value): |
Senthil Kumaran | c7ae19b | 2011-05-09 23:25:02 +0800 | [diff] [blame] | 463 | """Send a MIME header to the headers buffer.""" |
Georg Brandl | 2442015 | 2008-05-26 16:32:26 +0000 | [diff] [blame] | 464 | if self.request_version != 'HTTP/0.9': |
Senthil Kumaran | e4dad4f | 2010-11-21 14:36:14 +0000 | [diff] [blame] | 465 | if not hasattr(self, '_headers_buffer'): |
| 466 | self._headers_buffer = [] |
| 467 | self._headers_buffer.append( |
Marc-André Lemburg | 8f36af7 | 2011-02-25 15:42:01 +0000 | [diff] [blame] | 468 | ("%s: %s\r\n" % (keyword, value)).encode('latin-1', 'strict')) |
Georg Brandl | 2442015 | 2008-05-26 16:32:26 +0000 | [diff] [blame] | 469 | |
| 470 | if keyword.lower() == 'connection': |
| 471 | if value.lower() == 'close': |
| 472 | self.close_connection = 1 |
| 473 | elif value.lower() == 'keep-alive': |
| 474 | self.close_connection = 0 |
| 475 | |
| 476 | def end_headers(self): |
| 477 | """Send the blank line ending the MIME headers.""" |
| 478 | if self.request_version != 'HTTP/0.9': |
Senthil Kumaran | e4dad4f | 2010-11-21 14:36:14 +0000 | [diff] [blame] | 479 | self._headers_buffer.append(b"\r\n") |
Senthil Kumaran | c7ae19b | 2011-05-09 23:25:02 +0800 | [diff] [blame] | 480 | self.flush_headers() |
| 481 | |
| 482 | def flush_headers(self): |
| 483 | if hasattr(self, '_headers_buffer'): |
Senthil Kumaran | e4dad4f | 2010-11-21 14:36:14 +0000 | [diff] [blame] | 484 | self.wfile.write(b"".join(self._headers_buffer)) |
| 485 | self._headers_buffer = [] |
Georg Brandl | 2442015 | 2008-05-26 16:32:26 +0000 | [diff] [blame] | 486 | |
| 487 | def log_request(self, code='-', size='-'): |
| 488 | """Log an accepted request. |
| 489 | |
| 490 | This is called by send_response(). |
| 491 | |
| 492 | """ |
| 493 | |
| 494 | self.log_message('"%s" %s %s', |
| 495 | self.requestline, str(code), str(size)) |
| 496 | |
| 497 | def log_error(self, format, *args): |
| 498 | """Log an error. |
| 499 | |
| 500 | This is called when a request cannot be fulfilled. By |
| 501 | default it passes the message on to log_message(). |
| 502 | |
| 503 | Arguments are the same as for log_message(). |
| 504 | |
| 505 | XXX This should go to the separate error log. |
| 506 | |
| 507 | """ |
| 508 | |
| 509 | self.log_message(format, *args) |
| 510 | |
| 511 | def log_message(self, format, *args): |
| 512 | """Log an arbitrary message. |
| 513 | |
| 514 | This is used by all other logging functions. Override |
| 515 | it if you have specific logging wishes. |
| 516 | |
| 517 | The first argument, FORMAT, is a format string for the |
| 518 | message to be logged. If the format string contains |
| 519 | any % escapes requiring parameters, they should be |
| 520 | specified as subsequent arguments (it's just like |
| 521 | printf!). |
| 522 | |
Senthil Kumaran | db727b4 | 2012-04-29 13:41:03 +0800 | [diff] [blame] | 523 | The client ip and current date/time are prefixed to |
Georg Brandl | 2442015 | 2008-05-26 16:32:26 +0000 | [diff] [blame] | 524 | every message. |
| 525 | |
| 526 | """ |
| 527 | |
| 528 | sys.stderr.write("%s - - [%s] %s\n" % |
| 529 | (self.address_string(), |
| 530 | self.log_date_time_string(), |
| 531 | format%args)) |
| 532 | |
| 533 | def version_string(self): |
| 534 | """Return the server software version string.""" |
| 535 | return self.server_version + ' ' + self.sys_version |
| 536 | |
| 537 | def date_time_string(self, timestamp=None): |
| 538 | """Return the current date and time formatted for a message header.""" |
| 539 | if timestamp is None: |
| 540 | timestamp = time.time() |
| 541 | year, month, day, hh, mm, ss, wd, y, z = time.gmtime(timestamp) |
| 542 | s = "%s, %02d %3s %4d %02d:%02d:%02d GMT" % ( |
| 543 | self.weekdayname[wd], |
| 544 | day, self.monthname[month], year, |
| 545 | hh, mm, ss) |
| 546 | return s |
| 547 | |
| 548 | def log_date_time_string(self): |
| 549 | """Return the current time formatted for logging.""" |
| 550 | now = time.time() |
| 551 | year, month, day, hh, mm, ss, x, y, z = time.localtime(now) |
| 552 | s = "%02d/%3s/%04d %02d:%02d:%02d" % ( |
| 553 | day, self.monthname[month], year, hh, mm, ss) |
| 554 | return s |
| 555 | |
| 556 | weekdayname = ['Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat', 'Sun'] |
| 557 | |
| 558 | monthname = [None, |
| 559 | 'Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', |
| 560 | 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec'] |
| 561 | |
| 562 | def address_string(self): |
Senthil Kumaran | 1aacba4 | 2012-04-29 12:51:54 +0800 | [diff] [blame] | 563 | """Return the client address.""" |
Georg Brandl | 2442015 | 2008-05-26 16:32:26 +0000 | [diff] [blame] | 564 | |
Senthil Kumaran | 1aacba4 | 2012-04-29 12:51:54 +0800 | [diff] [blame] | 565 | return self.client_address[0] |
Georg Brandl | 2442015 | 2008-05-26 16:32:26 +0000 | [diff] [blame] | 566 | |
| 567 | # Essentially static class variables |
| 568 | |
| 569 | # The version of the HTTP protocol we support. |
| 570 | # Set this to HTTP/1.1 to enable automatic keepalive |
| 571 | protocol_version = "HTTP/1.0" |
| 572 | |
Barry Warsaw | 820c120 | 2008-06-12 04:06:45 +0000 | [diff] [blame] | 573 | # MessageClass used to parse headers |
Barry Warsaw | 820c120 | 2008-06-12 04:06:45 +0000 | [diff] [blame] | 574 | MessageClass = http.client.HTTPMessage |
Georg Brandl | 2442015 | 2008-05-26 16:32:26 +0000 | [diff] [blame] | 575 | |
| 576 | # Table mapping response codes to messages; entries have the |
| 577 | # form {code: (shortmessage, longmessage)}. |
Hynek Schlawack | 51b2ed5 | 2012-05-16 09:51:07 +0200 | [diff] [blame] | 578 | # See RFC 2616 and 6585. |
Georg Brandl | 2442015 | 2008-05-26 16:32:26 +0000 | [diff] [blame] | 579 | responses = { |
| 580 | 100: ('Continue', 'Request received, please continue'), |
| 581 | 101: ('Switching Protocols', |
| 582 | 'Switching to new protocol; obey Upgrade header'), |
| 583 | |
| 584 | 200: ('OK', 'Request fulfilled, document follows'), |
| 585 | 201: ('Created', 'Document created, URL follows'), |
| 586 | 202: ('Accepted', |
| 587 | 'Request accepted, processing continues off-line'), |
| 588 | 203: ('Non-Authoritative Information', 'Request fulfilled from cache'), |
| 589 | 204: ('No Content', 'Request fulfilled, nothing follows'), |
| 590 | 205: ('Reset Content', 'Clear input form for further input.'), |
| 591 | 206: ('Partial Content', 'Partial content follows.'), |
| 592 | |
| 593 | 300: ('Multiple Choices', |
| 594 | 'Object has several resources -- see URI list'), |
| 595 | 301: ('Moved Permanently', 'Object moved permanently -- see URI list'), |
| 596 | 302: ('Found', 'Object moved temporarily -- see URI list'), |
| 597 | 303: ('See Other', 'Object moved -- see Method and URL list'), |
| 598 | 304: ('Not Modified', |
| 599 | 'Document has not changed since given time'), |
| 600 | 305: ('Use Proxy', |
| 601 | 'You must use proxy specified in Location to access this ' |
| 602 | 'resource.'), |
| 603 | 307: ('Temporary Redirect', |
| 604 | 'Object moved temporarily -- see URI list'), |
| 605 | |
| 606 | 400: ('Bad Request', |
| 607 | 'Bad request syntax or unsupported method'), |
| 608 | 401: ('Unauthorized', |
| 609 | 'No permission -- see authorization schemes'), |
| 610 | 402: ('Payment Required', |
| 611 | 'No payment -- see charging schemes'), |
| 612 | 403: ('Forbidden', |
| 613 | 'Request forbidden -- authorization will not help'), |
| 614 | 404: ('Not Found', 'Nothing matches the given URI'), |
| 615 | 405: ('Method Not Allowed', |
Senthil Kumaran | 7aa2621 | 2010-02-22 11:00:50 +0000 | [diff] [blame] | 616 | 'Specified method is invalid for this resource.'), |
Georg Brandl | 2442015 | 2008-05-26 16:32:26 +0000 | [diff] [blame] | 617 | 406: ('Not Acceptable', 'URI not available in preferred format.'), |
| 618 | 407: ('Proxy Authentication Required', 'You must authenticate with ' |
| 619 | 'this proxy before proceeding.'), |
| 620 | 408: ('Request Timeout', 'Request timed out; try again later.'), |
| 621 | 409: ('Conflict', 'Request conflict.'), |
| 622 | 410: ('Gone', |
| 623 | 'URI no longer exists and has been permanently removed.'), |
| 624 | 411: ('Length Required', 'Client must specify Content-Length.'), |
| 625 | 412: ('Precondition Failed', 'Precondition in headers is false.'), |
| 626 | 413: ('Request Entity Too Large', 'Entity is too large.'), |
| 627 | 414: ('Request-URI Too Long', 'URI is too long.'), |
| 628 | 415: ('Unsupported Media Type', 'Entity body in unsupported format.'), |
| 629 | 416: ('Requested Range Not Satisfiable', |
| 630 | 'Cannot satisfy request range.'), |
| 631 | 417: ('Expectation Failed', |
| 632 | 'Expect condition could not be satisfied.'), |
Hynek Schlawack | 51b2ed5 | 2012-05-16 09:51:07 +0200 | [diff] [blame] | 633 | 428: ('Precondition Required', |
| 634 | 'The origin server requires the request to be conditional.'), |
| 635 | 429: ('Too Many Requests', 'The user has sent too many requests ' |
| 636 | 'in a given amount of time ("rate limiting").'), |
| 637 | 431: ('Request Header Fields Too Large', 'The server is unwilling to ' |
| 638 | 'process the request because its header fields are too large.'), |
Georg Brandl | 2442015 | 2008-05-26 16:32:26 +0000 | [diff] [blame] | 639 | |
| 640 | 500: ('Internal Server Error', 'Server got itself in trouble'), |
| 641 | 501: ('Not Implemented', |
| 642 | 'Server does not support this operation'), |
| 643 | 502: ('Bad Gateway', 'Invalid responses from another server/proxy.'), |
| 644 | 503: ('Service Unavailable', |
| 645 | 'The server cannot process the request due to a high load'), |
| 646 | 504: ('Gateway Timeout', |
| 647 | 'The gateway server did not receive a timely response'), |
| 648 | 505: ('HTTP Version Not Supported', 'Cannot fulfill request.'), |
Hynek Schlawack | 51b2ed5 | 2012-05-16 09:51:07 +0200 | [diff] [blame] | 649 | 511: ('Network Authentication Required', |
| 650 | 'The client needs to authenticate to gain network access.'), |
Georg Brandl | 2442015 | 2008-05-26 16:32:26 +0000 | [diff] [blame] | 651 | } |
| 652 | |
| 653 | |
| 654 | class SimpleHTTPRequestHandler(BaseHTTPRequestHandler): |
| 655 | |
| 656 | """Simple HTTP request handler with GET and HEAD commands. |
| 657 | |
| 658 | This serves files from the current directory and any of its |
| 659 | subdirectories. The MIME type for files is determined by |
| 660 | calling the .guess_type() method. |
| 661 | |
| 662 | The GET and HEAD requests are identical except that the HEAD |
| 663 | request omits the actual contents of the file. |
| 664 | |
| 665 | """ |
| 666 | |
| 667 | server_version = "SimpleHTTP/" + __version__ |
| 668 | |
| 669 | def do_GET(self): |
| 670 | """Serve a GET request.""" |
| 671 | f = self.send_head() |
| 672 | if f: |
| 673 | self.copyfile(f, self.wfile) |
| 674 | f.close() |
| 675 | |
| 676 | def do_HEAD(self): |
| 677 | """Serve a HEAD request.""" |
| 678 | f = self.send_head() |
| 679 | if f: |
| 680 | f.close() |
| 681 | |
| 682 | def send_head(self): |
| 683 | """Common code for GET and HEAD commands. |
| 684 | |
| 685 | This sends the response code and MIME headers. |
| 686 | |
| 687 | Return value is either a file object (which has to be copied |
| 688 | to the outputfile by the caller unless the command was HEAD, |
| 689 | and must be closed by the caller under all circumstances), or |
| 690 | None, in which case the caller has nothing further to do. |
| 691 | |
| 692 | """ |
| 693 | path = self.translate_path(self.path) |
| 694 | f = None |
| 695 | if os.path.isdir(path): |
| 696 | if not self.path.endswith('/'): |
| 697 | # redirect browser - doing basically what apache does |
| 698 | self.send_response(301) |
| 699 | self.send_header("Location", self.path + "/") |
| 700 | self.end_headers() |
| 701 | return None |
| 702 | for index in "index.html", "index.htm": |
| 703 | index = os.path.join(path, index) |
| 704 | if os.path.exists(index): |
| 705 | path = index |
| 706 | break |
| 707 | else: |
| 708 | return self.list_directory(path) |
| 709 | ctype = self.guess_type(path) |
| 710 | try: |
| 711 | f = open(path, 'rb') |
| 712 | except IOError: |
| 713 | self.send_error(404, "File not found") |
| 714 | return None |
| 715 | self.send_response(200) |
| 716 | self.send_header("Content-type", ctype) |
| 717 | fs = os.fstat(f.fileno()) |
| 718 | self.send_header("Content-Length", str(fs[6])) |
| 719 | self.send_header("Last-Modified", self.date_time_string(fs.st_mtime)) |
| 720 | self.end_headers() |
| 721 | return f |
| 722 | |
| 723 | def list_directory(self, path): |
| 724 | """Helper to produce a directory listing (absent index.html). |
| 725 | |
| 726 | Return value is either a file object, or None (indicating an |
| 727 | error). In either case, the headers are sent, making the |
| 728 | interface the same as for send_head(). |
| 729 | |
| 730 | """ |
| 731 | try: |
| 732 | list = os.listdir(path) |
| 733 | except os.error: |
| 734 | self.send_error(404, "No permission to list directory") |
| 735 | return None |
| 736 | list.sort(key=lambda a: a.lower()) |
| 737 | r = [] |
Georg Brandl | 1f7fffb | 2010-10-15 15:57:45 +0000 | [diff] [blame] | 738 | displaypath = html.escape(urllib.parse.unquote(self.path)) |
Ezio Melotti | ca897e9 | 2011-11-02 19:33:29 +0200 | [diff] [blame] | 739 | enc = sys.getfilesystemencoding() |
| 740 | title = 'Directory listing for %s' % displaypath |
| 741 | r.append('<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" ' |
| 742 | '"http://www.w3.org/TR/html4/strict.dtd">') |
| 743 | r.append('<html>\n<head>') |
| 744 | r.append('<meta http-equiv="Content-Type" ' |
| 745 | 'content="text/html; charset=%s">' % enc) |
| 746 | r.append('<title>%s</title>\n</head>' % title) |
| 747 | r.append('<body>\n<h1>%s</h1>' % title) |
| 748 | r.append('<hr>\n<ul>') |
Georg Brandl | 2442015 | 2008-05-26 16:32:26 +0000 | [diff] [blame] | 749 | for name in list: |
| 750 | fullname = os.path.join(path, name) |
| 751 | displayname = linkname = name |
| 752 | # Append / for directories or @ for symbolic links |
| 753 | if os.path.isdir(fullname): |
| 754 | displayname = name + "/" |
| 755 | linkname = name + "/" |
| 756 | if os.path.islink(fullname): |
| 757 | displayname = name + "@" |
| 758 | # Note: a link to a directory displays with @ and links with / |
Ezio Melotti | ca897e9 | 2011-11-02 19:33:29 +0200 | [diff] [blame] | 759 | r.append('<li><a href="%s">%s</a></li>' |
Georg Brandl | 1f7fffb | 2010-10-15 15:57:45 +0000 | [diff] [blame] | 760 | % (urllib.parse.quote(linkname), html.escape(displayname))) |
Ezio Melotti | ca897e9 | 2011-11-02 19:33:29 +0200 | [diff] [blame] | 761 | r.append('</ul>\n<hr>\n</body>\n</html>\n') |
| 762 | encoded = '\n'.join(r).encode(enc) |
Georg Brandl | 2442015 | 2008-05-26 16:32:26 +0000 | [diff] [blame] | 763 | f = io.BytesIO() |
| 764 | f.write(encoded) |
| 765 | f.seek(0) |
| 766 | self.send_response(200) |
| 767 | self.send_header("Content-type", "text/html; charset=%s" % enc) |
| 768 | self.send_header("Content-Length", str(len(encoded))) |
| 769 | self.end_headers() |
| 770 | return f |
| 771 | |
| 772 | def translate_path(self, path): |
| 773 | """Translate a /-separated PATH to the local filename syntax. |
| 774 | |
| 775 | Components that mean special things to the local file system |
| 776 | (e.g. drive or directory names) are ignored. (XXX They should |
| 777 | probably be diagnosed.) |
| 778 | |
| 779 | """ |
| 780 | # abandon query parameters |
| 781 | path = path.split('?',1)[0] |
| 782 | path = path.split('#',1)[0] |
Senthil Kumaran | 72c238e | 2013-09-13 00:21:18 -0700 | [diff] [blame] | 783 | # Don't forget explicit trailing slash when normalizing. Issue17324 |
Senthil Kumaran | 600b735 | 2013-09-29 18:59:04 -0700 | [diff] [blame] | 784 | trailing_slash = path.rstrip().endswith('/') |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 785 | path = posixpath.normpath(urllib.parse.unquote(path)) |
Georg Brandl | 2442015 | 2008-05-26 16:32:26 +0000 | [diff] [blame] | 786 | words = path.split('/') |
| 787 | words = filter(None, words) |
| 788 | path = os.getcwd() |
| 789 | for word in words: |
| 790 | drive, word = os.path.splitdrive(word) |
| 791 | head, word = os.path.split(word) |
| 792 | if word in (os.curdir, os.pardir): continue |
| 793 | path = os.path.join(path, word) |
Senthil Kumaran | 72c238e | 2013-09-13 00:21:18 -0700 | [diff] [blame] | 794 | if trailing_slash: |
| 795 | path += '/' |
Georg Brandl | 2442015 | 2008-05-26 16:32:26 +0000 | [diff] [blame] | 796 | return path |
| 797 | |
| 798 | def copyfile(self, source, outputfile): |
| 799 | """Copy all data between two file objects. |
| 800 | |
| 801 | The SOURCE argument is a file object open for reading |
| 802 | (or anything with a read() method) and the DESTINATION |
| 803 | argument is a file object open for writing (or |
| 804 | anything with a write() method). |
| 805 | |
| 806 | The only reason for overriding this would be to change |
| 807 | the block size or perhaps to replace newlines by CRLF |
| 808 | -- note however that this the default server uses this |
| 809 | to copy binary data as well. |
| 810 | |
| 811 | """ |
| 812 | shutil.copyfileobj(source, outputfile) |
| 813 | |
| 814 | def guess_type(self, path): |
| 815 | """Guess the type of a file. |
| 816 | |
| 817 | Argument is a PATH (a filename). |
| 818 | |
| 819 | Return value is a string of the form type/subtype, |
| 820 | usable for a MIME Content-type header. |
| 821 | |
| 822 | The default implementation looks the file's extension |
| 823 | up in the table self.extensions_map, using application/octet-stream |
| 824 | as a default; however it would be permissible (if |
| 825 | slow) to look inside the data to make a better guess. |
| 826 | |
| 827 | """ |
| 828 | |
| 829 | base, ext = posixpath.splitext(path) |
| 830 | if ext in self.extensions_map: |
| 831 | return self.extensions_map[ext] |
| 832 | ext = ext.lower() |
| 833 | if ext in self.extensions_map: |
| 834 | return self.extensions_map[ext] |
| 835 | else: |
| 836 | return self.extensions_map[''] |
| 837 | |
| 838 | if not mimetypes.inited: |
| 839 | mimetypes.init() # try to read system mime.types |
| 840 | extensions_map = mimetypes.types_map.copy() |
| 841 | extensions_map.update({ |
| 842 | '': 'application/octet-stream', # Default |
| 843 | '.py': 'text/plain', |
| 844 | '.c': 'text/plain', |
| 845 | '.h': 'text/plain', |
| 846 | }) |
| 847 | |
| 848 | |
| 849 | # Utilities for CGIHTTPRequestHandler |
| 850 | |
Senthil Kumaran | d70846b | 2012-04-12 02:34:32 +0800 | [diff] [blame] | 851 | def _url_collapse_path(path): |
Benjamin Peterson | ad71f0f | 2009-04-11 20:12:10 +0000 | [diff] [blame] | 852 | """ |
| 853 | Given a URL path, remove extra '/'s and '.' path elements and collapse |
Senthil Kumaran | d70846b | 2012-04-12 02:34:32 +0800 | [diff] [blame] | 854 | any '..' references and returns a colllapsed path. |
Benjamin Peterson | ad71f0f | 2009-04-11 20:12:10 +0000 | [diff] [blame] | 855 | |
| 856 | Implements something akin to RFC-2396 5.2 step 6 to parse relative paths. |
Senthil Kumaran | d70846b | 2012-04-12 02:34:32 +0800 | [diff] [blame] | 857 | The utility of this function is limited to is_cgi method and helps |
| 858 | preventing some security attacks. |
Benjamin Peterson | ad71f0f | 2009-04-11 20:12:10 +0000 | [diff] [blame] | 859 | |
| 860 | Returns: A tuple of (head, tail) where tail is everything after the final / |
| 861 | and head is everything before it. Head will always start with a '/' and, |
| 862 | if it contains anything else, never have a trailing '/'. |
| 863 | |
| 864 | Raises: IndexError if too many '..' occur within the path. |
Senthil Kumaran | d70846b | 2012-04-12 02:34:32 +0800 | [diff] [blame] | 865 | |
Benjamin Peterson | ad71f0f | 2009-04-11 20:12:10 +0000 | [diff] [blame] | 866 | """ |
| 867 | # Similar to os.path.split(os.path.normpath(path)) but specific to URL |
| 868 | # path semantics rather than local operating system semantics. |
Senthil Kumaran | d70846b | 2012-04-12 02:34:32 +0800 | [diff] [blame] | 869 | path_parts = path.split('/') |
| 870 | head_parts = [] |
| 871 | for part in path_parts[:-1]: |
| 872 | if part == '..': |
| 873 | head_parts.pop() # IndexError if more '..' than prior parts |
| 874 | elif part and part != '.': |
| 875 | head_parts.append( part ) |
Benjamin Peterson | ad71f0f | 2009-04-11 20:12:10 +0000 | [diff] [blame] | 876 | if path_parts: |
Senthil Kumaran | dbb369d | 2012-04-11 03:15:28 +0800 | [diff] [blame] | 877 | tail_part = path_parts.pop() |
Senthil Kumaran | d70846b | 2012-04-12 02:34:32 +0800 | [diff] [blame] | 878 | if tail_part: |
| 879 | if tail_part == '..': |
| 880 | head_parts.pop() |
| 881 | tail_part = '' |
| 882 | elif tail_part == '.': |
| 883 | tail_part = '' |
Benjamin Peterson | ad71f0f | 2009-04-11 20:12:10 +0000 | [diff] [blame] | 884 | else: |
| 885 | tail_part = '' |
Senthil Kumaran | d70846b | 2012-04-12 02:34:32 +0800 | [diff] [blame] | 886 | |
| 887 | splitpath = ('/' + '/'.join(head_parts), tail_part) |
| 888 | collapsed_path = "/".join(splitpath) |
| 889 | |
| 890 | return collapsed_path |
| 891 | |
Benjamin Peterson | ad71f0f | 2009-04-11 20:12:10 +0000 | [diff] [blame] | 892 | |
| 893 | |
Georg Brandl | 2442015 | 2008-05-26 16:32:26 +0000 | [diff] [blame] | 894 | nobody = None |
| 895 | |
| 896 | def nobody_uid(): |
| 897 | """Internal routine to get nobody's uid""" |
| 898 | global nobody |
| 899 | if nobody: |
| 900 | return nobody |
| 901 | try: |
| 902 | import pwd |
| 903 | except ImportError: |
| 904 | return -1 |
| 905 | try: |
| 906 | nobody = pwd.getpwnam('nobody')[2] |
| 907 | except KeyError: |
Georg Brandl | cbd2ab1 | 2010-12-04 10:39:14 +0000 | [diff] [blame] | 908 | nobody = 1 + max(x[2] for x in pwd.getpwall()) |
Georg Brandl | 2442015 | 2008-05-26 16:32:26 +0000 | [diff] [blame] | 909 | return nobody |
| 910 | |
| 911 | |
| 912 | def executable(path): |
| 913 | """Test for executable file.""" |
Victor Stinner | fb25ba9 | 2011-06-20 17:45:54 +0200 | [diff] [blame] | 914 | return os.access(path, os.X_OK) |
Georg Brandl | 2442015 | 2008-05-26 16:32:26 +0000 | [diff] [blame] | 915 | |
| 916 | |
| 917 | class CGIHTTPRequestHandler(SimpleHTTPRequestHandler): |
| 918 | |
| 919 | """Complete HTTP server with GET, HEAD and POST commands. |
| 920 | |
| 921 | GET and HEAD also support running CGI scripts. |
| 922 | |
| 923 | The POST command is *only* implemented for CGI scripts. |
| 924 | |
| 925 | """ |
| 926 | |
| 927 | # Determine platform specifics |
| 928 | have_fork = hasattr(os, 'fork') |
Georg Brandl | 2442015 | 2008-05-26 16:32:26 +0000 | [diff] [blame] | 929 | |
| 930 | # Make rfile unbuffered -- we need to read one line and then pass |
| 931 | # the rest to a subprocess, so we can't use buffered input. |
| 932 | rbufsize = 0 |
| 933 | |
| 934 | def do_POST(self): |
| 935 | """Serve a POST request. |
| 936 | |
| 937 | This is only implemented for CGI scripts. |
| 938 | |
| 939 | """ |
| 940 | |
| 941 | if self.is_cgi(): |
| 942 | self.run_cgi() |
| 943 | else: |
| 944 | self.send_error(501, "Can only POST to CGI scripts") |
| 945 | |
| 946 | def send_head(self): |
| 947 | """Version of send_head that support CGI scripts""" |
| 948 | if self.is_cgi(): |
| 949 | return self.run_cgi() |
| 950 | else: |
| 951 | return SimpleHTTPRequestHandler.send_head(self) |
| 952 | |
| 953 | def is_cgi(self): |
| 954 | """Test whether self.path corresponds to a CGI script. |
| 955 | |
Benjamin Peterson | ad71f0f | 2009-04-11 20:12:10 +0000 | [diff] [blame] | 956 | Returns True and updates the cgi_info attribute to the tuple |
| 957 | (dir, rest) if self.path requires running a CGI script. |
| 958 | Returns False otherwise. |
Georg Brandl | 2442015 | 2008-05-26 16:32:26 +0000 | [diff] [blame] | 959 | |
Benjamin Peterson | a7deeee | 2009-05-08 20:54:42 +0000 | [diff] [blame] | 960 | If any exception is raised, the caller should assume that |
| 961 | self.path was rejected as invalid and act accordingly. |
| 962 | |
Benjamin Peterson | ad71f0f | 2009-04-11 20:12:10 +0000 | [diff] [blame] | 963 | The default implementation tests whether the normalized url |
| 964 | path begins with one of the strings in self.cgi_directories |
| 965 | (and the next character is a '/' or the end of the string). |
Georg Brandl | 2442015 | 2008-05-26 16:32:26 +0000 | [diff] [blame] | 966 | |
| 967 | """ |
Senthil Kumaran | d70846b | 2012-04-12 02:34:32 +0800 | [diff] [blame] | 968 | collapsed_path = _url_collapse_path(self.path) |
| 969 | dir_sep = collapsed_path.find('/', 1) |
| 970 | head, tail = collapsed_path[:dir_sep], collapsed_path[dir_sep+1:] |
Senthil Kumaran | dbb369d | 2012-04-11 03:15:28 +0800 | [diff] [blame] | 971 | if head in self.cgi_directories: |
| 972 | self.cgi_info = head, tail |
Benjamin Peterson | ad71f0f | 2009-04-11 20:12:10 +0000 | [diff] [blame] | 973 | return True |
Georg Brandl | 2442015 | 2008-05-26 16:32:26 +0000 | [diff] [blame] | 974 | return False |
| 975 | |
Senthil Kumaran | d70846b | 2012-04-12 02:34:32 +0800 | [diff] [blame] | 976 | |
Georg Brandl | 2442015 | 2008-05-26 16:32:26 +0000 | [diff] [blame] | 977 | cgi_directories = ['/cgi-bin', '/htbin'] |
| 978 | |
| 979 | def is_executable(self, path): |
| 980 | """Test whether argument path is an executable file.""" |
| 981 | return executable(path) |
| 982 | |
| 983 | def is_python(self, path): |
| 984 | """Test whether argument path is a Python script.""" |
| 985 | head, tail = os.path.splitext(path) |
| 986 | return tail.lower() in (".py", ".pyw") |
| 987 | |
| 988 | def run_cgi(self): |
| 989 | """Execute a CGI script.""" |
Georg Brandl | 2442015 | 2008-05-26 16:32:26 +0000 | [diff] [blame] | 990 | dir, rest = self.cgi_info |
| 991 | |
Benjamin Peterson | 04e9de4 | 2013-10-30 12:43:09 -0400 | [diff] [blame] | 992 | i = rest.find('/') |
Georg Brandl | 2442015 | 2008-05-26 16:32:26 +0000 | [diff] [blame] | 993 | while i >= 0: |
Benjamin Peterson | 04e9de4 | 2013-10-30 12:43:09 -0400 | [diff] [blame] | 994 | nextdir = rest[:i] |
| 995 | nextrest = rest[i+1:] |
Georg Brandl | 2442015 | 2008-05-26 16:32:26 +0000 | [diff] [blame] | 996 | |
| 997 | scriptdir = self.translate_path(nextdir) |
| 998 | if os.path.isdir(scriptdir): |
| 999 | dir, rest = nextdir, nextrest |
Benjamin Peterson | 04e9de4 | 2013-10-30 12:43:09 -0400 | [diff] [blame] | 1000 | i = rest.find('/') |
Georg Brandl | 2442015 | 2008-05-26 16:32:26 +0000 | [diff] [blame] | 1001 | else: |
| 1002 | break |
| 1003 | |
| 1004 | # find an explicit query string, if present. |
| 1005 | i = rest.rfind('?') |
| 1006 | if i >= 0: |
| 1007 | rest, query = rest[:i], rest[i+1:] |
| 1008 | else: |
| 1009 | query = '' |
| 1010 | |
| 1011 | # dissect the part after the directory name into a script name & |
| 1012 | # a possible additional path, to be stored in PATH_INFO. |
| 1013 | i = rest.find('/') |
| 1014 | if i >= 0: |
| 1015 | script, rest = rest[:i], rest[i:] |
| 1016 | else: |
| 1017 | script, rest = rest, '' |
| 1018 | |
| 1019 | scriptname = dir + '/' + script |
| 1020 | scriptfile = self.translate_path(scriptname) |
| 1021 | if not os.path.exists(scriptfile): |
| 1022 | self.send_error(404, "No such CGI script (%r)" % scriptname) |
| 1023 | return |
| 1024 | if not os.path.isfile(scriptfile): |
| 1025 | self.send_error(403, "CGI script is not a plain file (%r)" % |
| 1026 | scriptname) |
| 1027 | return |
| 1028 | ispy = self.is_python(scriptname) |
Victor Stinner | fb25ba9 | 2011-06-20 17:45:54 +0200 | [diff] [blame] | 1029 | if self.have_fork or not ispy: |
Georg Brandl | 2442015 | 2008-05-26 16:32:26 +0000 | [diff] [blame] | 1030 | if not self.is_executable(scriptfile): |
| 1031 | self.send_error(403, "CGI script is not executable (%r)" % |
| 1032 | scriptname) |
| 1033 | return |
| 1034 | |
| 1035 | # Reference: http://hoohoo.ncsa.uiuc.edu/cgi/env.html |
| 1036 | # XXX Much of the following could be prepared ahead of time! |
Senthil Kumaran | 4271372 | 2010-10-03 17:55:45 +0000 | [diff] [blame] | 1037 | env = copy.deepcopy(os.environ) |
Georg Brandl | 2442015 | 2008-05-26 16:32:26 +0000 | [diff] [blame] | 1038 | env['SERVER_SOFTWARE'] = self.version_string() |
| 1039 | env['SERVER_NAME'] = self.server.server_name |
| 1040 | env['GATEWAY_INTERFACE'] = 'CGI/1.1' |
| 1041 | env['SERVER_PROTOCOL'] = self.protocol_version |
| 1042 | env['SERVER_PORT'] = str(self.server.server_port) |
| 1043 | env['REQUEST_METHOD'] = self.command |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 1044 | uqrest = urllib.parse.unquote(rest) |
Georg Brandl | 2442015 | 2008-05-26 16:32:26 +0000 | [diff] [blame] | 1045 | env['PATH_INFO'] = uqrest |
| 1046 | env['PATH_TRANSLATED'] = self.translate_path(uqrest) |
| 1047 | env['SCRIPT_NAME'] = scriptname |
| 1048 | if query: |
| 1049 | env['QUERY_STRING'] = query |
Georg Brandl | 2442015 | 2008-05-26 16:32:26 +0000 | [diff] [blame] | 1050 | env['REMOTE_ADDR'] = self.client_address[0] |
Barry Warsaw | 820c120 | 2008-06-12 04:06:45 +0000 | [diff] [blame] | 1051 | authorization = self.headers.get("authorization") |
Georg Brandl | 2442015 | 2008-05-26 16:32:26 +0000 | [diff] [blame] | 1052 | if authorization: |
| 1053 | authorization = authorization.split() |
| 1054 | if len(authorization) == 2: |
| 1055 | import base64, binascii |
| 1056 | env['AUTH_TYPE'] = authorization[0] |
| 1057 | if authorization[0].lower() == "basic": |
| 1058 | try: |
| 1059 | authorization = authorization[1].encode('ascii') |
Georg Brandl | 706824f | 2009-06-04 09:42:55 +0000 | [diff] [blame] | 1060 | authorization = base64.decodebytes(authorization).\ |
Georg Brandl | 2442015 | 2008-05-26 16:32:26 +0000 | [diff] [blame] | 1061 | decode('ascii') |
| 1062 | except (binascii.Error, UnicodeError): |
| 1063 | pass |
| 1064 | else: |
| 1065 | authorization = authorization.split(':') |
| 1066 | if len(authorization) == 2: |
| 1067 | env['REMOTE_USER'] = authorization[0] |
| 1068 | # XXX REMOTE_IDENT |
Barry Warsaw | 820c120 | 2008-06-12 04:06:45 +0000 | [diff] [blame] | 1069 | if self.headers.get('content-type') is None: |
| 1070 | env['CONTENT_TYPE'] = self.headers.get_content_type() |
Georg Brandl | 2442015 | 2008-05-26 16:32:26 +0000 | [diff] [blame] | 1071 | else: |
Barry Warsaw | 820c120 | 2008-06-12 04:06:45 +0000 | [diff] [blame] | 1072 | env['CONTENT_TYPE'] = self.headers['content-type'] |
| 1073 | length = self.headers.get('content-length') |
Georg Brandl | 2442015 | 2008-05-26 16:32:26 +0000 | [diff] [blame] | 1074 | if length: |
| 1075 | env['CONTENT_LENGTH'] = length |
Barry Warsaw | 820c120 | 2008-06-12 04:06:45 +0000 | [diff] [blame] | 1076 | referer = self.headers.get('referer') |
Georg Brandl | 2442015 | 2008-05-26 16:32:26 +0000 | [diff] [blame] | 1077 | if referer: |
| 1078 | env['HTTP_REFERER'] = referer |
| 1079 | accept = [] |
| 1080 | for line in self.headers.getallmatchingheaders('accept'): |
| 1081 | if line[:1] in "\t\n\r ": |
| 1082 | accept.append(line.strip()) |
| 1083 | else: |
| 1084 | accept = accept + line[7:].split(',') |
| 1085 | env['HTTP_ACCEPT'] = ','.join(accept) |
Barry Warsaw | 820c120 | 2008-06-12 04:06:45 +0000 | [diff] [blame] | 1086 | ua = self.headers.get('user-agent') |
Georg Brandl | 2442015 | 2008-05-26 16:32:26 +0000 | [diff] [blame] | 1087 | if ua: |
| 1088 | env['HTTP_USER_AGENT'] = ua |
Barry Warsaw | 820c120 | 2008-06-12 04:06:45 +0000 | [diff] [blame] | 1089 | co = filter(None, self.headers.get_all('cookie', [])) |
Georg Brandl | 62e2ca2 | 2010-07-31 21:54:24 +0000 | [diff] [blame] | 1090 | cookie_str = ', '.join(co) |
| 1091 | if cookie_str: |
| 1092 | env['HTTP_COOKIE'] = cookie_str |
Georg Brandl | 2442015 | 2008-05-26 16:32:26 +0000 | [diff] [blame] | 1093 | # XXX Other HTTP_* headers |
| 1094 | # Since we're setting the env in the parent, provide empty |
| 1095 | # values to override previously set values |
| 1096 | for k in ('QUERY_STRING', 'REMOTE_HOST', 'CONTENT_LENGTH', |
| 1097 | 'HTTP_USER_AGENT', 'HTTP_COOKIE', 'HTTP_REFERER'): |
| 1098 | env.setdefault(k, "") |
Georg Brandl | 2442015 | 2008-05-26 16:32:26 +0000 | [diff] [blame] | 1099 | |
| 1100 | self.send_response(200, "Script output follows") |
Senthil Kumaran | c7ae19b | 2011-05-09 23:25:02 +0800 | [diff] [blame] | 1101 | self.flush_headers() |
Georg Brandl | 2442015 | 2008-05-26 16:32:26 +0000 | [diff] [blame] | 1102 | |
| 1103 | decoded_query = query.replace('+', ' ') |
| 1104 | |
| 1105 | if self.have_fork: |
| 1106 | # Unix -- fork as we should |
| 1107 | args = [script] |
| 1108 | if '=' not in decoded_query: |
| 1109 | args.append(decoded_query) |
| 1110 | nobody = nobody_uid() |
| 1111 | self.wfile.flush() # Always flush before forking |
| 1112 | pid = os.fork() |
| 1113 | if pid != 0: |
| 1114 | # Parent |
| 1115 | pid, sts = os.waitpid(pid, 0) |
| 1116 | # throw away additional data [see bug #427345] |
| 1117 | while select.select([self.rfile], [], [], 0)[0]: |
| 1118 | if not self.rfile.read(1): |
| 1119 | break |
| 1120 | if sts: |
| 1121 | self.log_error("CGI script exit status %#x", sts) |
| 1122 | return |
| 1123 | # Child |
| 1124 | try: |
| 1125 | try: |
| 1126 | os.setuid(nobody) |
| 1127 | except os.error: |
| 1128 | pass |
| 1129 | os.dup2(self.rfile.fileno(), 0) |
| 1130 | os.dup2(self.wfile.fileno(), 1) |
Senthil Kumaran | 4271372 | 2010-10-03 17:55:45 +0000 | [diff] [blame] | 1131 | os.execve(scriptfile, args, env) |
Georg Brandl | 2442015 | 2008-05-26 16:32:26 +0000 | [diff] [blame] | 1132 | except: |
| 1133 | self.server.handle_error(self.request, self.client_address) |
| 1134 | os._exit(127) |
| 1135 | |
Amaury Forgeot d'Arc | cb0d2d7 | 2008-06-18 22:19:22 +0000 | [diff] [blame] | 1136 | else: |
| 1137 | # Non-Unix -- use subprocess |
| 1138 | import subprocess |
Senthil Kumaran | e29cd16 | 2009-11-11 04:17:53 +0000 | [diff] [blame] | 1139 | cmdline = [scriptfile] |
Georg Brandl | 2442015 | 2008-05-26 16:32:26 +0000 | [diff] [blame] | 1140 | if self.is_python(scriptfile): |
| 1141 | interp = sys.executable |
| 1142 | if interp.lower().endswith("w.exe"): |
| 1143 | # On Windows, use python.exe, not pythonw.exe |
| 1144 | interp = interp[:-5] + interp[-4:] |
Senthil Kumaran | e29cd16 | 2009-11-11 04:17:53 +0000 | [diff] [blame] | 1145 | cmdline = [interp, '-u'] + cmdline |
| 1146 | if '=' not in query: |
| 1147 | cmdline.append(query) |
| 1148 | self.log_message("command: %s", subprocess.list2cmdline(cmdline)) |
Georg Brandl | 2442015 | 2008-05-26 16:32:26 +0000 | [diff] [blame] | 1149 | try: |
| 1150 | nbytes = int(length) |
| 1151 | except (TypeError, ValueError): |
| 1152 | nbytes = 0 |
Amaury Forgeot d'Arc | cb0d2d7 | 2008-06-18 22:19:22 +0000 | [diff] [blame] | 1153 | p = subprocess.Popen(cmdline, |
| 1154 | stdin=subprocess.PIPE, |
| 1155 | stdout=subprocess.PIPE, |
Senthil Kumaran | 4271372 | 2010-10-03 17:55:45 +0000 | [diff] [blame] | 1156 | stderr=subprocess.PIPE, |
| 1157 | env = env |
Amaury Forgeot d'Arc | cb0d2d7 | 2008-06-18 22:19:22 +0000 | [diff] [blame] | 1158 | ) |
Georg Brandl | 2442015 | 2008-05-26 16:32:26 +0000 | [diff] [blame] | 1159 | if self.command.lower() == "post" and nbytes > 0: |
| 1160 | data = self.rfile.read(nbytes) |
Amaury Forgeot d'Arc | cb0d2d7 | 2008-06-18 22:19:22 +0000 | [diff] [blame] | 1161 | else: |
| 1162 | data = None |
Georg Brandl | 2442015 | 2008-05-26 16:32:26 +0000 | [diff] [blame] | 1163 | # throw away additional data [see bug #427345] |
| 1164 | while select.select([self.rfile._sock], [], [], 0)[0]: |
| 1165 | if not self.rfile._sock.recv(1): |
| 1166 | break |
Amaury Forgeot d'Arc | cb0d2d7 | 2008-06-18 22:19:22 +0000 | [diff] [blame] | 1167 | stdout, stderr = p.communicate(data) |
| 1168 | self.wfile.write(stdout) |
| 1169 | if stderr: |
| 1170 | self.log_error('%s', stderr) |
Brian Curtin | cbad4df | 2010-11-05 15:04:48 +0000 | [diff] [blame] | 1171 | p.stderr.close() |
| 1172 | p.stdout.close() |
Amaury Forgeot d'Arc | cb0d2d7 | 2008-06-18 22:19:22 +0000 | [diff] [blame] | 1173 | status = p.returncode |
| 1174 | if status: |
| 1175 | self.log_error("CGI script exit status %#x", status) |
Georg Brandl | 2442015 | 2008-05-26 16:32:26 +0000 | [diff] [blame] | 1176 | else: |
| 1177 | self.log_message("CGI script exited OK") |
| 1178 | |
| 1179 | |
| 1180 | def test(HandlerClass = BaseHTTPRequestHandler, |
Senthil Kumaran | 1251faf | 2012-06-03 16:15:54 +0800 | [diff] [blame] | 1181 | ServerClass = HTTPServer, protocol="HTTP/1.0", port=8000): |
Georg Brandl | 2442015 | 2008-05-26 16:32:26 +0000 | [diff] [blame] | 1182 | """Test the HTTP request handler class. |
| 1183 | |
| 1184 | This runs an HTTP server on port 8000 (or the first command line |
| 1185 | argument). |
| 1186 | |
| 1187 | """ |
Georg Brandl | 2442015 | 2008-05-26 16:32:26 +0000 | [diff] [blame] | 1188 | server_address = ('', port) |
| 1189 | |
| 1190 | HandlerClass.protocol_version = protocol |
| 1191 | httpd = ServerClass(server_address, HandlerClass) |
| 1192 | |
| 1193 | sa = httpd.socket.getsockname() |
| 1194 | print("Serving HTTP on", sa[0], "port", sa[1], "...") |
Alexandre Vassalotti | b5292a2 | 2009-04-03 07:16:55 +0000 | [diff] [blame] | 1195 | try: |
| 1196 | httpd.serve_forever() |
| 1197 | except KeyboardInterrupt: |
| 1198 | print("\nKeyboard interrupt received, exiting.") |
| 1199 | httpd.server_close() |
| 1200 | sys.exit(0) |
Georg Brandl | 2442015 | 2008-05-26 16:32:26 +0000 | [diff] [blame] | 1201 | |
| 1202 | if __name__ == '__main__': |
Senthil Kumaran | 1251faf | 2012-06-03 16:15:54 +0800 | [diff] [blame] | 1203 | parser = argparse.ArgumentParser() |
| 1204 | parser.add_argument('--cgi', action='store_true', |
| 1205 | help='Run as CGI Server') |
| 1206 | parser.add_argument('port', action='store', |
| 1207 | default=8000, type=int, |
| 1208 | nargs='?', |
| 1209 | help='Specify alternate port [default: 8000]') |
| 1210 | args = parser.parse_args() |
| 1211 | if args.cgi: |
| 1212 | test(HandlerClass=CGIHTTPRequestHandler, port=args.port) |
| 1213 | else: |
| 1214 | test(HandlerClass=SimpleHTTPRequestHandler, port=args.port) |