This repository has been archived by the owner on Mar 30, 2023. It is now read-only.
forked from anestisb/android-prepare-vendor
-
Notifications
You must be signed in to change notification settings - Fork 32
/
execute-all.sh
executable file
·525 lines (455 loc) · 13.9 KB
/
execute-all.sh
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
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
#!/usr/bin/env bash
#
# Generate AOSP compatible vendor data for the provided device & build ID
#
set -e # fail on unhandled error
set -u # fail on undefined variable
#set -x # debug
readonly SCRIPTS_ROOT="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
readonly TMP_WORK_DIR=$(mktemp -d "${TMPDIR:-/tmp}"/android_prepare_vendor.XXXXXX) || exit 1
declare -a SYS_TOOLS=("mkdir" "curl" "dirname" "date" "touch" "shasum" "bsdtar" "jq")
# Realpath implementation in bash (required for macOS support)
readonly REALPATH_SCRIPT="$SCRIPTS_ROOT/scripts/realpath.sh"
# Common & global constants scripts
readonly CONSTS_SCRIPT="$SCRIPTS_ROOT/scripts/constants.sh"
readonly COMMON_SCRIPT="$SCRIPTS_ROOT/scripts/common.sh"
# Helper script to download factory images
readonly DOWNLOAD_SCRIPT="$SCRIPTS_ROOT/scripts/download-nexus-image.sh"
# Helper script to extract system & vendor images data
readonly EXTRACT_SCRIPT="$SCRIPTS_ROOT/scripts/extract-factory-images.sh"
# Helper script to extract ota data
readonly OTA_SCRIPT="$SCRIPTS_ROOT/scripts/extract-ota.sh"
# Helper script to generate "proprietary-blobs.txt" file
readonly GEN_BLOBS_LIST_SCRIPT="$SCRIPTS_ROOT/scripts/gen-prop-blobs-list.sh"
# Helper script to repair bytecode prebuilt archives
readonly REPAIR_SCRIPT="$SCRIPTS_ROOT/scripts/system-img-repair.sh"
# Helper script to generate vendor AOSP includes & makefiles
readonly VGEN_SCRIPT="$SCRIPTS_ROOT/scripts/generate-vendor.sh"
# Directory with host specific binaries
readonly LC_BIN="$SCRIPTS_ROOT/hostTools/Linux/bin"
abort() {
rm -rf "$TMP_WORK_DIR"
exit "$1"
}
usage() {
cat <<_EOF
Usage: $(basename "$0") [options]
OPTIONS:
-d|--device <name> : Device codename (angler, bullhead, etc.)
-b|--buildID <id> : BuildID string (e.g. MMB29P)
-o|--output <path> : Path to save generated vendor data
-i|--img <path> : [OPTIONAL] Read factory image archive from file instead of downloading
-O|--ota <path> : [OPTIONAL] Read OTA image archive from file instead of downloading
-r|--repair : [OPTIONAL] Repair bytecode with oatdump
-j|--java <path : [OPTIONAL] Java path to use instead of system auto detected global version
-k|--keep : [OPTIONAL] Keep all extracted factory images & repaired data (default: false)
-y|--yes : [OPTIONAL] Auto accept Google ToS when downloading Nexus factory images (default: false)
--force-opt : [OPTIONAL] Override LOCAL_DEX_PREOPT to always pre-optimize /system bytecode (default: false)
--deodex-all : [OPTIONAL] De-optimize all packages under /system (default: false)
--force-vimg : [OPTIONAL] Force factory extracted blobs under /vendor to be always used regardless AOSP definitions (default: false)
_EOF
abort 1
}
check_bash_version() {
if [ "${BASH_VERSINFO[0]}" -lt 4 ]; then
echo "[-] Minimum supported version of bash is 4.x"
abort 1
fi
}
dir_exists_or_create() {
local path="$1"
if [[ ! -d "$path" ]]; then
mkdir -p "$path"
fi
}
check_compatible_system() {
local hostOS
hostOS=$(uname -s)
if [[ "$hostOS" != "Linux" ]]; then
echo "[-] '$hostOS' OS is not supported"
abort 1
fi
}
check_for_oatdump() {
if [ ! -f "$SCRIPTS_ROOT/../out/host/linux-x86/bin/oatdump" ]; then
echo "[*] oatdump has not been compiled. This can be done with 'm oatdump' in your GrapheneOS tree."
abort 1
fi
}
is_aosp_root() {
local targetDir="$1"
if [ -f "$targetDir/.repo/project.list" ]; then
return 0
fi
return 1
}
check_input_args() {
if [[ "$DEVICE" == "" ]]; then
echo "[-] device codename cannot be empty"
usage
fi
if [[ "$BUILDID" == "" ]]; then
echo "[-] buildId cannot be empty"
usage
fi
if [[ "$OUTPUT_DIR" == "" || ! -d "$OUTPUT_DIR" ]]; then
echo "[-] Invalid output directory"
usage
fi
if [[ "$INPUT_IMG" != "" && ! -f "$INPUT_IMG" ]]; then
echo "[-] Invalid '$INPUT_IMG' file"
abort 1
fi
if [[ "$USER_JAVA_PATH" != "" ]]; then
if [ ! -f "$USER_JAVA_PATH" ]; then
echo "[-] '$USER_JAVA_PATH' path not found"
abort 1
fi
if [[ "$(basename "$USER_JAVA_PATH")" != "java" ]]; then
echo "[-] Invalid java path"
abort 1
fi
fi
# Some business logic related checks
if [[ "$DEODEX_ALL" = true && $KEEP_DATA = false ]]; then
echo "[!] It's pointless to deodex all if not keeping runtime generated data"
echo " After vendor generate finishes all files not part of configs will be deleted"
abort 1
fi
}
update_java_path() {
local __javapath=""
local __javadir=""
local __javahome=""
if [[ "$USER_JAVA_PATH" != "" ]]; then
__javapath=$(_realpath "$USER_JAVA_PATH")
__javadir=$(dirname "$__javapath")
__javahome="$__javapath"
JAVA_FOUND=true
else
readonly __JAVALINK=$(command -v java)
if [[ "$__JAVALINK" == "" ]]; then
echo "[!] Java not found in system"
else
__javapath=$(_realpath "$__JAVALINK")
__javadir=$(dirname "$__javapath")
__javahome="$__javapath"
JAVA_FOUND=true
fi
fi
if [ "$JAVA_FOUND" = true ]; then
export JAVA_HOME="$__javahome"
export PATH="$__javadir":$PATH
fi
}
checkJava() {
if [ "$JAVA_FOUND" = false ]; then
echo "[-] Java is required"
abort 1
fi
}
check_supported_device() {
local deviceOK=false
for devNm in "${SUPPORTED_DEVICES[@]}"
do
if [[ "$devNm" == "$DEVICE" ]]; then
deviceOK=true
fi
done
if [ "$deviceOK" = false ]; then
echo "[-] '$DEVICE' is not supported"
abort 1
fi
}
trap "abort 1" SIGINT SIGTERM
. "$REALPATH_SCRIPT"
. "$CONSTS_SCRIPT"
. "$COMMON_SCRIPT"
# Save the trouble to pass explicit binary paths
export PATH="$PATH:$LC_BIN"
# Global variables
DEVICE=""
BUILDID=""
OUTPUT_DIR=""
INPUT_IMG=""
INPUT_OTA=""
KEEP_DATA=false
FACTORY_IMGS_DATA=""
CONFIG_FILE=""
USER_JAVA_PATH=""
AUTO_TOS_ACCEPT=true
FORCE_PREOPT=false
BYTECODE_REPAIR_METHOD="NONE"
DEODEX_ALL=false
AOSP_ROOT=""
FORCE_VIMG=false
JAVA_FOUND=false
OTA=false
# Compatibility
check_bash_version
check_compatible_system
# Parse calling arguments
while [[ $# -gt 0 ]]
do
arg="$1"
case $arg in
-o|--output)
dir_exists_or_create "$2"
OUTPUT_DIR="$(_realpath "$2")"
shift
;;
-d|--device)
DEVICE=$(echo "$2" | tr '[:upper:]' '[:lower:]')
shift
;;
-b|--buildID)
BUILDID=$(echo "$2" | tr '[:upper:]' '[:lower:]')
shift
;;
-i|--img|--imgs)
INPUT_IMG="$(_realpath "$2")"
shift
;;
-O|--ota)
INPUT_OTA="$(_realpath "$2")"
shift
;;
-k|--keep)
KEEP_DATA=true
;;
-r|--repair)
BYTECODE_REPAIR_METHOD="OATDUMP"
;;
-j|--java)
USER_JAVA_PATH="$(_realpath "$2")"
shift
;;
-y|--yes)
AUTO_TOS_ACCEPT=true
;;
--force-opt)
FORCE_PREOPT=true
;;
--deodex-all)
DEODEX_ALL=true
;;
--force-vimg)
FORCE_VIMG=true
;;
*)
echo "[-] Invalid argument '$1'"
usage
;;
esac
shift
done
# Check user input args
check_input_args
# Check that system tools exist
for i in "${SYS_TOOLS[@]}"
do
if ! command_exists "$i"; then
echo "[-] '$i' command not found"
abort 1
fi
done
# Check if output directory is AOSP root
if is_aosp_root "$OUTPUT_DIR"; then
if [ "$KEEP_DATA" = true ]; then
echo "[!] Not safe to keep data when output directory is AOSP root - choose different path"
abort 1
fi
AOSP_ROOT="$OUTPUT_DIR"
OUTPUT_DIR="$TMP_WORK_DIR"
fi
# Resolve Java location
update_java_path
# Check if supported device
check_supported_device
# Specify device configuration json
CONFIG_FILE="$SCRIPTS_ROOT/$DEVICE/config.json"
# Prepare output dir structure
OUT_BASE="$OUTPUT_DIR/$DEVICE/$BUILDID"
if [ ! -d "$OUT_BASE" ]; then
mkdir -p "$OUT_BASE"
fi
FACTORY_IMGS_DATA="$OUT_BASE/factory_imgs_data"
FACTORY_IMGS_R_DATA="$OUT_BASE/factory_imgs_repaired_data"
OTA_DATA="$OUT_BASE/ota_data"
echo "[*] Setting output base to '$OUT_BASE'"
# Download images if not provided
factoryImgArchive=""
if [[ "$INPUT_IMG" == "" ]]; then
__extraArgs=""
if [ $AUTO_TOS_ACCEPT = true ]; then
__extraArgs="--yes"
fi
$DOWNLOAD_SCRIPT --device "$DEVICE" \
--buildID "$BUILDID" --output "$OUT_BASE" $__extraArgs || {
echo "[-] Images download failed"
abort 1
}
factoryImgArchive="$(find "$OUT_BASE" -iname "*$DEVICE*$BUILDID-factory*.tgz" -or \
-iname "*$DEVICE*$BUILDID-factory*.zip" | head -1)"
else
factoryImgArchive="$INPUT_IMG"
fi
readonly OTA_IMGS_LIST="$(jqIncRawArrayTop "ota-partitions" "$CONFIG_FILE")"
if [[ "$OTA_IMGS_LIST" != "" ]]; then
OTA=true
fi
if [ "$OTA" = true ]; then
OtaArchive=""
if [[ "$INPUT_OTA" == "" ]]; then
__extraArgs=""
if [ $AUTO_TOS_ACCEPT = true ]; then
__extraArgs="--yes"
fi
$DOWNLOAD_SCRIPT --device "$DEVICE" \
--buildID "$BUILDID" --output "$OUT_BASE" $__extraArgs --ota || {
echo "[-] OTA download failed"
abort 1
}
OtaArchive="$(find "$OUT_BASE" -iname "*$DEVICE*ota-$BUILDID*.tgz" -or \
-iname "*$DEVICE*ota-$BUILDID*.zip" | head -1)"
else
OtaArchive="$INPUT_OTA"
fi
fi
if [[ "$factoryImgArchive" == "" ]]; then
echo "[-] Failed to locate factory image archive"
abort 1
fi
if [ "$OTA" = true ]; then
if [[ "$OtaArchive" == "" ]]; then
echo "[-] Failed to locate OTA archive"
abort 1
fi
fi
# Clear old data if present & extract data from factory images
if [ -d "$FACTORY_IMGS_DATA" ]; then
rm -rf "${FACTORY_IMGS_DATA:?}"/*
else
mkdir -p "$FACTORY_IMGS_DATA"
fi
if [ -d "$OTA_DATA" ]; then
rm -rf "${OTA_DATA:?}"/*
else
mkdir -p "$OTA_DATA"
fi
EXTRACT_SCRIPT_ARGS=(--input "$factoryImgArchive" --output "$FACTORY_IMGS_DATA")
$EXTRACT_SCRIPT "${EXTRACT_SCRIPT_ARGS[@]}" --conf-file "$CONFIG_FILE" || {
echo "[-] Factory images data extract failed"
abort 1
}
if [ "$OTA" = true ]; then
OTA_SCRIPT_ARGS=(--input "$OtaArchive" --output "$OTA_DATA")
$OTA_SCRIPT "${OTA_SCRIPT_ARGS[@]}" --conf-file "$CONFIG_FILE" || {
echo "[-] OTA data extract failed"
abort 1
}
fi
# system.img contents are different between Nexus & Pixel
SYSTEM_ROOT="$FACTORY_IMGS_DATA/system"
if [[ -d "$FACTORY_IMGS_DATA/system/system" && -f "$FACTORY_IMGS_DATA/system/system/build.prop" ]]; then
SYSTEM_ROOT="$FACTORY_IMGS_DATA/system/system"
fi
echo "[*] Processing configuration"
# Generate unified readonly "proprietary-blobs.txt"
$GEN_BLOBS_LIST_SCRIPT --input "$FACTORY_IMGS_DATA/vendor" \
--output "$SCRIPTS_ROOT/$DEVICE" \
--conf-file "$CONFIG_FILE" || {
echo "[-] 'proprietary-blobs.txt' generation failed"
abort 1
}
# Repair bytecode from system partition
if [ -d "$FACTORY_IMGS_R_DATA" ]; then
rm -rf "${FACTORY_IMGS_R_DATA:?}"/*
else
mkdir -p "$FACTORY_IMGS_R_DATA"
fi
# Adjust arguments of system repair script based on chosen method
case $BYTECODE_REPAIR_METHOD in
"NONE")
;;
"OATDUMP")
REPAIR_SCRIPT_ARG=(--oatdump "$SCRIPTS_ROOT/../out/host/linux-x86/bin/oatdump")
;;
*)
echo "[-] Invalid bytecode repair method"
abort 1
;;
esac
# If deodex all not set provide a list of packages to repair
if [ $DEODEX_ALL = false ]; then
BYTECODE_LIST="$TMP_WORK_DIR/bytecode_list.txt"
jqIncRawArray "system-bytecode" "$CONFIG_FILE" > "$BYTECODE_LIST"
jqIncRawArray "product-bytecode" "$CONFIG_FILE" >> "$BYTECODE_LIST"
jqIncRawArray "system_ext-bytecode" "$CONFIG_FILE" >> "$BYTECODE_LIST"
REPAIR_SCRIPT_ARG+=( --bytecode-list "$BYTECODE_LIST")
fi
$REPAIR_SCRIPT --method "$BYTECODE_REPAIR_METHOD" --input "$SYSTEM_ROOT" \
--output "$FACTORY_IMGS_R_DATA" "${REPAIR_SCRIPT_ARG[@]}" || {
echo "[-] System partition bytecode repair failed"
abort 1
}
# Bytecode under vendor, product or system_ext partition doesn't require repair (at least for now)
# However, make it available to repaired data directory to have a single source
# for next script
ln -s "$FACTORY_IMGS_DATA/vendor" "$FACTORY_IMGS_R_DATA/vendor"
if [[ -d "$FACTORY_IMGS_DATA/product" ]]; then
ln -s "$FACTORY_IMGS_DATA/product" "$FACTORY_IMGS_R_DATA/product"
fi
if [[ -d "$FACTORY_IMGS_DATA/system_ext" ]]; then
ln -s "$FACTORY_IMGS_DATA/system_ext" "$FACTORY_IMGS_R_DATA/system_ext"
fi
# Copy vendor, product, and system_ext partition image size as saved from $EXTRACT_SCRIPT script
# $VGEN_SCRIPT will fail over to last known working default if image size
# file not found when parsing data
cp "$FACTORY_IMGS_DATA/vendor_partition_size" "$FACTORY_IMGS_R_DATA"
if [[ -f "$FACTORY_IMGS_DATA/product_partition_size" ]]; then
cp "$FACTORY_IMGS_DATA/product_partition_size" "$FACTORY_IMGS_R_DATA"
fi
if [[ -f "$FACTORY_IMGS_DATA/system_ext_partition_size" ]]; then
cp "$FACTORY_IMGS_DATA/system_ext_partition_size" "$FACTORY_IMGS_R_DATA"
fi
# Make radio files available to vendor generate script
if [[ -d "$OTA_DATA/radio" ]]; then
cp -r "$OTA_DATA/radio" "$FACTORY_IMGS_DATA/"
fi
ln -s "$FACTORY_IMGS_DATA/radio" "$FACTORY_IMGS_R_DATA/radio"
# Older devices do not have separate product partition
PRODUCT_R_ROOT="$FACTORY_IMGS_R_DATA/system/product"
if [ -d "$FACTORY_IMGS_DATA/product" ]; then
PRODUCT_R_ROOT="$FACTORY_IMGS_R_DATA/product"
fi
VGEN_SCRIPT_EXTRA_ARGS=()
if [ $FORCE_PREOPT = true ]; then
VGEN_SCRIPT_EXTRA_ARGS+=( --allow-preopt)
fi
if [ $FORCE_VIMG = true ]; then
VGEN_SCRIPT_EXTRA_ARGS+=( --force-vimg)
fi
if [[ "$AOSP_ROOT" != "" ]]; then
VGEN_SCRIPT_EXTRA_ARGS+=( --aosp-root "$AOSP_ROOT")
fi
$VGEN_SCRIPT --input "$FACTORY_IMGS_R_DATA" \
--output "$OUT_BASE" \
--conf-file "$CONFIG_FILE" \
"${VGEN_SCRIPT_EXTRA_ARGS[@]}" || {
echo "[-] Vendor generation failed"
abort 1
}
if [ "$KEEP_DATA" = false ]; then
rm -rf "$FACTORY_IMGS_DATA"
rm -rf "$FACTORY_IMGS_R_DATA"
rm -rf "$OTA_DATA"
fi
# If output dir is not AOSP SRC root print some user messages, otherwise the
# generate-vendor.sh script will rsync output intermediates
if [[ "$AOSP_ROOT" == "" ]]; then
echo "[*] Import '$OUT_BASE/vendor' vendor blobs to AOSP root"
echo "[*] Import '$OUT_BASE/vendor/google_devices/$DEVICE/overlay' vendor overlays to AOSP root"
fi
echo "[*] All actions completed successfully"
abort 0