2019-01-01 08:23:01 +00:00
|
|
|
package control
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
2022-04-04 21:54:50 +00:00
|
|
|
"fmt"
|
2019-01-01 08:23:01 +00:00
|
|
|
"net"
|
|
|
|
"net/http"
|
2019-10-27 05:53:25 +00:00
|
|
|
"strings"
|
2019-01-01 08:23:01 +00:00
|
|
|
"time"
|
|
|
|
|
2022-04-04 21:54:50 +00:00
|
|
|
"github.com/k3s-io/k3s/pkg/daemons/config"
|
|
|
|
"github.com/k3s-io/k3s/pkg/daemons/control/proxy"
|
|
|
|
"github.com/k3s-io/k3s/pkg/nodeconfig"
|
|
|
|
"github.com/k3s-io/k3s/pkg/version"
|
2019-05-09 22:05:51 +00:00
|
|
|
"github.com/rancher/remotedialer"
|
2022-03-28 20:45:39 +00:00
|
|
|
"github.com/sirupsen/logrus"
|
2022-04-04 21:54:50 +00:00
|
|
|
"github.com/yl2chen/cidranger"
|
|
|
|
v1 "k8s.io/api/core/v1"
|
2019-01-01 08:23:01 +00:00
|
|
|
"k8s.io/apiserver/pkg/endpoints/request"
|
2022-04-04 21:54:50 +00:00
|
|
|
"k8s.io/client-go/kubernetes"
|
2019-01-01 08:23:01 +00:00
|
|
|
)
|
|
|
|
|
2022-03-28 20:45:39 +00:00
|
|
|
func loggingErrorWriter(rw http.ResponseWriter, req *http.Request, code int, err error) {
|
2022-04-04 21:54:50 +00:00
|
|
|
logrus.Debugf("Tunnel server error: %d %v", code, err)
|
2022-03-28 20:45:39 +00:00
|
|
|
rw.WriteHeader(code)
|
|
|
|
rw.Write([]byte(err.Error()))
|
|
|
|
}
|
|
|
|
|
2022-04-04 21:54:50 +00:00
|
|
|
func setupTunnel(ctx context.Context, cfg *config.Control) (http.Handler, error) {
|
|
|
|
tunnel := &TunnelServer{
|
|
|
|
cidrs: cidranger.NewPCTrieRanger(),
|
|
|
|
config: cfg,
|
|
|
|
server: remotedialer.New(authorizer, loggingErrorWriter),
|
|
|
|
}
|
|
|
|
go tunnel.watchNodes(ctx)
|
|
|
|
return tunnel, nil
|
2019-01-01 08:23:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func authorizer(req *http.Request) (clientKey string, authed bool, err error) {
|
|
|
|
user, ok := request.UserFrom(req.Context())
|
|
|
|
if !ok {
|
|
|
|
return "", false, nil
|
|
|
|
}
|
|
|
|
|
2019-10-27 05:53:25 +00:00
|
|
|
if strings.HasPrefix(user.GetName(), "system:node:") {
|
|
|
|
return strings.TrimPrefix(user.GetName(), "system:node:"), true, nil
|
2019-01-01 08:23:01 +00:00
|
|
|
}
|
|
|
|
|
2019-10-27 05:53:25 +00:00
|
|
|
return "", false, nil
|
2019-01-01 08:23:01 +00:00
|
|
|
}
|
2022-04-04 21:54:50 +00:00
|
|
|
|
|
|
|
// explicit interface check
|
|
|
|
var _ http.Handler = &TunnelServer{}
|
|
|
|
|
|
|
|
type TunnelServer struct {
|
|
|
|
cidrs cidranger.Ranger
|
|
|
|
client kubernetes.Interface
|
|
|
|
config *config.Control
|
|
|
|
server *remotedialer.Server
|
|
|
|
}
|
|
|
|
|
|
|
|
// explicit interface check
|
|
|
|
var _ cidranger.RangerEntry = &nodeAddress{}
|
|
|
|
var _ cidranger.RangerEntry = &nodeCIDR{}
|
|
|
|
|
|
|
|
type nodeAddress struct {
|
|
|
|
cidr net.IPNet
|
|
|
|
node string
|
|
|
|
}
|
|
|
|
|
|
|
|
func (n *nodeAddress) Network() net.IPNet {
|
|
|
|
return n.cidr
|
|
|
|
}
|
|
|
|
|
|
|
|
type nodeCIDR struct {
|
|
|
|
cidr net.IPNet
|
|
|
|
clusterEgress bool
|
|
|
|
node string
|
|
|
|
}
|
|
|
|
|
|
|
|
func (n *nodeCIDR) Network() net.IPNet {
|
|
|
|
return n.cidr
|
|
|
|
}
|
|
|
|
|
|
|
|
// ServeHTTP handles either CONNECT requests, or websocket requests to the remotedialer server
|
|
|
|
func (t *TunnelServer) ServeHTTP(resp http.ResponseWriter, req *http.Request) {
|
|
|
|
logrus.Debugf("Tunnel server handing %s %s request for %s from %s", req.Proto, req.Method, req.URL, req.RemoteAddr)
|
|
|
|
if req.Method == http.MethodConnect {
|
|
|
|
t.serveConnect(resp, req)
|
|
|
|
} else {
|
|
|
|
t.server.ServeHTTP(resp, req)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// watchNodes waits for the runtime core to become available,
|
|
|
|
// and registers an OnChange handler to observe PodCIDR changes.
|
|
|
|
func (t *TunnelServer) watchNodes(ctx context.Context) {
|
|
|
|
for {
|
|
|
|
if t.config.Runtime.Core != nil {
|
|
|
|
t.config.Runtime.Core.Core().V1().Node().OnChange(ctx, version.Program+"-tunnel-server", t.onChangeNode)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
logrus.Infof("Tunnel server waiting for runtime core to become available")
|
|
|
|
time.Sleep(5 * time.Second)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// onChangeNode updates the node address/CIDR mappings by observing changes to nodes.
|
|
|
|
func (t *TunnelServer) onChangeNode(nodeName string, node *v1.Node) (*v1.Node, error) {
|
|
|
|
if node != nil {
|
|
|
|
logrus.Debugf("Tunnel server updating node %s", nodeName)
|
|
|
|
_, clusterEgress := node.Labels[nodeconfig.ClusterEgressLabel]
|
|
|
|
// Add all node IP addresses
|
|
|
|
for _, addr := range node.Status.Addresses {
|
|
|
|
if addr.Type == v1.NodeInternalIP || addr.Type == v1.NodeExternalIP {
|
|
|
|
address := addr.Address
|
|
|
|
if strings.Contains(address, ":") {
|
|
|
|
address += "/128"
|
|
|
|
} else {
|
|
|
|
address += "/32"
|
|
|
|
}
|
|
|
|
if _, n, err := net.ParseCIDR(address); err == nil {
|
|
|
|
if node.DeletionTimestamp != nil {
|
|
|
|
t.cidrs.Remove(*n)
|
|
|
|
} else {
|
|
|
|
t.cidrs.Insert(&nodeAddress{cidr: *n, node: nodeName})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// Add all node PodCIDRs
|
|
|
|
for _, cidr := range node.Spec.PodCIDRs {
|
|
|
|
if _, n, err := net.ParseCIDR(cidr); err == nil {
|
|
|
|
if node.DeletionTimestamp != nil {
|
|
|
|
t.cidrs.Remove(*n)
|
|
|
|
} else {
|
|
|
|
t.cidrs.Insert(&nodeCIDR{cidr: *n, clusterEgress: clusterEgress, node: nodeName})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return node, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// serveConnect attempts to handle the HTTP CONNECT request by dialing
|
|
|
|
// a connection, either locally or via the remotedialer tunnel.
|
|
|
|
func (t *TunnelServer) serveConnect(resp http.ResponseWriter, req *http.Request) {
|
|
|
|
bconn, err := t.dialBackend(req.Host)
|
|
|
|
if err != nil {
|
|
|
|
http.Error(resp, fmt.Sprintf("no tunnels available: %v", err), http.StatusInternalServerError)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
hijacker, ok := resp.(http.Hijacker)
|
|
|
|
if !ok {
|
|
|
|
http.Error(resp, "hijacking not supported", http.StatusInternalServerError)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
resp.WriteHeader(http.StatusOK)
|
|
|
|
|
|
|
|
rconn, _, err := hijacker.Hijack()
|
|
|
|
if err != nil {
|
|
|
|
http.Error(resp, err.Error(), http.StatusInternalServerError)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
proxy.Proxy(rconn, bconn)
|
|
|
|
}
|
|
|
|
|
|
|
|
// dialBackend determines where to route the connection request to, and returns
|
|
|
|
// a dialed connection if possible. Note that in the case of a remotedialer
|
|
|
|
// tunnel connection, the agent may return an error if the agent's authorizer
|
|
|
|
// denies the connection, or if there is some other error in actually dialing
|
|
|
|
// the requested endpoint.
|
|
|
|
func (t *TunnelServer) dialBackend(addr string) (net.Conn, error) {
|
|
|
|
host, port, err := net.SplitHostPort(addr)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
loopback := t.config.Loopback()
|
|
|
|
|
|
|
|
var node string
|
|
|
|
var toKubelet, useTunnel bool
|
|
|
|
if ip := net.ParseIP(host); ip != nil {
|
|
|
|
// Destination is an IP address, check to see if the target is a CIDR or node address.
|
|
|
|
// We can only use the tunnel for egress to pods if the agent supports it.
|
|
|
|
if nets, err := t.cidrs.ContainingNetworks(ip); err == nil && len(nets) > 0 {
|
|
|
|
switch n := nets[0].(type) {
|
|
|
|
case *nodeAddress:
|
|
|
|
node = n.node
|
|
|
|
toKubelet = true
|
|
|
|
useTunnel = true
|
|
|
|
case *nodeCIDR:
|
|
|
|
node = n.node
|
|
|
|
useTunnel = n.clusterEgress
|
|
|
|
default:
|
|
|
|
logrus.Debugf("Tunnel server CIDR lookup returned unknown type %T for address %s", nets[0], ip)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
// Destination is a kubelet by name, it is safe to use the tunnel.
|
|
|
|
node = host
|
|
|
|
toKubelet = true
|
|
|
|
useTunnel = true
|
|
|
|
}
|
|
|
|
|
|
|
|
// Always dial kubelets via the loopback address.
|
|
|
|
if toKubelet {
|
|
|
|
addr = fmt.Sprintf("%s:%s", loopback, port)
|
|
|
|
}
|
|
|
|
|
|
|
|
// If connecting to something hosted by the local node, don't tunnel
|
|
|
|
if node == t.config.ServerNodeName {
|
|
|
|
useTunnel = false
|
|
|
|
}
|
|
|
|
|
|
|
|
if t.server.HasSession(node) {
|
|
|
|
if useTunnel {
|
|
|
|
// Have a session and it is safe to use for this destination, do so.
|
|
|
|
logrus.Debugf("Tunnel server dialing %s via session to %s", addr, node)
|
|
|
|
return t.server.Dial(node, 15*time.Second, "tcp", addr)
|
|
|
|
}
|
|
|
|
// Have a session but the agent doesn't support tunneling to this destination or
|
|
|
|
// the destination is local; fall back to direct connection.
|
|
|
|
logrus.Debugf("Tunnel server dialing %s directly", addr)
|
|
|
|
return net.Dial("tcp", addr)
|
|
|
|
}
|
|
|
|
|
|
|
|
// don't provide a proxy connection for anything else
|
|
|
|
logrus.Debugf("Tunnel server rejecting connection to %s", addr)
|
|
|
|
return nil, fmt.Errorf("no sessions available for host %s", host)
|
|
|
|
}
|