~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/transport/sftp.py

  • Committer: Martin Pool
  • Date: 2006-06-05 16:23:59 UTC
  • mto: This revision was merged to the branch mainline in revision 1752.
  • Revision ID: mbp@sourcefrog.net-20060605162359-2405198cadc86895
[broken] NotBranchError should unescape the url if possible

(Fixes some info blackbox tests)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# Copyright (C) 2005 Robey Pointer <robey@lag.net>
 
2
# Copyright (C) 2005, 2006 Canonical Ltd
 
3
 
 
4
# This program is free software; you can redistribute it and/or modify
 
5
# it under the terms of the GNU General Public License as published by
 
6
# the Free Software Foundation; either version 2 of the License, or
 
7
# (at your option) any later version.
 
8
 
 
9
# This program is distributed in the hope that it will be useful,
 
10
# but WITHOUT ANY WARRANTY; without even the implied warranty of
 
11
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
12
# GNU General Public License for more details.
 
13
 
 
14
# You should have received a copy of the GNU General Public License
 
15
# along with this program; if not, write to the Free Software
 
16
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 
17
 
 
18
"""Implementation of Transport over SFTP, using paramiko."""
 
19
 
 
20
import errno
 
21
import getpass
 
22
import os
 
23
import random
 
24
import re
 
25
import stat
 
26
import subprocess
 
27
import sys
 
28
import time
 
29
import urllib
 
30
import urlparse
 
31
import weakref
 
32
 
 
33
from bzrlib.config import config_dir, ensure_config_dir_exists
 
34
from bzrlib.errors import (ConnectionError,
 
35
                           FileExists, 
 
36
                           TransportNotPossible, NoSuchFile, PathNotChild,
 
37
                           TransportError,
 
38
                           LockError, 
 
39
                           PathError,
 
40
                           ParamikoNotPresent,
 
41
                           )
 
42
from bzrlib.osutils import pathjoin, fancy_rename
 
43
from bzrlib.trace import mutter, warning, error
 
44
from bzrlib.transport import (
 
45
    register_urlparse_netloc_protocol,
 
46
    Server,
 
47
    Transport,
 
48
    )
 
49
import bzrlib.ui
 
50
import bzrlib.urlutils as urlutils
 
51
 
 
52
try:
 
53
    import paramiko
 
54
except ImportError, e:
 
55
    raise ParamikoNotPresent(e)
 
56
else:
 
57
    from paramiko.sftp import (SFTP_FLAG_WRITE, SFTP_FLAG_CREATE,
 
58
                               SFTP_FLAG_EXCL, SFTP_FLAG_TRUNC,
 
59
                               CMD_HANDLE, CMD_OPEN)
 
60
    from paramiko.sftp_attr import SFTPAttributes
 
61
    from paramiko.sftp_file import SFTPFile
 
62
    from paramiko.sftp_client import SFTPClient
 
63
 
 
64
 
 
65
register_urlparse_netloc_protocol('sftp')
 
66
 
 
67
 
 
68
def _ignore_sigint():
 
69
    # TODO: This should possibly ignore SIGHUP as well, but bzr currently
 
70
    # doesn't handle it itself.
 
71
    # <https://launchpad.net/products/bzr/+bug/41433/+index>
 
72
    import signal
 
73
    signal.signal(signal.SIGINT, signal.SIG_IGN)
 
74
    
 
75
 
 
76
def os_specific_subprocess_params():
 
77
    """Get O/S specific subprocess parameters."""
 
78
    if sys.platform == 'win32':
 
79
        # setting the process group and closing fds is not supported on 
 
80
        # win32
 
81
        return {}
 
82
    else:
 
83
        # We close fds other than the pipes as the child process does not need 
 
84
        # them to be open.
 
85
        #
 
86
        # We also set the child process to ignore SIGINT.  Normally the signal
 
87
        # would be sent to every process in the foreground process group, but
 
88
        # this causes it to be seen only by bzr and not by ssh.  Python will
 
89
        # generate a KeyboardInterrupt in bzr, and we will then have a chance
 
90
        # to release locks or do other cleanup over ssh before the connection
 
91
        # goes away.  
 
92
        # <https://launchpad.net/products/bzr/+bug/5987>
 
93
        #
 
94
        # Running it in a separate process group is not good because then it
 
95
        # can't get non-echoed input of a password or passphrase.
 
96
        # <https://launchpad.net/products/bzr/+bug/40508>
 
97
        return {'preexec_fn': _ignore_sigint,
 
98
                'close_fds': True,
 
99
                }
 
100
 
 
101
 
 
102
# don't use prefetch unless paramiko version >= 1.5.2 (there were bugs earlier)
 
103
_default_do_prefetch = False
 
104
if getattr(paramiko, '__version_info__', (0, 0, 0)) >= (1, 5, 5):
 
105
    _default_do_prefetch = True
 
106
 
 
107
 
 
108
_ssh_vendor = None
 
109
def _get_ssh_vendor():
 
110
    """Find out what version of SSH is on the system."""
 
111
    global _ssh_vendor
 
112
    if _ssh_vendor is not None:
 
113
        return _ssh_vendor
 
114
 
 
115
    _ssh_vendor = 'none'
 
116
 
 
117
    if 'BZR_SSH' in os.environ:
 
118
        _ssh_vendor = os.environ['BZR_SSH']
 
119
        if _ssh_vendor == 'paramiko':
 
120
            _ssh_vendor = 'none'
 
121
        return _ssh_vendor
 
122
 
 
123
    try:
 
124
        p = subprocess.Popen(['ssh', '-V'],
 
125
                             stdin=subprocess.PIPE,
 
126
                             stdout=subprocess.PIPE,
 
127
                             stderr=subprocess.PIPE,
 
128
                             **os_specific_subprocess_params())
 
129
        returncode = p.returncode
 
130
        stdout, stderr = p.communicate()
 
131
    except OSError:
 
132
        returncode = -1
 
133
        stdout = stderr = ''
 
134
    if 'OpenSSH' in stderr:
 
