~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/transport/ssh.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2010-09-29 22:03:03 UTC
  • mfrom: (5416.2.6 jam-integration)
  • Revision ID: pqm@pqm.ubuntu.com-20100929220303-cr95h8iwtggco721
(mbp) Add 'break-lock --force'

Show diffs side-by-side

added added

removed removed

Lines of Context:
131
131
        # is given in BZR_SSH. See https://bugs.launchpad.net/bugs/414743
132
132
        elif 'plink' in version and progname == 'plink':
133
133
            # Checking if "plink" was the executed argument as Windows
134
 
            # sometimes reports 'ssh -V' incorrectly with 'plink' in it's
 
134
            # sometimes reports 'ssh -V' incorrectly with 'plink' in its
135
135
            # version.  See https://bugs.launchpad.net/bzr/+bug/107155
136
136
            trace.mutter("ssh implementation is Putty's plink.")
137
137
            vendor = PLinkSubprocessVendor()
173
173
register_ssh_vendor = _ssh_vendor_manager.register_vendor
174
174
 
175
175
 
176
 
def _ignore_sigint():
 
176
def _ignore_signals():
177
177
    # TODO: This should possibly ignore SIGHUP as well, but bzr currently
178
178
    # doesn't handle it itself.
179
179
    # <https://launchpad.net/products/bzr/+bug/41433/+index>
180
180
    import signal
181
181
    signal.signal(signal.SIGINT, signal.SIG_IGN)
 
182
    # GZ 2010-02-19: Perhaps make this check if breakin is installed instead
 
183
    if signal.getsignal(signal.SIGQUIT) != signal.SIG_DFL:
 
184
        signal.signal(signal.SIGQUIT, signal.SIG_IGN)
182
185
 
183
186
 
184
187
class SocketAsChannelAdapter(object):
236
239
    def connect_ssh(self, username, password, host, port, command):
237
240
        """Make an SSH connection.
238
241
 
239
 
        :returns: something with a `close` method, and a `get_filelike_channels`
240
 
            method that returns a pair of (read, write) filelike objects.
 
242
        :returns: an SSHConnection.
241
243
        """
242
244
        raise NotImplementedError(self.connect_ssh)
243
245
 
266
268
register_ssh_vendor('loopback', LoopbackVendor())
267
269
 
268
270
 
269
 
class _ParamikoSSHConnection(object):
270
 
    def __init__(self, channel):
271
 
        self.channel = channel
272
 
 
273
 
    def get_filelike_channels(self):
274
 
        return self.channel.makefile('rb'), self.channel.makefile('wb')
275
 
 
276
 
    def close(self):
277
 
        return self.channel.close()
278
 
 
279
 
 
280
271
class ParamikoVendor(SSHVendor):
281
272
    """Vendor that uses paramiko."""
282
273
 
345
336
            self._raise_connection_error(host, port=port, orig_error=e,
346
337
                                         msg='Unable to invoke remote bzr')
347
338
 
 
339
_ssh_connection_errors = (EOFError, OSError, IOError, socket.error)
348
340
if paramiko is not None:
349
341
    vendor = ParamikoVendor()
350
342
    register_ssh_vendor('paramiko', vendor)
351
343
    register_ssh_vendor('none', vendor)
352
344
    register_default_ssh_vendor(vendor)
353
 
    _sftp_connection_errors = (EOFError, paramiko.SSHException)
 
345
    _ssh_connection_errors += (paramiko.SSHException,)
354
346
    del vendor
355
 
else:
356
 
    _sftp_connection_errors = (EOFError,)
357
347
 
358
348
 
359
349
class SubprocessVendor(SSHVendor):
360
350
    """Abstract base class for vendors that use pipes to a subprocess."""
361
351
 
362
352
    def _connect(self, argv):
363
 
        proc = subprocess.Popen(argv,
364
 
                                stdin=subprocess.PIPE,
365
 
                                stdout=subprocess.PIPE,
 
353
        # Attempt to make a socketpair to use as stdin/stdout for the SSH
 
354
        # subprocess.  We prefer sockets to pipes because they support
 
355
        # non-blocking short reads, allowing us to optimistically read 64k (or
 
356
        # whatever) chunks.
 
357
        try:
 
358
            my_sock, subproc_sock = socket.socketpair()
 
359
        except (AttributeError, socket.error):
 
360
            # This platform doesn't support socketpair(), so just use ordinary
 
361
            # pipes instead.
 
362
            stdin = stdout = subprocess.PIPE
 
363
            sock = None
 
364
        else:
 
365
            stdin = stdout = subproc_sock
 
366
            sock = my_sock
 
367
        proc = subprocess.Popen(argv, stdin=stdin, stdout=stdout,
366
368
                                **os_specific_subprocess_params())
367
 
        return SSHSubprocess(proc)
 
369
        return SSHSubprocessConnection(proc, sock=sock)
368
370
 
369
371
    def connect_sftp(self, username, password, host, port):
370
372
        try:
372
374
                                                  subsystem='sftp')
373
375
            sock = self._connect(argv)
374
376
            return SFTPClient(SocketAsChannelAdapter(sock))
375
 
        except _sftp_connection_errors, e:
376
 
            self._raise_connection_error(host, port=port, orig_error=e)
377
 
        except (OSError, IOError), e:
378
 
            # If the machine is fast enough, ssh can actually exit
379
 
            # before we try and send it the sftp request, which
380
 
            # raises a Broken Pipe
381
 
            if e.errno not in (errno.EPIPE,):
382
 
                raise
 
377
        except _ssh_connection_errors, e:
383
378
            self._raise_connection_error(host, port=port, orig_error=e)
384
379
 
385
380
    def connect_ssh(self, username, password, host, port, command):
