Skip to content
Snippets Groups Projects
Commit 3cba5377 authored by Shawn Pearce's avatar Shawn Pearce
Browse files

Fix hang when fetching over SSH


JSch may hang or abort with the timeout if JGit connects before
its obtained the streams.  Instead defer the connect() call until
after the streams have been configured.

Bug: 312383
Change-Id: I7c3a687ba4cb69a41a85e2b60d381d42b9090e3f
Reported-by: default avatarDmitry Neverov <dmitry.neverov@gmail.com>
Signed-off-by: default avatarShawn O. Pearce <spearce@spearce.org>
parent f999b4aa
No related branches found
No related tags found
No related merge requests found
......@@ -147,17 +147,25 @@ private String commandFor(final String exe) {
ChannelExec exec(final String exe) throws TransportException {
initSession();
final int tms = getTimeout() > 0 ? getTimeout() * 1000 : 0;
try {
final ChannelExec channel = (ChannelExec) sock.openChannel("exec");
channel.setCommand(commandFor(exe));
channel.connect(tms);
return channel;
} catch (JSchException je) {
throw new TransportException(uri, je.getMessage(), je);
}
}
private void connect(ChannelExec channel) throws TransportException {
try {
channel.connect(getTimeout() > 0 ? getTimeout() * 1000 : 0);
if (!channel.isConnected())
throw new TransportException(uri, "connection failed");
} catch (JSchException e) {
throw new TransportException(uri, e.getMessage(), e);
}
}
void checkExecFailure(int status, String exe, String why)
throws TransportException {
if (status == 127) {
......@@ -235,14 +243,13 @@ class SshFetchConnection extends BasePackFetchConnection {
setMessageWriter(msg);
channel = exec(getOptionUploadPack());
if (!channel.isConnected())
throw new TransportException(uri, "connection failed");
final InputStream upErr = channel.getErrStream();
errorThread = new StreamCopyThread(upErr, msg.getRawStream());
errorThread.start();
init(channel.getInputStream(), outputStream(channel));
connect(channel);
} catch (TransportException err) {
close();
......@@ -304,14 +311,13 @@ class SshPushConnection extends BasePackPushConnection {
setMessageWriter(msg);
channel = exec(getOptionReceivePack());
if (!channel.isConnected())
throw new TransportException(uri, "connection failed");
final InputStream rpErr = channel.getErrStream();
errorThread = new StreamCopyThread(rpErr, msg.getRawStream());
errorThread.start();
init(channel.getInputStream(), outputStream(channel));
connect(channel);
} catch (TransportException err) {
close();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment