v2fly/v2ray.go

202 lines
5.8 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"
2018-02-07 11:34:15 +00:00
"sync"
2017-02-10 15:54:51 +00:00
"v2ray.com/core/common"
2018-01-17 18:09:32 +00:00
"v2ray.com/core/common/uuid"
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.
// Deprecated. Use Instance directly.
2017-02-10 15:25:54 +00:00
type Server interface {
common.Runnable
2017-02-10 15:25:54 +00:00
}
// Feature is the interface for V2Ray features. All features must implement this interface.
// All existing features have an implementation in app directory. These features can be replaced by third-party ones.
type Feature interface {
common.Runnable
2017-02-22 10:30:52 +00:00
}
// Instance combines all functionalities in V2Ray.
type Instance struct {
dnsClient syncDNSClient
policyManager syncPolicyManager
dispatcher syncDispatcher
router syncRouter
ihm syncInboundHandlerManager
ohm syncOutboundHandlerManager
2018-01-23 22:12:02 +00:00
clock syncClock
2018-01-24 14:05:46 +00:00
cmd syncCommander
2018-02-07 11:34:15 +00:00
access sync.Mutex
features []Feature
2018-01-17 18:09:32 +00:00
id uuid.UUID
2018-02-07 11:34:15 +00:00
running bool
2017-02-10 15:25:54 +00:00
}
// New returns a new V2Ray instance based on given configuration.
// The instance is not started at this point.
// To make sure V2Ray instance works properly, the config must contain one Dispatcher, one InboundHandlerManager and one OutboundHandlerManager. Other features are optional.
func New(config *Config) (*Instance, error) {
2018-01-17 18:09:32 +00:00
var server = &Instance{
2018-01-18 22:25:48 +00:00
id: uuid.New(),
2018-01-17 18:09:32 +00:00
}
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
}
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
}
2018-02-05 22:38:24 +00:00
if _, err := server.CreateObject(settings); err != nil {
2017-02-01 20:35:40 +00:00
return nil, err
}
}
for _, inbound := range config.Inbound {
2018-02-05 22:38:24 +00:00
rawHandler, err := server.CreateObject(inbound)
2017-01-13 12:41:40 +00:00
if err != nil {
2017-01-06 14:32:36 +00:00
return nil, err
}
handler, ok := rawHandler.(InboundHandler)
if !ok {
return nil, newError("not an InboundHandler")
2017-02-10 15:54:51 +00:00
}
2018-02-05 22:38:24 +00:00
if err := server.InboundHandlerManager().AddHandler(context.Background(), handler); err != nil {
2017-01-13 12:41:40 +00:00
return nil, err
}
2017-01-06 14:32:36 +00:00
}
2016-11-10 22:41:28 +00:00
for _, outbound := range config.Outbound {
2018-02-05 22:38:24 +00:00
rawHandler, err := server.CreateObject(outbound)
2017-01-13 12:41:40 +00:00
if err != nil {
2017-01-06 14:32:36 +00:00
return nil, err
}
handler, ok := rawHandler.(OutboundHandler)
if !ok {
return nil, newError("not an OutboundHandler")
}
2018-02-05 22:38:24 +00:00
if err := server.OutboundHandlerManager().AddHandler(context.Background(), handler); err != nil {
2017-11-27 21:09:30 +00:00
return nil, err
}
2016-12-16 14:39:47 +00:00
}
2015-12-05 21:55:45 +00:00
return server, nil
}
2018-02-05 22:38:24 +00:00
func (s *Instance) CreateObject(config interface{}) (interface{}, error) {
ctx := context.WithValue(context.Background(), v2rayKey, s)
return common.CreateObject(ctx, config)
}
2018-01-17 18:09:32 +00:00
// ID returns an unique ID for this V2Ray instance.
func (s *Instance) ID() uuid.UUID {
return s.id
}
// Close shutdown the V2Ray instance.
func (s *Instance) Close() {
2018-02-07 11:34:15 +00:00
s.access.Lock()
defer s.access.Unlock()
s.running = false
for _, f := range s.features {
f.Close()
2015-10-31 23:11:41 +00:00
}
}
2015-10-31 23:11:41 +00:00
// Start starts the V2Ray instance, including all registered features. When Start returns error, the state of the instance is unknown.
func (s *Instance) Start() error {
2018-02-07 11:34:15 +00:00
s.access.Lock()
defer s.access.Unlock()
s.running = true
for _, f := range s.features {
if err := f.Start(); err != nil {
2018-01-10 13:47:23 +00:00
return err
2016-10-15 22:46:08 +00:00
}
2015-11-22 16:41:52 +00:00
}
newError("V2Ray started").AtWarning().WriteToLog()
return nil
}
// RegisterFeature registers the given feature into V2Ray.
// If feature is one of the following types, the corressponding feature in this Instance
// will be replaced: DNSClient, PolicyManager, Router, Dispatcher, InboundHandlerManager, OutboundHandlerManager.
func (s *Instance) RegisterFeature(feature interface{}, instance Feature) error {
switch feature.(type) {
case DNSClient, *DNSClient:
s.dnsClient.Set(instance.(DNSClient))
case PolicyManager, *PolicyManager:
s.policyManager.Set(instance.(PolicyManager))
case Router, *Router:
s.router.Set(instance.(Router))
case Dispatcher, *Dispatcher:
s.dispatcher.Set(instance.(Dispatcher))
case InboundHandlerManager, *InboundHandlerManager:
s.ihm.Set(instance.(InboundHandlerManager))
case OutboundHandlerManager, *OutboundHandlerManager:
s.ohm.Set(instance.(OutboundHandlerManager))
2018-01-24 14:05:46 +00:00
case Clock, *Clock:
s.clock.Set(instance.(Clock))
case Commander, *Commander:
s.cmd.Set(instance.(Commander))
2016-05-18 15:12:04 +00:00
}
2018-02-07 11:34:15 +00:00
s.access.Lock()
defer s.access.Unlock()
s.features = append(s.features, instance)
2018-02-07 11:34:15 +00:00
if s.running {
return instance.Start()
}
return nil
}
2016-05-18 15:12:04 +00:00
// DNSClient returns the DNSClient used by this Instance. The returned DNSClient is always functional.
func (s *Instance) DNSClient() DNSClient {
return &(s.dnsClient)
2015-09-05 15:48:38 +00:00
}
// PolicyManager returns the PolicyManager used by this Instance. The returned PolicyManager is always functional.
func (s *Instance) PolicyManager() PolicyManager {
return &(s.policyManager)
2016-01-03 23:33:25 +00:00
}
// Router returns the Router used by this Instance. The returned Router is always functional.
func (s *Instance) Router() Router {
return &(s.router)
}
2015-10-31 23:11:41 +00:00
// Dispatcher returns the Dispatcher used by this Instance. If Dispatcher was not registered before, the returned value doesn't work, although it is not nil.
func (s *Instance) Dispatcher() Dispatcher {
return &(s.dispatcher)
}
// InboundHandlerManager returns the InboundHandlerManager used by this Instance. If InboundHandlerManager was not registered before, the returned value doesn't work.
func (s *Instance) InboundHandlerManager() InboundHandlerManager {
return &(s.ihm)
}
// OutboundHandlerManager returns the OutboundHandlerManager used by this Instance. If OutboundHandlerManager was not registered before, the returned value doesn't work.
func (s *Instance) OutboundHandlerManager() OutboundHandlerManager {
return &(s.ohm)
2015-09-06 20:10:42 +00:00
}
2018-01-23 22:12:02 +00:00
// Clock returns the Clock used by this Instance. The returned Clock is always functional.
func (s *Instance) Clock() Clock {
return &(s.clock)
}
2018-01-24 14:05:46 +00:00
// Commander returns the Commander used by this Instance. The returned Commander is always functional.
func (s *Instance) Commander() Commander {
return &(s.cmd)
}