xref: /freebsd/tests/sys/netinet6/ndp.sh (revision d0b2dbfa)
1#!/usr/bin/env atf-sh
2#-
3# SPDX-License-Identifier: BSD-2-Clause
4#
5# Copyright (c) 2021 Alexander V. Chernikov
6#
7# Redistribution and use in source and binary forms, with or without
8# modification, are permitted provided that the following conditions
9# are met:
10# 1. Redistributions of source code must retain the above copyright
11#    notice, this list of conditions and the following disclaimer.
12# 2. Redistributions in binary form must reproduce the above copyright
13#    notice, this list of conditions and the following disclaimer in the
14#    documentation and/or other materials provided with the distribution.
15#
16# THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
17# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
18# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
19# ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
20# FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
21# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
22# OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
23# HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
24# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
25# OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
26# SUCH DAMAGE.
27#
28#
29
30. $(atf_get_srcdir)/../common/vnet.subr
31
32atf_test_case "ndp_add_gu_success" "cleanup"
33ndp_add_gu_success_head() {
34	atf_set descr 'Test static ndp record addition'
35	atf_set require.user root
36}
37
38ndp_add_gu_success_body() {
39
40	vnet_init
41
42	jname="v6t-ndp_add_success"
43
44	epair0=$(vnet_mkepair)
45
46	vnet_mkjail ${jname} ${epair0}a
47	jexec ${jname} ndp -i ${epair0}a -- -disabled
48	jexec ${jname} ifconfig ${epair0}a up
49
50	jexec ${jname} ifconfig ${epair0}a inet6 2001:db8::1/64
51
52	# wait for DAD to complete
53	while [ `jexec ${jname} ifconfig | grep inet6 | grep -c tentative` != "0" ]; do
54		sleep 0.1
55	done
56
57	atf_check jexec ${jname} ndp -s 2001:db8::2 90:10:00:01:02:03
58
59	t=`jexec ${jname} ndp -an | grep 2001:db8::2 | awk '{print $1, $2, $3, $4}'`
60	if [ "${t}" != "2001:db8::2 90:10:00:01:02:03 ${epair0}a permanent" ]; then
61		atf_fail "Wrong output: ${t}"
62	fi
63	echo "T='${t}'"
64}
65
66ndp_add_gu_success_cleanup() {
67	vnet_cleanup
68}
69
70atf_test_case "ndp_del_gu_success" "cleanup"
71ndp_del_gu_success_head() {
72	atf_set descr 'Test ndp record deletion'
73	atf_set require.user root
74}
75
76ndp_del_gu_success_body() {
77
78	vnet_init
79
80	jname="v6t-ndp_del_gu_success"
81
82	epair0=$(vnet_mkepair)
83
84	vnet_mkjail ${jname} ${epair0}a
85
86	jexec ${jname} ndp -i ${epair0}a -- -disabled
87	jexec ${jname} ifconfig ${epair0}a up
88
89	jexec ${jname} ifconfig ${epair0}a inet6 2001:db8::1/64
90
91	# wait for DAD to complete
92	while [ `jexec ${jname} ifconfig | grep inet6 | grep -c tentative` != "0" ]; do
93		sleep 0.1
94	done
95
96	jexec ${jname} ping -c1 -t1 2001:db8::2
97
98	atf_check -o match:"2001:db8::2 \(2001:db8::2\) deleted" jexec ${jname} ndp -nd 2001:db8::2
99}
100
101ndp_del_gu_success_cleanup() {
102	vnet_cleanup
103}
104
105
106atf_init_test_cases()
107{
108
109	atf_add_test_case "ndp_add_gu_success"
110	atf_add_test_case "ndp_del_gu_success"
111}
112
113# end
114
115