[ @sOdZdZddgZddlZddlZddlZddlZddlZddl Z ddl Z ddl Z ddl Z ddl Z ddlZddlZddlZddlZddlZdZdZdd ZGd dde jZGd dde jZGd d d eZddZdaddZddZGdddeZ eedddddZ!e"dkrKej#Z$e$j%ddddd e$j%d!d"d#dd$d%dd&e$j%d'dd(d#dd)e&d*d+dd,e$j'Z(e(j)r#e Z*neZ*e!d-e*d'e(j+d.e(j,ndS)/a@HTTP server classes. Note: BaseHTTPRequestHandler doesn't implement any HTTP request; see SimpleHTTPRequestHandler for simple implementations of GET, HEAD and POST, and CGIHTTPRequestHandler for CGI scripts. It does, however, optionally implement HTTP/1.1 persistent connections, as of version 0.3. Notes on CGIHTTPRequestHandler ------------------------------ This class implements GET and POST requests to cgi-bin scripts. If the os.fork() function is not present (e.g. on Windows), subprocess.Popen() is used as a fallback, with slightly altered semantics. In all cases, the implementation is intentionally naive -- all requests are executed synchronously. SECURITY WARNING: DON'T USE THIS CODE UNLESS YOU ARE INSIDE A FIREWALL -- it may execute arbitrary Python code or external programs. Note that status code 200 is sent prior to execution of a CGI script, so scripts cannot send other status codes such as 302 (redirect). XXX To do: - log requests even later (to capture byte count) - log user-agent header and other interesting goodies - send error log to separate file z0.6 HTTPServerBaseHTTPRequestHandlerNa Error response

Error response

Error code: %(code)d

Message: %(message)s.

Error code explanation: %(code)s - %(explain)s.

ztext/html;charset=utf-8cCs(|jddjddjddS)N&z&z>)replace)htmlr !/usr/lib/python3.4/http/server.py _quote_html|sr c@s"eZdZdZddZdS)rcCsNtjj||jjdd\}}tj||_||_dS)z.Override server_bind to store the server name.N) socketserver TCPServer server_bindsocket getsocknameZgetfqdn server_name server_port)selfZhostportr r r rszHTTPServer.server_bindN)__name__ __module__ __qualname__Zallow_reuse_addressrr r r r rs c @seZdZdZdejjdZdeZ e Z e Z dZddZdd Zd d Zd d ZddddZdddZdddZddZddZddZddddZddZd d!Zd"d#Zdd$d%Zd&d'Zd(d)d*d+d,d-d.gZdd/d0d1d2d3d4d5d6d7d8d9d:g Z d;d<Z!d=Z"e#j$j%Z&i,dd@6ddC6ddF6ddI6ddL6ddO6ddR6ddU6ddX6dd[6dd^6dda6ddd6ddg6ddj6ddl6ddo6ddr6ddu6ddx6dd{6dd~6dd6dd6dd6dd6dd6dd6dd6dd6dd6dd6dd6dd6dd6dd6dd6dd6dd6dd6dd6dd6dd6dd6Z'dS)raHTTP request handler base class. The following explanation of HTTP serves to guide you through the code as well as to expose any misunderstandings I may have about HTTP (so you don't need to read the code to figure out I'm wrong :-). HTTP (HyperText Transfer Protocol) is an extensible protocol on top of a reliable stream transport (e.g. TCP/IP). The protocol recognizes three parts to a request: 1. One line identifying the request type and path 2. An optional set of RFC-822-style headers 3. An optional data part The headers and data are separated by a blank line. The first line of the request has the form where is a (case-sensitive) keyword such as GET or POST, is a string containing path information for the request, and should be the string "HTTP/1.0" or "HTTP/1.1". is encoded using the URL encoding scheme (using %xx to signify the ASCII character with hex code xx). The specification specifies that lines are separated by CRLF but for compatibility with the widest range of clients recommends servers also handle LF. Similarly, whitespace in the request line is treated sensibly (allowing multiple spaces between components and allowing trailing whitespace). Similarly, for output, lines ought to be separated by CRLF pairs but most clients grok LF characters just fine. If the first line of the request has the form (i.e. is left out) then this is assumed to be an HTTP 0.9 request; this form has no optional headers and data part and the reply consists of just the data. The reply form of the HTTP 1.x protocol again has three parts: 1. One line giving the response code 2. An optional set of RFC-822-style headers 3. The data Again, the headers and data are separated by a blank line. The response code line has the form where is the protocol version ("HTTP/1.0" or "HTTP/1.1"), is a 3-digit response code indicating success or failure of the request, and is an optional human-readable string explaining what the response code means. This server parses the request and the headers, and then calls a function specific to the request type (). Specifically, a request SPAM will be handled by a method do_SPAM(). If no such method exists the server sends an error response to the client. If it exists, it is called with no arguments: do_SPAM() Note that the request name is case sensitive (i.e. SPAM and spam are different requests). The various request details are stored in instance variables: - client_address is the client IP address in the form (host, port); - command, path and version are the broken-down request line; - headers is an instance of email.message.Message (or a derived class) containing the header information; - rfile is a file object open for reading positioned at the start of the optional input data part; - wfile is a file object open for writing. IT IS IMPORTANT TO ADHERE TO THE PROTOCOL FOR WRITING! The first thing to be written must be the response line. Then follow 0 or more header lines, then a blank line, and then the actual data (if any). The meaning of the header lines depends on the command executed by the server; in most cases, when data is returned, there should be at least one header line of the form Content-type: / where and should be registered MIME types, e.g. "text/html" or "text/plain". zPython/rz BaseHTTP/zHTTP/0.9c Cs)d|_|j|_}d|_t|jd}|jd}||_|j}t |dkr|\}}}|dddkr|j dd |d Syd|jd dd}|jd }t |d krt nt |dt |df}Wn0t t fk r=|j dd |d SYnX|dkre|jdkred|_n|dkr|j dd|d Snpt |d kr|\}}d|_|dkr|j dd|d Sn"|sd S|j dd|d S||||_|_|_y%tjj|jd|j|_Wn,tjjk rl|j ddd SYnX|jjdd}|jdkrd|_n-|jdkr|jdkrd|_n|jjdd} | jdkr%|jdkr%|jdkr%|js%d SndS) a'Parse a request (internal). The request should be stored in self.raw_requestline; the results are in self.command, self.path, self.request_version and self.headers. Return True for success, False for failure; on failure, an error is sent back. Nr z iso-8859-1z zHTTP/izBad request version (%r)F/.r rzHTTP/1.1izInvalid HTTP Version (%s)ZGETzBad HTTP/0.9 request type (%r)zBad request syntax (%r)Z_classz Line too long Connectionclosez keep-aliveZExpectz 100-continueT)r r )r r)commanddefault_request_versionrequest_versionclose_connectionstrraw_requestlinerstrip requestlinesplitlen send_error ValueErrorint IndexErrorprotocol_versionpathhttpclientZ parse_headersrfile MessageClassheadersZ LineTooLonggetlowerhandle_expect_100) rversionr(wordsr!r0Zbase_version_numberZversion_numberZconntypeZexpectr r r parse_requestst     $              z$BaseHTTPRequestHandler.parse_requestcCs|jd|jdS)a7Decide what to do with an "Expect: 100-continue" header. If the client is expecting a 100 Continue response, we must respond with either a 100 Continue or a final response before waiting for the request body. The default is to always respond with a 100 Continue. You can behave differently (for example, reject unauthorized requests) by overriding this method. This method should either return True (possibly after sending a 100 Continue response) or send an error response and return False. dT)send_response_only end_headers)rr r r r8Us  z(BaseHTTPRequestHandler.handle_expect_100cCs&y|jjd|_t|jdkrYd|_d|_d|_|jddS|jsod|_dS|j sdSd|j}t ||s|jdd |jdSt ||}||j j WnEtjk r!}z"|jd |d|_dSWYdd}~XnXdS) zHandle a single HTTP request. You normally don't need to override this method; see the class __doc__ string for information on how to handle specific HTTP commands such as GET and POST. iiriNr Zdo_izUnsupported method (%r)zRequest timed out: %r)r3readliner&r*r(r#r!r+r$r;hasattrgetattrwfileflushrZtimeout log_error)rZmnamemethoder r r handle_one_requestgs0         z)BaseHTTPRequestHandler.handle_one_requestcCs1d|_|jx|js,|jqWdS)z&Handle multiple requests if necessary.r N)r$rG)rr r r handles   zBaseHTTPRequestHandler.handleNc CsLy|j|\}}Wntk r7d\}}YnX|dkrM|}n|dkrb|}n|jd|||ji|d6t|d6t|d6}|jdd}|j|||jd |j|jd d |jd t t ||j |j d krH|dkrH|dkrH|j j|ndS)akSend and log an error reply. Arguments are * code: an HTTP error code 3 digits * message: a simple optional 1 line reason phrase. *( HTAB / SP / VCHAR / %x80-FF ) defaults to short entry matching the response code * explain: a detailed message defaults to the long entry matching the response code. This sends an error response (so it must be called before any output has been generated), logs the error, and finally sends a piece of HTML explaining the error to the user. ???Nzcode %d, message %scodemessageexplainzUTF-8rz Content-Typerr zContent-LengthZHEAD0)rIrI)rNrO) responsesKeyErrorrDerror_message_formatr encode send_response send_headererror_content_typer-r*r>r!rBwrite)rrJrKrLZshortmsgZlongmsgZcontentZbodyr r r r+s&     ( 'z!BaseHTTPRequestHandler.send_errorcCsM|j||j|||jd|j|jd|jdS)zAdd the response header to the headers buffer and log the response code. Also send two standard headers with the server software version and the current date. ZServerZDateN) log_requestr=rUversion_stringdate_time_string)rrJrKr r r rTs z$BaseHTTPRequestHandler.send_responsecCs|dkr8||jkr/|j|d}q8d}n|jdkrt|dsbg|_n|jjd|j||fjddndS) zSend the response header only.NrrzHTTP/0.9_headers_bufferz %s %d %s zlatin-1strict)rPr#r@r[appendr/rS)rrJrKr r r r=s    z)BaseHTTPRequestHandler.send_response_onlycCs|jdkrSt|ds*g|_n|jjd||fjddn|jdkr|jdkrd|_q|jd krd |_qnd S) z)Send a MIME header to the headers buffer.zHTTP/0.9r[z%s: %s zlatin-1r\Z connectionr r z keep-aliverN)r#r@r[r]rSr7r$)rkeywordvaluer r r rUs    z"BaseHTTPRequestHandler.send_headercCs0|jdkr,|jjd|jndS)z,Send the blank line ending the MIME headers.zHTTP/0.9s N)r#r[r] flush_headers)rr r r r>sz"BaseHTTPRequestHandler.end_headerscCs;t|dr7|jjdj|jg|_ndS)Nr[)r@rBrWjoinr[)rr r r r`sz$BaseHTTPRequestHandler.flush_headers-cCs)|jd|jt|t|dS)zNLog an accepted request. This is called by send_response(). z "%s" %s %sN) log_messager(r%)rrJsizer r r rXs z"BaseHTTPRequestHandler.log_requestcGs|j||dS)zLog an error. This is called when a request cannot be fulfilled. By default it passes the message on to log_message(). Arguments are the same as for log_message(). XXX This should go to the separate error log. N)rd)rformatargsr r r rDs z BaseHTTPRequestHandler.log_errorcGs1tjjd|j|j||fdS)aLog an arbitrary message. This is used by all other logging functions. Override it if you have specific logging wishes. The first argument, FORMAT, is a format string for the message to be logged. If the format string contains any % escapes requiring parameters, they should be specified as subsequent arguments (it's just like printf!). The client ip and current date/time are prefixed to every message. z%s - - [%s] %s N)sysstderrrWaddress_stringlog_date_time_string)rrfrgr r r rds   z"BaseHTTPRequestHandler.log_messagecCs|jd|jS)z*Return the server software version string. )server_version sys_version)rr r r rYsz%BaseHTTPRequestHandler.version_stringc Csv|dkrtj}ntj|\ }}}}}}}} } d|j|||j|||||f} | S)z@Return the current date and time formatted for a message header.Nz#%s, %02d %3s %4d %02d:%02d:%02d GMT)timeZgmtime weekdayname monthname) rZ timestampyearmonthdayhhmmssZwdyzsr r r rZs * z'BaseHTTPRequestHandler.date_time_stringc Cs]tj}tj|\ }}}}}}}} } d||j|||||f} | S)z.Return the current time formatted for logging.z%02d/%3s/%04d %02d:%02d:%02d)roZ localtimerq) rZnowrrrsrtrurvrwxrxryrzr r r rk*s  * z+BaseHTTPRequestHandler.log_date_time_stringZMonZTueZWedZThuZFriZSatZSunZJanZFebZMarZAprZMayZJunZJulZAugZSepZOctZNovZDeccCs |jdS)zReturn the client address.r)client_address)rr r r rj8sz%BaseHTTPRequestHandler.address_stringzHTTP/1.0Continue!Request received, please continuer<Switching Protocols.Switching to new protocol; obey Upgrade headereOK#Request fulfilled, document followsrMCreatedDocument created, URL followsAccepted/Request accepted, processing continues off-lineNon-Authoritative InformationRequest fulfilled from cache No Content"Request fulfilled, nothing followsrN Reset Content#Clear input form for further input.Partial ContentPartial content follows.Multiple Choices,Object has several resources -- see URI listi,Moved Permanently(Object moved permanently -- see URI listi-Found(Object moved temporarily -- see URI listi. See Other'Object moved -- see Method and URL listi/ Not Modified)Document has not changed since given timei0 Use ProxyAYou must use proxy specified in Location to access this resource.i1Temporary Redirecti3 Bad Request(Bad request syntax or unsupported methodi Unauthorized*No permission -- see authorization schemesiPayment Required"No payment -- see charging schemesi Forbidden0Request forbidden -- authorization will not helpi Not FoundNothing matches the given URIiMethod Not Allowed.Specified method is invalid for this resource.iNot Acceptable&URI not available in preferred format.iProxy Authentication Required8You must authenticate with this proxy before proceeding.iRequest Timeout#Request timed out; try again later.iConflictRequest conflict.iGone6URI no longer exists and has been permanently removed.iLength Required#Client must specify Content-Length.iPrecondition Failed!Precondition in headers is false.iRequest Entity Too LargeEntity is too large.iRequest-URI Too LongURI is too long.iUnsupported Media Type"Entity body in unsupported format.iRequested Range Not SatisfiableCannot satisfy request range.iExpectation Failed(Expect condition could not be satisfied.iPrecondition Required9The origin server requires the request to be conditional.iToo Many RequestsPThe user has sent too many requests in a given amount of time ("rate limiting").iRequest Header Fields Too LargeWThe server is unwilling to process the request because its header fields are too large.iInternal Server ErrorServer got itself in troubleiNot Implemented&Server does not support this operationi Bad Gateway,Invalid responses from another server/proxy.iService Unavailable8The server cannot process the request due to a high loadiGateway Timeout4The gateway server did not receive a timely responseiHTTP Version Not SupportedCannot fulfill request.iNetwork Authentication Required8The client needs to authenticate to gain network access.i)r}r~)rr)rr)rr)rr)rr)rr)rr)rr)rr)rr)rr)rr)rr)rr)rr)rr)rr)rr)rr)rr)rr)rr)rr)rr)rr)rr)rr)rr)rr)rr)rr)rr)rr)rr)rr)rr)rr)rr)rr)rr)rr)rr)rr)(rrr__doc__rhr9r)rn __version__rmDEFAULT_ERROR_MESSAGErRDEFAULT_ERROR_CONTENT_TYPErVr"r;r8rGrHr+rTr=rUr>r`rXrDrdrYrZrkrprqrjr/r1r2Z HTTPMessager4rPr r r r rs f  Q  # '          c@seZdZdZdeZddZddZddZd d Z d d Z d dZ ddZ e jse jne jjZejidd6dd6dd6dd6dS)SimpleHTTPRequestHandleraWSimple HTTP request handler with GET and HEAD commands. This serves files from the current directory and any of its subdirectories. The MIME type for files is determined by calling the .guess_type() method. The GET and HEAD requests are identical except that the HEAD request omits the actual contents of the file. z SimpleHTTP/c Cs>|j}|r:z|j||jWd|jXndS)zServe a GET request.N) send_headcopyfilerBr )rfr r r do_GETs  zSimpleHTTPRequestHandler.do_GETcCs#|j}|r|jndS)zServe a HEAD request.N)rr )rrr r r do_HEADs z SimpleHTTPRequestHandler.do_HEADc Cs|j|j}d}tjj|r tjj|j}|jjds|jd|d|d|dd|d|df}tjj |}|j d ||j dSxOdD]7}tjj ||}tjj |r|}PqqW|j|Sn|j|}yt|d }Wn&tk rW|jd ddSYnXyz|jd|j d|tj|j}|j dt|d|j d|j|j|j |SWn|jYnXdS)a{Common code for GET and HEAD commands. This sends the response code and MIME headers. Return value is either a file object (which has to be copied to the outputfile by the caller unless the command was HEAD, and must be closed by the caller under all circumstances), or None, in which case the caller has nothing further to do. Nri-rr r rZLocation index.html index.htmrbizFile not foundrMz Content-typezContent-Lengthz Last-Modified)rr)translate_pathr0osisdirurllibparseZurlsplitendswithrTZ urlunsplitrUr>rbexistslist_directory guess_typeopenOSErrorr+fstatfilenor%rZst_mtimer ) rr0rpartsZ new_partsZnew_urlindexZctypeZfsr r r rsF         z"SimpleHTTPRequestHandler.send_headc Cs`ytj|}Wn&tk r;|jdddSYnX|jdddg}ytjj|jdd}Wn$t k rtjj|}YnXt j |}t j }d |}|jd |jd |jd ||jd ||jd||jdx|D]}tjj||}|} } tjj|rr|d} |d} ntjj|r|d} n|jdtjj| ddt j | fq$W|jddj|j|d} tj} | j| | jd|jd|jdd||jdtt| |j| S)zHelper to produce a directory listing (absent index.html). Return value is either a file object, or None (indicating an error). In either case, the headers are sent, making the interface the same as for send_head(). izNo permission to list directoryNkeycSs |jS)N)r7)ar r r sz9SimpleHTTPRequestHandler.list_directory..errors surrogatepasszDirectory listing for %szZz z@z%s z

