forked from Magisk-Modules-Repo/vold-posix
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinstall.sh
279 lines (243 loc) · 10 KB
/
install.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
##########################################################################################
#
# Magisk Module Installer Script
#
##########################################################################################
##########################################################################################
#
# Instructions:
#
# 1. Place your files into system folder (delete the placeholder file)
# 2. Fill in your module's info into module.prop
# 3. Configure and implement callbacks in this file
# 4. If you need boot scripts, add them into common/post-fs-data.sh or common/service.sh
# 5. Add your additional or modified system properties into common/system.prop
#
##########################################################################################
##########################################################################################
# Config Flags
##########################################################################################
# Set to true if you do *NOT* want Magisk to mount
# any files for you. Most modules would NOT want
# to set this flag to true
SKIPMOUNT=false
# Set to true if you need to load system.prop
PROPFILE=false
# Set to true if you need post-fs-data script
POSTFSDATA=true
# Set to true if you need late_start service script
LATESTARTSERVICE=true
##########################################################################################
# Replace list
##########################################################################################
# List all directories you want to directly replace in the system
# Check the documentations for more info why you would need this
# Construct your list in the following format
# This is an example
REPLACE_EXAMPLE="
/system/app/Youtube
/system/priv-app/SystemUI
/system/priv-app/Settings
/system/framework
"
# Construct your own list here
REPLACE="
"
##########################################################################################
#
# Function Callbacks
#
# The following functions will be called by the installation framework.
# You do not have the ability to modify update-binary, the only way you can customize
# installation is through implementing these functions.
#
# When running your callbacks, the installation framework will make sure the Magisk
# internal busybox path is *PREPENDED* to PATH, so all common commands shall exist.
# Also, it will make sure /data, /system, and /vendor is properly mounted.
#
##########################################################################################
##########################################################################################
#
# The installation framework will export some variables and functions.
# You should use these variables and functions for installation.
#
# ! DO NOT use any Magisk internal paths as those are NOT public API.
# ! DO NOT use other functions in util_functions.sh as they are NOT public API.
# ! Non public APIs are not guranteed to maintain compatibility between releases.
#
# Available variables:
#
# MAGISK_VER (string): the version string of current installed Magisk
# MAGISK_VER_CODE (int): the version code of current installed Magisk
# BOOTMODE (bool): true if the module is currently installing in Magisk Manager
# MODPATH (path): the path where your module files should be installed
# TMPDIR (path): a place where you can temporarily store files
# ZIPFILE (path): your module's installation zip
# ARCH (string): the architecture of the device. Value is either arm, arm64, x86, or x64
# IS64BIT (bool): true if $ARCH is either arm64 or x64
# API (int): the API level (Android version) of the device
#
# Availible functions:
#
# ui_print <msg>
# print <msg> to console
# Avoid using 'echo' as it will not display in custom recovery's console
#
# abort <msg>
# print error message <msg> to console and terminate installation
# Avoid using 'exit' as it will skip the termination cleanup steps
#
# set_perm <target> <owner> <group> <permission> [context]
# if [context] is empty, it will default to "u:object_r:system_file:s0"
# this function is a shorthand for the following commands
# chown owner.group target
# chmod permission target
# chcon context target
#
# set_perm_recursive <directory> <owner> <group> <dirpermission> <filepermission> [context]
# if [context] is empty, it will default to "u:object_r:system_file:s0"
# for all files in <directory>, it will call:
# set_perm file owner group filepermission context
# for all directories in <directory> (including itself), it will call:
# set_perm dir owner group dirpermission context
#
##########################################################################################
##########################################################################################
# If you need boot scripts, DO NOT use general boot scripts (post-fs-data.d/service.d)
# ONLY use module scripts as it respects the module status (remove/disable) and is
# guaranteed to maintain the same behavior in future Magisk releases.
# Enable boot scripts by setting the flags in the config section above.
##########################################################################################
# Set what you want to display when installing your module
print_modname() {
ui_print "*******************************"
ui_print " Magisk Module Vold Posix "
ui_print "*******************************"
}
# Copy/extract your module files into $MODPATH in on_install.
on_install() {
# The following is the default implementation: extract $ZIPFILE/system to $MODPATH
# Extend/change the logic to whatever you want
if [ $API != 27 ]; then
abort "Only support Oreo 8.1"
fi
if [ ! -z $(getprop ro.miui.ui.version.name) ]; then
abort "Not support ROM"
fi
if [ $ARCH != "arm64" ]; then
abort "Only support arm64 devices"
fi
MAGISKVER=`echo $MAGISK_VER_CODE|cut -c1-3`
if [ ! $MAGISKVER -eq 171 ] && [ $MAGISKVER -lt 200 ]; then
abort "! Only support Magisk 17.1 or 20+."
fi
ui_print "- Extracting module files"
unzip -o "$ZIPFILE" 'system/*' -d $MODPATH >&2
unzip -oj "$ZIPFILE" 'magiskinit_171' 'init.custom.rc' 'init.vold.rc' -d $MODPATH >&2
patch_boot
}
# Only some special files require specific permissions
# This function will be called after on_install is done
# The default permissions should be good enough for most cases
set_permissions() {
# The following is the default rule, DO NOT remove
set_perm_recursive $MODPATH 0 0 0755 0644
# Here are some examples:
# set_perm_recursive $MODPATH/system/lib 0 0 0755 0644
# set_perm $MODPATH/system/bin/app_process32 0 2000 0755 u:object_r:zygote_exec:s0
# set_perm $MODPATH/system/bin/dex2oat 0 2000 0755 u:object_r:dex2oat_exec:s0
# set_perm $MODPATH/system/lib/libart.so 0 0 0644
set_perm_recursive $MODPATH/system 0 0 0755 0644
set_perm_recursive $MODPATH/system/bin 0 2000 0755 0755
set_perm $MODPATH/magiskinit_171 0 0 0755
set_perm $MODPATH/system/bin/vold 0 2000 0755 u:object_r:vold_exec:s0
set_perm $MODPATH/system/bin/fsck.exfat 0 2000 0755 u:object_r:fsck_exec:s0
set_perm $MODPATH/system/bin/fsck.ntfs 0 2000 0755 u:object_r:fsck_exec:s0
}
# You can add more functions to assist your custom script code
patch_boot() {
get_flags
find_boot_image
find_manager_apk
eval $BOOTSIGNER -verify < $BOOTIMAGE && BOOTSIGNED=true
$BOOTSIGNED && ui_print "- Boot image is signed with AVB 1.0"
[ -z $BOOTIMAGE ] && abort "! Unable to detect target image"
ui_print "- Target image: $BOOTIMAGE"
[ -e "$BOOTIMAGE" ] || abort "$BOOTIMAGE does not exist!"
ui_print "- Unpacking boot image"
/data/adb/magisk/magiskboot --unpack "$BOOTIMAGE"
case $? in
1 )
abort "! Unable to unpack boot image"
;;
2 )
ui_print "- ChromeOS boot image detected"
abort "! Unsupport type"
;;
3 )
ui_print "! Sony ELF32 format detected"
abort "! Unsupport type"
;;
4 )
ui_print "! Sony ELF64 format detected"
abort "! Unsupport type"
esac
ui_print "- Checking ramdisk status"
if [ -e ramdisk.cpio ]; then
/data/adb/magisk/magiskboot --cpio ramdisk.cpio test
STATUS=$?
else
# Stock A only system-as-root
STATUS=0
fi
case $((STATUS & 3)) in
0 ) # Stock boot
ui_print "- Stock boot image detected"
abort "! Please install Magisk first"
;;
1 ) # Magisk patched
ui_print "- Magisk patched boot image detected"
;;
2 ) # Other patched
ui_print "! Boot image patched by unsupported programs"
abort "! Please restore stock boot image"
;;
esac
if [ $((STATUS & 8)) -ne 0 ]; then
# Possibly using 2SI, export env var
export TWOSTAGEINIT=true
fi
ui_print "- Patching ramdisk"
if [ $MAGISKVER -eq 171 ]; then
ui_print "Magisk 17:"
if [ ! -f $MODPATH/magiskinit_171 ]; then
abort "! Can't find magiskinit_171, please check again."
fi
/data/adb/magisk/magiskboot --cpio ramdisk.cpio \
"add 750 init $MODPATH/magiskinit_171" \
"add 755 vold $MODPATH/vold" \
"add 750 init.custom.rc $MODPATH/init.custom.rc" 2>&1
else
ui_print "Magisk 20+:"
/data/adb/magisk/magiskboot --cpio ramdisk.cpio \
"mkdir 755 overlay.d" \
"mkdir 755 overlay.d/sbin" \
"add 755 overlay.d/sbin/vold $MODPATH/system/bin/vold" \
"add 750 overlay.d/init.vold.rc $MODPATH/init.vold.rc" 2>&1
fi
if [ $((STATUS & 4)) -ne 0 ]; then
ui_print "- Compressing ramdisk"
/data/adb/magisk/magiskboot --cpio ramdisk.cpio compress
fi
ui_print "- Repacking boot image"
/data/adb/magisk/magiskboot --repack "$BOOTIMAGE" || abort "! Unable to repack boot image!"
ui_print "- Flashing new boot image"
if ! flash_image new-boot.img "$BOOTIMAGE"; then
ui_print "- Compressing ramdisk to fit in partition"
/data/adb/magisk/magiskboot --cpio ramdisk.cpio compress
/data/adb/magisk/magiskboot --repack "$BOOTIMAGE"
flash_image new-boot.img "$BOOTIMAGE" || abort "! Insufficient partition size"
fi
/data/adb/magisk/magiskboot --cleanup
rm -f new-boot.img
}