| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255 |
- package libbox
- import (
- "context"
- "net"
- "os"
- "path/filepath"
- "strconv"
- "time"
- "github.com/sagernet/sing-box/adapter"
- C "github.com/sagernet/sing-box/constant"
- "github.com/sagernet/sing-box/daemon"
- "github.com/sagernet/sing-box/log"
- "github.com/sagernet/sing/common"
- E "github.com/sagernet/sing/common/exceptions"
- "github.com/sagernet/sing/service"
- "google.golang.org/grpc"
- "google.golang.org/grpc/codes"
- "google.golang.org/grpc/metadata"
- "google.golang.org/grpc/status"
- )
- type CommandServer struct {
- *daemon.StartedService
- handler CommandServerHandler
- platformInterface PlatformInterface
- platformWrapper *platformInterfaceWrapper
- grpcServer *grpc.Server
- listener net.Listener
- endPauseTimer *time.Timer
- }
- type CommandServerHandler interface {
- ServiceStop() error
- ServiceReload() error
- GetSystemProxyStatus() (*SystemProxyStatus, error)
- SetSystemProxyEnabled(enabled bool) error
- WriteDebugMessage(message string)
- }
- func NewCommandServer(handler CommandServerHandler, platformInterface PlatformInterface) (*CommandServer, error) {
- ctx := BaseContext(platformInterface)
- platformWrapper := &platformInterfaceWrapper{
- iif: platformInterface,
- useProcFS: platformInterface.UseProcFS(),
- }
- service.MustRegister[adapter.PlatformInterface](ctx, platformWrapper)
- server := &CommandServer{
- handler: handler,
- platformInterface: platformInterface,
- platformWrapper: platformWrapper,
- }
- server.StartedService = daemon.NewStartedService(daemon.ServiceOptions{
- Context: ctx,
- // Platform: platformWrapper,
- Handler: (*platformHandler)(server),
- Debug: sDebug,
- LogMaxLines: sLogMaxLines,
- // WorkingDirectory: sWorkingPath,
- // TempDirectory: sTempPath,
- // UserID: sUserID,
- // GroupID: sGroupID,
- // SystemProxyEnabled: false,
- })
- return server, nil
- }
- func unaryAuthInterceptor(ctx context.Context, req any, info *grpc.UnaryServerInfo, handler grpc.UnaryHandler) (any, error) {
- if sCommandServerSecret == "" {
- return handler(ctx, req)
- }
- md, ok := metadata.FromIncomingContext(ctx)
- if !ok {
- return nil, status.Error(codes.Unauthenticated, "missing metadata")
- }
- values := md.Get("x-command-secret")
- if len(values) == 0 {
- return nil, status.Error(codes.Unauthenticated, "missing authentication secret")
- }
- if values[0] != sCommandServerSecret {
- return nil, status.Error(codes.Unauthenticated, "invalid authentication secret")
- }
- return handler(ctx, req)
- }
- func streamAuthInterceptor(srv any, ss grpc.ServerStream, info *grpc.StreamServerInfo, handler grpc.StreamHandler) error {
- if sCommandServerSecret == "" {
- return handler(srv, ss)
- }
- md, ok := metadata.FromIncomingContext(ss.Context())
- if !ok {
- return status.Error(codes.Unauthenticated, "missing metadata")
- }
- values := md.Get("x-command-secret")
- if len(values) == 0 {
- return status.Error(codes.Unauthenticated, "missing authentication secret")
- }
- if values[0] != sCommandServerSecret {
- return status.Error(codes.Unauthenticated, "invalid authentication secret")
- }
- return handler(srv, ss)
- }
- func (s *CommandServer) Start() error {
- var (
- listener net.Listener
- err error
- )
- if sCommandServerListenPort == 0 {
- sockPath := filepath.Join(sBasePath, "command.sock")
- os.Remove(sockPath)
- listener, err = net.ListenUnix("unix", &net.UnixAddr{
- Name: sockPath,
- Net: "unix",
- })
- if err != nil {
- return E.Cause(err, "listen command server")
- }
- if sUserID != os.Getuid() {
- err = os.Chown(sockPath, sUserID, sGroupID)
- if err != nil {
- listener.Close()
- os.Remove(sockPath)
- return E.Cause(err, "chown")
- }
- }
- } else {
- listener, err = net.Listen("tcp", net.JoinHostPort("127.0.0.1", strconv.Itoa(int(sCommandServerListenPort))))
- if err != nil {
- return E.Cause(err, "listen command server")
- }
- }
- s.listener = listener
- serverOptions := []grpc.ServerOption{
- grpc.UnaryInterceptor(unaryAuthInterceptor),
- grpc.StreamInterceptor(streamAuthInterceptor),
- }
- s.grpcServer = grpc.NewServer(serverOptions...)
- daemon.RegisterStartedServiceServer(s.grpcServer, s.StartedService)
- go s.grpcServer.Serve(listener)
- return nil
- }
- func (s *CommandServer) Close() {
- if s.grpcServer != nil {
- s.grpcServer.Stop()
- }
- common.Close(s.listener)
- }
- type OverrideOptions struct {
- AutoRedirect bool
- IncludePackage StringIterator
- ExcludePackage StringIterator
- }
- func (s *CommandServer) StartOrReloadService(configContent string, options *OverrideOptions) error {
- return s.StartedService.StartOrReloadService(configContent, &daemon.OverrideOptions{
- AutoRedirect: options.AutoRedirect,
- IncludePackage: iteratorToArray(options.IncludePackage),
- ExcludePackage: iteratorToArray(options.ExcludePackage),
- })
- }
- func (s *CommandServer) CloseService() error {
- return s.StartedService.CloseService()
- }
- func (s *CommandServer) WriteMessage(level int32, message string) {
- s.StartedService.WriteMessage(log.Level(level), message)
- }
- func (s *CommandServer) SetError(message string) {
- s.StartedService.SetError(E.New(message))
- }
- func (s *CommandServer) NeedWIFIState() bool {
- instance := s.StartedService.Instance()
- if instance == nil || instance.Box() == nil {
- return false
- }
- return instance.Box().Router().NeedWIFIState()
- }
- func (s *CommandServer) Pause() {
- instance := s.StartedService.Instance()
- if instance == nil || instance.PauseManager() == nil {
- return
- }
- instance.PauseManager().DevicePause()
- if C.IsIos {
- if s.endPauseTimer == nil {
- s.endPauseTimer = time.AfterFunc(time.Minute, instance.PauseManager().DeviceWake)
- } else {
- s.endPauseTimer.Reset(time.Minute)
- }
- }
- }
- func (s *CommandServer) Wake() {
- instance := s.StartedService.Instance()
- if instance == nil || instance.PauseManager() == nil {
- return
- }
- if !C.IsIos {
- instance.PauseManager().DeviceWake()
- }
- }
- func (s *CommandServer) ResetNetwork() {
- instance := s.StartedService.Instance()
- if instance == nil || instance.Box() == nil {
- return
- }
- instance.Box().Router().ResetNetwork()
- }
- func (s *CommandServer) UpdateWIFIState() {
- instance := s.StartedService.Instance()
- if instance == nil || instance.Box() == nil {
- return
- }
- instance.Box().Network().UpdateWIFIState()
- }
- type platformHandler CommandServer
- func (h *platformHandler) ServiceStop() error {
- return (*CommandServer)(h).handler.ServiceStop()
- }
- func (h *platformHandler) ServiceReload() error {
- return (*CommandServer)(h).handler.ServiceReload()
- }
- func (h *platformHandler) SystemProxyStatus() (*daemon.SystemProxyStatus, error) {
- status, err := (*CommandServer)(h).handler.GetSystemProxyStatus()
- if err != nil {
- return nil, err
- }
- return &daemon.SystemProxyStatus{
- Enabled: status.Enabled,
- Available: status.Available,
- }, nil
- }
- func (h *platformHandler) SetSystemProxyEnabled(enabled bool) error {
- return (*CommandServer)(h).handler.SetSystemProxyEnabled(enabled)
- }
- func (h *platformHandler) WriteDebugMessage(message string) {
- (*CommandServer)(h).handler.WriteDebugMessage(message)
- }
|