Introducing Signature check in Masquerade (1/3)

This commit introduces a signing Signature check against all AUTHORIZED_CALLERS.
It can be bypassed automatically if the ROM is a userdebug or eng build, or if
the user has explicitly toggled "Developer options" secure setting.

The Signature String was produced with the following call:
log(pi.signatures[0].toCharsString());

and it was deliberately added into Java and not a Resources string so it will
be impossible to overlay.

The build type check was made configurable for OEMs using a prop value:
ro.masquerade.buildtype.check

the ro.* namespace was chosen for better user security (it shouldn't be writable)

It borrows some of the signature check code from the DashClock app:
https://github.com/romannurik/dashclock/commit/a9bf6636f764b150d489d0817ee7f7796af1a155

Change-Id: I6e9bb97de02a9cc89e57fd4099230cd86e820aa9
1 file changed
tree: ea6fffdea0accc639e14b5a6d55a208686ddba62
  1. app/
  2. gradle/
  3. .gitignore
  4. Android.mk
  5. build.gradle
  6. gradle.properties
  7. gradlew
  8. gradlew.bat
  9. LICENSE.txt
  10. projekt.substratum.theme.xml
  11. README.md
  12. settings.gradle
README.md

masquerade

Build Status

Masquerade is Substratum's background service that runs functions that should run on a completely separate thread. This alleviates the stress on the main app and allows for Substratum to run more smoothly.

How to add to ROM builds

If you are a ROM developer, by now you should know how to track new packages while building your ROM. However, if you don't - please follow these steps:

Add "masquerade" under PRODUCT_PACKAGES in "vendor/config/common.mk"

PRODUCT_PACKAGES += \
...\
...\
...\
masquerade

Add the project path in "platform_manifest/default.xml"

<project path="packages/apps/masquerade" name="substratum/masquerade" remote="github" revision="n-rootless" />

An example is found here:

platform_manifest/default.xml: https://github.com/TipsyOs/platform_manifest/commit/fbff9ea598ec04f4f4a69687a8024770fefa83de

vendor_tipsy/config/common.mk: https://github.com/TipsyOs/vendor_tipsy/commit/2e72dc4eb3a206fad34e9c4f130e270180eab1c2