1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182
|
# Copyright (c) 2017 Basis Technology.
#
# This software is distributed under the Common Public License 1.0
#
# Gets TSK dependencies from Nuget and compiles the current branch
import codecs
import datetime
import logging
import os
import re
import shutil
import subprocess
import sys
import getopt
from sys import platform as _platform
import time
import traceback
MSBUILD_PATH = os.path.normpath("c:/Program Files (x86)/MSBuild/14.0/Bin/MSBuild.exe")
CURRENT_PATH = os.getcwd()
# save the build log in the output directory
LOG_PATH = os.path.join(CURRENT_PATH, 'output', time.strftime("%Y.%m.%d-%H.%M.%S"))
MINIMAL = False
def getDependencies(depBranch):
'''
Compile libewf, libvhdi, libvmdk.
Args:
depBranch: String, which branch to compile (currently only support master)
'''
# Passed is a global variable that gets set to false
# When an error occurs
global passed
passed = True
# get all nuget packages needed by the solution
if(passed):
TSK_HOME = os.getenv("TSK_HOME", False)
if not TSK_HOME:
print("Please set the TSK_HOME environment variable")
sys.exit(1)
else:
# nuget restore
os.chdir(os.path.join(os.getenv("TSK_HOME"),"win32"))
print ("Restoring nuget packages.")
ret = subprocess.call(["nuget", "restore", "tsk-win.sln"] , stdout=sys.stdout)
if ret != 0:
sys.exit("Failed to restore nuget packages")
def buildTSKAll():
if not MINIMAL:
if(passed):
buildTSK(32, "Release")
if(passed):
buildTSK(64, "Release_NoLibs")
# MINIMAL is 64-bit for Autopsy and 32-bit with no deps for logical imager et al.
if(passed):
buildTSK(32, "Release_NoLibs")
if(passed):
buildTSK(64, "Release")
def buildTSK(wPlatform, target):
'''
Build C++ sleuthkit library
'''
global passed
print ("Building TSK " + str(wPlatform) + "-bit " + target + " build.")
sys.stdout.flush()
TSK_HOME = os.getenv("TSK_HOME",False)
if not TSK_HOME:
print("Please set the TSK_HOME environment variable")
sys.exit(1)
else:
os.chdir(os.path.join(os.getenv("TSK_HOME"),"win32"))
vs = []
vs.append(MSBUILD_PATH)
vs.append(os.path.join("tsk-win.sln"))
vs.append("/p:configuration=" + target)
if wPlatform == 64:
vs.append("/p:platform=x64")
elif wPlatform == 32:
vs.append("/p:platform=Win32")
else:
print("Invalid platform")
sys.stdout.flush()
passed = False
return
vs.append("/clp:ErrorsOnly")
vs.append("/t:clean")
vs.append("/t:build")
vs.append("/m")
outputFile = os.path.join(LOG_PATH, "TSKOutput.txt")
VSout = open(outputFile, 'w')
ret = subprocess.call(vs, stdout=sys.stdout)
VSout.close()
if ret != 0:
print("ret = " + str(ret))
print(vs)
print("LIBTSK " + str(wPlatform) + "-bit C++ failed to build.\n")
sys.stdout.flush()
passed = False
return
def usage():
'''
Print out how to use this script.
'''
print('Usage: python3 updateAndBuildLibs.py [[-h | --help, -b <branch> | --branch=<branch>, -m | --minimal]')
print('branch: Branch for dependencies (master is default)')
print('-m,--minimal: Build 64-bit Release only')
sys.stdout.flush()
sys.exit(1)
def main():
depBranch = 'master'
global MINIMAL
try:
opts, args = getopt.getopt(sys.argv[1:],"mhb:",['help','minimal','branch='])
except getopt.GetoptError as err:
print(err)
usage()
sys.exit(2)
for o,a in opts:
if o in ("-m","--minimal"):
MINIMAL = True
elif o in ("-b","--branch"):
depBranch = a
elif o in ("-h","--help"):
usage()
system.exit(2)
if not os.path.exists(LOG_PATH):
os.makedirs(LOG_PATH)
if not os.path.exists(MSBUILD_PATH):
print("MS_BUILD Does not exist")
sys.stdout.flush()
getDependencies(depBranch)
buildTSKAll()
class OS:
LINUX, MAC, WIN, CYGWIN = range(4)
if __name__ == "__main__":
global SYS
if _platform == "linux" or _platform == "linux2":
SYS = OS.LINUX
elif _platform == "darwin":
SYS = OS.MAC
elif _platform == "win32":
SYS = OS.WIN
elif _platform == "cygwin":
SYS = OS.CYGWIN
global passed
if SYS is OS.WIN or SYS is OS.CYGWIN:
passed = True
main()
else:
passed = False
print("We only support Windows and Cygwin at this time.")
sys.stdout.flush()
if (passed):
sys.exit(0)
else:
sys.exit(1)
#/cygdrive/c/Program\ Files\ \(x86\)/MSBuild/14.0/Bin/MSBuild.exe libewf.sln /p:Configuration=Release /p:platform=x64 /t:clean /t:libewf_dll /m /clp:ErrorsOnly /nologo
|