1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-09-28 14:56:33 -04:00
v2fly/v2ray.go

240 lines
7.1 KiB
Go
Raw Normal View History

2016-10-12 10:46:02 -04:00
package core
2015-09-05 11:48:38 -04:00
import (
"context"
2018-02-07 06:34:15 -05:00
"sync"
2017-02-10 10:54:51 -05:00
"v2ray.com/core/common"
2018-05-31 05:55:11 -04:00
"v2ray.com/core/common/serial"
2018-01-17 13:09:32 -05:00
"v2ray.com/core/common/uuid"
2018-10-11 16:34:31 -04:00
"v2ray.com/core/features"
"v2ray.com/core/features/dns"
"v2ray.com/core/features/inbound"
"v2ray.com/core/features/outbound"
2018-10-11 16:34:31 -04:00
"v2ray.com/core/features/policy"
"v2ray.com/core/features/routing"
"v2ray.com/core/features/stats"
2015-09-05 11:48:38 -04:00
)
2017-02-10 10:25:54 -05: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 10:25:54 -05:00
type Server interface {
common.Runnable
2017-02-10 10:25:54 -05:00
}
// Instance combines all functionalities in V2Ray.
type Instance struct {
dnsClient syncDNSClient
policyManager syncPolicyManager
dispatcher syncDispatcher
router syncRouter
ihm syncInboundHandlerManager
ohm syncOutboundHandlerManager
2018-03-30 13:56:59 -04:00
stats syncStatManager
2018-02-07 06:34:15 -05:00
access sync.Mutex
2018-10-11 16:34:31 -04:00
features []features.Feature
2018-01-17 13:09:32 -05:00
id uuid.UUID
2018-02-07 06:34:15 -05:00
running bool
2017-02-10 10:25:54 -05:00
}
// New returns a new V2Ray instance based on given configuration.
// The instance is not started at this point.
2018-04-03 05:11:54 -04:00
// To ensure 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 13:09:32 -05:00
var server = &Instance{
2018-01-18 17:25:48 -05:00
id: uuid.New(),
2018-01-17 13:09:32 -05:00
}
2015-09-12 05:51:42 -04:00
2018-09-21 10:54:06 -04:00
if config.Transport != nil {
2018-10-05 19:53:51 -04:00
PrintDeprecatedFeatureWarning("global transport settings")
2018-09-21 10:54:06 -04:00
}
2017-02-01 17:05:27 -05:00
if err := config.Transport.Apply(); err != nil {
2016-10-14 16:21:45 -04:00
return nil, err
2016-06-01 19:49:25 -04:00
}
2017-02-01 17:05:27 -05:00
for _, appSettings := range config.App {
2017-02-01 15:35:40 -05:00
settings, err := appSettings.GetInstance()
if err != nil {
return nil, err
}
2018-05-31 05:55:11 -04:00
if _, err := CreateObject(server, settings); err != nil {
2017-02-01 15:35:40 -05:00
return nil, err
}
}
for _, inboundConfig := range config.Inbound {
rawHandler, err := CreateObject(server, inboundConfig)
2017-01-13 07:41:40 -05:00
if err != nil {
2017-01-06 09:32:36 -05:00
return nil, err
}
handler, ok := rawHandler.(inbound.Handler)
if !ok {
return nil, newError("not an InboundHandler")
2017-02-10 10:54:51 -05:00
}
2018-02-05 17:38:24 -05:00
if err := server.InboundHandlerManager().AddHandler(context.Background(), handler); err != nil {
2017-01-13 07:41:40 -05:00
return nil, err
}
2017-01-06 09:32:36 -05:00
}
2016-11-10 17:41:28 -05:00
for _, outboundConfig := range config.Outbound {
rawHandler, err := CreateObject(server, outboundConfig)
2017-01-13 07:41:40 -05:00
if err != nil {
2017-01-06 09:32:36 -05:00
return nil, err
}
handler, ok := rawHandler.(outbound.Handler)
if !ok {
return nil, newError("not an OutboundHandler")
}
2018-02-05 17:38:24 -05:00
if err := server.OutboundHandlerManager().AddHandler(context.Background(), handler); err != nil {
2017-11-27 16:09:30 -05:00
return nil, err
}
2016-12-16 09:39:47 -05:00
}
2015-12-05 16:55:45 -05:00
return server, nil
}
2018-04-02 03:52:16 -04:00
// ID returns a unique ID for this V2Ray instance.
2018-01-17 13:09:32 -05:00
func (s *Instance) ID() uuid.UUID {
return s.id
}
// Close shutdown the V2Ray instance.
2018-02-08 09:39:46 -05:00
func (s *Instance) Close() error {
2018-02-07 06:34:15 -05:00
s.access.Lock()
defer s.access.Unlock()
s.running = false
2018-05-31 05:55:11 -04:00
var errors []interface{}
2018-02-20 15:19:09 -05:00
for _, f := range s.allFeatures() {
2018-05-31 05:55:11 -04:00
if err := f.Close(); err != nil {
errors = append(errors, err)
}
}
if len(errors) > 0 {
return newError("failed to close all features").Base(newError(serial.Concat(errors...)))
2015-10-31 19:11:41 -04:00
}
2018-02-08 09:39:46 -05:00
return nil
}
2015-10-31 19:11:41 -04:00
// Start starts the V2Ray instance, including all registered features. When Start returns error, the state of the instance is unknown.
2018-02-10 05:17:22 -05:00
// A V2Ray instance can be started only once. Upon closing, the instance is not guaranteed to start again.
func (s *Instance) Start() error {
2018-02-07 06:34:15 -05:00
s.access.Lock()
defer s.access.Unlock()
s.running = true
2018-02-20 15:19:09 -05:00
for _, f := range s.allFeatures() {
if err := f.Start(); err != nil {
2018-01-10 08:47:23 -05:00
return err
2016-10-15 18:46:08 -04:00
}
2015-11-22 11:41:52 -05:00
}
2018-03-01 15:16:51 -05:00
newError("V2Ray ", Version(), " started").AtWarning().WriteToLog()
return nil
}
// RegisterFeature registers the given feature into V2Ray.
2018-03-14 22:32:10 -04:00
// If feature is one of the following types, the corresponding feature in this Instance
// will be replaced: DNSClient, PolicyManager, Router, Dispatcher, InboundHandlerManager, OutboundHandlerManager.
2018-10-12 17:57:56 -04:00
func (s *Instance) RegisterFeature(instance features.Feature) error {
2018-02-20 15:19:09 -05:00
running := false
2018-10-12 17:57:56 -04:00
switch instance.Type().(type) {
2018-10-11 16:34:31 -04:00
case dns.Client, *dns.Client:
s.dnsClient.Set(instance.(dns.Client))
case policy.Manager, *policy.Manager:
s.policyManager.Set(instance.(policy.Manager))
case routing.Router, *routing.Router:
s.router.Set(instance.(routing.Router))
case routing.Dispatcher, *routing.Dispatcher:
s.dispatcher.Set(instance.(routing.Dispatcher))
case inbound.Manager, *inbound.Manager:
s.ihm.Set(instance.(inbound.Manager))
2018-10-12 17:57:56 -04:00
case outbound.Manager, *outbound.Manager:
s.ohm.Set(instance.(outbound.Manager))
case stats.Manager, *stats.Manager:
s.stats.Set(instance.(stats.Manager))
2018-02-20 15:19:09 -05:00
default:
s.access.Lock()
s.features = append(s.features, instance)
running = s.running
s.access.Unlock()
2016-05-18 11:12:04 -04:00
}
2018-02-07 06:34:15 -05:00
2018-02-20 15:19:09 -05:00
if running {
2018-02-07 06:34:15 -05:00
return instance.Start()
}
return nil
}
2016-05-18 11:12:04 -04:00
2018-10-11 16:34:31 -04:00
func (s *Instance) allFeatures() []features.Feature {
return append([]features.Feature{s.DNSClient(), s.PolicyManager(), s.Dispatcher(), s.Router(), s.InboundHandlerManager(), s.OutboundHandlerManager(), s.Stats()}, s.features...)
2018-02-20 15:19:09 -05:00
}
2018-02-14 11:35:09 -05:00
// GetFeature returns a feature that was registered in this Instance. Nil if not found.
2018-04-03 05:11:54 -04:00
// The returned Feature must implement common.HasType and whose type equals to the given feature type.
2018-10-11 16:34:31 -04:00
func (s *Instance) GetFeature(featureType interface{}) features.Feature {
2018-10-12 17:57:56 -04:00
switch featureType.(type) {
case dns.Client, *dns.Client:
return s.DNSClient()
case policy.Manager, *policy.Manager:
return s.PolicyManager()
case routing.Router, *routing.Router:
return s.Router()
case routing.Dispatcher, *routing.Dispatcher:
return s.Dispatcher()
case inbound.Manager, *inbound.Manager:
return s.InboundHandlerManager()
case outbound.Manager, *outbound.Manager:
return s.OutboundHandlerManager()
case stats.Manager, *stats.Manager:
return s.Stats()
default:
for _, f := range s.features {
if f.Type() == featureType {
2018-02-14 11:35:09 -05:00
return f
}
}
2018-10-12 17:57:56 -04:00
return nil
2018-02-14 11:35:09 -05:00
}
}
2018-10-11 16:34:31 -04:00
// DNSClient returns the dns.Client used by this Instance. The returned dns.Client is always functional.
func (s *Instance) DNSClient() dns.Client {
return &(s.dnsClient)
2015-09-05 11:48:38 -04:00
}
2018-10-11 16:34:31 -04:00
// PolicyManager returns the policy.Manager used by this Instance. The returned policy.Manager is always functional.
func (s *Instance) PolicyManager() policy.Manager {
return &(s.policyManager)
2016-01-03 18:33:25 -05:00
}
// Router returns the Router used by this Instance. The returned Router is always functional.
func (s *Instance) Router() routing.Router {
return &(s.router)
}
2015-10-31 19:11:41 -04: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() routing.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() inbound.Manager {
return &(s.ihm)
}
// OutboundHandlerManager returns the OutboundHandlerManager used by this Instance. If OutboundHandlerManager was not registered before, the returned value doesn't work.
2018-10-12 17:57:56 -04:00
func (s *Instance) OutboundHandlerManager() outbound.Manager {
return &(s.ohm)
2015-09-06 16:10:42 -04:00
}
2018-03-30 13:56:59 -04:00
// Stats returns the stats.Manager used by this Instance. If StatManager was not registered before, the returned value doesn't work.
func (s *Instance) Stats() stats.Manager {
2018-03-30 13:56:59 -04:00
return &(s.stats)
}