mirror of
https://github.com/openziti/ziti.git
synced 2026-09-10 08:45:41 +00:00
86092a8640
Bumps the sdk-golang dependency from v1 to the v2 module (`github.com/openziti/sdk-golang/v2` at v2.0.0-pre1) and updates all import paths. This is a no-behavior-change precursor that isolates the dependency migration from the Connect-V2 feature work in #3884. - Rewrites `github.com/openziti/sdk-golang/...` imports to `github.com/openziti/sdk-golang/v2/...` across the main and zititest modules. - Pins both modules to `github.com/openziti/sdk-golang/v2 v2.0.0-pre1`. - Adapts `edgeXgressConn.AcceptMessage` to the v2 `MsgSink` signature, which now takes an `edge.SdkChannel` argument. - Replaces the removed `edge.Conn.GetRouterId()` with `RemoteAddr().String()` in the loop4 traffic-test logging. For openziti/sdk-golang#936.
294 lines
9.5 KiB
Go
294 lines
9.5 KiB
Go
/*
|
|
Copyright NetFoundry Inc.
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
https://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
*/
|
|
|
|
package handler_ctrl
|
|
|
|
import (
|
|
"net"
|
|
"strings"
|
|
"syscall"
|
|
"time"
|
|
|
|
"github.com/michaelquigley/pfxlog"
|
|
"github.com/openziti/channel/v5"
|
|
"github.com/openziti/foundation/v2/goroutines"
|
|
"github.com/openziti/identity"
|
|
"github.com/openziti/sdk-golang/v2/xgress"
|
|
"github.com/openziti/ziti/v2/common/ctrl_msg"
|
|
"github.com/openziti/ziti/v2/common/ctrlchan"
|
|
"github.com/openziti/ziti/v2/common/logcontext"
|
|
"github.com/openziti/ziti/v2/common/pb/ctrl_pb"
|
|
"github.com/openziti/ziti/v2/controller/xt"
|
|
"github.com/openziti/ziti/v2/router/env"
|
|
"github.com/openziti/ziti/v2/router/forwarder"
|
|
"github.com/pkg/errors"
|
|
"github.com/sirupsen/logrus"
|
|
"google.golang.org/protobuf/proto"
|
|
)
|
|
|
|
type routeHandler struct {
|
|
id *identity.TokenId
|
|
ch ctrlchan.CtrlChannel
|
|
env env.RouterEnv
|
|
dialerCfg map[string]xgress.OptionsData
|
|
forwarder *forwarder.Forwarder
|
|
pool goroutines.Pool
|
|
}
|
|
|
|
func newRouteHandler(ch ctrlchan.CtrlChannel, env env.RouterEnv, forwarder *forwarder.Forwarder, pool goroutines.Pool) *routeHandler {
|
|
handler := &routeHandler{
|
|
id: env.GetRouterId(),
|
|
ch: ch,
|
|
env: env,
|
|
forwarder: forwarder,
|
|
pool: pool,
|
|
dialerCfg: env.GetDialerCfg(),
|
|
}
|
|
|
|
return handler
|
|
}
|
|
|
|
func (rh *routeHandler) ContentType() int32 {
|
|
return int32(ctrl_pb.ContentType_RouteType)
|
|
}
|
|
|
|
func (rh *routeHandler) HandleReceive(msg *channel.Message, ch channel.Channel) {
|
|
route := &ctrl_pb.Route{}
|
|
|
|
if err := proto.Unmarshal(msg.Body, route); err != nil {
|
|
pfxlog.ContextLogger(ch.Label()).WithError(err).Error("error unmarshaling")
|
|
return
|
|
}
|
|
|
|
var ctx logcontext.Context
|
|
if route.Context != nil {
|
|
ctx = logcontext.NewContextWith(route.Context.ChannelMask, route.Context.Fields)
|
|
} else {
|
|
ctx = logcontext.NewContext()
|
|
}
|
|
|
|
log := pfxlog.ChannelLogger(logcontext.EstablishPath).Wire(ctx).
|
|
WithField("context", ch.Label()).
|
|
WithField("circuitId", route.CircuitId).
|
|
WithField("attempt", route.Attempt)
|
|
|
|
if route.Egress != nil {
|
|
log = log.WithField("binding", route.Egress.Binding).WithField("destination", route.Egress.Destination)
|
|
}
|
|
|
|
log.Debugf("attempt [#%d] for [s/%s]", route.Attempt, route.CircuitId)
|
|
|
|
workF := func() {
|
|
if route.Egress != nil {
|
|
if rh.forwarder.HasDestination(xgress.Address(route.Egress.Address)) {
|
|
log.Warnf("destination exists for [%s]", route.Egress.Address)
|
|
rh.completeRoute(msg, int(route.Attempt), route, nil, log)
|
|
return
|
|
} else {
|
|
rh.connectEgress(msg, int(route.Attempt), ch, route, ctx, time.Now().Add(time.Duration(route.Timeout)))
|
|
return
|
|
}
|
|
} else {
|
|
rh.completeRoute(msg, int(route.Attempt), route, nil, log)
|
|
}
|
|
}
|
|
|
|
// if the queue is full, don't wait, we can't hold up the control channel processing
|
|
if err := rh.pool.QueueOrError(workF); err != nil {
|
|
log.WithError(err).Error("error queuing route processing to pool")
|
|
// don't send failure back. we can't delegate to another goroutine and if we sent from
|
|
// here we could block processing of incoming messages
|
|
}
|
|
}
|
|
|
|
func (rh *routeHandler) completeRoute(msg *channel.Message, attempt int, route *ctrl_pb.Route, peerData xt.PeerData, log *logrus.Entry) {
|
|
if err := rh.forwarder.Route(rh.ch.PeerId(), route); err != nil {
|
|
var errCode byte = ctrl_msg.ErrorTypeGeneric
|
|
if forwarder.IsInvalidLinkDestinationError(err) {
|
|
errCode = ctrl_msg.ErrorTypeInvalidLinkDestination
|
|
}
|
|
rh.fail(msg, attempt, route, err, errCode, log)
|
|
return
|
|
}
|
|
|
|
log.Debug("forwarder updated with route")
|
|
|
|
response := ctrl_msg.NewRouteResultSuccessMsg(route.CircuitId, attempt)
|
|
for k, v := range peerData {
|
|
response.Headers[int32(k)] = v
|
|
}
|
|
|
|
response.ReplyTo(msg)
|
|
|
|
log.Debug("sending success response")
|
|
if err := response.WithTimeout(rh.env.GetNetworkControllers().DefaultRequestTimeout()).Send(rh.ch.GetHighPrioritySender()); err == nil {
|
|
log.Debug("handled route")
|
|
} else {
|
|
log.WithError(err).Error("send response failed")
|
|
}
|
|
}
|
|
|
|
func (rh *routeHandler) fail(msg *channel.Message, attempt int, route *ctrl_pb.Route, err error, errorHeader byte, log *logrus.Entry) {
|
|
log.WithError(err).Error("failure while handling route update")
|
|
|
|
response := ctrl_msg.NewRouteResultFailedMessage(route.CircuitId, attempt, err.Error())
|
|
response.PutByteHeader(ctrl_msg.RouteResultErrorCodeHeader, errorHeader)
|
|
|
|
response.ReplyTo(msg)
|
|
if err = response.WithTimeout(rh.env.GetNetworkControllers().DefaultRequestTimeout()).Send(rh.ch.GetHighPrioritySender()); err != nil {
|
|
log.WithError(err).Error("send failure response failed")
|
|
}
|
|
}
|
|
|
|
func (rh *routeHandler) connectEgress(msg *channel.Message, attempt int, ch channel.Channel, route *ctrl_pb.Route, ctx logcontext.Context, deadline time.Time) {
|
|
log := pfxlog.ChannelLogger(logcontext.EstablishPath).Wire(ctx).
|
|
WithField("context", ch.Label()).
|
|
WithField("circuitId", route.CircuitId).
|
|
WithField("binding", route.Egress.Binding).
|
|
WithField("destination", route.Egress.Destination).
|
|
WithField("attempt", route.Attempt)
|
|
|
|
log.Debug("route request received")
|
|
|
|
if factory, err := rh.env.GetXgressRegistry().Factory(route.Egress.Binding); err == nil {
|
|
if dialer, err := factory.CreateDialer(rh.dialerCfg[route.Egress.Binding]); err == nil {
|
|
if rh.forwarder.Options.XgressDialDwellTime > 0 {
|
|
log.Infof("dwelling [%s] on dial", rh.forwarder.Options.XgressDialDwellTime)
|
|
time.Sleep(rh.forwarder.Options.XgressDialDwellTime)
|
|
}
|
|
|
|
params := newDialParams(rh.ch.PeerId(), route, rh.env.GetXgressBindHandler(), ctx, deadline)
|
|
if peerData, err := dialer.Dial(params); err == nil {
|
|
rh.completeRoute(msg, attempt, route, peerData, log)
|
|
} else {
|
|
errCode := classifyDialError(err)
|
|
|
|
rh.fail(msg, attempt, route, errors.Wrapf(err, "error creating route for [c/%s]", route.CircuitId), errCode, log)
|
|
}
|
|
} else {
|
|
var errCode byte = ctrl_msg.ErrorTypeMisconfiguredTerminator
|
|
rh.fail(msg, attempt, route, errors.Wrapf(err, "unable to create dialer for [c/%s]", route.CircuitId), errCode, log)
|
|
}
|
|
} else {
|
|
var errCode byte = ctrl_msg.ErrorTypeMisconfiguredTerminator
|
|
rh.fail(msg, attempt, route, errors.Wrapf(err, "error creating route for [c/%s]", route.CircuitId), errCode, log)
|
|
}
|
|
}
|
|
|
|
// classifyDialError maps a dial error to a specific error type code for circuit failure reporting.
|
|
func classifyDialError(err error) byte {
|
|
switch {
|
|
case errors.Is(err, syscall.ECONNREFUSED):
|
|
return ctrl_msg.ErrorTypeConnectionRefused
|
|
case isResourcesNotAvailable(err):
|
|
return ctrl_msg.ErrorTypeResourcesNotAvailable
|
|
case isDnsError(err):
|
|
return ctrl_msg.ErrorTypeDnsResolutionFailed
|
|
case isNetworkTimeout(err):
|
|
return ctrl_msg.ErrorTypeDialTimedOut
|
|
case errors.As(err, &xgress.MisconfiguredTerminatorError{}):
|
|
return ctrl_msg.ErrorTypeMisconfiguredTerminator
|
|
case errors.As(err, &xgress.InvalidTerminatorError{}):
|
|
return ctrl_msg.ErrorTypeInvalidTerminator
|
|
case isPortNotAllowedError(err):
|
|
return ctrl_msg.ErrorTypePortNotAllowed
|
|
case isRejectedByApplicationError(err):
|
|
return ctrl_msg.ErrorTypeRejectedByApplication
|
|
default:
|
|
return ctrl_msg.ErrorTypeGeneric
|
|
}
|
|
}
|
|
|
|
func isResourcesNotAvailable(err error) bool {
|
|
return errors.Is(err, syscall.EMFILE) || errors.Is(err, syscall.ENFILE) || errors.Is(err, syscall.ENOBUFS)
|
|
}
|
|
|
|
func isDnsError(err error) bool {
|
|
var dnsErr *net.DNSError
|
|
if errors.As(err, &dnsErr) {
|
|
return true
|
|
}
|
|
// ER/T hosted services send dial errors as strings via the SDK protocol,
|
|
// so the *net.DNSError type is lost. Fall back to string matching.
|
|
errMsg := err.Error()
|
|
return strings.Contains(errMsg, "no such host") || strings.Contains(errMsg, "server misbehaving")
|
|
}
|
|
|
|
func isPortNotAllowedError(err error) bool {
|
|
return strings.Contains(err.Error(), "not in allowed port ranges")
|
|
}
|
|
|
|
func isRejectedByApplicationError(err error) bool {
|
|
return strings.Contains(err.Error(), "rejected by application")
|
|
}
|
|
|
|
func isNetworkTimeout(err error) bool {
|
|
var netErr net.Error
|
|
return (errors.As(err, &netErr) && netErr.Timeout()) || errors.Is(err, syscall.ETIMEDOUT)
|
|
}
|
|
|
|
func newDialParams(ctrlId string, route *ctrl_pb.Route, bindHandler xgress.BindHandler, logContext logcontext.Context, deadline time.Time) *dialParams {
|
|
return &dialParams{
|
|
ctrlId: ctrlId,
|
|
Route: route,
|
|
circuitId: &identity.TokenId{Token: route.CircuitId, Data: route.Egress.PeerData},
|
|
bindHandler: bindHandler,
|
|
logContext: logContext,
|
|
deadline: deadline,
|
|
}
|
|
}
|
|
|
|
type dialParams struct {
|
|
*ctrl_pb.Route
|
|
ctrlId string
|
|
circuitId *identity.TokenId
|
|
bindHandler xgress.BindHandler
|
|
logContext logcontext.Context
|
|
deadline time.Time
|
|
}
|
|
|
|
func (self *dialParams) GetCtrlId() string {
|
|
return self.ctrlId
|
|
}
|
|
|
|
func (self *dialParams) GetDestination() string {
|
|
return self.Egress.Destination
|
|
}
|
|
|
|
func (self *dialParams) GetCircuitId() *identity.TokenId {
|
|
return self.circuitId
|
|
}
|
|
|
|
func (self *dialParams) GetAddress() xgress.Address {
|
|
return xgress.Address(self.Egress.Address)
|
|
}
|
|
|
|
func (self *dialParams) GetBindHandler() xgress.BindHandler {
|
|
return self.bindHandler
|
|
}
|
|
|
|
func (self *dialParams) GetLogContext() logcontext.Context {
|
|
return self.logContext
|
|
}
|
|
|
|
func (self *dialParams) GetDeadline() time.Time {
|
|
return self.deadline
|
|
}
|
|
|
|
func (self *dialParams) GetCircuitTags() map[string]string {
|
|
return self.Tags
|
|
}
|