de.rub.nds.tlsbreaker.breakercommons.cca.CcaFileManager Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of breaker-commons Show documentation
Show all versions of breaker-commons Show documentation
A tool collection of various attacks on TLS based on TLS-Attacker
/**
* TLS-Breaker - A tool collection of various attacks on TLS based on TLS-Attacker
*
* Copyright 2021-2022 Ruhr University Bochum, Paderborn University, Hackmanit GmbH
*
* Licensed under Apache License, Version 2.0
* http://www.apache.org/licenses/LICENSE-2.0.txt
*/
package de.rub.nds.tlsbreaker.breakercommons.cca;
import de.rub.nds.x509attacker.filesystem.BinaryFileReader;
import java.io.File;
import java.io.IOException;
import java.util.HashMap;
import java.util.Map;
import org.apache.logging.log4j.LogManager;
import org.apache.logging.log4j.Logger;
public class CcaFileManager {
private static Logger LOGGER = LogManager.getLogger();
private static Map references = new HashMap<>();
private File fileDirectory;
private final Map fileMap = new HashMap<>();
private CcaFileManager(String fileDirectory) {
this.init(fileDirectory);
}
public static CcaFileManager getReference(String fileDirectory) {
if (references.get(fileDirectory) == null) {
synchronized (CcaFileManager.class) {
if (references.get(fileDirectory) == null) {
references.put(fileDirectory, new CcaFileManager(fileDirectory));
}
}
}
return references.get(fileDirectory);
}
public void init(String fileDirectory) {
if (fileMap.isEmpty()) {
this.fileDirectory = new File(fileDirectory);
this.readAllFiles();
}
}
private void readAllFiles() {
File[] files = this.fileDirectory.listFiles();
if (files != null) {
for (File file : files) {
this.readFile(file);
}
}
}
private void readFile(File file) {
try {
BinaryFileReader binaryFileReader = new BinaryFileReader(file.getAbsolutePath());
byte[] xmlFileContent = binaryFileReader.read();
this.addFile(file.getName(), xmlFileContent);
} catch (IOException e) {
LOGGER.error("Encountered IOException when reading xmlInputFile. " + e);
}
}
private void addFile(String filename, byte[] content) {
String sanitizedFilename = this.sanitizeFileName(filename);
if (!this.fileMap.containsKey(sanitizedFilename)) {
this.fileMap.put(sanitizedFilename, content);
}
}
private String sanitizeFileName(String filename) {
return filename.trim();
}
public byte[] getFileContent(String filename) {
String sanitizedFilename = this.sanitizeFileName(filename);
if (this.fileMap.containsKey(sanitizedFilename)) {
return this.fileMap.get(sanitizedFilename);
} else {
LOGGER.error("XML file " + filename + " is not available in XmlFileManger!");
}
return null;
}
}