com.hierynomus.smbj.share.DiskEntry Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of smbj Show documentation
Show all versions of smbj Show documentation
SMB2 protocol library for communication with Windows servers
/*
* Copyright (C)2016 - SMBJ Contributors
*
* Licensed 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 com.hierynomus.smbj.share;
import com.hierynomus.msdtyp.SecurityDescriptor;
import com.hierynomus.msdtyp.SecurityInformation;
import com.hierynomus.msfscc.fileinformation.*;
import com.hierynomus.mssmb2.SMB2FileId;
import com.hierynomus.mssmb2.SMBApiException;
import com.hierynomus.protocol.transport.TransportException;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import java.io.Closeable;
import java.util.EnumSet;
import java.util.Set;
public abstract class DiskEntry implements Closeable {
protected final Logger logger = LoggerFactory.getLogger(this.getClass());
protected DiskShare share;
protected SMB2FileId fileId;
protected String fileName;
DiskEntry(SMB2FileId fileId, DiskShare share, String fileName) {
this.share = share;
this.fileId = fileId;
this.fileName = fileName;
}
public void close() {
share.closeFileId(fileId);
}
public SMB2FileId getFileId() {
return fileId;
}
public FileAllInformation getFileInformation() throws SMBApiException {
return getFileInformation(FileAllInformation.class);
}
public F getFileInformation(Class informationClass) throws SMBApiException {
return share.getFileInformation(fileId, informationClass);
}
public void setFileInformation(F information) {
share.setFileInformation(fileId, information);
}
public SecurityDescriptor getSecurityInformation(Set securityInfo) throws SMBApiException {
return share.getSecurityInfo(fileId, securityInfo);
}
public void setSecurityInformation(SecurityDescriptor securityDescriptor) throws SMBApiException {
EnumSet securityInfo = EnumSet.noneOf(SecurityInformation.class);
if (securityDescriptor.getOwnerSid() != null) {
securityInfo.add(SecurityInformation.OWNER_SECURITY_INFORMATION);
}
if (securityDescriptor.getGroupSid() != null) {
securityInfo.add(SecurityInformation.GROUP_SECURITY_INFORMATION);
}
if (securityDescriptor.getControl().contains(SecurityDescriptor.Control.DP)) {
securityInfo.add(SecurityInformation.DACL_SECURITY_INFORMATION);
}
if (securityDescriptor.getControl().contains(SecurityDescriptor.Control.SP)) {
securityInfo.add(SecurityInformation.SACL_SECURITY_INFORMATION);
}
share.setSecurityInfo(fileId, securityInfo, securityDescriptor);
}
public void setSecurityInformation(SecurityDescriptor securityDescriptor, Set securityInfo) throws SMBApiException {
share.setSecurityInfo(fileId, securityInfo, securityDescriptor);
}
public void rename(String newName) throws SMBApiException {
this.rename(newName, false);
}
public void rename(String newName, boolean replaceIfExist) throws SMBApiException {
this.rename(newName, replaceIfExist, 0);
}
public void rename(String newName, boolean replaceIfExist, long rootDirectory) throws SMBApiException {
FileRenameInformation renameInfo = new FileRenameInformation(replaceIfExist, rootDirectory, newName);
this.setFileInformation(renameInfo);
}
/**
* Creates hard link for receiver.
* This method is a shortcut for DiskEntry#createHardlink(linkname, false)
*
* @param linkname the path to the hard link relative to share
* @throws SMBApiException
*
* @see {@link DiskEntry#createHardlink(String, boolean)}
*/
public void createHardlink(final String linkname) throws SMBApiException {
this.createHardlink(linkname, false);
}
/**
* Creates hard link for receiver.
*
* @param linkname the path to the hard link relative to share
* @param replaceIfExist if true replaces existing entry.
*
* @throws SMBApiException
*/
public void createHardlink(final String linkname, final boolean replaceIfExist) throws SMBApiException {
final FileLinkInformation linkInfo = new FileLinkInformation(replaceIfExist, linkname);
this.setFileInformation(linkInfo);
}
/**
* Sends a control code directly to a specified device driver, causing the corresponding device to perform the
* corresponding operation.
*
* @param ctlCode the control code
* @param isFsCtl true if the control code is an FSCTL; false if it is an IOCTL
* @param inData the control code dependent input data
* @param inOffset the offset in inData
where the input data starts
* @param inLength the number of bytes from inData
to send, starting at offset
* @return the response data or null
if the control code did not produce a response
*/
public byte[] ioctl(int ctlCode, boolean isFsCtl, byte[] inData, int inOffset, int inLength) {
return share.ioctl(fileId, ctlCode, isFsCtl, inData, inOffset, inLength);
}
/**
* Sends a control code directly to a specified device driver, causing the corresponding device to perform the
* corresponding operation.
*
* @param ctlCode the control code
* @param isFsCtl true if the control code is an FSCTL; false if it is an IOCTL
* @param inData the control code dependent input data
* @param inOffset the offset in inData
where the input data starts
* @param inLength the number of bytes from inData
to send, starting at inOffset
* @param outData the buffer where the response data should be written
* @param outOffset the offset in outData
where the output data should be written
* @param outLength the maximum amount of data to write in outData
, starting at outOffset
* @return the number of bytes written to outData
*/
public int ioctl(int ctlCode, boolean isFsCtl, byte[] inData, int inOffset, int inLength, byte[] outData, int outOffset, int outLength) {
return share.ioctl(fileId, ctlCode, isFsCtl, inData, inOffset, inLength, outData, outOffset, outLength);
}
public void flush() {
share.flush(fileId);
}
public void deleteOnClose() {
share.deleteOnClose(fileId);
}
public void closeSilently() {
try {
close();
} catch (Exception e) {
logger.warn("File close failed for {},{},{}", fileName, share, fileId, e);
}
}
}