Skip to content

Commit

Permalink
Add check for special android ip in online status check
Browse files Browse the repository at this point in the history
  • Loading branch information
vlabo committed Apr 14, 2023
1 parent 394dbf4 commit 4784799
Show file tree
Hide file tree
Showing 4 changed files with 37 additions and 12 deletions.
2 changes: 1 addition & 1 deletion netenv/network-change.go
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ serviceLoop:
lastNetworkChecksum = newChecksum

if trigger {
triggerOnlineStatusInvestigation()
TriggerOnlineStatusInvestigation()
}
notifyOfNetworkChange()
}
Expand Down
35 changes: 30 additions & 5 deletions netenv/online-status.go
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,9 @@ var (
PortalTestIP = net.IPv4(192, 0, 2, 1)
PortalTestURL = fmt.Sprintf("http://%s/", PortalTestIP)

// IP address -> 100.127.247.245 is a special ip used by the android VPN service. Must be ignored during online check.
IgnoreIPsOnlineStatusCheck = []net.IP{net.IPv4(100, 127, 247, 245)}

DNSTestDomain = "online-check.safing.io."
DNSTestExpectedIP = net.IPv4(0, 65, 67, 75) // Ascii: \0ACK
DNSTestQueryFunc func(ctx context.Context, fdqn string) (ips []net.IP, ok bool, err error)
Expand Down Expand Up @@ -178,7 +181,7 @@ func GetOnlineStatus() OnlineStatus {
// CheckAndGetOnlineStatus triggers a new online status check and returns the result.
func CheckAndGetOnlineStatus() OnlineStatus {
// trigger new investigation
triggerOnlineStatusInvestigation()
TriggerOnlineStatusInvestigation()
// wait for completion
onlineStatusInvestigationWg.Wait()
// return current status
Expand Down Expand Up @@ -328,18 +331,19 @@ func GetCaptivePortal() *CaptivePortal {
// ReportSuccessfulConnection hints the online status monitoring system that a connection attempt was successful.
func ReportSuccessfulConnection() {
if !onlineStatusQuickCheck.IsSet() {
triggerOnlineStatusInvestigation()
TriggerOnlineStatusInvestigation()
}
}

// ReportFailedConnection hints the online status monitoring system that a connection attempt has failed. This function has extremely low overhead and may be called as much as wanted.
func ReportFailedConnection() {
if onlineStatusQuickCheck.IsSet() {
triggerOnlineStatusInvestigation()
TriggerOnlineStatusInvestigation()
}
}

func triggerOnlineStatusInvestigation() {
// TriggerOnlineStatusInvestigation manually trigger online status check.
func TriggerOnlineStatusInvestigation() {
if onlineStatusInvestigationInProgress.SetToIf(false, true) {
onlineStatusInvestigationWg.Add(1)
}
Expand All @@ -351,7 +355,7 @@ func triggerOnlineStatusInvestigation() {
}

func monitorOnlineStatus(ctx context.Context) error {
triggerOnlineStatusInvestigation()
TriggerOnlineStatusInvestigation()
for {
// wait for trigger
select {
Expand Down Expand Up @@ -395,6 +399,15 @@ func getDynamicStatusTrigger() <-chan time.Time {
}
}

func isIPPartOfList(list []net.IP, ip net.IP) bool {
for _, ignoreIP := range list {
if ignoreIP.Equal(ip) {
return true
}
}
return false
}

func checkOnlineStatus(ctx context.Context) {
// TODO: implement more methods
/*status, err := getConnectivityStateFromDbus()
Expand Down Expand Up @@ -423,7 +436,13 @@ func checkOnlineStatus(ctx context.Context) {
log.Warningf("network: failed to get assigned network addresses: %s", err)
} else {
var lan bool

for _, ip := range ipv4 {
// Filter special IP list
if isIPPartOfList(IgnoreIPsOnlineStatusCheck, ip) {
continue
}

switch netutils.GetIPScope(ip) { //nolint:exhaustive // Checking to specific values only.
case netutils.SiteLocal:
lan = true
Expand All @@ -433,7 +452,13 @@ func checkOnlineStatus(ctx context.Context) {
return
}
}

for _, ip := range ipv6 {
// Filter special IP list
if isIPPartOfList(IgnoreIPsOnlineStatusCheck, ip) {
continue
}

switch netutils.GetIPScope(ip) { //nolint:exhaustive // Checking to specific values only.
case netutils.SiteLocal, netutils.Global:
// IPv6 global addresses are also used in local networks
Expand Down
4 changes: 4 additions & 0 deletions resolver/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ import (
"github.com/safing/portbase/utils/debug"
_ "github.com/safing/portmaster/core/base"
"github.com/safing/portmaster/intel"
"github.com/safing/portmaster/netenv"
)

var module *modules.Module
Expand All @@ -25,6 +26,9 @@ func init() {
}

func prep() error {
// Set DNS test connectivity function for the online status check
netenv.DNSTestQueryFunc = testConnectivity

intel.SetReverseResolver(ResolveIPAndValidate)

if err := registerAPI(); err != nil {
Expand Down
8 changes: 2 additions & 6 deletions resolver/resolve.go
Original file line number Diff line number Diff line change
Expand Up @@ -523,10 +523,6 @@ func shouldResetCache(q *Query) (reset bool) {
return false
}

func init() {
netenv.DNSTestQueryFunc = testConnectivity
}

// testConnectivity test if resolving a query succeeds and returns whether the
// query itself succeeded, separate from interpreting the result.
func testConnectivity(ctx context.Context, fdqn string) (ips []net.IP, ok bool, err error) {
Expand Down Expand Up @@ -556,10 +552,10 @@ func testConnectivity(ctx context.Context, fdqn string) (ips []net.IP, ok bool,
}
case errors.Is(err, ErrNotFound):
return nil, true, err
case errors.Is(err, ErrBlocked):
return nil, true, err
case errors.Is(err, ErrNoCompliance):
return nil, true, err
case errors.Is(err, ErrBlocked):
return nil, true, err
default:
return nil, false, err
}
Expand Down

0 comments on commit 4784799

Please sign in to comment.