Skip to content

Commit c0de3c0

Browse files
committed
fix: some default value in dialer not restore in tun when config reload
1 parent 4bd3ae5 commit c0de3c0

File tree

2 files changed

+17
-2
lines changed

2 files changed

+17
-2
lines changed

listener/listener.go

+3
Original file line numberDiff line numberDiff line change
@@ -512,6 +512,9 @@ func ReCreateTun(tunConf LC.Tun, tunnel C.Tunnel) {
512512
}()
513513

514514
if tunConf.Equal(LastTunConf) {
515+
if tunLister != nil { // some default value in dialer maybe changed when config reload, reset at here
516+
tunLister.OnReload()
517+
}
515518
return
516519
}
517520

listener/sing_tun/server.go

+14-2
Original file line numberDiff line numberDiff line change
@@ -307,7 +307,7 @@ func New(options LC.Tun, tunnel C.Tunnel, additions ...inbound.Addition) (l *Lis
307307
defaultInterfaceMonitor: defaultInterfaceMonitor,
308308
}
309309
if !dialer.DefaultInterfaceFinder.CompareAndSwap(nil, l.cDialerInterfaceFinder) {
310-
err = E.New("don't allowed two tun listener using auto-detect-interface")
310+
err = E.New("not allowed two tun listener using auto-detect-interface")
311311
return
312312
}
313313
}
@@ -450,7 +450,10 @@ func New(options LC.Tun, tunnel C.Tunnel, additions ...inbound.Addition) (l *Lis
450450
}
451451
if tunOptions.AutoRedirectMarkMode {
452452
l.autoRedirectOutputMark = int32(outputMark)
453-
dialer.DefaultRoutingMark.Store(l.autoRedirectOutputMark)
453+
if !dialer.DefaultRoutingMark.CompareAndSwap(0, l.autoRedirectOutputMark) {
454+
err = E.New("not allowed setting global routing-mark when working with autoRedirectMarkMode")
455+
return
456+
}
454457
l.autoRedirect.UpdateRouteAddressSet()
455458
l.ruleUpdateCallbackCloser = rpTunnel.RuleUpdateCallback().Register(l.ruleUpdateCallback)
456459
}
@@ -517,6 +520,15 @@ func (l *Listener) updateRule(ruleProvider provider.RuleProvider, exclude bool,
517520
}
518521
}
519522

523+
func (l *Listener) OnReload() {
524+
if l.autoRedirectOutputMark != 0 {
525+
dialer.DefaultRoutingMark.CompareAndSwap(0, l.autoRedirectOutputMark)
526+
}
527+
if l.cDialerInterfaceFinder != nil {
528+
dialer.DefaultInterfaceFinder.CompareAndSwap(nil, l.cDialerInterfaceFinder)
529+
}
530+
}
531+
520532
type cDialerInterfaceFinder struct {
521533
tunName string
522534
defaultInterfaceMonitor tun.DefaultInterfaceMonitor

0 commit comments

Comments
 (0)