U e5dï»ã@s dZdZdddddgZddlZddlZddlZddlZddlZ ddl Z ddl Z ddl Z ddl Z ddlZddlZddlZddlZddlZddlZddlZddlZddlZdd lmZdd l mZd Zd ZGd d„dejƒZGdd„dejeƒZ Gdd„dej!ƒZ"Gdd„de"ƒZ#dd„Z$da%dd„Z&dd„Z'Gdd„de#ƒZ(dd„Z)e"e dddfdd„Z*e+dkrddl,Z,e, -¡Z.e.j/dd d!d"e.j/d#d$d%d&d'e.j/d(d)e  0¡d*d+e.j/d,d-de1d.d/d0e. 2¡Z3e3j4rÔe(Z5nee#e3j6d1Z5Gd2d3„d3e ƒZ7e*e5e7e3j8e3j9d4dS)5a@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Ú HTTPServerÚThreadingHTTPServerÚBaseHTTPRequestHandlerÚSimpleHTTPRequestHandlerÚCGIHTTPRequestHandleréN)Úpartial)Ú HTTPStatusa¹ Error response

Error response

Error code: %(code)d

Message: %(message)s.

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

ztext/html;charset=utf-8c@seZdZdZdd„ZdS)récCs4tj |¡|jdd…\}}t |¡|_||_dS)z.Override server_bind to store the server name.Né)Ú socketserverÚ TCPServerÚ server_bindZserver_addressÚsocketZgetfqdnÚ server_nameÚ server_port)ÚselfÚhostÚport©rú#/usr/lib64/python3.8/http/server.pyr ‰s  zHTTPServer.server_bindN)Ú__name__Ú __module__Ú __qualname__Zallow_reuse_addressr rrrrr…sc@seZdZdZdS)rTN)rrrZdaemon_threadsrrrrr‘sc @sJeZdZdZdej ¡dZdeZ e Z e Z dZdd„Zdd „Zd d „Zd d „ZdFdd„ZdGdd„ZdHdd„Zdd„Zdd„Zdd„ZdIdd„Zdd„Ze d d!„e ed"ƒed#d$ƒ¡Dƒ¡Z d%e e!d&ƒ<d'd(„Z"d)d*„Z#dJd+d,„Z$d-d.„Z%d/d0d1d2d3d4d5gZ&dd6d7d8d9d:d;dd?d@dAg Z'dBdC„Z(dDZ)e*j+j,Z-dEd!„e.j/ 0¡DƒZ1dS)Kra¿HTTP 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/úHTTP/0.9c Csôd|_|j|_}d|_t|jdƒ}| d¡}||_| ¡}t |ƒdkrLdSt |ƒdkr&|d}zT|  d ¡srt ‚| d d ¡d }| d ¡}t |ƒd krœt ‚t |dƒt |d ƒf}Wn,t t fk râ| tjd|¡YdSX|dkr|jdkrd|_|dkr | tjd|¡dS||_d t |ƒkrBdksZn| tjd|¡dS|dd …\}}t |ƒd kržd|_|dkrž| tjd|¡dS|||_|_|j  d¡rÌd |j d ¡|_ztjj|j|jd|_Wn‚tjjk r(}z| tjdt|ƒ¡WY¢dSd}~XYnBtjjk rh}z| tjdt|ƒ¡WY¢dSd}~XYnX|j dd¡} |  ¡dkrŽd|_n |  ¡dkr®|jdkr®d|_|j dd¡} |  ¡dkrð|jdkrð|jdkrð|  ¡sðdSdS) aHParse 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, any relevant error response has already been sent back. NTz iso-8859-1z rFééÿÿÿÿzHTTP/ú/r Ú.r zBad request version (%r))r r zHTTP/1.1)r rzInvalid HTTP version (%s)zBad request syntax (%r)ZGETzBad HTTP/0.9 request type (%r)z//)Z_classz Line too longzToo many headersÚ ConnectionÚÚcloseú keep-aliveZExpectz 100-continue)!ÚcommandÚdefault_request_versionÚrequest_versionÚclose_connectionÚstrÚraw_requestlineÚrstripÚ requestlineÚsplitÚlenÚ startswithÚ ValueErrorÚintÚ IndexErrorÚ send_errorrZ BAD_REQUESTÚprotocol_versionZHTTP_VERSION_NOT_SUPPORTEDÚpathÚlstripÚhttpÚclientZ parse_headersÚrfileÚ MessageClassÚheadersZ LineTooLongZREQUEST_HEADER_FIELDS_TOO_LARGEZ HTTPExceptionÚgetÚlowerÚhandle_expect_100) rÚversionr)ÚwordsZbase_version_numberZversion_numberr"r2ÚerrZconntypeZexpectrrrÚ parse_requests¬        þ þþ þ ÿ ýýÿÿþ z$BaseHTTPRequestHandler.parse_requestcCs| tj¡| ¡dS)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. T)Úsend_response_onlyrZCONTINUEÚ end_headers©rrrrr;xs z(BaseHTTPRequestHandler.handle_expect_100c Csîz¬|j d¡|_t|jƒdkrBd|_d|_d|_| tj ¡WdS|jsTd|_ WdS|  ¡sbWdSd|j}t ||ƒs| tj d|j¡WdSt||ƒ}|ƒ|j ¡Wn<tjk rè}z| d|¡d|_ WY¢dSd}~XYnXdS) zÜHandle 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. iirNTZdo_zUnsupported method (%r)zRequest timed out: %r)r6Úreadliner'r+r)r$r"r0rZREQUEST_URI_TOO_LONGr%r?ÚhasattrÚNOT_IMPLEMENTEDÚgetattrÚwfileÚflushrZtimeoutÚ log_error)rZmnameÚmethodÚerrrÚhandle_one_requestŠs6   þ  z)BaseHTTPRequestHandler.handle_one_requestcCs"d|_| ¡|js| ¡qdS)z&Handle multiple requests if necessary.TN)r%rLrBrrrÚhandle¯szBaseHTTPRequestHandler.handleNcCs z|j|\}}Wntk r.d\}}YnX|dkr<|}|dkrH|}| d||¡| ||¡| dd¡d}|dkrâ|tjtjtjfkrâ|j |t j |ddt j |ddd œ}|  d d ¡}| d |j ¡| d tt|ƒƒ¡| ¡|jdkr|r|j |¡dS)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. )ú???rNNzcode %d, message %srr éÈF©Úquote)ÚcodeÚmessageÚexplainzUTF-8Úreplacez Content-TypeúContent-LengthZHEAD)Ú responsesÚKeyErrorrIÚ send_responseÚ send_headerrZ NO_CONTENTZ RESET_CONTENTÚ NOT_MODIFIEDÚerror_message_formatÚhtmlÚescapeÚencodeÚerror_content_typer&r+rAr"rGÚwrite)rrRrSrTZshortmsgZlongmsgZbodyZcontentrrrr0·s:  þÿ  ý z!BaseHTTPRequestHandler.send_errorcCs:| |¡| ||¡| d| ¡¡| d| ¡¡dS)zÁAdd 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@rZÚversion_stringÚdate_time_string©rrRrSrrrrYìs  z$BaseHTTPRequestHandler.send_responsecCsd|jdkr`|dkr0||jkr,|j|d}nd}t|dƒs@g|_|j d|j||f dd¡¡dS) zSend the response header only.rNrrÚ_headers_bufferz %s %d %s úlatin-1Ústrict)r$rWrDrfÚappendr1r_rerrrr@ùs    ÿþz)BaseHTTPRequestHandler.send_response_onlycCsl|jdkr6t|dƒsg|_|j d||f dd¡¡| ¡dkrh| ¡dkrVd|_n| ¡d krhd |_d S) z)Send a MIME header to the headers buffer.rrfz%s: %s rgrhZ connectionr Tr!FN)r$rDrfrir_r:r%)rÚkeywordÚvaluerrrrZs  ÿ   z"BaseHTTPRequestHandler.send_headercCs"|jdkr|j d¡| ¡dS)z,Send the blank line ending the MIME headers.rs N)r$rfriÚ flush_headersrBrrrrAs  z"BaseHTTPRequestHandler.end_headerscCs(t|dƒr$|j d |j¡¡g|_dS)Nrfó)rDrGraÚjoinrfrBrrrrls z$BaseHTTPRequestHandler.flush_headersú-cCs.t|tƒr|j}| d|jt|ƒt|ƒ¡dS)zNLog an accepted request. This is called by send_response(). z "%s" %s %sN)Ú isinstancerrkÚ log_messager)r&)rrRÚsizerrrrb s ÿz"BaseHTTPRequestHandler.log_requestcGs|j|f|žŽdS)zÿLog 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)rq)rÚformatÚargsrrrrI+s z BaseHTTPRequestHandler.log_errorcCsi|]}|d|d›“qS)z\xZ02xr)Ú.0ÚcrrrÚ ;sz!BaseHTTPRequestHandler.é éé z\\ú\cGs2||}tj d| ¡| ¡| |j¡f¡dS)aZLog 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. Unicode control characters are replaced with escaped hex before writing the output to stderr. z%s - - [%s] %s N)ÚsysÚstderrraÚaddress_stringÚlog_date_time_stringÚ translateÚ_control_char_table)rrsrtrSrrrrq>s þÿz"BaseHTTPRequestHandler.log_messagecCs|jd|jS)z*Return the server software version string.ú )Úserver_versionÚ sys_versionrBrrrrcXsz%BaseHTTPRequestHandler.version_stringcCs |dkrt ¡}tjj|ddS)z@Return the current date and time formatted for a message header.NT)Zusegmt)ÚtimeÚemailÚutilsZ formatdate)rZ timestamprrrrd\sz'BaseHTTPRequestHandler.date_time_stringc CsBt ¡}t |¡\ }}}}}}}} } d||j|||||f} | S)z.Return the current time formatted for logging.z%02d/%3s/%04d %02d:%02d:%02d)r…Ú localtimeÚ monthname) rZnowZyearZmonthZdayZhhZmmZssÚxÚyÚzÚsrrrrbsÿz+BaseHTTPRequestHandler.log_date_time_stringZMonZTueZWedZThuZFriZSatZSunZJanZFebZMarZAprZMayZJunZJulZAugZSepZOctZNovZDeccCs |jdS)zReturn the client address.r)Úclient_addressrBrrrr~psz%BaseHTTPRequestHandler.address_stringúHTTP/1.0cCsi|]}||j|jf“qSr)ÚphraseZ description)ruÚvrrrrwsÿ)NN)N)N)roro)N)2rrrÚ__doc__r|r<r*r„Ú __version__rƒÚDEFAULT_ERROR_MESSAGEr\ÚDEFAULT_ERROR_CONTENT_TYPEr`r#r?r;rLrMr0rYr@rZrArlrbrIr&Ú maketransÚ itertoolsÚchainÚrangerÚordrqrcrdrZ weekdaynamer‰r~r1r4r5Z HTTPMessager7rÚ __members__ÚvaluesrWrrrrr•s^gj% 5  ÿ  þ þcs’eZdZdZdeZddœ‡fdd„ Zdd„Zd d „Zd d „Z d d„Z dd„Z dd„Z dd„Z ejsle ¡ej ¡Ze dddddœ¡‡ZS)raWSimple 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/N©Ú directorycs(|dkrt ¡}||_tƒj||ŽdS©N)ÚosÚgetcwdržÚsuperÚ__init__)rržrtÚkwargs©Ú __class__rrr£”sz!SimpleHTTPRequestHandler.__init__cCs.| ¡}|r*z| ||j¡W5| ¡XdS)zServe a GET request.N)Ú send_headr ÚcopyfilerG©rÚfrrrÚdo_GETšs zSimpleHTTPRequestHandler.do_GETcCs| ¡}|r| ¡dS)zServe a HEAD request.N)r§r r©rrrÚdo_HEAD£sz SimpleHTTPRequestHandler.do_HEADc Cs^| |j¡}d}tj |¡rÂtj |j¡}|j d¡sŒ| t j ¡|d|d|dd|d|df}tj  |¡}|  d|¡|  ¡dSd D]&}tj ||¡}tj |¡r|}qÂq| |¡S| |¡}| d¡rè| t jd ¡dSzt|d ƒ}Wn&tk r| t jd ¡YdSXz"t | ¡¡}d |jkröd |jkröztj |jd ¡} Wnttttfk r|YnzX| j dkrš| j!t"j#j$d} | j t"j#j$kröt"j" %|j&t"j#j$¡} | j!dd} | | krö| t j'¡|  ¡| (¡WdS| t j)¡|  d|¡|  dt*|dƒ¡|  d| +|j&¡¡|  ¡|WS| (¡‚YnXdS)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. Nrrr r réZLocation)z index.htmlz index.htmzFile not foundÚrbzIf-Modified-Sincez If-None-Match)Útzinfo)Z microsecondú Content-typerVéz Last-Modified),Útranslate_pathr2r ÚisdirÚurllibÚparseZurlsplitÚendswithrYrZMOVED_PERMANENTLYZ urlunsplitrZrArnÚexistsÚlist_directoryÚ guess_typer0Ú NOT_FOUNDÚopenÚOSErrorÚfstatÚfilenor8r†r‡Zparsedate_to_datetimeÚ TypeErrorr/Ú OverflowErrorr-r¯rUÚdatetimeÚtimezoneZutcZ fromtimestampÚst_mtimer[r ÚOKr&rd) rr2rªÚpartsZ new_partsZnew_urlÚindexZctypeZfsZimsZ last_modifrrrr§©s€    ÿ       ÿÿ ÿ      ÿz"SimpleHTTPRequestHandler.send_headc CsØzt |¡}Wn$tk r2| tjd¡YdSX|jdd„dg}ztjj |j dd}Wn"t k r€tj  |j ¡}YnXt j |dd }t ¡}d |}| d ¡| d ¡| d |¡| d|¡| d|¡| d¡|D]v}tj  ||¡}|} } tj  |¡r$|d} |d} tj  |¡r:|d} | dtjj| ddt j | dd f¡qì| d¡d |¡ |d¡} t ¡} |  | ¡|  d¡| tj¡| dd|¡| dtt| ƒƒ¡| ¡| S)zûHelper 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(). zNo permission to list directoryNcSs| ¡SrŸ)r:)ÚarrrÚrmz9SimpleHTTPRequestHandler.list_directory..)ÚkeyÚ surrogatepass©ÚerrorsFrPzDirectory listing for %szZz z@z%s z