135
        mutter('ssh implementation is OpenSSH')
 
136
        _ssh_vendor = 'openssh'
 
137
    elif 'SSH Secure Shell' in stderr:
 
138
        mutter('ssh implementation is SSH Corp.')
 
139
        _ssh_vendor = 'ssh'
 
140
 
 
141
    if _ssh_vendor != 'none':
 
142
        return _ssh_vendor
 
143
 
 
144
    # XXX: 20051123 jamesh
 
145
    # A check for putty's plink or lsh would go here.
 
146
 
 
147
    mutter('falling back to paramiko implementation')
 
148
    return _ssh_vendor
 
149
 
 
150
 
 
151
class SFTPSubprocess:
 
152
    """A socket-like object that talks to an ssh subprocess via pipes."""
 
153
    def __init__(self, hostname, vendor, port=None, user=None):
 
154
        assert vendor in ['openssh', 'ssh']
 
155
        if vendor == 'openssh':
 
156
            args = ['ssh',
 
157
                    '-oForwardX11=no', '-oForwardAgent=no',
 
158
                    '-oClearAllForwardings=yes', '-oProtocol=2',
 
159
                    '-oNoHostAuthenticationForLocalhost=yes']
 
160
            if port is not None:
 
161
                args.extend(['-p', str(port)])
 
162
            if user is not None:
 
163
                args.extend(['-l', user])
 
164
            args.extend(['-s', hostname, 'sftp'])
 
165
        elif vendor == 'ssh':
 
166
            args = ['ssh', '-x']
 
167
            if port is not None:
 
168
                args.extend(['-p', str(port)])
 
169
            if user is not None:
 
170
                args.extend(['-l', user])
 
171
            args.extend(['-s', 'sftp', hostname])
 
172
 
 
173
        self.proc = subprocess.Popen(args,
 
174
                                     stdin=subprocess.PIPE,
 
175
                                     stdout=subprocess.PIPE,
 
176
                                     **os_specific_subprocess_params())
 
177
 
 
178
    def send(self, data):
 
179
        return os.write(self.proc.stdin.fileno(), data)
 
180
 
 
181
    def recv_ready(self):
 
182
        # TODO: jam 20051215 this function is necessary to support the
 
183
        # pipelined() function. In reality, it probably should use
 
184
        # poll() or select() to actually return if there is data
 
185
        # available, otherwise we probably don't get any benefit
 
186
        return True
 
187
 
 
188
    def recv(self, count):
 
189
        return os.read(self.proc.stdout.fileno(), count)
 
190
 
 
191
    def close(self):
 
192
        self.proc.stdin.close()
 
193
        self.proc.stdout.close()
 
194
        self.proc.wait()
 
195
 
 
196
 
 
197
class LoopbackSFTP(object):
 
198
    """Simple wrapper for a socket that pretends to be a paramiko Channel."""
 
199
 
 
200
    def __init__(self, sock):
 
201
        self.__socket = sock
 
202
 
 
203
    def send(self, data):
 
204
        return self.__socket.send(data)
 
205
 
 
206
    def recv(self, n):
 
207
        return self.__socket.recv(n)
 
208
 
 
209
    def recv_ready(self):
 
210
        return True
 
211
 
 
212
    def close(self):
 
213
        self.__socket.close()
 
214
 
 
215
 
 
216
SYSTEM_HOSTKEYS = {}
 
217
BZR_HOSTKEYS = {}
 
218
 
 
219
# This is a weakref dictionary, so that we can reuse connections
 
220
# that are still active. Long term, it might be nice to have some
 
221
# sort of expiration policy, such as disconnect if inactive for
 
222
# X seconds. But that requires a lot more fanciness.
 
223
_connected_hosts = weakref.WeakValueDictionary()
 
224
 
 
225
def clear_connection_cache():
 
226
    """Remove all hosts from the SFTP connection cache.
 
227
 
 
228
    Primarily useful for test cases wanting to force garbage collection.
 
229
    """
 
230
    _connected_hosts.clear()
 
231
 
 
232
 
 
233
def load_host_keys():
 
234
    """
 
235
    Load system host keys (probably doesn't work on windows) and any
 
236
    "discovered" keys from previous sessions.
 
237
    """
 
238
    global SYSTEM_HOSTKEYS, BZR_HOSTKEYS
 
239
    try:
 
240
        SYSTEM_HOSTKEYS = paramiko.util.load_host_keys(os.path.expanduser('~/.ssh/known_hosts'))
 
241
    except Exception, e:
 
242
        mutter('failed to load system host keys: ' + str(e))
 
243
    bzr_hostkey_path = pathjoin(config_dir(), 'ssh_host_keys')
 
244
    try:
 
245
        BZR_HOSTKEYS = paramiko.util.load_host_keys(bzr_hostkey_path)
 
246
    except Exception, e:
 
247
        mutter('failed to load bzr host keys: ' + str(e))
 
248
        save_host_keys()
 
249
 
 
250
 
 
251
def save_host_keys():
 
252
    """
 
253
    Save "discovered" host keys in $(config)/ssh_host_keys/.
 
254
    """
 
255
    global SYSTEM_HOSTKEYS, BZR_HOSTKEYS
 
256
    bzr_hostkey_path = pathjoin(config_dir(), 'ssh_host_keys')
 
257
    ensure_config_dir_exists()
 
258
 
 
259
    try:
 
260
        f = open(bzr_hostkey_path, 'w')
 
261
        f.write('# SSH host keys collected by bzr\n')
 
262
        for hostname, keys in BZR_HOSTKEYS.iteritems():
 
263
            for keytype, key in keys.iteritems():
 
264
                f.write('%s %s %s\n' % (hostname, keytype, key.get_base64()))
 
265
        f.close()
 
266
    except IOError, e:
 
267
        mutter('failed to save bzr host keys: ' + str(e))
 
268
 
 
269
 
 
270
class SFTPLock(object):
 
271
    """This fakes a lock in a remote location."""
 
272
    __slots__ = ['path', 'lock_path', 'lock_file', 'transport']
 
