Skip to content

Commit

Permalink
fix the issue of duplicate xtcp proxies will cause the previous proxy…
Browse files Browse the repository at this point in the history
… to become ineffective (fatedier#3489)
  • Loading branch information
fatedier authored Jun 15, 2023
1 parent e1cef05 commit 15a2457
Show file tree
Hide file tree
Showing 5 changed files with 24 additions and 7 deletions.
8 changes: 5 additions & 3 deletions pkg/nathole/controller.go
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ func (c *Controller) CleanWorker(ctx context.Context) {
}
}

func (c *Controller) ListenClient(name string, sk string, allowUsers []string) chan string {
func (c *Controller) ListenClient(name string, sk string, allowUsers []string) (chan string, error) {
cfg := &ClientCfg{
name: name,
sk: sk,
Expand All @@ -130,9 +130,11 @@ func (c *Controller) ListenClient(name string, sk string, allowUsers []string) c
}
c.mu.Lock()
defer c.mu.Unlock()
// TODO(fatedier): return error if name already exists
if _, ok := c.clientCfgs[name]; ok {
return nil, fmt.Errorf("proxy [%s] is repeated", name)
}
c.clientCfgs[name] = cfg
return cfg.sidCh
return cfg.sidCh, nil
}

func (c *Controller) CloseClient(name string) {
Expand Down
5 changes: 5 additions & 0 deletions server/control.go
Original file line number Diff line number Diff line change
Expand Up @@ -577,6 +577,11 @@ func (ctl *Control) RegisterProxy(pxyMsg *msg.NewProxy) (remoteAddr string, err
}()
}

if ctl.pxyManager.Exist(pxyMsg.ProxyName) {
err = fmt.Errorf("proxy [%s] already exists", pxyMsg.ProxyName)
return
}

remoteAddr, err = pxy.Run()
if err != nil {
return
Expand Down
7 changes: 7 additions & 0 deletions server/proxy/proxy.go
Original file line number Diff line number Diff line change
Expand Up @@ -324,6 +324,13 @@ func (pm *Manager) Add(name string, pxy Proxy) error {
return nil
}

func (pm *Manager) Exist(name string) bool {
pm.mu.RLock()
defer pm.mu.RUnlock()
_, ok := pm.pxys[name]
return ok
}

func (pm *Manager) Del(name string) {
pm.mu.Lock()
defer pm.mu.Unlock()
Expand Down
5 changes: 4 additions & 1 deletion server/proxy/xtcp.go
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,10 @@ func (pxy *XTCPProxy) Run() (remoteAddr string, err error) {
if len(allowUsers) == 0 {
allowUsers = []string{pxy.GetUserInfo().User}
}
sidCh := pxy.rc.NatHoleController.ListenClient(pxy.GetName(), pxy.cfg.Sk, allowUsers)
sidCh, err := pxy.rc.NatHoleController.ListenClient(pxy.GetName(), pxy.cfg.Sk, allowUsers)
if err != nil {
return "", err
}
go func() {
for {
select {
Expand Down
6 changes: 3 additions & 3 deletions test/e2e/basic/server.go
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ var _ = ginkgo.Describe("[Feature: Server Manager]", func() {
[tcp-port-not-allowed]
type = tcp
local_port = {{ .%s }}
remote_port = 20001
remote_port = 25001
`, framework.TCPEchoServerPort)
clientConf += fmt.Sprintf(`
[tcp-port-unavailable]
Expand All @@ -55,7 +55,7 @@ var _ = ginkgo.Describe("[Feature: Server Manager]", func() {
[udp-port-not-allowed]
type = udp
local_port = {{ .%s }}
remote_port = 20003
remote_port = 25003
`, framework.UDPEchoServerPort)

f.RunProcesses([]string{serverConf}, []string{clientConf})
Expand All @@ -65,7 +65,7 @@ var _ = ginkgo.Describe("[Feature: Server Manager]", func() {
framework.NewRequestExpect(f).PortName(tcpPortName).Ensure()

// Not Allowed
framework.NewRequestExpect(f).Port(25003).ExpectError(true).Ensure()
framework.NewRequestExpect(f).Port(25001).ExpectError(true).Ensure()

// Unavailable, already bind by frps
framework.NewRequestExpect(f).PortName(consts.PortServerName).ExpectError(true).Ensure()
Expand Down

0 comments on commit 15a2457

Please sign in to comment.