From: Hannes Frederic Sowa <hannes@stressinduktion.org>
To: Ben Greear <greearb@candelatech.com>
Cc: YOSHIFUJI Hideaki <hideaki@yoshifuji.org>,
netdev@vger.kernel.org,
YOSHIFUJI Hideaki <yoshfuji@linux-ipv6.org>,
hideaki.yoshifuji@miraclelinux.com
Subject: Re: [PATCH v2 2/2] ipv6: Allow accepting RA from local IP addresses.
Date: Wed, 25 Jun 2014 10:48:39 +0200 [thread overview]
Message-ID: <1403686119.29802.9.camel@localhost> (raw)
In-Reply-To: <53AA3FB2.3080204@candelatech.com>
On Di, 2014-06-24 at 20:19 -0700, Ben Greear wrote:
>
> On 06/24/2014 03:22 PM, YOSHIFUJI Hideaki wrote:
> > Hello.
> >
> > (2014/06/25 6:14), greearb@candelatech.com wrote:
> >> From: Ben Greear <greearb@candelatech.com>
> >>
> >> This can be used in virtual networking applications, and
> >> may have other uses as well. The option is disabled by
> >> default, so no change to current operating behaviour
> >
> > standard compliant behavior?
>
> I've no idea. Can you point me to the proper standard (and
> pertinent section)?
>
> >> without the user explicitly changing the behaviour.
> >>
> >
> > Would you include your specific example?
>
> I gave one in a response to comments on v1 of this patch.
It would be nice if you could include this into the changelog.
> Basically, I make a single OS instance look like a bunch of
> routers, bridges, and hosts. Without use of network namespaces,
> virtual machines, or other such virtualization. Just clever use
> of ip rules and routes. So, I need interfaces to be able to accept
> RA from other interfaces on the same system.
>
> http://www.spinics.net/lists/netdev/msg286764.html
>
>
> >> +static bool ipv6_accept_ra_local(struct inet6_dev *in6_dev, struct sk_buf *skb)
> >> +{
> >> + /* Do not accept RA with source-addr found on local machine unless
> >> + * accept_ra_from_local is set to true.
> >> + */
> >> + if (!in6_dev->cnf.accept_ra_from_local &&
> >> + ipv6_chk_addr(dev_net(in6_dev->dev), &ipv6_hdr(skb)->saddr,
> >> + NULL, 0))
> >> + return false;
> >> + return true;
> >> +}
> >> +
> >> +
> >> static void ndisc_router_discovery(struct sk_buff *skb)
> >> {
> >> struct ra_msg *ra_msg = (struct ra_msg *)skb_transport_header(skb);
> >> @@ -1151,10 +1164,9 @@ static void ndisc_router_discovery(struct sk_buff *skb)
> >> goto skip_defrtr;
> >> }
> >>
> >> - if (ipv6_chk_addr(dev_net(in6_dev->dev), &ipv6_hdr(skb)->saddr,
> >> - NULL, 0)) {
> >> + if (!ipv6_accept_ra_local(in6_dev, skb)) {
> >> ND_PRINTK(2, info,
> >> - "RA: %s, chk_addr failed for dev: %s\n",
> >> + "RA: %s, accept_ra_local failed for dev: %s\n",
> >> __func__, skb->dev->name);
> >> goto skip_defrtr;
> >> }
> >
> > Hmm, without global knob, I see little benefit by
> > having new helper.
>
> A previous reviewer requested it. I don't care either
> way, seems fine to open-code it to me.
Hmm, sorry to revert my opinion here. Passing a whole skb reference to
the helper function disqualifies this as a small helper function. ;)
I first thought about something like:
static bool ipv6_accept_ra_local(idev) {
return in6_dev->cnf.accept_ra_from_local ||
dev_net(idev->dev)->devconf_all.accept_ra_from_local;
}
...but without devconf_all->... test or alike it doesn't seem to make
much sense if you only process one flag, sorry.
Sorry,
Hannes
next prev parent reply other threads:[~2014-06-25 8:48 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-06-24 21:14 [PATCH v2 1/2] ipv6: Add more debugging around accept-ra logic greearb
2014-06-24 21:14 ` [PATCH v2 2/2] ipv6: Allow accepting RA from local IP addresses greearb
2014-06-24 22:22 ` YOSHIFUJI Hideaki
2014-06-25 3:19 ` Ben Greear
2014-06-25 8:48 ` Hannes Frederic Sowa [this message]
2014-06-26 0:49 ` YOSHIFUJI Hideaki/吉藤英明
2014-06-26 0:57 ` David Miller
2014-06-27 6:24 ` Hannes Frederic Sowa
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1403686119.29802.9.camel@localhost \
--to=hannes@stressinduktion.org \
--cc=greearb@candelatech.com \
--cc=hideaki.yoshifuji@miraclelinux.com \
--cc=hideaki@yoshifuji.org \
--cc=netdev@vger.kernel.org \
--cc=yoshfuji@linux-ipv6.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).