You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

JGitSshConfig.java 5.9KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141
  1. /*
  2. * Copyright (C) 2018, Thomas Wolf <thomas.wolf@paranor.ch>
  3. * and other copyright owners as documented in the project's IP log.
  4. *
  5. * This program and the accompanying materials are made available
  6. * under the terms of the Eclipse Distribution License v1.0 which
  7. * accompanies this distribution, is reproduced below, and is
  8. * available at http://www.eclipse.org/org/documents/edl-v10.php
  9. *
  10. * All rights reserved.
  11. *
  12. * Redistribution and use in source and binary forms, with or
  13. * without modification, are permitted provided that the following
  14. * conditions are met:
  15. *
  16. * - Redistributions of source code must retain the above copyright
  17. * notice, this list of conditions and the following disclaimer.
  18. *
  19. * - Redistributions in binary form must reproduce the above
  20. * copyright notice, this list of conditions and the following
  21. * disclaimer in the documentation and/or other materials provided
  22. * with the distribution.
  23. *
  24. * - Neither the name of the Eclipse Foundation, Inc. nor the
  25. * names of its contributors may be used to endorse or promote
  26. * products derived from this software without specific prior
  27. * written permission.
  28. *
  29. * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND
  30. * CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
  31. * INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
  32. * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  33. * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
  34. * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  35. * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
  36. * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
  37. * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
  38. * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
  39. * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
  40. * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
  41. * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  42. */
  43. package org.eclipse.jgit.transport.sshd;
  44. import static org.eclipse.jgit.internal.transport.ssh.OpenSshConfigFile.flag;
  45. import static org.eclipse.jgit.internal.transport.ssh.OpenSshConfigFile.positive;
  46. import java.io.File;
  47. import java.io.IOException;
  48. import java.util.Map;
  49. import java.util.TreeMap;
  50. import org.apache.sshd.client.config.hosts.HostConfigEntry;
  51. import org.apache.sshd.client.config.hosts.HostConfigEntryResolver;
  52. import org.apache.sshd.common.util.net.SshdSocketAddress;
  53. import org.eclipse.jgit.annotations.NonNull;
  54. import org.eclipse.jgit.internal.transport.ssh.OpenSshConfigFile;
  55. import org.eclipse.jgit.internal.transport.ssh.OpenSshConfigFile.HostEntry;
  56. import org.eclipse.jgit.transport.SshConstants;
  57. /**
  58. * A {@link HostConfigEntryResolver} adapted specifically for JGit.
  59. * <p>
  60. * We use our own config file parser and entry resolution since the default
  61. * {@link org.apache.sshd.client.config.hosts.ConfigFileHostEntryResolver
  62. * ConfigFileHostEntryResolver} has a number of problems:
  63. * </p>
  64. * <ul>
  65. * <li>It does case-insensitive pattern matching. Matching in OpenSsh is
  66. * case-sensitive! Compare also bug 531118.</li>
  67. * <li>It only merges values from the global items (before the first "Host"
  68. * line) into the host entries. Otherwise it selects the most specific match.
  69. * OpenSsh processes <em>all</em> entries in the order they appear in the file
  70. * and whenever one matches, it updates values as appropriate.</li>
  71. * <li>We have to ensure that ~ replacement uses the same HOME directory as
  72. * JGit. Compare bug bug 526175.</li>
  73. * </ul>
  74. * Therefore, this re-uses the parsing and caching from
  75. * {@link OpenSshConfigFile}.
  76. *
  77. * @since 5.2
  78. */
  79. public class JGitSshConfig implements HostConfigEntryResolver {
  80. private OpenSshConfigFile configFile;
  81. /**
  82. * Creates a new {@link OpenSshConfigFile} that will read the config from
  83. * file {@code config} use the given file {@code home} as "home" directory.
  84. *
  85. * @param home
  86. * user's home directory for the purpose of ~ replacement
  87. * @param config
  88. * file to load.
  89. * @param localUserName
  90. * user name of the current user on the local host OS
  91. */
  92. public JGitSshConfig(@NonNull File home, @NonNull File config,
  93. @NonNull String localUserName) {
  94. configFile = new OpenSshConfigFile(home, config, localUserName);
  95. }
  96. @Override
  97. public HostConfigEntry resolveEffectiveHost(String host, int port,
  98. String username) throws IOException {
  99. HostEntry entry = configFile.lookup(host, port, username);
  100. JGitHostConfigEntry config = new JGitHostConfigEntry();
  101. String hostName = entry.getValue(SshConstants.HOST_NAME);
  102. if (hostName == null || hostName.isEmpty()) {
  103. hostName = host;
  104. }
  105. config.setHostName(hostName);
  106. config.setHost(SshdSocketAddress.isIPv6Address(hostName) ? "" : hostName); //$NON-NLS-1$
  107. String user = username != null && !username.isEmpty() ? username
  108. : entry.getValue(SshConstants.USER);
  109. if (user == null || user.isEmpty()) {
  110. user = configFile.getLocalUserName();
  111. }
  112. config.setUsername(user);
  113. int p = port >= 0 ? port : positive(entry.getValue(SshConstants.PORT));
  114. config.setPort(p >= 0 ? p : SshConstants.SSH_DEFAULT_PORT);
  115. config.setIdentities(entry.getValues(SshConstants.IDENTITY_FILE));
  116. config.setIdentitiesOnly(
  117. flag(entry.getValue(SshConstants.IDENTITIES_ONLY)));
  118. // Apache MINA conflates all keys, even multi-valued ones, in one map
  119. // and puts multiple values separated by commas in one string. See
  120. // the javadoc on HostConfigEntry.
  121. Map<String, String> allOptions = new TreeMap<>(
  122. String.CASE_INSENSITIVE_ORDER);
  123. allOptions.putAll(entry.getOptions());
  124. // And what if a value contains a comma??
  125. entry.getMultiValuedOptions().entrySet().stream()
  126. .forEach(e -> allOptions.put(e.getKey(),
  127. String.join(",", e.getValue()))); //$NON-NLS-1$
  128. config.setProperties(allOptions);
  129. // The following is an extension from JGitHostConfigEntry
  130. config.setMultiValuedOptions(entry.getMultiValuedOptions());
  131. return config;
  132. }
  133. }