lists.openwall.net | lists / announce owl-users owl-dev john-users john-dev passwdqc-users yescrypt popa3d-users / oss-security kernel-hardening musl sabotage tlsify passwords / crypt-dev xvendor / Bugtraq Full-Disclosure linux-kernel linux-netdev linux-ext4 linux-hardening linux-cve-announce PHC | |
Open Source and information security mailing list archives
| ||
|
Message-Id: <1391819028-10722-1-git-send-email-zenczykowski@gmail.com> Date: Fri, 7 Feb 2014 16:23:48 -0800 From: Maciej Żenczykowski <zenczykowski@...il.com> To: Maciej Żenczykowski <maze@...gle.com>, "David S. Miller" <davem@...emloft.net> Cc: netdev@...r.kernel.org, Willem de Bruijn <willemb@...gle.com>, Eric Dumazet <edumazet@...gle.com>, Chris Davis <chrismd@...gle.com>, Carlo Contavalli <ccontavalli@...gle.com> Subject: [PATCH] net: fix 'ip rule' iif/oif device rename From: Maciej Żenczykowski <maze@...gle.com> ip rules with iif/oif references do not update: (detach/attach) across interface renames. Signed-off-by: Maciej Żenczykowski <maze@...gle.com> CC: Willem de Bruijn <willemb@...gle.com> CC: Eric Dumazet <edumazet@...gle.com> CC: Chris Davis <chrismd@...gle.com> CC: Carlo Contavalli <ccontavalli@...gle.com> Google-Bug-Id: 12936021 --- net/core/fib_rules.c | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/net/core/fib_rules.c b/net/core/fib_rules.c index f409e0bd35c0..185c341fafbd 100644 --- a/net/core/fib_rules.c +++ b/net/core/fib_rules.c @@ -745,6 +745,13 @@ static int fib_rules_event(struct notifier_block *this, unsigned long event, attach_rules(&ops->rules_list, dev); break; + case NETDEV_CHANGENAME: + list_for_each_entry(ops, &net->rules_ops, list) { + detach_rules(&ops->rules_list, dev); + attach_rules(&ops->rules_list, dev); + } + break; + case NETDEV_UNREGISTER: list_for_each_entry(ops, &net->rules_ops, list) detach_rules(&ops->rules_list, dev); -- 1.8.3 -- To unsubscribe from this list: send the line "unsubscribe netdev" in the body of a message to majordomo@...r.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
Powered by blists - more mailing lists