/* * 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.client.subsystem.sftp.extensions.openssh.helpers; import java.io.IOException; import java.io.StreamCorruptedException; import java.lang.reflect.Field; import java.lang.reflect.Modifier; import java.nio.charset.StandardCharsets; import java.nio.file.Files; import java.nio.file.Path; import java.util.ArrayList; import java.util.Collections; import java.util.List; import java.util.concurrent.TimeUnit; import java.util.concurrent.atomic.AtomicReference; import org.apache.sshd.client.SshClient; import org.apache.sshd.client.session.ClientSession; import org.apache.sshd.client.subsystem.sftp.AbstractSftpClientTestSupport; import org.apache.sshd.client.subsystem.sftp.SftpClient; import org.apache.sshd.client.subsystem.sftp.SftpClient.CloseableHandle; import org.apache.sshd.client.subsystem.sftp.extensions.openssh.OpenSSHFsyncExtension; import org.apache.sshd.client.subsystem.sftp.extensions.openssh.OpenSSHStatExtensionInfo; import org.apache.sshd.client.subsystem.sftp.extensions.openssh.OpenSSHStatHandleExtension; import org.apache.sshd.client.subsystem.sftp.extensions.openssh.OpenSSHStatPathExtension; import org.apache.sshd.common.subsystem.sftp.SftpConstants; import org.apache.sshd.common.subsystem.sftp.extensions.openssh.AbstractOpenSSHExtensionParser.OpenSSHExtension; import org.apache.sshd.common.subsystem.sftp.extensions.openssh.FstatVfsExtensionParser; import org.apache.sshd.common.subsystem.sftp.extensions.openssh.StatVfsExtensionParser; import org.apache.sshd.common.util.GenericUtils; import org.apache.sshd.common.util.buffer.Buffer; import org.apache.sshd.common.util.io.IoUtils; import org.apache.sshd.server.Command; import org.apache.sshd.server.session.ServerSession; import org.apache.sshd.server.subsystem.sftp.SftpSubsystem; import org.apache.sshd.server.subsystem.sftp.SftpSubsystemFactory; import org.apache.sshd.util.test.Utils; import org.junit.Before; import org.junit.FixMethodOrder; import org.junit.Test; import org.junit.runners.MethodSorters; /** * @author <a href="mailto:dev@mina.apache.org">Apache MINA SSHD Project</a> */ @FixMethodOrder(MethodSorters.NAME_ASCENDING) public class OpenSSHExtensionsTest extends AbstractSftpClientTestSupport { public OpenSSHExtensionsTest() throws IOException { super(); } @Before public void setUp() throws Exception { setupServer(); } @Test public void testFsync() throws IOException { Path targetPath = detectTargetFolder(); Path lclSftp = Utils.resolve(targetPath, SftpConstants.SFTP_SUBSYSTEM_NAME, getClass().getSimpleName()); Path srcFile = assertHierarchyTargetFolderExists(lclSftp).resolve(getCurrentTestName() + ".txt"); byte[] expected = (getClass().getName() + "#" + getCurrentTestName()).getBytes(StandardCharsets.UTF_8); Path parentPath = targetPath.getParent(); String srcPath = Utils.resolveRelativeRemotePath(parentPath, srcFile); try (ClientSession session = client.connect(getCurrentTestName(), TEST_LOCALHOST, port).verify(7L, TimeUnit.SECONDS).getSession()) { session.addPasswordIdentity(getCurrentTestName()); session.auth().verify(5L, TimeUnit.SECONDS); try (SftpClient sftp = session.createSftpClient()) { OpenSSHFsyncExtension fsync = assertExtensionCreated(sftp, OpenSSHFsyncExtension.class); try (CloseableHandle fileHandle = sftp.open(srcPath, SftpClient.OpenMode.Write, SftpClient.OpenMode.Create)) { sftp.write(fileHandle, 0L, expected); fsync.fsync(fileHandle); byte[] actual = Files.readAllBytes(srcFile); assertArrayEquals("Mismatched written data", expected, actual); } } } } @Test public void testStat() throws Exception { Path targetPath = detectTargetFolder(); Path lclSftp = Utils.resolve(targetPath, SftpConstants.SFTP_SUBSYSTEM_NAME, getClass().getSimpleName()); Path srcFile = assertHierarchyTargetFolderExists(lclSftp).resolve(getCurrentTestName() + ".txt"); Files.write(srcFile, (getClass().getName() + "#" + getCurrentTestName()).getBytes(StandardCharsets.UTF_8), IoUtils.EMPTY_OPEN_OPTIONS); Path parentPath = targetPath.getParent(); String srcPath = Utils.resolveRelativeRemotePath(parentPath, srcFile); final AtomicReference<String> extensionHolder = new AtomicReference<>(null); final OpenSSHStatExtensionInfo expected = new OpenSSHStatExtensionInfo(); expected.f_bavail = Short.MAX_VALUE; expected.f_bfree = Integer.MAX_VALUE; expected.f_blocks = Short.MAX_VALUE; expected.f_bsize = IoUtils.DEFAULT_COPY_SIZE; expected.f_favail = Long.MAX_VALUE; expected.f_ffree = Byte.MAX_VALUE; expected.f_files = 3777347L; expected.f_flag = OpenSSHStatExtensionInfo.SSH_FXE_STATVFS_ST_RDONLY; expected.f_frsize = 7365L; expected.f_fsid = 1L; expected.f_namemax = 256; sshd.setSubsystemFactories(Collections.singletonList(new SftpSubsystemFactory() { @Override public Command create() { return new SftpSubsystem(getExecutorService(), isShutdownOnExit(), getUnsupportedAttributePolicy(), getFileSystemAccessor()) { @Override protected List<OpenSSHExtension> resolveOpenSSHExtensions(ServerSession session) { List<OpenSSHExtension> original = super.resolveOpenSSHExtensions(session); int numOriginal = GenericUtils.size(original); List<OpenSSHExtension> result = new ArrayList<>(numOriginal + 2); if (numOriginal > 0) { result.addAll(original); } for (String name : new String[]{StatVfsExtensionParser.NAME, FstatVfsExtensionParser.NAME}) { result.add(new OpenSSHExtension(name, "2")); } return result; } @Override protected void executeExtendedCommand(Buffer buffer, int id, String extension) throws IOException { if (StatVfsExtensionParser.NAME.equals(extension) || FstatVfsExtensionParser.NAME.equals(extension)) { String prev = extensionHolder.getAndSet(extension); if (prev != null) { throw new StreamCorruptedException("executeExtendedCommand(" + extension + ") previous not null: " + prev); } buffer.clear(); buffer.putByte((byte) SftpConstants.SSH_FXP_EXTENDED_REPLY); buffer.putInt(id); OpenSSHStatExtensionInfo.encode(buffer, expected); send(buffer); } else { super.executeExtendedCommand(buffer, id, extension); } } }; } })); try (SshClient client = setupTestClient()) { client.start(); try (ClientSession session = client.connect(getCurrentTestName(), TEST_LOCALHOST, port).verify(7L, TimeUnit.SECONDS).getSession()) { session.addPasswordIdentity(getCurrentTestName()); session.auth().verify(5L, TimeUnit.SECONDS); try (SftpClient sftp = session.createSftpClient()) { OpenSSHStatPathExtension pathStat = assertExtensionCreated(sftp, OpenSSHStatPathExtension.class); OpenSSHStatExtensionInfo actual = pathStat.stat(srcPath); String invokedExtension = extensionHolder.getAndSet(null); assertEquals("Mismatched invoked extension", pathStat.getName(), invokedExtension); assertOpenSSHStatExtensionInfoEquals(invokedExtension, expected, actual); try (CloseableHandle handle = sftp.open(srcPath)) { OpenSSHStatHandleExtension handleStat = assertExtensionCreated(sftp, OpenSSHStatHandleExtension.class); actual = handleStat.stat(handle); invokedExtension = extensionHolder.getAndSet(null); assertEquals("Mismatched invoked extension", handleStat.getName(), invokedExtension); assertOpenSSHStatExtensionInfoEquals(invokedExtension, expected, actual); } } } } } private static void assertOpenSSHStatExtensionInfoEquals(String extension, OpenSSHStatExtensionInfo expected, OpenSSHStatExtensionInfo actual) throws Exception { Field[] fields = expected.getClass().getFields(); for (Field f : fields) { String name = f.getName(); int mod = f.getModifiers(); if (Modifier.isStatic(mod)) { continue; } Object expValue = f.get(expected); Object actValue = f.get(actual); assertEquals(extension + "[" + name + "]", expValue, actValue); } } }