frp/server/visitor/visitor.go

107 lines
2.6 KiB
Go
Raw Normal View History

2019-01-14 23:11:08 +07:00
// Copyright 2019 fatedier, fatedier@gmail.com
2017-03-23 01:01:25 +07:00
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
2020-05-24 10:28:57 +07:00
package visitor
2017-03-09 01:03:47 +07:00
import (
"fmt"
2017-06-26 02:02:33 +07:00
"io"
2019-10-12 19:13:12 +07:00
"net"
2024-02-20 11:01:41 +07:00
"slices"
2017-03-09 01:03:47 +07:00
"sync"
2017-06-26 02:02:33 +07:00
2023-05-29 13:10:34 +07:00
libio "github.com/fatedier/golib/io"
2022-08-29 00:02:53 +07:00
2023-11-27 14:47:49 +07:00
netpkg "github.com/fatedier/frp/pkg/util/net"
2020-09-23 12:49:14 +07:00
"github.com/fatedier/frp/pkg/util/util"
2017-03-09 01:03:47 +07:00
)
type listenerBundle struct {
2023-11-27 14:47:49 +07:00
l *netpkg.InternalListener
sk string
allowUsers []string
}
2017-12-05 00:34:33 +07:00
// Manager for visitor listeners.
2020-05-24 16:48:37 +07:00
type Manager struct {
listeners map[string]*listenerBundle
2017-06-26 02:02:33 +07:00
mu sync.RWMutex
}
2020-05-24 16:48:37 +07:00
func NewManager() *Manager {
return &Manager{
listeners: make(map[string]*listenerBundle),
2017-06-26 02:02:33 +07:00
}
}
2023-11-27 14:47:49 +07:00
func (vm *Manager) Listen(name string, sk string, allowUsers []string) (*netpkg.InternalListener, error) {
2017-06-26 02:02:33 +07:00
vm.mu.Lock()
defer vm.mu.Unlock()
if _, ok := vm.listeners[name]; ok {
2023-11-27 14:47:49 +07:00
return nil, fmt.Errorf("custom listener for [%s] is repeated", name)
2017-06-26 02:02:33 +07:00
}
2023-11-27 14:47:49 +07:00
l := netpkg.NewInternalListener()
vm.listeners[name] = &listenerBundle{
l: l,
sk: sk,
allowUsers: allowUsers,
}
2023-11-27 14:47:49 +07:00
return l, nil
2017-06-26 02:02:33 +07:00
}
2020-05-24 16:48:37 +07:00
func (vm *Manager) NewConn(name string, conn net.Conn, timestamp int64, signKey string,
useEncryption bool, useCompression bool, visitorUser string,
2022-08-29 00:02:53 +07:00
) (err error) {
2017-06-26 02:02:33 +07:00
vm.mu.RLock()
defer vm.mu.RUnlock()
if l, ok := vm.listeners[name]; ok {
if util.GetAuthKey(l.sk, timestamp) != signKey {
2017-12-05 00:34:33 +07:00
err = fmt.Errorf("visitor connection of [%s] auth failed", name)
2017-06-26 02:02:33 +07:00
return
}
2024-02-20 11:01:41 +07:00
if !slices.Contains(l.allowUsers, visitorUser) && !slices.Contains(l.allowUsers, "*") {
err = fmt.Errorf("visitor connection of [%s] user [%s] not allowed", name, visitorUser)
return
}
2017-06-26 02:02:33 +07:00
var rwc io.ReadWriteCloser = conn
if useEncryption {
if rwc, err = libio.WithEncryption(rwc, []byte(l.sk)); err != nil {
2017-06-26 02:02:33 +07:00
err = fmt.Errorf("create encryption connection failed: %v", err)
return
}
}
if useCompression {
2023-05-29 13:10:34 +07:00
rwc = libio.WithCompression(rwc)
2017-06-26 02:02:33 +07:00
}
2023-11-27 14:47:49 +07:00
err = l.l.PutConn(netpkg.WrapReadWriteCloserToConn(rwc, conn))
2017-06-26 02:02:33 +07:00
} else {
err = fmt.Errorf("custom listener for [%s] doesn't exist", name)
return
}
return
}
2020-05-24 16:48:37 +07:00
func (vm *Manager) CloseListener(name string) {
2017-06-26 02:02:33 +07:00
vm.mu.Lock()
defer vm.mu.Unlock()
delete(vm.listeners, name)
2017-06-26 02:02:33 +07:00
}