podman/libpod/network/devices.go
baude fe3faa517e prevent unpredictable results with network create|remove
due to a lack of "locking" on cni operations, we could get ourselves in trouble when doing rapid creation or removal of networks.  added a simple file lock to deal with the collision and because it is not considered a performent path, use of the file lock should be ok.  if proven otherwise in the future, some generic shared memory lock should be implemented for libpod and also used here.

moved pkog/network to libpod/network because libpod is now being pulled into the package and it has therefore lost its generic nature. this will make it easier to absorb into libpod as we try to make the network closer to core operations.

Fixes: #7807

Signed-off-by: baude <bbaude@redhat.com>
2020-10-07 10:03:21 -05:00

64 lines
1.6 KiB
Go

package network
import (
"fmt"
"os/exec"
"github.com/containers/common/pkg/config"
"github.com/containers/podman/v2/pkg/util"
"github.com/containers/podman/v2/utils"
"github.com/sirupsen/logrus"
)
// GetFreeDeviceName returns a device name that is unused; used when no network
// name is provided by user
func GetFreeDeviceName(config *config.Config) (string, error) {
var (
deviceNum uint
deviceName string
)
networkNames, err := GetNetworkNamesFromFileSystem(config)
if err != nil {
return "", err
}
liveNetworksNames, err := GetLiveNetworkNames()
if err != nil {
return "", err
}
bridgeNames, err := GetBridgeNamesFromFileSystem(config)
if err != nil {
return "", err
}
for {
deviceName = fmt.Sprintf("%s%d", CNIDeviceName, deviceNum)
logrus.Debugf("checking if device name %q exists in other cni networks", deviceName)
if util.StringInSlice(deviceName, networkNames) {
deviceNum++
continue
}
logrus.Debugf("checking if device name %q exists in live networks", deviceName)
if util.StringInSlice(deviceName, liveNetworksNames) {
deviceNum++
continue
}
logrus.Debugf("checking if device name %q already exists as a bridge name ", deviceName)
if !util.StringInSlice(deviceName, bridgeNames) {
break
}
deviceNum++
}
return deviceName, nil
}
// RemoveInterface removes an interface by the given name
func RemoveInterface(interfaceName string) error {
// Make sure we have the ip command on the system
ipPath, err := exec.LookPath("ip")
if err != nil {
return err
}
// Delete the network interface
_, err = utils.ExecCmd(ipPath, []string{"link", "del", interfaceName}...)
return err
}