Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
package org.hl7.fhir.utilities.filesystem;
/*
Copyright (c) 2011+, HL7, Inc.
All rights reserved.
Redistribution and use in source and binary forms, with or without modification,
are permitted provided that the following conditions are met:
* Redistributions of source code must retain the above copyright notice, this
list of conditions and the following disclaimer.
* 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.
* Neither the name of HL7 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.
*/
import java.io.File;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.nio.file.Path;
import java.util.ArrayList;
import java.util.List;
import org.hl7.fhir.utilities.Utilities;
/**
* see security.md - manages access to the local file system by the FHIR HAPI Core library
*
* By using accessPolicy, allowedPaths and accessor, a host java application can control
* whether this library has direct access to the file system (and which paths it is allowed to access),
* or whether the host application provides controlled access, or whether no access is allowed at all
* (in which case other information providers need to be provided)
*
* @author Grahame
*
*/
public class ManagedFileAccess {
public interface IFileAccessor {
File file(String pathname) throws IOException;
FileInputStream inStream(String pathname);
FileOutputStream outStream(String pathname);
CSFile csfile(String pathname);
File[] listFiles(File file) throws IOException; // file would be returned from file() above
}
public enum FileAccessPolicy {
DIRECT, // open access to the local file system, though access can be restricted only to files under the paths in AllowedPaths
MANAGED, // no access except by the FileSystemProxyProvider
PROHIBITED, // no access at all to File() services
}
private static FileAccessPolicy accessPolicy = FileAccessPolicy.DIRECT; // for legacy reasons
private static List allowedPaths = new ArrayList<>();
private static IFileAccessor accessor;
public static FileAccessPolicy getAccessPolicy() {
return accessPolicy;
}
public static void setAccessPolicy(FileAccessPolicy accessPolicy) {
ManagedFileAccess.accessPolicy = accessPolicy;
}
private static boolean inAllowedPaths(String pathname) {
if (allowedPaths.isEmpty()) {
return true;
}
for (String s : allowedPaths) {
if (pathname.startsWith(s)) {
return true;
}
}
return false;
}
/**
* Open a file, conforming to local security policy
**/
public static File file(String pathname) throws IOException {
switch (accessPolicy) {
case DIRECT:
if (!inAllowedPaths(pathname)) {
throw new IOException("The pathname '"+pathname+"' cannot be accessed by policy");
}
return new File(pathname);
case MANAGED:
return accessor.file(pathname);
case PROHIBITED:
throw new IOException("Access to files is not allowed by local security policy");
default:
throw new IOException("Internal Error");
}
}
public static File file(String path, String filepath) throws IOException {
switch (accessPolicy) {
case DIRECT:
if (!inAllowedPaths(path)) {
throw new IOException("The path '"+path+"' cannot be accessed by policy");
}
return new File(path, filepath);
case MANAGED:
return accessor.file(Utilities.path(path, filepath));
case PROHIBITED:
throw new IOException("Access to files is not allowed by local security policy");
default:
throw new IOException("Internal Error");
}
}
/**
* Open a FileInputStream, conforming to local security policy
**/
public static FileInputStream inStream(String pathname) throws IOException {
switch (accessPolicy) {
case DIRECT:
if (!inAllowedPaths(pathname)) {
throw new IOException("The pathname '"+pathname+"' cannot be accessed by policy");
}
return new FileInputStream(pathname);
case MANAGED:
return accessor.inStream(pathname);
case PROHIBITED:
throw new IOException("Access to files is not allowed by local security policy");
default:
throw new IOException("Internal Error");
}
}
/**
* This doesn't do anything, but it's useful for it to exist, to make code inspection easier
* @param file
* @return
* @throws FileNotFoundException
*/
public static FileInputStream inStream(File file) throws FileNotFoundException {
return new FileInputStream(file);
}
/**
* Open a FileInputStream, conforming to local security policy
**/
public static FileOutputStream outStream(String pathname) throws IOException {
switch (accessPolicy) {
case DIRECT:
if (!inAllowedPaths(pathname)) {
throw new IOException("The pathname '"+pathname+"' cannot be accessed by policy");
}
return new FileOutputStream(pathname);
case MANAGED:
return accessor.outStream(pathname);
case PROHIBITED:
throw new IOException("Access to files is not allowed by local security policy");
default:
throw new IOException("Internal Error");
}
}
/**
* This doesn't do anything, but it's useful for it to exist, to make code inspection easier
* @param file
* @return
* @throws FileNotFoundException
*/
public static FileOutputStream outStream(File file) throws FileNotFoundException {
return new FileOutputStream(file);
}
/**
* same as file() but checks case is correct when opening directly (for consistency across platforms)
**/
public static CSFile csfile(String pathname) throws IOException {
switch (accessPolicy) {
case DIRECT:
if (!inAllowedPaths(pathname)) {
throw new IOException("The pathname '"+pathname+"' cannot be accessed by policy");
}
return new CSFile(pathname);
case MANAGED:
return accessor.csfile(pathname);
case PROHIBITED:
throw new IOException("Access to files is not allowed by local security policy");
default:
throw new IOException("Internal Error");
}
}
public static File fromPath(Path path) throws IOException {
switch (accessPolicy) {
case DIRECT:
if (!inAllowedPaths(path.toString())) {
throw new IOException("The pathname '"+path.toString()+"' cannot be accessed by policy");
}
return path.toFile();
case MANAGED:
return accessor.file(path.toString());
case PROHIBITED:
throw new IOException("Access to files is not allowed by local security policy");
default:
throw new IOException("Internal Error");
}
}
public static File[] listFiles(File f) throws IOException {
switch (accessPolicy) {
case DIRECT:
if (!inAllowedPaths(f.getAbsolutePath())) {
throw new IOException("The pathname '"+f.getAbsolutePath()+"' cannot be accessed by policy");
}
return f.listFiles();
case MANAGED:
return accessor.listFiles(f);
case PROHIBITED:
throw new IOException("Access to files is not allowed by local security policy");
default:
throw new IOException("Internal Error");
}
}
}