[Z @s dZddlZddlZddlZyddlmZWn"ek rbddlmZYnXdgZdZ dZ e dgZ e dgZ e d gZe d gZe d gZe dgZe d gZe d gZe dgZe dgZe dgZe dgZe dgZe dgZe dgZe dgZe dgZe dgZe dgZe dgZe dgZ e dgZ!e dgZ"e dgZ#e dgZ$e dgZ%e dgZ&e d gZ'e d!gZ(e d"gZ)e d#gZ*e d$gZ+e d%gZ,e d&gZ-e d'gZ.e d(gZ/e d)gZ0e d*gZ1e d+gZ2e d,gZ3e dgZ4e d-gZ5e d.gZ6e d/gZ7e d0gZ8e d1gZ9e d2gZ:e d3gZ;e d4gZ<e d5gZ=e d6gZ>e d7gZ?e d8gZ@e d9gZAe d:gZBe d;gZCe d<gZDe d=gZEe d>gZFe d?gZGe d@gZHe dAgZIe dBgZJe dCgZKe dDgZLe dEgZMe dFgZNe dGgZOe dHgZPe dIgZQe dgZRe dgZSeTedJrejUZVn ejWZVGdKddZXdLdMZYeZdNkr eYndS)OaQTELNET client class. Based on RFC 854: TELNET Protocol Specification, by J. Postel and J. Reynolds Example: >>> from telnetlib import Telnet >>> tn = Telnet('www.python.org', 79) # connect to finger port >>> tn.write(b'guido\r\n') >>> print(tn.read_all()) Login Name TTY Idle When Where guido Guido van Rossum pts/2 snag.cnri.reston.. >>> Note that read_all() won't read until eof -- it just reads some data -- but it guarantees to read at least one byte unless EOF is hit. It is possible to pass a Telnet object to a selector in order to wait until more data is available. Note that in this case, read_eager() may return b'' even if there was data on the socket, because the protocol negotiation may have eaten the data. This is why EOFError is needed in some cases to distinguish between "no data" and "connection closed" (since the socket also appears ready for reading when it is closed). To do: - option negotiation - timeout should be intrinsic to the connection object instead of an option on one of the read calls only N) monotonic)timeTelnet  !"#$%&'()*+,-./01 PollSelectorc@sieZdZdZddejddZdejddZdd Zd d Z d d Z ddZ ddZ ddZ ddZdddZddZddZddZddZd d!Zd"d#Zd$d%Zd&d'Zd(d)Zd*d+Zd,d-Zd.d/Zd0d1Zd2d3Zd4d5Zdd6d7ZdS)8raTelnet interface class. An instance of this class represents a connection to a telnet server. The instance is initially not connected; the open() method must be used to establish a connection. Alternatively, the host name and optional port number can be passed to the constructor, too. Don't try to reopen an already connected instance. This class has many read_*() methods. Note that some of them raise EOFError when the end of the connection is read, because they can return an empty string for other reasons. See the individual doc strings. read_until(expected, [timeout]) Read until the expected string has been seen, or a timeout is hit (default is no timeout); may block. read_all() Read all data until EOF; may block. read_some() Read at least one byte or EOF; may block. read_very_eager() Read all data available already queued or on the socket, without blocking. read_eager() Read either data already queued or some data available on the socket, without blocking. read_lazy() Read all data in the raw queue (processing it first), without doing any socket I/O. read_very_lazy() Reads all data in the cooked queue, without doing any socket I/O. read_sb_data() Reads available data between SB ... SE sequence. Don't block. set_option_negotiation_callback(callback) Each time a telnet option is read on the input flow, this callback (if set) is called with the following parameters : callback(telnet socket, command, option) option will be chr(0) when there is no option. No other action is done afterwards by telnetlib. NrcCst|_||_||_||_d|_d|_d|_d|_d|_ d|_ d|_ d|_ d|_ |dk r|j|||ndS)zConstructor. When called without arguments, create an unconnected instance. With a hostname argument, it connects the instance; port number and timeout are optional. Nr) DEBUGLEVEL debuglevelhostporttimeoutsockrawqirawqcookedqeofiacseqsbsbdataqoption_callbackopen)selfrMrNrOr[/usr/lib/python3.4/telnetlib.py__init__s              zTelnet.__init__cCsRd|_|st}n||_||_||_tj||f||_dS)zConnect to a host. The optional second argument is the port number, which defaults to the standard telnet port (23). Don't try to reopen an already connected instance. rN)rT TELNET_PORTrMrNrOsocketZcreate_connectionrP)rZrMrNrOr[r[r\rYs     z Telnet.opencCs|jdS)z#Destructor -- close the connection.N)close)rZr[r[r\__del__szTelnet.__del__cGsW|jdkrStd|j|jfdd|rFt||qSt|ndS)zPrint a debug message, when the debug level is > 0. If extra arguments are present, they are substituted in the message using the standard string formatting operator. rzTelnet(%s,%s):end N)rLprintrMrN)rZmsgargsr[r[r\res  z Telnet.msgcCs ||_dS)zhSet the debug level. The higher it is, the more debug output you get (on sys.stdout). N)rL)rZrLr[r[r\set_debuglevelszTelnet.set_debuglevelcCsA|jr|jjnd|_d|_d|_d|_dS)zClose the connection.rrrJN)rPr`rTrUrV)rZr[r[r\r` s     z Telnet.closecCs|jS)z)Return the socket object used internally.)rP)rZr[r[r\ get_socketszTelnet.get_socketcCs |jjS)z9Return the fileno() of the socket object used internally.)rPfileno)rZr[r[r\risz Telnet.filenocCsIt|kr%|jttt}n|jd||jj|dS)zWrite a string to the socket, doubling any IAC characters. Can block if the connection is blocked. May raise OSError if the connection is closed. zsend %rN)IACreplacererPsendall)rZbufferr[r[r\writes z Telnet.writec Cst|}|j|jj|}|dkrk||}|jd|}|j|d|_|S|dk rt|}nt}|j|tjx|j s{|j |rLt dt|j|}|j |j|jj||}|dkrL||}|jd|}|j|d|_|Sn|dk r|t}|dkrxPqxqqWWdQX|j S)aRead until a given string is encountered or until timeout. When no match is found, return whatever is available instead, possibly the empty string. Raise EOFError if the connection is closed and no cooked data is available. rN)len process_rawqrSfind_time_TelnetSelectorregister selectors EVENT_READrTselectmax fill_rawqread_very_lazy)rZmatchrOnibufdeadlineselectorr[r[r\ read_until&s8              zTelnet.read_untilcCsD|jx!|js-|j|jq W|j}d|_|S)z7Read all data until EOF; block until connection closed.rJ)rprTryrS)rZr~r[r[r\read_allKs     zTelnet.read_allcCsO|jx,|j r8|j r8|j|jq W|j}d|_|S)zRead at least one byte of cooked data unless EOF is hit. Return b'' if EOF is hit. Block if no data is immediately available. rJ)rprSrTry)rZr~r[r[r\ read_someUs    zTelnet.read_somecCsE|jx.|j r:|jr:|j|jq W|jS)a Read everything that's possible without blocking in I/O (eager). Raise EOFError if connection closed and no cooked data available. Return b'' if no cooked data available otherwise. Don't block unless in the midst of an IAC sequence. )rprT sock_availryrz)rZr[r[r\read_very_eagerds   zTelnet.read_very_eagercCsO|jx8|j rD|j rD|jrD|j|jq W|jS)zRead readily available data. Raise EOFError if connection closed and no cooked data available. Return b'' if no cooked data available otherwise. Don't block unless in the midst of an IAC sequence. )rprSrTrryrz)rZr[r[r\ read_eagerrs  # zTelnet.read_eagercCs|j|jS)aProcess and return data that's already in the queues (lazy). Raise EOFError if connection closed and no data available. Return b'' if no cooked data available otherwise. Don't block unless in the midst of an IAC sequence. )rprz)rZr[r[r\ read_lazys zTelnet.read_lazycCs?|j}d|_| r;|jr;|j r;tdn|S)zReturn any data available in the cooked queue (very lazy). Raise EOFError if connection closed and no data available. Return b'' if no cooked data available otherwise. Don't block. rJztelnet connection closed)rSrTrQEOFError)rZr~r[r[r\rzs   zTelnet.read_very_lazycCs|j}d|_|S)aReturn any data available in the SB ... SE queue. Return b'' if no SB ... SE available. Should only be called after seeing a SB or SE command. When a new SB command is found, old unread SB data will be discarded. Don't block. rJ)rW)rZr~r[r[r\ read_sb_datas  zTelnet.read_sb_datacCs ||_dS)zIProvide a callback function called after each receipt of a telnet option.N)rX)rZcallbackr[r[r\set_option_negotiation_callbacksz&Telnet.set_option_negotiation_callbackc Csddg}yx|jr|j}|js|tkrBqn|dkrTqn|tkr~||j|||jHelper for mt_interact() -- this executes in the other thread.z(*** Connection closed by remote host ***Nr)rrrdrrrnrr)rZdatar[r[r\r=s   zTelnet.listenerc Csd}|dd}tt|}xP|D]H}t||ds/|s]ddl}n|j||||tjddrFtjddkrF|d}tjd=q Wd}tjddrptjd}nd}tjddrtjd}yt|}Wqtk rtj|d}YqXnt}|j||j||dd |j |j dS) zTest program for telnetlib. Usage: python telnetlib.py [-d] ... [host [port]] Default host is localhost; default port is 23. rrNz-dZ localhostrZtcprOg?) rargvint ValueErrorr_Z getservbynamerrgrYrr`)rLrMrNZportstrZtnr[r[r\tests&)      r__main__)[rrr_rurrrr ImportError__all__rKr^bytesrjrrrrrrZNOPZDMZBRKZIPZAOZAYTZECZELZGArZBINARYZECHOZRCPZSGAZNAMSZSTATUSZTMZRCTEZNAOLZNAOPZNAOCRDZNAOHTSZNAOHTDZNAOFFDZNAOVTSZNAOVTDZNAOLFDZXASCIIZLOGOUTZBMZDETZSUPDUPZ SUPDUPOUTPUTZSNDLOCZTTYPEZEORZTUIDZOUTMRKZTTYLOCZ VT3270REGIMEZX3PADZNAWSZTSPEEDZLFLOWZLINEMODEZXDISPLOCZ OLD_ENVIRONZAUTHENTICATIONZENCRYPTZ NEW_ENVIRONZTN3270EZXAUTHCHARSETZRSPZCOM_PORT_OPTIONZSUPPRESS_LOCAL_ECHOZTLSZKERMITZSEND_URLZ FORWARD_XZ PRAGMA_LOGONZ SSPI_LOGONZPRAGMA_HEARTBEATZEXOPLrrrIrsZSelectSelectorrrrr[r[r[r\ s