clash/rules/common/uid.go

65 lines
1.2 KiB
Go
Raw Normal View History

package common
import (
2022-05-29 10:12:43 +00:00
"fmt"
"runtime"
2023-11-03 13:01:45 +00:00
"github.com/metacubex/mihomo/common/utils"
C "github.com/metacubex/mihomo/constant"
"github.com/metacubex/mihomo/log"
)
type Uid struct {
*Base
uids utils.IntRanges[uint32]
oUid string
adapter string
}
func NewUid(oUid, adapter string) (*Uid, error) {
2022-05-29 10:12:43 +00:00
if !(runtime.GOOS == "linux" || runtime.GOOS == "android") {
return nil, fmt.Errorf("uid rule not support this platform")
}
2024-01-20 03:00:06 +00:00
uidRange, err := utils.NewUnsignedRanges[uint32](oUid)
if err != nil {
return nil, fmt.Errorf("%w, %w", errPayload, err)
}
if len(uidRange) == 0 {
return nil, errPayload
}
return &Uid{
Base: &Base{},
adapter: adapter,
oUid: oUid,
uids: uidRange,
}, nil
}
func (u *Uid) RuleType() C.RuleType {
return C.Uid
}
func (u *Uid) Match(metadata *C.Metadata) (bool, string) {
2023-01-13 18:23:30 +00:00
if metadata.Uid != 0 {
if u.uids.Check(metadata.Uid) {
return true, u.adapter
}
}
2023-01-13 18:23:30 +00:00
log.Warnln("[UID] could not get uid from %s", metadata.String())
return false, ""
}
func (u *Uid) Adapter() string {
return u.adapter
}
func (u *Uid) Payload() string {
return u.oUid
}
2023-01-13 18:23:30 +00:00
func (u *Uid) ShouldFindProcess() bool {
return true
}