Commit Graph

143 Commits

Author SHA1 Message Date
370015a853 Modernize database code (again) 2019-03-06 08:16:12 -05:00
04ef1e6405 Make parse prop file a util function 2019-03-05 20:27:09 -05:00
b278d07b05 Switch to Zygote ptrace-ing
No matter if we use the old, buggy, error prone am_proc_start monitoring,
or the new APK inotify method, both methods rely on MagiskHide 'reacting'
fast enough to hijack the process before any detection has been done.

However, this is not reliable and practical. There are apps that utilize
native libraries to start detects and register SIGCONT signal handlers
to mitigate all existing MagiskHide process monitoring mechanism. So
our only solution is to hijack an app BEFORE it is started.

All Android apps' process is forked from zygote, so it is easily the
target to be monitored. All forks will be notified, and subsequent
thread spawning (Android apps are heaviliy multithreaded) from children
are also closely monitored to find the earliest possible point to
identify what the process will eventually be (before am_proc_bound).

ptrace is extremely complicated and very difficult to get right. The
current code is heaviliy tested on a stock Android 9.0 Pixel system,
so in theory it should work fine on most devices, but more tests and
potentially fixes are expected to follow this commit.
2019-03-05 20:23:27 -05:00
6c3896079d Add zygote server notifier 2019-03-05 20:23:27 -05:00
8032bd0bac Introduce /data mirror
Since we switched to imageless Magisk, module files are directly
stored in /data. However, /data is mounted with nosuid, which also
prevents SELinux typetransition to work (auto transition from one
domain to another when executing files with specific context).
This could cause serious issues when we are replacing system critical
components (e.g. app_process for Xposed), because most of them
are daemons that run in special process domains.

This commit introduced /data mirror. Using similar mirroring technique
we used for system and vendor, we mount another mirror that mounts
/data without nosuid flag. All module files are then mounted from this
mirror mountpoint instead of directly from /data.

Close #1080
2019-02-25 06:13:42 -05:00
2f1b0fe57f Remove unused scripts 2019-02-18 03:08:40 -05:00
f4f2274c60 Auto reinstall system apps on hide list
Since we are parsing through /data/app/ to find target APKs for
monitoring, system apps will not be covered in this case.
Automatically reinstall system apps as if they received an update
and refresh the monitor target after it's done.

As a bonus, use RAII idioms for locking pthread_mutex_t.
2019-02-16 02:24:35 -05:00
19ee189468 Separate scripting code 2019-02-15 20:45:05 -05:00
a19c7215d2 Better nice name 2019-02-15 04:31:39 -05:00
7384d2d330 Completely rework MagiskHide
Previous MagiskHide detects new app launches via listening through logcat
and filtering launch info messages.

This is extremely inefficient and prone to cause multiple issues both
theoratically and practically.

Rework this by using inotify to detect open() syscalls to target APKs.

This also solves issues related to Zygote-forked caching mechanisms such as
OnePlus OxygenOS' embryo.

Signed-off-by: Park Ju Hyung <qkrwngud825@gmail.com>
2019-02-12 23:39:57 -05:00
ed027ec3ee Refactor build flags 2019-02-12 05:17:02 -05:00
ed4df87b57 Remove imgtool 2019-02-12 02:44:46 -05:00
1321f097b8 Remove usage of magisk.img
Mounting ext4 images causes tons of issues, such as unmountable with broken F2FS drivers.
Resizing is also very complicated and does not work properly on all devices.
Each step in either measuring free space, resizing, and shrinking the image is a
point of failure, and either step's failure could cause the module system completely broken.

The new method is to directly store modules into /data/adb/modules, and for module installation
on boot /data/adb/modules_update. Several compatibility layers has been done: the new path is
bind mounted to the old path (/sbin/.magisk/img), and the helper functions in util_functions.sh
will now transparently make existing modules install to the new location without any changes.

