mirror of
https://git.proxmox.com/git/mirror_frr
synced 2025-08-06 21:50:39 +00:00
lib: Do not convert EVPN prefixes into IPv4/IPv6 if not needed
Convert only when this is really needed, e.g. `match ip address prefix-list ...`.
Otherwise, we can't have mixed match clauses, like:
```
match ip address prefix-list p1
match evpn route-type prefix
```
This won't work, because the prefix is already converted, and we can't extract
route type, vni, etc. from the original EVPN prefix.
Signed-off-by: Donatas Abraitis <donatas@opensourcerouting.org>
(cherry picked from commit 439b739495
)
This commit is contained in:
parent
ac6a3bfc78
commit
80c85dedb9
@ -2548,7 +2548,6 @@ route_map_result_t route_map_apply_ext(struct route_map *map,
|
|||||||
struct route_map_index *index = NULL;
|
struct route_map_index *index = NULL;
|
||||||
struct route_map_rule *set = NULL;
|
struct route_map_rule *set = NULL;
|
||||||
bool skip_match_clause = false;
|
bool skip_match_clause = false;
|
||||||
struct prefix conv;
|
|
||||||
|
|
||||||
if (recursion > RMAP_RECURSION_LIMIT) {
|
if (recursion > RMAP_RECURSION_LIMIT) {
|
||||||
if (map)
|
if (map)
|
||||||
@ -2571,31 +2570,14 @@ route_map_result_t route_map_apply_ext(struct route_map *map,
|
|||||||
|
|
||||||
map->applied++;
|
map->applied++;
|
||||||
|
|
||||||
/*
|
|
||||||
* Handling for matching evpn_routes in the prefix table.
|
|
||||||
*
|
|
||||||
* We convert type2/5 prefix to ipv4/6 prefix to do longest
|
|
||||||
* prefix matching on.
|
|
||||||
*/
|
|
||||||
if (prefix->family == AF_EVPN) {
|
if (prefix->family == AF_EVPN) {
|
||||||
if (evpn_prefix2prefix(prefix, &conv) != 0) {
|
index = map->head;
|
||||||
if (unlikely(CHECK_FLAG(rmap_debug,
|
} else {
|
||||||
DEBUG_ROUTEMAP_DETAIL)))
|
skip_match_clause = true;
|
||||||
zlog_debug(
|
index = route_map_get_index(map, prefix, match_object,
|
||||||
"Unable to convert EVPN prefix %pFX into IPv4/IPv6 prefix. Falling back to non-optimized route-map lookup",
|
&match_ret);
|
||||||
prefix);
|
|
||||||
} else {
|
|
||||||
if (unlikely(CHECK_FLAG(rmap_debug,
|
|
||||||
DEBUG_ROUTEMAP_DETAIL)))
|
|
||||||
zlog_debug(
|
|
||||||
"Converted EVPN prefix %pFX into %pFX for optimized route-map lookup",
|
|
||||||
prefix, &conv);
|
|
||||||
|
|
||||||
prefix = &conv;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
index = route_map_get_index(map, prefix, match_object, &match_ret);
|
|
||||||
if (index) {
|
if (index) {
|
||||||
index->applied++;
|
index->applied++;
|
||||||
if (unlikely(CHECK_FLAG(rmap_debug, DEBUG_ROUTEMAP)))
|
if (unlikely(CHECK_FLAG(rmap_debug, DEBUG_ROUTEMAP)))
|
||||||
@ -2619,7 +2601,6 @@ route_map_result_t route_map_apply_ext(struct route_map *map,
|
|||||||
ret = RMAP_DENYMATCH;
|
ret = RMAP_DENYMATCH;
|
||||||
goto route_map_apply_end;
|
goto route_map_apply_end;
|
||||||
}
|
}
|
||||||
skip_match_clause = true;
|
|
||||||
|
|
||||||
for (; index; index = index->next) {
|
for (; index; index = index->next) {
|
||||||
if (!skip_match_clause) {
|
if (!skip_match_clause) {
|
||||||
|
Loading…
Reference in New Issue
Block a user