273
    def __init__(self, path, transport):
 
274
        assert isinstance(transport, SFTPTransport)
 
275
 
 
276
        self.lock_file = None
 
277
        self.path = path
 
278
        self.lock_path = path + '.write-lock'
 
279
        self.transport = transport
 
280
        try:
 
281
            # RBC 20060103 FIXME should we be using private methods here ?
 
282
            abspath = transport._remote_path(self.lock_path)
 
283
            self.lock_file = transport._sftp_open_exclusive(abspath)
 
284
        except FileExists:
 
285
            raise LockError('File %r already locked' % (self.path,))
 
286
 
 
287
    def __del__(self):
 
288
        """Should this warn, or actually try to cleanup?"""
 
289
        if self.lock_file:
 
290
            warning("SFTPLock %r not explicitly unlocked" % (self.path,))
 
291
            self.unlock()
 
292
 
 
293
    def unlock(self):
 
294
        if not self.lock_file:
 
295
            return
 
296
        self.lock_file.close()
 
297
        self.lock_file = None
 
298
        try:
 
299
            self.transport.delete(self.lock_path)
 
300
        except (NoSuchFile,):
 
301
            # What specific errors should we catch here?
 
302
            pass
 
303
 
 
304
class SFTPTransport (Transport):
 
305
    """
 
306
    Transport implementation for SFTP access.
 
307
    """
 
308
    _do_prefetch = _default_do_prefetch
 
309
 
 
310
    def __init__(self, base, clone_from=None):
 
311
        assert base.startswith('sftp://')
 
312
        self._parse_url(base)
 
313
        base = self._unparse_url()
 
314
        if base[-1] != '/':
 
315
            base += '/'
 
316
        super(SFTPTransport, self).__init__(base)
 
317
        if clone_from is None:
 
318
            self._sftp_connect()
 
319
        else:
 
320
            # use the same ssh connection, etc
 
321
            self._sftp = clone_from._sftp
 
322
        # super saves 'self.base'
 
323
    
 
324
    def should_cache(self):
 
325
        """
 
326
        Return True if the data pulled across should be cached locally.
 
327
        """
 
328
        return True
 
329
 
 
330
    def clone(self, offset=None):
 
331
        """
 
332
        Return a new SFTPTransport with root at self.base + offset.
 
333
        We share the same SFTP session between such transports, because it's
 
334
        fairly expensive to set them up.
 
335
        """
 
336
        if offset is None:
 
337
            return SFTPTransport(self.base, self)
 
338
        else:
 
339
            return SFTPTransport(self.abspath(offset), self)
 
340
 
 
341
    def abspath(self, relpath):
 
342
        """
 
343
        Return the full url to the given relative path.
 
344
        
 
345
        @param relpath: the relative path or path components
 
346
        @type relpath: str or list
 
347
        """
 
348
        return self._unparse_url(self._remote_path(relpath))
 
349
    
 
350
    def _remote_path(self, relpath):
 
351
        """Return the path to be passed along the sftp protocol for relpath.
 
352
        
 
353
        relpath is a urlencoded string.
 
354
        """
 
355
        # FIXME: share the common code across transports
 
356
        assert isinstance(relpath, basestring)
 
357
        relpath = urlutils.unescape(relpath).split('/')
 
358
        basepath = self._path.split('/')
 
359
        if len(basepath) > 0 and basepath[-1] == '':
 
360
            basepath = basepath[:-1]
 
361
 
 
362
        for p in relpath:
 
363
            if p == '..':
 
364
                if len(basepath) == 0:
 
365
                    # In most filesystems, a request for the parent
 
366
                    # of root, just returns root.
 
367
                    continue
 
368
                basepath.pop()
 
369
            elif p == '.':
 
370
                continue # No-op
 
371
            else:
 
372
                basepath.append(p)
 
373
 
 
374
        path = '/'.join(basepath)
 
375
        return path
 
376
 
 
377
    def relpath(self, abspath):
 
378
        username, password, host, port, path = self._split_url(abspath)
 
379
        error = []
 
380
        if (username != self._username):
 
381
            error.append('username mismatch')
 
382
        if (host != self._host):
 
383
            error.append('host mismatch')
 
384
        if (port != self._port):
 
385
            error.append('port mismatch')
 
386
        if (not path.startswith(self._path)):
 
387
            error.append('path mismatch')
 
388
        if error:
 
389
            extra = ': ' + ', '.join(error)
 
390
            raise PathNotChild(abspath, self.base, extra=extra)
 
391
        pl = len(self._path)
 
392
        return path[pl:].strip('/')
 
393
 
 
394
    def has(self, relpath):
 
395
        """
 
396
        Does the target location exist?
 
397
        """
 
398
        try:
 
399
            self._sftp.stat(self._remote_path(relpath))
 
400
            return True
 
401
        except IOError:
 
402
            return False
 
403
 
 
404
    def get(self, relpath):
 
405
        """
 
406
        Get the file at the given relative path.
 
407
 
 
408
        :param relpath: The relative path to the file
 
409
        """
 
410
        try:
 
411
            path = self._remote_path(relpath)
 
412
            f = self._sftp.file(path, mode='rb')
 
413
            if self._do_prefetch and (getattr(f, 'prefetch', None) is not None):
 
414
                f.prefetch()
 
415
            return f
 
416
        except (IOError, paramiko.SSHException), e:
 
417
            self._translate_io_exception(e, path, ': error retrieving')
 
418
 
 
419
    def get_partial(self, relpath, start, length=None):
 
420
        """
 
421
        Get just part of a file.
 
422
 
 
423
        :param relpath: Path to the file, relative to base
 
424
        :param start: The starting position to read from
 
425
        :param length: The length to read. A length of None indicates
 
426
                       read to the end of the file.
 
427
        :return: A file-like object containing at least the specified bytes.
 
428
                 Some implementations may return objects which can be read
 
429
                 past this length, but this is not guaranteed.
 
430
        """
 
431
        # TODO: implement get_partial_multi to help with knit support
 
