client.go 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123
  1. package client
  2. import (
  3. "context"
  4. "fmt"
  5. "log"
  6. "net"
  7. "net/netip"
  8. "time"
  9. "github.com/Snawoot/dtlspipe/util"
  10. "github.com/pion/dtls/v2"
  11. "github.com/pion/transport/v2/udp"
  12. )
  13. const (
  14. MaxPktBuf = 65536
  15. Backlog = 1024
  16. )
  17. type Client struct {
  18. listener net.Listener
  19. dtlsConfig *dtls.Config
  20. rAddr string
  21. psk func([]byte) ([]byte, error)
  22. timeout time.Duration
  23. idleTimeout time.Duration
  24. baseCtx context.Context
  25. cancelCtx func()
  26. }
  27. func New(cfg *Config) (*Client, error) {
  28. cfg = cfg.populateDefaults()
  29. baseCtx, cancelCtx := context.WithCancel(cfg.BaseContext)
  30. client := &Client{
  31. rAddr: cfg.RemoteAddress,
  32. timeout: cfg.Timeout,
  33. psk: cfg.PSKCallback,
  34. idleTimeout: cfg.IdleTimeout,
  35. baseCtx: baseCtx,
  36. cancelCtx: cancelCtx,
  37. }
  38. lAddrPort, err := netip.ParseAddrPort(cfg.BindAddress)
  39. if err != nil {
  40. cancelCtx()
  41. return nil, fmt.Errorf("can't parse bind address: %w", err)
  42. }
  43. client.dtlsConfig = &dtls.Config{
  44. ExtendedMasterSecret: dtls.RequireExtendedMasterSecret,
  45. ConnectContextMaker: client.contextMaker,
  46. PSK: client.psk,
  47. PSKIdentityHint: []byte(cfg.PSKIdentity),
  48. MTU: cfg.MTU,
  49. CipherSuites: cfg.CipherSuites,
  50. EllipticCurves: cfg.EllipticCurves,
  51. }
  52. lc := udp.ListenConfig{
  53. Backlog: Backlog,
  54. }
  55. listener, err := lc.Listen("udp", net.UDPAddrFromAddrPort(lAddrPort))
  56. if err != nil {
  57. cancelCtx()
  58. return nil, fmt.Errorf("client listen failed: %w", err)
  59. }
  60. client.listener = listener
  61. go client.listen()
  62. return client, nil
  63. }
  64. func (client *Client) listen() {
  65. defer client.Close()
  66. for client.baseCtx.Err() == nil {
  67. conn, err := client.listener.Accept()
  68. if err != nil {
  69. log.Printf("conn accept failed: %v", err)
  70. continue
  71. }
  72. go func(conn net.Conn) {
  73. defer conn.Close()
  74. client.serve(conn)
  75. }(conn)
  76. }
  77. }
  78. func (client *Client) serve(conn net.Conn) {
  79. log.Printf("[+] conn %s <=> %s", conn.LocalAddr(), conn.RemoteAddr())
  80. defer log.Printf("[-] conn %s <=> %s", conn.LocalAddr(), conn.RemoteAddr())
  81. defer conn.Close()
  82. dialCtx, cancel := context.WithTimeout(client.baseCtx, client.timeout)
  83. defer cancel()
  84. remoteConn, err := (&net.Dialer{}).DialContext(dialCtx, "udp", client.rAddr)
  85. if err != nil {
  86. log.Printf("remote dial failed: %v", err)
  87. return
  88. }
  89. defer remoteConn.Close()
  90. remoteConn, err = dtls.ClientWithContext(dialCtx, remoteConn, client.dtlsConfig)
  91. if err != nil {
  92. log.Printf("DTLS handshake with remote server failed: %v", err)
  93. return
  94. }
  95. util.PairConn(conn, remoteConn, client.idleTimeout)
  96. }
  97. func (client *Client) contextMaker() (context.Context, func()) {
  98. return context.WithTimeout(client.baseCtx, client.timeout)
  99. }
  100. func (client *Client) Close() error {
  101. client.cancelCtx()
  102. return client.listener.Close()
  103. }