/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you may not use this file except in compliance * with the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, * software distributed under the License is distributed on an * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY * KIND, either express or implied. See the License for the * specific language governing permissions and limitations * under the License. */ package org.apache.sshd.common.mac; import java.io.IOException; import java.io.InputStream; import java.io.OutputStream; import java.nio.charset.StandardCharsets; import java.util.ArrayList; import java.util.Collection; import java.util.Collections; import java.util.List; import java.util.concurrent.TimeUnit; import com.jcraft.jsch.JSch; import org.apache.sshd.common.channel.Channel; import org.apache.sshd.common.util.GenericUtils; import org.apache.sshd.server.SshServer; import org.apache.sshd.util.test.BaseTestSupport; import org.apache.sshd.util.test.JSchLogger; import org.apache.sshd.util.test.SimpleUserInfo; import org.apache.sshd.util.test.Utils; import org.junit.AfterClass; import org.junit.Assume; import org.junit.Before; import org.junit.BeforeClass; import org.junit.FixMethodOrder; import org.junit.Test; import org.junit.runner.RunWith; import org.junit.runners.MethodSorters; import org.junit.runners.Parameterized; import org.junit.runners.Parameterized.Parameters; import ch.ethz.ssh2.Connection; import ch.ethz.ssh2.ConnectionInfo; /** * Test MAC algorithms. * * @author <a href="mailto:dev@mina.apache.org">Apache MINA SSHD Project</a> */ @FixMethodOrder(MethodSorters.NAME_ASCENDING) @RunWith(Parameterized.class) // see https://github.com/junit-team/junit/wiki/Parameterized-tests public class MacTest extends BaseTestSupport { private static final Collection<String> GANYMEDE_MACS = Collections.unmodifiableSet( GenericUtils.asSortedSet(String.CASE_INSENSITIVE_ORDER, Connection.getAvailableMACs())); private static SshServer sshd; private static int port; private final MacFactory factory; private final String jschMacClass; public MacTest(MacFactory factory, String jschMacClass) { this.factory = factory; this.jschMacClass = jschMacClass; } @Parameters(name = "factory={0}") public static Collection<Object[]> parameters() { List<Object[]> ret = new ArrayList<>(); for (MacFactory f : BuiltinMacs.VALUES) { if (!f.isSupported()) { System.out.println("Skip unsupported MAC " + f); continue; } String name = f.getName(); // derive the JSCH implementation of the specific MAC int pos = name.indexOf('-'); String remainder = name.substring(pos + 1); pos = remainder.indexOf('-'); String className; if (pos < 0) { className = "HMAC" + remainder.toUpperCase(); } else { String algorithm = remainder.substring(0, pos); remainder = remainder.substring(pos + 1); if ("sha2".equals(algorithm)) { className = "HMACSHA" + remainder.toUpperCase(); } else { className = "HMAC" + algorithm.toUpperCase() + remainder.toUpperCase(); } } ret.add(new Object[]{f, "com.jcraft.jsch.jce." + className}); } return ret; } @BeforeClass public static void setupClientAndServer() throws Exception { JSchLogger.init(); sshd = Utils.setupTestServer(MacTest.class); sshd.setKeyPairProvider(Utils.createTestHostKeyProvider(MacTest.class)); sshd.start(); port = sshd.getPort(); } @AfterClass public static void tearDownClientAndServer() throws Exception { if (sshd != null) { try { sshd.stop(true); } finally { sshd = null; } } } @Before public void setUp() throws Exception { sshd.setMacFactories(Collections.singletonList(factory)); } @Test public void testWithJSCH() throws Exception { String macName = factory.getName(); Assume.assumeTrue("Known JSCH bug with " + macName, !BuiltinMacs.hmacsha512.equals(factory)); JSch sch = new JSch(); JSch.setConfig("cipher.s2c", "aes128-cbc,3des-cbc,blowfish-cbc,aes192-cbc,aes256-cbc,none"); JSch.setConfig("cipher.c2s", "aes128-cbc,3des-cbc,blowfish-cbc,aes192-cbc,aes256-cbc,none"); JSch.setConfig("mac.s2c", macName); JSch.setConfig("mac.c2s", macName); JSch.setConfig(macName, jschMacClass); com.jcraft.jsch.Session session = sch.getSession(getCurrentTestName(), TEST_LOCALHOST, port); try { session.setUserInfo(new SimpleUserInfo(getCurrentTestName())); session.connect(); com.jcraft.jsch.Channel channel = session.openChannel(Channel.CHANNEL_SHELL); channel.connect(); try (OutputStream stdin = channel.getOutputStream(); InputStream stdout = channel.getInputStream(); InputStream stderr = channel.getExtInputStream()) { runShellTest(stdin, stdout); } finally { channel.disconnect(); } } finally { session.disconnect(); } } @Test public void testWithGanymede() throws Exception { String macName = factory.getName(); Assume.assumeTrue("Factory not supported: " + macName, GANYMEDE_MACS.contains(macName)); ch.ethz.ssh2.log.Logger.enabled = true; Connection conn = new Connection(TEST_LOCALHOST, port); try { conn.setClient2ServerMACs(new String[]{macName}); ConnectionInfo info = conn.connect(null, (int) TimeUnit.SECONDS.toMillis(5L), (int) TimeUnit.SECONDS.toMillis(11L)); outputDebugMessage("Connected: kex=%s, key-type=%s, c2senc=%s, s2cenc=%s, c2mac=%s, s2cmac=%s", info.keyExchangeAlgorithm, info.serverHostKeyAlgorithm, info.clientToServerCryptoAlgorithm, info.serverToClientCryptoAlgorithm, info.clientToServerMACAlgorithm, info.serverToClientMACAlgorithm); assertTrue("Failed to authenticate", conn.authenticateWithPassword(getCurrentTestName(), getCurrentTestName())); ch.ethz.ssh2.Session session = conn.openSession(); try { session.startShell(); try (OutputStream stdin = session.getStdin(); InputStream stdout = session.getStdout(); InputStream stderr = session.getStderr()) { runShellTest(stdin, stdout); } } finally { session.close(); } } finally { conn.close(); } } private void runShellTest(OutputStream stdin, InputStream stdout) throws IOException { String expected = "this is my command\n"; byte[] bytes = expected.getBytes(StandardCharsets.UTF_8); byte[] data = new byte[bytes.length + Long.SIZE]; for (int index = 1; index <= 10; index++) { stdin.write(bytes); stdin.flush(); int len = stdout.read(data); String str = new String(data, 0, len, StandardCharsets.UTF_8); assertEquals("Mismatched data at iteration " + index, expected, str); } } }