GT-2897: changed location of tmp dir; added missing info to dev guide

This commit is contained in:
adamopolous
2019-06-25 09:00:40 -04:00
committed by Ryan Kurtz
parent e6e1302854
commit e326f98c0e
2 changed files with 64 additions and 38 deletions
+3 -1
View File
@@ -80,7 +80,7 @@ manually-downloaded dependencies.
The flat directory-style repository can be created and populated automatically by a provided script, The flat directory-style repository can be created and populated automatically by a provided script,
or manually by downloading the required dependencies. Choose one of the two following methods: or manually by downloading the required dependencies. Choose one of the two following methods:
* [Automatic script instructions](#automatic-script-instructions) * [Automatic script instructions](#automatic-script-instructions)
* [Manual download instructions](#manual-download_instructions) * [Manual download instructions](#manual-download-instructions)
### Automatic Script Instructions ### Automatic Script Instructions
The flat directory-style repository can be setup automatically by running a simple Gradle script. The flat directory-style repository can be setup automatically by running a simple Gradle script.
@@ -101,6 +101,8 @@ the `init.gradle` script. If it ran correctly you will have a new folder, `flatR
* hfsx * hfsx
* hfsx_dmglib * hfsx_dmglib
* iharder-base64 * iharder-base64
* cdt-8.6.0.zip
* PyDev 6.3.1.zip
There will also be a new archive, yajsw-stable-12.12.zip, placed in __ghidra.bin/Ghidra/Features/GhidraServer/__. There will also be a new archive, yajsw-stable-12.12.zip, placed in __ghidra.bin/Ghidra/Features/GhidraServer/__.
+61 -37
View File
@@ -16,6 +16,8 @@
* - AXMLPrinter2.jar * * - AXMLPrinter2.jar *
* - hfsexplorer-0_21-bin.zip * * - hfsexplorer-0_21-bin.zip *
* - yajsw-stable-12.12.zip (placed in GhidraServer location) * * - yajsw-stable-12.12.zip (placed in GhidraServer location) *
* - cdt-8.6.0.zip *
* - PyDev 6.3.1.zip *
* * * *
* 2. Creates a gradle configuration file (repos.config) in * * 2. Creates a gradle configuration file (repos.config) in *
* <USER_HOME>/.gradle/init.d/. This contains repository * * <USER_HOME>/.gradle/init.d/. This contains repository *
@@ -45,16 +47,19 @@ import org.apache.commons.io.*;
import org.apache.commons.io.filefilter.*; import org.apache.commons.io.filefilter.*;
ext.HOME_DIR = System.getProperty('user.home') ext.HOME_DIR = System.getProperty('user.home')
ext.FLAT_REPO_DIR = new File(HOME_DIR + "/flatRepo") ext.FLAT_REPO_DIR = new File(HOME_DIR, "flatRepo")
ext.TMP_FILE = File.createTempFile("downloads", ".tmp", null) File TMP_DIR = new File(System.getProperty('java.io.tmpdir'))
File TMP_DIR = TMP_FILE.getParentFile()
ext.DOWNLOADS_DIR = new File(TMP_DIR, "ghidra") ext.DOWNLOADS_DIR = new File(TMP_DIR, "ghidra")
ext.FILE_SIZE = 0;
// The URLs for each of the archives to be downloaded // The URLs for each of the archives to be downloaded
ext.DEX_ZIP = 'https://github.com/pxb1988/dex2jar/releases/download/2.0/dex-tools-2.0.zip' ext.DEX_ZIP = 'https://github.com/pxb1988/dex2jar/releases/download/2.0/dex-tools-2.0.zip'
ext.AXML_ZIP = 'https://storage.googleapis.com/google-code-archive-downloads/v2/code.google.com/android4me/AXMLPrinter2.jar' ext.AXML_ZIP = 'https://storage.googleapis.com/google-code-archive-downloads/v2/code.google.com/android4me/AXMLPrinter2.jar'
ext.HFS_ZIP = 'https://sourceforge.net/projects/catacombae/files/HFSExplorer/0.21/hfsexplorer-0_21-bin.zip' ext.HFS_ZIP = 'https://sourceforge.net/projects/catacombae/files/HFSExplorer/0.21/hfsexplorer-0_21-bin.zip'
ext.YAJSW_ZIP = 'https://sourceforge.net/projects/yajsw/files/yajsw/yajsw-stable-12.12/yajsw-stable-12.12.zip' ext.YAJSW_ZIP = 'https://sourceforge.net/projects/yajsw/files/yajsw/yajsw-stable-12.12/yajsw-stable-12.12.zip'
ext.PYDEV_ZIP = 'https://sourceforge.net/projects/pydev/files/pydev/PyDev%206.3.1/PyDev%206.3.1.zip'
ext.CDT_ZIP = 'http://www.eclipse.org/downloads/download.php?r=1&protocol=https&file=/tools/cdt/releases/8.6/cdt-8.6.0.zip'
// Store the MD5s for each of the downloads so we can verify that we retrieved them // Store the MD5s for each of the downloads so we can verify that we retrieved them
// all successfully // all successfully
@@ -62,11 +67,15 @@ ext.DEX_MD5 = '032456b9db9e6059376611553aecf31f'
ext.AXML_MD5 = '55d70be9862c2b456cc91a933c197934' ext.AXML_MD5 = '55d70be9862c2b456cc91a933c197934'
ext.HFS_MD5 = 'cc1713d634d2cd1fd7f21e18ae4d5d5c' ext.HFS_MD5 = 'cc1713d634d2cd1fd7f21e18ae4d5d5c'
ext.YAJSW_MD5 = 'e490ea92554f0238d74d4ef6161cb2c7' ext.YAJSW_MD5 = 'e490ea92554f0238d74d4ef6161cb2c7'
ext.PYDEV_MD5 = '06263bdef4917c49d8d977d12c2d5073'
ext.CDT_MD5 = 'd41d8cd98f00b204e9800998ecf8427e'
// Number of times to try and establish a connection when downloading files before // Number of times to try and establish a connection when downloading files before
// failing // failing
ext.NUM_RETRIES = 1 ext.NUM_RETRIES = 2
// Set up a maven repository configuration so we can get access to Apache FileUtils for
// copying/deleting files.
initscript { initscript {
repositories { repositories {
mavenCentral() mavenCentral()
@@ -76,6 +85,7 @@ initscript {
} }
} }
// This is where the real flow of the script starts...
try { try {
createDirs() createDirs()
createConfigFile() createConfigFile()
@@ -126,16 +136,20 @@ def createConfigFile() {
* URL the attempt will be retried NUM_RETRIES times before failing. * URL the attempt will be retried NUM_RETRIES times before failing.
* *
* Progress is shown on the command line in the form of the number of bytes * Progress is shown on the command line in the form of the number of bytes
* downloaded; the total size of the file to download is not known during the * downloaded and a percentage of the total.
* download so no percentage of the total is given. *
* Note: We do not validate that the number of bytes downloaded matches the
* expected total here; any discrepencies will be caught when checking
* the MD5s later on.
* *
* @param url the file to download * @param url the file to download
* @param filename the local file to create for the download * @param filename the local file to create for the download
*/ */
def download(url, filename) { def download(url, filename) {
println("File: " + url)
BufferedInputStream istream = establishConnection(url, NUM_RETRIES); BufferedInputStream istream = establishConnection(url, NUM_RETRIES);
assert istream != null : "***CONNECTION FAILURE***\nmax attempts exceeded; exiting\n" assert istream != null : " ***CONNECTION FAILURE***\n max attempts exceeded; exiting\n"
FileOutputStream ostream = new FileOutputStream(filename); FileOutputStream ostream = new FileOutputStream(filename);
def dataBuffer = new byte[1024]; def dataBuffer = new byte[1024];
@@ -147,8 +161,9 @@ def download(url, filename) {
totalRead += bytesRead totalRead += bytesRead
// print progress on the same line in the console... // print progress on the same line in the console...
int pctComplete = (totalRead / FILE_SIZE) * 100
print("\r") print("\r")
print("Downloading: " + filename + " " + totalRead) print(" Downloading: " + totalRead + " of " + FILE_SIZE + " (" + pctComplete + "%)")
System.out.flush() System.out.flush()
} }
println("") println("")
@@ -158,21 +173,22 @@ def download(url, filename) {
} }
/** /**
* Attemps to establish a connection to the given URL. This will attempt to retry the * Attemps to establish a connection to the given URL.
* connection in the event of a failure.
* *
* @param url the site to connect to * @param url the site to connect to
* @param retries the number of times to attempt to reconnect if there is a failure * @param retries the number of times to attempt to reconnect if there is a failure
* @return the InputStream for the URL
*/ */
def establishConnection(url, retries) { def establishConnection(url, retries) {
println("Download file: " + url)
for (int i=0; i<retries; i++) { for (int i=0; i<retries; i++) {
try { try {
println("connect attempt " + (i+1) + " of " + retries) println(" Connect attempt " + (i+1) + " of " + retries)
URLConnection conn = new URL(url).openConnection();
FILE_SIZE = conn.getContentLength();
return new BufferedInputStream(new URL(url).openStream()); return new BufferedInputStream(new URL(url).openStream());
} }
catch (Exception e) { catch (Exception e) {
println("connection error! " + e) println(" Connection error! " + e)
} }
} }
} }
@@ -209,18 +225,24 @@ def populateFlatRepo() {
// 1. Download all the dependencies. // 1. Download all the dependencies.
download (DEX_ZIP, DOWNLOADS_DIR.path + '/dex-tools-2.0.zip') download (DEX_ZIP, DOWNLOADS_DIR.path + '/dex-tools-2.0.zip')
download (AXML_ZIP, FLAT_REPO_DIR.path + '/AXMLPrinter2.jar')
download (HFS_ZIP, DOWNLOADS_DIR.path + '/hfsexplorer-0_21-bin.zip')
download (YAJSW_ZIP, DOWNLOADS_DIR.path + '/yajsw-stable-12.12.zip')
validateChecksum(DOWNLOADS_DIR.path + '/dex-tools-2.0.zip', DEX_MD5); validateChecksum(DOWNLOADS_DIR.path + '/dex-tools-2.0.zip', DEX_MD5);
download (AXML_ZIP, FLAT_REPO_DIR.path + '/AXMLPrinter2.jar')
validateChecksum(FLAT_REPO_DIR.path + '/AXMLPrinter2.jar', AXML_MD5); validateChecksum(FLAT_REPO_DIR.path + '/AXMLPrinter2.jar', AXML_MD5);
download (HFS_ZIP, DOWNLOADS_DIR.path + '/hfsexplorer-0_21-bin.zip')
validateChecksum(DOWNLOADS_DIR.path + '/hfsexplorer-0_21-bin.zip', HFS_MD5); validateChecksum(DOWNLOADS_DIR.path + '/hfsexplorer-0_21-bin.zip', HFS_MD5);
download (YAJSW_ZIP, DOWNLOADS_DIR.path + '/yajsw-stable-12.12.zip')
validateChecksum(DOWNLOADS_DIR.path + '/yajsw-stable-12.12.zip', YAJSW_MD5); validateChecksum(DOWNLOADS_DIR.path + '/yajsw-stable-12.12.zip', YAJSW_MD5);
// 2. Unzip the dependencies; for some of these we don't need everything in download (PYDEV_ZIP, DOWNLOADS_DIR.path + '/PyDev 6.3.1.zip')
// the download so unzip them and only copy what we need. validateChecksum(DOWNLOADS_DIR.path + '/PyDev 6.3.1.zip', PYDEV_MD5);
//
download (CDT_ZIP, DOWNLOADS_DIR.path + '/cdt-8.6.0.zip')
validateChecksum(DOWNLOADS_DIR.path + '/cdt-8.6.0.zip', CDT_ZIP);
// 2. Unzip the dependencies
unzip(DOWNLOADS_DIR, DOWNLOADS_DIR, "dex-tools-2.0.zip") unzip(DOWNLOADS_DIR, DOWNLOADS_DIR, "dex-tools-2.0.zip")
unzipHfsx() unzipHfsx()
unzipYajsw() unzipYajsw()
@@ -230,6 +252,8 @@ def populateFlatRepo() {
copyDexTools() copyDexTools()
copyHfsx() copyHfsx()
copyYajsw() copyYajsw()
copyPyDev()
copyCdt()
} }
/** /**
@@ -277,7 +301,7 @@ def copyDexTools() {
} }
/** /**
* Copies the hfsx jars to the flat repository * Copies the necessary hfsx jars to the flat repository
*/ */
def copyHfsx() { def copyHfsx() {
FileUtils.copyFile(new File(DOWNLOADS_DIR, "hfsx/lib/csframework.jar"), new File(FLAT_REPO_DIR, "csframework.jar")); FileUtils.copyFile(new File(DOWNLOADS_DIR, "hfsx/lib/csframework.jar"), new File(FLAT_REPO_DIR, "csframework.jar"));
@@ -306,6 +330,20 @@ def copyYajsw() {
FileUtils.copyDirectory(new File(yajswdir, "lib/core"), new File(yajswdirTarget, "lib/core")); FileUtils.copyDirectory(new File(yajswdir, "lib/core"), new File(yajswdirTarget, "lib/core"));
} }
/**
* Copies the pydev zip to its bin repository location
*/
def copyPyDev() {
FileUtils.copyFile(new File(DOWNLOADS_DIR, '/PyDev 6.3.1.zip'), new File(HOME_DIR, '/git/ghidra.bin/GhidraBuild/EclipsePlugins/GhidraDev/buildDependencies/PyDev 6.3.1.zip'));
}
/**
* Copies the cdt zip to its bin repository location
*/
def copyCdt() {
FileUtils.copyFile(new File(DOWNLOADS_DIR, '/cdt-8.6.0.zip'), new File(HOME_DIR, '/git/ghidra.bin/GhidraBuild/EclipsePlugins/GhidraDev/buildDependencies/cdt-8.6.0.zip'));
}
/** /**
* Creates a temporary folder to house the hfsx zip contents * Creates a temporary folder to house the hfsx zip contents
* *
@@ -337,21 +375,7 @@ def getOrCreateTempYajswDir() {
* been populated. * been populated.
*/ */
def cleanup() { def cleanup() {
remove(DOWNLOADS_DIR) if (DOWNLOADS_DIR.exists()) {
remove(TMP_FILE) FileUtils.deleteDirectory(DOWNLOADS_DIR)
}
/**
* Deletes the given file (or directory)
*
* @param fileOrDirectory the item (either a file or directory) to be deleted
*/
def remove(fileOrDirectory) {
if (fileOrDirectory.isDirectory()) {
for (File child : fileOrDirectory.listFiles()) {
remove(child);
}
} }
fileOrDirectory.delete();
} }