%s

z
    r@z
  • %s
  • z

 surrogateescaperrMz Content-typeztext/html; charset=%szContent-Length)rlistdirrr+sortrrunquoter0UnicodeDecodeErrorrescaperhgetfilesystemencodingr]rbrislinkZquoterSioBytesIOrWseekrTrUr%r*r>) rr0listrZ displaypathenctitlenamefullnameZ displaynameZlinknameZencodedrr r r rsX                      z'SimpleHTTPRequestHandler.list_directoryc CsH|jddd}|jddd}|jjd}ytjj|dd}Wn$tk rtjj|}YnXtj|}|jd}t d|}t j }xq|D]i}t j j |\}}t j j|\}}|t jt jfkrqnt j j||}qW|rD|d7}n|S) zTranslate a /-separated PATH to the local filename syntax. Components that mean special things to the local file system (e.g. drive or directory names) are ignored. (XXX They should probably be diagnosed.) ?r r#rrrN)r)r'rrrrr posixpathnormpathfilterrgetcwdr0 splitdrivecurdirpardirrb)rr0Ztrailing_slashr:ZwordZdriveheadr r r rs(     z'SimpleHTTPRequestHandler.translate_pathcCstj||dS)aCopy all data between two file objects. The SOURCE argument is a file object open for reading (or anything with a read() method) and the DESTINATION argument is a file object open for writing (or anything with a write() method). The only reason for overriding this would be to change the block size or perhaps to replace newlines by CRLF -- note however that this the default server uses this to copy binary data as well. N)shutilZ copyfileobj)rsourceZ outputfiler r r r9sz!SimpleHTTPRequestHandler.copyfilecCsdtj|\}}||jkr/|j|S|j}||jkrU|j|S|jdSdS)aGuess the type of a file. Argument is a PATH (a filename). Return value is a string of the form type/subtype, usable for a MIME Content-type header. The default implementation looks the file's extension up in the table self.extensions_map, using application/octet-stream as a default; however it would be permissible (if slow) to look inside the data to make a better guess. rN)rsplitextextensions_mapr7)rr0baseZextr r r rIs   z#SimpleHTTPRequestHandler.guess_typezapplication/octet-streamrz text/plainz.pyz.cz.hN)rrrrrrmrrrrrrr mimetypesZinitedZinitZ types_mapcopyrupdater r r r rs"    1 8      rcCs|jd}g}xS|ddD]A}|dkrE|jq&|r&|dkr&|j|q&q&W|r|j}|r|dkr|jd}q|dkrd}qqnd}ddj||f}dj|}|S)a` Given a URL path, remove extra '/'s and '.' path elements and collapse any '..' references and returns a colllapsed path. Implements something akin to RFC-2396 5.2 step 6 to parse relative paths. The utility of this function is limited to is_cgi method and helps preventing some security attacks. Returns: A tuple of (head, tail) where tail is everything after the final / and head is everything before it. Head will always start with a '/' and, if it contains anything else, never have a trailing '/'. Raises: IndexError if too many '..' occur within the path. rNr z..rr)r)popr]rb)r0 path_partsZ head_partspartZ tail_partZ splitpathcollapsed_pathr r r _url_collapse_pathns&       r(cCstr tSyddl}Wntk r2dSYnXy|jddaWn5tk rdtdd|jDaYnXtS) z$Internal routine to get nobody's uidrNr nobodyr css|]}|dVqdS)r Nr ).0r{r r r sznobody_uid..r#)r)pwd ImportErrorgetpwnamrQmaxZgetpwall)r,r r r nobody_uids   (r0cCstj|tjS)zTest for executable file.)raccessX_OK)r0r r r executablesr3c@seZdZdZeedZdZddZddZ dd Z d d gZ d d Z ddZ ddZdS)CGIHTTPRequestHandlerzComplete HTTP server with GET, HEAD and POST commands. GET and HEAD also support running CGI scripts. The POST command is *only* implemented for CGI scripts. forkrcCs-|jr|jn|jdddS)zRServe a POST request. This is only implemented for CGI scripts. izCan only POST to CGI scriptsN)is_cgirun_cgir+)rr r r do_POSTs  zCGIHTTPRequestHandler.do_POSTcCs'|jr|jStj|SdS)z-Version of send_head that support CGI scriptsN)r6r7rr)rr r r rs  zCGIHTTPRequestHandler.send_headcCsxttjj|j}|jdd}|d|||dd}}||jkrt||f|_dSdS)a3Test whether self.path corresponds to a CGI script. Returns True and updates the cgi_info attribute to the tuple (dir, rest) if self.path requires running a CGI script. Returns False otherwise. If any exception is raised, the caller should assume that self.path was rejected as invalid and act accordingly. The default implementation tests whether the normalized url path begins with one of the strings in self.cgi_directories (and the next character is a '/' or the end of the string). rr NTF)r(rrrr0findcgi_directoriescgi_info)rr'Zdir_seprtailr r r r6s%zCGIHTTPRequestHandler.is_cgiz/cgi-binz/htbincCs t|S)z1Test whether argument path is an executable file.)r3)rr0r r r is_executablesz#CGIHTTPRequestHandler.is_executablecCs(tjj|\}}|jdkS)z.Test whether argument path is a Python script..py.pyw)r>r?)rr0rr7)rr0rr<r r r is_pythonszCGIHTTPRequestHandler.is_pythonc(Cs |j\}}|d|}|jdt|d}x|dkr|d|}||dd}|j|}tjj|r||}}|jdt|d}q<Pq<W|jd}|dkr|d|||dd}}nd}|jd}|dkrF|d|||d} }n |d} }|d| } |j| } tjj| s|j dd| dStjj | s|j d d | dS|j | } |j s| r |j | s |j d d | dSntjtj} |j| d <|jj| d dtj=|j3j>dtj?| || Wq |jj@|jA|jtjBd6Yq XnddlC}| g} |j | rstDjE}!|!j!jFd7r`|!ddD|!dEd}!n|!d:g| } nd4|kr| j)|n|jGd;|jH| ytI|}"WntJtKfk rd}"YnX|jL| d<|jMd=|jMd>|jMd?| }#|jj!d@kr?|"dkr?|j8j9|"}$nd}$xBt7j7|j8jNgggddr|j8jNjOdsHPqHqHW|#jP|$\}%}&|j3jQ|%|&r|j:dA|&n|#jRjS|#jTjS|#jU}'|'r |j:d5|'n |jGdBdS)FzExecute a CGI script.rr rNrrizNo such CGI script (%r)iz#CGI script is not a plain file (%r)z!CGI script is not executable (%r)ZSERVER_SOFTWAREZ SERVER_NAMEzCGI/1.1ZGATEWAY_INTERFACEZSERVER_PROTOCOLZ SERVER_PORTZREQUEST_METHODZ PATH_INFOZPATH_TRANSLATEDZ SCRIPT_NAME QUERY_STRINGZ REMOTE_ADDR authorizationr Z AUTH_TYPEZbasicascii:Z REMOTE_USERz content-typeZ CONTENT_TYPEzcontent-lengthCONTENT_LENGTHreferer HTTP_REFERERacceptz ,Z HTTP_ACCEPTz user-agentHTTP_USER_AGENTZcookiez, HTTP_COOKIE REMOTE_HOSTrMzScript output follows+rl=zCGI script exit status %#xzw.exerrz-uz command: %sstdinstdoutrienvZpostz%szCGI script exited OK)rArMrErKrLrG)Vr;r9r*rrr0rrfindrr+isfiler@ have_forkr=r!deepcopyenvironrYZserverrr/r%rr!rrrr|r5r6r)base64binasciir7rSZ decodebytesdecodeError UnicodeErrorZget_content_typeZgetallmatchingheadersr]striprbrZget_all setdefaultrTr`rr0rBrCr5waitpidselectr3readrDsetuidrdup2rexecveZ handle_errorZrequest_exit subprocessrhr3rrdZ list2cmdliner- TypeErrorr,PopenPIPEZ_sockZrecvZ communicaterWrir rR returncode)(rdirrestr0iZnextdirZnextrestZ scriptdirZqueryZscriptZ scriptnameZ scriptfileZispyrSZuqrestrBr[r\ZlengthrFrHlineZuacoZ cookie_strkZ decoded_queryrgr)pidstsriZcmdlineZinterpnbytespdatarRriZstatusr r r r7s2  ( $             !           %    !       !(   zCGIHTTPRequestHandler.run_cgiN)rrrrr@rrXZrbufsizer8rr6r:r=r@r7r r r r r4s      r4zHTTP/1.0i@rc Cs||f}||_|||}|jj}td|dd|ddy|jWn3tk rtd|jtjdYnXdS)zTest the HTTP request handler class. This runs an HTTP server on port 8000 (or the first command line argument). zServing HTTP onrrr z...z& Keyboard interrupt received, exiting.N) r/rrprintZ serve_foreverKeyboardInterruptZ server_closerhexit) HandlerClassZ ServerClassZprotocolrbindZserver_addressZhttpdZsar r r tests     r~__main__z--cgiaction store_truehelpzRun as CGI Serverz--bindz-bdefaultmetavarZADDRESSz8Specify alternate bind address [default: all interfaces]rZstoretypenargsrz&Specify alternate port [default: 8000]r|r})-rr__all__rZ http.clientr1rr rrrcrrrrhroZ urllib.parserr!argparserrr rrZStreamRequestHandlerrrr(r)r0r3r4r~rArgumentParserparser add_argumentr- parse_argsrgZcgiZ handler_classrr}r r r r  s`3                    +