Projet

Général

Profil

Paste
Télécharger au format
Statistiques
| Branche: | Révision:

root / manifests / init.pp @ fcb79d73

Historique | Voir | Annoter | Télécharger (5,73 ko)

1
# @summary Configure nftables
2
#
3
# @example allow dns out and do not allow ntp out
4
#   class{'nftables:
5
#     out_ntp = false,
6
#     out_dns = true,
7
#   }
8
#
9
# @example do not flush particular tables, fail2ban in this case
10
#   class{'nftables':
11
#     noflush_tables = ['inet-f2b-table'],
12
#   }
13
#
14
# @param out_all
15
#   Allow all outbound connections. If `true` then all other
16
#   out parameters `out_ntp`, `out_dns`, ... will be assuemed
17
#   false.
18
#
19
# @param out_ntp
20
#   Allow outbound to ntp servers.
21
#
22
# @param out_http
23
#   Allow outbound to http servers.
24
#
25
# @param out_dns
26
#   Allow outbound to dns servers.
27
#
28
# @param out_https
29
#   Allow outbound to https servers.
30
#
31
# @param out_icmp
32
#   Allow outbound ICMPv4/v6 traffic.
33
#
34
# @param in_ssh
35
#   Allow inbound to ssh servers.
36
#
37
# @param in_icmp
38
#   Allow inbound ICMPv4/v6 traffic.
39
#
40
# @param inet_filter
41
#   Add default tables, chains and rules to process traffic.
42
#
43
# @param nat
44
#   Add default tables and chains to process NAT traffic.
45
#
46
# @param nat_table_name
47
#   The name of the 'nat' table.
48
#
49
# @param sets
50
#   Allows sourcing set definitions directly from Hiera.
51
#
52
# @param log_prefix
53
#   String that will be used as prefix when logging packets. It can contain
54
#   two variables using standard sprintf() string-formatting:
55
#    * chain: Will be replaced by the name of the chain.
56
#    * comment: Allows chains to add extra comments.
57
#
58
# @param log_limit
59
#  String with the content of a limit statement to be applied
60
#  to the rules that log discarded traffic. Set to false to
61
#  disable rate limiting.
62
#
63
# @param reject_with
64
#   How to discard packets not matching any rule. If `false`, the
65
#   fate of the packet will be defined by the chain policy (normally
66
#   drop), otherwise the packet will be rejected with the REJECT_WITH
67
#   policy indicated by the value of this parameter.
68
#
69
# @param in_out_conntrack
70
#   Adds INPUT and OUTPUT rules to allow traffic that's part of an
71
#   established connection and also to drop invalid packets.
72
#
73
# @param fwd_conntrack
74
#   Adds FORWARD rules to allow traffic that's part of an
75
#   established connection and also to drop invalid packets.
76
#
77
# @param firewalld_enable
78
#   Configures how the firewalld systemd service unit is enabled. It might be
79
#   useful to set this to false if you're externaly removing firewalld from
80
#   the system completely.
81
#
82
# @param noflush_tables
83
#   If specified only other existings tables will be flushed.
84
#   If left unset all tables will be flushed via a `flush ruleset`
85
#
86
# @param rules
87
#   Specify hashes of `nftables::rule`s via hiera
88
#
89
class nftables (
90
  Boolean $in_ssh = true,
91
  Boolean $in_icmp = true,
92
  Boolean $out_ntp = true,
93
  Boolean $out_dns = true,
94
  Boolean $out_http = true,
95
  Boolean $out_https = true,
96
  Boolean $out_icmp = true,
97
  Boolean $out_all = false,
98
  Boolean $in_out_conntrack = true,
99
  Boolean $fwd_conntrack = false,
100
  Boolean $inet_filter = true,
101
  Boolean $nat = true,
102
  Hash $rules = {},
103
  Hash $sets = {},
104
  String $log_prefix = '[nftables] %<chain>s %<comment>s',
105
  String[1] $nat_table_name = 'nat',
106
  Variant[Boolean[false], String] $log_limit = '3/minute burst 5 packets',
107
  Variant[Boolean[false], Pattern[/icmp(v6|x)? type .+|tcp reset/]] $reject_with = 'icmpx type port-unreachable',
108
  Variant[Boolean[false], Enum['mask']] $firewalld_enable = 'mask',
109
  Optional[Array[Pattern[/^(ip|ip6|inet)-[-a-zA-Z0-9_]+$/],1]] $noflush_tables = undef,
110
) {
111
  package { 'nftables':
112
    ensure => installed,
113
  } -> file_line {
114
    'enable_nftables':
115
      line   => 'include "/etc/nftables/puppet.nft"',
116
      path   => '/etc/sysconfig/nftables.conf',
117
      notify => Service['nftables'],
118
  } -> file {
119
    default:
120
      owner => 'root',
121
      group => 'root',
122
      mode  => '0640';
123
    '/etc/nftables/puppet-preflight':
124
      ensure  => directory,
125
      mode    => '0750',
126
      purge   => true,
127
      force   => true,
128
      recurse => true;
129
    '/etc/nftables/puppet-preflight.nft':
130
      ensure  => file,
131
      content => epp('nftables/config/puppet.nft.epp', {
132
          'inet_filter' => $inet_filter,
133
          'nat'         => $nat,
134
          'noflush'     => $noflush_tables
135
        }
136
      );
137
  } ~> exec {
138
    'nft validate':
139
      refreshonly => true,
140
      command     => '/usr/sbin/nft -I /etc/nftables/puppet-preflight -c -f /etc/nftables/puppet-preflight.nft || ( /usr/bin/echo "#CONFIG BROKEN" >> /etc/nftables/puppet-preflight.nft && /bin/false)';
141
  } -> file {
142
    default:
143
      owner => 'root',
144
      group => 'root',
145
      mode  => '0640';
146
    '/etc/nftables/puppet.nft':
147
      ensure  => file,
148
      content => epp('nftables/config/puppet.nft.epp', {
149
          'inet_filter' => $inet_filter,
150
          'nat'         => $nat,
151
          'noflush'     => $noflush_tables
152
        }
153
      );
154
    '/etc/nftables/puppet':
155
      ensure  => directory,
156
      mode    => '0750',
157
      purge   => true,
158
      force   => true,
159
      recurse => true;
160
  } ~> service { 'nftables':
161
    ensure     => running,
162
    enable     => true,
163
    hasrestart => true,
164
    restart    => '/usr/bin/systemctl reload nftables',
165
  }
166

    
167
  systemd::dropin_file { 'puppet_nft.conf':
168
    ensure  => present,
169
    unit    => 'nftables.service',
170
    content => file('nftables/systemd/puppet_nft.conf'),
171
    notify  => Service['nftables'],
172
  }
173

    
174
  # firewalld.enable can be mask or false depending upon if firewalld is installed or not
175
  # https://tickets.puppetlabs.com/browse/PUP-10814
176
  service { 'firewalld':
177
    ensure => stopped,
178
    enable => $firewalld_enable,
179
  }
180

    
181
  if $inet_filter {
182
    include nftables::inet_filter
183
  }
184

    
185
  if $nat {
186
    include nftables::ip_nat
187
  }
188

    
189
  # inject custom rules e.g. from hiera
190
  $rules.each |$n,$v| {
191
    nftables::rule {
192
      $n:
193
        * => $v,
194
    }
195
  }
196

    
197
  # inject custom sets e.g. from hiera
198
  $sets.each |$n,$v| {
199
    nftables::set {
200
      $n:
201
        * => $v,
202
    }
203
  }
204
}