bcv-vf/src/main/java/the/bytecode/club/bootloader/Boot.java

535 lines
23 KiB
Java
Raw Normal View History

package the.bytecode.club.bootloader;
import java.io.File;
import java.io.FileOutputStream;
import java.io.InputStream;
import java.net.URL;
import java.util.ArrayList;
import java.util.List;
2021-04-12 22:31:22 +00:00
import java.util.Objects;
import javax.swing.JOptionPane;
import javax.swing.SwingUtilities;
import me.konloch.kontainer.io.HTTPRequest;
2021-04-12 20:19:12 +00:00
import org.apache.commons.io.FileUtils;
import the.bytecode.club.bootloader.resource.EmptyExternalResource;
import the.bytecode.club.bootloader.resource.ExternalResource;
import the.bytecode.club.bytecodeviewer.BytecodeViewer;
2021-06-21 11:32:07 +00:00
import the.bytecode.club.bytecodeviewer.Configuration;
import the.bytecode.club.bytecodeviewer.Constants;
import the.bytecode.club.bytecodeviewer.api.ExceptionUI;
2021-04-12 20:19:12 +00:00
import the.bytecode.club.bytecodeviewer.util.ZipUtils;
import static the.bytecode.club.bytecodeviewer.Constants.*;
/***************************************************************************
* Bytecode Viewer (BCV) - Java & Android Reverse Engineering Suite *
* Copyright (C) 2014 Kalen 'Konloch' Kinloch - http://bytecodeviewer.com *
* *
* This program is free software: you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation, either version 3 of the License, or *
* (at your option) any later version. *
* *
* This program is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License *
* along with this program. If not, see <http://www.gnu.org/licenses/>. *
***************************************************************************/
/**
* @author Konloch
* @author Bibl (don't ban me pls)
* @created 19 Jul 2015 03:22:37
*/
public class Boot {
2018-01-31 15:41:24 +00:00
/*flags*/
public static boolean globalstop = false;
public static boolean completedboot = false;
public static boolean downloading = false;
private static InitialBootScreen screen;
2021-04-12 22:31:22 +00:00
private static final List<String> libsList = new ArrayList<>();
private static final List<String> libsFileList = new ArrayList<>();
private static final List<String> urlList = new ArrayList<>();
2018-01-31 15:41:24 +00:00
2021-04-12 20:19:12 +00:00
public static void boot(String[] args, boolean CLI) throws Exception {
2018-01-31 15:41:24 +00:00
bootstrap();
ILoader<?> loader = findLoader();
2021-07-07 09:00:14 +00:00
screen = new InitialBootScreen();
2018-01-31 15:41:24 +00:00
if (!CLI)
2021-04-12 22:31:22 +00:00
SwingUtilities.invokeLater(() -> screen.setVisible(true));
2018-01-31 15:41:24 +00:00
2021-04-12 22:31:22 +00:00
create(loader, args.length <= 0 || Boolean.parseBoolean(args[0]));
2018-01-31 15:41:24 +00:00
2021-04-12 22:31:22 +00:00
SwingUtilities.invokeLater(() -> screen.setVisible(false));
2018-01-31 15:41:24 +00:00
}
public static void hide() {
2021-04-12 22:31:22 +00:00
SwingUtilities.invokeLater(() -> screen.setVisible(false));
2018-01-31 15:41:24 +00:00
}
@SuppressWarnings({"rawtypes", "unchecked"})
private static void create(ILoader<?> loader, boolean clean) throws Exception {
setState("Bytecode Viewer Boot Screen - Checking Libraries...");
final File libsDirectory = libsDir();
populateUrlList();
if (globalstop) {
while (true) {
Thread.sleep(100);//just keep this thread halted.
}
}
if (urlList.isEmpty()) {
2021-04-12 20:19:12 +00:00
JOptionPane.showMessageDialog(null, "Bytecode Viewer ran into an issue, for some reason github is not "
+ "returning what we're expecting. Please try rebooting, if this issue persists please contact "
+ "@Konloch.", "Error", JOptionPane.ERROR_MESSAGE);
2018-01-31 15:41:24 +00:00
return;
}
if (clean)
libsDirectory.delete();
if (!libsDirectory.exists())
libsDirectory.mkdir();
populateLibsDirectory();
screen.getProgressBar().setMaximum(urlList.size() * 2);
int completedCheck = 0;
for (String s : urlList) {
2021-04-12 20:19:12 +00:00
String fileName = s.substring("https://github.com/Konloch/bytecode-viewer/blob/master/libs/".length()
);
2018-01-31 15:41:24 +00:00
File file = new File(libsDirectory, fileName);
boolean passed = false;
while (!passed) {
if (!libsList.contains(fileName)) {
downloading = true;
setState("Bytecode Viewer Boot Screen - Downloading " + fileName + "...");
System.out.println("Downloading " + fileName);
InputStream is = null;
FileOutputStream fos = null;
try {
is = new URL("https://github.com/Konloch/bytecode-viewer/raw/master/libs/" + fileName).openConnection().getInputStream();
fos = new FileOutputStream(file);
System.out.println("Downloading from " + s);
byte[] buffer = new byte[8192];
int len;
int downloaded = 0;
boolean flag = false;
while ((len = is.read(buffer)) > 0) {
fos.write(buffer, 0, len);
fos.flush();
downloaded += 8192;
int mbs = downloaded / 1048576;
if (mbs % 5 == 0 && mbs != 0) {
if (!flag)
System.out.println("Downloaded " + mbs + "MBs so far");
flag = true;
} else
flag = false;
}
} finally {
try {
if (is != null) {
is.close();
}
} finally {
if (fos != null) {
fos.flush();
}
if (fos != null) {
fos.close();
}
}
}
try {
setState("Bytecode Viewer Boot Screen - Verifying " + fileName + "...");
System.out.println("Verifying " + fileName + "...");
File f = new File(Constants.tempDirectory, "temp");
2021-04-12 20:19:12 +00:00
if (!f.exists()) {
f.getParentFile().mkdirs();
2018-03-24 21:56:52 +00:00
}
2018-01-31 15:41:24 +00:00
ZipUtils.zipFile(file, f);
f.delete();
libsFileList.add(file.getAbsolutePath());
System.out.println("Download finished!");
passed = true;
} catch (Exception e) {
e.printStackTrace();
System.out.println("Jar or Zip" + file.getAbsolutePath() + " is corrupt, redownloading.");
file.delete();
}
2021-06-21 11:32:07 +00:00
} else if (Configuration.verifyCorruptedStateOnBoot) { //verify its not corrupt each boot (adds 3 seconds boot time)
2018-01-31 15:41:24 +00:00
try {
setState("Bytecode Viewer Boot Screen - Verifying " + fileName + "...");
System.out.println("Verifying " + fileName + "...");
File f = new File(Constants.tempDirectory, "temp");
2018-01-31 15:41:24 +00:00
ZipUtils.zipFile(file, f);
f.delete();
passed = true;
} catch (Exception e) {
e.printStackTrace();
System.out.println("Jar or Zip" + file.getAbsolutePath() + " is corrupt, redownloading.");
libsFileList.remove(file.getAbsolutePath());
file.delete();
}
} else {
passed = true;
}
}
completedCheck++;
screen.getProgressBar().setValue(completedCheck);
}
setState("Bytecode Viewer Boot Screen - Checking & Deleting Foreign/Outdated Libraries...");
System.out.println("Checking & Deleting foreign/outdated libraries");
for (String s : libsFileList) {
File f = new File(s);
boolean delete = true;
for (String urlS : urlList) {
2021-04-12 20:19:12 +00:00
String fileName =
urlS.substring("https://github.com/Konloch/bytecode-viewer/blob/master/libs/".length()
);
2018-01-31 15:41:24 +00:00
if (fileName.equals(f.getName()))
delete = false;
}
if (delete) {
f.delete();
2019-04-17 06:45:15 +00:00
System.out.println("Detected & Deleted Foreign/Outdated Jar/File: " + f.getName());
2018-01-31 15:41:24 +00:00
}
}
setState("Bytecode Viewer Boot Screen - Loading Libraries...");
System.out.println("Loading libraries...");
for (String s : libsFileList) {
if (s.endsWith(".jar")) {
File f = new File(s);
if (f.exists()) {
setState("Bytecode Viewer Boot Screen - Loading Library " + f.getName());
System.out.println("Loading library " + f.getName());
try {
2021-04-12 22:31:22 +00:00
ExternalResource res = new EmptyExternalResource<>(f.toURI().toURL());
2018-01-31 15:41:24 +00:00
loader.bind(res);
System.out.println("Succesfully loaded " + f.getName());
} catch (Exception e) {
e.printStackTrace();
f.delete();
2021-04-12 20:19:12 +00:00
JOptionPane.showMessageDialog(null, "Error, Library " + f.getName() + " is corrupt, please "
+ "restart to redownload it.",
2018-01-31 15:41:24 +00:00
"Error", JOptionPane.ERROR_MESSAGE);
}
}
completedCheck++;
screen.getProgressBar().setValue(completedCheck);
}
}
checkKrakatau();
completedCheck++;
screen.getProgressBar().setValue(completedCheck);
checkEnjarify();
completedCheck++;
screen.getProgressBar().setValue(completedCheck);
setState("Bytecode Viewer Boot Screen - Booting!");
completedboot = true;
}
public static File libsDir() {
File dir = new File(System.getProperty("user.home"), ".Bytecode-Viewer/libs");
2018-01-31 15:41:24 +00:00
while (!dir.exists())
dir.mkdirs();
return dir;
2018-01-31 15:41:24 +00:00
}
public static void setState(String s)
{
if(screen != null)
screen.setTitle(s);
2018-01-31 15:41:24 +00:00
}
public static ILoader<?> findLoader() {
// TODO: Find from providers
// return new LibraryClassLoader();
// TODO: Catch
return AbstractLoaderFactory.find().spawnLoader();
}
private static void bootstrap() {
2021-04-12 22:31:22 +00:00
AbstractLoaderFactory.register(ClassPathLoader::new);
2018-01-31 15:41:24 +00:00
}
public static void populateUrlList() throws Exception {
HTTPRequest req = new HTTPRequest(new URL("https://github.com/Konloch/bytecode-viewer/tree/master/libs"));
req.setTimeout(30000);
for (String s : req.read())
if (s.contains("href=\"/Konloch/bytecode-viewer/blob/master/libs/")) {
2018-03-19 15:20:01 +00:00
urlList.add("https://github.com" + s.split("href=")[1].split("\"")[1]);
2018-01-31 15:41:24 +00:00
}
}
public static void populateLibsDirectory() {
2021-04-12 22:31:22 +00:00
File libsDir = libsDir();
if (libsDir.exists())
for (File f : Objects.requireNonNull(libsDir.listFiles())) {
2018-01-31 15:41:24 +00:00
libsList.add(f.getName());
libsFileList.add(f.getAbsolutePath());
}
}
2021-04-12 20:19:12 +00:00
public static void dropKrakatau() {
File temp = new File(getBCVDirectory() + fs + "krakatau_" + krakatauVersion + ".zip");
File krakatauDirectory = new File(krakatauWorkingDirectory);
Constants.krakatauWorkingDirectory = krakatauWorkingDirectory + fs + "Krakatau-master";
2021-04-12 20:19:12 +00:00
if (!krakatauDirectory.exists() || temp.exists()) {
if (temp.exists())
2019-05-06 00:22:31 +00:00
temp.delete();
2019-04-17 06:45:15 +00:00
setState("Bytecode Viewer Boot Screen - Extracting Krakatau");
System.out.println("Extracting Krakatau");
2021-04-12 20:19:12 +00:00
try {
2019-04-17 06:45:15 +00:00
while (temp.exists())
temp.delete();
InputStream is = BytecodeViewer.class.getClassLoader().getResourceAsStream("Krakatau-" + Constants.krakatauVersion + ".zip");
2019-04-17 06:45:15 +00:00
FileOutputStream baos = new FileOutputStream(temp);
2021-04-12 22:31:22 +00:00
int r;
2019-04-17 06:45:15 +00:00
byte[] buffer = new byte[8192];
2021-04-12 22:31:22 +00:00
while ((r = Objects.requireNonNull(is).read(buffer)) >= 0) {
2019-04-17 06:45:15 +00:00
baos.write(buffer, 0, r);
}
baos.close();
ZipUtils.unzipFilesToPath(temp.getAbsolutePath(), krakatauDirectory.getAbsolutePath());
temp.delete();
System.out.println("Succesfully extracted Krakatau");
2021-04-12 20:19:12 +00:00
} catch (Exception e) {
2019-04-17 06:45:15 +00:00
setState("Bytecode Viewer Boot Screen - ERROR, please contact @Konloch with your stacktrace.");
2021-07-07 02:51:10 +00:00
BytecodeViewer.handleException(e);
2019-04-17 06:45:15 +00:00
}
}
}
2021-04-12 20:19:12 +00:00
public static void dropEnjarify() {
File temp = new File(getBCVDirectory() + fs + "enjarify" + Constants.enjarifyVersion + ".zip");
File enjarifyDirectory = new File(Constants.enjarifyWorkingDirectory);
Constants.enjarifyWorkingDirectory = Constants.enjarifyWorkingDirectory + fs + "enjarify-master";
2021-04-12 20:19:12 +00:00
if (!enjarifyDirectory.exists() || temp.exists()) {
if (temp.exists())
2019-05-06 00:22:31 +00:00
temp.delete();
2019-04-17 06:45:15 +00:00
setState("Bytecode Viewer Boot Screen - Extracting Enjarify");
System.out.println("Extracting Enjarify");
2021-04-12 20:19:12 +00:00
try {
2019-04-17 06:45:15 +00:00
while (temp.exists())
temp.delete();
2021-04-12 20:19:12 +00:00
InputStream is =
BytecodeViewer.class.getClassLoader().getResourceAsStream("enjarify-" + Constants.enjarifyVersion + ".zip");
2019-04-17 06:45:15 +00:00
FileOutputStream baos = new FileOutputStream(temp);
2021-04-12 22:31:22 +00:00
int r;
2019-04-17 06:45:15 +00:00
byte[] buffer = new byte[8192];
2021-04-12 22:31:22 +00:00
while ((r = Objects.requireNonNull(is).read(buffer)) >= 0) {
2019-04-17 06:45:15 +00:00
baos.write(buffer, 0, r);
}
baos.close();
ZipUtils.unzipFilesToPath(temp.getAbsolutePath(), enjarifyDirectory.getAbsolutePath());
temp.delete();
System.out.println("Succesfully extracted Enjarify");
2021-04-12 20:19:12 +00:00
} catch (Exception e) {
2019-04-17 06:45:15 +00:00
setState("Bytecode Viewer Boot Screen - ERROR, please contact @Konloch with your stacktrace.");
2021-07-07 02:51:10 +00:00
BytecodeViewer.handleException(e);
2019-04-17 06:45:15 +00:00
}
}
}
2018-01-31 15:41:24 +00:00
public static void downloadZipsOnly() throws Exception {
for (String s : urlList) {
2021-04-12 20:19:12 +00:00
String fileName = s.substring("https://github.com/Konloch/bytecode-viewer/blob/master/libs/".length()
);
2018-01-31 15:41:24 +00:00
File file = new File(libsDir(), fileName);
boolean passed = false;
while (!passed) {
if (!libsList.contains(fileName) && fileName.endsWith(".zip")) {
downloading = true;
setState("Bytecode Viewer Boot Screen - Downloading " + fileName + "...");
System.out.println("Downloading " + fileName);
InputStream is = null;
FileOutputStream fos = null;
try {
is = new URL("https://github.com/Konloch/bytecode-viewer/raw/master/libs/" + fileName).openConnection().getInputStream();
fos = new FileOutputStream(file);
System.out.println("Downloading from " + s);
byte[] buffer = new byte[8192];
int len;
int downloaded = 0;
boolean flag = false;
while ((len = is.read(buffer)) > 0) {
fos.write(buffer, 0, len);
fos.flush();
downloaded += 8192;
int mbs = downloaded / 1048576;
if (mbs % 5 == 0 && mbs != 0) {
if (!flag)
System.out.println("Downloaded " + mbs + "MBs so far");
flag = true;
} else
flag = false;
}
} catch (Exception e) {
e.printStackTrace();
} finally {
try {
if (is != null) {
is.close();
}
} finally {
if (fos != null) {
fos.flush();
}
if (fos != null) {
fos.close();
}
}
}
try {
setState("Bytecode Viewer Boot Screen - Verifying " + fileName + "...");
System.out.println("Verifying " + fileName + "...");
File f = new File(Constants.tempDirectory, "temp");
2018-01-31 15:41:24 +00:00
ZipUtils.zipFile(file, f);
f.delete();
libsFileList.add(file.getAbsolutePath());
System.out.println("Download finished!");
passed = true;
} catch (Exception e) {
e.printStackTrace();
System.out.println("Jar or Zip" + file.getAbsolutePath() + " is corrupt, redownloading.");
file.delete();
}
} else
passed = true;
}
}
}
public static void checkEnjarify() {
setState("Bytecode Viewer Boot Screen - Checking Enjarify...");
System.out.println("Checking enjarify");
File enjarifyZip = null;
for (File f : Objects.requireNonNull(new File(Constants.libsDirectory).listFiles())) {
2018-01-31 15:41:24 +00:00
if (f.getName().toLowerCase().startsWith("enjarify-")) {
Constants.enjarifyVersion = f.getName().split("-")[1].split("\\.")[0];
2018-01-31 15:41:24 +00:00
enjarifyZip = f;
}
}
for (File f : Objects.requireNonNull(new File(getBCVDirectory()).listFiles())) {
if (f.getName().toLowerCase().startsWith("enjarify_") && !f.getName().split("_")[1].split("\\.")[0].equals(Constants.enjarifyVersion)) {
2018-01-31 15:41:24 +00:00
setState("Bytecode Viewer Boot Screen - Removing Outdated " + f.getName() + "...");
System.out.println("Removing oudated " + f.getName());
try {
FileUtils.deleteDirectory(f);
} catch (Exception e) {
e.printStackTrace();
}
}
}
Constants.enjarifyWorkingDirectory = getBCVDirectory() + fs + "enjarify_" + Constants.enjarifyVersion + fs + "enjarify-master";
File enjarifyDirectory = new File(getBCVDirectory() + fs + "enjarify_" + Constants.enjarifyVersion);
2018-01-31 15:41:24 +00:00
if (!enjarifyDirectory.exists()) {
try {
setState("Bytecode Viewer Boot Screen - Updating to " + enjarifyDirectory.getName() + "...");
2021-04-12 22:31:22 +00:00
ZipUtils.unzipFilesToPath(Objects.requireNonNull(enjarifyZip).getAbsolutePath(),
enjarifyDirectory.getAbsolutePath());
System.out.println("Updated to enjarify v" + Constants.enjarifyVersion);
2018-01-31 15:41:24 +00:00
} catch (Exception e) {
2021-04-12 20:19:12 +00:00
BytecodeViewer.showMessage("ERROR: There was an issue unzipping enjarify (possibly corrupt). Restart "
+ "BCV." + nl +
2018-01-31 15:41:24 +00:00
"If the error persists contact @Konloch.");
2021-07-07 02:51:10 +00:00
BytecodeViewer.handleException(e);
2021-04-12 22:31:22 +00:00
Objects.requireNonNull(enjarifyZip).delete();
2018-01-31 15:41:24 +00:00
}
}
}
public static void checkKrakatau() {
setState("Bytecode Viewer Boot Screen - Checking Krakatau...");
System.out.println("Checking krakatau");
File krakatauZip = null;
for (File f : Objects.requireNonNull(new File(Constants.libsDirectory).listFiles())) {
2018-01-31 15:41:24 +00:00
if (f.getName().toLowerCase().startsWith("krakatau-")) {
//System.out.println(f.getName());
Constants.krakatauVersion = f.getName().split("-")[1].split("\\.")[0];
2018-01-31 15:41:24 +00:00
krakatauZip = f;
}
}
for (File f : Objects.requireNonNull(new File(getBCVDirectory()).listFiles())) {
if (f.getName().toLowerCase().startsWith("krakatau_") && !f.getName().split("_")[1].split("\\.")[0].equals(Constants.krakatauVersion)) {
2018-01-31 15:41:24 +00:00
setState("Bytecode Viewer Boot Screen - Removing Outdated " + f.getName() + "...");
System.out.println("Removing oudated " + f.getName());
try {
FileUtils.deleteDirectory(f);
} catch (Exception e) {
e.printStackTrace();
}
}
}
Constants.krakatauWorkingDirectory = getBCVDirectory() + fs + "krakatau_" + Constants.krakatauVersion + fs + "Krakatau-master";
2019-04-17 06:45:15 +00:00
File krakatauDirectory = new File(getBCVDirectory() + fs + "krakatau_" + Constants.krakatauVersion);
2018-01-31 15:41:24 +00:00
if (!krakatauDirectory.exists()) {
try {
setState("Bytecode Viewer Boot Screen - Updating to " + krakatauDirectory.getName() + "...");
2021-04-12 22:31:22 +00:00
ZipUtils.unzipFilesToPath(Objects.requireNonNull(krakatauZip).getAbsolutePath(),
krakatauDirectory.getAbsolutePath());
System.out.println("Updated to krakatau v" + Constants.krakatauVersion);
2018-01-31 15:41:24 +00:00
} catch (Exception e) {
2021-04-12 20:19:12 +00:00
BytecodeViewer.showMessage("ERROR: There was an issue unzipping Krakatau decompiler (possibly "
+ "corrupt). Restart BCV." + nl +
2018-01-31 15:41:24 +00:00
"If the error persists contact @Konloch.");
2021-07-07 02:51:10 +00:00
BytecodeViewer.handleException(e);
2021-04-12 22:31:22 +00:00
Objects.requireNonNull(krakatauZip).delete();
2018-01-31 15:41:24 +00:00
}
}
}
}