2011-07-05 12:51:46 +00:00
|
|
|
|
/* This module enables a simple firewall.
|
|
|
|
|
|
|
|
|
|
The firewall can be customised in arbitrary ways by setting
|
|
|
|
|
‘networking.firewall.extraCommands’. For modularity, the firewall
|
|
|
|
|
uses several chains:
|
|
|
|
|
|
2017-01-18 16:18:11 +00:00
|
|
|
|
- ‘nixos-fw’ is the main chain for input packet processing.
|
|
|
|
|
|
|
|
|
|
- ‘nixos-fw-accept’ is called for accepted packets. If you want
|
|
|
|
|
additional logging, or want to reject certain packets anyway, you
|
|
|
|
|
can insert rules at the start of this chain.
|
2011-09-14 18:20:50 +00:00
|
|
|
|
|
2011-07-05 12:51:46 +00:00
|
|
|
|
- ‘nixos-fw-log-refuse’ and ‘nixos-fw-refuse’ are called for
|
|
|
|
|
refused packets. (The former jumps to the latter after logging
|
|
|
|
|
the packet.) If you want additional logging, or want to accept
|
|
|
|
|
certain packets anyway, you can insert rules at the start of
|
2017-01-18 16:18:11 +00:00
|
|
|
|
this chain.
|
2011-07-05 12:51:46 +00:00
|
|
|
|
|
2017-01-18 16:18:11 +00:00
|
|
|
|
- ‘nixos-fw-rpfilter’ is used as the main chain in the raw table,
|
|
|
|
|
called from the built-in ‘PREROUTING’ chain. If the kernel
|
|
|
|
|
supports it and `cfg.checkReversePath` is set this chain will
|
|
|
|
|
perform a reverse path filter test.
|
|
|
|
|
|
|
|
|
|
- ‘nixos-drop’ is used while reloading the firewall in order to drop
|
|
|
|
|
all traffic. Since reloading isn't implemented in an atomic way
|
|
|
|
|
this'll prevent any traffic from leaking through while reloading
|
|
|
|
|
the firewall. However, if the reloading fails, the ‘firewall-stop’
|
|
|
|
|
script will be called which in return will effectively disable the
|
|
|
|
|
complete firewall (in the default configuration).
|
2011-07-05 12:51:46 +00:00
|
|
|
|
|
|
|
|
|
*/
|
2011-09-14 18:20:50 +00:00
|
|
|
|
|
2014-04-14 14:26:48 +00:00
|
|
|
|
{ config, lib, pkgs, ... }:
|
2009-09-29 14:21:56 +00:00
|
|
|
|
|
2014-04-14 14:26:48 +00:00
|
|
|
|
with lib;
|
2009-07-24 23:12:52 +00:00
|
|
|
|
|
|
|
|
|
let
|
|
|
|
|
|
2009-09-29 14:21:56 +00:00
|
|
|
|
cfg = config.networking.firewall;
|
|
|
|
|
|
2017-02-06 21:43:23 +00:00
|
|
|
|
inherit (config.boot.kernelPackages) kernel;
|
2017-01-18 16:18:11 +00:00
|
|
|
|
|
2017-02-06 21:43:23 +00:00
|
|
|
|
kernelHasRPFilter = ((kernel.config.isEnabled or (x: false)) "IP_NF_MATCH_RPFILTER") || (kernel.features.netfilterRPFilter or false);
|
2017-01-18 16:18:11 +00:00
|
|
|
|
|
2011-07-05 12:51:46 +00:00
|
|
|
|
helpers =
|
|
|
|
|
''
|
|
|
|
|
# Helper command to manipulate both the IPv4 and IPv6 tables.
|
|
|
|
|
ip46tables() {
|
2014-04-11 14:29:45 +00:00
|
|
|
|
iptables -w "$@"
|
2012-09-18 21:20:46 +00:00
|
|
|
|
${optionalString config.networking.enableIPv6 ''
|
2014-04-11 14:29:45 +00:00
|
|
|
|
ip6tables -w "$@"
|
2012-09-18 21:20:46 +00:00
|
|
|
|
''}
|
2011-07-05 12:51:46 +00:00
|
|
|
|
}
|
|
|
|
|
'';
|
|
|
|
|
|
2014-09-16 08:15:10 +00:00
|
|
|
|
writeShScript = name: text: let dir = pkgs.writeScriptBin name ''
|
|
|
|
|
#! ${pkgs.stdenv.shell} -e
|
|
|
|
|
${text}
|
|
|
|
|
''; in "${dir}/bin/${name}";
|
|
|
|
|
|
|
|
|
|
startScript = writeShScript "firewall-start" ''
|
|
|
|
|
${helpers}
|
|
|
|
|
|
|
|
|
|
# Flush the old firewall rules. !!! Ideally, updating the
|
|
|
|
|
# firewall would be atomic. Apparently that's possible
|
|
|
|
|
# with iptables-restore.
|
|
|
|
|
ip46tables -D INPUT -j nixos-fw 2> /dev/null || true
|
2017-01-18 16:18:11 +00:00
|
|
|
|
for chain in nixos-fw nixos-fw-accept nixos-fw-log-refuse nixos-fw-refuse; do
|
2014-09-16 08:15:10 +00:00
|
|
|
|
ip46tables -F "$chain" 2> /dev/null || true
|
|
|
|
|
ip46tables -X "$chain" 2> /dev/null || true
|
|
|
|
|
done
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# The "nixos-fw-accept" chain just accepts packets.
|
|
|
|
|
ip46tables -N nixos-fw-accept
|
|
|
|
|
ip46tables -A nixos-fw-accept -j ACCEPT
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# The "nixos-fw-refuse" chain rejects or drops packets.
|
|
|
|
|
ip46tables -N nixos-fw-refuse
|
|
|
|
|
|
|
|
|
|
${if cfg.rejectPackets then ''
|
|
|
|
|
# Send a reset for existing TCP connections that we've
|
|
|
|
|
# somehow forgotten about. Send ICMP "port unreachable"
|
|
|
|
|
# for everything else.
|
|
|
|
|
ip46tables -A nixos-fw-refuse -p tcp ! --syn -j REJECT --reject-with tcp-reset
|
|
|
|
|
ip46tables -A nixos-fw-refuse -j REJECT
|
|
|
|
|
'' else ''
|
|
|
|
|
ip46tables -A nixos-fw-refuse -j DROP
|
|
|
|
|
''}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# The "nixos-fw-log-refuse" chain performs logging, then
|
|
|
|
|
# jumps to the "nixos-fw-refuse" chain.
|
|
|
|
|
ip46tables -N nixos-fw-log-refuse
|
|
|
|
|
|
|
|
|
|
${optionalString cfg.logRefusedConnections ''
|
|
|
|
|
ip46tables -A nixos-fw-log-refuse -p tcp --syn -j LOG --log-level info --log-prefix "rejected connection: "
|
|
|
|
|
''}
|
|
|
|
|
${optionalString (cfg.logRefusedPackets && !cfg.logRefusedUnicastsOnly) ''
|
|
|
|
|
ip46tables -A nixos-fw-log-refuse -m pkttype --pkt-type broadcast \
|
|
|
|
|
-j LOG --log-level info --log-prefix "rejected broadcast: "
|
|
|
|
|
ip46tables -A nixos-fw-log-refuse -m pkttype --pkt-type multicast \
|
|
|
|
|
-j LOG --log-level info --log-prefix "rejected multicast: "
|
|
|
|
|
''}
|
|
|
|
|
ip46tables -A nixos-fw-log-refuse -m pkttype ! --pkt-type unicast -j nixos-fw-refuse
|
|
|
|
|
${optionalString cfg.logRefusedPackets ''
|
|
|
|
|
ip46tables -A nixos-fw-log-refuse \
|
|
|
|
|
-j LOG --log-level info --log-prefix "rejected packet: "
|
|
|
|
|
''}
|
|
|
|
|
ip46tables -A nixos-fw-log-refuse -j nixos-fw-refuse
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# The "nixos-fw" chain does the actual work.
|
|
|
|
|
ip46tables -N nixos-fw
|
|
|
|
|
|
|
|
|
|
# Perform a reverse-path test to refuse spoofers
|
|
|
|
|
# For now, we just drop, as the raw table doesn't have a log-refuse yet
|
2016-10-08 12:26:52 +00:00
|
|
|
|
${optionalString (kernelHasRPFilter && (cfg.checkReversePath != false)) ''
|
2016-07-31 11:49:24 +00:00
|
|
|
|
# Clean up rpfilter rules
|
|
|
|
|
ip46tables -t raw -D PREROUTING -j nixos-fw-rpfilter 2> /dev/null || true
|
|
|
|
|
ip46tables -t raw -F nixos-fw-rpfilter 2> /dev/null || true
|
|
|
|
|
ip46tables -t raw -N nixos-fw-rpfilter 2> /dev/null || true
|
|
|
|
|
|
2016-10-08 12:26:52 +00:00
|
|
|
|
ip46tables -t raw -A nixos-fw-rpfilter -m rpfilter ${optionalString (cfg.checkReversePath == "loose") "--loose"} -j RETURN
|
2016-07-31 11:49:24 +00:00
|
|
|
|
|
|
|
|
|
# Allows this host to act as a DHCPv4 server
|
|
|
|
|
iptables -t raw -A nixos-fw-rpfilter -s 0.0.0.0 -d 255.255.255.255 -p udp --sport 68 --dport 67 -j RETURN
|
|
|
|
|
|
|
|
|
|
${optionalString cfg.logReversePathDrops ''
|
|
|
|
|
ip46tables -t raw -A nixos-fw-rpfilter -j LOG --log-level info --log-prefix "rpfilter drop: "
|
|
|
|
|
''}
|
|
|
|
|
ip46tables -t raw -A nixos-fw-rpfilter -j DROP
|
|
|
|
|
|
|
|
|
|
ip46tables -t raw -A PREROUTING -j nixos-fw-rpfilter
|
2014-09-16 08:15:10 +00:00
|
|
|
|
''}
|
|
|
|
|
|
|
|
|
|
# Accept all traffic on the trusted interfaces.
|
|
|
|
|
${flip concatMapStrings cfg.trustedInterfaces (iface: ''
|
|
|
|
|
ip46tables -A nixos-fw -i ${iface} -j nixos-fw-accept
|
|
|
|
|
'')}
|
|
|
|
|
|
|
|
|
|
# Accept packets from established or related connections.
|
|
|
|
|
ip46tables -A nixos-fw -m conntrack --ctstate ESTABLISHED,RELATED -j nixos-fw-accept
|
|
|
|
|
|
|
|
|
|
# Accept connections to the allowed TCP ports.
|
|
|
|
|
${concatMapStrings (port:
|
|
|
|
|
''
|
|
|
|
|
ip46tables -A nixos-fw -p tcp --dport ${toString port} -j nixos-fw-accept
|
|
|
|
|
''
|
|
|
|
|
) cfg.allowedTCPPorts
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
# Accept connections to the allowed TCP port ranges.
|
|
|
|
|
${concatMapStrings (rangeAttr:
|
|
|
|
|
let range = toString rangeAttr.from + ":" + toString rangeAttr.to; in
|
|
|
|
|
''
|
|
|
|
|
ip46tables -A nixos-fw -p tcp --dport ${range} -j nixos-fw-accept
|
|
|
|
|
''
|
|
|
|
|
) cfg.allowedTCPPortRanges
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
# Accept packets on the allowed UDP ports.
|
|
|
|
|
${concatMapStrings (port:
|
|
|
|
|
''
|
|
|
|
|
ip46tables -A nixos-fw -p udp --dport ${toString port} -j nixos-fw-accept
|
|
|
|
|
''
|
|
|
|
|
) cfg.allowedUDPPorts
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
# Accept packets on the allowed UDP port ranges.
|
|
|
|
|
${concatMapStrings (rangeAttr:
|
|
|
|
|
let range = toString rangeAttr.from + ":" + toString rangeAttr.to; in
|
|
|
|
|
''
|
|
|
|
|
ip46tables -A nixos-fw -p udp --dport ${range} -j nixos-fw-accept
|
|
|
|
|
''
|
|
|
|
|
) cfg.allowedUDPPortRanges
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
# Accept IPv4 multicast. Not a big security risk since
|
|
|
|
|
# probably nobody is listening anyway.
|
|
|
|
|
#iptables -A nixos-fw -d 224.0.0.0/4 -j nixos-fw-accept
|
|
|
|
|
|
|
|
|
|
# Optionally respond to ICMPv4 pings.
|
|
|
|
|
${optionalString cfg.allowPing ''
|
|
|
|
|
iptables -w -A nixos-fw -p icmp --icmp-type echo-request ${optionalString (cfg.pingLimit != null)
|
|
|
|
|
"-m limit ${cfg.pingLimit} "
|
|
|
|
|
}-j nixos-fw-accept
|
|
|
|
|
''}
|
|
|
|
|
|
|
|
|
|
${optionalString config.networking.enableIPv6 ''
|
2017-01-14 16:01:19 +00:00
|
|
|
|
# Accept all ICMPv6 messages except redirects and node
|
|
|
|
|
# information queries (type 139). See RFC 4890, section
|
|
|
|
|
# 4.4.
|
2014-09-16 08:15:10 +00:00
|
|
|
|
ip6tables -A nixos-fw -p icmpv6 --icmpv6-type redirect -j DROP
|
|
|
|
|
ip6tables -A nixos-fw -p icmpv6 --icmpv6-type 139 -j DROP
|
|
|
|
|
ip6tables -A nixos-fw -p icmpv6 -j nixos-fw-accept
|
2017-01-14 16:01:19 +00:00
|
|
|
|
|
|
|
|
|
# Allow this host to act as a DHCPv6 client
|
|
|
|
|
ip6tables -A nixos-fw -d fe80::/64 -p udp --dport 546 -j nixos-fw-accept
|
2014-09-16 08:15:10 +00:00
|
|
|
|
''}
|
|
|
|
|
|
|
|
|
|
${cfg.extraCommands}
|
|
|
|
|
|
|
|
|
|
# Reject/drop everything else.
|
|
|
|
|
ip46tables -A nixos-fw -j nixos-fw-log-refuse
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# Enable the firewall.
|
|
|
|
|
ip46tables -A INPUT -j nixos-fw
|
|
|
|
|
'';
|
|
|
|
|
|
|
|
|
|
stopScript = writeShScript "firewall-stop" ''
|
|
|
|
|
${helpers}
|
|
|
|
|
|
|
|
|
|
# Clean up in case reload fails
|
|
|
|
|
ip46tables -D INPUT -j nixos-drop 2>/dev/null || true
|
|
|
|
|
|
|
|
|
|
# Clean up after added ruleset
|
|
|
|
|
ip46tables -D INPUT -j nixos-fw 2>/dev/null || true
|
|
|
|
|
|
2016-10-08 12:26:52 +00:00
|
|
|
|
${optionalString (kernelHasRPFilter && (cfg.checkReversePath != false)) ''
|
2016-07-31 11:49:24 +00:00
|
|
|
|
ip46tables -t raw -D PREROUTING -j nixos-fw-rpfilter 2>/dev/null || true
|
2014-11-14 07:07:18 +00:00
|
|
|
|
''}
|
|
|
|
|
|
2014-09-16 08:15:10 +00:00
|
|
|
|
${cfg.extraStopCommands}
|
|
|
|
|
'';
|
|
|
|
|
|
|
|
|
|
reloadScript = writeShScript "firewall-reload" ''
|
|
|
|
|
${helpers}
|
|
|
|
|
|
|
|
|
|
# Create a unique drop rule
|
|
|
|
|
ip46tables -D INPUT -j nixos-drop 2>/dev/null || true
|
|
|
|
|
ip46tables -F nixos-drop 2>/dev/null || true
|
|
|
|
|
ip46tables -X nixos-drop 2>/dev/null || true
|
|
|
|
|
ip46tables -N nixos-drop
|
|
|
|
|
ip46tables -A nixos-drop -j DROP
|
|
|
|
|
|
|
|
|
|
# Don't allow traffic to leak out until the script has completed
|
|
|
|
|
ip46tables -A INPUT -j nixos-drop
|
|
|
|
|
if ${startScript}; then
|
|
|
|
|
ip46tables -D INPUT -j nixos-drop 2>/dev/null || true
|
|
|
|
|
else
|
|
|
|
|
echo "Failed to reload firewall... Stopping"
|
|
|
|
|
${stopScript}
|
|
|
|
|
exit 1
|
|
|
|
|
fi
|
|
|
|
|
'';
|
|
|
|
|
|
2009-07-24 23:12:52 +00:00
|
|
|
|
in
|
|
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
###### interface
|
|
|
|
|
|
|
|
|
|
options = {
|
2011-09-14 18:20:50 +00:00
|
|
|
|
|
2009-09-29 14:21:56 +00:00
|
|
|
|
networking.firewall.enable = mkOption {
|
2013-10-30 16:37:45 +00:00
|
|
|
|
type = types.bool;
|
2014-04-08 07:42:05 +00:00
|
|
|
|
default = true;
|
2009-07-26 21:27:35 +00:00
|
|
|
|
description =
|
|
|
|
|
''
|
2011-03-10 09:39:17 +00:00
|
|
|
|
Whether to enable the firewall. This is a simple stateful
|
|
|
|
|
firewall that blocks connection attempts to unauthorised TCP
|
|
|
|
|
or UDP ports on this machine. It does not affect packet
|
|
|
|
|
forwarding.
|
2009-07-26 21:27:35 +00:00
|
|
|
|
'';
|
|
|
|
|
};
|
2011-09-14 18:20:50 +00:00
|
|
|
|
|
2009-09-29 14:21:56 +00:00
|
|
|
|
networking.firewall.logRefusedConnections = mkOption {
|
2013-10-30 16:37:45 +00:00
|
|
|
|
type = types.bool;
|
2009-09-29 14:21:56 +00:00
|
|
|
|
default = true;
|
|
|
|
|
description =
|
|
|
|
|
''
|
|
|
|
|
Whether to log rejected or dropped incoming connections.
|
|
|
|
|
'';
|
|
|
|
|
};
|
2011-09-14 18:20:50 +00:00
|
|
|
|
|
2009-09-29 14:21:56 +00:00
|
|
|
|
networking.firewall.logRefusedPackets = mkOption {
|
2013-10-30 16:37:45 +00:00
|
|
|
|
type = types.bool;
|
2011-07-05 12:54:50 +00:00
|
|
|
|
default = false;
|
2009-09-29 14:21:56 +00:00
|
|
|
|
description =
|
|
|
|
|
''
|
|
|
|
|
Whether to log all rejected or dropped incoming packets.
|
|
|
|
|
This tends to give a lot of log messages, so it's mostly
|
|
|
|
|
useful for debugging.
|
|
|
|
|
'';
|
|
|
|
|
};
|
|
|
|
|
|
2011-07-05 12:51:46 +00:00
|
|
|
|
networking.firewall.logRefusedUnicastsOnly = mkOption {
|
2013-10-30 16:37:45 +00:00
|
|
|
|
type = types.bool;
|
2011-07-05 12:51:46 +00:00
|
|
|
|
default = true;
|
|
|
|
|
description =
|
|
|
|
|
''
|
|
|
|
|
If <option>networking.firewall.logRefusedPackets</option>
|
|
|
|
|
and this option are enabled, then only log packets
|
|
|
|
|
specifically directed at this machine, i.e., not broadcasts
|
|
|
|
|
or multicasts.
|
|
|
|
|
'';
|
|
|
|
|
};
|
|
|
|
|
|
2009-09-29 14:21:56 +00:00
|
|
|
|
networking.firewall.rejectPackets = mkOption {
|
2013-10-30 16:37:45 +00:00
|
|
|
|
type = types.bool;
|
2009-09-29 14:21:56 +00:00
|
|
|
|
default = false;
|
|
|
|
|
description =
|
|
|
|
|
''
|
2017-01-18 16:18:11 +00:00
|
|
|
|
If set, refused packets are rejected rather than dropped
|
2013-08-10 21:07:13 +00:00
|
|
|
|
(ignored). This means that an ICMP "port unreachable" error
|
2017-01-18 16:18:11 +00:00
|
|
|
|
message is sent back to the client (or a TCP RST packet in
|
|
|
|
|
case of an existing connection). Rejecting packets makes
|
2009-09-29 14:21:56 +00:00
|
|
|
|
port scanning somewhat easier.
|
|
|
|
|
'';
|
|
|
|
|
};
|
2011-09-14 18:20:50 +00:00
|
|
|
|
|
2012-09-20 21:51:44 +00:00
|
|
|
|
networking.firewall.trustedInterfaces = mkOption {
|
2015-06-15 16:18:46 +00:00
|
|
|
|
type = types.listOf types.str;
|
2017-01-18 16:18:11 +00:00
|
|
|
|
default = [ ];
|
|
|
|
|
example = [ "enp0s2" ];
|
2012-09-20 21:51:44 +00:00
|
|
|
|
description =
|
|
|
|
|
''
|
|
|
|
|
Traffic coming in from these interfaces will be accepted
|
2017-01-18 16:18:11 +00:00
|
|
|
|
unconditionally. Traffic from the loopback (lo) interface
|
|
|
|
|
will always be accepted.
|
2012-09-20 21:51:44 +00:00
|
|
|
|
'';
|
|
|
|
|
};
|
|
|
|
|
|
2009-09-29 14:21:56 +00:00
|
|
|
|
networking.firewall.allowedTCPPorts = mkOption {
|
2013-03-14 16:09:21 +00:00
|
|
|
|
type = types.listOf types.int;
|
2017-01-18 16:18:11 +00:00
|
|
|
|
default = [ ];
|
|
|
|
|
example = [ 22 80 ];
|
2009-07-24 23:12:52 +00:00
|
|
|
|
description =
|
|
|
|
|
''
|
|
|
|
|
List of TCP ports on which incoming connections are
|
|
|
|
|
accepted.
|
|
|
|
|
'';
|
|
|
|
|
};
|
2011-09-14 18:20:50 +00:00
|
|
|
|
|
2014-02-19 11:19:19 +00:00
|
|
|
|
networking.firewall.allowedTCPPortRanges = mkOption {
|
|
|
|
|
type = types.listOf (types.attrsOf types.int);
|
2017-01-18 16:18:11 +00:00
|
|
|
|
default = [ ];
|
|
|
|
|
example = [ { from = 8999; to = 9003; } ];
|
2014-02-19 11:19:19 +00:00
|
|
|
|
description =
|
|
|
|
|
''
|
|
|
|
|
A range of TCP ports on which incoming connections are
|
|
|
|
|
accepted.
|
|
|
|
|
'';
|
|
|
|
|
};
|
|
|
|
|
|
2011-03-09 16:37:16 +00:00
|
|
|
|
networking.firewall.allowedUDPPorts = mkOption {
|
2013-03-14 16:09:21 +00:00
|
|
|
|
type = types.listOf types.int;
|
2017-01-18 16:18:11 +00:00
|
|
|
|
default = [ ];
|
|
|
|
|
example = [ 53 ];
|
2011-03-09 16:37:16 +00:00
|
|
|
|
description =
|
|
|
|
|
''
|
|
|
|
|
List of open UDP ports.
|
|
|
|
|
'';
|
|
|
|
|
};
|
2011-09-14 18:20:50 +00:00
|
|
|
|
|
2014-02-19 11:19:19 +00:00
|
|
|
|
networking.firewall.allowedUDPPortRanges = mkOption {
|
|
|
|
|
type = types.listOf (types.attrsOf types.int);
|
2017-01-18 16:18:11 +00:00
|
|
|
|
default = [ ];
|
|
|
|
|
example = [ { from = 60000; to = 61000; } ];
|
2014-02-19 11:19:19 +00:00
|
|
|
|
description =
|
|
|
|
|
''
|
|
|
|
|
Range of open UDP ports.
|
|
|
|
|
'';
|
|
|
|
|
};
|
|
|
|
|
|
2011-03-09 15:28:47 +00:00
|
|
|
|
networking.firewall.allowPing = mkOption {
|
|
|
|
|
type = types.bool;
|
2017-01-18 16:18:11 +00:00
|
|
|
|
default = true;
|
2011-03-09 15:28:47 +00:00
|
|
|
|
description =
|
|
|
|
|
''
|
2011-03-11 11:08:16 +00:00
|
|
|
|
Whether to respond to incoming ICMPv4 echo requests
|
|
|
|
|
("pings"). ICMPv6 pings are always allowed because the
|
|
|
|
|
larger address space of IPv6 makes network scanning much
|
|
|
|
|
less effective.
|
2011-03-09 15:28:47 +00:00
|
|
|
|
'';
|
|
|
|
|
};
|
2011-09-14 18:20:50 +00:00
|
|
|
|
|
2014-03-14 18:55:30 +00:00
|
|
|
|
networking.firewall.pingLimit = mkOption {
|
|
|
|
|
type = types.nullOr (types.separatedString " ");
|
2017-01-18 16:18:11 +00:00
|
|
|
|
default = null;
|
|
|
|
|
example = "--limit 1/minute --limit-burst 5";
|
2014-03-14 18:55:30 +00:00
|
|
|
|
description =
|
|
|
|
|
''
|
|
|
|
|
If pings are allowed, this allows setting rate limits
|
2017-01-18 16:18:11 +00:00
|
|
|
|
on them. If non-null, this option should be in the form of
|
|
|
|
|
flags like "--limit 1/minute --limit-burst 5"
|
2014-03-14 18:55:30 +00:00
|
|
|
|
'';
|
|
|
|
|
};
|
|
|
|
|
|
2012-10-12 11:09:19 +00:00
|
|
|
|
networking.firewall.checkReversePath = mkOption {
|
2016-10-08 12:26:52 +00:00
|
|
|
|
type = types.either types.bool (types.enum ["strict" "loose"]);
|
2017-01-18 16:18:11 +00:00
|
|
|
|
default = kernelHasRPFilter;
|
|
|
|
|
example = "loose";
|
2012-10-12 11:09:19 +00:00
|
|
|
|
description =
|
|
|
|
|
''
|
2017-01-18 16:18:11 +00:00
|
|
|
|
Performs a reverse path filter test on a packet. If a reply
|
|
|
|
|
to the packet would not be sent via the same interface that
|
|
|
|
|
the packet arrived on, it is refused.
|
|
|
|
|
|
|
|
|
|
If using asymmetric routing or other complicated routing, set
|
|
|
|
|
this option to loose mode or disable it and setup your own
|
|
|
|
|
counter-measures.
|
2012-10-12 11:09:19 +00:00
|
|
|
|
|
2017-01-18 16:18:11 +00:00
|
|
|
|
This option can be either true (or "strict"), "loose" (only
|
|
|
|
|
drop the packet if the source address is not reachable via any
|
|
|
|
|
interface) or false. Defaults to the value of
|
|
|
|
|
kernelHasRPFilter.
|
2012-10-12 11:09:19 +00:00
|
|
|
|
|
|
|
|
|
(needs kernel 3.3+)
|
|
|
|
|
'';
|
|
|
|
|
};
|
|
|
|
|
|
2016-07-31 11:49:24 +00:00
|
|
|
|
networking.firewall.logReversePathDrops = mkOption {
|
|
|
|
|
type = types.bool;
|
2017-01-18 16:18:11 +00:00
|
|
|
|
default = false;
|
2016-07-31 11:49:24 +00:00
|
|
|
|
description =
|
|
|
|
|
''
|
|
|
|
|
Logs dropped packets failing the reverse path filter test if
|
|
|
|
|
the option networking.firewall.checkReversePath is enabled.
|
|
|
|
|
'';
|
|
|
|
|
};
|
|
|
|
|
|
2012-10-12 11:16:33 +00:00
|
|
|
|
networking.firewall.connectionTrackingModules = mkOption {
|
2017-01-18 16:18:11 +00:00
|
|
|
|
type = types.listOf types.str;
|
2017-01-22 16:29:38 +00:00
|
|
|
|
default = [ ];
|
2012-10-12 11:16:33 +00:00
|
|
|
|
example = [ "ftp" "irc" "sane" "sip" "tftp" "amanda" "h323" "netbios_sn" "pptp" "snmp" ];
|
|
|
|
|
description =
|
|
|
|
|
''
|
|
|
|
|
List of connection-tracking helpers that are auto-loaded.
|
|
|
|
|
The complete list of possible values is given in the example.
|
|
|
|
|
|
2013-08-10 21:07:13 +00:00
|
|
|
|
As helpers can pose as a security risk, it is advised to
|
2012-10-12 11:16:33 +00:00
|
|
|
|
set this to an empty list and disable the setting
|
2017-01-22 16:29:38 +00:00
|
|
|
|
networking.firewall.autoLoadConntrackHelpers unless you
|
|
|
|
|
know what you are doing. Connection tracking is disabled
|
|
|
|
|
by default.
|
2012-10-12 11:16:33 +00:00
|
|
|
|
|
2017-01-22 16:29:38 +00:00
|
|
|
|
Loading of helpers is recommended to be done through the
|
2017-01-18 16:18:11 +00:00
|
|
|
|
CT target. More info:
|
2012-10-12 11:16:33 +00:00
|
|
|
|
https://home.regit.org/netfilter-en/secure-use-of-helpers/
|
|
|
|
|
'';
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
networking.firewall.autoLoadConntrackHelpers = mkOption {
|
|
|
|
|
type = types.bool;
|
2017-01-22 16:29:38 +00:00
|
|
|
|
default = false;
|
2012-10-12 11:16:33 +00:00
|
|
|
|
description =
|
|
|
|
|
''
|
|
|
|
|
Whether to auto-load connection-tracking helpers.
|
|
|
|
|
See the description at networking.firewall.connectionTrackingModules
|
|
|
|
|
|
|
|
|
|
(needs kernel 3.5+)
|
|
|
|
|
'';
|
|
|
|
|
};
|
|
|
|
|
|
2011-03-11 13:04:17 +00:00
|
|
|
|
networking.firewall.extraCommands = mkOption {
|
2013-10-30 16:37:45 +00:00
|
|
|
|
type = types.lines;
|
2011-03-11 13:04:17 +00:00
|
|
|
|
default = "";
|
|
|
|
|
example = "iptables -A INPUT -p icmp -j ACCEPT";
|
|
|
|
|
description =
|
|
|
|
|
''
|
|
|
|
|
Additional shell commands executed as part of the firewall
|
|
|
|
|
initialisation script. These are executed just before the
|
|
|
|
|
final "reject" firewall rule is added, so they can be used
|
|
|
|
|
to allow packets that would otherwise be refused.
|
|
|
|
|
'';
|
|
|
|
|
};
|
2011-09-14 18:20:50 +00:00
|
|
|
|
|
2015-07-26 23:32:59 +00:00
|
|
|
|
networking.firewall.extraPackages = mkOption {
|
2016-01-17 18:34:55 +00:00
|
|
|
|
type = types.listOf types.package;
|
2015-07-26 23:32:59 +00:00
|
|
|
|
default = [ ];
|
2016-01-17 18:34:55 +00:00
|
|
|
|
example = literalExample "[ pkgs.ipset ]";
|
2015-07-26 23:32:59 +00:00
|
|
|
|
description =
|
|
|
|
|
''
|
|
|
|
|
Additional packages to be included in the environment of the system
|
|
|
|
|
as well as the path of networking.firewall.extraCommands.
|
|
|
|
|
'';
|
|
|
|
|
};
|
|
|
|
|
|
2014-09-16 04:29:46 +00:00
|
|
|
|
networking.firewall.extraStopCommands = mkOption {
|
|
|
|
|
type = types.lines;
|
|
|
|
|
default = "";
|
|
|
|
|
example = "iptables -P INPUT ACCEPT";
|
|
|
|
|
description =
|
|
|
|
|
''
|
|
|
|
|
Additional shell commands executed as part of the firewall
|
|
|
|
|
shutdown script. These are executed just after the removal
|
2017-01-18 16:18:11 +00:00
|
|
|
|
of the NixOS input rule, or if the service enters a failed
|
|
|
|
|
state.
|
2014-09-16 04:29:46 +00:00
|
|
|
|
'';
|
|
|
|
|
};
|
|
|
|
|
|
2009-07-24 23:12:52 +00:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
###### implementation
|
2009-07-26 21:27:35 +00:00
|
|
|
|
|
2013-10-31 12:26:06 +00:00
|
|
|
|
# FIXME: Maybe if `enable' is false, the firewall should still be
|
|
|
|
|
# built but not started by default?
|
2011-03-10 09:39:17 +00:00
|
|
|
|
config = mkIf cfg.enable {
|
2009-07-24 23:12:52 +00:00
|
|
|
|
|
2012-09-20 21:51:44 +00:00
|
|
|
|
networking.firewall.trustedInterfaces = [ "lo" ];
|
|
|
|
|
|
2015-07-26 23:32:59 +00:00
|
|
|
|
environment.systemPackages = [ pkgs.iptables ] ++ cfg.extraPackages;
|
2009-07-24 23:12:52 +00:00
|
|
|
|
|
2017-01-22 16:29:38 +00:00
|
|
|
|
boot.kernelModules = (optional cfg.autoLoadConntrackHelpers "nf_conntrack")
|
|
|
|
|
++ map (x: "nf_conntrack_${x}") cfg.connectionTrackingModules;
|
|
|
|
|
boot.extraModprobeConfig = optionalString cfg.autoLoadConntrackHelpers ''
|
|
|
|
|
options nf_conntrack nf_conntrack_helper=1
|
2012-10-12 11:16:33 +00:00
|
|
|
|
'';
|
2011-03-11 13:34:17 +00:00
|
|
|
|
|
2016-10-08 12:26:52 +00:00
|
|
|
|
assertions = [ { assertion = (cfg.checkReversePath != false) || kernelHasRPFilter;
|
2012-10-12 11:16:33 +00:00
|
|
|
|
message = "This kernel does not support rpfilter"; }
|
|
|
|
|
];
|
2011-03-11 13:34:17 +00:00
|
|
|
|
|
2014-09-16 08:15:10 +00:00
|
|
|
|
systemd.services.firewall = {
|
|
|
|
|
description = "Firewall";
|
2016-09-07 12:18:32 +00:00
|
|
|
|
wantedBy = [ "sysinit.target" ];
|
2016-09-07 12:24:54 +00:00
|
|
|
|
wants = [ "network-pre.target" ];
|
2014-12-02 01:19:06 +00:00
|
|
|
|
before = [ "network-pre.target" ];
|
|
|
|
|
after = [ "systemd-modules-load.service" ];
|
2014-09-16 03:04:31 +00:00
|
|
|
|
|
2015-07-26 23:32:59 +00:00
|
|
|
|
path = [ pkgs.iptables ] ++ cfg.extraPackages;
|
2014-09-16 08:15:10 +00:00
|
|
|
|
|
|
|
|
|
# FIXME: this module may also try to load kernel modules, but
|
2017-01-18 16:18:11 +00:00
|
|
|
|
# containers don't have CAP_SYS_MODULE. So the host system had
|
2014-09-16 08:15:10 +00:00
|
|
|
|
# better have all necessary modules already loaded.
|
|
|
|
|
unitConfig.ConditionCapability = "CAP_NET_ADMIN";
|
2016-09-07 12:18:32 +00:00
|
|
|
|
unitConfig.DefaultDependencies = false;
|
2014-09-16 08:15:10 +00:00
|
|
|
|
|
|
|
|
|
reloadIfChanged = true;
|
|
|
|
|
|
|
|
|
|
serviceConfig = {
|
|
|
|
|
Type = "oneshot";
|
|
|
|
|
RemainAfterExit = true;
|
|
|
|
|
ExecStart = "@${startScript} firewall-start";
|
|
|
|
|
ExecReload = "@${reloadScript} firewall-reload";
|
|
|
|
|
ExecStop = "@${stopScript} firewall-stop";
|
2009-07-24 23:12:52 +00:00
|
|
|
|
};
|
2014-09-16 08:15:10 +00:00
|
|
|
|
};
|
2009-07-24 23:12:52 +00:00
|
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
}
|