mirror of
https://github.com/cloudflare/cloudflared.git
synced 2025-05-23 13:56:34 +00:00

Combines the tunnelrpc and quic/schema capnp files into the same module. To help reduce future issues with capnp id generation, capnpids are provided in the capnp files from the existing capnp struct ids generated in the go files. Reduces the overall interface of the Capnp methods to the rest of the code by providing an interface that will handle the quic protocol selection. Introduces a new `rpc-timeout` config that will allow all of the SessionManager and ConfigurationManager RPC requests to have a timeout. The timeout for these values is set to 5 seconds as non of these operations for the managers should take a long time to complete. Removed the RPC-specific logger as it never provided good debugging value as the RPC method names were not visible in the logs.
60 lines
1.4 KiB
Go
60 lines
1.4 KiB
Go
package quic
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
"io"
|
|
"time"
|
|
|
|
"zombiezen.com/go/capnproto2/rpc"
|
|
|
|
"github.com/cloudflare/cloudflared/tunnelrpc/pogs"
|
|
)
|
|
|
|
// SessionManagerServer handles streams with the SessionManager RPCs.
|
|
type SessionManagerServer struct {
|
|
sessionManager pogs.SessionManager
|
|
responseTimeout time.Duration
|
|
}
|
|
|
|
func NewSessionManagerServer(sessionManager pogs.SessionManager, responseTimeout time.Duration) *SessionManagerServer {
|
|
return &SessionManagerServer{
|
|
sessionManager: sessionManager,
|
|
responseTimeout: responseTimeout,
|
|
}
|
|
}
|
|
|
|
func (s *SessionManagerServer) Serve(ctx context.Context, stream io.ReadWriteCloser) error {
|
|
signature, err := determineProtocol(stream)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
switch signature {
|
|
case rpcStreamProtocolSignature:
|
|
break
|
|
case dataStreamProtocolSignature:
|
|
return errDataStreamNotSupported
|
|
default:
|
|
return fmt.Errorf("unknown protocol %v", signature)
|
|
}
|
|
|
|
// Every new quic.Stream request aligns to a new RPC request, this is why there is a timeout for the server-side
|
|
// of the RPC request.
|
|
ctx, cancel := context.WithTimeout(ctx, s.responseTimeout)
|
|
defer cancel()
|
|
|
|
transport := rpc.StreamTransport(stream)
|
|
defer transport.Close()
|
|
|
|
main := pogs.SessionManager_ServerToClient(s.sessionManager)
|
|
rpcConn := rpc.NewConn(transport, rpc.MainInterface(main.Client))
|
|
defer rpcConn.Close()
|
|
|
|
select {
|
|
case <-rpcConn.Done():
|
|
return rpcConn.Err()
|
|
case <-ctx.Done():
|
|
return ctx.Err()
|
|
}
|
|
}
|