1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198
|
package main
import (
"crypto/tls"
"encoding/json"
"errors"
"io/fs"
"net"
"os"
"path/filepath"
"sync"
"github.com/lxc/incus/v6/internal/linux"
deviceConfig "github.com/lxc/incus/v6/internal/server/device/config"
"github.com/lxc/incus/v6/internal/server/ip"
"github.com/lxc/incus/v6/internal/server/util"
"github.com/lxc/incus/v6/shared/logger"
"github.com/lxc/incus/v6/shared/revert"
localtls "github.com/lxc/incus/v6/shared/tls"
)
// A variation of the standard tls.Listener that supports atomically swapping
// the underlying TLS configuration. Requests served before the swap will
// continue using the old configuration.
type networkListener struct {
net.Listener
mu sync.RWMutex
config *tls.Config
}
func networkTLSListener(inner net.Listener, config *tls.Config) *networkListener {
listener := &networkListener{
Listener: inner,
config: config,
}
return listener
}
// Accept waits for and returns the next incoming TLS connection then use the
// current TLS configuration to handle it.
func (l *networkListener) Accept() (net.Conn, error) {
c, err := l.Listener.Accept()
if err != nil {
return nil, err
}
l.mu.RLock()
defer l.mu.RUnlock()
return tls.Server(c, l.config), nil
}
func serverTLSConfig() (*tls.Config, error) {
certInfo, err := localtls.KeyPairAndCA(".", "agent", localtls.CertServer, false)
if err != nil {
return nil, err
}
tlsConfig := util.ServerTLSConfig(certInfo)
return tlsConfig, nil
}
// reconfigureNetworkInterfaces checks for the existence of files under NICConfigDir in the config share.
// Each file is named <device>.json and contains the Device Name, NIC Name, MTU and MAC address.
func reconfigureNetworkInterfaces() {
nicDirEntries, err := os.ReadDir(deviceConfig.NICConfigDir)
if err != nil {
// Abort if configuration folder does not exist (nothing to do), otherwise log and return.
if errors.Is(err, fs.ErrNotExist) {
return
}
logger.Error("Could not read network interface configuration directory", logger.Ctx{"err": err})
return
}
// Attempt to load the virtio_net driver in case it's not be loaded yet.
_ = linux.LoadModule("virtio_net")
// nicData is a map of MAC address to NICConfig.
nicData := make(map[string]deviceConfig.NICConfig, len(nicDirEntries))
for _, f := range nicDirEntries {
nicBytes, err := os.ReadFile(filepath.Join(deviceConfig.NICConfigDir, f.Name()))
if err != nil {
logger.Error("Could not read network interface configuration file", logger.Ctx{"err": err})
}
var conf deviceConfig.NICConfig
err = json.Unmarshal(nicBytes, &conf)
if err != nil {
logger.Error("Could not parse network interface configuration file", logger.Ctx{"err": err})
return
}
if conf.MACAddress != "" {
nicData[conf.MACAddress] = conf
}
}
// configureNIC applies any config specified for the interface based on its current MAC address.
configureNIC := func(currentNIC net.Interface) error {
revert := revert.New()
defer revert.Fail()
// Look for a NIC config entry for this interface based on its MAC address.
nic, ok := nicData[currentNIC.HardwareAddr.String()]
if !ok {
return nil
}
var changeName, changeMTU bool
if nic.NICName != "" && currentNIC.Name != nic.NICName {
changeName = true
}
if nic.MTU > 0 && currentNIC.MTU != int(nic.MTU) {
changeMTU = true
}
if !changeName && !changeMTU {
return nil // Nothing to do.
}
link := ip.Link{
Name: currentNIC.Name,
MTU: uint32(currentNIC.MTU),
}
err := link.SetDown()
if err != nil {
return err
}
revert.Add(func() {
_ = link.SetUp()
})
// Apply the name from the NIC config if needed.
if changeName {
err = link.SetName(nic.NICName)
if err != nil {
return err
}
revert.Add(func() {
err := link.SetName(currentNIC.Name)
if err != nil {
return
}
link.Name = currentNIC.Name
})
link.Name = nic.NICName
}
// Apply the MTU from the NIC config if needed.
if changeMTU {
err = link.SetMTU(nic.MTU)
if err != nil {
return err
}
link.MTU = nic.MTU
revert.Add(func() {
err := link.SetMTU(uint32(currentNIC.MTU))
if err != nil {
return
}
link.MTU = uint32(currentNIC.MTU)
})
}
err = link.SetUp()
if err != nil {
return err
}
revert.Success()
return nil
}
ifaces, err := net.Interfaces()
if err != nil {
logger.Error("Unable to read network interfaces", logger.Ctx{"err": err})
}
for _, iface := range ifaces {
err = configureNIC(iface)
if err != nil {
logger.Error("Unable to reconfigure network interface", logger.Ctx{"interface": iface.Name, "err": err})
}
}
}
|