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 PHC | |
Open Source and information security mailing list archives
| ||
|
Date: Sun, 16 Feb 2014 17:51:28 +0100 From: Hannes Frederic Sowa <hannes@...essinduktion.org> To: Steven Barth <cyrus@...nwrt.org> Cc: netdev@...r.kernel.org Subject: Re: [PATCH v2] ipv6: fix inconsistent prefix route handling On Sun, Feb 16, 2014 at 05:25:54PM +0100, Steven Barth wrote: > - if (ifp->flags & IFA_F_PERMANENT && !(ifp->flags & IFA_F_NOPREFIXROUTE)) > + if (!(ifp->flags & IFA_F_NOPREFIXROUTE)) > action = check_cleanup_prefix_route(ifp, &expires); This could too easily clean up valid on-link information if the address just happens to be in the same subnet. Would (ifp-flags & (IFA_F_PERMANENET|IFA_F_TEMPORARY) && !(...)) solve the problem, too? Greetings, Hannes -- 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