432
        f = self.get(relpath)
 
433
        f.seek(start)
 
434
        if self._do_prefetch and hasattr(f, 'prefetch'):
 
435
            f.prefetch()
 
436
        return f
 
437
 
 
438
    def put(self, relpath, f, mode=None):
 
439
        """
 
440
        Copy the file-like or string object into the location.
 
441
 
 
442
        :param relpath: Location to put the contents, relative to base.
 
443
        :param f:       File-like or string object.
 
444
        :param mode: The final mode for the file
 
445
        """
 
446
        final_path = self._remote_path(relpath)
 
447
        self._put(final_path, f, mode=mode)
 
448
 
 
449
    def _put(self, abspath, f, mode=None):
 
450
        """Helper function so both put() and copy_abspaths can reuse the code"""
 
451
        tmp_abspath = '%s.tmp.%.9f.%d.%d' % (abspath, time.time(),
 
452
                        os.getpid(), random.randint(0,0x7FFFFFFF))
 
453
        fout = self._sftp_open_exclusive(tmp_abspath, mode=mode)
 
454
        closed = False
 
455
        try:
 
456
            try:
 
457
                fout.set_pipelined(True)
 
458
                self._pump(f, fout)
 
459
            except (IOError, paramiko.SSHException), e:
 
460
                self._translate_io_exception(e, tmp_abspath)
 
461
            if mode is not None:
 
462
                self._sftp.chmod(tmp_abspath, mode)
 
463
            fout.close()
 
464
            closed = True
 
465
            self._rename_and_overwrite(tmp_abspath, abspath)
 
466
        except Exception, e:
 
467
            # If we fail, try to clean up the temporary file
 
468
            # before we throw the exception
 
469
            # but don't let another exception mess things up
 
470
            # Write out the traceback, because otherwise
 
471
            # the catch and throw destroys it
 
472
            import traceback
 
473
            mutter(traceback.format_exc())
 
474
            try:
 
475
                if not closed:
 
476
                    fout.close()
 
477
                self._sftp.remove(tmp_abspath)
 
478
            except:
 
479
                # raise the saved except
 
480
                raise e
 
481
            # raise the original with its traceback if we can.
 
482
            raise
 
483
 
 
484
    def iter_files_recursive(self):
 
485
        """Walk the relative paths of all files in this transport."""
 
486
        queue = list(self.list_dir('.'))
 
487
        while queue:
 
488
            relpath = urllib.quote(queue.pop(0))
 
489
            st = self.stat(relpath)
 
490
            if stat.S_ISDIR(st.st_mode):
 
491
                for i, basename in enumerate(self.list_dir(relpath)):
 
492
                    queue.insert(i, relpath+'/'+basename)
 
493
            else:
 
494
                yield relpath
 
495
 
 
496
    def mkdir(self, relpath, mode=None):
 
497
        """Create a directory at the given path."""
 
498
        try:
 
499
            path = self._remote_path(relpath)
 
500
            # In the paramiko documentation, it says that passing a mode flag 
 
501
            # will filtered against the server umask.
 
502
            # StubSFTPServer does not do this, which would be nice, because it is
 
503
            # what we really want :)
 
504
            # However, real servers do use umask, so we really should do it that way
 
505
            self._sftp.mkdir(path)
 
506
            if mode is not None:
 
507
                self._sftp.chmod(path, mode=mode)
 
508
        except (paramiko.SSHException, IOError), e:
 
509
            self._translate_io_exception(e, path, ': unable to mkdir',
 
510
                failure_exc=FileExists)
 
511
 
 
512
    def _translate_io_exception(self, e, path, more_info='', 
 
513
                                failure_exc=PathError):
 
514
        """Translate a paramiko or IOError into a friendlier exception.
 
515
 
 
516
        :param e: The original exception
 
517
        :param path: The path in question when the error is raised
 
518
        :param more_info: Extra information that can be included,
 
519
                          such as what was going on
 
520
        :param failure_exc: Paramiko has the super fun ability to raise completely
 
521
                           opaque errors that just set "e.args = ('Failure',)" with
 
522
                           no more information.
 
523
                           If this parameter is set, it defines the exception 
 
524
                           to raise in these cases.
 
525
        """
 
526
        # paramiko seems to generate detailless errors.
 
527
        self._translate_error(e, path, raise_generic=False)
 
528
        if hasattr(e, 'args'):
 
529
            if (e.args == ('No such file or directory',) or
 
530
                e.args == ('No such file',)):
 
531
                raise NoSuchFile(path, str(e) + more_info)
 
532
            if (e.args == ('mkdir failed',)):
 
533
                raise FileExists(path, str(e) + more_info)
 
534
            # strange but true, for the paramiko server.
 
535
            if (e.args == ('Failure',)):
 
536
                raise failure_exc(path, str(e) + more_info)
 
537
            mutter('Raising exception with args %s', e.args)
 
538
        if hasattr(e, 'errno'):
 
539
            mutter('Raising exception with errno %s', e.errno)
 
540
        raise e
 
541
 
 
542
    def append(self, relpath, f, mode=None):
 
543
        """
 
544
        Append the text in the file-like object into the final
 
545
        location.
 
546
        """
 
547
        try:
 
548
            path = self._remote_path(relpath)
 
549
            fout = self._sftp.file(path, 'ab')
 
550
            if mode is not None:
 
551
                self._sftp.chmod(path, mode)
 
552
            result = fout.tell()
 
553
            self._pump(f, fout)
 
554
            return result
 
555
        except (IOError, paramiko.SSHException), e:
 
556
            self._translate_io_exception(e, relpath, ': unable to append')
 
557
 
 
558
    def rename(self, rel_from, rel_to):
 
559
        """Rename without special overwriting"""
 
560
        try:
 
561
            self._sftp.rename(self._remote_path(rel_from),
 
562
                              self._remote_path(rel_to))
 
563
        except (IOError, paramiko.SSHException), e:
 
564
            self._translate_io_exception(e, rel_from,
 
565
                    ': unable to rename to %r' % (rel_to))
 
