Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

DHCP6: use lease_type to key lease map in addition to iaid_duid #8492

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

agoodkind
Copy link

Description

Currently, get_leases6 misreports clients that request an address and a prefix delegation. Adding the lease type to the map key prevents this.

Testing

Request an address and a PD from the same client (same DUID) and verify that the address appeared in the output of /api/dhcpv6/leases/searchLease/ and that the delegated prefix appeared in /api/dhcpv6/leases/searchPrefix/.

Fixes: #8472

@agoodkind
Copy link
Author

@AdSchellevis

@@ -148,7 +148,7 @@ def parse_lease(lines):
elif len(line) > 1 and line[0] == '}' and len(cur_lease) > 0:
cur_lease.append(line)
parsed_lease = parse_lease(cur_lease)
last_leases[parsed_lease['iaid_duid']] = parsed_lease
last_leases[parsed_lease['lease_type'], parsed_lease['iaid_duid']] = parsed_lease
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
last_leases[parsed_lease['lease_type'], parsed_lease['iaid_duid']] = parsed_lease
last_leases["%s,%s" % (parsed_lease['lease_type'], parsed_lease['iaid_duid'])] = parsed_lease

I prefer to use single value keys for debugging, the suggested change should have the same result as you're looking for.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Development

Successfully merging this pull request may close these issues.

DHCPv6 clients requesting both an address and a prefix delegation show partially incorrect in Leases tab
2 participants