All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.jcabi.ssh.Sshd Maven / Gradle / Ivy

There is a newer version: 1.9.0
Show newest version
/**
 * Copyright (c) 2014-2017, jcabi.com
 * All rights reserved.
 *
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions
 * are met: 1) Redistributions of source code must retain the above
 * copyright notice, this list of conditions and the following
 * disclaimer. 2) 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. 3) Neither the name of the jcabi.com 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 HOLDER 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 com.jcabi.ssh;

import com.jcabi.log.VerboseProcess;
import java.io.Closeable;
import java.io.File;
import java.io.IOException;
import java.net.ServerSocket;
import java.util.concurrent.TimeUnit;
import org.cactoos.io.LengthOf;
import org.cactoos.io.ResourceOf;
import org.cactoos.io.TeeInput;
import org.cactoos.text.TextOf;

/**
 * Test SSHD daemon (only for Linux).
 *
 * 

It is a convenient class for unit testing of your SSH * clients: * *

 try (SSHD sshd = new SSHD()) {
 *   String uptime = new Shell.Plain(
 *     SSH(sshd.host(), sshd.login(), sshd.port(), sshd.key())
 *   ).exec("uptime");
 * }
* *

If you forget to call {@link #close()}, SSH daemon will be * up and running until a shutdown of the JVM.

* * @author Yegor Bugayenko ([email protected]) * @version $Id: ed2bcc5b9ff10df9c4b7428840e66c50fe320513 $ * @since 1.0 * @checkstyle MultipleStringLiteralsCheck (500 lines) * @checkstyle ClassDataAbstractionCouplingCheck (500 lines) */ @SuppressWarnings("PMD.DoNotUseThreads") public final class Sshd implements Closeable { /** * Temp directory. */ private final transient File dir; /** * The process with SSHD. */ private final transient Process process; /** * Port. */ private final transient int prt; /** * Ctor. * @throws IOException If fails * @since 1.5 */ public Sshd() throws IOException { this(new File(System.getProperty("java.io.tmpdir"))); } /** * Ctor. * @param path Directory to work in * @throws IOException If fails */ @SuppressWarnings("PMD.ConstructorOnlyInitializesOrCallOtherConstructors") public Sshd(final File path) throws IOException { this.dir = path; final File rsa = new File(this.dir, "host_rsa_key"); new LengthOf( new TeeInput( new ResourceOf("com/jcabi/ssh/ssh_host_rsa_key"), rsa ) ).value(); final File keys = new File(this.dir, "authorized"); new LengthOf( new TeeInput( new ResourceOf("com/jcabi/ssh/authorized_keys"), keys ) ).value(); new VerboseProcess( new ProcessBuilder().command( "chmod", "600", keys.getAbsolutePath(), rsa.getAbsolutePath() ) ).stdout(); this.prt = Sshd.reserve(); this.process = new ProcessBuilder().command( "/usr/sbin/sshd", "-p", Integer.toString(this.prt), "-h", rsa.getAbsolutePath(), "-D", "-e", "-o", String.format("PidFile=%s", new File(this.dir, "pid")), "-o", "UsePAM=no", "-o", String.format("AuthorizedKeysFile=%s", keys), "-o", "StrictModes=no" ).start(); new Thread(() -> new VerboseProcess(this.process).stdout()).start(); Runtime.getRuntime().addShutdownHook(new Thread(this::close)); try { TimeUnit.SECONDS.sleep(1L); } catch (final InterruptedException ex) { Thread.currentThread().interrupt(); throw new IllegalStateException(ex); } } @Override public void close() { this.process.destroy(); } /** * Get home dir. * @return Dir */ public File home() { return this.dir; } /** * Get user name to login. * @return User name */ @SuppressWarnings("PMD.ProhibitPublicStaticMethods") public static String login() { return new VerboseProcess( new ProcessBuilder().command("id", "-n", "-u") ).stdout().trim(); } /** * Get host of SSH. * @return Hostname * @since 1.1 */ @SuppressWarnings("PMD.ProhibitPublicStaticMethods") public static String host() { return new VerboseProcess( new ProcessBuilder().command("hostname") ).stdout().trim(); } /** * Get port. * *

Don't forget to start * * @return Port number * @since 1.1 */ public int port() { return this.prt; } /** * Get private SSH key for login. * @return Key * @throws IOException If fails */ @SuppressWarnings("PMD.ProhibitPublicStaticMethods") public static String key() throws IOException { return new TextOf(new ResourceOf("com/jcabi/ssh/id_rsa")).asString(); } /** * Get an instance of Shell. * @return Shell * @throws IOException If fails */ public Shell connect() throws IOException { return new Ssh(Sshd.host(), this.port(), Sshd.login(), Sshd.key()); } /** * Get a random TCP port. * @return Port * @throws IOException If fails */ private static int reserve() throws IOException { final ServerSocket socket = new ServerSocket(0); try { return socket.getLocalPort(); } finally { socket.close(); } } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy