blob: 0c57a8f6771510d078d9e9f288966b458291a0bc [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * IPv6 Address [auto]configuration
3 * Linux INET6 implementation
4 *
5 * Authors:
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09006 * Pedro Roque <roque@di.fc.ul.pt>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 * Alexey Kuznetsov <kuznet@ms2.inr.ac.ru>
8 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07009 * This program is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU General Public License
11 * as published by the Free Software Foundation; either version
12 * 2 of the License, or (at your option) any later version.
13 */
14
15/*
16 * Changes:
17 *
18 * Janos Farkas : delete timer on ifdown
19 * <chexum@bankinf.banki.hu>
20 * Andi Kleen : kill double kfree on module
21 * unload.
22 * Maciej W. Rozycki : FDDI support
23 * sekiya@USAGI : Don't send too many RS
24 * packets.
25 * yoshfuji@USAGI : Fixed interval between DAD
26 * packets.
27 * YOSHIFUJI Hideaki @USAGI : improved accuracy of
28 * address validation timer.
29 * YOSHIFUJI Hideaki @USAGI : Privacy Extensions (RFC3041)
30 * support.
31 * Yuji SEKIYA @USAGI : Don't assign a same IPv6
32 * address on a same interface.
33 * YOSHIFUJI Hideaki @USAGI : ARCnet support
34 * YOSHIFUJI Hideaki @USAGI : convert /proc/net/if_inet6 to
35 * seq_file.
YOSHIFUJI Hideakib1cacb62005-11-08 09:38:12 -080036 * YOSHIFUJI Hideaki @USAGI : improved source address
37 * selection; consider scope,
38 * status etc.
Linus Torvalds1da177e2005-04-16 15:20:36 -070039 */
40
Joe Perchesf3213832012-05-15 14:11:53 +000041#define pr_fmt(fmt) "IPv6: " fmt
42
Linus Torvalds1da177e2005-04-16 15:20:36 -070043#include <linux/errno.h>
44#include <linux/types.h>
Ilpo Järvinena0bffff2009-03-21 13:36:17 -070045#include <linux/kernel.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070046#include <linux/socket.h>
47#include <linux/sockios.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070048#include <linux/net.h>
49#include <linux/in6.h>
50#include <linux/netdevice.h>
Thomas Graf18237302006-08-04 23:04:54 -070051#include <linux/if_addr.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070052#include <linux/if_arp.h>
53#include <linux/if_arcnet.h>
54#include <linux/if_infiniband.h>
55#include <linux/route.h>
56#include <linux/inetdevice.h>
57#include <linux/init.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090058#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070059#ifdef CONFIG_SYSCTL
60#include <linux/sysctl.h>
61#endif
Randy Dunlap4fc268d2006-01-11 12:17:47 -080062#include <linux/capability.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070063#include <linux/delay.h>
64#include <linux/notifier.h>
Paulo Marques543537b2005-06-23 00:09:02 -070065#include <linux/string.h>
Eric Dumazetddbe5032012-07-18 08:11:12 +000066#include <linux/hash.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070067
Eric W. Biederman457c4cb2007-09-12 12:01:34 +020068#include <net/net_namespace.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070069#include <net/sock.h>
70#include <net/snmp.h>
71
alex.bluesman.smirnov@gmail.com06a4c1c2012-05-10 03:25:52 +000072#include <net/af_ieee802154.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070073#include <net/ipv6.h>
74#include <net/protocol.h>
75#include <net/ndisc.h>
76#include <net/ip6_route.h>
77#include <net/addrconf.h>
78#include <net/tcp.h>
79#include <net/ip.h>
Thomas Graf5d620262006-08-15 00:35:02 -070080#include <net/netlink.h>
Mitsuru Chinenf24e3d62007-10-10 02:53:43 -070081#include <net/pkt_sched.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070082#include <linux/if_tunnel.h>
83#include <linux/rtnetlink.h>
Nicolas Dichtelf3a1bfb2012-10-25 22:28:50 +000084#include <linux/netconf.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070085
86#ifdef CONFIG_IPV6_PRIVACY
87#include <linux/random.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070088#endif
89
Stephen Hemmingere21e8462010-03-20 16:09:01 -070090#include <linux/uaccess.h>
Herbert Xu7f7d9a62007-04-24 21:54:09 -070091#include <asm/unaligned.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070092
93#include <linux/proc_fs.h>
94#include <linux/seq_file.h>
Paul Gortmakerbc3b2d72011-07-15 11:47:34 -040095#include <linux/export.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070096
97/* Set to 3 to get tracing... */
98#define ACONF_DEBUG 2
99
100#if ACONF_DEBUG >= 3
101#define ADBG(x) printk x
102#else
103#define ADBG(x)
104#endif
105
106#define INFINITY_LIFE_TIME 0xFFFFFFFF
Thomas Graf18a31e12010-11-17 04:12:02 +0000107
108static inline u32 cstamp_delta(unsigned long cstamp)
109{
110 return (cstamp - INITIAL_JIFFIES) * 100UL / HZ;
111}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112
YOSHIFUJI Hideakib2db7562010-03-20 16:11:12 -0700113#define ADDRCONF_TIMER_FUZZ_MINUS (HZ > 50 ? HZ/50 : 1)
114#define ADDRCONF_TIMER_FUZZ (HZ / 4)
115#define ADDRCONF_TIMER_FUZZ_MAX (HZ)
116
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117#ifdef CONFIG_SYSCTL
Pavel Emelyanovf52295a2007-12-02 00:58:37 +1100118static void addrconf_sysctl_register(struct inet6_dev *idev);
Pavel Emelyanov408c4762008-01-10 17:41:21 -0800119static void addrconf_sysctl_unregister(struct inet6_dev *idev);
120#else
121static inline void addrconf_sysctl_register(struct inet6_dev *idev)
122{
123}
124
125static inline void addrconf_sysctl_unregister(struct inet6_dev *idev)
126{
127}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128#endif
129
130#ifdef CONFIG_IPV6_PRIVACY
Sorin Dumitrueb7e0572012-08-30 02:01:45 +0000131static void __ipv6_regen_rndid(struct inet6_dev *idev);
132static void __ipv6_try_regen_rndid(struct inet6_dev *idev, struct in6_addr *tmpaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133static void ipv6_regen_rndid(unsigned long data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134#endif
135
YOSHIFUJI Hideaki1b34be72008-06-28 14:18:38 +0900136static int ipv6_generate_eui64(u8 *eui, struct net_device *dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137static int ipv6_count_addresses(struct inet6_dev *idev);
138
139/*
140 * Configured unicast address hash table
141 */
stephen hemmingerc2e21292010-03-17 20:31:10 +0000142static struct hlist_head inet6_addr_lst[IN6_ADDR_HSIZE];
stephen hemminger5c578ae2010-03-17 20:31:11 +0000143static DEFINE_SPINLOCK(addrconf_hash_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145static void addrconf_verify(unsigned long);
146
Ingo Molnar8d06afa2005-09-09 13:10:40 -0700147static DEFINE_TIMER(addr_chk_timer, addrconf_verify, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148static DEFINE_SPINLOCK(addrconf_verify_lock);
149
150static void addrconf_join_anycast(struct inet6_ifaddr *ifp);
151static void addrconf_leave_anycast(struct inet6_ifaddr *ifp);
152
Jiri Pirko93d9b7d2010-03-10 10:28:56 +0000153static void addrconf_type_change(struct net_device *dev,
154 unsigned long event);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155static int addrconf_ifdown(struct net_device *dev, int how);
156
David S. Millercf22f9a2012-04-14 21:37:40 -0400157static void addrconf_dad_start(struct inet6_ifaddr *ifp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158static void addrconf_dad_timer(unsigned long data);
159static void addrconf_dad_completed(struct inet6_ifaddr *ifp);
YOSHIFUJI Hideakic5e33bd2005-12-21 22:57:44 +0900160static void addrconf_dad_run(struct inet6_dev *idev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161static void addrconf_rs_timer(unsigned long data);
162static void __ipv6_ifa_notify(int event, struct inet6_ifaddr *ifa);
163static void ipv6_ifa_notify(int event, struct inet6_ifaddr *ifa);
164
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900165static void inet6_prefix_notify(int event, struct inet6_dev *idev,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166 struct prefix_info *pinfo);
David S. Miller3e81c6d2010-03-20 16:18:00 -0700167static bool ipv6_chk_same_addr(struct net *net, const struct in6_addr *addr,
168 struct net_device *dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169
Alan Sterne041c682006-03-27 01:16:30 -0800170static ATOMIC_NOTIFIER_HEAD(inet6addr_chain);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171
Adrian Bunk888c8482008-07-22 14:21:58 -0700172static struct ipv6_devconf ipv6_devconf __read_mostly = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173 .forwarding = 0,
174 .hop_limit = IPV6_DEFAULT_HOPLIMIT,
175 .mtu6 = IPV6_MIN_MTU,
176 .accept_ra = 1,
177 .accept_redirects = 1,
178 .autoconf = 1,
179 .force_mld_version = 0,
180 .dad_transmits = 1,
181 .rtr_solicits = MAX_RTR_SOLICITATIONS,
182 .rtr_solicit_interval = RTR_SOLICITATION_INTERVAL,
183 .rtr_solicit_delay = MAX_RTR_SOLICITATION_DELAY,
184#ifdef CONFIG_IPV6_PRIVACY
185 .use_tempaddr = 0,
186 .temp_valid_lft = TEMP_VALID_LIFETIME,
187 .temp_prefered_lft = TEMP_PREFERRED_LIFETIME,
188 .regen_max_retry = REGEN_MAX_RETRY,
189 .max_desync_factor = MAX_DESYNC_FACTOR,
190#endif
191 .max_addresses = IPV6_MAX_ADDRESSES,
YOSHIFUJI Hideaki65f5c7c2006-03-20 16:55:08 -0800192 .accept_ra_defrtr = 1,
YOSHIFUJI Hideakic4fd30e2006-03-20 16:55:26 -0800193 .accept_ra_pinfo = 1,
YOSHIFUJI Hideaki930d6ff2006-03-20 17:05:30 -0800194#ifdef CONFIG_IPV6_ROUTER_PREF
195 .accept_ra_rtr_pref = 1,
YOSHIFUJI Hideaki52e16352006-03-20 17:05:47 -0800196 .rtr_probe_interval = 60 * HZ,
YOSHIFUJI Hideaki09c884d2006-03-20 17:07:03 -0800197#ifdef CONFIG_IPV6_ROUTE_INFO
198 .accept_ra_rt_info_max_plen = 0,
199#endif
YOSHIFUJI Hideaki930d6ff2006-03-20 17:05:30 -0800200#endif
YOSHIFUJI Hideakifbea49e2006-09-22 14:43:49 -0700201 .proxy_ndp = 0,
YOSHIFUJI Hideaki0bcbc922007-04-24 14:58:30 -0700202 .accept_source_route = 0, /* we do not accept RH0 by default. */
YOSHIFUJI Hideaki778d80b2008-06-28 14:17:11 +0900203 .disable_ipv6 = 0,
YOSHIFUJI Hideaki1b34be72008-06-28 14:18:38 +0900204 .accept_dad = 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205};
206
Brian Haleyab32ea52006-09-22 14:15:41 -0700207static struct ipv6_devconf ipv6_devconf_dflt __read_mostly = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208 .forwarding = 0,
209 .hop_limit = IPV6_DEFAULT_HOPLIMIT,
210 .mtu6 = IPV6_MIN_MTU,
211 .accept_ra = 1,
212 .accept_redirects = 1,
213 .autoconf = 1,
214 .dad_transmits = 1,
215 .rtr_solicits = MAX_RTR_SOLICITATIONS,
216 .rtr_solicit_interval = RTR_SOLICITATION_INTERVAL,
217 .rtr_solicit_delay = MAX_RTR_SOLICITATION_DELAY,
218#ifdef CONFIG_IPV6_PRIVACY
219 .use_tempaddr = 0,
220 .temp_valid_lft = TEMP_VALID_LIFETIME,
221 .temp_prefered_lft = TEMP_PREFERRED_LIFETIME,
222 .regen_max_retry = REGEN_MAX_RETRY,
223 .max_desync_factor = MAX_DESYNC_FACTOR,
224#endif
225 .max_addresses = IPV6_MAX_ADDRESSES,
YOSHIFUJI Hideaki65f5c7c2006-03-20 16:55:08 -0800226 .accept_ra_defrtr = 1,
YOSHIFUJI Hideakic4fd30e2006-03-20 16:55:26 -0800227 .accept_ra_pinfo = 1,
YOSHIFUJI Hideaki930d6ff2006-03-20 17:05:30 -0800228#ifdef CONFIG_IPV6_ROUTER_PREF
229 .accept_ra_rtr_pref = 1,
YOSHIFUJI Hideaki52e16352006-03-20 17:05:47 -0800230 .rtr_probe_interval = 60 * HZ,
YOSHIFUJI Hideaki09c884d2006-03-20 17:07:03 -0800231#ifdef CONFIG_IPV6_ROUTE_INFO
232 .accept_ra_rt_info_max_plen = 0,
233#endif
YOSHIFUJI Hideaki930d6ff2006-03-20 17:05:30 -0800234#endif
YOSHIFUJI Hideakifbea49e2006-09-22 14:43:49 -0700235 .proxy_ndp = 0,
YOSHIFUJI Hideaki0bcbc922007-04-24 14:58:30 -0700236 .accept_source_route = 0, /* we do not accept RH0 by default. */
YOSHIFUJI Hideaki778d80b2008-06-28 14:17:11 +0900237 .disable_ipv6 = 0,
YOSHIFUJI Hideaki1b34be72008-06-28 14:18:38 +0900238 .accept_dad = 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239};
240
241/* IPv6 Wildcard Address and Loopback Address defined by RFC2553 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242const struct in6_addr in6addr_any = IN6ADDR_ANY_INIT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243const struct in6_addr in6addr_loopback = IN6ADDR_LOOPBACK_INIT;
YOSHIFUJI Hideakif3ee4012008-04-10 15:42:11 +0900244const struct in6_addr in6addr_linklocal_allnodes = IN6ADDR_LINKLOCAL_ALLNODES_INIT;
245const struct in6_addr in6addr_linklocal_allrouters = IN6ADDR_LINKLOCAL_ALLROUTERS_INIT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246
Mitsuru Chinenf24e3d62007-10-10 02:53:43 -0700247/* Check if a valid qdisc is available */
David S. Miller05297942008-07-08 23:01:27 -0700248static inline bool addrconf_qdisc_ok(const struct net_device *dev)
Mitsuru Chinenf24e3d62007-10-10 02:53:43 -0700249{
David S. Miller05297942008-07-08 23:01:27 -0700250 return !qdisc_tx_is_noop(dev);
Mitsuru Chinenf24e3d62007-10-10 02:53:43 -0700251}
252
YOSHIFUJI Hideaki2b5ead42008-05-13 01:16:24 +0900253/* Check if a route is valid prefix route */
254static inline int addrconf_is_prefix_route(const struct rt6_info *rt)
255{
Eric Dumazeta02cec22010-09-22 20:43:57 +0000256 return (rt->rt6i_flags & (RTF_GATEWAY | RTF_DEFAULT)) == 0;
YOSHIFUJI Hideaki2b5ead42008-05-13 01:16:24 +0900257}
258
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259static void addrconf_del_timer(struct inet6_ifaddr *ifp)
260{
261 if (del_timer(&ifp->timer))
262 __in6_ifa_put(ifp);
263}
264
Stephen Hemmingere21e8462010-03-20 16:09:01 -0700265enum addrconf_timer_t {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266 AC_NONE,
267 AC_DAD,
268 AC_RS,
269};
270
271static void addrconf_mod_timer(struct inet6_ifaddr *ifp,
272 enum addrconf_timer_t what,
273 unsigned long when)
274{
275 if (!del_timer(&ifp->timer))
276 in6_ifa_hold(ifp);
277
278 switch (what) {
279 case AC_DAD:
280 ifp->timer.function = addrconf_dad_timer;
281 break;
282 case AC_RS:
283 ifp->timer.function = addrconf_rs_timer;
284 break;
Stephen Hemmingere21e8462010-03-20 16:09:01 -0700285 default:
286 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287 }
288 ifp->timer.expires = jiffies + when;
289 add_timer(&ifp->timer);
290}
291
Herbert Xu7f7d9a62007-04-24 21:54:09 -0700292static int snmp6_alloc_dev(struct inet6_dev *idev)
293{
Tejun Heo7d720c32010-02-16 15:20:26 +0000294 if (snmp_mib_init((void __percpu **)idev->stats.ipv6,
Eric Dumazet1823e4c82010-06-22 20:58:41 +0000295 sizeof(struct ipstats_mib),
296 __alignof__(struct ipstats_mib)) < 0)
Herbert Xu7f7d9a62007-04-24 21:54:09 -0700297 goto err_ip;
Eric Dumazetbe281e52011-05-19 01:14:23 +0000298 idev->stats.icmpv6dev = kzalloc(sizeof(struct icmpv6_mib_device),
299 GFP_KERNEL);
300 if (!idev->stats.icmpv6dev)
Herbert Xu7f7d9a62007-04-24 21:54:09 -0700301 goto err_icmp;
Eric Dumazetbe281e52011-05-19 01:14:23 +0000302 idev->stats.icmpv6msgdev = kzalloc(sizeof(struct icmpv6msg_mib_device),
303 GFP_KERNEL);
304 if (!idev->stats.icmpv6msgdev)
David L Stevens14878f72007-09-16 16:52:35 -0700305 goto err_icmpmsg;
Herbert Xu7f7d9a62007-04-24 21:54:09 -0700306
307 return 0;
308
David L Stevens14878f72007-09-16 16:52:35 -0700309err_icmpmsg:
Eric Dumazetbe281e52011-05-19 01:14:23 +0000310 kfree(idev->stats.icmpv6dev);
Herbert Xu7f7d9a62007-04-24 21:54:09 -0700311err_icmp:
Tejun Heo7d720c32010-02-16 15:20:26 +0000312 snmp_mib_free((void __percpu **)idev->stats.ipv6);
Herbert Xu7f7d9a62007-04-24 21:54:09 -0700313err_ip:
Pavel Emelyanovaaf70ec2007-10-17 21:25:32 -0700314 return -ENOMEM;
Herbert Xu7f7d9a62007-04-24 21:54:09 -0700315}
316
Pavel Emelyanov16910b92007-10-17 21:23:43 -0700317static void snmp6_free_dev(struct inet6_dev *idev)
Herbert Xu7f7d9a62007-04-24 21:54:09 -0700318{
Eric Dumazetbe281e52011-05-19 01:14:23 +0000319 kfree(idev->stats.icmpv6msgdev);
320 kfree(idev->stats.icmpv6dev);
Tejun Heo7d720c32010-02-16 15:20:26 +0000321 snmp_mib_free((void __percpu **)idev->stats.ipv6);
Herbert Xu7f7d9a62007-04-24 21:54:09 -0700322}
323
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324/* Nobody refers to this device, we may destroy it. */
325
326void in6_dev_finish_destroy(struct inet6_dev *idev)
327{
328 struct net_device *dev = idev->dev;
Ilpo Järvinen547b7922008-07-25 21:43:18 -0700329
stephen hemminger502a2ff2010-03-17 20:31:13 +0000330 WARN_ON(!list_empty(&idev->addr_list));
Ilpo Järvinen547b7922008-07-25 21:43:18 -0700331 WARN_ON(idev->mc_list != NULL);
332
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333#ifdef NET_REFCNT_DEBUG
Joe Perches91df42b2012-05-15 14:11:54 +0000334 pr_debug("%s: %s\n", __func__, dev ? dev->name : "NIL");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335#endif
336 dev_put(dev);
337 if (!idev->dead) {
Joe Perchesf3213832012-05-15 14:11:53 +0000338 pr_warn("Freeing alive inet6 device %p\n", idev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339 return;
340 }
341 snmp6_free_dev(idev);
Lai Jiangshan38f57d12011-03-15 17:59:14 +0800342 kfree_rcu(idev, rcu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343}
YOSHIFUJI Hideaki71590392007-02-22 22:05:40 +0900344EXPORT_SYMBOL(in6_dev_finish_destroy);
345
Eldad Zack8e5e8f32012-04-01 07:49:08 +0000346static struct inet6_dev *ipv6_add_dev(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347{
348 struct inet6_dev *ndev;
349
350 ASSERT_RTNL();
351
352 if (dev->mtu < IPV6_MIN_MTU)
353 return NULL;
354
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900355 ndev = kzalloc(sizeof(struct inet6_dev), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900357 if (ndev == NULL)
358 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359
Ingo Oeser322f74a2006-03-20 23:01:47 -0800360 rwlock_init(&ndev->lock);
361 ndev->dev = dev;
stephen hemminger502a2ff2010-03-17 20:31:13 +0000362 INIT_LIST_HEAD(&ndev->addr_list);
363
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +0900364 memcpy(&ndev->cnf, dev_net(dev)->ipv6.devconf_dflt, sizeof(ndev->cnf));
Ingo Oeser322f74a2006-03-20 23:01:47 -0800365 ndev->cnf.mtu6 = dev->mtu;
366 ndev->cnf.sysctl = NULL;
367 ndev->nd_parms = neigh_parms_alloc(dev, &nd_tbl);
368 if (ndev->nd_parms == NULL) {
369 kfree(ndev);
370 return NULL;
371 }
Ben Hutchings0187bdf2008-06-19 16:15:47 -0700372 if (ndev->cnf.forwarding)
373 dev_disable_lro(dev);
Ingo Oeser322f74a2006-03-20 23:01:47 -0800374 /* We refer to the device */
375 dev_hold(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376
Ingo Oeser322f74a2006-03-20 23:01:47 -0800377 if (snmp6_alloc_dev(ndev) < 0) {
378 ADBG((KERN_WARNING
Joe Perchesf3213832012-05-15 14:11:53 +0000379 "%s: cannot allocate memory for statistics; dev=%s.\n",
Harvey Harrison0dc47872008-03-05 20:47:47 -0800380 __func__, dev->name));
Ingo Oeser322f74a2006-03-20 23:01:47 -0800381 neigh_parms_release(&nd_tbl, ndev->nd_parms);
Roy Li8603e332011-09-20 15:10:16 -0400382 dev_put(dev);
383 kfree(ndev);
Ingo Oeser322f74a2006-03-20 23:01:47 -0800384 return NULL;
385 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386
Ingo Oeser322f74a2006-03-20 23:01:47 -0800387 if (snmp6_register_dev(ndev) < 0) {
388 ADBG((KERN_WARNING
Joe Perchesf3213832012-05-15 14:11:53 +0000389 "%s: cannot create /proc/net/dev_snmp6/%s\n",
Harvey Harrison0dc47872008-03-05 20:47:47 -0800390 __func__, dev->name));
Ingo Oeser322f74a2006-03-20 23:01:47 -0800391 neigh_parms_release(&nd_tbl, ndev->nd_parms);
392 ndev->dead = 1;
393 in6_dev_finish_destroy(ndev);
394 return NULL;
395 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396
Ingo Oeser322f74a2006-03-20 23:01:47 -0800397 /* One reference from device. We must do this before
398 * we invoke __ipv6_regen_rndid().
399 */
400 in6_dev_hold(ndev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401
YOSHIFUJI Hideaki1b34be72008-06-28 14:18:38 +0900402 if (dev->flags & (IFF_NOARP | IFF_LOOPBACK))
403 ndev->cnf.accept_dad = -1;
404
YOSHIFUJI Hideakib077d7a2008-04-13 23:42:18 -0700405#if defined(CONFIG_IPV6_SIT) || defined(CONFIG_IPV6_SIT_MODULE)
406 if (dev->type == ARPHRD_SIT && (dev->priv_flags & IFF_ISATAP)) {
Joe Perchesf3213832012-05-15 14:11:53 +0000407 pr_info("%s: Disabled Multicast RS\n", dev->name);
YOSHIFUJI Hideakib077d7a2008-04-13 23:42:18 -0700408 ndev->cnf.rtr_solicits = 0;
409 }
410#endif
411
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412#ifdef CONFIG_IPV6_PRIVACY
stephen hemminger372e6c82010-03-17 20:31:09 +0000413 INIT_LIST_HEAD(&ndev->tempaddr_list);
Pavel Emelyanovb24b8a22008-01-23 21:20:07 -0800414 setup_timer(&ndev->regen_timer, ipv6_regen_rndid, (unsigned long)ndev);
Ingo Oeser322f74a2006-03-20 23:01:47 -0800415 if ((dev->flags&IFF_LOOPBACK) ||
416 dev->type == ARPHRD_TUNNEL ||
YOSHIFUJI Hideaki9625ed72008-04-13 23:47:11 -0700417 dev->type == ARPHRD_TUNNEL6 ||
Joerg Roedel0be669b2006-10-10 14:49:53 -0700418 dev->type == ARPHRD_SIT ||
Joerg Roedel0be669b2006-10-10 14:49:53 -0700419 dev->type == ARPHRD_NONE) {
Ingo Oeser322f74a2006-03-20 23:01:47 -0800420 ndev->cnf.use_tempaddr = -1;
421 } else {
422 in6_dev_hold(ndev);
423 ipv6_regen_rndid((unsigned long) ndev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424 }
Ingo Oeser322f74a2006-03-20 23:01:47 -0800425#endif
426
Mitsuru Chinenf24e3d62007-10-10 02:53:43 -0700427 if (netif_running(dev) && addrconf_qdisc_ok(dev))
Herbert Xu53aadcc2007-03-27 14:31:52 -0700428 ndev->if_flags |= IF_READY;
429
Ingo Oeser322f74a2006-03-20 23:01:47 -0800430 ipv6_mc_init_dev(ndev);
431 ndev->tstamp = jiffies;
Pavel Emelyanovf52295a2007-12-02 00:58:37 +1100432 addrconf_sysctl_register(ndev);
David L Stevens30c4cf52007-01-04 12:31:14 -0800433 /* protected by rtnl_lock */
Eric Dumazetcf778b02012-01-12 04:41:32 +0000434 rcu_assign_pointer(dev->ip6_ptr, ndev);
YOSHIFUJI Hideakid88ae4c2007-01-14 21:48:40 -0800435
436 /* Join all-node multicast group */
YOSHIFUJI Hideakif3ee4012008-04-10 15:42:11 +0900437 ipv6_dev_mc_inc(dev, &in6addr_linklocal_allnodes);
YOSHIFUJI Hideakid88ae4c2007-01-14 21:48:40 -0800438
Li Weid6ddef92012-03-05 14:45:17 +0000439 /* Join all-router multicast group if forwarding is set */
Li Wei8b2aaed2012-03-07 14:58:07 +0000440 if (ndev->cnf.forwarding && (dev->flags & IFF_MULTICAST))
Li Weid6ddef92012-03-05 14:45:17 +0000441 ipv6_dev_mc_inc(dev, &in6addr_linklocal_allrouters);
442
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443 return ndev;
444}
445
Eldad Zack8e5e8f32012-04-01 07:49:08 +0000446static struct inet6_dev *ipv6_find_idev(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447{
448 struct inet6_dev *idev;
449
450 ASSERT_RTNL();
451
Stephen Hemmingere21e8462010-03-20 16:09:01 -0700452 idev = __in6_dev_get(dev);
453 if (!idev) {
454 idev = ipv6_add_dev(dev);
455 if (!idev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456 return NULL;
457 }
YOSHIFUJI Hideakic5e33bd2005-12-21 22:57:44 +0900458
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459 if (dev->flags&IFF_UP)
460 ipv6_mc_up(idev);
461 return idev;
462}
463
Nicolas Dichtelf3a1bfb2012-10-25 22:28:50 +0000464static int inet6_netconf_msgsize_devconf(int type)
465{
466 int size = NLMSG_ALIGN(sizeof(struct netconfmsg))
467 + nla_total_size(4); /* NETCONFA_IFINDEX */
468
469 if (type == NETCONFA_FORWARDING)
470 size += nla_total_size(4);
471
472 return size;
473}
474
475static int inet6_netconf_fill_devconf(struct sk_buff *skb, int ifindex,
476 struct ipv6_devconf *devconf, u32 portid,
477 u32 seq, int event, unsigned int flags,
478 int type)
479{
480 struct nlmsghdr *nlh;
481 struct netconfmsg *ncm;
482
483 nlh = nlmsg_put(skb, portid, seq, event, sizeof(struct netconfmsg),
484 flags);
485 if (nlh == NULL)
486 return -EMSGSIZE;
487
488 ncm = nlmsg_data(nlh);
489 ncm->ncm_family = AF_INET6;
490
491 if (nla_put_s32(skb, NETCONFA_IFINDEX, ifindex) < 0)
492 goto nla_put_failure;
493
494 if (type == NETCONFA_FORWARDING &&
495 nla_put_s32(skb, NETCONFA_FORWARDING, devconf->forwarding) < 0)
496 goto nla_put_failure;
497
498 return nlmsg_end(skb, nlh);
499
500nla_put_failure:
501 nlmsg_cancel(skb, nlh);
502 return -EMSGSIZE;
503}
504
505static void inet6_netconf_notify_devconf(struct net *net, int type, int ifindex,
506 struct ipv6_devconf *devconf)
507{
508 struct sk_buff *skb;
509 int err = -ENOBUFS;
510
511 skb = nlmsg_new(inet6_netconf_msgsize_devconf(type), GFP_ATOMIC);
512 if (skb == NULL)
513 goto errout;
514
515 err = inet6_netconf_fill_devconf(skb, ifindex, devconf, 0, 0,
516 RTM_NEWNETCONF, 0, type);
517 if (err < 0) {
518 /* -EMSGSIZE implies BUG in inet6_netconf_msgsize_devconf() */
519 WARN_ON(err == -EMSGSIZE);
520 kfree_skb(skb);
521 goto errout;
522 }
523 rtnl_notify(skb, net, 0, RTNLGRP_IPV6_NETCONF, NULL, GFP_ATOMIC);
524 return;
525errout:
526 if (err < 0)
527 rtnl_set_sk_err(net, RTNLGRP_IPV6_NETCONF, err);
528}
529
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530#ifdef CONFIG_SYSCTL
531static void dev_forward_change(struct inet6_dev *idev)
532{
533 struct net_device *dev;
534 struct inet6_ifaddr *ifa;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535
536 if (!idev)
537 return;
538 dev = idev->dev;
Ben Hutchings0187bdf2008-06-19 16:15:47 -0700539 if (idev->cnf.forwarding)
540 dev_disable_lro(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541 if (dev && (dev->flags & IFF_MULTICAST)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542 if (idev->cnf.forwarding)
YOSHIFUJI Hideakif3ee4012008-04-10 15:42:11 +0900543 ipv6_dev_mc_inc(dev, &in6addr_linklocal_allrouters);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544 else
YOSHIFUJI Hideakif3ee4012008-04-10 15:42:11 +0900545 ipv6_dev_mc_dec(dev, &in6addr_linklocal_allrouters);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546 }
stephen hemminger502a2ff2010-03-17 20:31:13 +0000547
548 list_for_each_entry(ifa, &idev->addr_list, if_list) {
Michal Wrobel2c12a742007-02-26 15:36:10 -0800549 if (ifa->flags&IFA_F_TENTATIVE)
550 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551 if (idev->cnf.forwarding)
552 addrconf_join_anycast(ifa);
553 else
554 addrconf_leave_anycast(ifa);
555 }
Nicolas Dichtelf3a1bfb2012-10-25 22:28:50 +0000556 inet6_netconf_notify_devconf(dev_net(dev), NETCONFA_FORWARDING,
557 dev->ifindex, &idev->cnf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558}
559
560
Pavel Emelyanove1869322008-01-10 17:43:50 -0800561static void addrconf_forward_change(struct net *net, __s32 newf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562{
563 struct net_device *dev;
564 struct inet6_dev *idev;
565
Ben Hutchings4acd4942012-08-14 08:54:51 +0000566 for_each_netdev(net, dev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567 idev = __in6_dev_get(dev);
568 if (idev) {
Pavel Emelyanove1869322008-01-10 17:43:50 -0800569 int changed = (!idev->cnf.forwarding) ^ (!newf);
570 idev->cnf.forwarding = newf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571 if (changed)
572 dev_forward_change(idev);
573 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575}
Pavel Emelyanovc8fecf22007-12-05 01:50:24 -0800576
Francesco Ruggeri013d97e2012-01-16 10:40:10 +0000577static int addrconf_fixup_forwarding(struct ctl_table *table, int *p, int newf)
Pavel Emelyanovc8fecf22007-12-05 01:50:24 -0800578{
Pavel Emelyanovbff16c22008-01-10 17:42:13 -0800579 struct net *net;
Francesco Ruggeri013d97e2012-01-16 10:40:10 +0000580 int old;
581
582 if (!rtnl_trylock())
583 return restart_syscall();
Pavel Emelyanovbff16c22008-01-10 17:42:13 -0800584
585 net = (struct net *)table->extra2;
Francesco Ruggeri013d97e2012-01-16 10:40:10 +0000586 old = *p;
587 *p = newf;
Pavel Emelyanovc8fecf22007-12-05 01:50:24 -0800588
Francesco Ruggeri013d97e2012-01-16 10:40:10 +0000589 if (p == &net->ipv6.devconf_dflt->forwarding) {
Nicolas Dichtelf3a1bfb2012-10-25 22:28:50 +0000590 if ((!newf) ^ (!old))
591 inet6_netconf_notify_devconf(net, NETCONFA_FORWARDING,
592 NETCONFA_IFINDEX_DEFAULT,
593 net->ipv6.devconf_dflt);
Francesco Ruggeri013d97e2012-01-16 10:40:10 +0000594 rtnl_unlock();
595 return 0;
Eric W. Biederman88af1822010-02-19 13:22:59 +0000596 }
Stephen Hemmingerb325fdd2009-02-26 06:55:31 +0000597
Pavel Emelyanove1869322008-01-10 17:43:50 -0800598 if (p == &net->ipv6.devconf_all->forwarding) {
Pavel Emelyanove1869322008-01-10 17:43:50 -0800599 net->ipv6.devconf_dflt->forwarding = newf;
600 addrconf_forward_change(net, newf);
Nicolas Dichtelf3a1bfb2012-10-25 22:28:50 +0000601 if ((!newf) ^ (!old))
602 inet6_netconf_notify_devconf(net, NETCONFA_FORWARDING,
603 NETCONFA_IFINDEX_ALL,
604 net->ipv6.devconf_all);
Francesco Ruggeri013d97e2012-01-16 10:40:10 +0000605 } else if ((!newf) ^ (!old))
Pavel Emelyanovc8fecf22007-12-05 01:50:24 -0800606 dev_forward_change((struct inet6_dev *)table->extra1);
Ben Hutchings0187bdf2008-06-19 16:15:47 -0700607 rtnl_unlock();
Pavel Emelyanovc8fecf22007-12-05 01:50:24 -0800608
Francesco Ruggeri013d97e2012-01-16 10:40:10 +0000609 if (newf)
Daniel Lezcano7b4da532008-03-04 13:47:14 -0800610 rt6_purge_dflt_routers(net);
Stephen Hemmingerb325fdd2009-02-26 06:55:31 +0000611 return 1;
Pavel Emelyanovc8fecf22007-12-05 01:50:24 -0800612}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613#endif
614
stephen hemminger5c578ae2010-03-17 20:31:11 +0000615/* Nobody refers to this ifaddr, destroy it */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616void inet6_ifa_finish_destroy(struct inet6_ifaddr *ifp)
617{
stephen hemmingerc2e21292010-03-17 20:31:10 +0000618 WARN_ON(!hlist_unhashed(&ifp->addr_lst));
Ilpo Järvinen547b7922008-07-25 21:43:18 -0700619
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620#ifdef NET_REFCNT_DEBUG
Joe Perches91df42b2012-05-15 14:11:54 +0000621 pr_debug("%s\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622#endif
623
624 in6_dev_put(ifp->idev);
625
626 if (del_timer(&ifp->timer))
Stephen Hemmingere21e8462010-03-20 16:09:01 -0700627 pr_notice("Timer is still running, when freeing ifa=%p\n", ifp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628
Herbert Xue9d3e082010-05-18 15:36:06 -0700629 if (ifp->state != INET6_IFADDR_STATE_DEAD) {
Joe Perchesf3213832012-05-15 14:11:53 +0000630 pr_warn("Freeing alive inet6 address %p\n", ifp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631 return;
632 }
Changli Gaod8d1f302010-06-10 23:31:35 -0700633 dst_release(&ifp->rt->dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634
Lai Jiangshane5785982011-03-15 18:00:14 +0800635 kfree_rcu(ifp, rcu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636}
637
Brian Haleye55ffac2006-07-10 15:25:51 -0700638static void
639ipv6_link_dev_addr(struct inet6_dev *idev, struct inet6_ifaddr *ifp)
640{
stephen hemminger502a2ff2010-03-17 20:31:13 +0000641 struct list_head *p;
YOSHIFUJI Hideaki8a6ce0c2006-07-11 13:05:30 -0700642 int ifp_scope = ipv6_addr_src_scope(&ifp->addr);
Brian Haleye55ffac2006-07-10 15:25:51 -0700643
644 /*
645 * Each device address list is sorted in order of scope -
646 * global before linklocal.
647 */
stephen hemminger502a2ff2010-03-17 20:31:13 +0000648 list_for_each(p, &idev->addr_list) {
649 struct inet6_ifaddr *ifa
650 = list_entry(p, struct inet6_ifaddr, if_list);
YOSHIFUJI Hideaki8a6ce0c2006-07-11 13:05:30 -0700651 if (ifp_scope >= ipv6_addr_src_scope(&ifa->addr))
Brian Haleye55ffac2006-07-10 15:25:51 -0700652 break;
653 }
654
David S. Millerb54c9b92010-03-25 21:25:30 -0700655 list_add_tail(&ifp->if_list, p);
Brian Haleye55ffac2006-07-10 15:25:51 -0700656}
657
Eric Dumazetddbe5032012-07-18 08:11:12 +0000658static u32 inet6_addr_hash(const struct in6_addr *addr)
YOSHIFUJI Hideaki3eb84f42008-04-10 15:42:08 +0900659{
Eric Dumazetddbe5032012-07-18 08:11:12 +0000660 return hash_32(ipv6_addr_hash(addr), IN6_ADDR_HSIZE_SHIFT);
YOSHIFUJI Hideaki3eb84f42008-04-10 15:42:08 +0900661}
662
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663/* On success it returns ifp with increased reference count */
664
665static struct inet6_ifaddr *
666ipv6_add_addr(struct inet6_dev *idev, const struct in6_addr *addr, int pfxlen,
Jamal Hadi Salime431b8c2005-06-18 22:55:31 -0700667 int scope, u32 flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668{
669 struct inet6_ifaddr *ifa = NULL;
670 struct rt6_info *rt;
stephen hemminger3a88a812010-03-17 20:31:12 +0000671 unsigned int hash;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672 int err = 0;
YOSHIFUJI Hideakid68b8272008-06-25 16:26:47 +0900673 int addr_type = ipv6_addr_type(addr);
674
675 if (addr_type == IPV6_ADDR_ANY ||
676 addr_type & IPV6_ADDR_MULTICAST ||
677 (!(idev->dev->flags & IFF_LOOPBACK) &&
678 addr_type & IPV6_ADDR_LOOPBACK))
679 return ERR_PTR(-EADDRNOTAVAIL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -0700681 rcu_read_lock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682 if (idev->dead) {
683 err = -ENODEV; /*XXX*/
684 goto out2;
685 }
686
Brian Haley56d417b2009-06-01 03:07:33 -0700687 if (idev->cnf.disable_ipv6) {
Brian Haley9bdd8d42009-03-18 18:22:48 -0700688 err = -EACCES;
689 goto out2;
690 }
691
stephen hemminger5c578ae2010-03-17 20:31:11 +0000692 spin_lock(&addrconf_hash_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693
694 /* Ignore adding duplicate addresses on an interface */
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +0900695 if (ipv6_chk_same_addr(dev_net(idev->dev), addr, idev->dev)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696 ADBG(("ipv6_add_addr: already assigned\n"));
697 err = -EEXIST;
698 goto out;
699 }
700
Ingo Oeser322f74a2006-03-20 23:01:47 -0800701 ifa = kzalloc(sizeof(struct inet6_ifaddr), GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702
703 if (ifa == NULL) {
704 ADBG(("ipv6_add_addr: malloc failed\n"));
705 err = -ENOBUFS;
706 goto out;
707 }
708
David S. Miller8f031512011-12-06 16:48:14 -0500709 rt = addrconf_dst_alloc(idev, addr, false);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710 if (IS_ERR(rt)) {
711 err = PTR_ERR(rt);
712 goto out;
713 }
714
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +0000715 ifa->addr = *addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716
717 spin_lock_init(&ifa->lock);
Herbert Xue9d3e082010-05-18 15:36:06 -0700718 spin_lock_init(&ifa->state_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719 init_timer(&ifa->timer);
stephen hemmingerc2e21292010-03-17 20:31:10 +0000720 INIT_HLIST_NODE(&ifa->addr_lst);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721 ifa->timer.data = (unsigned long) ifa;
722 ifa->scope = scope;
723 ifa->prefix_len = pfxlen;
724 ifa->flags = flags | IFA_F_TENTATIVE;
725 ifa->cstamp = ifa->tstamp = jiffies;
726
Keir Fraser57f5f542006-08-29 02:43:49 -0700727 ifa->rt = rt;
728
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729 ifa->idev = idev;
730 in6_dev_hold(idev);
731 /* For caller */
732 in6_ifa_hold(ifa);
733
734 /* Add to big hash table */
Eric Dumazetddbe5032012-07-18 08:11:12 +0000735 hash = inet6_addr_hash(addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736
stephen hemminger5c578ae2010-03-17 20:31:11 +0000737 hlist_add_head_rcu(&ifa->addr_lst, &inet6_addr_lst[hash]);
stephen hemminger5c578ae2010-03-17 20:31:11 +0000738 spin_unlock(&addrconf_hash_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739
740 write_lock(&idev->lock);
741 /* Add to inet6_dev unicast addr list. */
Brian Haleye55ffac2006-07-10 15:25:51 -0700742 ipv6_link_dev_addr(idev, ifa);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743
744#ifdef CONFIG_IPV6_PRIVACY
745 if (ifa->flags&IFA_F_TEMPORARY) {
stephen hemminger372e6c82010-03-17 20:31:09 +0000746 list_add(&ifa->tmp_list, &idev->tempaddr_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747 in6_ifa_hold(ifa);
748 }
749#endif
750
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751 in6_ifa_hold(ifa);
752 write_unlock(&idev->lock);
753out2:
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -0700754 rcu_read_unlock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755
YOSHIFUJI Hideakifd928332005-04-19 22:27:09 -0700756 if (likely(err == 0))
Alan Sterne041c682006-03-27 01:16:30 -0800757 atomic_notifier_call_chain(&inet6addr_chain, NETDEV_UP, ifa);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758 else {
759 kfree(ifa);
760 ifa = ERR_PTR(err);
761 }
762
763 return ifa;
764out:
stephen hemminger5c578ae2010-03-17 20:31:11 +0000765 spin_unlock(&addrconf_hash_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766 goto out2;
767}
768
769/* This function wants to get referenced ifp and releases it before return */
770
771static void ipv6_del_addr(struct inet6_ifaddr *ifp)
772{
stephen hemminger502a2ff2010-03-17 20:31:13 +0000773 struct inet6_ifaddr *ifa, *ifn;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774 struct inet6_dev *idev = ifp->idev;
Herbert Xu4c5ff6a2010-05-18 15:54:18 -0700775 int state;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776 int deleted = 0, onlink = 0;
777 unsigned long expires = jiffies;
778
Herbert Xu4c5ff6a2010-05-18 15:54:18 -0700779 spin_lock_bh(&ifp->state_lock);
780 state = ifp->state;
Herbert Xue9d3e082010-05-18 15:36:06 -0700781 ifp->state = INET6_IFADDR_STATE_DEAD;
Herbert Xu4c5ff6a2010-05-18 15:54:18 -0700782 spin_unlock_bh(&ifp->state_lock);
783
784 if (state == INET6_IFADDR_STATE_DEAD)
785 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786
stephen hemminger5c578ae2010-03-17 20:31:11 +0000787 spin_lock_bh(&addrconf_hash_lock);
788 hlist_del_init_rcu(&ifp->addr_lst);
stephen hemminger5c578ae2010-03-17 20:31:11 +0000789 spin_unlock_bh(&addrconf_hash_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790
791 write_lock_bh(&idev->lock);
792#ifdef CONFIG_IPV6_PRIVACY
793 if (ifp->flags&IFA_F_TEMPORARY) {
stephen hemminger372e6c82010-03-17 20:31:09 +0000794 list_del(&ifp->tmp_list);
795 if (ifp->ifpub) {
796 in6_ifa_put(ifp->ifpub);
797 ifp->ifpub = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798 }
stephen hemminger372e6c82010-03-17 20:31:09 +0000799 __in6_ifa_put(ifp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800 }
801#endif
802
stephen hemminger502a2ff2010-03-17 20:31:13 +0000803 list_for_each_entry_safe(ifa, ifn, &idev->addr_list, if_list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804 if (ifa == ifp) {
stephen hemminger502a2ff2010-03-17 20:31:13 +0000805 list_del_init(&ifp->if_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806 __in6_ifa_put(ifp);
stephen hemminger502a2ff2010-03-17 20:31:13 +0000807
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808 if (!(ifp->flags & IFA_F_PERMANENT) || onlink > 0)
809 break;
810 deleted = 1;
Kristian Slavov1d142802005-12-21 18:47:24 -0800811 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812 } else if (ifp->flags & IFA_F_PERMANENT) {
813 if (ipv6_prefix_equal(&ifa->addr, &ifp->addr,
814 ifp->prefix_len)) {
815 if (ifa->flags & IFA_F_PERMANENT) {
816 onlink = 1;
817 if (deleted)
818 break;
819 } else {
820 unsigned long lifetime;
821
822 if (!onlink)
823 onlink = -1;
824
825 spin_lock(&ifa->lock);
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +0900826
827 lifetime = addrconf_timeout_fixup(ifa->valid_lft, HZ);
828 /*
829 * Note: Because this address is
830 * not permanent, lifetime <
831 * LONG_MAX / HZ here.
832 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833 if (time_before(expires,
834 ifa->tstamp + lifetime * HZ))
835 expires = ifa->tstamp + lifetime * HZ;
836 spin_unlock(&ifa->lock);
837 }
838 }
839 }
840 }
841 write_unlock_bh(&idev->lock);
842
Andrey Vaginb2238562008-07-08 15:13:31 -0700843 addrconf_del_timer(ifp);
844
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845 ipv6_ifa_notify(RTM_DELADDR, ifp);
846
Alan Sterne041c682006-03-27 01:16:30 -0800847 atomic_notifier_call_chain(&inet6addr_chain, NETDEV_DOWN, ifp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849 /*
850 * Purge or update corresponding prefix
851 *
852 * 1) we don't purge prefix here if address was not permanent.
853 * prefix is managed by its own lifetime.
854 * 2) if there're no addresses, delete prefix.
855 * 3) if there're still other permanent address(es),
856 * corresponding prefix is still permanent.
857 * 4) otherwise, update prefix lifetime to the
858 * longest valid lifetime among the corresponding
859 * addresses on the device.
860 * Note: subsequent RA will update lifetime.
861 *
862 * --yoshfuji
863 */
864 if ((ifp->flags & IFA_F_PERMANENT) && onlink < 1) {
865 struct in6_addr prefix;
866 struct rt6_info *rt;
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +0900867 struct net *net = dev_net(ifp->idev->dev);
Nicolas Dichtel64c6d082012-09-26 00:04:55 +0000868 struct flowi6 fl6 = {};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869
Nicolas Dichtel64c6d082012-09-26 00:04:55 +0000870 ipv6_addr_prefix(&prefix, &ifp->addr, ifp->prefix_len);
871 fl6.flowi6_oif = ifp->idev->dev->ifindex;
872 fl6.daddr = prefix;
873 rt = (struct rt6_info *)ip6_route_lookup(net, &fl6,
874 RT6_LOOKUP_F_IFACE);
875
876 if (rt != net->ipv6.ip6_null_entry &&
877 addrconf_is_prefix_route(rt)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700878 if (onlink == 0) {
Thomas Grafe0a1ad732006-08-22 00:00:21 -0700879 ip6_del_rt(rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880 rt = NULL;
881 } else if (!(rt->rt6i_flags & RTF_EXPIRES)) {
Gao feng1716a962012-04-06 00:13:10 +0000882 rt6_set_expires(rt, expires);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883 }
884 }
Changli Gaod8d1f302010-06-10 23:31:35 -0700885 dst_release(&rt->dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886 }
887
Daniel Walterc3968a82011-04-13 21:10:57 +0000888 /* clean up prefsrc entries */
889 rt6_remove_prefsrc(ifp);
Herbert Xu4c5ff6a2010-05-18 15:54:18 -0700890out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891 in6_ifa_put(ifp);
892}
893
894#ifdef CONFIG_IPV6_PRIVACY
895static int ipv6_create_tempaddr(struct inet6_ifaddr *ifp, struct inet6_ifaddr *ift)
896{
897 struct inet6_dev *idev = ifp->idev;
898 struct in6_addr addr, *tmpaddr;
Lorenzo Colitti76f793e2011-07-26 13:50:49 +0000899 unsigned long tmp_prefered_lft, tmp_valid_lft, tmp_tstamp, age;
Benoit Boissinoteac55bf2008-04-02 00:01:35 -0700900 unsigned long regen_advance;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901 int tmp_plen;
902 int ret = 0;
903 int max_addresses;
Neil Horman95c385b2007-04-25 17:08:10 -0700904 u32 addr_flags;
Lorenzo Colitti76f793e2011-07-26 13:50:49 +0000905 unsigned long now = jiffies;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700906
907 write_lock(&idev->lock);
908 if (ift) {
909 spin_lock_bh(&ift->lock);
910 memcpy(&addr.s6_addr[8], &ift->addr.s6_addr[8], 8);
911 spin_unlock_bh(&ift->lock);
912 tmpaddr = &addr;
913 } else {
914 tmpaddr = NULL;
915 }
916retry:
917 in6_dev_hold(idev);
918 if (idev->cnf.use_tempaddr <= 0) {
919 write_unlock(&idev->lock);
Joe Perchesf3213832012-05-15 14:11:53 +0000920 pr_info("%s: use_tempaddr is disabled\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921 in6_dev_put(idev);
922 ret = -1;
923 goto out;
924 }
925 spin_lock_bh(&ifp->lock);
926 if (ifp->regen_count++ >= idev->cnf.regen_max_retry) {
927 idev->cnf.use_tempaddr = -1; /*XXX*/
928 spin_unlock_bh(&ifp->lock);
929 write_unlock(&idev->lock);
Joe Perchesf3213832012-05-15 14:11:53 +0000930 pr_warn("%s: regeneration time exceeded - disabled temporary address support\n",
931 __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932 in6_dev_put(idev);
933 ret = -1;
934 goto out;
935 }
936 in6_ifa_hold(ifp);
937 memcpy(addr.s6_addr, ifp->addr.s6_addr, 8);
Sorin Dumitrueb7e0572012-08-30 02:01:45 +0000938 __ipv6_try_regen_rndid(idev, tmpaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939 memcpy(&addr.s6_addr[8], idev->rndid, 8);
Lorenzo Colitti76f793e2011-07-26 13:50:49 +0000940 age = (now - ifp->tstamp) / HZ;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941 tmp_valid_lft = min_t(__u32,
942 ifp->valid_lft,
Glenn Wurster7a876b02010-09-27 07:10:10 +0000943 idev->cnf.temp_valid_lft + age);
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900944 tmp_prefered_lft = min_t(__u32,
945 ifp->prefered_lft,
Glenn Wurster7a876b02010-09-27 07:10:10 +0000946 idev->cnf.temp_prefered_lft + age -
Ben Hutchings784e2712010-06-26 11:42:55 +0000947 idev->cnf.max_desync_factor);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700948 tmp_plen = ifp->prefix_len;
949 max_addresses = idev->cnf.max_addresses;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950 tmp_tstamp = ifp->tstamp;
951 spin_unlock_bh(&ifp->lock);
952
Benoit Boissinoteac55bf2008-04-02 00:01:35 -0700953 regen_advance = idev->cnf.regen_max_retry *
954 idev->cnf.dad_transmits *
955 idev->nd_parms->retrans_time / HZ;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956 write_unlock(&idev->lock);
Neil Horman95c385b2007-04-25 17:08:10 -0700957
Benoit Boissinoteac55bf2008-04-02 00:01:35 -0700958 /* A temporary address is created only if this calculated Preferred
959 * Lifetime is greater than REGEN_ADVANCE time units. In particular,
960 * an implementation must not create a temporary address with a zero
961 * Preferred Lifetime.
962 */
963 if (tmp_prefered_lft <= regen_advance) {
964 in6_ifa_put(ifp);
965 in6_dev_put(idev);
966 ret = -1;
967 goto out;
968 }
969
Neil Horman95c385b2007-04-25 17:08:10 -0700970 addr_flags = IFA_F_TEMPORARY;
971 /* set in addrconf_prefix_rcv() */
972 if (ifp->flags & IFA_F_OPTIMISTIC)
973 addr_flags |= IFA_F_OPTIMISTIC;
974
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975 ift = !max_addresses ||
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900976 ipv6_count_addresses(idev) < max_addresses ?
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977 ipv6_add_addr(idev, &addr, tmp_plen,
Neil Horman95c385b2007-04-25 17:08:10 -0700978 ipv6_addr_type(&addr)&IPV6_ADDR_SCOPE_MASK,
979 addr_flags) : NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700980 if (!ift || IS_ERR(ift)) {
981 in6_ifa_put(ifp);
982 in6_dev_put(idev);
Joe Perchesf3213832012-05-15 14:11:53 +0000983 pr_info("%s: retry temporary address regeneration\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700984 tmpaddr = &addr;
985 write_lock(&idev->lock);
986 goto retry;
987 }
988
989 spin_lock_bh(&ift->lock);
990 ift->ifpub = ifp;
991 ift->valid_lft = tmp_valid_lft;
992 ift->prefered_lft = tmp_prefered_lft;
Lorenzo Colitti76f793e2011-07-26 13:50:49 +0000993 ift->cstamp = now;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994 ift->tstamp = tmp_tstamp;
995 spin_unlock_bh(&ift->lock);
996
David S. Millercf22f9a2012-04-14 21:37:40 -0400997 addrconf_dad_start(ift);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998 in6_ifa_put(ift);
999 in6_dev_put(idev);
1000out:
1001 return ret;
1002}
1003#endif
1004
1005/*
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001006 * Choose an appropriate source address (RFC3484)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001007 */
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001008enum {
1009 IPV6_SADDR_RULE_INIT = 0,
1010 IPV6_SADDR_RULE_LOCAL,
1011 IPV6_SADDR_RULE_SCOPE,
1012 IPV6_SADDR_RULE_PREFERRED,
1013#ifdef CONFIG_IPV6_MIP6
1014 IPV6_SADDR_RULE_HOA,
1015#endif
1016 IPV6_SADDR_RULE_OIF,
1017 IPV6_SADDR_RULE_LABEL,
1018#ifdef CONFIG_IPV6_PRIVACY
1019 IPV6_SADDR_RULE_PRIVACY,
1020#endif
1021 IPV6_SADDR_RULE_ORCHID,
1022 IPV6_SADDR_RULE_PREFIX,
1023 IPV6_SADDR_RULE_MAX
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001024};
1025
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001026struct ipv6_saddr_score {
1027 int rule;
1028 int addr_type;
1029 struct inet6_ifaddr *ifa;
1030 DECLARE_BITMAP(scorebits, IPV6_SADDR_RULE_MAX);
1031 int scopedist;
1032 int matchlen;
1033};
1034
1035struct ipv6_saddr_dst {
YOSHIFUJI Hideaki9acd9f32008-04-10 15:42:10 +09001036 const struct in6_addr *addr;
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001037 int ifindex;
1038 int scope;
1039 int label;
YOSHIFUJI Hideaki7cbca672008-03-25 09:37:42 +09001040 unsigned int prefs;
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001041};
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001042
Dave Jonesb6f99a22007-03-22 12:27:49 -07001043static inline int ipv6_saddr_preferred(int type)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001044{
Ulrich Weber45bb0062010-02-25 23:28:58 +00001045 if (type & (IPV6_ADDR_MAPPED|IPV6_ADDR_COMPATv4|IPV6_ADDR_LOOPBACK))
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001046 return 1;
1047 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001048}
1049
Benjamin Thery3de23252008-05-28 14:51:24 +02001050static int ipv6_get_saddr_eval(struct net *net,
1051 struct ipv6_saddr_score *score,
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001052 struct ipv6_saddr_dst *dst,
1053 int i)
1054{
1055 int ret;
1056
1057 if (i <= score->rule) {
1058 switch (i) {
1059 case IPV6_SADDR_RULE_SCOPE:
1060 ret = score->scopedist;
1061 break;
1062 case IPV6_SADDR_RULE_PREFIX:
1063 ret = score->matchlen;
1064 break;
1065 default:
1066 ret = !!test_bit(i, score->scorebits);
1067 }
1068 goto out;
1069 }
1070
1071 switch (i) {
1072 case IPV6_SADDR_RULE_INIT:
1073 /* Rule 0: remember if hiscore is not ready yet */
1074 ret = !!score->ifa;
1075 break;
1076 case IPV6_SADDR_RULE_LOCAL:
1077 /* Rule 1: Prefer same address */
1078 ret = ipv6_addr_equal(&score->ifa->addr, dst->addr);
1079 break;
1080 case IPV6_SADDR_RULE_SCOPE:
1081 /* Rule 2: Prefer appropriate scope
1082 *
1083 * ret
1084 * ^
1085 * -1 | d 15
1086 * ---+--+-+---> scope
1087 * |
1088 * | d is scope of the destination.
1089 * B-d | \
1090 * | \ <- smaller scope is better if
1091 * B-15 | \ if scope is enough for destinaion.
1092 * | ret = B - scope (-1 <= scope >= d <= 15).
1093 * d-C-1 | /
1094 * |/ <- greater is better
1095 * -C / if scope is not enough for destination.
1096 * /| ret = scope - C (-1 <= d < scope <= 15).
1097 *
1098 * d - C - 1 < B -15 (for all -1 <= d <= 15).
1099 * C > d + 14 - B >= 15 + 14 - B = 29 - B.
1100 * Assume B = 0 and we get C > 29.
1101 */
1102 ret = __ipv6_addr_src_scope(score->addr_type);
1103 if (ret >= dst->scope)
1104 ret = -ret;
1105 else
1106 ret -= 128; /* 30 is enough */
1107 score->scopedist = ret;
1108 break;
1109 case IPV6_SADDR_RULE_PREFERRED:
1110 /* Rule 3: Avoid deprecated and optimistic addresses */
1111 ret = ipv6_saddr_preferred(score->addr_type) ||
1112 !(score->ifa->flags & (IFA_F_DEPRECATED|IFA_F_OPTIMISTIC));
1113 break;
1114#ifdef CONFIG_IPV6_MIP6
1115 case IPV6_SADDR_RULE_HOA:
YOSHIFUJI Hideaki7cbca672008-03-25 09:37:42 +09001116 {
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001117 /* Rule 4: Prefer home address */
YOSHIFUJI Hideaki7cbca672008-03-25 09:37:42 +09001118 int prefhome = !(dst->prefs & IPV6_PREFER_SRC_COA);
1119 ret = !(score->ifa->flags & IFA_F_HOMEADDRESS) ^ prefhome;
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001120 break;
YOSHIFUJI Hideaki7cbca672008-03-25 09:37:42 +09001121 }
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001122#endif
1123 case IPV6_SADDR_RULE_OIF:
1124 /* Rule 5: Prefer outgoing interface */
1125 ret = (!dst->ifindex ||
1126 dst->ifindex == score->ifa->idev->dev->ifindex);
1127 break;
1128 case IPV6_SADDR_RULE_LABEL:
1129 /* Rule 6: Prefer matching label */
Benjamin Thery3de23252008-05-28 14:51:24 +02001130 ret = ipv6_addr_label(net,
1131 &score->ifa->addr, score->addr_type,
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001132 score->ifa->idev->dev->ifindex) == dst->label;
1133 break;
1134#ifdef CONFIG_IPV6_PRIVACY
1135 case IPV6_SADDR_RULE_PRIVACY:
YOSHIFUJI Hideaki7cbca672008-03-25 09:37:42 +09001136 {
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001137 /* Rule 7: Prefer public address
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001138 * Note: prefer temporary address if use_tempaddr >= 2
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001139 */
YOSHIFUJI Hideaki7cbca672008-03-25 09:37:42 +09001140 int preftmp = dst->prefs & (IPV6_PREFER_SRC_PUBLIC|IPV6_PREFER_SRC_TMP) ?
1141 !!(dst->prefs & IPV6_PREFER_SRC_TMP) :
1142 score->ifa->idev->cnf.use_tempaddr >= 2;
1143 ret = (!(score->ifa->flags & IFA_F_TEMPORARY)) ^ preftmp;
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001144 break;
YOSHIFUJI Hideaki7cbca672008-03-25 09:37:42 +09001145 }
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001146#endif
1147 case IPV6_SADDR_RULE_ORCHID:
1148 /* Rule 8-: Prefer ORCHID vs ORCHID or
1149 * non-ORCHID vs non-ORCHID
1150 */
1151 ret = !(ipv6_addr_orchid(&score->ifa->addr) ^
1152 ipv6_addr_orchid(dst->addr));
1153 break;
1154 case IPV6_SADDR_RULE_PREFIX:
1155 /* Rule 8: Use longest matching prefix */
YOSHIFUJI Hideaki / 吉藤英明91b4b042012-09-10 18:41:07 +00001156 ret = ipv6_addr_diff(&score->ifa->addr, dst->addr);
1157 if (ret > score->ifa->prefix_len)
1158 ret = score->ifa->prefix_len;
1159 score->matchlen = ret;
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001160 break;
1161 default:
1162 ret = 0;
1163 }
1164
1165 if (ret)
1166 __set_bit(i, score->scorebits);
1167 score->rule = i;
1168out:
1169 return ret;
1170}
1171
Patrick McHardyb3f644f2012-08-26 19:14:14 +02001172int ipv6_dev_get_saddr(struct net *net, const struct net_device *dst_dev,
YOSHIFUJI Hideaki9acd9f32008-04-10 15:42:10 +09001173 const struct in6_addr *daddr, unsigned int prefs,
YOSHIFUJI Hideaki7cbca672008-03-25 09:37:42 +09001174 struct in6_addr *saddr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001175{
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001176 struct ipv6_saddr_score scores[2],
1177 *score = &scores[0], *hiscore = &scores[1];
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001178 struct ipv6_saddr_dst dst;
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001179 struct net_device *dev;
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001180 int dst_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001181
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001182 dst_type = __ipv6_addr_type(daddr);
1183 dst.addr = daddr;
1184 dst.ifindex = dst_dev ? dst_dev->ifindex : 0;
1185 dst.scope = __ipv6_addr_src_scope(dst_type);
Benjamin Thery3de23252008-05-28 14:51:24 +02001186 dst.label = ipv6_addr_label(net, daddr, dst_type, dst.ifindex);
YOSHIFUJI Hideaki7cbca672008-03-25 09:37:42 +09001187 dst.prefs = prefs;
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001188
1189 hiscore->rule = -1;
1190 hiscore->ifa = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001191
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -07001192 rcu_read_lock();
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001193
Eric Dumazetc6d14c82009-11-04 05:43:23 -08001194 for_each_netdev_rcu(net, dev) {
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001195 struct inet6_dev *idev;
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001196
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001197 /* Candidate Source Address (section 4)
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001198 * - multicast and link-local destination address,
1199 * the set of candidate source address MUST only
1200 * include addresses assigned to interfaces
1201 * belonging to the same link as the outgoing
1202 * interface.
1203 * (- For site-local destination addresses, the
1204 * set of candidate source addresses MUST only
1205 * include addresses assigned to interfaces
1206 * belonging to the same site as the outgoing
1207 * interface.)
1208 */
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001209 if (((dst_type & IPV6_ADDR_MULTICAST) ||
1210 dst.scope <= IPV6_ADDR_SCOPE_LINKLOCAL) &&
1211 dst.ifindex && dev->ifindex != dst.ifindex)
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001212 continue;
1213
Linus Torvalds1da177e2005-04-16 15:20:36 -07001214 idev = __in6_dev_get(dev);
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001215 if (!idev)
1216 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001217
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001218 read_lock_bh(&idev->lock);
stephen hemminger502a2ff2010-03-17 20:31:13 +00001219 list_for_each_entry(score->ifa, &idev->addr_list, if_list) {
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001220 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001221
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001222 /*
YOSHIFUJI Hideaki6b3ae802005-12-21 22:58:01 +09001223 * - Tentative Address (RFC2462 section 5.4)
1224 * - A tentative address is not considered
1225 * "assigned to an interface" in the traditional
Neil Horman95c385b2007-04-25 17:08:10 -07001226 * sense, unless it is also flagged as optimistic.
YOSHIFUJI Hideaki6b3ae802005-12-21 22:58:01 +09001227 * - Candidate Source Address (section 4)
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001228 * - In any case, anycast addresses, multicast
1229 * addresses, and the unspecified address MUST
1230 * NOT be included in a candidate set.
1231 */
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001232 if ((score->ifa->flags & IFA_F_TENTATIVE) &&
1233 (!(score->ifa->flags & IFA_F_OPTIMISTIC)))
YOSHIFUJI Hideaki6b3ae802005-12-21 22:58:01 +09001234 continue;
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001235
1236 score->addr_type = __ipv6_addr_type(&score->ifa->addr);
1237
1238 if (unlikely(score->addr_type == IPV6_ADDR_ANY ||
1239 score->addr_type & IPV6_ADDR_MULTICAST)) {
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001240 LIMIT_NETDEBUG(KERN_DEBUG
Joe Perches3b6d821c2007-11-19 23:47:25 -08001241 "ADDRCONF: unspecified / multicast address "
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001242 "assigned as unicast address on %s",
1243 dev->name);
1244 continue;
1245 }
1246
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001247 score->rule = -1;
1248 bitmap_zero(score->scorebits, IPV6_SADDR_RULE_MAX);
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001249
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001250 for (i = 0; i < IPV6_SADDR_RULE_MAX; i++) {
1251 int minihiscore, miniscore;
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001252
Benjamin Thery3de23252008-05-28 14:51:24 +02001253 minihiscore = ipv6_get_saddr_eval(net, hiscore, &dst, i);
1254 miniscore = ipv6_get_saddr_eval(net, score, &dst, i);
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001255
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001256 if (minihiscore > miniscore) {
1257 if (i == IPV6_SADDR_RULE_SCOPE &&
1258 score->scopedist > 0) {
1259 /*
1260 * special case:
1261 * each remaining entry
1262 * has too small (not enough)
1263 * scope, because ifa entries
1264 * are sorted by their scope
1265 * values.
1266 */
1267 goto try_nextdev;
1268 }
1269 break;
1270 } else if (minihiscore < miniscore) {
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001271 if (hiscore->ifa)
1272 in6_ifa_put(hiscore->ifa);
1273
1274 in6_ifa_hold(score->ifa);
1275
Ilpo Järvinena0bffff2009-03-21 13:36:17 -07001276 swap(hiscore, score);
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001277
1278 /* restore our iterator */
1279 score->ifa = hiscore->ifa;
1280
1281 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001282 }
1283 }
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001284 }
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001285try_nextdev:
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001286 read_unlock_bh(&idev->lock);
1287 }
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -07001288 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001289
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001290 if (!hiscore->ifa)
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001291 return -EADDRNOTAVAIL;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001292
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00001293 *saddr = hiscore->ifa->addr;
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001294 in6_ifa_put(hiscore->ifa);
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001295 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001296}
YOSHIFUJI Hideaki5e5f3f02008-03-03 21:44:34 +09001297EXPORT_SYMBOL(ipv6_dev_get_saddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001298
Neil Horman95c385b2007-04-25 17:08:10 -07001299int ipv6_get_lladdr(struct net_device *dev, struct in6_addr *addr,
1300 unsigned char banned_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001301{
1302 struct inet6_dev *idev;
1303 int err = -EADDRNOTAVAIL;
1304
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -07001305 rcu_read_lock();
Stephen Hemmingere21e8462010-03-20 16:09:01 -07001306 idev = __in6_dev_get(dev);
1307 if (idev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001308 struct inet6_ifaddr *ifp;
1309
1310 read_lock_bh(&idev->lock);
stephen hemminger502a2ff2010-03-17 20:31:13 +00001311 list_for_each_entry(ifp, &idev->addr_list, if_list) {
1312 if (ifp->scope == IFA_LINK &&
1313 !(ifp->flags & banned_flags)) {
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00001314 *addr = ifp->addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001315 err = 0;
1316 break;
1317 }
1318 }
1319 read_unlock_bh(&idev->lock);
1320 }
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -07001321 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001322 return err;
1323}
1324
1325static int ipv6_count_addresses(struct inet6_dev *idev)
1326{
1327 int cnt = 0;
1328 struct inet6_ifaddr *ifp;
1329
1330 read_lock_bh(&idev->lock);
stephen hemminger502a2ff2010-03-17 20:31:13 +00001331 list_for_each_entry(ifp, &idev->addr_list, if_list)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001332 cnt++;
1333 read_unlock_bh(&idev->lock);
1334 return cnt;
1335}
1336
Eric Dumazetb71d1d42011-04-22 04:53:02 +00001337int ipv6_chk_addr(struct net *net, const struct in6_addr *addr,
Daniel Lezcanobfeade02008-01-10 22:43:18 -08001338 struct net_device *dev, int strict)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001339{
Stephen Hemmingereedf0422010-05-17 22:27:12 -07001340 struct inet6_ifaddr *ifp;
stephen hemmingerc2e21292010-03-17 20:31:10 +00001341 struct hlist_node *node;
Eric Dumazetddbe5032012-07-18 08:11:12 +00001342 unsigned int hash = inet6_addr_hash(addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001343
stephen hemminger5c578ae2010-03-17 20:31:11 +00001344 rcu_read_lock_bh();
1345 hlist_for_each_entry_rcu(ifp, node, &inet6_addr_lst[hash], addr_lst) {
YOSHIFUJI Hideaki878628f2008-03-26 03:57:35 +09001346 if (!net_eq(dev_net(ifp->idev->dev), net))
Daniel Lezcanobfeade02008-01-10 22:43:18 -08001347 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001348 if (ipv6_addr_equal(&ifp->addr, addr) &&
Stephen Hemmingereedf0422010-05-17 22:27:12 -07001349 !(ifp->flags&IFA_F_TENTATIVE) &&
1350 (dev == NULL || ifp->idev->dev == dev ||
1351 !(ifp->scope&(IFA_LINK|IFA_HOST) || strict))) {
1352 rcu_read_unlock_bh();
1353 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001354 }
1355 }
stephen hemminger5c578ae2010-03-17 20:31:11 +00001356
Stephen Hemmingereedf0422010-05-17 22:27:12 -07001357 rcu_read_unlock_bh();
1358 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001359}
YOSHIFUJI Hideaki71590392007-02-22 22:05:40 +09001360EXPORT_SYMBOL(ipv6_chk_addr);
1361
David S. Miller3e81c6d2010-03-20 16:18:00 -07001362static bool ipv6_chk_same_addr(struct net *net, const struct in6_addr *addr,
1363 struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001364{
Eric Dumazetddbe5032012-07-18 08:11:12 +00001365 unsigned int hash = inet6_addr_hash(addr);
stephen hemmingerc2e21292010-03-17 20:31:10 +00001366 struct inet6_ifaddr *ifp;
1367 struct hlist_node *node;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001368
stephen hemmingerc2e21292010-03-17 20:31:10 +00001369 hlist_for_each_entry(ifp, node, &inet6_addr_lst[hash], addr_lst) {
YOSHIFUJI Hideaki878628f2008-03-26 03:57:35 +09001370 if (!net_eq(dev_net(ifp->idev->dev), net))
Daniel Lezcano06bfe652008-01-10 22:43:42 -08001371 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001372 if (ipv6_addr_equal(&ifp->addr, addr)) {
1373 if (dev == NULL || ifp->idev->dev == dev)
David S. Miller3e81c6d2010-03-20 16:18:00 -07001374 return true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001375 }
1376 }
David S. Miller3e81c6d2010-03-20 16:18:00 -07001377 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001378}
1379
Eric Dumazetb71d1d42011-04-22 04:53:02 +00001380int ipv6_chk_prefix(const struct in6_addr *addr, struct net_device *dev)
YOSHIFUJI Hideaki52eeeb82008-03-15 22:54:23 -04001381{
1382 struct inet6_dev *idev;
1383 struct inet6_ifaddr *ifa;
1384 int onlink;
1385
1386 onlink = 0;
1387 rcu_read_lock();
1388 idev = __in6_dev_get(dev);
1389 if (idev) {
1390 read_lock_bh(&idev->lock);
stephen hemminger502a2ff2010-03-17 20:31:13 +00001391 list_for_each_entry(ifa, &idev->addr_list, if_list) {
YOSHIFUJI Hideaki52eeeb82008-03-15 22:54:23 -04001392 onlink = ipv6_prefix_equal(addr, &ifa->addr,
1393 ifa->prefix_len);
1394 if (onlink)
1395 break;
1396 }
1397 read_unlock_bh(&idev->lock);
1398 }
1399 rcu_read_unlock();
1400 return onlink;
1401}
YOSHIFUJI Hideaki52eeeb82008-03-15 22:54:23 -04001402EXPORT_SYMBOL(ipv6_chk_prefix);
1403
YOSHIFUJI Hideaki9acd9f32008-04-10 15:42:10 +09001404struct inet6_ifaddr *ipv6_get_ifaddr(struct net *net, const struct in6_addr *addr,
Daniel Lezcano1cab3da2008-01-10 22:44:09 -08001405 struct net_device *dev, int strict)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001406{
David S. Millerb79d1d52010-03-25 21:39:21 -07001407 struct inet6_ifaddr *ifp, *result = NULL;
Eric Dumazetddbe5032012-07-18 08:11:12 +00001408 unsigned int hash = inet6_addr_hash(addr);
David S. Millerb79d1d52010-03-25 21:39:21 -07001409 struct hlist_node *node;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001410
stephen hemminger5c578ae2010-03-17 20:31:11 +00001411 rcu_read_lock_bh();
Eric Dumazet4f70ecc2010-05-03 10:50:14 +00001412 hlist_for_each_entry_rcu_bh(ifp, node, &inet6_addr_lst[hash], addr_lst) {
YOSHIFUJI Hideaki878628f2008-03-26 03:57:35 +09001413 if (!net_eq(dev_net(ifp->idev->dev), net))
Daniel Lezcano1cab3da2008-01-10 22:44:09 -08001414 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001415 if (ipv6_addr_equal(&ifp->addr, addr)) {
1416 if (dev == NULL || ifp->idev->dev == dev ||
1417 !(ifp->scope&(IFA_LINK|IFA_HOST) || strict)) {
David S. Millerb79d1d52010-03-25 21:39:21 -07001418 result = ifp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001419 in6_ifa_hold(ifp);
1420 break;
1421 }
1422 }
1423 }
stephen hemminger5c578ae2010-03-17 20:31:11 +00001424 rcu_read_unlock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001425
David S. Millerb79d1d52010-03-25 21:39:21 -07001426 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001427}
1428
Linus Torvalds1da177e2005-04-16 15:20:36 -07001429/* Gets referenced address, destroys ifaddr */
1430
Brian Haleycc411d02009-09-09 14:41:32 +00001431static void addrconf_dad_stop(struct inet6_ifaddr *ifp, int dad_failed)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001432{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001433 if (ifp->flags&IFA_F_PERMANENT) {
1434 spin_lock_bh(&ifp->lock);
1435 addrconf_del_timer(ifp);
1436 ifp->flags |= IFA_F_TENTATIVE;
Brian Haleycc411d02009-09-09 14:41:32 +00001437 if (dad_failed)
1438 ifp->flags |= IFA_F_DADFAILED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001439 spin_unlock_bh(&ifp->lock);
Herbert Xue2577a02010-03-13 12:23:29 -08001440 if (dad_failed)
1441 ipv6_ifa_notify(0, ifp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001442 in6_ifa_put(ifp);
1443#ifdef CONFIG_IPV6_PRIVACY
1444 } else if (ifp->flags&IFA_F_TEMPORARY) {
1445 struct inet6_ifaddr *ifpub;
1446 spin_lock_bh(&ifp->lock);
1447 ifpub = ifp->ifpub;
1448 if (ifpub) {
1449 in6_ifa_hold(ifpub);
1450 spin_unlock_bh(&ifp->lock);
1451 ipv6_create_tempaddr(ifpub, ifp);
1452 in6_ifa_put(ifpub);
1453 } else {
1454 spin_unlock_bh(&ifp->lock);
1455 }
1456 ipv6_del_addr(ifp);
1457#endif
1458 } else
1459 ipv6_del_addr(ifp);
1460}
1461
Herbert Xuf2344a12010-05-18 15:55:27 -07001462static int addrconf_dad_end(struct inet6_ifaddr *ifp)
1463{
1464 int err = -ENOENT;
1465
1466 spin_lock(&ifp->state_lock);
1467 if (ifp->state == INET6_IFADDR_STATE_DAD) {
1468 ifp->state = INET6_IFADDR_STATE_POSTDAD;
1469 err = 0;
1470 }
1471 spin_unlock(&ifp->state_lock);
1472
1473 return err;
1474}
1475
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09001476void addrconf_dad_failure(struct inet6_ifaddr *ifp)
1477{
YOSHIFUJI Hideaki1b34be72008-06-28 14:18:38 +09001478 struct inet6_dev *idev = ifp->idev;
Brian Haley9bdd8d42009-03-18 18:22:48 -07001479
Ursula Braun853dc2e2010-10-24 23:06:43 +00001480 if (addrconf_dad_end(ifp)) {
1481 in6_ifa_put(ifp);
Herbert Xuf2344a12010-05-18 15:55:27 -07001482 return;
Ursula Braun853dc2e2010-10-24 23:06:43 +00001483 }
Herbert Xuf2344a12010-05-18 15:55:27 -07001484
Joe Perchese87cc472012-05-13 21:56:26 +00001485 net_info_ratelimited("%s: IPv6 duplicate address %pI6c detected!\n",
1486 ifp->idev->dev->name, &ifp->addr);
Brian Haley9bdd8d42009-03-18 18:22:48 -07001487
YOSHIFUJI Hideaki1b34be72008-06-28 14:18:38 +09001488 if (idev->cnf.accept_dad > 1 && !idev->cnf.disable_ipv6) {
1489 struct in6_addr addr;
1490
1491 addr.s6_addr32[0] = htonl(0xfe800000);
1492 addr.s6_addr32[1] = 0;
1493
1494 if (!ipv6_generate_eui64(addr.s6_addr + 8, idev->dev) &&
1495 ipv6_addr_equal(&ifp->addr, &addr)) {
1496 /* DAD failed for link-local based on MAC address */
1497 idev->cnf.disable_ipv6 = 1;
Brian Haley9bdd8d42009-03-18 18:22:48 -07001498
Joe Perchesf3213832012-05-15 14:11:53 +00001499 pr_info("%s: IPv6 being disabled!\n",
Brian Haley9bdd8d42009-03-18 18:22:48 -07001500 ifp->idev->dev->name);
YOSHIFUJI Hideaki1b34be72008-06-28 14:18:38 +09001501 }
1502 }
1503
Brian Haleycc411d02009-09-09 14:41:32 +00001504 addrconf_dad_stop(ifp, 1);
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09001505}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001506
1507/* Join to solicited addr multicast group. */
1508
Eric Dumazetb71d1d42011-04-22 04:53:02 +00001509void addrconf_join_solict(struct net_device *dev, const struct in6_addr *addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001510{
1511 struct in6_addr maddr;
1512
1513 if (dev->flags&(IFF_LOOPBACK|IFF_NOARP))
1514 return;
1515
1516 addrconf_addr_solict_mult(addr, &maddr);
1517 ipv6_dev_mc_inc(dev, &maddr);
1518}
1519
Eric Dumazetb71d1d42011-04-22 04:53:02 +00001520void addrconf_leave_solict(struct inet6_dev *idev, const struct in6_addr *addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001521{
1522 struct in6_addr maddr;
1523
1524 if (idev->dev->flags&(IFF_LOOPBACK|IFF_NOARP))
1525 return;
1526
1527 addrconf_addr_solict_mult(addr, &maddr);
1528 __ipv6_dev_mc_dec(idev, &maddr);
1529}
1530
Arnaldo Carvalho de Melo20380732005-08-16 02:18:02 -03001531static void addrconf_join_anycast(struct inet6_ifaddr *ifp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001532{
1533 struct in6_addr addr;
Bjørn Mork2bda8a02011-07-05 23:04:13 +00001534 if (ifp->prefix_len == 127) /* RFC 6164 */
1535 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001536 ipv6_addr_prefix(&addr, &ifp->addr, ifp->prefix_len);
1537 if (ipv6_addr_any(&addr))
1538 return;
1539 ipv6_dev_ac_inc(ifp->idev->dev, &addr);
1540}
1541
Arnaldo Carvalho de Melo20380732005-08-16 02:18:02 -03001542static void addrconf_leave_anycast(struct inet6_ifaddr *ifp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001543{
1544 struct in6_addr addr;
YOSHIFUJI Hideaki32019e62011-07-24 11:44:34 +00001545 if (ifp->prefix_len == 127) /* RFC 6164 */
1546 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001547 ipv6_addr_prefix(&addr, &ifp->addr, ifp->prefix_len);
1548 if (ipv6_addr_any(&addr))
1549 return;
1550 __ipv6_dev_ac_dec(ifp->idev, &addr);
1551}
1552
YOSHIFUJI Hideaki073a8e02006-03-20 16:54:49 -08001553static int addrconf_ifid_eui48(u8 *eui, struct net_device *dev)
1554{
1555 if (dev->addr_len != ETH_ALEN)
1556 return -1;
1557 memcpy(eui, dev->dev_addr, 3);
1558 memcpy(eui + 5, dev->dev_addr + 3, 3);
1559
1560 /*
1561 * The zSeries OSA network cards can be shared among various
1562 * OS instances, but the OSA cards have only one MAC address.
1563 * This leads to duplicate address conflicts in conjunction
1564 * with IPv6 if more than one instance uses the same card.
1565 *
1566 * The driver for these cards can deliver a unique 16-bit
1567 * identifier for each instance sharing the same card. It is
1568 * placed instead of 0xFFFE in the interface identifier. The
1569 * "u" bit of the interface identifier is not inverted in this
1570 * case. Hence the resulting interface identifier has local
1571 * scope according to RFC2373.
1572 */
1573 if (dev->dev_id) {
1574 eui[3] = (dev->dev_id >> 8) & 0xFF;
1575 eui[4] = dev->dev_id & 0xFF;
1576 } else {
1577 eui[3] = 0xFF;
1578 eui[4] = 0xFE;
1579 eui[0] ^= 2;
1580 }
1581 return 0;
1582}
1583
alex.bluesman.smirnov@gmail.com06a4c1c2012-05-10 03:25:52 +00001584static int addrconf_ifid_eui64(u8 *eui, struct net_device *dev)
1585{
1586 if (dev->addr_len != IEEE802154_ADDR_LEN)
1587 return -1;
1588 memcpy(eui, dev->dev_addr, 8);
1589 return 0;
1590}
1591
YOSHIFUJI Hideaki073a8e02006-03-20 16:54:49 -08001592static int addrconf_ifid_arcnet(u8 *eui, struct net_device *dev)
1593{
1594 /* XXX: inherit EUI-64 from other interface -- yoshfuji */
1595 if (dev->addr_len != ARCNET_ALEN)
1596 return -1;
1597 memset(eui, 0, 7);
Eldad Zack8e5e8f32012-04-01 07:49:08 +00001598 eui[7] = *(u8 *)dev->dev_addr;
YOSHIFUJI Hideaki073a8e02006-03-20 16:54:49 -08001599 return 0;
1600}
1601
1602static int addrconf_ifid_infiniband(u8 *eui, struct net_device *dev)
1603{
1604 if (dev->addr_len != INFINIBAND_ALEN)
1605 return -1;
1606 memcpy(eui, dev->dev_addr + 12, 8);
1607 eui[0] |= 2;
1608 return 0;
1609}
1610
stephen hemmingerc61393e2010-10-04 20:17:53 +00001611static int __ipv6_isatap_ifid(u8 *eui, __be32 addr)
YOSHIFUJI Hideakidfd982b2008-04-10 15:42:09 +09001612{
Sascha Hlusiak9af28512009-05-19 12:56:51 +00001613 if (addr == 0)
1614 return -1;
YOSHIFUJI Hideakidfd982b2008-04-10 15:42:09 +09001615 eui[0] = (ipv4_is_zeronet(addr) || ipv4_is_private_10(addr) ||
1616 ipv4_is_loopback(addr) || ipv4_is_linklocal_169(addr) ||
1617 ipv4_is_private_172(addr) || ipv4_is_test_192(addr) ||
1618 ipv4_is_anycast_6to4(addr) || ipv4_is_private_192(addr) ||
1619 ipv4_is_test_198(addr) || ipv4_is_multicast(addr) ||
1620 ipv4_is_lbcast(addr)) ? 0x00 : 0x02;
1621 eui[1] = 0;
1622 eui[2] = 0x5E;
1623 eui[3] = 0xFE;
1624 memcpy(eui + 4, &addr, 4);
1625 return 0;
1626}
YOSHIFUJI Hideakidfd982b2008-04-10 15:42:09 +09001627
1628static int addrconf_ifid_sit(u8 *eui, struct net_device *dev)
1629{
1630 if (dev->priv_flags & IFF_ISATAP)
1631 return __ipv6_isatap_ifid(eui, *(__be32 *)dev->dev_addr);
1632 return -1;
1633}
1634
stephen hemmingeraee80b52011-06-08 10:44:30 +00001635static int addrconf_ifid_gre(u8 *eui, struct net_device *dev)
1636{
1637 return __ipv6_isatap_ifid(eui, *(__be32 *)dev->dev_addr);
1638}
1639
Linus Torvalds1da177e2005-04-16 15:20:36 -07001640static int ipv6_generate_eui64(u8 *eui, struct net_device *dev)
1641{
1642 switch (dev->type) {
1643 case ARPHRD_ETHER:
1644 case ARPHRD_FDDI:
YOSHIFUJI Hideaki073a8e02006-03-20 16:54:49 -08001645 return addrconf_ifid_eui48(eui, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001646 case ARPHRD_ARCNET:
YOSHIFUJI Hideaki073a8e02006-03-20 16:54:49 -08001647 return addrconf_ifid_arcnet(eui, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001648 case ARPHRD_INFINIBAND:
YOSHIFUJI Hideaki073a8e02006-03-20 16:54:49 -08001649 return addrconf_ifid_infiniband(eui, dev);
Fred L. Templinc7dc89c2007-11-29 22:11:40 +11001650 case ARPHRD_SIT:
YOSHIFUJI Hideakidfd982b2008-04-10 15:42:09 +09001651 return addrconf_ifid_sit(eui, dev);
stephen hemmingeraee80b52011-06-08 10:44:30 +00001652 case ARPHRD_IPGRE:
1653 return addrconf_ifid_gre(eui, dev);
alex.bluesman.smirnov@gmail.com06a4c1c2012-05-10 03:25:52 +00001654 case ARPHRD_IEEE802154:
1655 return addrconf_ifid_eui64(eui, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001656 }
1657 return -1;
1658}
1659
1660static int ipv6_inherit_eui64(u8 *eui, struct inet6_dev *idev)
1661{
1662 int err = -1;
1663 struct inet6_ifaddr *ifp;
1664
1665 read_lock_bh(&idev->lock);
stephen hemminger502a2ff2010-03-17 20:31:13 +00001666 list_for_each_entry(ifp, &idev->addr_list, if_list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001667 if (ifp->scope == IFA_LINK && !(ifp->flags&IFA_F_TENTATIVE)) {
1668 memcpy(eui, ifp->addr.s6_addr+8, 8);
1669 err = 0;
1670 break;
1671 }
1672 }
1673 read_unlock_bh(&idev->lock);
1674 return err;
1675}
1676
1677#ifdef CONFIG_IPV6_PRIVACY
1678/* (re)generation of randomized interface identifier (RFC 3041 3.2, 3.5) */
Sorin Dumitrueb7e0572012-08-30 02:01:45 +00001679static void __ipv6_regen_rndid(struct inet6_dev *idev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001680{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001681regen:
YOSHIFUJI Hideaki955189e2006-03-20 16:54:09 -08001682 get_random_bytes(idev->rndid, sizeof(idev->rndid));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001683 idev->rndid[0] &= ~0x02;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001684
1685 /*
1686 * <draft-ietf-ipngwg-temp-addresses-v2-00.txt>:
1687 * check if generated address is not inappropriate
1688 *
1689 * - Reserved subnet anycast (RFC 2526)
1690 * 11111101 11....11 1xxxxxxx
Fred L. Templinc7dc89c2007-11-29 22:11:40 +11001691 * - ISATAP (RFC4214) 6.1
Linus Torvalds1da177e2005-04-16 15:20:36 -07001692 * 00-00-5E-FE-xx-xx-xx-xx
1693 * - value 0
1694 * - XXX: already assigned to an address on the device
1695 */
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001696 if (idev->rndid[0] == 0xfd &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07001697 (idev->rndid[1]&idev->rndid[2]&idev->rndid[3]&idev->rndid[4]&idev->rndid[5]&idev->rndid[6]) == 0xff &&
1698 (idev->rndid[7]&0x80))
1699 goto regen;
1700 if ((idev->rndid[0]|idev->rndid[1]) == 0) {
1701 if (idev->rndid[2] == 0x5e && idev->rndid[3] == 0xfe)
1702 goto regen;
1703 if ((idev->rndid[2]|idev->rndid[3]|idev->rndid[4]|idev->rndid[5]|idev->rndid[6]|idev->rndid[7]) == 0x00)
1704 goto regen;
1705 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001706}
1707
1708static void ipv6_regen_rndid(unsigned long data)
1709{
1710 struct inet6_dev *idev = (struct inet6_dev *) data;
1711 unsigned long expires;
1712
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -07001713 rcu_read_lock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001714 write_lock_bh(&idev->lock);
1715
1716 if (idev->dead)
1717 goto out;
1718
Sorin Dumitrueb7e0572012-08-30 02:01:45 +00001719 __ipv6_regen_rndid(idev);
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001720
Linus Torvalds1da177e2005-04-16 15:20:36 -07001721 expires = jiffies +
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001722 idev->cnf.temp_prefered_lft * HZ -
Ben Hutchings784e2712010-06-26 11:42:55 +00001723 idev->cnf.regen_max_retry * idev->cnf.dad_transmits * idev->nd_parms->retrans_time -
1724 idev->cnf.max_desync_factor * HZ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001725 if (time_before(expires, jiffies)) {
Joe Perchesf3213832012-05-15 14:11:53 +00001726 pr_warn("%s: too short regeneration interval; timer disabled for %s\n",
1727 __func__, idev->dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001728 goto out;
1729 }
1730
1731 if (!mod_timer(&idev->regen_timer, expires))
1732 in6_dev_hold(idev);
1733
1734out:
1735 write_unlock_bh(&idev->lock);
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -07001736 rcu_read_unlock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001737 in6_dev_put(idev);
1738}
1739
Sorin Dumitrueb7e0572012-08-30 02:01:45 +00001740static void __ipv6_try_regen_rndid(struct inet6_dev *idev, struct in6_addr *tmpaddr)
Eldad Zack8e5e8f32012-04-01 07:49:08 +00001741{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001742 if (tmpaddr && memcmp(idev->rndid, &tmpaddr->s6_addr[8], 8) == 0)
Sorin Dumitrueb7e0572012-08-30 02:01:45 +00001743 __ipv6_regen_rndid(idev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001744}
1745#endif
1746
1747/*
1748 * Add prefix route.
1749 */
1750
1751static void
1752addrconf_prefix_route(struct in6_addr *pfx, int plen, struct net_device *dev,
Jamal Hadi Salime431b8c2005-06-18 22:55:31 -07001753 unsigned long expires, u32 flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001754{
Thomas Graf86872cb2006-08-22 00:01:08 -07001755 struct fib6_config cfg = {
1756 .fc_table = RT6_TABLE_PREFIX,
1757 .fc_metric = IP6_RT_PRIO_ADDRCONF,
1758 .fc_ifindex = dev->ifindex,
1759 .fc_expires = expires,
1760 .fc_dst_len = plen,
1761 .fc_flags = RTF_UP | flags,
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09001762 .fc_nlinfo.nl_net = dev_net(dev),
Stephen Hemmingerf410a1f2008-08-23 05:16:46 -07001763 .fc_protocol = RTPROT_KERNEL,
Thomas Graf86872cb2006-08-22 00:01:08 -07001764 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001765
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00001766 cfg.fc_dst = *pfx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001767
1768 /* Prevent useless cloning on PtP SIT.
1769 This thing is done here expecting that the whole
1770 class of non-broadcast devices need not cloning.
1771 */
Joerg Roedel0be669b2006-10-10 14:49:53 -07001772#if defined(CONFIG_IPV6_SIT) || defined(CONFIG_IPV6_SIT_MODULE)
Thomas Graf86872cb2006-08-22 00:01:08 -07001773 if (dev->type == ARPHRD_SIT && (dev->flags & IFF_POINTOPOINT))
1774 cfg.fc_flags |= RTF_NONEXTHOP;
Joerg Roedel0be669b2006-10-10 14:49:53 -07001775#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001776
Thomas Graf86872cb2006-08-22 00:01:08 -07001777 ip6_route_add(&cfg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001778}
1779
Andreas Hofmeister14ef37b2011-10-26 03:24:29 +00001780
1781static struct rt6_info *addrconf_get_prefix_route(const struct in6_addr *pfx,
1782 int plen,
1783 const struct net_device *dev,
1784 u32 flags, u32 noflags)
1785{
1786 struct fib6_node *fn;
1787 struct rt6_info *rt = NULL;
1788 struct fib6_table *table;
1789
1790 table = fib6_get_table(dev_net(dev), RT6_TABLE_PREFIX);
1791 if (table == NULL)
1792 return NULL;
1793
Li RongQing5744dd92012-09-11 21:59:01 +00001794 read_lock_bh(&table->tb6_lock);
Andreas Hofmeister14ef37b2011-10-26 03:24:29 +00001795 fn = fib6_locate(&table->tb6_root, pfx, plen, NULL, 0);
1796 if (!fn)
1797 goto out;
1798 for (rt = fn->leaf; rt; rt = rt->dst.rt6_next) {
David S. Millerd1918542011-12-28 20:19:20 -05001799 if (rt->dst.dev->ifindex != dev->ifindex)
Andreas Hofmeister14ef37b2011-10-26 03:24:29 +00001800 continue;
1801 if ((rt->rt6i_flags & flags) != flags)
1802 continue;
1803 if ((noflags != 0) && ((rt->rt6i_flags & flags) != 0))
1804 continue;
1805 dst_hold(&rt->dst);
1806 break;
1807 }
1808out:
Li RongQing5744dd92012-09-11 21:59:01 +00001809 read_unlock_bh(&table->tb6_lock);
Andreas Hofmeister14ef37b2011-10-26 03:24:29 +00001810 return rt;
1811}
1812
1813
Linus Torvalds1da177e2005-04-16 15:20:36 -07001814/* Create "default" multicast route to the interface */
1815
1816static void addrconf_add_mroute(struct net_device *dev)
1817{
Thomas Graf86872cb2006-08-22 00:01:08 -07001818 struct fib6_config cfg = {
1819 .fc_table = RT6_TABLE_LOCAL,
1820 .fc_metric = IP6_RT_PRIO_ADDRCONF,
1821 .fc_ifindex = dev->ifindex,
1822 .fc_dst_len = 8,
1823 .fc_flags = RTF_UP,
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09001824 .fc_nlinfo.nl_net = dev_net(dev),
Thomas Graf86872cb2006-08-22 00:01:08 -07001825 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001826
Thomas Graf86872cb2006-08-22 00:01:08 -07001827 ipv6_addr_set(&cfg.fc_dst, htonl(0xFF000000), 0, 0, 0);
1828
1829 ip6_route_add(&cfg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001830}
1831
Joerg Roedel0be669b2006-10-10 14:49:53 -07001832#if defined(CONFIG_IPV6_SIT) || defined(CONFIG_IPV6_SIT_MODULE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001833static void sit_route_add(struct net_device *dev)
1834{
Thomas Graf86872cb2006-08-22 00:01:08 -07001835 struct fib6_config cfg = {
1836 .fc_table = RT6_TABLE_MAIN,
1837 .fc_metric = IP6_RT_PRIO_ADDRCONF,
1838 .fc_ifindex = dev->ifindex,
1839 .fc_dst_len = 96,
1840 .fc_flags = RTF_UP | RTF_NONEXTHOP,
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09001841 .fc_nlinfo.nl_net = dev_net(dev),
Thomas Graf86872cb2006-08-22 00:01:08 -07001842 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001843
1844 /* prefix length - 96 bits "::d.d.d.d" */
Thomas Graf86872cb2006-08-22 00:01:08 -07001845 ip6_route_add(&cfg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001846}
Joerg Roedel0be669b2006-10-10 14:49:53 -07001847#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001848
Linus Torvalds1da177e2005-04-16 15:20:36 -07001849static struct inet6_dev *addrconf_add_dev(struct net_device *dev)
1850{
1851 struct inet6_dev *idev;
1852
1853 ASSERT_RTNL();
1854
Stephen Hemmingere21e8462010-03-20 16:09:01 -07001855 idev = ipv6_find_idev(dev);
1856 if (!idev)
Brian Haley64e724f2010-07-20 10:34:30 +00001857 return ERR_PTR(-ENOBUFS);
1858
1859 if (idev->cnf.disable_ipv6)
1860 return ERR_PTR(-EACCES);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001861
1862 /* Add default multicast route */
Li Wei4af04ab2011-12-06 21:23:45 +00001863 if (!(dev->flags & IFF_LOOPBACK))
1864 addrconf_add_mroute(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001865
Linus Torvalds1da177e2005-04-16 15:20:36 -07001866 return idev;
1867}
1868
Neil Hormane6bff992012-01-04 10:49:15 +00001869void addrconf_prefix_rcv(struct net_device *dev, u8 *opt, int len, bool sllao)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001870{
1871 struct prefix_info *pinfo;
1872 __u32 valid_lft;
1873 __u32 prefered_lft;
1874 int addr_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001875 struct inet6_dev *in6_dev;
Brian Haley56d417b2009-06-01 03:07:33 -07001876 struct net *net = dev_net(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001877
1878 pinfo = (struct prefix_info *) opt;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001879
Linus Torvalds1da177e2005-04-16 15:20:36 -07001880 if (len < sizeof(struct prefix_info)) {
1881 ADBG(("addrconf: prefix option too short\n"));
1882 return;
1883 }
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001884
Linus Torvalds1da177e2005-04-16 15:20:36 -07001885 /*
1886 * Validation checks ([ADDRCONF], page 19)
1887 */
1888
1889 addr_type = ipv6_addr_type(&pinfo->prefix);
1890
1891 if (addr_type & (IPV6_ADDR_MULTICAST|IPV6_ADDR_LINKLOCAL))
1892 return;
1893
1894 valid_lft = ntohl(pinfo->valid);
1895 prefered_lft = ntohl(pinfo->prefered);
1896
1897 if (prefered_lft > valid_lft) {
Joe Perchese87cc472012-05-13 21:56:26 +00001898 net_warn_ratelimited("addrconf: prefix option has invalid lifetime\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001899 return;
1900 }
1901
1902 in6_dev = in6_dev_get(dev);
1903
1904 if (in6_dev == NULL) {
Joe Perchese87cc472012-05-13 21:56:26 +00001905 net_dbg_ratelimited("addrconf: device %s not configured\n",
1906 dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001907 return;
1908 }
1909
1910 /*
1911 * Two things going on here:
1912 * 1) Add routes for on-link prefixes
1913 * 2) Configure prefixes with the auto flag set
1914 */
1915
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +09001916 if (pinfo->onlink) {
1917 struct rt6_info *rt;
1918 unsigned long rt_expires;
1919
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07001920 /* Avoid arithmetic overflow. Really, we could
1921 * save rt_expires in seconds, likely valid_lft,
1922 * but it would require division in fib gc, that it
1923 * not good.
1924 */
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +09001925 if (HZ > USER_HZ)
1926 rt_expires = addrconf_timeout_fixup(valid_lft, HZ);
1927 else
1928 rt_expires = addrconf_timeout_fixup(valid_lft, USER_HZ);
YOSHIFUJI Hideaki3dd4bc62005-12-19 14:02:45 -08001929
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +09001930 if (addrconf_finite_timeout(rt_expires))
1931 rt_expires *= HZ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001932
Andreas Hofmeister14ef37b2011-10-26 03:24:29 +00001933 rt = addrconf_get_prefix_route(&pinfo->prefix,
1934 pinfo->prefix_len,
1935 dev,
1936 RTF_ADDRCONF | RTF_PREFIX_RT,
1937 RTF_GATEWAY | RTF_DEFAULT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001938
Andreas Hofmeister14ef37b2011-10-26 03:24:29 +00001939 if (rt) {
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07001940 /* Autoconf prefix route */
1941 if (valid_lft == 0) {
1942 ip6_del_rt(rt);
1943 rt = NULL;
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +09001944 } else if (addrconf_finite_timeout(rt_expires)) {
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07001945 /* not infinity */
Gao feng1716a962012-04-06 00:13:10 +00001946 rt6_set_expires(rt, jiffies + rt_expires);
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07001947 } else {
Gao feng1716a962012-04-06 00:13:10 +00001948 rt6_clean_expires(rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001949 }
1950 } else if (valid_lft) {
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07001951 clock_t expires = 0;
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +09001952 int flags = RTF_ADDRCONF | RTF_PREFIX_RT;
1953 if (addrconf_finite_timeout(rt_expires)) {
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07001954 /* not infinity */
1955 flags |= RTF_EXPIRES;
1956 expires = jiffies_to_clock_t(rt_expires);
1957 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001958 addrconf_prefix_route(&pinfo->prefix, pinfo->prefix_len,
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07001959 dev, expires, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001960 }
1961 if (rt)
Changli Gaod8d1f302010-06-10 23:31:35 -07001962 dst_release(&rt->dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001963 }
1964
1965 /* Try to figure out our local address for this prefix */
1966
1967 if (pinfo->autoconf && in6_dev->cnf.autoconf) {
Eldad Zack8e5e8f32012-04-01 07:49:08 +00001968 struct inet6_ifaddr *ifp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001969 struct in6_addr addr;
1970 int create = 0, update_lft = 0;
1971
1972 if (pinfo->prefix_len == 64) {
1973 memcpy(&addr, &pinfo->prefix, 8);
1974 if (ipv6_generate_eui64(addr.s6_addr + 8, dev) &&
1975 ipv6_inherit_eui64(addr.s6_addr + 8, in6_dev)) {
1976 in6_dev_put(in6_dev);
1977 return;
1978 }
1979 goto ok;
1980 }
Joe Perchese87cc472012-05-13 21:56:26 +00001981 net_dbg_ratelimited("IPv6 addrconf: prefix with wrong length %d\n",
1982 pinfo->prefix_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001983 in6_dev_put(in6_dev);
1984 return;
1985
1986ok:
1987
YOSHIFUJI Hideaki53b79972008-07-19 22:35:03 -07001988 ifp = ipv6_get_ifaddr(net, &addr, dev, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001989
1990 if (ifp == NULL && valid_lft) {
1991 int max_addresses = in6_dev->cnf.max_addresses;
Neil Horman95c385b2007-04-25 17:08:10 -07001992 u32 addr_flags = 0;
1993
1994#ifdef CONFIG_IPV6_OPTIMISTIC_DAD
1995 if (in6_dev->cnf.optimistic_dad &&
Neil Hormane6bff992012-01-04 10:49:15 +00001996 !net->ipv6.devconf_all->forwarding && sllao)
Neil Horman95c385b2007-04-25 17:08:10 -07001997 addr_flags = IFA_F_OPTIMISTIC;
1998#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001999
2000 /* Do not allow to create too much of autoconfigured
2001 * addresses; this would be too easy way to crash kernel.
2002 */
2003 if (!max_addresses ||
2004 ipv6_count_addresses(in6_dev) < max_addresses)
2005 ifp = ipv6_add_addr(in6_dev, &addr, pinfo->prefix_len,
Neil Horman95c385b2007-04-25 17:08:10 -07002006 addr_type&IPV6_ADDR_SCOPE_MASK,
2007 addr_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002008
2009 if (!ifp || IS_ERR(ifp)) {
2010 in6_dev_put(in6_dev);
2011 return;
2012 }
2013
2014 update_lft = create = 1;
2015 ifp->cstamp = jiffies;
David S. Millercf22f9a2012-04-14 21:37:40 -04002016 addrconf_dad_start(ifp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002017 }
2018
2019 if (ifp) {
2020 int flags;
2021 unsigned long now;
2022#ifdef CONFIG_IPV6_PRIVACY
2023 struct inet6_ifaddr *ift;
2024#endif
2025 u32 stored_lft;
2026
2027 /* update lifetime (RFC2462 5.5.3 e) */
2028 spin_lock(&ifp->lock);
2029 now = jiffies;
2030 if (ifp->valid_lft > (now - ifp->tstamp) / HZ)
2031 stored_lft = ifp->valid_lft - (now - ifp->tstamp) / HZ;
2032 else
2033 stored_lft = 0;
2034 if (!update_lft && stored_lft) {
2035 if (valid_lft > MIN_VALID_LIFETIME ||
2036 valid_lft > stored_lft)
2037 update_lft = 1;
2038 else if (stored_lft <= MIN_VALID_LIFETIME) {
2039 /* valid_lft <= stored_lft is always true */
Brian Haleya1ed0522009-07-02 07:10:52 +00002040 /*
2041 * RFC 4862 Section 5.5.3e:
2042 * "Note that the preferred lifetime of
2043 * the corresponding address is always
2044 * reset to the Preferred Lifetime in
2045 * the received Prefix Information
2046 * option, regardless of whether the
2047 * valid lifetime is also reset or
2048 * ignored."
2049 *
2050 * So if the preferred lifetime in
2051 * this advertisement is different
2052 * than what we have stored, but the
2053 * valid lifetime is invalid, just
2054 * reset prefered_lft.
2055 *
2056 * We must set the valid lifetime
2057 * to the stored lifetime since we'll
2058 * be updating the timestamp below,
2059 * else we'll set it back to the
Lucas De Marchi25985ed2011-03-30 22:57:33 -03002060 * minimum.
Brian Haleya1ed0522009-07-02 07:10:52 +00002061 */
2062 if (prefered_lft != ifp->prefered_lft) {
2063 valid_lft = stored_lft;
2064 update_lft = 1;
2065 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002066 } else {
2067 valid_lft = MIN_VALID_LIFETIME;
2068 if (valid_lft < prefered_lft)
2069 prefered_lft = valid_lft;
2070 update_lft = 1;
2071 }
2072 }
2073
2074 if (update_lft) {
2075 ifp->valid_lft = valid_lft;
2076 ifp->prefered_lft = prefered_lft;
2077 ifp->tstamp = now;
2078 flags = ifp->flags;
2079 ifp->flags &= ~IFA_F_DEPRECATED;
2080 spin_unlock(&ifp->lock);
2081
2082 if (!(flags&IFA_F_TENTATIVE))
2083 ipv6_ifa_notify(0, ifp);
2084 } else
2085 spin_unlock(&ifp->lock);
2086
2087#ifdef CONFIG_IPV6_PRIVACY
2088 read_lock_bh(&in6_dev->lock);
2089 /* update all temporary addresses in the list */
Lorenzo Colitti76f793e2011-07-26 13:50:49 +00002090 list_for_each_entry(ift, &in6_dev->tempaddr_list,
2091 tmp_list) {
2092 int age, max_valid, max_prefered;
2093
Benoit Boissinotc6fbfac2008-04-02 00:00:58 -07002094 if (ifp != ift->ifpub)
2095 continue;
2096
Lorenzo Colitti76f793e2011-07-26 13:50:49 +00002097 /*
2098 * RFC 4941 section 3.3:
2099 * If a received option will extend the lifetime
2100 * of a public address, the lifetimes of
2101 * temporary addresses should be extended,
2102 * subject to the overall constraint that no
2103 * temporary addresses should ever remain
2104 * "valid" or "preferred" for a time longer than
2105 * (TEMP_VALID_LIFETIME) or
2106 * (TEMP_PREFERRED_LIFETIME - DESYNC_FACTOR),
2107 * respectively.
2108 */
2109 age = (now - ift->cstamp) / HZ;
2110 max_valid = in6_dev->cnf.temp_valid_lft - age;
2111 if (max_valid < 0)
2112 max_valid = 0;
2113
2114 max_prefered = in6_dev->cnf.temp_prefered_lft -
2115 in6_dev->cnf.max_desync_factor -
2116 age;
2117 if (max_prefered < 0)
2118 max_prefered = 0;
2119
2120 if (valid_lft > max_valid)
2121 valid_lft = max_valid;
2122
2123 if (prefered_lft > max_prefered)
2124 prefered_lft = max_prefered;
2125
Linus Torvalds1da177e2005-04-16 15:20:36 -07002126 spin_lock(&ift->lock);
2127 flags = ift->flags;
Lorenzo Colitti76f793e2011-07-26 13:50:49 +00002128 ift->valid_lft = valid_lft;
2129 ift->prefered_lft = prefered_lft;
2130 ift->tstamp = now;
2131 if (prefered_lft > 0)
2132 ift->flags &= ~IFA_F_DEPRECATED;
2133
Linus Torvalds1da177e2005-04-16 15:20:36 -07002134 spin_unlock(&ift->lock);
2135 if (!(flags&IFA_F_TENTATIVE))
2136 ipv6_ifa_notify(0, ift);
2137 }
2138
Glenn Wursteraed65502010-09-27 07:04:30 +00002139 if ((create || list_empty(&in6_dev->tempaddr_list)) && in6_dev->cnf.use_tempaddr > 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002140 /*
Lorenzo Colitti76f793e2011-07-26 13:50:49 +00002141 * When a new public address is created as
2142 * described in [ADDRCONF], also create a new
2143 * temporary address. Also create a temporary
2144 * address if it's enabled but no temporary
2145 * address currently exists.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002146 */
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002147 read_unlock_bh(&in6_dev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002148 ipv6_create_tempaddr(ifp, NULL);
2149 } else {
2150 read_unlock_bh(&in6_dev->lock);
2151 }
2152#endif
2153 in6_ifa_put(ifp);
2154 addrconf_verify(0);
2155 }
2156 }
2157 inet6_prefix_notify(RTM_NEWPREFIX, in6_dev, pinfo);
2158 in6_dev_put(in6_dev);
2159}
2160
2161/*
2162 * Set destination address.
2163 * Special case for SIT interfaces where we create a new "virtual"
2164 * device.
2165 */
Daniel Lezcanoaf284932008-03-05 10:46:57 -08002166int addrconf_set_dstaddr(struct net *net, void __user *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002167{
2168 struct in6_ifreq ireq;
2169 struct net_device *dev;
2170 int err = -EINVAL;
2171
2172 rtnl_lock();
2173
2174 err = -EFAULT;
2175 if (copy_from_user(&ireq, arg, sizeof(struct in6_ifreq)))
2176 goto err_exit;
2177
Daniel Lezcanoaf284932008-03-05 10:46:57 -08002178 dev = __dev_get_by_index(net, ireq.ifr6_ifindex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002179
2180 err = -ENODEV;
2181 if (dev == NULL)
2182 goto err_exit;
2183
Joerg Roedel0be669b2006-10-10 14:49:53 -07002184#if defined(CONFIG_IPV6_SIT) || defined(CONFIG_IPV6_SIT_MODULE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002185 if (dev->type == ARPHRD_SIT) {
Stephen Hemminger5bc3eb72008-11-19 21:52:05 -08002186 const struct net_device_ops *ops = dev->netdev_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002187 struct ifreq ifr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002188 struct ip_tunnel_parm p;
2189
2190 err = -EADDRNOTAVAIL;
2191 if (!(ipv6_addr_type(&ireq.ifr6_addr) & IPV6_ADDR_COMPATv4))
2192 goto err_exit;
2193
2194 memset(&p, 0, sizeof(p));
2195 p.iph.daddr = ireq.ifr6_addr.s6_addr32[3];
2196 p.iph.saddr = 0;
2197 p.iph.version = 4;
2198 p.iph.ihl = 5;
2199 p.iph.protocol = IPPROTO_IPV6;
2200 p.iph.ttl = 64;
Stephen Hemmingerd20b3102008-01-21 00:48:43 -08002201 ifr.ifr_ifru.ifru_data = (__force void __user *)&p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002202
Stephen Hemminger5bc3eb72008-11-19 21:52:05 -08002203 if (ops->ndo_do_ioctl) {
2204 mm_segment_t oldfs = get_fs();
2205
2206 set_fs(KERNEL_DS);
2207 err = ops->ndo_do_ioctl(dev, &ifr, SIOCADDTUNNEL);
2208 set_fs(oldfs);
2209 } else
2210 err = -EOPNOTSUPP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002211
2212 if (err == 0) {
2213 err = -ENOBUFS;
Daniel Lezcanoaf284932008-03-05 10:46:57 -08002214 dev = __dev_get_by_name(net, p.name);
2215 if (!dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002216 goto err_exit;
2217 err = dev_open(dev);
2218 }
2219 }
Joerg Roedel0be669b2006-10-10 14:49:53 -07002220#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002221
2222err_exit:
2223 rtnl_unlock();
2224 return err;
2225}
2226
2227/*
2228 * Manual configuration of address on an interface
2229 */
Eric Dumazetb71d1d42011-04-22 04:53:02 +00002230static int inet6_addr_add(struct net *net, int ifindex, const struct in6_addr *pfx,
Thomas Graf24ef0da2008-05-28 16:54:22 +02002231 unsigned int plen, __u8 ifa_flags, __u32 prefered_lft,
Daniel Lezcanoaf284932008-03-05 10:46:57 -08002232 __u32 valid_lft)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002233{
2234 struct inet6_ifaddr *ifp;
2235 struct inet6_dev *idev;
2236 struct net_device *dev;
2237 int scope;
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07002238 u32 flags;
2239 clock_t expires;
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +09002240 unsigned long timeout;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002241
2242 ASSERT_RTNL();
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002243
Thomas Graf24ef0da2008-05-28 16:54:22 +02002244 if (plen > 128)
2245 return -EINVAL;
2246
Noriaki TAKAMIYA07787692006-07-28 18:12:10 +09002247 /* check the lifetime */
2248 if (!valid_lft || prefered_lft > valid_lft)
2249 return -EINVAL;
2250
Daniel Lezcanoaf284932008-03-05 10:46:57 -08002251 dev = __dev_get_by_index(net, ifindex);
2252 if (!dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002253 return -ENODEV;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002254
Brian Haley64e724f2010-07-20 10:34:30 +00002255 idev = addrconf_add_dev(dev);
2256 if (IS_ERR(idev))
2257 return PTR_ERR(idev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002258
2259 scope = ipv6_addr_scope(pfx);
2260
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +09002261 timeout = addrconf_timeout_fixup(valid_lft, HZ);
2262 if (addrconf_finite_timeout(timeout)) {
2263 expires = jiffies_to_clock_t(timeout * HZ);
2264 valid_lft = timeout;
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07002265 flags = RTF_EXPIRES;
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +09002266 } else {
2267 expires = 0;
2268 flags = 0;
2269 ifa_flags |= IFA_F_PERMANENT;
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07002270 }
Noriaki TAKAMIYA07787692006-07-28 18:12:10 +09002271
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +09002272 timeout = addrconf_timeout_fixup(prefered_lft, HZ);
2273 if (addrconf_finite_timeout(timeout)) {
2274 if (timeout == 0)
2275 ifa_flags |= IFA_F_DEPRECATED;
2276 prefered_lft = timeout;
2277 }
Noriaki TAKAMIYA07787692006-07-28 18:12:10 +09002278
2279 ifp = ipv6_add_addr(idev, pfx, plen, scope, ifa_flags);
2280
Linus Torvalds1da177e2005-04-16 15:20:36 -07002281 if (!IS_ERR(ifp)) {
Herbert Xu06aebfb2006-08-09 16:52:04 -07002282 spin_lock_bh(&ifp->lock);
Noriaki TAKAMIYA07787692006-07-28 18:12:10 +09002283 ifp->valid_lft = valid_lft;
2284 ifp->prefered_lft = prefered_lft;
2285 ifp->tstamp = jiffies;
Herbert Xu06aebfb2006-08-09 16:52:04 -07002286 spin_unlock_bh(&ifp->lock);
Noriaki TAKAMIYA07787692006-07-28 18:12:10 +09002287
YOSHIFUJI Hideaki46d48042007-02-07 20:36:26 +09002288 addrconf_prefix_route(&ifp->addr, ifp->prefix_len, dev,
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07002289 expires, flags);
Neil Horman95c385b2007-04-25 17:08:10 -07002290 /*
2291 * Note that section 3.1 of RFC 4429 indicates
2292 * that the Optimistic flag should not be set for
2293 * manually configured addresses
2294 */
David S. Millercf22f9a2012-04-14 21:37:40 -04002295 addrconf_dad_start(ifp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002296 in6_ifa_put(ifp);
Noriaki TAKAMIYA07787692006-07-28 18:12:10 +09002297 addrconf_verify(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002298 return 0;
2299 }
2300
2301 return PTR_ERR(ifp);
2302}
2303
Eric Dumazetb71d1d42011-04-22 04:53:02 +00002304static int inet6_addr_del(struct net *net, int ifindex, const struct in6_addr *pfx,
Thomas Graf24ef0da2008-05-28 16:54:22 +02002305 unsigned int plen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002306{
2307 struct inet6_ifaddr *ifp;
2308 struct inet6_dev *idev;
2309 struct net_device *dev;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002310
Thomas Graf24ef0da2008-05-28 16:54:22 +02002311 if (plen > 128)
2312 return -EINVAL;
2313
Daniel Lezcanoaf284932008-03-05 10:46:57 -08002314 dev = __dev_get_by_index(net, ifindex);
2315 if (!dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002316 return -ENODEV;
2317
2318 if ((idev = __in6_dev_get(dev)) == NULL)
2319 return -ENXIO;
2320
2321 read_lock_bh(&idev->lock);
stephen hemminger502a2ff2010-03-17 20:31:13 +00002322 list_for_each_entry(ifp, &idev->addr_list, if_list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002323 if (ifp->prefix_len == plen &&
2324 ipv6_addr_equal(pfx, &ifp->addr)) {
2325 in6_ifa_hold(ifp);
2326 read_unlock_bh(&idev->lock);
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002327
Linus Torvalds1da177e2005-04-16 15:20:36 -07002328 ipv6_del_addr(ifp);
2329
2330 /* If the last address is deleted administratively,
2331 disable IPv6 on this interface.
2332 */
stephen hemminger502a2ff2010-03-17 20:31:13 +00002333 if (list_empty(&idev->addr_list))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002334 addrconf_ifdown(idev->dev, 1);
2335 return 0;
2336 }
2337 }
2338 read_unlock_bh(&idev->lock);
2339 return -EADDRNOTAVAIL;
2340}
2341
2342
Daniel Lezcanoaf284932008-03-05 10:46:57 -08002343int addrconf_add_ifaddr(struct net *net, void __user *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002344{
2345 struct in6_ifreq ireq;
2346 int err;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002347
Linus Torvalds1da177e2005-04-16 15:20:36 -07002348 if (!capable(CAP_NET_ADMIN))
2349 return -EPERM;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002350
Linus Torvalds1da177e2005-04-16 15:20:36 -07002351 if (copy_from_user(&ireq, arg, sizeof(struct in6_ifreq)))
2352 return -EFAULT;
2353
2354 rtnl_lock();
Daniel Lezcanoaf284932008-03-05 10:46:57 -08002355 err = inet6_addr_add(net, ireq.ifr6_ifindex, &ireq.ifr6_addr,
2356 ireq.ifr6_prefixlen, IFA_F_PERMANENT,
2357 INFINITY_LIFE_TIME, INFINITY_LIFE_TIME);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002358 rtnl_unlock();
2359 return err;
2360}
2361
Daniel Lezcanoaf284932008-03-05 10:46:57 -08002362int addrconf_del_ifaddr(struct net *net, void __user *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002363{
2364 struct in6_ifreq ireq;
2365 int err;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002366
Linus Torvalds1da177e2005-04-16 15:20:36 -07002367 if (!capable(CAP_NET_ADMIN))
2368 return -EPERM;
2369
2370 if (copy_from_user(&ireq, arg, sizeof(struct in6_ifreq)))
2371 return -EFAULT;
2372
2373 rtnl_lock();
Daniel Lezcanoaf284932008-03-05 10:46:57 -08002374 err = inet6_addr_del(net, ireq.ifr6_ifindex, &ireq.ifr6_addr,
2375 ireq.ifr6_prefixlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002376 rtnl_unlock();
2377 return err;
2378}
2379
Ilpo Järvinenb5f348e2009-02-06 23:48:01 -08002380static void add_addr(struct inet6_dev *idev, const struct in6_addr *addr,
2381 int plen, int scope)
2382{
2383 struct inet6_ifaddr *ifp;
2384
2385 ifp = ipv6_add_addr(idev, addr, plen, scope, IFA_F_PERMANENT);
2386 if (!IS_ERR(ifp)) {
2387 spin_lock_bh(&ifp->lock);
2388 ifp->flags &= ~IFA_F_TENTATIVE;
2389 spin_unlock_bh(&ifp->lock);
2390 ipv6_ifa_notify(RTM_NEWADDR, ifp);
2391 in6_ifa_put(ifp);
2392 }
2393}
2394
Joerg Roedel0be669b2006-10-10 14:49:53 -07002395#if defined(CONFIG_IPV6_SIT) || defined(CONFIG_IPV6_SIT_MODULE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002396static void sit_add_v4_addrs(struct inet6_dev *idev)
2397{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002398 struct in6_addr addr;
2399 struct net_device *dev;
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09002400 struct net *net = dev_net(idev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002401 int scope;
2402
2403 ASSERT_RTNL();
2404
2405 memset(&addr, 0, sizeof(struct in6_addr));
2406 memcpy(&addr.s6_addr32[3], idev->dev->dev_addr, 4);
2407
2408 if (idev->dev->flags&IFF_POINTOPOINT) {
2409 addr.s6_addr32[0] = htonl(0xfe800000);
2410 scope = IFA_LINK;
2411 } else {
2412 scope = IPV6_ADDR_COMPATv4;
2413 }
2414
2415 if (addr.s6_addr32[3]) {
Ilpo Järvinenb5f348e2009-02-06 23:48:01 -08002416 add_addr(idev, &addr, 128, scope);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002417 return;
2418 }
2419
Benjamin Thery6fda7352008-03-05 10:47:47 -08002420 for_each_netdev(net, dev) {
Eldad Zack8e5e8f32012-04-01 07:49:08 +00002421 struct in_device *in_dev = __in_dev_get_rtnl(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002422 if (in_dev && (dev->flags & IFF_UP)) {
Eldad Zack8e5e8f32012-04-01 07:49:08 +00002423 struct in_ifaddr *ifa;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002424
2425 int flag = scope;
2426
2427 for (ifa = in_dev->ifa_list; ifa; ifa = ifa->ifa_next) {
2428 int plen;
2429
2430 addr.s6_addr32[3] = ifa->ifa_local;
2431
2432 if (ifa->ifa_scope == RT_SCOPE_LINK)
2433 continue;
2434 if (ifa->ifa_scope >= RT_SCOPE_HOST) {
2435 if (idev->dev->flags&IFF_POINTOPOINT)
2436 continue;
2437 flag |= IFA_HOST;
2438 }
2439 if (idev->dev->flags&IFF_POINTOPOINT)
2440 plen = 64;
2441 else
2442 plen = 96;
2443
Ilpo Järvinenb5f348e2009-02-06 23:48:01 -08002444 add_addr(idev, &addr, plen, flag);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002445 }
2446 }
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002447 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002448}
Joerg Roedel0be669b2006-10-10 14:49:53 -07002449#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002450
2451static void init_loopback(struct net_device *dev)
2452{
2453 struct inet6_dev *idev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002454
2455 /* ::1 */
2456
2457 ASSERT_RTNL();
2458
2459 if ((idev = ipv6_find_idev(dev)) == NULL) {
Joe Perches91df42b2012-05-15 14:11:54 +00002460 pr_debug("%s: add_dev failed\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002461 return;
2462 }
2463
Ilpo Järvinenb5f348e2009-02-06 23:48:01 -08002464 add_addr(idev, &in6addr_loopback, 128, IFA_HOST);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002465}
2466
Eric Dumazetb71d1d42011-04-22 04:53:02 +00002467static void addrconf_add_linklocal(struct inet6_dev *idev, const struct in6_addr *addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002468{
Eldad Zack8e5e8f32012-04-01 07:49:08 +00002469 struct inet6_ifaddr *ifp;
Neil Horman95c385b2007-04-25 17:08:10 -07002470 u32 addr_flags = IFA_F_PERMANENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002471
Neil Horman95c385b2007-04-25 17:08:10 -07002472#ifdef CONFIG_IPV6_OPTIMISTIC_DAD
2473 if (idev->cnf.optimistic_dad &&
David Miller702beb82008-07-20 18:17:02 -07002474 !dev_net(idev->dev)->ipv6.devconf_all->forwarding)
Neil Horman95c385b2007-04-25 17:08:10 -07002475 addr_flags |= IFA_F_OPTIMISTIC;
2476#endif
2477
2478
2479 ifp = ipv6_add_addr(idev, addr, 64, IFA_LINK, addr_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002480 if (!IS_ERR(ifp)) {
YOSHIFUJI Hideaki46d48042007-02-07 20:36:26 +09002481 addrconf_prefix_route(&ifp->addr, ifp->prefix_len, idev->dev, 0, 0);
David S. Millercf22f9a2012-04-14 21:37:40 -04002482 addrconf_dad_start(ifp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002483 in6_ifa_put(ifp);
2484 }
2485}
2486
2487static void addrconf_dev_config(struct net_device *dev)
2488{
2489 struct in6_addr addr;
Eldad Zack8e5e8f32012-04-01 07:49:08 +00002490 struct inet6_dev *idev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002491
2492 ASSERT_RTNL();
2493
Herbert Xu74235a22007-06-14 13:02:55 -07002494 if ((dev->type != ARPHRD_ETHER) &&
2495 (dev->type != ARPHRD_FDDI) &&
Herbert Xu74235a22007-06-14 13:02:55 -07002496 (dev->type != ARPHRD_ARCNET) &&
alex.bluesman.smirnov@gmail.com06a4c1c2012-05-10 03:25:52 +00002497 (dev->type != ARPHRD_INFINIBAND) &&
2498 (dev->type != ARPHRD_IEEE802154)) {
Herbert Xu74235a22007-06-14 13:02:55 -07002499 /* Alas, we support only Ethernet autoconfiguration. */
2500 return;
2501 }
2502
Linus Torvalds1da177e2005-04-16 15:20:36 -07002503 idev = addrconf_add_dev(dev);
Brian Haley64e724f2010-07-20 10:34:30 +00002504 if (IS_ERR(idev))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002505 return;
2506
2507 memset(&addr, 0, sizeof(struct in6_addr));
2508 addr.s6_addr32[0] = htonl(0xFE800000);
2509
2510 if (ipv6_generate_eui64(addr.s6_addr + 8, dev) == 0)
2511 addrconf_add_linklocal(idev, &addr);
2512}
2513
Joerg Roedel0be669b2006-10-10 14:49:53 -07002514#if defined(CONFIG_IPV6_SIT) || defined(CONFIG_IPV6_SIT_MODULE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002515static void addrconf_sit_config(struct net_device *dev)
2516{
2517 struct inet6_dev *idev;
2518
2519 ASSERT_RTNL();
2520
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002521 /*
2522 * Configure the tunnel with one of our IPv4
2523 * addresses... we should configure all of
Linus Torvalds1da177e2005-04-16 15:20:36 -07002524 * our v4 addrs in the tunnel
2525 */
2526
2527 if ((idev = ipv6_find_idev(dev)) == NULL) {
Joe Perches91df42b2012-05-15 14:11:54 +00002528 pr_debug("%s: add_dev failed\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002529 return;
2530 }
2531
Fred L. Templinc7dc89c2007-11-29 22:11:40 +11002532 if (dev->priv_flags & IFF_ISATAP) {
2533 struct in6_addr addr;
2534
2535 ipv6_addr_set(&addr, htonl(0xFE800000), 0, 0, 0);
2536 addrconf_prefix_route(&addr, 64, dev, 0, 0);
2537 if (!ipv6_generate_eui64(addr.s6_addr + 8, dev))
2538 addrconf_add_linklocal(idev, &addr);
2539 return;
2540 }
2541
Linus Torvalds1da177e2005-04-16 15:20:36 -07002542 sit_add_v4_addrs(idev);
2543
Nicolas Dichtel62b54dd2012-10-01 23:19:14 +00002544 if (dev->flags&IFF_POINTOPOINT)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002545 addrconf_add_mroute(dev);
Nicolas Dichtel62b54dd2012-10-01 23:19:14 +00002546 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07002547 sit_route_add(dev);
2548}
Joerg Roedel0be669b2006-10-10 14:49:53 -07002549#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002550
stephen hemmingeraee80b52011-06-08 10:44:30 +00002551#if defined(CONFIG_NET_IPGRE) || defined(CONFIG_NET_IPGRE_MODULE)
2552static void addrconf_gre_config(struct net_device *dev)
2553{
2554 struct inet6_dev *idev;
2555 struct in6_addr addr;
2556
Joe Perchesf3213832012-05-15 14:11:53 +00002557 pr_info("%s(%s)\n", __func__, dev->name);
stephen hemmingeraee80b52011-06-08 10:44:30 +00002558
2559 ASSERT_RTNL();
2560
2561 if ((idev = ipv6_find_idev(dev)) == NULL) {
Joe Perches91df42b2012-05-15 14:11:54 +00002562 pr_debug("%s: add_dev failed\n", __func__);
stephen hemmingeraee80b52011-06-08 10:44:30 +00002563 return;
2564 }
2565
2566 ipv6_addr_set(&addr, htonl(0xFE800000), 0, 0, 0);
2567 addrconf_prefix_route(&addr, 64, dev, 0, 0);
2568
2569 if (!ipv6_generate_eui64(addr.s6_addr + 8, dev))
2570 addrconf_add_linklocal(idev, &addr);
2571}
2572#endif
2573
Linus Torvalds1da177e2005-04-16 15:20:36 -07002574static inline int
2575ipv6_inherit_linklocal(struct inet6_dev *idev, struct net_device *link_dev)
2576{
2577 struct in6_addr lladdr;
2578
Neil Horman95c385b2007-04-25 17:08:10 -07002579 if (!ipv6_get_lladdr(link_dev, &lladdr, IFA_F_TENTATIVE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002580 addrconf_add_linklocal(idev, &lladdr);
2581 return 0;
2582 }
2583 return -1;
2584}
2585
2586static void ip6_tnl_add_linklocal(struct inet6_dev *idev)
2587{
2588 struct net_device *link_dev;
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09002589 struct net *net = dev_net(idev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002590
2591 /* first try to inherit the link-local address from the link device */
2592 if (idev->dev->iflink &&
Benjamin Thery6fda7352008-03-05 10:47:47 -08002593 (link_dev = __dev_get_by_index(net, idev->dev->iflink))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002594 if (!ipv6_inherit_linklocal(idev, link_dev))
2595 return;
2596 }
2597 /* then try to inherit it from any device */
Benjamin Thery6fda7352008-03-05 10:47:47 -08002598 for_each_netdev(net, link_dev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002599 if (!ipv6_inherit_linklocal(idev, link_dev))
2600 return;
2601 }
Joe Perches91df42b2012-05-15 14:11:54 +00002602 pr_debug("init ip6-ip6: add_linklocal failed\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002603}
2604
2605/*
2606 * Autoconfigure tunnel with a link-local address so routing protocols,
2607 * DHCPv6, MLD etc. can be run over the virtual link
2608 */
2609
2610static void addrconf_ip6_tnl_config(struct net_device *dev)
2611{
2612 struct inet6_dev *idev;
2613
2614 ASSERT_RTNL();
2615
Stephen Hemmingere21e8462010-03-20 16:09:01 -07002616 idev = addrconf_add_dev(dev);
Brian Haley64e724f2010-07-20 10:34:30 +00002617 if (IS_ERR(idev)) {
Joe Perches91df42b2012-05-15 14:11:54 +00002618 pr_debug("init ip6-ip6: add_dev failed\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002619 return;
2620 }
2621 ip6_tnl_add_linklocal(idev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002622}
2623
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002624static int addrconf_notify(struct notifier_block *this, unsigned long event,
Eldad Zack8e5e8f32012-04-01 07:49:08 +00002625 void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002626{
2627 struct net_device *dev = (struct net_device *) data;
Eric Dumazet748e2d92012-08-22 21:50:59 +00002628 struct inet6_dev *idev = __in6_dev_get(dev);
YOSHIFUJI Hideakic5e33bd2005-12-21 22:57:44 +09002629 int run_pending = 0;
Herbert Xub217d612007-07-30 17:04:52 -07002630 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002631
Stephen Hemmingere21e8462010-03-20 16:09:01 -07002632 switch (event) {
YOSHIFUJI Hideaki45ba9dd2007-02-15 02:07:27 +09002633 case NETDEV_REGISTER:
Herbert Xu74235a22007-06-14 13:02:55 -07002634 if (!idev && dev->mtu >= IPV6_MIN_MTU) {
YOSHIFUJI Hideaki45ba9dd2007-02-15 02:07:27 +09002635 idev = ipv6_add_dev(dev);
2636 if (!idev)
Herbert Xub217d612007-07-30 17:04:52 -07002637 return notifier_from_errno(-ENOMEM);
YOSHIFUJI Hideaki45ba9dd2007-02-15 02:07:27 +09002638 }
2639 break;
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07002640
Linus Torvalds1da177e2005-04-16 15:20:36 -07002641 case NETDEV_UP:
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09002642 case NETDEV_CHANGE:
Jay Vosburghc2edacf2007-07-09 10:42:47 -07002643 if (dev->flags & IFF_SLAVE)
2644 break;
2645
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09002646 if (event == NETDEV_UP) {
Mitsuru Chinenf24e3d62007-10-10 02:53:43 -07002647 if (!addrconf_qdisc_ok(dev)) {
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09002648 /* device is not ready yet. */
Joe Perchesf3213832012-05-15 14:11:53 +00002649 pr_info("ADDRCONF(NETDEV_UP): %s: link is not ready\n",
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09002650 dev->name);
2651 break;
2652 }
Kristian Slavov99081042006-02-08 16:10:53 -08002653
Evgeniy Polyakovd31c7b82007-11-30 23:36:08 +11002654 if (!idev && dev->mtu >= IPV6_MIN_MTU)
2655 idev = ipv6_add_dev(dev);
2656
Benjamin Therye3ec6cf2008-11-05 01:43:57 -08002657 if (idev) {
Kristian Slavov99081042006-02-08 16:10:53 -08002658 idev->if_flags |= IF_READY;
Benjamin Therye3ec6cf2008-11-05 01:43:57 -08002659 run_pending = 1;
2660 }
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09002661 } else {
Mitsuru Chinenf24e3d62007-10-10 02:53:43 -07002662 if (!addrconf_qdisc_ok(dev)) {
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09002663 /* device is still not ready. */
2664 break;
2665 }
2666
2667 if (idev) {
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07002668 if (idev->if_flags & IF_READY)
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09002669 /* device is already configured. */
2670 break;
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09002671 idev->if_flags |= IF_READY;
2672 }
2673
Joe Perchesf3213832012-05-15 14:11:53 +00002674 pr_info("ADDRCONF(NETDEV_CHANGE): %s: link becomes ready\n",
2675 dev->name);
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09002676
YOSHIFUJI Hideakic5e33bd2005-12-21 22:57:44 +09002677 run_pending = 1;
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09002678 }
2679
Stephen Hemmingere21e8462010-03-20 16:09:01 -07002680 switch (dev->type) {
Joerg Roedel0be669b2006-10-10 14:49:53 -07002681#if defined(CONFIG_IPV6_SIT) || defined(CONFIG_IPV6_SIT_MODULE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002682 case ARPHRD_SIT:
2683 addrconf_sit_config(dev);
2684 break;
Joerg Roedel0be669b2006-10-10 14:49:53 -07002685#endif
stephen hemmingeraee80b52011-06-08 10:44:30 +00002686#if defined(CONFIG_NET_IPGRE) || defined(CONFIG_NET_IPGRE_MODULE)
2687 case ARPHRD_IPGRE:
2688 addrconf_gre_config(dev);
2689 break;
2690#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002691 case ARPHRD_TUNNEL6:
2692 addrconf_ip6_tnl_config(dev);
2693 break;
2694 case ARPHRD_LOOPBACK:
2695 init_loopback(dev);
2696 break;
2697
2698 default:
2699 addrconf_dev_config(dev);
2700 break;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07002701 }
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07002702
Linus Torvalds1da177e2005-04-16 15:20:36 -07002703 if (idev) {
YOSHIFUJI Hideakic5e33bd2005-12-21 22:57:44 +09002704 if (run_pending)
2705 addrconf_dad_run(idev);
2706
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07002707 /*
2708 * If the MTU changed during the interface down,
2709 * when the interface up, the changed MTU must be
2710 * reflected in the idev as well as routers.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002711 */
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07002712 if (idev->cnf.mtu6 != dev->mtu &&
2713 dev->mtu >= IPV6_MIN_MTU) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002714 rt6_mtu_change(dev, dev->mtu);
2715 idev->cnf.mtu6 = dev->mtu;
2716 }
2717 idev->tstamp = jiffies;
2718 inet6_ifinfo_notify(RTM_NEWLINK, idev);
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07002719
2720 /*
2721 * If the changed mtu during down is lower than
2722 * IPV6_MIN_MTU stop IPv6 on this interface.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002723 */
2724 if (dev->mtu < IPV6_MIN_MTU)
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07002725 addrconf_ifdown(dev, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002726 }
2727 break;
2728
2729 case NETDEV_CHANGEMTU:
Evgeniy Polyakovd31c7b82007-11-30 23:36:08 +11002730 if (idev && dev->mtu >= IPV6_MIN_MTU) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002731 rt6_mtu_change(dev, dev->mtu);
2732 idev->cnf.mtu6 = dev->mtu;
2733 break;
2734 }
2735
Evgeniy Polyakovd31c7b82007-11-30 23:36:08 +11002736 if (!idev && dev->mtu >= IPV6_MIN_MTU) {
2737 idev = ipv6_add_dev(dev);
2738 if (idev)
2739 break;
2740 }
2741
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07002742 /*
2743 * MTU falled under IPV6_MIN_MTU.
2744 * Stop IPv6 on this interface.
2745 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002746
2747 case NETDEV_DOWN:
2748 case NETDEV_UNREGISTER:
2749 /*
2750 * Remove all addresses from this interface.
2751 */
2752 addrconf_ifdown(dev, event != NETDEV_DOWN);
2753 break;
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09002754
Linus Torvalds1da177e2005-04-16 15:20:36 -07002755 case NETDEV_CHANGENAME:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002756 if (idev) {
Stephen Hemminger5632c512007-04-28 21:16:39 -07002757 snmp6_unregister_dev(idev);
Pavel Emelyanov408c4762008-01-10 17:41:21 -08002758 addrconf_sysctl_unregister(idev);
Pavel Emelyanovf52295a2007-12-02 00:58:37 +11002759 addrconf_sysctl_register(idev);
Herbert Xub217d612007-07-30 17:04:52 -07002760 err = snmp6_register_dev(idev);
2761 if (err)
2762 return notifier_from_errno(err);
Stephen Hemminger5632c512007-04-28 21:16:39 -07002763 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002764 break;
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07002765
Jiri Pirko93d9b7d2010-03-10 10:28:56 +00002766 case NETDEV_PRE_TYPE_CHANGE:
2767 case NETDEV_POST_TYPE_CHANGE:
2768 addrconf_type_change(dev, event);
Moni Shoua75c78502009-09-15 02:37:40 -07002769 break;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07002770 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002771
2772 return NOTIFY_OK;
2773}
2774
2775/*
2776 * addrconf module should be notified of a device going up
2777 */
2778static struct notifier_block ipv6_dev_notf = {
2779 .notifier_call = addrconf_notify,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002780};
2781
Jiri Pirko93d9b7d2010-03-10 10:28:56 +00002782static void addrconf_type_change(struct net_device *dev, unsigned long event)
Moni Shoua75c78502009-09-15 02:37:40 -07002783{
2784 struct inet6_dev *idev;
2785 ASSERT_RTNL();
2786
2787 idev = __in6_dev_get(dev);
2788
Jiri Pirko93d9b7d2010-03-10 10:28:56 +00002789 if (event == NETDEV_POST_TYPE_CHANGE)
Moni Shoua75c78502009-09-15 02:37:40 -07002790 ipv6_mc_remap(idev);
Jiri Pirko93d9b7d2010-03-10 10:28:56 +00002791 else if (event == NETDEV_PRE_TYPE_CHANGE)
Moni Shoua75c78502009-09-15 02:37:40 -07002792 ipv6_mc_unmap(idev);
2793}
2794
Linus Torvalds1da177e2005-04-16 15:20:36 -07002795static int addrconf_ifdown(struct net_device *dev, int how)
2796{
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09002797 struct net *net = dev_net(dev);
stephen hemminger502a2ff2010-03-17 20:31:13 +00002798 struct inet6_dev *idev;
2799 struct inet6_ifaddr *ifa;
David S. Miller73a8bd742011-01-23 23:27:15 -08002800 int state, i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002801
2802 ASSERT_RTNL();
2803
David S. Miller73a8bd742011-01-23 23:27:15 -08002804 rt6_ifdown(net, dev);
2805 neigh_ifdown(&nd_tbl, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002806
2807 idev = __in6_dev_get(dev);
2808 if (idev == NULL)
2809 return -ENODEV;
2810
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07002811 /*
2812 * Step 1: remove reference to ipv6 device from parent device.
2813 * Do not dev_put!
Linus Torvalds1da177e2005-04-16 15:20:36 -07002814 */
Denis V. Lunev439e2382008-04-03 13:30:17 -07002815 if (how) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002816 idev->dead = 1;
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -07002817
2818 /* protected by rtnl_lock */
Stephen Hemmingera9b3cd72011-08-01 16:19:00 +00002819 RCU_INIT_POINTER(dev->ip6_ptr, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002820
2821 /* Step 1.5: remove snmp6 entry */
2822 snmp6_unregister_dev(idev);
2823
2824 }
2825
David S. Miller73a8bd742011-01-23 23:27:15 -08002826 /* Step 2: clear hash table */
2827 for (i = 0; i < IN6_ADDR_HSIZE; i++) {
2828 struct hlist_head *h = &inet6_addr_lst[i];
2829 struct hlist_node *n;
2830
2831 spin_lock_bh(&addrconf_hash_lock);
2832 restart:
2833 hlist_for_each_entry_rcu(ifa, n, h, addr_lst) {
2834 if (ifa->idev == idev) {
2835 hlist_del_init_rcu(&ifa->addr_lst);
2836 addrconf_del_timer(ifa);
2837 goto restart;
2838 }
2839 }
2840 spin_unlock_bh(&addrconf_hash_lock);
2841 }
2842
Linus Torvalds1da177e2005-04-16 15:20:36 -07002843 write_lock_bh(&idev->lock);
2844
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07002845 /* Step 2: clear flags for stateless addrconf */
Denis V. Lunev439e2382008-04-03 13:30:17 -07002846 if (!how)
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09002847 idev->if_flags &= ~(IF_RS_SENT|IF_RA_RCVD|IF_READY);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002848
Linus Torvalds1da177e2005-04-16 15:20:36 -07002849#ifdef CONFIG_IPV6_PRIVACY
Denis V. Lunev439e2382008-04-03 13:30:17 -07002850 if (how && del_timer(&idev->regen_timer))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002851 in6_dev_put(idev);
2852
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07002853 /* Step 3: clear tempaddr list */
stephen hemminger372e6c82010-03-17 20:31:09 +00002854 while (!list_empty(&idev->tempaddr_list)) {
2855 ifa = list_first_entry(&idev->tempaddr_list,
2856 struct inet6_ifaddr, tmp_list);
2857 list_del(&ifa->tmp_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002858 write_unlock_bh(&idev->lock);
2859 spin_lock_bh(&ifa->lock);
2860
2861 if (ifa->ifpub) {
2862 in6_ifa_put(ifa->ifpub);
2863 ifa->ifpub = NULL;
2864 }
2865 spin_unlock_bh(&ifa->lock);
2866 in6_ifa_put(ifa);
2867 write_lock_bh(&idev->lock);
2868 }
2869#endif
stephen hemminger8f37ada2010-03-03 08:19:59 +00002870
stephen hemminger502a2ff2010-03-17 20:31:13 +00002871 while (!list_empty(&idev->addr_list)) {
2872 ifa = list_first_entry(&idev->addr_list,
2873 struct inet6_ifaddr, if_list);
stephen hemminger84e8b802010-03-02 13:32:46 +00002874 addrconf_del_timer(ifa);
2875
David S. Miller73a8bd742011-01-23 23:27:15 -08002876 list_del(&ifa->if_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002877
David S. Miller73a8bd742011-01-23 23:27:15 -08002878 write_unlock_bh(&idev->lock);
stephen hemminger84e8b802010-03-02 13:32:46 +00002879
David S. Miller73a8bd742011-01-23 23:27:15 -08002880 spin_lock_bh(&ifa->state_lock);
2881 state = ifa->state;
2882 ifa->state = INET6_IFADDR_STATE_DEAD;
2883 spin_unlock_bh(&ifa->state_lock);
stephen hemminger84e8b802010-03-02 13:32:46 +00002884
David S. Miller73a8bd742011-01-23 23:27:15 -08002885 if (state != INET6_IFADDR_STATE_DEAD) {
2886 __ipv6_ifa_notify(RTM_DELADDR, ifa);
2887 atomic_notifier_call_chain(&inet6addr_chain, NETDEV_DOWN, ifa);
stephen hemminger27bdb2a2010-04-12 05:41:32 +00002888 }
David S. Miller73a8bd742011-01-23 23:27:15 -08002889 in6_ifa_put(ifa);
stephen hemminger8f37ada2010-03-03 08:19:59 +00002890
David S. Miller73a8bd742011-01-23 23:27:15 -08002891 write_lock_bh(&idev->lock);
2892 }
stephen hemminger8f37ada2010-03-03 08:19:59 +00002893
Linus Torvalds1da177e2005-04-16 15:20:36 -07002894 write_unlock_bh(&idev->lock);
2895
2896 /* Step 5: Discard multicast list */
Denis V. Lunev439e2382008-04-03 13:30:17 -07002897 if (how)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002898 ipv6_mc_destroy_dev(idev);
2899 else
2900 ipv6_mc_down(idev);
2901
Linus Torvalds1da177e2005-04-16 15:20:36 -07002902 idev->tstamp = jiffies;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002903
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07002904 /* Last: Shot the device (if unregistered) */
Denis V. Lunev439e2382008-04-03 13:30:17 -07002905 if (how) {
Pavel Emelyanov408c4762008-01-10 17:41:21 -08002906 addrconf_sysctl_unregister(idev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002907 neigh_parms_release(&nd_tbl, idev->nd_parms);
2908 neigh_ifdown(&nd_tbl, dev);
2909 in6_dev_put(idev);
2910 }
2911 return 0;
2912}
2913
2914static void addrconf_rs_timer(unsigned long data)
2915{
2916 struct inet6_ifaddr *ifp = (struct inet6_ifaddr *) data;
stephen hemminger5b2a1952010-03-02 13:32:45 +00002917 struct inet6_dev *idev = ifp->idev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002918
stephen hemminger5b2a1952010-03-02 13:32:45 +00002919 read_lock(&idev->lock);
2920 if (idev->dead || !(idev->if_flags & IF_READY))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002921 goto out;
2922
stephen hemminger5b2a1952010-03-02 13:32:45 +00002923 if (idev->cnf.forwarding)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002924 goto out;
stephen hemminger5b2a1952010-03-02 13:32:45 +00002925
2926 /* Announcement received after solicitation was sent */
2927 if (idev->if_flags & IF_RA_RCVD)
2928 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002929
2930 spin_lock(&ifp->lock);
stephen hemminger5b2a1952010-03-02 13:32:45 +00002931 if (ifp->probes++ < idev->cnf.rtr_solicits) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002932 /* The wait after the last probe can be shorter */
2933 addrconf_mod_timer(ifp, AC_RS,
stephen hemminger5b2a1952010-03-02 13:32:45 +00002934 (ifp->probes == idev->cnf.rtr_solicits) ?
2935 idev->cnf.rtr_solicit_delay :
2936 idev->cnf.rtr_solicit_interval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002937 spin_unlock(&ifp->lock);
2938
stephen hemminger5b2a1952010-03-02 13:32:45 +00002939 ndisc_send_rs(idev->dev, &ifp->addr, &in6addr_linklocal_allrouters);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002940 } else {
2941 spin_unlock(&ifp->lock);
2942 /*
2943 * Note: we do not support deprecated "all on-link"
2944 * assumption any longer.
2945 */
Joe Perches91df42b2012-05-15 14:11:54 +00002946 pr_debug("%s: no IPv6 routers present\n", idev->dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002947 }
2948
2949out:
stephen hemminger5b2a1952010-03-02 13:32:45 +00002950 read_unlock(&idev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002951 in6_ifa_put(ifp);
2952}
2953
2954/*
2955 * Duplicate Address Detection
2956 */
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09002957static void addrconf_dad_kick(struct inet6_ifaddr *ifp)
2958{
2959 unsigned long rand_num;
2960 struct inet6_dev *idev = ifp->idev;
2961
Neil Horman95c385b2007-04-25 17:08:10 -07002962 if (ifp->flags & IFA_F_OPTIMISTIC)
2963 rand_num = 0;
2964 else
2965 rand_num = net_random() % (idev->cnf.rtr_solicit_delay ? : 1);
2966
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09002967 ifp->probes = idev->cnf.dad_transmits;
2968 addrconf_mod_timer(ifp, AC_DAD, rand_num);
2969}
2970
David S. Millercf22f9a2012-04-14 21:37:40 -04002971static void addrconf_dad_start(struct inet6_ifaddr *ifp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002972{
2973 struct inet6_dev *idev = ifp->idev;
2974 struct net_device *dev = idev->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002975
2976 addrconf_join_solict(dev, &ifp->addr);
2977
Linus Torvalds1da177e2005-04-16 15:20:36 -07002978 net_srandom(ifp->addr.s6_addr32[3]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002979
2980 read_lock_bh(&idev->lock);
Herbert Xu622ccdf2010-05-18 15:56:06 -07002981 spin_lock(&ifp->lock);
Herbert Xue9d3e082010-05-18 15:36:06 -07002982 if (ifp->state == INET6_IFADDR_STATE_DEAD)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002983 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002984
2985 if (dev->flags&(IFF_NOARP|IFF_LOOPBACK) ||
YOSHIFUJI Hideaki1b34be72008-06-28 14:18:38 +09002986 idev->cnf.accept_dad < 1 ||
Noriaki TAKAMIYA55ebaef2006-09-22 14:45:27 -07002987 !(ifp->flags&IFA_F_TENTATIVE) ||
2988 ifp->flags & IFA_F_NODAD) {
Brian Haleycc411d02009-09-09 14:41:32 +00002989 ifp->flags &= ~(IFA_F_TENTATIVE|IFA_F_OPTIMISTIC|IFA_F_DADFAILED);
stephen hemminger21809fa2010-02-08 19:48:52 +00002990 spin_unlock(&ifp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002991 read_unlock_bh(&idev->lock);
2992
2993 addrconf_dad_completed(ifp);
2994 return;
2995 }
2996
YOSHIFUJI Hideaki6732bad2005-12-27 13:35:15 -08002997 if (!(idev->if_flags & IF_READY)) {
stephen hemminger21809fa2010-02-08 19:48:52 +00002998 spin_unlock(&ifp->lock);
YOSHIFUJI Hideaki6732bad2005-12-27 13:35:15 -08002999 read_unlock_bh(&idev->lock);
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09003000 /*
Masatake YAMATO590a9882009-06-09 10:41:12 +09003001 * If the device is not ready:
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09003002 * - keep it tentative if it is a permanent address.
3003 * - otherwise, kill it.
3004 */
3005 in6_ifa_hold(ifp);
Brian Haleycc411d02009-09-09 14:41:32 +00003006 addrconf_dad_stop(ifp, 0);
YOSHIFUJI Hideaki6732bad2005-12-27 13:35:15 -08003007 return;
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09003008 }
Neil Horman95c385b2007-04-25 17:08:10 -07003009
3010 /*
3011 * Optimistic nodes can start receiving
3012 * Frames right away
3013 */
Stephen Hemmingere21e8462010-03-20 16:09:01 -07003014 if (ifp->flags & IFA_F_OPTIMISTIC)
Neil Horman95c385b2007-04-25 17:08:10 -07003015 ip6_ins_rt(ifp->rt);
3016
YOSHIFUJI Hideaki6732bad2005-12-27 13:35:15 -08003017 addrconf_dad_kick(ifp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003018out:
Herbert Xu622ccdf2010-05-18 15:56:06 -07003019 spin_unlock(&ifp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003020 read_unlock_bh(&idev->lock);
3021}
3022
3023static void addrconf_dad_timer(unsigned long data)
3024{
3025 struct inet6_ifaddr *ifp = (struct inet6_ifaddr *) data;
3026 struct inet6_dev *idev = ifp->idev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003027 struct in6_addr mcaddr;
3028
Herbert Xuf2344a12010-05-18 15:55:27 -07003029 if (!ifp->probes && addrconf_dad_end(ifp))
3030 goto out;
3031
stephen hemminger122e4512010-03-02 13:32:44 +00003032 read_lock(&idev->lock);
3033 if (idev->dead || !(idev->if_flags & IF_READY)) {
3034 read_unlock(&idev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003035 goto out;
3036 }
stephen hemminger21809fa2010-02-08 19:48:52 +00003037
3038 spin_lock(&ifp->lock);
Herbert Xu622ccdf2010-05-18 15:56:06 -07003039 if (ifp->state == INET6_IFADDR_STATE_DEAD) {
3040 spin_unlock(&ifp->lock);
3041 read_unlock(&idev->lock);
3042 goto out;
3043 }
3044
Linus Torvalds1da177e2005-04-16 15:20:36 -07003045 if (ifp->probes == 0) {
3046 /*
3047 * DAD was successful
3048 */
3049
Brian Haleycc411d02009-09-09 14:41:32 +00003050 ifp->flags &= ~(IFA_F_TENTATIVE|IFA_F_OPTIMISTIC|IFA_F_DADFAILED);
stephen hemminger21809fa2010-02-08 19:48:52 +00003051 spin_unlock(&ifp->lock);
stephen hemminger122e4512010-03-02 13:32:44 +00003052 read_unlock(&idev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003053
3054 addrconf_dad_completed(ifp);
3055
3056 goto out;
3057 }
3058
3059 ifp->probes--;
3060 addrconf_mod_timer(ifp, AC_DAD, ifp->idev->nd_parms->retrans_time);
stephen hemminger21809fa2010-02-08 19:48:52 +00003061 spin_unlock(&ifp->lock);
stephen hemminger122e4512010-03-02 13:32:44 +00003062 read_unlock(&idev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003063
3064 /* send a neighbour solicitation for our addr */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003065 addrconf_addr_solict_mult(&ifp->addr, &mcaddr);
YOSHIFUJI Hideakid7aabf22008-04-10 15:42:11 +09003066 ndisc_send_ns(ifp->idev->dev, NULL, &ifp->addr, &mcaddr, &in6addr_any);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003067out:
3068 in6_ifa_put(ifp);
3069}
3070
3071static void addrconf_dad_completed(struct inet6_ifaddr *ifp)
3072{
Stephen Hemmingere21e8462010-03-20 16:09:01 -07003073 struct net_device *dev = ifp->idev->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003074
3075 /*
3076 * Configure the address for reception. Now it is valid.
3077 */
3078
3079 ipv6_ifa_notify(RTM_NEWADDR, ifp);
3080
Tore Anderson026359b2011-08-28 23:47:33 +00003081 /* If added prefix is link local and we are prepared to process
3082 router advertisements, start sending router solicitations.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003083 */
3084
Tore Anderson026359b2011-08-28 23:47:33 +00003085 if (((ifp->idev->cnf.accept_ra == 1 && !ifp->idev->cnf.forwarding) ||
3086 ifp->idev->cnf.accept_ra == 2) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07003087 ifp->idev->cnf.rtr_solicits > 0 &&
3088 (dev->flags&IFF_LOOPBACK) == 0 &&
3089 (ipv6_addr_type(&ifp->addr) & IPV6_ADDR_LINKLOCAL)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003090 /*
3091 * If a host as already performed a random delay
3092 * [...] as part of DAD [...] there is no need
3093 * to delay again before sending the first RS
3094 */
YOSHIFUJI Hideakif3ee4012008-04-10 15:42:11 +09003095 ndisc_send_rs(ifp->idev->dev, &ifp->addr, &in6addr_linklocal_allrouters);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003096
3097 spin_lock_bh(&ifp->lock);
3098 ifp->probes = 1;
3099 ifp->idev->if_flags |= IF_RS_SENT;
3100 addrconf_mod_timer(ifp, AC_RS, ifp->idev->cnf.rtr_solicit_interval);
3101 spin_unlock_bh(&ifp->lock);
3102 }
3103}
3104
Stephen Hemmingere21e8462010-03-20 16:09:01 -07003105static void addrconf_dad_run(struct inet6_dev *idev)
3106{
YOSHIFUJI Hideakic5e33bd2005-12-21 22:57:44 +09003107 struct inet6_ifaddr *ifp;
3108
3109 read_lock_bh(&idev->lock);
stephen hemminger502a2ff2010-03-17 20:31:13 +00003110 list_for_each_entry(ifp, &idev->addr_list, if_list) {
stephen hemminger21809fa2010-02-08 19:48:52 +00003111 spin_lock(&ifp->lock);
Herbert Xuf2344a12010-05-18 15:55:27 -07003112 if (ifp->flags & IFA_F_TENTATIVE &&
3113 ifp->state == INET6_IFADDR_STATE_DAD)
3114 addrconf_dad_kick(ifp);
stephen hemminger21809fa2010-02-08 19:48:52 +00003115 spin_unlock(&ifp->lock);
YOSHIFUJI Hideakic5e33bd2005-12-21 22:57:44 +09003116 }
3117 read_unlock_bh(&idev->lock);
3118}
3119
Linus Torvalds1da177e2005-04-16 15:20:36 -07003120#ifdef CONFIG_PROC_FS
3121struct if6_iter_state {
Daniel Lezcano3c400902008-01-10 22:42:49 -08003122 struct seq_net_private p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003123 int bucket;
Mihai Maruseac1d578302012-01-03 23:31:35 +00003124 int offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003125};
3126
Mihai Maruseac1d578302012-01-03 23:31:35 +00003127static struct inet6_ifaddr *if6_get_first(struct seq_file *seq, loff_t pos)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003128{
3129 struct inet6_ifaddr *ifa = NULL;
3130 struct if6_iter_state *state = seq->private;
YOSHIFUJI Hideaki12188542008-03-26 02:36:06 +09003131 struct net *net = seq_file_net(seq);
Mihai Maruseac1d578302012-01-03 23:31:35 +00003132 int p = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003133
Mihai Maruseac1d578302012-01-03 23:31:35 +00003134 /* initial bucket if pos is 0 */
3135 if (pos == 0) {
3136 state->bucket = 0;
3137 state->offset = 0;
3138 }
3139
3140 for (; state->bucket < IN6_ADDR_HSIZE; ++state->bucket) {
stephen hemmingerc2e21292010-03-17 20:31:10 +00003141 struct hlist_node *n;
Eric Dumazet4f70ecc2010-05-03 10:50:14 +00003142 hlist_for_each_entry_rcu_bh(ifa, n, &inet6_addr_lst[state->bucket],
Mihai Maruseac1d578302012-01-03 23:31:35 +00003143 addr_lst) {
Eric Dumazet9f0d3c22012-10-16 07:37:27 +00003144 if (!net_eq(dev_net(ifa->idev->dev), net))
3145 continue;
Mihai Maruseac1d578302012-01-03 23:31:35 +00003146 /* sync with offset */
3147 if (p < state->offset) {
3148 p++;
3149 continue;
3150 }
3151 state->offset++;
Eric Dumazet9f0d3c22012-10-16 07:37:27 +00003152 return ifa;
Mihai Maruseac1d578302012-01-03 23:31:35 +00003153 }
3154
3155 /* prepare for next bucket */
3156 state->offset = 0;
3157 p = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003158 }
stephen hemmingerc2e21292010-03-17 20:31:10 +00003159 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003160}
3161
stephen hemmingerc2e21292010-03-17 20:31:10 +00003162static struct inet6_ifaddr *if6_get_next(struct seq_file *seq,
3163 struct inet6_ifaddr *ifa)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003164{
3165 struct if6_iter_state *state = seq->private;
YOSHIFUJI Hideaki12188542008-03-26 02:36:06 +09003166 struct net *net = seq_file_net(seq);
stephen hemmingerc2e21292010-03-17 20:31:10 +00003167 struct hlist_node *n = &ifa->addr_lst;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003168
Mihai Maruseac1d578302012-01-03 23:31:35 +00003169 hlist_for_each_entry_continue_rcu_bh(ifa, n, addr_lst) {
Eric Dumazet9f0d3c22012-10-16 07:37:27 +00003170 if (!net_eq(dev_net(ifa->idev->dev), net))
3171 continue;
Mihai Maruseac1d578302012-01-03 23:31:35 +00003172 state->offset++;
Eric Dumazet9f0d3c22012-10-16 07:37:27 +00003173 return ifa;
Mihai Maruseac1d578302012-01-03 23:31:35 +00003174 }
stephen hemmingerc2e21292010-03-17 20:31:10 +00003175
3176 while (++state->bucket < IN6_ADDR_HSIZE) {
Mihai Maruseac1d578302012-01-03 23:31:35 +00003177 state->offset = 0;
Eric Dumazet4f70ecc2010-05-03 10:50:14 +00003178 hlist_for_each_entry_rcu_bh(ifa, n,
stephen hemmingerc2e21292010-03-17 20:31:10 +00003179 &inet6_addr_lst[state->bucket], addr_lst) {
Eric Dumazet9f0d3c22012-10-16 07:37:27 +00003180 if (!net_eq(dev_net(ifa->idev->dev), net))
3181 continue;
Mihai Maruseac1d578302012-01-03 23:31:35 +00003182 state->offset++;
Eric Dumazet9f0d3c22012-10-16 07:37:27 +00003183 return ifa;
Daniel Lezcano3c400902008-01-10 22:42:49 -08003184 }
3185 }
3186
stephen hemmingerc2e21292010-03-17 20:31:10 +00003187 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003188}
3189
Linus Torvalds1da177e2005-04-16 15:20:36 -07003190static void *if6_seq_start(struct seq_file *seq, loff_t *pos)
Eric Dumazet4f70ecc2010-05-03 10:50:14 +00003191 __acquires(rcu_bh)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003192{
stephen hemminger5c578ae2010-03-17 20:31:11 +00003193 rcu_read_lock_bh();
Mihai Maruseac1d578302012-01-03 23:31:35 +00003194 return if6_get_first(seq, *pos);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003195}
3196
3197static void *if6_seq_next(struct seq_file *seq, void *v, loff_t *pos)
3198{
3199 struct inet6_ifaddr *ifa;
3200
3201 ifa = if6_get_next(seq, v);
3202 ++*pos;
3203 return ifa;
3204}
3205
3206static void if6_seq_stop(struct seq_file *seq, void *v)
Eric Dumazet4f70ecc2010-05-03 10:50:14 +00003207 __releases(rcu_bh)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003208{
stephen hemminger5c578ae2010-03-17 20:31:11 +00003209 rcu_read_unlock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003210}
3211
3212static int if6_seq_show(struct seq_file *seq, void *v)
3213{
3214 struct inet6_ifaddr *ifp = (struct inet6_ifaddr *)v;
Harvey Harrison4b7a4272008-10-29 12:50:24 -07003215 seq_printf(seq, "%pi6 %02x %02x %02x %02x %8s\n",
Harvey Harrisonb0711952008-10-28 16:05:40 -07003216 &ifp->addr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003217 ifp->idev->dev->ifindex,
3218 ifp->prefix_len,
3219 ifp->scope,
3220 ifp->flags,
3221 ifp->idev->dev->name);
3222 return 0;
3223}
3224
Philippe De Muyter56b3d972007-07-10 23:07:31 -07003225static const struct seq_operations if6_seq_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003226 .start = if6_seq_start,
3227 .next = if6_seq_next,
3228 .show = if6_seq_show,
3229 .stop = if6_seq_stop,
3230};
3231
3232static int if6_seq_open(struct inode *inode, struct file *file)
3233{
Daniel Lezcano3c400902008-01-10 22:42:49 -08003234 return seq_open_net(inode, file, &if6_seq_ops,
3235 sizeof(struct if6_iter_state));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003236}
3237
Arjan van de Ven9a321442007-02-12 00:55:35 -08003238static const struct file_operations if6_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003239 .owner = THIS_MODULE,
3240 .open = if6_seq_open,
3241 .read = seq_read,
3242 .llseek = seq_lseek,
Daniel Lezcano3c400902008-01-10 22:42:49 -08003243 .release = seq_release_net,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003244};
3245
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00003246static int __net_init if6_proc_net_init(struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003247{
Daniel Lezcano3c400902008-01-10 22:42:49 -08003248 if (!proc_net_fops_create(net, "if_inet6", S_IRUGO, &if6_fops))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003249 return -ENOMEM;
3250 return 0;
3251}
3252
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00003253static void __net_exit if6_proc_net_exit(struct net *net)
Daniel Lezcano3c400902008-01-10 22:42:49 -08003254{
3255 proc_net_remove(net, "if_inet6");
3256}
3257
3258static struct pernet_operations if6_proc_net_ops = {
3259 .init = if6_proc_net_init,
3260 .exit = if6_proc_net_exit,
3261};
3262
3263int __init if6_proc_init(void)
3264{
3265 return register_pernet_subsys(&if6_proc_net_ops);
3266}
3267
Linus Torvalds1da177e2005-04-16 15:20:36 -07003268void if6_proc_exit(void)
3269{
Daniel Lezcano3c400902008-01-10 22:42:49 -08003270 unregister_pernet_subsys(&if6_proc_net_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003271}
3272#endif /* CONFIG_PROC_FS */
3273
Masahide NAKAMURA59fbb3a62007-06-26 23:56:32 -07003274#if defined(CONFIG_IPV6_MIP6) || defined(CONFIG_IPV6_MIP6_MODULE)
Noriaki TAKAMIYA3b9f9a12006-09-22 14:45:56 -07003275/* Check if address is a home address configured on any interface. */
Eric Dumazetb71d1d42011-04-22 04:53:02 +00003276int ipv6_chk_home_addr(struct net *net, const struct in6_addr *addr)
Noriaki TAKAMIYA3b9f9a12006-09-22 14:45:56 -07003277{
3278 int ret = 0;
stephen hemmingerc2e21292010-03-17 20:31:10 +00003279 struct inet6_ifaddr *ifp = NULL;
3280 struct hlist_node *n;
Eric Dumazetddbe5032012-07-18 08:11:12 +00003281 unsigned int hash = inet6_addr_hash(addr);
stephen hemmingerc2e21292010-03-17 20:31:10 +00003282
stephen hemminger5c578ae2010-03-17 20:31:11 +00003283 rcu_read_lock_bh();
Eric Dumazet4f70ecc2010-05-03 10:50:14 +00003284 hlist_for_each_entry_rcu_bh(ifp, n, &inet6_addr_lst[hash], addr_lst) {
YOSHIFUJI Hideaki878628f2008-03-26 03:57:35 +09003285 if (!net_eq(dev_net(ifp->idev->dev), net))
Daniel Lezcano389f6612008-01-10 22:44:40 -08003286 continue;
YOSHIFUJI Hideakicaad2952008-04-10 15:42:07 +09003287 if (ipv6_addr_equal(&ifp->addr, addr) &&
Noriaki TAKAMIYA3b9f9a12006-09-22 14:45:56 -07003288 (ifp->flags & IFA_F_HOMEADDRESS)) {
3289 ret = 1;
3290 break;
3291 }
3292 }
stephen hemminger5c578ae2010-03-17 20:31:11 +00003293 rcu_read_unlock_bh();
Noriaki TAKAMIYA3b9f9a12006-09-22 14:45:56 -07003294 return ret;
3295}
3296#endif
3297
Linus Torvalds1da177e2005-04-16 15:20:36 -07003298/*
3299 * Periodic address status verification
3300 */
3301
3302static void addrconf_verify(unsigned long foo)
3303{
YOSHIFUJI Hideakib2db7562010-03-20 16:11:12 -07003304 unsigned long now, next, next_sec, next_sched;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003305 struct inet6_ifaddr *ifp;
stephen hemmingerc2e21292010-03-17 20:31:10 +00003306 struct hlist_node *node;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003307 int i;
3308
stephen hemminger5c578ae2010-03-17 20:31:11 +00003309 rcu_read_lock_bh();
3310 spin_lock(&addrconf_verify_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003311 now = jiffies;
YOSHIFUJI Hideakib2db7562010-03-20 16:11:12 -07003312 next = round_jiffies_up(now + ADDR_CHECK_FREQUENCY);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003313
3314 del_timer(&addr_chk_timer);
3315
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07003316 for (i = 0; i < IN6_ADDR_HSIZE; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003317restart:
Eric Dumazet4f70ecc2010-05-03 10:50:14 +00003318 hlist_for_each_entry_rcu_bh(ifp, node,
stephen hemminger5c578ae2010-03-17 20:31:11 +00003319 &inet6_addr_lst[i], addr_lst) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003320 unsigned long age;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003321
3322 if (ifp->flags & IFA_F_PERMANENT)
3323 continue;
3324
3325 spin_lock(&ifp->lock);
YOSHIFUJI Hideakib2db7562010-03-20 16:11:12 -07003326 /* We try to batch several events at once. */
3327 age = (now - ifp->tstamp + ADDRCONF_TIMER_FUZZ_MINUS) / HZ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003328
YOSHIFUJI Hideaki8f27ebb2006-07-28 18:12:11 +09003329 if (ifp->valid_lft != INFINITY_LIFE_TIME &&
3330 age >= ifp->valid_lft) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003331 spin_unlock(&ifp->lock);
3332 in6_ifa_hold(ifp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003333 ipv6_del_addr(ifp);
3334 goto restart;
YOSHIFUJI Hideaki8f27ebb2006-07-28 18:12:11 +09003335 } else if (ifp->prefered_lft == INFINITY_LIFE_TIME) {
3336 spin_unlock(&ifp->lock);
3337 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003338 } else if (age >= ifp->prefered_lft) {
Brian Haleya1ed0522009-07-02 07:10:52 +00003339 /* jiffies - ifp->tstamp > age >= ifp->prefered_lft */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003340 int deprecate = 0;
3341
3342 if (!(ifp->flags&IFA_F_DEPRECATED)) {
3343 deprecate = 1;
3344 ifp->flags |= IFA_F_DEPRECATED;
3345 }
3346
3347 if (time_before(ifp->tstamp + ifp->valid_lft * HZ, next))
3348 next = ifp->tstamp + ifp->valid_lft * HZ;
3349
3350 spin_unlock(&ifp->lock);
3351
3352 if (deprecate) {
3353 in6_ifa_hold(ifp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003354
3355 ipv6_ifa_notify(0, ifp);
3356 in6_ifa_put(ifp);
3357 goto restart;
3358 }
3359#ifdef CONFIG_IPV6_PRIVACY
3360 } else if ((ifp->flags&IFA_F_TEMPORARY) &&
3361 !(ifp->flags&IFA_F_TENTATIVE)) {
stephen hemminger88949cf2010-03-17 20:31:17 +00003362 unsigned long regen_advance = ifp->idev->cnf.regen_max_retry *
3363 ifp->idev->cnf.dad_transmits *
3364 ifp->idev->nd_parms->retrans_time / HZ;
3365
Linus Torvalds1da177e2005-04-16 15:20:36 -07003366 if (age >= ifp->prefered_lft - regen_advance) {
3367 struct inet6_ifaddr *ifpub = ifp->ifpub;
3368 if (time_before(ifp->tstamp + ifp->prefered_lft * HZ, next))
3369 next = ifp->tstamp + ifp->prefered_lft * HZ;
3370 if (!ifp->regen_count && ifpub) {
3371 ifp->regen_count++;
3372 in6_ifa_hold(ifp);
3373 in6_ifa_hold(ifpub);
3374 spin_unlock(&ifp->lock);
stephen hemminger5c578ae2010-03-17 20:31:11 +00003375
Hiroyuki YAMAMORI291d8092005-12-23 11:24:05 -08003376 spin_lock(&ifpub->lock);
3377 ifpub->regen_count = 0;
3378 spin_unlock(&ifpub->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003379 ipv6_create_tempaddr(ifpub, ifp);
3380 in6_ifa_put(ifpub);
3381 in6_ifa_put(ifp);
3382 goto restart;
3383 }
3384 } else if (time_before(ifp->tstamp + ifp->prefered_lft * HZ - regen_advance * HZ, next))
3385 next = ifp->tstamp + ifp->prefered_lft * HZ - regen_advance * HZ;
3386 spin_unlock(&ifp->lock);
3387#endif
3388 } else {
3389 /* ifp->prefered_lft <= ifp->valid_lft */
3390 if (time_before(ifp->tstamp + ifp->prefered_lft * HZ, next))
3391 next = ifp->tstamp + ifp->prefered_lft * HZ;
3392 spin_unlock(&ifp->lock);
3393 }
3394 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003395 }
3396
YOSHIFUJI Hideakib2db7562010-03-20 16:11:12 -07003397 next_sec = round_jiffies_up(next);
3398 next_sched = next;
3399
3400 /* If rounded timeout is accurate enough, accept it. */
3401 if (time_before(next_sec, next + ADDRCONF_TIMER_FUZZ))
3402 next_sched = next_sec;
3403
3404 /* And minimum interval is ADDRCONF_TIMER_FUZZ_MAX. */
3405 if (time_before(next_sched, jiffies + ADDRCONF_TIMER_FUZZ_MAX))
3406 next_sched = jiffies + ADDRCONF_TIMER_FUZZ_MAX;
3407
3408 ADBG((KERN_DEBUG "now = %lu, schedule = %lu, rounded schedule = %lu => %lu\n",
3409 now, next, next_sec, next_sched));
3410
3411 addr_chk_timer.expires = next_sched;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003412 add_timer(&addr_chk_timer);
stephen hemminger5c578ae2010-03-17 20:31:11 +00003413 spin_unlock(&addrconf_verify_lock);
3414 rcu_read_unlock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003415}
3416
Thomas Graf461d8832006-09-18 00:09:49 -07003417static struct in6_addr *extract_addr(struct nlattr *addr, struct nlattr *local)
3418{
3419 struct in6_addr *pfx = NULL;
3420
3421 if (addr)
3422 pfx = nla_data(addr);
3423
3424 if (local) {
3425 if (pfx && nla_memcmp(local, pfx, sizeof(*pfx)))
3426 pfx = NULL;
3427 else
3428 pfx = nla_data(local);
3429 }
3430
3431 return pfx;
3432}
3433
Patrick McHardyef7c79e2007-06-05 12:38:30 -07003434static const struct nla_policy ifa_ipv6_policy[IFA_MAX+1] = {
Thomas Graf461d8832006-09-18 00:09:49 -07003435 [IFA_ADDRESS] = { .len = sizeof(struct in6_addr) },
3436 [IFA_LOCAL] = { .len = sizeof(struct in6_addr) },
3437 [IFA_CACHEINFO] = { .len = sizeof(struct ifa_cacheinfo) },
3438};
3439
Linus Torvalds1da177e2005-04-16 15:20:36 -07003440static int
3441inet6_rtm_deladdr(struct sk_buff *skb, struct nlmsghdr *nlh, void *arg)
3442{
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09003443 struct net *net = sock_net(skb->sk);
Thomas Grafb933f712006-09-18 00:10:19 -07003444 struct ifaddrmsg *ifm;
3445 struct nlattr *tb[IFA_MAX+1];
Linus Torvalds1da177e2005-04-16 15:20:36 -07003446 struct in6_addr *pfx;
Thomas Grafb933f712006-09-18 00:10:19 -07003447 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003448
Thomas Grafb933f712006-09-18 00:10:19 -07003449 err = nlmsg_parse(nlh, sizeof(*ifm), tb, IFA_MAX, ifa_ipv6_policy);
3450 if (err < 0)
3451 return err;
3452
3453 ifm = nlmsg_data(nlh);
3454 pfx = extract_addr(tb[IFA_ADDRESS], tb[IFA_LOCAL]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003455 if (pfx == NULL)
3456 return -EINVAL;
3457
Daniel Lezcanoaf284932008-03-05 10:46:57 -08003458 return inet6_addr_del(net, ifm->ifa_index, pfx, ifm->ifa_prefixlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003459}
3460
Noriaki TAKAMIYA55ebaef2006-09-22 14:45:27 -07003461static int inet6_addr_modify(struct inet6_ifaddr *ifp, u8 ifa_flags,
3462 u32 prefered_lft, u32 valid_lft)
Noriaki TAKAMIYA081bba52006-07-28 18:12:13 +09003463{
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07003464 u32 flags;
3465 clock_t expires;
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +09003466 unsigned long timeout;
YOSHIFUJI Hideaki46d48042007-02-07 20:36:26 +09003467
Noriaki TAKAMIYA081bba52006-07-28 18:12:13 +09003468 if (!valid_lft || (prefered_lft > valid_lft))
3469 return -EINVAL;
3470
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +09003471 timeout = addrconf_timeout_fixup(valid_lft, HZ);
3472 if (addrconf_finite_timeout(timeout)) {
3473 expires = jiffies_to_clock_t(timeout * HZ);
3474 valid_lft = timeout;
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07003475 flags = RTF_EXPIRES;
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +09003476 } else {
3477 expires = 0;
3478 flags = 0;
3479 ifa_flags |= IFA_F_PERMANENT;
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07003480 }
Noriaki TAKAMIYA081bba52006-07-28 18:12:13 +09003481
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +09003482 timeout = addrconf_timeout_fixup(prefered_lft, HZ);
3483 if (addrconf_finite_timeout(timeout)) {
3484 if (timeout == 0)
3485 ifa_flags |= IFA_F_DEPRECATED;
3486 prefered_lft = timeout;
3487 }
Noriaki TAKAMIYA081bba52006-07-28 18:12:13 +09003488
3489 spin_lock_bh(&ifp->lock);
Noriaki TAKAMIYA3b9f9a12006-09-22 14:45:56 -07003490 ifp->flags = (ifp->flags & ~(IFA_F_DEPRECATED | IFA_F_PERMANENT | IFA_F_NODAD | IFA_F_HOMEADDRESS)) | ifa_flags;
Noriaki TAKAMIYA081bba52006-07-28 18:12:13 +09003491 ifp->tstamp = jiffies;
3492 ifp->valid_lft = valid_lft;
3493 ifp->prefered_lft = prefered_lft;
3494
3495 spin_unlock_bh(&ifp->lock);
3496 if (!(ifp->flags&IFA_F_TENTATIVE))
3497 ipv6_ifa_notify(0, ifp);
Noriaki TAKAMIYA081bba52006-07-28 18:12:13 +09003498
YOSHIFUJI Hideaki46d48042007-02-07 20:36:26 +09003499 addrconf_prefix_route(&ifp->addr, ifp->prefix_len, ifp->idev->dev,
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07003500 expires, flags);
Noriaki TAKAMIYA081bba52006-07-28 18:12:13 +09003501 addrconf_verify(0);
3502
3503 return 0;
3504}
3505
3506static int
Linus Torvalds1da177e2005-04-16 15:20:36 -07003507inet6_rtm_newaddr(struct sk_buff *skb, struct nlmsghdr *nlh, void *arg)
3508{
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09003509 struct net *net = sock_net(skb->sk);
Thomas Graf461d8832006-09-18 00:09:49 -07003510 struct ifaddrmsg *ifm;
3511 struct nlattr *tb[IFA_MAX+1];
Linus Torvalds1da177e2005-04-16 15:20:36 -07003512 struct in6_addr *pfx;
Thomas Graf7198f8c2006-09-18 00:13:46 -07003513 struct inet6_ifaddr *ifa;
3514 struct net_device *dev;
Noriaki TAKAMIYA55ebaef2006-09-22 14:45:27 -07003515 u32 valid_lft = INFINITY_LIFE_TIME, preferred_lft = INFINITY_LIFE_TIME;
3516 u8 ifa_flags;
Thomas Graf461d8832006-09-18 00:09:49 -07003517 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003518
Thomas Graf461d8832006-09-18 00:09:49 -07003519 err = nlmsg_parse(nlh, sizeof(*ifm), tb, IFA_MAX, ifa_ipv6_policy);
3520 if (err < 0)
3521 return err;
3522
3523 ifm = nlmsg_data(nlh);
3524 pfx = extract_addr(tb[IFA_ADDRESS], tb[IFA_LOCAL]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003525 if (pfx == NULL)
3526 return -EINVAL;
3527
Thomas Graf461d8832006-09-18 00:09:49 -07003528 if (tb[IFA_CACHEINFO]) {
Noriaki TAKAMIYA07787692006-07-28 18:12:10 +09003529 struct ifa_cacheinfo *ci;
Thomas Graf461d8832006-09-18 00:09:49 -07003530
3531 ci = nla_data(tb[IFA_CACHEINFO]);
Noriaki TAKAMIYA07787692006-07-28 18:12:10 +09003532 valid_lft = ci->ifa_valid;
Thomas Graf461d8832006-09-18 00:09:49 -07003533 preferred_lft = ci->ifa_prefered;
3534 } else {
3535 preferred_lft = INFINITY_LIFE_TIME;
3536 valid_lft = INFINITY_LIFE_TIME;
Noriaki TAKAMIYA07787692006-07-28 18:12:10 +09003537 }
3538
Daniel Lezcanoaf284932008-03-05 10:46:57 -08003539 dev = __dev_get_by_index(net, ifm->ifa_index);
Thomas Graf7198f8c2006-09-18 00:13:46 -07003540 if (dev == NULL)
3541 return -ENODEV;
3542
Noriaki TAKAMIYA55ebaef2006-09-22 14:45:27 -07003543 /* We ignore other flags so far. */
Noriaki TAKAMIYA3b9f9a12006-09-22 14:45:56 -07003544 ifa_flags = ifm->ifa_flags & (IFA_F_NODAD | IFA_F_HOMEADDRESS);
Noriaki TAKAMIYA55ebaef2006-09-22 14:45:27 -07003545
Daniel Lezcano1cab3da2008-01-10 22:44:09 -08003546 ifa = ipv6_get_ifaddr(net, pfx, dev, 1);
Thomas Graf7198f8c2006-09-18 00:13:46 -07003547 if (ifa == NULL) {
3548 /*
3549 * It would be best to check for !NLM_F_CREATE here but
3550 * userspace alreay relies on not having to provide this.
3551 */
Daniel Lezcanoaf284932008-03-05 10:46:57 -08003552 return inet6_addr_add(net, ifm->ifa_index, pfx,
3553 ifm->ifa_prefixlen, ifa_flags,
3554 preferred_lft, valid_lft);
Noriaki TAKAMIYA081bba52006-07-28 18:12:13 +09003555 }
3556
Thomas Graf7198f8c2006-09-18 00:13:46 -07003557 if (nlh->nlmsg_flags & NLM_F_EXCL ||
3558 !(nlh->nlmsg_flags & NLM_F_REPLACE))
3559 err = -EEXIST;
3560 else
Noriaki TAKAMIYA55ebaef2006-09-22 14:45:27 -07003561 err = inet6_addr_modify(ifa, ifa_flags, preferred_lft, valid_lft);
Thomas Graf7198f8c2006-09-18 00:13:46 -07003562
3563 in6_ifa_put(ifa);
3564
3565 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003566}
3567
Thomas Graf101bb222006-09-18 00:11:52 -07003568static void put_ifaddrmsg(struct nlmsghdr *nlh, u8 prefixlen, u8 flags,
3569 u8 scope, int ifindex)
3570{
3571 struct ifaddrmsg *ifm;
3572
3573 ifm = nlmsg_data(nlh);
3574 ifm->ifa_family = AF_INET6;
3575 ifm->ifa_prefixlen = prefixlen;
3576 ifm->ifa_flags = flags;
3577 ifm->ifa_scope = scope;
3578 ifm->ifa_index = ifindex;
3579}
3580
Thomas Graf85486af2006-09-18 00:11:24 -07003581static int put_cacheinfo(struct sk_buff *skb, unsigned long cstamp,
3582 unsigned long tstamp, u32 preferred, u32 valid)
3583{
3584 struct ifa_cacheinfo ci;
3585
Thomas Graf18a31e12010-11-17 04:12:02 +00003586 ci.cstamp = cstamp_delta(cstamp);
3587 ci.tstamp = cstamp_delta(tstamp);
Thomas Graf85486af2006-09-18 00:11:24 -07003588 ci.ifa_prefered = preferred;
3589 ci.ifa_valid = valid;
3590
3591 return nla_put(skb, IFA_CACHEINFO, sizeof(ci), &ci);
3592}
3593
Thomas Graf101bb222006-09-18 00:11:52 -07003594static inline int rt_scope(int ifa_scope)
3595{
3596 if (ifa_scope & IFA_HOST)
3597 return RT_SCOPE_HOST;
3598 else if (ifa_scope & IFA_LINK)
3599 return RT_SCOPE_LINK;
3600 else if (ifa_scope & IFA_SITE)
3601 return RT_SCOPE_SITE;
3602 else
3603 return RT_SCOPE_UNIVERSE;
3604}
3605
Thomas Graf0ab68032006-09-18 00:12:35 -07003606static inline int inet6_ifaddr_msgsize(void)
3607{
Thomas Graf339bf982006-11-10 14:10:15 -08003608 return NLMSG_ALIGN(sizeof(struct ifaddrmsg))
3609 + nla_total_size(16) /* IFA_ADDRESS */
3610 + nla_total_size(sizeof(struct ifa_cacheinfo));
Thomas Graf0ab68032006-09-18 00:12:35 -07003611}
YOSHIFUJI Hideakic5396a32006-06-17 22:48:48 -07003612
Linus Torvalds1da177e2005-04-16 15:20:36 -07003613static int inet6_fill_ifaddr(struct sk_buff *skb, struct inet6_ifaddr *ifa,
Eric W. Biederman15e47302012-09-07 20:12:54 +00003614 u32 portid, u32 seq, int event, unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003615{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003616 struct nlmsghdr *nlh;
Thomas Graf85486af2006-09-18 00:11:24 -07003617 u32 preferred, valid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003618
Eric W. Biederman15e47302012-09-07 20:12:54 +00003619 nlh = nlmsg_put(skb, portid, seq, event, sizeof(struct ifaddrmsg), flags);
Thomas Graf0ab68032006-09-18 00:12:35 -07003620 if (nlh == NULL)
Patrick McHardy26932562007-01-31 23:16:40 -08003621 return -EMSGSIZE;
Thomas Graf0ab68032006-09-18 00:12:35 -07003622
Thomas Graf101bb222006-09-18 00:11:52 -07003623 put_ifaddrmsg(nlh, ifa->prefix_len, ifa->flags, rt_scope(ifa->scope),
3624 ifa->idev->dev->ifindex);
3625
Linus Torvalds1da177e2005-04-16 15:20:36 -07003626 if (!(ifa->flags&IFA_F_PERMANENT)) {
Thomas Graf85486af2006-09-18 00:11:24 -07003627 preferred = ifa->prefered_lft;
3628 valid = ifa->valid_lft;
3629 if (preferred != INFINITY_LIFE_TIME) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003630 long tval = (jiffies - ifa->tstamp)/HZ;
Jens Rosenbooma1faa692009-06-25 04:55:50 +00003631 if (preferred > tval)
3632 preferred -= tval;
3633 else
3634 preferred = 0;
Ben Hutchingsf56619f2010-06-26 11:37:47 +00003635 if (valid != INFINITY_LIFE_TIME) {
3636 if (valid > tval)
3637 valid -= tval;
3638 else
3639 valid = 0;
3640 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003641 }
3642 } else {
Thomas Graf85486af2006-09-18 00:11:24 -07003643 preferred = INFINITY_LIFE_TIME;
3644 valid = INFINITY_LIFE_TIME;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003645 }
Thomas Graf85486af2006-09-18 00:11:24 -07003646
Thomas Graf0ab68032006-09-18 00:12:35 -07003647 if (nla_put(skb, IFA_ADDRESS, 16, &ifa->addr) < 0 ||
Patrick McHardy26932562007-01-31 23:16:40 -08003648 put_cacheinfo(skb, ifa->cstamp, ifa->tstamp, preferred, valid) < 0) {
3649 nlmsg_cancel(skb, nlh);
3650 return -EMSGSIZE;
3651 }
Thomas Graf85486af2006-09-18 00:11:24 -07003652
Thomas Graf0ab68032006-09-18 00:12:35 -07003653 return nlmsg_end(skb, nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003654}
3655
3656static int inet6_fill_ifmcaddr(struct sk_buff *skb, struct ifmcaddr6 *ifmca,
Eric W. Biederman15e47302012-09-07 20:12:54 +00003657 u32 portid, u32 seq, int event, u16 flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003658{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003659 struct nlmsghdr *nlh;
Thomas Graf101bb222006-09-18 00:11:52 -07003660 u8 scope = RT_SCOPE_UNIVERSE;
3661 int ifindex = ifmca->idev->dev->ifindex;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003662
Thomas Graf101bb222006-09-18 00:11:52 -07003663 if (ipv6_addr_scope(&ifmca->mca_addr) & IFA_SITE)
3664 scope = RT_SCOPE_SITE;
3665
Eric W. Biederman15e47302012-09-07 20:12:54 +00003666 nlh = nlmsg_put(skb, portid, seq, event, sizeof(struct ifaddrmsg), flags);
Thomas Graf0ab68032006-09-18 00:12:35 -07003667 if (nlh == NULL)
Patrick McHardy26932562007-01-31 23:16:40 -08003668 return -EMSGSIZE;
Thomas Graf0ab68032006-09-18 00:12:35 -07003669
Thomas Graf101bb222006-09-18 00:11:52 -07003670 put_ifaddrmsg(nlh, 128, IFA_F_PERMANENT, scope, ifindex);
Thomas Graf0ab68032006-09-18 00:12:35 -07003671 if (nla_put(skb, IFA_MULTICAST, 16, &ifmca->mca_addr) < 0 ||
3672 put_cacheinfo(skb, ifmca->mca_cstamp, ifmca->mca_tstamp,
Patrick McHardy26932562007-01-31 23:16:40 -08003673 INFINITY_LIFE_TIME, INFINITY_LIFE_TIME) < 0) {
3674 nlmsg_cancel(skb, nlh);
3675 return -EMSGSIZE;
3676 }
Thomas Graf85486af2006-09-18 00:11:24 -07003677
Thomas Graf0ab68032006-09-18 00:12:35 -07003678 return nlmsg_end(skb, nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003679}
3680
3681static int inet6_fill_ifacaddr(struct sk_buff *skb, struct ifacaddr6 *ifaca,
Eric W. Biederman15e47302012-09-07 20:12:54 +00003682 u32 portid, u32 seq, int event, unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003683{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003684 struct nlmsghdr *nlh;
Thomas Graf101bb222006-09-18 00:11:52 -07003685 u8 scope = RT_SCOPE_UNIVERSE;
3686 int ifindex = ifaca->aca_idev->dev->ifindex;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003687
Thomas Graf101bb222006-09-18 00:11:52 -07003688 if (ipv6_addr_scope(&ifaca->aca_addr) & IFA_SITE)
3689 scope = RT_SCOPE_SITE;
3690
Eric W. Biederman15e47302012-09-07 20:12:54 +00003691 nlh = nlmsg_put(skb, portid, seq, event, sizeof(struct ifaddrmsg), flags);
Thomas Graf0ab68032006-09-18 00:12:35 -07003692 if (nlh == NULL)
Patrick McHardy26932562007-01-31 23:16:40 -08003693 return -EMSGSIZE;
Thomas Graf0ab68032006-09-18 00:12:35 -07003694
Thomas Graf101bb222006-09-18 00:11:52 -07003695 put_ifaddrmsg(nlh, 128, IFA_F_PERMANENT, scope, ifindex);
Thomas Graf0ab68032006-09-18 00:12:35 -07003696 if (nla_put(skb, IFA_ANYCAST, 16, &ifaca->aca_addr) < 0 ||
3697 put_cacheinfo(skb, ifaca->aca_cstamp, ifaca->aca_tstamp,
Patrick McHardy26932562007-01-31 23:16:40 -08003698 INFINITY_LIFE_TIME, INFINITY_LIFE_TIME) < 0) {
3699 nlmsg_cancel(skb, nlh);
3700 return -EMSGSIZE;
3701 }
Thomas Graf85486af2006-09-18 00:11:24 -07003702
Thomas Graf0ab68032006-09-18 00:12:35 -07003703 return nlmsg_end(skb, nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003704}
3705
Stephen Hemmingere21e8462010-03-20 16:09:01 -07003706enum addr_type_t {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003707 UNICAST_ADDR,
3708 MULTICAST_ADDR,
3709 ANYCAST_ADDR,
3710};
3711
Eric Dumazet234b27c2009-11-12 04:11:50 +00003712/* called with rcu_read_lock() */
3713static int in6_dump_addrs(struct inet6_dev *idev, struct sk_buff *skb,
3714 struct netlink_callback *cb, enum addr_type_t type,
3715 int s_ip_idx, int *p_ip_idx)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003716{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003717 struct ifmcaddr6 *ifmca;
3718 struct ifacaddr6 *ifaca;
Eric Dumazet234b27c2009-11-12 04:11:50 +00003719 int err = 1;
3720 int ip_idx = *p_ip_idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003721
Eric Dumazet234b27c2009-11-12 04:11:50 +00003722 read_lock_bh(&idev->lock);
3723 switch (type) {
stephen hemminger502a2ff2010-03-17 20:31:13 +00003724 case UNICAST_ADDR: {
3725 struct inet6_ifaddr *ifa;
3726
Eric Dumazet234b27c2009-11-12 04:11:50 +00003727 /* unicast address incl. temp addr */
stephen hemminger502a2ff2010-03-17 20:31:13 +00003728 list_for_each_entry(ifa, &idev->addr_list, if_list) {
3729 if (++ip_idx < s_ip_idx)
Eric Dumazet234b27c2009-11-12 04:11:50 +00003730 continue;
3731 err = inet6_fill_ifaddr(skb, ifa,
Eric W. Biederman15e47302012-09-07 20:12:54 +00003732 NETLINK_CB(cb->skb).portid,
Eric Dumazet234b27c2009-11-12 04:11:50 +00003733 cb->nlh->nlmsg_seq,
3734 RTM_NEWADDR,
3735 NLM_F_MULTI);
3736 if (err <= 0)
3737 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003738 }
Eric Dumazet234b27c2009-11-12 04:11:50 +00003739 break;
stephen hemminger502a2ff2010-03-17 20:31:13 +00003740 }
Eric Dumazet234b27c2009-11-12 04:11:50 +00003741 case MULTICAST_ADDR:
3742 /* multicast address */
3743 for (ifmca = idev->mc_list; ifmca;
3744 ifmca = ifmca->next, ip_idx++) {
3745 if (ip_idx < s_ip_idx)
3746 continue;
3747 err = inet6_fill_ifmcaddr(skb, ifmca,
Eric W. Biederman15e47302012-09-07 20:12:54 +00003748 NETLINK_CB(cb->skb).portid,
Eric Dumazet234b27c2009-11-12 04:11:50 +00003749 cb->nlh->nlmsg_seq,
3750 RTM_GETMULTICAST,
3751 NLM_F_MULTI);
3752 if (err <= 0)
3753 break;
3754 }
3755 break;
3756 case ANYCAST_ADDR:
3757 /* anycast address */
3758 for (ifaca = idev->ac_list; ifaca;
3759 ifaca = ifaca->aca_next, ip_idx++) {
3760 if (ip_idx < s_ip_idx)
3761 continue;
3762 err = inet6_fill_ifacaddr(skb, ifaca,
Eric W. Biederman15e47302012-09-07 20:12:54 +00003763 NETLINK_CB(cb->skb).portid,
Eric Dumazet234b27c2009-11-12 04:11:50 +00003764 cb->nlh->nlmsg_seq,
3765 RTM_GETANYCAST,
3766 NLM_F_MULTI);
3767 if (err <= 0)
3768 break;
3769 }
3770 break;
3771 default:
3772 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003773 }
Eric Dumazet234b27c2009-11-12 04:11:50 +00003774 read_unlock_bh(&idev->lock);
3775 *p_ip_idx = ip_idx;
3776 return err;
3777}
3778
3779static int inet6_dump_addr(struct sk_buff *skb, struct netlink_callback *cb,
3780 enum addr_type_t type)
3781{
3782 struct net *net = sock_net(skb->sk);
3783 int h, s_h;
3784 int idx, ip_idx;
3785 int s_idx, s_ip_idx;
3786 struct net_device *dev;
3787 struct inet6_dev *idev;
3788 struct hlist_head *head;
3789 struct hlist_node *node;
3790
3791 s_h = cb->args[0];
3792 s_idx = idx = cb->args[1];
3793 s_ip_idx = ip_idx = cb->args[2];
3794
3795 rcu_read_lock();
3796 for (h = s_h; h < NETDEV_HASHENTRIES; h++, s_idx = 0) {
3797 idx = 0;
3798 head = &net->dev_index_head[h];
3799 hlist_for_each_entry_rcu(dev, node, head, index_hlist) {
3800 if (idx < s_idx)
3801 goto cont;
Patrick McHardy4b97efd2010-03-26 20:27:49 -07003802 if (h > s_h || idx > s_idx)
Eric Dumazet234b27c2009-11-12 04:11:50 +00003803 s_ip_idx = 0;
3804 ip_idx = 0;
Stephen Hemmingere21e8462010-03-20 16:09:01 -07003805 idev = __in6_dev_get(dev);
3806 if (!idev)
Eric Dumazet234b27c2009-11-12 04:11:50 +00003807 goto cont;
3808
3809 if (in6_dump_addrs(idev, skb, cb, type,
3810 s_ip_idx, &ip_idx) <= 0)
3811 goto done;
3812cont:
3813 idx++;
3814 }
3815 }
3816done:
3817 rcu_read_unlock();
3818 cb->args[0] = h;
3819 cb->args[1] = idx;
3820 cb->args[2] = ip_idx;
3821
Linus Torvalds1da177e2005-04-16 15:20:36 -07003822 return skb->len;
3823}
3824
3825static int inet6_dump_ifaddr(struct sk_buff *skb, struct netlink_callback *cb)
3826{
3827 enum addr_type_t type = UNICAST_ADDR;
Denis V. Lunevb8542722007-12-01 00:21:31 +11003828
Linus Torvalds1da177e2005-04-16 15:20:36 -07003829 return inet6_dump_addr(skb, cb, type);
3830}
3831
3832static int inet6_dump_ifmcaddr(struct sk_buff *skb, struct netlink_callback *cb)
3833{
3834 enum addr_type_t type = MULTICAST_ADDR;
Denis V. Lunevb8542722007-12-01 00:21:31 +11003835
Linus Torvalds1da177e2005-04-16 15:20:36 -07003836 return inet6_dump_addr(skb, cb, type);
3837}
3838
3839
3840static int inet6_dump_ifacaddr(struct sk_buff *skb, struct netlink_callback *cb)
3841{
3842 enum addr_type_t type = ANYCAST_ADDR;
Denis V. Lunevb8542722007-12-01 00:21:31 +11003843
Linus Torvalds1da177e2005-04-16 15:20:36 -07003844 return inet6_dump_addr(skb, cb, type);
3845}
3846
Eldad Zack8e5e8f32012-04-01 07:49:08 +00003847static int inet6_rtm_getaddr(struct sk_buff *in_skb, struct nlmsghdr *nlh,
Thomas Graf1b29fc22006-09-18 00:10:50 -07003848 void *arg)
Noriaki TAKAMIYA6c223822006-07-28 18:12:12 +09003849{
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09003850 struct net *net = sock_net(in_skb->sk);
Thomas Graf1b29fc22006-09-18 00:10:50 -07003851 struct ifaddrmsg *ifm;
3852 struct nlattr *tb[IFA_MAX+1];
Noriaki TAKAMIYA6c223822006-07-28 18:12:12 +09003853 struct in6_addr *addr = NULL;
3854 struct net_device *dev = NULL;
3855 struct inet6_ifaddr *ifa;
3856 struct sk_buff *skb;
Noriaki TAKAMIYA6c223822006-07-28 18:12:12 +09003857 int err;
3858
Thomas Graf1b29fc22006-09-18 00:10:50 -07003859 err = nlmsg_parse(nlh, sizeof(*ifm), tb, IFA_MAX, ifa_ipv6_policy);
3860 if (err < 0)
3861 goto errout;
Noriaki TAKAMIYA6c223822006-07-28 18:12:12 +09003862
Thomas Graf1b29fc22006-09-18 00:10:50 -07003863 addr = extract_addr(tb[IFA_ADDRESS], tb[IFA_LOCAL]);
3864 if (addr == NULL) {
3865 err = -EINVAL;
3866 goto errout;
3867 }
3868
3869 ifm = nlmsg_data(nlh);
Noriaki TAKAMIYA6c223822006-07-28 18:12:12 +09003870 if (ifm->ifa_index)
Benjamin Thery6fda7352008-03-05 10:47:47 -08003871 dev = __dev_get_by_index(net, ifm->ifa_index);
Noriaki TAKAMIYA6c223822006-07-28 18:12:12 +09003872
Stephen Hemmingere21e8462010-03-20 16:09:01 -07003873 ifa = ipv6_get_ifaddr(net, addr, dev, 1);
3874 if (!ifa) {
Thomas Graf1b29fc22006-09-18 00:10:50 -07003875 err = -EADDRNOTAVAIL;
3876 goto errout;
Noriaki TAKAMIYA6c223822006-07-28 18:12:12 +09003877 }
3878
Stephen Hemmingere21e8462010-03-20 16:09:01 -07003879 skb = nlmsg_new(inet6_ifaddr_msgsize(), GFP_KERNEL);
3880 if (!skb) {
Thomas Graf1b29fc22006-09-18 00:10:50 -07003881 err = -ENOBUFS;
3882 goto errout_ifa;
3883 }
3884
Eric W. Biederman15e47302012-09-07 20:12:54 +00003885 err = inet6_fill_ifaddr(skb, ifa, NETLINK_CB(in_skb).portid,
Noriaki TAKAMIYA6c223822006-07-28 18:12:12 +09003886 nlh->nlmsg_seq, RTM_NEWADDR, 0);
Patrick McHardy26932562007-01-31 23:16:40 -08003887 if (err < 0) {
3888 /* -EMSGSIZE implies BUG in inet6_ifaddr_msgsize() */
3889 WARN_ON(err == -EMSGSIZE);
3890 kfree_skb(skb);
3891 goto errout_ifa;
3892 }
Eric W. Biederman15e47302012-09-07 20:12:54 +00003893 err = rtnl_unicast(skb, net, NETLINK_CB(in_skb).portid);
Thomas Graf1b29fc22006-09-18 00:10:50 -07003894errout_ifa:
Noriaki TAKAMIYA6c223822006-07-28 18:12:12 +09003895 in6_ifa_put(ifa);
Thomas Graf1b29fc22006-09-18 00:10:50 -07003896errout:
Noriaki TAKAMIYA6c223822006-07-28 18:12:12 +09003897 return err;
Noriaki TAKAMIYA6c223822006-07-28 18:12:12 +09003898}
3899
Linus Torvalds1da177e2005-04-16 15:20:36 -07003900static void inet6_ifa_notify(int event, struct inet6_ifaddr *ifa)
3901{
3902 struct sk_buff *skb;
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09003903 struct net *net = dev_net(ifa->idev->dev);
Thomas Graf5d620262006-08-15 00:35:02 -07003904 int err = -ENOBUFS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003905
Thomas Graf0ab68032006-09-18 00:12:35 -07003906 skb = nlmsg_new(inet6_ifaddr_msgsize(), GFP_ATOMIC);
Thomas Graf5d620262006-08-15 00:35:02 -07003907 if (skb == NULL)
3908 goto errout;
3909
3910 err = inet6_fill_ifaddr(skb, ifa, 0, 0, event, 0);
Patrick McHardy26932562007-01-31 23:16:40 -08003911 if (err < 0) {
3912 /* -EMSGSIZE implies BUG in inet6_ifaddr_msgsize() */
3913 WARN_ON(err == -EMSGSIZE);
3914 kfree_skb(skb);
3915 goto errout;
3916 }
Pablo Neira Ayuso1ce85fe2009-02-24 23:18:28 -08003917 rtnl_notify(skb, net, 0, RTNLGRP_IPV6_IFADDR, NULL, GFP_ATOMIC);
3918 return;
Thomas Graf5d620262006-08-15 00:35:02 -07003919errout:
3920 if (err < 0)
Benjamin Thery6fda7352008-03-05 10:47:47 -08003921 rtnl_set_sk_err(net, RTNLGRP_IPV6_IFADDR, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003922}
3923
Dave Jonesb6f99a22007-03-22 12:27:49 -07003924static inline void ipv6_store_devconf(struct ipv6_devconf *cnf,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003925 __s32 *array, int bytes)
3926{
Thomas Graf04561c12006-11-14 19:53:58 -08003927 BUG_ON(bytes < (DEVCONF_MAX * 4));
3928
Linus Torvalds1da177e2005-04-16 15:20:36 -07003929 memset(array, 0, bytes);
3930 array[DEVCONF_FORWARDING] = cnf->forwarding;
3931 array[DEVCONF_HOPLIMIT] = cnf->hop_limit;
3932 array[DEVCONF_MTU6] = cnf->mtu6;
3933 array[DEVCONF_ACCEPT_RA] = cnf->accept_ra;
3934 array[DEVCONF_ACCEPT_REDIRECTS] = cnf->accept_redirects;
3935 array[DEVCONF_AUTOCONF] = cnf->autoconf;
3936 array[DEVCONF_DAD_TRANSMITS] = cnf->dad_transmits;
3937 array[DEVCONF_RTR_SOLICITS] = cnf->rtr_solicits;
Thomas Graf93908d12010-11-17 01:44:24 +00003938 array[DEVCONF_RTR_SOLICIT_INTERVAL] =
3939 jiffies_to_msecs(cnf->rtr_solicit_interval);
3940 array[DEVCONF_RTR_SOLICIT_DELAY] =
3941 jiffies_to_msecs(cnf->rtr_solicit_delay);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003942 array[DEVCONF_FORCE_MLD_VERSION] = cnf->force_mld_version;
3943#ifdef CONFIG_IPV6_PRIVACY
3944 array[DEVCONF_USE_TEMPADDR] = cnf->use_tempaddr;
3945 array[DEVCONF_TEMP_VALID_LFT] = cnf->temp_valid_lft;
3946 array[DEVCONF_TEMP_PREFERED_LFT] = cnf->temp_prefered_lft;
3947 array[DEVCONF_REGEN_MAX_RETRY] = cnf->regen_max_retry;
3948 array[DEVCONF_MAX_DESYNC_FACTOR] = cnf->max_desync_factor;
3949#endif
3950 array[DEVCONF_MAX_ADDRESSES] = cnf->max_addresses;
YOSHIFUJI Hideaki65f5c7c2006-03-20 16:55:08 -08003951 array[DEVCONF_ACCEPT_RA_DEFRTR] = cnf->accept_ra_defrtr;
YOSHIFUJI Hideakic4fd30e2006-03-20 16:55:26 -08003952 array[DEVCONF_ACCEPT_RA_PINFO] = cnf->accept_ra_pinfo;
YOSHIFUJI Hideaki930d6ff2006-03-20 17:05:30 -08003953#ifdef CONFIG_IPV6_ROUTER_PREF
3954 array[DEVCONF_ACCEPT_RA_RTR_PREF] = cnf->accept_ra_rtr_pref;
Thomas Graf93908d12010-11-17 01:44:24 +00003955 array[DEVCONF_RTR_PROBE_INTERVAL] =
3956 jiffies_to_msecs(cnf->rtr_probe_interval);
Neil Hormanfa03ef32007-01-30 14:30:10 -08003957#ifdef CONFIG_IPV6_ROUTE_INFO
YOSHIFUJI Hideaki09c884d2006-03-20 17:07:03 -08003958 array[DEVCONF_ACCEPT_RA_RT_INFO_MAX_PLEN] = cnf->accept_ra_rt_info_max_plen;
3959#endif
YOSHIFUJI Hideaki930d6ff2006-03-20 17:05:30 -08003960#endif
YOSHIFUJI Hideakifbea49e2006-09-22 14:43:49 -07003961 array[DEVCONF_PROXY_NDP] = cnf->proxy_ndp;
YOSHIFUJI Hideaki0bcbc922007-04-24 14:58:30 -07003962 array[DEVCONF_ACCEPT_SOURCE_ROUTE] = cnf->accept_source_route;
Neil Horman95c385b2007-04-25 17:08:10 -07003963#ifdef CONFIG_IPV6_OPTIMISTIC_DAD
3964 array[DEVCONF_OPTIMISTIC_DAD] = cnf->optimistic_dad;
3965#endif
YOSHIFUJI Hideaki7bc570c2008-04-03 09:22:53 +09003966#ifdef CONFIG_IPV6_MROUTE
3967 array[DEVCONF_MC_FORWARDING] = cnf->mc_forwarding;
3968#endif
YOSHIFUJI Hideaki778d80b2008-06-28 14:17:11 +09003969 array[DEVCONF_DISABLE_IPV6] = cnf->disable_ipv6;
YOSHIFUJI Hideaki1b34be72008-06-28 14:18:38 +09003970 array[DEVCONF_ACCEPT_DAD] = cnf->accept_dad;
Cosmin Ratiuc3faca02009-10-09 03:11:14 +00003971 array[DEVCONF_FORCE_TLLAO] = cnf->force_tllao;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003972}
3973
Thomas Grafb382b192010-11-16 04:33:57 +00003974static inline size_t inet6_ifla6_size(void)
3975{
3976 return nla_total_size(4) /* IFLA_INET6_FLAGS */
3977 + nla_total_size(sizeof(struct ifla_cacheinfo))
3978 + nla_total_size(DEVCONF_MAX * 4) /* IFLA_INET6_CONF */
3979 + nla_total_size(IPSTATS_MIB_MAX * 8) /* IFLA_INET6_STATS */
3980 + nla_total_size(ICMP6_MIB_MAX * 8); /* IFLA_INET6_ICMP6STATS */
3981}
3982
Thomas Graf339bf982006-11-10 14:10:15 -08003983static inline size_t inet6_if_nlmsg_size(void)
3984{
3985 return NLMSG_ALIGN(sizeof(struct ifinfomsg))
3986 + nla_total_size(IFNAMSIZ) /* IFLA_IFNAME */
3987 + nla_total_size(MAX_ADDR_LEN) /* IFLA_ADDRESS */
3988 + nla_total_size(4) /* IFLA_MTU */
3989 + nla_total_size(4) /* IFLA_LINK */
Thomas Grafb382b192010-11-16 04:33:57 +00003990 + nla_total_size(inet6_ifla6_size()); /* IFLA_PROTINFO */
Thomas Graf339bf982006-11-10 14:10:15 -08003991}
YOSHIFUJI Hideakic5396a32006-06-17 22:48:48 -07003992
Eric Dumazetbe281e52011-05-19 01:14:23 +00003993static inline void __snmp6_fill_statsdev(u64 *stats, atomic_long_t *mib,
Tejun Heo7d720c32010-02-16 15:20:26 +00003994 int items, int bytes)
Herbert Xu7f7d9a62007-04-24 21:54:09 -07003995{
3996 int i;
3997 int pad = bytes - sizeof(u64) * items;
3998 BUG_ON(pad < 0);
3999
4000 /* Use put_unaligned() because stats may not be aligned for u64. */
4001 put_unaligned(items, &stats[0]);
4002 for (i = 1; i < items; i++)
Eric Dumazetbe281e52011-05-19 01:14:23 +00004003 put_unaligned(atomic_long_read(&mib[i]), &stats[i]);
Herbert Xu7f7d9a62007-04-24 21:54:09 -07004004
4005 memset(&stats[items], 0, pad);
4006}
4007
Eric Dumazet4ce3c182010-06-30 13:31:19 -07004008static inline void __snmp6_fill_stats64(u64 *stats, void __percpu **mib,
4009 int items, int bytes, size_t syncpoff)
4010{
4011 int i;
4012 int pad = bytes - sizeof(u64) * items;
4013 BUG_ON(pad < 0);
4014
4015 /* Use put_unaligned() because stats may not be aligned for u64. */
4016 put_unaligned(items, &stats[0]);
4017 for (i = 1; i < items; i++)
4018 put_unaligned(snmp_fold_field64(mib, i, syncpoff), &stats[i]);
4019
4020 memset(&stats[items], 0, pad);
4021}
4022
Herbert Xu7f7d9a62007-04-24 21:54:09 -07004023static void snmp6_fill_stats(u64 *stats, struct inet6_dev *idev, int attrtype,
4024 int bytes)
4025{
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004026 switch (attrtype) {
Herbert Xu7f7d9a62007-04-24 21:54:09 -07004027 case IFLA_INET6_STATS:
Eric Dumazet4ce3c182010-06-30 13:31:19 -07004028 __snmp6_fill_stats64(stats, (void __percpu **)idev->stats.ipv6,
4029 IPSTATS_MIB_MAX, bytes, offsetof(struct ipstats_mib, syncp));
Herbert Xu7f7d9a62007-04-24 21:54:09 -07004030 break;
4031 case IFLA_INET6_ICMP6STATS:
Eric Dumazetbe281e52011-05-19 01:14:23 +00004032 __snmp6_fill_statsdev(stats, idev->stats.icmpv6dev->mibs, ICMP6_MIB_MAX, bytes);
Herbert Xu7f7d9a62007-04-24 21:54:09 -07004033 break;
4034 }
4035}
4036
Thomas Grafb382b192010-11-16 04:33:57 +00004037static int inet6_fill_ifla6_attrs(struct sk_buff *skb, struct inet6_dev *idev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004038{
YOSHIFUJI Hideakibf99f1b2007-04-20 15:56:20 -07004039 struct nlattr *nla;
Thomas Graf04561c12006-11-14 19:53:58 -08004040 struct ifla_cacheinfo ci;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004041
David S. Millerc78679e2012-04-01 20:27:33 -04004042 if (nla_put_u32(skb, IFLA_INET6_FLAGS, idev->if_flags))
4043 goto nla_put_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004044 ci.max_reasm_len = IPV6_MAXPLEN;
David S. Miller24912422010-11-19 13:13:47 -08004045 ci.tstamp = cstamp_delta(idev->tstamp);
4046 ci.reachable_time = jiffies_to_msecs(idev->nd_parms->reachable_time);
4047 ci.retrans_time = jiffies_to_msecs(idev->nd_parms->retrans_time);
David S. Millerc78679e2012-04-01 20:27:33 -04004048 if (nla_put(skb, IFLA_INET6_CACHEINFO, sizeof(ci), &ci))
4049 goto nla_put_failure;
YOSHIFUJI Hideakibf99f1b2007-04-20 15:56:20 -07004050 nla = nla_reserve(skb, IFLA_INET6_CONF, DEVCONF_MAX * sizeof(s32));
4051 if (nla == NULL)
Thomas Graf04561c12006-11-14 19:53:58 -08004052 goto nla_put_failure;
YOSHIFUJI Hideakibf99f1b2007-04-20 15:56:20 -07004053 ipv6_store_devconf(&idev->cnf, nla_data(nla), nla_len(nla));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004054
YOSHIFUJI Hideakibf99f1b2007-04-20 15:56:20 -07004055 /* XXX - MC not implemented */
4056
4057 nla = nla_reserve(skb, IFLA_INET6_STATS, IPSTATS_MIB_MAX * sizeof(u64));
4058 if (nla == NULL)
4059 goto nla_put_failure;
4060 snmp6_fill_stats(nla_data(nla), idev, IFLA_INET6_STATS, nla_len(nla));
4061
4062 nla = nla_reserve(skb, IFLA_INET6_ICMP6STATS, ICMP6_MIB_MAX * sizeof(u64));
4063 if (nla == NULL)
4064 goto nla_put_failure;
4065 snmp6_fill_stats(nla_data(nla), idev, IFLA_INET6_ICMP6STATS, nla_len(nla));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004066
Thomas Grafb382b192010-11-16 04:33:57 +00004067 return 0;
4068
4069nla_put_failure:
4070 return -EMSGSIZE;
4071}
4072
4073static size_t inet6_get_link_af_size(const struct net_device *dev)
4074{
4075 if (!__in6_dev_get(dev))
4076 return 0;
4077
4078 return inet6_ifla6_size();
4079}
4080
4081static int inet6_fill_link_af(struct sk_buff *skb, const struct net_device *dev)
4082{
4083 struct inet6_dev *idev = __in6_dev_get(dev);
4084
4085 if (!idev)
4086 return -ENODATA;
4087
4088 if (inet6_fill_ifla6_attrs(skb, idev) < 0)
4089 return -EMSGSIZE;
4090
4091 return 0;
4092}
4093
Thomas Grafb382b192010-11-16 04:33:57 +00004094static int inet6_fill_ifinfo(struct sk_buff *skb, struct inet6_dev *idev,
Eric W. Biederman15e47302012-09-07 20:12:54 +00004095 u32 portid, u32 seq, int event, unsigned int flags)
Thomas Grafb382b192010-11-16 04:33:57 +00004096{
4097 struct net_device *dev = idev->dev;
4098 struct ifinfomsg *hdr;
4099 struct nlmsghdr *nlh;
4100 void *protoinfo;
4101
Eric W. Biederman15e47302012-09-07 20:12:54 +00004102 nlh = nlmsg_put(skb, portid, seq, event, sizeof(*hdr), flags);
Thomas Grafb382b192010-11-16 04:33:57 +00004103 if (nlh == NULL)
4104 return -EMSGSIZE;
4105
4106 hdr = nlmsg_data(nlh);
4107 hdr->ifi_family = AF_INET6;
4108 hdr->__ifi_pad = 0;
4109 hdr->ifi_type = dev->type;
4110 hdr->ifi_index = dev->ifindex;
4111 hdr->ifi_flags = dev_get_flags(dev);
4112 hdr->ifi_change = 0;
4113
David S. Millerc78679e2012-04-01 20:27:33 -04004114 if (nla_put_string(skb, IFLA_IFNAME, dev->name) ||
4115 (dev->addr_len &&
4116 nla_put(skb, IFLA_ADDRESS, dev->addr_len, dev->dev_addr)) ||
4117 nla_put_u32(skb, IFLA_MTU, dev->mtu) ||
4118 (dev->ifindex != dev->iflink &&
4119 nla_put_u32(skb, IFLA_LINK, dev->iflink)))
4120 goto nla_put_failure;
Thomas Grafb382b192010-11-16 04:33:57 +00004121 protoinfo = nla_nest_start(skb, IFLA_PROTINFO);
4122 if (protoinfo == NULL)
4123 goto nla_put_failure;
4124
4125 if (inet6_fill_ifla6_attrs(skb, idev) < 0)
4126 goto nla_put_failure;
4127
Thomas Graf04561c12006-11-14 19:53:58 -08004128 nla_nest_end(skb, protoinfo);
4129 return nlmsg_end(skb, nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004130
Thomas Graf04561c12006-11-14 19:53:58 -08004131nla_put_failure:
Patrick McHardy26932562007-01-31 23:16:40 -08004132 nlmsg_cancel(skb, nlh);
4133 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004134}
4135
4136static int inet6_dump_ifinfo(struct sk_buff *skb, struct netlink_callback *cb)
4137{
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09004138 struct net *net = sock_net(skb->sk);
Eric Dumazet84d26972009-11-09 12:11:28 +00004139 int h, s_h;
David S. Miller434a8a52009-11-11 18:53:00 -08004140 int idx = 0, s_idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004141 struct net_device *dev;
4142 struct inet6_dev *idev;
Eric Dumazet84d26972009-11-09 12:11:28 +00004143 struct hlist_head *head;
4144 struct hlist_node *node;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004145
Eric Dumazet84d26972009-11-09 12:11:28 +00004146 s_h = cb->args[0];
4147 s_idx = cb->args[1];
4148
4149 rcu_read_lock();
4150 for (h = s_h; h < NETDEV_HASHENTRIES; h++, s_idx = 0) {
4151 idx = 0;
4152 head = &net->dev_index_head[h];
4153 hlist_for_each_entry_rcu(dev, node, head, index_hlist) {
4154 if (idx < s_idx)
4155 goto cont;
4156 idev = __in6_dev_get(dev);
4157 if (!idev)
4158 goto cont;
4159 if (inet6_fill_ifinfo(skb, idev,
Eric W. Biederman15e47302012-09-07 20:12:54 +00004160 NETLINK_CB(cb->skb).portid,
Eric Dumazet84d26972009-11-09 12:11:28 +00004161 cb->nlh->nlmsg_seq,
4162 RTM_NEWLINK, NLM_F_MULTI) <= 0)
4163 goto out;
Pavel Emelianov7562f872007-05-03 15:13:45 -07004164cont:
Eric Dumazet84d26972009-11-09 12:11:28 +00004165 idx++;
4166 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004167 }
Eric Dumazet84d26972009-11-09 12:11:28 +00004168out:
4169 rcu_read_unlock();
4170 cb->args[1] = idx;
4171 cb->args[0] = h;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004172
4173 return skb->len;
4174}
4175
4176void inet6_ifinfo_notify(int event, struct inet6_dev *idev)
4177{
4178 struct sk_buff *skb;
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09004179 struct net *net = dev_net(idev->dev);
Thomas Graf8d7a76c2006-08-15 00:35:47 -07004180 int err = -ENOBUFS;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09004181
Thomas Graf339bf982006-11-10 14:10:15 -08004182 skb = nlmsg_new(inet6_if_nlmsg_size(), GFP_ATOMIC);
Thomas Graf8d7a76c2006-08-15 00:35:47 -07004183 if (skb == NULL)
4184 goto errout;
4185
4186 err = inet6_fill_ifinfo(skb, idev, 0, 0, event, 0);
Patrick McHardy26932562007-01-31 23:16:40 -08004187 if (err < 0) {
4188 /* -EMSGSIZE implies BUG in inet6_if_nlmsg_size() */
4189 WARN_ON(err == -EMSGSIZE);
4190 kfree_skb(skb);
4191 goto errout;
4192 }
Nicolas Dichtel5f75a102010-12-07 23:38:31 +00004193 rtnl_notify(skb, net, 0, RTNLGRP_IPV6_IFINFO, NULL, GFP_ATOMIC);
Pablo Neira Ayuso1ce85fe2009-02-24 23:18:28 -08004194 return;
Thomas Graf8d7a76c2006-08-15 00:35:47 -07004195errout:
4196 if (err < 0)
Nicolas Dichtel5f75a102010-12-07 23:38:31 +00004197 rtnl_set_sk_err(net, RTNLGRP_IPV6_IFINFO, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004198}
4199
Thomas Graf339bf982006-11-10 14:10:15 -08004200static inline size_t inet6_prefix_nlmsg_size(void)
4201{
4202 return NLMSG_ALIGN(sizeof(struct prefixmsg))
4203 + nla_total_size(sizeof(struct in6_addr))
4204 + nla_total_size(sizeof(struct prefix_cacheinfo));
4205}
YOSHIFUJI Hideakic5396a32006-06-17 22:48:48 -07004206
Linus Torvalds1da177e2005-04-16 15:20:36 -07004207static int inet6_fill_prefix(struct sk_buff *skb, struct inet6_dev *idev,
Eric W. Biederman15e47302012-09-07 20:12:54 +00004208 struct prefix_info *pinfo, u32 portid, u32 seq,
Thomas Graf6051e2f2006-11-14 19:54:19 -08004209 int event, unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004210{
Thomas Graf6051e2f2006-11-14 19:54:19 -08004211 struct prefixmsg *pmsg;
4212 struct nlmsghdr *nlh;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004213 struct prefix_cacheinfo ci;
4214
Eric W. Biederman15e47302012-09-07 20:12:54 +00004215 nlh = nlmsg_put(skb, portid, seq, event, sizeof(*pmsg), flags);
Thomas Graf6051e2f2006-11-14 19:54:19 -08004216 if (nlh == NULL)
Patrick McHardy26932562007-01-31 23:16:40 -08004217 return -EMSGSIZE;
Thomas Graf6051e2f2006-11-14 19:54:19 -08004218
4219 pmsg = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004220 pmsg->prefix_family = AF_INET6;
Patrick McHardy8a470772005-06-28 12:56:45 -07004221 pmsg->prefix_pad1 = 0;
4222 pmsg->prefix_pad2 = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004223 pmsg->prefix_ifindex = idev->dev->ifindex;
4224 pmsg->prefix_len = pinfo->prefix_len;
4225 pmsg->prefix_type = pinfo->type;
Patrick McHardy8a470772005-06-28 12:56:45 -07004226 pmsg->prefix_pad3 = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004227 pmsg->prefix_flags = 0;
4228 if (pinfo->onlink)
4229 pmsg->prefix_flags |= IF_PREFIX_ONLINK;
4230 if (pinfo->autoconf)
4231 pmsg->prefix_flags |= IF_PREFIX_AUTOCONF;
4232
David S. Millerc78679e2012-04-01 20:27:33 -04004233 if (nla_put(skb, PREFIX_ADDRESS, sizeof(pinfo->prefix), &pinfo->prefix))
4234 goto nla_put_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004235 ci.preferred_time = ntohl(pinfo->prefered);
4236 ci.valid_time = ntohl(pinfo->valid);
David S. Millerc78679e2012-04-01 20:27:33 -04004237 if (nla_put(skb, PREFIX_CACHEINFO, sizeof(ci), &ci))
4238 goto nla_put_failure;
Thomas Graf6051e2f2006-11-14 19:54:19 -08004239 return nlmsg_end(skb, nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004240
Thomas Graf6051e2f2006-11-14 19:54:19 -08004241nla_put_failure:
Patrick McHardy26932562007-01-31 23:16:40 -08004242 nlmsg_cancel(skb, nlh);
4243 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004244}
4245
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09004246static void inet6_prefix_notify(int event, struct inet6_dev *idev,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004247 struct prefix_info *pinfo)
4248{
4249 struct sk_buff *skb;
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09004250 struct net *net = dev_net(idev->dev);
Thomas Graf8c384bfa2006-08-15 00:36:07 -07004251 int err = -ENOBUFS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004252
Thomas Graf339bf982006-11-10 14:10:15 -08004253 skb = nlmsg_new(inet6_prefix_nlmsg_size(), GFP_ATOMIC);
Thomas Graf8c384bfa2006-08-15 00:36:07 -07004254 if (skb == NULL)
4255 goto errout;
4256
4257 err = inet6_fill_prefix(skb, idev, pinfo, 0, 0, event, 0);
Patrick McHardy26932562007-01-31 23:16:40 -08004258 if (err < 0) {
4259 /* -EMSGSIZE implies BUG in inet6_prefix_nlmsg_size() */
4260 WARN_ON(err == -EMSGSIZE);
4261 kfree_skb(skb);
4262 goto errout;
4263 }
Pablo Neira Ayuso1ce85fe2009-02-24 23:18:28 -08004264 rtnl_notify(skb, net, 0, RTNLGRP_IPV6_PREFIX, NULL, GFP_ATOMIC);
4265 return;
Thomas Graf8c384bfa2006-08-15 00:36:07 -07004266errout:
4267 if (err < 0)
Benjamin Thery6fda7352008-03-05 10:47:47 -08004268 rtnl_set_sk_err(net, RTNLGRP_IPV6_PREFIX, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004269}
4270
Linus Torvalds1da177e2005-04-16 15:20:36 -07004271static void __ipv6_ifa_notify(int event, struct inet6_ifaddr *ifp)
4272{
4273 inet6_ifa_notify(event ? : RTM_NEWADDR, ifp);
4274
4275 switch (event) {
4276 case RTM_NEWADDR:
Neil Horman95c385b2007-04-25 17:08:10 -07004277 /*
4278 * If the address was optimistic
4279 * we inserted the route at the start of
4280 * our DAD process, so we don't need
4281 * to do it again
4282 */
4283 if (!(ifp->rt->rt6i_node))
4284 ip6_ins_rt(ifp->rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004285 if (ifp->idev->cnf.forwarding)
4286 addrconf_join_anycast(ifp);
4287 break;
4288 case RTM_DELADDR:
4289 if (ifp->idev->cnf.forwarding)
4290 addrconf_leave_anycast(ifp);
4291 addrconf_leave_solict(ifp->idev, &ifp->addr);
Changli Gaod8d1f302010-06-10 23:31:35 -07004292 dst_hold(&ifp->rt->dst);
stephen hemminger93fa1592010-04-12 05:41:31 +00004293
David S. Miller73a8bd742011-01-23 23:27:15 -08004294 if (ip6_del_rt(ifp->rt))
Changli Gaod8d1f302010-06-10 23:31:35 -07004295 dst_free(&ifp->rt->dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004296 break;
4297 }
4298}
4299
4300static void ipv6_ifa_notify(int event, struct inet6_ifaddr *ifp)
4301{
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -07004302 rcu_read_lock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004303 if (likely(ifp->idev->dead == 0))
4304 __ipv6_ifa_notify(event, ifp);
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -07004305 rcu_read_unlock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004306}
4307
4308#ifdef CONFIG_SYSCTL
4309
4310static
Alexey Dobriyan8d65af72009-09-23 15:57:19 -07004311int addrconf_sysctl_forward(ctl_table *ctl, int write,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004312 void __user *buffer, size_t *lenp, loff_t *ppos)
4313{
4314 int *valp = ctl->data;
4315 int val = *valp;
Eric W. Biederman88af1822010-02-19 13:22:59 +00004316 loff_t pos = *ppos;
Francesco Ruggeri013d97e2012-01-16 10:40:10 +00004317 ctl_table lctl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004318 int ret;
4319
Francesco Ruggeri013d97e2012-01-16 10:40:10 +00004320 /*
4321 * ctl->data points to idev->cnf.forwarding, we should
4322 * not modify it until we get the rtnl lock.
4323 */
4324 lctl = *ctl;
4325 lctl.data = &val;
4326
4327 ret = proc_dointvec(&lctl, write, buffer, lenp, ppos);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004328
Pavel Emelyanovc8fecf22007-12-05 01:50:24 -08004329 if (write)
Stephen Hemmingerb325fdd2009-02-26 06:55:31 +00004330 ret = addrconf_fixup_forwarding(ctl, valp, val);
Eric W. Biederman88af1822010-02-19 13:22:59 +00004331 if (ret)
4332 *ppos = pos;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09004333 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004334}
4335
Brian Haley56d417b2009-06-01 03:07:33 -07004336static void dev_disable_change(struct inet6_dev *idev)
4337{
4338 if (!idev || !idev->dev)
4339 return;
4340
4341 if (idev->cnf.disable_ipv6)
4342 addrconf_notify(NULL, NETDEV_DOWN, idev->dev);
4343 else
4344 addrconf_notify(NULL, NETDEV_UP, idev->dev);
4345}
4346
4347static void addrconf_disable_change(struct net *net, __s32 newf)
4348{
4349 struct net_device *dev;
4350 struct inet6_dev *idev;
4351
Eric Dumazetc6d14c82009-11-04 05:43:23 -08004352 rcu_read_lock();
4353 for_each_netdev_rcu(net, dev) {
Brian Haley56d417b2009-06-01 03:07:33 -07004354 idev = __in6_dev_get(dev);
4355 if (idev) {
4356 int changed = (!idev->cnf.disable_ipv6) ^ (!newf);
4357 idev->cnf.disable_ipv6 = newf;
4358 if (changed)
4359 dev_disable_change(idev);
4360 }
Brian Haley56d417b2009-06-01 03:07:33 -07004361 }
Eric Dumazetc6d14c82009-11-04 05:43:23 -08004362 rcu_read_unlock();
Brian Haley56d417b2009-06-01 03:07:33 -07004363}
4364
Francesco Ruggeri013d97e2012-01-16 10:40:10 +00004365static int addrconf_disable_ipv6(struct ctl_table *table, int *p, int newf)
Brian Haley56d417b2009-06-01 03:07:33 -07004366{
4367 struct net *net;
Francesco Ruggeri013d97e2012-01-16 10:40:10 +00004368 int old;
4369
4370 if (!rtnl_trylock())
4371 return restart_syscall();
Brian Haley56d417b2009-06-01 03:07:33 -07004372
4373 net = (struct net *)table->extra2;
Francesco Ruggeri013d97e2012-01-16 10:40:10 +00004374 old = *p;
4375 *p = newf;
Brian Haley56d417b2009-06-01 03:07:33 -07004376
Francesco Ruggeri013d97e2012-01-16 10:40:10 +00004377 if (p == &net->ipv6.devconf_dflt->disable_ipv6) {
4378 rtnl_unlock();
Brian Haley56d417b2009-06-01 03:07:33 -07004379 return 0;
Eric W. Biederman88af1822010-02-19 13:22:59 +00004380 }
Brian Haley56d417b2009-06-01 03:07:33 -07004381
4382 if (p == &net->ipv6.devconf_all->disable_ipv6) {
Brian Haley56d417b2009-06-01 03:07:33 -07004383 net->ipv6.devconf_dflt->disable_ipv6 = newf;
4384 addrconf_disable_change(net, newf);
Francesco Ruggeri013d97e2012-01-16 10:40:10 +00004385 } else if ((!newf) ^ (!old))
Brian Haley56d417b2009-06-01 03:07:33 -07004386 dev_disable_change((struct inet6_dev *)table->extra1);
4387
4388 rtnl_unlock();
4389 return 0;
4390}
4391
4392static
Alexey Dobriyan8d65af72009-09-23 15:57:19 -07004393int addrconf_sysctl_disable(ctl_table *ctl, int write,
Brian Haley56d417b2009-06-01 03:07:33 -07004394 void __user *buffer, size_t *lenp, loff_t *ppos)
4395{
4396 int *valp = ctl->data;
4397 int val = *valp;
Eric W. Biederman88af1822010-02-19 13:22:59 +00004398 loff_t pos = *ppos;
Francesco Ruggeri013d97e2012-01-16 10:40:10 +00004399 ctl_table lctl;
Brian Haley56d417b2009-06-01 03:07:33 -07004400 int ret;
4401
Francesco Ruggeri013d97e2012-01-16 10:40:10 +00004402 /*
4403 * ctl->data points to idev->cnf.disable_ipv6, we should
4404 * not modify it until we get the rtnl lock.
4405 */
4406 lctl = *ctl;
4407 lctl.data = &val;
4408
4409 ret = proc_dointvec(&lctl, write, buffer, lenp, ppos);
Brian Haley56d417b2009-06-01 03:07:33 -07004410
4411 if (write)
4412 ret = addrconf_disable_ipv6(ctl, valp, val);
Eric W. Biederman88af1822010-02-19 13:22:59 +00004413 if (ret)
4414 *ppos = pos;
Brian Haley56d417b2009-06-01 03:07:33 -07004415 return ret;
4416}
4417
Linus Torvalds1da177e2005-04-16 15:20:36 -07004418static struct addrconf_sysctl_table
4419{
4420 struct ctl_table_header *sysctl_header;
YOSHIFUJI Hideakif6a07b22008-03-25 00:25:11 +09004421 ctl_table addrconf_vars[DEVCONF_MAX+1];
Brian Haleyab32ea52006-09-22 14:15:41 -07004422} addrconf_sysctl __read_mostly = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004423 .sysctl_header = NULL,
4424 .addrconf_vars = {
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09004425 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004426 .procname = "forwarding",
4427 .data = &ipv6_devconf.forwarding,
4428 .maxlen = sizeof(int),
4429 .mode = 0644,
4430 .proc_handler = addrconf_sysctl_forward,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004431 },
4432 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004433 .procname = "hop_limit",
4434 .data = &ipv6_devconf.hop_limit,
4435 .maxlen = sizeof(int),
4436 .mode = 0644,
4437 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004438 },
4439 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004440 .procname = "mtu",
4441 .data = &ipv6_devconf.mtu6,
4442 .maxlen = sizeof(int),
4443 .mode = 0644,
4444 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004445 },
4446 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004447 .procname = "accept_ra",
4448 .data = &ipv6_devconf.accept_ra,
4449 .maxlen = sizeof(int),
4450 .mode = 0644,
4451 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004452 },
4453 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004454 .procname = "accept_redirects",
4455 .data = &ipv6_devconf.accept_redirects,
4456 .maxlen = sizeof(int),
4457 .mode = 0644,
4458 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004459 },
4460 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004461 .procname = "autoconf",
4462 .data = &ipv6_devconf.autoconf,
4463 .maxlen = sizeof(int),
4464 .mode = 0644,
4465 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004466 },
4467 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004468 .procname = "dad_transmits",
4469 .data = &ipv6_devconf.dad_transmits,
4470 .maxlen = sizeof(int),
4471 .mode = 0644,
4472 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004473 },
4474 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004475 .procname = "router_solicitations",
4476 .data = &ipv6_devconf.rtr_solicits,
4477 .maxlen = sizeof(int),
4478 .mode = 0644,
4479 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004480 },
4481 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004482 .procname = "router_solicitation_interval",
4483 .data = &ipv6_devconf.rtr_solicit_interval,
4484 .maxlen = sizeof(int),
4485 .mode = 0644,
4486 .proc_handler = proc_dointvec_jiffies,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004487 },
4488 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004489 .procname = "router_solicitation_delay",
4490 .data = &ipv6_devconf.rtr_solicit_delay,
4491 .maxlen = sizeof(int),
4492 .mode = 0644,
4493 .proc_handler = proc_dointvec_jiffies,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004494 },
4495 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004496 .procname = "force_mld_version",
4497 .data = &ipv6_devconf.force_mld_version,
4498 .maxlen = sizeof(int),
4499 .mode = 0644,
4500 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004501 },
4502#ifdef CONFIG_IPV6_PRIVACY
4503 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004504 .procname = "use_tempaddr",
4505 .data = &ipv6_devconf.use_tempaddr,
4506 .maxlen = sizeof(int),
4507 .mode = 0644,
4508 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004509 },
4510 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004511 .procname = "temp_valid_lft",
4512 .data = &ipv6_devconf.temp_valid_lft,
4513 .maxlen = sizeof(int),
4514 .mode = 0644,
4515 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004516 },
4517 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004518 .procname = "temp_prefered_lft",
4519 .data = &ipv6_devconf.temp_prefered_lft,
4520 .maxlen = sizeof(int),
4521 .mode = 0644,
4522 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004523 },
4524 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004525 .procname = "regen_max_retry",
4526 .data = &ipv6_devconf.regen_max_retry,
4527 .maxlen = sizeof(int),
4528 .mode = 0644,
4529 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004530 },
4531 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004532 .procname = "max_desync_factor",
4533 .data = &ipv6_devconf.max_desync_factor,
4534 .maxlen = sizeof(int),
4535 .mode = 0644,
4536 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004537 },
4538#endif
4539 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004540 .procname = "max_addresses",
4541 .data = &ipv6_devconf.max_addresses,
4542 .maxlen = sizeof(int),
4543 .mode = 0644,
4544 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004545 },
4546 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004547 .procname = "accept_ra_defrtr",
4548 .data = &ipv6_devconf.accept_ra_defrtr,
4549 .maxlen = sizeof(int),
4550 .mode = 0644,
4551 .proc_handler = proc_dointvec,
YOSHIFUJI Hideaki65f5c7c2006-03-20 16:55:08 -08004552 },
4553 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004554 .procname = "accept_ra_pinfo",
4555 .data = &ipv6_devconf.accept_ra_pinfo,
4556 .maxlen = sizeof(int),
4557 .mode = 0644,
4558 .proc_handler = proc_dointvec,
YOSHIFUJI Hideakic4fd30e2006-03-20 16:55:26 -08004559 },
YOSHIFUJI Hideaki930d6ff2006-03-20 17:05:30 -08004560#ifdef CONFIG_IPV6_ROUTER_PREF
4561 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004562 .procname = "accept_ra_rtr_pref",
4563 .data = &ipv6_devconf.accept_ra_rtr_pref,
4564 .maxlen = sizeof(int),
4565 .mode = 0644,
4566 .proc_handler = proc_dointvec,
YOSHIFUJI Hideaki930d6ff2006-03-20 17:05:30 -08004567 },
YOSHIFUJI Hideaki52e16352006-03-20 17:05:47 -08004568 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004569 .procname = "router_probe_interval",
4570 .data = &ipv6_devconf.rtr_probe_interval,
4571 .maxlen = sizeof(int),
4572 .mode = 0644,
4573 .proc_handler = proc_dointvec_jiffies,
YOSHIFUJI Hideaki52e16352006-03-20 17:05:47 -08004574 },
Neil Hormanfa03ef32007-01-30 14:30:10 -08004575#ifdef CONFIG_IPV6_ROUTE_INFO
YOSHIFUJI Hideaki09c884d2006-03-20 17:07:03 -08004576 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004577 .procname = "accept_ra_rt_info_max_plen",
4578 .data = &ipv6_devconf.accept_ra_rt_info_max_plen,
4579 .maxlen = sizeof(int),
4580 .mode = 0644,
4581 .proc_handler = proc_dointvec,
YOSHIFUJI Hideaki09c884d2006-03-20 17:07:03 -08004582 },
4583#endif
YOSHIFUJI Hideaki930d6ff2006-03-20 17:05:30 -08004584#endif
YOSHIFUJI Hideakic4fd30e2006-03-20 16:55:26 -08004585 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004586 .procname = "proxy_ndp",
4587 .data = &ipv6_devconf.proxy_ndp,
4588 .maxlen = sizeof(int),
4589 .mode = 0644,
4590 .proc_handler = proc_dointvec,
YOSHIFUJI Hideakifbea49e2006-09-22 14:43:49 -07004591 },
4592 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004593 .procname = "accept_source_route",
4594 .data = &ipv6_devconf.accept_source_route,
4595 .maxlen = sizeof(int),
4596 .mode = 0644,
4597 .proc_handler = proc_dointvec,
YOSHIFUJI Hideaki0bcbc922007-04-24 14:58:30 -07004598 },
Neil Horman95c385b2007-04-25 17:08:10 -07004599#ifdef CONFIG_IPV6_OPTIMISTIC_DAD
4600 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004601 .procname = "optimistic_dad",
4602 .data = &ipv6_devconf.optimistic_dad,
4603 .maxlen = sizeof(int),
4604 .mode = 0644,
4605 .proc_handler = proc_dointvec,
Neil Horman95c385b2007-04-25 17:08:10 -07004606
4607 },
4608#endif
YOSHIFUJI Hideaki7bc570c2008-04-03 09:22:53 +09004609#ifdef CONFIG_IPV6_MROUTE
4610 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004611 .procname = "mc_forwarding",
4612 .data = &ipv6_devconf.mc_forwarding,
4613 .maxlen = sizeof(int),
4614 .mode = 0444,
4615 .proc_handler = proc_dointvec,
YOSHIFUJI Hideaki7bc570c2008-04-03 09:22:53 +09004616 },
4617#endif
YOSHIFUJI Hideaki0bcbc922007-04-24 14:58:30 -07004618 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004619 .procname = "disable_ipv6",
4620 .data = &ipv6_devconf.disable_ipv6,
4621 .maxlen = sizeof(int),
4622 .mode = 0644,
4623 .proc_handler = addrconf_sysctl_disable,
YOSHIFUJI Hideaki778d80b2008-06-28 14:17:11 +09004624 },
4625 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004626 .procname = "accept_dad",
4627 .data = &ipv6_devconf.accept_dad,
4628 .maxlen = sizeof(int),
4629 .mode = 0644,
4630 .proc_handler = proc_dointvec,
YOSHIFUJI Hideaki1b34be72008-06-28 14:18:38 +09004631 },
4632 {
Octavian Purdilaf7734fd2009-10-02 11:39:15 +00004633 .procname = "force_tllao",
4634 .data = &ipv6_devconf.force_tllao,
4635 .maxlen = sizeof(int),
4636 .mode = 0644,
4637 .proc_handler = proc_dointvec
4638 },
4639 {
Eric W. Biedermanf8572d82009-11-05 13:32:03 -08004640 /* sentinel */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004641 }
4642 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07004643};
4644
Pavel Emelyanovbff16c22008-01-10 17:42:13 -08004645static int __addrconf_sysctl_register(struct net *net, char *dev_name,
Eric W. Biedermanf8572d82009-11-05 13:32:03 -08004646 struct inet6_dev *idev, struct ipv6_devconf *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004647{
4648 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004649 struct addrconf_sysctl_table *t;
Eric W. Biederman6105e292012-04-19 13:41:24 +00004650 char path[sizeof("net/ipv6/conf/") + IFNAMSIZ];
Pavel Emelyanov1dab6222007-12-02 00:59:38 +11004651
Arnaldo Carvalho de Meloaf879cc2006-11-17 12:14:37 -02004652 t = kmemdup(&addrconf_sysctl, sizeof(*t), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004653 if (t == NULL)
Pavel Emelyanovf68635e2007-12-02 00:21:52 +11004654 goto out;
4655
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07004656 for (i = 0; t->addrconf_vars[i].data; i++) {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004657 t->addrconf_vars[i].data += (char *)p - (char *)&ipv6_devconf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004658 t->addrconf_vars[i].extra1 = idev; /* embedded; no ref */
Pavel Emelyanovbff16c22008-01-10 17:42:13 -08004659 t->addrconf_vars[i].extra2 = net;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004660 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004661
Eric W. Biederman6105e292012-04-19 13:41:24 +00004662 snprintf(path, sizeof(path), "net/ipv6/conf/%s", dev_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004663
Eric W. Biederman6105e292012-04-19 13:41:24 +00004664 t->sysctl_header = register_net_sysctl(net, path, t->addrconf_vars);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004665 if (t->sysctl_header == NULL)
Eric W. Biederman6105e292012-04-19 13:41:24 +00004666 goto free;
Pavel Emelyanovf68635e2007-12-02 00:21:52 +11004667
4668 p->sysctl = t;
Pavel Emelyanov95897312008-01-10 17:41:45 -08004669 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004670
Pavel Emelyanovf68635e2007-12-02 00:21:52 +11004671free:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004672 kfree(t);
Pavel Emelyanovf68635e2007-12-02 00:21:52 +11004673out:
Pavel Emelyanov95897312008-01-10 17:41:45 -08004674 return -ENOBUFS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004675}
4676
Pavel Emelyanov408c4762008-01-10 17:41:21 -08004677static void __addrconf_sysctl_unregister(struct ipv6_devconf *p)
4678{
4679 struct addrconf_sysctl_table *t;
4680
4681 if (p->sysctl == NULL)
4682 return;
4683
4684 t = p->sysctl;
4685 p->sysctl = NULL;
Lucian Adrian Grijincuff538812011-05-01 01:44:01 +00004686 unregister_net_sysctl_table(t->sysctl_header);
Pavel Emelyanov408c4762008-01-10 17:41:21 -08004687 kfree(t);
4688}
4689
Pavel Emelyanovf52295a2007-12-02 00:58:37 +11004690static void addrconf_sysctl_register(struct inet6_dev *idev)
4691{
Eric W. Biederman54716e32010-02-14 03:27:03 +00004692 neigh_sysctl_register(idev->dev, idev->nd_parms, "ipv6",
Eric W. Biedermanf8572d82009-11-05 13:32:03 -08004693 &ndisc_ifinfo_sysctl_change);
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09004694 __addrconf_sysctl_register(dev_net(idev->dev), idev->dev->name,
Eric W. Biedermanf8572d82009-11-05 13:32:03 -08004695 idev, &idev->cnf);
Pavel Emelyanovf52295a2007-12-02 00:58:37 +11004696}
4697
Pavel Emelyanov408c4762008-01-10 17:41:21 -08004698static void addrconf_sysctl_unregister(struct inet6_dev *idev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004699{
Pavel Emelyanov408c4762008-01-10 17:41:21 -08004700 __addrconf_sysctl_unregister(&idev->cnf);
4701 neigh_sysctl_unregister(idev->nd_parms);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004702}
4703
4704
4705#endif
4706
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00004707static int __net_init addrconf_init_net(struct net *net)
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08004708{
4709 int err;
4710 struct ipv6_devconf *all, *dflt;
4711
4712 err = -ENOMEM;
4713 all = &ipv6_devconf;
4714 dflt = &ipv6_devconf_dflt;
4715
Octavian Purdila09ad9bc2009-11-25 15:14:13 -08004716 if (!net_eq(net, &init_net)) {
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08004717 all = kmemdup(all, sizeof(ipv6_devconf), GFP_KERNEL);
4718 if (all == NULL)
4719 goto err_alloc_all;
4720
4721 dflt = kmemdup(dflt, sizeof(ipv6_devconf_dflt), GFP_KERNEL);
4722 if (dflt == NULL)
4723 goto err_alloc_dflt;
Brian Haley56d417b2009-06-01 03:07:33 -07004724 } else {
4725 /* these will be inherited by all namespaces */
4726 dflt->autoconf = ipv6_defaults.autoconf;
4727 dflt->disable_ipv6 = ipv6_defaults.disable_ipv6;
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08004728 }
4729
4730 net->ipv6.devconf_all = all;
4731 net->ipv6.devconf_dflt = dflt;
4732
4733#ifdef CONFIG_SYSCTL
Eric W. Biedermanf8572d82009-11-05 13:32:03 -08004734 err = __addrconf_sysctl_register(net, "all", NULL, all);
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08004735 if (err < 0)
4736 goto err_reg_all;
4737
Eric W. Biedermanf8572d82009-11-05 13:32:03 -08004738 err = __addrconf_sysctl_register(net, "default", NULL, dflt);
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08004739 if (err < 0)
4740 goto err_reg_dflt;
4741#endif
4742 return 0;
4743
4744#ifdef CONFIG_SYSCTL
4745err_reg_dflt:
4746 __addrconf_sysctl_unregister(all);
4747err_reg_all:
4748 kfree(dflt);
4749#endif
4750err_alloc_dflt:
4751 kfree(all);
4752err_alloc_all:
4753 return err;
4754}
4755
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00004756static void __net_exit addrconf_exit_net(struct net *net)
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08004757{
4758#ifdef CONFIG_SYSCTL
4759 __addrconf_sysctl_unregister(net->ipv6.devconf_dflt);
4760 __addrconf_sysctl_unregister(net->ipv6.devconf_all);
4761#endif
Octavian Purdila09ad9bc2009-11-25 15:14:13 -08004762 if (!net_eq(net, &init_net)) {
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08004763 kfree(net->ipv6.devconf_dflt);
4764 kfree(net->ipv6.devconf_all);
4765 }
4766}
4767
4768static struct pernet_operations addrconf_ops = {
4769 .init = addrconf_init_net,
4770 .exit = addrconf_exit_net,
4771};
4772
Linus Torvalds1da177e2005-04-16 15:20:36 -07004773/*
4774 * Device notifier
4775 */
4776
4777int register_inet6addr_notifier(struct notifier_block *nb)
4778{
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09004779 return atomic_notifier_chain_register(&inet6addr_chain, nb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004780}
YOSHIFUJI Hideaki71590392007-02-22 22:05:40 +09004781EXPORT_SYMBOL(register_inet6addr_notifier);
4782
Linus Torvalds1da177e2005-04-16 15:20:36 -07004783int unregister_inet6addr_notifier(struct notifier_block *nb)
4784{
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004785 return atomic_notifier_chain_unregister(&inet6addr_chain, nb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004786}
YOSHIFUJI Hideaki71590392007-02-22 22:05:40 +09004787EXPORT_SYMBOL(unregister_inet6addr_notifier);
4788
Thomas Grafb382b192010-11-16 04:33:57 +00004789static struct rtnl_af_ops inet6_ops = {
4790 .family = AF_INET6,
4791 .fill_link_af = inet6_fill_link_af,
4792 .get_link_af_size = inet6_get_link_af_size,
Thomas Grafb382b192010-11-16 04:33:57 +00004793};
4794
Linus Torvalds1da177e2005-04-16 15:20:36 -07004795/*
4796 * Init / cleanup code
4797 */
4798
4799int __init addrconf_init(void)
4800{
stephen hemmingerc2e21292010-03-17 20:31:10 +00004801 int i, err;
YOSHIFUJI Hideaki2a8cc6c2007-11-14 15:56:23 +09004802
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004803 err = ipv6_addr_label_init();
4804 if (err < 0) {
Joe Perchesf3213832012-05-15 14:11:53 +00004805 pr_crit("%s: cannot initialize default policy table: %d\n",
4806 __func__, err);
Neil Horman2cc6d2b2010-09-24 09:55:52 +00004807 goto out;
YOSHIFUJI Hideaki2a8cc6c2007-11-14 15:56:23 +09004808 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004809
Neil Horman2cc6d2b2010-09-24 09:55:52 +00004810 err = register_pernet_subsys(&addrconf_ops);
4811 if (err < 0)
4812 goto out_addrlabel;
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08004813
Linus Torvalds1da177e2005-04-16 15:20:36 -07004814 /* The addrconf netdev notifier requires that loopback_dev
4815 * has it's ipv6 private information allocated and setup
4816 * before it can bring up and give link-local addresses
4817 * to other devices which are up.
4818 *
4819 * Unfortunately, loopback_dev is not necessarily the first
4820 * entry in the global dev_base list of net devices. In fact,
4821 * it is likely to be the very last entry on that list.
4822 * So this causes the notifier registry below to try and
4823 * give link-local addresses to all devices besides loopback_dev
4824 * first, then loopback_dev, which cases all the non-loopback_dev
4825 * devices to fail to get a link-local address.
4826 *
4827 * So, as a temporary fix, allocate the ipv6 structure for
4828 * loopback_dev first by hand.
4829 * Longer term, all of the dependencies ipv6 has upon the loopback
4830 * device and it being up should be removed.
4831 */
4832 rtnl_lock();
Eric W. Biederman2774c7a2007-09-26 22:10:56 -07004833 if (!ipv6_add_dev(init_net.loopback_dev))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004834 err = -ENOMEM;
4835 rtnl_unlock();
4836 if (err)
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08004837 goto errlo;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004838
stephen hemmingerc2e21292010-03-17 20:31:10 +00004839 for (i = 0; i < IN6_ADDR_HSIZE; i++)
4840 INIT_HLIST_HEAD(&inet6_addr_lst[i]);
4841
Linus Torvalds1da177e2005-04-16 15:20:36 -07004842 register_netdevice_notifier(&ipv6_dev_notf);
4843
Linus Torvalds1da177e2005-04-16 15:20:36 -07004844 addrconf_verify(0);
Thomas Grafc127ea22007-03-22 11:58:32 -07004845
Thomas Grafb382b192010-11-16 04:33:57 +00004846 err = rtnl_af_register(&inet6_ops);
4847 if (err < 0)
4848 goto errout_af;
4849
Greg Rosec7ac8672011-06-10 01:27:09 +00004850 err = __rtnl_register(PF_INET6, RTM_GETLINK, NULL, inet6_dump_ifinfo,
4851 NULL);
Thomas Grafc127ea22007-03-22 11:58:32 -07004852 if (err < 0)
4853 goto errout;
4854
4855 /* Only the first call to __rtnl_register can fail */
Greg Rosec7ac8672011-06-10 01:27:09 +00004856 __rtnl_register(PF_INET6, RTM_NEWADDR, inet6_rtm_newaddr, NULL, NULL);
4857 __rtnl_register(PF_INET6, RTM_DELADDR, inet6_rtm_deladdr, NULL, NULL);
4858 __rtnl_register(PF_INET6, RTM_GETADDR, inet6_rtm_getaddr,
4859 inet6_dump_ifaddr, NULL);
4860 __rtnl_register(PF_INET6, RTM_GETMULTICAST, NULL,
4861 inet6_dump_ifmcaddr, NULL);
4862 __rtnl_register(PF_INET6, RTM_GETANYCAST, NULL,
4863 inet6_dump_ifacaddr, NULL);
Thomas Grafc127ea22007-03-22 11:58:32 -07004864
YOSHIFUJI Hideaki2a8cc6c2007-11-14 15:56:23 +09004865 ipv6_addr_label_rtnl_register();
4866
Linus Torvalds1da177e2005-04-16 15:20:36 -07004867 return 0;
Thomas Grafc127ea22007-03-22 11:58:32 -07004868errout:
Thomas Grafb382b192010-11-16 04:33:57 +00004869 rtnl_af_unregister(&inet6_ops);
4870errout_af:
Thomas Grafc127ea22007-03-22 11:58:32 -07004871 unregister_netdevice_notifier(&ipv6_dev_notf);
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08004872errlo:
4873 unregister_pernet_subsys(&addrconf_ops);
Neil Horman2cc6d2b2010-09-24 09:55:52 +00004874out_addrlabel:
4875 ipv6_addr_label_cleanup();
4876out:
Thomas Grafc127ea22007-03-22 11:58:32 -07004877 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004878}
4879
Daniel Lezcano09f77092007-12-13 05:34:58 -08004880void addrconf_cleanup(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004881{
Daniel Lezcano176c39a2009-03-03 01:06:45 -08004882 struct net_device *dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004883 int i;
4884
4885 unregister_netdevice_notifier(&ipv6_dev_notf);
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08004886 unregister_pernet_subsys(&addrconf_ops);
Neil Horman2cc6d2b2010-09-24 09:55:52 +00004887 ipv6_addr_label_cleanup();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004888
4889 rtnl_lock();
4890
Thomas Grafb382b192010-11-16 04:33:57 +00004891 __rtnl_af_unregister(&inet6_ops);
4892
Daniel Lezcano176c39a2009-03-03 01:06:45 -08004893 /* clean dev list */
4894 for_each_netdev(&init_net, dev) {
4895 if (__in6_dev_get(dev) == NULL)
4896 continue;
4897 addrconf_ifdown(dev, 1);
4898 }
4899 addrconf_ifdown(init_net.loopback_dev, 2);
4900
Linus Torvalds1da177e2005-04-16 15:20:36 -07004901 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004902 * Check hash table.
4903 */
stephen hemminger5c578ae2010-03-17 20:31:11 +00004904 spin_lock_bh(&addrconf_hash_lock);
stephen hemmingerc2e21292010-03-17 20:31:10 +00004905 for (i = 0; i < IN6_ADDR_HSIZE; i++)
4906 WARN_ON(!hlist_empty(&inet6_addr_lst[i]));
stephen hemminger5c578ae2010-03-17 20:31:11 +00004907 spin_unlock_bh(&addrconf_hash_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004908
4909 del_timer(&addr_chk_timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004910 rtnl_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004911}