From 266a040806719b1bbf461ad65d1112f90d065c76 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E4=B8=96=E7=95=8C?= Date: Sun, 28 Aug 2022 11:08:07 +0800 Subject: [PATCH] Fetch android users --- tun_rules.go | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/tun_rules.go b/tun_rules.go index 5e0c256..c8bd510 100644 --- a/tun_rules.go +++ b/tun_rules.go @@ -2,7 +2,9 @@ package tun import ( "context" + "os" "sort" + "strconv" "github.com/sagernet/sing/common" E "github.com/sagernet/sing/common/exceptions" @@ -27,6 +29,19 @@ func (o *Options) BuildAndroidRules(packageManager PackageManager, errorHandler userExcludeRange = ranges.Revert(0, userEnd, userExcludeRange) o.ExcludeUID = append(o.ExcludeUID, userExcludeRange...) } + if len(includeUser) == 0 { + userDirs, err := os.ReadDir("/data/user") + if err == nil { + var userId uint64 + for _, userDir := range userDirs { + userId, err = strconv.ParseUint(userDir.Name(), 10, 32) + if err != nil { + continue + } + includeUser = append(includeUser, uint32(userId)) + } + } + } if len(includeUser) == 0 { includeUser = []uint32{0} }