aboutsummaryrefslogtreecommitdiff
path: root/Android.bp
diff options
context:
space:
mode:
authorJiangen Jiao <joeyjiaojg@qq.com>2021-03-25 12:29:27 +0800
committerJiangen Jiao <joeyjiaojg@qq.com>2021-03-25 20:40:31 +0800
commitc89264205779635ec43f2913a94fa3ae5e6a5186 (patch)
tree08c6e93f8ad85eb2e05963a038ab289312033d38 /Android.bp
parent2dac4e785fa9f27e8c59bb504cfa8942eba938be (diff)
downloadafl++-c89264205779635ec43f2913a94fa3ae5e6a5186.tar.gz
android: support host and target 32bit build
Diffstat (limited to 'Android.bp')
-rw-r--r--Android.bp144
1 files changed, 139 insertions, 5 deletions
diff --git a/Android.bp b/Android.bp
index ee076d1e..64794e19 100644
--- a/Android.bp
+++ b/Android.bp
@@ -1,8 +1,5 @@
cc_defaults {
name: "afl-defaults",
- sanitize: {
- never: true,
- },
local_include_dirs: [
"include",
@@ -23,18 +20,45 @@ cc_defaults {
"-DBIN_PATH=\"out/host/linux-x86/bin\"",
"-DDOC_PATH=\"out/host/linux-x86/shared/doc/afl\"",
"-D__USE_GNU",
- "-D__aarch64__",
"-DDEBUG_BUILD",
"-U_FORTIFY_SOURCE",
"-ggdb3",
"-g",
"-O0",
"-fno-omit-frame-pointer",
+ "-fPIC",
],
+
+ target: {
+ android_arm64: {
+ cflags: [
+ "-D__aarch64__",
+ "-D__ANDROID__",
+ ],
+ },
+ android_arm: {
+ cflags: [
+ "-D__ANDROID__",
+ ],
+ },
+ android_x86_64: {
+ cflags: [
+ "-D__ANDROID__",
+ ],
+ },
+ android_x86: {
+ cflags: [
+ "-D__ANDROID__",
+ ],
+ },
+ },
}
cc_binary {
name: "afl-fuzz",
+ sanitize: {
+ never: true,
+ },
host_supported: true,
compile_multilib: "64",
@@ -128,7 +152,6 @@ cc_binary_host {
],
cflags: [
- "-D__ANDROID__",
"-DAFL_PATH=\"out/host/linux-x86/lib64\"",
"-DAFL_CLANG_FLTO=\"-flto=full\"",
"-DUSE_BINDIR=1",
@@ -199,6 +222,7 @@ cc_library_headers {
export_include_dirs: [
"include",
+ "instrumentation",
],
}
@@ -268,6 +292,116 @@ cc_binary {
],
}
+cc_binary {
+ name: "afl-fuzz-32",
+ sanitize: {
+ never: true,
+ },
+ host_supported: true,
+ compile_multilib: "32",
+
+ defaults: [
+ "afl-defaults",
+ ],
+
+ srcs: [
+ "src/afl-fuzz*.c",
+ "src/afl-common.c",
+ "src/afl-sharedmem.c",
+ "src/afl-forkserver.c",
+ "src/afl-performance.c",
+ ],
+}
+
+cc_binary_host {
+ name: "afl-cc-32",
+ compile_multilib: "32",
+ static_executable: true,
+
+ defaults: [
+ "afl-defaults",
+ ],
+
+ cflags: [
+ "-DAFL_PATH=\"out/host/linux-x86/lib64\"",
+ "-DAFL_CLANG_FLTO=\"-flto=full\"",
+ "-DUSE_BINDIR=1",
+ "-DLLVM_BINDIR=\"prebuilts/clang/host/linux-x86/clang-r383902b/bin\"",
+ "-DLLVM_LIBDIR=\"prebuilts/clang/host/linux-x86/clang-r383902b/lib64\"",
+ "-DCLANGPP_BIN=\"prebuilts/clang/host/linux-x86/clang-r383902b/bin/clang++\"",
+ "-DAFL_REAL_LD=\"prebuilts/clang/host/linux-x86/clang-r383902b/bin/ld.lld\"",
+ "-DLLVM_LTO=1",
+ "-DLLVM_MAJOR=11",
+ "-DLLVM_MINOR=2",
+ ],
+
+ srcs: [
+ "src/afl-cc.c",
+ "src/afl-common.c",
+ ],
+
+ symlinks: [
+ "afl-clang-fast-32",
+ "afl-clang-fast++-32",
+ ],
+}
+
+cc_library_static {
+ name: "afl-llvm-rt-32",
+ compile_multilib: "32",
+ vendor_available: true,
+ host_supported: true,
+ recovery_available: true,
+ sdk_version: "9",
+
+ apex_available: [
+ "com.android.adbd",
+ "com.android.appsearch",
+ "com.android.art",
+ "com.android.bluetooth.updatable",
+ "com.android.cellbroadcast",
+ "com.android.conscrypt",
+ "com.android.extservices",
+ "com.android.cronet",
+ "com.android.neuralnetworks",
+ "com.android.media",
+ "com.android.media.swcodec",
+ "com.android.mediaprovider",
+ "com.android.permission",
+ "com.android.runtime",
+ "com.android.resolv",
+ "com.android.tethering",
+ "com.android.wifi",
+ "com.android.sdkext",
+ "com.android.os.statsd",
+ "//any",
+ ],
+
+ defaults: [
+ "afl-defaults",
+ ],
+
+ srcs: [
+ "instrumentation/afl-compiler-rt.o.c",
+ ],
+}
+
+cc_prebuilt_library_static {
+ name: "libfrida-gum-32",
+ compile_multilib: "32",
+ strip: {
+ none: true,
+ },
+
+ srcs: [
+ "utils/afl_frida/android/arm/libfrida-gum.a",
+ ],
+
+ export_include_dirs: [
+ "utils/afl_frida/android/arm",
+ ],
+}
+
subdirs = [
"custom_mutators",
]