566
 
 
567
    def _rename_and_overwrite(self, abs_from, abs_to):
 
568
        """Do a fancy rename on the remote server.
 
569
        
 
570
        Using the implementation provided by osutils.
 
571
        """
 
572
        try:
 
573
            fancy_rename(abs_from, abs_to,
 
574
                    rename_func=self._sftp.rename,
 
575
                    unlink_func=self._sftp.remove)
 
576
        except (IOError, paramiko.SSHException), e:
 
577
            self._translate_io_exception(e, abs_from, ': unable to rename to %r' % (abs_to))
 
578
 
 
579
    def move(self, rel_from, rel_to):
 
580
        """Move the item at rel_from to the location at rel_to"""
 
581
        path_from = self._remote_path(rel_from)
 
582
        path_to = self._remote_path(rel_to)
 
583
        self._rename_and_overwrite(path_from, path_to)
 
584
 
 
585
    def delete(self, relpath):
 
586
        """Delete the item at relpath"""
 
587
        path = self._remote_path(relpath)
 
588
        try:
 
589
            self._sftp.remove(path)
 
590
        except (IOError, paramiko.SSHException), e:
 
591
            self._translate_io_exception(e, path, ': unable to delete')
 
592
            
 
593
    def listable(self):
 
594
        """Return True if this store supports listing."""
 
595
        return True
 
596
 
 
597
    def list_dir(self, relpath):
 
598
        """
 
599
        Return a list of all files at the given location.
 
600
        """
 
601
        # does anything actually use this?
 
602
        path = self._remote_path(relpath)
 
603
        try:
 
604
            return self._sftp.listdir(path)
 
605
        except (IOError, paramiko.SSHException), e:
 
606
            self._translate_io_exception(e, path, ': failed to list_dir')
 
607
 
 
608
    def rmdir(self, relpath):
 
609
        """See Transport.rmdir."""
 
610
        path = self._remote_path(relpath)
 
611
        try:
 
612
            return self._sftp.rmdir(path)
 
613
        except (IOError, paramiko.SSHException), e:
 
614
            self._translate_io_exception(e, path, ': failed to rmdir')
 
615
 
 
616
    def stat(self, relpath):
 
617
        """Return the stat information for a file."""
 
618
        path = self._remote_path(relpath)
 
619
        try:
 
620
            return self._sftp.stat(path)
 
621
        except (IOError, paramiko.SSHException), e:
 
622
            self._translate_io_exception(e, path, ': unable to stat')
 
623
 
 
624
    def lock_read(self, relpath):
 
625
        """
 
626
        Lock the given file for shared (read) access.
 
627
        :return: A lock object, which has an unlock() member function
 
628
        """
 
629
        # FIXME: there should be something clever i can do here...
 
630
        class BogusLock(object):
 
631
            def __init__(self, path):
 
632
                self.path = path
 
633
            def unlock(self):
 
634
                pass
 
635
        return BogusLock(relpath)
 
636
 
 
637
    def lock_write(self, relpath):
 
638
        """
 
639
        Lock the given file for exclusive (write) access.
 
640
        WARNING: many transports do not support this, so trying avoid using it
 
641
 
 
642
        :return: A lock object, which has an unlock() member function
 
643
        """
 
644
        # This is a little bit bogus, but basically, we create a file
 
645
        # which should not already exist, and if it does, we assume
 
646
        # that there is a lock, and if it doesn't, the we assume
 
647
        # that we have taken the lock.
 
648
        return SFTPLock(relpath, self)
 
649
 
 
650
    def _unparse_url(self, path=None):
 
651
        if path is None:
 
652
            path = self._path
 
653
        path = urllib.quote(path)
 
654
        # handle homedir paths
 
655
        if not path.startswith('/'):
 
656
            path = "/~/" + path
 
657
        netloc = urllib.quote(self._host)
 
658
        if self._username is not None:
 
659
            netloc = '%s@%s' % (urllib.quote(self._username), netloc)
 
660
        if self._port is not None:
 
661
            netloc = '%s:%d' % (netloc, self._port)
 
662
        return urlparse.urlunparse(('sftp', netloc, path, '', '', ''))
 
663
 
 
664
    def _split_url(self, url):
 
665
        if isinstance(url, unicode):
 
666
            # TODO: Disallow unicode urls
 
667
            #raise InvalidURL(url, 'urls must not be unicode.')
 
668
            url = url.encode('ascii')
 
669
        (scheme, netloc, path, params,
 
670
         query, fragment) = urlparse.urlparse(url, allow_fragments=False)
 
671
        assert scheme == 'sftp'
 
672
        username = password = host = port = None
 
673
        if '@' in netloc:
 
674
            username, host = netloc.split('@', 1)
 
675
            if ':' in username:
 
676
                username, password = username.split(':', 1)
 
677
                password = urllib.unquote(password)
 
678
            username = urllib.unquote(username)
 
679
        else:
 
680
            host = netloc
 
681
 
 
682
        if ':' in host:
 
683
            host, port = host.rsplit(':', 1)
 
684
            try:
 
685
                port = int(port)
 
686
            except ValueError:
 
687
                # TODO: Should this be ConnectionError?
 
688
                raise TransportError('%s: invalid port number' % port)
 
689
        host = urllib.unquote(host)
 
690
 
 
691
        path = urlutils.unescape(path)
 
692
 
 
693
        # the initial slash should be removed from the path, and treated
 
694
        # as a homedir relative path (the path begins with a double slash
 
695
        # if it is absolute).
 
696
        # see draft-ietf-secsh-scp-sftp-ssh-uri-03.txt
 
697
        # RBC 20060118 we are not using this as its too user hostile. instead
 
698
        # we are following lftp and using /~/foo to mean '~/foo'.
 
699
        # handle homedir paths
 
700
        if path.startswith('/~/'):
 
701
            path = path[3:]
 
702
        elif path == '/~':
 
703
            path = ''
 
704
        return (username, password, host, port, path)
 
705
 
 
706
    def _parse_url(self, url):
 
