Encrypted overlay filesystems implementation for Android. Also available on GitHub: https://github.com/hardcore-sushi/DroidFS
Go to file
2024-07-26 13:36:45 +02:00
app Fix ABI versionCode offsets 2024-07-26 13:36:45 +02:00
fastlane/metadata/android Fix ABI versionCode offsets 2024-07-26 13:36:45 +02:00
gradle/wrapper Update dependencies & Fix build 2024-06-06 21:08:11 +02:00
libpdfviewer@8df8522088 OpenSSL & FFmpeg as submodules & Different versionCode for each ABI 2024-07-18 23:49:51 +02:00
.gitignore Inital commit 2020-07-17 22:12:20 +02:00
.gitmodules OpenSSL & FFmpeg as submodules & Different versionCode for each ABI 2024-07-18 23:49:51 +02:00
build.gradle Update dependencies & Fix build 2024-06-06 21:08:11 +02:00
BUILD.md OpenSSL & FFmpeg as submodules & Different versionCode for each ABI 2024-07-18 23:49:51 +02:00
DONATE.txt Add Support section in README 2023-08-15 18:06:39 +02:00
gradle.properties Add .opus & Update build config 2024-01-13 21:25:31 +01:00
gradlew Update dependencies 2023-09-08 21:13:24 +02:00
gradlew.bat Update dependencies 2023-09-08 21:13:24 +02:00
LICENSE.txt Inital commit 2020-07-17 22:12:20 +02:00
README.md Update README.md & TODO.md 2024-07-25 17:18:29 +02:00
settings.gradle Update dependencies & Fix build 2024-06-06 21:08:11 +02:00
TODO.md Update README.md & TODO.md 2024-07-25 17:18:29 +02:00

DroidFS

An alternative way to use encrypted virtual filesystems on Android that uses its own internal file explorer instead of mounting volumes. It currently supports gocryptfs and CryFS.

For mortals: Encrypted storage compatible with already existing softwares.

Support

The creator of DroidFS works as a freelance developer and privacy consultant. I am currently looking for new clients! If you are interested, take a look at the website. Alternatively, you can directly support DroidFS by making a donation.

Thank you so much ❤️.

Disclaimer

DroidFS is provided "as is", without any warranty of any kind. It shouldn't be considered as an absolute safe way to store files. DroidFS cannot protect you from screen recording apps, keyloggers, apk backdooring, compromised root accesses, memory dumps etc. Do not use this app with volumes containing sensitive data unless you know exactly what you are doing.

Features

  • Compatible with original encrypted volume implementations
  • Internal support for video, audio, images, text and PDF files
  • Built-in camera to take on-the-fly encrypted photos and videos
  • Unlocking volumes using fingerprint authentication
  • Volume auto-locking when the app goes in background

For planned features, see TODO.md.

Unsafe features

Some available features are considered risky and are therefore disabled by default. It is strongly recommended that you read the following documentation if you wish to activate one of these options.

  • Allow screenshots:

    Disable the secure flag of DroidFS activities. This will allow you to take screenshots from the app, but will also allow other apps to record the screen while using DroidFS.

    Note: apps with root access don't care about this flag: they can take screenshots or record the screen of any app without any permissions.

  • Allow exporting files:

    Decrypt and write file to disk (external storage). Any app with storage permissions could access exported files.

  • Allow sharing files via the android share menu⁽¹⁾:

    Decrypt and share file with other apps. These apps could save and send the files thus shared.

  • Allow saving password hash using fingerprint:

    Generate an AES-256 GCM key in the Android Keystore (protected by fingerprint authentication), then use it to encrypt the volume password hash and store it to the DroidFS internal storage. This require Android v6.0+. If your device is not encrypted, extracting the encryption key with physical access may be possible.

  • Disable volume auto-locking: (previously called "Keep volumes open when the app goes in background")

    Don't close open volumes when you leave the app. Anyone going back to the application could have access to open volumes. Cryptographic secrets are kept in memory for an undefined amount of time.

  • Keep volumes open: (Different from the old "Keep volumes open when the app goes in background". Yes it's confusing, sorry)

    Keep the app running as a foreground service to maintain volumes open, even when the app is removed from recent tasks.

    This avoid the app from being killed by the system during file operations or while accessing exposed volumes, but this mean cryptographic secrets stay in memory for an undefined amount of time.

  • Allow opening files with other applications⁽¹⁾:

    Decrypt and open file using external apps. These apps could save and send the files thus opened.

  • Expose open volumes⁽¹⁾:

    Allow open volumes to be browsed in the system file explorer (DocumentProvider API). Encrypted files can then be selected from other applications, potentially with permanent access. This feature requires "Disable volume auto-locking", and works more reliably when "Keep volumes open" is also enabled.

  • Grant write access:

    Files opened with another applications can be modified by them. This applies to both previous unsafe features.

⁽¹⁾: These features can work in two ways: temporarily writing the plain file to disk (DroidFS internal storage) or sharing it via memory. By default, DroidFS will choose to keep the file only in memory as it's more secure, but will fallback to disk export if the file is too large to be held in memory. This behavior can be changed with the "Export method" parameter in the settings. Please note that some applications require the file to be stored on disk, and therefore do not work with memory-exported files.

Download

You can download DroidFS from F-Droid or from the "Releases" section in this repository.

APKs available here are signed with my PGP key available on keyservers:

gpg --keyserver hkps://keyserver.ubuntu.com --recv-keys AFE384344A45E13A
Fingerprint: B64E FE86 CEE1 D054 F082 1711 AFE3 8434 4A45 E13A
Email: Hardcore Sushi <hardcore.sushi@disroot.org>

To verify APKs, save the PGP-signed message to a file and run gpg --verify <the file>. Don't install any APK if the verification fails !

If the signature is valid, you can compare the SHA256 checksums with:

sha256sum <APK file>

Don't install the APK if the checksums don't match!

F-Droid APKs should be signed with the F-Droid key. More details here.

Permissions

DroidFS needs some permissions for certain features. However, you are free to deny them if you do not wish to use these features.

  • Read & write access to shared storage: Required to access volumes located on shared storage.
  • Biometric/Fingerprint hardware: Required to encrypt/decrypt password hashes using a fingerprint protected key.
  • Camera: Required to take encrypted photos or videos directly from the app.
  • Record audio: Required if you want sound on video recorded with DroidFS.
  • Notifications: Used to report file operations progress and notify about volumes kept open.

Limitations

DroidFS works as a wrapper around modified versions of the original encrypted container implementations (libgocryptfs and libcryfs). These programs were designed to run on standard x86 Linux systems: they access the underlying file system with file paths and syscalls. However, on Android, you can't access files from other applications using file paths. Instead, one has to use the ContentProvider API. Obviously, neither Gocryptfs nor CryFS support this API. As a result, DroidFS cannot open volumes provided by other applications (such as cloud storage clients). If you want to synchronize your volumes on a cloud, the cloud application must synchronize the encrypted directory from disk.

Due to Android's storage restrictions, encrypted volumes located on SD cards must be placed under /Android/data/sushi.hardcore.droidfs/ if you want DroidFS to be able to modify them.

Building from source

You can follow the instructions in BUILD.md to build DroidFS from source.

Third party code

Thanks to these open source projects that DroidFS uses:

Modified code:

Borrowed code:

Libraries: