mirror of
https://github.com/wyx2685/V2bX.git
synced 2025-01-23 02:18:13 -05:00
195 lines
6.0 KiB
Go
195 lines
6.0 KiB
Go
package xray
|
|
|
|
import (
|
|
"log"
|
|
"os"
|
|
"sync"
|
|
|
|
"github.com/Yuzuki616/V2bX/conf"
|
|
vCore "github.com/Yuzuki616/V2bX/core"
|
|
"github.com/Yuzuki616/V2bX/core/xray/app/dispatcher"
|
|
_ "github.com/Yuzuki616/V2bX/core/xray/distro/all"
|
|
"github.com/goccy/go-json"
|
|
"github.com/xtls/xray-core/app/proxyman"
|
|
"github.com/xtls/xray-core/app/stats"
|
|
"github.com/xtls/xray-core/common/serial"
|
|
"github.com/xtls/xray-core/core"
|
|
"github.com/xtls/xray-core/features/inbound"
|
|
"github.com/xtls/xray-core/features/outbound"
|
|
"github.com/xtls/xray-core/features/routing"
|
|
statsFeature "github.com/xtls/xray-core/features/stats"
|
|
coreConf "github.com/xtls/xray-core/infra/conf"
|
|
)
|
|
|
|
func init() {
|
|
vCore.RegisterCore("xray", New)
|
|
}
|
|
|
|
// Core Structure
|
|
type Core struct {
|
|
access sync.Mutex
|
|
Server *core.Instance
|
|
ihm inbound.Manager
|
|
ohm outbound.Manager
|
|
shm statsFeature.Manager
|
|
dispatcher *dispatcher.DefaultDispatcher
|
|
}
|
|
|
|
func New(c *conf.CoreConfig) (vCore.Core, error) {
|
|
return &Core{Server: getCore(c.XrayConfig)}, nil
|
|
}
|
|
|
|
func parseConnectionConfig(c *conf.ConnectionConfig) (policy *coreConf.Policy) {
|
|
policy = &coreConf.Policy{
|
|
StatsUserUplink: true,
|
|
StatsUserDownlink: true,
|
|
Handshake: &c.Handshake,
|
|
ConnectionIdle: &c.ConnIdle,
|
|
UplinkOnly: &c.UplinkOnly,
|
|
DownlinkOnly: &c.DownlinkOnly,
|
|
BufferSize: &c.BufferSize,
|
|
}
|
|
return
|
|
}
|
|
|
|
func getCore(c *conf.XrayConfig) *core.Instance {
|
|
os.Setenv("XRAY_LOCATION_ASSET", c.AssetPath)
|
|
// Log Config
|
|
coreLogConfig := &coreConf.LogConfig{}
|
|
coreLogConfig.LogLevel = c.LogConfig.Level
|
|
coreLogConfig.AccessLog = c.LogConfig.AccessPath
|
|
coreLogConfig.ErrorLog = c.LogConfig.ErrorPath
|
|
// DNS config
|
|
coreDnsConfig := &coreConf.DNSConfig{}
|
|
if c.DnsConfigPath != "" {
|
|
if f, err := os.Open(c.DnsConfigPath); err != nil {
|
|
log.Panicf("Failed to read DNS config file at: %s", c.DnsConfigPath)
|
|
} else {
|
|
if err = json.NewDecoder(f).Decode(coreDnsConfig); err != nil {
|
|
log.Panicf("Failed to unmarshal DNS config: %s", c.DnsConfigPath)
|
|
}
|
|
}
|
|
}
|
|
dnsConfig, err := coreDnsConfig.Build()
|
|
if err != nil {
|
|
log.Panicf("Failed to understand DNS config, Please check: https://xtls.github.io/config/dns.html for help: %s", err)
|
|
}
|
|
// Routing config
|
|
coreRouterConfig := &coreConf.RouterConfig{}
|
|
if c.RouteConfigPath != "" {
|
|
if f, err := os.Open(c.RouteConfigPath); err != nil {
|
|
log.Panicf("Failed to read Routing config file at: %s", c.RouteConfigPath)
|
|
} else {
|
|
if err = json.NewDecoder(f).Decode(coreRouterConfig); err != nil {
|
|
log.Panicf("Failed to unmarshal Routing config: %s", c.RouteConfigPath)
|
|
}
|
|
}
|
|
}
|
|
routeConfig, err := coreRouterConfig.Build()
|
|
if err != nil {
|
|
log.Panicf("Failed to understand Routing config Please check: https://xtls.github.io/config/routing.html for help: %s", err)
|
|
}
|
|
// Custom Inbound config
|
|
var coreCustomInboundConfig []coreConf.InboundDetourConfig
|
|
if c.InboundConfigPath != "" {
|
|
if f, err := os.Open(c.InboundConfigPath); err != nil {
|
|
log.Panicf("Failed to read Custom Inbound config file at: %s", c.OutboundConfigPath)
|
|
} else {
|
|
if err = json.NewDecoder(f).Decode(&coreCustomInboundConfig); err != nil {
|
|
log.Panicf("Failed to unmarshal Custom Inbound config: %s", c.OutboundConfigPath)
|
|
}
|
|
}
|
|
}
|
|
var inBoundConfig []*core.InboundHandlerConfig
|
|
for _, config := range coreCustomInboundConfig {
|
|
oc, err := config.Build()
|
|
if err != nil {
|
|
log.Panicf("Failed to understand Inbound config, Please check: https://xtls.github.io/config/inbound.html for help: %s", err)
|
|
}
|
|
inBoundConfig = append(inBoundConfig, oc)
|
|
}
|
|
// Custom Outbound config
|
|
var coreCustomOutboundConfig []coreConf.OutboundDetourConfig
|
|
if c.OutboundConfigPath != "" {
|
|
if f, err := os.Open(c.OutboundConfigPath); err != nil {
|
|
log.Panicf("Failed to read Custom Outbound config file at: %s", c.OutboundConfigPath)
|
|
} else {
|
|
if err = json.NewDecoder(f).Decode(&coreCustomOutboundConfig); err != nil {
|
|
log.Panicf("Failed to unmarshal Custom Outbound config: %s", c.OutboundConfigPath)
|
|
}
|
|
}
|
|
}
|
|
var outBoundConfig []*core.OutboundHandlerConfig
|
|
for _, config := range coreCustomOutboundConfig {
|
|
oc, err := config.Build()
|
|
if err != nil {
|
|
log.Panicf("Failed to understand Outbound config, Please check: https://xtls.github.io/config/outbound.html for help: %s", err)
|
|
}
|
|
outBoundConfig = append(outBoundConfig, oc)
|
|
}
|
|
// Policy config
|
|
levelPolicyConfig := parseConnectionConfig(c.ConnectionConfig)
|
|
corePolicyConfig := &coreConf.PolicyConfig{}
|
|
corePolicyConfig.Levels = map[uint32]*coreConf.Policy{0: levelPolicyConfig}
|
|
policyConfig, _ := corePolicyConfig.Build()
|
|
// Build Core conf
|
|
config := &core.Config{
|
|
App: []*serial.TypedMessage{
|
|
serial.ToTypedMessage(coreLogConfig.Build()),
|
|
serial.ToTypedMessage(&dispatcher.Config{}),
|
|
serial.ToTypedMessage(&stats.Config{}),
|
|
serial.ToTypedMessage(&proxyman.InboundConfig{}),
|
|
serial.ToTypedMessage(&proxyman.OutboundConfig{}),
|
|
serial.ToTypedMessage(policyConfig),
|
|
serial.ToTypedMessage(dnsConfig),
|
|
serial.ToTypedMessage(routeConfig),
|
|
},
|
|
Inbound: inBoundConfig,
|
|
Outbound: outBoundConfig,
|
|
}
|
|
server, err := core.New(config)
|
|
if err != nil {
|
|
log.Panicf("failed to create instance: %s", err)
|
|
}
|
|
log.Printf("Core Version: %s", core.Version())
|
|
|
|
return server
|
|
}
|
|
|
|
// Start the Core
|
|
func (c *Core) Start() error {
|
|
c.access.Lock()
|
|
defer c.access.Unlock()
|
|
if err := c.Server.Start(); err != nil {
|
|
return err
|
|
}
|
|
c.shm = c.Server.GetFeature(statsFeature.ManagerType()).(statsFeature.Manager)
|
|
c.ihm = c.Server.GetFeature(inbound.ManagerType()).(inbound.Manager)
|
|
c.ohm = c.Server.GetFeature(outbound.ManagerType()).(outbound.Manager)
|
|
c.dispatcher = c.Server.GetFeature(routing.DispatcherType()).(*dispatcher.DefaultDispatcher)
|
|
return nil
|
|
}
|
|
|
|
// Close the core
|
|
func (c *Core) Close() error {
|
|
c.access.Lock()
|
|
defer c.access.Unlock()
|
|
c.ihm = nil
|
|
c.ohm = nil
|
|
c.shm = nil
|
|
c.dispatcher = nil
|
|
err := c.Server.Close()
|
|
if err != nil {
|
|
return err
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (c *Core) Protocols() []string {
|
|
return []string{
|
|
"v2ray",
|
|
"shadowsocks",
|
|
"trojan",
|
|
}
|
|
}
|