tzh
2024-08-22 c7d0944258c7d0943aa7b2211498fd612971ce27
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
M\¬Qc@sádZddlZddlZddlZddlZdgZdZdZedƒZ    edƒZ
edƒZ ed    ƒZ ed
ƒZ edƒZed ƒZed ƒZed ƒZedƒZedƒZedƒZedƒZedƒZedƒZedƒZedƒZedƒZedƒZedƒZedƒZedƒZedƒZedƒZ edƒZ!edƒZ"edƒZ#edƒZ$ed ƒZ%ed!ƒZ&ed"ƒZ'ed#ƒZ(ed$ƒZ)ed%ƒZ*ed&ƒZ+ed'ƒZ,ed(ƒZ-ed)ƒZ.ed*ƒZ/ed+ƒZ0edƒZ1ed,ƒZ2ed-ƒZ3ed.ƒZ4ed/ƒZ5ed0ƒZ6ed1ƒZ7ed2ƒZ8ed3ƒZ9ed4ƒZ:ed5ƒZ;ed6ƒZ<ed7ƒZ=ed8ƒZ>ed9ƒZ?ed:ƒZ@ed;ƒZAed<ƒZBed=ƒZCed>ƒZDed?ƒZEed@ƒZFedAƒZGedBƒZHedCƒZIedDƒZJedEƒZKedFƒZLedGƒZMedHƒZNedƒZOedƒZPdfdI„ƒYZQdJ„ZReSdKkrÝeRƒndS(LsSTELNET 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('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 '' 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
 
iÿÿÿÿNtTelnetiiiÿ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@eZdZd dejd„Zdejd„Zd„Zd„Z    d„Z
d„Z d„Z d    „Z d
„Zd d „Zd „Zd d „Zd„Zd„Zd„Zd„Zd„Zd„Zd„Zd„Zd„Zd„Zd„Zd„Zd„Zd„Zd„Z d d„Z!d d„Z"d d„Z#RS(!së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(sÇConstructor.
 
        When called without arguments, create an unconnected instance.
        With a hostname argument, it connects the instance; port number
        and timeout are optional.
        titpollN(t
DEBUGLEVELt
debuglevelthosttportttimeouttNonetsocktrawqtirawqtcookedqteoftiacseqtsbtsbdataqtoption_callbackthasattrtselectt    _has_polltopen(tselfRRR((sQ/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/telnetlib.pyt__init__¼s                                                      cCsRd|_|st}n||_||_||_tj||f|ƒ|_dS(sÊ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(R t TELNET_PORTRRRtsockettcreate_connectionR    (RRRR((sQ/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/telnetlib.pyRÕs                    cCs|jƒdS(s#Destructor -- close the connection.N(tclose(R((sQ/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/telnetlib.pyt__del__åscGsA|jdkr=d|j|jfG|r5||GHq=|GHndS(sÁ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.
 
        isTelnet(%s,%s):N(RRR(Rtmsgtargs((sQ/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/telnetlib.pyRés
 cCs ||_dS(shSet the debug level.
 
        The higher it is, the more debug output you get (on sys.stdout).
 
        N(R(RR((sQ/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/telnetlib.pytset_debuglevel÷scCsA|jr|jjƒnd|_d|_d|_d|_dS(sClose the connection.iiRN(R    RR RR(R((sQ/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/telnetlib.pyRÿs                 cCs|jS(s)Return the socket object used internally.(R    (R((sQ/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/telnetlib.pyt
get_socketscCs |jjƒS(s9Return the fileno() of the socket object used internally.(R    tfileno(R((sQ/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/telnetlib.pyR! scCsIt|kr%|jtttƒ}n|jd|ƒ|jj|ƒdS(s²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.
 
        ssend %rN(tIACtreplaceRR    tsendall(Rtbuffer((sQ/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/telnetlib.pytwrites cCs-|jr|j||ƒS|j||ƒSdS(sRead 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(Rt_read_until_with_pollt_read_until_with_select(RtmatchR((sQ/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/telnetlib.pyt
read_untils    cCst|ƒ}|}|dk    r:ddlm}|ƒ}n|jƒ|jj|ƒ}|dkrÇtjƒ}tjtj    B}    |j
||    ƒx&|dkr¶|j r¶y|j|ƒ}
WnWtj k
r} | j t jkr |dk    r‘|ƒ|} || }q‘q‘n‚nXxf|
D]^\} }||    @rtdt|jƒ|ƒ}|jƒ|jƒ|jj||ƒ}qqW|dk    r‘|ƒ|} | |kr¦Pn|| }q‘q‘W|j|ƒn|dkrþ||}|j| }|j||_|S|jƒS(s…Read until a given string is encountered or until timeout.
 
        This method uses select.poll() to implement the timeout.
        iÿÿÿÿ(ttimeiN(tlenRR+t process_rawqR tfindRRtPOLLINtPOLLPRItregisterR terrorterrnotEINTRtmaxt    fill_rawqt
unregistertread_very_lazy(RR)Rtnt call_timeoutR+t
time_starttitpollertpoll_in_or_priority_flagstreadytetelapsedtfdtmodetbuf((sQ/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/telnetlib.pyR')sN   
 
 
 
 
 c Cs•t|ƒ}|jƒ|jj|ƒ}|dkr_||}|j| }|j||_|S|gggf}|}|dk    r¬||f}ddlm}|ƒ}    nxÜ|j rŠtj|Œ|krŠtdt|jƒ|ƒ}|j    ƒ|jƒ|jj||ƒ}|dkrJ||}|j| }|j||_|S|dk    r¯|ƒ|    }
|
|krsPn|||
f}q¯q¯W|j
ƒS(s~Read until a given string is encountered or until timeout.
 
        The timeout is implemented using select.select().
        iiÿÿÿÿ(R+N( R,R-R R.RR+R RR5R6R8( RR)RR9R<RDts_replyts_argsR+R;RA((sQ/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/telnetlib.pyR(Vs< 
 
    "
 
 
    cCsD|jƒx!|js-|jƒ|jƒq W|j}d|_|S(s7Read all data until EOF; block until connection closed.R(R-R R6R (RRD((sQ/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/telnetlib.pytread_allzs
 
        cCsO|jƒx,|j r8|j r8|jƒ|jƒq W|j}d|_|S(s˜Read at least one byte of cooked data unless EOF is hit.
 
        Return '' if EOF is hit.  Block if no data is immediately
        available.
 
        R(R-R R R6(RRD((sQ/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/telnetlib.pyt    read_some„s
 
        cCsE|jƒx.|j r:|jƒr:|jƒ|jƒq W|jƒS(s Read everything that's possible without blocking in I/O (eager).
 
        Raise EOFError if connection closed and no cooked data
        available.  Return '' if no cooked data available otherwise.
        Don't block unless in the midst of an IAC sequence.
 
        (R-R t
sock_availR6R8(R((sQ/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/telnetlib.pytread_very_eager“s
 
 
cCsO|jƒx8|j rD|j rD|jƒrD|jƒ|jƒq W|jƒS(sçRead readily available data.
 
        Raise EOFError if connection closed and no cooked data
        available.  Return '' if no cooked data available otherwise.
        Don't block unless in the midst of an IAC sequence.
 
        (R-R R RIR6R8(R((sQ/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/telnetlib.pyt
read_eager¡s
 
#
cCs|jƒ|jƒS(sProcess and return data that's already in the queues (lazy).
 
        Raise EOFError if connection closed and no data available.
        Return '' if no cooked data available otherwise.  Don't block
        unless in the midst of an IAC sequence.
 
        (R-R8(R((sQ/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/telnetlib.pyt    read_lazy¯s
cCs<|j}d|_| r8|jr8|j r8td‚n|S(sÏReturn any data available in the cooked queue (very lazy).
 
        Raise EOFError if connection closed and no data available.
        Return '' if no cooked data available otherwise.  Don't block.
 
        Rstelnet connection closed(R R R
tEOFError(RRD((sQ/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/telnetlib.pyR8ºs
         cCs|j}d|_|S(sReturn any data available in the SB ... SE queue.
 
        Return '' 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.
 
        R(R(RRD((sQ/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/telnetlib.pyt read_sb_dataÇs        cCs ||_dS(sIProvide a callback function called after each receipt of a telnet option.N(R(Rtcallback((sQ/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/telnetlib.pytset_option_negotiation_callbackÓscCsddg}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½|t kr#d|_d|_ n6|t krYd|_|j |d|_ d|d<n|jr{|j|j|tƒq½|jdt|ƒƒqt|jƒdkr|jd}d|_|}|ttfkr@|jd|tkródpöd    t|ƒƒ|jr%|j|j||ƒqº|jjtt
|ƒq½|t    t
fkr½|jd|t    krmd
ppd t|ƒƒ|jrŸ|j|j||ƒqº|jjtt|ƒq½qqWWn#tk
rçd|_d|_nX|j|d|_|j |d|_ d S( s 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.
 
        RsiisIAC %d not recognizedis    IAC %s %dtDOtDONTtWILLtWONTN(R
t rawq_getcharRttheNULLR"RR,RQRRRSRTtSBRtSERR    tNOOPTRtordR$RMR (RRDtctcmdtopt((sQ/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/telnetlib.pyR-×sh                                        "        "    &         cCsy|js(|jƒ|jr(t‚q(n|j|j}|jd|_|jt|jƒkrud|_d|_n|S(sŽGet next char from raw queue.
 
        Block if no data is immediately available.  Raise EOFError
        when connection is closed.
 
        iRi(R
R6R RMR R,(RR[((sQ/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/telnetlib.pyRUs    
          cCsm|jt|jƒkr-d|_d|_n|jjdƒ}|jd|ƒ| |_|j||_dS(s¢Fill raw queue from exactly one recv() system call.
 
        Block if no data is immediately available.  Set self.eof when
        connection is closed.
 
        Rii2srecv %rN(R R,R
R    trecvRR (RRD((sQ/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/telnetlib.pyR61s     
cCs+tj|gggdƒ|gggfkS(s-Test whether data is available on the socket.i(R(R((sQ/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/telnetlib.pyRIBscCsåtjdkr|jƒdSxÁtj|tjgggƒ\}}}||kr¦y|jƒ}Wntk
r|dGHPnX|r¦tjj|ƒtjj    ƒq¦ntj|kr tjj
ƒ}|sÎPn|j|ƒq q dS(s9Interaction function, emulates a very dumb telnet client.twin32Ns(*** Connection closed by remote host ***( tsystplatformt mt_interactRtstdinRKRMtstdoutR&tflushtreadline(Rtrfdtwfdtxfdttexttline((sQ/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/telnetlib.pytinteractFs&
'  cCsOddl}|j|jdƒx)tjjƒ}|s;Pn|j|ƒq"dS(s$Multithreaded version of interact().iÿÿÿÿN((tthreadtstart_new_threadtlistenerR`RcRfR&(RRmRk((sQ/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/telnetlib.pyRb\s cCsZxSy|jƒ}Wntk
r,dGHdSX|rFtjj|ƒqtjjƒqdS(s>Helper for mt_interact() -- this executes in the other thread.s(*** Connection closed by remote host ***N(RKRMR`RdR&Re(Rtdata((sQ/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/telnetlib.pyRofs cCs-|jr|j||ƒS|j||ƒSdS(s±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(Rt_expect_with_pollt_expect_with_select(RtlistR((sQ/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/telnetlib.pytexpectss    cCsÞd}|}tt|ƒƒ}xP|D]H}t||dƒs&|sTddl}n|j||ƒ||<q&q&W|}|dk    r ddlm}|ƒ}n|jƒd}    xW|D]O}||j|j    ƒ}    |    r·|    j
ƒ}
|j    |
 } |j    |
|_    Pq·q·W|    s™t j ƒ} t j t jB} | j|| ƒxJ|     rˆ|j rˆy| j |ƒ}WnWt jk
r¼}
|
jtjkr¶|dk    r?|ƒ|}||}q?q?n‚nXx|D]‡\}}|| @rÄ|jƒ|jƒxZ|D]O}||j|j    ƒ}    |    rõ|    j
ƒ}
|j    |
 } |j    |
|_    PqõqõWqÄqÄW|dk    r?|ƒ|}||krxPn||}q?q?W| j|ƒn|    r¬||    | fS|jƒ} | rÑ|jrÑt‚ndd| fS(s‡Read until one from a list of a regular expressions matches.
 
        This method uses select.poll() to implement the timeout.
        tsearchiÿÿÿÿN(R+(RtrangeR,RtretcompileR+R-RuR tendRRR/R0R1R R2R3R4R6R7R8RM(Rt expect_listRRwtindicesR<R:R+R;tmR@RjR=R>R?RARBRC((sQ/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/telnetlib.pyRqŽst   
 
 
 
            cCsÃd}|}tt|ƒƒ}xP|D]H}t||dƒs&|sTddl}n|j||ƒ||<q&q&W|dk    ršddlm}|ƒ}nxô|jƒx`|D]X}||j|j    ƒ}|r®|j
ƒ}    |j    |     }
|j    |    |_    |||
fSq®W|j rPn|dk    r„|ƒ|} | |kr@Pn|j ƒggg|| f} t j | Œ\} }}| s„Pq„n|jƒq|jƒ}
|
r¶|j r¶t‚ndd|
fS(s€Read until one from a list of a regular expressions matches.
 
        The timeout is implemented using select.select().
        RuiÿÿÿÿN(R+(RRvR,RRwRxR+R-RuR RyR R!RR6R8RM(RRsRRwR{R<R+R;R|R@RjRARFtrtwtx((sQ/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/telnetlib.pyRrÍsF   
                N($t__name__t
__module__t__doc__RRt_GLOBAL_DEFAULT_TIMEOUTRRRRRRR R!R&R*R'R(RGRHRJRKRLR8RNRPR-RUR6RIRlRbRoRtRqRr(((sQ/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/telnetlib.pyR…s@5                                    - $    
                               H                    
     ?cCsd}x8tjdr@tjddkr@|d}tjd=q    Wd}tjdrdtjd}nd}tjdr½tjd}yt|ƒ}Wq½tk
r¹tj|dƒ}q½Xntƒ}|j|ƒ|j||ddƒ|j    ƒ|j
ƒd    S(
sŒTest program for telnetlib.
 
    Usage: python telnetlib.py [-d] ... [host [port]]
 
    Default host is localhost; default port is 23.
 
    iis-dt    localhostittcpRgà?N( R`targvtintt
ValueErrorRt getservbynameRRRRlR(RRRtportstrttn((sQ/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/telnetlib.pyttestös&#
         
t__main__(TR‚R3R`RRt__all__RRtchrR"RRRQRTRSRVRXtNOPtDMtBRKtIPtAOtAYTtECtELtGARWtBINARYtECHOtRCPtSGAtNAMStSTATUStTMtRCTEtNAOLtNAOPtNAOCRDtNAOHTStNAOHTDtNAOFFDtNAOVTStNAOVTDtNAOLFDtXASCIItLOGOUTtBMtDETtSUPDUPt SUPDUPOUTPUTtSNDLOCtTTYPEtEORtTUIDtOUTMRKtTTYLOCt VT3270REGIMEtX3PADtNAWStTSPEEDtLFLOWtLINEMODEtXDISPLOCt OLD_ENVIRONtAUTHENTICATIONtENCRYPTt NEW_ENVIRONtTN3270EtXAUTHtCHARSETtRSPtCOM_PORT_OPTIONtSUPPRESS_LOCAL_ECHOtTLStKERMITtSEND_URLt    FORWARD_Xt PRAGMA_LOGONt
SSPI_LOGONtPRAGMA_HEARTBEATtEXOPLRYRRŒR€(((sQ/tmp/ndk-User/buildhost/install/prebuilt/darwin-x86_64/lib/python2.7/telnetlib.pyt<module>!sª                                                                                ÿÿs