2015-09-12 09:51:42 +00:00
|
|
|
package main
|
|
|
|
|
2015-09-12 18:36:21 +00:00
|
|
|
import (
|
|
|
|
"flag"
|
2015-09-18 09:59:36 +00:00
|
|
|
"fmt"
|
2015-10-18 11:14:34 +00:00
|
|
|
"os"
|
2016-05-10 22:51:38 +00:00
|
|
|
"os/signal"
|
2015-10-18 11:14:34 +00:00
|
|
|
"path/filepath"
|
2016-08-09 20:10:44 +00:00
|
|
|
"syscall"
|
2015-09-12 18:36:21 +00:00
|
|
|
|
|
|
|
"github.com/v2ray/v2ray-core"
|
2015-11-22 20:05:16 +00:00
|
|
|
_ "github.com/v2ray/v2ray-core/app/router/rules"
|
2015-09-19 22:50:21 +00:00
|
|
|
"github.com/v2ray/v2ray-core/common/log"
|
2015-11-29 13:45:32 +00:00
|
|
|
"github.com/v2ray/v2ray-core/shell/point"
|
2015-09-12 18:36:21 +00:00
|
|
|
|
2016-02-05 21:04:43 +00:00
|
|
|
// The following are necessary as they register handlers in their init functions.
|
2015-11-22 20:05:16 +00:00
|
|
|
_ "github.com/v2ray/v2ray-core/proxy/blackhole"
|
2015-10-30 14:56:46 +00:00
|
|
|
_ "github.com/v2ray/v2ray-core/proxy/dokodemo"
|
2015-10-06 22:30:44 +00:00
|
|
|
_ "github.com/v2ray/v2ray-core/proxy/freedom"
|
2015-12-15 15:00:47 +00:00
|
|
|
_ "github.com/v2ray/v2ray-core/proxy/http"
|
2016-01-29 15:48:01 +00:00
|
|
|
_ "github.com/v2ray/v2ray-core/proxy/shadowsocks"
|
2015-09-19 21:54:36 +00:00
|
|
|
_ "github.com/v2ray/v2ray-core/proxy/socks"
|
2015-12-07 19:32:38 +00:00
|
|
|
_ "github.com/v2ray/v2ray-core/proxy/vmess/inbound"
|
|
|
|
_ "github.com/v2ray/v2ray-core/proxy/vmess/outbound"
|
2016-06-14 20:54:08 +00:00
|
|
|
|
|
|
|
_ "github.com/v2ray/v2ray-core/transport/internet/kcp"
|
|
|
|
_ "github.com/v2ray/v2ray-core/transport/internet/tcp"
|
|
|
|
_ "github.com/v2ray/v2ray-core/transport/internet/udp"
|
2016-08-13 13:35:31 +00:00
|
|
|
_ "github.com/v2ray/v2ray-core/transport/internet/ws"
|
2016-08-06 20:52:02 +00:00
|
|
|
|
2016-08-06 22:38:23 +00:00
|
|
|
_ "github.com/v2ray/v2ray-core/transport/internet/authenticators/noop"
|
2016-08-06 20:52:02 +00:00
|
|
|
_ "github.com/v2ray/v2ray-core/transport/internet/authenticators/srtp"
|
2016-08-08 19:23:07 +00:00
|
|
|
_ "github.com/v2ray/v2ray-core/transport/internet/authenticators/utp"
|
2015-09-12 18:36:21 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
var (
|
2015-10-18 11:14:34 +00:00
|
|
|
configFile string
|
2015-10-07 08:05:11 +00:00
|
|
|
logLevel = flag.String("loglevel", "warning", "Level of log info to be printed to console, available value: debug, info, warning, error")
|
2015-09-18 09:59:36 +00:00
|
|
|
version = flag.Bool("version", false, "Show current version of V2Ray.")
|
2016-01-24 11:58:04 +00:00
|
|
|
test = flag.Bool("test", false, "Test config file only, without launching V2Ray server.")
|
2015-09-12 18:36:21 +00:00
|
|
|
)
|
|
|
|
|
2015-10-18 11:14:34 +00:00
|
|
|
func init() {
|
|
|
|
defaultConfigFile := ""
|
|
|
|
workingDir, err := filepath.Abs(filepath.Dir(os.Args[0]))
|
|
|
|
if err == nil {
|
|
|
|
defaultConfigFile = filepath.Join(workingDir, "config.json")
|
|
|
|
}
|
|
|
|
flag.StringVar(&configFile, "config", defaultConfigFile, "Config file for this Point server.")
|
|
|
|
}
|
|
|
|
|
2016-07-10 21:11:42 +00:00
|
|
|
func startV2Ray() *point.Point {
|
2015-09-15 22:06:22 +00:00
|
|
|
switch *logLevel {
|
|
|
|
case "debug":
|
|
|
|
log.SetLogLevel(log.DebugLevel)
|
|
|
|
case "info":
|
|
|
|
log.SetLogLevel(log.InfoLevel)
|
|
|
|
case "warning":
|
|
|
|
log.SetLogLevel(log.WarningLevel)
|
|
|
|
case "error":
|
|
|
|
log.SetLogLevel(log.ErrorLevel)
|
2015-10-07 08:05:11 +00:00
|
|
|
default:
|
|
|
|
fmt.Println("Unknown log level: " + *logLevel)
|
2016-07-10 21:11:42 +00:00
|
|
|
return nil
|
2015-09-15 22:06:22 +00:00
|
|
|
}
|
2015-09-12 18:36:21 +00:00
|
|
|
|
2015-10-18 11:14:34 +00:00
|
|
|
if len(configFile) == 0 {
|
2015-10-07 08:05:11 +00:00
|
|
|
log.Error("Config file is not set.")
|
2016-07-10 21:11:42 +00:00
|
|
|
return nil
|
2015-09-12 18:36:21 +00:00
|
|
|
}
|
2016-01-17 20:43:10 +00:00
|
|
|
config, err := point.LoadConfig(configFile)
|
2015-09-12 18:36:21 +00:00
|
|
|
if err != nil {
|
2016-01-18 11:24:33 +00:00
|
|
|
log.Error("Failed to read config file (", configFile, "): ", configFile, err)
|
2016-07-10 21:11:42 +00:00
|
|
|
return nil
|
2015-09-12 18:36:21 +00:00
|
|
|
}
|
|
|
|
|
2016-01-17 20:43:10 +00:00
|
|
|
if config.LogConfig != nil && len(config.LogConfig.AccessLog) > 0 {
|
|
|
|
log.InitAccessLogger(config.LogConfig.AccessLog)
|
2015-10-09 15:43:27 +00:00
|
|
|
}
|
|
|
|
|
2015-10-14 12:51:19 +00:00
|
|
|
vPoint, err := point.NewPoint(config)
|
2015-09-12 18:36:21 +00:00
|
|
|
if err != nil {
|
2016-01-18 11:24:33 +00:00
|
|
|
log.Error("Failed to create Point server: ", err)
|
2016-07-10 21:11:42 +00:00
|
|
|
return nil
|
2015-09-12 18:36:21 +00:00
|
|
|
}
|
|
|
|
|
2016-01-24 11:58:04 +00:00
|
|
|
if *test {
|
|
|
|
fmt.Println("Configuration OK.")
|
2016-07-10 21:11:42 +00:00
|
|
|
return nil
|
2016-01-24 11:58:04 +00:00
|
|
|
}
|
|
|
|
|
2015-09-12 18:36:21 +00:00
|
|
|
err = vPoint.Start()
|
|
|
|
if err != nil {
|
2016-01-18 11:24:33 +00:00
|
|
|
log.Error("Error starting Point server: ", err)
|
2016-07-10 21:11:42 +00:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
return vPoint
|
|
|
|
}
|
|
|
|
|
|
|
|
func main() {
|
|
|
|
flag.Parse()
|
|
|
|
|
|
|
|
core.PrintVersion()
|
|
|
|
|
|
|
|
if *version {
|
2015-10-07 08:05:11 +00:00
|
|
|
return
|
2015-09-12 18:36:21 +00:00
|
|
|
}
|
2015-09-12 09:51:42 +00:00
|
|
|
|
2016-07-10 21:11:42 +00:00
|
|
|
if point := startV2Ray(); point != nil {
|
|
|
|
osSignals := make(chan os.Signal, 1)
|
2016-08-09 20:10:44 +00:00
|
|
|
signal.Notify(osSignals, os.Interrupt, os.Kill, syscall.SIGTERM)
|
2016-05-10 22:51:38 +00:00
|
|
|
|
2016-07-10 21:11:42 +00:00
|
|
|
<-osSignals
|
|
|
|
point.Close()
|
|
|
|
}
|
|
|
|
log.Close()
|
2015-09-12 09:51:42 +00:00
|
|
|
}
|