Major rewrite with new read_* interfaces

This commit is contained in:
Guido van Rossum 1993-11-01 14:49:37 +00:00
parent 0b26a19a4f
commit e36f735616

View file

@ -1,13 +1,47 @@
# Telnet client library # A TELNET client class. Based on RFC 854: TELNET Protocol
# Specification, by J. Postel and J. Reynolds
# Example:
#
# >>> from telnetlib import Telnet
# >>> tn = Telnet('voorn.cwi.nl', 79) # connect to finger port
# >>> tn.write('guido\r\n')
# >>> print tn.read_all()
# Login name: guido In real life: Guido van Rossum
# Office: M353, x4127 Home phone: 020-6225521
# Directory: /ufs/guido Shell: /usr/local/bin/esh
# On since Oct 28 11:02:16 on ttyq1
# Project: Multimedia Kernel Systems
# No Plan.
# >>>
#
# Note that read() 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 to distinguish between "no data"
# and "connection closed" (since the socket also appears ready for
# reading when it is closed).
#
# Bugs:
# - may hang when connection is slow in the middle of an IAC sequence
#
# To do:
# - option negotiation
# Imported modules
import socket import socket
import select import select
import string import string
import regsub import regsub
# Tunable parameters # Tunable parameters
TIMEOUT = 30.0 DEBUGLEVEL = 0
DEBUGLEVEL = 1
# Telnet protocol defaults # Telnet protocol defaults
TELNET_PORT = 23 TELNET_PORT = 23
@ -24,158 +58,264 @@ WILL = chr(251)
class Telnet: class Telnet:
# Constructor # Constructor
def __init__(self, host, port): def __init__(self, host, *args):
self.debuglevel = DEBUGLEVEL if not args:
self.host = host port = TELNET_PORT
if not port: port = TELNET_PORT else:
self.port = port if len(args) > 1: raise TypeError, 'too many args'
self.timeout = TIMEOUT port = args[0]
self.sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM) if not port: port = TELNET_PORT
self.sock.connect((self.host, self.port)) self.debuglevel = DEBUGLEVEL
self.rawq = '' self.host = host
self.irawq = 0 self.port = port
self.cookedq = '' self.sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
self.sock.connect((self.host, self.port))
self.rawq = ''
self.irawq = 0
self.cookedq = ''
self.eof = 0
# Destructor # Destructor
def __del__(self): def __del__(self):
self.close() self.close()
# Print debug message # Debug message
def msg(self, msg, *args): def msg(self, msg, *args):
if self.debuglevel > 0: if self.debuglevel > 0:
print 'TELNET:', msg%args print 'Telnet(%s,%d):' % (self.host, self.port), msg % args
# Set debug level # Set debug level
def set_debuglevel(self, debuglevel): def set_debuglevel(self, debuglevel):
self.debuglevel = debuglevel self.debuglevel = debuglevel
# Set time-out on certain reads # Explicit close
def set_timeout(self, timeout): def close(self):
self.timeout = float(timeout) if self.sock:
self.sock.close()
self.sock = None
self.eof = 1
# Explicit close # Return socket (e.g. for select)
def close(self): def get_socket(self):
if self.sock: return self.sock
self.sock.close()
self.sock = None
# Return socket (e.g. for select) # Return socket's fileno (e.g. for select)
def get_socket(self): def fileno(self):
return self.sock return self.sock.fileno()
# Return socket's fileno (e.g. for select) # Write a string to the socket, doubling any IAC characters
def fileno(self): # Might block if the connection is blocked
return self.sock.fileno() # May raise socket.error if the connection is closed
def write(self, buffer):
if IAC in buffer:
buffer = regsub.gsub(IAC, IAC+IAC, buffer)
self.sock.send(buffer)
# Write a string to the socket, doubling any IAC characters # The following read_* methods exist:
def write(self, buffer): # Special case:
if IAC in buffer: # - read_until() reads until a string is encountered or a timeout is hit
buffer = regsub.gsub(IAC, IAC+IAC, buffer) # These may block:
self.sock.send(buffer) # - read_all() reads all data until EOF
# - read_some() reads at least one byte until EOF
# These may do I/O but won't block doing it:
# - read_very_eager() reads all data available on the socket
# - read_eager() reads either data already queued or some data
# available on the socket
# These don't do I/O:
# - read_lazy() reads all data in the raw queue (processing it first)
# - read_very_lazy() reads all data in the cooked queue
# Read until a given string is encountered or until timeout # Read until a given string is encountered or until timeout
def read_until(self, match): # Raise EOFError if connection closed and no cooked data available
## self.msg('read_until(%s)' % `match`) # Return '' if no cooked data available otherwise
n = len(match) def read_until(self, match, *args):
self.process_rawq() if not args:
i = string.find(self.cookedq, match) timeout = None
if i < 0: else:
i = max(0, len(self.cookedq)-n) if len(args) > 1: raise TypeError, 'too many args'
self.fill_cookedq() timeout = args[0]
i = string.find(self.cookedq, match, i) n = len(match)
if i >= 0: self.process_rawq()
i = i+n i = string.find(self.cookedq, match)
buf = self.cookedq[:i] if i >= 0:
self.cookedq = self.cookedq[i:] i = i+n
## self.msg('read_until(%s) -> %s' % (`match`, `buf`)) buf = self.cookedq[:i]
return buf self.cookedq = self.cookedq[i:]
while select.select([self], [], [], self.timeout) == \ return buf
([self], [], []): s_reply = ([self], [], [])
i = max(0, len(self.cookedq)-n) s_args = s_reply
self.fill_rawq() if timeout is not None:
self.process_rawq() s_args = s_args + (timeout,)
i = string.find(self.cookedq, match, i) while not self.eof and apply(select.select, s_args) == s_reply:
if i >= 0: i = max(0, len(self.cookedq)-n)
i = i+n self.fill_rawq()
buf = self.cookedq[:i] self.process_rawq()
self.cookedq = self.cookedq[i:] i = string.find(self.cookedq, match, i)
## self.msg('read_until(%s) -> %s' % if i >= 0:
## (`match`, `buf`)) i = i+n
return buf buf = self.cookedq[:i]
buf = self.cookedq self.cookedq = self.cookedq[i:]
self.cookedq = ''
## self.msg('read_until(%s) -> %s' % (`match`, `buf`))
return buf return buf
return self.read_very_lazy()
# Read everything that's possible without really blocking # Read all data until EOF
def read_now(self): # Block until connection closed
self.fill_cookedq() def read_all(self):
buf = self.cookedq self.process_rawq()
self.cookedq = '' while not self.eof:
## self.msg('read_now() --> %s' % `buf`) self.fill_rawq()
return buf self.process_rawq()
buf = self.cookedq
self.cookedq = ''
return buf
# Fill cooked queue without blocking # Read at least one byte of cooked data unless EOF is hit
def fill_cookedq(self): # Return '' if EOF is hit
self.process_rawq() # Block if no data is immediately available
while select.select([self], [], [], 0) == ([self], [], []): def read_some(self):
self.fill_rawq() self.process_rawq()
if not self.rawq: while not self.cookedq and not self.eof:
raise EOFError self.fill_rawq()
self.process_rawq() self.process_rawq()
buf = self.cookedq
self.cookedq = ''
return buf
# Transfer from raw queue to cooked queue # Read everything that's possible without blocking in I/O (eager)
def process_rawq(self): # Raise EOFError if connection closed and no cooked data available
# There is some silliness going on here in an attempt # Return '' if no cooked data available otherwise
# to avoid quadratic behavior with large inputs... # Don't block unless in the midst of an IAC sequence
buf = '' def read_very_eager(self):
while self.rawq: self.process_rawq()
c = self.rawq_getchar() while not self.eof and self.sock_avail():
if c != IAC: self.fill_rawq()
buf = buf + c self.process_rawq()
if len(buf) >= 44: return self.read_very_lazy()
## self.msg('transfer: %s' % `buf`)
self.cookedq = self.cookedq + buf
buf = ''
continue
c = self.rawq_getchar()
if c == IAC:
buf = buf + c
elif c in (DO, DONT):
opt = self.rawq_getchar()
self.msg('IAC %s %d',
c == DO and 'DO' or 'DONT',
ord(c))
self.sock.send(IAC + WONT + opt)
elif c in (WILL, WONT):
opt = self.rawq_getchar()
self.msg('IAC %s %d',
c == WILL and 'WILL' or 'WONT',
ord(c))
else:
self.msg('IAC %s not recognized' % `c`)
## self.msg('transfer: %s' % `buf`)
self.cookedq = self.cookedq + buf
# Get next char from raw queue, blocking if necessary # Read readily available data
def rawq_getchar(self): # Raise EOFError if connection closed and no cooked data available
if not self.rawq: # Return '' if no cooked data available otherwise
self.fill_rawq() # Don't block unless in the midst of an IAC sequence
if self.irawq >= len(self.rawq): def read_eager(self):
raise EOFError self.process_rawq()
c = self.rawq[self.irawq] while not self.cookedq and not self.eof and self.sock_avail():
self.irawq = self.irawq + 1 self.fill_rawq()
if self.irawq >= len(self.rawq): self.process_rawq()
self.rawq = '' return self.read_very_lazy()
self.irawq = 0
return c
# Fill raw queue # Process and return data that's already in the queues (lazy)
def fill_rawq(self): # Raise EOFError if connection closed and no data available
if self.irawq >= len(self.rawq): # Return '' if no cooked data available otherwise
self.rawq = '' # Don't block unless in the midst of an IAC sequence
self.irawq = 0 def read_lazy(self):
buf = self.sock.recv(50) self.process_rawq()
## self.msg('fill_rawq(): %s' % `buf`) return self.read_very_lazy()
self.rawq = self.rawq + buf
# 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
def read_very_lazy(self):
buf = self.cookedq
self.cookedq = ''
if not buf and self.eof and not self.rawq:
raise EOFError, 'telnet connection closed'
return buf
# 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
def process_rawq(self):
buf = ''
try:
while self.rawq:
c = self.rawq_getchar()
if c != IAC:
buf = buf + c
continue
c = self.rawq_getchar()
if c == IAC:
buf = buf + c
elif c in (DO, DONT):
opt = self.rawq_getchar()
self.msg('IAC %s %d', c == DO and 'DO' or 'DONT', ord(c))
self.sock.send(IAC + WONT + opt)
elif c in (WILL, WONT):
opt = self.rawq_getchar()
self.msg('IAC %s %d',
c == WILL and 'WILL' or 'WONT', ord(c))
else:
self.msg('IAC %s not recognized' % `c`)
except EOFError: # raised by self.rawq_getchar()
pass
self.cookedq = self.cookedq + buf
# Get next char from raw queue
# Block if no data is immediately available
# Raise EOFError when connection is closed
def rawq_getchar(self):
if not self.rawq:
self.fill_rawq()
if self.eof:
raise EOFError
c = self.rawq[self.irawq]
self.irawq = self.irawq + 1
if self.irawq >= len(self.rawq):
self.rawq = ''
self.irawq = 0
return c
# Fill raw queue from exactly one recv() system call
# Block if no data is immediately available
# Set self.eof when connection is closed
def fill_rawq(self):
if self.irawq >= len(self.rawq):
self.rawq = ''
self.irawq = 0
# The buffer size should be fairly small so as to avoid quadratic
# behavior in process_rawq() above
buf = self.sock.recv(50)
self.eof = (not buf)
self.rawq = self.rawq + buf
# Test whether data is available on the socket
def sock_avail(self):
return select.select([self], [], [], 0) == ([self], [], [])
# Test program
# Usage: test [-d] ... [host [port]]
def test():
import sys, string, socket, select
debuglevel = 0
while sys.argv[1:] and sys.argv[1] == '-d':
debuglevel = debuglevel+1
del sys.argv[1]
host = 'localhost'
if sys.argv[1:]:
host = sys.argv[1]
port = 0
if sys.argv[2:]:
portstr = sys.argv[2]
try:
port = string.atoi(portstr)
except string.atoi_error:
port = socket.getservbyname(portstr, 'tcp')
tn = Telnet(host, port)
tn.set_debuglevel(debuglevel)
while 1:
rfd, wfd, xfd = select.select([tn, sys.stdin], [], [])
if sys.stdin in rfd:
line = sys.stdin.readline()
tn.write(line)
if tn in rfd:
try:
text = tn.read_eager()
except EOFError:
print '*** Connection closed by remote host ***'
break
if text:
sys.stdout.write(text)
sys.stdout.flush()
tn.close()