Skip to content

Commit

Permalink
Test fixes for reported issues
Browse files Browse the repository at this point in the history
  • Loading branch information
sarthurdev committed Nov 15, 2024
1 parent 8db056b commit 43a0b4a
Show file tree
Hide file tree
Showing 6 changed files with 59 additions and 19 deletions.
28 changes: 16 additions & 12 deletions data/templates/load-balancing/nftables-wlb.j2
Original file line number Diff line number Diff line change
Expand Up @@ -22,15 +22,17 @@ table ip vyos_wanloadbalance {
iifname "{{ ifname }}" ct state new ct mark set {{ state.mark }}
{% endif %}
{% endfor %}
{% for rule_id, rule_conf in rule.items() %}
{% if rule_conf.exclude is vyos_defined %}
{% if rule is vyos_defined %}
{% for rule_id, rule_conf in rule.items() %}
{% if rule_conf.exclude is vyos_defined %}
{{ rule_conf | wlb_nft_rule(rule_id, exclude=True, action='accept') }}
{% else %}
{% set limit = rule_conf.limit is vyos_defined %}
{% else %}
{% set limit = rule_conf.limit is vyos_defined %}
{{ rule_conf | wlb_nft_rule(rule_id, limit=limit, weight=True, health_state=health_state) }}
{{ rule_conf | wlb_nft_rule(rule_id, restore_mark=True) }}
{% endif %}
{% endfor %}
{% endif %}
{% endfor %}
{% endif %}
}

chain wlb_mangle_output {
Expand All @@ -39,15 +41,17 @@ table ip vyos_wanloadbalance {
meta mark != 0x0 counter accept
meta l4proto icmp counter accept
ip saddr 127.0.0.0/8 ip daddr 127.0.0.0/8 counter accept
{% for rule_id, rule_conf in rule.items() %}
{% if rule_conf.exclude is vyos_defined %}
{% if rule is vyos_defined %}
{% for rule_id, rule_conf in rule.items() %}
{% if rule_conf.exclude is vyos_defined %}
{{ rule_conf | wlb_nft_rule(rule_id, local=True, exclude=True, action='accept') }}
{% else %}
{% set limit = rule_conf.limit is vyos_defined %}
{% else %}
{% set limit = rule_conf.limit is vyos_defined %}
{{ rule_conf | wlb_nft_rule(rule_id, local=True, limit=limit, weight=True, health_state=health_state) }}
{{ rule_conf | wlb_nft_rule(rule_id, local=True, restore_mark=True) }}
{% endif %}
{% endfor %}
{% endif %}
{% endfor %}
{% endif %}
{% endif %}
}

Expand Down
9 changes: 7 additions & 2 deletions python/vyos/wanloadbalance.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@

from vyos.utils.process import run

dhclient_lease = '/var/lib/dhcp/dhclient_{0}.lease'
dhclient_lease = '/run/dhclient/dhclient_{0}.lease'

def nft_rule(rule_conf, rule_id, local=False, exclude=False, limit=False, weight=None, health_state=None, action=None, restore_mark=False):
output = []
Expand All @@ -32,11 +32,16 @@ def nft_rule(rule_conf, rule_id, local=False, exclude=False, limit=False, weight

if 'protocol' in rule_conf and rule_conf['protocol'] != 'all':
protocol = rule_conf['protocol']
operator = ''

if protocol[:1] == '!':
operator = '!='
protocol = protocol[1:]

if protocol == 'tcp_udp':
protocol = '{ tcp, udp }'

output.append(f'meta l4proto {protocol}')
output.append(f'meta l4proto {operator} {protocol}')

for direction in ['source', 'destination']:
if direction not in rule_conf:
Expand Down
9 changes: 9 additions & 0 deletions smoketest/scripts/cli/base_vyostest_shim.py
Original file line number Diff line number Diff line change
Expand Up @@ -147,6 +147,15 @@ def verify_nftables_chain(self, nftables_search, table, chain, inverse=False, ar
break
self.assertTrue(not matched if inverse else matched, msg=search)

def verify_nftables_chain_exists(self, table, chain, inverse=False):
try:
cmd(f'sudo nft list chain {table} {chain}')
if inverse:
self.fail(f'Chain exists: {table} {chain}')
except OSError:
if not inverse:
self.fail(f'Chain does not exist: {table} {chain}')

# Verify ip rule output
def verify_rules(self, rules_search, inverse=False, addr_family='inet'):
rule_output = cmd(f'ip -family {addr_family} rule show')
Expand Down
10 changes: 10 additions & 0 deletions smoketest/scripts/cli/test_load-balancing_wan.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,16 @@ def tearDown(self):
self.cli_delete(base_path)
self.cli_commit()

removed_chains = [
'wlb_mangle_isp_veth1',
'wlb_mangle_isp_veth2',
'wlb_mangle_isp_eth201',
'wlb_mangle_isp_eth202'
]

for chain in removed_chains:
self.verify_nftables_chain_exists('ip vyos_wanloadbalance', chain, inverse=True)

def test_table_routes(self):
ns1 = 'ns201'
ns2 = 'ns202'
Expand Down
8 changes: 3 additions & 5 deletions src/conf_mode/load-balancing_wan.py
Original file line number Diff line number Diff line change
Expand Up @@ -98,14 +98,12 @@ def generate(lb):

def apply(lb):
if not lb:
cmd(f'systemctl stop {service}')
return None

cmd(f'systemctl restart {service}')
cmd(f'sudo systemctl stop {service}')
else:
cmd(f'sudo systemctl restart {service}')

call_dependents()


if __name__ == '__main__':
try:
c = get_config()
Expand Down
14 changes: 14 additions & 0 deletions src/helpers/vyos-load-balancer.py
Original file line number Diff line number Diff line change
Expand Up @@ -124,6 +124,16 @@ def nftables_update(lb):

return True

def cleanup(lb):
if 'interface_health' in lb:
index = 1
for ifname, health_conf in lb['interface_health'].items():
table_num = lb['mark_offset'] + index
run(f'ip route delete table {table_num} default')
run(f'ip rule delete fwmark {hex(table_num)} table {table_num}')

run(f'nft delete table ip vyos_wanloadbalance')

def get_config():
conf = Config()
base = ['load-balancing', 'wan']
Expand Down Expand Up @@ -199,9 +209,11 @@ def handle_sigterm(signum, frame):
if os.path.exists(wlb_pid_file):
os.unlink(wlb_pid_file)

cleanup(lb)
sys.exit(0)

signal.signal(signal.SIGUSR2, handle_sigusr2)
signal.signal(signal.SIGINT, handle_sigterm)
signal.signal(signal.SIGTERM, handle_sigterm)

with open(wlb_pid_file, 'w') as f:
Expand Down Expand Up @@ -260,3 +272,5 @@ def handle_sigterm(signum, frame):

if os.path.exists(wlb_pid_file):
os.unlink(wlb_pid_file)

cleanup(lb)

0 comments on commit 43a0b4a

Please sign in to comment.