server.py 43 KB

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