Magisk/native/jni
topjohnwu 0f74e89b44 Introduce component agnostic communication
Usually, the communication between native and the app is done via
sending intents to either broadcast or activity. These communication
channels are for launching root requests dialogs, sending root request
notifications (the toast you see when an app gained root access), and
root request logging.

Sending intents by am (activity manager) usually requires specifying
the component name in the format of <pkg>/<class name>. This means parts
of Magisk Manager cannot be randomized or else the native daemon is
unable to know where to send data to the app.

On modern Android (not sure which API is it introduced), it is possible
to send broadcasts to a package, not a specific component. Which
component will receive the intent depends on the intent filter declared
in AndroidManifest.xml. Since we already have a mechanism in native code
to keep track of the package name of Magisk Manager, this makes it
perfect to pass intents to Magisk Manager that have components being
randomly obfuscated (stub APKs).

There are a few caveats though. Although this broadcasting method works
perfectly fine on AOSP and most systems, there are OEMs out there
shipping ROMs blocking broadcasts unexpectedly. In order to make sure
Magisk works in all kinds of scenarios, we run actual tests every boot
to determine which communication method should be used.

We have 3 methods in total, ordered in preference:
1. Broadcasting to a package
2. Broadcasting to a specific component
3. Starting a specific activity component

Method 3 will always work on any device, but the downside is anytime
a communication happens, Magisk Manager will steal foreground focus
regardless of whether UI is drawn. Method 1 is the only way to support
obfuscated stub APKs. The communication test will test method 1 and 2,
and if Magisk Manager is able to receive the messages, it will then
update the daemon configuration to use whichever is preferable. If none
of the broadcasts can be delivered, then the fallback method 3 will be
used.
2019-10-21 13:59:04 -04:00
..
core Introduce component agnostic communication 2019-10-21 13:59:04 -04:00
external Update busybox 2019-09-11 23:06:49 -04:00
include Introduce component agnostic communication 2019-10-21 13:59:04 -04:00
init Revert "Drop API 17 (Android 4.2) support" 2019-10-20 07:13:03 -04:00
magiskboot Pedantic boot_img_hdr multi-version support 2019-10-15 01:46:29 -04:00
magiskhide Rename classes and small adjustments 2019-09-25 23:55:39 -04:00
magiskpolicy magiskpolicy: rules: standardize update_engine sepolicy when rooted 2019-09-23 07:55:25 -04:00
resetprop Minor code changes across all sources 2019-06-30 19:09:31 -07:00
su Introduce component agnostic communication 2019-10-21 13:59:04 -04:00
systemproperties Some code adjustments 2019-02-24 23:09:34 -05:00
utils Revert "Drop API 17 (Android 4.2) support" 2019-10-20 07:13:03 -04:00
.gitignore Add entrypoint to build test 2019-04-01 02:46:09 -04:00
Android.mk Update to support updated FrankeNDK 2019-07-07 17:38:57 -07:00
Application.mk Update to support updated FrankeNDK 2019-07-07 17:38:57 -07:00