]> source.dussan.org Git - jgit.git/commitdiff
Add --ssh option to command-line commands 91/131891/10
authorThomas Wolf <thomas.wolf@paranor.ch>
Thu, 18 Oct 2018 21:34:04 +0000 (23:34 +0200)
committerMatthias Sohn <matthias.sohn@sap.com>
Wed, 14 Nov 2018 12:47:33 +0000 (04:47 -0800)
Enables using the new ssh client based on Apache MINA sshd instead
of the old JSch client. The default is still JSch, so unless the
command is invoked with --ssh apache, there's no change.

I prefer this over some fiddling with the GIT_SSH environment variable
since that variable is handled in the JGit core bundle, which should
remain free of any dependency to org.eclipse.jgit.ssh.apache to avoid
problems in Gerrit or other JGit users that may use a different Apache
MINA sshd version.

Bug: 520927
Change-Id: I8460759c7113ef7887520fb0d297aa312200c69f
Signed-off-by: Thomas Wolf <thomas.wolf@paranor.ch>
org.eclipse.jgit.packaging/org.eclipse.jgit.pgm.feature/feature.xml
org.eclipse.jgit.pgm/BUILD
org.eclipse.jgit.pgm/META-INF/MANIFEST.MF
org.eclipse.jgit.pgm/pom.xml
org.eclipse.jgit.pgm/resources/org/eclipse/jgit/pgm/internal/CLIText.properties
org.eclipse.jgit.pgm/src/org/eclipse/jgit/pgm/TextBuiltin.java
org.eclipse.jgit.pgm/src/org/eclipse/jgit/pgm/internal/SshDriver.java [new file with mode: 0644]

index bbf0c6fd846c10f97534079ede7faf8715d00c41..4d0bfe9ff0718ec3bb047fd7893cc8bf491c6657 100644 (file)
@@ -33,6 +33,7 @@
    <requires>
       <import feature="org.eclipse.jgit" version="5.2.0" match="equivalent"/>
       <import feature="org.eclipse.jgit.lfs" version="5.2.0" match="equivalent"/>
+      <import feature="org.eclipse.jgit.ssh.apache" version="5.2.0" match="equivalent"/>
    </requires>
 
    <plugin
index abd85566adac323e2eae910edff40cac3840b8f8..64edfa822d91569986e67e480dd1769f7e01ad7e 100644 (file)
@@ -23,6 +23,7 @@ java_library(
         "//org.eclipse.jgit.lfs:jgit-lfs",
         "//org.eclipse.jgit.lfs.server:jgit-lfs-server",
         "//org.eclipse.jgit.ui:ui",
+        "//org.eclipse.jgit.ssh.apache:ssh-apache",
     ],
 )
 
index ecce3baeabd481cb7cc6eef5893aa239db78d4e7..64272768a8ae2bdee502da75b350d739004172c3 100644 (file)
@@ -61,6 +61,7 @@ Import-Package: javax.servlet;version="[3.1.0,4.0.0)",
  org.eclipse.jgit.transport;version="[5.2.0,5.3.0)",
  org.eclipse.jgit.transport.http.apache;version="[5.2.0,5.3.0)",
  org.eclipse.jgit.transport.resolver;version="[5.2.0,5.3.0)",
+ org.eclipse.jgit.transport.sshd;version="[5.2.0,5.3.0)",
  org.eclipse.jgit.treewalk;version="[5.2.0,5.3.0)",
  org.eclipse.jgit.treewalk.filter;version="[5.2.0,5.3.0)",
  org.eclipse.jgit.util;version="[5.2.0,5.3.0)",
index b229a8f9856c5dacb0f40685ce60cbd95a470bf6..5e09227842ba987795d28fe53758633c0dfa8c69 100644 (file)
       <version>${project.version}</version>
     </dependency>
 
+    <dependency>
+      <groupId>org.eclipse.jgit</groupId>
+      <artifactId>org.eclipse.jgit.ssh.apache</artifactId>
+      <version>${project.version}</version>
+    </dependency>
+
     <dependency>
       <groupId>org.apache.httpcomponents</groupId>
       <artifactId>httpclient</artifactId>
index 39a02bef7d0bb3d2ce798e0b4317dd5d0ec6e4e9..d7d895ab31958f342cafc90fb423ea531bc635f8 100644 (file)
@@ -402,6 +402,7 @@ usage_showNotes=Add this ref to the list of note branches from which notes are d
 usage_showTimeInMilliseconds=Show mtime in milliseconds
 usage_squash=Squash commits as if a real merge happened, but do not make a commit or move the HEAD.
 usage_srcPrefix=show the source prefix instead of "a/"
