mirror of
https://github.com/siderolabs/talos.git
synced 2025-10-28 23:11:37 +01:00
See https://github.com/cosi-project/runtime/pull/336 Signed-off-by: Andrey Smirnov <andrey.smirnov@siderolabs.com>
217 lines
6.5 KiB
Go
217 lines
6.5 KiB
Go
// This Source Code Form is subject to the terms of the Mozilla Public
|
|
// License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
// file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
|
|
package network
|
|
|
|
import (
|
|
"bytes"
|
|
"context"
|
|
"fmt"
|
|
"strings"
|
|
"text/tabwriter"
|
|
|
|
"github.com/cosi-project/runtime/pkg/controller"
|
|
"github.com/cosi-project/runtime/pkg/resource"
|
|
"github.com/cosi-project/runtime/pkg/safe"
|
|
"github.com/cosi-project/runtime/pkg/state"
|
|
"github.com/siderolabs/gen/optional"
|
|
"go.uber.org/zap"
|
|
|
|
talosconfig "github.com/siderolabs/talos/pkg/machinery/config"
|
|
"github.com/siderolabs/talos/pkg/machinery/resources/config"
|
|
"github.com/siderolabs/talos/pkg/machinery/resources/files"
|
|
"github.com/siderolabs/talos/pkg/machinery/resources/network"
|
|
)
|
|
|
|
// EtcFileController creates /etc/hostname and /etc/resolv.conf files based on finalized network configuration.
|
|
type EtcFileController struct{}
|
|
|
|
// Name implements controller.Controller interface.
|
|
func (ctrl *EtcFileController) Name() string {
|
|
return "network.EtcFileController"
|
|
}
|
|
|
|
// Inputs implements controller.Controller interface.
|
|
func (ctrl *EtcFileController) Inputs() []controller.Input {
|
|
return []controller.Input{
|
|
{
|
|
Namespace: config.NamespaceName,
|
|
Type: config.MachineConfigType,
|
|
ID: optional.Some(config.V1Alpha1ID),
|
|
Kind: controller.InputWeak,
|
|
},
|
|
{
|
|
Namespace: network.NamespaceName,
|
|
Type: network.HostnameStatusType,
|
|
ID: optional.Some(network.HostnameID),
|
|
Kind: controller.InputWeak,
|
|
},
|
|
{
|
|
Namespace: network.NamespaceName,
|
|
Type: network.ResolverStatusType,
|
|
ID: optional.Some(network.ResolverID),
|
|
Kind: controller.InputWeak,
|
|
},
|
|
{
|
|
Namespace: network.NamespaceName,
|
|
Type: network.NodeAddressType,
|
|
ID: optional.Some(network.NodeAddressDefaultID),
|
|
Kind: controller.InputWeak,
|
|
},
|
|
}
|
|
}
|
|
|
|
// Outputs implements controller.Controller interface.
|
|
func (ctrl *EtcFileController) Outputs() []controller.Output {
|
|
return []controller.Output{
|
|
{
|
|
Type: files.EtcFileSpecType,
|
|
Kind: controller.OutputShared,
|
|
},
|
|
}
|
|
}
|
|
|
|
// Run implements controller.Controller interface.
|
|
//
|
|
//nolint:gocyclo
|
|
func (ctrl *EtcFileController) Run(ctx context.Context, r controller.Runtime, logger *zap.Logger) error {
|
|
for {
|
|
select {
|
|
case <-ctx.Done():
|
|
return nil
|
|
case <-r.EventCh():
|
|
}
|
|
|
|
var cfgProvider talosconfig.Config
|
|
|
|
cfg, err := safe.ReaderGetByID[*config.MachineConfig](ctx, r, config.V1Alpha1ID)
|
|
if err != nil {
|
|
if !state.IsNotFoundError(err) {
|
|
return fmt.Errorf("error getting config: %w", err)
|
|
}
|
|
} else {
|
|
cfgProvider = cfg.Config()
|
|
}
|
|
|
|
var resolverStatus *network.ResolverStatusSpec
|
|
|
|
rStatus, err := r.Get(ctx, resource.NewMetadata(network.NamespaceName, network.ResolverStatusType, network.ResolverID, resource.VersionUndefined))
|
|
if err != nil {
|
|
if !state.IsNotFoundError(err) {
|
|
return fmt.Errorf("error getting resolver status: %w", err)
|
|
}
|
|
} else {
|
|
resolverStatus = rStatus.(*network.ResolverStatus).TypedSpec()
|
|
}
|
|
|
|
var hostnameStatus *network.HostnameStatusSpec
|
|
|
|
hStatus, err := r.Get(ctx, resource.NewMetadata(network.NamespaceName, network.HostnameStatusType, network.HostnameID, resource.VersionUndefined))
|
|
if err != nil {
|
|
if !state.IsNotFoundError(err) {
|
|
return fmt.Errorf("error getting hostname status: %w", err)
|
|
}
|
|
} else {
|
|
hostnameStatus = hStatus.(*network.HostnameStatus).TypedSpec()
|
|
}
|
|
|
|
var nodeAddressStatus *network.NodeAddressSpec
|
|
|
|
naStatus, err := r.Get(ctx, resource.NewMetadata(network.NamespaceName, network.NodeAddressType, network.NodeAddressDefaultID, resource.VersionUndefined))
|
|
if err != nil {
|
|
if !state.IsNotFoundError(err) {
|
|
return fmt.Errorf("error getting network address status: %w", err)
|
|
}
|
|
} else {
|
|
nodeAddressStatus = naStatus.(*network.NodeAddress).TypedSpec()
|
|
}
|
|
|
|
if resolverStatus != nil {
|
|
if err = r.Modify(ctx, files.NewEtcFileSpec(files.NamespaceName, "resolv.conf"),
|
|
func(r resource.Resource) error {
|
|
r.(*files.EtcFileSpec).TypedSpec().Contents = ctrl.renderResolvConf(resolverStatus, hostnameStatus, cfgProvider)
|
|
r.(*files.EtcFileSpec).TypedSpec().Mode = 0o644
|
|
|
|
return nil
|
|
}); err != nil {
|
|
return fmt.Errorf("error modifying resolv.conf: %w", err)
|
|
}
|
|
}
|
|
|
|
if hostnameStatus != nil && nodeAddressStatus != nil {
|
|
if err = r.Modify(ctx, files.NewEtcFileSpec(files.NamespaceName, "hosts"),
|
|
func(r resource.Resource) error {
|
|
r.(*files.EtcFileSpec).TypedSpec().Contents, err = ctrl.renderHosts(hostnameStatus, nodeAddressStatus, cfgProvider)
|
|
r.(*files.EtcFileSpec).TypedSpec().Mode = 0o644
|
|
|
|
return err
|
|
}); err != nil {
|
|
return fmt.Errorf("error modifying resolv.conf: %w", err)
|
|
}
|
|
}
|
|
|
|
r.ResetRestartBackoff()
|
|
}
|
|
}
|
|
|
|
func (ctrl *EtcFileController) renderResolvConf(resolverStatus *network.ResolverStatusSpec, hostnameStatus *network.HostnameStatusSpec, cfgProvider talosconfig.Config) []byte {
|
|
var buf bytes.Buffer
|
|
|
|
for i, resolver := range resolverStatus.DNSServers {
|
|
if i >= 3 {
|
|
// only use firt 3 nameservers, see MAXNS in https://linux.die.net/man/5/resolv.conf
|
|
break
|
|
}
|
|
|
|
fmt.Fprintf(&buf, "nameserver %s\n", resolver)
|
|
}
|
|
|
|
var disableSearchDomain bool
|
|
if cfgProvider != nil && cfgProvider.Machine() != nil {
|
|
disableSearchDomain = cfgProvider.Machine().Network().DisableSearchDomain()
|
|
}
|
|
|
|
if !disableSearchDomain && hostnameStatus != nil && hostnameStatus.Domainname != "" {
|
|
fmt.Fprintf(&buf, "\nsearch %s\n", hostnameStatus.Domainname)
|
|
}
|
|
|
|
return buf.Bytes()
|
|
}
|
|
|
|
func (ctrl *EtcFileController) renderHosts(hostnameStatus *network.HostnameStatusSpec, nodeAddressStatus *network.NodeAddressSpec, cfgProvider talosconfig.Config) ([]byte, error) {
|
|
var buf bytes.Buffer
|
|
|
|
tabW := tabwriter.NewWriter(&buf, 0, 0, 1, ' ', 0)
|
|
|
|
write := func(s string) {
|
|
tabW.Write([]byte(s)) //nolint:errcheck
|
|
}
|
|
|
|
write("127.0.0.1\tlocalhost\n")
|
|
|
|
write(fmt.Sprintf("%s\t%s", nodeAddressStatus.Addresses[0].Addr(), hostnameStatus.FQDN()))
|
|
|
|
if hostnameStatus.Hostname != hostnameStatus.FQDN() {
|
|
write(" " + hostnameStatus.Hostname)
|
|
}
|
|
|
|
write("\n")
|
|
|
|
write("::1\tlocalhost ip6-localhost ip6-loopback\n")
|
|
write("ff02::1\tip6-allnodes\n")
|
|
write("ff02::2\tip6-allrouters\n")
|
|
|
|
if cfgProvider != nil && cfgProvider.Machine() != nil {
|
|
for _, extraHost := range cfgProvider.Machine().Network().ExtraHosts() {
|
|
write(fmt.Sprintf("%s\t%s\n", extraHost.IP(), strings.Join(extraHost.Aliases(), " ")))
|
|
}
|
|
}
|
|
|
|
if err := tabW.Flush(); err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
return buf.Bytes(), nil
|
|
}
|