]> git.ipfire.org Git - thirdparty/iproute2.git/commitdiff
iproute2: filter routing entries based on clone flag
authorUlrich Weber <uweber@astaro.com>
Fri, 23 Jul 2010 13:36:08 +0000 (15:36 +0200)
committerStephen Hemminger <stephen.hemminger@vyatta.com>
Fri, 23 Jul 2010 16:01:01 +0000 (09:01 -0700)
Before IPv6 routing cache entries were always displayed
if additional tables beside MAIN and LOCAL are installed.

Signed-off-by: Ulrich Weber <uweber@astaro.com>
ip/iproute.c

index 8252e182ece197ae85e0107d726d39ba32c1b248..fce7f331e0d01371356478f4833bc6a8126c245b 100644 (file)
@@ -160,14 +160,11 @@ int print_route(const struct sockaddr_nl *who, struct nlmsghdr *n, void *arg)
        if (r->rtm_family == AF_INET6 && table != RT_TABLE_MAIN)
                ip6_multiple_tables = 1;
 
+       if (filter.cloned == !(r->rtm_flags&RTM_F_CLONED))
+               return 0;
+
        if (r->rtm_family == AF_INET6 && !ip6_multiple_tables) {
-               if (filter.cloned) {
-                       if (!(r->rtm_flags&RTM_F_CLONED))
-                               return 0;
-               }
                if (filter.tb) {
-                       if (!filter.cloned && r->rtm_flags&RTM_F_CLONED)
-                               return 0;
                        if (filter.tb == RT_TABLE_LOCAL) {
                                if (r->rtm_type != RTN_LOCAL)
                                        return 0;
@@ -179,10 +176,6 @@ int print_route(const struct sockaddr_nl *who, struct nlmsghdr *n, void *arg)
                        }
                }
        } else {
-               if (filter.cloned) {
-                       if (!(r->rtm_flags&RTM_F_CLONED))
-                               return 0;
-               }
                if (filter.tb > 0 && filter.tb != table)
                        return 0;
        }