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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
package core
 
import (
    "bytes"
    "context"
 
    "github.com/v2fly/v2ray-core/v5/common"
    "github.com/v2fly/v2ray-core/v5/common/environment/envctx"
    "github.com/v2fly/v2ray-core/v5/common/net"
    "github.com/v2fly/v2ray-core/v5/features/routing"
    "github.com/v2fly/v2ray-core/v5/transport/internet/udp"
)
 
// CreateObject creates a new object based on the given V2Ray instance and config. The V2Ray instance may be nil.
func CreateObject(v *Instance, config interface{}) (interface{}, error) {
    return CreateObjectWithEnvironment(v, config, nil)
}
 
func CreateObjectWithEnvironment(v *Instance, config, environment interface{}) (interface{}, error) {
    var ctx context.Context
    if v != nil {
        ctx = toContext(v.ctx, v)
    }
    ctx = envctx.ContextWithEnvironment(ctx, environment)
    return common.CreateObject(ctx, config)
}
 
// StartInstance starts a new V2Ray instance with given serialized config.
// By default V2Ray only support config in protobuf format, i.e., configFormat = "protobuf". Caller need to load other packages to add JSON support.
//
// v2ray:api:stable
func StartInstance(configFormat string, configBytes []byte) (*Instance, error) {
    config, err := LoadConfig(configFormat, bytes.NewReader(configBytes))
    if err != nil {
        return nil, err
    }
    instance, err := New(config)
    if err != nil {
        return nil, err
    }
    if err := instance.Start(); err != nil {
        return nil, err
    }
    return instance, nil
}
 
// Dial provides an easy way for upstream caller to create net.Conn through V2Ray.
// It dispatches the request to the given destination by the given V2Ray instance.
// Since it is under a proxy context, the LocalAddr() and RemoteAddr() in returned net.Conn
// will not show real addresses being used for communication.
//
// v2ray:api:stable
func Dial(ctx context.Context, v *Instance, dest net.Destination) (net.Conn, error) {
    ctx = toContext(ctx, v)
 
    dispatcher := v.GetFeature(routing.DispatcherType())
    if dispatcher == nil {
        return nil, newError("routing.Dispatcher is not registered in V2Ray core")
    }
 
    r, err := dispatcher.(routing.Dispatcher).Dispatch(ctx, dest)
    if err != nil {
        return nil, err
    }
    var readerOpt net.ConnectionOption
    if dest.Network == net.Network_TCP {
        readerOpt = net.ConnectionOutputMulti(r.Reader)
    } else {
        readerOpt = net.ConnectionOutputMultiUDP(r.Reader)
    }
    return net.NewConnection(net.ConnectionInputMulti(r.Writer), readerOpt), nil
}
 
// DialUDP provides a way to exchange UDP packets through V2Ray instance to remote servers.
// Since it is under a proxy context, the LocalAddr() in returned PacketConn will not show the real address.
//
// TODO: SetDeadline() / SetReadDeadline() / SetWriteDeadline() are not implemented.
//
// v2ray:api:beta
func DialUDP(ctx context.Context, v *Instance) (net.PacketConn, error) {
    ctx = toContext(ctx, v)
 
    dispatcher := v.GetFeature(routing.DispatcherType())
    if dispatcher == nil {
        return nil, newError("routing.Dispatcher is not registered in V2Ray core")
    }
    return udp.DialDispatcher(ctx, dispatcher.(routing.Dispatcher))
}