Files
v2ray_simple/proxy/config_toml.go
e1732a364fed f28f0d0bee 修订代码, 默认loglevel 改为 Log_info.
对一般用户而言,还是需要使用Info等级 来了解一下 一般的 日志情况,等到使用熟练之后,且确认运行没有错误后, 可以自行调为 warning 来提升性能

发现 bubble包 还自己引入了 命令行参数,这十分不可取,所以我们还是直接使用其代码。

将其它包中 的 命令行参数 统一 移动 到 cmd/verysimple 中;tls lazy 特性因为还在 调试阶段,所以 命令行参数 仍然放到 v2ray_simple 包中。
2022-04-26 13:22:18 +08:00

162 lines
4.3 KiB
Go
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

package proxy
import (
"errors"
"io/ioutil"
"log"
"os"
"path/filepath"
"time"
"github.com/BurntSushi/toml"
"github.com/e1732a364fed/v2ray_simple/httpLayer"
"github.com/e1732a364fed/v2ray_simple/netLayer"
"github.com/e1732a364fed/v2ray_simple/utils"
)
type AppConf struct {
LogLevel *int `toml:"loglevel"` //需要为指针, 否则无法判断0到底是未给出的默认值还是 显式声明的0
DefaultUUID string `toml:"default_uuid"`
MyCountryISO_3166 string `toml:"mycountry" json:"mycountry"` //加了mycountry后就会自动按照geoip分流,也会对顶级域名进行国别分流
NoReadV bool `toml:"noreadv"`
AdminPass string `toml:"admin_pass"` //用于apiServer等情况
UDP_timeout *int `toml:"udp_timeout"`
}
//标准配置使用toml格式。
// tomlhttps://toml.io/cn/
// English: https://toml.io/en/
type StandardConf struct {
App *AppConf `toml:"app"`
DnsConf *netLayer.DnsConf `toml:"dns"`
Listen []*ListenConf `toml:"listen"`
Dial []*DialConf `toml:"dial"`
Route []*netLayer.RuleConf `toml:"route"`
Fallbacks []*httpLayer.FallbackConf `toml:"fallback"`
}
func LoadTomlConfStr(str string) (c StandardConf, err error) {
_, err = toml.Decode(str, &c)
return
}
func LoadTomlConfFile(fileNamePath string) (StandardConf, error) {
if cf, err := os.Open(fileNamePath); err == nil {
defer cf.Close()
bs, _ := ioutil.ReadAll(cf)
return LoadTomlConfStr(string(bs))
} else {
return StandardConf{}, utils.ErrInErr{ErrDesc: "can't open config file", ErrDetail: err}
}
}
// 先检查configFileName是否存在存在就尝试加载文件到 standardConf 或者 simpleConf否则尝试 listenURL, dialURL 参数.
// 若 返回的是 simpleConf, 则还可能返回 mainFallback.
func LoadConfig(configFileName, listenURL, dialURL string) (standardConf StandardConf, simpleConf SimpleConf, confMode int, mainFallback *httpLayer.ClassicFallback, err error) {
fpath := utils.GetFilePath(configFileName)
if fpath != "" {
ext := filepath.Ext(fpath)
if ext == ".toml" {
standardConf, err = LoadTomlConfFile(fpath)
if err != nil {
log.Printf("can not load standard config file: %s\n", err)
return
}
confMode = StandardMode
//loglevel 和 noreadv这种会被 命令行覆盖的配置,需要直接在 loadConfig函数中先处理一遍
if appConf := standardConf.App; appConf != nil {
if appConf.LogLevel != nil && !utils.IsFlagGiven("ll") {
utils.LogLevel = *appConf.LogLevel
utils.InitLog()
}
if appConf.NoReadV && !utils.IsFlagGiven("readv") {
netLayer.UseReadv = false
}
}
return
} else {
confMode = SimpleMode
simpleConf, mainFallback, err = loadSimpleConf_byFile(fpath)
}
} else {
if listenURL != "" {
log.Printf("No Such Config File:%s,will try using -L,-D parameter \n", configFileName)
confMode = SimpleMode
simpleConf, err = loadSimpleConf_byUrl(listenURL, dialURL)
} else {
log.Printf("no -L listen URL provided \n")
err = errors.New("no -L listen URL provided")
return
}
}
return
}
type RoutingEnv struct {
RoutePolicy *netLayer.RoutePolicy //used in passToOutClient
MainFallback *httpLayer.ClassicFallback //used in checkFallback in passToOutClient
DnsMachine *netLayer.DNSMachine //used in passToOutClient
}
func LoadEnvFromStandardConf(standardConf *StandardConf) (routingEnv RoutingEnv, Default_uuid string) {
if len(standardConf.Fallbacks) != 0 {
routingEnv.MainFallback = httpLayer.NewClassicFallbackFromConfList(standardConf.Fallbacks)
}
if dnsConf := standardConf.DnsConf; dnsConf != nil {
routingEnv.DnsMachine = netLayer.LoadDnsMachine(dnsConf)
}
var hasAppLevelMyCountry bool
if appConf := standardConf.App; appConf != nil {
Default_uuid = appConf.DefaultUUID
hasAppLevelMyCountry = appConf.MyCountryISO_3166 != ""
if appConf.UDP_timeout != nil {
minutes := *appConf.UDP_timeout
if minutes > 0 {
netLayer.UDP_timeout = time.Minute * time.Duration(minutes)
}
}
}
if standardConf.Route != nil || hasAppLevelMyCountry {
netLayer.LoadMaxmindGeoipFile("")
routingEnv.RoutePolicy = netLayer.NewRoutePolicy()
if hasAppLevelMyCountry {
routingEnv.RoutePolicy.AddRouteSet(netLayer.NewRouteSetForMyCountry(standardConf.App.MyCountryISO_3166))
}
netLayer.LoadRulesForRoutePolicy(standardConf.Route, routingEnv.RoutePolicy)
}
return
}