blob: a70180b3de51dac066497d621ea6563a487a0e1d [file] [log] [blame]
Neale Ranns177bbdc2016-11-15 09:46:51 +00001"""
2 IP Routes
3
4 object abstractions for representing IP routes in VPP
5"""
6
Paul Vinciguerraa279d9c2019-02-28 09:00:09 -08007from vpp_object import VppObject
Neale Rannsb3b2de72017-03-08 05:17:22 -08008from socket import inet_pton, inet_ntop, AF_INET, AF_INET6
Neale Ranns097fa662018-05-01 05:17:55 -07009from vpp_ip import DpoProto, VppIpPrefix, INVALID_INDEX, VppIpAddressUnion, \
10 VppIpMPrefix
11from ipaddress import ip_address, IPv4Network, IPv6Network
Neale Ranns177bbdc2016-11-15 09:46:51 +000012
Neale Rannsad422ed2016-11-02 14:20:04 +000013# from vnet/vnet/mpls/mpls_types.h
14MPLS_IETF_MAX_LABEL = 0xfffff
15MPLS_LABEL_INVALID = MPLS_IETF_MAX_LABEL + 1
Neale Ranns177bbdc2016-11-15 09:46:51 +000016
Neale Ranns097fa662018-05-01 05:17:55 -070017try:
18 text_type = unicode
19except NameError:
20 text_type = str
21
Neale Ranns177bbdc2016-11-15 09:46:51 +000022
Neale Ranns180279b2017-03-16 15:49:09 -040023class MRouteItfFlags:
24 MFIB_ITF_FLAG_NONE = 0
25 MFIB_ITF_FLAG_NEGATE_SIGNAL = 1
26 MFIB_ITF_FLAG_ACCEPT = 2
27 MFIB_ITF_FLAG_FORWARD = 4
28 MFIB_ITF_FLAG_SIGNAL_PRESENT = 8
29 MFIB_ITF_FLAG_INTERNAL_COPY = 16
30
31
32class MRouteEntryFlags:
33 MFIB_ENTRY_FLAG_NONE = 0
34 MFIB_ENTRY_FLAG_SIGNAL = 1
35 MFIB_ENTRY_FLAG_DROP = 2
36 MFIB_ENTRY_FLAG_CONNECTED = 4
37 MFIB_ENTRY_FLAG_INHERIT_ACCEPT = 8
38
39
Neale Ranns097fa662018-05-01 05:17:55 -070040class FibPathProto:
41 FIB_PATH_NH_PROTO_IP4 = 0
42 FIB_PATH_NH_PROTO_IP6 = 1
43 FIB_PATH_NH_PROTO_MPLS = 2
44 FIB_PATH_NH_PROTO_ETHERNET = 3
45 FIB_PATH_NH_PROTO_BIER = 4
46 FIB_PATH_NH_PROTO_NSH = 5
47
48
49class FibPathType:
50 FIB_PATH_TYPE_NORMAL = 0
51 FIB_PATH_TYPE_LOCAL = 1
52 FIB_PATH_TYPE_DROP = 2
53 FIB_PATH_TYPE_UDP_ENCAP = 3
54 FIB_PATH_TYPE_BIER_IMP = 4
55 FIB_PATH_TYPE_ICMP_UNREACH = 5
56 FIB_PATH_TYPE_ICMP_PROHIBIT = 6
57 FIB_PATH_TYPE_SOURCE_LOOKUP = 7
58 FIB_PATH_TYPE_DVR = 8
59 FIB_PATH_TYPE_INTERFACE_RX = 9
60 FIB_PATH_TYPE_CLASSIFY = 10
61
62
63class FibPathFlags:
64 FIB_PATH_FLAG_NONE = 0
65 FIB_PATH_FLAG_RESOLVE_VIA_ATTACHED = 1
66 FIB_PATH_FLAG_RESOLVE_VIA_HOST = 2
Neale Ranns1dbcf302019-07-19 11:44:53 +000067 FIB_PATH_FLAG_POP_PW_CW = 4
Neale Ranns097fa662018-05-01 05:17:55 -070068
69
Neale Ranns31ed7442018-02-23 05:29:09 -080070class MplsLspMode:
71 PIPE = 0
72 UNIFORM = 1
73
74
Neale Ranns93cc3ee2018-10-10 07:22:51 -070075def ip_to_dpo_proto(addr):
Paul Vinciguerrabeded852019-03-01 10:35:55 -080076 if addr.version == 6:
Neale Ranns93cc3ee2018-10-10 07:22:51 -070077 return DpoProto.DPO_PROTO_IP6
78 else:
79 return DpoProto.DPO_PROTO_IP4
80
81
Neale Ranns097fa662018-05-01 05:17:55 -070082def address_proto(ip_addr):
83 if ip_addr.ip_addr.version is 4:
84 return FibPathProto.FIB_PATH_NH_PROTO_IP4
Neale Rannsb3b2de72017-03-08 05:17:22 -080085 else:
Neale Ranns097fa662018-05-01 05:17:55 -070086 return FibPathProto.FIB_PATH_NH_PROTO_IP6
Neale Rannsb3b2de72017-03-08 05:17:22 -080087
Neale Ranns097fa662018-05-01 05:17:55 -070088
89def find_route(test, addr, len, table_id=0):
90 ip_addr = ip_address(text_type(addr))
91
92 if 4 is ip_addr.version:
93 routes = test.vapi.ip_route_dump(table_id, False)
94 prefix = IPv4Network("%s/%d" % (text_type(addr), len), strict=False)
95 else:
96 routes = test.vapi.ip_route_dump(table_id, True)
97 prefix = IPv6Network("%s/%d" % (text_type(addr), len), strict=False)
98
Neale Rannsb3b2de72017-03-08 05:17:22 -080099 for e in routes:
Neale Ranns097fa662018-05-01 05:17:55 -0700100 if table_id == e.route.table_id \
101 and prefix == e.route.prefix:
Neale Rannsb3b2de72017-03-08 05:17:22 -0800102 return True
103 return False
104
105
Neale Ranns947ea622018-06-07 23:48:20 -0700106def find_mroute(test, grp_addr, src_addr, grp_addr_len,
Neale Ranns097fa662018-05-01 05:17:55 -0700107 table_id=0):
108 ip_mprefix = VppIpMPrefix(text_type(src_addr),
109 text_type(grp_addr),
110 grp_addr_len)
111
112 if 4 is ip_mprefix.version:
113 routes = test.vapi.ip_mroute_dump(table_id, False)
Neale Ranns947ea622018-06-07 23:48:20 -0700114 else:
Neale Ranns097fa662018-05-01 05:17:55 -0700115 routes = test.vapi.ip_mroute_dump(table_id, True)
116
Neale Ranns947ea622018-06-07 23:48:20 -0700117 for e in routes:
Neale Ranns097fa662018-05-01 05:17:55 -0700118 if table_id == e.route.table_id and ip_mprefix == e.route.prefix:
Neale Ranns947ea622018-06-07 23:48:20 -0700119 return True
120 return False
121
122
Neale Ranns775f73c2018-12-20 03:01:49 -0800123def find_mpls_route(test, table_id, label, eos_bit, paths=None):
Neale Ranns097fa662018-05-01 05:17:55 -0700124 dump = test.vapi.mpls_route_dump(table_id)
Neale Ranns775f73c2018-12-20 03:01:49 -0800125 for e in dump:
Neale Ranns097fa662018-05-01 05:17:55 -0700126 if label == e.mr_route.mr_label \
127 and eos_bit == e.mr_route.mr_eos \
128 and table_id == e.mr_route.mr_table_id:
Neale Ranns775f73c2018-12-20 03:01:49 -0800129 if not paths:
130 return True
131 else:
Neale Ranns097fa662018-05-01 05:17:55 -0700132 if (len(paths) != len(e.mr_route.mr_paths)):
Neale Ranns775f73c2018-12-20 03:01:49 -0800133 return False
134 for i in range(len(paths)):
Neale Ranns097fa662018-05-01 05:17:55 -0700135 if (paths[i] != e.mr_route.mr_paths[i]):
Neale Ranns775f73c2018-12-20 03:01:49 -0800136 return False
137 return True
138 return False
139
140
Neale Ranns93cc3ee2018-10-10 07:22:51 -0700141def fib_interface_ip_prefix(test, address, length, sw_if_index):
Neale Ranns097fa662018-05-01 05:17:55 -0700142 ip_addr = ip_address(text_type(address))
Neale Ranns93cc3ee2018-10-10 07:22:51 -0700143
Neale Ranns097fa662018-05-01 05:17:55 -0700144 if 4 is ip_addr.version:
145 addrs = test.vapi.ip_address_dump(sw_if_index)
146 prefix = IPv4Network("%s/%d" % (text_type(address), length),
147 strict=False)
Neale Ranns93cc3ee2018-10-10 07:22:51 -0700148 else:
Neale Ranns097fa662018-05-01 05:17:55 -0700149 addrs = test.vapi.ip_address_dump(sw_if_index, is_ipv6=1)
150 prefix = IPv6Network("%s/%d" % (text_type(address), length),
151 strict=False)
Neale Ranns93cc3ee2018-10-10 07:22:51 -0700152
Paul Vinciguerra941da4a2019-06-18 07:57:53 -0400153 # TODO: refactor this to VppIpPrefix.__eq__
Neale Ranns93cc3ee2018-10-10 07:22:51 -0700154 for a in addrs:
Neale Ranns097fa662018-05-01 05:17:55 -0700155 if a.sw_if_index == sw_if_index and \
156 a.prefix == prefix:
Neale Ranns93cc3ee2018-10-10 07:22:51 -0700157 return True
158 return False
159
160
Neale Ranns15002542017-09-10 04:39:11 -0700161class VppIpTable(VppObject):
162
163 def __init__(self,
164 test,
165 table_id,
166 is_ip6=0):
167 self._test = test
168 self.table_id = table_id
169 self.is_ip6 = is_ip6
170
171 def add_vpp_config(self):
Ole Troan9a475372019-03-05 16:58:24 +0100172 self._test.vapi.ip_table_add_del(is_ipv6=self.is_ip6, is_add=1,
173 table_id=self.table_id)
Neale Ranns15002542017-09-10 04:39:11 -0700174 self._test.registry.register(self, self._test.logger)
175
176 def remove_vpp_config(self):
Ole Troan9a475372019-03-05 16:58:24 +0100177 self._test.vapi.ip_table_add_del(is_ipv6=self.is_ip6, is_add=0,
178 table_id=self.table_id)
Neale Ranns15002542017-09-10 04:39:11 -0700179
180 def query_vpp_config(self):
Neale Ranns93cc3ee2018-10-10 07:22:51 -0700181 if self.table_id == 0:
182 # the default table always exists
183 return False
Neale Ranns15002542017-09-10 04:39:11 -0700184 # find the default route
185 return find_route(self._test,
186 "::" if self.is_ip6 else "0.0.0.0",
187 0,
Neale Ranns097fa662018-05-01 05:17:55 -0700188 self.table_id)
Neale Ranns15002542017-09-10 04:39:11 -0700189
Neale Ranns15002542017-09-10 04:39:11 -0700190 def object_id(self):
191 return ("table-%s-%d" %
192 ("v6" if self.is_ip6 == 1 else "v4",
193 self.table_id))
194
195
Neale Ranns93cc3ee2018-10-10 07:22:51 -0700196class VppIpInterfaceAddress(VppObject):
197
198 def __init__(self, test, intf, addr, len):
199 self._test = test
200 self.intf = intf
201 self.prefix = VppIpPrefix(addr, len)
202
203 def add_vpp_config(self):
204 self._test.vapi.sw_interface_add_del_address(
Ole Trøan3b0d7e42019-03-15 16:14:41 +0000205 sw_if_index=self.intf.sw_if_index, address=self.prefix.bytes,
206 address_length=self.prefix.length, is_ipv6=self.prefix.is_ip6,
Ole Troan9a475372019-03-05 16:58:24 +0100207 is_add=1)
Neale Ranns93cc3ee2018-10-10 07:22:51 -0700208 self._test.registry.register(self, self._test.logger)
209
210 def remove_vpp_config(self):
211 self._test.vapi.sw_interface_add_del_address(
Ole Trøan3b0d7e42019-03-15 16:14:41 +0000212 sw_if_index=self.intf.sw_if_index, address=self.prefix.bytes,
213 address_length=self.prefix.length, is_ipv6=self.prefix.is_ip6,
Ole Troan9a475372019-03-05 16:58:24 +0100214 is_add=0)
Neale Ranns93cc3ee2018-10-10 07:22:51 -0700215
216 def query_vpp_config(self):
217 return fib_interface_ip_prefix(self._test,
218 self.prefix.address,
219 self.prefix.length,
220 self.intf.sw_if_index)
221
Neale Ranns93cc3ee2018-10-10 07:22:51 -0700222 def object_id(self):
223 return "interface-ip-%s-%s" % (self.intf, self.prefix)
224
225
226class VppIpInterfaceBind(VppObject):
227
228 def __init__(self, test, intf, table):
229 self._test = test
230 self.intf = intf
231 self.table = table
232
233 def add_vpp_config(self):
234 if self.table.is_ip6:
235 self.intf.set_table_ip6(self.table.table_id)
236 else:
237 self.intf.set_table_ip4(self.table.table_id)
238 self._test.registry.register(self, self._test.logger)
239
240 def remove_vpp_config(self):
241 if 0 == self.table.table_id:
242 return
243 if self.table.is_ip6:
244 self.intf.set_table_ip6(0)
245 else:
246 self.intf.set_table_ip4(0)
247
248 def query_vpp_config(self):
249 if 0 == self.table.table_id:
250 return False
251 return self._test.vapi.sw_interface_get_table(
252 self.intf.sw_if_index,
253 self.table.is_ip6).vrf_id == self.table.table_id
254
Neale Ranns93cc3ee2018-10-10 07:22:51 -0700255 def object_id(self):
256 return "interface-bind-%s-%s" % (self.intf, self.table)
257
258
Neale Ranns31ed7442018-02-23 05:29:09 -0800259class VppMplsLabel(object):
260 def __init__(self, value, mode=MplsLspMode.PIPE, ttl=64, exp=0):
261 self.value = value
262 self.mode = mode
263 self.ttl = ttl
264 self.exp = exp
265
266 def encode(self):
267 is_uniform = 0 if self.mode is MplsLspMode.PIPE else 1
268 return {'label': self.value,
269 'ttl': self.ttl,
270 'exp': self.exp,
271 'is_uniform': is_uniform}
272
Neale Ranns775f73c2018-12-20 03:01:49 -0800273 def __eq__(self, other):
274 if isinstance(other, self.__class__):
275 return (self.value == other.value and
276 self.ttl == other.ttl and
277 self.exp == other.exp and
278 self.mode == other.mode)
279 elif hasattr(other, 'label'):
280 return (self.value == other.label and
281 self.ttl == other.ttl and
282 self.exp == other.exp and
283 (self.mode == MplsLspMode.UNIFORM) == other.is_uniform)
284 else:
285 return False
286
287 def __ne__(self, other):
288 return not (self == other)
289
Neale Ranns31ed7442018-02-23 05:29:09 -0800290
Neale Ranns097fa662018-05-01 05:17:55 -0700291class VppFibPathNextHop(object):
292 def __init__(self, addr,
293 via_label=MPLS_LABEL_INVALID,
294 next_hop_id=INVALID_INDEX):
295 self.addr = VppIpAddressUnion(addr)
296 self.via_label = via_label
297 self.obj_id = next_hop_id
298
299 def encode(self):
300 if self.via_label is not MPLS_LABEL_INVALID:
301 return {'via_label': self.via_label}
302 if self.obj_id is not INVALID_INDEX:
303 return {'obj_id': self.obj_id}
304 else:
305 return {'address': self.addr.encode()}
306
307 def proto(self):
308 if self.via_label is MPLS_LABEL_INVALID:
309 return address_proto(self.addr)
310 else:
311 return FibPathProto.FIB_PATH_NH_PROTO_MPLS
312
313 def __eq__(self, other):
314 if not isinstance(other, self.__class__):
315 # try the other instance's __eq__.
316 return NotImplemented
317 return (self.addr == other.addr and
318 self.via_label == other.via_label and
319 self.obj_id == other.obj_id)
320
321
Neale Ranns5a8123b2017-01-26 01:18:23 -0800322class VppRoutePath(object):
Neale Rannsad422ed2016-11-02 14:20:04 +0000323
Klement Sekerada505f62017-01-04 12:58:53 +0100324 def __init__(
325 self,
326 nh_addr,
327 nh_sw_if_index,
328 nh_table_id=0,
329 labels=[],
Neale Rannsfca0c242017-01-13 07:57:46 -0800330 nh_via_label=MPLS_LABEL_INVALID,
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800331 rpf_id=0,
Neale Ranns097fa662018-05-01 05:17:55 -0700332 next_hop_id=INVALID_INDEX,
333 proto=None,
334 flags=FibPathFlags.FIB_PATH_FLAG_NONE,
335 type=FibPathType.FIB_PATH_TYPE_NORMAL):
Neale Ranns177bbdc2016-11-15 09:46:51 +0000336 self.nh_itf = nh_sw_if_index
337 self.nh_table_id = nh_table_id
Neale Rannsad422ed2016-11-02 14:20:04 +0000338 self.nh_labels = labels
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800339 self.weight = 1
340 self.rpf_id = rpf_id
Neale Ranns097fa662018-05-01 05:17:55 -0700341 self.proto = proto
342 self.flags = flags
343 self.type = type
344 self.nh = VppFibPathNextHop(nh_addr, nh_via_label, next_hop_id)
345 if proto is None:
346 self.proto = self.nh.proto()
Neale Ranns31426c62017-05-24 10:32:58 -0700347 else:
Neale Ranns097fa662018-05-01 05:17:55 -0700348 self.proto = proto
Neale Ranns810086d2017-11-05 16:26:46 -0800349 self.next_hop_id = next_hop_id
Neale Ranns177bbdc2016-11-15 09:46:51 +0000350
Neale Ranns097fa662018-05-01 05:17:55 -0700351 def encode_labels(self):
Neale Ranns31ed7442018-02-23 05:29:09 -0800352 lstack = []
353 for l in self.nh_labels:
354 if type(l) == VppMplsLabel:
355 lstack.append(l.encode())
356 else:
357 lstack.append({'label': l,
358 'ttl': 255})
Neale Ranns097fa662018-05-01 05:17:55 -0700359 while (len(lstack) < 16):
360 lstack.append({})
361
Neale Ranns31ed7442018-02-23 05:29:09 -0800362 return lstack
363
Neale Ranns097fa662018-05-01 05:17:55 -0700364 def encode(self):
365 return {'weight': 1,
Neale Ranns2303cb12018-02-21 04:57:17 -0800366 'preference': 0,
367 'table_id': self.nh_table_id,
Neale Ranns097fa662018-05-01 05:17:55 -0700368 'nh': self.nh.encode(),
Neale Ranns2303cb12018-02-21 04:57:17 -0800369 'next_hop_id': self.next_hop_id,
370 'sw_if_index': self.nh_itf,
Neale Ranns097fa662018-05-01 05:17:55 -0700371 'rpf_id': self.rpf_id,
372 'proto': self.proto,
373 'type': self.type,
374 'flags': self.flags,
Neale Ranns2303cb12018-02-21 04:57:17 -0800375 'n_labels': len(self.nh_labels),
Neale Ranns097fa662018-05-01 05:17:55 -0700376 'label_stack': self.encode_labels()}
Neale Ranns2303cb12018-02-21 04:57:17 -0800377
Neale Rannsef90ed02018-09-13 08:45:12 -0700378 def __eq__(self, other):
Neale Ranns775f73c2018-12-20 03:01:49 -0800379 if isinstance(other, self.__class__):
Neale Ranns097fa662018-05-01 05:17:55 -0700380 return self.nh == other.nh
Neale Ranns775f73c2018-12-20 03:01:49 -0800381 elif hasattr(other, 'sw_if_index'):
382 # vl_api_fib_path_t
383 if (len(self.nh_labels) != other.n_labels):
384 return False
385 for i in range(len(self.nh_labels)):
386 if (self.nh_labels[i] != other.label_stack[i]):
387 return False
388 return self.nh_itf == other.sw_if_index
389 else:
390 return False
391
392 def __ne__(self, other):
393 return not (self == other)
Neale Rannsef90ed02018-09-13 08:45:12 -0700394
Neale Ranns177bbdc2016-11-15 09:46:51 +0000395
Neale Ranns5a8123b2017-01-26 01:18:23 -0800396class VppMRoutePath(VppRoutePath):
Neale Ranns32e1c012016-11-22 17:07:28 +0000397
Neale Rannsd792d9c2017-10-21 10:53:20 -0700398 def __init__(self, nh_sw_if_index, flags,
Neale Rannse821ab12017-06-01 07:45:05 -0700399 nh=None,
Neale Ranns097fa662018-05-01 05:17:55 -0700400 proto=FibPathProto.FIB_PATH_NH_PROTO_IP4,
401 type=FibPathType.FIB_PATH_TYPE_NORMAL,
402 bier_imp=INVALID_INDEX):
Neale Rannse821ab12017-06-01 07:45:05 -0700403 if not nh:
Neale Ranns097fa662018-05-01 05:17:55 -0700404 nh = "::" if proto is FibPathProto.FIB_PATH_NH_PROTO_IP6 \
405 else "0.0.0.0"
Neale Rannse821ab12017-06-01 07:45:05 -0700406 super(VppMRoutePath, self).__init__(nh,
407 nh_sw_if_index,
Neale Ranns097fa662018-05-01 05:17:55 -0700408 proto=proto,
409 type=type,
410 next_hop_id=bier_imp)
Neale Ranns32e1c012016-11-22 17:07:28 +0000411 self.nh_i_flags = flags
Neale Rannsd792d9c2017-10-21 10:53:20 -0700412 self.bier_imp = bier_imp
Neale Ranns32e1c012016-11-22 17:07:28 +0000413
Neale Ranns097fa662018-05-01 05:17:55 -0700414 def encode(self):
415 return {'path': super(VppMRoutePath, self).encode(),
416 'itf_flags': self.nh_i_flags}
417
Neale Ranns32e1c012016-11-22 17:07:28 +0000418
Neale Ranns5a8123b2017-01-26 01:18:23 -0800419class VppIpRoute(VppObject):
Neale Ranns177bbdc2016-11-15 09:46:51 +0000420 """
421 IP Route
422 """
423
424 def __init__(self, test, dest_addr,
Neale Ranns097fa662018-05-01 05:17:55 -0700425 dest_addr_len, paths, table_id=0, register=True):
Neale Ranns177bbdc2016-11-15 09:46:51 +0000426 self._test = test
427 self.paths = paths
Neale Ranns177bbdc2016-11-15 09:46:51 +0000428 self.table_id = table_id
Neale Ranns097fa662018-05-01 05:17:55 -0700429 self.prefix = VppIpPrefix(dest_addr, dest_addr_len)
430 self.register = register
Paul Vinciguerra941da4a2019-06-18 07:57:53 -0400431 self.stats_index = None
Neale Rannsc2ac2352019-07-02 14:33:29 +0000432 self.modified = False
Neale Ranns177bbdc2016-11-15 09:46:51 +0000433
Neale Ranns097fa662018-05-01 05:17:55 -0700434 self.encoded_paths = []
435 for path in self.paths:
436 self.encoded_paths.append(path.encode())
437
438 def __eq__(self, other):
439 if self.table_id == other.table_id and \
440 self.prefix == other.prefix:
441 return True
442 return False
443
444 def modify(self, paths):
Neale Ranns69b7aa42017-03-10 03:04:12 -0800445 self.paths = paths
Neale Ranns097fa662018-05-01 05:17:55 -0700446 self.encoded_paths = []
447 for path in self.paths:
448 self.encoded_paths.append(path.encode())
Neale Rannsc2ac2352019-07-02 14:33:29 +0000449 self.modified = True
Neale Ranns097fa662018-05-01 05:17:55 -0700450
451 self._test.vapi.ip_route_add_del(route={'table_id': self.table_id,
452 'prefix': self.prefix.encode(),
453 'n_paths': len(
454 self.encoded_paths),
455 'paths': self.encoded_paths,
456 },
457 is_add=1,
458 is_multipath=0)
Neale Ranns69b7aa42017-03-10 03:04:12 -0800459
Neale Ranns177bbdc2016-11-15 09:46:51 +0000460 def add_vpp_config(self):
Neale Ranns097fa662018-05-01 05:17:55 -0700461 r = self._test.vapi.ip_route_add_del(
462 route={'table_id': self.table_id,
463 'prefix': self.prefix.encode(),
464 'n_paths': len(self.encoded_paths),
465 'paths': self.encoded_paths,
466 },
467 is_add=1,
468 is_multipath=0)
Neale Ranns008dbe12018-09-07 09:32:36 -0700469 self.stats_index = r.stats_index
Neale Ranns097fa662018-05-01 05:17:55 -0700470 if self.register:
471 self._test.registry.register(self, self._test.logger)
Neale Ranns177bbdc2016-11-15 09:46:51 +0000472
473 def remove_vpp_config(self):
Neale Rannsc2ac2352019-07-02 14:33:29 +0000474 # there's no need to issue different deletes for modified routes
475 # we do this only to test the two different ways to delete routes
476 # eiter by passing all the paths to remove and mutlipath=1 or
477 # passing no paths and multipath=0
478 if self.modified:
479 self._test.vapi.ip_route_add_del(
480 route={'table_id': self.table_id,
481 'prefix': self.prefix.encode(),
482 'n_paths': len(
483 self.encoded_paths),
484 'paths': self.encoded_paths},
485 is_add=0,
486 is_multipath=1)
487 else:
488 self._test.vapi.ip_route_add_del(
489 route={'table_id': self.table_id,
490 'prefix': self.prefix.encode(),
491 'n_paths': 0},
492 is_add=0,
493 is_multipath=0)
Neale Rannsad422ed2016-11-02 14:20:04 +0000494
Neale Ranns5a8123b2017-01-26 01:18:23 -0800495 def query_vpp_config(self):
Neale Rannsb3b2de72017-03-08 05:17:22 -0800496 return find_route(self._test,
Neale Ranns097fa662018-05-01 05:17:55 -0700497 self.prefix.address,
498 self.prefix.len,
499 self.table_id)
Neale Rannsad422ed2016-11-02 14:20:04 +0000500
Neale Ranns5a8123b2017-01-26 01:18:23 -0800501 def object_id(self):
Paul Vinciguerra941da4a2019-06-18 07:57:53 -0400502 return ("%s:table-%d-%s/%d" % (
503 'ip6-route' if self.prefix.addr.version == 6 else 'ip-route',
504 self.table_id,
505 self.prefix.address,
506 self.prefix.len))
Neale Ranns5a8123b2017-01-26 01:18:23 -0800507
Neale Ranns008dbe12018-09-07 09:32:36 -0700508 def get_stats_to(self):
509 c = self._test.statistics.get_counter("/net/route/to")
510 return c[0][self.stats_index]
511
512 def get_stats_via(self):
513 c = self._test.statistics.get_counter("/net/route/via")
514 return c[0][self.stats_index]
515
Neale Ranns5a8123b2017-01-26 01:18:23 -0800516
517class VppIpMRoute(VppObject):
Neale Ranns32e1c012016-11-22 17:07:28 +0000518 """
519 IP Multicast Route
520 """
521
522 def __init__(self, test, src_addr, grp_addr,
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800523 grp_addr_len, e_flags, paths, table_id=0,
Neale Ranns097fa662018-05-01 05:17:55 -0700524 rpf_id=0):
Neale Ranns32e1c012016-11-22 17:07:28 +0000525 self._test = test
526 self.paths = paths
Neale Ranns32e1c012016-11-22 17:07:28 +0000527 self.table_id = table_id
528 self.e_flags = e_flags
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800529 self.rpf_id = rpf_id
Neale Ranns32e1c012016-11-22 17:07:28 +0000530
Neale Ranns097fa662018-05-01 05:17:55 -0700531 self.prefix = VppIpMPrefix(src_addr, grp_addr, grp_addr_len)
532 self.encoded_paths = []
533 for path in self.paths:
534 self.encoded_paths.append(path.encode())
Neale Ranns32e1c012016-11-22 17:07:28 +0000535
536 def add_vpp_config(self):
Neale Ranns097fa662018-05-01 05:17:55 -0700537 r = self._test.vapi.ip_mroute_add_del(self.table_id,
538 self.prefix.encode(),
539 self.e_flags,
540 self.rpf_id,
541 self.encoded_paths,
542 is_add=1)
543 self.stats_index = r.stats_index
Neale Ranns5a8123b2017-01-26 01:18:23 -0800544 self._test.registry.register(self, self._test.logger)
Neale Ranns32e1c012016-11-22 17:07:28 +0000545
546 def remove_vpp_config(self):
Neale Ranns097fa662018-05-01 05:17:55 -0700547 self._test.vapi.ip_mroute_add_del(self.table_id,
548 self.prefix.encode(),
549 self.e_flags,
550 self.rpf_id,
551 self.encoded_paths,
552 is_add=0)
Neale Ranns32e1c012016-11-22 17:07:28 +0000553
554 def update_entry_flags(self, flags):
555 self.e_flags = flags
Neale Ranns097fa662018-05-01 05:17:55 -0700556 self._test.vapi.ip_mroute_add_del(self.table_id,
557 self.prefix.encode(),
Neale Ranns32e1c012016-11-22 17:07:28 +0000558 self.e_flags,
Neale Ranns097fa662018-05-01 05:17:55 -0700559 self.rpf_id,
560 [],
561 is_add=1)
Neale Ranns32e1c012016-11-22 17:07:28 +0000562
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800563 def update_rpf_id(self, rpf_id):
564 self.rpf_id = rpf_id
Neale Ranns097fa662018-05-01 05:17:55 -0700565 self._test.vapi.ip_mroute_add_del(self.table_id,
566 self.prefix.encode(),
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800567 self.e_flags,
Neale Ranns097fa662018-05-01 05:17:55 -0700568 self.rpf_id,
569 [],
570 is_add=1)
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800571
Neale Ranns32e1c012016-11-22 17:07:28 +0000572 def update_path_flags(self, itf, flags):
Neale Ranns097fa662018-05-01 05:17:55 -0700573 for p in range(len(self.paths)):
574 if self.paths[p].nh_itf == itf:
575 self.paths[p].nh_i_flags = flags
576 self.encoded_paths[p] = self.paths[p].encode()
577 break
578
579 self._test.vapi.ip_mroute_add_del(self.table_id,
580 self.prefix.encode(),
Neale Ranns32e1c012016-11-22 17:07:28 +0000581 self.e_flags,
Neale Ranns097fa662018-05-01 05:17:55 -0700582 self.rpf_id,
583 [self.encoded_paths[p]],
584 is_add=1,
585 is_multipath=0)
Neale Ranns32e1c012016-11-22 17:07:28 +0000586
Neale Ranns5a8123b2017-01-26 01:18:23 -0800587 def query_vpp_config(self):
Neale Ranns947ea622018-06-07 23:48:20 -0700588 return find_mroute(self._test,
Neale Ranns097fa662018-05-01 05:17:55 -0700589 self.prefix.gaddr,
590 self.prefix.saddr,
591 self.prefix.length,
592 self.table_id)
Neale Ranns32e1c012016-11-22 17:07:28 +0000593
Neale Ranns5a8123b2017-01-26 01:18:23 -0800594 def object_id(self):
Neale Ranns097fa662018-05-01 05:17:55 -0700595 return ("%d:(%s,%s/%d)" % (self.table_id,
596 self.prefix.saddr,
597 self.prefix.gaddr,
598 self.prefix.length))
Neale Ranns5a8123b2017-01-26 01:18:23 -0800599
Neale Ranns28c142e2018-09-07 09:37:07 -0700600 def get_stats(self):
601 c = self._test.statistics.get_counter("/net/mroute")
602 return c[0][self.stats_index]
603
Neale Ranns5a8123b2017-01-26 01:18:23 -0800604
605class VppMFibSignal(object):
Neale Ranns32e1c012016-11-22 17:07:28 +0000606 def __init__(self, test, route, interface, packet):
607 self.route = route
608 self.interface = interface
609 self.packet = packet
610 self.test = test
611
612 def compare(self, signal):
613 self.test.assertEqual(self.interface, signal.sw_if_index)
614 self.test.assertEqual(self.route.table_id, signal.table_id)
Neale Ranns097fa662018-05-01 05:17:55 -0700615 self.test.assertEqual(self.route.prefix, signal.prefix)
Neale Ranns32e1c012016-11-22 17:07:28 +0000616
617
Neale Ranns5a8123b2017-01-26 01:18:23 -0800618class VppMplsIpBind(VppObject):
Neale Rannsad422ed2016-11-02 14:20:04 +0000619 """
620 MPLS to IP Binding
621 """
622
Neale Ranns5a8123b2017-01-26 01:18:23 -0800623 def __init__(self, test, local_label, dest_addr, dest_addr_len,
Neale Rannsf12a83f2017-04-18 09:09:40 -0700624 table_id=0, ip_table_id=0, is_ip6=0):
Neale Rannsad422ed2016-11-02 14:20:04 +0000625 self._test = test
Neale Rannsad422ed2016-11-02 14:20:04 +0000626 self.dest_addr_len = dest_addr_len
Neale Rannsf12a83f2017-04-18 09:09:40 -0700627 self.dest_addr = dest_addr
Neale Ranns097fa662018-05-01 05:17:55 -0700628 self.ip_addr = ip_address(text_type(dest_addr))
Neale Rannsad422ed2016-11-02 14:20:04 +0000629 self.local_label = local_label
Neale Ranns5a8123b2017-01-26 01:18:23 -0800630 self.table_id = table_id
631 self.ip_table_id = ip_table_id
Neale Ranns097fa662018-05-01 05:17:55 -0700632 self.prefix = VppIpPrefix(dest_addr, dest_addr_len)
Neale Rannsad422ed2016-11-02 14:20:04 +0000633
634 def add_vpp_config(self):
635 self._test.vapi.mpls_ip_bind_unbind(self.local_label,
Neale Ranns097fa662018-05-01 05:17:55 -0700636 self.prefix.encode(),
Neale Ranns5a8123b2017-01-26 01:18:23 -0800637 table_id=self.table_id,
Neale Ranns097fa662018-05-01 05:17:55 -0700638 ip_table_id=self.ip_table_id)
Neale Ranns5a8123b2017-01-26 01:18:23 -0800639 self._test.registry.register(self, self._test.logger)
Neale Rannsad422ed2016-11-02 14:20:04 +0000640
641 def remove_vpp_config(self):
642 self._test.vapi.mpls_ip_bind_unbind(self.local_label,
Neale Ranns097fa662018-05-01 05:17:55 -0700643 self.prefix.encode(),
Neale Rannsf12a83f2017-04-18 09:09:40 -0700644 table_id=self.table_id,
645 ip_table_id=self.ip_table_id,
Neale Ranns097fa662018-05-01 05:17:55 -0700646 is_bind=0)
Neale Rannsad422ed2016-11-02 14:20:04 +0000647
Neale Ranns5a8123b2017-01-26 01:18:23 -0800648 def query_vpp_config(self):
Neale Ranns097fa662018-05-01 05:17:55 -0700649 dump = self._test.vapi.mpls_route_dump(self.table_id)
Neale Ranns5a8123b2017-01-26 01:18:23 -0800650 for e in dump:
Neale Ranns097fa662018-05-01 05:17:55 -0700651 if self.local_label == e.mr_route.mr_label \
652 and self.table_id == e.mr_route.mr_table_id:
Neale Ranns5a8123b2017-01-26 01:18:23 -0800653 return True
654 return False
Neale Rannsad422ed2016-11-02 14:20:04 +0000655
Neale Ranns5a8123b2017-01-26 01:18:23 -0800656 def object_id(self):
657 return ("%d:%s binds %d:%s/%d"
658 % (self.table_id,
659 self.local_label,
660 self.ip_table_id,
Neale Rannsf12a83f2017-04-18 09:09:40 -0700661 self.dest_addr,
Neale Ranns5a8123b2017-01-26 01:18:23 -0800662 self.dest_addr_len))
663
664
Neale Ranns15002542017-09-10 04:39:11 -0700665class VppMplsTable(VppObject):
666
667 def __init__(self,
668 test,
669 table_id):
670 self._test = test
671 self.table_id = table_id
672
673 def add_vpp_config(self):
674 self._test.vapi.mpls_table_add_del(
675 self.table_id,
676 is_add=1)
677 self._test.registry.register(self, self._test.logger)
678
679 def remove_vpp_config(self):
680 self._test.vapi.mpls_table_add_del(
681 self.table_id,
682 is_add=0)
683
684 def query_vpp_config(self):
Neale Ranns097fa662018-05-01 05:17:55 -0700685 dump = self._test.vapi.mpls_table_dump()
686 for d in dump:
687 if d.mt_table.mt_table_id == self.table_id:
688 return True
Neale Ranns15002542017-09-10 04:39:11 -0700689 return False
690
Neale Ranns15002542017-09-10 04:39:11 -0700691 def object_id(self):
692 return ("table-mpls-%d" % (self.table_id))
693
694
Neale Ranns5a8123b2017-01-26 01:18:23 -0800695class VppMplsRoute(VppObject):
Neale Rannsad422ed2016-11-02 14:20:04 +0000696 """
Neale Ranns5a8123b2017-01-26 01:18:23 -0800697 MPLS Route/LSP
Neale Rannsad422ed2016-11-02 14:20:04 +0000698 """
699
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800700 def __init__(self, test, local_label, eos_bit, paths, table_id=0,
Neale Ranns097fa662018-05-01 05:17:55 -0700701 is_multicast=0,
702 eos_proto=FibPathProto.FIB_PATH_NH_PROTO_IP4):
Neale Rannsad422ed2016-11-02 14:20:04 +0000703 self._test = test
704 self.paths = paths
705 self.local_label = local_label
706 self.eos_bit = eos_bit
Neale Ranns097fa662018-05-01 05:17:55 -0700707 self.eos_proto = eos_proto
Neale Rannsad422ed2016-11-02 14:20:04 +0000708 self.table_id = table_id
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800709 self.is_multicast = is_multicast
Neale Rannsad422ed2016-11-02 14:20:04 +0000710
711 def add_vpp_config(self):
Neale Ranns097fa662018-05-01 05:17:55 -0700712 paths = []
Neale Rannsad422ed2016-11-02 14:20:04 +0000713 for path in self.paths:
Neale Ranns097fa662018-05-01 05:17:55 -0700714 paths.append(path.encode())
Neale Ranns31ed7442018-02-23 05:29:09 -0800715
Neale Ranns097fa662018-05-01 05:17:55 -0700716 r = self._test.vapi.mpls_route_add_del(self.table_id,
717 self.local_label,
718 self.eos_bit,
719 self.eos_proto,
720 self.is_multicast,
721 paths, 1, 0)
Neale Ranns008dbe12018-09-07 09:32:36 -0700722 self.stats_index = r.stats_index
Neale Ranns5a8123b2017-01-26 01:18:23 -0800723 self._test.registry.register(self, self._test.logger)
Neale Rannsad422ed2016-11-02 14:20:04 +0000724
725 def remove_vpp_config(self):
Neale Ranns097fa662018-05-01 05:17:55 -0700726 paths = []
Neale Rannsad422ed2016-11-02 14:20:04 +0000727 for path in self.paths:
Neale Ranns097fa662018-05-01 05:17:55 -0700728 paths.append(path.encode())
729
730 self._test.vapi.mpls_route_add_del(self.table_id,
731 self.local_label,
732 self.eos_bit,
733 self.eos_proto,
734 self.is_multicast,
735 paths, 0, 0)
Neale Ranns5a8123b2017-01-26 01:18:23 -0800736
737 def query_vpp_config(self):
Neale Ranns775f73c2018-12-20 03:01:49 -0800738 return find_mpls_route(self._test, self.table_id,
739 self.local_label, self.eos_bit)
Neale Ranns5a8123b2017-01-26 01:18:23 -0800740
Neale Ranns5a8123b2017-01-26 01:18:23 -0800741 def object_id(self):
Paul Vinciguerra941da4a2019-06-18 07:57:53 -0400742 return ("mpls-route-%d:%s/%d"
Neale Ranns5a8123b2017-01-26 01:18:23 -0800743 % (self.table_id,
744 self.local_label,
Ole Troan9a475372019-03-05 16:58:24 +0100745 20 + self.eos_bit))
Neale Ranns008dbe12018-09-07 09:32:36 -0700746
747 def get_stats_to(self):
748 c = self._test.statistics.get_counter("/net/route/to")
749 return c[0][self.stats_index]
750
751 def get_stats_via(self):
752 c = self._test.statistics.get_counter("/net/route/via")
753 return c[0][self.stats_index]