mirror of
https://github.com/MetaCubeX/mihomo.git
synced 2025-12-20 00:50:06 +08:00
Some checks are pending
Test / test (1.20, macos-13) (push) Waiting to run
Test / test (1.20, macos-latest) (push) Waiting to run
Test / test (1.20, ubuntu-24.04-arm) (push) Waiting to run
Test / test (1.20, ubuntu-latest) (push) Waiting to run
Test / test (1.20, windows-latest) (push) Waiting to run
Test / test (1.21, macos-13) (push) Waiting to run
Test / test (1.21, macos-latest) (push) Waiting to run
Test / test (1.21, ubuntu-24.04-arm) (push) Waiting to run
Test / test (1.21, ubuntu-latest) (push) Waiting to run
Test / test (1.21, windows-latest) (push) Waiting to run
Test / test (1.22, macos-13) (push) Waiting to run
Test / test (1.22, macos-latest) (push) Waiting to run
Test / test (1.22, ubuntu-24.04-arm) (push) Waiting to run
Test / test (1.22, ubuntu-latest) (push) Waiting to run
Test / test (1.22, windows-latest) (push) Waiting to run
Test / test (1.23, macos-13) (push) Waiting to run
Test / test (1.23, macos-latest) (push) Waiting to run
Test / test (1.23, ubuntu-24.04-arm) (push) Waiting to run
Test / test (1.23, ubuntu-latest) (push) Waiting to run
Test / test (1.23, windows-latest) (push) Waiting to run
Test / test (1.24, macos-13) (push) Waiting to run
Test / test (1.24, macos-latest) (push) Waiting to run
Test / test (1.24, ubuntu-24.04-arm) (push) Waiting to run
Test / test (1.24, ubuntu-latest) (push) Waiting to run
Test / test (1.24, windows-latest) (push) Waiting to run
Trigger CMFA Update / trigger-CMFA-update (push) Waiting to run
64 lines
1.2 KiB
Go
64 lines
1.2 KiB
Go
package common
|
|
|
|
import (
|
|
"fmt"
|
|
"runtime"
|
|
|
|
"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) {
|
|
if !(runtime.GOOS == "linux" || runtime.GOOS == "android") {
|
|
return nil, fmt.Errorf("uid rule not support this platform")
|
|
}
|
|
|
|
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, helper C.RuleMatchHelper) (bool, string) {
|
|
if helper.FindProcess != nil {
|
|
helper.FindProcess()
|
|
}
|
|
if metadata.Uid != 0 {
|
|
if u.uids.Check(metadata.Uid) {
|
|
return true, u.adapter
|
|
}
|
|
}
|
|
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
|
|
}
|