|
@@ -226,6 +226,9 @@ jumped:
|
|
|
else
|
|
|
err = ops->action(rule, fl, flags, arg);
|
|
|
|
|
|
+ if (!err && ops->suppress && ops->suppress(rule, arg))
|
|
|
+ continue;
|
|
|
+
|
|
|
if (err != -EAGAIN) {
|
|
|
if ((arg->flags & FIB_LOOKUP_NOREF) ||
|
|
|
likely(atomic_inc_not_zero(&rule->refcnt))) {
|
|
@@ -337,6 +340,8 @@ static int fib_nl_newrule(struct sk_buff *skb, struct nlmsghdr* nlh)
|
|
|
rule->action = frh->action;
|
|
|
rule->flags = frh->flags;
|
|
|
rule->table = frh_get_table(frh, tb);
|
|
|
+ if (tb[FRA_TABLE_PREFIXLEN_MIN])
|
|
|
+ rule->table_prefixlen_min = nla_get_u8(tb[FRA_TABLE_PREFIXLEN_MIN]);
|
|
|
|
|
|
if (!tb[FRA_PRIORITY] && ops->default_pref)
|
|
|
rule->pref = ops->default_pref(ops);
|
|
@@ -523,6 +528,7 @@ static inline size_t fib_rule_nlmsg_size(struct fib_rules_ops *ops,
|
|
|
+ nla_total_size(IFNAMSIZ) /* FRA_OIFNAME */
|
|
|
+ nla_total_size(4) /* FRA_PRIORITY */
|
|
|
+ nla_total_size(4) /* FRA_TABLE */
|
|
|
+ + nla_total_size(1) /* FRA_TABLE_PREFIXLEN_MIN */
|
|
|
+ nla_total_size(4) /* FRA_FWMARK */
|
|
|
+ nla_total_size(4); /* FRA_FWMASK */
|
|
|
|
|
@@ -548,6 +554,8 @@ static int fib_nl_fill_rule(struct sk_buff *skb, struct fib_rule *rule,
|
|
|
frh->table = rule->table;
|
|
|
if (nla_put_u32(skb, FRA_TABLE, rule->table))
|
|
|
goto nla_put_failure;
|
|
|
+ if (nla_put_u8(skb, FRA_TABLE_PREFIXLEN_MIN, rule->table_prefixlen_min))
|
|
|
+ goto nla_put_failure;
|
|
|
frh->res1 = 0;
|
|
|
frh->res2 = 0;
|
|
|
frh->action = rule->action;
|