Hacked By AnonymousFox

Current Path : /opt/alt/python33/lib64/python3.3/__pycache__/
Upload File :
Current File : //opt/alt/python33/lib64/python3.3/__pycache__/telnetlib.cpython-33.pyo

�
��f�jc@s�dZddlZddlZddlZddlZyddlmZWn"ek
rnddlmZYnXdgZ	dZ
dZedg�Z
edg�Zed	g�Zed
g�Zedg�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        <Dec  2 11:10> 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
ii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
dd�Zd
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(ueofuTELNET_PORTuhostuportutimeoutusocketucreate_connectionusock(uselfuhostuportutimeout((u./opt/alt/python33/lib64/python3.3/telnetlib.pyuopen�s					uTelnet.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�|}||}nw�n�WYdd}
~
XnXxf|	D]^\}}
|
|@r3tdt|j�|�}|j�|j�|jj||�}q3q3W|dk	r�t�|}||kr�Pn||}q�q�W|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
Cs�t|�}|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|||j<qq�|j|7_qt|j�dkr�|ttt	t
fkr�|j|7_qnd|_|tkr||j|||j<q�|tkr#d|_d|_n6|t
krYd|_|j|d|_d|d<n|jr{|j|j|t�q�|jdt|��qt|j�dkr|jdd�}d|_|}|ttfkrF|jd|tkr�dp�d	t|��|jr+|j|j||�q�|jjtt
|�q�|t	t
fkr�|jd|t	krsd
pvdt|��|jr�|j|j||�q�|jjtt|�q�qqWWn$tk
r�d|_d|_YnX|j|d|_|j|d|_dS(
u�Transfer from raw queue to cooked queue.

        Set self.eof when connection is closed.  Don't block unless in
        the midst of an IAC sequence.

        ssiiuIAC %d not recognizediu	IAC %s %duDOuDONTuWILLuWONTN(urawqurawq_getcharuiacsequtheNULLuIACusbulenuDOuDONTuWILLuWONTuSBusbdataquSEuoption_callbackusockuNOOPTumsguordusendalluEOFErrorucookedq(uselfubufucucmduopt((u./opt/alt/python33/lib64/python3.3/telnetlib.pyuprocess_rawq�sh				
			"		"	&
		uTelnet.process_rawqcCs�|js(|j�|jr(t�q(n|j|j|jd�}|jd|_|jt|j�kr�d|_d|_n|S(u�Get next char from raw queue.

        Block if no data is immediately available.  Raise EOFError
        when connection is closed.

        isi(urawqu	fill_rawqueofuEOFErroruirawqulen(uselfuc((u./opt/alt/python33/lib64/python3.3/telnetlib.pyurawq_getchar"s	
		uTelnet.rawq_getcharcCsm|jt|j�kr-d|_d|_n|jjd�}|jd|�||_|j||_dS(u�Fill raw queue from exactly one recv() system call.

        Block if no data is immediately available.  Set self.eof when
        connection is closed.

        sii2urecv %rN(uirawqulenurawqusockurecvumsgueof(uselfubuf((u./opt/alt/python33/lib64/python3.3/telnetlib.pyu	fill_rawq4s	
uTelnet.fill_rawqcCs+tj|gggd�|gggfkS(u-Test whether data is available on the socket.i(uselect(uself((u./opt/alt/python33/lib64/python3.3/telnetlib.pyu
sock_availEsuTelnet.sock_availcCs�tjdkr|j�dSx�tj|tjggg�\}}}||kr�y|j�}Wntk
r�td�PYnX|r�tjj	|j
d��tjj�q�ntj|kr tjj�j
d�}|s�Pn|j	|�q q dS(u9Interaction function, emulates a very dumb telnet client.uwin32Nu(*** Connection closed by remote host ***uascii(usysuplatformumt_interactuselectustdinu
read_eageruEOFErroruprintustdoutuwriteudecodeuflushureadlineuencode(uselfurfduwfduxfdutextuline((u./opt/alt/python33/lib64/python3.3/telnetlib.pyuinteractIs&
'

uTelnet.interactcCsXddl}|j|jf�x2tjj�}|s;Pn|j|jd��q"dS(u$Multithreaded version of interact().iNuascii(u_threadustart_new_threadulistenerusysustdinureadlineuwriteuencode(uselfu_threaduline((u./opt/alt/python33/lib64/python3.3/telnetlib.pyumt_interact_suTelnet.mt_interactcCslxey|j�}Wn tk
r5td�dSYnX|rXtjj|jd��qtjj�qdS(u>Helper 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||�||<q/q/W|}|dk	r�t�}n|j�d}xc|D][}||j|j	�}|r�|j
�}	|j	d|	�}
|j	|	d�|_	Pq�q�W|s�tj�}tj
tjB}|j||�x~|r�|jr�y)|j|dkrpdnd|�}
Wnitjk
r�}	zF|	jtjkr�|dk	r�t�|}||}nwDn�WYdd}	~	XnXx�|
D]�\}}||@r�|j�|j�xf|D][}||j|j	�}|r"|j
�}	|j	d|	�}
|j	|	d�|_	Pq"q"Wq�q�W|dk	rDt�|}||kr�Pn||}qDqDW|j|�n|r�|||
fS|j�}
|
r
|jr
t�ndd|
fS(u�Read until one from a list of a regular expressions matches.

        This method uses select.poll() to implement the timeout.
        Nusearchii�ii����(uNoneurangeulenuhasattrureucompileu_timeuprocess_rawqusearchucookedquenduselectupolluPOLLINuPOLLPRIuregisterueofuerroruerrnouEINTRu	fill_rawqu
unregisteruread_very_lazyuEOFError(uselfuexpect_listutimeoutureuindicesuiucall_timeoutu
time_startumueutextupollerupoll_in_or_priority_flagsureadyuelapsedufdumode((u./opt/alt/python33/lib64/python3.3/telnetlib.pyu_expect_with_poll�st










	uTelnet._expect_with_pollcCs�d}|dd�}tt|��}xP|D]H}t||d�s/|s]ddl}n|j||�||<q/q/W|dk	r�t�}nx|j�xl|D]d}||j|j	�}|r�|j
