123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106 |
- // Copyright 2019 fatedier, fatedier@gmail.com
- //
- // 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.
- package visitor
- import (
- "fmt"
- "io"
- "net"
- "slices"
- "sync"
- libio "github.com/fatedier/golib/io"
- netpkg "github.com/fatedier/frp/pkg/util/net"
- "github.com/fatedier/frp/pkg/util/util"
- )
- type listenerBundle struct {
- l *netpkg.InternalListener
- sk string
- allowUsers []string
- }
- // Manager for visitor listeners.
- type Manager struct {
- listeners map[string]*listenerBundle
- mu sync.RWMutex
- }
- func NewManager() *Manager {
- return &Manager{
- listeners: make(map[string]*listenerBundle),
- }
- }
- func (vm *Manager) Listen(name string, sk string, allowUsers []string) (*netpkg.InternalListener, error) {
- vm.mu.Lock()
- defer vm.mu.Unlock()
- if _, ok := vm.listeners[name]; ok {
- return nil, fmt.Errorf("custom listener for [%s] is repeated", name)
- }
- l := netpkg.NewInternalListener()
- vm.listeners[name] = &listenerBundle{
- l: l,
- sk: sk,
- allowUsers: allowUsers,
- }
- return l, nil
- }
- func (vm *Manager) NewConn(name string, conn net.Conn, timestamp int64, signKey string,
- useEncryption bool, useCompression bool, visitorUser string,
- ) (err error) {
- vm.mu.RLock()
- defer vm.mu.RUnlock()
- if l, ok := vm.listeners[name]; ok {
- if util.GetAuthKey(l.sk, timestamp) != signKey {
- err = fmt.Errorf("visitor connection of [%s] auth failed", name)
- return
- }
- if !slices.Contains(l.allowUsers, visitorUser) && !slices.Contains(l.allowUsers, "*") {
- err = fmt.Errorf("visitor connection of [%s] user [%s] not allowed", name, visitorUser)
- return
- }
- var rwc io.ReadWriteCloser = conn
- if useEncryption {
- if rwc, err = libio.WithEncryption(rwc, []byte(l.sk)); err != nil {
- err = fmt.Errorf("create encryption connection failed: %v", err)
- return
- }
- }
- if useCompression {
- rwc = libio.WithCompression(rwc)
- }
- err = l.l.PutConn(netpkg.WrapReadWriteCloserToConn(rwc, conn))
- } else {
- err = fmt.Errorf("custom listener for [%s] doesn't exist", name)
- return
- }
- return
- }
- func (vm *Manager) CloseListener(name string) {
- vm.mu.Lock()
- defer vm.mu.Unlock()
- delete(vm.listeners, name)
- }
|