chore: support skip the same config Listeners' Close and Listen

This commit is contained in:
gVisor bot 2022-12-04 17:20:24 +08:00
parent 1bcd6cac83
commit e01cfc5627
9 changed files with 94 additions and 32 deletions

View File

@ -20,4 +20,5 @@ type NewListener interface {
Close() error
Address() string
RawAddress() string
Config() string
}

View File

@ -138,13 +138,25 @@ func GetGeneral() *config.General {
func updateListeners(listeners map[string]C.NewListener) {
tcpIn := tunnel.TCPIn()
udpIn := tunnel.UDPIn()
for _, listener := range tunnel.Listeners() {
_ = listener.Close()
skipNames := map[string]struct{}{}
for name, oldListener := range tunnel.Listeners() {
if newListener, ok := listeners[name]; ok {
if newListener.Config() == oldListener.Config() {
listeners[name] = oldListener
skipNames[name] = struct{}{}
continue
}
}
_ = oldListener.Close()
}
for _, listener := range listeners {
if err := listener.Listen(tcpIn, udpIn); err != nil {
log.Errorln("Listener %s listen err: %s", listener.Name(), err.Error())
for name, newListener := range listeners {
if _, ok := skipNames[name]; ok {
continue
}
if err := newListener.Listen(tcpIn, udpIn); err != nil {
log.Errorln("Listener %s listen err: %s", newListener.Name(), err.Error())
}
}
tunnel.UpdateListeners(listeners)

View File

@ -1,6 +1,7 @@
package inbound
import (
"encoding/json"
"net"
"net/netip"
"strconv"
@ -9,6 +10,7 @@ import (
)
type Base struct {
config *BaseOption
name string
preferRulesName string
listenAddr netip.Addr
@ -28,9 +30,15 @@ func NewBase(options *BaseOption) (*Base, error) {
listenAddr: addr,
preferRulesName: options.PreferRulesName,
port: options.Port,
config: options,
}, nil
}
// Config implements constant.NewListener
func (b *Base) Config() string {
return optionToString(b.config)
}
// Address implements constant.NewListener
func (b *Base) Address() string {
return b.RawAddress()
@ -51,7 +59,7 @@ func (b *Base) RawAddress() string {
return net.JoinHostPort(b.listenAddr.String(), strconv.Itoa(int(b.port)))
}
// ReCreate implements constant.NewListener
// Listen implements constant.NewListener
func (*Base) Listen(tcpIn chan<- C.ConnContext, udpIn chan<- C.PacketAdapter) error {
return nil
}
@ -64,3 +72,8 @@ type BaseOption struct {
}
var _ C.NewListener = (*Base)(nil)
func optionToString(option any) string {
str, _ := json.Marshal(option)
return string(str)
}

View File

@ -11,6 +11,7 @@ type HTTPOption struct {
}
type HTTP struct {
*Base
config *HTTPOption
l *http.Listener
}
@ -21,15 +22,21 @@ func NewHTTP(options *HTTPOption) (*HTTP, error) {
}
return &HTTP{
Base: base,
config: options,
}, nil
}
// Config implements constant.NewListener
func (h *HTTP) Config() string {
return optionToString(h.config)
}
// Address implements constant.NewListener
func (h *HTTP) Address() string {
return h.l.Address()
}
// ReCreate implements constant.NewListener
// Listen implements constant.NewListener
func (h *HTTP) Listen(tcpIn chan<- C.ConnContext, udpIn chan<- C.PacketAdapter) error {
var err error
h.l, err = http.NewWithInfos(h.RawAddress(), h.name, h.preferRulesName, tcpIn)

View File

@ -17,6 +17,7 @@ type MixedOption struct {
type Mixed struct {
*Base
config *MixedOption
l *mixed.Listener
lUDP *socks.UDPListener
udp bool
@ -29,16 +30,22 @@ func NewMixed(options *MixedOption) (*Mixed, error) {
}
return &Mixed{
Base: base,
config: options,
udp: options.UDP == nil || *options.UDP,
}, nil
}
// Config implements constant.NewListener
func (m *Mixed) Config() string {
return optionToString(m.config)
}
// Address implements constant.NewListener
func (m *Mixed) Address() string {
return m.l.Address()
}
// ReCreate implements constant.NewListener
// Listen implements constant.NewListener
func (m *Mixed) Listen(tcpIn chan<- C.ConnContext, udpIn chan<- C.PacketAdapter) error {
var err error
m.l, err = mixed.NewWithInfos(m.RawAddress(), m.name, m.preferRulesName, tcpIn)

View File

@ -12,6 +12,7 @@ type RedirOption struct {
type Redir struct {
*Base
config *RedirOption
l *redir.Listener
}
@ -22,15 +23,21 @@ func NewRedir(options *RedirOption) (*Redir, error) {
}
return &Redir{
Base: base,
config: options,
}, nil
}
// Config implements constant.NewListener
func (r *Redir) Config() string {
return optionToString(r.config)
}
// Address implements constant.NewListener
func (r *Redir) Address() string {
return r.l.Address()
}
// ReCreate implements constant.NewListener
// Listen implements constant.NewListener
func (r *Redir) Listen(tcpIn chan<- C.ConnContext, udpIn chan<- C.PacketAdapter) error {
var err error
r.l, err = redir.NewWithInfos(r.Address(), r.name, r.preferRulesName, tcpIn)

View File

@ -14,6 +14,7 @@ type SocksOption struct {
type Socks struct {
*Base
config *SocksOption
udp bool
stl *socks.Listener
sul *socks.UDPListener
@ -26,10 +27,16 @@ func NewSocks(options *SocksOption) (*Socks, error) {
}
return &Socks{
Base: base,
config: options,
udp: options.UDP == nil || *options.UDP,
}, nil
}
// Config implements constant.NewListener
func (s *Socks) Config() string {
return optionToString(s.config)
}
// Close implements constant.NewListener
func (s *Socks) Close() error {
var err error
@ -56,7 +63,7 @@ func (s *Socks) Address() string {
return s.stl.Address()
}
// ReCreate implements constant.NewListener
// Listen implements constant.NewListener
func (s *Socks) Listen(tcpIn chan<- C.ConnContext, udpIn chan<- C.PacketAdapter) error {
var err error
if s.stl, err = socks.NewWithInfos(s.RawAddress(), s.name, s.preferRulesName, tcpIn); err != nil {

View File

@ -15,6 +15,7 @@ type TProxyOption struct {
type TProxy struct {
*Base
config *TProxyOption
lUDP *tproxy.UDPListener
lTCP *tproxy.Listener
udp bool
@ -27,17 +28,23 @@ func NewTProxy(options *TProxyOption) (*TProxy, error) {
}
return &TProxy{
Base: base,
config: options,
udp: options.UDP == nil || *options.UDP,
}, nil
}
// Config implements constant.NewListener
func (t *TProxy) Config() string {
return optionToString(t.config)
}
// Address implements constant.NewListener
func (t *TProxy) Address() string {
return t.lTCP.Address()
}
// ReCreate implements constant.NewListener
// Listen implements constant.NewListener
func (t *TProxy) Listen(tcpIn chan<- C.ConnContext, udpIn chan<- C.PacketAdapter) error {
var err error
t.lTCP, err = tproxy.NewWithInfos(t.RawAddress(), t.name, t.preferRulesName, tcpIn)

View File

@ -90,6 +90,7 @@ func Rules() []C.Rule {
func Listeners() map[string]C.NewListener {
return listeners
}
// UpdateRules handle update rules
func UpdateRules(newRules []C.Rule, newSubRule map[string][]C.Rule, rp map[string]provider.RuleProvider) {
configMux.Lock()