2022-06-29 10:53:07 -04:00
|
|
|
#!/usr/bin/nft -f
|
|
|
|
|
|
|
|
flush ruleset
|
|
|
|
|
|
|
|
table inet filter {
|
2024-04-15 23:20:05 -04:00
|
|
|
define ip-allowlist-main = {
|
|
|
|
51.79.66.27, # attestation.app
|
|
|
|
51.79.52.38, # discuss.grapheneos.org
|
|
|
|
51.79.51.42, # matrix.grapheneos.org
|
|
|
|
}
|
|
|
|
|
|
|
|
define ip6-allowlist-main = {
|
|
|
|
2607:5300:205:200::7e9, # attestation.app
|
|
|
|
2607:5300:205:200::3c4, # discuss.grapheneos.org
|
|
|
|
2607:5300:205:200::26e1, # matrix.grapheneos.org
|
|
|
|
}
|
|
|
|
|
2024-03-27 03:08:21 -04:00
|
|
|
set ip-connlimit-ssh {
|
|
|
|
type ipv4_addr
|
|
|
|
flags dynamic
|
|
|
|
}
|
|
|
|
|
|
|
|
set ip6-connlimit-ssh {
|
|
|
|
type ipv6_addr
|
|
|
|
flags dynamic
|
|
|
|
}
|
|
|
|
|
2024-04-09 20:29:11 -04:00
|
|
|
set ip-connlimit-main {
|
2024-04-01 19:40:46 -04:00
|
|
|
type ipv4_addr
|
|
|
|
flags dynamic
|
|
|
|
}
|
|
|
|
|
2024-04-09 20:29:11 -04:00
|
|
|
set ip6-connlimit-main {
|
2024-04-01 19:40:46 -04:00
|
|
|
type ipv6_addr
|
|
|
|
flags dynamic
|
|
|
|
}
|
|
|
|
|
2022-06-29 10:53:07 -04:00
|
|
|
chain prerouting-raw {
|
|
|
|
type filter hook prerouting priority raw
|
2024-04-26 10:42:45 -04:00
|
|
|
policy drop
|
2022-06-29 10:53:07 -04:00
|
|
|
|
2024-03-23 11:18:02 -04:00
|
|
|
# drop packets without a reverse path (strict reverse path filtering)
|
|
|
|
fib saddr . iif oif missing counter drop
|
|
|
|
|
2022-07-21 17:31:16 -04:00
|
|
|
iif lo notrack accept
|
2024-03-24 13:27:55 -04:00
|
|
|
|
|
|
|
# drop packets to address not configured on incoming interface (strong host model)
|
2024-04-11 09:49:50 -04:00
|
|
|
#
|
|
|
|
# ordered after accepting loopback to permit using external IPs via loopback
|
2024-03-24 13:27:55 -04:00
|
|
|
fib daddr . iif type != { local, broadcast, multicast } counter drop
|
|
|
|
|
2024-04-11 09:56:30 -04:00
|
|
|
# handle new TCP connections beyond rate limit via synproxy to avoid conntrack table exhaustion
|
2024-04-26 16:30:49 -04:00
|
|
|
tcp dport { 22, 25, 80, 443, 465, 993 } tcp flags syn limit rate over 1024/second burst 1024 packets counter notrack accept
|
2024-04-11 09:56:30 -04:00
|
|
|
|
2024-04-26 10:42:45 -04:00
|
|
|
meta l4proto { tcp, udp } accept
|
2024-03-24 16:23:54 -04:00
|
|
|
meta l4proto { icmp, ipv6-icmp } notrack accept
|
2022-06-29 10:53:07 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
chain input {
|
|
|
|
type filter hook input priority filter
|
|
|
|
policy drop
|
|
|
|
|
2024-04-11 11:49:22 -04:00
|
|
|
tcp dport { 22, 25, 80, 443, 465, 993 } goto input-tcp-service
|
2024-04-23 02:14:07 -04:00
|
|
|
ct state vmap { invalid : drop, established : accept, related : accept, new : drop, untracked: accept }
|
2024-04-11 11:49:22 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
chain input-tcp-service {
|
2024-04-11 11:59:19 -04:00
|
|
|
iif lo goto input-tcp-service-loopback
|
2024-04-11 10:19:39 -04:00
|
|
|
|
|
|
|
# for synproxy, SYN is untracked and first ACK is invalid which are handled via fallthrough
|
2024-04-23 03:29:52 -04:00
|
|
|
ct state vmap { established : goto input-tcp-service-established, related : accept, new : goto input-tcp-service-new }
|
2022-06-29 10:53:07 -04:00
|
|
|
|
2024-03-28 23:28:34 -04:00
|
|
|
tcp dport 22 ip saddr @ip-connlimit-ssh counter reject with tcp reset
|
|
|
|
tcp dport 22 ip6 saddr and ffff:ffff:ffff:ffff:ffff:: @ip6-connlimit-ssh counter reject with tcp reset
|
2024-04-10 12:54:58 -04:00
|
|
|
tcp dport { 25, 80, 443, 465, 993 } ip saddr @ip-connlimit-main counter reject with tcp reset
|
|
|
|
tcp dport { 25, 80, 443, 465, 993 } ip6 saddr and ffff:ffff:ffff:ffff:: @ip6-connlimit-main counter reject with tcp reset
|
2024-04-11 11:49:22 -04:00
|
|
|
synproxy mss 1460 wscale 7 timestamp sack-perm
|
2022-06-29 10:53:07 -04:00
|
|
|
}
|
|
|
|
|
2024-04-11 11:59:19 -04:00
|
|
|
chain input-tcp-service-new {
|
2024-04-10 09:29:56 -04:00
|
|
|
tcp dport 22 ip saddr @ip-connlimit-ssh counter reject with tcp reset
|
|
|
|
tcp dport 22 ip6 saddr and ffff:ffff:ffff:ffff:ffff:: @ip6-connlimit-ssh counter reject with tcp reset
|
2024-04-10 12:54:58 -04:00
|
|
|
tcp dport { 25, 80, 443, 465, 993 } ip saddr @ip-connlimit-main counter reject with tcp reset
|
|
|
|
tcp dport { 25, 80, 443, 465, 993 } ip6 saddr and ffff:ffff:ffff:ffff:: @ip6-connlimit-main counter reject with tcp reset
|
2024-04-10 09:29:56 -04:00
|
|
|
accept
|
|
|
|
}
|
|
|
|
|
2024-04-11 15:59:07 -04:00
|
|
|
# add connections established without synproxy to connection limit sets with limits enforced
|
2024-04-11 11:59:19 -04:00
|
|
|
chain input-tcp-service-established {
|
2024-04-10 09:29:56 -04:00
|
|
|
ct mark 0x1 accept
|
2024-04-15 22:38:15 -04:00
|
|
|
tcp dport 22 add @ip-connlimit-ssh { ip saddr ct count over 1 } counter reject with tcp reset
|
|
|
|
tcp dport 22 add @ip6-connlimit-ssh { ip6 saddr and ffff:ffff:ffff:ffff:ffff:: ct count over 1 } counter reject with tcp reset
|
2024-04-15 23:20:05 -04:00
|
|
|
tcp dport { 25, 80, 443, 465, 993 } ip saddr != $ip-allowlist-main add @ip-connlimit-main { ip saddr ct count over 32 } counter reject with tcp reset
|
|
|
|
tcp dport { 25, 80, 443, 465, 993 } ip6 saddr != $ip6-allowlist-main add @ip6-connlimit-main { ip6 saddr and ffff:ffff:ffff:ffff:: ct count over 32 } counter reject with tcp reset
|
2024-04-10 09:29:56 -04:00
|
|
|
ct mark set 0x1 accept
|
|
|
|
}
|
|
|
|
|
2024-04-11 15:59:07 -04:00
|
|
|
# add connections established with synproxy to connection limit sets with limits enforced
|
2024-04-11 11:59:19 -04:00
|
|
|
chain input-tcp-service-loopback {
|
2024-04-05 13:36:09 -04:00
|
|
|
tcp flags != syn accept
|
2024-04-15 22:38:15 -04:00
|
|
|
tcp dport 22 add @ip-connlimit-ssh { ip saddr ct count over 1 } counter reject with tcp reset
|
|
|
|
tcp dport 22 add @ip6-connlimit-ssh { ip6 saddr and ffff:ffff:ffff:ffff:ffff:: ct count over 1 } counter reject with tcp reset
|
2024-04-15 23:20:05 -04:00
|
|
|
tcp dport { 25, 80, 443, 465, 993 } ip saddr != $ip-allowlist-main add @ip-connlimit-main { ip saddr ct count over 32 } counter reject with tcp reset
|
|
|
|
tcp dport { 25, 80, 443, 465, 993 } ip6 saddr != $ip6-allowlist-main add @ip6-connlimit-main { ip6 saddr and ffff:ffff:ffff:ffff:: ct count over 32 } counter reject with tcp reset
|
2024-04-10 09:29:56 -04:00
|
|
|
ct mark set 0x1 accept
|
2024-03-28 13:23:13 -04:00
|
|
|
}
|
|
|
|
|
2022-06-29 10:53:07 -04:00
|
|
|
chain forward {
|
|
|
|
type filter hook forward priority filter
|
|
|
|
policy drop
|
|
|
|
}
|
|
|
|
|
2024-04-05 19:14:05 -04:00
|
|
|
chain output-raw {
|
|
|
|
type filter hook output priority raw
|
|
|
|
|
2024-04-17 15:03:13 -04:00
|
|
|
oif lo goto output-raw-loopback
|
2024-03-27 12:31:09 -04:00
|
|
|
skuid != { root, systemd-network, unbound, chrony, postfix, dovecot, dovenull, http } counter goto graceful-reject
|
2024-04-17 15:03:13 -04:00
|
|
|
meta l4proto { icmp, ipv6-icmp } notrack accept
|
2022-06-29 20:18:51 -04:00
|
|
|
}
|
|
|
|
|
2024-04-17 15:03:13 -04:00
|
|
|
chain output-raw-loopback {
|
|
|
|
skuid unbound meta l4proto { tcp, udp } th sport 53 th dport >= 1024 notrack accept
|
|
|
|
skuid { chrony, postfix, opendkim, opendmarc, policyd-spf } meta l4proto { tcp, udp } th sport >= 1024 th dport 53 notrack accept
|
2022-07-25 20:03:09 -04:00
|
|
|
|
2024-03-27 12:31:09 -04:00
|
|
|
skuid != root counter goto graceful-reject
|
2024-04-17 15:03:13 -04:00
|
|
|
notrack accept
|
2022-07-25 20:03:09 -04:00
|
|
|
}
|
|
|
|
|
2024-03-27 12:31:09 -04:00
|
|
|
chain graceful-reject {
|
2022-06-29 20:18:51 -04:00
|
|
|
meta l4proto udp reject
|
|
|
|
meta l4proto tcp reject with tcp reset
|
|
|
|
reject
|
2022-06-29 10:53:07 -04:00
|
|
|
}
|
|
|
|
}
|