mirror of
https://github.com/espressif/openthread.git
synced 2026-09-15 05:30:09 +00:00
This commit introduces new helper methods for DHCPv6 Option parsing and generation. - It adds `Option::FindOption()` to search and parse the first DHCPv6 option with a given code within a specified range of a `Message`. - It also adds `Option::UpdateOptionLengthInMessage()`, which updates the Option length in a message based on the number of bytes appended, simplifying the appending of variable-length options (e.g., `IaNaOption`, which can contain multiple sub-options). - Additionally, `StatusCodeOption::ReadStatusFrom()` is added to read the status code from a Status Code Option in a specified range within a `Message`. The absence of a Status Code option implies success. - Helper methods to search for and append `RapidCommitOption` are also included. These new helper methods are then used by `Dhcp6::Server` and `Dhcp6::Client`, simplifying the code, particularly for processing options in received DHCPv6 messages. This commit also adds a new `test-036-dhcp-prefix-netdata.py` test to validate the publishing of prefixes with the DHCP flag in Network Data and the behavior of the DHCPv6 client and server.
112 lines
3.7 KiB
Python
Executable File
112 lines
3.7 KiB
Python
Executable File
#!/usr/bin/env python3
|
|
#
|
|
# Copyright (c) 2025, The OpenThread Authors.
|
|
# All rights reserved.
|
|
#
|
|
# Redistribution and use in source and binary forms, with or without
|
|
# modification, are permitted provided that the following conditions are met:
|
|
# 1. Redistributions of source code must retain the above copyright
|
|
# notice, this list of conditions and the following disclaimer.
|
|
# 2. Redistributions in binary form must reproduce the above copyright
|
|
# notice, this list of conditions and the following disclaimer in the
|
|
# documentation and/or other materials provided with the distribution.
|
|
# 3. Neither the name of the copyright holder nor the
|
|
# names of its contributors may be used to endorse or promote products
|
|
# derived from this software without specific prior written permission.
|
|
#
|
|
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
# ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
|
|
# LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
|
# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
|
# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
|
# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
|
# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
|
# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
# POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
from cli import verify
|
|
from cli import verify_within
|
|
import cli
|
|
import time
|
|
|
|
# -----------------------------------------------------------------------------------------------------------------------
|
|
# Test description: DHCPv6 prefix in netdata and DHCPv6 client and server behavior
|
|
#
|
|
# Network topology
|
|
#
|
|
# r1 ---- r2 ---- r3
|
|
#
|
|
|
|
test_name = __file__[:-3] if __file__.endswith('.py') else __file__
|
|
print('-' * 120)
|
|
print('Starting \'{}\''.format(test_name))
|
|
|
|
# -----------------------------------------------------------------------------------------------------------------------
|
|
# Creating `cli.Node` instances
|
|
|
|
speedup = 40
|
|
cli.Node.set_time_speedup_factor(speedup)
|
|
|
|
r1 = cli.Node()
|
|
r2 = cli.Node()
|
|
r3 = cli.Node()
|
|
|
|
# -----------------------------------------------------------------------------------------------------------------------
|
|
# Form topology
|
|
|
|
r1.allowlist_node(r2)
|
|
|
|
r2.allowlist_node(r1)
|
|
r2.allowlist_node(r3)
|
|
|
|
r3.allowlist_node(r2)
|
|
|
|
r1.form('dhcp6')
|
|
r2.join(r1)
|
|
r3.join(r1)
|
|
|
|
verify(r1.get_state() == 'leader')
|
|
verify(r2.get_state() == 'router')
|
|
verify(r3.get_state() == 'router')
|
|
|
|
# -----------------------------------------------------------------------------------------------------------------------
|
|
# Test Implementation
|
|
|
|
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
# Add an on-mesh prefix with dhcp6 flag.
|
|
|
|
r1.add_prefix('2000:1::/64', 'pdros')
|
|
r1.register_netdata()
|
|
|
|
|
|
def check_netdata():
|
|
for node in [r1, r2, r3]:
|
|
netdata = node.get_netdata()
|
|
verify(len(netdata['prefixes']) == 1)
|
|
verify(len(netdata['routes']) == 0)
|
|
|
|
|
|
verify_within(check_netdata, 5)
|
|
|
|
|
|
def check_dhcp_addrs():
|
|
for node in [r1, r2, r3]:
|
|
ip_addrs = node.get_ip_addrs()
|
|
for addr in ip_addrs:
|
|
if addr.startswith('2000:1:0:0:'):
|
|
break
|
|
else:
|
|
verify(False)
|
|
|
|
|
|
verify_within(check_dhcp_addrs, 5)
|
|
|
|
# -----------------------------------------------------------------------------------------------------------------------
|
|
# Test finished
|
|
|
|
cli.Node.finalize_all_nodes()
|
|
|
|
print('\'{}\' passed.'.format(test_name))
|