-
Notifications
You must be signed in to change notification settings - Fork 794
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
firewall: new plugin which adds allow rules for container IPs to firewalls #75
Closed
Closed
Changes from all commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
3402f82
firewall: new plugin which allows a host interface to send/receive tr…
dcbw ef20016
vendor: Add github.com/godbus/dbus
vadorovsky 5c082b8
firewall: add firewalld functionality to firewall plugin
vadorovsky a5961ba
firewall: consolidate firewalld code into firewall plugin
dcbw f954663
firewall: add a couple more testcases
dcbw File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
# firewall plugin | ||
|
||
## Overview | ||
|
||
This plugin creates firewall rules to allow traffic to/from container IP address via the host network . | ||
It does not create any network interfaces and therefore does not set up connectivity by itself. | ||
It is only useful when used in addition to other plugins. | ||
|
||
## Operation | ||
The following network configuration file | ||
|
||
```json | ||
{ | ||
"cniVersion": "0.3.1", | ||
"name": "bridge-firewalld", | ||
"plugins": [ | ||
{ | ||
"type": "bridge", | ||
"bridge": "cni0", | ||
"isGateway": true, | ||
"ipMasq": true, | ||
"ipam": { | ||
"type": "host-local", | ||
"subnet": "10.88.0.0/16", | ||
"routes": [ | ||
{ "dst": "0.0.0.0/0" } | ||
] | ||
} | ||
}, | ||
{ | ||
"type": "firewall", | ||
} | ||
] | ||
} | ||
``` | ||
|
||
will allow any IP addresses configured by earlier plugins to send/receive traffic via the host. | ||
|
||
A successful result would simply be an empty result, unless a previous plugin passed a previous result, in which case this plugin will return that previous result. | ||
|
||
## Backends | ||
|
||
This plugin supports multiple firewall backends that implement the desired functionality. | ||
Available backends include `iptables` and `firewalld` and may be selected with the `backend` key. | ||
If no `backend` key is given, the plugin will use firewalld if the service exists on the D-Bus system bus. | ||
If no firewalld service is found, it will fall back to iptables. | ||
|
||
When the `iptables` backend is used, the above example will create two new iptables chains in the `filter` table and add rules that allow the given interface to send/receive traffic. | ||
When the `firewalld` backend is used, the above example will place the `cni0` interface into firewalld's `trusted` zone, allowing it to send/receive traffic. | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,164 @@ | ||
// Copyright 2016 CNI authors | ||
// | ||
// Licensed under the Apache License, Version 2.0 (the "License"); | ||
// you may not use this file except in compliance with the License. | ||
// You may obtain a copy of the License at | ||
// | ||
// http://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, software | ||
// distributed under the License is distributed on an "AS IS" BASIS, | ||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
// See the License for the specific language governing permissions and | ||
// limitations under the License. | ||
|
||
// This is a "meta-plugin". It reads in its own netconf, it does not create | ||
// any network interface but just changes the network sysctl. | ||
|
||
package main | ||
|
||
import ( | ||
"encoding/json" | ||
"fmt" | ||
"net" | ||
|
||
"github.com/containernetworking/cni/pkg/skel" | ||
"github.com/containernetworking/cni/pkg/types" | ||
"github.com/containernetworking/cni/pkg/types/current" | ||
"github.com/containernetworking/cni/pkg/version" | ||
"github.com/containernetworking/plugins/pkg/ns" | ||
) | ||
|
||
// FirewallNetConf represents the firewall configuration. | ||
type FirewallNetConf struct { | ||
types.NetConf | ||
|
||
// Backend is the firewall type to add rules to. Allowed values are | ||
// 'iptables' and 'firewalld'. | ||
Backend string `json:"backend"` | ||
|
||
// IptablesAdminChainName is an optional name to use instead of the default | ||
// admin rules override chain name that includes the interface name. | ||
IptablesAdminChainName string `json:"iptablesAdminChainName,omitempty"` | ||
|
||
// FirewalldZone is an optional firewalld zone to place the interface into. If | ||
// the firewalld backend is used but the zone is not given, it defaults | ||
// to 'trusted' | ||
FirewalldZone string `json:"firewalldZone,omitempty"` | ||
|
||
RawPrevResult map[string]interface{} `json:"prevResult,omitempty"` | ||
PrevResult *current.Result `json:"-"` | ||
} | ||
|
||
type FirewallBackend interface { | ||
Add(*FirewallNetConf) error | ||
Del(*FirewallNetConf) error | ||
} | ||
|
||
func ipString(ip net.IPNet) string { | ||
if ip.IP.To4() == nil { | ||
return ip.IP.String() + "/128" | ||
} | ||
return ip.IP.String() + "/32" | ||
} | ||
|
||
func parseConf(data []byte) (*FirewallNetConf, error) { | ||
conf := FirewallNetConf{} | ||
if err := json.Unmarshal(data, &conf); err != nil { | ||
return nil, fmt.Errorf("failed to load netconf: %v", err) | ||
} | ||
|
||
// Default the firewalld zone to trusted | ||
if conf.FirewalldZone == "" { | ||
conf.FirewalldZone = "trusted" | ||
} | ||
|
||
// Parse previous result. | ||
if conf.RawPrevResult == nil { | ||
return nil, fmt.Errorf("missing prevResult from earlier plugin") | ||
} | ||
|
||
resultBytes, err := json.Marshal(conf.RawPrevResult) | ||
if err != nil { | ||
return nil, fmt.Errorf("could not serialize prevResult: %v", err) | ||
} | ||
res, err := version.NewResult(conf.CNIVersion, resultBytes) | ||
if err != nil { | ||
return nil, fmt.Errorf("could not parse prevResult: %v", err) | ||
} | ||
conf.RawPrevResult = nil | ||
conf.PrevResult, err = current.NewResultFromResult(res) | ||
if err != nil { | ||
return nil, fmt.Errorf("could not convert result to current version: %v", err) | ||
} | ||
|
||
return &conf, nil | ||
} | ||
|
||
func getBackend(conf *FirewallNetConf) (FirewallBackend, error) { | ||
switch conf.Backend { | ||
case "iptables": | ||
return newIptablesBackend(conf) | ||
case "firewalld": | ||
return newFirewalldBackend(conf) | ||
} | ||
|
||
// Default to firewalld if it's running | ||
if isFirewalldRunning() { | ||
return newFirewalldBackend(conf) | ||
} | ||
|
||
// Otherwise iptables | ||
return newIptablesBackend(conf) | ||
} | ||
|
||
func cmdAdd(args *skel.CmdArgs) error { | ||
conf, err := parseConf(args.StdinData) | ||
if err != nil { | ||
return err | ||
} | ||
|
||
backend, err := getBackend(conf) | ||
if err != nil { | ||
return err | ||
} | ||
|
||
if err := backend.Add(conf); err != nil { | ||
return err | ||
} | ||
|
||
result := conf.PrevResult | ||
if result == nil { | ||
result = ¤t.Result{} | ||
} | ||
return types.PrintResult(result, conf.CNIVersion) | ||
} | ||
|
||
func cmdDel(args *skel.CmdArgs) error { | ||
conf, err := parseConf(args.StdinData) | ||
if err != nil { | ||
return err | ||
} | ||
|
||
backend, err := getBackend(conf) | ||
if err != nil { | ||
return err | ||
} | ||
|
||
// Tolerate errors if the container namespace has been torn down already | ||
containerNS, err := ns.GetNS(args.Netns) | ||
if err == nil { | ||
defer containerNS.Close() | ||
} | ||
|
||
// Runtime errors are ignored | ||
if err := backend.Del(conf); err != nil { | ||
return err | ||
} | ||
|
||
return nil | ||
} | ||
|
||
func main() { | ||
skel.PluginMain(cmdAdd, cmdDel, version.All) | ||
} |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This plugin shouldn't are about the network namespace, right?