%s

z
    rú@z
  • %s
  • z

Ú Úsurrogateescaperr°ztext/html; charset=%srV) r Úlistdirr¼r0rrºÚsortr´rµÚunquoter2ÚUnicodeDecodeErrorr]r^r|Úgetfilesystemencodingrirnr³ÚislinkrQr_ÚioÚBytesIOraÚseekrYrÄrZr&r+rA) rr2ÚlistÚrZ displaypathÚencÚtitleÚnameÚfullnameZ displaynameZlinknameZencodedrªrrrr¸shþ ÿ   ÿ ÿ þÿ    z'SimpleHTTPRequestHandler.list_directorycCsÎ| dd¡d}| dd¡d}| ¡ d¡}ztjj|dd}Wn tk rbtj |¡}YnXt |¡}| d¡}t d|ƒ}|j }|D]0}t j   |¡sŒ|t jt jfkr®qŒt j  ||¡}qŒ|rÊ|d7}|S) zñTranslate 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ú#rrÊrËN)r*r(r¶r´rµrÒrÓÚ posixpathÚnormpathÚfilterržr r2ÚdirnameÚcurdirÚpardirrn)rr2Ztrailing_slashr=Zwordrrrr²:s$    z'SimpleHTTPRequestHandler.translate_pathcCst ||¡dS)añCopy 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)rÚsourceZ outputfilerrrr¨Xsz!SimpleHTTPRequestHandler.copyfilecCsLt |¡\}}||jkr"|j|S| ¡}||jkr>|j|S|jdSdS)a»Guess 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)ráÚsplitextÚextensions_mapr:)rr2ÚbaseZextrrrr¹hs    z#SimpleHTTPRequestHandler.guess_typezapplication/octet-streamz text/plain)rú.pyz.cz.h)rrrr’r“rƒr£r«r¬r§r¸r²r¨r¹Ú mimetypesZinitedZinitZ types_mapÚcopyrêÚupdateÚ __classcell__rrr¥rr…s&  W: üc CsÎ| d¡\}}}tj |¡}| d¡}g}|dd…D],}|dkrL| ¡q6|r6|dkr6| |¡q6|r˜| ¡}|rœ|dkrŠ| ¡d}qœ|dkrœd}nd}|r®d ||f¡}dd |¡|f}d |¡}|S)aÌ Given a URL path, remove extra '/'s and '.' path elements and collapse any '..' references and returns a collapsed 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: The reconstituted URL, which will always start with a '/'. Raises: IndexError if too many '..' occur within the path. rßrNrz..rr)Ú partitionr´rµrÒr*Úpoprirn) r2Ú_ÚqueryÚ path_partsZ head_partsÚpartZ tail_partZ splitpathÚcollapsed_pathrrrÚ_url_collapse_paths.      røcCsrtrtSz ddl}Wntk r*YdSXz| d¡daWn.tk rldtdd„| ¡DƒƒaYnXtS) z$Internal routine to get nobody's uidrNrÚnobodyr r css|]}|dVqdS)r Nr)rurŠrrrÚ Ësznobody_uid..)rùÚpwdÚ ImportErrorÚgetpwnamrXÚmaxZgetpwall)rûrrrÚ nobody_uid¿s  rÿcCst |tj¡S)zTest for executable file.)r ÚaccessÚX_OK)r2rrrÚ executableÏsrc@sVeZdZdZeedƒZdZdd„Zdd„Z dd „Z d d gZ d d „Z dd„Z dd„ZdS)rz­Complete 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$| ¡r| ¡n| tjd¡dS)zRServe a POST request. This is only implemented for CGI scripts. zCan only POST to CGI scriptsN)Úis_cgiÚrun_cgir0rrErBrrrÚdo_POSTås  þzCGIHTTPRequestHandler.do_POSTcCs| ¡r| ¡St |¡SdS)z-Version of send_head that support CGI scriptsN)rrrr§rBrrrr§ószCGIHTTPRequestHandler.send_headcCsPt|jƒ}| dd¡}|d|…||dd…}}||jkrL||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ør2ÚfindÚcgi_directoriesÚcgi_info)rr÷Zdir_sepÚheadÚtailrrrrús    zCGIHTTPRequestHandler.is_cgiz/cgi-binz/htbincCst|ƒS)z1Test whether argument path is an executable file.)r)rr2rrrÚ is_executablesz#CGIHTTPRequestHandler.is_executablecCstj |¡\}}| ¡dkS)z.Test whether argument path is a Python script.)rìz.pyw)r r2rér:)rr2r r rrrÚ is_pythonszCGIHTTPRequestHandler.is_pythonc) Cs¦|j\}}|d|}| dt|ƒd¡}|dkrˆ|d|…}||dd…}| |¡}tj |¡rˆ||}}| dt|ƒd¡}q*qˆq*| d¡\}}} | d¡}|dkrÆ|d|…||d…} }n |d} }|d| } | | ¡} tj | ¡s |  t j d| ¡dStj  | ¡s.|  t j d| ¡dS| | ¡} |jsF| sh| | ¡sh|  t j d | ¡dSt tj¡}| ¡|d <|jj|d <d |d <|j|d<t|jjƒ|d<|j|d<tj |¡}||d<| |¡|d<| |d<| rð| |d<|jd|d<|j  d¡}|r¸| !¡}t|ƒdkr¸ddl"}ddl#}|d|d<|d $¡dkr¸z"|d %d¡}| &|¡ 'd¡}Wn|j(t)fk r’Yn&X| !d¡}t|ƒdkr¸|d|d<|j  d¡dkrÚ|j *¡|d<n|jd|d<|j  d¡}|r||d <|j  d!¡}|r||d"<g}|j +d#¡D]>}|dd…d$krR| ,| -¡¡n||d%d… !d&¡}q,d& .|¡|d'<|j  d(¡}|r”||d)<t/d|j 0d*g¡ƒ}d+ .|¡}|rÀ||d,<d-D]}| 1|d¡qÄ| 2t j3d.¡| 4¡|  5d/d0¡}|jr| g}d1|kr| ,|¡t6ƒ}|j7 8¡t 9¡}|dkr”t :|d¡\}}t; ;|jd2|¡dSz\zt ?|¡Wnt@k rºYnXt A|j< B¡d¡t A|j7 B¡d¡t C| ||¡Wn(|j D|jE|j¡t Fd3¡YnXn„ddlG} | g}!| | ¡rrtHjI}"|" $¡ Jd4¡rf|"dd5…|"d6d…}"|"d7g|!}!d1| kr†|! ,| ¡| Kd8|  L|!¡¡z tM|ƒ}#WntNtOfk rÂd}#YnX| jP|!| jQ| jQ| jQ|d9}$|j $¡d:kr|#dkr|j< =|#¡}%nd}%t; ;|j|jq |$ T|%¡\}&}'|j7 U|&¡|'rj| >d;|'¡|$jV W¡|$jX W¡|$jY}(|(r˜| >d2|(¡n | Kd<¡dS)=zExecute a CGI script.rr rNrßrzNo such CGI script (%r)z#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_TYPEZbasicÚasciiú:Z REMOTE_USERz content-typeZ CONTENT_TYPEzcontent-lengthÚCONTENT_LENGTHÚrefererÚ HTTP_REFERERÚacceptz éú,Z HTTP_ACCEPTz user-agentÚHTTP_USER_AGENTZcookiez, Ú HTTP_COOKIE)rZ REMOTE_HOSTrrrrzScript output followsú+r‚ú=zCGI script exit status %#xryzw.exeéûÿÿÿéüÿÿÿz-uz command: %s)ÚstdinÚstdoutr}ÚenvZpostz%szCGI script exited OK)Zr rr+r²r r2r³rñr·r0rrºÚisfileZ FORBIDDENr Ú have_forkr rîZdeepcopyÚenvironrcZserverrr1r&rr"r´rµrÒrŽr8r9r*Úbase64Úbinasciir:r_Z decodebytesÚdecodeÚErrorÚ UnicodeErrorZget_content_typeZgetallmatchingheadersriÚstriprnrãZget_allÚ setdefaultrYrÄrlrUrÿrGrHrÚwaitpidÚselectr6ÚreadrIÚsetuidr¼Údup2r¾ÚexecveZ handle_errorZrequestÚ_exitÚ subprocessr|rr¶rqZ list2cmdliner.r¿r-ÚPopenÚPIPEZ_sockZrecvZ communicaterar}r rÚ returncode))rÚdirÚrestr2ÚiZnextdirZnextrestZ scriptdirrórôZscriptZ scriptnameZ scriptfileZispyr Zuqrestrr$r%ZlengthrrÚlineZuaÚcoZ cookie_strÚkZ decoded_queryrtrùÚpidÚstsr2ZcmdlineZinterpÚnbytesÚpÚdatarr}Zstatusrrrrs<          þþ  þ         ÿ                  ü    zCGIHTTPRequestHandler.run_cgiN)rrrr’rDr r"Zrbufsizerr§rrr r rrrrrrÔs cGs4tj|tjtjdœŽ}tt|ƒƒ\}}}}}||fS)N)ÚtypeÚflags)rZ getaddrinfoZ SOCK_STREAMZ AI_PASSIVEÚnextÚiter)ZaddressZinfosZfamilyrAÚprotoZ canonnameZsockaddrrrrÚ_get_best_familyÝsýrFri@c Cs´t||ƒ\|_}||_|||ƒŠ}|j ¡dd…\}}d|krLd|›dn|}td|›d|›d|›d|›d ƒz | ¡Wn&tk r¤td ƒt  d ¡YnXW5QRXdS) zmTest the HTTP request handler class. This runs an HTTP server on port 8000 (or the port argument). Nr rú[ú]zServing HTTP on z port z (http://z/) ...z& Keyboard interrupt received, exiting.r) rFZaddress_familyr1rZ getsocknameÚprintZ serve_foreverÚKeyboardInterruptr|Úexit) Ú HandlerClassÚ ServerClassZprotocolrÚbindZaddrZhttpdrZurl_hostrrrÚtestçs ÿ rOÚ__main__z--cgiÚ store_truezRun as CGI Server)ÚactionÚhelpz--bindz-bZADDRESSz8Specify alternate bind address [default: all interfaces])ÚmetavarrSz --directoryz-dz9Specify alternative directory [default:current directory])ÚdefaultrSrZstorerßz&Specify alternate port [default: 8000])rRrUrAÚnargsrSrcseZdZ‡fdd„Z‡ZS)ÚDualStackServerc s4t t¡|j tjtjd¡W5QRXtƒ ¡S)Nr) Ú contextlibÚsuppressÚ ExceptionrZ setsockoptZ IPPROTO_IPV6Z IPV6_V6ONLYr¢r rBr¥rrr s ÿzDualStackServer.server_bind)rrrr rðrrr¥rrWsrW)rLrMrrN):r’r“Ú__all__rîrÁZ email.utilsr†r]Z http.clientr4rÖr—rír rár,rçrr r|r…Z urllib.parser´rXÚ functoolsrrr”r•r rZThreadingMixInrZStreamRequestHandlerrrrørùrÿrrrFrOrÚargparseÚArgumentParserÚparserÚ add_argumentr¡r.Ú parse_argsrtZcgiZ handler_classržrWrrNrrrrÚs¦Rþ   s 0  þ  ÿ ÿÿýÿü