kops/upup/pkg/fi/cloudup/azure/verifier.go

164 lines
5.2 KiB
Go

/*
Copyright 2020 The Kubernetes Authors.
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
http://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 azure
import (
"context"
"fmt"
"net"
"net/http"
"strconv"
"strings"
"github.com/Azure/azure-sdk-for-go/sdk/azidentity"
compute "github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/compute/armcompute"
network "github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/network/armnetwork"
"k8s.io/kops/pkg/bootstrap"
"k8s.io/kops/pkg/wellknownports"
)
type AzureVerifierOptions struct {
ClusterName string `json:"clusterName,omitempty"`
}
type azureVerifier struct {
client *client
clusterName string
}
var _ bootstrap.Verifier = &azureVerifier{}
func NewAzureVerifier(ctx context.Context, opt *AzureVerifierOptions) (bootstrap.Verifier, error) {
azureClient, err := newClient()
if err != nil {
return nil, err
}
if opt == nil || opt.ClusterName == "" {
return nil, fmt.Errorf("determining cluster name")
}
return &azureVerifier{
client: azureClient,
clusterName: opt.ClusterName,
}, nil
}
func (a azureVerifier) VerifyToken(ctx context.Context, rawRequest *http.Request, token string, body []byte) (*bootstrap.VerifyResult, error) {
if !strings.HasPrefix(token, AzureAuthenticationTokenPrefix) {
return nil, bootstrap.ErrNotThisVerifier
}
v := strings.Split(strings.TrimPrefix(token, AzureAuthenticationTokenPrefix), " ")
if len(v) != 3 {
return nil, fmt.Errorf("incorrect token format")
}
vmId := v[0]
vmssName := v[1]
vmssIndex := v[2]
if !strings.HasSuffix(vmssName, "."+a.clusterName) {
return nil, fmt.Errorf("matching cluster name %q to VMSS %q", a.clusterName, vmssName)
}
igName := strings.TrimSuffix(vmssName, "."+a.clusterName)
vm, err := a.client.vmsClient.Get(ctx, a.client.resourceGroup, vmssName, vmssIndex, nil)
if err != nil {
return nil, fmt.Errorf("getting info for VMSS virtual machine %q #%s: %w", vmssName, vmssIndex, err)
}
if vm.Properties == nil || vm.Properties.VMID == nil {
return nil, fmt.Errorf("determining VMID for VMSS %q virtual machine #%s", vmssName, vmssIndex)
}
if vmId != *vm.Properties.VMID {
return nil, fmt.Errorf("matching VMID %q to VMSS %q virtual machine #%s", vmId, vmssName, vmssIndex)
}
if vm.Properties.OSProfile == nil || vm.Properties.OSProfile.ComputerName == nil || *vm.Properties.OSProfile.ComputerName == "" {
return nil, fmt.Errorf("determining ComputerName for VMSS %q virtual machine #%s", vmssName, vmssIndex)
}
nodeName := strings.ToLower(*vm.Properties.OSProfile.ComputerName)
ni, err := a.client.nisClient.GetVirtualMachineScaleSetNetworkInterface(ctx, a.client.resourceGroup, vmssName, vmssIndex, vmssName+"-netconfig", nil)
if err != nil {
return nil, fmt.Errorf("getting info for VMSS network interface %q #%s: %w", vmssName, vmssIndex, err)
}
var addrs []string
var challengeEndpoints []string
for _, ipc := range ni.Properties.IPConfigurations {
if ipc.Properties != nil && ipc.Properties.PrivateIPAddress != nil {
addrs = append(addrs, *ipc.Properties.PrivateIPAddress)
challengeEndpoints = append(challengeEndpoints, net.JoinHostPort(*ipc.Properties.PrivateIPAddress, strconv.Itoa(wellknownports.NodeupChallenge)))
}
}
if len(addrs) == 0 {
return nil, fmt.Errorf("determining challenge endpoint for VMSS %q virtual machine #%s", vmssName, vmssIndex)
}
if len(challengeEndpoints) == 0 {
return nil, fmt.Errorf("determining challenge endpoint for VMSS %q virtual machine #%s", vmssName, vmssIndex)
}
result := &bootstrap.VerifyResult{
NodeName: nodeName,
InstanceGroupName: igName,
CertificateNames: addrs,
ChallengeEndpoint: challengeEndpoints[0],
}
return result, nil
}
// client is an Azure client.
type client struct {
resourceGroup string
nisClient *network.InterfacesClient
vmsClient *compute.VirtualMachineScaleSetVMsClient
}
// newClient returns a new Client.
func newClient() (*client, error) {
m, err := queryInstanceMetadata()
if err != nil || m == nil {
return nil, fmt.Errorf("getting instance metadata: %w", err)
}
if m.Compute == nil || m.Compute.ResourceGroupName == "" {
return nil, fmt.Errorf("empty resource group name")
}
if m.Compute == nil || m.Compute.SubscriptionID == "" {
return nil, fmt.Errorf("empty subscription name")
}
cred, err := azidentity.NewDefaultAzureCredential(nil)
if err != nil {
return nil, fmt.Errorf("creating an identity: %w", err)
}
nisClient, err := network.NewInterfacesClient(m.Compute.SubscriptionID, cred, nil)
if err != nil {
return nil, fmt.Errorf("creating interfaces client: %w", err)
}
vmsClient, err := compute.NewVirtualMachineScaleSetVMsClient(m.Compute.SubscriptionID, cred, nil)
if err != nil {
return nil, fmt.Errorf("creating VMSSVMs client: %w", err)
}
return &client{
resourceGroup: m.Compute.ResourceGroupName,
nisClient: nisClient,
vmsClient: vmsClient,
}, nil
}