707
        (self._username, self._password,
 
708
         self._host, self._port, self._path) = self._split_url(url)
 
709
 
 
710
    def _sftp_connect(self):
 
711
        """Connect to the remote sftp server.
 
712
        After this, self._sftp should have a valid connection (or
 
713
        we raise an TransportError 'could not connect').
 
714
 
 
715
        TODO: Raise a more reasonable ConnectionFailed exception
 
716
        """
 
717
        global _connected_hosts
 
718
 
 
719
        idx = (self._host, self._port, self._username)
 
720
        try:
 
721
            self._sftp = _connected_hosts[idx]
 
722
            return
 
723
        except KeyError:
 
724
            pass
 
725
        
 
726
        vendor = _get_ssh_vendor()
 
727
        if vendor == 'loopback':
 
728
            sock = socket.socket()
 
729
            sock.connect((self._host, self._port))
 
730
            self._sftp = SFTPClient(LoopbackSFTP(sock))
 
731
        elif vendor != 'none':
 
732
            sock = SFTPSubprocess(self._host, vendor, self._port,
 
733
                                  self._username)
 
734
            self._sftp = SFTPClient(sock)
 
735
        else:
 
736
            self._paramiko_connect()
 
737
 
 
738
        _connected_hosts[idx] = self._sftp
 
739
 
 
740
    def _paramiko_connect(self):
 
741
        global SYSTEM_HOSTKEYS, BZR_HOSTKEYS
 
742
        
 
743
        load_host_keys()
 
744
 
 
745
        try:
 
746
            t = paramiko.Transport((self._host, self._port or 22))
 
747
            t.set_log_channel('bzr.paramiko')
 
748
            t.start_client()
 
749
        except paramiko.SSHException, e:
 
750
            raise ConnectionError('Unable to reach SSH host %s:%d' %
 
751
                                  (self._host, self._port), e)
 
752
            
 
753
        server_key = t.get_remote_server_key()
 
754
        server_key_hex = paramiko.util.hexify(server_key.get_fingerprint())
 
755
        keytype = server_key.get_name()
 
756
        if SYSTEM_HOSTKEYS.has_key(self._host) and SYSTEM_HOSTKEYS[self._host].has_key(keytype):
 
757
            our_server_key = SYSTEM_HOSTKEYS[self._host][keytype]
 
758
            our_server_key_hex = paramiko.util.hexify(our_server_key.get_fingerprint())
 
759
        elif BZR_HOSTKEYS.has_key(self._host) and BZR_HOSTKEYS[self._host].has_key(keytype):
 
760
            our_server_key = BZR_HOSTKEYS[self._host][keytype]
 
761
            our_server_key_hex = paramiko.util.hexify(our_server_key.get_fingerprint())
 
762
        else:
 
763
            warning('Adding %s host key for %s: %s' % (keytype, self._host, server_key_hex))
 
764
            if not BZR_HOSTKEYS.has_key(self._host):
 
765
                BZR_HOSTKEYS[self._host] = {}
 
766
            BZR_HOSTKEYS[self._host][keytype] = server_key
 
767
            our_server_key = server_key
 
768
            our_server_key_hex = paramiko.util.hexify(our_server_key.get_fingerprint())
 
769
            save_host_keys()
 
770
        if server_key != our_server_key:
 
771
            filename1 = os.path.expanduser('~/.ssh/known_hosts')
 
772
            filename2 = pathjoin(config_dir(), 'ssh_host_keys')
 
773
            raise TransportError('Host keys for %s do not match!  %s != %s' % \
 
774
                (self._host, our_server_key_hex, server_key_hex),
 
775
                ['Try editing %s or %s' % (filename1, filename2)])
 
776
 
 
777
        self._sftp_auth(t)
 
778
        
 
779
        try:
 
780
            self._sftp = t.open_sftp_client()
 
781
        except paramiko.SSHException, e:
 
782
            raise ConnectionError('Unable to start sftp client %s:%d' %
 
783
                                  (self._host, self._port), e)
 
784
 
 
785
    def _sftp_auth(self, transport):
 
786
        # paramiko requires a username, but it might be none if nothing was supplied
 
787
        # use the local username, just in case.
 
788
        # We don't override self._username, because if we aren't using paramiko,
 
789
        # the username might be specified in ~/.ssh/config and we don't want to
 
790
        # force it to something else
 
791
        # Also, it would mess up the self.relpath() functionality
 
792
        username = self._username or getpass.getuser()
 
793
 
 
794
        # Paramiko tries to open a socket.AF_UNIX in order to connect
 
795
        # to ssh-agent. That attribute doesn't exist on win32 (it does in cygwin)
 
796
        # so we get an AttributeError exception. For now, just don't try to
 
797
        # connect to an agent if we are on win32
 
798
        if sys.platform != 'win32':
 
799
            agent = paramiko.Agent()
 
800
            for key in agent.get_keys():
 
801
                mutter('Trying SSH agent key %s' % paramiko.util.hexify(key.get_fingerprint()))
 
802
                try:
 
803
                    transport.auth_publickey(username, key)
 
804
                    return
 
805
                except paramiko.SSHException, e:
 
806
                    pass
 
807
        
 
808
        # okay, try finding id_rsa or id_dss?  (posix only)
 
809
        if self._try_pkey_auth(transport, paramiko.RSAKey, username, 'id_rsa'):
 
810
            return
 
811
        if self._try_pkey_auth(transport, paramiko.DSSKey, username, 'id_dsa'):
 
812
            return
 
813
 
 
814
        if self._password:
 
815
            try:
 
816
                transport.auth_password(username, self._password)
 
817
                return
 
818
            except paramiko.SSHException, e:
 
819
                pass
 
820
 
 
821
            # FIXME: Don't keep a password held in memory if you can help it
 
822
            #self._password = None
 
823
 
 
824
        # give up and ask for a password
 
825
        password = bzrlib.ui.ui_factory.get_password(
 
826
                prompt='SSH %(user)s@%(host)s password',
 
827
                user=username, host=self._host)
 
