Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type DataCallback ¶
type FindHandle ¶
type FindHandle interface {
// Get finds a tunnel to an agentk.
// It waits for a matching tunnel to proxy a connection through. When a matching tunnel is found, it is returned.
// It returns gRPC status errors only, ready to return from RPC handler.
Get(ctx context.Context) (Tunnel, error)
// Done must be called to free resources of this FindHandle instance.
// ctx is used for tracing only.
Done(ctx context.Context)
}
type GatewayFinder ¶
type GatewayFinder[T Target] interface { Find(ctx context.Context) (ReadyGateway[T], error) }
func NewGatewayFinder ¶
func NewGatewayFinder[T Target](outgoingCtx context.Context, log *slog.Logger, gatewayPool grpctool.PoolInterface[T], gatewayQuerier PollingGatewayURLQuerier[T], modAPI modshared.API, fullMethod string, ownPrivateAPIURL T, agentKey api.AgentKey, pollConfig retry.PollConfigFactory, tryNewGatewayInterval time.Duration) GatewayFinder[T]
type PollGatewayURLsCallback ¶
type PollGatewayURLsCallback[T Target] func(gatewayURLs []T)
PollGatewayURLsCallback is called periodically with found gateway tunserver URLs for a particular agent key.
type ReadyGateway ¶
type ReadyGateway[T Target] struct { URL T Stream grpc.ClientStream StreamCancel context.CancelFunc Codec encoding.CodecV2 }
type Router ¶
type Router[T Target] struct { Plugin RouterPlugin[T] // PrivateAPIServer is the gRPC server that other kas instances can talk to. // Request handlers can obtain the per-request logger using modshared.RPCAPIFromContext(requestContext). PrivateAPIServer grpc.ServiceRegistrar }
Router routes traffic from kas to another kas to agentk. routing kas -> gateway kas -> agentk
func (*Router[T]) RegisterTunclientAPI ¶
func (r *Router[T]) RegisterTunclientAPI(desc *grpc.ServiceDesc)
type RouterPlugin ¶
type RouterPlugin[T Target] interface { // FindReadyGateway finds a ready gateway tunserver to route the request through. // It returns an error, compatible with gRPC status package. FindReadyGateway(ctx context.Context, log *slog.Logger, method string) (ReadyGateway[T], *slog.Logger, api.AgentKey, error) // FindTunnel starts searching for a tunnel to a matching tunclient. // Tunnel found boolean indicates whether a suitable tunnel is immediately available from the // returned FindHandle object. FindTunnel(grpc.ServerStream, modshared.RPCAPI) (bool, *slog.Logger, FindHandle, error) // PrepareStreamForForwarding is used to perform any actions, like wrapping, on the stream just before // forwarding it to tunclient. // Returned error is compatible with gRPC-status error. PrepareStreamForForwarding(stream grpc.ServerStream) (grpc.ServerStream, error) }
type RoutingClientConn ¶
type RoutingClientConn[T Target] struct { Log *slog.Logger API modshared.API Plugin RouterPlugin[T] }
func (*RoutingClientConn[T]) Invoke ¶
func (c *RoutingClientConn[T]) Invoke(ctx context.Context, method string, args, reply any, opts ...grpc.CallOption) error
func (*RoutingClientConn[T]) NewStream ¶
func (c *RoutingClientConn[T]) NewStream(ctx context.Context, desc *grpc.StreamDesc, method string, opts ...grpc.CallOption) (grpc.ClientStream, error)
type StateType ¶
type StateType int
const ( // StateReady - tunnel is owned by the registry and is ready to be found and used for forwarding. StateReady StateType // StateFound - tunnel is not owned by registry, was found and about to be used for forwarding. StateFound // StateForwarding - tunnel is not owned by registry, is being used for forwarding. StateForwarding // StateDone - tunnel is not owned by anyone, it has been used for forwarding, Done() has been called. StateDone // StateContextDone - tunnel is not owned by anyone, reverse tunnel's context signaled done in HandleTunnel(). StateContextDone )
type Target ¶
type Target interface {
comparable
String() string
}
type Tunnel ¶
type Tunnel interface {
// ForwardStream performs bi-directional message forwarding between incomingStream and the tunnel.
// cb is called with header, messages and trailer coming from the tunnel. It's the callers
// responsibility to forward them into the incomingStream.
ForwardStream(log *slog.Logger, rpcAPI modshared.RPCAPI, incomingStream grpc.ServerStream, cb DataCallback) error
// Done must be called when the caller is done with the Tunnel.
// ctx is used for tracing only.
Done(ctx context.Context)
}
type TunnelImpl ¶
type TunnelImpl struct {
Tunnel grpc.BidiStreamingServer[rpc.ConnectRequest, rpc.ConnectResponse]
TunnelRetErr chan<- error
AgentKey api.AgentKey
Descriptor *info.APIDescriptor
State StateType
OnForward func(*TunnelImpl) error
OnDone func(context.Context, *TunnelImpl)
}
func (*TunnelImpl) Done ¶
func (t *TunnelImpl) Done(ctx context.Context)
func (*TunnelImpl) ForwardStream ¶
func (t *TunnelImpl) ForwardStream(log *slog.Logger, rpcAPI modshared.RPCAPI, incomingStream grpc.ServerStream, cb DataCallback) error
Click to show internal directories.
Click to hide internal directories.