[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-Id: <20080402.085011.124380410.yoshfuji@linux-ipv6.org>
Date: Wed, 02 Apr 2008 08:50:11 +0900 (JST)
From: YOSHIFUJI Hideaki / 吉藤英明
<yoshfuji@...ux-ipv6.org>
To: benoit.boissinot@...-lyon.org, davem@...emloft.net
Cc: netdev@...r.kernel.org, pekkas@...core.fi
Subject: Re: [PATCH 2 of 2] IPv6: do not create temporary adresses with too
short preferred lifetime
In article <00affc24c178e6da3a3b.1207091341@...zuine> (at Wed, 02 Apr 2008 01:09:01 +0200), Benoit Boissinot <benoit.boissinot@...-lyon.org> says:
> IPv6: do not create temporary adresses with too short preferred lifetime
>
> >From RFC341:
> A temporary address is created only if this calculated Preferred
> Lifetime is greater than REGEN_ADVANCE time units. In particular,
> an implementation must not create a temporary address with a zero
> Preferred Lifetime.
>
> Signed-off-by: Benoit Boissinot <benoit.boissinot@...-lyon.org>
Signed-off-by: YOSHIFUJI Hideaki <yoshfuji@...ux-ipv6.org>
>
> diff -r 0c33481968e0 -r 00affc24c178 net/ipv6/addrconf.c
> --- a/net/ipv6/addrconf.c Sat Mar 22 00:41:39 2008 +0100
> +++ b/net/ipv6/addrconf.c Sat Mar 22 00:39:16 2008 +0100
> @@ -776,6 +776,7 @@
> struct inet6_dev *idev = ifp->idev;
> struct in6_addr addr, *tmpaddr;
> unsigned long tmp_prefered_lft, tmp_valid_lft, tmp_cstamp, tmp_tstamp;
> + unsigned long regen_advance;
> int tmp_plen;
> int ret = 0;
> int max_addresses;
> @@ -836,7 +837,22 @@
> tmp_tstamp = ifp->tstamp;
> spin_unlock_bh(&ifp->lock);
>
> + regen_advance = idev->cnf.regen_max_retry *
> + idev->cnf.dad_transmits *
> + idev->nd_parms->retrans_time / HZ;
> write_unlock(&idev->lock);
> +
> + /* A temporary address is created only if this calculated Preferred
> + * Lifetime is greater than REGEN_ADVANCE time units. In particular,
> + * an implementation must not create a temporary address with a zero
> + * Preferred Lifetime.
> + */
> + if (tmp_prefered_lft <= regen_advance) {
> + in6_ifa_put(ifp);
> + in6_dev_put(idev);
> + ret = -1;
> + goto out;
> + }
>
> addr_flags = IFA_F_TEMPORARY;
> /* set in addrconf_prefix_rcv() */
> --
> 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
--
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