ž §ÿfÕjc @sõdZddlZddlZddlZddlZyddlmZWn"ek rnddlmZYnXdgZ dZ dZ e dgƒZ e dgƒZe d gƒZe d gƒZe d gƒZe dgƒZe d gƒZe d gƒZe dgƒZe dgƒZe dgƒZe dgƒZe dgƒZe dgƒZe dgƒZe dgƒZe dgƒZe dgƒZe dgƒZe dgƒZ e dgƒZ!e dgƒZ"e dgƒZ#e dgƒZ$e dgƒZ%e dgƒZ&e dgƒZ'e d gƒZ(e d!gƒZ)e d"gƒZ*e d#gƒZ+e d$gƒZ,e d%gƒZ-e d&gƒZ.e d'gƒZ/e d(gƒZ0e d)gƒZ1e d*gƒZ2e d+gƒZ3e d,gƒZ4e dgƒZ5e d-gƒZ6e d.gƒZ7e d/gƒZ8e d0gƒZ9e d1gƒZ:e d2gƒZ;e d3gƒZ<e d4gƒZ=e d5gƒZ>e d6gƒZ?e d7gƒZ@e d8gƒZAe d9gƒZBe d:gƒZCe d;gƒZDe d<gƒZEe d=gƒZFe d>gƒZGe d?gƒZHe d@gƒZIe dAgƒZJe dBgƒZKe dCgƒZLe dDgƒZMe dEgƒZNe dFgƒZOe dGgƒZPe dHgƒZQe dIgƒZRe dgƒZSe dgƒZTGdJd„dƒZUdKdL„ZVeWdMkrñeVƒndS(NuVTELNET 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 select.select() 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 iN(u monotonic(utimeuTelnetiiÿiþiýiüiûiðiñiòióiôiõiöi÷iøiùiúiiiiiiiii i i i i iiiiiiiiiiiiiiiiii i!i"i#i$i%i&i'i(i)i*i+i,i-i.i/i0i1iŠi‹iŒcBs¦|EeZdZdZd?dejdd„Zdejdd„Zdd„Z d d „Z d d „Z d d„Z dd„Z dd„Zdd„Zd?dd„Zdd„Zd?dd„Zdd„Zdd„Zdd „Zd!d"„Zd#d$„Zd%d&„Zd'd(„Zd)d*„Zd+d,„Zd-d.„Zd/d0„Zd1d2„Zd3d4„Zd5d6„Z d7d8„Z!d?d9d:„Z"d?d;d<„Z#d?d=d>„Z$d?S(@uTelnetuëTelnet 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. icCs­t|_||_||_||_d|_d|_d|_d|_ d|_ d|_ d|_ d|_ d|_ttdƒ|_|dk r©|j|||ƒndS(uÇConstructor. When called without arguments, create an unconnected instance. With a hostname argument, it connects the instance; port number and timeout are optional. siupollN(u DEBUGLEVELu debugleveluhostuportutimeoutuNoneusockurawquirawqucookedqueofuiacsequsbusbdataquoption_callbackuhasattruselectu _has_polluopen(uselfuhostuportutimeout((u./opt/alt/python33/lib64/python3.3/telnetlib.pyu__init__Às               uTelnet.__init__cCsRd|_|st}n||_||_||_tj||f|ƒ|_dS(uÊConnect 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. iN(ueofu TELNET_PORTuhostuportutimeoutusocketucreate_connectionusock(uselfuhostuportutimeout((u./opt/alt/python33/lib64/python3.3/telnetlib.pyuopenÙs     u Telnet.opencCs|jƒdS(u#Destructor -- close the connection.N(uclose(uself((u./opt/alt/python33/lib64/python3.3/telnetlib.pyu__del__ésuTelnet.__del__cGsW|jdkrStd|j|jfddƒ|rFt||ƒqSt|ƒndS(uÁPrint 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. iuTelnet(%s,%s):uendu N(u debugleveluprintuhostuport(uselfumsguargs((u./opt/alt/python33/lib64/python3.3/telnetlib.pyumsgís  u Telnet.msgcCs ||_dS(uhSet the debug level. The higher it is, the more debug output you get (on sys.stdout). N(u debuglevel(uselfu debuglevel((u./opt/alt/python33/lib64/python3.3/telnetlib.pyuset_debuglevelûsuTelnet.set_debuglevelcCsA|jr|jjƒnd|_d|_d|_d|_dS(uClose the connection.iisN(usockucloseueofuiacsequsb(uself((u./opt/alt/python33/lib64/python3.3/telnetlib.pyucloses     u Telnet.closecCs|jS(u)Return the socket object used internally.(usock(uself((u./opt/alt/python33/lib64/python3.3/telnetlib.pyu get_socket suTelnet.get_socketcCs |jjƒS(u9Return the fileno() of the socket object used internally.(usockufileno(uself((u./opt/alt/python33/lib64/python3.3/telnetlib.pyufilenosu Telnet.filenocCsIt|kr%|jtttƒ}n|jd|ƒ|jj|ƒdS(u²Write a string to the socket, doubling any IAC characters. Can block if the connection is blocked. May raise socket.error if the connection is closed. usend %rN(uIACureplaceumsgusockusendall(uselfubuffer((u./opt/alt/python33/lib64/python3.3/telnetlib.pyuwrites u Telnet.writecCs-|jr|j||ƒS|j||ƒSdS(uRead 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. N(u _has_pollu_read_until_with_pollu_read_until_with_select(uselfumatchutimeout((u./opt/alt/python33/lib64/python3.3/telnetlib.pyu read_until s uTelnet.read_untilcCs,t|ƒ}|}|dk r*tƒ}n|jƒ|jj|ƒ}|dkrßtjƒ}tjtj B}|j ||ƒxN|dkrÎ|j rÎy)|j|dkr²dnd|ƒ} Wnitj k r+} zF| j t jkr|dk rtƒ|} || }nwn‚WYdd} ~ XnXxf| D]^\} } | |@r3tdt|jƒ|ƒ}|jƒ|jƒ|jj||ƒ}q3q3W|dk rtƒ|} | |kr¾Pn|| }qqW|j|ƒn|dkr"||}|jd|…}|j|d…|_|S|jƒS(u…Read until a given string is encountered or until timeout. This method uses select.poll() to implement the timeout. iièN(ulenuNoneu_timeu process_rawqucookedqufinduselectupolluPOLLINuPOLLPRIuregisterueofuerroruerrnouEINTRumaxu fill_rawqu unregisteruread_very_lazy(uselfumatchutimeoutunu call_timeoutu time_startuiupollerupoll_in_or_priority_flagsureadyueuelapsedufdumodeubuf((u./opt/alt/python33/lib64/python3.3/telnetlib.pyu_read_until_with_poll-sN                 uTelnet._read_until_with_pollc Cst|ƒ}|jƒ|jj|ƒ}|dkrk||}|jd|…}|j|d…|_|S|gggf}|}|dk r¨||f}tƒ}nxè|j r’tj|Œ|kr’tdt|jƒ|ƒ}|j ƒ|jƒ|jj||ƒ}|dkrR||}|jd|…}|j|d…|_|S|dk r«tƒ|} | |kr{Pn||| f}q«q«W|j ƒS(u~Read until a given string is encountered or until timeout. The timeout is implemented using select.select(). iN( ulenu process_rawqucookedqufinduNoneu_timeueofuselectumaxu fill_rawquread_very_lazy( uselfumatchutimeoutunuiubufus_replyus_argsu time_startuelapsed((u./opt/alt/python33/lib64/python3.3/telnetlib.pyu_read_until_with_selectZs:       "       uTelnet._read_until_with_selectcCsD|jƒx!|js-|jƒ|jƒq W|j}d|_|S(u7Read all data until EOF; block until connection closed.s(u process_rawqueofu fill_rawqucookedq(uselfubuf((u./opt/alt/python33/lib64/python3.3/telnetlib.pyuread_all}s     uTelnet.read_allcCsO|jƒx,|j r8|j r8|jƒ|jƒq W|j}d|_|S(u™Read at least one byte of cooked data unless EOF is hit. Return b'' if EOF is hit. Block if no data is immediately available. s(u process_rawqucookedqueofu fill_rawq(uselfubuf((u./opt/alt/python33/lib64/python3.3/telnetlib.pyu read_some‡s    uTelnet.read_somecCsE|jƒx.|j r:|jƒr:|jƒ|jƒq W|jƒS(u 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. (u process_rawqueofu sock_availu fill_rawquread_very_lazy(uself((u./opt/alt/python33/lib64/python3.3/telnetlib.pyuread_very_eager–s   uTelnet.read_very_eagercCsO|jƒx8|j rD|j rD|jƒrD|jƒ|jƒq W|jƒS(uèRead 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. (u process_rawqucookedqueofu sock_availu fill_rawquread_very_lazy(uself((u./opt/alt/python33/lib64/python3.3/telnetlib.pyu read_eager¤s  # uTelnet.read_eagercCs|jƒ|jƒS(uProcess 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. (u process_rawquread_very_lazy(uself((u./opt/alt/python33/lib64/python3.3/telnetlib.pyu read_lazy²s uTelnet.read_lazycCs?|j}d|_| r;|jr;|j r;tdƒ‚n|S(uÐReturn 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. sutelnet connection closed(ucookedqueofurawquEOFError(uselfubuf((u./opt/alt/python33/lib64/python3.3/telnetlib.pyuread_very_lazy½s   uTelnet.read_very_lazycCs|j}d|_|S(uReturn 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. s(usbdataq(uselfubuf((u./opt/alt/python33/lib64/python3.3/telnetlib.pyu read_sb_dataÊs  uTelnet.read_sb_datacCs ||_dS(uIProvide a callback function called after each receipt of a telnet option.N(uoption_callback(uselfucallback((u./opt/alt/python33/lib64/python3.3/telnetlib.pyuset_option_negotiation_callbackÖsu&Telnet.set_option_negotiation_callbackc Csddg}y¼xµ|jrÆ|jƒ}|js|tkrBqn|dkrTqn|tkr~||j|||jHelper for mt_interact() -- this executes in the other thread.u(*** Connection closed by remote host ***Nuascii(u read_eageruEOFErroruprintusysustdoutuwriteudecodeuflush(uselfudata((u./opt/alt/python33/lib64/python3.3/telnetlib.pyulisteneris   uTelnet.listenercCs-|jr|j||ƒS|j||ƒSdS(u±Read until one from a list of a regular expressions matches. The first argument is a list of regular expressions, either compiled (re.RegexObject instances) or uncompiled (strings). The optional second argument is a timeout, in seconds; default is no timeout. Return a tuple of three items: the index in the list of the first regular expression that matches; the match object returned; and the text read up till and including the match. If EOF is read and no text was read, raise EOFError. Otherwise, when nothing matches, return (-1, None, text) where text is the text received so far (may be the empty string if a timeout happened). If a regular expression ends with a greedy match (e.g. '.*') or if more than one expression can match the same input, the results are undeterministic, and may depend on the I/O timing. N(u _has_pollu_expect_with_pollu_expect_with_select(uselfulistutimeout((u./opt/alt/python33/lib64/python3.3/telnetlib.pyuexpectvs u Telnet.expectcCsd}|dd…}tt|ƒƒ}xP|D]H}t||dƒs/|s]ddl}n|j||ƒ||tjdd…rFtjddkrF|d}tjd=q Wd}tjdd…rptjd}nd}tjdd…rÐtjd}yt|ƒ}WqÐtk rÌtj|dƒ}YqÐXntƒ}|j|ƒ|j||dd ƒ|j ƒ|j ƒdS( uŒTest program for telnetlib. Usage: python telnetlib.py [-d] ... [host [port]] Default host is localhost; default port is 23. iiNu-du localhostiutcputimeoutgà?( usysuargvuintu ValueErrorusocketu getservbynameuTelnetuset_debugleveluopenuinteractuclose(u debugleveluhostuportuportstrutn((u./opt/alt/python33/lib64/python3.3/telnetlib.pyutestøs&)      utestu__main__(Xu__doc__uerrnousysusocketuselectutimeu monotonicu_timeu ImportErroru__all__u DEBUGLEVELu TELNET_PORTubytesuIACuDONTuDOuWONTuWILLutheNULLuSEuNOPuDMuBRKuIPuAOuAYTuECuELuGAuSBuBINARYuECHOuRCPuSGAuNAMSuSTATUSuTMuRCTEuNAOLuNAOPuNAOCRDuNAOHTSuNAOHTDuNAOFFDuNAOVTSuNAOVTDuNAOLFDuXASCIIuLOGOUTuBMuDETuSUPDUPu SUPDUPOUTPUTuSNDLOCuTTYPEuEORuTUIDuOUTMRKuTTYLOCu VT3270REGIMEuX3PADuNAWSuTSPEEDuLFLOWuLINEMODEuXDISPLOCu OLD_ENVIRONuAUTHENTICATIONuENCRYPTu NEW_ENVIRONuTN3270EuXAUTHuCHARSETuRSPuCOM_PORT_OPTIONuSUPPRESS_LOCAL_ECHOuTLSuKERMITuSEND_URLu FORWARD_Xu PRAGMA_LOGONu SSPI_LOGONuPRAGMA_HEARTBEATuEXOPLuNOOPTuTelnetutestu__name__(((u./opt/alt/python33/lib64/python3.3/telnetlib.pyu!s²      ÿÿq