828
        try:
 
829
            transport.auth_password(username, password)
 
830
        except paramiko.SSHException, e:
 
831
            raise ConnectionError('Unable to authenticate to SSH host as %s@%s' %
 
832
                                  (username, self._host), e)
 
833
 
 
834
    def _try_pkey_auth(self, transport, pkey_class, username, filename):
 
835
        filename = os.path.expanduser('~/.ssh/' + filename)
 
836
        try:
 
837
            key = pkey_class.from_private_key_file(filename)
 
838
            transport.auth_publickey(username, key)
 
839
            return True
 
840
        except paramiko.PasswordRequiredException:
 
841
            password = bzrlib.ui.ui_factory.get_password(
 
842
                    prompt='SSH %(filename)s password',
 
843
                    filename=filename)
 
844
            try:
 
845
                key = pkey_class.from_private_key_file(filename, password)
 
846
                transport.auth_publickey(username, key)
 
847
                return True
 
848
            except paramiko.SSHException:
 
849
                mutter('SSH authentication via %s key failed.' % (os.path.basename(filename),))
 
850
        except paramiko.SSHException:
 
851
            mutter('SSH authentication via %s key failed.' % (os.path.basename(filename),))
 
852
        except IOError:
 
853
            pass
 
854
        return False
 
855
 
 
856
    def _sftp_open_exclusive(self, abspath, mode=None):
 
857
        """Open a remote path exclusively.
 
858
 
 
859
        SFTP supports O_EXCL (SFTP_FLAG_EXCL), which fails if
 
860
        the file already exists. However it does not expose this
 
861
        at the higher level of SFTPClient.open(), so we have to
 
862
        sneak away with it.
 
863
 
 
864
        WARNING: This breaks the SFTPClient abstraction, so it
 
865
        could easily break against an updated version of paramiko.
 
866
 
 
867
        :param abspath: The remote absolute path where the file should be opened
 
868
        :param mode: The mode permissions bits for the new file
 
869
        """
 
870
        path = self._sftp._adjust_cwd(abspath)
 
871
        attr = SFTPAttributes()
 
872
        if mode is not None:
 
873
            attr.st_mode = mode
 
874
        omode = (SFTP_FLAG_WRITE | SFTP_FLAG_CREATE 
 
875
                | SFTP_FLAG_TRUNC | SFTP_FLAG_EXCL)
 
876
        try:
 
877
            t, msg = self._sftp._request(CMD_OPEN, path, omode, attr)
 
878
            if t != CMD_HANDLE:
 
879
                raise TransportError('Expected an SFTP handle')
 
880
            handle = msg.get_string()
 
881
            return SFTPFile(self._sftp, handle, 'wb', -1)
 
882
        except (paramiko.SSHException, IOError), e:
 
883
            self._translate_io_exception(e, abspath, ': unable to open',
 
884
                failure_exc=FileExists)
 
885
 
 
886
 
 
887
# ------------- server test implementation --------------
 
888
import socket
 
889
import threading
 
890
 
 
891
from bzrlib.tests.stub_sftp import StubServer, StubSFTPServer
 
892
 
 
893
STUB_SERVER_KEY = """
 
894
-----BEGIN RSA PRIVATE KEY-----
 
895
MIICWgIBAAKBgQDTj1bqB4WmayWNPB+8jVSYpZYk80Ujvj680pOTh2bORBjbIAyz
 
896
oWGW+GUjzKxTiiPvVmxFgx5wdsFvF03v34lEVVhMpouqPAYQ15N37K/ir5XY+9m/
 
897
d8ufMCkjeXsQkKqFbAlQcnWMCRnOoPHS3I4vi6hmnDDeeYTSRvfLbW0fhwIBIwKB
 
898
gBIiOqZYaoqbeD9OS9z2K9KR2atlTxGxOJPXiP4ESqP3NVScWNwyZ3NXHpyrJLa0
 
899
EbVtzsQhLn6rF+TzXnOlcipFvjsem3iYzCpuChfGQ6SovTcOjHV9z+hnpXvQ/fon
 
900
soVRZY65wKnF7IAoUwTmJS9opqgrN6kRgCd3DASAMd1bAkEA96SBVWFt/fJBNJ9H
 
901
tYnBKZGw0VeHOYmVYbvMSstssn8un+pQpUm9vlG/bp7Oxd/m+b9KWEh2xPfv6zqU
 
902
avNwHwJBANqzGZa/EpzF4J8pGti7oIAPUIDGMtfIcmqNXVMckrmzQ2vTfqtkEZsA
 
903
4rE1IERRyiJQx6EJsz21wJmGV9WJQ5kCQQDwkS0uXqVdFzgHO6S++tjmjYcxwr3g
 
904
H0CoFYSgbddOT6miqRskOQF3DZVkJT3kyuBgU2zKygz52ukQZMqxCb1fAkASvuTv
 
905
qfpH87Qq5kQhNKdbbwbmd2NxlNabazPijWuphGTdW0VfJdWfklyS2Kr+iqrs/5wV
 
906
HhathJt636Eg7oIjAkA8ht3MQ+XSl9yIJIS8gVpbPxSw5OMfw0PjVE7tBdQruiSc
 
907
nvuQES5C9BMHjF39LZiGH1iLQy7FgdHyoP+eodI7
 
908
-----END RSA PRIVATE KEY-----
 
909
"""
 
910
    
 
911
 
 
912
class SingleListener(threading.Thread):
 
913
 
 
914
    def __init__(self, callback):
 
915
        threading.Thread.__init__(self)
 
916
        self._callback = callback
 
917
        self._socket = socket.socket()
 
918
        self._socket.setsockopt(socket.SOL_SOCKET, socket.SO_REUSEADDR, 1)
 
919
        self._socket.bind(('localhost', 0))
 
920
        self._socket.listen(1)
 
921
        self.port = self._socket.getsockname()[1]
 
922
        self.stop_event = threading.Event()
 
923
 
 
924
    def run(self):
 
925
        s, _ = self._socket.accept()
 
