1
0

socks5.go 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. // Copyright 2017 fatedier, fatedier@gmail.com
  2. //
  3. // Licensed under the Apache License, Version 2.0 (the "License");
  4. // you may not use this file except in compliance with the License.
  5. // You may obtain a copy of the License at
  6. //
  7. // http://www.apache.org/licenses/LICENSE-2.0
  8. //
  9. // Unless required by applicable law or agreed to in writing, software
  10. // distributed under the License is distributed on an "AS IS" BASIS,
  11. // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  12. // See the License for the specific language governing permissions and
  13. // limitations under the License.
  14. package plugin
  15. import (
  16. "io"
  17. "io/ioutil"
  18. "log"
  19. frpNet "github.com/fatedier/frp/utils/net"
  20. gosocks5 "github.com/armon/go-socks5"
  21. )
  22. const PluginSocks5 = "socks5"
  23. func init() {
  24. Register(PluginSocks5, NewSocks5Plugin)
  25. }
  26. type Socks5Plugin struct {
  27. Server *gosocks5.Server
  28. }
  29. func NewSocks5Plugin(params map[string]string) (p Plugin, err error) {
  30. sp := &Socks5Plugin{}
  31. sp.Server, err = gosocks5.New(&gosocks5.Config{
  32. Logger: log.New(ioutil.Discard, "", log.LstdFlags),
  33. })
  34. p = sp
  35. return
  36. }
  37. func (sp *Socks5Plugin) Handle(conn io.ReadWriteCloser) {
  38. defer conn.Close()
  39. var wrapConn frpNet.Conn
  40. if realConn, ok := conn.(frpNet.Conn); ok {
  41. wrapConn = realConn
  42. } else {
  43. wrapConn = frpNet.WrapReadWriteCloserToConn(conn, realConn)
  44. }
  45. sp.Server.ServeConn(wrapConn)
  46. }
  47. func (sp *Socks5Plugin) Name() string {
  48. return PluginSocks5
  49. }
  50. func (sp *Socks5Plugin) Close() error {
  51. return nil
  52. }