William A. Kennington III | 53527f3 | 2021-04-27 13:05:45 -0700 | [diff] [blame] | 1 | # 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_br_nft_lib-}" ] || return |
| 16 | |
William A. Kennington III | 4f233cd | 2021-05-07 03:25:25 -0700 | [diff] [blame] | 17 | source /usr/share/network/lib.sh || exit |
| 18 | |
William A. Kennington III | 53527f3 | 2021-04-27 13:05:45 -0700 | [diff] [blame] | 19 | gbmc_br_nft_init= |
| 20 | gbmc_br_nft_pfx= |
| 21 | |
| 22 | gbmc_br_nft_update() { |
| 23 | printf 'gBMC Bridge input firewall for %s\n' \ |
| 24 | "${gbmc_br_nft_pfx:-(deleted)}" >&2 |
| 25 | |
| 26 | local contents= |
| 27 | contents+='table inet filter {'$'\n' |
| 28 | contents+=' chain gbmc_br_int_input {'$'\n' |
| 29 | if [ -n "${gbmc_br_nft_pfx-}" ]; then |
| 30 | contents+=" ip6 saddr $gbmc_br_nft_pfx" |
| 31 | contents+=" ip6 daddr $gbmc_br_nft_pfx accept"$'\n' |
| 32 | fi |
| 33 | contents+=' }'$'\n' |
| 34 | contents+='}'$'\n' |
| 35 | |
| 36 | local rfile=/run/nftables/40-gbmc-br-int.rules |
| 37 | mkdir -p -m 755 "$(dirname "$rfile")" |
| 38 | printf '%s' "$contents" >"$rfile" |
| 39 | |
| 40 | echo 'Restarting nftables' >&2 |
| 41 | systemctl reset-failed nftables |
| 42 | systemctl --no-block restart nftables |
| 43 | } |
| 44 | |
| 45 | gbmc_br_nft_hook() { |
| 46 | if [ "$change" = 'init' ]; then |
| 47 | gbmc_br_nft_init=1 |
| 48 | gbmc_br_nft_update |
| 49 | # Match only global IP addresses on the bridge that match the BMC prefix |
| 50 | # (<mpfx>:fdxx:). So 2002:af4:3480:2248:fd02:6345:3069:9186 would become |
William A. Kennington III | a22b445 | 2021-11-04 22:57:43 -0700 | [diff] [blame^] | 51 | # a 2002:af4:3480:2248:fd00/76 rule. |
William A. Kennington III | 53527f3 | 2021-04-27 13:05:45 -0700 | [diff] [blame] | 52 | elif [ "$change" = 'addr' -a "$intf" = 'gbmcbr' -a "$scope" = 'global' ] && |
William A. Kennington III | 4f233cd | 2021-05-07 03:25:25 -0700 | [diff] [blame] | 53 | [[ "$fam" == 'inet6' && "$flags" != *tentative* ]]; then |
| 54 | local ip_bytes=() |
| 55 | if ! ip_to_bytes ip_bytes "$ip"; then |
| 56 | echo "gBMC Bridge NFT Invalid IP: $ip" >&2 |
| 57 | return 1 |
| 58 | fi |
William A. Kennington III | 6ca7033 | 2021-05-10 03:14:42 -0700 | [diff] [blame] | 59 | if (( ip_bytes[8] != 0xfd )); then |
William A. Kennington III | 4f233cd | 2021-05-07 03:25:25 -0700 | [diff] [blame] | 60 | return 0 |
| 61 | fi |
William A. Kennington III | 6ca7033 | 2021-05-10 03:14:42 -0700 | [diff] [blame] | 62 | local i |
| 63 | for (( i=9; i<16; i++ )); do |
| 64 | ip_bytes[$i]=0 |
| 65 | done |
William A. Kennington III | a22b445 | 2021-11-04 22:57:43 -0700 | [diff] [blame^] | 66 | pfx="$(ip_bytes_to_str ip_bytes)/76" |
William A. Kennington III | 53527f3 | 2021-04-27 13:05:45 -0700 | [diff] [blame] | 67 | if [ "$action" = "add" -a "$pfx" != "$gbmc_br_nft_pfx" ]; then |
| 68 | gbmc_br_nft_pfx="$pfx" |
| 69 | gbmc_br_nft_update |
| 70 | fi |
| 71 | fi |
| 72 | } |
| 73 | |
| 74 | GBMC_IP_MONITOR_HOOKS+=(gbmc_br_nft_hook) |
| 75 | |
| 76 | gbmc_br_nft_lib=1 |