2019-01-01 08:23:01 +00:00
|
|
|
package tunnel
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"crypto/tls"
|
|
|
|
"fmt"
|
|
|
|
"net"
|
2022-04-04 21:54:50 +00:00
|
|
|
"os"
|
2019-07-18 12:00:07 +00:00
|
|
|
"reflect"
|
2019-01-01 08:23:01 +00:00
|
|
|
"sync"
|
|
|
|
|
|
|
|
"github.com/gorilla/websocket"
|
2022-03-29 18:36:48 +00:00
|
|
|
agentconfig "github.com/k3s-io/k3s/pkg/agent/config"
|
2022-03-02 23:47:27 +00:00
|
|
|
"github.com/k3s-io/k3s/pkg/agent/proxy"
|
|
|
|
"github.com/k3s-io/k3s/pkg/daemons/config"
|
|
|
|
"github.com/k3s-io/k3s/pkg/util"
|
|
|
|
"github.com/k3s-io/k3s/pkg/version"
|
2019-05-09 22:05:51 +00:00
|
|
|
"github.com/rancher/remotedialer"
|
2019-01-01 08:23:01 +00:00
|
|
|
"github.com/sirupsen/logrus"
|
2022-04-04 21:54:50 +00:00
|
|
|
"github.com/yl2chen/cidranger"
|
2019-06-26 21:26:20 +00:00
|
|
|
v1 "k8s.io/api/core/v1"
|
|
|
|
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
|
|
|
|
"k8s.io/apimachinery/pkg/fields"
|
2022-04-21 20:56:39 +00:00
|
|
|
"k8s.io/apimachinery/pkg/runtime"
|
|
|
|
"k8s.io/apimachinery/pkg/watch"
|
2019-06-26 21:26:20 +00:00
|
|
|
"k8s.io/client-go/kubernetes"
|
2019-10-27 05:53:25 +00:00
|
|
|
"k8s.io/client-go/rest"
|
2022-04-21 20:56:39 +00:00
|
|
|
"k8s.io/client-go/tools/cache"
|
2019-01-01 08:23:01 +00:00
|
|
|
"k8s.io/client-go/tools/clientcmd"
|
2022-04-21 20:56:39 +00:00
|
|
|
toolswatch "k8s.io/client-go/tools/watch"
|
2019-01-01 08:23:01 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
var (
|
|
|
|
ports = map[string]bool{
|
|
|
|
"10250": true,
|
|
|
|
"10010": true,
|
|
|
|
}
|
|
|
|
)
|
|
|
|
|
2020-04-28 22:00:30 +00:00
|
|
|
func Setup(ctx context.Context, config *config.Node, proxy proxy.Proxy) error {
|
2019-10-27 05:53:25 +00:00
|
|
|
restConfig, err := clientcmd.BuildConfigFromFlags("", config.AgentConfig.KubeConfigK3sController)
|
2019-01-01 08:23:01 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2019-10-27 05:53:25 +00:00
|
|
|
client, err := kubernetes.NewForConfig(restConfig)
|
2019-01-01 08:23:01 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2019-10-27 05:53:25 +00:00
|
|
|
nodeRestConfig, err := clientcmd.BuildConfigFromFlags("", config.AgentConfig.KubeConfigKubelet)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
tlsConfig, err := rest.TLSConfigFor(nodeRestConfig)
|
2019-06-26 21:26:20 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2022-04-04 21:54:50 +00:00
|
|
|
tunnel := &agentTunnel{
|
|
|
|
client: client,
|
|
|
|
cidrs: cidranger.NewPCTrieRanger(),
|
|
|
|
}
|
|
|
|
|
2022-04-15 00:31:07 +00:00
|
|
|
// The loadbalancer is only disabled when there is a local apiserver. Servers without a local
|
|
|
|
// apiserver load-balance to themselves initially, then switch over to an apiserver node as soon
|
|
|
|
// as we get some addresses from the code below.
|
|
|
|
if proxy.IsSupervisorLBEnabled() && proxy.SupervisorURL() != "" {
|
|
|
|
logrus.Info("Getting list of apiserver endpoints from server")
|
|
|
|
// If not running an apiserver locally, try to get a list of apiservers from the server we're
|
|
|
|
// connecting to. If that fails, fall back to querying the endpoints list from Kubernetes. This
|
|
|
|
// fallback requires that the server we're joining be running an apiserver, but is the only safe
|
|
|
|
// thing to do if its supervisor is down-level and can't provide us with an endpoint list.
|
|
|
|
if addresses := agentconfig.APIServers(ctx, config, proxy); len(addresses) > 0 {
|
|
|
|
proxy.SetSupervisorDefault(addresses[0])
|
|
|
|
proxy.Update(addresses)
|
|
|
|
} else {
|
|
|
|
if endpoint, _ := client.CoreV1().Endpoints("default").Get(ctx, "kubernetes", metav1.GetOptions{}); endpoint != nil {
|
|
|
|
if addresses := util.GetAddresses(endpoint); len(addresses) > 0 {
|
|
|
|
proxy.Update(addresses)
|
|
|
|
}
|
2022-03-29 18:36:48 +00:00
|
|
|
}
|
2021-02-12 15:35:57 +00:00
|
|
|
}
|
2019-06-26 21:26:20 +00:00
|
|
|
}
|
|
|
|
|
2021-10-12 06:13:10 +00:00
|
|
|
// Attempt to connect to supervisors, storing their cancellation function for later when we
|
|
|
|
// need to disconnect.
|
2019-06-26 21:26:20 +00:00
|
|
|
disconnect := map[string]context.CancelFunc{}
|
|
|
|
wg := &sync.WaitGroup{}
|
2020-04-28 22:00:30 +00:00
|
|
|
for _, address := range proxy.SupervisorAddresses() {
|
2019-06-26 21:26:20 +00:00
|
|
|
if _, ok := disconnect[address]; !ok {
|
2022-04-04 21:54:50 +00:00
|
|
|
disconnect[address] = tunnel.connect(ctx, wg, address, tlsConfig)
|
2019-06-26 21:26:20 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-10-12 06:13:10 +00:00
|
|
|
// Once the apiserver is up, go into a watch loop, adding and removing tunnels as endpoints come
|
2022-04-21 20:56:39 +00:00
|
|
|
// and go from the cluster.
|
2019-06-26 21:26:20 +00:00
|
|
|
go func() {
|
2022-04-29 19:57:38 +00:00
|
|
|
if err := util.WaitForAPIServerReady(ctx, config.AgentConfig.KubeConfigKubelet, util.DefaultAPIServerReadyTimeout); err != nil {
|
2021-11-11 21:01:49 +00:00
|
|
|
logrus.Warnf("Tunnel endpoint watch failed to wait for apiserver ready: %v", err)
|
|
|
|
}
|
2022-04-21 20:56:39 +00:00
|
|
|
|
|
|
|
endpoints := client.CoreV1().Endpoints(metav1.NamespaceDefault)
|
|
|
|
fieldSelector := fields.Set{metav1.ObjectNameField: "kubernetes"}.String()
|
|
|
|
lw := &cache.ListWatch{
|
|
|
|
ListFunc: func(options metav1.ListOptions) (object runtime.Object, e error) {
|
|
|
|
options.FieldSelector = fieldSelector
|
|
|
|
return endpoints.List(ctx, options)
|
|
|
|
},
|
|
|
|
WatchFunc: func(options metav1.ListOptions) (i watch.Interface, e error) {
|
|
|
|
options.FieldSelector = fieldSelector
|
|
|
|
return endpoints.Watch(ctx, options)
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
_, _, watch, done := toolswatch.NewIndexerInformerWatcher(lw, &v1.Endpoints{})
|
|
|
|
|
|
|
|
defer func() {
|
|
|
|
watch.Stop()
|
|
|
|
<-done
|
|
|
|
}()
|
|
|
|
|
2019-06-26 21:26:20 +00:00
|
|
|
for {
|
2022-04-21 20:56:39 +00:00
|
|
|
select {
|
|
|
|
case <-ctx.Done():
|
|
|
|
return
|
|
|
|
case ev, ok := <-watch.ResultChan():
|
2021-11-01 06:20:16 +00:00
|
|
|
endpoint, ok := ev.Object.(*v1.Endpoints)
|
|
|
|
if !ok {
|
2022-04-21 20:56:39 +00:00
|
|
|
logrus.Errorf("Tunnel watch failed: event object not of type v1.Endpoints")
|
|
|
|
continue
|
2021-11-01 06:20:16 +00:00
|
|
|
}
|
2019-06-26 21:26:20 +00:00
|
|
|
|
2021-11-01 06:20:16 +00:00
|
|
|
newAddresses := util.GetAddresses(endpoint)
|
|
|
|
if reflect.DeepEqual(newAddresses, proxy.SupervisorAddresses()) {
|
2022-04-21 20:56:39 +00:00
|
|
|
continue
|
2021-11-01 06:20:16 +00:00
|
|
|
}
|
|
|
|
proxy.Update(newAddresses)
|
2019-07-10 21:50:23 +00:00
|
|
|
|
2021-11-01 06:20:16 +00:00
|
|
|
validEndpoint := map[string]bool{}
|
2019-07-10 21:50:23 +00:00
|
|
|
|
2021-11-01 06:20:16 +00:00
|
|
|
for _, address := range proxy.SupervisorAddresses() {
|
|
|
|
validEndpoint[address] = true
|
|
|
|
if _, ok := disconnect[address]; !ok {
|
2022-04-04 21:54:50 +00:00
|
|
|
disconnect[address] = tunnel.connect(ctx, nil, address, tlsConfig)
|
2019-06-26 21:26:20 +00:00
|
|
|
}
|
2021-11-01 06:20:16 +00:00
|
|
|
}
|
2019-06-26 21:26:20 +00:00
|
|
|
|
2021-11-01 06:20:16 +00:00
|
|
|
for address, cancel := range disconnect {
|
|
|
|
if !validEndpoint[address] {
|
|
|
|
cancel()
|
|
|
|
delete(disconnect, address)
|
|
|
|
logrus.Infof("Stopped tunnel to %s", address)
|
2019-06-26 21:26:20 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}()
|
|
|
|
|
2019-07-18 01:15:15 +00:00
|
|
|
wait := make(chan int, 1)
|
|
|
|
go func() {
|
|
|
|
wg.Wait()
|
|
|
|
wait <- 0
|
|
|
|
}()
|
|
|
|
|
|
|
|
select {
|
|
|
|
case <-ctx.Done():
|
2020-09-21 16:56:03 +00:00
|
|
|
logrus.Error("Tunnel context canceled while waiting for connection")
|
2019-07-18 01:15:15 +00:00
|
|
|
return ctx.Err()
|
|
|
|
case <-wait:
|
|
|
|
}
|
2019-07-18 00:13:40 +00:00
|
|
|
|
2019-06-26 21:26:20 +00:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2022-04-04 21:54:50 +00:00
|
|
|
type agentTunnel struct {
|
|
|
|
client kubernetes.Interface
|
|
|
|
cidrs cidranger.Ranger
|
|
|
|
}
|
|
|
|
|
|
|
|
// authorized determines whether or not a dial request is authorized.
|
|
|
|
// Connections to the local kubelet ports are allowed.
|
|
|
|
// Connections to other IPs are allowed if they are contained in a CIDR managed by this node.
|
|
|
|
// All other requests are rejected.
|
|
|
|
func (a *agentTunnel) authorized(ctx context.Context, proto, address string) bool {
|
|
|
|
logrus.Debugf("Tunnel authorizer checking dial request for %s", address)
|
|
|
|
host, port, err := net.SplitHostPort(address)
|
|
|
|
if err == nil {
|
|
|
|
if proto == "tcp" && ports[port] && (host == "127.0.0.1" || host == "::1") {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
if ip := net.ParseIP(host); ip != nil {
|
|
|
|
// lazy populate the cidrs from the node object
|
|
|
|
if a.cidrs.Len() == 0 {
|
|
|
|
logrus.Debugf("Tunnel authorizer getting Pod CIDRs for %s", os.Getenv("NODE_NAME"))
|
|
|
|
node, err := a.client.CoreV1().Nodes().Get(ctx, os.Getenv("NODE_NAME"), metav1.GetOptions{})
|
|
|
|
if err != nil {
|
|
|
|
logrus.Warnf("Tunnel authorizer failed to get Pod CIDRs: %v", err)
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
for _, cidr := range node.Spec.PodCIDRs {
|
|
|
|
if _, n, err := net.ParseCIDR(cidr); err == nil {
|
|
|
|
logrus.Infof("Tunnel authorizer added Pod CIDR %s", cidr)
|
|
|
|
a.cidrs.Insert(cidranger.NewBasicRangerEntry(*n))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if nets, err := a.cidrs.ContainingNetworks(ip); err == nil && len(nets) > 0 {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
// connect initiates a connection to the remotedialer server. Incoming dial requests from
|
|
|
|
// the server will be checked by the authorizer function prior to being fulfilled.
|
|
|
|
func (a *agentTunnel) connect(rootCtx context.Context, waitGroup *sync.WaitGroup, address string, tlsConfig *tls.Config) context.CancelFunc {
|
2020-05-05 22:09:04 +00:00
|
|
|
wsURL := fmt.Sprintf("wss://%s/v1-"+version.Program+"/connect", address)
|
2019-10-27 05:53:25 +00:00
|
|
|
ws := &websocket.Dialer{
|
|
|
|
TLSClientConfig: tlsConfig,
|
2019-01-01 08:23:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
once := sync.Once{}
|
2019-06-26 21:26:20 +00:00
|
|
|
if waitGroup != nil {
|
|
|
|
waitGroup.Add(1)
|
|
|
|
}
|
|
|
|
|
2019-07-18 12:00:07 +00:00
|
|
|
ctx, cancel := context.WithCancel(rootCtx)
|
2019-01-01 08:23:01 +00:00
|
|
|
|
|
|
|
go func() {
|
|
|
|
for {
|
2019-10-27 05:53:25 +00:00
|
|
|
remotedialer.ClientConnect(ctx, wsURL, nil, ws, func(proto, address string) bool {
|
2022-04-04 21:54:50 +00:00
|
|
|
return a.authorized(rootCtx, proto, address)
|
2019-01-01 08:23:01 +00:00
|
|
|
}, func(_ context.Context) error {
|
2019-06-26 21:26:20 +00:00
|
|
|
if waitGroup != nil {
|
|
|
|
once.Do(waitGroup.Done)
|
|
|
|
}
|
2019-01-01 08:23:01 +00:00
|
|
|
return nil
|
|
|
|
})
|
2019-06-26 21:26:20 +00:00
|
|
|
|
|
|
|
if ctx.Err() != nil {
|
2019-07-18 00:13:40 +00:00
|
|
|
if waitGroup != nil {
|
|
|
|
once.Do(waitGroup.Done)
|
|
|
|
}
|
2019-06-26 21:26:20 +00:00
|
|
|
return
|
|
|
|
}
|
2019-01-01 08:23:01 +00:00
|
|
|
}
|
|
|
|
}()
|
|
|
|
|
2019-06-26 21:26:20 +00:00
|
|
|
return cancel
|
2019-01-01 08:23:01 +00:00
|
|
|
}
|