mirror of
https://github.com/siderolabs/talos.git
synced 2025-08-20 22:21:13 +02:00
This simply uses new protobuf package instead of old one. Old protobuf package is still in use by Talos dependencies. Signed-off-by: Andrey Smirnov <smirnov.andrey@gmail.com>
144 lines
3.6 KiB
Go
144 lines
3.6 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 server
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
"log"
|
|
"net"
|
|
|
|
"github.com/jsimonetti/rtnetlink"
|
|
"golang.org/x/sys/unix"
|
|
"google.golang.org/grpc"
|
|
"google.golang.org/protobuf/types/known/emptypb"
|
|
|
|
networkapi "github.com/talos-systems/talos/pkg/machinery/api/network"
|
|
)
|
|
|
|
// NetworkServer implements NetworkService API.
|
|
type NetworkServer struct {
|
|
networkapi.UnimplementedNetworkServiceServer
|
|
}
|
|
|
|
// Register implements the factory.Registrator interface.
|
|
func (r *NetworkServer) Register(s *grpc.Server) {
|
|
networkapi.RegisterNetworkServiceServer(s, r)
|
|
}
|
|
|
|
// Routes returns the hosts routing table.
|
|
func (r *NetworkServer) Routes(ctx context.Context, in *emptypb.Empty) (reply *networkapi.RoutesResponse, err error) {
|
|
conn, err := rtnetlink.Dial(nil)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
defer conn.Close() //nolint:errcheck
|
|
|
|
list, err := conn.Route.List()
|
|
if err != nil {
|
|
return nil, fmt.Errorf("failed to get route list: %w", err)
|
|
}
|
|
|
|
routes := []*networkapi.Route{}
|
|
|
|
for _, rMesg := range list {
|
|
ifaceData, err := conn.Link.Get((rMesg.Attributes.OutIface))
|
|
if err != nil {
|
|
log.Printf("failed to get interface details for interface index %d: %v", rMesg.Attributes.OutIface, err)
|
|
// TODO: Remove once we get this sorted on why there's a
|
|
// failure here
|
|
log.Printf("%+v", rMesg)
|
|
|
|
continue
|
|
}
|
|
|
|
routes = append(routes, &networkapi.Route{
|
|
Interface: ifaceData.Attributes.Name,
|
|
Destination: ToCIDR(rMesg.Family, rMesg.Attributes.Dst, int(rMesg.DstLength)),
|
|
Gateway: ToCIDR(rMesg.Family, rMesg.Attributes.Gateway, 32),
|
|
Metric: rMesg.Attributes.Priority,
|
|
Scope: uint32(rMesg.Scope),
|
|
Source: ToCIDR(rMesg.Family, rMesg.Attributes.Src, int(rMesg.SrcLength)),
|
|
Family: networkapi.AddressFamily(rMesg.Family),
|
|
Protocol: networkapi.RouteProtocol(rMesg.Protocol),
|
|
Flags: rMesg.Flags,
|
|
})
|
|
}
|
|
|
|
return &networkapi.RoutesResponse{
|
|
Messages: []*networkapi.Routes{
|
|
{
|
|
Routes: routes,
|
|
},
|
|
},
|
|
}, nil
|
|
}
|
|
|
|
// Interfaces returns the hosts network interfaces and addresses.
|
|
func (r *NetworkServer) Interfaces(ctx context.Context, in *emptypb.Empty) (reply *networkapi.InterfacesResponse, err error) {
|
|
ifaces, err := net.Interfaces()
|
|
if err != nil {
|
|
return reply, err
|
|
}
|
|
|
|
resp := &networkapi.Interfaces{}
|
|
|
|
for _, iface := range ifaces {
|
|
ifaceaddrs, err := iface.Addrs()
|
|
if err != nil {
|
|
return reply, err
|
|
}
|
|
|
|
addrs := make([]string, 0, len(ifaceaddrs))
|
|
for _, addr := range ifaceaddrs {
|
|
addrs = append(addrs, addr.String())
|
|
}
|
|
|
|
ifmsg := &networkapi.Interface{
|
|
Index: uint32(iface.Index),
|
|
Mtu: uint32(iface.MTU),
|
|
Name: iface.Name,
|
|
Hardwareaddr: iface.HardwareAddr.String(),
|
|
Flags: networkapi.InterfaceFlags(iface.Flags),
|
|
Ipaddress: addrs,
|
|
}
|
|
|
|
resp.Interfaces = append(resp.Interfaces, ifmsg)
|
|
}
|
|
|
|
return &networkapi.InterfacesResponse{
|
|
Messages: []*networkapi.Interfaces{
|
|
resp,
|
|
},
|
|
}, nil
|
|
}
|
|
|
|
// ToCIDR formats IP address as CIDR.
|
|
func ToCIDR(family uint8, prefix net.IP, prefixLen int) string {
|
|
netLen := 32
|
|
|
|
if family == unix.AF_INET6 {
|
|
netLen = 128
|
|
}
|
|
|
|
// Set a friendly readable value instead of "<nil>"
|
|
if prefix == nil {
|
|
switch family {
|
|
case unix.AF_INET6:
|
|
prefix = net.ParseIP("::")
|
|
case unix.AF_INET:
|
|
prefix = net.ParseIP("0.0.0.0")
|
|
}
|
|
}
|
|
|
|
ipNet := &net.IPNet{
|
|
IP: prefix,
|
|
Mask: net.CIDRMask(prefixLen, netLen),
|
|
}
|
|
|
|
return ipNet.String()
|
|
}
|