123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149 |
- package inbound
- import (
- "context"
- "os"
- "sync"
- "github.com/sagernet/sing-box/adapter"
- "github.com/sagernet/sing-box/common/taskmonitor"
- C "github.com/sagernet/sing-box/constant"
- "github.com/sagernet/sing-box/log"
- "github.com/sagernet/sing/common"
- E "github.com/sagernet/sing/common/exceptions"
- )
- var _ adapter.InboundManager = (*Manager)(nil)
- type Manager struct {
- logger log.ContextLogger
- registry adapter.InboundRegistry
- endpoint adapter.EndpointManager
- access sync.Mutex
- started bool
- stage adapter.StartStage
- inbounds []adapter.Inbound
- inboundByTag map[string]adapter.Inbound
- }
- func NewManager(logger log.ContextLogger, registry adapter.InboundRegistry, endpoint adapter.EndpointManager) *Manager {
- return &Manager{
- logger: logger,
- registry: registry,
- endpoint: endpoint,
- inboundByTag: make(map[string]adapter.Inbound),
- }
- }
- func (m *Manager) Start(stage adapter.StartStage) error {
- m.access.Lock()
- if m.started && m.stage >= stage {
- panic("already started")
- }
- m.started = true
- m.stage = stage
- inbounds := m.inbounds
- m.access.Unlock()
- for _, inbound := range inbounds {
- err := adapter.LegacyStart(inbound, stage)
- if err != nil {
- return E.Cause(err, stage, " inbound/", inbound.Type(), "[", inbound.Tag(), "]")
- }
- }
- return nil
- }
- func (m *Manager) Close() error {
- m.access.Lock()
- defer m.access.Unlock()
- if !m.started {
- return nil
- }
- m.started = false
- inbounds := m.inbounds
- m.inbounds = nil
- monitor := taskmonitor.New(m.logger, C.StopTimeout)
- var err error
- for _, inbound := range inbounds {
- monitor.Start("close inbound/", inbound.Type(), "[", inbound.Tag(), "]")
- err = E.Append(err, inbound.Close(), func(err error) error {
- return E.Cause(err, "close inbound/", inbound.Type(), "[", inbound.Tag(), "]")
- })
- monitor.Finish()
- }
- return nil
- }
- func (m *Manager) Inbounds() []adapter.Inbound {
- m.access.Lock()
- defer m.access.Unlock()
- return m.inbounds
- }
- func (m *Manager) Get(tag string) (adapter.Inbound, bool) {
- m.access.Lock()
- inbound, found := m.inboundByTag[tag]
- m.access.Unlock()
- if found {
- return inbound, true
- }
- return m.endpoint.Get(tag)
- }
- func (m *Manager) Remove(tag string) error {
- m.access.Lock()
- inbound, found := m.inboundByTag[tag]
- if !found {
- m.access.Unlock()
- return os.ErrInvalid
- }
- delete(m.inboundByTag, tag)
- index := common.Index(m.inbounds, func(it adapter.Inbound) bool {
- return it == inbound
- })
- if index == -1 {
- panic("invalid inbound index")
- }
- m.inbounds = append(m.inbounds[:index], m.inbounds[index+1:]...)
- started := m.started
- m.access.Unlock()
- if started {
- return inbound.Close()
- }
- return nil
- }
- func (m *Manager) Create(ctx context.Context, router adapter.Router, logger log.ContextLogger, tag string, outboundType string, options any) error {
- inbound, err := m.registry.Create(ctx, router, logger, tag, outboundType, options)
- if err != nil {
- return err
- }
- m.access.Lock()
- defer m.access.Unlock()
- if m.started {
- for _, stage := range adapter.ListStartStages {
- err = adapter.LegacyStart(inbound, stage)
- if err != nil {
- return E.Cause(err, stage, " inbound/", inbound.Type(), "[", inbound.Tag(), "]")
- }
- }
- }
- if existsInbound, loaded := m.inboundByTag[tag]; loaded {
- if m.started {
- err = existsInbound.Close()
- if err != nil {
- return E.Cause(err, "close inbound/", existsInbound.Type(), "[", existsInbound.Tag(), "]")
- }
- }
- existsIndex := common.Index(m.inbounds, func(it adapter.Inbound) bool {
- return it == existsInbound
- })
- if existsIndex == -1 {
- panic("invalid inbound index")
- }
- m.inbounds = append(m.inbounds[:existsIndex], m.inbounds[existsIndex+1:]...)
- }
- m.inbounds = append(m.inbounds, inbound)
- m.inboundByTag[tag] = inbound
- return nil
- }
|