�}|j	d|�}	|j	|d�|_	|||	fSq�W|jrPn|dk	r�t�|}
|
|krEPn|j�ggg||
f}t
j
|�\}}
}|s�Pq�n|j�q�|j�}	|	r�|jr�t�ndd|	fS(u�Read until one from a list of a regular expressions matches.

        The timeout is implemented using select.select().
        Nusearchiii����(uNoneurangeulenuhasattrureucompileu_timeuprocess_rawqusearchucookedquendueofufilenouselectu	fill_rawquread_very_lazyuEOFError(uselfulistutimeoutureuindicesuiu
time_startumueutextuelapsedus_argsuruwux((u./opt/alt/python33/lib64/python3.3/telnetlib.pyu_expect_with_select�sD


	

	uTelnet._expect_with_selectN(%u__name__u
__module__u__qualname__u__doc__uNoneusocketu_GLOBAL_DEFAULT_TIMEOUTu__init__uopenu__del__umsguset_debuglevelucloseu
get_socketufilenouwriteu
read_untilu_read_until_with_pollu_read_until_with_selecturead_allu	read_someuread_very_eageru
read_eageru	read_lazyuread_very_lazyuread_sb_datauset_option_negotiation_callbackuprocess_rawqurawq_getcharu	fill_rawqu
sock_availuinteractumt_interactulisteneruexpectu_expect_with_pollu_expect_with_select(u
__locals__((u./opt/alt/python33/lib64/python3.3/telnetlib.pyuTelnet�s@5	
-#

H

?cCsd}x>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_timeuImportErroru__all__u
DEBUGLEVELuTELNET_PORTubytesuIACuDONTuDOuWONTuWILLutheNULLuSEuNOPuDMuBRKuIPuAOuAYTuECuELuGAuSBuBINARYuECHOuRCPuSGAuNAMSuSTATUSuTMuRCTEuNAOLuNAOPuNAOCRDuNAOHTSuNAOHTDuNAOFFDuNAOVTSuNAOVTDuNAOLFDuXASCIIuLOGOUTuBMuDETuSUPDUPuSUPDUPOUTPUTuSNDLOCuTTYPEuEORuTUIDuOUTMRKuTTYLOCuVT3270REGIMEuX3PADuNAWSuTSPEEDuLFLOWuLINEMODEuXDISPLOCuOLD_ENVIRONuAUTHENTICATIONuENCRYPTuNEW_ENVIRONuTN3270EuXAUTHuCHARSETuRSPuCOM_PORT_OPTIONuSUPPRESS_LOCAL_ECHOuTLSuKERMITuSEND_URLu	FORWARD_XuPRAGMA_LOGONu
SSPI_LOGONuPRAGMA_HEARTBEATuEXOPLuNOOPTuTelnetutestu__name__(((u./opt/alt/python33/lib64/python3.3/telnetlib.pyu<module>!s�
	��q

Hacked By AnonymousFox1.0, Coded By AnonymousFox