blob: 28e0e627229c3fc28acc94a8f88998e5e49bdeb9 [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
Amerigo Wang07a93622012-10-29 16:23:10 +0000405#if IS_ENABLED(CONFIG_IPV6_SIT)
YOSHIFUJI Hideakib077d7a2008-04-13 23:42:18 -0700406 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
Nicolas Dichtel76f8f6c2012-10-25 22:28:51 +0000469 /* type -1 is used for ALL */
470 if (type == -1 || type == NETCONFA_FORWARDING)
Nicolas Dichtelf3a1bfb2012-10-25 22:28:50 +0000471 size += nla_total_size(4);
Nicolas Dichteld67b8c62012-12-04 01:13:35 +0000472 if (type == -1 || type == NETCONFA_MC_FORWARDING)
473 size += nla_total_size(4);
Nicolas Dichtelf3a1bfb2012-10-25 22:28:50 +0000474
475 return size;
476}
477
478static int inet6_netconf_fill_devconf(struct sk_buff *skb, int ifindex,
479 struct ipv6_devconf *devconf, u32 portid,
480 u32 seq, int event, unsigned int flags,
481 int type)
482{
483 struct nlmsghdr *nlh;
484 struct netconfmsg *ncm;
485
486 nlh = nlmsg_put(skb, portid, seq, event, sizeof(struct netconfmsg),
487 flags);
488 if (nlh == NULL)
489 return -EMSGSIZE;
490
491 ncm = nlmsg_data(nlh);
492 ncm->ncm_family = AF_INET6;
493
494 if (nla_put_s32(skb, NETCONFA_IFINDEX, ifindex) < 0)
495 goto nla_put_failure;
496
Nicolas Dichtel76f8f6c2012-10-25 22:28:51 +0000497 /* type -1 is used for ALL */
498 if ((type == -1 || type == NETCONFA_FORWARDING) &&
Nicolas Dichtelf3a1bfb2012-10-25 22:28:50 +0000499 nla_put_s32(skb, NETCONFA_FORWARDING, devconf->forwarding) < 0)
500 goto nla_put_failure;
Nicolas Dichteld67b8c62012-12-04 01:13:35 +0000501 if ((type == -1 || type == NETCONFA_MC_FORWARDING) &&
502 nla_put_s32(skb, NETCONFA_MC_FORWARDING,
503 devconf->mc_forwarding) < 0)
504 goto nla_put_failure;
Nicolas Dichtelf3a1bfb2012-10-25 22:28:50 +0000505
506 return nlmsg_end(skb, nlh);
507
508nla_put_failure:
509 nlmsg_cancel(skb, nlh);
510 return -EMSGSIZE;
511}
512
Nicolas Dichteld67b8c62012-12-04 01:13:35 +0000513void inet6_netconf_notify_devconf(struct net *net, int type, int ifindex,
514 struct ipv6_devconf *devconf)
Nicolas Dichtelf3a1bfb2012-10-25 22:28:50 +0000515{
516 struct sk_buff *skb;
517 int err = -ENOBUFS;
518
519 skb = nlmsg_new(inet6_netconf_msgsize_devconf(type), GFP_ATOMIC);
520 if (skb == NULL)
521 goto errout;
522
523 err = inet6_netconf_fill_devconf(skb, ifindex, devconf, 0, 0,
524 RTM_NEWNETCONF, 0, type);
525 if (err < 0) {
526 /* -EMSGSIZE implies BUG in inet6_netconf_msgsize_devconf() */
527 WARN_ON(err == -EMSGSIZE);
528 kfree_skb(skb);
529 goto errout;
530 }
531 rtnl_notify(skb, net, 0, RTNLGRP_IPV6_NETCONF, NULL, GFP_ATOMIC);
532 return;
533errout:
534 if (err < 0)
535 rtnl_set_sk_err(net, RTNLGRP_IPV6_NETCONF, err);
536}
537
Nicolas Dichtel76f8f6c2012-10-25 22:28:51 +0000538static const struct nla_policy devconf_ipv6_policy[NETCONFA_MAX+1] = {
539 [NETCONFA_IFINDEX] = { .len = sizeof(int) },
540 [NETCONFA_FORWARDING] = { .len = sizeof(int) },
541};
542
543static int inet6_netconf_get_devconf(struct sk_buff *in_skb,
544 struct nlmsghdr *nlh,
545 void *arg)
546{
547 struct net *net = sock_net(in_skb->sk);
548 struct nlattr *tb[NETCONFA_MAX+1];
549 struct netconfmsg *ncm;
550 struct sk_buff *skb;
551 struct ipv6_devconf *devconf;
552 struct inet6_dev *in6_dev;
553 struct net_device *dev;
554 int ifindex;
555 int err;
556
557 err = nlmsg_parse(nlh, sizeof(*ncm), tb, NETCONFA_MAX,
558 devconf_ipv6_policy);
559 if (err < 0)
560 goto errout;
561
562 err = EINVAL;
563 if (!tb[NETCONFA_IFINDEX])
564 goto errout;
565
566 ifindex = nla_get_s32(tb[NETCONFA_IFINDEX]);
567 switch (ifindex) {
568 case NETCONFA_IFINDEX_ALL:
569 devconf = net->ipv6.devconf_all;
570 break;
571 case NETCONFA_IFINDEX_DEFAULT:
572 devconf = net->ipv6.devconf_dflt;
573 break;
574 default:
575 dev = __dev_get_by_index(net, ifindex);
576 if (dev == NULL)
577 goto errout;
578 in6_dev = __in6_dev_get(dev);
579 if (in6_dev == NULL)
580 goto errout;
581 devconf = &in6_dev->cnf;
582 break;
583 }
584
585 err = -ENOBUFS;
586 skb = nlmsg_new(inet6_netconf_msgsize_devconf(-1), GFP_ATOMIC);
587 if (skb == NULL)
588 goto errout;
589
590 err = inet6_netconf_fill_devconf(skb, ifindex, devconf,
591 NETLINK_CB(in_skb).portid,
592 nlh->nlmsg_seq, RTM_NEWNETCONF, 0,
593 -1);
594 if (err < 0) {
595 /* -EMSGSIZE implies BUG in inet6_netconf_msgsize_devconf() */
596 WARN_ON(err == -EMSGSIZE);
597 kfree_skb(skb);
598 goto errout;
599 }
600 err = rtnl_unicast(skb, net, NETLINK_CB(in_skb).portid);
601errout:
602 return err;
603}
604
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605#ifdef CONFIG_SYSCTL
606static void dev_forward_change(struct inet6_dev *idev)
607{
608 struct net_device *dev;
609 struct inet6_ifaddr *ifa;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610
611 if (!idev)
612 return;
613 dev = idev->dev;
Ben Hutchings0187bdf2008-06-19 16:15:47 -0700614 if (idev->cnf.forwarding)
615 dev_disable_lro(dev);
Amerigo Wang1a940832012-10-28 17:43:53 +0000616 if (dev->flags & IFF_MULTICAST) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617 if (idev->cnf.forwarding)
YOSHIFUJI Hideakif3ee4012008-04-10 15:42:11 +0900618 ipv6_dev_mc_inc(dev, &in6addr_linklocal_allrouters);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619 else
YOSHIFUJI Hideakif3ee4012008-04-10 15:42:11 +0900620 ipv6_dev_mc_dec(dev, &in6addr_linklocal_allrouters);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621 }
stephen hemminger502a2ff2010-03-17 20:31:13 +0000622
623 list_for_each_entry(ifa, &idev->addr_list, if_list) {
Michal Wrobel2c12a742007-02-26 15:36:10 -0800624 if (ifa->flags&IFA_F_TENTATIVE)
625 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626 if (idev->cnf.forwarding)
627 addrconf_join_anycast(ifa);
628 else
629 addrconf_leave_anycast(ifa);
630 }
Nicolas Dichtelf3a1bfb2012-10-25 22:28:50 +0000631 inet6_netconf_notify_devconf(dev_net(dev), NETCONFA_FORWARDING,
632 dev->ifindex, &idev->cnf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633}
634
635
Pavel Emelyanove1869322008-01-10 17:43:50 -0800636static void addrconf_forward_change(struct net *net, __s32 newf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637{
638 struct net_device *dev;
639 struct inet6_dev *idev;
640
Ben Hutchings4acd4942012-08-14 08:54:51 +0000641 for_each_netdev(net, dev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642 idev = __in6_dev_get(dev);
643 if (idev) {
Pavel Emelyanove1869322008-01-10 17:43:50 -0800644 int changed = (!idev->cnf.forwarding) ^ (!newf);
645 idev->cnf.forwarding = newf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646 if (changed)
647 dev_forward_change(idev);
648 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650}
Pavel Emelyanovc8fecf22007-12-05 01:50:24 -0800651
Francesco Ruggeri013d97e2012-01-16 10:40:10 +0000652static int addrconf_fixup_forwarding(struct ctl_table *table, int *p, int newf)
Pavel Emelyanovc8fecf22007-12-05 01:50:24 -0800653{
Pavel Emelyanovbff16c22008-01-10 17:42:13 -0800654 struct net *net;
Francesco Ruggeri013d97e2012-01-16 10:40:10 +0000655 int old;
656
657 if (!rtnl_trylock())
658 return restart_syscall();
Pavel Emelyanovbff16c22008-01-10 17:42:13 -0800659
660 net = (struct net *)table->extra2;
Francesco Ruggeri013d97e2012-01-16 10:40:10 +0000661 old = *p;
662 *p = newf;
Pavel Emelyanovc8fecf22007-12-05 01:50:24 -0800663
Francesco Ruggeri013d97e2012-01-16 10:40:10 +0000664 if (p == &net->ipv6.devconf_dflt->forwarding) {
Nicolas Dichtelf3a1bfb2012-10-25 22:28:50 +0000665 if ((!newf) ^ (!old))
666 inet6_netconf_notify_devconf(net, NETCONFA_FORWARDING,
667 NETCONFA_IFINDEX_DEFAULT,
668 net->ipv6.devconf_dflt);
Francesco Ruggeri013d97e2012-01-16 10:40:10 +0000669 rtnl_unlock();
670 return 0;
Eric W. Biederman88af1822010-02-19 13:22:59 +0000671 }
Stephen Hemmingerb325fdd2009-02-26 06:55:31 +0000672
Pavel Emelyanove1869322008-01-10 17:43:50 -0800673 if (p == &net->ipv6.devconf_all->forwarding) {
Pavel Emelyanove1869322008-01-10 17:43:50 -0800674 net->ipv6.devconf_dflt->forwarding = newf;
675 addrconf_forward_change(net, newf);
Nicolas Dichtelf3a1bfb2012-10-25 22:28:50 +0000676 if ((!newf) ^ (!old))
677 inet6_netconf_notify_devconf(net, NETCONFA_FORWARDING,
678 NETCONFA_IFINDEX_ALL,
679 net->ipv6.devconf_all);
Francesco Ruggeri013d97e2012-01-16 10:40:10 +0000680 } else if ((!newf) ^ (!old))
Pavel Emelyanovc8fecf22007-12-05 01:50:24 -0800681 dev_forward_change((struct inet6_dev *)table->extra1);
Ben Hutchings0187bdf2008-06-19 16:15:47 -0700682 rtnl_unlock();
Pavel Emelyanovc8fecf22007-12-05 01:50:24 -0800683
Francesco Ruggeri013d97e2012-01-16 10:40:10 +0000684 if (newf)
Daniel Lezcano7b4da532008-03-04 13:47:14 -0800685 rt6_purge_dflt_routers(net);
Stephen Hemmingerb325fdd2009-02-26 06:55:31 +0000686 return 1;
Pavel Emelyanovc8fecf22007-12-05 01:50:24 -0800687}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688#endif
689
stephen hemminger5c578ae2010-03-17 20:31:11 +0000690/* Nobody refers to this ifaddr, destroy it */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691void inet6_ifa_finish_destroy(struct inet6_ifaddr *ifp)
692{
stephen hemmingerc2e21292010-03-17 20:31:10 +0000693 WARN_ON(!hlist_unhashed(&ifp->addr_lst));
Ilpo Järvinen547b7922008-07-25 21:43:18 -0700694
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695#ifdef NET_REFCNT_DEBUG
Joe Perches91df42b2012-05-15 14:11:54 +0000696 pr_debug("%s\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697#endif
698
699 in6_dev_put(ifp->idev);
700
701 if (del_timer(&ifp->timer))
Stephen Hemmingere21e8462010-03-20 16:09:01 -0700702 pr_notice("Timer is still running, when freeing ifa=%p\n", ifp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703
Herbert Xue9d3e082010-05-18 15:36:06 -0700704 if (ifp->state != INET6_IFADDR_STATE_DEAD) {
Joe Perchesf3213832012-05-15 14:11:53 +0000705 pr_warn("Freeing alive inet6 address %p\n", ifp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706 return;
707 }
Amerigo Wang94e187c2012-10-29 00:13:19 +0000708 ip6_rt_put(ifp->rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709
Lai Jiangshane5785982011-03-15 18:00:14 +0800710 kfree_rcu(ifp, rcu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711}
712
Brian Haleye55ffac2006-07-10 15:25:51 -0700713static void
714ipv6_link_dev_addr(struct inet6_dev *idev, struct inet6_ifaddr *ifp)
715{
stephen hemminger502a2ff2010-03-17 20:31:13 +0000716 struct list_head *p;
YOSHIFUJI Hideaki8a6ce0c2006-07-11 13:05:30 -0700717 int ifp_scope = ipv6_addr_src_scope(&ifp->addr);
Brian Haleye55ffac2006-07-10 15:25:51 -0700718
719 /*
720 * Each device address list is sorted in order of scope -
721 * global before linklocal.
722 */
stephen hemminger502a2ff2010-03-17 20:31:13 +0000723 list_for_each(p, &idev->addr_list) {
724 struct inet6_ifaddr *ifa
725 = list_entry(p, struct inet6_ifaddr, if_list);
YOSHIFUJI Hideaki8a6ce0c2006-07-11 13:05:30 -0700726 if (ifp_scope >= ipv6_addr_src_scope(&ifa->addr))
Brian Haleye55ffac2006-07-10 15:25:51 -0700727 break;
728 }
729
David S. Millerb54c9b92010-03-25 21:25:30 -0700730 list_add_tail(&ifp->if_list, p);
Brian Haleye55ffac2006-07-10 15:25:51 -0700731}
732
Eric Dumazetddbe5032012-07-18 08:11:12 +0000733static u32 inet6_addr_hash(const struct in6_addr *addr)
YOSHIFUJI Hideaki3eb84f42008-04-10 15:42:08 +0900734{
Eric Dumazetddbe5032012-07-18 08:11:12 +0000735 return hash_32(ipv6_addr_hash(addr), IN6_ADDR_HSIZE_SHIFT);
YOSHIFUJI Hideaki3eb84f42008-04-10 15:42:08 +0900736}
737
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738/* On success it returns ifp with increased reference count */
739
740static struct inet6_ifaddr *
741ipv6_add_addr(struct inet6_dev *idev, const struct in6_addr *addr, int pfxlen,
Jamal Hadi Salime431b8c2005-06-18 22:55:31 -0700742 int scope, u32 flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743{
744 struct inet6_ifaddr *ifa = NULL;
745 struct rt6_info *rt;
stephen hemminger3a88a812010-03-17 20:31:12 +0000746 unsigned int hash;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747 int err = 0;
YOSHIFUJI Hideakid68b8272008-06-25 16:26:47 +0900748 int addr_type = ipv6_addr_type(addr);
749
750 if (addr_type == IPV6_ADDR_ANY ||
751 addr_type & IPV6_ADDR_MULTICAST ||
752 (!(idev->dev->flags & IFF_LOOPBACK) &&
753 addr_type & IPV6_ADDR_LOOPBACK))
754 return ERR_PTR(-EADDRNOTAVAIL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -0700756 rcu_read_lock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757 if (idev->dead) {
758 err = -ENODEV; /*XXX*/
759 goto out2;
760 }
761
Brian Haley56d417b2009-06-01 03:07:33 -0700762 if (idev->cnf.disable_ipv6) {
Brian Haley9bdd8d42009-03-18 18:22:48 -0700763 err = -EACCES;
764 goto out2;
765 }
766
stephen hemminger5c578ae2010-03-17 20:31:11 +0000767 spin_lock(&addrconf_hash_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768
769 /* Ignore adding duplicate addresses on an interface */
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +0900770 if (ipv6_chk_same_addr(dev_net(idev->dev), addr, idev->dev)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771 ADBG(("ipv6_add_addr: already assigned\n"));
772 err = -EEXIST;
773 goto out;
774 }
775
Ingo Oeser322f74a2006-03-20 23:01:47 -0800776 ifa = kzalloc(sizeof(struct inet6_ifaddr), GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777
778 if (ifa == NULL) {
779 ADBG(("ipv6_add_addr: malloc failed\n"));
780 err = -ENOBUFS;
781 goto out;
782 }
783
David S. Miller8f031512011-12-06 16:48:14 -0500784 rt = addrconf_dst_alloc(idev, addr, false);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785 if (IS_ERR(rt)) {
786 err = PTR_ERR(rt);
787 goto out;
788 }
789
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +0000790 ifa->addr = *addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791
792 spin_lock_init(&ifa->lock);
Herbert Xue9d3e082010-05-18 15:36:06 -0700793 spin_lock_init(&ifa->state_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794 init_timer(&ifa->timer);
stephen hemmingerc2e21292010-03-17 20:31:10 +0000795 INIT_HLIST_NODE(&ifa->addr_lst);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796 ifa->timer.data = (unsigned long) ifa;
797 ifa->scope = scope;
798 ifa->prefix_len = pfxlen;
799 ifa->flags = flags | IFA_F_TENTATIVE;
800 ifa->cstamp = ifa->tstamp = jiffies;
801
Keir Fraser57f5f542006-08-29 02:43:49 -0700802 ifa->rt = rt;
803
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804 ifa->idev = idev;
805 in6_dev_hold(idev);
806 /* For caller */
807 in6_ifa_hold(ifa);
808
809 /* Add to big hash table */
Eric Dumazetddbe5032012-07-18 08:11:12 +0000810 hash = inet6_addr_hash(addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811
stephen hemminger5c578ae2010-03-17 20:31:11 +0000812 hlist_add_head_rcu(&ifa->addr_lst, &inet6_addr_lst[hash]);
stephen hemminger5c578ae2010-03-17 20:31:11 +0000813 spin_unlock(&addrconf_hash_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814
815 write_lock(&idev->lock);
816 /* Add to inet6_dev unicast addr list. */
Brian Haleye55ffac2006-07-10 15:25:51 -0700817 ipv6_link_dev_addr(idev, ifa);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818
819#ifdef CONFIG_IPV6_PRIVACY
820 if (ifa->flags&IFA_F_TEMPORARY) {
stephen hemminger372e6c82010-03-17 20:31:09 +0000821 list_add(&ifa->tmp_list, &idev->tempaddr_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822 in6_ifa_hold(ifa);
823 }
824#endif
825
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826 in6_ifa_hold(ifa);
827 write_unlock(&idev->lock);
828out2:
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -0700829 rcu_read_unlock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830
YOSHIFUJI Hideakifd928332005-04-19 22:27:09 -0700831 if (likely(err == 0))
Alan Sterne041c682006-03-27 01:16:30 -0800832 atomic_notifier_call_chain(&inet6addr_chain, NETDEV_UP, ifa);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833 else {
834 kfree(ifa);
835 ifa = ERR_PTR(err);
836 }
837
838 return ifa;
839out:
stephen hemminger5c578ae2010-03-17 20:31:11 +0000840 spin_unlock(&addrconf_hash_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841 goto out2;
842}
843
844/* This function wants to get referenced ifp and releases it before return */
845
846static void ipv6_del_addr(struct inet6_ifaddr *ifp)
847{
stephen hemminger502a2ff2010-03-17 20:31:13 +0000848 struct inet6_ifaddr *ifa, *ifn;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849 struct inet6_dev *idev = ifp->idev;
Herbert Xu4c5ff6a2010-05-18 15:54:18 -0700850 int state;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851 int deleted = 0, onlink = 0;
852 unsigned long expires = jiffies;
853
Herbert Xu4c5ff6a2010-05-18 15:54:18 -0700854 spin_lock_bh(&ifp->state_lock);
855 state = ifp->state;
Herbert Xue9d3e082010-05-18 15:36:06 -0700856 ifp->state = INET6_IFADDR_STATE_DEAD;
Herbert Xu4c5ff6a2010-05-18 15:54:18 -0700857 spin_unlock_bh(&ifp->state_lock);
858
859 if (state == INET6_IFADDR_STATE_DEAD)
860 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861
stephen hemminger5c578ae2010-03-17 20:31:11 +0000862 spin_lock_bh(&addrconf_hash_lock);
863 hlist_del_init_rcu(&ifp->addr_lst);
stephen hemminger5c578ae2010-03-17 20:31:11 +0000864 spin_unlock_bh(&addrconf_hash_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865
866 write_lock_bh(&idev->lock);
867#ifdef CONFIG_IPV6_PRIVACY
868 if (ifp->flags&IFA_F_TEMPORARY) {
stephen hemminger372e6c82010-03-17 20:31:09 +0000869 list_del(&ifp->tmp_list);
870 if (ifp->ifpub) {
871 in6_ifa_put(ifp->ifpub);
872 ifp->ifpub = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873 }
stephen hemminger372e6c82010-03-17 20:31:09 +0000874 __in6_ifa_put(ifp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875 }
876#endif
877
stephen hemminger502a2ff2010-03-17 20:31:13 +0000878 list_for_each_entry_safe(ifa, ifn, &idev->addr_list, if_list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879 if (ifa == ifp) {
stephen hemminger502a2ff2010-03-17 20:31:13 +0000880 list_del_init(&ifp->if_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881 __in6_ifa_put(ifp);
stephen hemminger502a2ff2010-03-17 20:31:13 +0000882
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883 if (!(ifp->flags & IFA_F_PERMANENT) || onlink > 0)
884 break;
885 deleted = 1;
Kristian Slavov1d142802005-12-21 18:47:24 -0800886 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887 } else if (ifp->flags & IFA_F_PERMANENT) {
888 if (ipv6_prefix_equal(&ifa->addr, &ifp->addr,
889 ifp->prefix_len)) {
890 if (ifa->flags & IFA_F_PERMANENT) {
891 onlink = 1;
892 if (deleted)
893 break;
894 } else {
895 unsigned long lifetime;
896
897 if (!onlink)
898 onlink = -1;
899
900 spin_lock(&ifa->lock);
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +0900901
902 lifetime = addrconf_timeout_fixup(ifa->valid_lft, HZ);
903 /*
904 * Note: Because this address is
905 * not permanent, lifetime <
906 * LONG_MAX / HZ here.
907 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700908 if (time_before(expires,
909 ifa->tstamp + lifetime * HZ))
910 expires = ifa->tstamp + lifetime * HZ;
911 spin_unlock(&ifa->lock);
912 }
913 }
914 }
915 }
916 write_unlock_bh(&idev->lock);
917
Andrey Vaginb2238562008-07-08 15:13:31 -0700918 addrconf_del_timer(ifp);
919
Linus Torvalds1da177e2005-04-16 15:20:36 -0700920 ipv6_ifa_notify(RTM_DELADDR, ifp);
921
Alan Sterne041c682006-03-27 01:16:30 -0800922 atomic_notifier_call_chain(&inet6addr_chain, NETDEV_DOWN, ifp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700923
Linus Torvalds1da177e2005-04-16 15:20:36 -0700924 /*
925 * Purge or update corresponding prefix
926 *
927 * 1) we don't purge prefix here if address was not permanent.
928 * prefix is managed by its own lifetime.
929 * 2) if there're no addresses, delete prefix.
930 * 3) if there're still other permanent address(es),
931 * corresponding prefix is still permanent.
932 * 4) otherwise, update prefix lifetime to the
933 * longest valid lifetime among the corresponding
934 * addresses on the device.
935 * Note: subsequent RA will update lifetime.
936 *
937 * --yoshfuji
938 */
939 if ((ifp->flags & IFA_F_PERMANENT) && onlink < 1) {
940 struct in6_addr prefix;
941 struct rt6_info *rt;
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +0900942 struct net *net = dev_net(ifp->idev->dev);
Nicolas Dichtel64c6d082012-09-26 00:04:55 +0000943 struct flowi6 fl6 = {};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700944
Nicolas Dichtel64c6d082012-09-26 00:04:55 +0000945 ipv6_addr_prefix(&prefix, &ifp->addr, ifp->prefix_len);
946 fl6.flowi6_oif = ifp->idev->dev->ifindex;
947 fl6.daddr = prefix;
948 rt = (struct rt6_info *)ip6_route_lookup(net, &fl6,
949 RT6_LOOKUP_F_IFACE);
950
951 if (rt != net->ipv6.ip6_null_entry &&
952 addrconf_is_prefix_route(rt)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953 if (onlink == 0) {
Thomas Grafe0a1ad732006-08-22 00:00:21 -0700954 ip6_del_rt(rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955 rt = NULL;
956 } else if (!(rt->rt6i_flags & RTF_EXPIRES)) {
Gao feng1716a962012-04-06 00:13:10 +0000957 rt6_set_expires(rt, expires);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958 }
959 }
Amerigo Wang94e187c2012-10-29 00:13:19 +0000960 ip6_rt_put(rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700961 }
962
Daniel Walterc3968a82011-04-13 21:10:57 +0000963 /* clean up prefsrc entries */
964 rt6_remove_prefsrc(ifp);
Herbert Xu4c5ff6a2010-05-18 15:54:18 -0700965out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700966 in6_ifa_put(ifp);
967}
968
969#ifdef CONFIG_IPV6_PRIVACY
970static int ipv6_create_tempaddr(struct inet6_ifaddr *ifp, struct inet6_ifaddr *ift)
971{
972 struct inet6_dev *idev = ifp->idev;
973 struct in6_addr addr, *tmpaddr;
Lorenzo Colitti76f793e2011-07-26 13:50:49 +0000974 unsigned long tmp_prefered_lft, tmp_valid_lft, tmp_tstamp, age;
Benoit Boissinoteac55bf2008-04-02 00:01:35 -0700975 unsigned long regen_advance;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700976 int tmp_plen;
977 int ret = 0;
978 int max_addresses;
Neil Horman95c385b2007-04-25 17:08:10 -0700979 u32 addr_flags;
Lorenzo Colitti76f793e2011-07-26 13:50:49 +0000980 unsigned long now = jiffies;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700981
982 write_lock(&idev->lock);
983 if (ift) {
984 spin_lock_bh(&ift->lock);
985 memcpy(&addr.s6_addr[8], &ift->addr.s6_addr[8], 8);
986 spin_unlock_bh(&ift->lock);
987 tmpaddr = &addr;
988 } else {
989 tmpaddr = NULL;
990 }
991retry:
992 in6_dev_hold(idev);
993 if (idev->cnf.use_tempaddr <= 0) {
994 write_unlock(&idev->lock);
Joe Perchesf3213832012-05-15 14:11:53 +0000995 pr_info("%s: use_tempaddr is disabled\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996 in6_dev_put(idev);
997 ret = -1;
998 goto out;
999 }
1000 spin_lock_bh(&ifp->lock);
1001 if (ifp->regen_count++ >= idev->cnf.regen_max_retry) {
1002 idev->cnf.use_tempaddr = -1; /*XXX*/
1003 spin_unlock_bh(&ifp->lock);
1004 write_unlock(&idev->lock);
Joe Perchesf3213832012-05-15 14:11:53 +00001005 pr_warn("%s: regeneration time exceeded - disabled temporary address support\n",
1006 __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001007 in6_dev_put(idev);
1008 ret = -1;
1009 goto out;
1010 }
1011 in6_ifa_hold(ifp);
1012 memcpy(addr.s6_addr, ifp->addr.s6_addr, 8);
Sorin Dumitrueb7e0572012-08-30 02:01:45 +00001013 __ipv6_try_regen_rndid(idev, tmpaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014 memcpy(&addr.s6_addr[8], idev->rndid, 8);
Lorenzo Colitti76f793e2011-07-26 13:50:49 +00001015 age = (now - ifp->tstamp) / HZ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001016 tmp_valid_lft = min_t(__u32,
1017 ifp->valid_lft,
Glenn Wurster7a876b02010-09-27 07:10:10 +00001018 idev->cnf.temp_valid_lft + age);
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001019 tmp_prefered_lft = min_t(__u32,
1020 ifp->prefered_lft,
Glenn Wurster7a876b02010-09-27 07:10:10 +00001021 idev->cnf.temp_prefered_lft + age -
Ben Hutchings784e2712010-06-26 11:42:55 +00001022 idev->cnf.max_desync_factor);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001023 tmp_plen = ifp->prefix_len;
1024 max_addresses = idev->cnf.max_addresses;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001025 tmp_tstamp = ifp->tstamp;
1026 spin_unlock_bh(&ifp->lock);
1027
Benoit Boissinoteac55bf2008-04-02 00:01:35 -07001028 regen_advance = idev->cnf.regen_max_retry *
1029 idev->cnf.dad_transmits *
1030 idev->nd_parms->retrans_time / HZ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001031 write_unlock(&idev->lock);
Neil Horman95c385b2007-04-25 17:08:10 -07001032
Benoit Boissinoteac55bf2008-04-02 00:01:35 -07001033 /* A temporary address is created only if this calculated Preferred
1034 * Lifetime is greater than REGEN_ADVANCE time units. In particular,
1035 * an implementation must not create a temporary address with a zero
1036 * Preferred Lifetime.
1037 */
1038 if (tmp_prefered_lft <= regen_advance) {
1039 in6_ifa_put(ifp);
1040 in6_dev_put(idev);
1041 ret = -1;
1042 goto out;
1043 }
1044
Neil Horman95c385b2007-04-25 17:08:10 -07001045 addr_flags = IFA_F_TEMPORARY;
1046 /* set in addrconf_prefix_rcv() */
1047 if (ifp->flags & IFA_F_OPTIMISTIC)
1048 addr_flags |= IFA_F_OPTIMISTIC;
1049
Linus Torvalds1da177e2005-04-16 15:20:36 -07001050 ift = !max_addresses ||
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001051 ipv6_count_addresses(idev) < max_addresses ?
Linus Torvalds1da177e2005-04-16 15:20:36 -07001052 ipv6_add_addr(idev, &addr, tmp_plen,
Neil Horman95c385b2007-04-25 17:08:10 -07001053 ipv6_addr_type(&addr)&IPV6_ADDR_SCOPE_MASK,
1054 addr_flags) : NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001055 if (!ift || IS_ERR(ift)) {
1056 in6_ifa_put(ifp);
1057 in6_dev_put(idev);
Joe Perchesf3213832012-05-15 14:11:53 +00001058 pr_info("%s: retry temporary address regeneration\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001059 tmpaddr = &addr;
1060 write_lock(&idev->lock);
1061 goto retry;
1062 }
1063
1064 spin_lock_bh(&ift->lock);
1065 ift->ifpub = ifp;
1066 ift->valid_lft = tmp_valid_lft;
1067 ift->prefered_lft = tmp_prefered_lft;
Lorenzo Colitti76f793e2011-07-26 13:50:49 +00001068 ift->cstamp = now;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001069 ift->tstamp = tmp_tstamp;
1070 spin_unlock_bh(&ift->lock);
1071
David S. Millercf22f9a2012-04-14 21:37:40 -04001072 addrconf_dad_start(ift);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001073 in6_ifa_put(ift);
1074 in6_dev_put(idev);
1075out:
1076 return ret;
1077}
1078#endif
1079
1080/*
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001081 * Choose an appropriate source address (RFC3484)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001082 */
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001083enum {
1084 IPV6_SADDR_RULE_INIT = 0,
1085 IPV6_SADDR_RULE_LOCAL,
1086 IPV6_SADDR_RULE_SCOPE,
1087 IPV6_SADDR_RULE_PREFERRED,
1088#ifdef CONFIG_IPV6_MIP6
1089 IPV6_SADDR_RULE_HOA,
1090#endif
1091 IPV6_SADDR_RULE_OIF,
1092 IPV6_SADDR_RULE_LABEL,
1093#ifdef CONFIG_IPV6_PRIVACY
1094 IPV6_SADDR_RULE_PRIVACY,
1095#endif
1096 IPV6_SADDR_RULE_ORCHID,
1097 IPV6_SADDR_RULE_PREFIX,
1098 IPV6_SADDR_RULE_MAX
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001099};
1100
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001101struct ipv6_saddr_score {
1102 int rule;
1103 int addr_type;
1104 struct inet6_ifaddr *ifa;
1105 DECLARE_BITMAP(scorebits, IPV6_SADDR_RULE_MAX);
1106 int scopedist;
1107 int matchlen;
1108};
1109
1110struct ipv6_saddr_dst {
YOSHIFUJI Hideaki9acd9f32008-04-10 15:42:10 +09001111 const struct in6_addr *addr;
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001112 int ifindex;
1113 int scope;
1114 int label;
YOSHIFUJI Hideaki7cbca672008-03-25 09:37:42 +09001115 unsigned int prefs;
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001116};
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001117
Dave Jonesb6f99a22007-03-22 12:27:49 -07001118static inline int ipv6_saddr_preferred(int type)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001119{
Ulrich Weber45bb0062010-02-25 23:28:58 +00001120 if (type & (IPV6_ADDR_MAPPED|IPV6_ADDR_COMPATv4|IPV6_ADDR_LOOPBACK))
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001121 return 1;
1122 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001123}
1124
Benjamin Thery3de23252008-05-28 14:51:24 +02001125static int ipv6_get_saddr_eval(struct net *net,
1126 struct ipv6_saddr_score *score,
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001127 struct ipv6_saddr_dst *dst,
1128 int i)
1129{
1130 int ret;
1131
1132 if (i <= score->rule) {
1133 switch (i) {
1134 case IPV6_SADDR_RULE_SCOPE:
1135 ret = score->scopedist;
1136 break;
1137 case IPV6_SADDR_RULE_PREFIX:
1138 ret = score->matchlen;
1139 break;
1140 default:
1141 ret = !!test_bit(i, score->scorebits);
1142 }
1143 goto out;
1144 }
1145
1146 switch (i) {
1147 case IPV6_SADDR_RULE_INIT:
1148 /* Rule 0: remember if hiscore is not ready yet */
1149 ret = !!score->ifa;
1150 break;
1151 case IPV6_SADDR_RULE_LOCAL:
1152 /* Rule 1: Prefer same address */
1153 ret = ipv6_addr_equal(&score->ifa->addr, dst->addr);
1154 break;
1155 case IPV6_SADDR_RULE_SCOPE:
1156 /* Rule 2: Prefer appropriate scope
1157 *
1158 * ret
1159 * ^
1160 * -1 | d 15
1161 * ---+--+-+---> scope
1162 * |
1163 * | d is scope of the destination.
1164 * B-d | \
1165 * | \ <- smaller scope is better if
1166 * B-15 | \ if scope is enough for destinaion.
1167 * | ret = B - scope (-1 <= scope >= d <= 15).
1168 * d-C-1 | /
1169 * |/ <- greater is better
1170 * -C / if scope is not enough for destination.
1171 * /| ret = scope - C (-1 <= d < scope <= 15).
1172 *
1173 * d - C - 1 < B -15 (for all -1 <= d <= 15).
1174 * C > d + 14 - B >= 15 + 14 - B = 29 - B.
1175 * Assume B = 0 and we get C > 29.
1176 */
1177 ret = __ipv6_addr_src_scope(score->addr_type);
1178 if (ret >= dst->scope)
1179 ret = -ret;
1180 else
1181 ret -= 128; /* 30 is enough */
1182 score->scopedist = ret;
1183 break;
1184 case IPV6_SADDR_RULE_PREFERRED:
1185 /* Rule 3: Avoid deprecated and optimistic addresses */
1186 ret = ipv6_saddr_preferred(score->addr_type) ||
1187 !(score->ifa->flags & (IFA_F_DEPRECATED|IFA_F_OPTIMISTIC));
1188 break;
1189#ifdef CONFIG_IPV6_MIP6
1190 case IPV6_SADDR_RULE_HOA:
YOSHIFUJI Hideaki7cbca672008-03-25 09:37:42 +09001191 {
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001192 /* Rule 4: Prefer home address */
YOSHIFUJI Hideaki7cbca672008-03-25 09:37:42 +09001193 int prefhome = !(dst->prefs & IPV6_PREFER_SRC_COA);
1194 ret = !(score->ifa->flags & IFA_F_HOMEADDRESS) ^ prefhome;
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001195 break;
YOSHIFUJI Hideaki7cbca672008-03-25 09:37:42 +09001196 }
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001197#endif
1198 case IPV6_SADDR_RULE_OIF:
1199 /* Rule 5: Prefer outgoing interface */
1200 ret = (!dst->ifindex ||
1201 dst->ifindex == score->ifa->idev->dev->ifindex);
1202 break;
1203 case IPV6_SADDR_RULE_LABEL:
1204 /* Rule 6: Prefer matching label */
Benjamin Thery3de23252008-05-28 14:51:24 +02001205 ret = ipv6_addr_label(net,
1206 &score->ifa->addr, score->addr_type,
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001207 score->ifa->idev->dev->ifindex) == dst->label;
1208 break;
1209#ifdef CONFIG_IPV6_PRIVACY
1210 case IPV6_SADDR_RULE_PRIVACY:
YOSHIFUJI Hideaki7cbca672008-03-25 09:37:42 +09001211 {
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001212 /* Rule 7: Prefer public address
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001213 * Note: prefer temporary address if use_tempaddr >= 2
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001214 */
YOSHIFUJI Hideaki7cbca672008-03-25 09:37:42 +09001215 int preftmp = dst->prefs & (IPV6_PREFER_SRC_PUBLIC|IPV6_PREFER_SRC_TMP) ?
1216 !!(dst->prefs & IPV6_PREFER_SRC_TMP) :
1217 score->ifa->idev->cnf.use_tempaddr >= 2;
1218 ret = (!(score->ifa->flags & IFA_F_TEMPORARY)) ^ preftmp;
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001219 break;
YOSHIFUJI Hideaki7cbca672008-03-25 09:37:42 +09001220 }
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001221#endif
1222 case IPV6_SADDR_RULE_ORCHID:
1223 /* Rule 8-: Prefer ORCHID vs ORCHID or
1224 * non-ORCHID vs non-ORCHID
1225 */
1226 ret = !(ipv6_addr_orchid(&score->ifa->addr) ^
1227 ipv6_addr_orchid(dst->addr));
1228 break;
1229 case IPV6_SADDR_RULE_PREFIX:
1230 /* Rule 8: Use longest matching prefix */
YOSHIFUJI Hideaki / 吉藤英明91b4b042012-09-10 18:41:07 +00001231 ret = ipv6_addr_diff(&score->ifa->addr, dst->addr);
1232 if (ret > score->ifa->prefix_len)
1233 ret = score->ifa->prefix_len;
1234 score->matchlen = ret;
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001235 break;
1236 default:
1237 ret = 0;
1238 }
1239
1240 if (ret)
1241 __set_bit(i, score->scorebits);
1242 score->rule = i;
1243out:
1244 return ret;
1245}
1246
Patrick McHardyb3f644f2012-08-26 19:14:14 +02001247int ipv6_dev_get_saddr(struct net *net, const struct net_device *dst_dev,
YOSHIFUJI Hideaki9acd9f32008-04-10 15:42:10 +09001248 const struct in6_addr *daddr, unsigned int prefs,
YOSHIFUJI Hideaki7cbca672008-03-25 09:37:42 +09001249 struct in6_addr *saddr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001250{
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001251 struct ipv6_saddr_score scores[2],
1252 *score = &scores[0], *hiscore = &scores[1];
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001253 struct ipv6_saddr_dst dst;
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001254 struct net_device *dev;
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001255 int dst_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001256
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001257 dst_type = __ipv6_addr_type(daddr);
1258 dst.addr = daddr;
1259 dst.ifindex = dst_dev ? dst_dev->ifindex : 0;
1260 dst.scope = __ipv6_addr_src_scope(dst_type);
Benjamin Thery3de23252008-05-28 14:51:24 +02001261 dst.label = ipv6_addr_label(net, daddr, dst_type, dst.ifindex);
YOSHIFUJI Hideaki7cbca672008-03-25 09:37:42 +09001262 dst.prefs = prefs;
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001263
1264 hiscore->rule = -1;
1265 hiscore->ifa = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001266
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -07001267 rcu_read_lock();
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001268
Eric Dumazetc6d14c82009-11-04 05:43:23 -08001269 for_each_netdev_rcu(net, dev) {
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001270 struct inet6_dev *idev;
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001271
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001272 /* Candidate Source Address (section 4)
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001273 * - multicast and link-local destination address,
1274 * the set of candidate source address MUST only
1275 * include addresses assigned to interfaces
1276 * belonging to the same link as the outgoing
1277 * interface.
1278 * (- For site-local destination addresses, the
1279 * set of candidate source addresses MUST only
1280 * include addresses assigned to interfaces
1281 * belonging to the same site as the outgoing
1282 * interface.)
1283 */
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001284 if (((dst_type & IPV6_ADDR_MULTICAST) ||
1285 dst.scope <= IPV6_ADDR_SCOPE_LINKLOCAL) &&
1286 dst.ifindex && dev->ifindex != dst.ifindex)
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001287 continue;
1288
Linus Torvalds1da177e2005-04-16 15:20:36 -07001289 idev = __in6_dev_get(dev);
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001290 if (!idev)
1291 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001292
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001293 read_lock_bh(&idev->lock);
stephen hemminger502a2ff2010-03-17 20:31:13 +00001294 list_for_each_entry(score->ifa, &idev->addr_list, if_list) {
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001295 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001296
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001297 /*
YOSHIFUJI Hideaki6b3ae802005-12-21 22:58:01 +09001298 * - Tentative Address (RFC2462 section 5.4)
1299 * - A tentative address is not considered
1300 * "assigned to an interface" in the traditional
Neil Horman95c385b2007-04-25 17:08:10 -07001301 * sense, unless it is also flagged as optimistic.
YOSHIFUJI Hideaki6b3ae802005-12-21 22:58:01 +09001302 * - Candidate Source Address (section 4)
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001303 * - In any case, anycast addresses, multicast
1304 * addresses, and the unspecified address MUST
1305 * NOT be included in a candidate set.
1306 */
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001307 if ((score->ifa->flags & IFA_F_TENTATIVE) &&
1308 (!(score->ifa->flags & IFA_F_OPTIMISTIC)))
YOSHIFUJI Hideaki6b3ae802005-12-21 22:58:01 +09001309 continue;
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001310
1311 score->addr_type = __ipv6_addr_type(&score->ifa->addr);
1312
1313 if (unlikely(score->addr_type == IPV6_ADDR_ANY ||
1314 score->addr_type & IPV6_ADDR_MULTICAST)) {
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001315 LIMIT_NETDEBUG(KERN_DEBUG
Joe Perches3b6d821c2007-11-19 23:47:25 -08001316 "ADDRCONF: unspecified / multicast address "
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001317 "assigned as unicast address on %s",
1318 dev->name);
1319 continue;
1320 }
1321
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001322 score->rule = -1;
1323 bitmap_zero(score->scorebits, IPV6_SADDR_RULE_MAX);
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001324
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001325 for (i = 0; i < IPV6_SADDR_RULE_MAX; i++) {
1326 int minihiscore, miniscore;
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001327
Benjamin Thery3de23252008-05-28 14:51:24 +02001328 minihiscore = ipv6_get_saddr_eval(net, hiscore, &dst, i);
1329 miniscore = ipv6_get_saddr_eval(net, score, &dst, i);
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001330
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001331 if (minihiscore > miniscore) {
1332 if (i == IPV6_SADDR_RULE_SCOPE &&
1333 score->scopedist > 0) {
1334 /*
1335 * special case:
1336 * each remaining entry
1337 * has too small (not enough)
1338 * scope, because ifa entries
1339 * are sorted by their scope
1340 * values.
1341 */
1342 goto try_nextdev;
1343 }
1344 break;
1345 } else if (minihiscore < miniscore) {
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001346 if (hiscore->ifa)
1347 in6_ifa_put(hiscore->ifa);
1348
1349 in6_ifa_hold(score->ifa);
1350
Ilpo Järvinena0bffff2009-03-21 13:36:17 -07001351 swap(hiscore, score);
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001352
1353 /* restore our iterator */
1354 score->ifa = hiscore->ifa;
1355
1356 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001357 }
1358 }
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001359 }
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001360try_nextdev:
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001361 read_unlock_bh(&idev->lock);
1362 }
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -07001363 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001364
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001365 if (!hiscore->ifa)
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001366 return -EADDRNOTAVAIL;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001367
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00001368 *saddr = hiscore->ifa->addr;
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001369 in6_ifa_put(hiscore->ifa);
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001370 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001371}
YOSHIFUJI Hideaki5e5f3f02008-03-03 21:44:34 +09001372EXPORT_SYMBOL(ipv6_dev_get_saddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001373
Neil Horman95c385b2007-04-25 17:08:10 -07001374int ipv6_get_lladdr(struct net_device *dev, struct in6_addr *addr,
1375 unsigned char banned_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001376{
1377 struct inet6_dev *idev;
1378 int err = -EADDRNOTAVAIL;
1379
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -07001380 rcu_read_lock();
Stephen Hemmingere21e8462010-03-20 16:09:01 -07001381 idev = __in6_dev_get(dev);
1382 if (idev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001383 struct inet6_ifaddr *ifp;
1384
1385 read_lock_bh(&idev->lock);
stephen hemminger502a2ff2010-03-17 20:31:13 +00001386 list_for_each_entry(ifp, &idev->addr_list, if_list) {
1387 if (ifp->scope == IFA_LINK &&
1388 !(ifp->flags & banned_flags)) {
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00001389 *addr = ifp->addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001390 err = 0;
1391 break;
1392 }
1393 }
1394 read_unlock_bh(&idev->lock);
1395 }
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -07001396 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001397 return err;
1398}
1399
1400static int ipv6_count_addresses(struct inet6_dev *idev)
1401{
1402 int cnt = 0;
1403 struct inet6_ifaddr *ifp;
1404
1405 read_lock_bh(&idev->lock);
stephen hemminger502a2ff2010-03-17 20:31:13 +00001406 list_for_each_entry(ifp, &idev->addr_list, if_list)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001407 cnt++;
1408 read_unlock_bh(&idev->lock);
1409 return cnt;
1410}
1411
Eric Dumazetb71d1d42011-04-22 04:53:02 +00001412int ipv6_chk_addr(struct net *net, const struct in6_addr *addr,
Daniel Lezcanobfeade02008-01-10 22:43:18 -08001413 struct net_device *dev, int strict)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001414{
Stephen Hemmingereedf0422010-05-17 22:27:12 -07001415 struct inet6_ifaddr *ifp;
stephen hemmingerc2e21292010-03-17 20:31:10 +00001416 struct hlist_node *node;
Eric Dumazetddbe5032012-07-18 08:11:12 +00001417 unsigned int hash = inet6_addr_hash(addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001418
stephen hemminger5c578ae2010-03-17 20:31:11 +00001419 rcu_read_lock_bh();
1420 hlist_for_each_entry_rcu(ifp, node, &inet6_addr_lst[hash], addr_lst) {
YOSHIFUJI Hideaki878628f2008-03-26 03:57:35 +09001421 if (!net_eq(dev_net(ifp->idev->dev), net))
Daniel Lezcanobfeade02008-01-10 22:43:18 -08001422 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001423 if (ipv6_addr_equal(&ifp->addr, addr) &&
Stephen Hemmingereedf0422010-05-17 22:27:12 -07001424 !(ifp->flags&IFA_F_TENTATIVE) &&
1425 (dev == NULL || ifp->idev->dev == dev ||
1426 !(ifp->scope&(IFA_LINK|IFA_HOST) || strict))) {
1427 rcu_read_unlock_bh();
1428 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001429 }
1430 }
stephen hemminger5c578ae2010-03-17 20:31:11 +00001431
Stephen Hemmingereedf0422010-05-17 22:27:12 -07001432 rcu_read_unlock_bh();
1433 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001434}
YOSHIFUJI Hideaki71590392007-02-22 22:05:40 +09001435EXPORT_SYMBOL(ipv6_chk_addr);
1436
David S. Miller3e81c6d2010-03-20 16:18:00 -07001437static bool ipv6_chk_same_addr(struct net *net, const struct in6_addr *addr,
1438 struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001439{
Eric Dumazetddbe5032012-07-18 08:11:12 +00001440 unsigned int hash = inet6_addr_hash(addr);
stephen hemmingerc2e21292010-03-17 20:31:10 +00001441 struct inet6_ifaddr *ifp;
1442 struct hlist_node *node;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001443
stephen hemmingerc2e21292010-03-17 20:31:10 +00001444 hlist_for_each_entry(ifp, node, &inet6_addr_lst[hash], addr_lst) {
YOSHIFUJI Hideaki878628f2008-03-26 03:57:35 +09001445 if (!net_eq(dev_net(ifp->idev->dev), net))
Daniel Lezcano06bfe652008-01-10 22:43:42 -08001446 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001447 if (ipv6_addr_equal(&ifp->addr, addr)) {
1448 if (dev == NULL || ifp->idev->dev == dev)
David S. Miller3e81c6d2010-03-20 16:18:00 -07001449 return true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001450 }
1451 }
David S. Miller3e81c6d2010-03-20 16:18:00 -07001452 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001453}
1454
Eric Dumazetb71d1d42011-04-22 04:53:02 +00001455int ipv6_chk_prefix(const struct in6_addr *addr, struct net_device *dev)
YOSHIFUJI Hideaki52eeeb82008-03-15 22:54:23 -04001456{
1457 struct inet6_dev *idev;
1458 struct inet6_ifaddr *ifa;
1459 int onlink;
1460
1461 onlink = 0;
1462 rcu_read_lock();
1463 idev = __in6_dev_get(dev);
1464 if (idev) {
1465 read_lock_bh(&idev->lock);
stephen hemminger502a2ff2010-03-17 20:31:13 +00001466 list_for_each_entry(ifa, &idev->addr_list, if_list) {
YOSHIFUJI Hideaki52eeeb82008-03-15 22:54:23 -04001467 onlink = ipv6_prefix_equal(addr, &ifa->addr,
1468 ifa->prefix_len);
1469 if (onlink)
1470 break;
1471 }
1472 read_unlock_bh(&idev->lock);
1473 }
1474 rcu_read_unlock();
1475 return onlink;
1476}
YOSHIFUJI Hideaki52eeeb82008-03-15 22:54:23 -04001477EXPORT_SYMBOL(ipv6_chk_prefix);
1478
YOSHIFUJI Hideaki9acd9f32008-04-10 15:42:10 +09001479struct inet6_ifaddr *ipv6_get_ifaddr(struct net *net, const struct in6_addr *addr,
Daniel Lezcano1cab3da2008-01-10 22:44:09 -08001480 struct net_device *dev, int strict)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001481{
David S. Millerb79d1d52010-03-25 21:39:21 -07001482 struct inet6_ifaddr *ifp, *result = NULL;
Eric Dumazetddbe5032012-07-18 08:11:12 +00001483 unsigned int hash = inet6_addr_hash(addr);
David S. Millerb79d1d52010-03-25 21:39:21 -07001484 struct hlist_node *node;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001485
stephen hemminger5c578ae2010-03-17 20:31:11 +00001486 rcu_read_lock_bh();
Eric Dumazet4f70ecc2010-05-03 10:50:14 +00001487 hlist_for_each_entry_rcu_bh(ifp, node, &inet6_addr_lst[hash], addr_lst) {
YOSHIFUJI Hideaki878628f2008-03-26 03:57:35 +09001488 if (!net_eq(dev_net(ifp->idev->dev), net))
Daniel Lezcano1cab3da2008-01-10 22:44:09 -08001489 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001490 if (ipv6_addr_equal(&ifp->addr, addr)) {
1491 if (dev == NULL || ifp->idev->dev == dev ||
1492 !(ifp->scope&(IFA_LINK|IFA_HOST) || strict)) {
David S. Millerb79d1d52010-03-25 21:39:21 -07001493 result = ifp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001494 in6_ifa_hold(ifp);
1495 break;
1496 }
1497 }
1498 }
stephen hemminger5c578ae2010-03-17 20:31:11 +00001499 rcu_read_unlock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001500
David S. Millerb79d1d52010-03-25 21:39:21 -07001501 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001502}
1503
Linus Torvalds1da177e2005-04-16 15:20:36 -07001504/* Gets referenced address, destroys ifaddr */
1505
Brian Haleycc411d02009-09-09 14:41:32 +00001506static void addrconf_dad_stop(struct inet6_ifaddr *ifp, int dad_failed)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001507{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001508 if (ifp->flags&IFA_F_PERMANENT) {
1509 spin_lock_bh(&ifp->lock);
1510 addrconf_del_timer(ifp);
1511 ifp->flags |= IFA_F_TENTATIVE;
Brian Haleycc411d02009-09-09 14:41:32 +00001512 if (dad_failed)
1513 ifp->flags |= IFA_F_DADFAILED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001514 spin_unlock_bh(&ifp->lock);
Herbert Xue2577a02010-03-13 12:23:29 -08001515 if (dad_failed)
1516 ipv6_ifa_notify(0, ifp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001517 in6_ifa_put(ifp);
1518#ifdef CONFIG_IPV6_PRIVACY
1519 } else if (ifp->flags&IFA_F_TEMPORARY) {
1520 struct inet6_ifaddr *ifpub;
1521 spin_lock_bh(&ifp->lock);
1522 ifpub = ifp->ifpub;
1523 if (ifpub) {
1524 in6_ifa_hold(ifpub);
1525 spin_unlock_bh(&ifp->lock);
1526 ipv6_create_tempaddr(ifpub, ifp);
1527 in6_ifa_put(ifpub);
1528 } else {
1529 spin_unlock_bh(&ifp->lock);
1530 }
1531 ipv6_del_addr(ifp);
1532#endif
1533 } else
1534 ipv6_del_addr(ifp);
1535}
1536
Herbert Xuf2344a12010-05-18 15:55:27 -07001537static int addrconf_dad_end(struct inet6_ifaddr *ifp)
1538{
1539 int err = -ENOENT;
1540
1541 spin_lock(&ifp->state_lock);
1542 if (ifp->state == INET6_IFADDR_STATE_DAD) {
1543 ifp->state = INET6_IFADDR_STATE_POSTDAD;
1544 err = 0;
1545 }
1546 spin_unlock(&ifp->state_lock);
1547
1548 return err;
1549}
1550
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09001551void addrconf_dad_failure(struct inet6_ifaddr *ifp)
1552{
YOSHIFUJI Hideaki1b34be72008-06-28 14:18:38 +09001553 struct inet6_dev *idev = ifp->idev;
Brian Haley9bdd8d42009-03-18 18:22:48 -07001554
Ursula Braun853dc2e2010-10-24 23:06:43 +00001555 if (addrconf_dad_end(ifp)) {
1556 in6_ifa_put(ifp);
Herbert Xuf2344a12010-05-18 15:55:27 -07001557 return;
Ursula Braun853dc2e2010-10-24 23:06:43 +00001558 }
Herbert Xuf2344a12010-05-18 15:55:27 -07001559
Joe Perchese87cc472012-05-13 21:56:26 +00001560 net_info_ratelimited("%s: IPv6 duplicate address %pI6c detected!\n",
1561 ifp->idev->dev->name, &ifp->addr);
Brian Haley9bdd8d42009-03-18 18:22:48 -07001562
YOSHIFUJI Hideaki1b34be72008-06-28 14:18:38 +09001563 if (idev->cnf.accept_dad > 1 && !idev->cnf.disable_ipv6) {
1564 struct in6_addr addr;
1565
1566 addr.s6_addr32[0] = htonl(0xfe800000);
1567 addr.s6_addr32[1] = 0;
1568
1569 if (!ipv6_generate_eui64(addr.s6_addr + 8, idev->dev) &&
1570 ipv6_addr_equal(&ifp->addr, &addr)) {
1571 /* DAD failed for link-local based on MAC address */
1572 idev->cnf.disable_ipv6 = 1;
Brian Haley9bdd8d42009-03-18 18:22:48 -07001573
Joe Perchesf3213832012-05-15 14:11:53 +00001574 pr_info("%s: IPv6 being disabled!\n",
Brian Haley9bdd8d42009-03-18 18:22:48 -07001575 ifp->idev->dev->name);
YOSHIFUJI Hideaki1b34be72008-06-28 14:18:38 +09001576 }
1577 }
1578
Brian Haleycc411d02009-09-09 14:41:32 +00001579 addrconf_dad_stop(ifp, 1);
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09001580}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001581
1582/* Join to solicited addr multicast group. */
1583
Eric Dumazetb71d1d42011-04-22 04:53:02 +00001584void addrconf_join_solict(struct net_device *dev, const struct in6_addr *addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001585{
1586 struct in6_addr maddr;
1587
1588 if (dev->flags&(IFF_LOOPBACK|IFF_NOARP))
1589 return;
1590
1591 addrconf_addr_solict_mult(addr, &maddr);
1592 ipv6_dev_mc_inc(dev, &maddr);
1593}
1594
Eric Dumazetb71d1d42011-04-22 04:53:02 +00001595void addrconf_leave_solict(struct inet6_dev *idev, const struct in6_addr *addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001596{
1597 struct in6_addr maddr;
1598
1599 if (idev->dev->flags&(IFF_LOOPBACK|IFF_NOARP))
1600 return;
1601
1602 addrconf_addr_solict_mult(addr, &maddr);
1603 __ipv6_dev_mc_dec(idev, &maddr);
1604}
1605
Arnaldo Carvalho de Melo20380732005-08-16 02:18:02 -03001606static void addrconf_join_anycast(struct inet6_ifaddr *ifp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001607{
1608 struct in6_addr addr;
Bjørn Mork2bda8a02011-07-05 23:04:13 +00001609 if (ifp->prefix_len == 127) /* RFC 6164 */
1610 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001611 ipv6_addr_prefix(&addr, &ifp->addr, ifp->prefix_len);
1612 if (ipv6_addr_any(&addr))
1613 return;
1614 ipv6_dev_ac_inc(ifp->idev->dev, &addr);
1615}
1616
Arnaldo Carvalho de Melo20380732005-08-16 02:18:02 -03001617static void addrconf_leave_anycast(struct inet6_ifaddr *ifp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001618{
1619 struct in6_addr addr;
YOSHIFUJI Hideaki32019e62011-07-24 11:44:34 +00001620 if (ifp->prefix_len == 127) /* RFC 6164 */
1621 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001622 ipv6_addr_prefix(&addr, &ifp->addr, ifp->prefix_len);
1623 if (ipv6_addr_any(&addr))
1624 return;
1625 __ipv6_dev_ac_dec(ifp->idev, &addr);
1626}
1627
YOSHIFUJI Hideaki073a8e02006-03-20 16:54:49 -08001628static int addrconf_ifid_eui48(u8 *eui, struct net_device *dev)
1629{
1630 if (dev->addr_len != ETH_ALEN)
1631 return -1;
1632 memcpy(eui, dev->dev_addr, 3);
1633 memcpy(eui + 5, dev->dev_addr + 3, 3);
1634
1635 /*
1636 * The zSeries OSA network cards can be shared among various
1637 * OS instances, but the OSA cards have only one MAC address.
1638 * This leads to duplicate address conflicts in conjunction
1639 * with IPv6 if more than one instance uses the same card.
1640 *
1641 * The driver for these cards can deliver a unique 16-bit
1642 * identifier for each instance sharing the same card. It is
1643 * placed instead of 0xFFFE in the interface identifier. The
1644 * "u" bit of the interface identifier is not inverted in this
1645 * case. Hence the resulting interface identifier has local
1646 * scope according to RFC2373.
1647 */
1648 if (dev->dev_id) {
1649 eui[3] = (dev->dev_id >> 8) & 0xFF;
1650 eui[4] = dev->dev_id & 0xFF;
1651 } else {
1652 eui[3] = 0xFF;
1653 eui[4] = 0xFE;
1654 eui[0] ^= 2;
1655 }
1656 return 0;
1657}
1658
alex.bluesman.smirnov@gmail.com06a4c1c2012-05-10 03:25:52 +00001659static int addrconf_ifid_eui64(u8 *eui, struct net_device *dev)
1660{
1661 if (dev->addr_len != IEEE802154_ADDR_LEN)
1662 return -1;
1663 memcpy(eui, dev->dev_addr, 8);
1664 return 0;
1665}
1666
YOSHIFUJI Hideaki073a8e02006-03-20 16:54:49 -08001667static int addrconf_ifid_arcnet(u8 *eui, struct net_device *dev)
1668{
1669 /* XXX: inherit EUI-64 from other interface -- yoshfuji */
1670 if (dev->addr_len != ARCNET_ALEN)
1671 return -1;
1672 memset(eui, 0, 7);
Eldad Zack8e5e8f32012-04-01 07:49:08 +00001673 eui[7] = *(u8 *)dev->dev_addr;
YOSHIFUJI Hideaki073a8e02006-03-20 16:54:49 -08001674 return 0;
1675}
1676
1677static int addrconf_ifid_infiniband(u8 *eui, struct net_device *dev)
1678{
1679 if (dev->addr_len != INFINIBAND_ALEN)
1680 return -1;
1681 memcpy(eui, dev->dev_addr + 12, 8);
1682 eui[0] |= 2;
1683 return 0;
1684}
1685
stephen hemmingerc61393e2010-10-04 20:17:53 +00001686static int __ipv6_isatap_ifid(u8 *eui, __be32 addr)
YOSHIFUJI Hideakidfd982b2008-04-10 15:42:09 +09001687{
Sascha Hlusiak9af28512009-05-19 12:56:51 +00001688 if (addr == 0)
1689 return -1;
YOSHIFUJI Hideakidfd982b2008-04-10 15:42:09 +09001690 eui[0] = (ipv4_is_zeronet(addr) || ipv4_is_private_10(addr) ||
1691 ipv4_is_loopback(addr) || ipv4_is_linklocal_169(addr) ||
1692 ipv4_is_private_172(addr) || ipv4_is_test_192(addr) ||
1693 ipv4_is_anycast_6to4(addr) || ipv4_is_private_192(addr) ||
1694 ipv4_is_test_198(addr) || ipv4_is_multicast(addr) ||
1695 ipv4_is_lbcast(addr)) ? 0x00 : 0x02;
1696 eui[1] = 0;
1697 eui[2] = 0x5E;
1698 eui[3] = 0xFE;
1699 memcpy(eui + 4, &addr, 4);
1700 return 0;
1701}
YOSHIFUJI Hideakidfd982b2008-04-10 15:42:09 +09001702
1703static int addrconf_ifid_sit(u8 *eui, struct net_device *dev)
1704{
1705 if (dev->priv_flags & IFF_ISATAP)
1706 return __ipv6_isatap_ifid(eui, *(__be32 *)dev->dev_addr);
1707 return -1;
1708}
1709
stephen hemmingeraee80b52011-06-08 10:44:30 +00001710static int addrconf_ifid_gre(u8 *eui, struct net_device *dev)
1711{
1712 return __ipv6_isatap_ifid(eui, *(__be32 *)dev->dev_addr);
1713}
1714
Linus Torvalds1da177e2005-04-16 15:20:36 -07001715static int ipv6_generate_eui64(u8 *eui, struct net_device *dev)
1716{
1717 switch (dev->type) {
1718 case ARPHRD_ETHER:
1719 case ARPHRD_FDDI:
YOSHIFUJI Hideaki073a8e02006-03-20 16:54:49 -08001720 return addrconf_ifid_eui48(eui, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001721 case ARPHRD_ARCNET:
YOSHIFUJI Hideaki073a8e02006-03-20 16:54:49 -08001722 return addrconf_ifid_arcnet(eui, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001723 case ARPHRD_INFINIBAND:
YOSHIFUJI Hideaki073a8e02006-03-20 16:54:49 -08001724 return addrconf_ifid_infiniband(eui, dev);
Fred L. Templinc7dc89c2007-11-29 22:11:40 +11001725 case ARPHRD_SIT:
YOSHIFUJI Hideakidfd982b2008-04-10 15:42:09 +09001726 return addrconf_ifid_sit(eui, dev);
stephen hemmingeraee80b52011-06-08 10:44:30 +00001727 case ARPHRD_IPGRE:
1728 return addrconf_ifid_gre(eui, dev);
alex.bluesman.smirnov@gmail.com06a4c1c2012-05-10 03:25:52 +00001729 case ARPHRD_IEEE802154:
1730 return addrconf_ifid_eui64(eui, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001731 }
1732 return -1;
1733}
1734
1735static int ipv6_inherit_eui64(u8 *eui, struct inet6_dev *idev)
1736{
1737 int err = -1;
1738 struct inet6_ifaddr *ifp;
1739
1740 read_lock_bh(&idev->lock);
stephen hemminger502a2ff2010-03-17 20:31:13 +00001741 list_for_each_entry(ifp, &idev->addr_list, if_list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001742 if (ifp->scope == IFA_LINK && !(ifp->flags&IFA_F_TENTATIVE)) {
1743 memcpy(eui, ifp->addr.s6_addr+8, 8);
1744 err = 0;
1745 break;
1746 }
1747 }
1748 read_unlock_bh(&idev->lock);
1749 return err;
1750}
1751
1752#ifdef CONFIG_IPV6_PRIVACY
1753/* (re)generation of randomized interface identifier (RFC 3041 3.2, 3.5) */
Sorin Dumitrueb7e0572012-08-30 02:01:45 +00001754static void __ipv6_regen_rndid(struct inet6_dev *idev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001755{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001756regen:
YOSHIFUJI Hideaki955189e2006-03-20 16:54:09 -08001757 get_random_bytes(idev->rndid, sizeof(idev->rndid));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001758 idev->rndid[0] &= ~0x02;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001759
1760 /*
1761 * <draft-ietf-ipngwg-temp-addresses-v2-00.txt>:
1762 * check if generated address is not inappropriate
1763 *
1764 * - Reserved subnet anycast (RFC 2526)
1765 * 11111101 11....11 1xxxxxxx
Fred L. Templinc7dc89c2007-11-29 22:11:40 +11001766 * - ISATAP (RFC4214) 6.1
Linus Torvalds1da177e2005-04-16 15:20:36 -07001767 * 00-00-5E-FE-xx-xx-xx-xx
1768 * - value 0
1769 * - XXX: already assigned to an address on the device
1770 */
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001771 if (idev->rndid[0] == 0xfd &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07001772 (idev->rndid[1]&idev->rndid[2]&idev->rndid[3]&idev->rndid[4]&idev->rndid[5]&idev->rndid[6]) == 0xff &&
1773 (idev->rndid[7]&0x80))
1774 goto regen;
1775 if ((idev->rndid[0]|idev->rndid[1]) == 0) {
1776 if (idev->rndid[2] == 0x5e && idev->rndid[3] == 0xfe)
1777 goto regen;
1778 if ((idev->rndid[2]|idev->rndid[3]|idev->rndid[4]|idev->rndid[5]|idev->rndid[6]|idev->rndid[7]) == 0x00)
1779 goto regen;
1780 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001781}
1782
1783static void ipv6_regen_rndid(unsigned long data)
1784{
1785 struct inet6_dev *idev = (struct inet6_dev *) data;
1786 unsigned long expires;
1787
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -07001788 rcu_read_lock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001789 write_lock_bh(&idev->lock);
1790
1791 if (idev->dead)
1792 goto out;
1793
Sorin Dumitrueb7e0572012-08-30 02:01:45 +00001794 __ipv6_regen_rndid(idev);
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001795
Linus Torvalds1da177e2005-04-16 15:20:36 -07001796 expires = jiffies +
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001797 idev->cnf.temp_prefered_lft * HZ -
Ben Hutchings784e2712010-06-26 11:42:55 +00001798 idev->cnf.regen_max_retry * idev->cnf.dad_transmits * idev->nd_parms->retrans_time -
1799 idev->cnf.max_desync_factor * HZ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001800 if (time_before(expires, jiffies)) {
Joe Perchesf3213832012-05-15 14:11:53 +00001801 pr_warn("%s: too short regeneration interval; timer disabled for %s\n",
1802 __func__, idev->dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001803 goto out;
1804 }
1805
1806 if (!mod_timer(&idev->regen_timer, expires))
1807 in6_dev_hold(idev);
1808
1809out:
1810 write_unlock_bh(&idev->lock);
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -07001811 rcu_read_unlock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001812 in6_dev_put(idev);
1813}
1814
Sorin Dumitrueb7e0572012-08-30 02:01:45 +00001815static void __ipv6_try_regen_rndid(struct inet6_dev *idev, struct in6_addr *tmpaddr)
Eldad Zack8e5e8f32012-04-01 07:49:08 +00001816{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001817 if (tmpaddr && memcmp(idev->rndid, &tmpaddr->s6_addr[8], 8) == 0)
Sorin Dumitrueb7e0572012-08-30 02:01:45 +00001818 __ipv6_regen_rndid(idev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001819}
1820#endif
1821
1822/*
1823 * Add prefix route.
1824 */
1825
1826static void
1827addrconf_prefix_route(struct in6_addr *pfx, int plen, struct net_device *dev,
Jamal Hadi Salime431b8c2005-06-18 22:55:31 -07001828 unsigned long expires, u32 flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001829{
Thomas Graf86872cb2006-08-22 00:01:08 -07001830 struct fib6_config cfg = {
1831 .fc_table = RT6_TABLE_PREFIX,
1832 .fc_metric = IP6_RT_PRIO_ADDRCONF,
1833 .fc_ifindex = dev->ifindex,
1834 .fc_expires = expires,
1835 .fc_dst_len = plen,
1836 .fc_flags = RTF_UP | flags,
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09001837 .fc_nlinfo.nl_net = dev_net(dev),
Stephen Hemmingerf410a1f2008-08-23 05:16:46 -07001838 .fc_protocol = RTPROT_KERNEL,
Thomas Graf86872cb2006-08-22 00:01:08 -07001839 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001840
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00001841 cfg.fc_dst = *pfx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001842
1843 /* Prevent useless cloning on PtP SIT.
1844 This thing is done here expecting that the whole
1845 class of non-broadcast devices need not cloning.
1846 */
Amerigo Wang07a93622012-10-29 16:23:10 +00001847#if IS_ENABLED(CONFIG_IPV6_SIT)
Thomas Graf86872cb2006-08-22 00:01:08 -07001848 if (dev->type == ARPHRD_SIT && (dev->flags & IFF_POINTOPOINT))
1849 cfg.fc_flags |= RTF_NONEXTHOP;
Joerg Roedel0be669b2006-10-10 14:49:53 -07001850#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001851
Thomas Graf86872cb2006-08-22 00:01:08 -07001852 ip6_route_add(&cfg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001853}
1854
Andreas Hofmeister14ef37b2011-10-26 03:24:29 +00001855
1856static struct rt6_info *addrconf_get_prefix_route(const struct in6_addr *pfx,
1857 int plen,
1858 const struct net_device *dev,
1859 u32 flags, u32 noflags)
1860{
1861 struct fib6_node *fn;
1862 struct rt6_info *rt = NULL;
1863 struct fib6_table *table;
1864
1865 table = fib6_get_table(dev_net(dev), RT6_TABLE_PREFIX);
1866 if (table == NULL)
1867 return NULL;
1868
Li RongQing5744dd92012-09-11 21:59:01 +00001869 read_lock_bh(&table->tb6_lock);
Andreas Hofmeister14ef37b2011-10-26 03:24:29 +00001870 fn = fib6_locate(&table->tb6_root, pfx, plen, NULL, 0);
1871 if (!fn)
1872 goto out;
1873 for (rt = fn->leaf; rt; rt = rt->dst.rt6_next) {
David S. Millerd1918542011-12-28 20:19:20 -05001874 if (rt->dst.dev->ifindex != dev->ifindex)
Andreas Hofmeister14ef37b2011-10-26 03:24:29 +00001875 continue;
1876 if ((rt->rt6i_flags & flags) != flags)
1877 continue;
1878 if ((noflags != 0) && ((rt->rt6i_flags & flags) != 0))
1879 continue;
1880 dst_hold(&rt->dst);
1881 break;
1882 }
1883out:
Li RongQing5744dd92012-09-11 21:59:01 +00001884 read_unlock_bh(&table->tb6_lock);
Andreas Hofmeister14ef37b2011-10-26 03:24:29 +00001885 return rt;
1886}
1887
1888
Linus Torvalds1da177e2005-04-16 15:20:36 -07001889/* Create "default" multicast route to the interface */
1890
1891static void addrconf_add_mroute(struct net_device *dev)
1892{
Thomas Graf86872cb2006-08-22 00:01:08 -07001893 struct fib6_config cfg = {
1894 .fc_table = RT6_TABLE_LOCAL,
1895 .fc_metric = IP6_RT_PRIO_ADDRCONF,
1896 .fc_ifindex = dev->ifindex,
1897 .fc_dst_len = 8,
1898 .fc_flags = RTF_UP,
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09001899 .fc_nlinfo.nl_net = dev_net(dev),
Thomas Graf86872cb2006-08-22 00:01:08 -07001900 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001901
Thomas Graf86872cb2006-08-22 00:01:08 -07001902 ipv6_addr_set(&cfg.fc_dst, htonl(0xFF000000), 0, 0, 0);
1903
1904 ip6_route_add(&cfg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001905}
1906
Amerigo Wang07a93622012-10-29 16:23:10 +00001907#if IS_ENABLED(CONFIG_IPV6_SIT)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001908static void sit_route_add(struct net_device *dev)
1909{
Thomas Graf86872cb2006-08-22 00:01:08 -07001910 struct fib6_config cfg = {
1911 .fc_table = RT6_TABLE_MAIN,
1912 .fc_metric = IP6_RT_PRIO_ADDRCONF,
1913 .fc_ifindex = dev->ifindex,
1914 .fc_dst_len = 96,
1915 .fc_flags = RTF_UP | RTF_NONEXTHOP,
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09001916 .fc_nlinfo.nl_net = dev_net(dev),
Thomas Graf86872cb2006-08-22 00:01:08 -07001917 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001918
1919 /* prefix length - 96 bits "::d.d.d.d" */
Thomas Graf86872cb2006-08-22 00:01:08 -07001920 ip6_route_add(&cfg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001921}
Joerg Roedel0be669b2006-10-10 14:49:53 -07001922#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001923
Linus Torvalds1da177e2005-04-16 15:20:36 -07001924static struct inet6_dev *addrconf_add_dev(struct net_device *dev)
1925{
1926 struct inet6_dev *idev;
1927
1928 ASSERT_RTNL();
1929
Stephen Hemmingere21e8462010-03-20 16:09:01 -07001930 idev = ipv6_find_idev(dev);
1931 if (!idev)
Brian Haley64e724f2010-07-20 10:34:30 +00001932 return ERR_PTR(-ENOBUFS);
1933
1934 if (idev->cnf.disable_ipv6)
1935 return ERR_PTR(-EACCES);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001936
1937 /* Add default multicast route */
Li Wei4af04ab2011-12-06 21:23:45 +00001938 if (!(dev->flags & IFF_LOOPBACK))
1939 addrconf_add_mroute(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001940
Linus Torvalds1da177e2005-04-16 15:20:36 -07001941 return idev;
1942}
1943
Neil Hormane6bff992012-01-04 10:49:15 +00001944void addrconf_prefix_rcv(struct net_device *dev, u8 *opt, int len, bool sllao)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001945{
1946 struct prefix_info *pinfo;
1947 __u32 valid_lft;
1948 __u32 prefered_lft;
1949 int addr_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001950 struct inet6_dev *in6_dev;
Brian Haley56d417b2009-06-01 03:07:33 -07001951 struct net *net = dev_net(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001952
1953 pinfo = (struct prefix_info *) opt;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001954
Linus Torvalds1da177e2005-04-16 15:20:36 -07001955 if (len < sizeof(struct prefix_info)) {
1956 ADBG(("addrconf: prefix option too short\n"));
1957 return;
1958 }
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001959
Linus Torvalds1da177e2005-04-16 15:20:36 -07001960 /*
1961 * Validation checks ([ADDRCONF], page 19)
1962 */
1963
1964 addr_type = ipv6_addr_type(&pinfo->prefix);
1965
1966 if (addr_type & (IPV6_ADDR_MULTICAST|IPV6_ADDR_LINKLOCAL))
1967 return;
1968
1969 valid_lft = ntohl(pinfo->valid);
1970 prefered_lft = ntohl(pinfo->prefered);
1971
1972 if (prefered_lft > valid_lft) {
Joe Perchese87cc472012-05-13 21:56:26 +00001973 net_warn_ratelimited("addrconf: prefix option has invalid lifetime\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001974 return;
1975 }
1976
1977 in6_dev = in6_dev_get(dev);
1978
1979 if (in6_dev == NULL) {
Joe Perchese87cc472012-05-13 21:56:26 +00001980 net_dbg_ratelimited("addrconf: device %s not configured\n",
1981 dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001982 return;
1983 }
1984
1985 /*
1986 * Two things going on here:
1987 * 1) Add routes for on-link prefixes
1988 * 2) Configure prefixes with the auto flag set
1989 */
1990
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +09001991 if (pinfo->onlink) {
1992 struct rt6_info *rt;
1993 unsigned long rt_expires;
1994
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07001995 /* Avoid arithmetic overflow. Really, we could
1996 * save rt_expires in seconds, likely valid_lft,
1997 * but it would require division in fib gc, that it
1998 * not good.
1999 */
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +09002000 if (HZ > USER_HZ)
2001 rt_expires = addrconf_timeout_fixup(valid_lft, HZ);
2002 else
2003 rt_expires = addrconf_timeout_fixup(valid_lft, USER_HZ);
YOSHIFUJI Hideaki3dd4bc62005-12-19 14:02:45 -08002004
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +09002005 if (addrconf_finite_timeout(rt_expires))
2006 rt_expires *= HZ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002007
Andreas Hofmeister14ef37b2011-10-26 03:24:29 +00002008 rt = addrconf_get_prefix_route(&pinfo->prefix,
2009 pinfo->prefix_len,
2010 dev,
2011 RTF_ADDRCONF | RTF_PREFIX_RT,
2012 RTF_GATEWAY | RTF_DEFAULT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002013
Andreas Hofmeister14ef37b2011-10-26 03:24:29 +00002014 if (rt) {
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07002015 /* Autoconf prefix route */
2016 if (valid_lft == 0) {
2017 ip6_del_rt(rt);
2018 rt = NULL;
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +09002019 } else if (addrconf_finite_timeout(rt_expires)) {
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07002020 /* not infinity */
Gao feng1716a962012-04-06 00:13:10 +00002021 rt6_set_expires(rt, jiffies + rt_expires);
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07002022 } else {
Gao feng1716a962012-04-06 00:13:10 +00002023 rt6_clean_expires(rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002024 }
2025 } else if (valid_lft) {
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07002026 clock_t expires = 0;
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +09002027 int flags = RTF_ADDRCONF | RTF_PREFIX_RT;
2028 if (addrconf_finite_timeout(rt_expires)) {
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07002029 /* not infinity */
2030 flags |= RTF_EXPIRES;
2031 expires = jiffies_to_clock_t(rt_expires);
2032 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002033 addrconf_prefix_route(&pinfo->prefix, pinfo->prefix_len,
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07002034 dev, expires, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002035 }
Amerigo Wang94e187c2012-10-29 00:13:19 +00002036 ip6_rt_put(rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002037 }
2038
2039 /* Try to figure out our local address for this prefix */
2040
2041 if (pinfo->autoconf && in6_dev->cnf.autoconf) {
Eldad Zack8e5e8f32012-04-01 07:49:08 +00002042 struct inet6_ifaddr *ifp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002043 struct in6_addr addr;
2044 int create = 0, update_lft = 0;
2045
2046 if (pinfo->prefix_len == 64) {
2047 memcpy(&addr, &pinfo->prefix, 8);
2048 if (ipv6_generate_eui64(addr.s6_addr + 8, dev) &&
2049 ipv6_inherit_eui64(addr.s6_addr + 8, in6_dev)) {
2050 in6_dev_put(in6_dev);
2051 return;
2052 }
2053 goto ok;
2054 }
Joe Perchese87cc472012-05-13 21:56:26 +00002055 net_dbg_ratelimited("IPv6 addrconf: prefix with wrong length %d\n",
2056 pinfo->prefix_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002057 in6_dev_put(in6_dev);
2058 return;
2059
2060ok:
2061
YOSHIFUJI Hideaki53b79972008-07-19 22:35:03 -07002062 ifp = ipv6_get_ifaddr(net, &addr, dev, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002063
2064 if (ifp == NULL && valid_lft) {
2065 int max_addresses = in6_dev->cnf.max_addresses;
Neil Horman95c385b2007-04-25 17:08:10 -07002066 u32 addr_flags = 0;
2067
2068#ifdef CONFIG_IPV6_OPTIMISTIC_DAD
2069 if (in6_dev->cnf.optimistic_dad &&
Neil Hormane6bff992012-01-04 10:49:15 +00002070 !net->ipv6.devconf_all->forwarding && sllao)
Neil Horman95c385b2007-04-25 17:08:10 -07002071 addr_flags = IFA_F_OPTIMISTIC;
2072#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002073
2074 /* Do not allow to create too much of autoconfigured
2075 * addresses; this would be too easy way to crash kernel.
2076 */
2077 if (!max_addresses ||
2078 ipv6_count_addresses(in6_dev) < max_addresses)
2079 ifp = ipv6_add_addr(in6_dev, &addr, pinfo->prefix_len,
Neil Horman95c385b2007-04-25 17:08:10 -07002080 addr_type&IPV6_ADDR_SCOPE_MASK,
2081 addr_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002082
2083 if (!ifp || IS_ERR(ifp)) {
2084 in6_dev_put(in6_dev);
2085 return;
2086 }
2087
2088 update_lft = create = 1;
2089 ifp->cstamp = jiffies;
David S. Millercf22f9a2012-04-14 21:37:40 -04002090 addrconf_dad_start(ifp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002091 }
2092
2093 if (ifp) {
2094 int flags;
2095 unsigned long now;
2096#ifdef CONFIG_IPV6_PRIVACY
2097 struct inet6_ifaddr *ift;
2098#endif
2099 u32 stored_lft;
2100
2101 /* update lifetime (RFC2462 5.5.3 e) */
2102 spin_lock(&ifp->lock);
2103 now = jiffies;
2104 if (ifp->valid_lft > (now - ifp->tstamp) / HZ)
2105 stored_lft = ifp->valid_lft - (now - ifp->tstamp) / HZ;
2106 else
2107 stored_lft = 0;
2108 if (!update_lft && stored_lft) {
2109 if (valid_lft > MIN_VALID_LIFETIME ||
2110 valid_lft > stored_lft)
2111 update_lft = 1;
2112 else if (stored_lft <= MIN_VALID_LIFETIME) {
2113 /* valid_lft <= stored_lft is always true */
Brian Haleya1ed0522009-07-02 07:10:52 +00002114 /*
2115 * RFC 4862 Section 5.5.3e:
2116 * "Note that the preferred lifetime of
2117 * the corresponding address is always
2118 * reset to the Preferred Lifetime in
2119 * the received Prefix Information
2120 * option, regardless of whether the
2121 * valid lifetime is also reset or
2122 * ignored."
2123 *
2124 * So if the preferred lifetime in
2125 * this advertisement is different
2126 * than what we have stored, but the
2127 * valid lifetime is invalid, just
2128 * reset prefered_lft.
2129 *
2130 * We must set the valid lifetime
2131 * to the stored lifetime since we'll
2132 * be updating the timestamp below,
2133 * else we'll set it back to the
Lucas De Marchi25985ed2011-03-30 22:57:33 -03002134 * minimum.
Brian Haleya1ed0522009-07-02 07:10:52 +00002135 */
2136 if (prefered_lft != ifp->prefered_lft) {
2137 valid_lft = stored_lft;
2138 update_lft = 1;
2139 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002140 } else {
2141 valid_lft = MIN_VALID_LIFETIME;
2142 if (valid_lft < prefered_lft)
2143 prefered_lft = valid_lft;
2144 update_lft = 1;
2145 }
2146 }
2147
2148 if (update_lft) {
2149 ifp->valid_lft = valid_lft;
2150 ifp->prefered_lft = prefered_lft;
2151 ifp->tstamp = now;
2152 flags = ifp->flags;
2153 ifp->flags &= ~IFA_F_DEPRECATED;
2154 spin_unlock(&ifp->lock);
2155
2156 if (!(flags&IFA_F_TENTATIVE))
2157 ipv6_ifa_notify(0, ifp);
2158 } else
2159 spin_unlock(&ifp->lock);
2160
2161#ifdef CONFIG_IPV6_PRIVACY
2162 read_lock_bh(&in6_dev->lock);
2163 /* update all temporary addresses in the list */
Lorenzo Colitti76f793e2011-07-26 13:50:49 +00002164 list_for_each_entry(ift, &in6_dev->tempaddr_list,
2165 tmp_list) {
2166 int age, max_valid, max_prefered;
2167
Benoit Boissinotc6fbfac2008-04-02 00:00:58 -07002168 if (ifp != ift->ifpub)
2169 continue;
2170
Lorenzo Colitti76f793e2011-07-26 13:50:49 +00002171 /*
2172 * RFC 4941 section 3.3:
2173 * If a received option will extend the lifetime
2174 * of a public address, the lifetimes of
2175 * temporary addresses should be extended,
2176 * subject to the overall constraint that no
2177 * temporary addresses should ever remain
2178 * "valid" or "preferred" for a time longer than
2179 * (TEMP_VALID_LIFETIME) or
2180 * (TEMP_PREFERRED_LIFETIME - DESYNC_FACTOR),
2181 * respectively.
2182 */
2183 age = (now - ift->cstamp) / HZ;
2184 max_valid = in6_dev->cnf.temp_valid_lft - age;
2185 if (max_valid < 0)
2186 max_valid = 0;
2187
2188 max_prefered = in6_dev->cnf.temp_prefered_lft -
2189 in6_dev->cnf.max_desync_factor -
2190 age;
2191 if (max_prefered < 0)
2192 max_prefered = 0;
2193
2194 if (valid_lft > max_valid)
2195 valid_lft = max_valid;
2196
2197 if (prefered_lft > max_prefered)
2198 prefered_lft = max_prefered;
2199
Linus Torvalds1da177e2005-04-16 15:20:36 -07002200 spin_lock(&ift->lock);
2201 flags = ift->flags;
Lorenzo Colitti76f793e2011-07-26 13:50:49 +00002202 ift->valid_lft = valid_lft;
2203 ift->prefered_lft = prefered_lft;
2204 ift->tstamp = now;
2205 if (prefered_lft > 0)
2206 ift->flags &= ~IFA_F_DEPRECATED;
2207
Linus Torvalds1da177e2005-04-16 15:20:36 -07002208 spin_unlock(&ift->lock);
2209 if (!(flags&IFA_F_TENTATIVE))
2210 ipv6_ifa_notify(0, ift);
2211 }
2212
Glenn Wursteraed65502010-09-27 07:04:30 +00002213 if ((create || list_empty(&in6_dev->tempaddr_list)) && in6_dev->cnf.use_tempaddr > 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002214 /*
Lorenzo Colitti76f793e2011-07-26 13:50:49 +00002215 * When a new public address is created as
2216 * described in [ADDRCONF], also create a new
2217 * temporary address. Also create a temporary
2218 * address if it's enabled but no temporary
2219 * address currently exists.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002220 */
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002221 read_unlock_bh(&in6_dev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002222 ipv6_create_tempaddr(ifp, NULL);
2223 } else {
2224 read_unlock_bh(&in6_dev->lock);
2225 }
2226#endif
2227 in6_ifa_put(ifp);
2228 addrconf_verify(0);
2229 }
2230 }
2231 inet6_prefix_notify(RTM_NEWPREFIX, in6_dev, pinfo);
2232 in6_dev_put(in6_dev);
2233}
2234
2235/*
2236 * Set destination address.
2237 * Special case for SIT interfaces where we create a new "virtual"
2238 * device.
2239 */
Daniel Lezcanoaf284932008-03-05 10:46:57 -08002240int addrconf_set_dstaddr(struct net *net, void __user *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002241{
2242 struct in6_ifreq ireq;
2243 struct net_device *dev;
2244 int err = -EINVAL;
2245
2246 rtnl_lock();
2247
2248 err = -EFAULT;
2249 if (copy_from_user(&ireq, arg, sizeof(struct in6_ifreq)))
2250 goto err_exit;
2251
Daniel Lezcanoaf284932008-03-05 10:46:57 -08002252 dev = __dev_get_by_index(net, ireq.ifr6_ifindex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002253
2254 err = -ENODEV;
2255 if (dev == NULL)
2256 goto err_exit;
2257
Amerigo Wang07a93622012-10-29 16:23:10 +00002258#if IS_ENABLED(CONFIG_IPV6_SIT)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002259 if (dev->type == ARPHRD_SIT) {
Stephen Hemminger5bc3eb72008-11-19 21:52:05 -08002260 const struct net_device_ops *ops = dev->netdev_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002261 struct ifreq ifr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002262 struct ip_tunnel_parm p;
2263
2264 err = -EADDRNOTAVAIL;
2265 if (!(ipv6_addr_type(&ireq.ifr6_addr) & IPV6_ADDR_COMPATv4))
2266 goto err_exit;
2267
2268 memset(&p, 0, sizeof(p));
2269 p.iph.daddr = ireq.ifr6_addr.s6_addr32[3];
2270 p.iph.saddr = 0;
2271 p.iph.version = 4;
2272 p.iph.ihl = 5;
2273 p.iph.protocol = IPPROTO_IPV6;
2274 p.iph.ttl = 64;
Stephen Hemmingerd20b3102008-01-21 00:48:43 -08002275 ifr.ifr_ifru.ifru_data = (__force void __user *)&p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002276
Stephen Hemminger5bc3eb72008-11-19 21:52:05 -08002277 if (ops->ndo_do_ioctl) {
2278 mm_segment_t oldfs = get_fs();
2279
2280 set_fs(KERNEL_DS);
2281 err = ops->ndo_do_ioctl(dev, &ifr, SIOCADDTUNNEL);
2282 set_fs(oldfs);
2283 } else
2284 err = -EOPNOTSUPP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002285
2286 if (err == 0) {
2287 err = -ENOBUFS;
Daniel Lezcanoaf284932008-03-05 10:46:57 -08002288 dev = __dev_get_by_name(net, p.name);
2289 if (!dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002290 goto err_exit;
2291 err = dev_open(dev);
2292 }
2293 }
Joerg Roedel0be669b2006-10-10 14:49:53 -07002294#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002295
2296err_exit:
2297 rtnl_unlock();
2298 return err;
2299}
2300
2301/*
2302 * Manual configuration of address on an interface
2303 */
Eric Dumazetb71d1d42011-04-22 04:53:02 +00002304static int inet6_addr_add(struct net *net, int ifindex, const struct in6_addr *pfx,
Thomas Graf24ef0da2008-05-28 16:54:22 +02002305 unsigned int plen, __u8 ifa_flags, __u32 prefered_lft,
Daniel Lezcanoaf284932008-03-05 10:46:57 -08002306 __u32 valid_lft)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002307{
2308 struct inet6_ifaddr *ifp;
2309 struct inet6_dev *idev;
2310 struct net_device *dev;
2311 int scope;
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07002312 u32 flags;
2313 clock_t expires;
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +09002314 unsigned long timeout;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002315
2316 ASSERT_RTNL();
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002317
Thomas Graf24ef0da2008-05-28 16:54:22 +02002318 if (plen > 128)
2319 return -EINVAL;
2320
Noriaki TAKAMIYA07787692006-07-28 18:12:10 +09002321 /* check the lifetime */
2322 if (!valid_lft || prefered_lft > valid_lft)
2323 return -EINVAL;
2324
Daniel Lezcanoaf284932008-03-05 10:46:57 -08002325 dev = __dev_get_by_index(net, ifindex);
2326 if (!dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002327 return -ENODEV;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002328
Brian Haley64e724f2010-07-20 10:34:30 +00002329 idev = addrconf_add_dev(dev);
2330 if (IS_ERR(idev))
2331 return PTR_ERR(idev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002332
2333 scope = ipv6_addr_scope(pfx);
2334
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +09002335 timeout = addrconf_timeout_fixup(valid_lft, HZ);
2336 if (addrconf_finite_timeout(timeout)) {
2337 expires = jiffies_to_clock_t(timeout * HZ);
2338 valid_lft = timeout;
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07002339 flags = RTF_EXPIRES;
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +09002340 } else {
2341 expires = 0;
2342 flags = 0;
2343 ifa_flags |= IFA_F_PERMANENT;
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07002344 }
Noriaki TAKAMIYA07787692006-07-28 18:12:10 +09002345
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +09002346 timeout = addrconf_timeout_fixup(prefered_lft, HZ);
2347 if (addrconf_finite_timeout(timeout)) {
2348 if (timeout == 0)
2349 ifa_flags |= IFA_F_DEPRECATED;
2350 prefered_lft = timeout;
2351 }
Noriaki TAKAMIYA07787692006-07-28 18:12:10 +09002352
2353 ifp = ipv6_add_addr(idev, pfx, plen, scope, ifa_flags);
2354
Linus Torvalds1da177e2005-04-16 15:20:36 -07002355 if (!IS_ERR(ifp)) {
Herbert Xu06aebfb2006-08-09 16:52:04 -07002356 spin_lock_bh(&ifp->lock);
Noriaki TAKAMIYA07787692006-07-28 18:12:10 +09002357 ifp->valid_lft = valid_lft;
2358 ifp->prefered_lft = prefered_lft;
2359 ifp->tstamp = jiffies;
Herbert Xu06aebfb2006-08-09 16:52:04 -07002360 spin_unlock_bh(&ifp->lock);
Noriaki TAKAMIYA07787692006-07-28 18:12:10 +09002361
YOSHIFUJI Hideaki46d48042007-02-07 20:36:26 +09002362 addrconf_prefix_route(&ifp->addr, ifp->prefix_len, dev,
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07002363 expires, flags);
Neil Horman95c385b2007-04-25 17:08:10 -07002364 /*
2365 * Note that section 3.1 of RFC 4429 indicates
2366 * that the Optimistic flag should not be set for
2367 * manually configured addresses
2368 */
David S. Millercf22f9a2012-04-14 21:37:40 -04002369 addrconf_dad_start(ifp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002370 in6_ifa_put(ifp);
Noriaki TAKAMIYA07787692006-07-28 18:12:10 +09002371 addrconf_verify(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002372 return 0;
2373 }
2374
2375 return PTR_ERR(ifp);
2376}
2377
Eric Dumazetb71d1d42011-04-22 04:53:02 +00002378static int inet6_addr_del(struct net *net, int ifindex, const struct in6_addr *pfx,
Thomas Graf24ef0da2008-05-28 16:54:22 +02002379 unsigned int plen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002380{
2381 struct inet6_ifaddr *ifp;
2382 struct inet6_dev *idev;
2383 struct net_device *dev;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002384
Thomas Graf24ef0da2008-05-28 16:54:22 +02002385 if (plen > 128)
2386 return -EINVAL;
2387
Daniel Lezcanoaf284932008-03-05 10:46:57 -08002388 dev = __dev_get_by_index(net, ifindex);
2389 if (!dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002390 return -ENODEV;
2391
2392 if ((idev = __in6_dev_get(dev)) == NULL)
2393 return -ENXIO;
2394
2395 read_lock_bh(&idev->lock);
stephen hemminger502a2ff2010-03-17 20:31:13 +00002396 list_for_each_entry(ifp, &idev->addr_list, if_list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002397 if (ifp->prefix_len == plen &&
2398 ipv6_addr_equal(pfx, &ifp->addr)) {
2399 in6_ifa_hold(ifp);
2400 read_unlock_bh(&idev->lock);
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002401
Linus Torvalds1da177e2005-04-16 15:20:36 -07002402 ipv6_del_addr(ifp);
2403
2404 /* If the last address is deleted administratively,
2405 disable IPv6 on this interface.
2406 */
stephen hemminger502a2ff2010-03-17 20:31:13 +00002407 if (list_empty(&idev->addr_list))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002408 addrconf_ifdown(idev->dev, 1);
2409 return 0;
2410 }
2411 }
2412 read_unlock_bh(&idev->lock);
2413 return -EADDRNOTAVAIL;
2414}
2415
2416
Daniel Lezcanoaf284932008-03-05 10:46:57 -08002417int addrconf_add_ifaddr(struct net *net, void __user *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002418{
2419 struct in6_ifreq ireq;
2420 int err;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002421
Eric W. Biedermanaf31f412012-11-16 03:03:06 +00002422 if (!ns_capable(net->user_ns, CAP_NET_ADMIN))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002423 return -EPERM;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002424
Linus Torvalds1da177e2005-04-16 15:20:36 -07002425 if (copy_from_user(&ireq, arg, sizeof(struct in6_ifreq)))
2426 return -EFAULT;
2427
2428 rtnl_lock();
Daniel Lezcanoaf284932008-03-05 10:46:57 -08002429 err = inet6_addr_add(net, ireq.ifr6_ifindex, &ireq.ifr6_addr,
2430 ireq.ifr6_prefixlen, IFA_F_PERMANENT,
2431 INFINITY_LIFE_TIME, INFINITY_LIFE_TIME);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002432 rtnl_unlock();
2433 return err;
2434}
2435
Daniel Lezcanoaf284932008-03-05 10:46:57 -08002436int addrconf_del_ifaddr(struct net *net, void __user *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002437{
2438 struct in6_ifreq ireq;
2439 int err;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002440
Eric W. Biedermanaf31f412012-11-16 03:03:06 +00002441 if (!ns_capable(net->user_ns, CAP_NET_ADMIN))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002442 return -EPERM;
2443
2444 if (copy_from_user(&ireq, arg, sizeof(struct in6_ifreq)))
2445 return -EFAULT;
2446
2447 rtnl_lock();
Daniel Lezcanoaf284932008-03-05 10:46:57 -08002448 err = inet6_addr_del(net, ireq.ifr6_ifindex, &ireq.ifr6_addr,
2449 ireq.ifr6_prefixlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002450 rtnl_unlock();
2451 return err;
2452}
2453
Ilpo Järvinenb5f348e2009-02-06 23:48:01 -08002454static void add_addr(struct inet6_dev *idev, const struct in6_addr *addr,
2455 int plen, int scope)
2456{
2457 struct inet6_ifaddr *ifp;
2458
2459 ifp = ipv6_add_addr(idev, addr, plen, scope, IFA_F_PERMANENT);
2460 if (!IS_ERR(ifp)) {
2461 spin_lock_bh(&ifp->lock);
2462 ifp->flags &= ~IFA_F_TENTATIVE;
2463 spin_unlock_bh(&ifp->lock);
2464 ipv6_ifa_notify(RTM_NEWADDR, ifp);
2465 in6_ifa_put(ifp);
2466 }
2467}
2468
Amerigo Wang07a93622012-10-29 16:23:10 +00002469#if IS_ENABLED(CONFIG_IPV6_SIT)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002470static void sit_add_v4_addrs(struct inet6_dev *idev)
2471{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002472 struct in6_addr addr;
2473 struct net_device *dev;
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09002474 struct net *net = dev_net(idev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002475 int scope;
2476
2477 ASSERT_RTNL();
2478
2479 memset(&addr, 0, sizeof(struct in6_addr));
2480 memcpy(&addr.s6_addr32[3], idev->dev->dev_addr, 4);
2481
2482 if (idev->dev->flags&IFF_POINTOPOINT) {
2483 addr.s6_addr32[0] = htonl(0xfe800000);
2484 scope = IFA_LINK;
2485 } else {
2486 scope = IPV6_ADDR_COMPATv4;
2487 }
2488
2489 if (addr.s6_addr32[3]) {
Ilpo Järvinenb5f348e2009-02-06 23:48:01 -08002490 add_addr(idev, &addr, 128, scope);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002491 return;
2492 }
2493
Benjamin Thery6fda7352008-03-05 10:47:47 -08002494 for_each_netdev(net, dev) {
Eldad Zack8e5e8f32012-04-01 07:49:08 +00002495 struct in_device *in_dev = __in_dev_get_rtnl(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002496 if (in_dev && (dev->flags & IFF_UP)) {
Eldad Zack8e5e8f32012-04-01 07:49:08 +00002497 struct in_ifaddr *ifa;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002498
2499 int flag = scope;
2500
2501 for (ifa = in_dev->ifa_list; ifa; ifa = ifa->ifa_next) {
2502 int plen;
2503
2504 addr.s6_addr32[3] = ifa->ifa_local;
2505
2506 if (ifa->ifa_scope == RT_SCOPE_LINK)
2507 continue;
2508 if (ifa->ifa_scope >= RT_SCOPE_HOST) {
2509 if (idev->dev->flags&IFF_POINTOPOINT)
2510 continue;
2511 flag |= IFA_HOST;
2512 }
2513 if (idev->dev->flags&IFF_POINTOPOINT)
2514 plen = 64;
2515 else
2516 plen = 96;
2517
Ilpo Järvinenb5f348e2009-02-06 23:48:01 -08002518 add_addr(idev, &addr, plen, flag);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002519 }
2520 }
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002521 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002522}
Joerg Roedel0be669b2006-10-10 14:49:53 -07002523#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002524
2525static void init_loopback(struct net_device *dev)
2526{
2527 struct inet6_dev *idev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002528
2529 /* ::1 */
2530
2531 ASSERT_RTNL();
2532
2533 if ((idev = ipv6_find_idev(dev)) == NULL) {
Joe Perches91df42b2012-05-15 14:11:54 +00002534 pr_debug("%s: add_dev failed\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002535 return;
2536 }
2537
Ilpo Järvinenb5f348e2009-02-06 23:48:01 -08002538 add_addr(idev, &in6addr_loopback, 128, IFA_HOST);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002539}
2540
Eric Dumazetb71d1d42011-04-22 04:53:02 +00002541static void addrconf_add_linklocal(struct inet6_dev *idev, const struct in6_addr *addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002542{
Eldad Zack8e5e8f32012-04-01 07:49:08 +00002543 struct inet6_ifaddr *ifp;
Neil Horman95c385b2007-04-25 17:08:10 -07002544 u32 addr_flags = IFA_F_PERMANENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002545
Neil Horman95c385b2007-04-25 17:08:10 -07002546#ifdef CONFIG_IPV6_OPTIMISTIC_DAD
2547 if (idev->cnf.optimistic_dad &&
David Miller702beb82008-07-20 18:17:02 -07002548 !dev_net(idev->dev)->ipv6.devconf_all->forwarding)
Neil Horman95c385b2007-04-25 17:08:10 -07002549 addr_flags |= IFA_F_OPTIMISTIC;
2550#endif
2551
2552
2553 ifp = ipv6_add_addr(idev, addr, 64, IFA_LINK, addr_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002554 if (!IS_ERR(ifp)) {
YOSHIFUJI Hideaki46d48042007-02-07 20:36:26 +09002555 addrconf_prefix_route(&ifp->addr, ifp->prefix_len, idev->dev, 0, 0);
David S. Millercf22f9a2012-04-14 21:37:40 -04002556 addrconf_dad_start(ifp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002557 in6_ifa_put(ifp);
2558 }
2559}
2560
2561static void addrconf_dev_config(struct net_device *dev)
2562{
2563 struct in6_addr addr;
Eldad Zack8e5e8f32012-04-01 07:49:08 +00002564 struct inet6_dev *idev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002565
2566 ASSERT_RTNL();
2567
Herbert Xu74235a22007-06-14 13:02:55 -07002568 if ((dev->type != ARPHRD_ETHER) &&
2569 (dev->type != ARPHRD_FDDI) &&
Herbert Xu74235a22007-06-14 13:02:55 -07002570 (dev->type != ARPHRD_ARCNET) &&
alex.bluesman.smirnov@gmail.com06a4c1c2012-05-10 03:25:52 +00002571 (dev->type != ARPHRD_INFINIBAND) &&
2572 (dev->type != ARPHRD_IEEE802154)) {
Herbert Xu74235a22007-06-14 13:02:55 -07002573 /* Alas, we support only Ethernet autoconfiguration. */
2574 return;
2575 }
2576
Linus Torvalds1da177e2005-04-16 15:20:36 -07002577 idev = addrconf_add_dev(dev);
Brian Haley64e724f2010-07-20 10:34:30 +00002578 if (IS_ERR(idev))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002579 return;
2580
2581 memset(&addr, 0, sizeof(struct in6_addr));
2582 addr.s6_addr32[0] = htonl(0xFE800000);
2583
2584 if (ipv6_generate_eui64(addr.s6_addr + 8, dev) == 0)
2585 addrconf_add_linklocal(idev, &addr);
2586}
2587
Amerigo Wang07a93622012-10-29 16:23:10 +00002588#if IS_ENABLED(CONFIG_IPV6_SIT)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002589static void addrconf_sit_config(struct net_device *dev)
2590{
2591 struct inet6_dev *idev;
2592
2593 ASSERT_RTNL();
2594
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002595 /*
2596 * Configure the tunnel with one of our IPv4
2597 * addresses... we should configure all of
Linus Torvalds1da177e2005-04-16 15:20:36 -07002598 * our v4 addrs in the tunnel
2599 */
2600
2601 if ((idev = ipv6_find_idev(dev)) == NULL) {
Joe Perches91df42b2012-05-15 14:11:54 +00002602 pr_debug("%s: add_dev failed\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002603 return;
2604 }
2605
Fred L. Templinc7dc89c2007-11-29 22:11:40 +11002606 if (dev->priv_flags & IFF_ISATAP) {
2607 struct in6_addr addr;
2608
2609 ipv6_addr_set(&addr, htonl(0xFE800000), 0, 0, 0);
2610 addrconf_prefix_route(&addr, 64, dev, 0, 0);
2611 if (!ipv6_generate_eui64(addr.s6_addr + 8, dev))
2612 addrconf_add_linklocal(idev, &addr);
2613 return;
2614 }
2615
Linus Torvalds1da177e2005-04-16 15:20:36 -07002616 sit_add_v4_addrs(idev);
2617
Nicolas Dichtel62b54dd2012-10-01 23:19:14 +00002618 if (dev->flags&IFF_POINTOPOINT)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002619 addrconf_add_mroute(dev);
Nicolas Dichtel62b54dd2012-10-01 23:19:14 +00002620 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07002621 sit_route_add(dev);
2622}
Joerg Roedel0be669b2006-10-10 14:49:53 -07002623#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002624
Amerigo Wang07a93622012-10-29 16:23:10 +00002625#if IS_ENABLED(CONFIG_NET_IPGRE)
stephen hemmingeraee80b52011-06-08 10:44:30 +00002626static void addrconf_gre_config(struct net_device *dev)
2627{
2628 struct inet6_dev *idev;
2629 struct in6_addr addr;
2630
Joe Perchesf3213832012-05-15 14:11:53 +00002631 pr_info("%s(%s)\n", __func__, dev->name);
stephen hemmingeraee80b52011-06-08 10:44:30 +00002632
2633 ASSERT_RTNL();
2634
2635 if ((idev = ipv6_find_idev(dev)) == NULL) {
Joe Perches91df42b2012-05-15 14:11:54 +00002636 pr_debug("%s: add_dev failed\n", __func__);
stephen hemmingeraee80b52011-06-08 10:44:30 +00002637 return;
2638 }
2639
2640 ipv6_addr_set(&addr, htonl(0xFE800000), 0, 0, 0);
2641 addrconf_prefix_route(&addr, 64, dev, 0, 0);
2642
2643 if (!ipv6_generate_eui64(addr.s6_addr + 8, dev))
2644 addrconf_add_linklocal(idev, &addr);
2645}
2646#endif
2647
Linus Torvalds1da177e2005-04-16 15:20:36 -07002648static inline int
2649ipv6_inherit_linklocal(struct inet6_dev *idev, struct net_device *link_dev)
2650{
2651 struct in6_addr lladdr;
2652
Neil Horman95c385b2007-04-25 17:08:10 -07002653 if (!ipv6_get_lladdr(link_dev, &lladdr, IFA_F_TENTATIVE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002654 addrconf_add_linklocal(idev, &lladdr);
2655 return 0;
2656 }
2657 return -1;
2658}
2659
2660static void ip6_tnl_add_linklocal(struct inet6_dev *idev)
2661{
2662 struct net_device *link_dev;
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09002663 struct net *net = dev_net(idev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002664
2665 /* first try to inherit the link-local address from the link device */
2666 if (idev->dev->iflink &&
Benjamin Thery6fda7352008-03-05 10:47:47 -08002667 (link_dev = __dev_get_by_index(net, idev->dev->iflink))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002668 if (!ipv6_inherit_linklocal(idev, link_dev))
2669 return;
2670 }
2671 /* then try to inherit it from any device */
Benjamin Thery6fda7352008-03-05 10:47:47 -08002672 for_each_netdev(net, link_dev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002673 if (!ipv6_inherit_linklocal(idev, link_dev))
2674 return;
2675 }
Joe Perches91df42b2012-05-15 14:11:54 +00002676 pr_debug("init ip6-ip6: add_linklocal failed\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002677}
2678
2679/*
2680 * Autoconfigure tunnel with a link-local address so routing protocols,
2681 * DHCPv6, MLD etc. can be run over the virtual link
2682 */
2683
2684static void addrconf_ip6_tnl_config(struct net_device *dev)
2685{
2686 struct inet6_dev *idev;
2687
2688 ASSERT_RTNL();
2689
Stephen Hemmingere21e8462010-03-20 16:09:01 -07002690 idev = addrconf_add_dev(dev);
Brian Haley64e724f2010-07-20 10:34:30 +00002691 if (IS_ERR(idev)) {
Joe Perches91df42b2012-05-15 14:11:54 +00002692 pr_debug("init ip6-ip6: add_dev failed\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002693 return;
2694 }
2695 ip6_tnl_add_linklocal(idev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002696}
2697
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002698static int addrconf_notify(struct notifier_block *this, unsigned long event,
Eldad Zack8e5e8f32012-04-01 07:49:08 +00002699 void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002700{
2701 struct net_device *dev = (struct net_device *) data;
Eric Dumazet748e2d92012-08-22 21:50:59 +00002702 struct inet6_dev *idev = __in6_dev_get(dev);
YOSHIFUJI Hideakic5e33bd2005-12-21 22:57:44 +09002703 int run_pending = 0;
Herbert Xub217d612007-07-30 17:04:52 -07002704 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002705
Stephen Hemmingere21e8462010-03-20 16:09:01 -07002706 switch (event) {
YOSHIFUJI Hideaki45ba9dd2007-02-15 02:07:27 +09002707 case NETDEV_REGISTER:
Herbert Xu74235a22007-06-14 13:02:55 -07002708 if (!idev && dev->mtu >= IPV6_MIN_MTU) {
YOSHIFUJI Hideaki45ba9dd2007-02-15 02:07:27 +09002709 idev = ipv6_add_dev(dev);
2710 if (!idev)
Herbert Xub217d612007-07-30 17:04:52 -07002711 return notifier_from_errno(-ENOMEM);
YOSHIFUJI Hideaki45ba9dd2007-02-15 02:07:27 +09002712 }
2713 break;
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07002714
Linus Torvalds1da177e2005-04-16 15:20:36 -07002715 case NETDEV_UP:
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09002716 case NETDEV_CHANGE:
Jay Vosburghc2edacf2007-07-09 10:42:47 -07002717 if (dev->flags & IFF_SLAVE)
2718 break;
2719
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09002720 if (event == NETDEV_UP) {
Mitsuru Chinenf24e3d62007-10-10 02:53:43 -07002721 if (!addrconf_qdisc_ok(dev)) {
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09002722 /* device is not ready yet. */
Joe Perchesf3213832012-05-15 14:11:53 +00002723 pr_info("ADDRCONF(NETDEV_UP): %s: link is not ready\n",
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09002724 dev->name);
2725 break;
2726 }
Kristian Slavov99081042006-02-08 16:10:53 -08002727
Evgeniy Polyakovd31c7b82007-11-30 23:36:08 +11002728 if (!idev && dev->mtu >= IPV6_MIN_MTU)
2729 idev = ipv6_add_dev(dev);
2730
Benjamin Therye3ec6cf2008-11-05 01:43:57 -08002731 if (idev) {
Kristian Slavov99081042006-02-08 16:10:53 -08002732 idev->if_flags |= IF_READY;
Benjamin Therye3ec6cf2008-11-05 01:43:57 -08002733 run_pending = 1;
2734 }
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09002735 } else {
Mitsuru Chinenf24e3d62007-10-10 02:53:43 -07002736 if (!addrconf_qdisc_ok(dev)) {
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09002737 /* device is still not ready. */
2738 break;
2739 }
2740
2741 if (idev) {
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07002742 if (idev->if_flags & IF_READY)
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09002743 /* device is already configured. */
2744 break;
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09002745 idev->if_flags |= IF_READY;
2746 }
2747
Joe Perchesf3213832012-05-15 14:11:53 +00002748 pr_info("ADDRCONF(NETDEV_CHANGE): %s: link becomes ready\n",
2749 dev->name);
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09002750
YOSHIFUJI Hideakic5e33bd2005-12-21 22:57:44 +09002751 run_pending = 1;
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09002752 }
2753
Stephen Hemmingere21e8462010-03-20 16:09:01 -07002754 switch (dev->type) {
Amerigo Wang07a93622012-10-29 16:23:10 +00002755#if IS_ENABLED(CONFIG_IPV6_SIT)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002756 case ARPHRD_SIT:
2757 addrconf_sit_config(dev);
2758 break;
Joerg Roedel0be669b2006-10-10 14:49:53 -07002759#endif
Amerigo Wang07a93622012-10-29 16:23:10 +00002760#if IS_ENABLED(CONFIG_NET_IPGRE)
stephen hemmingeraee80b52011-06-08 10:44:30 +00002761 case ARPHRD_IPGRE:
2762 addrconf_gre_config(dev);
2763 break;
2764#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002765 case ARPHRD_TUNNEL6:
2766 addrconf_ip6_tnl_config(dev);
2767 break;
2768 case ARPHRD_LOOPBACK:
2769 init_loopback(dev);
2770 break;
2771
2772 default:
2773 addrconf_dev_config(dev);
2774 break;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07002775 }
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07002776
Linus Torvalds1da177e2005-04-16 15:20:36 -07002777 if (idev) {
YOSHIFUJI Hideakic5e33bd2005-12-21 22:57:44 +09002778 if (run_pending)
2779 addrconf_dad_run(idev);
2780
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07002781 /*
2782 * If the MTU changed during the interface down,
2783 * when the interface up, the changed MTU must be
2784 * reflected in the idev as well as routers.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002785 */
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07002786 if (idev->cnf.mtu6 != dev->mtu &&
2787 dev->mtu >= IPV6_MIN_MTU) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002788 rt6_mtu_change(dev, dev->mtu);
2789 idev->cnf.mtu6 = dev->mtu;
2790 }
2791 idev->tstamp = jiffies;
2792 inet6_ifinfo_notify(RTM_NEWLINK, idev);
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07002793
2794 /*
2795 * If the changed mtu during down is lower than
2796 * IPV6_MIN_MTU stop IPv6 on this interface.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002797 */
2798 if (dev->mtu < IPV6_MIN_MTU)
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07002799 addrconf_ifdown(dev, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002800 }
2801 break;
2802
2803 case NETDEV_CHANGEMTU:
Evgeniy Polyakovd31c7b82007-11-30 23:36:08 +11002804 if (idev && dev->mtu >= IPV6_MIN_MTU) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002805 rt6_mtu_change(dev, dev->mtu);
2806 idev->cnf.mtu6 = dev->mtu;
2807 break;
2808 }
2809
Evgeniy Polyakovd31c7b82007-11-30 23:36:08 +11002810 if (!idev && dev->mtu >= IPV6_MIN_MTU) {
2811 idev = ipv6_add_dev(dev);
2812 if (idev)
2813 break;
2814 }
2815
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07002816 /*
2817 * MTU falled under IPV6_MIN_MTU.
2818 * Stop IPv6 on this interface.
2819 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002820
2821 case NETDEV_DOWN:
2822 case NETDEV_UNREGISTER:
2823 /*
2824 * Remove all addresses from this interface.
2825 */
2826 addrconf_ifdown(dev, event != NETDEV_DOWN);
2827 break;
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09002828
Linus Torvalds1da177e2005-04-16 15:20:36 -07002829 case NETDEV_CHANGENAME:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002830 if (idev) {
Stephen Hemminger5632c512007-04-28 21:16:39 -07002831 snmp6_unregister_dev(idev);
Pavel Emelyanov408c4762008-01-10 17:41:21 -08002832 addrconf_sysctl_unregister(idev);
Pavel Emelyanovf52295a2007-12-02 00:58:37 +11002833 addrconf_sysctl_register(idev);
Herbert Xub217d612007-07-30 17:04:52 -07002834 err = snmp6_register_dev(idev);
2835 if (err)
2836 return notifier_from_errno(err);
Stephen Hemminger5632c512007-04-28 21:16:39 -07002837 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002838 break;
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07002839
Jiri Pirko93d9b7d2010-03-10 10:28:56 +00002840 case NETDEV_PRE_TYPE_CHANGE:
2841 case NETDEV_POST_TYPE_CHANGE:
2842 addrconf_type_change(dev, event);
Moni Shoua75c78502009-09-15 02:37:40 -07002843 break;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07002844 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002845
2846 return NOTIFY_OK;
2847}
2848
2849/*
2850 * addrconf module should be notified of a device going up
2851 */
2852static struct notifier_block ipv6_dev_notf = {
2853 .notifier_call = addrconf_notify,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002854};
2855
Jiri Pirko93d9b7d2010-03-10 10:28:56 +00002856static void addrconf_type_change(struct net_device *dev, unsigned long event)
Moni Shoua75c78502009-09-15 02:37:40 -07002857{
2858 struct inet6_dev *idev;
2859 ASSERT_RTNL();
2860
2861 idev = __in6_dev_get(dev);
2862
Jiri Pirko93d9b7d2010-03-10 10:28:56 +00002863 if (event == NETDEV_POST_TYPE_CHANGE)
Moni Shoua75c78502009-09-15 02:37:40 -07002864 ipv6_mc_remap(idev);
Jiri Pirko93d9b7d2010-03-10 10:28:56 +00002865 else if (event == NETDEV_PRE_TYPE_CHANGE)
Moni Shoua75c78502009-09-15 02:37:40 -07002866 ipv6_mc_unmap(idev);
2867}
2868
Linus Torvalds1da177e2005-04-16 15:20:36 -07002869static int addrconf_ifdown(struct net_device *dev, int how)
2870{
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09002871 struct net *net = dev_net(dev);
stephen hemminger502a2ff2010-03-17 20:31:13 +00002872 struct inet6_dev *idev;
2873 struct inet6_ifaddr *ifa;
David S. Miller73a8bd72011-01-23 23:27:15 -08002874 int state, i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002875
2876 ASSERT_RTNL();
2877
David S. Miller73a8bd72011-01-23 23:27:15 -08002878 rt6_ifdown(net, dev);
2879 neigh_ifdown(&nd_tbl, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002880
2881 idev = __in6_dev_get(dev);
2882 if (idev == NULL)
2883 return -ENODEV;
2884
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07002885 /*
2886 * Step 1: remove reference to ipv6 device from parent device.
2887 * Do not dev_put!
Linus Torvalds1da177e2005-04-16 15:20:36 -07002888 */
Denis V. Lunev439e2382008-04-03 13:30:17 -07002889 if (how) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002890 idev->dead = 1;
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -07002891
2892 /* protected by rtnl_lock */
Stephen Hemmingera9b3cd72011-08-01 16:19:00 +00002893 RCU_INIT_POINTER(dev->ip6_ptr, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002894
2895 /* Step 1.5: remove snmp6 entry */
2896 snmp6_unregister_dev(idev);
2897
2898 }
2899
David S. Miller73a8bd72011-01-23 23:27:15 -08002900 /* Step 2: clear hash table */
2901 for (i = 0; i < IN6_ADDR_HSIZE; i++) {
2902 struct hlist_head *h = &inet6_addr_lst[i];
2903 struct hlist_node *n;
2904
2905 spin_lock_bh(&addrconf_hash_lock);
2906 restart:
2907 hlist_for_each_entry_rcu(ifa, n, h, addr_lst) {
2908 if (ifa->idev == idev) {
2909 hlist_del_init_rcu(&ifa->addr_lst);
2910 addrconf_del_timer(ifa);
2911 goto restart;
2912 }
2913 }
2914 spin_unlock_bh(&addrconf_hash_lock);
2915 }
2916
Linus Torvalds1da177e2005-04-16 15:20:36 -07002917 write_lock_bh(&idev->lock);
2918
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07002919 /* Step 2: clear flags for stateless addrconf */
Denis V. Lunev439e2382008-04-03 13:30:17 -07002920 if (!how)
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09002921 idev->if_flags &= ~(IF_RS_SENT|IF_RA_RCVD|IF_READY);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002922
Linus Torvalds1da177e2005-04-16 15:20:36 -07002923#ifdef CONFIG_IPV6_PRIVACY
Denis V. Lunev439e2382008-04-03 13:30:17 -07002924 if (how && del_timer(&idev->regen_timer))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002925 in6_dev_put(idev);
2926
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07002927 /* Step 3: clear tempaddr list */
stephen hemminger372e6c82010-03-17 20:31:09 +00002928 while (!list_empty(&idev->tempaddr_list)) {
2929 ifa = list_first_entry(&idev->tempaddr_list,
2930 struct inet6_ifaddr, tmp_list);
2931 list_del(&ifa->tmp_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002932 write_unlock_bh(&idev->lock);
2933 spin_lock_bh(&ifa->lock);
2934
2935 if (ifa->ifpub) {
2936 in6_ifa_put(ifa->ifpub);
2937 ifa->ifpub = NULL;
2938 }
2939 spin_unlock_bh(&ifa->lock);
2940 in6_ifa_put(ifa);
2941 write_lock_bh(&idev->lock);
2942 }
2943#endif
stephen hemminger8f37ada2010-03-03 08:19:59 +00002944
stephen hemminger502a2ff2010-03-17 20:31:13 +00002945 while (!list_empty(&idev->addr_list)) {
2946 ifa = list_first_entry(&idev->addr_list,
2947 struct inet6_ifaddr, if_list);
stephen hemminger84e8b802010-03-02 13:32:46 +00002948 addrconf_del_timer(ifa);
2949
David S. Miller73a8bd72011-01-23 23:27:15 -08002950 list_del(&ifa->if_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002951
David S. Miller73a8bd72011-01-23 23:27:15 -08002952 write_unlock_bh(&idev->lock);
stephen hemminger84e8b802010-03-02 13:32:46 +00002953
David S. Miller73a8bd72011-01-23 23:27:15 -08002954 spin_lock_bh(&ifa->state_lock);
2955 state = ifa->state;
2956 ifa->state = INET6_IFADDR_STATE_DEAD;
2957 spin_unlock_bh(&ifa->state_lock);
stephen hemminger84e8b802010-03-02 13:32:46 +00002958
David S. Miller73a8bd72011-01-23 23:27:15 -08002959 if (state != INET6_IFADDR_STATE_DEAD) {
2960 __ipv6_ifa_notify(RTM_DELADDR, ifa);
2961 atomic_notifier_call_chain(&inet6addr_chain, NETDEV_DOWN, ifa);
stephen hemminger27bdb2a2010-04-12 05:41:32 +00002962 }
David S. Miller73a8bd72011-01-23 23:27:15 -08002963 in6_ifa_put(ifa);
stephen hemminger8f37ada2010-03-03 08:19:59 +00002964
David S. Miller73a8bd72011-01-23 23:27:15 -08002965 write_lock_bh(&idev->lock);
2966 }
stephen hemminger8f37ada2010-03-03 08:19:59 +00002967
Linus Torvalds1da177e2005-04-16 15:20:36 -07002968 write_unlock_bh(&idev->lock);
2969
2970 /* Step 5: Discard multicast list */
Denis V. Lunev439e2382008-04-03 13:30:17 -07002971 if (how)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002972 ipv6_mc_destroy_dev(idev);
2973 else
2974 ipv6_mc_down(idev);
2975
Linus Torvalds1da177e2005-04-16 15:20:36 -07002976 idev->tstamp = jiffies;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002977
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07002978 /* Last: Shot the device (if unregistered) */
Denis V. Lunev439e2382008-04-03 13:30:17 -07002979 if (how) {
Pavel Emelyanov408c4762008-01-10 17:41:21 -08002980 addrconf_sysctl_unregister(idev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002981 neigh_parms_release(&nd_tbl, idev->nd_parms);
2982 neigh_ifdown(&nd_tbl, dev);
2983 in6_dev_put(idev);
2984 }
2985 return 0;
2986}
2987
2988static void addrconf_rs_timer(unsigned long data)
2989{
2990 struct inet6_ifaddr *ifp = (struct inet6_ifaddr *) data;
stephen hemminger5b2a1952010-03-02 13:32:45 +00002991 struct inet6_dev *idev = ifp->idev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002992
stephen hemminger5b2a1952010-03-02 13:32:45 +00002993 read_lock(&idev->lock);
2994 if (idev->dead || !(idev->if_flags & IF_READY))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002995 goto out;
2996
Shmulik Ladkani9ba2add2012-12-02 01:44:53 +00002997 if (!ipv6_accept_ra(idev))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002998 goto out;
stephen hemminger5b2a1952010-03-02 13:32:45 +00002999
3000 /* Announcement received after solicitation was sent */
3001 if (idev->if_flags & IF_RA_RCVD)
3002 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003003
3004 spin_lock(&ifp->lock);
stephen hemminger5b2a1952010-03-02 13:32:45 +00003005 if (ifp->probes++ < idev->cnf.rtr_solicits) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003006 /* The wait after the last probe can be shorter */
3007 addrconf_mod_timer(ifp, AC_RS,
stephen hemminger5b2a1952010-03-02 13:32:45 +00003008 (ifp->probes == idev->cnf.rtr_solicits) ?
3009 idev->cnf.rtr_solicit_delay :
3010 idev->cnf.rtr_solicit_interval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003011 spin_unlock(&ifp->lock);
3012
stephen hemminger5b2a1952010-03-02 13:32:45 +00003013 ndisc_send_rs(idev->dev, &ifp->addr, &in6addr_linklocal_allrouters);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003014 } else {
3015 spin_unlock(&ifp->lock);
3016 /*
3017 * Note: we do not support deprecated "all on-link"
3018 * assumption any longer.
3019 */
Joe Perches91df42b2012-05-15 14:11:54 +00003020 pr_debug("%s: no IPv6 routers present\n", idev->dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003021 }
3022
3023out:
stephen hemminger5b2a1952010-03-02 13:32:45 +00003024 read_unlock(&idev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003025 in6_ifa_put(ifp);
3026}
3027
3028/*
3029 * Duplicate Address Detection
3030 */
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09003031static void addrconf_dad_kick(struct inet6_ifaddr *ifp)
3032{
3033 unsigned long rand_num;
3034 struct inet6_dev *idev = ifp->idev;
3035
Neil Horman95c385b2007-04-25 17:08:10 -07003036 if (ifp->flags & IFA_F_OPTIMISTIC)
3037 rand_num = 0;
3038 else
3039 rand_num = net_random() % (idev->cnf.rtr_solicit_delay ? : 1);
3040
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09003041 ifp->probes = idev->cnf.dad_transmits;
3042 addrconf_mod_timer(ifp, AC_DAD, rand_num);
3043}
3044
David S. Millercf22f9a2012-04-14 21:37:40 -04003045static void addrconf_dad_start(struct inet6_ifaddr *ifp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003046{
3047 struct inet6_dev *idev = ifp->idev;
3048 struct net_device *dev = idev->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003049
3050 addrconf_join_solict(dev, &ifp->addr);
3051
Linus Torvalds1da177e2005-04-16 15:20:36 -07003052 net_srandom(ifp->addr.s6_addr32[3]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003053
3054 read_lock_bh(&idev->lock);
Herbert Xu622ccdf2010-05-18 15:56:06 -07003055 spin_lock(&ifp->lock);
Herbert Xue9d3e082010-05-18 15:36:06 -07003056 if (ifp->state == INET6_IFADDR_STATE_DEAD)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003057 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003058
3059 if (dev->flags&(IFF_NOARP|IFF_LOOPBACK) ||
YOSHIFUJI Hideaki1b34be72008-06-28 14:18:38 +09003060 idev->cnf.accept_dad < 1 ||
Noriaki TAKAMIYA55ebaef2006-09-22 14:45:27 -07003061 !(ifp->flags&IFA_F_TENTATIVE) ||
3062 ifp->flags & IFA_F_NODAD) {
Brian Haleycc411d02009-09-09 14:41:32 +00003063 ifp->flags &= ~(IFA_F_TENTATIVE|IFA_F_OPTIMISTIC|IFA_F_DADFAILED);
stephen hemminger21809fa2010-02-08 19:48:52 +00003064 spin_unlock(&ifp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003065 read_unlock_bh(&idev->lock);
3066
3067 addrconf_dad_completed(ifp);
3068 return;
3069 }
3070
YOSHIFUJI Hideaki6732bad2005-12-27 13:35:15 -08003071 if (!(idev->if_flags & IF_READY)) {
stephen hemminger21809fa2010-02-08 19:48:52 +00003072 spin_unlock(&ifp->lock);
YOSHIFUJI Hideaki6732bad2005-12-27 13:35:15 -08003073 read_unlock_bh(&idev->lock);
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09003074 /*
Masatake YAMATO590a9882009-06-09 10:41:12 +09003075 * If the device is not ready:
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09003076 * - keep it tentative if it is a permanent address.
3077 * - otherwise, kill it.
3078 */
3079 in6_ifa_hold(ifp);
Brian Haleycc411d02009-09-09 14:41:32 +00003080 addrconf_dad_stop(ifp, 0);
YOSHIFUJI Hideaki6732bad2005-12-27 13:35:15 -08003081 return;
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09003082 }
Neil Horman95c385b2007-04-25 17:08:10 -07003083
3084 /*
3085 * Optimistic nodes can start receiving
3086 * Frames right away
3087 */
Stephen Hemmingere21e8462010-03-20 16:09:01 -07003088 if (ifp->flags & IFA_F_OPTIMISTIC)
Neil Horman95c385b2007-04-25 17:08:10 -07003089 ip6_ins_rt(ifp->rt);
3090
YOSHIFUJI Hideaki6732bad2005-12-27 13:35:15 -08003091 addrconf_dad_kick(ifp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003092out:
Herbert Xu622ccdf2010-05-18 15:56:06 -07003093 spin_unlock(&ifp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003094 read_unlock_bh(&idev->lock);
3095}
3096
3097static void addrconf_dad_timer(unsigned long data)
3098{
3099 struct inet6_ifaddr *ifp = (struct inet6_ifaddr *) data;
3100 struct inet6_dev *idev = ifp->idev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003101 struct in6_addr mcaddr;
3102
Herbert Xuf2344a12010-05-18 15:55:27 -07003103 if (!ifp->probes && addrconf_dad_end(ifp))
3104 goto out;
3105
stephen hemminger122e4512010-03-02 13:32:44 +00003106 read_lock(&idev->lock);
3107 if (idev->dead || !(idev->if_flags & IF_READY)) {
3108 read_unlock(&idev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003109 goto out;
3110 }
stephen hemminger21809fa2010-02-08 19:48:52 +00003111
3112 spin_lock(&ifp->lock);
Herbert Xu622ccdf2010-05-18 15:56:06 -07003113 if (ifp->state == INET6_IFADDR_STATE_DEAD) {
3114 spin_unlock(&ifp->lock);
3115 read_unlock(&idev->lock);
3116 goto out;
3117 }
3118
Linus Torvalds1da177e2005-04-16 15:20:36 -07003119 if (ifp->probes == 0) {
3120 /*
3121 * DAD was successful
3122 */
3123
Brian Haleycc411d02009-09-09 14:41:32 +00003124 ifp->flags &= ~(IFA_F_TENTATIVE|IFA_F_OPTIMISTIC|IFA_F_DADFAILED);
stephen hemminger21809fa2010-02-08 19:48:52 +00003125 spin_unlock(&ifp->lock);
stephen hemminger122e4512010-03-02 13:32:44 +00003126 read_unlock(&idev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003127
3128 addrconf_dad_completed(ifp);
3129
3130 goto out;
3131 }
3132
3133 ifp->probes--;
3134 addrconf_mod_timer(ifp, AC_DAD, ifp->idev->nd_parms->retrans_time);
stephen hemminger21809fa2010-02-08 19:48:52 +00003135 spin_unlock(&ifp->lock);
stephen hemminger122e4512010-03-02 13:32:44 +00003136 read_unlock(&idev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003137
3138 /* send a neighbour solicitation for our addr */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003139 addrconf_addr_solict_mult(&ifp->addr, &mcaddr);
YOSHIFUJI Hideakid7aabf22008-04-10 15:42:11 +09003140 ndisc_send_ns(ifp->idev->dev, NULL, &ifp->addr, &mcaddr, &in6addr_any);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003141out:
3142 in6_ifa_put(ifp);
3143}
3144
3145static void addrconf_dad_completed(struct inet6_ifaddr *ifp)
3146{
Stephen Hemmingere21e8462010-03-20 16:09:01 -07003147 struct net_device *dev = ifp->idev->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003148
3149 /*
3150 * Configure the address for reception. Now it is valid.
3151 */
3152
3153 ipv6_ifa_notify(RTM_NEWADDR, ifp);
3154
Tore Anderson026359b2011-08-28 23:47:33 +00003155 /* If added prefix is link local and we are prepared to process
3156 router advertisements, start sending router solicitations.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003157 */
3158
Shmulik Ladkaniaeaf6e92012-11-30 10:25:59 +00003159 if (ipv6_accept_ra(ifp->idev) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07003160 ifp->idev->cnf.rtr_solicits > 0 &&
3161 (dev->flags&IFF_LOOPBACK) == 0 &&
3162 (ipv6_addr_type(&ifp->addr) & IPV6_ADDR_LINKLOCAL)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003163 /*
3164 * If a host as already performed a random delay
3165 * [...] as part of DAD [...] there is no need
3166 * to delay again before sending the first RS
3167 */
YOSHIFUJI Hideakif3ee4012008-04-10 15:42:11 +09003168 ndisc_send_rs(ifp->idev->dev, &ifp->addr, &in6addr_linklocal_allrouters);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003169
3170 spin_lock_bh(&ifp->lock);
3171 ifp->probes = 1;
3172 ifp->idev->if_flags |= IF_RS_SENT;
3173 addrconf_mod_timer(ifp, AC_RS, ifp->idev->cnf.rtr_solicit_interval);
3174 spin_unlock_bh(&ifp->lock);
3175 }
3176}
3177
Stephen Hemmingere21e8462010-03-20 16:09:01 -07003178static void addrconf_dad_run(struct inet6_dev *idev)
3179{
YOSHIFUJI Hideakic5e33bd2005-12-21 22:57:44 +09003180 struct inet6_ifaddr *ifp;
3181
3182 read_lock_bh(&idev->lock);
stephen hemminger502a2ff2010-03-17 20:31:13 +00003183 list_for_each_entry(ifp, &idev->addr_list, if_list) {
stephen hemminger21809fa2010-02-08 19:48:52 +00003184 spin_lock(&ifp->lock);
Herbert Xuf2344a12010-05-18 15:55:27 -07003185 if (ifp->flags & IFA_F_TENTATIVE &&
3186 ifp->state == INET6_IFADDR_STATE_DAD)
3187 addrconf_dad_kick(ifp);
stephen hemminger21809fa2010-02-08 19:48:52 +00003188 spin_unlock(&ifp->lock);
YOSHIFUJI Hideakic5e33bd2005-12-21 22:57:44 +09003189 }
3190 read_unlock_bh(&idev->lock);
3191}
3192
Linus Torvalds1da177e2005-04-16 15:20:36 -07003193#ifdef CONFIG_PROC_FS
3194struct if6_iter_state {
Daniel Lezcano3c400902008-01-10 22:42:49 -08003195 struct seq_net_private p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003196 int bucket;
Mihai Maruseac1d578302012-01-03 23:31:35 +00003197 int offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003198};
3199
Mihai Maruseac1d578302012-01-03 23:31:35 +00003200static struct inet6_ifaddr *if6_get_first(struct seq_file *seq, loff_t pos)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003201{
3202 struct inet6_ifaddr *ifa = NULL;
3203 struct if6_iter_state *state = seq->private;
YOSHIFUJI Hideaki12188542008-03-26 02:36:06 +09003204 struct net *net = seq_file_net(seq);
Mihai Maruseac1d578302012-01-03 23:31:35 +00003205 int p = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003206
Mihai Maruseac1d578302012-01-03 23:31:35 +00003207 /* initial bucket if pos is 0 */
3208 if (pos == 0) {
3209 state->bucket = 0;
3210 state->offset = 0;
3211 }
3212
3213 for (; state->bucket < IN6_ADDR_HSIZE; ++state->bucket) {
stephen hemmingerc2e21292010-03-17 20:31:10 +00003214 struct hlist_node *n;
Eric Dumazet4f70ecc2010-05-03 10:50:14 +00003215 hlist_for_each_entry_rcu_bh(ifa, n, &inet6_addr_lst[state->bucket],
Mihai Maruseac1d578302012-01-03 23:31:35 +00003216 addr_lst) {
Eric Dumazet9f0d3c22012-10-16 07:37:27 +00003217 if (!net_eq(dev_net(ifa->idev->dev), net))
3218 continue;
Mihai Maruseac1d578302012-01-03 23:31:35 +00003219 /* sync with offset */
3220 if (p < state->offset) {
3221 p++;
3222 continue;
3223 }
3224 state->offset++;
Eric Dumazet9f0d3c22012-10-16 07:37:27 +00003225 return ifa;
Mihai Maruseac1d578302012-01-03 23:31:35 +00003226 }
3227
3228 /* prepare for next bucket */
3229 state->offset = 0;
3230 p = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003231 }
stephen hemmingerc2e21292010-03-17 20:31:10 +00003232 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003233}
3234
stephen hemmingerc2e21292010-03-17 20:31:10 +00003235static struct inet6_ifaddr *if6_get_next(struct seq_file *seq,
3236 struct inet6_ifaddr *ifa)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003237{
3238 struct if6_iter_state *state = seq->private;
YOSHIFUJI Hideaki12188542008-03-26 02:36:06 +09003239 struct net *net = seq_file_net(seq);
stephen hemmingerc2e21292010-03-17 20:31:10 +00003240 struct hlist_node *n = &ifa->addr_lst;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003241
Mihai Maruseac1d578302012-01-03 23:31:35 +00003242 hlist_for_each_entry_continue_rcu_bh(ifa, n, addr_lst) {
Eric Dumazet9f0d3c22012-10-16 07:37:27 +00003243 if (!net_eq(dev_net(ifa->idev->dev), net))
3244 continue;
Mihai Maruseac1d578302012-01-03 23:31:35 +00003245 state->offset++;
Eric Dumazet9f0d3c22012-10-16 07:37:27 +00003246 return ifa;
Mihai Maruseac1d578302012-01-03 23:31:35 +00003247 }
stephen hemmingerc2e21292010-03-17 20:31:10 +00003248
3249 while (++state->bucket < IN6_ADDR_HSIZE) {
Mihai Maruseac1d578302012-01-03 23:31:35 +00003250 state->offset = 0;
Eric Dumazet4f70ecc2010-05-03 10:50:14 +00003251 hlist_for_each_entry_rcu_bh(ifa, n,
stephen hemmingerc2e21292010-03-17 20:31:10 +00003252 &inet6_addr_lst[state->bucket], addr_lst) {
Eric Dumazet9f0d3c22012-10-16 07:37:27 +00003253 if (!net_eq(dev_net(ifa->idev->dev), net))
3254 continue;
Mihai Maruseac1d578302012-01-03 23:31:35 +00003255 state->offset++;
Eric Dumazet9f0d3c22012-10-16 07:37:27 +00003256 return ifa;
Daniel Lezcano3c400902008-01-10 22:42:49 -08003257 }
3258 }
3259
stephen hemmingerc2e21292010-03-17 20:31:10 +00003260 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003261}
3262
Linus Torvalds1da177e2005-04-16 15:20:36 -07003263static void *if6_seq_start(struct seq_file *seq, loff_t *pos)
Eric Dumazet4f70ecc2010-05-03 10:50:14 +00003264 __acquires(rcu_bh)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003265{
stephen hemminger5c578ae2010-03-17 20:31:11 +00003266 rcu_read_lock_bh();
Mihai Maruseac1d578302012-01-03 23:31:35 +00003267 return if6_get_first(seq, *pos);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003268}
3269
3270static void *if6_seq_next(struct seq_file *seq, void *v, loff_t *pos)
3271{
3272 struct inet6_ifaddr *ifa;
3273
3274 ifa = if6_get_next(seq, v);
3275 ++*pos;
3276 return ifa;
3277}
3278
3279static void if6_seq_stop(struct seq_file *seq, void *v)
Eric Dumazet4f70ecc2010-05-03 10:50:14 +00003280 __releases(rcu_bh)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003281{
stephen hemminger5c578ae2010-03-17 20:31:11 +00003282 rcu_read_unlock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003283}
3284
3285static int if6_seq_show(struct seq_file *seq, void *v)
3286{
3287 struct inet6_ifaddr *ifp = (struct inet6_ifaddr *)v;
Harvey Harrison4b7a4272008-10-29 12:50:24 -07003288 seq_printf(seq, "%pi6 %02x %02x %02x %02x %8s\n",
Harvey Harrisonb0711952008-10-28 16:05:40 -07003289 &ifp->addr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003290 ifp->idev->dev->ifindex,
3291 ifp->prefix_len,
3292 ifp->scope,
3293 ifp->flags,
3294 ifp->idev->dev->name);
3295 return 0;
3296}
3297
Philippe De Muyter56b3d972007-07-10 23:07:31 -07003298static const struct seq_operations if6_seq_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003299 .start = if6_seq_start,
3300 .next = if6_seq_next,
3301 .show = if6_seq_show,
3302 .stop = if6_seq_stop,
3303};
3304
3305static int if6_seq_open(struct inode *inode, struct file *file)
3306{
Daniel Lezcano3c400902008-01-10 22:42:49 -08003307 return seq_open_net(inode, file, &if6_seq_ops,
3308 sizeof(struct if6_iter_state));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003309}
3310
Arjan van de Ven9a321442007-02-12 00:55:35 -08003311static const struct file_operations if6_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003312 .owner = THIS_MODULE,
3313 .open = if6_seq_open,
3314 .read = seq_read,
3315 .llseek = seq_lseek,
Daniel Lezcano3c400902008-01-10 22:42:49 -08003316 .release = seq_release_net,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003317};
3318
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00003319static int __net_init if6_proc_net_init(struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003320{
Daniel Lezcano3c400902008-01-10 22:42:49 -08003321 if (!proc_net_fops_create(net, "if_inet6", S_IRUGO, &if6_fops))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003322 return -ENOMEM;
3323 return 0;
3324}
3325
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00003326static void __net_exit if6_proc_net_exit(struct net *net)
Daniel Lezcano3c400902008-01-10 22:42:49 -08003327{
3328 proc_net_remove(net, "if_inet6");
3329}
3330
3331static struct pernet_operations if6_proc_net_ops = {
3332 .init = if6_proc_net_init,
3333 .exit = if6_proc_net_exit,
3334};
3335
3336int __init if6_proc_init(void)
3337{
3338 return register_pernet_subsys(&if6_proc_net_ops);
3339}
3340
Linus Torvalds1da177e2005-04-16 15:20:36 -07003341void if6_proc_exit(void)
3342{
Daniel Lezcano3c400902008-01-10 22:42:49 -08003343 unregister_pernet_subsys(&if6_proc_net_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003344}
3345#endif /* CONFIG_PROC_FS */
3346
Amerigo Wang07a93622012-10-29 16:23:10 +00003347#if IS_ENABLED(CONFIG_IPV6_MIP6)
Noriaki TAKAMIYA3b9f9a12006-09-22 14:45:56 -07003348/* Check if address is a home address configured on any interface. */
Eric Dumazetb71d1d42011-04-22 04:53:02 +00003349int ipv6_chk_home_addr(struct net *net, const struct in6_addr *addr)
Noriaki TAKAMIYA3b9f9a12006-09-22 14:45:56 -07003350{
3351 int ret = 0;
stephen hemmingerc2e21292010-03-17 20:31:10 +00003352 struct inet6_ifaddr *ifp = NULL;
3353 struct hlist_node *n;
Eric Dumazetddbe5032012-07-18 08:11:12 +00003354 unsigned int hash = inet6_addr_hash(addr);
stephen hemmingerc2e21292010-03-17 20:31:10 +00003355
stephen hemminger5c578ae2010-03-17 20:31:11 +00003356 rcu_read_lock_bh();
Eric Dumazet4f70ecc2010-05-03 10:50:14 +00003357 hlist_for_each_entry_rcu_bh(ifp, n, &inet6_addr_lst[hash], addr_lst) {
YOSHIFUJI Hideaki878628f2008-03-26 03:57:35 +09003358 if (!net_eq(dev_net(ifp->idev->dev), net))
Daniel Lezcano389f6612008-01-10 22:44:40 -08003359 continue;
YOSHIFUJI Hideakicaad2952008-04-10 15:42:07 +09003360 if (ipv6_addr_equal(&ifp->addr, addr) &&
Noriaki TAKAMIYA3b9f9a12006-09-22 14:45:56 -07003361 (ifp->flags & IFA_F_HOMEADDRESS)) {
3362 ret = 1;
3363 break;
3364 }
3365 }
stephen hemminger5c578ae2010-03-17 20:31:11 +00003366 rcu_read_unlock_bh();
Noriaki TAKAMIYA3b9f9a12006-09-22 14:45:56 -07003367 return ret;
3368}
3369#endif
3370
Linus Torvalds1da177e2005-04-16 15:20:36 -07003371/*
3372 * Periodic address status verification
3373 */
3374
3375static void addrconf_verify(unsigned long foo)
3376{
YOSHIFUJI Hideakib2db7562010-03-20 16:11:12 -07003377 unsigned long now, next, next_sec, next_sched;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003378 struct inet6_ifaddr *ifp;
stephen hemmingerc2e21292010-03-17 20:31:10 +00003379 struct hlist_node *node;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003380 int i;
3381
stephen hemminger5c578ae2010-03-17 20:31:11 +00003382 rcu_read_lock_bh();
3383 spin_lock(&addrconf_verify_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003384 now = jiffies;
YOSHIFUJI Hideakib2db7562010-03-20 16:11:12 -07003385 next = round_jiffies_up(now + ADDR_CHECK_FREQUENCY);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003386
3387 del_timer(&addr_chk_timer);
3388
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07003389 for (i = 0; i < IN6_ADDR_HSIZE; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003390restart:
Eric Dumazet4f70ecc2010-05-03 10:50:14 +00003391 hlist_for_each_entry_rcu_bh(ifp, node,
stephen hemminger5c578ae2010-03-17 20:31:11 +00003392 &inet6_addr_lst[i], addr_lst) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003393 unsigned long age;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003394
3395 if (ifp->flags & IFA_F_PERMANENT)
3396 continue;
3397
3398 spin_lock(&ifp->lock);
YOSHIFUJI Hideakib2db7562010-03-20 16:11:12 -07003399 /* We try to batch several events at once. */
3400 age = (now - ifp->tstamp + ADDRCONF_TIMER_FUZZ_MINUS) / HZ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003401
YOSHIFUJI Hideaki8f27ebb2006-07-28 18:12:11 +09003402 if (ifp->valid_lft != INFINITY_LIFE_TIME &&
3403 age >= ifp->valid_lft) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003404 spin_unlock(&ifp->lock);
3405 in6_ifa_hold(ifp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003406 ipv6_del_addr(ifp);
3407 goto restart;
YOSHIFUJI Hideaki8f27ebb2006-07-28 18:12:11 +09003408 } else if (ifp->prefered_lft == INFINITY_LIFE_TIME) {
3409 spin_unlock(&ifp->lock);
3410 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003411 } else if (age >= ifp->prefered_lft) {
Brian Haleya1ed0522009-07-02 07:10:52 +00003412 /* jiffies - ifp->tstamp > age >= ifp->prefered_lft */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003413 int deprecate = 0;
3414
3415 if (!(ifp->flags&IFA_F_DEPRECATED)) {
3416 deprecate = 1;
3417 ifp->flags |= IFA_F_DEPRECATED;
3418 }
3419
3420 if (time_before(ifp->tstamp + ifp->valid_lft * HZ, next))
3421 next = ifp->tstamp + ifp->valid_lft * HZ;
3422
3423 spin_unlock(&ifp->lock);
3424
3425 if (deprecate) {
3426 in6_ifa_hold(ifp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003427
3428 ipv6_ifa_notify(0, ifp);
3429 in6_ifa_put(ifp);
3430 goto restart;
3431 }
3432#ifdef CONFIG_IPV6_PRIVACY
3433 } else if ((ifp->flags&IFA_F_TEMPORARY) &&
3434 !(ifp->flags&IFA_F_TENTATIVE)) {
stephen hemminger88949cf2010-03-17 20:31:17 +00003435 unsigned long regen_advance = ifp->idev->cnf.regen_max_retry *
3436 ifp->idev->cnf.dad_transmits *
3437 ifp->idev->nd_parms->retrans_time / HZ;
3438
Linus Torvalds1da177e2005-04-16 15:20:36 -07003439 if (age >= ifp->prefered_lft - regen_advance) {
3440 struct inet6_ifaddr *ifpub = ifp->ifpub;
3441 if (time_before(ifp->tstamp + ifp->prefered_lft * HZ, next))
3442 next = ifp->tstamp + ifp->prefered_lft * HZ;
3443 if (!ifp->regen_count && ifpub) {
3444 ifp->regen_count++;
3445 in6_ifa_hold(ifp);
3446 in6_ifa_hold(ifpub);
3447 spin_unlock(&ifp->lock);
stephen hemminger5c578ae2010-03-17 20:31:11 +00003448
Hiroyuki YAMAMORI291d8092005-12-23 11:24:05 -08003449 spin_lock(&ifpub->lock);
3450 ifpub->regen_count = 0;
3451 spin_unlock(&ifpub->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003452 ipv6_create_tempaddr(ifpub, ifp);
3453 in6_ifa_put(ifpub);
3454 in6_ifa_put(ifp);
3455 goto restart;
3456 }
3457 } else if (time_before(ifp->tstamp + ifp->prefered_lft * HZ - regen_advance * HZ, next))
3458 next = ifp->tstamp + ifp->prefered_lft * HZ - regen_advance * HZ;
3459 spin_unlock(&ifp->lock);
3460#endif
3461 } else {
3462 /* ifp->prefered_lft <= ifp->valid_lft */
3463 if (time_before(ifp->tstamp + ifp->prefered_lft * HZ, next))
3464 next = ifp->tstamp + ifp->prefered_lft * HZ;
3465 spin_unlock(&ifp->lock);
3466 }
3467 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003468 }
3469
YOSHIFUJI Hideakib2db7562010-03-20 16:11:12 -07003470 next_sec = round_jiffies_up(next);
3471 next_sched = next;
3472
3473 /* If rounded timeout is accurate enough, accept it. */
3474 if (time_before(next_sec, next + ADDRCONF_TIMER_FUZZ))
3475 next_sched = next_sec;
3476
3477 /* And minimum interval is ADDRCONF_TIMER_FUZZ_MAX. */
3478 if (time_before(next_sched, jiffies + ADDRCONF_TIMER_FUZZ_MAX))
3479 next_sched = jiffies + ADDRCONF_TIMER_FUZZ_MAX;
3480
3481 ADBG((KERN_DEBUG "now = %lu, schedule = %lu, rounded schedule = %lu => %lu\n",
3482 now, next, next_sec, next_sched));
3483
3484 addr_chk_timer.expires = next_sched;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003485 add_timer(&addr_chk_timer);
stephen hemminger5c578ae2010-03-17 20:31:11 +00003486 spin_unlock(&addrconf_verify_lock);
3487 rcu_read_unlock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003488}
3489
Thomas Graf461d8832006-09-18 00:09:49 -07003490static struct in6_addr *extract_addr(struct nlattr *addr, struct nlattr *local)
3491{
3492 struct in6_addr *pfx = NULL;
3493
3494 if (addr)
3495 pfx = nla_data(addr);
3496
3497 if (local) {
3498 if (pfx && nla_memcmp(local, pfx, sizeof(*pfx)))
3499 pfx = NULL;
3500 else
3501 pfx = nla_data(local);
3502 }
3503
3504 return pfx;
3505}
3506
Patrick McHardyef7c79e2007-06-05 12:38:30 -07003507static const struct nla_policy ifa_ipv6_policy[IFA_MAX+1] = {
Thomas Graf461d8832006-09-18 00:09:49 -07003508 [IFA_ADDRESS] = { .len = sizeof(struct in6_addr) },
3509 [IFA_LOCAL] = { .len = sizeof(struct in6_addr) },
3510 [IFA_CACHEINFO] = { .len = sizeof(struct ifa_cacheinfo) },
3511};
3512
Linus Torvalds1da177e2005-04-16 15:20:36 -07003513static int
3514inet6_rtm_deladdr(struct sk_buff *skb, struct nlmsghdr *nlh, void *arg)
3515{
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09003516 struct net *net = sock_net(skb->sk);
Thomas Grafb933f712006-09-18 00:10:19 -07003517 struct ifaddrmsg *ifm;
3518 struct nlattr *tb[IFA_MAX+1];
Linus Torvalds1da177e2005-04-16 15:20:36 -07003519 struct in6_addr *pfx;
Thomas Grafb933f712006-09-18 00:10:19 -07003520 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003521
Thomas Grafb933f712006-09-18 00:10:19 -07003522 err = nlmsg_parse(nlh, sizeof(*ifm), tb, IFA_MAX, ifa_ipv6_policy);
3523 if (err < 0)
3524 return err;
3525
3526 ifm = nlmsg_data(nlh);
3527 pfx = extract_addr(tb[IFA_ADDRESS], tb[IFA_LOCAL]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003528 if (pfx == NULL)
3529 return -EINVAL;
3530
Daniel Lezcanoaf284932008-03-05 10:46:57 -08003531 return inet6_addr_del(net, ifm->ifa_index, pfx, ifm->ifa_prefixlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003532}
3533
Noriaki TAKAMIYA55ebaef2006-09-22 14:45:27 -07003534static int inet6_addr_modify(struct inet6_ifaddr *ifp, u8 ifa_flags,
3535 u32 prefered_lft, u32 valid_lft)
Noriaki TAKAMIYA081bba52006-07-28 18:12:13 +09003536{
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07003537 u32 flags;
3538 clock_t expires;
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +09003539 unsigned long timeout;
YOSHIFUJI Hideaki46d48042007-02-07 20:36:26 +09003540
Noriaki TAKAMIYA081bba52006-07-28 18:12:13 +09003541 if (!valid_lft || (prefered_lft > valid_lft))
3542 return -EINVAL;
3543
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +09003544 timeout = addrconf_timeout_fixup(valid_lft, HZ);
3545 if (addrconf_finite_timeout(timeout)) {
3546 expires = jiffies_to_clock_t(timeout * HZ);
3547 valid_lft = timeout;
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07003548 flags = RTF_EXPIRES;
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +09003549 } else {
3550 expires = 0;
3551 flags = 0;
3552 ifa_flags |= IFA_F_PERMANENT;
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07003553 }
Noriaki TAKAMIYA081bba52006-07-28 18:12:13 +09003554
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +09003555 timeout = addrconf_timeout_fixup(prefered_lft, HZ);
3556 if (addrconf_finite_timeout(timeout)) {
3557 if (timeout == 0)
3558 ifa_flags |= IFA_F_DEPRECATED;
3559 prefered_lft = timeout;
3560 }
Noriaki TAKAMIYA081bba52006-07-28 18:12:13 +09003561
3562 spin_lock_bh(&ifp->lock);
Noriaki TAKAMIYA3b9f9a12006-09-22 14:45:56 -07003563 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 +09003564 ifp->tstamp = jiffies;
3565 ifp->valid_lft = valid_lft;
3566 ifp->prefered_lft = prefered_lft;
3567
3568 spin_unlock_bh(&ifp->lock);
3569 if (!(ifp->flags&IFA_F_TENTATIVE))
3570 ipv6_ifa_notify(0, ifp);
Noriaki TAKAMIYA081bba52006-07-28 18:12:13 +09003571
YOSHIFUJI Hideaki46d48042007-02-07 20:36:26 +09003572 addrconf_prefix_route(&ifp->addr, ifp->prefix_len, ifp->idev->dev,
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07003573 expires, flags);
Noriaki TAKAMIYA081bba52006-07-28 18:12:13 +09003574 addrconf_verify(0);
3575
3576 return 0;
3577}
3578
3579static int
Linus Torvalds1da177e2005-04-16 15:20:36 -07003580inet6_rtm_newaddr(struct sk_buff *skb, struct nlmsghdr *nlh, void *arg)
3581{
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09003582 struct net *net = sock_net(skb->sk);
Thomas Graf461d8832006-09-18 00:09:49 -07003583 struct ifaddrmsg *ifm;
3584 struct nlattr *tb[IFA_MAX+1];
Linus Torvalds1da177e2005-04-16 15:20:36 -07003585 struct in6_addr *pfx;
Thomas Graf7198f8c2006-09-18 00:13:46 -07003586 struct inet6_ifaddr *ifa;
3587 struct net_device *dev;
Noriaki TAKAMIYA55ebaef2006-09-22 14:45:27 -07003588 u32 valid_lft = INFINITY_LIFE_TIME, preferred_lft = INFINITY_LIFE_TIME;
3589 u8 ifa_flags;
Thomas Graf461d8832006-09-18 00:09:49 -07003590 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003591
Thomas Graf461d8832006-09-18 00:09:49 -07003592 err = nlmsg_parse(nlh, sizeof(*ifm), tb, IFA_MAX, ifa_ipv6_policy);
3593 if (err < 0)
3594 return err;
3595
3596 ifm = nlmsg_data(nlh);
3597 pfx = extract_addr(tb[IFA_ADDRESS], tb[IFA_LOCAL]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003598 if (pfx == NULL)
3599 return -EINVAL;
3600
Thomas Graf461d8832006-09-18 00:09:49 -07003601 if (tb[IFA_CACHEINFO]) {
Noriaki TAKAMIYA07787692006-07-28 18:12:10 +09003602 struct ifa_cacheinfo *ci;
Thomas Graf461d8832006-09-18 00:09:49 -07003603
3604 ci = nla_data(tb[IFA_CACHEINFO]);
Noriaki TAKAMIYA07787692006-07-28 18:12:10 +09003605 valid_lft = ci->ifa_valid;
Thomas Graf461d8832006-09-18 00:09:49 -07003606 preferred_lft = ci->ifa_prefered;
3607 } else {
3608 preferred_lft = INFINITY_LIFE_TIME;
3609 valid_lft = INFINITY_LIFE_TIME;
Noriaki TAKAMIYA07787692006-07-28 18:12:10 +09003610 }
3611
Daniel Lezcanoaf284932008-03-05 10:46:57 -08003612 dev = __dev_get_by_index(net, ifm->ifa_index);
Thomas Graf7198f8c2006-09-18 00:13:46 -07003613 if (dev == NULL)
3614 return -ENODEV;
3615
Noriaki TAKAMIYA55ebaef2006-09-22 14:45:27 -07003616 /* We ignore other flags so far. */
Noriaki TAKAMIYA3b9f9a12006-09-22 14:45:56 -07003617 ifa_flags = ifm->ifa_flags & (IFA_F_NODAD | IFA_F_HOMEADDRESS);
Noriaki TAKAMIYA55ebaef2006-09-22 14:45:27 -07003618
Daniel Lezcano1cab3da2008-01-10 22:44:09 -08003619 ifa = ipv6_get_ifaddr(net, pfx, dev, 1);
Thomas Graf7198f8c2006-09-18 00:13:46 -07003620 if (ifa == NULL) {
3621 /*
3622 * It would be best to check for !NLM_F_CREATE here but
3623 * userspace alreay relies on not having to provide this.
3624 */
Daniel Lezcanoaf284932008-03-05 10:46:57 -08003625 return inet6_addr_add(net, ifm->ifa_index, pfx,
3626 ifm->ifa_prefixlen, ifa_flags,
3627 preferred_lft, valid_lft);
Noriaki TAKAMIYA081bba52006-07-28 18:12:13 +09003628 }
3629
Thomas Graf7198f8c2006-09-18 00:13:46 -07003630 if (nlh->nlmsg_flags & NLM_F_EXCL ||
3631 !(nlh->nlmsg_flags & NLM_F_REPLACE))
3632 err = -EEXIST;
3633 else
Noriaki TAKAMIYA55ebaef2006-09-22 14:45:27 -07003634 err = inet6_addr_modify(ifa, ifa_flags, preferred_lft, valid_lft);
Thomas Graf7198f8c2006-09-18 00:13:46 -07003635
3636 in6_ifa_put(ifa);
3637
3638 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003639}
3640
Thomas Graf101bb222006-09-18 00:11:52 -07003641static void put_ifaddrmsg(struct nlmsghdr *nlh, u8 prefixlen, u8 flags,
3642 u8 scope, int ifindex)
3643{
3644 struct ifaddrmsg *ifm;
3645
3646 ifm = nlmsg_data(nlh);
3647 ifm->ifa_family = AF_INET6;
3648 ifm->ifa_prefixlen = prefixlen;
3649 ifm->ifa_flags = flags;
3650 ifm->ifa_scope = scope;
3651 ifm->ifa_index = ifindex;
3652}
3653
Thomas Graf85486af2006-09-18 00:11:24 -07003654static int put_cacheinfo(struct sk_buff *skb, unsigned long cstamp,
3655 unsigned long tstamp, u32 preferred, u32 valid)
3656{
3657 struct ifa_cacheinfo ci;
3658
Thomas Graf18a31e12010-11-17 04:12:02 +00003659 ci.cstamp = cstamp_delta(cstamp);
3660 ci.tstamp = cstamp_delta(tstamp);
Thomas Graf85486af2006-09-18 00:11:24 -07003661 ci.ifa_prefered = preferred;
3662 ci.ifa_valid = valid;
3663
3664 return nla_put(skb, IFA_CACHEINFO, sizeof(ci), &ci);
3665}
3666
Thomas Graf101bb222006-09-18 00:11:52 -07003667static inline int rt_scope(int ifa_scope)
3668{
3669 if (ifa_scope & IFA_HOST)
3670 return RT_SCOPE_HOST;
3671 else if (ifa_scope & IFA_LINK)
3672 return RT_SCOPE_LINK;
3673 else if (ifa_scope & IFA_SITE)
3674 return RT_SCOPE_SITE;
3675 else
3676 return RT_SCOPE_UNIVERSE;
3677}
3678
Thomas Graf0ab68032006-09-18 00:12:35 -07003679static inline int inet6_ifaddr_msgsize(void)
3680{
Thomas Graf339bf982006-11-10 14:10:15 -08003681 return NLMSG_ALIGN(sizeof(struct ifaddrmsg))
3682 + nla_total_size(16) /* IFA_ADDRESS */
3683 + nla_total_size(sizeof(struct ifa_cacheinfo));
Thomas Graf0ab68032006-09-18 00:12:35 -07003684}
YOSHIFUJI Hideakic5396a32006-06-17 22:48:48 -07003685
Linus Torvalds1da177e2005-04-16 15:20:36 -07003686static int inet6_fill_ifaddr(struct sk_buff *skb, struct inet6_ifaddr *ifa,
Eric W. Biederman15e47302012-09-07 20:12:54 +00003687 u32 portid, u32 seq, int event, unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003688{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003689 struct nlmsghdr *nlh;
Thomas Graf85486af2006-09-18 00:11:24 -07003690 u32 preferred, valid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003691
Eric W. Biederman15e47302012-09-07 20:12:54 +00003692 nlh = nlmsg_put(skb, portid, seq, event, sizeof(struct ifaddrmsg), flags);
Thomas Graf0ab68032006-09-18 00:12:35 -07003693 if (nlh == NULL)
Patrick McHardy26932562007-01-31 23:16:40 -08003694 return -EMSGSIZE;
Thomas Graf0ab68032006-09-18 00:12:35 -07003695
Thomas Graf101bb222006-09-18 00:11:52 -07003696 put_ifaddrmsg(nlh, ifa->prefix_len, ifa->flags, rt_scope(ifa->scope),
3697 ifa->idev->dev->ifindex);
3698
Linus Torvalds1da177e2005-04-16 15:20:36 -07003699 if (!(ifa->flags&IFA_F_PERMANENT)) {
Thomas Graf85486af2006-09-18 00:11:24 -07003700 preferred = ifa->prefered_lft;
3701 valid = ifa->valid_lft;
3702 if (preferred != INFINITY_LIFE_TIME) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003703 long tval = (jiffies - ifa->tstamp)/HZ;
Jens Rosenbooma1faa692009-06-25 04:55:50 +00003704 if (preferred > tval)
3705 preferred -= tval;
3706 else
3707 preferred = 0;
Ben Hutchingsf56619f2010-06-26 11:37:47 +00003708 if (valid != INFINITY_LIFE_TIME) {
3709 if (valid > tval)
3710 valid -= tval;
3711 else
3712 valid = 0;
3713 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003714 }
3715 } else {
Thomas Graf85486af2006-09-18 00:11:24 -07003716 preferred = INFINITY_LIFE_TIME;
3717 valid = INFINITY_LIFE_TIME;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003718 }
Thomas Graf85486af2006-09-18 00:11:24 -07003719
Thomas Graf0ab68032006-09-18 00:12:35 -07003720 if (nla_put(skb, IFA_ADDRESS, 16, &ifa->addr) < 0 ||
Patrick McHardy26932562007-01-31 23:16:40 -08003721 put_cacheinfo(skb, ifa->cstamp, ifa->tstamp, preferred, valid) < 0) {
3722 nlmsg_cancel(skb, nlh);
3723 return -EMSGSIZE;
3724 }
Thomas Graf85486af2006-09-18 00:11:24 -07003725
Thomas Graf0ab68032006-09-18 00:12:35 -07003726 return nlmsg_end(skb, nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003727}
3728
3729static int inet6_fill_ifmcaddr(struct sk_buff *skb, struct ifmcaddr6 *ifmca,
Eric W. Biederman15e47302012-09-07 20:12:54 +00003730 u32 portid, u32 seq, int event, u16 flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003731{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003732 struct nlmsghdr *nlh;
Thomas Graf101bb222006-09-18 00:11:52 -07003733 u8 scope = RT_SCOPE_UNIVERSE;
3734 int ifindex = ifmca->idev->dev->ifindex;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003735
Thomas Graf101bb222006-09-18 00:11:52 -07003736 if (ipv6_addr_scope(&ifmca->mca_addr) & IFA_SITE)
3737 scope = RT_SCOPE_SITE;
3738
Eric W. Biederman15e47302012-09-07 20:12:54 +00003739 nlh = nlmsg_put(skb, portid, seq, event, sizeof(struct ifaddrmsg), flags);
Thomas Graf0ab68032006-09-18 00:12:35 -07003740 if (nlh == NULL)
Patrick McHardy26932562007-01-31 23:16:40 -08003741 return -EMSGSIZE;
Thomas Graf0ab68032006-09-18 00:12:35 -07003742
Thomas Graf101bb222006-09-18 00:11:52 -07003743 put_ifaddrmsg(nlh, 128, IFA_F_PERMANENT, scope, ifindex);
Thomas Graf0ab68032006-09-18 00:12:35 -07003744 if (nla_put(skb, IFA_MULTICAST, 16, &ifmca->mca_addr) < 0 ||
3745 put_cacheinfo(skb, ifmca->mca_cstamp, ifmca->mca_tstamp,
Patrick McHardy26932562007-01-31 23:16:40 -08003746 INFINITY_LIFE_TIME, INFINITY_LIFE_TIME) < 0) {
3747 nlmsg_cancel(skb, nlh);
3748 return -EMSGSIZE;
3749 }
Thomas Graf85486af2006-09-18 00:11:24 -07003750
Thomas Graf0ab68032006-09-18 00:12:35 -07003751 return nlmsg_end(skb, nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003752}
3753
3754static int inet6_fill_ifacaddr(struct sk_buff *skb, struct ifacaddr6 *ifaca,
Eric W. Biederman15e47302012-09-07 20:12:54 +00003755 u32 portid, u32 seq, int event, unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003756{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003757 struct nlmsghdr *nlh;
Thomas Graf101bb222006-09-18 00:11:52 -07003758 u8 scope = RT_SCOPE_UNIVERSE;
3759 int ifindex = ifaca->aca_idev->dev->ifindex;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003760
Thomas Graf101bb222006-09-18 00:11:52 -07003761 if (ipv6_addr_scope(&ifaca->aca_addr) & IFA_SITE)
3762 scope = RT_SCOPE_SITE;
3763
Eric W. Biederman15e47302012-09-07 20:12:54 +00003764 nlh = nlmsg_put(skb, portid, seq, event, sizeof(struct ifaddrmsg), flags);
Thomas Graf0ab68032006-09-18 00:12:35 -07003765 if (nlh == NULL)
Patrick McHardy26932562007-01-31 23:16:40 -08003766 return -EMSGSIZE;
Thomas Graf0ab68032006-09-18 00:12:35 -07003767
Thomas Graf101bb222006-09-18 00:11:52 -07003768 put_ifaddrmsg(nlh, 128, IFA_F_PERMANENT, scope, ifindex);
Thomas Graf0ab68032006-09-18 00:12:35 -07003769 if (nla_put(skb, IFA_ANYCAST, 16, &ifaca->aca_addr) < 0 ||
3770 put_cacheinfo(skb, ifaca->aca_cstamp, ifaca->aca_tstamp,
Patrick McHardy26932562007-01-31 23:16:40 -08003771 INFINITY_LIFE_TIME, INFINITY_LIFE_TIME) < 0) {
3772 nlmsg_cancel(skb, nlh);
3773 return -EMSGSIZE;
3774 }
Thomas Graf85486af2006-09-18 00:11:24 -07003775
Thomas Graf0ab68032006-09-18 00:12:35 -07003776 return nlmsg_end(skb, nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003777}
3778
Stephen Hemmingere21e8462010-03-20 16:09:01 -07003779enum addr_type_t {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003780 UNICAST_ADDR,
3781 MULTICAST_ADDR,
3782 ANYCAST_ADDR,
3783};
3784
Eric Dumazet234b27c2009-11-12 04:11:50 +00003785/* called with rcu_read_lock() */
3786static int in6_dump_addrs(struct inet6_dev *idev, struct sk_buff *skb,
3787 struct netlink_callback *cb, enum addr_type_t type,
3788 int s_ip_idx, int *p_ip_idx)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003789{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003790 struct ifmcaddr6 *ifmca;
3791 struct ifacaddr6 *ifaca;
Eric Dumazet234b27c2009-11-12 04:11:50 +00003792 int err = 1;
3793 int ip_idx = *p_ip_idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003794
Eric Dumazet234b27c2009-11-12 04:11:50 +00003795 read_lock_bh(&idev->lock);
3796 switch (type) {
stephen hemminger502a2ff2010-03-17 20:31:13 +00003797 case UNICAST_ADDR: {
3798 struct inet6_ifaddr *ifa;
3799
Eric Dumazet234b27c2009-11-12 04:11:50 +00003800 /* unicast address incl. temp addr */
stephen hemminger502a2ff2010-03-17 20:31:13 +00003801 list_for_each_entry(ifa, &idev->addr_list, if_list) {
3802 if (++ip_idx < s_ip_idx)
Eric Dumazet234b27c2009-11-12 04:11:50 +00003803 continue;
3804 err = inet6_fill_ifaddr(skb, ifa,
Eric W. Biederman15e47302012-09-07 20:12:54 +00003805 NETLINK_CB(cb->skb).portid,
Eric Dumazet234b27c2009-11-12 04:11:50 +00003806 cb->nlh->nlmsg_seq,
3807 RTM_NEWADDR,
3808 NLM_F_MULTI);
3809 if (err <= 0)
3810 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003811 }
Eric Dumazet234b27c2009-11-12 04:11:50 +00003812 break;
stephen hemminger502a2ff2010-03-17 20:31:13 +00003813 }
Eric Dumazet234b27c2009-11-12 04:11:50 +00003814 case MULTICAST_ADDR:
3815 /* multicast address */
3816 for (ifmca = idev->mc_list; ifmca;
3817 ifmca = ifmca->next, ip_idx++) {
3818 if (ip_idx < s_ip_idx)
3819 continue;
3820 err = inet6_fill_ifmcaddr(skb, ifmca,
Eric W. Biederman15e47302012-09-07 20:12:54 +00003821 NETLINK_CB(cb->skb).portid,
Eric Dumazet234b27c2009-11-12 04:11:50 +00003822 cb->nlh->nlmsg_seq,
3823 RTM_GETMULTICAST,
3824 NLM_F_MULTI);
3825 if (err <= 0)
3826 break;
3827 }
3828 break;
3829 case ANYCAST_ADDR:
3830 /* anycast address */
3831 for (ifaca = idev->ac_list; ifaca;
3832 ifaca = ifaca->aca_next, ip_idx++) {
3833 if (ip_idx < s_ip_idx)
3834 continue;
3835 err = inet6_fill_ifacaddr(skb, ifaca,
Eric W. Biederman15e47302012-09-07 20:12:54 +00003836 NETLINK_CB(cb->skb).portid,
Eric Dumazet234b27c2009-11-12 04:11:50 +00003837 cb->nlh->nlmsg_seq,
3838 RTM_GETANYCAST,
3839 NLM_F_MULTI);
3840 if (err <= 0)
3841 break;
3842 }
3843 break;
3844 default:
3845 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003846 }
Eric Dumazet234b27c2009-11-12 04:11:50 +00003847 read_unlock_bh(&idev->lock);
3848 *p_ip_idx = ip_idx;
3849 return err;
3850}
3851
3852static int inet6_dump_addr(struct sk_buff *skb, struct netlink_callback *cb,
3853 enum addr_type_t type)
3854{
3855 struct net *net = sock_net(skb->sk);
3856 int h, s_h;
3857 int idx, ip_idx;
3858 int s_idx, s_ip_idx;
3859 struct net_device *dev;
3860 struct inet6_dev *idev;
3861 struct hlist_head *head;
3862 struct hlist_node *node;
3863
3864 s_h = cb->args[0];
3865 s_idx = idx = cb->args[1];
3866 s_ip_idx = ip_idx = cb->args[2];
3867
3868 rcu_read_lock();
3869 for (h = s_h; h < NETDEV_HASHENTRIES; h++, s_idx = 0) {
3870 idx = 0;
3871 head = &net->dev_index_head[h];
3872 hlist_for_each_entry_rcu(dev, node, head, index_hlist) {
3873 if (idx < s_idx)
3874 goto cont;
Patrick McHardy4b97efd2010-03-26 20:27:49 -07003875 if (h > s_h || idx > s_idx)
Eric Dumazet234b27c2009-11-12 04:11:50 +00003876 s_ip_idx = 0;
3877 ip_idx = 0;
Stephen Hemmingere21e8462010-03-20 16:09:01 -07003878 idev = __in6_dev_get(dev);
3879 if (!idev)
Eric Dumazet234b27c2009-11-12 04:11:50 +00003880 goto cont;
3881
3882 if (in6_dump_addrs(idev, skb, cb, type,
3883 s_ip_idx, &ip_idx) <= 0)
3884 goto done;
3885cont:
3886 idx++;
3887 }
3888 }
3889done:
3890 rcu_read_unlock();
3891 cb->args[0] = h;
3892 cb->args[1] = idx;
3893 cb->args[2] = ip_idx;
3894
Linus Torvalds1da177e2005-04-16 15:20:36 -07003895 return skb->len;
3896}
3897
3898static int inet6_dump_ifaddr(struct sk_buff *skb, struct netlink_callback *cb)
3899{
3900 enum addr_type_t type = UNICAST_ADDR;
Denis V. Lunevb8542722007-12-01 00:21:31 +11003901
Linus Torvalds1da177e2005-04-16 15:20:36 -07003902 return inet6_dump_addr(skb, cb, type);
3903}
3904
3905static int inet6_dump_ifmcaddr(struct sk_buff *skb, struct netlink_callback *cb)
3906{
3907 enum addr_type_t type = MULTICAST_ADDR;
Denis V. Lunevb8542722007-12-01 00:21:31 +11003908
Linus Torvalds1da177e2005-04-16 15:20:36 -07003909 return inet6_dump_addr(skb, cb, type);
3910}
3911
3912
3913static int inet6_dump_ifacaddr(struct sk_buff *skb, struct netlink_callback *cb)
3914{
3915 enum addr_type_t type = ANYCAST_ADDR;
Denis V. Lunevb8542722007-12-01 00:21:31 +11003916
Linus Torvalds1da177e2005-04-16 15:20:36 -07003917 return inet6_dump_addr(skb, cb, type);
3918}
3919
Eldad Zack8e5e8f32012-04-01 07:49:08 +00003920static int inet6_rtm_getaddr(struct sk_buff *in_skb, struct nlmsghdr *nlh,
Thomas Graf1b29fc22006-09-18 00:10:50 -07003921 void *arg)
Noriaki TAKAMIYA6c223822006-07-28 18:12:12 +09003922{
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09003923 struct net *net = sock_net(in_skb->sk);
Thomas Graf1b29fc22006-09-18 00:10:50 -07003924 struct ifaddrmsg *ifm;
3925 struct nlattr *tb[IFA_MAX+1];
Noriaki TAKAMIYA6c223822006-07-28 18:12:12 +09003926 struct in6_addr *addr = NULL;
3927 struct net_device *dev = NULL;
3928 struct inet6_ifaddr *ifa;
3929 struct sk_buff *skb;
Noriaki TAKAMIYA6c223822006-07-28 18:12:12 +09003930 int err;
3931
Thomas Graf1b29fc22006-09-18 00:10:50 -07003932 err = nlmsg_parse(nlh, sizeof(*ifm), tb, IFA_MAX, ifa_ipv6_policy);
3933 if (err < 0)
3934 goto errout;
Noriaki TAKAMIYA6c223822006-07-28 18:12:12 +09003935
Thomas Graf1b29fc22006-09-18 00:10:50 -07003936 addr = extract_addr(tb[IFA_ADDRESS], tb[IFA_LOCAL]);
3937 if (addr == NULL) {
3938 err = -EINVAL;
3939 goto errout;
3940 }
3941
3942 ifm = nlmsg_data(nlh);
Noriaki TAKAMIYA6c223822006-07-28 18:12:12 +09003943 if (ifm->ifa_index)
Benjamin Thery6fda7352008-03-05 10:47:47 -08003944 dev = __dev_get_by_index(net, ifm->ifa_index);
Noriaki TAKAMIYA6c223822006-07-28 18:12:12 +09003945
Stephen Hemmingere21e8462010-03-20 16:09:01 -07003946 ifa = ipv6_get_ifaddr(net, addr, dev, 1);
3947 if (!ifa) {
Thomas Graf1b29fc22006-09-18 00:10:50 -07003948 err = -EADDRNOTAVAIL;
3949 goto errout;
Noriaki TAKAMIYA6c223822006-07-28 18:12:12 +09003950 }
3951
Stephen Hemmingere21e8462010-03-20 16:09:01 -07003952 skb = nlmsg_new(inet6_ifaddr_msgsize(), GFP_KERNEL);
3953 if (!skb) {
Thomas Graf1b29fc22006-09-18 00:10:50 -07003954 err = -ENOBUFS;
3955 goto errout_ifa;
3956 }
3957
Eric W. Biederman15e47302012-09-07 20:12:54 +00003958 err = inet6_fill_ifaddr(skb, ifa, NETLINK_CB(in_skb).portid,
Noriaki TAKAMIYA6c223822006-07-28 18:12:12 +09003959 nlh->nlmsg_seq, RTM_NEWADDR, 0);
Patrick McHardy26932562007-01-31 23:16:40 -08003960 if (err < 0) {
3961 /* -EMSGSIZE implies BUG in inet6_ifaddr_msgsize() */
3962 WARN_ON(err == -EMSGSIZE);
3963 kfree_skb(skb);
3964 goto errout_ifa;
3965 }
Eric W. Biederman15e47302012-09-07 20:12:54 +00003966 err = rtnl_unicast(skb, net, NETLINK_CB(in_skb).portid);
Thomas Graf1b29fc22006-09-18 00:10:50 -07003967errout_ifa:
Noriaki TAKAMIYA6c223822006-07-28 18:12:12 +09003968 in6_ifa_put(ifa);
Thomas Graf1b29fc22006-09-18 00:10:50 -07003969errout:
Noriaki TAKAMIYA6c223822006-07-28 18:12:12 +09003970 return err;
Noriaki TAKAMIYA6c223822006-07-28 18:12:12 +09003971}
3972
Linus Torvalds1da177e2005-04-16 15:20:36 -07003973static void inet6_ifa_notify(int event, struct inet6_ifaddr *ifa)
3974{
3975 struct sk_buff *skb;
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09003976 struct net *net = dev_net(ifa->idev->dev);
Thomas Graf5d620262006-08-15 00:35:02 -07003977 int err = -ENOBUFS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003978
Thomas Graf0ab68032006-09-18 00:12:35 -07003979 skb = nlmsg_new(inet6_ifaddr_msgsize(), GFP_ATOMIC);
Thomas Graf5d620262006-08-15 00:35:02 -07003980 if (skb == NULL)
3981 goto errout;
3982
3983 err = inet6_fill_ifaddr(skb, ifa, 0, 0, event, 0);
Patrick McHardy26932562007-01-31 23:16:40 -08003984 if (err < 0) {
3985 /* -EMSGSIZE implies BUG in inet6_ifaddr_msgsize() */
3986 WARN_ON(err == -EMSGSIZE);
3987 kfree_skb(skb);
3988 goto errout;
3989 }
Pablo Neira Ayuso1ce85fe2009-02-24 23:18:28 -08003990 rtnl_notify(skb, net, 0, RTNLGRP_IPV6_IFADDR, NULL, GFP_ATOMIC);
3991 return;
Thomas Graf5d620262006-08-15 00:35:02 -07003992errout:
3993 if (err < 0)
Benjamin Thery6fda7352008-03-05 10:47:47 -08003994 rtnl_set_sk_err(net, RTNLGRP_IPV6_IFADDR, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003995}
3996
Dave Jonesb6f99a22007-03-22 12:27:49 -07003997static inline void ipv6_store_devconf(struct ipv6_devconf *cnf,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003998 __s32 *array, int bytes)
3999{
Thomas Graf04561c12006-11-14 19:53:58 -08004000 BUG_ON(bytes < (DEVCONF_MAX * 4));
4001
Linus Torvalds1da177e2005-04-16 15:20:36 -07004002 memset(array, 0, bytes);
4003 array[DEVCONF_FORWARDING] = cnf->forwarding;
4004 array[DEVCONF_HOPLIMIT] = cnf->hop_limit;
4005 array[DEVCONF_MTU6] = cnf->mtu6;
4006 array[DEVCONF_ACCEPT_RA] = cnf->accept_ra;
4007 array[DEVCONF_ACCEPT_REDIRECTS] = cnf->accept_redirects;
4008 array[DEVCONF_AUTOCONF] = cnf->autoconf;
4009 array[DEVCONF_DAD_TRANSMITS] = cnf->dad_transmits;
4010 array[DEVCONF_RTR_SOLICITS] = cnf->rtr_solicits;
Thomas Graf93908d12010-11-17 01:44:24 +00004011 array[DEVCONF_RTR_SOLICIT_INTERVAL] =
4012 jiffies_to_msecs(cnf->rtr_solicit_interval);
4013 array[DEVCONF_RTR_SOLICIT_DELAY] =
4014 jiffies_to_msecs(cnf->rtr_solicit_delay);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004015 array[DEVCONF_FORCE_MLD_VERSION] = cnf->force_mld_version;
4016#ifdef CONFIG_IPV6_PRIVACY
4017 array[DEVCONF_USE_TEMPADDR] = cnf->use_tempaddr;
4018 array[DEVCONF_TEMP_VALID_LFT] = cnf->temp_valid_lft;
4019 array[DEVCONF_TEMP_PREFERED_LFT] = cnf->temp_prefered_lft;
4020 array[DEVCONF_REGEN_MAX_RETRY] = cnf->regen_max_retry;
4021 array[DEVCONF_MAX_DESYNC_FACTOR] = cnf->max_desync_factor;
4022#endif
4023 array[DEVCONF_MAX_ADDRESSES] = cnf->max_addresses;
YOSHIFUJI Hideaki65f5c7c2006-03-20 16:55:08 -08004024 array[DEVCONF_ACCEPT_RA_DEFRTR] = cnf->accept_ra_defrtr;
YOSHIFUJI Hideakic4fd30e2006-03-20 16:55:26 -08004025 array[DEVCONF_ACCEPT_RA_PINFO] = cnf->accept_ra_pinfo;
YOSHIFUJI Hideaki930d6ff2006-03-20 17:05:30 -08004026#ifdef CONFIG_IPV6_ROUTER_PREF
4027 array[DEVCONF_ACCEPT_RA_RTR_PREF] = cnf->accept_ra_rtr_pref;
Thomas Graf93908d12010-11-17 01:44:24 +00004028 array[DEVCONF_RTR_PROBE_INTERVAL] =
4029 jiffies_to_msecs(cnf->rtr_probe_interval);
Neil Hormanfa03ef32007-01-30 14:30:10 -08004030#ifdef CONFIG_IPV6_ROUTE_INFO
YOSHIFUJI Hideaki09c884d2006-03-20 17:07:03 -08004031 array[DEVCONF_ACCEPT_RA_RT_INFO_MAX_PLEN] = cnf->accept_ra_rt_info_max_plen;
4032#endif
YOSHIFUJI Hideaki930d6ff2006-03-20 17:05:30 -08004033#endif
YOSHIFUJI Hideakifbea49e2006-09-22 14:43:49 -07004034 array[DEVCONF_PROXY_NDP] = cnf->proxy_ndp;
YOSHIFUJI Hideaki0bcbc922007-04-24 14:58:30 -07004035 array[DEVCONF_ACCEPT_SOURCE_ROUTE] = cnf->accept_source_route;
Neil Horman95c385b2007-04-25 17:08:10 -07004036#ifdef CONFIG_IPV6_OPTIMISTIC_DAD
4037 array[DEVCONF_OPTIMISTIC_DAD] = cnf->optimistic_dad;
4038#endif
YOSHIFUJI Hideaki7bc570c2008-04-03 09:22:53 +09004039#ifdef CONFIG_IPV6_MROUTE
4040 array[DEVCONF_MC_FORWARDING] = cnf->mc_forwarding;
4041#endif
YOSHIFUJI Hideaki778d80b2008-06-28 14:17:11 +09004042 array[DEVCONF_DISABLE_IPV6] = cnf->disable_ipv6;
YOSHIFUJI Hideaki1b34be72008-06-28 14:18:38 +09004043 array[DEVCONF_ACCEPT_DAD] = cnf->accept_dad;
Cosmin Ratiuc3faca02009-10-09 03:11:14 +00004044 array[DEVCONF_FORCE_TLLAO] = cnf->force_tllao;
Hannes Frederic Sowa5cb04432012-11-06 16:46:20 +00004045 array[DEVCONF_NDISC_NOTIFY] = cnf->ndisc_notify;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004046}
4047
Thomas Grafb382b192010-11-16 04:33:57 +00004048static inline size_t inet6_ifla6_size(void)
4049{
4050 return nla_total_size(4) /* IFLA_INET6_FLAGS */
4051 + nla_total_size(sizeof(struct ifla_cacheinfo))
4052 + nla_total_size(DEVCONF_MAX * 4) /* IFLA_INET6_CONF */
4053 + nla_total_size(IPSTATS_MIB_MAX * 8) /* IFLA_INET6_STATS */
4054 + nla_total_size(ICMP6_MIB_MAX * 8); /* IFLA_INET6_ICMP6STATS */
4055}
4056
Thomas Graf339bf982006-11-10 14:10:15 -08004057static inline size_t inet6_if_nlmsg_size(void)
4058{
4059 return NLMSG_ALIGN(sizeof(struct ifinfomsg))
4060 + nla_total_size(IFNAMSIZ) /* IFLA_IFNAME */
4061 + nla_total_size(MAX_ADDR_LEN) /* IFLA_ADDRESS */
4062 + nla_total_size(4) /* IFLA_MTU */
4063 + nla_total_size(4) /* IFLA_LINK */
Thomas Grafb382b192010-11-16 04:33:57 +00004064 + nla_total_size(inet6_ifla6_size()); /* IFLA_PROTINFO */
Thomas Graf339bf982006-11-10 14:10:15 -08004065}
YOSHIFUJI Hideakic5396a32006-06-17 22:48:48 -07004066
Eric Dumazetbe281e52011-05-19 01:14:23 +00004067static inline void __snmp6_fill_statsdev(u64 *stats, atomic_long_t *mib,
Tejun Heo7d720c32010-02-16 15:20:26 +00004068 int items, int bytes)
Herbert Xu7f7d9a62007-04-24 21:54:09 -07004069{
4070 int i;
4071 int pad = bytes - sizeof(u64) * items;
4072 BUG_ON(pad < 0);
4073
4074 /* Use put_unaligned() because stats may not be aligned for u64. */
4075 put_unaligned(items, &stats[0]);
4076 for (i = 1; i < items; i++)
Eric Dumazetbe281e52011-05-19 01:14:23 +00004077 put_unaligned(atomic_long_read(&mib[i]), &stats[i]);
Herbert Xu7f7d9a62007-04-24 21:54:09 -07004078
4079 memset(&stats[items], 0, pad);
4080}
4081
Eric Dumazet4ce3c182010-06-30 13:31:19 -07004082static inline void __snmp6_fill_stats64(u64 *stats, void __percpu **mib,
4083 int items, int bytes, size_t syncpoff)
4084{
4085 int i;
4086 int pad = bytes - sizeof(u64) * items;
4087 BUG_ON(pad < 0);
4088
4089 /* Use put_unaligned() because stats may not be aligned for u64. */
4090 put_unaligned(items, &stats[0]);
4091 for (i = 1; i < items; i++)
4092 put_unaligned(snmp_fold_field64(mib, i, syncpoff), &stats[i]);
4093
4094 memset(&stats[items], 0, pad);
4095}
4096
Herbert Xu7f7d9a62007-04-24 21:54:09 -07004097static void snmp6_fill_stats(u64 *stats, struct inet6_dev *idev, int attrtype,
4098 int bytes)
4099{
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004100 switch (attrtype) {
Herbert Xu7f7d9a62007-04-24 21:54:09 -07004101 case IFLA_INET6_STATS:
Eric Dumazet4ce3c182010-06-30 13:31:19 -07004102 __snmp6_fill_stats64(stats, (void __percpu **)idev->stats.ipv6,
4103 IPSTATS_MIB_MAX, bytes, offsetof(struct ipstats_mib, syncp));
Herbert Xu7f7d9a62007-04-24 21:54:09 -07004104 break;
4105 case IFLA_INET6_ICMP6STATS:
Eric Dumazetbe281e52011-05-19 01:14:23 +00004106 __snmp6_fill_statsdev(stats, idev->stats.icmpv6dev->mibs, ICMP6_MIB_MAX, bytes);
Herbert Xu7f7d9a62007-04-24 21:54:09 -07004107 break;
4108 }
4109}
4110
Thomas Grafb382b192010-11-16 04:33:57 +00004111static int inet6_fill_ifla6_attrs(struct sk_buff *skb, struct inet6_dev *idev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004112{
YOSHIFUJI Hideakibf99f1b2007-04-20 15:56:20 -07004113 struct nlattr *nla;
Thomas Graf04561c12006-11-14 19:53:58 -08004114 struct ifla_cacheinfo ci;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004115
David S. Millerc78679e2012-04-01 20:27:33 -04004116 if (nla_put_u32(skb, IFLA_INET6_FLAGS, idev->if_flags))
4117 goto nla_put_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004118 ci.max_reasm_len = IPV6_MAXPLEN;
David S. Miller24912422010-11-19 13:13:47 -08004119 ci.tstamp = cstamp_delta(idev->tstamp);
4120 ci.reachable_time = jiffies_to_msecs(idev->nd_parms->reachable_time);
4121 ci.retrans_time = jiffies_to_msecs(idev->nd_parms->retrans_time);
David S. Millerc78679e2012-04-01 20:27:33 -04004122 if (nla_put(skb, IFLA_INET6_CACHEINFO, sizeof(ci), &ci))
4123 goto nla_put_failure;
YOSHIFUJI Hideakibf99f1b2007-04-20 15:56:20 -07004124 nla = nla_reserve(skb, IFLA_INET6_CONF, DEVCONF_MAX * sizeof(s32));
4125 if (nla == NULL)
Thomas Graf04561c12006-11-14 19:53:58 -08004126 goto nla_put_failure;
YOSHIFUJI Hideakibf99f1b2007-04-20 15:56:20 -07004127 ipv6_store_devconf(&idev->cnf, nla_data(nla), nla_len(nla));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004128
YOSHIFUJI Hideakibf99f1b2007-04-20 15:56:20 -07004129 /* XXX - MC not implemented */
4130
4131 nla = nla_reserve(skb, IFLA_INET6_STATS, IPSTATS_MIB_MAX * sizeof(u64));
4132 if (nla == NULL)
4133 goto nla_put_failure;
4134 snmp6_fill_stats(nla_data(nla), idev, IFLA_INET6_STATS, nla_len(nla));
4135
4136 nla = nla_reserve(skb, IFLA_INET6_ICMP6STATS, ICMP6_MIB_MAX * sizeof(u64));
4137 if (nla == NULL)
4138 goto nla_put_failure;
4139 snmp6_fill_stats(nla_data(nla), idev, IFLA_INET6_ICMP6STATS, nla_len(nla));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004140
Thomas Grafb382b192010-11-16 04:33:57 +00004141 return 0;
4142
4143nla_put_failure:
4144 return -EMSGSIZE;
4145}
4146
4147static size_t inet6_get_link_af_size(const struct net_device *dev)
4148{
4149 if (!__in6_dev_get(dev))
4150 return 0;
4151
4152 return inet6_ifla6_size();
4153}
4154
4155static int inet6_fill_link_af(struct sk_buff *skb, const struct net_device *dev)
4156{
4157 struct inet6_dev *idev = __in6_dev_get(dev);
4158
4159 if (!idev)
4160 return -ENODATA;
4161
4162 if (inet6_fill_ifla6_attrs(skb, idev) < 0)
4163 return -EMSGSIZE;
4164
4165 return 0;
4166}
4167
Thomas Grafb382b192010-11-16 04:33:57 +00004168static int inet6_fill_ifinfo(struct sk_buff *skb, struct inet6_dev *idev,
Eric W. Biederman15e47302012-09-07 20:12:54 +00004169 u32 portid, u32 seq, int event, unsigned int flags)
Thomas Grafb382b192010-11-16 04:33:57 +00004170{
4171 struct net_device *dev = idev->dev;
4172 struct ifinfomsg *hdr;
4173 struct nlmsghdr *nlh;
4174 void *protoinfo;
4175
Eric W. Biederman15e47302012-09-07 20:12:54 +00004176 nlh = nlmsg_put(skb, portid, seq, event, sizeof(*hdr), flags);
Thomas Grafb382b192010-11-16 04:33:57 +00004177 if (nlh == NULL)
4178 return -EMSGSIZE;
4179
4180 hdr = nlmsg_data(nlh);
4181 hdr->ifi_family = AF_INET6;
4182 hdr->__ifi_pad = 0;
4183 hdr->ifi_type = dev->type;
4184 hdr->ifi_index = dev->ifindex;
4185 hdr->ifi_flags = dev_get_flags(dev);
4186 hdr->ifi_change = 0;
4187
David S. Millerc78679e2012-04-01 20:27:33 -04004188 if (nla_put_string(skb, IFLA_IFNAME, dev->name) ||
4189 (dev->addr_len &&
4190 nla_put(skb, IFLA_ADDRESS, dev->addr_len, dev->dev_addr)) ||
4191 nla_put_u32(skb, IFLA_MTU, dev->mtu) ||
4192 (dev->ifindex != dev->iflink &&
4193 nla_put_u32(skb, IFLA_LINK, dev->iflink)))
4194 goto nla_put_failure;
Thomas Grafb382b192010-11-16 04:33:57 +00004195 protoinfo = nla_nest_start(skb, IFLA_PROTINFO);
4196 if (protoinfo == NULL)
4197 goto nla_put_failure;
4198
4199 if (inet6_fill_ifla6_attrs(skb, idev) < 0)
4200 goto nla_put_failure;
4201
Thomas Graf04561c12006-11-14 19:53:58 -08004202 nla_nest_end(skb, protoinfo);
4203 return nlmsg_end(skb, nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004204
Thomas Graf04561c12006-11-14 19:53:58 -08004205nla_put_failure:
Patrick McHardy26932562007-01-31 23:16:40 -08004206 nlmsg_cancel(skb, nlh);
4207 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004208}
4209
4210static int inet6_dump_ifinfo(struct sk_buff *skb, struct netlink_callback *cb)
4211{
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09004212 struct net *net = sock_net(skb->sk);
Eric Dumazet84d26972009-11-09 12:11:28 +00004213 int h, s_h;
David S. Miller434a8a582009-11-11 18:53:00 -08004214 int idx = 0, s_idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004215 struct net_device *dev;
4216 struct inet6_dev *idev;
Eric Dumazet84d26972009-11-09 12:11:28 +00004217 struct hlist_head *head;
4218 struct hlist_node *node;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004219
Eric Dumazet84d26972009-11-09 12:11:28 +00004220 s_h = cb->args[0];
4221 s_idx = cb->args[1];
4222
4223 rcu_read_lock();
4224 for (h = s_h; h < NETDEV_HASHENTRIES; h++, s_idx = 0) {
4225 idx = 0;
4226 head = &net->dev_index_head[h];
4227 hlist_for_each_entry_rcu(dev, node, head, index_hlist) {
4228 if (idx < s_idx)
4229 goto cont;
4230 idev = __in6_dev_get(dev);
4231 if (!idev)
4232 goto cont;
4233 if (inet6_fill_ifinfo(skb, idev,
Eric W. Biederman15e47302012-09-07 20:12:54 +00004234 NETLINK_CB(cb->skb).portid,
Eric Dumazet84d26972009-11-09 12:11:28 +00004235 cb->nlh->nlmsg_seq,
4236 RTM_NEWLINK, NLM_F_MULTI) <= 0)
4237 goto out;
Pavel Emelianov7562f872007-05-03 15:13:45 -07004238cont:
Eric Dumazet84d26972009-11-09 12:11:28 +00004239 idx++;
4240 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004241 }
Eric Dumazet84d26972009-11-09 12:11:28 +00004242out:
4243 rcu_read_unlock();
4244 cb->args[1] = idx;
4245 cb->args[0] = h;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004246
4247 return skb->len;
4248}
4249
4250void inet6_ifinfo_notify(int event, struct inet6_dev *idev)
4251{
4252 struct sk_buff *skb;
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09004253 struct net *net = dev_net(idev->dev);
Thomas Graf8d7a76c2006-08-15 00:35:47 -07004254 int err = -ENOBUFS;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09004255
Thomas Graf339bf982006-11-10 14:10:15 -08004256 skb = nlmsg_new(inet6_if_nlmsg_size(), GFP_ATOMIC);
Thomas Graf8d7a76c2006-08-15 00:35:47 -07004257 if (skb == NULL)
4258 goto errout;
4259
4260 err = inet6_fill_ifinfo(skb, idev, 0, 0, event, 0);
Patrick McHardy26932562007-01-31 23:16:40 -08004261 if (err < 0) {
4262 /* -EMSGSIZE implies BUG in inet6_if_nlmsg_size() */
4263 WARN_ON(err == -EMSGSIZE);
4264 kfree_skb(skb);
4265 goto errout;
4266 }
Nicolas Dichtel5f75a102010-12-07 23:38:31 +00004267 rtnl_notify(skb, net, 0, RTNLGRP_IPV6_IFINFO, NULL, GFP_ATOMIC);
Pablo Neira Ayuso1ce85fe2009-02-24 23:18:28 -08004268 return;
Thomas Graf8d7a76c2006-08-15 00:35:47 -07004269errout:
4270 if (err < 0)
Nicolas Dichtel5f75a102010-12-07 23:38:31 +00004271 rtnl_set_sk_err(net, RTNLGRP_IPV6_IFINFO, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004272}
4273
Thomas Graf339bf982006-11-10 14:10:15 -08004274static inline size_t inet6_prefix_nlmsg_size(void)
4275{
4276 return NLMSG_ALIGN(sizeof(struct prefixmsg))
4277 + nla_total_size(sizeof(struct in6_addr))
4278 + nla_total_size(sizeof(struct prefix_cacheinfo));
4279}
YOSHIFUJI Hideakic5396a32006-06-17 22:48:48 -07004280
Linus Torvalds1da177e2005-04-16 15:20:36 -07004281static int inet6_fill_prefix(struct sk_buff *skb, struct inet6_dev *idev,
Eric W. Biederman15e47302012-09-07 20:12:54 +00004282 struct prefix_info *pinfo, u32 portid, u32 seq,
Thomas Graf6051e2f2006-11-14 19:54:19 -08004283 int event, unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004284{
Thomas Graf6051e2f2006-11-14 19:54:19 -08004285 struct prefixmsg *pmsg;
4286 struct nlmsghdr *nlh;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004287 struct prefix_cacheinfo ci;
4288
Eric W. Biederman15e47302012-09-07 20:12:54 +00004289 nlh = nlmsg_put(skb, portid, seq, event, sizeof(*pmsg), flags);
Thomas Graf6051e2f2006-11-14 19:54:19 -08004290 if (nlh == NULL)
Patrick McHardy26932562007-01-31 23:16:40 -08004291 return -EMSGSIZE;
Thomas Graf6051e2f2006-11-14 19:54:19 -08004292
4293 pmsg = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004294 pmsg->prefix_family = AF_INET6;
Patrick McHardy8a470772005-06-28 12:56:45 -07004295 pmsg->prefix_pad1 = 0;
4296 pmsg->prefix_pad2 = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004297 pmsg->prefix_ifindex = idev->dev->ifindex;
4298 pmsg->prefix_len = pinfo->prefix_len;
4299 pmsg->prefix_type = pinfo->type;
Patrick McHardy8a470772005-06-28 12:56:45 -07004300 pmsg->prefix_pad3 = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004301 pmsg->prefix_flags = 0;
4302 if (pinfo->onlink)
4303 pmsg->prefix_flags |= IF_PREFIX_ONLINK;
4304 if (pinfo->autoconf)
4305 pmsg->prefix_flags |= IF_PREFIX_AUTOCONF;
4306
David S. Millerc78679e2012-04-01 20:27:33 -04004307 if (nla_put(skb, PREFIX_ADDRESS, sizeof(pinfo->prefix), &pinfo->prefix))
4308 goto nla_put_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004309 ci.preferred_time = ntohl(pinfo->prefered);
4310 ci.valid_time = ntohl(pinfo->valid);
David S. Millerc78679e2012-04-01 20:27:33 -04004311 if (nla_put(skb, PREFIX_CACHEINFO, sizeof(ci), &ci))
4312 goto nla_put_failure;
Thomas Graf6051e2f2006-11-14 19:54:19 -08004313 return nlmsg_end(skb, nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004314
Thomas Graf6051e2f2006-11-14 19:54:19 -08004315nla_put_failure:
Patrick McHardy26932562007-01-31 23:16:40 -08004316 nlmsg_cancel(skb, nlh);
4317 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004318}
4319
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09004320static void inet6_prefix_notify(int event, struct inet6_dev *idev,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004321 struct prefix_info *pinfo)
4322{
4323 struct sk_buff *skb;
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09004324 struct net *net = dev_net(idev->dev);
Thomas Graf8c384bfa2006-08-15 00:36:07 -07004325 int err = -ENOBUFS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004326
Thomas Graf339bf982006-11-10 14:10:15 -08004327 skb = nlmsg_new(inet6_prefix_nlmsg_size(), GFP_ATOMIC);
Thomas Graf8c384bfa2006-08-15 00:36:07 -07004328 if (skb == NULL)
4329 goto errout;
4330
4331 err = inet6_fill_prefix(skb, idev, pinfo, 0, 0, event, 0);
Patrick McHardy26932562007-01-31 23:16:40 -08004332 if (err < 0) {
4333 /* -EMSGSIZE implies BUG in inet6_prefix_nlmsg_size() */
4334 WARN_ON(err == -EMSGSIZE);
4335 kfree_skb(skb);
4336 goto errout;
4337 }
Pablo Neira Ayuso1ce85fe2009-02-24 23:18:28 -08004338 rtnl_notify(skb, net, 0, RTNLGRP_IPV6_PREFIX, NULL, GFP_ATOMIC);
4339 return;
Thomas Graf8c384bfa2006-08-15 00:36:07 -07004340errout:
4341 if (err < 0)
Benjamin Thery6fda7352008-03-05 10:47:47 -08004342 rtnl_set_sk_err(net, RTNLGRP_IPV6_PREFIX, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004343}
4344
Linus Torvalds1da177e2005-04-16 15:20:36 -07004345static void __ipv6_ifa_notify(int event, struct inet6_ifaddr *ifp)
4346{
4347 inet6_ifa_notify(event ? : RTM_NEWADDR, ifp);
4348
4349 switch (event) {
4350 case RTM_NEWADDR:
Neil Horman95c385b2007-04-25 17:08:10 -07004351 /*
4352 * If the address was optimistic
4353 * we inserted the route at the start of
4354 * our DAD process, so we don't need
4355 * to do it again
4356 */
4357 if (!(ifp->rt->rt6i_node))
4358 ip6_ins_rt(ifp->rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004359 if (ifp->idev->cnf.forwarding)
4360 addrconf_join_anycast(ifp);
4361 break;
4362 case RTM_DELADDR:
4363 if (ifp->idev->cnf.forwarding)
4364 addrconf_leave_anycast(ifp);
4365 addrconf_leave_solict(ifp->idev, &ifp->addr);
Changli Gaod8d1f302010-06-10 23:31:35 -07004366 dst_hold(&ifp->rt->dst);
stephen hemminger93fa1592010-04-12 05:41:31 +00004367
David S. Miller73a8bd72011-01-23 23:27:15 -08004368 if (ip6_del_rt(ifp->rt))
Changli Gaod8d1f302010-06-10 23:31:35 -07004369 dst_free(&ifp->rt->dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004370 break;
4371 }
4372}
4373
4374static void ipv6_ifa_notify(int event, struct inet6_ifaddr *ifp)
4375{
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -07004376 rcu_read_lock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004377 if (likely(ifp->idev->dead == 0))
4378 __ipv6_ifa_notify(event, ifp);
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -07004379 rcu_read_unlock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004380}
4381
4382#ifdef CONFIG_SYSCTL
4383
4384static
Alexey Dobriyan8d65af72009-09-23 15:57:19 -07004385int addrconf_sysctl_forward(ctl_table *ctl, int write,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004386 void __user *buffer, size_t *lenp, loff_t *ppos)
4387{
4388 int *valp = ctl->data;
4389 int val = *valp;
Eric W. Biederman88af1822010-02-19 13:22:59 +00004390 loff_t pos = *ppos;
Francesco Ruggeri013d97e2012-01-16 10:40:10 +00004391 ctl_table lctl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004392 int ret;
4393
Francesco Ruggeri013d97e2012-01-16 10:40:10 +00004394 /*
4395 * ctl->data points to idev->cnf.forwarding, we should
4396 * not modify it until we get the rtnl lock.
4397 */
4398 lctl = *ctl;
4399 lctl.data = &val;
4400
4401 ret = proc_dointvec(&lctl, write, buffer, lenp, ppos);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004402
Pavel Emelyanovc8fecf22007-12-05 01:50:24 -08004403 if (write)
Stephen Hemmingerb325fdd2009-02-26 06:55:31 +00004404 ret = addrconf_fixup_forwarding(ctl, valp, val);
Eric W. Biederman88af1822010-02-19 13:22:59 +00004405 if (ret)
4406 *ppos = pos;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09004407 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004408}
4409
Brian Haley56d417b2009-06-01 03:07:33 -07004410static void dev_disable_change(struct inet6_dev *idev)
4411{
4412 if (!idev || !idev->dev)
4413 return;
4414
4415 if (idev->cnf.disable_ipv6)
4416 addrconf_notify(NULL, NETDEV_DOWN, idev->dev);
4417 else
4418 addrconf_notify(NULL, NETDEV_UP, idev->dev);
4419}
4420
4421static void addrconf_disable_change(struct net *net, __s32 newf)
4422{
4423 struct net_device *dev;
4424 struct inet6_dev *idev;
4425
Eric Dumazetc6d14c82009-11-04 05:43:23 -08004426 rcu_read_lock();
4427 for_each_netdev_rcu(net, dev) {
Brian Haley56d417b2009-06-01 03:07:33 -07004428 idev = __in6_dev_get(dev);
4429 if (idev) {
4430 int changed = (!idev->cnf.disable_ipv6) ^ (!newf);
4431 idev->cnf.disable_ipv6 = newf;
4432 if (changed)
4433 dev_disable_change(idev);
4434 }
Brian Haley56d417b2009-06-01 03:07:33 -07004435 }
Eric Dumazetc6d14c82009-11-04 05:43:23 -08004436 rcu_read_unlock();
Brian Haley56d417b2009-06-01 03:07:33 -07004437}
4438
Francesco Ruggeri013d97e2012-01-16 10:40:10 +00004439static int addrconf_disable_ipv6(struct ctl_table *table, int *p, int newf)
Brian Haley56d417b2009-06-01 03:07:33 -07004440{
4441 struct net *net;
Francesco Ruggeri013d97e2012-01-16 10:40:10 +00004442 int old;
4443
4444 if (!rtnl_trylock())
4445 return restart_syscall();
Brian Haley56d417b2009-06-01 03:07:33 -07004446
4447 net = (struct net *)table->extra2;
Francesco Ruggeri013d97e2012-01-16 10:40:10 +00004448 old = *p;
4449 *p = newf;
Brian Haley56d417b2009-06-01 03:07:33 -07004450
Francesco Ruggeri013d97e2012-01-16 10:40:10 +00004451 if (p == &net->ipv6.devconf_dflt->disable_ipv6) {
4452 rtnl_unlock();
Brian Haley56d417b2009-06-01 03:07:33 -07004453 return 0;
Eric W. Biederman88af1822010-02-19 13:22:59 +00004454 }
Brian Haley56d417b2009-06-01 03:07:33 -07004455
4456 if (p == &net->ipv6.devconf_all->disable_ipv6) {
Brian Haley56d417b2009-06-01 03:07:33 -07004457 net->ipv6.devconf_dflt->disable_ipv6 = newf;
4458 addrconf_disable_change(net, newf);
Francesco Ruggeri013d97e2012-01-16 10:40:10 +00004459 } else if ((!newf) ^ (!old))
Brian Haley56d417b2009-06-01 03:07:33 -07004460 dev_disable_change((struct inet6_dev *)table->extra1);
4461
4462 rtnl_unlock();
4463 return 0;
4464}
4465
4466static
Alexey Dobriyan8d65af72009-09-23 15:57:19 -07004467int addrconf_sysctl_disable(ctl_table *ctl, int write,
Brian Haley56d417b2009-06-01 03:07:33 -07004468 void __user *buffer, size_t *lenp, loff_t *ppos)
4469{
4470 int *valp = ctl->data;
4471 int val = *valp;
Eric W. Biederman88af1822010-02-19 13:22:59 +00004472 loff_t pos = *ppos;
Francesco Ruggeri013d97e2012-01-16 10:40:10 +00004473 ctl_table lctl;
Brian Haley56d417b2009-06-01 03:07:33 -07004474 int ret;
4475
Francesco Ruggeri013d97e2012-01-16 10:40:10 +00004476 /*
4477 * ctl->data points to idev->cnf.disable_ipv6, we should
4478 * not modify it until we get the rtnl lock.
4479 */
4480 lctl = *ctl;
4481 lctl.data = &val;
4482
4483 ret = proc_dointvec(&lctl, write, buffer, lenp, ppos);
Brian Haley56d417b2009-06-01 03:07:33 -07004484
4485 if (write)
4486 ret = addrconf_disable_ipv6(ctl, valp, val);
Eric W. Biederman88af1822010-02-19 13:22:59 +00004487 if (ret)
4488 *ppos = pos;
Brian Haley56d417b2009-06-01 03:07:33 -07004489 return ret;
4490}
4491
Linus Torvalds1da177e2005-04-16 15:20:36 -07004492static struct addrconf_sysctl_table
4493{
4494 struct ctl_table_header *sysctl_header;
YOSHIFUJI Hideakif6a07b22008-03-25 00:25:11 +09004495 ctl_table addrconf_vars[DEVCONF_MAX+1];
Brian Haleyab32ea52006-09-22 14:15:41 -07004496} addrconf_sysctl __read_mostly = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004497 .sysctl_header = NULL,
4498 .addrconf_vars = {
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09004499 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004500 .procname = "forwarding",
4501 .data = &ipv6_devconf.forwarding,
4502 .maxlen = sizeof(int),
4503 .mode = 0644,
4504 .proc_handler = addrconf_sysctl_forward,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004505 },
4506 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004507 .procname = "hop_limit",
4508 .data = &ipv6_devconf.hop_limit,
4509 .maxlen = sizeof(int),
4510 .mode = 0644,
4511 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004512 },
4513 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004514 .procname = "mtu",
4515 .data = &ipv6_devconf.mtu6,
4516 .maxlen = sizeof(int),
4517 .mode = 0644,
4518 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004519 },
4520 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004521 .procname = "accept_ra",
4522 .data = &ipv6_devconf.accept_ra,
4523 .maxlen = sizeof(int),
4524 .mode = 0644,
4525 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004526 },
4527 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004528 .procname = "accept_redirects",
4529 .data = &ipv6_devconf.accept_redirects,
4530 .maxlen = sizeof(int),
4531 .mode = 0644,
4532 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004533 },
4534 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004535 .procname = "autoconf",
4536 .data = &ipv6_devconf.autoconf,
4537 .maxlen = sizeof(int),
4538 .mode = 0644,
4539 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004540 },
4541 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004542 .procname = "dad_transmits",
4543 .data = &ipv6_devconf.dad_transmits,
4544 .maxlen = sizeof(int),
4545 .mode = 0644,
4546 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004547 },
4548 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004549 .procname = "router_solicitations",
4550 .data = &ipv6_devconf.rtr_solicits,
4551 .maxlen = sizeof(int),
4552 .mode = 0644,
4553 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004554 },
4555 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004556 .procname = "router_solicitation_interval",
4557 .data = &ipv6_devconf.rtr_solicit_interval,
4558 .maxlen = sizeof(int),
4559 .mode = 0644,
4560 .proc_handler = proc_dointvec_jiffies,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004561 },
4562 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004563 .procname = "router_solicitation_delay",
4564 .data = &ipv6_devconf.rtr_solicit_delay,
4565 .maxlen = sizeof(int),
4566 .mode = 0644,
4567 .proc_handler = proc_dointvec_jiffies,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004568 },
4569 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004570 .procname = "force_mld_version",
4571 .data = &ipv6_devconf.force_mld_version,
4572 .maxlen = sizeof(int),
4573 .mode = 0644,
4574 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004575 },
4576#ifdef CONFIG_IPV6_PRIVACY
4577 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004578 .procname = "use_tempaddr",
4579 .data = &ipv6_devconf.use_tempaddr,
4580 .maxlen = sizeof(int),
4581 .mode = 0644,
4582 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004583 },
4584 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004585 .procname = "temp_valid_lft",
4586 .data = &ipv6_devconf.temp_valid_lft,
4587 .maxlen = sizeof(int),
4588 .mode = 0644,
4589 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004590 },
4591 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004592 .procname = "temp_prefered_lft",
4593 .data = &ipv6_devconf.temp_prefered_lft,
4594 .maxlen = sizeof(int),
4595 .mode = 0644,
4596 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004597 },
4598 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004599 .procname = "regen_max_retry",
4600 .data = &ipv6_devconf.regen_max_retry,
4601 .maxlen = sizeof(int),
4602 .mode = 0644,
4603 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004604 },
4605 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004606 .procname = "max_desync_factor",
4607 .data = &ipv6_devconf.max_desync_factor,
4608 .maxlen = sizeof(int),
4609 .mode = 0644,
4610 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004611 },
4612#endif
4613 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004614 .procname = "max_addresses",
4615 .data = &ipv6_devconf.max_addresses,
4616 .maxlen = sizeof(int),
4617 .mode = 0644,
4618 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004619 },
4620 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004621 .procname = "accept_ra_defrtr",
4622 .data = &ipv6_devconf.accept_ra_defrtr,
4623 .maxlen = sizeof(int),
4624 .mode = 0644,
4625 .proc_handler = proc_dointvec,
YOSHIFUJI Hideaki65f5c7c2006-03-20 16:55:08 -08004626 },
4627 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004628 .procname = "accept_ra_pinfo",
4629 .data = &ipv6_devconf.accept_ra_pinfo,
4630 .maxlen = sizeof(int),
4631 .mode = 0644,
4632 .proc_handler = proc_dointvec,
YOSHIFUJI Hideakic4fd30e2006-03-20 16:55:26 -08004633 },
YOSHIFUJI Hideaki930d6ff2006-03-20 17:05:30 -08004634#ifdef CONFIG_IPV6_ROUTER_PREF
4635 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004636 .procname = "accept_ra_rtr_pref",
4637 .data = &ipv6_devconf.accept_ra_rtr_pref,
4638 .maxlen = sizeof(int),
4639 .mode = 0644,
4640 .proc_handler = proc_dointvec,
YOSHIFUJI Hideaki930d6ff2006-03-20 17:05:30 -08004641 },
YOSHIFUJI Hideaki52e16352006-03-20 17:05:47 -08004642 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004643 .procname = "router_probe_interval",
4644 .data = &ipv6_devconf.rtr_probe_interval,
4645 .maxlen = sizeof(int),
4646 .mode = 0644,
4647 .proc_handler = proc_dointvec_jiffies,
YOSHIFUJI Hideaki52e16352006-03-20 17:05:47 -08004648 },
Neil Hormanfa03ef32007-01-30 14:30:10 -08004649#ifdef CONFIG_IPV6_ROUTE_INFO
YOSHIFUJI Hideaki09c884d2006-03-20 17:07:03 -08004650 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004651 .procname = "accept_ra_rt_info_max_plen",
4652 .data = &ipv6_devconf.accept_ra_rt_info_max_plen,
4653 .maxlen = sizeof(int),
4654 .mode = 0644,
4655 .proc_handler = proc_dointvec,
YOSHIFUJI Hideaki09c884d2006-03-20 17:07:03 -08004656 },
4657#endif
YOSHIFUJI Hideaki930d6ff2006-03-20 17:05:30 -08004658#endif
YOSHIFUJI Hideakic4fd30e2006-03-20 16:55:26 -08004659 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004660 .procname = "proxy_ndp",
4661 .data = &ipv6_devconf.proxy_ndp,
4662 .maxlen = sizeof(int),
4663 .mode = 0644,
4664 .proc_handler = proc_dointvec,
YOSHIFUJI Hideakifbea49e2006-09-22 14:43:49 -07004665 },
4666 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004667 .procname = "accept_source_route",
4668 .data = &ipv6_devconf.accept_source_route,
4669 .maxlen = sizeof(int),
4670 .mode = 0644,
4671 .proc_handler = proc_dointvec,
YOSHIFUJI Hideaki0bcbc922007-04-24 14:58:30 -07004672 },
Neil Horman95c385b2007-04-25 17:08:10 -07004673#ifdef CONFIG_IPV6_OPTIMISTIC_DAD
4674 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004675 .procname = "optimistic_dad",
4676 .data = &ipv6_devconf.optimistic_dad,
4677 .maxlen = sizeof(int),
4678 .mode = 0644,
4679 .proc_handler = proc_dointvec,
Neil Horman95c385b2007-04-25 17:08:10 -07004680
4681 },
4682#endif
YOSHIFUJI Hideaki7bc570c2008-04-03 09:22:53 +09004683#ifdef CONFIG_IPV6_MROUTE
4684 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004685 .procname = "mc_forwarding",
4686 .data = &ipv6_devconf.mc_forwarding,
4687 .maxlen = sizeof(int),
4688 .mode = 0444,
4689 .proc_handler = proc_dointvec,
YOSHIFUJI Hideaki7bc570c2008-04-03 09:22:53 +09004690 },
4691#endif
YOSHIFUJI Hideaki0bcbc922007-04-24 14:58:30 -07004692 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004693 .procname = "disable_ipv6",
4694 .data = &ipv6_devconf.disable_ipv6,
4695 .maxlen = sizeof(int),
4696 .mode = 0644,
4697 .proc_handler = addrconf_sysctl_disable,
YOSHIFUJI Hideaki778d80b2008-06-28 14:17:11 +09004698 },
4699 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004700 .procname = "accept_dad",
4701 .data = &ipv6_devconf.accept_dad,
4702 .maxlen = sizeof(int),
4703 .mode = 0644,
4704 .proc_handler = proc_dointvec,
YOSHIFUJI Hideaki1b34be72008-06-28 14:18:38 +09004705 },
4706 {
Octavian Purdilaf7734fd2009-10-02 11:39:15 +00004707 .procname = "force_tllao",
4708 .data = &ipv6_devconf.force_tllao,
4709 .maxlen = sizeof(int),
4710 .mode = 0644,
4711 .proc_handler = proc_dointvec
4712 },
4713 {
Hannes Frederic Sowa5cb04432012-11-06 16:46:20 +00004714 .procname = "ndisc_notify",
4715 .data = &ipv6_devconf.ndisc_notify,
4716 .maxlen = sizeof(int),
4717 .mode = 0644,
4718 .proc_handler = proc_dointvec
4719 },
4720 {
Eric W. Biedermanf8572d82009-11-05 13:32:03 -08004721 /* sentinel */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004722 }
4723 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07004724};
4725
Pavel Emelyanovbff16c22008-01-10 17:42:13 -08004726static int __addrconf_sysctl_register(struct net *net, char *dev_name,
Eric W. Biedermanf8572d82009-11-05 13:32:03 -08004727 struct inet6_dev *idev, struct ipv6_devconf *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004728{
4729 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004730 struct addrconf_sysctl_table *t;
Eric W. Biederman6105e292012-04-19 13:41:24 +00004731 char path[sizeof("net/ipv6/conf/") + IFNAMSIZ];
Pavel Emelyanov1dab6222007-12-02 00:59:38 +11004732
Arnaldo Carvalho de Meloaf879cc2006-11-17 12:14:37 -02004733 t = kmemdup(&addrconf_sysctl, sizeof(*t), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004734 if (t == NULL)
Pavel Emelyanovf68635e2007-12-02 00:21:52 +11004735 goto out;
4736
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07004737 for (i = 0; t->addrconf_vars[i].data; i++) {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004738 t->addrconf_vars[i].data += (char *)p - (char *)&ipv6_devconf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004739 t->addrconf_vars[i].extra1 = idev; /* embedded; no ref */
Pavel Emelyanovbff16c22008-01-10 17:42:13 -08004740 t->addrconf_vars[i].extra2 = net;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004741 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004742
Eric W. Biederman6105e292012-04-19 13:41:24 +00004743 snprintf(path, sizeof(path), "net/ipv6/conf/%s", dev_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004744
Eric W. Biederman6105e292012-04-19 13:41:24 +00004745 t->sysctl_header = register_net_sysctl(net, path, t->addrconf_vars);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004746 if (t->sysctl_header == NULL)
Eric W. Biederman6105e292012-04-19 13:41:24 +00004747 goto free;
Pavel Emelyanovf68635e2007-12-02 00:21:52 +11004748
4749 p->sysctl = t;
Pavel Emelyanov95897312008-01-10 17:41:45 -08004750 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004751
Pavel Emelyanovf68635e2007-12-02 00:21:52 +11004752free:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004753 kfree(t);
Pavel Emelyanovf68635e2007-12-02 00:21:52 +11004754out:
Pavel Emelyanov95897312008-01-10 17:41:45 -08004755 return -ENOBUFS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004756}
4757
Pavel Emelyanov408c4762008-01-10 17:41:21 -08004758static void __addrconf_sysctl_unregister(struct ipv6_devconf *p)
4759{
4760 struct addrconf_sysctl_table *t;
4761
4762 if (p->sysctl == NULL)
4763 return;
4764
4765 t = p->sysctl;
4766 p->sysctl = NULL;
Lucian Adrian Grijincuff538812011-05-01 01:44:01 +00004767 unregister_net_sysctl_table(t->sysctl_header);
Pavel Emelyanov408c4762008-01-10 17:41:21 -08004768 kfree(t);
4769}
4770
Pavel Emelyanovf52295a2007-12-02 00:58:37 +11004771static void addrconf_sysctl_register(struct inet6_dev *idev)
4772{
Eric W. Biederman54716e32010-02-14 03:27:03 +00004773 neigh_sysctl_register(idev->dev, idev->nd_parms, "ipv6",
Eric W. Biedermanf8572d82009-11-05 13:32:03 -08004774 &ndisc_ifinfo_sysctl_change);
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09004775 __addrconf_sysctl_register(dev_net(idev->dev), idev->dev->name,
Eric W. Biedermanf8572d82009-11-05 13:32:03 -08004776 idev, &idev->cnf);
Pavel Emelyanovf52295a2007-12-02 00:58:37 +11004777}
4778
Pavel Emelyanov408c4762008-01-10 17:41:21 -08004779static void addrconf_sysctl_unregister(struct inet6_dev *idev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004780{
Pavel Emelyanov408c4762008-01-10 17:41:21 -08004781 __addrconf_sysctl_unregister(&idev->cnf);
4782 neigh_sysctl_unregister(idev->nd_parms);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004783}
4784
4785
4786#endif
4787
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00004788static int __net_init addrconf_init_net(struct net *net)
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08004789{
4790 int err;
4791 struct ipv6_devconf *all, *dflt;
4792
4793 err = -ENOMEM;
4794 all = &ipv6_devconf;
4795 dflt = &ipv6_devconf_dflt;
4796
Octavian Purdila09ad9bc2009-11-25 15:14:13 -08004797 if (!net_eq(net, &init_net)) {
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08004798 all = kmemdup(all, sizeof(ipv6_devconf), GFP_KERNEL);
4799 if (all == NULL)
4800 goto err_alloc_all;
4801
4802 dflt = kmemdup(dflt, sizeof(ipv6_devconf_dflt), GFP_KERNEL);
4803 if (dflt == NULL)
4804 goto err_alloc_dflt;
Brian Haley56d417b2009-06-01 03:07:33 -07004805 } else {
4806 /* these will be inherited by all namespaces */
4807 dflt->autoconf = ipv6_defaults.autoconf;
4808 dflt->disable_ipv6 = ipv6_defaults.disable_ipv6;
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08004809 }
4810
4811 net->ipv6.devconf_all = all;
4812 net->ipv6.devconf_dflt = dflt;
4813
4814#ifdef CONFIG_SYSCTL
Eric W. Biedermanf8572d82009-11-05 13:32:03 -08004815 err = __addrconf_sysctl_register(net, "all", NULL, all);
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08004816 if (err < 0)
4817 goto err_reg_all;
4818
Eric W. Biedermanf8572d82009-11-05 13:32:03 -08004819 err = __addrconf_sysctl_register(net, "default", NULL, dflt);
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08004820 if (err < 0)
4821 goto err_reg_dflt;
4822#endif
4823 return 0;
4824
4825#ifdef CONFIG_SYSCTL
4826err_reg_dflt:
4827 __addrconf_sysctl_unregister(all);
4828err_reg_all:
4829 kfree(dflt);
4830#endif
4831err_alloc_dflt:
4832 kfree(all);
4833err_alloc_all:
4834 return err;
4835}
4836
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00004837static void __net_exit addrconf_exit_net(struct net *net)
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08004838{
4839#ifdef CONFIG_SYSCTL
4840 __addrconf_sysctl_unregister(net->ipv6.devconf_dflt);
4841 __addrconf_sysctl_unregister(net->ipv6.devconf_all);
4842#endif
Octavian Purdila09ad9bc2009-11-25 15:14:13 -08004843 if (!net_eq(net, &init_net)) {
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08004844 kfree(net->ipv6.devconf_dflt);
4845 kfree(net->ipv6.devconf_all);
4846 }
4847}
4848
4849static struct pernet_operations addrconf_ops = {
4850 .init = addrconf_init_net,
4851 .exit = addrconf_exit_net,
4852};
4853
Linus Torvalds1da177e2005-04-16 15:20:36 -07004854/*
4855 * Device notifier
4856 */
4857
4858int register_inet6addr_notifier(struct notifier_block *nb)
4859{
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09004860 return atomic_notifier_chain_register(&inet6addr_chain, nb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004861}
YOSHIFUJI Hideaki71590392007-02-22 22:05:40 +09004862EXPORT_SYMBOL(register_inet6addr_notifier);
4863
Linus Torvalds1da177e2005-04-16 15:20:36 -07004864int unregister_inet6addr_notifier(struct notifier_block *nb)
4865{
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004866 return atomic_notifier_chain_unregister(&inet6addr_chain, nb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004867}
YOSHIFUJI Hideaki71590392007-02-22 22:05:40 +09004868EXPORT_SYMBOL(unregister_inet6addr_notifier);
4869
Thomas Grafb382b192010-11-16 04:33:57 +00004870static struct rtnl_af_ops inet6_ops = {
4871 .family = AF_INET6,
4872 .fill_link_af = inet6_fill_link_af,
4873 .get_link_af_size = inet6_get_link_af_size,
Thomas Grafb382b192010-11-16 04:33:57 +00004874};
4875
Linus Torvalds1da177e2005-04-16 15:20:36 -07004876/*
4877 * Init / cleanup code
4878 */
4879
4880int __init addrconf_init(void)
4881{
stephen hemmingerc2e21292010-03-17 20:31:10 +00004882 int i, err;
YOSHIFUJI Hideaki2a8cc6c2007-11-14 15:56:23 +09004883
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004884 err = ipv6_addr_label_init();
4885 if (err < 0) {
Joe Perchesf3213832012-05-15 14:11:53 +00004886 pr_crit("%s: cannot initialize default policy table: %d\n",
4887 __func__, err);
Neil Horman2cc6d2b2010-09-24 09:55:52 +00004888 goto out;
YOSHIFUJI Hideaki2a8cc6c2007-11-14 15:56:23 +09004889 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004890
Neil Horman2cc6d2b2010-09-24 09:55:52 +00004891 err = register_pernet_subsys(&addrconf_ops);
4892 if (err < 0)
4893 goto out_addrlabel;
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08004894
Linus Torvalds1da177e2005-04-16 15:20:36 -07004895 /* The addrconf netdev notifier requires that loopback_dev
4896 * has it's ipv6 private information allocated and setup
4897 * before it can bring up and give link-local addresses
4898 * to other devices which are up.
4899 *
4900 * Unfortunately, loopback_dev is not necessarily the first
4901 * entry in the global dev_base list of net devices. In fact,
4902 * it is likely to be the very last entry on that list.
4903 * So this causes the notifier registry below to try and
4904 * give link-local addresses to all devices besides loopback_dev
4905 * first, then loopback_dev, which cases all the non-loopback_dev
4906 * devices to fail to get a link-local address.
4907 *
4908 * So, as a temporary fix, allocate the ipv6 structure for
4909 * loopback_dev first by hand.
4910 * Longer term, all of the dependencies ipv6 has upon the loopback
4911 * device and it being up should be removed.
4912 */
4913 rtnl_lock();
Eric W. Biederman2774c7a2007-09-26 22:10:56 -07004914 if (!ipv6_add_dev(init_net.loopback_dev))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004915 err = -ENOMEM;
4916 rtnl_unlock();
4917 if (err)
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08004918 goto errlo;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004919
stephen hemmingerc2e21292010-03-17 20:31:10 +00004920 for (i = 0; i < IN6_ADDR_HSIZE; i++)
4921 INIT_HLIST_HEAD(&inet6_addr_lst[i]);
4922
Linus Torvalds1da177e2005-04-16 15:20:36 -07004923 register_netdevice_notifier(&ipv6_dev_notf);
4924
Linus Torvalds1da177e2005-04-16 15:20:36 -07004925 addrconf_verify(0);
Thomas Grafc127ea22007-03-22 11:58:32 -07004926
Thomas Grafb382b192010-11-16 04:33:57 +00004927 err = rtnl_af_register(&inet6_ops);
4928 if (err < 0)
4929 goto errout_af;
4930
Greg Rosec7ac8672011-06-10 01:27:09 +00004931 err = __rtnl_register(PF_INET6, RTM_GETLINK, NULL, inet6_dump_ifinfo,
4932 NULL);
Thomas Grafc127ea22007-03-22 11:58:32 -07004933 if (err < 0)
4934 goto errout;
4935
4936 /* Only the first call to __rtnl_register can fail */
Greg Rosec7ac8672011-06-10 01:27:09 +00004937 __rtnl_register(PF_INET6, RTM_NEWADDR, inet6_rtm_newaddr, NULL, NULL);
4938 __rtnl_register(PF_INET6, RTM_DELADDR, inet6_rtm_deladdr, NULL, NULL);
4939 __rtnl_register(PF_INET6, RTM_GETADDR, inet6_rtm_getaddr,
4940 inet6_dump_ifaddr, NULL);
4941 __rtnl_register(PF_INET6, RTM_GETMULTICAST, NULL,
4942 inet6_dump_ifmcaddr, NULL);
4943 __rtnl_register(PF_INET6, RTM_GETANYCAST, NULL,
4944 inet6_dump_ifacaddr, NULL);
Nicolas Dichtel76f8f6c2012-10-25 22:28:51 +00004945 __rtnl_register(PF_INET6, RTM_GETNETCONF, inet6_netconf_get_devconf,
4946 NULL, NULL);
Thomas Grafc127ea22007-03-22 11:58:32 -07004947
YOSHIFUJI Hideaki2a8cc6c2007-11-14 15:56:23 +09004948 ipv6_addr_label_rtnl_register();
4949
Linus Torvalds1da177e2005-04-16 15:20:36 -07004950 return 0;
Thomas Grafc127ea22007-03-22 11:58:32 -07004951errout:
Thomas Grafb382b192010-11-16 04:33:57 +00004952 rtnl_af_unregister(&inet6_ops);
4953errout_af:
Thomas Grafc127ea22007-03-22 11:58:32 -07004954 unregister_netdevice_notifier(&ipv6_dev_notf);
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08004955errlo:
4956 unregister_pernet_subsys(&addrconf_ops);
Neil Horman2cc6d2b2010-09-24 09:55:52 +00004957out_addrlabel:
4958 ipv6_addr_label_cleanup();
4959out:
Thomas Grafc127ea22007-03-22 11:58:32 -07004960 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004961}
4962
Daniel Lezcano09f77092007-12-13 05:34:58 -08004963void addrconf_cleanup(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004964{
Daniel Lezcano176c39a2009-03-03 01:06:45 -08004965 struct net_device *dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004966 int i;
4967
4968 unregister_netdevice_notifier(&ipv6_dev_notf);
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08004969 unregister_pernet_subsys(&addrconf_ops);
Neil Horman2cc6d2b2010-09-24 09:55:52 +00004970 ipv6_addr_label_cleanup();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004971
4972 rtnl_lock();
4973
Thomas Grafb382b192010-11-16 04:33:57 +00004974 __rtnl_af_unregister(&inet6_ops);
4975
Daniel Lezcano176c39a2009-03-03 01:06:45 -08004976 /* clean dev list */
4977 for_each_netdev(&init_net, dev) {
4978 if (__in6_dev_get(dev) == NULL)
4979 continue;
4980 addrconf_ifdown(dev, 1);
4981 }
4982 addrconf_ifdown(init_net.loopback_dev, 2);
4983
Linus Torvalds1da177e2005-04-16 15:20:36 -07004984 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004985 * Check hash table.
4986 */
stephen hemminger5c578ae2010-03-17 20:31:11 +00004987 spin_lock_bh(&addrconf_hash_lock);
stephen hemmingerc2e21292010-03-17 20:31:10 +00004988 for (i = 0; i < IN6_ADDR_HSIZE; i++)
4989 WARN_ON(!hlist_empty(&inet6_addr_lst[i]));
stephen hemminger5c578ae2010-03-17 20:31:11 +00004990 spin_unlock_bh(&addrconf_hash_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004991
4992 del_timer(&addr_chk_timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004993 rtnl_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004994}