Skip to content

Commit

Permalink
Add docker interfaces to firewalld trusted zone
Browse files Browse the repository at this point in the history
If firewalld is running, add the docker interfaces
to the trusted zone to allow container networking
for distros with Firewalld enabled

Fixes: #2496

Signed-off-by: Arko Dasgupta <[email protected]>
  • Loading branch information
Arko Dasgupta committed May 4, 2020
1 parent 1ea375d commit f4b58e7
Show file tree
Hide file tree
Showing 2 changed files with 66 additions and 0 deletions.
53 changes: 53 additions & 0 deletions iptables/firewalld.go
Original file line number Diff line number Diff line change
Expand Up @@ -165,3 +165,56 @@ func Passthrough(ipv IPV, args ...string) ([]byte, error) {
}
return []byte(output), nil
}

// AddInterfaceFirewalld adds the interface to the trusted zone
func AddInterfaceFirewalld(intf string) error {
zone := "trusted"
var intfs []string
// Check if interface is already added of the zone
if err := connection.sysobj.Call(dbusInterface+".zone.getInterfaces", 0, zone).Store(&intfs); err != nil {
return err
}
// Return if interface is already part of the zone
if contains(intfs, intf) {
logrus.Infof("Firewalld: interface %s already part of %s zone, returning", intf, zone)
return nil
}

logrus.Debugf("Firewalld: adding %s interface to %s zone", intf, zone)
var output string
if err := connection.sysobj.Call(dbusInterface+".zone.addInterface", 0, zone, intf).Store(&output); err != nil {
return err
}

return nil
}

// DelInterfaceFirewalld removes the interface from the trusted zone
func DelInterfaceFirewalld(intf string) error {
zone := "trusted"
var intfs []string
// Check if interface is already added of the zone
if err := connection.sysobj.Call(dbusInterface+".zone.getInterfaces", 0, zone).Store(&intfs); err != nil {
return err
}
// Remove interface if it exists
if !contains(intfs, intf) {
return fmt.Errorf("Firewalld: unable to find interface %s in %s zone", intf, zone)
}

logrus.Debugf("Firewalld: removing %s interface from %s zone", intf, zone)
var output string
if err := connection.sysobj.Call(dbusInterface+".zone.removeInterface", 0, zone, intf).Store(&output); err != nil {
return err
}
return nil
}

func contains(list []string, val string) bool {
for _, v := range list {
if v == val {
return true
}
}
return false
}
13 changes: 13 additions & 0 deletions iptables/iptables.go
Original file line number Diff line number Diff line change
Expand Up @@ -146,6 +146,19 @@ func ProgramChain(c *ChainInfo, bridgeName string, hairpinMode, enable bool) err
return errors.New("Could not program chain, missing chain name")
}

// Either add or remove the interface from the firewalld zone
if firewalldRunning {
if enable {
if err := AddInterfaceFirewalld(bridgeName); err != nil {
return err
}
} else {
if err := DelInterfaceFirewalld(bridgeName); err != nil {
return err
}
}
}

switch c.Table {
case Nat:
preroute := []string{
Expand Down

0 comments on commit f4b58e7

Please sign in to comment.