lang: core: net: Add new function to get cidr prefix

This commit is contained in:
James Shubin
2024-11-06 21:10:04 -05:00
parent 69e84fbbed
commit c642b5eeae

View File

@@ -32,6 +32,7 @@ package corenet
import (
"context"
"net"
"strconv"
"strings"
"github.com/purpleidea/mgmt/lang/funcs/simple"
@@ -43,6 +44,10 @@ func init() {
T: types.NewType("func(a str) str"),
F: CidrToIP,
})
simple.ModuleRegister(ModuleName, "cidr_to_prefix", &simple.Scaffold{
T: types.NewType("func(a str) str"),
F: CidrToPrefix,
})
simple.ModuleRegister(ModuleName, "cidr_to_mask", &simple.Scaffold{
T: types.NewType("func(a str) str"),
F: CidrToMask,
@@ -61,6 +66,22 @@ func CidrToIP(ctx context.Context, input []types.Value) (types.Value, error) {
}, nil
}
// CidrToPrefix returns the prefix from a CIDR address. For example, if you give
// us 192.0.2.0/24 then we will return "24" as a string.
func CidrToPrefix(ctx context.Context, input []types.Value) (types.Value, error) {
cidr := input[0].Str()
_, ipnet, err := net.ParseCIDR(strings.TrimSpace(cidr))
if err != nil {
return nil, err
}
ones, _ := ipnet.Mask.Size()
return &types.StrValue{
V: strconv.Itoa(ones),
}, nil
}
// CidrToMask returns the subnet mask from a CIDR address.
func CidrToMask(ctx context.Context, input []types.Value) (types.Value, error) {
cidr := input[0].Str()