Adrian Villin | 4677d92 | 2024-06-14 09:32:39 +0200 | [diff] [blame] | 1 | package hst |
Filip Tehlar | 229f5fc | 2022-08-09 14:44:47 +0000 | [diff] [blame] | 2 | |
| 3 | import ( |
| 4 | "errors" |
| 5 | "fmt" |
| 6 | "os/exec" |
Maros Ondrejicka | ffa3f60 | 2023-01-26 10:07:29 +0100 | [diff] [blame] | 7 | "strings" |
| 8 | |
| 9 | "go.fd.io/govpp/binapi/ethernet_types" |
| 10 | "go.fd.io/govpp/binapi/interface_types" |
| 11 | "go.fd.io/govpp/binapi/ip_types" |
Filip Tehlar | 229f5fc | 2022-08-09 14:44:47 +0000 | [diff] [blame] | 12 | ) |
| 13 | |
Maros Ondrejicka | ffa3f60 | 2023-01-26 10:07:29 +0100 | [diff] [blame] | 14 | type ( |
Maros Ondrejicka | 40cba40 | 2023-02-23 13:19:15 +0100 | [diff] [blame] | 15 | Cmd = exec.Cmd |
Maros Ondrejicka | 7550dd2 | 2023-02-07 20:40:27 +0100 | [diff] [blame] | 16 | MacAddress = ethernet_types.MacAddress |
| 17 | AddressWithPrefix = ip_types.AddressWithPrefix |
| 18 | IP4AddressWithPrefix = ip_types.IP4AddressWithPrefix |
| 19 | InterfaceIndex = interface_types.InterfaceIndex |
Maros Ondrejicka | 2908f8c | 2023-02-02 08:58:04 +0100 | [diff] [blame] | 20 | |
| 21 | NetConfig interface { |
Maros Ondrejicka | e7625d0 | 2023-02-28 16:55:01 +0100 | [diff] [blame] | 22 | configure() error |
| 23 | unconfigure() |
Maros Ondrejicka | 2908f8c | 2023-02-02 08:58:04 +0100 | [diff] [blame] | 24 | Name() string |
| 25 | Type() string |
| 26 | } |
Maros Ondrejicka | ffa3f60 | 2023-01-26 10:07:29 +0100 | [diff] [blame] | 27 | |
| 28 | NetConfigBase struct { |
| 29 | name string |
| 30 | category string // what else to call this when `type` is reserved? |
| 31 | } |
| 32 | |
Maros Ondrejicka | 40cba40 | 2023-02-23 13:19:15 +0100 | [diff] [blame] | 33 | NetInterface struct { |
Maros Ondrejicka | ffa3f60 | 2023-01-26 10:07:29 +0100 | [diff] [blame] | 34 | NetConfigBase |
Adrian Villin | 4677d92 | 2024-06-14 09:32:39 +0200 | [diff] [blame] | 35 | Ip4AddrAllocator *Ip4AddressAllocator |
| 36 | Ip4Address string |
| 37 | Index InterfaceIndex |
| 38 | HwAddress MacAddress |
| 39 | NetworkNamespace string |
| 40 | NetworkNumber int |
| 41 | Peer *NetInterface |
Maros Ondrejicka | ffa3f60 | 2023-01-26 10:07:29 +0100 | [diff] [blame] | 42 | } |
| 43 | |
| 44 | NetworkNamespace struct { |
| 45 | NetConfigBase |
| 46 | } |
| 47 | |
| 48 | NetworkBridge struct { |
| 49 | NetConfigBase |
Adrian Villin | 4677d92 | 2024-06-14 09:32:39 +0200 | [diff] [blame] | 50 | NetworkNamespace string |
| 51 | Interfaces []string |
Maros Ondrejicka | ffa3f60 | 2023-01-26 10:07:29 +0100 | [diff] [blame] | 52 | } |
| 53 | ) |
Filip Tehlar | 229f5fc | 2022-08-09 14:44:47 +0000 | [diff] [blame] | 54 | |
| 55 | const ( |
Maros Ondrejicka | ffa3f60 | 2023-01-26 10:07:29 +0100 | [diff] [blame] | 56 | NetNs string = "netns" |
| 57 | Veth string = "veth" |
| 58 | Tap string = "tap" |
| 59 | Bridge string = "bridge" |
Filip Tehlar | 229f5fc | 2022-08-09 14:44:47 +0000 | [diff] [blame] | 60 | ) |
| 61 | |
Maros Ondrejicka | 40cba40 | 2023-02-23 13:19:15 +0100 | [diff] [blame] | 62 | type InterfaceAdder func(n *NetInterface) *Cmd |
| 63 | |
| 64 | var ( |
| 65 | ipCommandMap = map[string]InterfaceAdder{ |
| 66 | Veth: func(n *NetInterface) *Cmd { |
Adrian Villin | 4677d92 | 2024-06-14 09:32:39 +0200 | [diff] [blame] | 67 | return exec.Command("ip", "link", "add", n.name, "type", "veth", "peer", "name", n.Peer.name) |
Maros Ondrejicka | 40cba40 | 2023-02-23 13:19:15 +0100 | [diff] [blame] | 68 | }, |
| 69 | Tap: func(n *NetInterface) *Cmd { |
| 70 | return exec.Command("ip", "tuntap", "add", n.name, "mode", "tap") |
| 71 | }, |
| 72 | } |
| 73 | ) |
| 74 | |
Filip Tehlar | 3a910ab | 2023-06-08 17:39:39 +0200 | [diff] [blame] | 75 | func newNetworkInterface(cfg NetDevConfig, a *Ip4AddressAllocator) (*NetInterface, error) { |
Maros Ondrejicka | 40cba40 | 2023-02-23 13:19:15 +0100 | [diff] [blame] | 76 | var newInterface *NetInterface = &NetInterface{} |
| 77 | var err error |
Adrian Villin | 4677d92 | 2024-06-14 09:32:39 +0200 | [diff] [blame] | 78 | newInterface.Ip4AddrAllocator = a |
Maros Ondrejicka | 40cba40 | 2023-02-23 13:19:15 +0100 | [diff] [blame] | 79 | newInterface.name = cfg["name"].(string) |
Adrian Villin | 4677d92 | 2024-06-14 09:32:39 +0200 | [diff] [blame] | 80 | newInterface.NetworkNumber = DEFAULT_NETWORK_NUM |
Maros Ondrejicka | 40cba40 | 2023-02-23 13:19:15 +0100 | [diff] [blame] | 81 | |
| 82 | if interfaceType, ok := cfg["type"]; ok { |
| 83 | newInterface.category = interfaceType.(string) |
| 84 | } |
| 85 | |
| 86 | if presetHwAddress, ok := cfg["preset-hw-address"]; ok { |
Adrian Villin | 4677d92 | 2024-06-14 09:32:39 +0200 | [diff] [blame] | 87 | newInterface.HwAddress, err = ethernet_types.ParseMacAddress(presetHwAddress.(string)) |
Maros Ondrejicka | 40cba40 | 2023-02-23 13:19:15 +0100 | [diff] [blame] | 88 | if err != nil { |
| 89 | return &NetInterface{}, err |
| 90 | } |
| 91 | } |
| 92 | |
| 93 | if netns, ok := cfg["netns"]; ok { |
Adrian Villin | 4677d92 | 2024-06-14 09:32:39 +0200 | [diff] [blame] | 94 | newInterface.NetworkNamespace = netns.(string) |
Maros Ondrejicka | 40cba40 | 2023-02-23 13:19:15 +0100 | [diff] [blame] | 95 | } |
| 96 | |
| 97 | if ip, ok := cfg["ip4"]; ok { |
| 98 | if n, ok := ip.(NetDevConfig)["network"]; ok { |
Adrian Villin | 4677d92 | 2024-06-14 09:32:39 +0200 | [diff] [blame] | 99 | newInterface.NetworkNumber = n.(int) |
Maros Ondrejicka | 40cba40 | 2023-02-23 13:19:15 +0100 | [diff] [blame] | 100 | } |
Adrian Villin | 4677d92 | 2024-06-14 09:32:39 +0200 | [diff] [blame] | 101 | newInterface.Ip4Address, err = newInterface.Ip4AddrAllocator.NewIp4InterfaceAddress( |
| 102 | newInterface.NetworkNumber, |
Maros Ondrejicka | 40cba40 | 2023-02-23 13:19:15 +0100 | [diff] [blame] | 103 | ) |
| 104 | if err != nil { |
| 105 | return &NetInterface{}, err |
| 106 | } |
| 107 | } |
| 108 | |
| 109 | if _, ok := cfg["peer"]; !ok { |
| 110 | return newInterface, nil |
| 111 | } |
| 112 | |
| 113 | peer := cfg["peer"].(NetDevConfig) |
| 114 | |
Adrian Villin | 4677d92 | 2024-06-14 09:32:39 +0200 | [diff] [blame] | 115 | if newInterface.Peer, err = newNetworkInterface(peer, a); err != nil { |
Maros Ondrejicka | 40cba40 | 2023-02-23 13:19:15 +0100 | [diff] [blame] | 116 | return &NetInterface{}, err |
| 117 | } |
| 118 | |
| 119 | return newInterface, nil |
| 120 | } |
| 121 | |
Maros Ondrejicka | e7625d0 | 2023-02-28 16:55:01 +0100 | [diff] [blame] | 122 | func (n *NetInterface) configureUpState() error { |
| 123 | err := setDevUp(n.Name(), "") |
Maros Ondrejicka | 40cba40 | 2023-02-23 13:19:15 +0100 | [diff] [blame] | 124 | if err != nil { |
| 125 | return fmt.Errorf("set link up failed: %v", err) |
| 126 | } |
| 127 | return nil |
| 128 | } |
| 129 | |
Maros Ondrejicka | e7625d0 | 2023-02-28 16:55:01 +0100 | [diff] [blame] | 130 | func (n *NetInterface) configureNetworkNamespace() error { |
Adrian Villin | 4677d92 | 2024-06-14 09:32:39 +0200 | [diff] [blame] | 131 | if n.NetworkNamespace != "" { |
| 132 | err := linkSetNetns(n.name, n.NetworkNamespace) |
Maros Ondrejicka | 40cba40 | 2023-02-23 13:19:15 +0100 | [diff] [blame] | 133 | if err != nil { |
| 134 | return err |
| 135 | } |
| 136 | } |
| 137 | return nil |
| 138 | } |
| 139 | |
Maros Ondrejicka | e7625d0 | 2023-02-28 16:55:01 +0100 | [diff] [blame] | 140 | func (n *NetInterface) configureAddress() error { |
Adrian Villin | 4677d92 | 2024-06-14 09:32:39 +0200 | [diff] [blame] | 141 | if n.Ip4Address != "" { |
Maros Ondrejicka | e7625d0 | 2023-02-28 16:55:01 +0100 | [diff] [blame] | 142 | if err := addAddress( |
Maros Ondrejicka | 40cba40 | 2023-02-23 13:19:15 +0100 | [diff] [blame] | 143 | n.Name(), |
Adrian Villin | 4677d92 | 2024-06-14 09:32:39 +0200 | [diff] [blame] | 144 | n.Ip4Address, |
| 145 | n.NetworkNamespace, |
Maros Ondrejicka | 40cba40 | 2023-02-23 13:19:15 +0100 | [diff] [blame] | 146 | ); err != nil { |
| 147 | return err |
| 148 | } |
| 149 | |
| 150 | } |
| 151 | return nil |
| 152 | } |
| 153 | |
Maros Ondrejicka | e7625d0 | 2023-02-28 16:55:01 +0100 | [diff] [blame] | 154 | func (n *NetInterface) configure() error { |
Maros Ondrejicka | 40cba40 | 2023-02-23 13:19:15 +0100 | [diff] [blame] | 155 | cmd := ipCommandMap[n.Type()](n) |
| 156 | _, err := cmd.CombinedOutput() |
| 157 | if err != nil { |
| 158 | return fmt.Errorf("creating interface '%v' failed: %v", n.Name(), err) |
| 159 | } |
| 160 | |
Maros Ondrejicka | e7625d0 | 2023-02-28 16:55:01 +0100 | [diff] [blame] | 161 | if err := n.configureUpState(); err != nil { |
Maros Ondrejicka | 40cba40 | 2023-02-23 13:19:15 +0100 | [diff] [blame] | 162 | return err |
| 163 | } |
| 164 | |
Maros Ondrejicka | e7625d0 | 2023-02-28 16:55:01 +0100 | [diff] [blame] | 165 | if err := n.configureNetworkNamespace(); err != nil { |
Maros Ondrejicka | 40cba40 | 2023-02-23 13:19:15 +0100 | [diff] [blame] | 166 | return err |
| 167 | } |
| 168 | |
Maros Ondrejicka | e7625d0 | 2023-02-28 16:55:01 +0100 | [diff] [blame] | 169 | if err := n.configureAddress(); err != nil { |
Maros Ondrejicka | 40cba40 | 2023-02-23 13:19:15 +0100 | [diff] [blame] | 170 | return err |
| 171 | } |
| 172 | |
Adrian Villin | 4677d92 | 2024-06-14 09:32:39 +0200 | [diff] [blame] | 173 | if n.Peer != nil && n.Peer.name != "" { |
| 174 | if err := n.Peer.configureUpState(); err != nil { |
Maros Ondrejicka | 40cba40 | 2023-02-23 13:19:15 +0100 | [diff] [blame] | 175 | return err |
| 176 | } |
| 177 | |
Adrian Villin | 4677d92 | 2024-06-14 09:32:39 +0200 | [diff] [blame] | 178 | if err := n.Peer.configureNetworkNamespace(); err != nil { |
Maros Ondrejicka | 40cba40 | 2023-02-23 13:19:15 +0100 | [diff] [blame] | 179 | return err |
| 180 | } |
| 181 | |
Adrian Villin | 4677d92 | 2024-06-14 09:32:39 +0200 | [diff] [blame] | 182 | if err := n.Peer.configureAddress(); err != nil { |
Maros Ondrejicka | 40cba40 | 2023-02-23 13:19:15 +0100 | [diff] [blame] | 183 | return err |
| 184 | } |
| 185 | } |
| 186 | |
| 187 | return nil |
| 188 | } |
| 189 | |
Maros Ondrejicka | e7625d0 | 2023-02-28 16:55:01 +0100 | [diff] [blame] | 190 | func (n *NetInterface) unconfigure() { |
| 191 | delLink(n.name) |
Maros Ondrejicka | 40cba40 | 2023-02-23 13:19:15 +0100 | [diff] [blame] | 192 | } |
| 193 | |
| 194 | func (n *NetInterface) Name() string { |
| 195 | return n.name |
| 196 | } |
| 197 | |
| 198 | func (n *NetInterface) Type() string { |
| 199 | return n.category |
| 200 | } |
| 201 | |
Adrian Villin | 4677d92 | 2024-06-14 09:32:39 +0200 | [diff] [blame] | 202 | func (n *NetInterface) AddressWithPrefix() AddressWithPrefix { |
| 203 | address, _ := ip_types.ParseAddressWithPrefix(n.Ip4Address) |
Maros Ondrejicka | 40cba40 | 2023-02-23 13:19:15 +0100 | [diff] [blame] | 204 | return address |
| 205 | } |
| 206 | |
Adrian Villin | 4677d92 | 2024-06-14 09:32:39 +0200 | [diff] [blame] | 207 | func (n *NetInterface) Ip4AddressWithPrefix() IP4AddressWithPrefix { |
| 208 | ip4Prefix, _ := ip_types.ParseIP4Prefix(n.Ip4Address) |
| 209 | Ip4AddressWithPrefix := ip_types.IP4AddressWithPrefix(ip4Prefix) |
| 210 | return Ip4AddressWithPrefix |
Maros Ondrejicka | 40cba40 | 2023-02-23 13:19:15 +0100 | [diff] [blame] | 211 | } |
| 212 | |
Adrian Villin | 4677d92 | 2024-06-14 09:32:39 +0200 | [diff] [blame] | 213 | func (n *NetInterface) Ip4AddressString() string { |
| 214 | return strings.Split(n.Ip4Address, "/")[0] |
Maros Ondrejicka | 40cba40 | 2023-02-23 13:19:15 +0100 | [diff] [blame] | 215 | } |
| 216 | |
Maros Ondrejicka | 2908f8c | 2023-02-02 08:58:04 +0100 | [diff] [blame] | 217 | func (b *NetConfigBase) Name() string { |
Maros Ondrejicka | ffa3f60 | 2023-01-26 10:07:29 +0100 | [diff] [blame] | 218 | return b.name |
Filip Tehlar | 229f5fc | 2022-08-09 14:44:47 +0000 | [diff] [blame] | 219 | } |
| 220 | |
Maros Ondrejicka | 2908f8c | 2023-02-02 08:58:04 +0100 | [diff] [blame] | 221 | func (b *NetConfigBase) Type() string { |
Maros Ondrejicka | ffa3f60 | 2023-01-26 10:07:29 +0100 | [diff] [blame] | 222 | return b.category |
| 223 | } |
| 224 | |
Maros Ondrejicka | e7625d0 | 2023-02-28 16:55:01 +0100 | [diff] [blame] | 225 | func newNetNamespace(cfg NetDevConfig) (NetworkNamespace, error) { |
Maros Ondrejicka | 7550dd2 | 2023-02-07 20:40:27 +0100 | [diff] [blame] | 226 | var networkNamespace NetworkNamespace |
| 227 | networkNamespace.name = cfg["name"].(string) |
Maros Ondrejicka | 40cba40 | 2023-02-23 13:19:15 +0100 | [diff] [blame] | 228 | networkNamespace.category = NetNs |
Maros Ondrejicka | 7550dd2 | 2023-02-07 20:40:27 +0100 | [diff] [blame] | 229 | return networkNamespace, nil |
| 230 | } |
| 231 | |
Maros Ondrejicka | e7625d0 | 2023-02-28 16:55:01 +0100 | [diff] [blame] | 232 | func (ns *NetworkNamespace) configure() error { |
Maros Ondrejicka | 7550dd2 | 2023-02-07 20:40:27 +0100 | [diff] [blame] | 233 | return addDelNetns(ns.name, true) |
| 234 | } |
| 235 | |
Maros Ondrejicka | e7625d0 | 2023-02-28 16:55:01 +0100 | [diff] [blame] | 236 | func (ns *NetworkNamespace) unconfigure() { |
Maros Ondrejicka | 7550dd2 | 2023-02-07 20:40:27 +0100 | [diff] [blame] | 237 | addDelNetns(ns.name, false) |
| 238 | } |
| 239 | |
Maros Ondrejicka | e7625d0 | 2023-02-28 16:55:01 +0100 | [diff] [blame] | 240 | func newBridge(cfg NetDevConfig) (NetworkBridge, error) { |
Maros Ondrejicka | 7550dd2 | 2023-02-07 20:40:27 +0100 | [diff] [blame] | 241 | var bridge NetworkBridge |
| 242 | bridge.name = cfg["name"].(string) |
Maros Ondrejicka | 40cba40 | 2023-02-23 13:19:15 +0100 | [diff] [blame] | 243 | bridge.category = Bridge |
Maros Ondrejicka | 7550dd2 | 2023-02-07 20:40:27 +0100 | [diff] [blame] | 244 | for _, v := range cfg["interfaces"].([]interface{}) { |
Adrian Villin | 4677d92 | 2024-06-14 09:32:39 +0200 | [diff] [blame] | 245 | bridge.Interfaces = append(bridge.Interfaces, v.(string)) |
Maros Ondrejicka | 7550dd2 | 2023-02-07 20:40:27 +0100 | [diff] [blame] | 246 | } |
Maros Ondrejicka | 300f70d | 2023-02-21 10:53:20 +0100 | [diff] [blame] | 247 | |
Adrian Villin | 4677d92 | 2024-06-14 09:32:39 +0200 | [diff] [blame] | 248 | bridge.NetworkNamespace = "" |
Maros Ondrejicka | 300f70d | 2023-02-21 10:53:20 +0100 | [diff] [blame] | 249 | if netns, ok := cfg["netns"]; ok { |
Adrian Villin | 4677d92 | 2024-06-14 09:32:39 +0200 | [diff] [blame] | 250 | bridge.NetworkNamespace = netns.(string) |
Maros Ondrejicka | 300f70d | 2023-02-21 10:53:20 +0100 | [diff] [blame] | 251 | } |
Maros Ondrejicka | 7550dd2 | 2023-02-07 20:40:27 +0100 | [diff] [blame] | 252 | return bridge, nil |
| 253 | } |
| 254 | |
Maros Ondrejicka | e7625d0 | 2023-02-28 16:55:01 +0100 | [diff] [blame] | 255 | func (b *NetworkBridge) configure() error { |
Adrian Villin | 4677d92 | 2024-06-14 09:32:39 +0200 | [diff] [blame] | 256 | return addBridge(b.name, b.Interfaces, b.NetworkNamespace) |
Maros Ondrejicka | 7550dd2 | 2023-02-07 20:40:27 +0100 | [diff] [blame] | 257 | } |
| 258 | |
Maros Ondrejicka | e7625d0 | 2023-02-28 16:55:01 +0100 | [diff] [blame] | 259 | func (b *NetworkBridge) unconfigure() { |
Adrian Villin | 4677d92 | 2024-06-14 09:32:39 +0200 | [diff] [blame] | 260 | delBridge(b.name, b.NetworkNamespace) |
Maros Ondrejicka | 7550dd2 | 2023-02-07 20:40:27 +0100 | [diff] [blame] | 261 | } |
| 262 | |
Maros Ondrejicka | e7625d0 | 2023-02-28 16:55:01 +0100 | [diff] [blame] | 263 | func delBridge(brName, ns string) error { |
| 264 | err := setDevDown(brName, ns) |
Maros Ondrejicka | b5c7317 | 2023-03-01 09:43:24 +0100 | [diff] [blame] | 265 | if err != nil { |
Filip Tehlar | 229f5fc | 2022-08-09 14:44:47 +0000 | [diff] [blame] | 266 | return err |
| 267 | } |
| 268 | |
| 269 | err = addDelBridge(brName, ns, false) |
| 270 | if err != nil { |
| 271 | return err |
| 272 | } |
| 273 | |
| 274 | return nil |
| 275 | } |
| 276 | |
Maros Ondrejicka | e7625d0 | 2023-02-28 16:55:01 +0100 | [diff] [blame] | 277 | func setDevUp(dev, ns string) error { |
Filip Tehlar | 229f5fc | 2022-08-09 14:44:47 +0000 | [diff] [blame] | 278 | return setDevUpDown(dev, ns, true) |
| 279 | } |
| 280 | |
Maros Ondrejicka | e7625d0 | 2023-02-28 16:55:01 +0100 | [diff] [blame] | 281 | func setDevDown(dev, ns string) error { |
Filip Tehlar | 229f5fc | 2022-08-09 14:44:47 +0000 | [diff] [blame] | 282 | return setDevUpDown(dev, ns, false) |
| 283 | } |
| 284 | |
Maros Ondrejicka | e7625d0 | 2023-02-28 16:55:01 +0100 | [diff] [blame] | 285 | func delLink(ifName string) { |
Filip Tehlar | 229f5fc | 2022-08-09 14:44:47 +0000 | [diff] [blame] | 286 | cmd := exec.Command("ip", "link", "del", ifName) |
| 287 | cmd.Run() |
| 288 | } |
| 289 | |
| 290 | func setDevUpDown(dev, ns string, isUp bool) error { |
| 291 | var op string |
| 292 | if isUp { |
| 293 | op = "up" |
| 294 | } else { |
| 295 | op = "down" |
| 296 | } |
| 297 | c := []string{"ip", "link", "set", "dev", dev, op} |
| 298 | cmd := appendNetns(c, ns) |
| 299 | err := cmd.Run() |
| 300 | if err != nil { |
adrianvillin | 7c67547 | 2024-02-12 02:44:53 -0500 | [diff] [blame] | 301 | return fmt.Errorf("error bringing %s device %s! (cmd: '%s')", dev, op, cmd) |
Filip Tehlar | 229f5fc | 2022-08-09 14:44:47 +0000 | [diff] [blame] | 302 | } |
| 303 | return nil |
| 304 | } |
| 305 | |
Filip Tehlar | 229f5fc | 2022-08-09 14:44:47 +0000 | [diff] [blame] | 306 | func addDelNetns(name string, isAdd bool) error { |
| 307 | var op string |
| 308 | if isAdd { |
| 309 | op = "add" |
| 310 | } else { |
| 311 | op = "del" |
| 312 | } |
| 313 | cmd := exec.Command("ip", "netns", op, name) |
| 314 | _, err := cmd.CombinedOutput() |
| 315 | if err != nil { |
adrianvillin | 7c67547 | 2024-02-12 02:44:53 -0500 | [diff] [blame] | 316 | return fmt.Errorf("add/del netns failed (cmd: '%s')", cmd) |
Filip Tehlar | 229f5fc | 2022-08-09 14:44:47 +0000 | [diff] [blame] | 317 | } |
| 318 | return nil |
| 319 | } |
| 320 | |
Maros Ondrejicka | e7625d0 | 2023-02-28 16:55:01 +0100 | [diff] [blame] | 321 | func linkSetNetns(ifName, ns string) error { |
Filip Tehlar | 229f5fc | 2022-08-09 14:44:47 +0000 | [diff] [blame] | 322 | cmd := exec.Command("ip", "link", "set", "dev", ifName, "up", "netns", ns) |
| 323 | err := cmd.Run() |
| 324 | if err != nil { |
| 325 | return fmt.Errorf("error setting device '%s' to netns '%s: %v", ifName, ns, err) |
| 326 | } |
| 327 | return nil |
| 328 | } |
| 329 | |
Maros Ondrejicka | e7625d0 | 2023-02-28 16:55:01 +0100 | [diff] [blame] | 330 | func newCommand(s []string, ns string) *exec.Cmd { |
Filip Tehlar | 229f5fc | 2022-08-09 14:44:47 +0000 | [diff] [blame] | 331 | return appendNetns(s, ns) |
| 332 | } |
| 333 | |
| 334 | func appendNetns(s []string, ns string) *exec.Cmd { |
| 335 | var cmd *exec.Cmd |
| 336 | if ns == "" { |
| 337 | // use default namespace |
| 338 | cmd = exec.Command(s[0], s[1:]...) |
| 339 | } else { |
| 340 | var args = []string{"netns", "exec", ns} |
| 341 | args = append(args, s[:]...) |
| 342 | cmd = exec.Command("ip", args...) |
| 343 | } |
| 344 | return cmd |
| 345 | } |
| 346 | |
| 347 | func addDelBridge(brName, ns string, isAdd bool) error { |
| 348 | var op string |
| 349 | if isAdd { |
| 350 | op = "addbr" |
| 351 | } else { |
| 352 | op = "delbr" |
| 353 | } |
| 354 | var c = []string{"brctl", op, brName} |
| 355 | cmd := appendNetns(c, ns) |
| 356 | err := cmd.Run() |
| 357 | if err != nil { |
adrianvillin | 7c67547 | 2024-02-12 02:44:53 -0500 | [diff] [blame] | 358 | s := fmt.Sprintf("%s %s failed! err: '%s'", op, brName, err) |
Filip Tehlar | 229f5fc | 2022-08-09 14:44:47 +0000 | [diff] [blame] | 359 | return errors.New(s) |
| 360 | } |
| 361 | return nil |
| 362 | } |
| 363 | |
Maros Ondrejicka | e7625d0 | 2023-02-28 16:55:01 +0100 | [diff] [blame] | 364 | func addBridge(brName string, ifs []string, ns string) error { |
Filip Tehlar | 229f5fc | 2022-08-09 14:44:47 +0000 | [diff] [blame] | 365 | err := addDelBridge(brName, ns, true) |
| 366 | if err != nil { |
| 367 | return err |
| 368 | } |
| 369 | |
| 370 | for _, v := range ifs { |
| 371 | c := []string{"brctl", "addif", brName, v} |
| 372 | cmd := appendNetns(c, ns) |
| 373 | err = cmd.Run() |
| 374 | if err != nil { |
adrianvillin | 7c67547 | 2024-02-12 02:44:53 -0500 | [diff] [blame] | 375 | return fmt.Errorf("error adding %s to bridge %s: %s", v, brName, err) |
Filip Tehlar | 229f5fc | 2022-08-09 14:44:47 +0000 | [diff] [blame] | 376 | } |
| 377 | } |
Maros Ondrejicka | e7625d0 | 2023-02-28 16:55:01 +0100 | [diff] [blame] | 378 | err = setDevUp(brName, ns) |
Filip Tehlar | 229f5fc | 2022-08-09 14:44:47 +0000 | [diff] [blame] | 379 | if err != nil { |
| 380 | return err |
| 381 | } |
| 382 | return nil |
| 383 | } |