v2fly/v2ray.go

142 lines
3.4 KiB
Go
Raw Normal View History

2016-10-12 14:46:02 +00:00
package core
2015-09-05 15:48:38 +00:00
import (
"context"
2016-08-20 18:55:45 +00:00
"v2ray.com/core/app"
"v2ray.com/core/app/dispatcher"
2017-11-27 21:09:30 +00:00
"v2ray.com/core/app/policy"
2016-08-20 18:55:45 +00:00
"v2ray.com/core/app/proxyman"
2017-02-10 15:54:51 +00:00
"v2ray.com/core/common"
2015-09-05 15:48:38 +00:00
)
2017-02-10 15:25:54 +00: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 10:30:52 +00:00
return newSimpleServer(config)
}
// simpleServer shell of V2Ray.
type simpleServer struct {
space app.Space
2017-02-10 15:25:54 +00:00
}
2017-02-22 10:30:52 +00:00
// newSimpleServer returns a new Point server based on given configuration.
2015-09-07 10:00:46 +00:00
// The server is not started at this point.
2017-02-22 10:30:52 +00:00
func newSimpleServer(config *Config) (*simpleServer, error) {
var server = new(simpleServer)
2015-09-12 09:51:42 +00:00
2017-02-01 22:05:27 +00:00
if err := config.Transport.Apply(); err != nil {
2016-10-14 20:21:45 +00:00
return nil, err
2016-06-01 23:49:25 +00:00
}
2016-10-16 14:04:30 +00:00
space := app.NewSpace()
ctx := app.ContextWithSpace(context.Background(), space)
2017-02-22 10:30:52 +00:00
server.space = space
2016-05-18 06:05:52 +00:00
2017-02-01 22:05:27 +00:00
for _, appSettings := range config.App {
2017-02-01 20:35:40 +00: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-01-06 14:32:36 +00:00
outboundHandlerManager := proxyman.OutboundHandlerManagerFromSpace(space)
if outboundHandlerManager == nil {
2017-01-13 12:41:40 +00:00
o, err := app.CreateAppFromConfig(ctx, new(proxyman.OutboundConfig))
if err != nil {
2017-01-06 14:32:36 +00:00
return nil, err
}
2017-02-10 15:54:51 +00:00
if err := space.AddApplication(o); err != nil {
2017-04-08 23:43:25 +00:00
return nil, newError("failed to add default outbound handler manager").Base(err)
2017-02-10 15:54:51 +00:00
}
2017-01-13 12:41:40 +00:00
outboundHandlerManager = o.(proxyman.OutboundHandlerManager)
2016-12-16 22:02:11 +00:00
}
inboundHandlerManager := proxyman.InboundHandlerManagerFromSpace(space)
if inboundHandlerManager == nil {
o, err := app.CreateAppFromConfig(ctx, new(proxyman.InboundConfig))
2017-01-13 12:41:40 +00:00
if err != nil {
return nil, err
}
2017-02-10 15:54:51 +00:00
if err := space.AddApplication(o); err != nil {
2017-04-08 23:43:25 +00:00
return nil, newError("failed to add default inbound handler manager").Base(err)
2017-02-10 15:54:51 +00:00
}
inboundHandlerManager = o.(proxyman.InboundHandlerManager)
2017-01-06 14:32:36 +00:00
}
2016-11-10 22:41:28 +00:00
2017-11-22 22:17:32 +00:00
if disp := dispatcher.FromSpace(space); disp == nil {
2017-01-13 12:41:40 +00:00
d, err := app.CreateAppFromConfig(ctx, new(dispatcher.Config))
if err != nil {
2017-01-06 14:32:36 +00:00
return nil, err
}
2017-08-29 12:50:53 +00:00
common.Must(space.AddApplication(d))
2017-11-27 21:09:30 +00:00
}
2017-11-27 21:18:39 +00:00
if p := policy.FromSpace(space); p == nil {
2017-11-27 21:09:30 +00:00
p, err := app.CreateAppFromConfig(ctx, &policy.Config{
Level: map[uint32]*policy.Policy{
2017-12-03 00:04:57 +00:00
1: {
2017-11-27 21:09:30 +00:00
Timeout: &policy.Policy_Timeout{
ConnectionIdle: &policy.Second{
Value: 600,
},
},
},
},
})
if err != nil {
return nil, err
}
common.Must(space.AddApplication(p))
2016-12-16 14:39:47 +00:00
}
2015-12-05 21:55:45 +00:00
2017-02-01 22:05:27 +00:00
for _, inbound := range config.Inbound {
if err := inboundHandlerManager.AddHandler(ctx, inbound); err != nil {
return nil, err
2015-10-31 23:11:41 +00:00
}
}
2017-02-01 22:05:27 +00:00
for _, outbound := range config.Outbound {
if err := outboundHandlerManager.AddHandler(ctx, outbound); err != nil {
2016-10-15 22:46:08 +00:00
return nil, err
}
2015-11-22 16:41:52 +00:00
}
2017-02-22 10:30:52 +00:00
if err := server.space.Initialize(); err != nil {
2016-05-18 15:12:04 +00:00
return nil, err
}
2017-02-22 10:30:52 +00:00
return server, nil
2015-09-05 15:48:38 +00:00
}
2017-02-22 10:30:52 +00:00
func (s *simpleServer) Close() {
s.space.Close()
2016-01-03 23:33:25 +00:00
}
2017-02-22 10:30:52 +00:00
func (s *simpleServer) Start() error {
if err := s.space.Start(); err != nil {
return err
2015-10-31 23:11:41 +00:00
}
2017-12-19 20:28:12 +00:00
newError("V2Ray started").AtWarning().WriteToLog()
2015-10-31 23:11:41 +00:00
return nil
2015-09-06 20:10:42 +00:00
}