blob: eee8e5a82650b47614edcefdfed25a5d1f24d367 [file] [log] [blame]
Guido van Rossumd2560b01996-05-28 23:41:25 +00001'''An FTP client class, and some helper functions.
2Based on RFC 959: File Transfer Protocol
3(FTP), by J. Postel and J. Reynolds
Guido van Rossum1115ab21992-11-04 15:51:30 +00004
Guido van Rossumd2560b01996-05-28 23:41:25 +00005Changes and improvements suggested by Steve Majewski.
6Modified by Jack to work on the mac.
7Modified by Siebren to support docstrings and PASV.
Guido van Rossumae3b3a31993-11-30 13:43:54 +00008
Guido van Rossum1115ab21992-11-04 15:51:30 +00009
Guido van Rossumd2560b01996-05-28 23:41:25 +000010Example:
11
12>>> from ftplib import FTP
13>>> ftp = FTP('ftp.python.org') # connect to host, default port
14>>> ftp.login() # default, i.e.: user anonymous, passwd user@hostname
Guido van Rossum2f3941d1997-10-07 14:49:56 +000015'230 Guest login ok, access restrictions apply.'
Guido van Rossumd2560b01996-05-28 23:41:25 +000016>>> ftp.retrlines('LIST') # list directory contents
17total 9
18drwxr-xr-x 8 root wheel 1024 Jan 3 1994 .
19drwxr-xr-x 8 root wheel 1024 Jan 3 1994 ..
20drwxr-xr-x 2 root wheel 1024 Jan 3 1994 bin
21drwxr-xr-x 2 root wheel 1024 Jan 3 1994 etc
22d-wxrwxr-x 2 ftp wheel 1024 Sep 5 13:43 incoming
23drwxr-xr-x 2 root wheel 1024 Nov 17 1993 lib
24drwxr-xr-x 6 1094 wheel 1024 Sep 13 19:07 pub
25drwxr-xr-x 3 root wheel 1024 Jan 3 1994 usr
26-rw-r--r-- 1 root root 312 Aug 1 1994 welcome.msg
Guido van Rossum2f3941d1997-10-07 14:49:56 +000027'226 Transfer complete.'
Guido van Rossumd2560b01996-05-28 23:41:25 +000028>>> ftp.quit()
Guido van Rossum2f3941d1997-10-07 14:49:56 +000029'221 Goodbye.'
Guido van Rossumd2560b01996-05-28 23:41:25 +000030>>>
31
32A nice test that reveals some of the network dialogue would be:
33python ftplib.py -d localhost -l -p -l
34'''
Guido van Rossumc567c601992-11-05 22:22:37 +000035
36
Guido van Rossum1115ab21992-11-04 15:51:30 +000037import os
38import sys
Guido van Rossum1115ab21992-11-04 15:51:30 +000039import string
40
Guido van Rossumb6775db1994-08-01 11:34:53 +000041# Import SOCKS module if it exists, else standard socket module socket
42try:
Guido van Rossum8ca84201998-03-26 20:56:10 +000043 import SOCKS; socket = SOCKS
Guido van Rossumb6775db1994-08-01 11:34:53 +000044except ImportError:
Guido van Rossum8ca84201998-03-26 20:56:10 +000045 import socket
Guido van Rossumb6775db1994-08-01 11:34:53 +000046
Guido van Rossum1115ab21992-11-04 15:51:30 +000047
Guido van Rossumd3166071993-05-24 14:16:22 +000048# Magic number from <socket.h>
49MSG_OOB = 0x1 # Process data out of band
50
51
Guido van Rossumc567c601992-11-05 22:22:37 +000052# The standard FTP server control port
Guido van Rossum1115ab21992-11-04 15:51:30 +000053FTP_PORT = 21
Guido van Rossum1115ab21992-11-04 15:51:30 +000054
55
Guido van Rossum21974791992-11-06 13:34:17 +000056# Exception raised when an error or invalid response is received
Guido van Rossumc567c601992-11-05 22:22:37 +000057error_reply = 'ftplib.error_reply' # unexpected [123]xx reply
58error_temp = 'ftplib.error_temp' # 4xx errors
59error_perm = 'ftplib.error_perm' # 5xx errors
60error_proto = 'ftplib.error_proto' # response does not begin with [1-5]
Guido van Rossum1115ab21992-11-04 15:51:30 +000061
62
Guido van Rossum21974791992-11-06 13:34:17 +000063# All exceptions (hopefully) that may be raised here and that aren't
64# (always) programming errors on our side
65all_errors = (error_reply, error_temp, error_perm, error_proto, \
Guido van Rossumc0e68d11995-09-30 16:51:50 +000066 socket.error, IOError, EOFError)
Guido van Rossum21974791992-11-06 13:34:17 +000067
68
Guido van Rossum1115ab21992-11-04 15:51:30 +000069# Line terminators (we always output CRLF, but accept any of CRLF, CR, LF)
70CRLF = '\r\n'
71
72
Guido van Rossum1115ab21992-11-04 15:51:30 +000073# The class itself
74class FTP:
75
Guido van Rossumd2560b01996-05-28 23:41:25 +000076 '''An FTP client class.
77
78 To create a connection, call the class using these argument:
79 host, user, passwd, acct
80 These are all strings, and have default value ''.
81 Then use self.connect() with optional host and port argument.
82
83 To download a file, use ftp.retrlines('RETR ' + filename),
84 or ftp.retrbinary() with slightly different arguments.
85 To upload a file, use ftp.storlines() or ftp.storbinary(),
86 which have an open file as argument (see their definitions
87 below for details).
88 The download/upload functions first issue appropriate TYPE
89 and PORT or PASV commands.
90'''
91
92 # Initialization method (called by class instantiation).
Guido van Rossum52fc1f61993-06-17 12:38:10 +000093 # Initialize host to localhost, port to standard ftp port
Guido van Rossumae3b3a31993-11-30 13:43:54 +000094 # Optional arguments are host (for connect()),
95 # and user, passwd, acct (for login())
Guido van Rossumb6775db1994-08-01 11:34:53 +000096 def __init__(self, host = '', user = '', passwd = '', acct = ''):
Guido van Rossum52fc1f61993-06-17 12:38:10 +000097 # Initialize the instance to something mostly harmless
Guido van Rossum1115ab21992-11-04 15:51:30 +000098 self.debugging = 0
Guido van Rossum52fc1f61993-06-17 12:38:10 +000099 self.host = ''
100 self.port = FTP_PORT
101 self.sock = None
102 self.file = None
103 self.welcome = None
Guido van Rossum2f3941d1997-10-07 14:49:56 +0000104 resp = None
Guido van Rossumb6775db1994-08-01 11:34:53 +0000105 if host:
Guido van Rossum2f3941d1997-10-07 14:49:56 +0000106 resp = self.connect(host)
107 if user: resp = self.login(user, passwd, acct)
Guido van Rossum52fc1f61993-06-17 12:38:10 +0000108
Guido van Rossumb6775db1994-08-01 11:34:53 +0000109 def connect(self, host = '', port = 0):
Guido van Rossumd2560b01996-05-28 23:41:25 +0000110 '''Connect to host. Arguments are:
111 - host: hostname to connect to (string, default previous host)
112 - port: port to connect to (integer, default previous port)'''
Guido van Rossumb6775db1994-08-01 11:34:53 +0000113 if host: self.host = host
114 if port: self.port = port
Guido van Rossumd2560b01996-05-28 23:41:25 +0000115 self.passiveserver = 0
Guido van Rossum1115ab21992-11-04 15:51:30 +0000116 self.sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
117 self.sock.connect(self.host, self.port)
Guido van Rossum24611f81996-09-30 22:02:50 +0000118 self.file = self.sock.makefile('rb')
Guido van Rossum1115ab21992-11-04 15:51:30 +0000119 self.welcome = self.getresp()
Guido van Rossum2f3941d1997-10-07 14:49:56 +0000120 return self.welcome
Guido van Rossum1115ab21992-11-04 15:51:30 +0000121
Guido van Rossum1115ab21992-11-04 15:51:30 +0000122 def getwelcome(self):
Guido van Rossumd2560b01996-05-28 23:41:25 +0000123 '''Get the welcome message from the server.
124 (this is read and squirreled away by connect())'''
Guido van Rossumebaf1041995-05-05 15:54:14 +0000125 if self.debugging:
126 print '*welcome*', self.sanitize(self.welcome)
Guido van Rossum1115ab21992-11-04 15:51:30 +0000127 return self.welcome
128
Guido van Rossume65cce51993-11-08 15:05:21 +0000129 def set_debuglevel(self, level):
Guido van Rossumd2560b01996-05-28 23:41:25 +0000130 '''Set the debugging level.
131 The required argument level means:
132 0: no debugging output (default)
133 1: print commands and responses but not body text etc.
134 2: also print raw lines read and sent before stripping CR/LF'''
Guido van Rossum1115ab21992-11-04 15:51:30 +0000135 self.debugging = level
Guido van Rossume65cce51993-11-08 15:05:21 +0000136 debug = set_debuglevel
Guido van Rossum1115ab21992-11-04 15:51:30 +0000137
Guido van Rossumd2560b01996-05-28 23:41:25 +0000138 def set_pasv(self, val):
139 '''Use passive or active mode for data transfers.
140 With a false argument, use the normal PORT mode,
141 With a true argument, use the PASV command.'''
142 self.passiveserver = val
143
Guido van Rossumebaf1041995-05-05 15:54:14 +0000144 # Internal: "sanitize" a string for printing
145 def sanitize(self, s):
146 if s[:5] == 'pass ' or s[:5] == 'PASS ':
147 i = len(s)
148 while i > 5 and s[i-1] in '\r\n':
149 i = i-1
150 s = s[:5] + '*'*(i-5) + s[i:]
151 return `s`
152
Guido van Rossum1115ab21992-11-04 15:51:30 +0000153 # Internal: send one line to the server, appending CRLF
154 def putline(self, line):
155 line = line + CRLF
Guido van Rossumebaf1041995-05-05 15:54:14 +0000156 if self.debugging > 1: print '*put*', self.sanitize(line)
Guido van Rossum1115ab21992-11-04 15:51:30 +0000157 self.sock.send(line)
158
159 # Internal: send one command to the server (through putline())
160 def putcmd(self, line):
Guido van Rossumebaf1041995-05-05 15:54:14 +0000161 if self.debugging: print '*cmd*', self.sanitize(line)
Guido van Rossum1115ab21992-11-04 15:51:30 +0000162 self.putline(line)
163
164 # Internal: return one line from the server, stripping CRLF.
165 # Raise EOFError if the connection is closed
166 def getline(self):
167 line = self.file.readline()
168 if self.debugging > 1:
Guido van Rossumebaf1041995-05-05 15:54:14 +0000169 print '*get*', self.sanitize(line)
Guido van Rossum1115ab21992-11-04 15:51:30 +0000170 if not line: raise EOFError
171 if line[-2:] == CRLF: line = line[:-2]
172 elif line[-1:] in CRLF: line = line[:-1]
173 return line
174
175 # Internal: get a response from the server, which may possibly
176 # consist of multiple lines. Return a single string with no
177 # trailing CRLF. If the response consists of multiple lines,
178 # these are separated by '\n' characters in the string
179 def getmultiline(self):
180 line = self.getline()
181 if line[3:4] == '-':
182 code = line[:3]
183 while 1:
184 nextline = self.getline()
185 line = line + ('\n' + nextline)
186 if nextline[:3] == code and \
187 nextline[3:4] <> '-':
188 break
189 return line
190
191 # Internal: get a response from the server.
192 # Raise various errors if the response indicates an error
193 def getresp(self):
194 resp = self.getmultiline()
Guido van Rossumebaf1041995-05-05 15:54:14 +0000195 if self.debugging: print '*resp*', self.sanitize(resp)
Guido van Rossum1115ab21992-11-04 15:51:30 +0000196 self.lastresp = resp[:3]
197 c = resp[:1]
198 if c == '4':
Guido van Rossumc567c601992-11-05 22:22:37 +0000199 raise error_temp, resp
Guido van Rossum1115ab21992-11-04 15:51:30 +0000200 if c == '5':
Guido van Rossumc567c601992-11-05 22:22:37 +0000201 raise error_perm, resp
Guido van Rossum1115ab21992-11-04 15:51:30 +0000202 if c not in '123':
Guido van Rossumc567c601992-11-05 22:22:37 +0000203 raise error_proto, resp
Guido van Rossum1115ab21992-11-04 15:51:30 +0000204 return resp
205
Guido van Rossumc567c601992-11-05 22:22:37 +0000206 def voidresp(self):
Guido van Rossumd2560b01996-05-28 23:41:25 +0000207 """Expect a response beginning with '2'."""
Guido van Rossumc567c601992-11-05 22:22:37 +0000208 resp = self.getresp()
209 if resp[0] <> '2':
210 raise error_reply, resp
Guido van Rossum2f3941d1997-10-07 14:49:56 +0000211 return resp
Guido van Rossumc567c601992-11-05 22:22:37 +0000212
Guido van Rossumd3166071993-05-24 14:16:22 +0000213 def abort(self):
Guido van Rossumd2560b01996-05-28 23:41:25 +0000214 '''Abort a file transfer. Uses out-of-band data.
215 This does not follow the procedure from the RFC to send Telnet
216 IP and Synch; that doesn't seem to work with the servers I've
217 tried. Instead, just send the ABOR command as OOB data.'''
Guido van Rossumd3166071993-05-24 14:16:22 +0000218 line = 'ABOR' + CRLF
Guido van Rossumebaf1041995-05-05 15:54:14 +0000219 if self.debugging > 1: print '*put urgent*', self.sanitize(line)
Guido van Rossumd3166071993-05-24 14:16:22 +0000220 self.sock.send(line, MSG_OOB)
221 resp = self.getmultiline()
222 if resp[:3] not in ('426', '226'):
223 raise error_proto, resp
224
Guido van Rossum1115ab21992-11-04 15:51:30 +0000225 def sendcmd(self, cmd):
Guido van Rossumd2560b01996-05-28 23:41:25 +0000226 '''Send a command and return the response.'''
Guido van Rossum1115ab21992-11-04 15:51:30 +0000227 self.putcmd(cmd)
228 return self.getresp()
229
Guido van Rossumc567c601992-11-05 22:22:37 +0000230 def voidcmd(self, cmd):
Guido van Rossumd2560b01996-05-28 23:41:25 +0000231 """Send a command and expect a response beginning with '2'."""
Guido van Rossumc68a4011992-11-05 23:01:42 +0000232 self.putcmd(cmd)
Guido van Rossum2f3941d1997-10-07 14:49:56 +0000233 return self.voidresp()
Guido van Rossumc567c601992-11-05 22:22:37 +0000234
Guido van Rossum221ec0b1995-08-04 04:39:30 +0000235 def sendport(self, host, port):
Guido van Rossumd2560b01996-05-28 23:41:25 +0000236 '''Send a PORT command with the current host and the given port number.'''
Guido van Rossum221ec0b1995-08-04 04:39:30 +0000237 hbytes = string.splitfields(host, '.')
Guido van Rossum1115ab21992-11-04 15:51:30 +0000238 pbytes = [`port/256`, `port%256`]
239 bytes = hbytes + pbytes
240 cmd = 'PORT ' + string.joinfields(bytes, ',')
Guido van Rossum2f3941d1997-10-07 14:49:56 +0000241 return self.voidcmd(cmd)
Guido van Rossum1115ab21992-11-04 15:51:30 +0000242
Guido van Rossum1115ab21992-11-04 15:51:30 +0000243 def makeport(self):
Guido van Rossumd2560b01996-05-28 23:41:25 +0000244 '''Create a new socket and send a PORT command for it.'''
Guido van Rossum1115ab21992-11-04 15:51:30 +0000245 global nextport
Guido van Rossum1115ab21992-11-04 15:51:30 +0000246 sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
Guido van Rossum303c1791995-06-20 17:21:42 +0000247 sock.bind(('', 0))
Guido van Rossumb6775db1994-08-01 11:34:53 +0000248 sock.listen(1)
Guido van Rossum221ec0b1995-08-04 04:39:30 +0000249 dummyhost, port = sock.getsockname() # Get proper port
250 host, dummyport = self.sock.getsockname() # Get proper host
251 resp = self.sendport(host, port)
Guido van Rossum1115ab21992-11-04 15:51:30 +0000252 return sock
253
Fred Drake4de02d91997-01-10 18:26:09 +0000254 def ntransfercmd(self, cmd):
Guido van Rossumd2560b01996-05-28 23:41:25 +0000255 '''Initiate a transfer over the data connection.
256 If the transfer is active, send a port command and
257 the transfer command, and accept the connection.
258 If the server is passive, send a pasv command, connect
259 to it, and start the transfer command.
Fred Drake4de02d91997-01-10 18:26:09 +0000260 Either way, return the socket for the connection and
261 the expected size of the transfer. The expected size
262 may be None if it could not be determined.'''
263 size = None
Guido van Rossumd2560b01996-05-28 23:41:25 +0000264 if self.passiveserver:
265 host, port = parse227(self.sendcmd('PASV'))
266 conn = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
267 conn.connect(host, port)
268 resp = self.sendcmd(cmd)
269 if resp[0] <> '1':
270 raise error_reply, resp
271 else:
272 sock = self.makeport()
273 resp = self.sendcmd(cmd)
274 if resp[0] <> '1':
275 raise error_reply, resp
276 conn, sockaddr = sock.accept()
Fred Drake4de02d91997-01-10 18:26:09 +0000277 if resp[:3] == '150':
278 # this is conditional in case we received a 125
279 size = parse150(resp)
280 return conn, size
281
282 def transfercmd(self, cmd):
283 '''Initiate a transfer over the data connection. Returns
284 the socket for the connection. See also ntransfercmd().'''
285 return self.ntransfercmd(cmd)[0]
Guido van Rossumc567c601992-11-05 22:22:37 +0000286
Guido van Rossumb6775db1994-08-01 11:34:53 +0000287 def login(self, user = '', passwd = '', acct = ''):
Guido van Rossumd2560b01996-05-28 23:41:25 +0000288 '''Login, default anonymous.'''
Guido van Rossumc567c601992-11-05 22:22:37 +0000289 if not user: user = 'anonymous'
Guido van Rossum98245091998-02-19 21:15:44 +0000290 if not passwd: passwd = ''
291 if not acct: acct = ''
Guido van Rossumc567c601992-11-05 22:22:37 +0000292 if user == 'anonymous' and passwd in ('', '-'):
293 thishost = socket.gethostname()
Jack Jansen2db6bfc1995-05-04 15:02:18 +0000294 # Make sure it is fully qualified
295 if not '.' in thishost:
Guido van Rossum8ca84201998-03-26 20:56:10 +0000296 thisaddr = socket.gethostbyname(thishost)
297 firstname, names, unused = \
298 socket.gethostbyaddr(thisaddr)
299 names.insert(0, firstname)
300 for name in names:
301 if '.' in name:
302 thishost = name
303 break
Jack Jansen40b98351995-01-19 12:24:45 +0000304 try:
305 if os.environ.has_key('LOGNAME'):
306 realuser = os.environ['LOGNAME']
307 elif os.environ.has_key('USER'):
308 realuser = os.environ['USER']
309 else:
310 realuser = 'anonymous'
311 except AttributeError:
312 # Not all systems have os.environ....
Guido van Rossumc567c601992-11-05 22:22:37 +0000313 realuser = 'anonymous'
314 passwd = passwd + realuser + '@' + thishost
315 resp = self.sendcmd('USER ' + user)
316 if resp[0] == '3': resp = self.sendcmd('PASS ' + passwd)
317 if resp[0] == '3': resp = self.sendcmd('ACCT ' + acct)
318 if resp[0] <> '2':
319 raise error_reply, resp
Guido van Rossum2f3941d1997-10-07 14:49:56 +0000320 return resp
Guido van Rossumc567c601992-11-05 22:22:37 +0000321
Guido van Rossumab76af31997-12-03 19:34:14 +0000322 def retrbinary(self, cmd, callback, blocksize=8192):
Guido van Rossumd2560b01996-05-28 23:41:25 +0000323 '''Retrieve data in binary mode.
324 The argument is a RETR command.
325 The callback function is called for each block.
326 This creates a new port for you'''
Guido van Rossumc567c601992-11-05 22:22:37 +0000327 self.voidcmd('TYPE I')
328 conn = self.transfercmd(cmd)
Guido van Rossum1115ab21992-11-04 15:51:30 +0000329 while 1:
330 data = conn.recv(blocksize)
331 if not data:
332 break
333 callback(data)
334 conn.close()
Guido van Rossum2f3941d1997-10-07 14:49:56 +0000335 return self.voidresp()
Guido van Rossum1115ab21992-11-04 15:51:30 +0000336
Guido van Rossumb6775db1994-08-01 11:34:53 +0000337 def retrlines(self, cmd, callback = None):
Guido van Rossumd2560b01996-05-28 23:41:25 +0000338 '''Retrieve data in line mode.
339 The argument is a RETR or LIST command.
340 The callback function (2nd argument) is called for each line,
341 with trailing CRLF stripped. This creates a new port for you.
Fred Draked5f173b1999-07-07 13:36:59 +0000342 print_line() is the default callback.'''
Guido van Rossumae3b3a31993-11-30 13:43:54 +0000343 if not callback: callback = print_line
Guido van Rossumc567c601992-11-05 22:22:37 +0000344 resp = self.sendcmd('TYPE A')
345 conn = self.transfercmd(cmd)
Guido van Rossum24611f81996-09-30 22:02:50 +0000346 fp = conn.makefile('rb')
Guido van Rossum1115ab21992-11-04 15:51:30 +0000347 while 1:
348 line = fp.readline()
Guido van Rossumc0e68d11995-09-30 16:51:50 +0000349 if self.debugging > 2: print '*retr*', `line`
Guido van Rossum1115ab21992-11-04 15:51:30 +0000350 if not line:
351 break
352 if line[-2:] == CRLF:
353 line = line[:-2]
Guido van Rossumc6769c51998-12-21 16:26:31 +0000354 elif line[-1:] == '\n':
Guido van Rossum1115ab21992-11-04 15:51:30 +0000355 line = line[:-1]
356 callback(line)
357 fp.close()
358 conn.close()
Guido van Rossum2f3941d1997-10-07 14:49:56 +0000359 return self.voidresp()
Guido van Rossum1115ab21992-11-04 15:51:30 +0000360
Guido van Rossumc567c601992-11-05 22:22:37 +0000361 def storbinary(self, cmd, fp, blocksize):
Guido van Rossumd2560b01996-05-28 23:41:25 +0000362 '''Store a file in binary mode.'''
Guido van Rossumc567c601992-11-05 22:22:37 +0000363 self.voidcmd('TYPE I')
364 conn = self.transfercmd(cmd)
365 while 1:
366 buf = fp.read(blocksize)
367 if not buf: break
368 conn.send(buf)
369 conn.close()
Guido van Rossum2f3941d1997-10-07 14:49:56 +0000370 return self.voidresp()
Guido van Rossumc567c601992-11-05 22:22:37 +0000371
Guido van Rossumc567c601992-11-05 22:22:37 +0000372 def storlines(self, cmd, fp):
Guido van Rossumd2560b01996-05-28 23:41:25 +0000373 '''Store a file in line mode.'''
Guido van Rossumc567c601992-11-05 22:22:37 +0000374 self.voidcmd('TYPE A')
375 conn = self.transfercmd(cmd)
376 while 1:
377 buf = fp.readline()
378 if not buf: break
379 if buf[-2:] <> CRLF:
380 if buf[-1] in CRLF: buf = buf[:-1]
381 buf = buf + CRLF
382 conn.send(buf)
383 conn.close()
Guido van Rossum2f3941d1997-10-07 14:49:56 +0000384 return self.voidresp()
Guido van Rossumc567c601992-11-05 22:22:37 +0000385
Guido van Rossum0eaa74b1996-01-25 18:37:21 +0000386 def acct(self, password):
Guido van Rossumd2560b01996-05-28 23:41:25 +0000387 '''Send new account name.'''
Guido van Rossum0eaa74b1996-01-25 18:37:21 +0000388 cmd = 'ACCT ' + password
Guido van Rossum2f3941d1997-10-07 14:49:56 +0000389 return self.voidcmd(cmd)
Guido van Rossum0eaa74b1996-01-25 18:37:21 +0000390
Guido van Rossumc567c601992-11-05 22:22:37 +0000391 def nlst(self, *args):
Guido van Rossumd2560b01996-05-28 23:41:25 +0000392 '''Return a list of files in a given directory (default the current).'''
Guido van Rossumc567c601992-11-05 22:22:37 +0000393 cmd = 'NLST'
394 for arg in args:
395 cmd = cmd + (' ' + arg)
396 files = []
397 self.retrlines(cmd, files.append)
398 return files
399
Guido van Rossumae3b3a31993-11-30 13:43:54 +0000400 def dir(self, *args):
Guido van Rossumd2560b01996-05-28 23:41:25 +0000401 '''List a directory in long form.
402 By default list current directory to stdout.
403 Optional last argument is callback function; all
404 non-empty arguments before it are concatenated to the
405 LIST command. (This *should* only be used for a pathname.)'''
Guido van Rossumae3b3a31993-11-30 13:43:54 +0000406 cmd = 'LIST'
407 func = None
408 if args[-1:] and type(args[-1]) != type(''):
409 args, func = args[:-1], args[-1]
410 for arg in args:
411 if arg:
412 cmd = cmd + (' ' + arg)
413 self.retrlines(cmd, func)
414
Guido van Rossumc567c601992-11-05 22:22:37 +0000415 def rename(self, fromname, toname):
Guido van Rossumd2560b01996-05-28 23:41:25 +0000416 '''Rename a file.'''
Guido van Rossumc567c601992-11-05 22:22:37 +0000417 resp = self.sendcmd('RNFR ' + fromname)
418 if resp[0] <> '3':
Guido van Rossum1115ab21992-11-04 15:51:30 +0000419 raise error_reply, resp
Guido van Rossum2f3941d1997-10-07 14:49:56 +0000420 return self.voidcmd('RNTO ' + toname)
Guido van Rossumc567c601992-11-05 22:22:37 +0000421
Guido van Rossum8ca84201998-03-26 20:56:10 +0000422 def delete(self, filename):
Guido van Rossumd2560b01996-05-28 23:41:25 +0000423 '''Delete a file.'''
Guido van Rossum8ca84201998-03-26 20:56:10 +0000424 resp = self.sendcmd('DELE ' + filename)
Guido van Rossum6bbd1d01998-07-02 20:41:20 +0000425 if resp[:3] in ('250', '200'):
Guido van Rossum8ca84201998-03-26 20:56:10 +0000426 return resp
427 elif resp[:1] == '5':
428 raise error_perm, resp
429 else:
430 raise error_reply, resp
Guido van Rossuma61bdeb1995-10-11 17:36:31 +0000431
Guido van Rossum02cf5821993-05-17 08:00:02 +0000432 def cwd(self, dirname):
Guido van Rossumd2560b01996-05-28 23:41:25 +0000433 '''Change to a directory.'''
Guido van Rossumdf563861993-07-06 15:19:36 +0000434 if dirname == '..':
Guido van Rossumae3b3a31993-11-30 13:43:54 +0000435 try:
Guido van Rossum2f3941d1997-10-07 14:49:56 +0000436 return self.voidcmd('CDUP')
Guido van Rossumae3b3a31993-11-30 13:43:54 +0000437 except error_perm, msg:
438 if msg[:3] != '500':
439 raise error_perm, msg
Guido van Rossum1ebcf6a1999-08-18 21:51:10 +0000440 elif dirname == '':
441 dirname = '.' # does nothing, but could return error
Guido van Rossumae3b3a31993-11-30 13:43:54 +0000442 cmd = 'CWD ' + dirname
Guido van Rossum2f3941d1997-10-07 14:49:56 +0000443 return self.voidcmd(cmd)
Guido van Rossum02cf5821993-05-17 08:00:02 +0000444
Guido van Rossum17ed1ae1993-06-01 13:21:04 +0000445 def size(self, filename):
Guido van Rossumd2560b01996-05-28 23:41:25 +0000446 '''Retrieve the size of a file.'''
447 # Note that the RFC doesn't say anything about 'SIZE'
Guido van Rossum17ed1ae1993-06-01 13:21:04 +0000448 resp = self.sendcmd('SIZE ' + filename)
449 if resp[:3] == '213':
450 return string.atoi(string.strip(resp[3:]))
451
Guido van Rossumc567c601992-11-05 22:22:37 +0000452 def mkd(self, dirname):
Guido van Rossumd2560b01996-05-28 23:41:25 +0000453 '''Make a directory, return its full pathname.'''
Guido van Rossumc567c601992-11-05 22:22:37 +0000454 resp = self.sendcmd('MKD ' + dirname)
455 return parse257(resp)
456
Guido van Rossum98245091998-02-19 21:15:44 +0000457 def rmd(self, dirname):
458 '''Remove a directory.'''
459 return self.voidcmd('RMD ' + dirname)
460
Guido van Rossumc567c601992-11-05 22:22:37 +0000461 def pwd(self):
Guido van Rossumd2560b01996-05-28 23:41:25 +0000462 '''Return current working directory.'''
Guido van Rossumc567c601992-11-05 22:22:37 +0000463 resp = self.sendcmd('PWD')
464 return parse257(resp)
Guido van Rossum1115ab21992-11-04 15:51:30 +0000465
Guido van Rossum1115ab21992-11-04 15:51:30 +0000466 def quit(self):
Guido van Rossumd2560b01996-05-28 23:41:25 +0000467 '''Quit, and close the connection.'''
Guido van Rossum2f3941d1997-10-07 14:49:56 +0000468 resp = self.voidcmd('QUIT')
Guido van Rossum17ed1ae1993-06-01 13:21:04 +0000469 self.close()
Guido van Rossum2f3941d1997-10-07 14:49:56 +0000470 return resp
Guido van Rossum17ed1ae1993-06-01 13:21:04 +0000471
Guido van Rossum17ed1ae1993-06-01 13:21:04 +0000472 def close(self):
Guido van Rossumd2560b01996-05-28 23:41:25 +0000473 '''Close the connection without assuming anything about it.'''
Guido van Rossum1115ab21992-11-04 15:51:30 +0000474 self.file.close()
475 self.sock.close()
Guido van Rossumc567c601992-11-05 22:22:37 +0000476 del self.file, self.sock
477
478
Guido van Rossumacfb82a1997-10-22 20:49:52 +0000479_150_re = None
Fred Drake4de02d91997-01-10 18:26:09 +0000480
481def parse150(resp):
Guido van Rossum8ca84201998-03-26 20:56:10 +0000482 '''Parse the '150' response for a RETR request.
483 Returns the expected transfer size or None; size is not guaranteed to
484 be present in the 150 message.
485 '''
486 if resp[:3] != '150':
487 raise error_reply, resp
488 global _150_re
489 if _150_re is None:
490 import re
Fred Drake9291d271998-04-27 14:39:44 +0000491 _150_re = re.compile("150 .* \((\d+) bytes\)", re.IGNORECASE)
Guido van Rossum8ca84201998-03-26 20:56:10 +0000492 m = _150_re.match(resp)
493 if m:
494 return string.atoi(m.group(1))
495 return None
Fred Drake4de02d91997-01-10 18:26:09 +0000496
497
Guido van Rossumd2560b01996-05-28 23:41:25 +0000498def parse227(resp):
499 '''Parse the '227' response for a PASV request.
500 Raises error_proto if it does not contain '(h1,h2,h3,h4,p1,p2)'
501 Return ('host.addr.as.numbers', port#) tuple.'''
502
503 if resp[:3] <> '227':
504 raise error_reply, resp
505 left = string.find(resp, '(')
506 if left < 0: raise error_proto, resp
507 right = string.find(resp, ')', left + 1)
508 if right < 0:
509 raise error_proto, resp # should contain '(h1,h2,h3,h4,p1,p2)'
510 numbers = string.split(resp[left+1:right], ',')
511 if len(numbers) <> 6:
512 raise error_proto, resp
513 host = string.join(numbers[:4], '.')
514 port = (string.atoi(numbers[4]) << 8) + string.atoi(numbers[5])
515 return host, port
Guido van Rossumd2560b01996-05-28 23:41:25 +0000516
517
Guido van Rossumc567c601992-11-05 22:22:37 +0000518def parse257(resp):
Guido van Rossum98245091998-02-19 21:15:44 +0000519 '''Parse the '257' response for a MKD or PWD request.
520 This is a response to a MKD or PWD request: a directory name.
Guido van Rossumd2560b01996-05-28 23:41:25 +0000521 Returns the directoryname in the 257 reply.'''
522
Guido van Rossumc567c601992-11-05 22:22:37 +0000523 if resp[:3] <> '257':
524 raise error_reply, resp
525 if resp[3:5] <> ' "':
526 return '' # Not compliant to RFC 959, but UNIX ftpd does this
527 dirname = ''
528 i = 5
529 n = len(resp)
530 while i < n:
531 c = resp[i]
532 i = i+1
533 if c == '"':
534 if i >= n or resp[i] <> '"':
535 break
536 i = i+1
537 dirname = dirname + c
538 return dirname
Guido van Rossum1115ab21992-11-04 15:51:30 +0000539
Guido van Rossum2f3941d1997-10-07 14:49:56 +0000540
Guido van Rossumae3b3a31993-11-30 13:43:54 +0000541def print_line(line):
Guido van Rossumd2560b01996-05-28 23:41:25 +0000542 '''Default retrlines callback to print a line.'''
Guido van Rossumae3b3a31993-11-30 13:43:54 +0000543 print line
544
Guido van Rossum2f3941d1997-10-07 14:49:56 +0000545
Guido van Rossumd2560b01996-05-28 23:41:25 +0000546def ftpcp(source, sourcename, target, targetname = '', type = 'I'):
547 '''Copy file from one FTP-instance to another.'''
548 if not targetname: targetname = sourcename
549 type = 'TYPE ' + type
550 source.voidcmd(type)
551 target.voidcmd(type)
552 sourcehost, sourceport = parse227(source.sendcmd('PASV'))
553 target.sendport(sourcehost, sourceport)
554 # RFC 959: the user must "listen" [...] BEFORE sending the
555 # transfer request.
556 # So: STOR before RETR, because here the target is a "user".
557 treply = target.sendcmd('STOR ' + targetname)
558 if treply[:3] not in ('125', '150'): raise error_proto # RFC 959
559 sreply = source.sendcmd('RETR ' + sourcename)
560 if sreply[:3] not in ('125', '150'): raise error_proto # RFC 959
561 source.voidresp()
562 target.voidresp()
Guido van Rossum1115ab21992-11-04 15:51:30 +0000563
Guido van Rossum56d1e3a1997-03-14 04:16:54 +0000564
Guido van Rossum56d1e3a1997-03-14 04:16:54 +0000565class Netrc:
Guido van Rossum8ca84201998-03-26 20:56:10 +0000566 """Class to parse & provide access to 'netrc' format files.
Fred Drake475d51d1997-06-24 22:02:54 +0000567
Guido van Rossum8ca84201998-03-26 20:56:10 +0000568 See the netrc(4) man page for information on the file format.
Guido van Rossum56d1e3a1997-03-14 04:16:54 +0000569
Guido van Rossumc822a451998-12-22 16:49:16 +0000570 WARNING: This class is obsolete -- use module netrc instead.
571
Guido van Rossum56d1e3a1997-03-14 04:16:54 +0000572 """
Guido van Rossum8ca84201998-03-26 20:56:10 +0000573 __defuser = None
574 __defpasswd = None
575 __defacct = None
Guido van Rossum56d1e3a1997-03-14 04:16:54 +0000576
Guido van Rossum8ca84201998-03-26 20:56:10 +0000577 def __init__(self, filename=None):
578 if not filename:
579 if os.environ.has_key("HOME"):
580 filename = os.path.join(os.environ["HOME"],
581 ".netrc")
582 else:
583 raise IOError, \
584 "specify file to load or set $HOME"
585 self.__hosts = {}
586 self.__macros = {}
587 fp = open(filename, "r")
588 in_macro = 0
589 while 1:
590 line = fp.readline()
591 if not line: break
592 if in_macro and string.strip(line):
593 macro_lines.append(line)
594 continue
595 elif in_macro:
596 self.__macros[macro_name] = tuple(macro_lines)
597 in_macro = 0
598 words = string.split(line)
599 host = user = passwd = acct = None
600 default = 0
601 i = 0
602 while i < len(words):
603 w1 = words[i]
604 if i+1 < len(words):
605 w2 = words[i + 1]
606 else:
607 w2 = None
608 if w1 == 'default':
609 default = 1
610 elif w1 == 'machine' and w2:
611 host = string.lower(w2)
612 i = i + 1
613 elif w1 == 'login' and w2:
614 user = w2
615 i = i + 1
616 elif w1 == 'password' and w2:
617 passwd = w2
618 i = i + 1
619 elif w1 == 'account' and w2:
620 acct = w2
621 i = i + 1
622 elif w1 == 'macdef' and w2:
623 macro_name = w2
624 macro_lines = []
625 in_macro = 1
626 break
627 i = i + 1
628 if default:
629 self.__defuser = user or self.__defuser
630 self.__defpasswd = passwd or self.__defpasswd
631 self.__defacct = acct or self.__defacct
632 if host:
633 if self.__hosts.has_key(host):
634 ouser, opasswd, oacct = \
635 self.__hosts[host]
636 user = user or ouser
637 passwd = passwd or opasswd
638 acct = acct or oacct
639 self.__hosts[host] = user, passwd, acct
640 fp.close()
Guido van Rossum56d1e3a1997-03-14 04:16:54 +0000641
Guido van Rossum8ca84201998-03-26 20:56:10 +0000642 def get_hosts(self):
643 """Return a list of hosts mentioned in the .netrc file."""
644 return self.__hosts.keys()
645
646 def get_account(self, host):
647 """Returns login information for the named host.
648
649 The return value is a triple containing userid,
650 password, and the accounting field.
651
652 """
653 host = string.lower(host)
654 user = passwd = acct = None
655 if self.__hosts.has_key(host):
656 user, passwd, acct = self.__hosts[host]
657 user = user or self.__defuser
658 passwd = passwd or self.__defpasswd
659 acct = acct or self.__defacct
660 return user, passwd, acct
661
662 def get_macros(self):
663 """Return a list of all defined macro names."""
664 return self.__macros.keys()
665
666 def get_macro(self, macro):
667 """Return a sequence of lines which define a named macro."""
668 return self.__macros[macro]
Guido van Rossum56d1e3a1997-03-14 04:16:54 +0000669
Fred Drake475d51d1997-06-24 22:02:54 +0000670
Guido van Rossum56d1e3a1997-03-14 04:16:54 +0000671
Guido van Rossum1115ab21992-11-04 15:51:30 +0000672def test():
Guido van Rossumd2560b01996-05-28 23:41:25 +0000673 '''Test program.
Fred Drake475d51d1997-06-24 22:02:54 +0000674 Usage: ftp [-d] [-r[file]] host [-l[dir]] [-d[dir]] [-p] [file] ...'''
Guido van Rossumd2560b01996-05-28 23:41:25 +0000675
Guido van Rossumb6775db1994-08-01 11:34:53 +0000676 debugging = 0
Fred Drake475d51d1997-06-24 22:02:54 +0000677 rcfile = None
Guido van Rossumb6775db1994-08-01 11:34:53 +0000678 while sys.argv[1] == '-d':
679 debugging = debugging+1
680 del sys.argv[1]
Fred Drake475d51d1997-06-24 22:02:54 +0000681 if sys.argv[1][:2] == '-r':
682 # get name of alternate ~/.netrc file:
683 rcfile = sys.argv[1][2:]
684 del sys.argv[1]
Guido van Rossumb6775db1994-08-01 11:34:53 +0000685 host = sys.argv[1]
686 ftp = FTP(host)
687 ftp.set_debuglevel(debugging)
Fred Drake475d51d1997-06-24 22:02:54 +0000688 userid = passwd = acct = ''
689 try:
Guido van Rossum8ca84201998-03-26 20:56:10 +0000690 netrc = Netrc(rcfile)
Fred Drake475d51d1997-06-24 22:02:54 +0000691 except IOError:
Guido van Rossum8ca84201998-03-26 20:56:10 +0000692 if rcfile is not None:
693 sys.stderr.write("Could not open account file"
694 " -- using anonymous login.")
Fred Drake475d51d1997-06-24 22:02:54 +0000695 else:
Guido van Rossum8ca84201998-03-26 20:56:10 +0000696 try:
697 userid, passwd, acct = netrc.get_account(host)
698 except KeyError:
699 # no account for host
700 sys.stderr.write(
701 "No account -- using anonymous login.")
Fred Drake475d51d1997-06-24 22:02:54 +0000702 ftp.login(userid, passwd, acct)
Guido van Rossumb6775db1994-08-01 11:34:53 +0000703 for file in sys.argv[2:]:
704 if file[:2] == '-l':
705 ftp.dir(file[2:])
706 elif file[:2] == '-d':
707 cmd = 'CWD'
708 if file[2:]: cmd = cmd + ' ' + file[2:]
709 resp = ftp.sendcmd(cmd)
Guido van Rossumd2560b01996-05-28 23:41:25 +0000710 elif file == '-p':
711 ftp.set_pasv(not ftp.passiveserver)
Guido van Rossumb6775db1994-08-01 11:34:53 +0000712 else:
713 ftp.retrbinary('RETR ' + file, \
714 sys.stdout.write, 1024)
715 ftp.quit()
Guido van Rossum221ec0b1995-08-04 04:39:30 +0000716
717
718if __name__ == '__main__':
719 test()