1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2025-02-20 23:47:21 -05:00
v2fly/v2ray.go

154 lines
3.8 KiB
Go
Raw Normal View History

2016-10-12 16:46:02 +02:00
package core
2015-09-05 17:48:38 +02:00
import (
"context"
2016-08-20 20:55:45 +02:00
"v2ray.com/core/app"
"v2ray.com/core/app/dispatcher"
2016-10-17 14:35:13 +02:00
"v2ray.com/core/app/dns"
2017-02-01 21:35:40 +01:00
"v2ray.com/core/app/log"
2016-08-20 20:55:45 +02:00
"v2ray.com/core/app/proxyman"
2017-02-10 16:54:51 +01:00
"v2ray.com/core/common"
"v2ray.com/core/common/errors"
2017-02-05 09:15:52 +01:00
"v2ray.com/core/common/net"
2015-09-05 17:48:38 +02:00
)
2017-02-10 16:25:54 +01:00
// Server is an instance of V2Ray. At any time, there must be at most one Server instance running.
type Server interface {
// Start starts the V2Ray server, and return any error during the process.
// In the case of any errors, the state of the server is unpredicatable.
Start() error
// Close closes the V2Ray server. All inbound and outbound connections will be closed immediately.
Close()
}
// New creates a new V2Ray server with given config.
func New(config *Config) (Server, error) {
2017-02-22 11:30:52 +01:00
return newSimpleServer(config)
}
// simpleServer shell of V2Ray.
type simpleServer struct {
space app.Space
2017-02-10 16:25:54 +01:00
}
2017-02-22 11:30:52 +01:00
// newSimpleServer returns a new Point server based on given configuration.
2015-09-07 12:00:46 +02:00
// The server is not started at this point.
2017-02-22 11:30:52 +01:00
func newSimpleServer(config *Config) (*simpleServer, error) {
var server = new(simpleServer)
2015-09-12 11:51:42 +02:00
2017-02-01 23:05:27 +01:00
if err := config.Transport.Apply(); err != nil {
2016-10-14 22:21:45 +02:00
return nil, err
2016-06-02 01:49:25 +02:00
}
2016-10-16 16:04:30 +02:00
space := app.NewSpace()
ctx := app.ContextWithSpace(context.Background(), space)
2017-02-22 11:30:52 +01:00
server.space = space
2016-05-17 23:05:52 -07:00
2017-02-01 23:05:27 +01:00
for _, appSettings := range config.App {
2017-02-01 21:35:40 +01:00
settings, err := appSettings.GetInstance()
if err != nil {
return nil, err
}
application, err := app.CreateAppFromConfig(ctx, settings)
if err != nil {
return nil, err
}
if err := space.AddApplication(application); err != nil {
return nil, err
}
}
2017-02-10 16:54:51 +01:00
if log.FromSpace(space) == nil {
2017-02-01 21:35:40 +01:00
l, err := app.CreateAppFromConfig(ctx, &log.Config{
ErrorLogType: log.LogType_Console,
ErrorLogLevel: log.LogLevel_Warning,
AccessLogType: log.LogType_None,
})
if err != nil {
2017-02-10 16:54:51 +01:00
return nil, errors.Base(err).Message("Core: Failed apply default log settings.")
2017-02-01 21:35:40 +01:00
}
space.AddApplication(l)
}
2017-01-06 15:32:36 +01:00
outboundHandlerManager := proxyman.OutboundHandlerManagerFromSpace(space)
if outboundHandlerManager == nil {
2017-01-13 13:41:40 +01:00
o, err := app.CreateAppFromConfig(ctx, new(proxyman.OutboundConfig))
if err != nil {
2017-01-06 15:32:36 +01:00
return nil, err
}
2017-02-10 16:54:51 +01:00
if err := space.AddApplication(o); err != nil {
return nil, errors.Base(err).Message("Core: Failed to add default outbound handler manager.")
}
2017-01-13 13:41:40 +01:00
outboundHandlerManager = o.(proxyman.OutboundHandlerManager)
2016-12-16 23:02:11 +01:00
}
inboundHandlerManager := proxyman.InboundHandlerManagerFromSpace(space)
if inboundHandlerManager == nil {
o, err := app.CreateAppFromConfig(ctx, new(proxyman.InboundConfig))
2017-01-13 13:41:40 +01:00
if err != nil {
return nil, err
}
2017-02-10 16:54:51 +01:00
if err := space.AddApplication(o); err != nil {
return nil, errors.Base(err).Message("Core: Failed to add default inbound handler manager.")
}
inboundHandlerManager = o.(proxyman.InboundHandlerManager)
2017-01-06 15:32:36 +01:00
}
2016-11-10 23:41:28 +01:00
2017-02-10 16:54:51 +01:00
if dns.FromSpace(space) == nil {
2016-12-16 16:20:12 +01:00
dnsConfig := &dns.Config{
2017-02-05 09:15:52 +01:00
NameServers: []*net.Endpoint{{
Address: net.NewIPOrDomain(net.LocalHostDomain),
2016-12-16 16:20:12 +01:00
}},
}
2017-01-13 13:41:40 +01:00
d, err := app.CreateAppFromConfig(ctx, dnsConfig)
if err != nil {
2016-12-16 16:20:12 +01:00
return nil, err
}
2017-02-10 16:54:51 +01:00
common.Must(space.AddApplication(d))
2016-10-17 14:35:13 +02:00
}
2017-01-06 15:32:36 +01:00
disp := dispatcher.FromSpace(space)
if disp == nil {
2017-01-13 13:41:40 +01:00
d, err := app.CreateAppFromConfig(ctx, new(dispatcher.Config))
if err != nil {
2017-01-06 15:32:36 +01:00
return nil, err
}
2017-01-13 13:41:40 +01:00
space.AddApplication(d)
2017-01-13 13:53:44 +01:00
disp = d.(dispatcher.Interface)
2016-12-16 15:39:47 +01:00
}
2015-12-05 22:55:45 +01:00
2017-02-01 23:05:27 +01:00
for _, inbound := range config.Inbound {
if err := inboundHandlerManager.AddHandler(ctx, inbound); err != nil {
return nil, err
2015-11-01 00:11:41 +01:00
}
}
2017-02-01 23:05:27 +01:00
for _, outbound := range config.Outbound {
if err := outboundHandlerManager.AddHandler(ctx, outbound); err != nil {
2016-10-16 00:46:08 +02:00
return nil, err
}
2015-11-22 17:41:52 +01:00
}
2017-02-22 11:30:52 +01:00
if err := server.space.Initialize(); err != nil {
2016-05-18 08:12:04 -07:00
return nil, err
}
2017-02-22 11:30:52 +01:00
return server, nil
2015-09-05 17:48:38 +02:00
}
2017-02-22 11:30:52 +01:00
func (s *simpleServer) Close() {
s.space.Close()
2016-01-04 00:33:25 +01:00
}
2017-02-22 11:30:52 +01:00
func (s *simpleServer) Start() error {
if err := s.space.Start(); err != nil {
return err
2015-11-01 00:11:41 +01:00
}
2016-10-14 22:21:45 +02:00
log.Warning("V2Ray started.")
2015-11-01 00:11:41 +01:00
return nil
2015-09-06 22:10:42 +02:00
}