| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057 |
- package daemon
- import (
- "context"
- "os"
- "runtime"
- "sync"
- "time"
- "github.com/sagernet/sing-box/adapter"
- "github.com/sagernet/sing-box/common/urltest"
- "github.com/sagernet/sing-box/experimental/clashapi"
- "github.com/sagernet/sing-box/experimental/clashapi/trafficontrol"
- "github.com/sagernet/sing-box/experimental/deprecated"
- "github.com/sagernet/sing-box/log"
- "github.com/sagernet/sing-box/protocol/group"
- "github.com/sagernet/sing/common"
- "github.com/sagernet/sing/common/batch"
- E "github.com/sagernet/sing/common/exceptions"
- "github.com/sagernet/sing/common/memory"
- "github.com/sagernet/sing/common/observable"
- "github.com/sagernet/sing/common/x/list"
- "github.com/sagernet/sing/service"
- "github.com/gofrs/uuid/v5"
- "google.golang.org/grpc"
- "google.golang.org/protobuf/types/known/emptypb"
- )
- var _ StartedServiceServer = (*StartedService)(nil)
- type StartedService struct {
- ctx context.Context
- // platform adapter.PlatformInterface
- handler PlatformHandler
- debug bool
- logMaxLines int
- oomKiller bool
- // workingDirectory string
- // tempDirectory string
- // userID int
- // groupID int
- // systemProxyEnabled bool
- serviceAccess sync.RWMutex
- serviceStatus *ServiceStatus
- serviceStatusSubscriber *observable.Subscriber[*ServiceStatus]
- serviceStatusObserver *observable.Observer[*ServiceStatus]
- logAccess sync.RWMutex
- logLines list.List[*log.Entry]
- logSubscriber *observable.Subscriber[*log.Entry]
- logObserver *observable.Observer[*log.Entry]
- instance *Instance
- startedAt time.Time
- urlTestSubscriber *observable.Subscriber[struct{}]
- urlTestObserver *observable.Observer[struct{}]
- urlTestHistoryStorage *urltest.HistoryStorage
- clashModeSubscriber *observable.Subscriber[struct{}]
- clashModeObserver *observable.Observer[struct{}]
- connectionEventSubscriber *observable.Subscriber[trafficontrol.ConnectionEvent]
- connectionEventObserver *observable.Observer[trafficontrol.ConnectionEvent]
- }
- type ServiceOptions struct {
- Context context.Context
- // Platform adapter.PlatformInterface
- Handler PlatformHandler
- Debug bool
- LogMaxLines int
- OOMKiller bool
- // WorkingDirectory string
- // TempDirectory string
- // UserID int
- // GroupID int
- // SystemProxyEnabled bool
- }
- func NewStartedService(options ServiceOptions) *StartedService {
- s := &StartedService{
- ctx: options.Context,
- // platform: options.Platform,
- handler: options.Handler,
- debug: options.Debug,
- logMaxLines: options.LogMaxLines,
- oomKiller: options.OOMKiller,
- // workingDirectory: options.WorkingDirectory,
- // tempDirectory: options.TempDirectory,
- // userID: options.UserID,
- // groupID: options.GroupID,
- // systemProxyEnabled: options.SystemProxyEnabled,
- serviceStatus: &ServiceStatus{Status: ServiceStatus_IDLE},
- serviceStatusSubscriber: observable.NewSubscriber[*ServiceStatus](4),
- logSubscriber: observable.NewSubscriber[*log.Entry](128),
- urlTestSubscriber: observable.NewSubscriber[struct{}](1),
- urlTestHistoryStorage: urltest.NewHistoryStorage(),
- clashModeSubscriber: observable.NewSubscriber[struct{}](1),
- connectionEventSubscriber: observable.NewSubscriber[trafficontrol.ConnectionEvent](256),
- }
- s.serviceStatusObserver = observable.NewObserver(s.serviceStatusSubscriber, 2)
- s.logObserver = observable.NewObserver(s.logSubscriber, 64)
- s.urlTestObserver = observable.NewObserver(s.urlTestSubscriber, 1)
- s.clashModeObserver = observable.NewObserver(s.clashModeSubscriber, 1)
- s.connectionEventObserver = observable.NewObserver(s.connectionEventSubscriber, 64)
- return s
- }
- func (s *StartedService) resetLogs() {
- s.logAccess.Lock()
- s.logLines = list.List[*log.Entry]{}
- s.logAccess.Unlock()
- s.logSubscriber.Emit(nil)
- }
- func (s *StartedService) updateStatus(newStatus ServiceStatus_Type) {
- statusObject := &ServiceStatus{Status: newStatus}
- s.serviceStatusSubscriber.Emit(statusObject)
- s.serviceStatus = statusObject
- }
- func (s *StartedService) updateStatusError(err error) error {
- statusObject := &ServiceStatus{Status: ServiceStatus_FATAL, ErrorMessage: err.Error()}
- s.serviceStatusSubscriber.Emit(statusObject)
- s.serviceStatus = statusObject
- s.serviceAccess.Unlock()
- return err
- }
- func (s *StartedService) waitForStarted(ctx context.Context) error {
- s.serviceAccess.RLock()
- currentStatus := s.serviceStatus.Status
- s.serviceAccess.RUnlock()
- switch currentStatus {
- case ServiceStatus_STARTED:
- return nil
- case ServiceStatus_STARTING:
- default:
- return os.ErrInvalid
- }
- subscription, done, err := s.serviceStatusObserver.Subscribe()
- if err != nil {
- return err
- }
- defer s.serviceStatusObserver.UnSubscribe(subscription)
- for {
- select {
- case <-ctx.Done():
- return ctx.Err()
- case <-s.ctx.Done():
- return s.ctx.Err()
- case status := <-subscription:
- switch status.Status {
- case ServiceStatus_STARTED:
- return nil
- case ServiceStatus_FATAL:
- return E.New(status.ErrorMessage)
- case ServiceStatus_IDLE, ServiceStatus_STOPPING:
- return os.ErrInvalid
- }
- case <-done:
- return os.ErrClosed
- }
- }
- }
- func (s *StartedService) StartOrReloadService(profileContent string, options *OverrideOptions) error {
- s.serviceAccess.Lock()
- switch s.serviceStatus.Status {
- case ServiceStatus_IDLE, ServiceStatus_STARTED, ServiceStatus_STARTING, ServiceStatus_FATAL:
- default:
- s.serviceAccess.Unlock()
- return os.ErrInvalid
- }
- oldInstance := s.instance
- if oldInstance != nil {
- s.updateStatus(ServiceStatus_STOPPING)
- s.serviceAccess.Unlock()
- _ = oldInstance.Close()
- s.serviceAccess.Lock()
- }
- s.updateStatus(ServiceStatus_STARTING)
- s.resetLogs()
- instance, err := s.newInstance(profileContent, options)
- if err != nil {
- return s.updateStatusError(err)
- }
- s.instance = instance
- instance.urlTestHistoryStorage.SetHook(s.urlTestSubscriber)
- if instance.clashServer != nil {
- instance.clashServer.SetModeUpdateHook(s.clashModeSubscriber)
- instance.clashServer.(*clashapi.Server).TrafficManager().SetEventHook(s.connectionEventSubscriber)
- }
- s.serviceAccess.Unlock()
- err = instance.Start()
- s.serviceAccess.Lock()
- if s.serviceStatus.Status != ServiceStatus_STARTING {
- s.serviceAccess.Unlock()
- return nil
- }
- if err != nil {
- return s.updateStatusError(err)
- }
- s.startedAt = time.Now()
- s.updateStatus(ServiceStatus_STARTED)
- s.serviceAccess.Unlock()
- runtime.GC()
- return nil
- }
- func (s *StartedService) Close() {
- s.serviceStatusSubscriber.Close()
- s.logSubscriber.Close()
- s.urlTestSubscriber.Close()
- s.clashModeSubscriber.Close()
- s.connectionEventSubscriber.Close()
- }
- func (s *StartedService) CloseService() error {
- s.serviceAccess.Lock()
- switch s.serviceStatus.Status {
- case ServiceStatus_STARTING, ServiceStatus_STARTED:
- default:
- s.serviceAccess.Unlock()
- return os.ErrInvalid
- }
- s.updateStatus(ServiceStatus_STOPPING)
- instance := s.instance
- s.instance = nil
- if instance != nil {
- err := instance.Close()
- if err != nil {
- return s.updateStatusError(err)
- }
- }
- s.startedAt = time.Time{}
- s.updateStatus(ServiceStatus_IDLE)
- s.serviceAccess.Unlock()
- runtime.GC()
- return nil
- }
- func (s *StartedService) SetError(err error) {
- s.serviceAccess.Lock()
- s.updateStatusError(err)
- s.WriteMessage(log.LevelError, err.Error())
- }
- func (s *StartedService) StopService(ctx context.Context, empty *emptypb.Empty) (*emptypb.Empty, error) {
- err := s.handler.ServiceStop()
- if err != nil {
- return nil, err
- }
- return &emptypb.Empty{}, nil
- }
- func (s *StartedService) ReloadService(ctx context.Context, empty *emptypb.Empty) (*emptypb.Empty, error) {
- err := s.handler.ServiceReload()
- if err != nil {
- return nil, err
- }
- return &emptypb.Empty{}, nil
- }
- func (s *StartedService) SubscribeServiceStatus(empty *emptypb.Empty, server grpc.ServerStreamingServer[ServiceStatus]) error {
- subscription, done, err := s.serviceStatusObserver.Subscribe()
- if err != nil {
- return err
- }
- defer s.serviceStatusObserver.UnSubscribe(subscription)
- err = server.Send(s.serviceStatus)
- if err != nil {
- return err
- }
- for {
- select {
- case <-s.ctx.Done():
- return s.ctx.Err()
- case <-server.Context().Done():
- return server.Context().Err()
- case newStatus := <-subscription:
- err = server.Send(newStatus)
- if err != nil {
- return err
- }
- case <-done:
- return nil
- }
- }
- }
- func (s *StartedService) SubscribeLog(empty *emptypb.Empty, server grpc.ServerStreamingServer[Log]) error {
- var savedLines []*log.Entry
- s.logAccess.Lock()
- savedLines = make([]*log.Entry, 0, s.logLines.Len())
- for element := s.logLines.Front(); element != nil; element = element.Next() {
- savedLines = append(savedLines, element.Value)
- }
- subscription, done, err := s.logObserver.Subscribe()
- s.logAccess.Unlock()
- if err != nil {
- return err
- }
- defer s.logObserver.UnSubscribe(subscription)
- err = server.Send(&Log{
- Messages: common.Map(savedLines, func(it *log.Entry) *Log_Message {
- return &Log_Message{
- Level: LogLevel(it.Level),
- Message: it.Message,
- }
- }),
- Reset_: true,
- })
- if err != nil {
- return err
- }
- for {
- select {
- case <-s.ctx.Done():
- return s.ctx.Err()
- case <-server.Context().Done():
- return server.Context().Err()
- case message := <-subscription:
- var rawMessage Log
- if message == nil {
- rawMessage.Reset_ = true
- } else {
- rawMessage.Messages = append(rawMessage.Messages, &Log_Message{
- Level: LogLevel(message.Level),
- Message: message.Message,
- })
- }
- fetch:
- for {
- select {
- case message = <-subscription:
- if message == nil {
- rawMessage.Messages = nil
- rawMessage.Reset_ = true
- } else {
- rawMessage.Messages = append(rawMessage.Messages, &Log_Message{
- Level: LogLevel(message.Level),
- Message: message.Message,
- })
- }
- default:
- break fetch
- }
- }
- err = server.Send(&rawMessage)
- if err != nil {
- return err
- }
- case <-done:
- return nil
- }
- }
- }
- func (s *StartedService) GetDefaultLogLevel(ctx context.Context, empty *emptypb.Empty) (*DefaultLogLevel, error) {
- s.serviceAccess.RLock()
- switch s.serviceStatus.Status {
- case ServiceStatus_STARTING, ServiceStatus_STARTED:
- default:
- s.serviceAccess.RUnlock()
- return nil, os.ErrInvalid
- }
- logLevel := s.instance.instance.LogFactory().Level()
- s.serviceAccess.RUnlock()
- return &DefaultLogLevel{Level: LogLevel(logLevel)}, nil
- }
- func (s *StartedService) ClearLogs(ctx context.Context, empty *emptypb.Empty) (*emptypb.Empty, error) {
- s.resetLogs()
- return &emptypb.Empty{}, nil
- }
- func (s *StartedService) SubscribeStatus(request *SubscribeStatusRequest, server grpc.ServerStreamingServer[Status]) error {
- interval := time.Duration(request.Interval)
- if interval <= 0 {
- interval = time.Second // Default to 1 second
- }
- ticker := time.NewTicker(interval)
- defer ticker.Stop()
- status := s.readStatus()
- uploadTotal := status.UplinkTotal
- downloadTotal := status.DownlinkTotal
- for {
- err := server.Send(status)
- if err != nil {
- return err
- }
- select {
- case <-s.ctx.Done():
- return s.ctx.Err()
- case <-server.Context().Done():
- return server.Context().Err()
- case <-ticker.C:
- }
- status = s.readStatus()
- upload := status.UplinkTotal - uploadTotal
- download := status.DownlinkTotal - downloadTotal
- uploadTotal = status.UplinkTotal
- downloadTotal = status.DownlinkTotal
- status.Uplink = upload
- status.Downlink = download
- }
- }
- func (s *StartedService) readStatus() *Status {
- var status Status
- status.Memory = memory.Total()
- status.Goroutines = int32(runtime.NumGoroutine())
- s.serviceAccess.RLock()
- nowService := s.instance
- s.serviceAccess.RUnlock()
- if nowService != nil && nowService.connectionManager != nil {
- status.ConnectionsOut = int32(nowService.connectionManager.Count())
- }
- if nowService != nil {
- if clashServer := nowService.clashServer; clashServer != nil {
- status.TrafficAvailable = true
- trafficManager := clashServer.(*clashapi.Server).TrafficManager()
- status.UplinkTotal, status.DownlinkTotal = trafficManager.Total()
- status.ConnectionsIn = int32(trafficManager.ConnectionsLen())
- }
- }
- return &status
- }
- func (s *StartedService) SubscribeGroups(empty *emptypb.Empty, server grpc.ServerStreamingServer[Groups]) error {
- err := s.waitForStarted(server.Context())
- if err != nil {
- return err
- }
- subscription, done, err := s.urlTestObserver.Subscribe()
- if err != nil {
- return err
- }
- defer s.urlTestObserver.UnSubscribe(subscription)
- for {
- s.serviceAccess.RLock()
- if s.serviceStatus.Status != ServiceStatus_STARTED {
- s.serviceAccess.RUnlock()
- return os.ErrInvalid
- }
- groups := s.readGroups()
- s.serviceAccess.RUnlock()
- err = server.Send(groups)
- if err != nil {
- return err
- }
- select {
- case <-subscription:
- case <-s.ctx.Done():
- return s.ctx.Err()
- case <-server.Context().Done():
- return server.Context().Err()
- case <-done:
- return nil
- }
- }
- }
- func (s *StartedService) readGroups() *Groups {
- historyStorage := s.instance.urlTestHistoryStorage
- boxService := s.instance
- outbounds := boxService.instance.Outbound().Outbounds()
- var iGroups []adapter.OutboundGroup
- for _, it := range outbounds {
- if group, isGroup := it.(adapter.OutboundGroup); isGroup {
- iGroups = append(iGroups, group)
- }
- }
- var gs Groups
- for _, iGroup := range iGroups {
- var g Group
- g.Tag = iGroup.Tag()
- g.Type = iGroup.Type()
- _, g.Selectable = iGroup.(*group.Selector)
- g.Selected = iGroup.Now()
- if boxService.cacheFile != nil {
- if isExpand, loaded := boxService.cacheFile.LoadGroupExpand(g.Tag); loaded {
- g.IsExpand = isExpand
- }
- }
- for _, itemTag := range iGroup.All() {
- itemOutbound, isLoaded := boxService.instance.Outbound().Outbound(itemTag)
- if !isLoaded {
- continue
- }
- var item GroupItem
- item.Tag = itemTag
- item.Type = itemOutbound.Type()
- if history := historyStorage.LoadURLTestHistory(adapter.OutboundTag(itemOutbound)); history != nil {
- item.UrlTestTime = history.Time.Unix()
- item.UrlTestDelay = int32(history.Delay)
- }
- g.Items = append(g.Items, &item)
- }
- if len(g.Items) < 2 {
- continue
- }
- gs.Group = append(gs.Group, &g)
- }
- return &gs
- }
- func (s *StartedService) GetClashModeStatus(ctx context.Context, empty *emptypb.Empty) (*ClashModeStatus, error) {
- s.serviceAccess.RLock()
- if s.serviceStatus.Status != ServiceStatus_STARTED {
- s.serviceAccess.RUnlock()
- return nil, os.ErrInvalid
- }
- clashServer := s.instance.clashServer
- s.serviceAccess.RUnlock()
- if clashServer == nil {
- return nil, os.ErrInvalid
- }
- return &ClashModeStatus{
- ModeList: clashServer.ModeList(),
- CurrentMode: clashServer.Mode(),
- }, nil
- }
- func (s *StartedService) SubscribeClashMode(empty *emptypb.Empty, server grpc.ServerStreamingServer[ClashMode]) error {
- err := s.waitForStarted(server.Context())
- if err != nil {
- return err
- }
- subscription, done, err := s.clashModeObserver.Subscribe()
- if err != nil {
- return err
- }
- defer s.clashModeObserver.UnSubscribe(subscription)
- for {
- s.serviceAccess.RLock()
- if s.serviceStatus.Status != ServiceStatus_STARTED {
- s.serviceAccess.RUnlock()
- return os.ErrInvalid
- }
- message := &ClashMode{Mode: s.instance.clashServer.Mode()}
- s.serviceAccess.RUnlock()
- err = server.Send(message)
- if err != nil {
- return err
- }
- select {
- case <-subscription:
- case <-s.ctx.Done():
- return s.ctx.Err()
- case <-server.Context().Done():
- return server.Context().Err()
- case <-done:
- return nil
- }
- }
- }
- func (s *StartedService) SetClashMode(ctx context.Context, request *ClashMode) (*emptypb.Empty, error) {
- s.serviceAccess.RLock()
- if s.serviceStatus.Status != ServiceStatus_STARTED {
- s.serviceAccess.RUnlock()
- return nil, os.ErrInvalid
- }
- clashServer := s.instance.clashServer
- s.serviceAccess.RUnlock()
- clashServer.(*clashapi.Server).SetMode(request.Mode)
- return &emptypb.Empty{}, nil
- }
- func (s *StartedService) URLTest(ctx context.Context, request *URLTestRequest) (*emptypb.Empty, error) {
- s.serviceAccess.RLock()
- if s.serviceStatus.Status != ServiceStatus_STARTED {
- s.serviceAccess.RUnlock()
- return nil, os.ErrInvalid
- }
- boxService := s.instance
- s.serviceAccess.RUnlock()
- groupTag := request.OutboundTag
- abstractOutboundGroup, isLoaded := boxService.instance.Outbound().Outbound(groupTag)
- if !isLoaded {
- return nil, E.New("outbound group not found: ", groupTag)
- }
- outboundGroup, isOutboundGroup := abstractOutboundGroup.(adapter.OutboundGroup)
- if !isOutboundGroup {
- return nil, E.New("outbound is not a group: ", groupTag)
- }
- urlTest, isURLTest := abstractOutboundGroup.(*group.URLTest)
- if isURLTest {
- go urlTest.CheckOutbounds()
- } else {
- historyStorage := boxService.urlTestHistoryStorage
- outbounds := common.Filter(common.Map(outboundGroup.All(), func(it string) adapter.Outbound {
- itOutbound, _ := boxService.instance.Outbound().Outbound(it)
- return itOutbound
- }), func(it adapter.Outbound) bool {
- if it == nil {
- return false
- }
- _, isGroup := it.(adapter.OutboundGroup)
- if isGroup {
- return false
- }
- return true
- })
- b, _ := batch.New(boxService.ctx, batch.WithConcurrencyNum[any](10))
- for _, detour := range outbounds {
- outboundToTest := detour
- outboundTag := outboundToTest.Tag()
- b.Go(outboundTag, func() (any, error) {
- t, err := urltest.URLTest(boxService.ctx, "", outboundToTest)
- if err != nil {
- historyStorage.DeleteURLTestHistory(outboundTag)
- } else {
- historyStorage.StoreURLTestHistory(outboundTag, &adapter.URLTestHistory{
- Time: time.Now(),
- Delay: t,
- })
- }
- return nil, nil
- })
- }
- }
- return &emptypb.Empty{}, nil
- }
- func (s *StartedService) SelectOutbound(ctx context.Context, request *SelectOutboundRequest) (*emptypb.Empty, error) {
- s.serviceAccess.RLock()
- switch s.serviceStatus.Status {
- case ServiceStatus_STARTING, ServiceStatus_STARTED:
- default:
- s.serviceAccess.RUnlock()
- return nil, os.ErrInvalid
- }
- boxService := s.instance.instance
- s.serviceAccess.RUnlock()
- outboundGroup, isLoaded := boxService.Outbound().Outbound(request.GroupTag)
- if !isLoaded {
- return nil, E.New("selector not found: ", request.GroupTag)
- }
- selector, isSelector := outboundGroup.(*group.Selector)
- if !isSelector {
- return nil, E.New("outbound is not a selector: ", request.GroupTag)
- }
- if !selector.SelectOutbound(request.OutboundTag) {
- return nil, E.New("outbound not found in selector: ", request.OutboundTag)
- }
- s.urlTestObserver.Emit(struct{}{})
- return &emptypb.Empty{}, nil
- }
- func (s *StartedService) SetGroupExpand(ctx context.Context, request *SetGroupExpandRequest) (*emptypb.Empty, error) {
- s.serviceAccess.RLock()
- switch s.serviceStatus.Status {
- case ServiceStatus_STARTING, ServiceStatus_STARTED:
- default:
- s.serviceAccess.RUnlock()
- return nil, os.ErrInvalid
- }
- boxService := s.instance
- s.serviceAccess.RUnlock()
- if boxService.cacheFile != nil {
- err := boxService.cacheFile.StoreGroupExpand(request.GroupTag, request.IsExpand)
- if err != nil {
- return nil, err
- }
- }
- return &emptypb.Empty{}, nil
- }
- func (s *StartedService) GetSystemProxyStatus(ctx context.Context, empty *emptypb.Empty) (*SystemProxyStatus, error) {
- return s.handler.SystemProxyStatus()
- }
- func (s *StartedService) SetSystemProxyEnabled(ctx context.Context, request *SetSystemProxyEnabledRequest) (*emptypb.Empty, error) {
- err := s.handler.SetSystemProxyEnabled(request.Enabled)
- if err != nil {
- return nil, err
- }
- return nil, err
- }
- func (s *StartedService) SubscribeConnections(request *SubscribeConnectionsRequest, server grpc.ServerStreamingServer[ConnectionEvents]) error {
- err := s.waitForStarted(server.Context())
- if err != nil {
- return err
- }
- s.serviceAccess.RLock()
- boxService := s.instance
- s.serviceAccess.RUnlock()
- if boxService.clashServer == nil {
- return E.New("clash server not available")
- }
- trafficManager := boxService.clashServer.(*clashapi.Server).TrafficManager()
- subscription, done, err := s.connectionEventObserver.Subscribe()
- if err != nil {
- return err
- }
- defer s.connectionEventObserver.UnSubscribe(subscription)
- connectionSnapshots := make(map[uuid.UUID]connectionSnapshot)
- initialEvents := s.buildInitialConnectionState(trafficManager, connectionSnapshots)
- err = server.Send(&ConnectionEvents{
- Events: initialEvents,
- Reset_: true,
- })
- if err != nil {
- return err
- }
- interval := time.Duration(request.Interval)
- if interval <= 0 {
- interval = time.Second
- }
- ticker := time.NewTicker(interval)
- defer ticker.Stop()
- for {
- select {
- case <-s.ctx.Done():
- return s.ctx.Err()
- case <-server.Context().Done():
- return server.Context().Err()
- case <-done:
- return nil
- case event := <-subscription:
- var pendingEvents []*ConnectionEvent
- if protoEvent := s.applyConnectionEvent(event, connectionSnapshots); protoEvent != nil {
- pendingEvents = append(pendingEvents, protoEvent)
- }
- drain:
- for {
- select {
- case event = <-subscription:
- if protoEvent := s.applyConnectionEvent(event, connectionSnapshots); protoEvent != nil {
- pendingEvents = append(pendingEvents, protoEvent)
- }
- default:
- break drain
- }
- }
- if len(pendingEvents) > 0 {
- err = server.Send(&ConnectionEvents{Events: pendingEvents})
- if err != nil {
- return err
- }
- }
- case <-ticker.C:
- protoEvents := s.buildTrafficUpdates(trafficManager, connectionSnapshots)
- if len(protoEvents) == 0 {
- continue
- }
- err = server.Send(&ConnectionEvents{Events: protoEvents})
- if err != nil {
- return err
- }
- }
- }
- }
- type connectionSnapshot struct {
- uplink int64
- downlink int64
- hadTraffic bool
- }
- func (s *StartedService) buildInitialConnectionState(manager *trafficontrol.Manager, snapshots map[uuid.UUID]connectionSnapshot) []*ConnectionEvent {
- var events []*ConnectionEvent
- for _, metadata := range manager.Connections() {
- events = append(events, &ConnectionEvent{
- Type: ConnectionEventType_CONNECTION_EVENT_NEW,
- Id: metadata.ID.String(),
- Connection: buildConnectionProto(metadata),
- })
- snapshots[metadata.ID] = connectionSnapshot{
- uplink: metadata.Upload.Load(),
- downlink: metadata.Download.Load(),
- }
- }
- for _, metadata := range manager.ClosedConnections() {
- conn := buildConnectionProto(metadata)
- conn.ClosedAt = metadata.ClosedAt.UnixMilli()
- events = append(events, &ConnectionEvent{
- Type: ConnectionEventType_CONNECTION_EVENT_NEW,
- Id: metadata.ID.String(),
- Connection: conn,
- })
- }
- return events
- }
- func (s *StartedService) applyConnectionEvent(event trafficontrol.ConnectionEvent, snapshots map[uuid.UUID]connectionSnapshot) *ConnectionEvent {
- switch event.Type {
- case trafficontrol.ConnectionEventNew:
- if _, exists := snapshots[event.ID]; exists {
- return nil
- }
- snapshots[event.ID] = connectionSnapshot{
- uplink: event.Metadata.Upload.Load(),
- downlink: event.Metadata.Download.Load(),
- }
- return &ConnectionEvent{
- Type: ConnectionEventType_CONNECTION_EVENT_NEW,
- Id: event.ID.String(),
- Connection: buildConnectionProto(event.Metadata),
- }
- case trafficontrol.ConnectionEventClosed:
- delete(snapshots, event.ID)
- protoEvent := &ConnectionEvent{
- Type: ConnectionEventType_CONNECTION_EVENT_CLOSED,
- Id: event.ID.String(),
- }
- closedAt := event.ClosedAt
- if closedAt.IsZero() && !event.Metadata.ClosedAt.IsZero() {
- closedAt = event.Metadata.ClosedAt
- }
- if closedAt.IsZero() {
- closedAt = time.Now()
- }
- protoEvent.ClosedAt = closedAt.UnixMilli()
- if event.Metadata.ID != uuid.Nil {
- conn := buildConnectionProto(event.Metadata)
- conn.ClosedAt = protoEvent.ClosedAt
- protoEvent.Connection = conn
- }
- return protoEvent
- default:
- return nil
- }
- }
- func (s *StartedService) buildTrafficUpdates(manager *trafficontrol.Manager, snapshots map[uuid.UUID]connectionSnapshot) []*ConnectionEvent {
- activeConnections := manager.Connections()
- activeIndex := make(map[uuid.UUID]*trafficontrol.TrackerMetadata, len(activeConnections))
- var events []*ConnectionEvent
- for _, metadata := range activeConnections {
- activeIndex[metadata.ID] = metadata
- currentUpload := metadata.Upload.Load()
- currentDownload := metadata.Download.Load()
- snapshot, exists := snapshots[metadata.ID]
- if !exists {
- snapshots[metadata.ID] = connectionSnapshot{
- uplink: currentUpload,
- downlink: currentDownload,
- }
- events = append(events, &ConnectionEvent{
- Type: ConnectionEventType_CONNECTION_EVENT_NEW,
- Id: metadata.ID.String(),
- Connection: buildConnectionProto(metadata),
- })
- continue
- }
- uplinkDelta := currentUpload - snapshot.uplink
- downlinkDelta := currentDownload - snapshot.downlink
- if uplinkDelta < 0 || downlinkDelta < 0 {
- if snapshot.hadTraffic {
- events = append(events, &ConnectionEvent{
- Type: ConnectionEventType_CONNECTION_EVENT_UPDATE,
- Id: metadata.ID.String(),
- UplinkDelta: 0,
- DownlinkDelta: 0,
- })
- }
- snapshot.uplink = currentUpload
- snapshot.downlink = currentDownload
- snapshot.hadTraffic = false
- snapshots[metadata.ID] = snapshot
- continue
- }
- if uplinkDelta > 0 || downlinkDelta > 0 {
- snapshot.uplink = currentUpload
- snapshot.downlink = currentDownload
- snapshot.hadTraffic = true
- snapshots[metadata.ID] = snapshot
- events = append(events, &ConnectionEvent{
- Type: ConnectionEventType_CONNECTION_EVENT_UPDATE,
- Id: metadata.ID.String(),
- UplinkDelta: uplinkDelta,
- DownlinkDelta: downlinkDelta,
- })
- continue
- }
- if snapshot.hadTraffic {
- snapshot.uplink = currentUpload
- snapshot.downlink = currentDownload
- snapshot.hadTraffic = false
- snapshots[metadata.ID] = snapshot
- events = append(events, &ConnectionEvent{
- Type: ConnectionEventType_CONNECTION_EVENT_UPDATE,
- Id: metadata.ID.String(),
- UplinkDelta: 0,
- DownlinkDelta: 0,
- })
- }
- }
- var closedIndex map[uuid.UUID]*trafficontrol.TrackerMetadata
- for id := range snapshots {
- if _, exists := activeIndex[id]; exists {
- continue
- }
- if closedIndex == nil {
- closedIndex = make(map[uuid.UUID]*trafficontrol.TrackerMetadata)
- for _, metadata := range manager.ClosedConnections() {
- closedIndex[metadata.ID] = metadata
- }
- }
- closedAt := time.Now()
- var conn *Connection
- if metadata, ok := closedIndex[id]; ok {
- if !metadata.ClosedAt.IsZero() {
- closedAt = metadata.ClosedAt
- }
- conn = buildConnectionProto(metadata)
- conn.ClosedAt = closedAt.UnixMilli()
- }
- events = append(events, &ConnectionEvent{
- Type: ConnectionEventType_CONNECTION_EVENT_CLOSED,
- Id: id.String(),
- ClosedAt: closedAt.UnixMilli(),
- Connection: conn,
- })
- delete(snapshots, id)
- }
- return events
- }
- func buildConnectionProto(metadata *trafficontrol.TrackerMetadata) *Connection {
- var rule string
- if metadata.Rule != nil {
- rule = metadata.Rule.String()
- }
- uplinkTotal := metadata.Upload.Load()
- downlinkTotal := metadata.Download.Load()
- var processInfo *ProcessInfo
- if metadata.Metadata.ProcessInfo != nil {
- processInfo = &ProcessInfo{
- ProcessId: metadata.Metadata.ProcessInfo.ProcessID,
- UserId: metadata.Metadata.ProcessInfo.UserId,
- UserName: metadata.Metadata.ProcessInfo.UserName,
- ProcessPath: metadata.Metadata.ProcessInfo.ProcessPath,
- PackageNames: metadata.Metadata.ProcessInfo.AndroidPackageNames,
- }
- }
- return &Connection{
- Id: metadata.ID.String(),
- Inbound: metadata.Metadata.Inbound,
- InboundType: metadata.Metadata.InboundType,
- IpVersion: int32(metadata.Metadata.IPVersion),
- Network: metadata.Metadata.Network,
- Source: metadata.Metadata.Source.String(),
- Destination: metadata.Metadata.Destination.String(),
- Domain: metadata.Metadata.Domain,
- Protocol: metadata.Metadata.Protocol,
- User: metadata.Metadata.User,
- FromOutbound: metadata.Metadata.Outbound,
- CreatedAt: metadata.CreatedAt.UnixMilli(),
- UplinkTotal: uplinkTotal,
- DownlinkTotal: downlinkTotal,
- Rule: rule,
- Outbound: metadata.Outbound,
- OutboundType: metadata.OutboundType,
- ChainList: metadata.Chain,
- ProcessInfo: processInfo,
- }
- }
- func (s *StartedService) CloseConnection(ctx context.Context, request *CloseConnectionRequest) (*emptypb.Empty, error) {
- s.serviceAccess.RLock()
- switch s.serviceStatus.Status {
- case ServiceStatus_STARTING, ServiceStatus_STARTED:
- default:
- s.serviceAccess.RUnlock()
- return nil, os.ErrInvalid
- }
- boxService := s.instance
- s.serviceAccess.RUnlock()
- targetConn := boxService.clashServer.(*clashapi.Server).TrafficManager().Connection(uuid.FromStringOrNil(request.Id))
- if targetConn != nil {
- targetConn.Close()
- }
- return &emptypb.Empty{}, nil
- }
- func (s *StartedService) CloseAllConnections(ctx context.Context, empty *emptypb.Empty) (*emptypb.Empty, error) {
- s.serviceAccess.RLock()
- nowService := s.instance
- s.serviceAccess.RUnlock()
- if nowService != nil && nowService.connectionManager != nil {
- nowService.connectionManager.CloseAll()
- }
- return &emptypb.Empty{}, nil
- }
- func (s *StartedService) GetDeprecatedWarnings(ctx context.Context, empty *emptypb.Empty) (*DeprecatedWarnings, error) {
- s.serviceAccess.RLock()
- if s.serviceStatus.Status != ServiceStatus_STARTED {
- s.serviceAccess.RUnlock()
- return nil, os.ErrInvalid
- }
- boxService := s.instance
- s.serviceAccess.RUnlock()
- notes := service.FromContext[deprecated.Manager](boxService.ctx).(*deprecatedManager).Get()
- return &DeprecatedWarnings{
- Warnings: common.Map(notes, func(it deprecated.Note) *DeprecatedWarning {
- return &DeprecatedWarning{
- Message: it.Message(),
- Impending: it.Impending(),
- MigrationLink: it.MigrationLink,
- }
- }),
- }, nil
- }
- func (s *StartedService) GetStartedAt(ctx context.Context, empty *emptypb.Empty) (*StartedAt, error) {
- s.serviceAccess.RLock()
- defer s.serviceAccess.RUnlock()
- return &StartedAt{StartedAt: s.startedAt.UnixMilli()}, nil
- }
- func (s *StartedService) mustEmbedUnimplementedStartedServiceServer() {
- }
- func (s *StartedService) WriteMessage(level log.Level, message string) {
- item := &log.Entry{Level: level, Message: message}
- s.logAccess.Lock()
- s.logLines.PushBack(item)
- if s.logLines.Len() > s.logMaxLines {
- s.logLines.Remove(s.logLines.Front())
- }
- s.logAccess.Unlock()
- s.logSubscriber.Emit(item)
- if s.debug {
- s.handler.WriteDebugMessage(message)
- }
- }
- func (s *StartedService) Instance() *Instance {
- s.serviceAccess.RLock()
- defer s.serviceAccess.RUnlock()
- return s.instance
- }
|