blob: 30b2b65e48fe14803584b730635cd148fb744eae [file] [log] [blame]
William A. Kennington III1ef795b2021-03-10 18:59:12 -08001# Copyright 2021 Google LLC
2#
3# Licensed under the Apache License, Version 2.0 (the "License");
4# you may not use this file except in compliance with the License.
5# You may obtain a copy of the License at
6#
7# http://www.apache.org/licenses/LICENSE-2.0
8#
9# Unless required by applicable law or agreed to in writing, software
10# distributed under the License is distributed on an "AS IS" BASIS,
11# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12# See the License for the specific language governing permissions and
13# limitations under the License.
14
15[ -z "${gbmc_ncsi_nft_lib-}" ] || return
16
17gbmc_ncsi_nft_init=
18gbmc_ncsi_nft_lastip4=
19gbmc_ncsi_nft_lastip6=
20
21gbmc_ncsi_nft_update() {
22 [ -n "$gbmc_ncsi_nft_init" ] || return
23
24 printf 'NCSI firewall for IPv4(%s) IPv6(%s)\n' \
25 "${gbmc_ncsi_nft_lastip4:-(deleted)}" \
26 "${gbmc_ncsi_nft_lastip6:-(deleted)}" >&2
27
28 local contents=
29 contents+='table inet filter {'$'\n'
30 contents+=' chain ncsi_input {'$'\n'
31
32 local ip4="$gbmc_ncsi_nft_lastip4"
33 if [ -n "$ip4" ]; then
34 contents+=" ip daddr $ip4 goto ncsi_legacy_input"$'\n'
35 fi
36
37 local ip6="$gbmc_ncsi_nft_lastip6"
38 if [ -n "$ip6" ]; then
39 contents+=" ip6 daddr $ip6/128 goto ncsi_legacy_input"$'\n'
William A. Kennington III1ef795b2021-03-10 18:59:12 -080040 fi
41
42 contents+=' }'$'\n'
William A. Kennington III1ef795b2021-03-10 18:59:12 -080043 contents+='}'$'\n'
44
45 local rfile=/run/nftables/40-gbmc-ncsi-in.rules
46 mkdir -p -m 755 "$(dirname "$rfile")"
47 printf '%s' "$contents" >"$rfile"
48
49 echo 'Restarting nftables' >&2
50 systemctl reset-failed nftables
51 systemctl --no-block restart nftables
52}
53
54gbmc_ncsi_nft_hook() {
55 if [ "$change" = 'init' ]; then
56 gbmc_ncsi_nft_init=1
57 gbmc_ncsi_nft_update
William A. Kennington IIIcbd9ef02021-11-04 20:52:17 -070058 elif [ "$change" = 'addr' -a "$intf" = '@NCSI_IF@' -a "$scope" = 'global' ] &&
59 [[ "$flags" != *deprecated* ]]; then
William A. Kennington III1ef795b2021-03-10 18:59:12 -080060 if [ "$fam" = 'inet6' ]; then
61 local -n lastip='gbmc_ncsi_nft_lastip6'
62 else
63 local -n lastip='gbmc_ncsi_nft_lastip4'
64 fi
65 if [ "$action" = 'add' -a "$ip" != "$lastip" ]; then
66 lastip="$ip"
67 gbmc_ncsi_nft_update
68 fi
69 if [ "$action" = 'del' -a "$ip" = "$lastip" ]; then
70 lastip=
71 gbmc_ncsi_nft_update
72 fi
73 fi
74}
75
76GBMC_IP_MONITOR_HOOKS+=(gbmc_ncsi_nft_hook)
77
78gbmc_ncsi_nft_lib=1