]> git.puffer.fish Git - matthieu/frr.git/blob
3b99065fe078e55f506490801b5c8e35c3ff38c4
[matthieu/frr.git] /
1 #!/usr/bin/env python
2
3 # Copyright (c) 2021 by
4 # Donatas Abraitis <donatas.abraitis@gmail.com>
5 #
6 # Permission to use, copy, modify, and/or distribute this software
7 # for any purpose with or without fee is hereby granted, provided
8 # that the above copyright notice and this permission notice appear
9 # in all copies.
10 #
11 # THE SOFTWARE IS PROVIDED "AS IS" AND NETDEF DISCLAIMS ALL WARRANTIES
12 # WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
13 # MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL NETDEF BE LIABLE FOR
14 # ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY
15 # DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
16 # WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS
17 # ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
18 # OF THIS SOFTWARE.
19 #
20
21 """
22 https://tools.ietf.org/html/rfc4271
23
24 Check if NEXT_HOP attribute is not changed if peer X shares a
25 common subnet with this address.
26
27 - Otherwise, if the route being announced was learned from an
28 external peer, the speaker can use an IP address of any
29 adjacent router (known from the received NEXT_HOP attribute)
30 that the speaker itself uses for local route calculation in
31 the NEXT_HOP attribute, provided that peer X shares a common
32 subnet with this address. This is a second form of "third
33 party" NEXT_HOP attribute.
34 """
35
36 import os
37 import sys
38 import json
39 import time
40 import pytest
41 import functools
42
43 pytestmark = [pytest.mark.bgpd]
44
45 CWD = os.path.dirname(os.path.realpath(__file__))
46 sys.path.append(os.path.join(CWD, "../"))
47
48 # pylint: disable=C0413
49 from lib import topotest
50 from lib.topogen import Topogen, TopoRouter, get_topogen
51 from lib.topolog import logger
52 from mininet.topo import Topo
53
54
55 class TemplateTopo(Topo):
56 def build(self, *_args, **_opts):
57 tgen = get_topogen(self)
58
59 for routern in range(1, 4):
60 tgen.add_router("r{}".format(routern))
61
62 switch = tgen.add_switch("s1")
63 switch.add_link(tgen.gears["r1"])
64 switch.add_link(tgen.gears["r2"])
65 switch.add_link(tgen.gears["r3"])
66
67
68 def setup_module(mod):
69 tgen = Topogen(TemplateTopo, mod.__name__)
70 tgen.start_topology()
71
72 router_list = tgen.routers()
73
74 for i, (rname, router) in enumerate(router_list.items(), 1):
75 router.load_config(
76 TopoRouter.RD_ZEBRA, os.path.join(CWD, "{}/zebra.conf".format(rname))
77 )
78 router.load_config(
79 TopoRouter.RD_BGP, os.path.join(CWD, "{}/bgpd.conf".format(rname))
80 )
81
82 tgen.start_router()
83
84
85 def teardown_module(mod):
86 tgen = get_topogen()
87 tgen.stop_topology()
88
89
90 def test_bgp_ebgp_common_subnet_nh_unchanged():
91 tgen = get_topogen()
92
93 if tgen.routers_have_failure():
94 pytest.skip(tgen.errors)
95
96 r2 = tgen.gears["r2"]
97 r3 = tgen.gears["r3"]
98
99 def _bgp_converge(router):
100 output = json.loads(router.vtysh_cmd("show ip bgp summary json"))
101 expected = {
102 "ipv4Unicast": {
103 "peers": {
104 "192.168.1.1": {"state": "Established"},
105 "192.168.1.103": {"state": "Established"},
106 }
107 }
108 }
109 return topotest.json_cmp(output, expected)
110
111 test_func = functools.partial(_bgp_converge, r3)
112 success, result = topotest.run_and_expect(test_func, None, count=60, wait=0.5)
113
114 assert result is None, 'Failed bgp convergence in "{}"'.format(r3)
115
116 def _bgp_nh_unchanged(router):
117 output = json.loads(router.vtysh_cmd("show ip bgp 172.16.1.1/32 json"))
118 expected = {"paths": [{"nexthops": [{"ip": "192.168.1.1"}]}]}
119 return topotest.json_cmp(output, expected)
120
121 test_func = functools.partial(_bgp_nh_unchanged, r2)
122 success, result = topotest.run_and_expect(test_func, None, count=60, wait=0.5)
123
124 assert result is None, 'Wrong next-hop in "{}"'.format(r2)
125
126
127 if __name__ == "__main__":
128 args = ["-s"] + sys.argv[1:]
129 sys.exit(pytest.main(args))