123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261 |
- // 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 plugin
- import (
- "context"
- "errors"
- "fmt"
- "strings"
- "github.com/fatedier/frp/pkg/util/util"
- "github.com/fatedier/frp/pkg/util/xlog"
- )
- type Manager struct {
- loginPlugins []Plugin
- newProxyPlugins []Plugin
- closeProxyPlugins []Plugin
- pingPlugins []Plugin
- newWorkConnPlugins []Plugin
- newUserConnPlugins []Plugin
- }
- func NewManager() *Manager {
- return &Manager{
- loginPlugins: make([]Plugin, 0),
- newProxyPlugins: make([]Plugin, 0),
- closeProxyPlugins: make([]Plugin, 0),
- pingPlugins: make([]Plugin, 0),
- newWorkConnPlugins: make([]Plugin, 0),
- newUserConnPlugins: make([]Plugin, 0),
- }
- }
- func (m *Manager) Register(p Plugin) {
- if p.IsSupport(OpLogin) {
- m.loginPlugins = append(m.loginPlugins, p)
- }
- if p.IsSupport(OpNewProxy) {
- m.newProxyPlugins = append(m.newProxyPlugins, p)
- }
- if p.IsSupport(OpCloseProxy) {
- m.closeProxyPlugins = append(m.closeProxyPlugins, p)
- }
- if p.IsSupport(OpPing) {
- m.pingPlugins = append(m.pingPlugins, p)
- }
- if p.IsSupport(OpNewWorkConn) {
- m.newWorkConnPlugins = append(m.newWorkConnPlugins, p)
- }
- if p.IsSupport(OpNewUserConn) {
- m.newUserConnPlugins = append(m.newUserConnPlugins, p)
- }
- }
- func (m *Manager) Login(content *LoginContent) (*LoginContent, error) {
- if len(m.loginPlugins) == 0 {
- return content, nil
- }
- var (
- res = &Response{
- Reject: false,
- Unchange: true,
- }
- retContent interface{}
- err error
- )
- reqid, _ := util.RandID()
- xl := xlog.New().AppendPrefix("reqid: " + reqid)
- ctx := xlog.NewContext(context.Background(), xl)
- ctx = NewReqidContext(ctx, reqid)
- for _, p := range m.loginPlugins {
- res, retContent, err = p.Handle(ctx, OpLogin, *content)
- if err != nil {
- xl.Warnf("send Login request to plugin [%s] error: %v", p.Name(), err)
- return nil, errors.New("send Login request to plugin error")
- }
- if res.Reject {
- return nil, fmt.Errorf("%s", res.RejectReason)
- }
- if !res.Unchange {
- content = retContent.(*LoginContent)
- }
- }
- return content, nil
- }
- func (m *Manager) NewProxy(content *NewProxyContent) (*NewProxyContent, error) {
- if len(m.newProxyPlugins) == 0 {
- return content, nil
- }
- var (
- res = &Response{
- Reject: false,
- Unchange: true,
- }
- retContent interface{}
- err error
- )
- reqid, _ := util.RandID()
- xl := xlog.New().AppendPrefix("reqid: " + reqid)
- ctx := xlog.NewContext(context.Background(), xl)
- ctx = NewReqidContext(ctx, reqid)
- for _, p := range m.newProxyPlugins {
- res, retContent, err = p.Handle(ctx, OpNewProxy, *content)
- if err != nil {
- xl.Warnf("send NewProxy request to plugin [%s] error: %v", p.Name(), err)
- return nil, errors.New("send NewProxy request to plugin error")
- }
- if res.Reject {
- return nil, fmt.Errorf("%s", res.RejectReason)
- }
- if !res.Unchange {
- content = retContent.(*NewProxyContent)
- }
- }
- return content, nil
- }
- func (m *Manager) CloseProxy(content *CloseProxyContent) error {
- if len(m.closeProxyPlugins) == 0 {
- return nil
- }
- errs := make([]string, 0)
- reqid, _ := util.RandID()
- xl := xlog.New().AppendPrefix("reqid: " + reqid)
- ctx := xlog.NewContext(context.Background(), xl)
- ctx = NewReqidContext(ctx, reqid)
- for _, p := range m.closeProxyPlugins {
- _, _, err := p.Handle(ctx, OpCloseProxy, *content)
- if err != nil {
- xl.Warnf("send CloseProxy request to plugin [%s] error: %v", p.Name(), err)
- errs = append(errs, fmt.Sprintf("[%s]: %v", p.Name(), err))
- }
- }
- if len(errs) > 0 {
- return fmt.Errorf("send CloseProxy request to plugin errors: %s", strings.Join(errs, "; "))
- }
- return nil
- }
- func (m *Manager) Ping(content *PingContent) (*PingContent, error) {
- if len(m.pingPlugins) == 0 {
- return content, nil
- }
- var (
- res = &Response{
- Reject: false,
- Unchange: true,
- }
- retContent interface{}
- err error
- )
- reqid, _ := util.RandID()
- xl := xlog.New().AppendPrefix("reqid: " + reqid)
- ctx := xlog.NewContext(context.Background(), xl)
- ctx = NewReqidContext(ctx, reqid)
- for _, p := range m.pingPlugins {
- res, retContent, err = p.Handle(ctx, OpPing, *content)
- if err != nil {
- xl.Warnf("send Ping request to plugin [%s] error: %v", p.Name(), err)
- return nil, errors.New("send Ping request to plugin error")
- }
- if res.Reject {
- return nil, fmt.Errorf("%s", res.RejectReason)
- }
- if !res.Unchange {
- content = retContent.(*PingContent)
- }
- }
- return content, nil
- }
- func (m *Manager) NewWorkConn(content *NewWorkConnContent) (*NewWorkConnContent, error) {
- if len(m.newWorkConnPlugins) == 0 {
- return content, nil
- }
- var (
- res = &Response{
- Reject: false,
- Unchange: true,
- }
- retContent interface{}
- err error
- )
- reqid, _ := util.RandID()
- xl := xlog.New().AppendPrefix("reqid: " + reqid)
- ctx := xlog.NewContext(context.Background(), xl)
- ctx = NewReqidContext(ctx, reqid)
- for _, p := range m.newWorkConnPlugins {
- res, retContent, err = p.Handle(ctx, OpNewWorkConn, *content)
- if err != nil {
- xl.Warnf("send NewWorkConn request to plugin [%s] error: %v", p.Name(), err)
- return nil, errors.New("send NewWorkConn request to plugin error")
- }
- if res.Reject {
- return nil, fmt.Errorf("%s", res.RejectReason)
- }
- if !res.Unchange {
- content = retContent.(*NewWorkConnContent)
- }
- }
- return content, nil
- }
- func (m *Manager) NewUserConn(content *NewUserConnContent) (*NewUserConnContent, error) {
- if len(m.newUserConnPlugins) == 0 {
- return content, nil
- }
- var (
- res = &Response{
- Reject: false,
- Unchange: true,
- }
- retContent interface{}
- err error
- )
- reqid, _ := util.RandID()
- xl := xlog.New().AppendPrefix("reqid: " + reqid)
- ctx := xlog.NewContext(context.Background(), xl)
- ctx = NewReqidContext(ctx, reqid)
- for _, p := range m.newUserConnPlugins {
- res, retContent, err = p.Handle(ctx, OpNewUserConn, *content)
- if err != nil {
- xl.Infof("send NewUserConn request to plugin [%s] error: %v", p.Name(), err)
- return nil, errors.New("send NewUserConn request to plugin error")
- }
- if res.Reject {
- return nil, fmt.Errorf("%s", res.RejectReason)
- }
- if !res.Unchange {
- content = retContent.(*NewUserConnContent)
- }
- }
- return content, nil
- }
|