MagiskHide is also updated to unmount module files stored in this new location.
2019-02-12 02:14:57 -05:00
71ecbb3af3 Clean/refactor includes 2019-02-10 03:57:51 -05:00
3a422c3f15 Remove magisklogd, use threads and BlockingQueue 2019-02-10 01:05:19 -05:00
b3242322fd Harden socket verification
- Do not allow connections to magiskd from binaries other than the one started the server
- Do not allow connections to magisklogd without root access
2019-02-09 15:02:46 -05:00
c8491d008f Move sbin overlay creation to magiskinit 2019-02-09 01:51:46 -05:00
fdf167db11 Get API level from build.prop 2019-01-20 15:20:34 -05:00
3e4c12cf56 Migrate to STL 2019-01-19 23:59:37 -05:00
03c39e692a Switch to libc++ 2019-01-19 13:47:33 -05:00
23f8f35098 Stop using system STL since it is no longer supported 2018-12-25 19:38:44 +08:00
2ab999f4ca Fix bug in DB query wrapper 2018-11-20 02:20:49 -05:00
ab5fedda0b Prevent Magisk database race condition
The database should only be accessed by a single process, which is magiskd.
This means 'magisk --sqlite [SQL]' has to be updated to pass the SQL command to the daemon.
In addition, open the database connection with SQLITE_OPEN_FULLMUTEX to support multithread in magiskd.
2018-11-16 03:20:30 -05:00
ab74290fe3 Move magiskhide config into database 2018-11-16 01:15:34 -05:00
572e078d87 Fully deprecate <mount_point>/.core folder
Symlinks are preserved for backwards compatibility
2018-11-15 22:55:28 -05:00
ee4548230b Disable native systemless hosts, add built-in systemless hosts module 2018-11-15 13:57:41 -05:00
376e7977f0 Deprecate path /sbin/.core, switch to /sbin/.magisk
Symlink is preserved for backwards compatibility
2018-11-15 01:36:03 -05:00
3a2a2a4ffa Micro optimizations 2018-11-13 02:07:02 -05:00
5743c72cca Minor cleanup 2018-11-08 15:23:36 -05:00
3d269fe8be Migrate MagiskInit to C++ 2018-11-08 04:20:16 -05:00
803c5377a6 Clean init.c 2018-11-07 02:21:15 -05:00
7c12bf7fa1 Modernize code base 2018-11-07 02:10:38 -05:00
0742901cd2 Modernize database code 2018-11-04 18:24:08 -05:00
5e4d2dedbe Minor log_daemon changes 2018-11-04 17:23:08 -05:00
cda57dd4b4 Fully migrate Magisk to C++ 2018-11-04 04:15:51 -05:00
a7824af5a8 Expose persist prop API 2018-11-03 00:15:21 -04:00
b8a3cc8b60 Separate magiskhide logic from main daemon 2018-11-01 14:08:33 -04:00
27c688252d Store hidelist in magisk database 2018-11-01 13:23:12 -04:00
dbb8b8a439 Handle magisk.db completely natively
Prevent database corruption due to different Android application sqlite default settings
2018-10-27 17:54:48 -04:00
a9121fa28f Reorganize libutils and cleanups 2018-10-12 21:46:09 -04:00
acf7c0c665 Minor reorganization of daemons 2018-10-12 00:50:47 -04:00
d119dd9a0c Rewrite su daemon and client 2018-10-04 04:59:51 -04:00
09ef19f7ec Code cleanups 2018-10-04 01:49:52 -04:00
5020cd1bbf Small cleanup 2018-09-28 01:25:43 -04:00
cce636224c Reorganization 2018-09-27 18:26:41 -04:00
60b3b8ddce Better incremental builds 2018-09-27 03:56:56 -04:00
41446ec9ba Separate libutils and libsystemproperties 2018-09-27 03:30:16 -04:00
df8b047bca Generalize logging interface 2018-09-27 03:11:10 -04:00
1d53335ae5 Dynamic load libselinux 2018-09-27 00:09:59 -04:00
906b4aad9e New method of communication
Introduce a new communication method between Magisk and Magisk Manager.

Magisk used to hardcode classnames and send broadcast/start activities to
specific components. This new method makes no assumption of any class names,
so Magisk Manager can easily be fully obfuscated.

In addition, the new method connects Magisk and Magisk Manager with random
abstract Linux sockets instead of socket files in filesystems, bypassing
file system complexities (selinux, permissions and such)
2018-09-16 04:16:18 -04:00