summaryrefslogtreecommitdiffstats
path: root/mobile/android/geckoview/src/asan/resources/lib/arm64-v8a/wrap.sh
blob: 65a466973bbe1767df68ecca6d64050714beb1da (plain)
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
#!/system/bin/sh
# shellcheck shell=ksh

# call getprop before setting LD_PRELOAD
os_version=$(getprop ro.build.version.sdk)

# These options mirror those in mozglue/build/AsanOptions.cpp
# except for fast_unwind_* which are only needed on Android
options=(
  allow_user_segv_handler=1
  alloc_dealloc_mismatch=0
  detect_leaks=0
  fast_unwind_on_check=1
  fast_unwind_on_fatal=1
  max_free_fill_size=268435456
  max_malloc_fill_size=268435456
  malloc_fill_byte=228
  free_fill_byte=229
  handle_sigill=1
  allocator_may_return_null=1
)
if [ -e "/data/local/tmp/asan.options.gecko" ]; then
  options+=("$(tr -d '\n' < /data/local/tmp/asan.options.gecko)")
fi

# : is the usual separator for ASAN options
# save and reset IFS so it doesn't interfere with later commands
old_ifs="$IFS"
IFS=:
ASAN_OPTIONS="${options[*]}"
export ASAN_OPTIONS
IFS="$old_ifs"

LIB_PATH="$(cd "$(dirname "$0")" && pwd)"
LD_PRELOAD="$(ls "$LIB_PATH"/libclang_rt.asan-*-android.so)"
export LD_PRELOAD

cmd="$1"
shift

# enable debugging
# https://developer.android.com/ndk/guides/wrap-script#debugging_when_using_wrapsh
# note that wrap.sh is not supported before android 8.1 (API 27)
if [ "$os_version" -eq "27" ]; then
  args=("-Xrunjdwp:transport=dt_android_adb,suspend=n,server=y" -Xcompiler-option --debuggable)
elif [ "$os_version" -eq "28" ]; then
  args=(-XjdwpProvider:adbconnection "-XjdwpOptions:suspend=n,server=y" -Xcompiler-option --debuggable)
else
  args=(-XjdwpProvider:adbconnection "-XjdwpOptions:suspend=n,server=y")
fi

exec "$cmd" "${args[@]}" "$@"