387
382
            argv = self._get_vendor_specific_argv(username, host, port,
388
383
                                                  command=command)
389
384
            return self._connect(argv)
390
 
        except (EOFError), e:
391
 
            self._raise_connection_error(host, port=port, orig_error=e)
392
 
        except (OSError, IOError), e:
393
 
            # If the machine is fast enough, ssh can actually exit
394
 
            # before we try and send it the sftp request, which
395
 
            # raises a Broken Pipe
396
 
            if e.errno not in (errno.EPIPE,):
397
 
                raise
 
385
        except _ssh_connection_errors, e:
398
386
            self._raise_connection_error(host, port=port, orig_error=e)
399
387
 
400
388
    def _get_vendor_specific_argv(self, username, host, port, subsystem=None,
634
622
        # Running it in a separate process group is not good because then it
635
623
        # can't get non-echoed input of a password or passphrase.
636
624
        # <https://launchpad.net/products/bzr/+bug/40508>
637
 
        return {'preexec_fn': _ignore_sigint,
 
625
        return {'preexec_fn': _ignore_signals,
638
626
                'close_fds': True,
639
627
                }
640
628
 
642
630
_subproc_weakrefs = set()
643
631
 
644
632
def _close_ssh_proc(proc):
645
 
    for func in [proc.stdin.close, proc.stdout.close, proc.wait]:
646
 
        try:
647
 
            func()
 
633
    """Carefully close stdin/stdout and reap the SSH process.
 
634
 
 
635
    If the pipes are already closed and/or the process has already been
 
636
    wait()ed on, that's ok, and no error is raised.  The goal is to do our best
 
637
    to clean up (whether or not a clean up was already tried).
 
638
    """
 
639
    dotted_names = ['stdin.close', 'stdout.close', 'wait']
 
640
    for dotted_name in dotted_names:
 
641
        attrs = dotted_name.split('.')
 
642
        try:
 
643
            obj = proc
 
644
            for attr in attrs:
 
645
                obj = getattr(obj, attr)
 
646
        except AttributeError:
 
647
            # It's ok for proc.stdin or proc.stdout to be None.
 
648
            continue
 
649
        try:
 
650
            obj()
648
651
        except OSError:
649
 
            pass
650
 
 
651
 
 
652
 
class SSHSubprocess(object):
653
 
    """A socket-like object that talks to an ssh subprocess via pipes."""
654
 
 
655
 
    def __init__(self, proc):
 
652
            # It's ok for the pipe to already be closed, or the process to
 
653
            # already be finished.
 
654
            continue
 
655
 
 
656
 
 
657
class SSHConnection(object):
 
658
    """Abstract base class for SSH connections."""
 
659
 
 
660
    def get_sock_or_pipes(self):
 
661
        """Returns a (kind, io_object) pair.
 
662
 
 
663
        If kind == 'socket', then io_object is a socket.
 
664
 
 
665
        If kind == 'pipes', then io_object is a pair of file-like objects
 
666
        (read_from, write_to).
 
667
        """
 
668
        raise NotImplementedError(self.get_sock_or_pipes)
 
669
 
 
670
    def close(self):
 
671
        raise NotImplementedError(self.close)
 
672
 
 
673
 
 
674
class SSHSubprocessConnection(SSHConnection):
 
675
    """A connection to an ssh subprocess via pipes or a socket.
 
676
 
 
677
    This class is also socket-like enough to be used with
 
678
    SocketAsChannelAdapter (it has 'send' and 'recv' methods).
 
679
    """
 
680
 
 
681
    def __init__(self, proc, sock=None):
 
682
        """Constructor.
 
683
 
 
684
        :param proc: a subprocess.Popen
 
685
        :param sock: if proc.stdin/out is a socket from a socketpair, then sock
 
686
            should bzrlib's half of that socketpair.  If not passed, proc's
 
687
            stdin/out is assumed to be ordinary pipes.
 
688
        """
656
689
        self.proc = proc
 
690
        self._sock = sock
657
691
        # Add a weakref to proc that will attempt to do the same as self.close
658
692
        # to avoid leaving processes lingering indefinitely.
659
693
        def terminate(ref):
662
696
        _subproc_weakrefs.add(weakref.ref(self, terminate))
663
697
 
664
698
    def send(self, data):
665
 
        return os.write(self.proc.stdin.fileno(), data)
 
699
        if self._sock is not None:
 
700
            return self._sock.send(data)
 
701
        else:
 
702
            return os.write(self.proc.stdin.fileno(), data)
666
703
 
667
704
    def recv(self, count):
668
 
        return os.read(self.proc.stdout.fileno(), count)
 
705
        if self._sock is not None:
 
706
            return self._sock.recv(count)
 
707
        else:
 
708
            return os.read(self.proc.stdout.fileno(), count)
669
709
 
670
710
    def close(self):
671
711
        _close_ssh_proc(self.proc)
672
712
 
673
 
    def get_filelike_channels(self):
674
 
        return (self.proc.stdout, self.proc.stdin)
 
713
    def get_sock_or_pipes(self):
 
714
        if self._sock is not None:
 
715
            return 'socket', self._sock
 
716
        else:
 
717
            return 'pipes', (self.proc.stdout, self.proc.stdin)
 
718
 
 
719
 
 
720
class _ParamikoSSHConnection(SSHConnection):
 
721
    """An SSH connection via paramiko."""
 
722
 
 
723
    def __init__(self, channel):
 
724
        self.channel = channel
 
725
 
 
726
    def get_sock_or_pipes(self):
 
727
        return ('socket', self.channel)
 
728
 
 
729
    def close(self):
 
730
        return self.channel.close()
 
731
 
675
732