]> git.openstreetmap.org Git - chef.git/blob - cookbooks/networking/resources/firewall_rule.rb
Refactor firewall rules to simplify IPv4/IPv6 handling
[chef.git] / cookbooks / networking / resources / firewall_rule.rb
1 #
2 # Cookbook:: networking
3 # Resource:: firewall_rule
4 #
5 # Copyright:: 2020, OpenStreetMap Foundation
6 #
7 # Licensed under the Apache License, Version 2.0 (the "License");
8 # you may not use this file except in compliance with the License.
9 # You may obtain a copy of the License at
10 #
11 #     https://www.apache.org/licenses/LICENSE-2.0
12 #
13 # Unless required by applicable law or agreed to in writing, software
14 # distributed under the License is distributed on an "AS IS" BASIS,
15 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16 # See the License for the specific language governing permissions and
17 # limitations under the License.
18 #
19
20 require "ipaddr"
21
22 resource_name :firewall_rule
23 provides :firewall_rule
24
25 unified_mode true
26
27 default_action :nothing
28
29 property :rule, :kind_of => String, :name_property => true
30 property :context, :kind_of => Symbol, :required => true, :is => [:incoming, :outgoing]
31 property :protocol, :kind_of => Symbol, :required => true, :is => [:udp, :tcp]
32 property :source, :kind_of => [String, Symbol, Array]
33 property :dest, :kind_of => [String, Symbol, Array]
34 property :dest_ports, :kind_of => [String, Integer, Array]
35 property :source_ports, :kind_of => [String, Integer, Array]
36 property :rate_limit, :kind_of => String
37 property :connection_limit, :kind_of => [String, Integer]
38 property :helper, :kind_of => String
39
40 property :compile_time, TrueClass, :default => true
41
42 action :accept do
43   add_rule(:accept, "ip")
44   add_rule(:accept, "ip6")
45 end
46
47 action :drop do
48   add_rule(:drop, "ip")
49   add_rule(:drop, "ip6")
50 end
51
52 action :reject do
53   add_rule(:reject, "ip")
54   add_rule(:reject, "ip6")
55 end
56
57 action_class do
58   def add_rule(action, ip)
59     rule = []
60
61     protocol = new_resource.protocol.to_s
62
63     source = addresses(new_resource.source, ip)
64     dest = addresses(new_resource.dest, ip)
65
66     return if new_resource.source && source.empty?
67     return if new_resource.dest && dest.empty?
68
69     rule << "#{protocol} sport #{format_ports(new_resource.source_ports)}"  if new_resource.source_ports
70     rule << "#{protocol} dport #{format_ports(new_resource.dest_ports)}" if new_resource.dest_ports
71     rule << "#{ip} saddr #{format_addresses(source, ip)}" if new_resource.source
72     rule << "#{ip} daddr #{format_addresses(dest, ip)}" if new_resource.dest
73     rule << "ct state new" if new_resource.protocol == :tcp
74
75     if new_resource.connection_limit
76       set = "connlimit-#{new_resource.rule}-#{ip}"
77
78       node.default[:networking][:firewall][:sets] << set
79
80       rule << "add @#{set} { #{ip} saddr ct count #{new_resource.connection_limit} }"
81     end
82
83     if new_resource.rate_limit =~ %r{^s:(\d+)/sec:(\d+)$}
84       set = "ratelimit-#{new_resource.rule}-#{ip}"
85       rate = Regexp.last_match(1)
86       burst = Regexp.last_match(2)
87
88       node.default[:networking][:firewall][:sets] << set
89
90       rule << "update @#{set} { #{ip} saddr limit rate #{rate}/second burst #{burst} packets }"
91     end
92
93     if new_resource.helper
94       helper = "#{new_resource.rule}-#{new_resource.helper}"
95
96       node.default[:networking][:firewall][:helpers] << {
97         :name => helper, :helper => new_resource.helper, :protocol => protocol
98       }
99
100       rule << "ct helper set #{helper}"
101     end
102
103     rule << case action
104             when :accept then "accept"
105             when :drop then "jump log-and-drop"
106             when :reject then "jump log-and-reject"
107             end
108
109     node.default[:networking][:firewall][new_resource.context] << rule.join(" ")
110   end
111
112   def addresses(addresses, ip)
113     if addresses.is_a?(Symbol)
114       addresses
115     else
116       Array(addresses).map do |address|
117         if ip == "ip" && IPAddr.new(address).ipv4?
118           address
119         elsif ip == "ip6" && IPAddr.new(address).ipv6?
120           address
121         end
122       end.compact
123     end
124   end
125
126   def format_ports(ports)
127     "{ #{Array(ports).map(&:to_s).join(', ')} }"
128   end
129
130   def format_addresses(addresses, ip)
131     if addresses.is_a?(Symbol)
132       "@#{ip}-#{addresses}-addresses"
133     else
134       "{ #{Array(addresses).map(&:to_s).join(', ')} }"
135     end
136   end
137 end