sing-box/route/rule_user.go

49 lines
1 KiB
Go
Raw Normal View History

2022-07-17 07:11:26 +00:00
package route
import (
"strings"
"github.com/sagernet/sing-box/adapter"
2022-07-24 14:54:16 +00:00
"github.com/sagernet/sing-box/common/warning"
C "github.com/sagernet/sing-box/constant"
2022-07-17 07:11:26 +00:00
F "github.com/sagernet/sing/common/format"
)
2022-08-09 08:36:17 +00:00
var warnUserOnNonLinux = warning.New(
func() bool { return !C.IsLinux },
"rule item `user` is only supported on Linux",
2022-07-24 14:54:16 +00:00
)
2022-07-17 07:11:26 +00:00
var _ RuleItem = (*UserItem)(nil)
type UserItem struct {
users []string
userMap map[string]bool
}
func NewUserItem(users []string) *UserItem {
2022-07-24 14:54:16 +00:00
warnUserOnNonLinux.Check()
2022-07-17 07:11:26 +00:00
userMap := make(map[string]bool)
for _, protocol := range users {
userMap[protocol] = true
}
return &UserItem{
users: users,
userMap: userMap,
}
}
func (r *UserItem) Match(metadata *adapter.InboundContext) bool {
if metadata.ProcessInfo == nil || metadata.ProcessInfo.User == "" {
return false
}
return r.userMap[metadata.ProcessInfo.User]
2022-07-17 07:11:26 +00:00
}
func (r *UserItem) String() string {
if len(r.users) == 1 {
return F.ToString("user=", r.users[0])
}
return F.ToString("user=[", strings.Join(r.users, " "), "]")
}