aboutgitcodebugslistschat
diff options
context:
space:
mode:
authorStefano Brivio <sbrivio@redhat.com>2024-06-18 13:00:51 +0200
committerStefano Brivio <sbrivio@redhat.com>2024-06-19 15:00:55 +0200
commitf301bb18b5b30ad93a706616bdc581c42ba4cbe2 (patch)
tree3873b1238af8c304f9200d941f4abc0d1728ef51
parent450a6131beabd6537f2460bcc110a9a961697649 (diff)
downloadpasst-f301bb18b5b30ad93a706616bdc581c42ba4cbe2.tar
passt-f301bb18b5b30ad93a706616bdc581c42ba4cbe2.tar.gz
passt-f301bb18b5b30ad93a706616bdc581c42ba4cbe2.tar.bz2
passt-f301bb18b5b30ad93a706616bdc581c42ba4cbe2.tar.lz
passt-f301bb18b5b30ad93a706616bdc581c42ba4cbe2.tar.xz
passt-f301bb18b5b30ad93a706616bdc581c42ba4cbe2.tar.zst
passt-f301bb18b5b30ad93a706616bdc581c42ba4cbe2.zip
netlink: Ignore EHOSTUNREACH failures when duplicating routes
To implicitly resolve possible dependencies between routes as we duplicate them into the target namespace, we go through a set of n routes n times, and ignore EEXIST responses to netlink messages (we already inserted the route) and ENETUNREACH (we didn't insert the route yet, but we need to insert another one first). Until now, we didn't ignore EHOSTUNREACH responses. However, NetworkManager users with multiple non-subnet routes for the same interface report that pasta exits with "no route to host" while duplicating routes. This happens because NetworkManager sets the 'noprefixroute' attribute on addresses, meaning that the kernel won't create subnet routes automatically depending on the prefix length of the address. We copy this attribute as we copy the address into the target namespace, and as a result, the kernel doesn't create subnet routes in the target namespace either. This means that the gateway for routes that are inserted later can be unreachable at some points during the sequence of route duplication. That is, we don't just have dependencies between regular routes, but we can also have dependencies between regular routes and subnet routes, as subnet routes are not automatically inserted in advance. Link: https://github.com/containers/podman/issues/22824 Signed-off-by: Stefano Brivio <sbrivio@redhat.com> Reviewed-by: David Gibson <david@gibson.dropbear.id.au>
-rw-r--r--netlink.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/netlink.c b/netlink.c
index 0221a53..2c9e71f 100644
--- a/netlink.c
+++ b/netlink.c
@@ -655,7 +655,8 @@ int nl_route_dup(int s_src, unsigned int ifi_src,
rc = nl_do(s_dst, nh, RTM_NEWROUTE,
(flags & ~NLM_F_DUMP_FILTERED) | NLM_F_CREATE,
nh->nlmsg_len);
- if (rc < 0 && rc != -ENETUNREACH && rc != -EEXIST)
+ if (rc < 0 && rc != -EEXIST &&
+ rc != -ENETUNREACH && rc != -EHOSTUNREACH)
return rc;
}
}