summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSteven Barth <steven@midlink.org>2015-03-31 15:12:53 +0200
committerSteven Barth <steven@midlink.org>2015-03-31 15:12:53 +0200
commit3a0f953722698eab6f3f623a1d6ec5a1b7102b77 (patch)
tree0806b7594fba8da0cfdf48f32bae163df0537817
parent33429c18f64bfb3842b05d9eb86efbbdce7e909b (diff)
downloadnetifd-3a0f953722698eab6f3f623a1d6ec5a1b7102b77.tar.gz
Revert "linux: adjust default policy rules"
Signed-off-by: Steven Barth <steven@midlink.org>
-rw-r--r--system-linux.c18
1 files changed, 16 insertions, 2 deletions
diff --git a/system-linux.c b/system-linux.c
index e45fc69..2b52cea 100644
--- a/system-linux.c
+++ b/system-linux.c
@@ -43,6 +43,10 @@
#define RTN_FAILED_POLICY 12
#endif
+#ifndef RT_TABLE_PRELOCAL
+#define RT_TABLE_PRELOCAL 128
+#endif
+
#include <string.h>
#include <fcntl.h>
#include <glob.h>
@@ -1638,6 +1642,8 @@ bool system_resolve_rt_table(const char *name, unsigned int *id)
table = RT_TABLE_MAIN;
else if (!strcmp(name, "local"))
table = RT_TABLE_LOCAL;
+ else if (!strcmp(name, "prelocal"))
+ table = RT_TABLE_PRELOCAL;
/* try to look up name in /etc/iproute2/rt_tables */
else if ((f = fopen("/etc/iproute2/rt_tables", "r")) != NULL)
@@ -1798,7 +1804,11 @@ int system_flush_iprules(void)
rule.flags = IPRULE_INET4 | IPRULE_PRIORITY | IPRULE_LOOKUP;
- rule.priority = 128;
+ rule.priority = 0;
+ rule.lookup = RT_TABLE_PRELOCAL;
+ rv |= system_iprule(&rule, RTM_NEWRULE);
+
+ rule.priority = 1;
rule.lookup = RT_TABLE_LOCAL;
rv |= system_iprule(&rule, RTM_NEWRULE);
@@ -1813,7 +1823,11 @@ int system_flush_iprules(void)
rule.flags = IPRULE_INET6 | IPRULE_PRIORITY | IPRULE_LOOKUP;
- rule.priority = 128;
+ rule.priority = 0;
+ rule.lookup = RT_TABLE_PRELOCAL;
+ rv |= system_iprule(&rule, RTM_NEWRULE);
+
+ rule.priority = 1;
rule.lookup = RT_TABLE_LOCAL;
rv |= system_iprule(&rule, RTM_NEWRULE);