123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230 |
- // 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"
- "github.com/fatedier/frp/pkg/util/util"
- "github.com/fatedier/frp/pkg/util/xlog"
- )
- type Manager struct {
- loginPlugins []Plugin
- newProxyPlugins []Plugin
- pingPlugins []Plugin
- newWorkConnPlugins []Plugin
- newUserConnPlugins []Plugin
- }
- func NewManager() *Manager {
- return &Manager{
- loginPlugins: make([]Plugin, 0),
- newProxyPlugins: 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(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.Warn("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.Warn("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) 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.Warn("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, OpPing, *content)
- if err != nil {
- xl.Warn("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.Info("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
- }
|