mirror of
https://github.com/SagerNet/sing-tun.git
synced 2025-04-04 12:27:39 +03:00
Add handshake interface support for gVisor UDP
This commit is contained in:
parent
0a68b9f1d8
commit
aa8760b454
11 changed files with 156 additions and 61 deletions
50
stack_gvisor_err.go
Normal file
50
stack_gvisor_err.go
Normal file
|
@ -0,0 +1,50 @@
|
|||
//go:build with_gvisor
|
||||
|
||||
package tun
|
||||
|
||||
import (
|
||||
"net"
|
||||
|
||||
"github.com/sagernet/gvisor/pkg/tcpip"
|
||||
"github.com/sagernet/gvisor/pkg/tcpip/adapters/gonet"
|
||||
E "github.com/sagernet/sing/common/exceptions"
|
||||
)
|
||||
|
||||
type gTCPConn struct {
|
||||
*gonet.TCPConn
|
||||
}
|
||||
|
||||
func (c *gTCPConn) Upstream() any {
|
||||
return c.TCPConn
|
||||
}
|
||||
|
||||
func (c *gTCPConn) Write(b []byte) (n int, err error) {
|
||||
n, err = c.TCPConn.Write(b)
|
||||
if err == nil {
|
||||
return
|
||||
}
|
||||
err = wrapError(err)
|
||||
return
|
||||
}
|
||||
|
||||
func wrapStackError(err tcpip.Error) error {
|
||||
switch err.(type) {
|
||||
case *tcpip.ErrClosedForSend,
|
||||
*tcpip.ErrClosedForReceive,
|
||||
*tcpip.ErrAborted:
|
||||
return net.ErrClosed
|
||||
}
|
||||
return E.New(err.String())
|
||||
}
|
||||
|
||||
func wrapError(err error) error {
|
||||
if opErr, isOpErr := err.(*net.OpError); isOpErr {
|
||||
switch opErr.Err.Error() {
|
||||
case "endpoint is closed for send",
|
||||
"endpoint is closed for receive",
|
||||
"operation aborted":
|
||||
return net.ErrClosed
|
||||
}
|
||||
}
|
||||
return err
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue