Commit 1b87d5c7 authored by Juliusz Chroboczek's avatar Juliusz Chroboczek

Reorder flush/install when changing a route over netlink.

As suggested by Dave Taht and Julien Cristau.
parent bb33004f
...@@ -861,33 +861,43 @@ kernel_route(int operation, const unsigned char *dest, unsigned short plen, ...@@ -861,33 +861,43 @@ kernel_route(int operation, const unsigned char *dest, unsigned short plen,
ipv4 = v4mapped(gate); ipv4 = v4mapped(gate);
if(operation == ROUTE_MODIFY) { if(operation == ROUTE_MODIFY) {
int added;
if(newmetric == metric && memcmp(newgate, gate, 16) == 0 && if(newmetric == metric && memcmp(newgate, gate, 16) == 0 &&
newifindex == ifindex) newifindex == ifindex)
return 0; return 0;
/* It is better to add the new route before removing the old /* It is better to add the new route before removing the old
one, to avoid losing packets. However, this only appears one, to avoid losing packets. However, if the old and new
to work if the metrics are different. */ priorities are equal, this only works if the kernel supports
if(newmetric != metric) { ECMP. So we first try the "right" order, and fall back on
rc = kernel_route(ROUTE_ADD, dest, plen, the "wrong" order if it fails with EEXIST. */
newgate, newifindex, newmetric, rc = kernel_route(ROUTE_ADD, dest, plen,
NULL, 0, 0); newgate, newifindex, newmetric,
if(rc < 0 && errno != EEXIST) NULL, 0, 0);
if(rc < 0) {
if(errno != EEXIST)
return rc; return rc;
rc = kernel_route(ROUTE_FLUSH, dest, plen, added = 0;
gate, ifindex, metric,
NULL, 0, 0);
if(rc < 0 && (errno == ENOENT || errno == ESRCH))
rc = 1;
} else { } else {
rc = kernel_route(ROUTE_FLUSH, dest, plen, added = 1;
gate, ifindex, metric, }
NULL, 0, 0);
kernel_route(ROUTE_FLUSH, dest, plen,
gate, ifindex, metric,
NULL, 0, 0);
if(!added) {
rc = kernel_route(ROUTE_ADD, dest, plen, rc = kernel_route(ROUTE_ADD, dest, plen,
newgate, newifindex, newmetric, newgate, newifindex, newmetric,
NULL, 0, 0); NULL, 0, 0);
if(rc < 0 && errno == EEXIST) if(rc < 0) {
rc = 1; if(errno == EEXIST)
rc = 1;
/* In principle, we should try to re-install the flushed
route on failure to preserve. However, this should
hopefully not matter much in practice. */
}
} }
return rc; return rc;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment