2020-11-25 13:01:53 +02:00
|
|
|
package command
|
|
|
|
|
2020-12-04 03:36:16 +02:00
|
|
|
//go:generate go run github.com/xtls/xray-core/common/errors/errorgen
|
2020-11-25 13:01:53 +02:00
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"time"
|
|
|
|
|
2020-12-04 03:36:16 +02:00
|
|
|
"github.com/xtls/xray-core/common"
|
|
|
|
"github.com/xtls/xray-core/core"
|
|
|
|
"github.com/xtls/xray-core/features/routing"
|
|
|
|
"github.com/xtls/xray-core/features/stats"
|
2022-05-18 10:29:01 +03:00
|
|
|
"google.golang.org/grpc"
|
2020-11-25 13:01:53 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
// routingServer is an implementation of RoutingService.
|
|
|
|
type routingServer struct {
|
|
|
|
router routing.Router
|
|
|
|
routingStats stats.Channel
|
|
|
|
}
|
|
|
|
|
|
|
|
// NewRoutingServer creates a statistics service with statistics manager.
|
|
|
|
func NewRoutingServer(router routing.Router, routingStats stats.Channel) RoutingServiceServer {
|
|
|
|
return &routingServer{
|
|
|
|
router: router,
|
|
|
|
routingStats: routingStats,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *routingServer) TestRoute(ctx context.Context, request *TestRouteRequest) (*RoutingContext, error) {
|
|
|
|
if request.RoutingContext == nil {
|
|
|
|
return nil, newError("Invalid routing request.")
|
|
|
|
}
|
|
|
|
route, err := s.router.PickRoute(AsRoutingContext(request.RoutingContext))
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
if request.PublishResult && s.routingStats != nil {
|
|
|
|
ctx, _ := context.WithTimeout(context.Background(), 4*time.Second)
|
|
|
|
s.routingStats.Publish(ctx, route)
|
|
|
|
}
|
|
|
|
return AsProtobufMessage(request.FieldSelectors)(route), nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *routingServer) SubscribeRoutingStats(request *SubscribeRoutingStatsRequest, stream RoutingService_SubscribeRoutingStatsServer) error {
|
|
|
|
if s.routingStats == nil {
|
|
|
|
return newError("Routing statistics not enabled.")
|
|
|
|
}
|
|
|
|
genMessage := AsProtobufMessage(request.FieldSelectors)
|
|
|
|
subscriber, err := stats.SubscribeRunnableChannel(s.routingStats)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
defer stats.UnsubscribeClosableChannel(s.routingStats, subscriber)
|
|
|
|
for {
|
|
|
|
select {
|
|
|
|
case value, ok := <-subscriber:
|
|
|
|
if !ok {
|
|
|
|
return newError("Upstream closed the subscriber channel.")
|
|
|
|
}
|
|
|
|
route, ok := value.(routing.Route)
|
|
|
|
if !ok {
|
|
|
|
return newError("Upstream sent malformed statistics.")
|
|
|
|
}
|
|
|
|
err := stream.Send(genMessage(route))
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
case <-stream.Context().Done():
|
|
|
|
return stream.Context().Err()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *routingServer) mustEmbedUnimplementedRoutingServiceServer() {}
|
|
|
|
|
|
|
|
type service struct {
|
|
|
|
v *core.Instance
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *service) Register(server *grpc.Server) {
|
|
|
|
common.Must(s.v.RequireFeatures(func(router routing.Router, stats stats.Manager) {
|
2020-12-10 05:52:05 +02:00
|
|
|
rs := NewRoutingServer(router, nil)
|
|
|
|
RegisterRoutingServiceServer(server, rs)
|
2020-12-10 09:38:59 +02:00
|
|
|
|
|
|
|
// For compatibility purposes
|
2021-01-21 20:58:19 +02:00
|
|
|
vCoreDesc := RoutingService_ServiceDesc
|
2020-12-10 05:52:05 +02:00
|
|
|
vCoreDesc.ServiceName = "v2ray.core.app.router.command.RoutingService"
|
|
|
|
server.RegisterService(&vCoreDesc, rs)
|
2020-11-25 13:01:53 +02:00
|
|
|
}))
|
|
|
|
}
|
|
|
|
|
|
|
|
func init() {
|
|
|
|
common.Must(common.RegisterConfig((*Config)(nil), func(ctx context.Context, cfg interface{}) (interface{}, error) {
|
|
|
|
s := core.MustFromContext(ctx)
|
|
|
|
return &service{v: s}, nil
|
|
|
|
}))
|
|
|
|
}
|