summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Haller <thaller@redhat.com>2021-07-20 11:45:41 +0200
committerThomas Haller <thaller@redhat.com>2021-07-21 09:54:58 +0200
commit1f1c7b82fd41caa7f92bfb86cbfd636bd8a09b22 (patch)
tree326fce71b554396cdf273bb33c590b897a7acd35
parenta6649ef87bbf12a556bdcecc32bbb7a5407ee70e (diff)
downloadNetworkManager-1f1c7b82fd41caa7f92bfb86cbfd636bd8a09b22.tar.gz
platform: mark routes in NMPlatform cache as "external"
-rw-r--r--src/core/platform/nm-fake-platform.c3
-rw-r--r--src/core/platform/tests/test-route.c104
-rw-r--r--src/libnm-platform/nm-linux-platform.c1
3 files changed, 60 insertions, 48 deletions
diff --git a/src/core/platform/nm-fake-platform.c b/src/core/platform/nm-fake-platform.c
index 0108b581bf..b773df9a43 100644
--- a/src/core/platform/nm-fake-platform.c
+++ b/src/core/platform/nm-fake-platform.c
@@ -1117,6 +1117,9 @@ ip_route_add(NMPlatform * platform,
: NMP_OBJECT_TYPE_IP6_ROUTE,
(const NMPlatformObject *) route);
r = NMP_OBJECT_CAST_IP_ROUTE(obj);
+
+ r->is_external = TRUE;
+
nm_platform_ip_route_normalize(addr_family, r);
switch (addr_family) {
diff --git a/src/core/platform/tests/test-route.c b/src/core/platform/tests/test-route.c
index 2b9b2f8f67..4b1db7fad7 100644
--- a/src/core/platform/tests/test-route.c
+++ b/src/core/platform/tests/test-route.c
@@ -332,30 +332,33 @@ test_ip4_route(void)
/* Test route listing */
routes = nmtstp_ip4_route_get_all(NM_PLATFORM_GET, ifindex);
memset(rts, 0, sizeof(rts));
- rts[0].rt_source = nmp_utils_ip_config_source_round_trip_rtprot(NM_IP_CONFIG_SOURCE_USER);
- rts[0].network = gateway;
- rts[0].plen = 32;
- rts[0].ifindex = ifindex;
- rts[0].gateway = INADDR_ANY;
- rts[0].metric = metric;
- rts[0].mss = mss;
- rts[0].scope_inv = nm_platform_route_scope_inv(RT_SCOPE_LINK);
- rts[1].rt_source = nmp_utils_ip_config_source_round_trip_rtprot(NM_IP_CONFIG_SOURCE_USER);
- rts[1].network = network;
- rts[1].plen = plen;
- rts[1].ifindex = ifindex;
- rts[1].gateway = gateway;
- rts[1].metric = metric;
- rts[1].mss = mss;
- rts[1].scope_inv = nm_platform_route_scope_inv(RT_SCOPE_UNIVERSE);
- rts[2].rt_source = nmp_utils_ip_config_source_round_trip_rtprot(NM_IP_CONFIG_SOURCE_USER);
- rts[2].network = 0;
- rts[2].plen = 0;
- rts[2].ifindex = ifindex;
- rts[2].gateway = gateway;
- rts[2].metric = metric;
- rts[2].mss = mss;
- rts[2].scope_inv = nm_platform_route_scope_inv(RT_SCOPE_UNIVERSE);
+ rts[0].rt_source = nmp_utils_ip_config_source_round_trip_rtprot(NM_IP_CONFIG_SOURCE_USER);
+ rts[0].network = gateway;
+ rts[0].plen = 32;
+ rts[0].ifindex = ifindex;
+ rts[0].gateway = INADDR_ANY;
+ rts[0].metric = metric;
+ rts[0].mss = mss;
+ rts[0].is_external = TRUE;
+ rts[0].scope_inv = nm_platform_route_scope_inv(RT_SCOPE_LINK);
+ rts[1].rt_source = nmp_utils_ip_config_source_round_trip_rtprot(NM_IP_CONFIG_SOURCE_USER);
+ rts[1].network = network;
+ rts[1].plen = plen;
+ rts[1].ifindex = ifindex;
+ rts[1].gateway = gateway;
+ rts[1].metric = metric;
+ rts[1].mss = mss;
+ rts[1].scope_inv = nm_platform_route_scope_inv(RT_SCOPE_UNIVERSE);
+ rts[1].is_external = TRUE;
+ rts[2].rt_source = nmp_utils_ip_config_source_round_trip_rtprot(NM_IP_CONFIG_SOURCE_USER);
+ rts[2].network = 0;
+ rts[2].plen = 0;
+ rts[2].ifindex = ifindex;
+ rts[2].gateway = gateway;
+ rts[2].metric = metric;
+ rts[2].mss = mss;
+ rts[2].scope_inv = nm_platform_route_scope_inv(RT_SCOPE_UNIVERSE);
+ rts[2].is_external = TRUE;
g_assert_cmpint(routes->len, ==, 3);
nmtst_platform_ip4_routes_equal_aptr((const NMPObject *const *) routes->pdata,
rts,
@@ -489,30 +492,33 @@ test_ip6_route(void)
/* Test route listing */
routes = nmtstp_ip6_route_get_all(NM_PLATFORM_GET, ifindex);
memset(rts, 0, sizeof(rts));
- rts[0].rt_source = nmp_utils_ip_config_source_round_trip_rtprot(NM_IP_CONFIG_SOURCE_USER);
- rts[0].network = gateway;
- rts[0].plen = 128;
- rts[0].ifindex = ifindex;
- rts[0].gateway = in6addr_any;
- rts[0].pref_src = in6addr_any;
- rts[0].metric = metric;
- rts[0].mss = mss;
- rts[1].rt_source = nmp_utils_ip_config_source_round_trip_rtprot(NM_IP_CONFIG_SOURCE_USER);
- rts[1].network = network;
- rts[1].plen = plen;
- rts[1].ifindex = ifindex;
- rts[1].gateway = gateway;
- rts[1].pref_src = pref_src;
- rts[1].metric = metric;
- rts[1].mss = mss;
- rts[2].rt_source = nmp_utils_ip_config_source_round_trip_rtprot(NM_IP_CONFIG_SOURCE_USER);
- rts[2].network = in6addr_any;
- rts[2].plen = 0;
- rts[2].ifindex = ifindex;
- rts[2].gateway = gateway;
- rts[2].pref_src = in6addr_any;
- rts[2].metric = metric;
- rts[2].mss = mss;
+ rts[0].rt_source = nmp_utils_ip_config_source_round_trip_rtprot(NM_IP_CONFIG_SOURCE_USER);
+ rts[0].network = gateway;
+ rts[0].plen = 128;
+ rts[0].ifindex = ifindex;
+ rts[0].gateway = in6addr_any;
+ rts[0].pref_src = in6addr_any;
+ rts[0].metric = metric;
+ rts[0].mss = mss;
+ rts[0].is_external = TRUE;
+ rts[1].rt_source = nmp_utils_ip_config_source_round_trip_rtprot(NM_IP_CONFIG_SOURCE_USER);
+ rts[1].network = network;
+ rts[1].plen = plen;
+ rts[1].ifindex = ifindex;
+ rts[1].gateway = gateway;
+ rts[1].pref_src = pref_src;
+ rts[1].metric = metric;
+ rts[1].mss = mss;
+ rts[1].is_external = TRUE;
+ rts[2].rt_source = nmp_utils_ip_config_source_round_trip_rtprot(NM_IP_CONFIG_SOURCE_USER);
+ rts[2].network = in6addr_any;
+ rts[2].plen = 0;
+ rts[2].ifindex = ifindex;
+ rts[2].gateway = gateway;
+ rts[2].pref_src = in6addr_any;
+ rts[2].metric = metric;
+ rts[2].mss = mss;
+ rts[2].is_external = TRUE;
g_assert_cmpint(routes->len, ==, 3);
nmtst_platform_ip6_routes_equal_aptr((const NMPObject *const *) routes->pdata,
rts,
@@ -709,6 +715,7 @@ test_ip4_route_options(gconstpointer test_data)
for (i = 0; i < rts_n; i++) {
rts_cmp[i] = rts_add[i];
nm_platform_ip_route_normalize(AF_INET, NM_PLATFORM_IP_ROUTE_CAST(&rts_cmp[i]));
+ rts_cmp[i].is_external = TRUE;
}
routes = nmtstp_ip4_route_get_all(NM_PLATFORM_GET, IFINDEX);
@@ -880,6 +887,7 @@ test_ip6_route_options(gconstpointer test_data)
for (i = 0; i < rts_n; i++) {
rts_cmp[i] = rts_add[i];
nm_platform_ip_route_normalize(AF_INET6, NM_PLATFORM_IP_ROUTE_CAST(&rts_cmp[i]));
+ rts_cmp[i].is_external = TRUE;
}
routes = nmtstp_ip6_route_get_all(NM_PLATFORM_GET, IFINDEX);
diff --git a/src/libnm-platform/nm-linux-platform.c b/src/libnm-platform/nm-linux-platform.c
index 0801fae29d..a2a82278ce 100644
--- a/src/libnm-platform/nm-linux-platform.c
+++ b/src/libnm-platform/nm-linux-platform.c
@@ -3519,6 +3519,7 @@ rta_multipath_done:;
obj = nmp_object_new(is_v4 ? NMP_OBJECT_TYPE_IP4_ROUTE : NMP_OBJECT_TYPE_IP6_ROUTE, NULL);
+ obj->ip_route.is_external = TRUE;
obj->ip_route.type_coerced = nm_platform_route_type_coerce(rtm->rtm_type);
obj->ip_route.table_coerced = nm_platform_route_table_coerce(
tb[RTA_TABLE] ? nla_get_u32(tb[RTA_TABLE]) : (guint32) rtm->rtm_table);