+usage_sshDriver=Selects the built-in ssh library to use, JSch or Apache MINA sshd.
 usage_symbolicVersionForTheProject=Symbolic version for the project
 usage_tags=fetch all tags
 usage_notags=do not fetch tags
index 66c84aff941a9b372c7e82fd20aa13d4daac30c2..1ca35a24e653d57154715a34db20a155526cddff 100644 (file)
@@ -66,8 +66,12 @@ import java.util.ResourceBundle;
 import org.eclipse.jgit.lib.ObjectId;
 import org.eclipse.jgit.lib.Repository;
 import org.eclipse.jgit.pgm.internal.CLIText;
+import org.eclipse.jgit.pgm.internal.SshDriver;
 import org.eclipse.jgit.pgm.opt.CmdLineParser;
 import org.eclipse.jgit.revwalk.RevWalk;
+import org.eclipse.jgit.transport.SshSessionFactory;
+import org.eclipse.jgit.transport.sshd.JGitKeyCache;
+import org.eclipse.jgit.transport.sshd.SshdSessionFactory;
 import org.eclipse.jgit.util.io.ThrowingPrintWriter;
 import org.kohsuke.args4j.CmdLineException;
 import org.kohsuke.args4j.Option;
@@ -89,6 +93,9 @@ public abstract class TextBuiltin {
        @Option(name = "--help", usage = "usage_displayThisHelpText", aliases = { "-h" })
        private boolean help;
 
+       @Option(name = "--ssh", usage = "usage_sshDriver")
+       private SshDriver sshDriver = SshDriver.JSCH;
+
        /**
         * Input stream, typically this is standard input.
         *
@@ -239,6 +246,20 @@ public abstract class TextBuiltin {
         */
        public final void execute(String[] args) throws Exception {
                parseArguments(args);
+               switch (sshDriver) {
+               case APACHE: {
+                       SshdSessionFactory factory = new SshdSessionFactory(
+                                       new JGitKeyCache());
+                       Runtime.getRuntime()
+                                       .addShutdownHook(new Thread(() -> factory.close()));
+                       SshSessionFactory.setInstance(factory);
+                       break;
+               }
+               case JSCH:
+               default:
+                       SshSessionFactory.setInstance(null);
+                       break;
+               }
                run();
        }
 
diff --git a/org.eclipse.jgit.pgm/src/org/eclipse/jgit/pgm/internal/SshDriver.java b/org.eclipse.jgit.pgm/src/org/eclipse/jgit/pgm/internal/SshDriver.java
new file mode 100644 (file)
index 0000000..7d0423b
--- /dev/null
@@ -0,0 +1,56 @@
+/*
+ * Copyright (C) 2018, Thomas Wolf <thomas.wolf@paranor.ch>
+ * and other copyright owners as documented in the project's IP log.
+ *
+ * This program and the accompanying materials are made available
+ * under the terms of the Eclipse Distribution License v1.0 which
+ * accompanies this distribution, is reproduced below, and is
+ * available at http://www.eclipse.org/org/documents/edl-v10.php
+ *
+ * All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or
+ * without modification, are permitted provided that the following
+ * conditions are met:
+ *
+ * - Redistributions of source code must retain the above copyright
+ *   notice, this list of conditions and the following disclaimer.
+ *
+ * - Redistributions in binary form must reproduce the above
+ *   copyright notice, this list of conditions and the following
+ *   disclaimer in the documentation and/or other materials provided
+ *   with the distribution.
+ *
+ * - Neither the name of the Eclipse Foundation, Inc. nor the
+ *   names of its contributors may be used to endorse or promote
+ *   products derived from this software without specific prior
+ *   written permission.
+ *
+ * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND
+ * CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
+ * INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
+ * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
+ * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
+ * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
+ * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
+ * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
+ * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
+ * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
+ * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
+ * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
+ * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ */
+package org.eclipse.jgit.pgm.internal;
+
+/**
+ * Simple enumeration for the available built-in ssh clients.
+ */
+public enum SshDriver {
+
+       /** Default client: use JSch. */
+       JSCH,
+
+       /** Use the Apache MINA sshd client from org.eclipse.jgit.ssh.apache. */
+       APACHE;
+
+}