syncthing-android
syncthing-android copied to clipboard
Android API level 30 breaks interface address discovery
API level 30(Android 11) will be mandatory starting November 2021 for apps on the PlayStore but seems to break golangs interface address discovery: https://github.com/golang/go/issues/40569
This seems to be an intended privacy related change which directly affects how golangs stdlib retrieves addresses for an interface:
NetworkInterface.getHardwareAddress()returnsnullfor every interface.- Apps cannot use the
bind()function onNETLINK_ROUTEsockets.- The
ipcommand does not return information about interfaces.- Apps cannot send
RTM_GETLINKmessages.
Source: https://developer.android.com/training/articles/user-data-ids#mac-11-plus
Related: https://github.com/Catfriend1/syncthing-android/issues/735
Golang issue on the same problem: https://github.com/golang/go/issues/40569
There's a go android app (tailscale) which implemented this functionality in java and created bindings for their go code: https://github.com/tailscale/tailscale-android/pull/21
Probably doable to adobt that, but definitely not trivial. And nothing I have time to investigate at the moment - contributions welcome.
We already have a wrapper which is able to access this APIs. It's probably easier to leverage our REST API and allow external sources to feed syncthing with discovered IPs.
Maybe there's also potential there - however my limited testing shows that it can still receive local announcements. The problem here is the other way around: Syncthing can't get it's own address to announce that. There's no rest endpoint to do that (and that would be kind of strange).
We could have an endpoint to set extra external addresses for announcement though, in addition to one populating the discovery cache. I could even see other potential uses for it (peeps running it in k8s behind a load balancer etc).
But both local and global discovery take the source of the packets as the address if none is given, that should work for most cases on mobile as well? We just lose out on announcing our LAN addresses...
It would be really nice if the wrapper could add (LAN) addresses to Syncthing which are in turn used for local and global announcements.
@Catfriend1 what's your take on this? I know the official wrapper and the fork are somewhat independent but the REST API would be a common denominator in this case.
@bt90 In which way should we add addresses to Syncthing (which, from where, to where)? The fork allows for discovery by listening to some other syncthing on the network calling out to the phone. But actively sending won't work because of Android restrictions, I'm not sure if doing this from the wrapper would be possible.
I think we need to separate two different concerns here:
- IP address discovery
- local announcement
Currently the Syncthing process isn't able to retrieve the LAN IPs assigned to the network interface of the phone. This deterioates connectivity if only Android devices are involved as they can only establish global or relay connections.
Broadcast problems are unfortunate but at least could be worked around with global discovery if the aformentioned IP discovery works.
For anyone struggling: running syncthing as root on Android is a workaround, but please remember that it's very inadvisable.
Maybe the IP address discovery issue could be partially worked around if Syncthing detected that there's an ip binary/symlink available (provided by e.g. Busybox (I tested that binary in a terminal and it returned everything needed, without root))? Of course, this still requires a rooted phone, but doesn't require Syncthing to run as root on its own. Note that this is still just a workaround, not a solution for most users.
Alternative workaround, which I prefer over rooting:
- Give one (or more) of your devices a reserved DHCP address, e.g.,
192.168.0.231. - On your other devices, update the addresses field for that device to use QUIC specifying that reserved DHCP address, e.g.,
quic://192.168.0.231instead ofdefault.
This turns discovery off completely.
For some reason using quic:// did not work for me but tcp4:// did. But at least it works now. Thanks.
Did some research this morning, and it seems to me that the best way forward is to adopt the tailscale workaround, which uses the higher-level APIs recommended by the Android docs. Is it just lack of time preventing this from being addressed?
The workarounds are fine for home networks, but I'm currently traveling with two Android devices and using ST for syncing travel plans/documents The hotel wifis tend to disallow UPnP, so even global discovery doesn't work. Of course I can still do the workarounds, but I have to redo them each time we return to the hotel which is tedious. Not complaining; just describing a use case. ;)
If this is still open after my vacation, I could contribute a PR.
They are using java bindings in go. So the difficult thing will be setting that up. My first reaction would be to try and keep it out of syncthing/syncthing, i.e. likely have a branch/patch-set adding the android/java stuff to be used in syncthing-android. You are totally welcome at giving it a go, please ask questions and write about plans whenever something comes up.
It's probably easier to do it the other way around, build syncthing as a dynamic library. Eitherway, both of these are massive "weeks of effort" undertakings.
Even easier is to implement discovery in java libraries and use the rest api to configure devices with the discovered addresses.
I'm testing a different approach in https://github.com/syncthing/syncthing/pull/9087
https://github.com/golang/go/pull/61089 might solve our remaining problems on Android but so far local discovery should work with next syncthing-android release.