The obfs binary used by orbot supports: obfs3, obfs4. meek lite binary also is available. So we can support (1) and (2). All of these are configured and written to a custom torrc file:
ClientTransportPlugintransport exec path-to-binary [options]::
The bridge list is read from a text file in the res/raw folder. The bridges are then written to the custom torrc file.
Pluto has a script which sets the correct parameters go compile params and flags. We can modify this script for use in tor-browser-build
The files in Pluto are then packaged into an Android library with the binaries in the res/raw folder. For our purposes, we could put these into the assets folder instead since we want to add this in the last phase of the tor-browser build. We will need to just make sure to create an installer class that will pull from the assets folder into the private data section of the app so we can execute the binaries during runtime.
For Pluto 2 the build is different: It uses the following git repo for building the transports: https://gitlab.com/eighthave/goptbundle .We can then follow a similar process for installing as outlined above.
Skipping FTEProxy makes a lot of sense at this point -- there are only a handful of bridges, and we expect FTEProxy to go away once Marionette replaces it.
For the future, so you are aware of what comes next, the three next PTs we plan to investigate, and hopefully will want to put onto Tor Browser Android too, are:
I think starting with Pluto 2 if there are no blockers for that is the right thing to do. Re the sepaate project/go-android-toolchain: I am not sure why we would need that separate project for the compiler as we build Go for all the other platforms in projects/go. Why can't we add the necessary bits for Android there as well?
After some research into this, I think it looks strait forward to get Pluto2 and goptbundle implemented into the tor-browser-build. I'd estimate a week for a first implementation + time for feedback changes.
This uses the prebuilt aar for goptbundle. AAR libraries for debug and release versions are copied to the output directory. These libraries will be used by Orbot (or whatever consuming project we decide to use).
FWIW, this needs revision as we need to make sure that the built stuff is actually used by our bundle. This requires at least copying the files to the proper places in a different project in tor-browser-build.
I guess Orbot is not ready for that yet and I am not sure where we are with our PT story once we switch to TOPL. Thus we might want to file a more specific ticket to include the obfs4proxy build process (a la Pluto or the Briar way) in our reproducible build process meanwhile. Or maybe we just wait a bit longer... :)
This is solved with commit eee5d30a9ab1d727caac262cb62f72aaab75e0a0 on tor-browser-build's master. We might want to backport it at some point, though, given #32303 (moved).