Hunter0x7c7
2022-08-11 a82f9cb69f63aaeba40c024960deda7d75b9fece
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
package internet_test
 
import (
    "context"
    "syscall"
    "testing"
 
    "github.com/v2fly/v2ray-core/v5/common"
    "github.com/v2fly/v2ray-core/v5/common/net"
    "github.com/v2fly/v2ray-core/v5/testing/servers/tcp"
    . "github.com/v2fly/v2ray-core/v5/transport/internet"
)
 
func TestSockOptMark(t *testing.T) {
    t.Skip("requires CAP_NET_ADMIN")
 
    tcpServer := tcp.Server{
        MsgProcessor: func(b []byte) []byte {
            return b
        },
    }
    dest, err := tcpServer.Start()
    common.Must(err)
    defer tcpServer.Close()
 
    const mark = 1
    dialer := DefaultSystemDialer{}
    conn, err := dialer.Dial(context.Background(), nil, dest, &SocketConfig{Mark: mark})
    common.Must(err)
    defer conn.Close()
 
    rawConn, err := conn.(*net.TCPConn).SyscallConn()
    common.Must(err)
    err = rawConn.Control(func(fd uintptr) {
        m, err := syscall.GetsockoptInt(int(fd), syscall.SOL_SOCKET, syscall.SO_MARK)
        common.Must(err)
        if mark != m {
            t.Fatal("unexpected connection mark", m, " want ", mark)
        }
    })
    common.Must(err)
}