926
        # now close the listen socket
 
927
        self._socket.close()
 
928
        try:
 
929
            self._callback(s, self.stop_event)
 
930
        except socket.error:
 
931
            pass #Ignore socket errors
 
932
        except Exception, x:
 
933
            # probably a failed test
 
934
            warning('Exception from within unit test server thread: %r' % x)
 
935
 
 
936
    def stop(self):
 
937
        self.stop_event.set()
 
938
        # use a timeout here, because if the test fails, the server thread may
 
939
        # never notice the stop_event.
 
940
        self.join(5.0)
 
941
 
 
942
 
 
943
class SFTPServer(Server):
 
944
    """Common code for SFTP server facilities."""
 
945
 
 
946
    def __init__(self):
 
947
        self._original_vendor = None
 
948
        self._homedir = None
 
949
        self._server_homedir = None
 
950
        self._listener = None
 
951
        self._root = None
 
952
        self._vendor = 'none'
 
953
        # sftp server logs
 
954
        self.logs = []
 
955
 
 
956
    def _get_sftp_url(self, path):
 
957
        """Calculate an sftp url to this server for path."""
 
958
        return 'sftp://foo:bar@localhost:%d/%s' % (self._listener.port, path)
 
959
 
 
960
    def log(self, message):
 
961
        """StubServer uses this to log when a new server is created."""
 
962
        self.logs.append(message)
 
963
 
 
964
    def _run_server(self, s, stop_event):
 
965
        ssh_server = paramiko.Transport(s)
 
966
        key_file = os.path.join(self._homedir, 'test_rsa.key')
 
967
        file(key_file, 'w').write(STUB_SERVER_KEY)
 
968
        host_key = paramiko.RSAKey.from_private_key_file(key_file)
 
969
        ssh_server.add_server_key(host_key)
 
970
        server = StubServer(self)
 
971
        ssh_server.set_subsystem_handler('sftp', paramiko.SFTPServer,
 
972
                                         StubSFTPServer, root=self._root,
 
973
                                         home=self._server_homedir)
 
974
        event = threading.Event()
 
975
        ssh_server.start_server(event, server)
 
976
        event.wait(5.0)
 
977
        stop_event.wait(30.0)
 
978
    
 
979
    def setUp(self):
 
980
        global _ssh_vendor
 
981
        self._original_vendor = _ssh_vendor
 
982
        _ssh_vendor = self._vendor
 
983
        self._homedir = os.getcwdu()
 
984
        if self._server_homedir is None:
 
985
            self._server_homedir = self._homedir
 
986
        self._root = '/'
 
987
        # FIXME WINDOWS: _root should be _server_homedir[0]:/
 
988
        self._listener = SingleListener(self._run_server)
 
989
        self._listener.setDaemon(True)
 
990
        self._listener.start()
 
991
 
 
992
    def tearDown(self):
 
993
        """See bzrlib.transport.Server.tearDown."""
 
994
        global _ssh_vendor
 
995
        self._listener.stop()
 
996
        _ssh_vendor = self._original_vendor
 
997
 
 
998
 
 
999
class SFTPFullAbsoluteServer(SFTPServer):
 
1000
    """A test server for sftp transports, using absolute urls and ssh."""
 
1001
 
 
1002
    def get_url(self):
 
1003
        """See bzrlib.transport.Server.get_url."""
 
1004
        return self._get_sftp_url(urlutils.escape(self._homedir[1:]))
 
1005
 
 
1006
 
 
1007
class SFTPServerWithoutSSH(SFTPServer):
 
1008
    """An SFTP server that uses a simple TCP socket pair rather than SSH."""
 
1009
 
 
1010
    def __init__(self):
 
1011
        super(SFTPServerWithoutSSH, self).__init__()
 
1012
        self._vendor = 'loopback'
 
1013
 
 
1014
    def _run_server(self, sock, stop_event):
 
1015
        class FakeChannel(object):
 
1016
            def get_transport(self):
 
1017
                return self
 
1018
            def get_log_channel(self):
 
1019
                return 'paramiko'
 
1020
            def get_name(self):
 
1021
                return '1'
 
1022
            def get_hexdump(self):
 
1023
                return False
 
1024
 
 
1025
        server = paramiko.SFTPServer(FakeChannel(), 'sftp', StubServer(self), StubSFTPServer,
 
1026
                                     root=self._root, home=self._server_homedir)
 
1027
        server.start_subsystem('sftp', None, sock)
 
1028
        server.finish_subsystem()
 
1029
 
 
1030
 
 
1031
class SFTPAbsoluteServer(SFTPServerWithoutSSH):
 
1032
    """A test server for sftp transports, using absolute urls."""
 
1033
 
 
1034
    def get_url(self):
 
1035
        """See bzrlib.transport.Server.get_url."""
 
1036
        return self._get_sftp_url(urlutils.escape(self._homedir[1:]))
 
1037
 
 
1038
 
 
1039
class SFTPHomeDirServer(SFTPServerWithoutSSH):
 
1040
    """A test server for sftp transports, using homedir relative urls."""
 
1041
 
 
1042
    def get_url(self):
 
1043
        """See bzrlib.transport.Server.get_url."""
 
1044
        return self._get_sftp_url("~/")
 
1045
 
 
1046
 
 
1047
class SFTPSiblingAbsoluteServer(SFTPAbsoluteServer):
 
1048
    """A test servere for sftp transports, using absolute urls to non-home."""
 
1049
 
 
1050
    def setUp(self):
 
1051
        self._server_homedir = '/dev/noone/runs/tests/here'
 
1052
        super(SFTPSiblingAbsoluteServer, self).setUp()
 
1053
 
 
1054
 
 
1055
def get_test_permutations():
 
1056
    """Return the permutations to be used in testing."""
 
1057
    return [(SFTPTransport, SFTPAbsoluteServer),
 
1058
            (SFTPTransport, SFTPHomeDirServer),
 
1059
            (SFTPTransport, SFTPSiblingAbsoluteServer),
 
1060
            ]