blob: 2d6d1793bbfed73fc001ccfbff9485601ea527d7 [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>
YOSHIFUJI Hideaki / 吉藤英明cb6bf352013-03-25 08:26:24 +000073#include <net/firewire.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070074#include <net/ipv6.h>
75#include <net/protocol.h>
76#include <net/ndisc.h>
77#include <net/ip6_route.h>
78#include <net/addrconf.h>
79#include <net/tcp.h>
80#include <net/ip.h>
Thomas Graf5d620262006-08-15 00:35:02 -070081#include <net/netlink.h>
Mitsuru Chinenf24e3d62007-10-10 02:53:43 -070082#include <net/pkt_sched.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070083#include <linux/if_tunnel.h>
84#include <linux/rtnetlink.h>
Nicolas Dichtelf3a1bfb2012-10-25 22:28:50 +000085#include <linux/netconf.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070086
87#ifdef CONFIG_IPV6_PRIVACY
88#include <linux/random.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070089#endif
90
Stephen Hemmingere21e8462010-03-20 16:09:01 -070091#include <linux/uaccess.h>
Herbert Xu7f7d9a62007-04-24 21:54:09 -070092#include <asm/unaligned.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070093
94#include <linux/proc_fs.h>
95#include <linux/seq_file.h>
Paul Gortmakerbc3b2d72011-07-15 11:47:34 -040096#include <linux/export.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070097
98/* Set to 3 to get tracing... */
99#define ACONF_DEBUG 2
100
101#if ACONF_DEBUG >= 3
dingtianhongba3542e2013-08-17 10:27:04 +0800102#define ADBG(fmt, ...) printk(fmt, ##__VA_ARGS__)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103#else
dingtianhongba3542e2013-08-17 10:27:04 +0800104#define ADBG(fmt, ...) do { if (0) printk(fmt, ##__VA_ARGS__); } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105#endif
106
107#define INFINITY_LIFE_TIME 0xFFFFFFFF
Thomas Graf18a31e12010-11-17 04:12:02 +0000108
109static inline u32 cstamp_delta(unsigned long cstamp)
110{
111 return (cstamp - INITIAL_JIFFIES) * 100UL / HZ;
112}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113
114#ifdef CONFIG_SYSCTL
Pavel Emelyanovf52295a2007-12-02 00:58:37 +1100115static void addrconf_sysctl_register(struct inet6_dev *idev);
Pavel Emelyanov408c4762008-01-10 17:41:21 -0800116static void addrconf_sysctl_unregister(struct inet6_dev *idev);
117#else
118static inline void addrconf_sysctl_register(struct inet6_dev *idev)
119{
120}
121
122static inline void addrconf_sysctl_unregister(struct inet6_dev *idev)
123{
124}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125#endif
126
127#ifdef CONFIG_IPV6_PRIVACY
Sorin Dumitrueb7e0572012-08-30 02:01:45 +0000128static void __ipv6_regen_rndid(struct inet6_dev *idev);
129static void __ipv6_try_regen_rndid(struct inet6_dev *idev, struct in6_addr *tmpaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130static void ipv6_regen_rndid(unsigned long data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131#endif
132
YOSHIFUJI Hideaki1b34be72008-06-28 14:18:38 +0900133static int ipv6_generate_eui64(u8 *eui, struct net_device *dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134static int ipv6_count_addresses(struct inet6_dev *idev);
135
136/*
137 * Configured unicast address hash table
138 */
stephen hemmingerc2e21292010-03-17 20:31:10 +0000139static struct hlist_head inet6_addr_lst[IN6_ADDR_HSIZE];
stephen hemminger5c578aed2010-03-17 20:31:11 +0000140static DEFINE_SPINLOCK(addrconf_hash_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142static void addrconf_verify(unsigned long);
143
Ingo Molnar8d06afa2005-09-09 13:10:40 -0700144static DEFINE_TIMER(addr_chk_timer, addrconf_verify, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145static DEFINE_SPINLOCK(addrconf_verify_lock);
146
147static void addrconf_join_anycast(struct inet6_ifaddr *ifp);
148static void addrconf_leave_anycast(struct inet6_ifaddr *ifp);
149
Jiri Pirko93d9b7d2010-03-10 10:28:56 +0000150static void addrconf_type_change(struct net_device *dev,
151 unsigned long event);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152static int addrconf_ifdown(struct net_device *dev, int how);
153
Romain Kuntz21caa662013-01-09 21:06:03 +0000154static struct rt6_info *addrconf_get_prefix_route(const struct in6_addr *pfx,
155 int plen,
156 const struct net_device *dev,
157 u32 flags, u32 noflags);
158
David S. Millercf22f9a2012-04-14 21:37:40 -0400159static void addrconf_dad_start(struct inet6_ifaddr *ifp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160static void addrconf_dad_timer(unsigned long data);
161static void addrconf_dad_completed(struct inet6_ifaddr *ifp);
YOSHIFUJI Hideakic5e33bd2005-12-21 22:57:44 +0900162static void addrconf_dad_run(struct inet6_dev *idev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163static void addrconf_rs_timer(unsigned long data);
164static void __ipv6_ifa_notify(int event, struct inet6_ifaddr *ifa);
165static void ipv6_ifa_notify(int event, struct inet6_ifaddr *ifa);
166
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900167static void inet6_prefix_notify(int event, struct inet6_dev *idev,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168 struct prefix_info *pinfo);
David S. Miller3e81c6d2010-03-20 16:18:00 -0700169static bool ipv6_chk_same_addr(struct net *net, const struct in6_addr *addr,
170 struct net_device *dev);
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,
Hannes Frederic Sowafc4eba52013-08-14 01:03:46 +0200180 .mldv1_unsolicited_report_interval = 10 * HZ,
181 .mldv2_unsolicited_report_interval = HZ,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182 .dad_transmits = 1,
183 .rtr_solicits = MAX_RTR_SOLICITATIONS,
184 .rtr_solicit_interval = RTR_SOLICITATION_INTERVAL,
185 .rtr_solicit_delay = MAX_RTR_SOLICITATION_DELAY,
186#ifdef CONFIG_IPV6_PRIVACY
187 .use_tempaddr = 0,
188 .temp_valid_lft = TEMP_VALID_LIFETIME,
189 .temp_prefered_lft = TEMP_PREFERRED_LIFETIME,
190 .regen_max_retry = REGEN_MAX_RETRY,
191 .max_desync_factor = MAX_DESYNC_FACTOR,
192#endif
193 .max_addresses = IPV6_MAX_ADDRESSES,
YOSHIFUJI Hideaki65f5c7c2006-03-20 16:55:08 -0800194 .accept_ra_defrtr = 1,
YOSHIFUJI Hideakic4fd30e2006-03-20 16:55:26 -0800195 .accept_ra_pinfo = 1,
YOSHIFUJI Hideaki930d6ff2006-03-20 17:05:30 -0800196#ifdef CONFIG_IPV6_ROUTER_PREF
197 .accept_ra_rtr_pref = 1,
YOSHIFUJI Hideaki52e163562006-03-20 17:05:47 -0800198 .rtr_probe_interval = 60 * HZ,
YOSHIFUJI Hideaki09c884d2006-03-20 17:07:03 -0800199#ifdef CONFIG_IPV6_ROUTE_INFO
200 .accept_ra_rt_info_max_plen = 0,
201#endif
YOSHIFUJI Hideaki930d6ff2006-03-20 17:05:30 -0800202#endif
YOSHIFUJI Hideakifbea49e2006-09-22 14:43:49 -0700203 .proxy_ndp = 0,
YOSHIFUJI Hideaki0bcbc922007-04-24 14:58:30 -0700204 .accept_source_route = 0, /* we do not accept RH0 by default. */
YOSHIFUJI Hideaki778d80b2008-06-28 14:17:11 +0900205 .disable_ipv6 = 0,
YOSHIFUJI Hideaki1b34be72008-06-28 14:18:38 +0900206 .accept_dad = 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207};
208
Brian Haleyab32ea52006-09-22 14:15:41 -0700209static struct ipv6_devconf ipv6_devconf_dflt __read_mostly = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210 .forwarding = 0,
211 .hop_limit = IPV6_DEFAULT_HOPLIMIT,
212 .mtu6 = IPV6_MIN_MTU,
213 .accept_ra = 1,
214 .accept_redirects = 1,
215 .autoconf = 1,
Hannes Frederic Sowafc4eba52013-08-14 01:03:46 +0200216 .force_mld_version = 0,
217 .mldv1_unsolicited_report_interval = 10 * HZ,
218 .mldv2_unsolicited_report_interval = HZ,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219 .dad_transmits = 1,
220 .rtr_solicits = MAX_RTR_SOLICITATIONS,
221 .rtr_solicit_interval = RTR_SOLICITATION_INTERVAL,
222 .rtr_solicit_delay = MAX_RTR_SOLICITATION_DELAY,
223#ifdef CONFIG_IPV6_PRIVACY
224 .use_tempaddr = 0,
225 .temp_valid_lft = TEMP_VALID_LIFETIME,
226 .temp_prefered_lft = TEMP_PREFERRED_LIFETIME,
227 .regen_max_retry = REGEN_MAX_RETRY,
228 .max_desync_factor = MAX_DESYNC_FACTOR,
229#endif
230 .max_addresses = IPV6_MAX_ADDRESSES,
YOSHIFUJI Hideaki65f5c7c2006-03-20 16:55:08 -0800231 .accept_ra_defrtr = 1,
YOSHIFUJI Hideakic4fd30e2006-03-20 16:55:26 -0800232 .accept_ra_pinfo = 1,
YOSHIFUJI Hideaki930d6ff2006-03-20 17:05:30 -0800233#ifdef CONFIG_IPV6_ROUTER_PREF
234 .accept_ra_rtr_pref = 1,
YOSHIFUJI Hideaki52e163562006-03-20 17:05:47 -0800235 .rtr_probe_interval = 60 * HZ,
YOSHIFUJI Hideaki09c884d2006-03-20 17:07:03 -0800236#ifdef CONFIG_IPV6_ROUTE_INFO
237 .accept_ra_rt_info_max_plen = 0,
238#endif
YOSHIFUJI Hideaki930d6ff2006-03-20 17:05:30 -0800239#endif
YOSHIFUJI Hideakifbea49e2006-09-22 14:43:49 -0700240 .proxy_ndp = 0,
YOSHIFUJI Hideaki0bcbc922007-04-24 14:58:30 -0700241 .accept_source_route = 0, /* we do not accept RH0 by default. */
YOSHIFUJI Hideaki778d80b2008-06-28 14:17:11 +0900242 .disable_ipv6 = 0,
YOSHIFUJI Hideaki1b34be72008-06-28 14:18:38 +0900243 .accept_dad = 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244};
245
246/* IPv6 Wildcard Address and Loopback Address defined by RFC2553 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247const struct in6_addr in6addr_any = IN6ADDR_ANY_INIT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248const struct in6_addr in6addr_loopback = IN6ADDR_LOOPBACK_INIT;
YOSHIFUJI Hideakif3ee4012008-04-10 15:42:11 +0900249const struct in6_addr in6addr_linklocal_allnodes = IN6ADDR_LINKLOCAL_ALLNODES_INIT;
250const struct in6_addr in6addr_linklocal_allrouters = IN6ADDR_LINKLOCAL_ALLROUTERS_INIT;
Hannes Frederic Sowa2c5e8932013-02-10 03:50:18 +0000251const struct in6_addr in6addr_interfacelocal_allnodes = IN6ADDR_INTERFACELOCAL_ALLNODES_INIT;
252const struct in6_addr in6addr_interfacelocal_allrouters = IN6ADDR_INTERFACELOCAL_ALLROUTERS_INIT;
253const struct in6_addr in6addr_sitelocal_allrouters = IN6ADDR_SITELOCAL_ALLROUTERS_INIT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254
Mitsuru Chinenf24e3d62007-10-10 02:53:43 -0700255/* Check if a valid qdisc is available */
David S. Miller05297942008-07-08 23:01:27 -0700256static inline bool addrconf_qdisc_ok(const struct net_device *dev)
Mitsuru Chinenf24e3d62007-10-10 02:53:43 -0700257{
David S. Miller05297942008-07-08 23:01:27 -0700258 return !qdisc_tx_is_noop(dev);
Mitsuru Chinenf24e3d62007-10-10 02:53:43 -0700259}
260
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +0200261static void addrconf_del_rs_timer(struct inet6_dev *idev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262{
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +0200263 if (del_timer(&idev->rs_timer))
264 __in6_dev_put(idev);
265}
266
267static void addrconf_del_dad_timer(struct inet6_ifaddr *ifp)
268{
269 if (del_timer(&ifp->dad_timer))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270 __in6_ifa_put(ifp);
271}
272
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +0200273static void addrconf_mod_rs_timer(struct inet6_dev *idev,
274 unsigned long when)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275{
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +0200276 if (!timer_pending(&idev->rs_timer))
277 in6_dev_hold(idev);
278 mod_timer(&idev->rs_timer, jiffies + when);
279}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +0200281static void addrconf_mod_dad_timer(struct inet6_ifaddr *ifp,
282 unsigned long when)
283{
284 if (!timer_pending(&ifp->dad_timer))
285 in6_ifa_hold(ifp);
286 mod_timer(&ifp->dad_timer, jiffies + when);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287}
288
Herbert Xu7f7d9a62007-04-24 21:54:09 -0700289static int snmp6_alloc_dev(struct inet6_dev *idev)
290{
Tejun Heo7d720c32010-02-16 15:20:26 +0000291 if (snmp_mib_init((void __percpu **)idev->stats.ipv6,
Eric Dumazet1823e4c82010-06-22 20:58:41 +0000292 sizeof(struct ipstats_mib),
293 __alignof__(struct ipstats_mib)) < 0)
Herbert Xu7f7d9a62007-04-24 21:54:09 -0700294 goto err_ip;
Eric Dumazetbe281e52011-05-19 01:14:23 +0000295 idev->stats.icmpv6dev = kzalloc(sizeof(struct icmpv6_mib_device),
296 GFP_KERNEL);
297 if (!idev->stats.icmpv6dev)
Herbert Xu7f7d9a62007-04-24 21:54:09 -0700298 goto err_icmp;
Eric Dumazetbe281e52011-05-19 01:14:23 +0000299 idev->stats.icmpv6msgdev = kzalloc(sizeof(struct icmpv6msg_mib_device),
300 GFP_KERNEL);
301 if (!idev->stats.icmpv6msgdev)
David L Stevens14878f72007-09-16 16:52:35 -0700302 goto err_icmpmsg;
Herbert Xu7f7d9a62007-04-24 21:54:09 -0700303
304 return 0;
305
David L Stevens14878f72007-09-16 16:52:35 -0700306err_icmpmsg:
Eric Dumazetbe281e52011-05-19 01:14:23 +0000307 kfree(idev->stats.icmpv6dev);
Herbert Xu7f7d9a62007-04-24 21:54:09 -0700308err_icmp:
Tejun Heo7d720c32010-02-16 15:20:26 +0000309 snmp_mib_free((void __percpu **)idev->stats.ipv6);
Herbert Xu7f7d9a62007-04-24 21:54:09 -0700310err_ip:
Pavel Emelyanovaaf70ec2007-10-17 21:25:32 -0700311 return -ENOMEM;
Herbert Xu7f7d9a62007-04-24 21:54:09 -0700312}
313
Pavel Emelyanov16910b92007-10-17 21:23:43 -0700314static void snmp6_free_dev(struct inet6_dev *idev)
Herbert Xu7f7d9a62007-04-24 21:54:09 -0700315{
Eric Dumazetbe281e52011-05-19 01:14:23 +0000316 kfree(idev->stats.icmpv6msgdev);
317 kfree(idev->stats.icmpv6dev);
Tejun Heo7d720c32010-02-16 15:20:26 +0000318 snmp_mib_free((void __percpu **)idev->stats.ipv6);
Herbert Xu7f7d9a62007-04-24 21:54:09 -0700319}
320
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321/* Nobody refers to this device, we may destroy it. */
322
323void in6_dev_finish_destroy(struct inet6_dev *idev)
324{
325 struct net_device *dev = idev->dev;
Ilpo Järvinen547b7922008-07-25 21:43:18 -0700326
stephen hemminger502a2ff2010-03-17 20:31:13 +0000327 WARN_ON(!list_empty(&idev->addr_list));
Ilpo Järvinen547b7922008-07-25 21:43:18 -0700328 WARN_ON(idev->mc_list != NULL);
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +0200329 WARN_ON(timer_pending(&idev->rs_timer));
Ilpo Järvinen547b7922008-07-25 21:43:18 -0700330
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331#ifdef NET_REFCNT_DEBUG
Joe Perches91df42b2012-05-15 14:11:54 +0000332 pr_debug("%s: %s\n", __func__, dev ? dev->name : "NIL");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333#endif
334 dev_put(dev);
335 if (!idev->dead) {
Joe Perchesf3213832012-05-15 14:11:53 +0000336 pr_warn("Freeing alive inet6 device %p\n", idev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337 return;
338 }
339 snmp6_free_dev(idev);
Lai Jiangshan38f57d12011-03-15 17:59:14 +0800340 kfree_rcu(idev, rcu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341}
YOSHIFUJI Hideaki71590392007-02-22 22:05:40 +0900342EXPORT_SYMBOL(in6_dev_finish_destroy);
343
Eldad Zack8e5e8f32012-04-01 07:49:08 +0000344static struct inet6_dev *ipv6_add_dev(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345{
346 struct inet6_dev *ndev;
347
348 ASSERT_RTNL();
349
350 if (dev->mtu < IPV6_MIN_MTU)
351 return NULL;
352
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900353 ndev = kzalloc(sizeof(struct inet6_dev), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900355 if (ndev == NULL)
356 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357
Ingo Oeser322f74a2006-03-20 23:01:47 -0800358 rwlock_init(&ndev->lock);
359 ndev->dev = dev;
stephen hemminger502a2ff2010-03-17 20:31:13 +0000360 INIT_LIST_HEAD(&ndev->addr_list);
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +0200361 setup_timer(&ndev->rs_timer, addrconf_rs_timer,
362 (unsigned long)ndev);
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +0900363 memcpy(&ndev->cnf, dev_net(dev)->ipv6.devconf_dflt, sizeof(ndev->cnf));
Ingo Oeser322f74a2006-03-20 23:01:47 -0800364 ndev->cnf.mtu6 = dev->mtu;
365 ndev->cnf.sysctl = NULL;
366 ndev->nd_parms = neigh_parms_alloc(dev, &nd_tbl);
367 if (ndev->nd_parms == NULL) {
368 kfree(ndev);
369 return NULL;
370 }
Ben Hutchings0187bdf2008-06-19 16:15:47 -0700371 if (ndev->cnf.forwarding)
372 dev_disable_lro(dev);
Ingo Oeser322f74a2006-03-20 23:01:47 -0800373 /* We refer to the device */
374 dev_hold(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375
Ingo Oeser322f74a2006-03-20 23:01:47 -0800376 if (snmp6_alloc_dev(ndev) < 0) {
dingtianhongba3542e2013-08-17 10:27:04 +0800377 ADBG(KERN_WARNING
Joe Perchesf3213832012-05-15 14:11:53 +0000378 "%s: cannot allocate memory for statistics; dev=%s.\n",
dingtianhongba3542e2013-08-17 10:27:04 +0800379 __func__, dev->name);
Ingo Oeser322f74a2006-03-20 23:01:47 -0800380 neigh_parms_release(&nd_tbl, ndev->nd_parms);
Roy Li8603e332011-09-20 15:10:16 -0400381 dev_put(dev);
382 kfree(ndev);
Ingo Oeser322f74a2006-03-20 23:01:47 -0800383 return NULL;
384 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385
Ingo Oeser322f74a2006-03-20 23:01:47 -0800386 if (snmp6_register_dev(ndev) < 0) {
dingtianhongba3542e2013-08-17 10:27:04 +0800387 ADBG(KERN_WARNING
Joe Perchesf3213832012-05-15 14:11:53 +0000388 "%s: cannot create /proc/net/dev_snmp6/%s\n",
dingtianhongba3542e2013-08-17 10:27:04 +0800389 __func__, dev->name);
Ingo Oeser322f74a2006-03-20 23:01:47 -0800390 neigh_parms_release(&nd_tbl, ndev->nd_parms);
391 ndev->dead = 1;
392 in6_dev_finish_destroy(ndev);
393 return NULL;
394 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395
Ingo Oeser322f74a2006-03-20 23:01:47 -0800396 /* One reference from device. We must do this before
397 * we invoke __ipv6_regen_rndid().
398 */
399 in6_dev_hold(ndev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400
YOSHIFUJI Hideaki1b34be72008-06-28 14:18:38 +0900401 if (dev->flags & (IFF_NOARP | IFF_LOOPBACK))
402 ndev->cnf.accept_dad = -1;
403
Amerigo Wang07a93622012-10-29 16:23:10 +0000404#if IS_ENABLED(CONFIG_IPV6_SIT)
YOSHIFUJI Hideakib077d7a2008-04-13 23:42:18 -0700405 if (dev->type == ARPHRD_SIT && (dev->priv_flags & IFF_ISATAP)) {
Joe Perchesf3213832012-05-15 14:11:53 +0000406 pr_info("%s: Disabled Multicast RS\n", dev->name);
YOSHIFUJI Hideakib077d7a2008-04-13 23:42:18 -0700407 ndev->cnf.rtr_solicits = 0;
408 }
409#endif
410
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411#ifdef CONFIG_IPV6_PRIVACY
stephen hemminger372e6c82010-03-17 20:31:09 +0000412 INIT_LIST_HEAD(&ndev->tempaddr_list);
Pavel Emelyanovb24b8a22008-01-23 21:20:07 -0800413 setup_timer(&ndev->regen_timer, ipv6_regen_rndid, (unsigned long)ndev);
Ingo Oeser322f74a2006-03-20 23:01:47 -0800414 if ((dev->flags&IFF_LOOPBACK) ||
415 dev->type == ARPHRD_TUNNEL ||
YOSHIFUJI Hideaki9625ed72008-04-13 23:47:11 -0700416 dev->type == ARPHRD_TUNNEL6 ||
Joerg Roedel0be669b2006-10-10 14:49:53 -0700417 dev->type == ARPHRD_SIT ||
Joerg Roedel0be669b2006-10-10 14:49:53 -0700418 dev->type == ARPHRD_NONE) {
Ingo Oeser322f74a2006-03-20 23:01:47 -0800419 ndev->cnf.use_tempaddr = -1;
420 } else {
421 in6_dev_hold(ndev);
422 ipv6_regen_rndid((unsigned long) ndev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423 }
Ingo Oeser322f74a2006-03-20 23:01:47 -0800424#endif
Daniel Borkmann914faa12013-04-09 03:47:14 +0000425 ndev->token = in6addr_any;
Ingo Oeser322f74a2006-03-20 23:01:47 -0800426
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
Hannes Frederic Sowa2c5e8932013-02-10 03:50:18 +0000436 /* Join interface-local all-node multicast group */
437 ipv6_dev_mc_inc(dev, &in6addr_interfacelocal_allnodes);
438
YOSHIFUJI Hideakid88ae4c2007-01-14 21:48:40 -0800439 /* Join all-node multicast group */
YOSHIFUJI Hideakif3ee4012008-04-10 15:42:11 +0900440 ipv6_dev_mc_inc(dev, &in6addr_linklocal_allnodes);
YOSHIFUJI Hideakid88ae4c2007-01-14 21:48:40 -0800441
Li Weid6ddef92012-03-05 14:45:17 +0000442 /* Join all-router multicast group if forwarding is set */
Li Wei8b2aaed2012-03-07 14:58:07 +0000443 if (ndev->cnf.forwarding && (dev->flags & IFF_MULTICAST))
Li Weid6ddef92012-03-05 14:45:17 +0000444 ipv6_dev_mc_inc(dev, &in6addr_linklocal_allrouters);
445
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446 return ndev;
447}
448
Eldad Zack8e5e8f32012-04-01 07:49:08 +0000449static struct inet6_dev *ipv6_find_idev(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450{
451 struct inet6_dev *idev;
452
453 ASSERT_RTNL();
454
Stephen Hemmingere21e8462010-03-20 16:09:01 -0700455 idev = __in6_dev_get(dev);
456 if (!idev) {
457 idev = ipv6_add_dev(dev);
458 if (!idev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459 return NULL;
460 }
YOSHIFUJI Hideakic5e33bd2005-12-21 22:57:44 +0900461
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462 if (dev->flags&IFF_UP)
463 ipv6_mc_up(idev);
464 return idev;
465}
466
Nicolas Dichtelf3a1bfb2012-10-25 22:28:50 +0000467static int inet6_netconf_msgsize_devconf(int type)
468{
469 int size = NLMSG_ALIGN(sizeof(struct netconfmsg))
470 + nla_total_size(4); /* NETCONFA_IFINDEX */
471
Nicolas Dichtel76f8f6c2012-10-25 22:28:51 +0000472 /* type -1 is used for ALL */
473 if (type == -1 || type == NETCONFA_FORWARDING)
Nicolas Dichtelf3a1bfb2012-10-25 22:28:50 +0000474 size += nla_total_size(4);
David S. Millerb1afce92012-12-04 14:46:34 -0500475#ifdef CONFIG_IPV6_MROUTE
Nicolas Dichteld67b8c62012-12-04 01:13:35 +0000476 if (type == -1 || type == NETCONFA_MC_FORWARDING)
477 size += nla_total_size(4);
David S. Millerb1afce92012-12-04 14:46:34 -0500478#endif
Nicolas Dichtelf3a1bfb2012-10-25 22:28:50 +0000479
480 return size;
481}
482
483static int inet6_netconf_fill_devconf(struct sk_buff *skb, int ifindex,
484 struct ipv6_devconf *devconf, u32 portid,
485 u32 seq, int event, unsigned int flags,
486 int type)
487{
488 struct nlmsghdr *nlh;
489 struct netconfmsg *ncm;
490
491 nlh = nlmsg_put(skb, portid, seq, event, sizeof(struct netconfmsg),
492 flags);
493 if (nlh == NULL)
494 return -EMSGSIZE;
495
496 ncm = nlmsg_data(nlh);
497 ncm->ncm_family = AF_INET6;
498
499 if (nla_put_s32(skb, NETCONFA_IFINDEX, ifindex) < 0)
500 goto nla_put_failure;
501
Nicolas Dichtel76f8f6c2012-10-25 22:28:51 +0000502 /* type -1 is used for ALL */
503 if ((type == -1 || type == NETCONFA_FORWARDING) &&
Nicolas Dichtelf3a1bfb2012-10-25 22:28:50 +0000504 nla_put_s32(skb, NETCONFA_FORWARDING, devconf->forwarding) < 0)
505 goto nla_put_failure;
David S. Millerb1afce92012-12-04 14:46:34 -0500506#ifdef CONFIG_IPV6_MROUTE
Nicolas Dichteld67b8c62012-12-04 01:13:35 +0000507 if ((type == -1 || type == NETCONFA_MC_FORWARDING) &&
508 nla_put_s32(skb, NETCONFA_MC_FORWARDING,
509 devconf->mc_forwarding) < 0)
510 goto nla_put_failure;
David S. Millerb1afce92012-12-04 14:46:34 -0500511#endif
Nicolas Dichtelf3a1bfb2012-10-25 22:28:50 +0000512 return nlmsg_end(skb, nlh);
513
514nla_put_failure:
515 nlmsg_cancel(skb, nlh);
516 return -EMSGSIZE;
517}
518
Nicolas Dichteld67b8c62012-12-04 01:13:35 +0000519void inet6_netconf_notify_devconf(struct net *net, int type, int ifindex,
520 struct ipv6_devconf *devconf)
Nicolas Dichtelf3a1bfb2012-10-25 22:28:50 +0000521{
522 struct sk_buff *skb;
523 int err = -ENOBUFS;
524
525 skb = nlmsg_new(inet6_netconf_msgsize_devconf(type), GFP_ATOMIC);
526 if (skb == NULL)
527 goto errout;
528
529 err = inet6_netconf_fill_devconf(skb, ifindex, devconf, 0, 0,
530 RTM_NEWNETCONF, 0, type);
531 if (err < 0) {
532 /* -EMSGSIZE implies BUG in inet6_netconf_msgsize_devconf() */
533 WARN_ON(err == -EMSGSIZE);
534 kfree_skb(skb);
535 goto errout;
536 }
537 rtnl_notify(skb, net, 0, RTNLGRP_IPV6_NETCONF, NULL, GFP_ATOMIC);
538 return;
539errout:
Cong Dingbd779022012-12-18 12:08:56 +0000540 rtnl_set_sk_err(net, RTNLGRP_IPV6_NETCONF, err);
Nicolas Dichtelf3a1bfb2012-10-25 22:28:50 +0000541}
542
Nicolas Dichtel76f8f6c2012-10-25 22:28:51 +0000543static const struct nla_policy devconf_ipv6_policy[NETCONFA_MAX+1] = {
544 [NETCONFA_IFINDEX] = { .len = sizeof(int) },
545 [NETCONFA_FORWARDING] = { .len = sizeof(int) },
546};
547
548static int inet6_netconf_get_devconf(struct sk_buff *in_skb,
Thomas Graf661d2962013-03-21 07:45:29 +0000549 struct nlmsghdr *nlh)
Nicolas Dichtel76f8f6c2012-10-25 22:28:51 +0000550{
551 struct net *net = sock_net(in_skb->sk);
552 struct nlattr *tb[NETCONFA_MAX+1];
553 struct netconfmsg *ncm;
554 struct sk_buff *skb;
555 struct ipv6_devconf *devconf;
556 struct inet6_dev *in6_dev;
557 struct net_device *dev;
558 int ifindex;
559 int err;
560
561 err = nlmsg_parse(nlh, sizeof(*ncm), tb, NETCONFA_MAX,
562 devconf_ipv6_policy);
563 if (err < 0)
564 goto errout;
565
566 err = EINVAL;
567 if (!tb[NETCONFA_IFINDEX])
568 goto errout;
569
570 ifindex = nla_get_s32(tb[NETCONFA_IFINDEX]);
571 switch (ifindex) {
572 case NETCONFA_IFINDEX_ALL:
573 devconf = net->ipv6.devconf_all;
574 break;
575 case NETCONFA_IFINDEX_DEFAULT:
576 devconf = net->ipv6.devconf_dflt;
577 break;
578 default:
579 dev = __dev_get_by_index(net, ifindex);
580 if (dev == NULL)
581 goto errout;
582 in6_dev = __in6_dev_get(dev);
583 if (in6_dev == NULL)
584 goto errout;
585 devconf = &in6_dev->cnf;
586 break;
587 }
588
589 err = -ENOBUFS;
590 skb = nlmsg_new(inet6_netconf_msgsize_devconf(-1), GFP_ATOMIC);
591 if (skb == NULL)
592 goto errout;
593
594 err = inet6_netconf_fill_devconf(skb, ifindex, devconf,
595 NETLINK_CB(in_skb).portid,
596 nlh->nlmsg_seq, RTM_NEWNETCONF, 0,
597 -1);
598 if (err < 0) {
599 /* -EMSGSIZE implies BUG in inet6_netconf_msgsize_devconf() */
600 WARN_ON(err == -EMSGSIZE);
601 kfree_skb(skb);
602 goto errout;
603 }
604 err = rtnl_unicast(skb, net, NETLINK_CB(in_skb).portid);
605errout:
606 return err;
607}
608
Nicolas Dichtel7a674202013-03-05 23:42:06 +0000609static int inet6_netconf_dump_devconf(struct sk_buff *skb,
610 struct netlink_callback *cb)
611{
612 struct net *net = sock_net(skb->sk);
613 int h, s_h;
614 int idx, s_idx;
615 struct net_device *dev;
616 struct inet6_dev *idev;
617 struct hlist_head *head;
618
619 s_h = cb->args[0];
620 s_idx = idx = cb->args[1];
621
622 for (h = s_h; h < NETDEV_HASHENTRIES; h++, s_idx = 0) {
623 idx = 0;
624 head = &net->dev_index_head[h];
625 rcu_read_lock();
Nicolas Dichtel63998ac2013-03-22 06:28:43 +0000626 cb->seq = atomic_read(&net->ipv6.dev_addr_genid) ^
627 net->dev_base_seq;
Nicolas Dichtel7a674202013-03-05 23:42:06 +0000628 hlist_for_each_entry_rcu(dev, head, index_hlist) {
629 if (idx < s_idx)
630 goto cont;
631 idev = __in6_dev_get(dev);
632 if (!idev)
633 goto cont;
634
635 if (inet6_netconf_fill_devconf(skb, dev->ifindex,
636 &idev->cnf,
637 NETLINK_CB(cb->skb).portid,
638 cb->nlh->nlmsg_seq,
639 RTM_NEWNETCONF,
640 NLM_F_MULTI,
641 -1) <= 0) {
642 rcu_read_unlock();
643 goto done;
644 }
Nicolas Dichtel63998ac2013-03-22 06:28:43 +0000645 nl_dump_check_consistent(cb, nlmsg_hdr(skb));
Nicolas Dichtel7a674202013-03-05 23:42:06 +0000646cont:
647 idx++;
648 }
649 rcu_read_unlock();
650 }
651 if (h == NETDEV_HASHENTRIES) {
652 if (inet6_netconf_fill_devconf(skb, NETCONFA_IFINDEX_ALL,
653 net->ipv6.devconf_all,
654 NETLINK_CB(cb->skb).portid,
655 cb->nlh->nlmsg_seq,
656 RTM_NEWNETCONF, NLM_F_MULTI,
657 -1) <= 0)
658 goto done;
659 else
660 h++;
661 }
662 if (h == NETDEV_HASHENTRIES + 1) {
663 if (inet6_netconf_fill_devconf(skb, NETCONFA_IFINDEX_DEFAULT,
664 net->ipv6.devconf_dflt,
665 NETLINK_CB(cb->skb).portid,
666 cb->nlh->nlmsg_seq,
667 RTM_NEWNETCONF, NLM_F_MULTI,
668 -1) <= 0)
669 goto done;
670 else
671 h++;
672 }
673done:
674 cb->args[0] = h;
675 cb->args[1] = idx;
676
677 return skb->len;
678}
679
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680#ifdef CONFIG_SYSCTL
681static void dev_forward_change(struct inet6_dev *idev)
682{
683 struct net_device *dev;
684 struct inet6_ifaddr *ifa;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685
686 if (!idev)
687 return;
688 dev = idev->dev;
Ben Hutchings0187bdf2008-06-19 16:15:47 -0700689 if (idev->cnf.forwarding)
690 dev_disable_lro(dev);
Amerigo Wang1a940832012-10-28 17:43:53 +0000691 if (dev->flags & IFF_MULTICAST) {
Hannes Frederic Sowa2c5e8932013-02-10 03:50:18 +0000692 if (idev->cnf.forwarding) {
YOSHIFUJI Hideakif3ee4012008-04-10 15:42:11 +0900693 ipv6_dev_mc_inc(dev, &in6addr_linklocal_allrouters);
Hannes Frederic Sowa2c5e8932013-02-10 03:50:18 +0000694 ipv6_dev_mc_inc(dev, &in6addr_interfacelocal_allrouters);
695 ipv6_dev_mc_inc(dev, &in6addr_sitelocal_allrouters);
696 } else {
YOSHIFUJI Hideakif3ee4012008-04-10 15:42:11 +0900697 ipv6_dev_mc_dec(dev, &in6addr_linklocal_allrouters);
Hannes Frederic Sowa2c5e8932013-02-10 03:50:18 +0000698 ipv6_dev_mc_dec(dev, &in6addr_interfacelocal_allrouters);
699 ipv6_dev_mc_dec(dev, &in6addr_sitelocal_allrouters);
700 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701 }
stephen hemminger502a2ff2010-03-17 20:31:13 +0000702
703 list_for_each_entry(ifa, &idev->addr_list, if_list) {
Michal Wrobel2c12a742007-02-26 15:36:10 -0800704 if (ifa->flags&IFA_F_TENTATIVE)
705 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706 if (idev->cnf.forwarding)
707 addrconf_join_anycast(ifa);
708 else
709 addrconf_leave_anycast(ifa);
710 }
Nicolas Dichtelf3a1bfb2012-10-25 22:28:50 +0000711 inet6_netconf_notify_devconf(dev_net(dev), NETCONFA_FORWARDING,
712 dev->ifindex, &idev->cnf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713}
714
715
Pavel Emelyanove1869322008-01-10 17:43:50 -0800716static void addrconf_forward_change(struct net *net, __s32 newf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717{
718 struct net_device *dev;
719 struct inet6_dev *idev;
720
Ben Hutchings4acd4942012-08-14 08:54:51 +0000721 for_each_netdev(net, dev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722 idev = __in6_dev_get(dev);
723 if (idev) {
Pavel Emelyanove1869322008-01-10 17:43:50 -0800724 int changed = (!idev->cnf.forwarding) ^ (!newf);
725 idev->cnf.forwarding = newf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726 if (changed)
727 dev_forward_change(idev);
728 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730}
Pavel Emelyanovc8fecf22007-12-05 01:50:24 -0800731
Francesco Ruggeri013d97e2012-01-16 10:40:10 +0000732static int addrconf_fixup_forwarding(struct ctl_table *table, int *p, int newf)
Pavel Emelyanovc8fecf22007-12-05 01:50:24 -0800733{
Pavel Emelyanovbff16c22008-01-10 17:42:13 -0800734 struct net *net;
Francesco Ruggeri013d97e2012-01-16 10:40:10 +0000735 int old;
736
737 if (!rtnl_trylock())
738 return restart_syscall();
Pavel Emelyanovbff16c22008-01-10 17:42:13 -0800739
740 net = (struct net *)table->extra2;
Francesco Ruggeri013d97e2012-01-16 10:40:10 +0000741 old = *p;
742 *p = newf;
Pavel Emelyanovc8fecf22007-12-05 01:50:24 -0800743
Francesco Ruggeri013d97e2012-01-16 10:40:10 +0000744 if (p == &net->ipv6.devconf_dflt->forwarding) {
Nicolas Dichtelf3a1bfb2012-10-25 22:28:50 +0000745 if ((!newf) ^ (!old))
746 inet6_netconf_notify_devconf(net, NETCONFA_FORWARDING,
747 NETCONFA_IFINDEX_DEFAULT,
748 net->ipv6.devconf_dflt);
Francesco Ruggeri013d97e2012-01-16 10:40:10 +0000749 rtnl_unlock();
750 return 0;
Eric W. Biederman88af1822010-02-19 13:22:59 +0000751 }
Stephen Hemmingerb325fdd2009-02-26 06:55:31 +0000752
Pavel Emelyanove1869322008-01-10 17:43:50 -0800753 if (p == &net->ipv6.devconf_all->forwarding) {
Pavel Emelyanove1869322008-01-10 17:43:50 -0800754 net->ipv6.devconf_dflt->forwarding = newf;
755 addrconf_forward_change(net, newf);
Nicolas Dichtelf3a1bfb2012-10-25 22:28:50 +0000756 if ((!newf) ^ (!old))
757 inet6_netconf_notify_devconf(net, NETCONFA_FORWARDING,
758 NETCONFA_IFINDEX_ALL,
759 net->ipv6.devconf_all);
Francesco Ruggeri013d97e2012-01-16 10:40:10 +0000760 } else if ((!newf) ^ (!old))
Pavel Emelyanovc8fecf22007-12-05 01:50:24 -0800761 dev_forward_change((struct inet6_dev *)table->extra1);
Ben Hutchings0187bdf2008-06-19 16:15:47 -0700762 rtnl_unlock();
Pavel Emelyanovc8fecf22007-12-05 01:50:24 -0800763
Francesco Ruggeri013d97e2012-01-16 10:40:10 +0000764 if (newf)
Daniel Lezcano7b4da532008-03-04 13:47:14 -0800765 rt6_purge_dflt_routers(net);
Stephen Hemmingerb325fdd2009-02-26 06:55:31 +0000766 return 1;
Pavel Emelyanovc8fecf22007-12-05 01:50:24 -0800767}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768#endif
769
stephen hemminger5c578aed2010-03-17 20:31:11 +0000770/* Nobody refers to this ifaddr, destroy it */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771void inet6_ifa_finish_destroy(struct inet6_ifaddr *ifp)
772{
stephen hemmingerc2e21292010-03-17 20:31:10 +0000773 WARN_ON(!hlist_unhashed(&ifp->addr_lst));
Ilpo Järvinen547b7922008-07-25 21:43:18 -0700774
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775#ifdef NET_REFCNT_DEBUG
Joe Perches91df42b2012-05-15 14:11:54 +0000776 pr_debug("%s\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777#endif
778
779 in6_dev_put(ifp->idev);
780
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +0200781 if (del_timer(&ifp->dad_timer))
Stephen Hemmingere21e8462010-03-20 16:09:01 -0700782 pr_notice("Timer is still running, when freeing ifa=%p\n", ifp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783
Herbert Xue9d3e082010-05-18 15:36:06 -0700784 if (ifp->state != INET6_IFADDR_STATE_DEAD) {
Joe Perchesf3213832012-05-15 14:11:53 +0000785 pr_warn("Freeing alive inet6 address %p\n", ifp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786 return;
787 }
Amerigo Wang94e187c2012-10-29 00:13:19 +0000788 ip6_rt_put(ifp->rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789
Lai Jiangshane5785982011-03-15 18:00:14 +0800790 kfree_rcu(ifp, rcu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791}
792
Brian Haleye55ffac2006-07-10 15:25:51 -0700793static void
794ipv6_link_dev_addr(struct inet6_dev *idev, struct inet6_ifaddr *ifp)
795{
stephen hemminger502a2ff2010-03-17 20:31:13 +0000796 struct list_head *p;
YOSHIFUJI Hideaki8a6ce0c2006-07-11 13:05:30 -0700797 int ifp_scope = ipv6_addr_src_scope(&ifp->addr);
Brian Haleye55ffac2006-07-10 15:25:51 -0700798
799 /*
800 * Each device address list is sorted in order of scope -
801 * global before linklocal.
802 */
stephen hemminger502a2ff2010-03-17 20:31:13 +0000803 list_for_each(p, &idev->addr_list) {
804 struct inet6_ifaddr *ifa
805 = list_entry(p, struct inet6_ifaddr, if_list);
YOSHIFUJI Hideaki8a6ce0c2006-07-11 13:05:30 -0700806 if (ifp_scope >= ipv6_addr_src_scope(&ifa->addr))
Brian Haleye55ffac2006-07-10 15:25:51 -0700807 break;
808 }
809
David S. Millerb54c9b92010-03-25 21:25:30 -0700810 list_add_tail(&ifp->if_list, p);
Brian Haleye55ffac2006-07-10 15:25:51 -0700811}
812
Eric Dumazetddbe5032012-07-18 08:11:12 +0000813static u32 inet6_addr_hash(const struct in6_addr *addr)
YOSHIFUJI Hideaki3eb84f42008-04-10 15:42:08 +0900814{
Eric Dumazetddbe5032012-07-18 08:11:12 +0000815 return hash_32(ipv6_addr_hash(addr), IN6_ADDR_HSIZE_SHIFT);
YOSHIFUJI Hideaki3eb84f42008-04-10 15:42:08 +0900816}
817
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818/* On success it returns ifp with increased reference count */
819
820static struct inet6_ifaddr *
Jiri Pirko3f8f5292013-08-01 10:41:27 +0200821ipv6_add_addr(struct inet6_dev *idev, const struct in6_addr *addr,
822 const struct in6_addr *peer_addr, int pfxlen,
Jiri Benc8a226b22013-08-01 10:41:28 +0200823 int scope, u32 flags, u32 valid_lft, u32 prefered_lft)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824{
825 struct inet6_ifaddr *ifa = NULL;
826 struct rt6_info *rt;
stephen hemminger3a88a812010-03-17 20:31:12 +0000827 unsigned int hash;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828 int err = 0;
YOSHIFUJI Hideakid68b8272008-06-25 16:26:47 +0900829 int addr_type = ipv6_addr_type(addr);
830
831 if (addr_type == IPV6_ADDR_ANY ||
832 addr_type & IPV6_ADDR_MULTICAST ||
833 (!(idev->dev->flags & IFF_LOOPBACK) &&
834 addr_type & IPV6_ADDR_LOOPBACK))
835 return ERR_PTR(-EADDRNOTAVAIL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -0700837 rcu_read_lock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838 if (idev->dead) {
839 err = -ENODEV; /*XXX*/
840 goto out2;
841 }
842
Brian Haley56d417b2009-06-01 03:07:33 -0700843 if (idev->cnf.disable_ipv6) {
Brian Haley9bdd8d42009-03-18 18:22:48 -0700844 err = -EACCES;
845 goto out2;
846 }
847
stephen hemminger5c578aed2010-03-17 20:31:11 +0000848 spin_lock(&addrconf_hash_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849
850 /* Ignore adding duplicate addresses on an interface */
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +0900851 if (ipv6_chk_same_addr(dev_net(idev->dev), addr, idev->dev)) {
dingtianhongba3542e2013-08-17 10:27:04 +0800852 ADBG("ipv6_add_addr: already assigned\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853 err = -EEXIST;
854 goto out;
855 }
856
Ingo Oeser322f74a2006-03-20 23:01:47 -0800857 ifa = kzalloc(sizeof(struct inet6_ifaddr), GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858
859 if (ifa == NULL) {
dingtianhongba3542e2013-08-17 10:27:04 +0800860 ADBG("ipv6_add_addr: malloc failed\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861 err = -ENOBUFS;
862 goto out;
863 }
864
David S. Miller8f031512011-12-06 16:48:14 -0500865 rt = addrconf_dst_alloc(idev, addr, false);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866 if (IS_ERR(rt)) {
867 err = PTR_ERR(rt);
868 goto out;
869 }
870
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +0000871 ifa->addr = *addr;
Jiri Pirko3f8f5292013-08-01 10:41:27 +0200872 if (peer_addr)
873 ifa->peer_addr = *peer_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874
875 spin_lock_init(&ifa->lock);
Herbert Xue9d3e082010-05-18 15:36:06 -0700876 spin_lock_init(&ifa->state_lock);
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +0200877 setup_timer(&ifa->dad_timer, addrconf_dad_timer,
878 (unsigned long)ifa);
stephen hemmingerc2e21292010-03-17 20:31:10 +0000879 INIT_HLIST_NODE(&ifa->addr_lst);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880 ifa->scope = scope;
881 ifa->prefix_len = pfxlen;
882 ifa->flags = flags | IFA_F_TENTATIVE;
Jiri Benc8a226b22013-08-01 10:41:28 +0200883 ifa->valid_lft = valid_lft;
884 ifa->prefered_lft = prefered_lft;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885 ifa->cstamp = ifa->tstamp = jiffies;
Daniel Borkmann617fe292013-04-09 03:47:16 +0000886 ifa->tokenized = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887
Keir Fraser57f5f542006-08-29 02:43:49 -0700888 ifa->rt = rt;
889
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890 ifa->idev = idev;
891 in6_dev_hold(idev);
892 /* For caller */
893 in6_ifa_hold(ifa);
894
895 /* Add to big hash table */
Eric Dumazetddbe5032012-07-18 08:11:12 +0000896 hash = inet6_addr_hash(addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897
stephen hemminger5c578aed2010-03-17 20:31:11 +0000898 hlist_add_head_rcu(&ifa->addr_lst, &inet6_addr_lst[hash]);
stephen hemminger5c578aed2010-03-17 20:31:11 +0000899 spin_unlock(&addrconf_hash_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900
901 write_lock(&idev->lock);
902 /* Add to inet6_dev unicast addr list. */
Brian Haleye55ffac2006-07-10 15:25:51 -0700903 ipv6_link_dev_addr(idev, ifa);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700904
905#ifdef CONFIG_IPV6_PRIVACY
906 if (ifa->flags&IFA_F_TEMPORARY) {
stephen hemminger372e6c82010-03-17 20:31:09 +0000907 list_add(&ifa->tmp_list, &idev->tempaddr_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700908 in6_ifa_hold(ifa);
909 }
910#endif
911
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912 in6_ifa_hold(ifa);
913 write_unlock(&idev->lock);
914out2:
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -0700915 rcu_read_unlock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916
YOSHIFUJI Hideakifd928332005-04-19 22:27:09 -0700917 if (likely(err == 0))
Cong Wangf88c91d2013-04-14 23:18:43 +0800918 inet6addr_notifier_call_chain(NETDEV_UP, ifa);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919 else {
920 kfree(ifa);
921 ifa = ERR_PTR(err);
922 }
923
924 return ifa;
925out:
stephen hemminger5c578aed2010-03-17 20:31:11 +0000926 spin_unlock(&addrconf_hash_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927 goto out2;
928}
929
930/* This function wants to get referenced ifp and releases it before return */
931
932static void ipv6_del_addr(struct inet6_ifaddr *ifp)
933{
stephen hemminger502a2ff2010-03-17 20:31:13 +0000934 struct inet6_ifaddr *ifa, *ifn;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700935 struct inet6_dev *idev = ifp->idev;
Herbert Xu4c5ff6a2010-05-18 15:54:18 -0700936 int state;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937 int deleted = 0, onlink = 0;
938 unsigned long expires = jiffies;
939
Herbert Xu4c5ff6a2010-05-18 15:54:18 -0700940 spin_lock_bh(&ifp->state_lock);
941 state = ifp->state;
Herbert Xue9d3e082010-05-18 15:36:06 -0700942 ifp->state = INET6_IFADDR_STATE_DEAD;
Herbert Xu4c5ff6a2010-05-18 15:54:18 -0700943 spin_unlock_bh(&ifp->state_lock);
944
945 if (state == INET6_IFADDR_STATE_DEAD)
946 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947
stephen hemminger5c578aed2010-03-17 20:31:11 +0000948 spin_lock_bh(&addrconf_hash_lock);
949 hlist_del_init_rcu(&ifp->addr_lst);
stephen hemminger5c578aed2010-03-17 20:31:11 +0000950 spin_unlock_bh(&addrconf_hash_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951
952 write_lock_bh(&idev->lock);
953#ifdef CONFIG_IPV6_PRIVACY
954 if (ifp->flags&IFA_F_TEMPORARY) {
stephen hemminger372e6c82010-03-17 20:31:09 +0000955 list_del(&ifp->tmp_list);
956 if (ifp->ifpub) {
957 in6_ifa_put(ifp->ifpub);
958 ifp->ifpub = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700959 }
stephen hemminger372e6c82010-03-17 20:31:09 +0000960 __in6_ifa_put(ifp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700961 }
962#endif
963
stephen hemminger502a2ff2010-03-17 20:31:13 +0000964 list_for_each_entry_safe(ifa, ifn, &idev->addr_list, if_list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965 if (ifa == ifp) {
stephen hemminger502a2ff2010-03-17 20:31:13 +0000966 list_del_init(&ifp->if_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967 __in6_ifa_put(ifp);
stephen hemminger502a2ff2010-03-17 20:31:13 +0000968
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969 if (!(ifp->flags & IFA_F_PERMANENT) || onlink > 0)
970 break;
971 deleted = 1;
Kristian Slavov1d142802005-12-21 18:47:24 -0800972 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973 } else if (ifp->flags & IFA_F_PERMANENT) {
974 if (ipv6_prefix_equal(&ifa->addr, &ifp->addr,
975 ifp->prefix_len)) {
976 if (ifa->flags & IFA_F_PERMANENT) {
977 onlink = 1;
978 if (deleted)
979 break;
980 } else {
981 unsigned long lifetime;
982
983 if (!onlink)
984 onlink = -1;
985
986 spin_lock(&ifa->lock);
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +0900987
988 lifetime = addrconf_timeout_fixup(ifa->valid_lft, HZ);
989 /*
990 * Note: Because this address is
991 * not permanent, lifetime <
992 * LONG_MAX / HZ here.
993 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994 if (time_before(expires,
995 ifa->tstamp + lifetime * HZ))
996 expires = ifa->tstamp + lifetime * HZ;
997 spin_unlock(&ifa->lock);
998 }
999 }
1000 }
1001 }
1002 write_unlock_bh(&idev->lock);
1003
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02001004 addrconf_del_dad_timer(ifp);
Andrey Vaginb2238562008-07-08 15:13:31 -07001005
Linus Torvalds1da177e2005-04-16 15:20:36 -07001006 ipv6_ifa_notify(RTM_DELADDR, ifp);
1007
Cong Wangf88c91d2013-04-14 23:18:43 +08001008 inet6addr_notifier_call_chain(NETDEV_DOWN, ifp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001009
Linus Torvalds1da177e2005-04-16 15:20:36 -07001010 /*
1011 * Purge or update corresponding prefix
1012 *
1013 * 1) we don't purge prefix here if address was not permanent.
1014 * prefix is managed by its own lifetime.
1015 * 2) if there're no addresses, delete prefix.
1016 * 3) if there're still other permanent address(es),
1017 * corresponding prefix is still permanent.
1018 * 4) otherwise, update prefix lifetime to the
1019 * longest valid lifetime among the corresponding
1020 * addresses on the device.
1021 * Note: subsequent RA will update lifetime.
1022 *
1023 * --yoshfuji
1024 */
1025 if ((ifp->flags & IFA_F_PERMANENT) && onlink < 1) {
1026 struct in6_addr prefix;
1027 struct rt6_info *rt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001028
Nicolas Dichtel64c6d082012-09-26 00:04:55 +00001029 ipv6_addr_prefix(&prefix, &ifp->addr, ifp->prefix_len);
Nicolas Dichtel64c6d082012-09-26 00:04:55 +00001030
Romain Kuntz21caa662013-01-09 21:06:03 +00001031 rt = addrconf_get_prefix_route(&prefix,
1032 ifp->prefix_len,
1033 ifp->idev->dev,
1034 0, RTF_GATEWAY | RTF_DEFAULT);
1035
1036 if (rt) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001037 if (onlink == 0) {
Thomas Grafe0a1ad732006-08-22 00:00:21 -07001038 ip6_del_rt(rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001039 rt = NULL;
1040 } else if (!(rt->rt6i_flags & RTF_EXPIRES)) {
Gao feng1716a962012-04-06 00:13:10 +00001041 rt6_set_expires(rt, expires);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042 }
1043 }
Amerigo Wang94e187c2012-10-29 00:13:19 +00001044 ip6_rt_put(rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001045 }
1046
Daniel Walterc3968a82011-04-13 21:10:57 +00001047 /* clean up prefsrc entries */
1048 rt6_remove_prefsrc(ifp);
Herbert Xu4c5ff6a2010-05-18 15:54:18 -07001049out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001050 in6_ifa_put(ifp);
1051}
1052
1053#ifdef CONFIG_IPV6_PRIVACY
1054static int ipv6_create_tempaddr(struct inet6_ifaddr *ifp, struct inet6_ifaddr *ift)
1055{
1056 struct inet6_dev *idev = ifp->idev;
1057 struct in6_addr addr, *tmpaddr;
Lorenzo Colitti76f793e2011-07-26 13:50:49 +00001058 unsigned long tmp_prefered_lft, tmp_valid_lft, tmp_tstamp, age;
Benoit Boissinoteac55bf2008-04-02 00:01:35 -07001059 unsigned long regen_advance;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001060 int tmp_plen;
1061 int ret = 0;
1062 int max_addresses;
Neil Horman95c385b2007-04-25 17:08:10 -07001063 u32 addr_flags;
Lorenzo Colitti76f793e2011-07-26 13:50:49 +00001064 unsigned long now = jiffies;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001065
1066 write_lock(&idev->lock);
1067 if (ift) {
1068 spin_lock_bh(&ift->lock);
1069 memcpy(&addr.s6_addr[8], &ift->addr.s6_addr[8], 8);
1070 spin_unlock_bh(&ift->lock);
1071 tmpaddr = &addr;
1072 } else {
1073 tmpaddr = NULL;
1074 }
1075retry:
1076 in6_dev_hold(idev);
1077 if (idev->cnf.use_tempaddr <= 0) {
1078 write_unlock(&idev->lock);
Joe Perchesf3213832012-05-15 14:11:53 +00001079 pr_info("%s: use_tempaddr is disabled\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001080 in6_dev_put(idev);
1081 ret = -1;
1082 goto out;
1083 }
1084 spin_lock_bh(&ifp->lock);
1085 if (ifp->regen_count++ >= idev->cnf.regen_max_retry) {
1086 idev->cnf.use_tempaddr = -1; /*XXX*/
1087 spin_unlock_bh(&ifp->lock);
1088 write_unlock(&idev->lock);
Joe Perchesf3213832012-05-15 14:11:53 +00001089 pr_warn("%s: regeneration time exceeded - disabled temporary address support\n",
1090 __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001091 in6_dev_put(idev);
1092 ret = -1;
1093 goto out;
1094 }
1095 in6_ifa_hold(ifp);
1096 memcpy(addr.s6_addr, ifp->addr.s6_addr, 8);
Sorin Dumitrueb7e0572012-08-30 02:01:45 +00001097 __ipv6_try_regen_rndid(idev, tmpaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001098 memcpy(&addr.s6_addr[8], idev->rndid, 8);
Lorenzo Colitti76f793e2011-07-26 13:50:49 +00001099 age = (now - ifp->tstamp) / HZ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001100 tmp_valid_lft = min_t(__u32,
1101 ifp->valid_lft,
Glenn Wurster7a876b02010-09-27 07:10:10 +00001102 idev->cnf.temp_valid_lft + age);
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001103 tmp_prefered_lft = min_t(__u32,
1104 ifp->prefered_lft,
Glenn Wurster7a876b02010-09-27 07:10:10 +00001105 idev->cnf.temp_prefered_lft + age -
Ben Hutchings784e2712010-06-26 11:42:55 +00001106 idev->cnf.max_desync_factor);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001107 tmp_plen = ifp->prefix_len;
1108 max_addresses = idev->cnf.max_addresses;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001109 tmp_tstamp = ifp->tstamp;
1110 spin_unlock_bh(&ifp->lock);
1111
Benoit Boissinoteac55bf2008-04-02 00:01:35 -07001112 regen_advance = idev->cnf.regen_max_retry *
David S. Miller7eaa48a2013-08-20 23:44:39 -07001113 idev->cnf.dad_transmits *
1114 idev->nd_parms->retrans_time / HZ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001115 write_unlock(&idev->lock);
Neil Horman95c385b2007-04-25 17:08:10 -07001116
Benoit Boissinoteac55bf2008-04-02 00:01:35 -07001117 /* A temporary address is created only if this calculated Preferred
1118 * Lifetime is greater than REGEN_ADVANCE time units. In particular,
1119 * an implementation must not create a temporary address with a zero
1120 * Preferred Lifetime.
1121 */
1122 if (tmp_prefered_lft <= regen_advance) {
1123 in6_ifa_put(ifp);
1124 in6_dev_put(idev);
1125 ret = -1;
1126 goto out;
1127 }
1128
Neil Horman95c385b2007-04-25 17:08:10 -07001129 addr_flags = IFA_F_TEMPORARY;
1130 /* set in addrconf_prefix_rcv() */
1131 if (ifp->flags & IFA_F_OPTIMISTIC)
1132 addr_flags |= IFA_F_OPTIMISTIC;
1133
Hannes Frederic Sowa4b08a8f2013-08-16 13:02:27 +02001134 ift = ipv6_add_addr(idev, &addr, NULL, tmp_plen,
1135 ipv6_addr_scope(&addr), addr_flags,
1136 tmp_valid_lft, tmp_prefered_lft);
1137 if (IS_ERR(ift)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001138 in6_ifa_put(ifp);
1139 in6_dev_put(idev);
Joe Perchesf3213832012-05-15 14:11:53 +00001140 pr_info("%s: retry temporary address regeneration\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001141 tmpaddr = &addr;
1142 write_lock(&idev->lock);
1143 goto retry;
1144 }
1145
1146 spin_lock_bh(&ift->lock);
1147 ift->ifpub = ifp;
Lorenzo Colitti76f793e2011-07-26 13:50:49 +00001148 ift->cstamp = now;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001149 ift->tstamp = tmp_tstamp;
1150 spin_unlock_bh(&ift->lock);
1151
David S. Millercf22f9a2012-04-14 21:37:40 -04001152 addrconf_dad_start(ift);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001153 in6_ifa_put(ift);
1154 in6_dev_put(idev);
1155out:
1156 return ret;
1157}
1158#endif
1159
1160/*
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001161 * Choose an appropriate source address (RFC3484)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001162 */
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001163enum {
1164 IPV6_SADDR_RULE_INIT = 0,
1165 IPV6_SADDR_RULE_LOCAL,
1166 IPV6_SADDR_RULE_SCOPE,
1167 IPV6_SADDR_RULE_PREFERRED,
1168#ifdef CONFIG_IPV6_MIP6
1169 IPV6_SADDR_RULE_HOA,
1170#endif
1171 IPV6_SADDR_RULE_OIF,
1172 IPV6_SADDR_RULE_LABEL,
1173#ifdef CONFIG_IPV6_PRIVACY
1174 IPV6_SADDR_RULE_PRIVACY,
1175#endif
1176 IPV6_SADDR_RULE_ORCHID,
1177 IPV6_SADDR_RULE_PREFIX,
1178 IPV6_SADDR_RULE_MAX
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001179};
1180
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001181struct ipv6_saddr_score {
1182 int rule;
1183 int addr_type;
1184 struct inet6_ifaddr *ifa;
1185 DECLARE_BITMAP(scorebits, IPV6_SADDR_RULE_MAX);
1186 int scopedist;
1187 int matchlen;
1188};
1189
1190struct ipv6_saddr_dst {
YOSHIFUJI Hideaki9acd9f32008-04-10 15:42:10 +09001191 const struct in6_addr *addr;
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001192 int ifindex;
1193 int scope;
1194 int label;
YOSHIFUJI Hideaki7cbca672008-03-25 09:37:42 +09001195 unsigned int prefs;
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001196};
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001197
Dave Jonesb6f99a22007-03-22 12:27:49 -07001198static inline int ipv6_saddr_preferred(int type)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001199{
Ulrich Weber45bb0062010-02-25 23:28:58 +00001200 if (type & (IPV6_ADDR_MAPPED|IPV6_ADDR_COMPATv4|IPV6_ADDR_LOOPBACK))
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001201 return 1;
1202 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001203}
1204
Benjamin Thery3de23252008-05-28 14:51:24 +02001205static int ipv6_get_saddr_eval(struct net *net,
1206 struct ipv6_saddr_score *score,
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001207 struct ipv6_saddr_dst *dst,
1208 int i)
1209{
1210 int ret;
1211
1212 if (i <= score->rule) {
1213 switch (i) {
1214 case IPV6_SADDR_RULE_SCOPE:
1215 ret = score->scopedist;
1216 break;
1217 case IPV6_SADDR_RULE_PREFIX:
1218 ret = score->matchlen;
1219 break;
1220 default:
1221 ret = !!test_bit(i, score->scorebits);
1222 }
1223 goto out;
1224 }
1225
1226 switch (i) {
1227 case IPV6_SADDR_RULE_INIT:
1228 /* Rule 0: remember if hiscore is not ready yet */
1229 ret = !!score->ifa;
1230 break;
1231 case IPV6_SADDR_RULE_LOCAL:
1232 /* Rule 1: Prefer same address */
1233 ret = ipv6_addr_equal(&score->ifa->addr, dst->addr);
1234 break;
1235 case IPV6_SADDR_RULE_SCOPE:
1236 /* Rule 2: Prefer appropriate scope
1237 *
1238 * ret
1239 * ^
1240 * -1 | d 15
1241 * ---+--+-+---> scope
1242 * |
1243 * | d is scope of the destination.
1244 * B-d | \
1245 * | \ <- smaller scope is better if
1246 * B-15 | \ if scope is enough for destinaion.
1247 * | ret = B - scope (-1 <= scope >= d <= 15).
1248 * d-C-1 | /
1249 * |/ <- greater is better
1250 * -C / if scope is not enough for destination.
1251 * /| ret = scope - C (-1 <= d < scope <= 15).
1252 *
1253 * d - C - 1 < B -15 (for all -1 <= d <= 15).
1254 * C > d + 14 - B >= 15 + 14 - B = 29 - B.
1255 * Assume B = 0 and we get C > 29.
1256 */
1257 ret = __ipv6_addr_src_scope(score->addr_type);
1258 if (ret >= dst->scope)
1259 ret = -ret;
1260 else
1261 ret -= 128; /* 30 is enough */
1262 score->scopedist = ret;
1263 break;
1264 case IPV6_SADDR_RULE_PREFERRED:
1265 /* Rule 3: Avoid deprecated and optimistic addresses */
1266 ret = ipv6_saddr_preferred(score->addr_type) ||
1267 !(score->ifa->flags & (IFA_F_DEPRECATED|IFA_F_OPTIMISTIC));
1268 break;
1269#ifdef CONFIG_IPV6_MIP6
1270 case IPV6_SADDR_RULE_HOA:
YOSHIFUJI Hideaki7cbca672008-03-25 09:37:42 +09001271 {
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001272 /* Rule 4: Prefer home address */
YOSHIFUJI Hideaki7cbca672008-03-25 09:37:42 +09001273 int prefhome = !(dst->prefs & IPV6_PREFER_SRC_COA);
1274 ret = !(score->ifa->flags & IFA_F_HOMEADDRESS) ^ prefhome;
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001275 break;
YOSHIFUJI Hideaki7cbca672008-03-25 09:37:42 +09001276 }
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001277#endif
1278 case IPV6_SADDR_RULE_OIF:
1279 /* Rule 5: Prefer outgoing interface */
1280 ret = (!dst->ifindex ||
1281 dst->ifindex == score->ifa->idev->dev->ifindex);
1282 break;
1283 case IPV6_SADDR_RULE_LABEL:
1284 /* Rule 6: Prefer matching label */
Benjamin Thery3de23252008-05-28 14:51:24 +02001285 ret = ipv6_addr_label(net,
1286 &score->ifa->addr, score->addr_type,
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001287 score->ifa->idev->dev->ifindex) == dst->label;
1288 break;
1289#ifdef CONFIG_IPV6_PRIVACY
1290 case IPV6_SADDR_RULE_PRIVACY:
YOSHIFUJI Hideaki7cbca672008-03-25 09:37:42 +09001291 {
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001292 /* Rule 7: Prefer public address
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001293 * Note: prefer temporary address if use_tempaddr >= 2
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001294 */
YOSHIFUJI Hideaki7cbca672008-03-25 09:37:42 +09001295 int preftmp = dst->prefs & (IPV6_PREFER_SRC_PUBLIC|IPV6_PREFER_SRC_TMP) ?
1296 !!(dst->prefs & IPV6_PREFER_SRC_TMP) :
1297 score->ifa->idev->cnf.use_tempaddr >= 2;
1298 ret = (!(score->ifa->flags & IFA_F_TEMPORARY)) ^ preftmp;
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001299 break;
YOSHIFUJI Hideaki7cbca672008-03-25 09:37:42 +09001300 }
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001301#endif
1302 case IPV6_SADDR_RULE_ORCHID:
1303 /* Rule 8-: Prefer ORCHID vs ORCHID or
1304 * non-ORCHID vs non-ORCHID
1305 */
1306 ret = !(ipv6_addr_orchid(&score->ifa->addr) ^
1307 ipv6_addr_orchid(dst->addr));
1308 break;
1309 case IPV6_SADDR_RULE_PREFIX:
1310 /* Rule 8: Use longest matching prefix */
YOSHIFUJI Hideaki / 吉藤英明91b4b042012-09-10 18:41:07 +00001311 ret = ipv6_addr_diff(&score->ifa->addr, dst->addr);
1312 if (ret > score->ifa->prefix_len)
1313 ret = score->ifa->prefix_len;
1314 score->matchlen = ret;
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001315 break;
1316 default:
1317 ret = 0;
1318 }
1319
1320 if (ret)
1321 __set_bit(i, score->scorebits);
1322 score->rule = i;
1323out:
1324 return ret;
1325}
1326
Patrick McHardyb3f644f2012-08-26 19:14:14 +02001327int ipv6_dev_get_saddr(struct net *net, const struct net_device *dst_dev,
YOSHIFUJI Hideaki9acd9f32008-04-10 15:42:10 +09001328 const struct in6_addr *daddr, unsigned int prefs,
YOSHIFUJI Hideaki7cbca672008-03-25 09:37:42 +09001329 struct in6_addr *saddr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001330{
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001331 struct ipv6_saddr_score scores[2],
1332 *score = &scores[0], *hiscore = &scores[1];
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001333 struct ipv6_saddr_dst dst;
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001334 struct net_device *dev;
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001335 int dst_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001336
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001337 dst_type = __ipv6_addr_type(daddr);
1338 dst.addr = daddr;
1339 dst.ifindex = dst_dev ? dst_dev->ifindex : 0;
1340 dst.scope = __ipv6_addr_src_scope(dst_type);
Benjamin Thery3de23252008-05-28 14:51:24 +02001341 dst.label = ipv6_addr_label(net, daddr, dst_type, dst.ifindex);
YOSHIFUJI Hideaki7cbca672008-03-25 09:37:42 +09001342 dst.prefs = prefs;
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001343
1344 hiscore->rule = -1;
1345 hiscore->ifa = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001346
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -07001347 rcu_read_lock();
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001348
Eric Dumazetc6d14c82009-11-04 05:43:23 -08001349 for_each_netdev_rcu(net, dev) {
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001350 struct inet6_dev *idev;
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001351
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001352 /* Candidate Source Address (section 4)
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001353 * - multicast and link-local destination address,
1354 * the set of candidate source address MUST only
1355 * include addresses assigned to interfaces
1356 * belonging to the same link as the outgoing
1357 * interface.
1358 * (- For site-local destination addresses, the
1359 * set of candidate source addresses MUST only
1360 * include addresses assigned to interfaces
1361 * belonging to the same site as the outgoing
1362 * interface.)
1363 */
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001364 if (((dst_type & IPV6_ADDR_MULTICAST) ||
1365 dst.scope <= IPV6_ADDR_SCOPE_LINKLOCAL) &&
1366 dst.ifindex && dev->ifindex != dst.ifindex)
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001367 continue;
1368
Linus Torvalds1da177e2005-04-16 15:20:36 -07001369 idev = __in6_dev_get(dev);
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001370 if (!idev)
1371 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001372
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001373 read_lock_bh(&idev->lock);
stephen hemminger502a2ff2010-03-17 20:31:13 +00001374 list_for_each_entry(score->ifa, &idev->addr_list, if_list) {
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001375 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001376
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001377 /*
YOSHIFUJI Hideaki6b3ae802005-12-21 22:58:01 +09001378 * - Tentative Address (RFC2462 section 5.4)
1379 * - A tentative address is not considered
1380 * "assigned to an interface" in the traditional
Neil Horman95c385b2007-04-25 17:08:10 -07001381 * sense, unless it is also flagged as optimistic.
YOSHIFUJI Hideaki6b3ae802005-12-21 22:58:01 +09001382 * - Candidate Source Address (section 4)
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001383 * - In any case, anycast addresses, multicast
1384 * addresses, and the unspecified address MUST
1385 * NOT be included in a candidate set.
1386 */
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001387 if ((score->ifa->flags & IFA_F_TENTATIVE) &&
1388 (!(score->ifa->flags & IFA_F_OPTIMISTIC)))
YOSHIFUJI Hideaki6b3ae802005-12-21 22:58:01 +09001389 continue;
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001390
1391 score->addr_type = __ipv6_addr_type(&score->ifa->addr);
1392
1393 if (unlikely(score->addr_type == IPV6_ADDR_ANY ||
1394 score->addr_type & IPV6_ADDR_MULTICAST)) {
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001395 LIMIT_NETDEBUG(KERN_DEBUG
Joe Perches3b6d821c2007-11-19 23:47:25 -08001396 "ADDRCONF: unspecified / multicast address "
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001397 "assigned as unicast address on %s",
1398 dev->name);
1399 continue;
1400 }
1401
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001402 score->rule = -1;
1403 bitmap_zero(score->scorebits, IPV6_SADDR_RULE_MAX);
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001404
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001405 for (i = 0; i < IPV6_SADDR_RULE_MAX; i++) {
1406 int minihiscore, miniscore;
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001407
Benjamin Thery3de23252008-05-28 14:51:24 +02001408 minihiscore = ipv6_get_saddr_eval(net, hiscore, &dst, i);
1409 miniscore = ipv6_get_saddr_eval(net, score, &dst, i);
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001410
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001411 if (minihiscore > miniscore) {
1412 if (i == IPV6_SADDR_RULE_SCOPE &&
1413 score->scopedist > 0) {
1414 /*
1415 * special case:
1416 * each remaining entry
1417 * has too small (not enough)
1418 * scope, because ifa entries
1419 * are sorted by their scope
1420 * values.
1421 */
1422 goto try_nextdev;
1423 }
1424 break;
1425 } else if (minihiscore < miniscore) {
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001426 if (hiscore->ifa)
1427 in6_ifa_put(hiscore->ifa);
1428
1429 in6_ifa_hold(score->ifa);
1430
Ilpo Järvinena0bffff2009-03-21 13:36:17 -07001431 swap(hiscore, score);
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001432
1433 /* restore our iterator */
1434 score->ifa = hiscore->ifa;
1435
1436 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001437 }
1438 }
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001439 }
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001440try_nextdev:
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001441 read_unlock_bh(&idev->lock);
1442 }
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -07001443 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001444
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001445 if (!hiscore->ifa)
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001446 return -EADDRNOTAVAIL;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001447
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00001448 *saddr = hiscore->ifa->addr;
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001449 in6_ifa_put(hiscore->ifa);
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001450 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001451}
YOSHIFUJI Hideaki5e5f3f02008-03-03 21:44:34 +09001452EXPORT_SYMBOL(ipv6_dev_get_saddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001453
Amerigo Wang89657792013-06-29 21:30:49 +08001454int __ipv6_get_lladdr(struct inet6_dev *idev, struct in6_addr *addr,
1455 unsigned char banned_flags)
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02001456{
1457 struct inet6_ifaddr *ifp;
1458 int err = -EADDRNOTAVAIL;
1459
1460 list_for_each_entry(ifp, &idev->addr_list, if_list) {
1461 if (ifp->scope == IFA_LINK &&
1462 !(ifp->flags & banned_flags)) {
1463 *addr = ifp->addr;
1464 err = 0;
1465 break;
1466 }
1467 }
1468 return err;
1469}
1470
Neil Horman95c385b2007-04-25 17:08:10 -07001471int ipv6_get_lladdr(struct net_device *dev, struct in6_addr *addr,
1472 unsigned char banned_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001473{
1474 struct inet6_dev *idev;
1475 int err = -EADDRNOTAVAIL;
1476
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -07001477 rcu_read_lock();
Stephen Hemmingere21e8462010-03-20 16:09:01 -07001478 idev = __in6_dev_get(dev);
1479 if (idev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001480 read_lock_bh(&idev->lock);
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02001481 err = __ipv6_get_lladdr(idev, addr, banned_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001482 read_unlock_bh(&idev->lock);
1483 }
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -07001484 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001485 return err;
1486}
1487
1488static int ipv6_count_addresses(struct inet6_dev *idev)
1489{
1490 int cnt = 0;
1491 struct inet6_ifaddr *ifp;
1492
1493 read_lock_bh(&idev->lock);
stephen hemminger502a2ff2010-03-17 20:31:13 +00001494 list_for_each_entry(ifp, &idev->addr_list, if_list)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001495 cnt++;
1496 read_unlock_bh(&idev->lock);
1497 return cnt;
1498}
1499
Eric Dumazetb71d1d42011-04-22 04:53:02 +00001500int ipv6_chk_addr(struct net *net, const struct in6_addr *addr,
Florian Westphal2a7851b2013-05-17 03:56:10 +00001501 const struct net_device *dev, int strict)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001502{
Stephen Hemmingereedf0422010-05-17 22:27:12 -07001503 struct inet6_ifaddr *ifp;
Eric Dumazetddbe5032012-07-18 08:11:12 +00001504 unsigned int hash = inet6_addr_hash(addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001505
stephen hemminger5c578aed2010-03-17 20:31:11 +00001506 rcu_read_lock_bh();
Sasha Levinb67bfe02013-02-27 17:06:00 -08001507 hlist_for_each_entry_rcu(ifp, &inet6_addr_lst[hash], addr_lst) {
YOSHIFUJI Hideaki878628f2008-03-26 03:57:35 +09001508 if (!net_eq(dev_net(ifp->idev->dev), net))
Daniel Lezcanobfeade02008-01-10 22:43:18 -08001509 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001510 if (ipv6_addr_equal(&ifp->addr, addr) &&
Stephen Hemmingereedf0422010-05-17 22:27:12 -07001511 !(ifp->flags&IFA_F_TENTATIVE) &&
1512 (dev == NULL || ifp->idev->dev == dev ||
1513 !(ifp->scope&(IFA_LINK|IFA_HOST) || strict))) {
1514 rcu_read_unlock_bh();
1515 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001516 }
1517 }
stephen hemminger5c578aed2010-03-17 20:31:11 +00001518
Stephen Hemmingereedf0422010-05-17 22:27:12 -07001519 rcu_read_unlock_bh();
1520 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001521}
YOSHIFUJI Hideaki71590392007-02-22 22:05:40 +09001522EXPORT_SYMBOL(ipv6_chk_addr);
1523
David S. Miller3e81c6d2010-03-20 16:18:00 -07001524static bool ipv6_chk_same_addr(struct net *net, const struct in6_addr *addr,
1525 struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001526{
Eric Dumazetddbe5032012-07-18 08:11:12 +00001527 unsigned int hash = inet6_addr_hash(addr);
stephen hemmingerc2e21292010-03-17 20:31:10 +00001528 struct inet6_ifaddr *ifp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001529
Sasha Levinb67bfe02013-02-27 17:06:00 -08001530 hlist_for_each_entry(ifp, &inet6_addr_lst[hash], addr_lst) {
YOSHIFUJI Hideaki878628f2008-03-26 03:57:35 +09001531 if (!net_eq(dev_net(ifp->idev->dev), net))
Daniel Lezcano06bfe652008-01-10 22:43:42 -08001532 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001533 if (ipv6_addr_equal(&ifp->addr, addr)) {
1534 if (dev == NULL || ifp->idev->dev == dev)
David S. Miller3e81c6d2010-03-20 16:18:00 -07001535 return true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001536 }
1537 }
David S. Miller3e81c6d2010-03-20 16:18:00 -07001538 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001539}
1540
Eric Dumazetb71d1d42011-04-22 04:53:02 +00001541int ipv6_chk_prefix(const struct in6_addr *addr, struct net_device *dev)
YOSHIFUJI Hideaki52eeeb82008-03-15 22:54:23 -04001542{
1543 struct inet6_dev *idev;
1544 struct inet6_ifaddr *ifa;
1545 int onlink;
1546
1547 onlink = 0;
1548 rcu_read_lock();
1549 idev = __in6_dev_get(dev);
1550 if (idev) {
1551 read_lock_bh(&idev->lock);
stephen hemminger502a2ff2010-03-17 20:31:13 +00001552 list_for_each_entry(ifa, &idev->addr_list, if_list) {
YOSHIFUJI Hideaki52eeeb82008-03-15 22:54:23 -04001553 onlink = ipv6_prefix_equal(addr, &ifa->addr,
1554 ifa->prefix_len);
1555 if (onlink)
1556 break;
1557 }
1558 read_unlock_bh(&idev->lock);
1559 }
1560 rcu_read_unlock();
1561 return onlink;
1562}
YOSHIFUJI Hideaki52eeeb82008-03-15 22:54:23 -04001563EXPORT_SYMBOL(ipv6_chk_prefix);
1564
YOSHIFUJI Hideaki9acd9f32008-04-10 15:42:10 +09001565struct inet6_ifaddr *ipv6_get_ifaddr(struct net *net, const struct in6_addr *addr,
Daniel Lezcano1cab3da2008-01-10 22:44:09 -08001566 struct net_device *dev, int strict)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001567{
David S. Millerb79d1d52010-03-25 21:39:21 -07001568 struct inet6_ifaddr *ifp, *result = NULL;
Eric Dumazetddbe5032012-07-18 08:11:12 +00001569 unsigned int hash = inet6_addr_hash(addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001570
stephen hemminger5c578aed2010-03-17 20:31:11 +00001571 rcu_read_lock_bh();
Sasha Levinb67bfe02013-02-27 17:06:00 -08001572 hlist_for_each_entry_rcu_bh(ifp, &inet6_addr_lst[hash], addr_lst) {
YOSHIFUJI Hideaki878628f2008-03-26 03:57:35 +09001573 if (!net_eq(dev_net(ifp->idev->dev), net))
Daniel Lezcano1cab3da2008-01-10 22:44:09 -08001574 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001575 if (ipv6_addr_equal(&ifp->addr, addr)) {
1576 if (dev == NULL || ifp->idev->dev == dev ||
1577 !(ifp->scope&(IFA_LINK|IFA_HOST) || strict)) {
David S. Millerb79d1d52010-03-25 21:39:21 -07001578 result = ifp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001579 in6_ifa_hold(ifp);
1580 break;
1581 }
1582 }
1583 }
stephen hemminger5c578aed2010-03-17 20:31:11 +00001584 rcu_read_unlock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001585
David S. Millerb79d1d52010-03-25 21:39:21 -07001586 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001587}
1588
Linus Torvalds1da177e2005-04-16 15:20:36 -07001589/* Gets referenced address, destroys ifaddr */
1590
Brian Haleycc411d02009-09-09 14:41:32 +00001591static void addrconf_dad_stop(struct inet6_ifaddr *ifp, int dad_failed)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001592{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001593 if (ifp->flags&IFA_F_PERMANENT) {
1594 spin_lock_bh(&ifp->lock);
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02001595 addrconf_del_dad_timer(ifp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001596 ifp->flags |= IFA_F_TENTATIVE;
Brian Haleycc411d02009-09-09 14:41:32 +00001597 if (dad_failed)
1598 ifp->flags |= IFA_F_DADFAILED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001599 spin_unlock_bh(&ifp->lock);
Herbert Xue2577a02010-03-13 12:23:29 -08001600 if (dad_failed)
1601 ipv6_ifa_notify(0, ifp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001602 in6_ifa_put(ifp);
1603#ifdef CONFIG_IPV6_PRIVACY
1604 } else if (ifp->flags&IFA_F_TEMPORARY) {
1605 struct inet6_ifaddr *ifpub;
1606 spin_lock_bh(&ifp->lock);
1607 ifpub = ifp->ifpub;
1608 if (ifpub) {
1609 in6_ifa_hold(ifpub);
1610 spin_unlock_bh(&ifp->lock);
1611 ipv6_create_tempaddr(ifpub, ifp);
1612 in6_ifa_put(ifpub);
1613 } else {
1614 spin_unlock_bh(&ifp->lock);
1615 }
1616 ipv6_del_addr(ifp);
1617#endif
1618 } else
1619 ipv6_del_addr(ifp);
1620}
1621
Herbert Xuf2344a12010-05-18 15:55:27 -07001622static int addrconf_dad_end(struct inet6_ifaddr *ifp)
1623{
1624 int err = -ENOENT;
1625
1626 spin_lock(&ifp->state_lock);
1627 if (ifp->state == INET6_IFADDR_STATE_DAD) {
1628 ifp->state = INET6_IFADDR_STATE_POSTDAD;
1629 err = 0;
1630 }
1631 spin_unlock(&ifp->state_lock);
1632
1633 return err;
1634}
1635
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09001636void addrconf_dad_failure(struct inet6_ifaddr *ifp)
1637{
YOSHIFUJI Hideaki1b34be72008-06-28 14:18:38 +09001638 struct inet6_dev *idev = ifp->idev;
Brian Haley9bdd8d42009-03-18 18:22:48 -07001639
Ursula Braun853dc2e2010-10-24 23:06:43 +00001640 if (addrconf_dad_end(ifp)) {
1641 in6_ifa_put(ifp);
Herbert Xuf2344a12010-05-18 15:55:27 -07001642 return;
Ursula Braun853dc2e2010-10-24 23:06:43 +00001643 }
Herbert Xuf2344a12010-05-18 15:55:27 -07001644
Joe Perchese87cc472012-05-13 21:56:26 +00001645 net_info_ratelimited("%s: IPv6 duplicate address %pI6c detected!\n",
1646 ifp->idev->dev->name, &ifp->addr);
Brian Haley9bdd8d42009-03-18 18:22:48 -07001647
YOSHIFUJI Hideaki1b34be72008-06-28 14:18:38 +09001648 if (idev->cnf.accept_dad > 1 && !idev->cnf.disable_ipv6) {
1649 struct in6_addr addr;
1650
1651 addr.s6_addr32[0] = htonl(0xfe800000);
1652 addr.s6_addr32[1] = 0;
1653
1654 if (!ipv6_generate_eui64(addr.s6_addr + 8, idev->dev) &&
1655 ipv6_addr_equal(&ifp->addr, &addr)) {
1656 /* DAD failed for link-local based on MAC address */
1657 idev->cnf.disable_ipv6 = 1;
Brian Haley9bdd8d42009-03-18 18:22:48 -07001658
Joe Perchesf3213832012-05-15 14:11:53 +00001659 pr_info("%s: IPv6 being disabled!\n",
Brian Haley9bdd8d42009-03-18 18:22:48 -07001660 ifp->idev->dev->name);
YOSHIFUJI Hideaki1b34be72008-06-28 14:18:38 +09001661 }
1662 }
1663
Brian Haleycc411d02009-09-09 14:41:32 +00001664 addrconf_dad_stop(ifp, 1);
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09001665}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001666
1667/* Join to solicited addr multicast group. */
1668
Eric Dumazetb71d1d42011-04-22 04:53:02 +00001669void addrconf_join_solict(struct net_device *dev, const struct in6_addr *addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001670{
1671 struct in6_addr maddr;
1672
1673 if (dev->flags&(IFF_LOOPBACK|IFF_NOARP))
1674 return;
1675
1676 addrconf_addr_solict_mult(addr, &maddr);
1677 ipv6_dev_mc_inc(dev, &maddr);
1678}
1679
Eric Dumazetb71d1d42011-04-22 04:53:02 +00001680void addrconf_leave_solict(struct inet6_dev *idev, const struct in6_addr *addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001681{
1682 struct in6_addr maddr;
1683
1684 if (idev->dev->flags&(IFF_LOOPBACK|IFF_NOARP))
1685 return;
1686
1687 addrconf_addr_solict_mult(addr, &maddr);
1688 __ipv6_dev_mc_dec(idev, &maddr);
1689}
1690
Arnaldo Carvalho de Melo20380732005-08-16 02:18:02 -03001691static void addrconf_join_anycast(struct inet6_ifaddr *ifp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001692{
1693 struct in6_addr addr;
Bjørn Mork2bda8a02011-07-05 23:04:13 +00001694 if (ifp->prefix_len == 127) /* RFC 6164 */
1695 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001696 ipv6_addr_prefix(&addr, &ifp->addr, ifp->prefix_len);
1697 if (ipv6_addr_any(&addr))
1698 return;
1699 ipv6_dev_ac_inc(ifp->idev->dev, &addr);
1700}
1701
Arnaldo Carvalho de Melo20380732005-08-16 02:18:02 -03001702static void addrconf_leave_anycast(struct inet6_ifaddr *ifp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001703{
1704 struct in6_addr addr;
YOSHIFUJI Hideaki32019e62011-07-24 11:44:34 +00001705 if (ifp->prefix_len == 127) /* RFC 6164 */
1706 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001707 ipv6_addr_prefix(&addr, &ifp->addr, ifp->prefix_len);
1708 if (ipv6_addr_any(&addr))
1709 return;
1710 __ipv6_dev_ac_dec(ifp->idev, &addr);
1711}
1712
YOSHIFUJI Hideaki073a8e02006-03-20 16:54:49 -08001713static int addrconf_ifid_eui48(u8 *eui, struct net_device *dev)
1714{
1715 if (dev->addr_len != ETH_ALEN)
1716 return -1;
1717 memcpy(eui, dev->dev_addr, 3);
1718 memcpy(eui + 5, dev->dev_addr + 3, 3);
1719
1720 /*
1721 * The zSeries OSA network cards can be shared among various
1722 * OS instances, but the OSA cards have only one MAC address.
1723 * This leads to duplicate address conflicts in conjunction
1724 * with IPv6 if more than one instance uses the same card.
1725 *
1726 * The driver for these cards can deliver a unique 16-bit
1727 * identifier for each instance sharing the same card. It is
1728 * placed instead of 0xFFFE in the interface identifier. The
1729 * "u" bit of the interface identifier is not inverted in this
1730 * case. Hence the resulting interface identifier has local
1731 * scope according to RFC2373.
1732 */
1733 if (dev->dev_id) {
1734 eui[3] = (dev->dev_id >> 8) & 0xFF;
1735 eui[4] = dev->dev_id & 0xFF;
1736 } else {
1737 eui[3] = 0xFF;
1738 eui[4] = 0xFE;
1739 eui[0] ^= 2;
1740 }
1741 return 0;
1742}
1743
alex.bluesman.smirnov@gmail.com06a4c1c2012-05-10 03:25:52 +00001744static int addrconf_ifid_eui64(u8 *eui, struct net_device *dev)
1745{
1746 if (dev->addr_len != IEEE802154_ADDR_LEN)
1747 return -1;
1748 memcpy(eui, dev->dev_addr, 8);
YOSHIFUJI Hideaki / 吉藤英明5e98a362013-01-28 10:44:29 +00001749 eui[0] ^= 2;
alex.bluesman.smirnov@gmail.com06a4c1c2012-05-10 03:25:52 +00001750 return 0;
1751}
1752
YOSHIFUJI Hideaki / 吉藤英明cb6bf352013-03-25 08:26:24 +00001753static int addrconf_ifid_ieee1394(u8 *eui, struct net_device *dev)
1754{
1755 union fwnet_hwaddr *ha;
1756
1757 if (dev->addr_len != FWNET_ALEN)
1758 return -1;
1759
1760 ha = (union fwnet_hwaddr *)dev->dev_addr;
1761
1762 memcpy(eui, &ha->uc.uniq_id, sizeof(ha->uc.uniq_id));
1763 eui[0] ^= 2;
1764 return 0;
1765}
1766
YOSHIFUJI Hideaki073a8e02006-03-20 16:54:49 -08001767static int addrconf_ifid_arcnet(u8 *eui, struct net_device *dev)
1768{
1769 /* XXX: inherit EUI-64 from other interface -- yoshfuji */
1770 if (dev->addr_len != ARCNET_ALEN)
1771 return -1;
1772 memset(eui, 0, 7);
Eldad Zack8e5e8f32012-04-01 07:49:08 +00001773 eui[7] = *(u8 *)dev->dev_addr;
YOSHIFUJI Hideaki073a8e02006-03-20 16:54:49 -08001774 return 0;
1775}
1776
1777static int addrconf_ifid_infiniband(u8 *eui, struct net_device *dev)
1778{
1779 if (dev->addr_len != INFINIBAND_ALEN)
1780 return -1;
1781 memcpy(eui, dev->dev_addr + 12, 8);
1782 eui[0] |= 2;
1783 return 0;
1784}
1785
stephen hemmingerc61393e2010-10-04 20:17:53 +00001786static int __ipv6_isatap_ifid(u8 *eui, __be32 addr)
YOSHIFUJI Hideakidfd982b2008-04-10 15:42:09 +09001787{
Sascha Hlusiak9af28512009-05-19 12:56:51 +00001788 if (addr == 0)
1789 return -1;
YOSHIFUJI Hideakidfd982b2008-04-10 15:42:09 +09001790 eui[0] = (ipv4_is_zeronet(addr) || ipv4_is_private_10(addr) ||
1791 ipv4_is_loopback(addr) || ipv4_is_linklocal_169(addr) ||
1792 ipv4_is_private_172(addr) || ipv4_is_test_192(addr) ||
1793 ipv4_is_anycast_6to4(addr) || ipv4_is_private_192(addr) ||
1794 ipv4_is_test_198(addr) || ipv4_is_multicast(addr) ||
1795 ipv4_is_lbcast(addr)) ? 0x00 : 0x02;
1796 eui[1] = 0;
1797 eui[2] = 0x5E;
1798 eui[3] = 0xFE;
1799 memcpy(eui + 4, &addr, 4);
1800 return 0;
1801}
YOSHIFUJI Hideakidfd982b2008-04-10 15:42:09 +09001802
1803static int addrconf_ifid_sit(u8 *eui, struct net_device *dev)
1804{
1805 if (dev->priv_flags & IFF_ISATAP)
1806 return __ipv6_isatap_ifid(eui, *(__be32 *)dev->dev_addr);
1807 return -1;
1808}
1809
stephen hemmingeraee80b52011-06-08 10:44:30 +00001810static int addrconf_ifid_gre(u8 *eui, struct net_device *dev)
1811{
1812 return __ipv6_isatap_ifid(eui, *(__be32 *)dev->dev_addr);
1813}
1814
Nicolas Dichtele8377352013-08-20 12:16:06 +02001815static int addrconf_ifid_ip6tnl(u8 *eui, struct net_device *dev)
1816{
1817 memcpy(eui, dev->perm_addr, 3);
1818 memcpy(eui + 5, dev->perm_addr + 3, 3);
1819 eui[3] = 0xFF;
1820 eui[4] = 0xFE;
1821 eui[0] ^= 2;
1822 return 0;
1823}
1824
Linus Torvalds1da177e2005-04-16 15:20:36 -07001825static int ipv6_generate_eui64(u8 *eui, struct net_device *dev)
1826{
1827 switch (dev->type) {
1828 case ARPHRD_ETHER:
1829 case ARPHRD_FDDI:
YOSHIFUJI Hideaki073a8e02006-03-20 16:54:49 -08001830 return addrconf_ifid_eui48(eui, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001831 case ARPHRD_ARCNET:
YOSHIFUJI Hideaki073a8e02006-03-20 16:54:49 -08001832 return addrconf_ifid_arcnet(eui, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001833 case ARPHRD_INFINIBAND:
YOSHIFUJI Hideaki073a8e02006-03-20 16:54:49 -08001834 return addrconf_ifid_infiniband(eui, dev);
Fred L. Templinc7dc89c2007-11-29 22:11:40 +11001835 case ARPHRD_SIT:
YOSHIFUJI Hideakidfd982b2008-04-10 15:42:09 +09001836 return addrconf_ifid_sit(eui, dev);
stephen hemmingeraee80b52011-06-08 10:44:30 +00001837 case ARPHRD_IPGRE:
1838 return addrconf_ifid_gre(eui, dev);
alex.bluesman.smirnov@gmail.com06a4c1c2012-05-10 03:25:52 +00001839 case ARPHRD_IEEE802154:
1840 return addrconf_ifid_eui64(eui, dev);
YOSHIFUJI Hideaki / 吉藤英明cb6bf352013-03-25 08:26:24 +00001841 case ARPHRD_IEEE1394:
1842 return addrconf_ifid_ieee1394(eui, dev);
Nicolas Dichtele8377352013-08-20 12:16:06 +02001843 case ARPHRD_TUNNEL6:
1844 return addrconf_ifid_ip6tnl(eui, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001845 }
1846 return -1;
1847}
1848
1849static int ipv6_inherit_eui64(u8 *eui, struct inet6_dev *idev)
1850{
1851 int err = -1;
1852 struct inet6_ifaddr *ifp;
1853
1854 read_lock_bh(&idev->lock);
stephen hemminger502a2ff2010-03-17 20:31:13 +00001855 list_for_each_entry(ifp, &idev->addr_list, if_list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001856 if (ifp->scope == IFA_LINK && !(ifp->flags&IFA_F_TENTATIVE)) {
1857 memcpy(eui, ifp->addr.s6_addr+8, 8);
1858 err = 0;
1859 break;
1860 }
1861 }
1862 read_unlock_bh(&idev->lock);
1863 return err;
1864}
1865
1866#ifdef CONFIG_IPV6_PRIVACY
1867/* (re)generation of randomized interface identifier (RFC 3041 3.2, 3.5) */
Sorin Dumitrueb7e0572012-08-30 02:01:45 +00001868static void __ipv6_regen_rndid(struct inet6_dev *idev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001869{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001870regen:
YOSHIFUJI Hideaki955189e2006-03-20 16:54:09 -08001871 get_random_bytes(idev->rndid, sizeof(idev->rndid));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001872 idev->rndid[0] &= ~0x02;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001873
1874 /*
1875 * <draft-ietf-ipngwg-temp-addresses-v2-00.txt>:
1876 * check if generated address is not inappropriate
1877 *
1878 * - Reserved subnet anycast (RFC 2526)
1879 * 11111101 11....11 1xxxxxxx
Fred L. Templinc7dc89c2007-11-29 22:11:40 +11001880 * - ISATAP (RFC4214) 6.1
Linus Torvalds1da177e2005-04-16 15:20:36 -07001881 * 00-00-5E-FE-xx-xx-xx-xx
1882 * - value 0
1883 * - XXX: already assigned to an address on the device
1884 */
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001885 if (idev->rndid[0] == 0xfd &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07001886 (idev->rndid[1]&idev->rndid[2]&idev->rndid[3]&idev->rndid[4]&idev->rndid[5]&idev->rndid[6]) == 0xff &&
1887 (idev->rndid[7]&0x80))
1888 goto regen;
1889 if ((idev->rndid[0]|idev->rndid[1]) == 0) {
1890 if (idev->rndid[2] == 0x5e && idev->rndid[3] == 0xfe)
1891 goto regen;
1892 if ((idev->rndid[2]|idev->rndid[3]|idev->rndid[4]|idev->rndid[5]|idev->rndid[6]|idev->rndid[7]) == 0x00)
1893 goto regen;
1894 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001895}
1896
1897static void ipv6_regen_rndid(unsigned long data)
1898{
1899 struct inet6_dev *idev = (struct inet6_dev *) data;
1900 unsigned long expires;
1901
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -07001902 rcu_read_lock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001903 write_lock_bh(&idev->lock);
1904
1905 if (idev->dead)
1906 goto out;
1907
Sorin Dumitrueb7e0572012-08-30 02:01:45 +00001908 __ipv6_regen_rndid(idev);
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001909
Linus Torvalds1da177e2005-04-16 15:20:36 -07001910 expires = jiffies +
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001911 idev->cnf.temp_prefered_lft * HZ -
Ben Hutchings784e2712010-06-26 11:42:55 +00001912 idev->cnf.regen_max_retry * idev->cnf.dad_transmits * idev->nd_parms->retrans_time -
1913 idev->cnf.max_desync_factor * HZ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001914 if (time_before(expires, jiffies)) {
Joe Perchesf3213832012-05-15 14:11:53 +00001915 pr_warn("%s: too short regeneration interval; timer disabled for %s\n",
1916 __func__, idev->dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001917 goto out;
1918 }
1919
1920 if (!mod_timer(&idev->regen_timer, expires))
1921 in6_dev_hold(idev);
1922
1923out:
1924 write_unlock_bh(&idev->lock);
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -07001925 rcu_read_unlock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001926 in6_dev_put(idev);
1927}
1928
Sorin Dumitrueb7e0572012-08-30 02:01:45 +00001929static void __ipv6_try_regen_rndid(struct inet6_dev *idev, struct in6_addr *tmpaddr)
Eldad Zack8e5e8f32012-04-01 07:49:08 +00001930{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001931 if (tmpaddr && memcmp(idev->rndid, &tmpaddr->s6_addr[8], 8) == 0)
Sorin Dumitrueb7e0572012-08-30 02:01:45 +00001932 __ipv6_regen_rndid(idev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001933}
1934#endif
1935
1936/*
1937 * Add prefix route.
1938 */
1939
1940static void
1941addrconf_prefix_route(struct in6_addr *pfx, int plen, struct net_device *dev,
Jamal Hadi Salime431b8c2005-06-18 22:55:31 -07001942 unsigned long expires, u32 flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001943{
Thomas Graf86872cb2006-08-22 00:01:08 -07001944 struct fib6_config cfg = {
1945 .fc_table = RT6_TABLE_PREFIX,
1946 .fc_metric = IP6_RT_PRIO_ADDRCONF,
1947 .fc_ifindex = dev->ifindex,
1948 .fc_expires = expires,
1949 .fc_dst_len = plen,
1950 .fc_flags = RTF_UP | flags,
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09001951 .fc_nlinfo.nl_net = dev_net(dev),
Stephen Hemmingerf410a1f2008-08-23 05:16:46 -07001952 .fc_protocol = RTPROT_KERNEL,
Thomas Graf86872cb2006-08-22 00:01:08 -07001953 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001954
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00001955 cfg.fc_dst = *pfx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001956
1957 /* Prevent useless cloning on PtP SIT.
1958 This thing is done here expecting that the whole
1959 class of non-broadcast devices need not cloning.
1960 */
Amerigo Wang07a93622012-10-29 16:23:10 +00001961#if IS_ENABLED(CONFIG_IPV6_SIT)
Thomas Graf86872cb2006-08-22 00:01:08 -07001962 if (dev->type == ARPHRD_SIT && (dev->flags & IFF_POINTOPOINT))
1963 cfg.fc_flags |= RTF_NONEXTHOP;
Joerg Roedel0be669b2006-10-10 14:49:53 -07001964#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001965
Thomas Graf86872cb2006-08-22 00:01:08 -07001966 ip6_route_add(&cfg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001967}
1968
Andreas Hofmeister14ef37b2011-10-26 03:24:29 +00001969
1970static struct rt6_info *addrconf_get_prefix_route(const struct in6_addr *pfx,
1971 int plen,
1972 const struct net_device *dev,
1973 u32 flags, u32 noflags)
1974{
1975 struct fib6_node *fn;
1976 struct rt6_info *rt = NULL;
1977 struct fib6_table *table;
1978
1979 table = fib6_get_table(dev_net(dev), RT6_TABLE_PREFIX);
1980 if (table == NULL)
1981 return NULL;
1982
Li RongQing5744dd92012-09-11 21:59:01 +00001983 read_lock_bh(&table->tb6_lock);
Andreas Hofmeister14ef37b2011-10-26 03:24:29 +00001984 fn = fib6_locate(&table->tb6_root, pfx, plen, NULL, 0);
1985 if (!fn)
1986 goto out;
1987 for (rt = fn->leaf; rt; rt = rt->dst.rt6_next) {
David S. Millerd1918542011-12-28 20:19:20 -05001988 if (rt->dst.dev->ifindex != dev->ifindex)
Andreas Hofmeister14ef37b2011-10-26 03:24:29 +00001989 continue;
1990 if ((rt->rt6i_flags & flags) != flags)
1991 continue;
Romain Kuntz85da53b2013-01-09 15:02:26 +01001992 if ((rt->rt6i_flags & noflags) != 0)
Andreas Hofmeister14ef37b2011-10-26 03:24:29 +00001993 continue;
1994 dst_hold(&rt->dst);
1995 break;
1996 }
1997out:
Li RongQing5744dd92012-09-11 21:59:01 +00001998 read_unlock_bh(&table->tb6_lock);
Andreas Hofmeister14ef37b2011-10-26 03:24:29 +00001999 return rt;
2000}
2001
2002
Linus Torvalds1da177e2005-04-16 15:20:36 -07002003/* Create "default" multicast route to the interface */
2004
2005static void addrconf_add_mroute(struct net_device *dev)
2006{
Thomas Graf86872cb2006-08-22 00:01:08 -07002007 struct fib6_config cfg = {
2008 .fc_table = RT6_TABLE_LOCAL,
2009 .fc_metric = IP6_RT_PRIO_ADDRCONF,
2010 .fc_ifindex = dev->ifindex,
2011 .fc_dst_len = 8,
2012 .fc_flags = RTF_UP,
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09002013 .fc_nlinfo.nl_net = dev_net(dev),
Thomas Graf86872cb2006-08-22 00:01:08 -07002014 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002015
Thomas Graf86872cb2006-08-22 00:01:08 -07002016 ipv6_addr_set(&cfg.fc_dst, htonl(0xFF000000), 0, 0, 0);
2017
2018 ip6_route_add(&cfg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002019}
2020
Amerigo Wang07a93622012-10-29 16:23:10 +00002021#if IS_ENABLED(CONFIG_IPV6_SIT)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002022static void sit_route_add(struct net_device *dev)
2023{
Thomas Graf86872cb2006-08-22 00:01:08 -07002024 struct fib6_config cfg = {
2025 .fc_table = RT6_TABLE_MAIN,
2026 .fc_metric = IP6_RT_PRIO_ADDRCONF,
2027 .fc_ifindex = dev->ifindex,
2028 .fc_dst_len = 96,
2029 .fc_flags = RTF_UP | RTF_NONEXTHOP,
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09002030 .fc_nlinfo.nl_net = dev_net(dev),
Thomas Graf86872cb2006-08-22 00:01:08 -07002031 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002032
2033 /* prefix length - 96 bits "::d.d.d.d" */
Thomas Graf86872cb2006-08-22 00:01:08 -07002034 ip6_route_add(&cfg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002035}
Joerg Roedel0be669b2006-10-10 14:49:53 -07002036#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002037
Linus Torvalds1da177e2005-04-16 15:20:36 -07002038static struct inet6_dev *addrconf_add_dev(struct net_device *dev)
2039{
2040 struct inet6_dev *idev;
2041
2042 ASSERT_RTNL();
2043
Stephen Hemmingere21e8462010-03-20 16:09:01 -07002044 idev = ipv6_find_idev(dev);
2045 if (!idev)
Brian Haley64e724f2010-07-20 10:34:30 +00002046 return ERR_PTR(-ENOBUFS);
2047
2048 if (idev->cnf.disable_ipv6)
2049 return ERR_PTR(-EACCES);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002050
2051 /* Add default multicast route */
Li Wei4af04ab2011-12-06 21:23:45 +00002052 if (!(dev->flags & IFF_LOOPBACK))
2053 addrconf_add_mroute(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002054
Linus Torvalds1da177e2005-04-16 15:20:36 -07002055 return idev;
2056}
2057
Neil Hormane6bff992012-01-04 10:49:15 +00002058void addrconf_prefix_rcv(struct net_device *dev, u8 *opt, int len, bool sllao)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002059{
2060 struct prefix_info *pinfo;
2061 __u32 valid_lft;
2062 __u32 prefered_lft;
2063 int addr_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002064 struct inet6_dev *in6_dev;
Brian Haley56d417b2009-06-01 03:07:33 -07002065 struct net *net = dev_net(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002066
2067 pinfo = (struct prefix_info *) opt;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002068
Linus Torvalds1da177e2005-04-16 15:20:36 -07002069 if (len < sizeof(struct prefix_info)) {
dingtianhongba3542e2013-08-17 10:27:04 +08002070 ADBG("addrconf: prefix option too short\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002071 return;
2072 }
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002073
Linus Torvalds1da177e2005-04-16 15:20:36 -07002074 /*
2075 * Validation checks ([ADDRCONF], page 19)
2076 */
2077
2078 addr_type = ipv6_addr_type(&pinfo->prefix);
2079
2080 if (addr_type & (IPV6_ADDR_MULTICAST|IPV6_ADDR_LINKLOCAL))
2081 return;
2082
2083 valid_lft = ntohl(pinfo->valid);
2084 prefered_lft = ntohl(pinfo->prefered);
2085
2086 if (prefered_lft > valid_lft) {
Joe Perchese87cc472012-05-13 21:56:26 +00002087 net_warn_ratelimited("addrconf: prefix option has invalid lifetime\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002088 return;
2089 }
2090
2091 in6_dev = in6_dev_get(dev);
2092
2093 if (in6_dev == NULL) {
Joe Perchese87cc472012-05-13 21:56:26 +00002094 net_dbg_ratelimited("addrconf: device %s not configured\n",
2095 dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002096 return;
2097 }
2098
2099 /*
2100 * Two things going on here:
2101 * 1) Add routes for on-link prefixes
2102 * 2) Configure prefixes with the auto flag set
2103 */
2104
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +09002105 if (pinfo->onlink) {
2106 struct rt6_info *rt;
2107 unsigned long rt_expires;
2108
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07002109 /* Avoid arithmetic overflow. Really, we could
2110 * save rt_expires in seconds, likely valid_lft,
2111 * but it would require division in fib gc, that it
2112 * not good.
2113 */
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +09002114 if (HZ > USER_HZ)
2115 rt_expires = addrconf_timeout_fixup(valid_lft, HZ);
2116 else
2117 rt_expires = addrconf_timeout_fixup(valid_lft, USER_HZ);
YOSHIFUJI Hideaki3dd4bc62005-12-19 14:02:45 -08002118
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +09002119 if (addrconf_finite_timeout(rt_expires))
2120 rt_expires *= HZ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002121
Andreas Hofmeister14ef37b2011-10-26 03:24:29 +00002122 rt = addrconf_get_prefix_route(&pinfo->prefix,
2123 pinfo->prefix_len,
2124 dev,
2125 RTF_ADDRCONF | RTF_PREFIX_RT,
2126 RTF_GATEWAY | RTF_DEFAULT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002127
Andreas Hofmeister14ef37b2011-10-26 03:24:29 +00002128 if (rt) {
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07002129 /* Autoconf prefix route */
2130 if (valid_lft == 0) {
2131 ip6_del_rt(rt);
2132 rt = NULL;
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +09002133 } else if (addrconf_finite_timeout(rt_expires)) {
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07002134 /* not infinity */
Gao feng1716a962012-04-06 00:13:10 +00002135 rt6_set_expires(rt, jiffies + rt_expires);
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07002136 } else {
Gao feng1716a962012-04-06 00:13:10 +00002137 rt6_clean_expires(rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002138 }
2139 } else if (valid_lft) {
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07002140 clock_t expires = 0;
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +09002141 int flags = RTF_ADDRCONF | RTF_PREFIX_RT;
2142 if (addrconf_finite_timeout(rt_expires)) {
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07002143 /* not infinity */
2144 flags |= RTF_EXPIRES;
2145 expires = jiffies_to_clock_t(rt_expires);
2146 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002147 addrconf_prefix_route(&pinfo->prefix, pinfo->prefix_len,
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07002148 dev, expires, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002149 }
Amerigo Wang94e187c2012-10-29 00:13:19 +00002150 ip6_rt_put(rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002151 }
2152
2153 /* Try to figure out our local address for this prefix */
2154
2155 if (pinfo->autoconf && in6_dev->cnf.autoconf) {
Eldad Zack8e5e8f32012-04-01 07:49:08 +00002156 struct inet6_ifaddr *ifp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002157 struct in6_addr addr;
2158 int create = 0, update_lft = 0;
Daniel Borkmann617fe292013-04-09 03:47:16 +00002159 bool tokenized = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002160
2161 if (pinfo->prefix_len == 64) {
2162 memcpy(&addr, &pinfo->prefix, 8);
Daniel Borkmannf53adae2013-04-08 04:01:30 +00002163
2164 if (!ipv6_addr_any(&in6_dev->token)) {
2165 read_lock_bh(&in6_dev->lock);
2166 memcpy(addr.s6_addr + 8,
2167 in6_dev->token.s6_addr + 8, 8);
2168 read_unlock_bh(&in6_dev->lock);
Daniel Borkmann617fe292013-04-09 03:47:16 +00002169 tokenized = true;
Daniel Borkmannf53adae2013-04-08 04:01:30 +00002170 } else if (ipv6_generate_eui64(addr.s6_addr + 8, dev) &&
2171 ipv6_inherit_eui64(addr.s6_addr + 8, in6_dev)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002172 in6_dev_put(in6_dev);
2173 return;
2174 }
2175 goto ok;
2176 }
Joe Perchese87cc472012-05-13 21:56:26 +00002177 net_dbg_ratelimited("IPv6 addrconf: prefix with wrong length %d\n",
2178 pinfo->prefix_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002179 in6_dev_put(in6_dev);
2180 return;
2181
2182ok:
2183
YOSHIFUJI Hideaki53b79972008-07-19 22:35:03 -07002184 ifp = ipv6_get_ifaddr(net, &addr, dev, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002185
2186 if (ifp == NULL && valid_lft) {
2187 int max_addresses = in6_dev->cnf.max_addresses;
Neil Horman95c385b2007-04-25 17:08:10 -07002188 u32 addr_flags = 0;
2189
2190#ifdef CONFIG_IPV6_OPTIMISTIC_DAD
2191 if (in6_dev->cnf.optimistic_dad &&
Neil Hormane6bff992012-01-04 10:49:15 +00002192 !net->ipv6.devconf_all->forwarding && sllao)
Neil Horman95c385b2007-04-25 17:08:10 -07002193 addr_flags = IFA_F_OPTIMISTIC;
2194#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002195
2196 /* Do not allow to create too much of autoconfigured
2197 * addresses; this would be too easy way to crash kernel.
2198 */
2199 if (!max_addresses ||
2200 ipv6_count_addresses(in6_dev) < max_addresses)
Jiri Pirko3f8f5292013-08-01 10:41:27 +02002201 ifp = ipv6_add_addr(in6_dev, &addr, NULL,
2202 pinfo->prefix_len,
Neil Horman95c385b2007-04-25 17:08:10 -07002203 addr_type&IPV6_ADDR_SCOPE_MASK,
Jiri Benc8a226b22013-08-01 10:41:28 +02002204 addr_flags, valid_lft,
2205 prefered_lft);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002206
YOSHIFUJI Hideaki / 吉藤英明3f0d2ba2013-01-22 06:32:54 +00002207 if (IS_ERR_OR_NULL(ifp)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002208 in6_dev_put(in6_dev);
2209 return;
2210 }
2211
Jiri Benc8a226b22013-08-01 10:41:28 +02002212 update_lft = 0;
2213 create = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002214 ifp->cstamp = jiffies;
Daniel Borkmann617fe292013-04-09 03:47:16 +00002215 ifp->tokenized = tokenized;
David S. Millercf22f9a2012-04-14 21:37:40 -04002216 addrconf_dad_start(ifp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002217 }
2218
2219 if (ifp) {
2220 int flags;
2221 unsigned long now;
2222#ifdef CONFIG_IPV6_PRIVACY
2223 struct inet6_ifaddr *ift;
2224#endif
2225 u32 stored_lft;
2226
2227 /* update lifetime (RFC2462 5.5.3 e) */
2228 spin_lock(&ifp->lock);
2229 now = jiffies;
2230 if (ifp->valid_lft > (now - ifp->tstamp) / HZ)
2231 stored_lft = ifp->valid_lft - (now - ifp->tstamp) / HZ;
2232 else
2233 stored_lft = 0;
Jiri Benc8a226b22013-08-01 10:41:28 +02002234 if (!update_lft && !create && stored_lft) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002235 if (valid_lft > MIN_VALID_LIFETIME ||
2236 valid_lft > stored_lft)
2237 update_lft = 1;
2238 else if (stored_lft <= MIN_VALID_LIFETIME) {
2239 /* valid_lft <= stored_lft is always true */
Brian Haleya1ed0522009-07-02 07:10:52 +00002240 /*
2241 * RFC 4862 Section 5.5.3e:
2242 * "Note that the preferred lifetime of
2243 * the corresponding address is always
2244 * reset to the Preferred Lifetime in
2245 * the received Prefix Information
2246 * option, regardless of whether the
2247 * valid lifetime is also reset or
2248 * ignored."
2249 *
2250 * So if the preferred lifetime in
2251 * this advertisement is different
2252 * than what we have stored, but the
2253 * valid lifetime is invalid, just
2254 * reset prefered_lft.
2255 *
2256 * We must set the valid lifetime
2257 * to the stored lifetime since we'll
2258 * be updating the timestamp below,
2259 * else we'll set it back to the
Lucas De Marchi25985ed2011-03-30 22:57:33 -03002260 * minimum.
Brian Haleya1ed0522009-07-02 07:10:52 +00002261 */
2262 if (prefered_lft != ifp->prefered_lft) {
2263 valid_lft = stored_lft;
2264 update_lft = 1;
2265 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002266 } else {
2267 valid_lft = MIN_VALID_LIFETIME;
2268 if (valid_lft < prefered_lft)
2269 prefered_lft = valid_lft;
2270 update_lft = 1;
2271 }
2272 }
2273
2274 if (update_lft) {
2275 ifp->valid_lft = valid_lft;
2276 ifp->prefered_lft = prefered_lft;
2277 ifp->tstamp = now;
2278 flags = ifp->flags;
2279 ifp->flags &= ~IFA_F_DEPRECATED;
2280 spin_unlock(&ifp->lock);
2281
2282 if (!(flags&IFA_F_TENTATIVE))
2283 ipv6_ifa_notify(0, ifp);
2284 } else
2285 spin_unlock(&ifp->lock);
2286
2287#ifdef CONFIG_IPV6_PRIVACY
2288 read_lock_bh(&in6_dev->lock);
2289 /* update all temporary addresses in the list */
Lorenzo Colitti76f793e2011-07-26 13:50:49 +00002290 list_for_each_entry(ift, &in6_dev->tempaddr_list,
2291 tmp_list) {
2292 int age, max_valid, max_prefered;
2293
Benoit Boissinotc6fbfac2008-04-02 00:00:58 -07002294 if (ifp != ift->ifpub)
2295 continue;
2296
Lorenzo Colitti76f793e2011-07-26 13:50:49 +00002297 /*
2298 * RFC 4941 section 3.3:
2299 * If a received option will extend the lifetime
2300 * of a public address, the lifetimes of
2301 * temporary addresses should be extended,
2302 * subject to the overall constraint that no
2303 * temporary addresses should ever remain
2304 * "valid" or "preferred" for a time longer than
2305 * (TEMP_VALID_LIFETIME) or
2306 * (TEMP_PREFERRED_LIFETIME - DESYNC_FACTOR),
2307 * respectively.
2308 */
2309 age = (now - ift->cstamp) / HZ;
2310 max_valid = in6_dev->cnf.temp_valid_lft - age;
2311 if (max_valid < 0)
2312 max_valid = 0;
2313
2314 max_prefered = in6_dev->cnf.temp_prefered_lft -
2315 in6_dev->cnf.max_desync_factor -
2316 age;
2317 if (max_prefered < 0)
2318 max_prefered = 0;
2319
2320 if (valid_lft > max_valid)
2321 valid_lft = max_valid;
2322
2323 if (prefered_lft > max_prefered)
2324 prefered_lft = max_prefered;
2325
Linus Torvalds1da177e2005-04-16 15:20:36 -07002326 spin_lock(&ift->lock);
2327 flags = ift->flags;
Lorenzo Colitti76f793e2011-07-26 13:50:49 +00002328 ift->valid_lft = valid_lft;
2329 ift->prefered_lft = prefered_lft;
2330 ift->tstamp = now;
2331 if (prefered_lft > 0)
2332 ift->flags &= ~IFA_F_DEPRECATED;
2333
Linus Torvalds1da177e2005-04-16 15:20:36 -07002334 spin_unlock(&ift->lock);
2335 if (!(flags&IFA_F_TENTATIVE))
2336 ipv6_ifa_notify(0, ift);
2337 }
2338
Glenn Wursteraed65502010-09-27 07:04:30 +00002339 if ((create || list_empty(&in6_dev->tempaddr_list)) && in6_dev->cnf.use_tempaddr > 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002340 /*
Lorenzo Colitti76f793e2011-07-26 13:50:49 +00002341 * When a new public address is created as
2342 * described in [ADDRCONF], also create a new
2343 * temporary address. Also create a temporary
2344 * address if it's enabled but no temporary
2345 * address currently exists.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002346 */
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002347 read_unlock_bh(&in6_dev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002348 ipv6_create_tempaddr(ifp, NULL);
2349 } else {
2350 read_unlock_bh(&in6_dev->lock);
2351 }
2352#endif
2353 in6_ifa_put(ifp);
2354 addrconf_verify(0);
2355 }
2356 }
2357 inet6_prefix_notify(RTM_NEWPREFIX, in6_dev, pinfo);
2358 in6_dev_put(in6_dev);
2359}
2360
2361/*
2362 * Set destination address.
2363 * Special case for SIT interfaces where we create a new "virtual"
2364 * device.
2365 */
Daniel Lezcanoaf284932008-03-05 10:46:57 -08002366int addrconf_set_dstaddr(struct net *net, void __user *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002367{
2368 struct in6_ifreq ireq;
2369 struct net_device *dev;
2370 int err = -EINVAL;
2371
2372 rtnl_lock();
2373
2374 err = -EFAULT;
2375 if (copy_from_user(&ireq, arg, sizeof(struct in6_ifreq)))
2376 goto err_exit;
2377
Daniel Lezcanoaf284932008-03-05 10:46:57 -08002378 dev = __dev_get_by_index(net, ireq.ifr6_ifindex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002379
2380 err = -ENODEV;
2381 if (dev == NULL)
2382 goto err_exit;
2383
Amerigo Wang07a93622012-10-29 16:23:10 +00002384#if IS_ENABLED(CONFIG_IPV6_SIT)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002385 if (dev->type == ARPHRD_SIT) {
Stephen Hemminger5bc3eb72008-11-19 21:52:05 -08002386 const struct net_device_ops *ops = dev->netdev_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002387 struct ifreq ifr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002388 struct ip_tunnel_parm p;
2389
2390 err = -EADDRNOTAVAIL;
2391 if (!(ipv6_addr_type(&ireq.ifr6_addr) & IPV6_ADDR_COMPATv4))
2392 goto err_exit;
2393
2394 memset(&p, 0, sizeof(p));
2395 p.iph.daddr = ireq.ifr6_addr.s6_addr32[3];
2396 p.iph.saddr = 0;
2397 p.iph.version = 4;
2398 p.iph.ihl = 5;
2399 p.iph.protocol = IPPROTO_IPV6;
2400 p.iph.ttl = 64;
Stephen Hemmingerd20b3102008-01-21 00:48:43 -08002401 ifr.ifr_ifru.ifru_data = (__force void __user *)&p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002402
Stephen Hemminger5bc3eb72008-11-19 21:52:05 -08002403 if (ops->ndo_do_ioctl) {
2404 mm_segment_t oldfs = get_fs();
2405
2406 set_fs(KERNEL_DS);
2407 err = ops->ndo_do_ioctl(dev, &ifr, SIOCADDTUNNEL);
2408 set_fs(oldfs);
2409 } else
2410 err = -EOPNOTSUPP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002411
2412 if (err == 0) {
2413 err = -ENOBUFS;
Daniel Lezcanoaf284932008-03-05 10:46:57 -08002414 dev = __dev_get_by_name(net, p.name);
2415 if (!dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002416 goto err_exit;
2417 err = dev_open(dev);
2418 }
2419 }
Joerg Roedel0be669b2006-10-10 14:49:53 -07002420#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002421
2422err_exit:
2423 rtnl_unlock();
2424 return err;
2425}
2426
2427/*
2428 * Manual configuration of address on an interface
2429 */
Eric Dumazetb71d1d42011-04-22 04:53:02 +00002430static int inet6_addr_add(struct net *net, int ifindex, const struct in6_addr *pfx,
Nicolas Dichtelcaeaba72013-05-16 22:32:00 +00002431 const struct in6_addr *peer_pfx,
Thomas Graf24ef0da2008-05-28 16:54:22 +02002432 unsigned int plen, __u8 ifa_flags, __u32 prefered_lft,
Daniel Lezcanoaf284932008-03-05 10:46:57 -08002433 __u32 valid_lft)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002434{
2435 struct inet6_ifaddr *ifp;
2436 struct inet6_dev *idev;
2437 struct net_device *dev;
2438 int scope;
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07002439 u32 flags;
2440 clock_t expires;
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +09002441 unsigned long timeout;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002442
2443 ASSERT_RTNL();
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002444
Thomas Graf24ef0da2008-05-28 16:54:22 +02002445 if (plen > 128)
2446 return -EINVAL;
2447
Noriaki TAKAMIYA07787692006-07-28 18:12:10 +09002448 /* check the lifetime */
2449 if (!valid_lft || prefered_lft > valid_lft)
2450 return -EINVAL;
2451
Daniel Lezcanoaf284932008-03-05 10:46:57 -08002452 dev = __dev_get_by_index(net, ifindex);
2453 if (!dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002454 return -ENODEV;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002455
Brian Haley64e724f2010-07-20 10:34:30 +00002456 idev = addrconf_add_dev(dev);
2457 if (IS_ERR(idev))
2458 return PTR_ERR(idev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002459
2460 scope = ipv6_addr_scope(pfx);
2461
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +09002462 timeout = addrconf_timeout_fixup(valid_lft, HZ);
2463 if (addrconf_finite_timeout(timeout)) {
2464 expires = jiffies_to_clock_t(timeout * HZ);
2465 valid_lft = timeout;
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07002466 flags = RTF_EXPIRES;
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +09002467 } else {
2468 expires = 0;
2469 flags = 0;
2470 ifa_flags |= IFA_F_PERMANENT;
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07002471 }
Noriaki TAKAMIYA07787692006-07-28 18:12:10 +09002472
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +09002473 timeout = addrconf_timeout_fixup(prefered_lft, HZ);
2474 if (addrconf_finite_timeout(timeout)) {
2475 if (timeout == 0)
2476 ifa_flags |= IFA_F_DEPRECATED;
2477 prefered_lft = timeout;
2478 }
Noriaki TAKAMIYA07787692006-07-28 18:12:10 +09002479
Jiri Benc8a226b22013-08-01 10:41:28 +02002480 ifp = ipv6_add_addr(idev, pfx, peer_pfx, plen, scope, ifa_flags,
2481 valid_lft, prefered_lft);
Noriaki TAKAMIYA07787692006-07-28 18:12:10 +09002482
Linus Torvalds1da177e2005-04-16 15:20:36 -07002483 if (!IS_ERR(ifp)) {
YOSHIFUJI Hideaki46d48042007-02-07 20:36:26 +09002484 addrconf_prefix_route(&ifp->addr, ifp->prefix_len, dev,
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07002485 expires, flags);
Neil Horman95c385b2007-04-25 17:08:10 -07002486 /*
2487 * Note that section 3.1 of RFC 4429 indicates
2488 * that the Optimistic flag should not be set for
2489 * manually configured addresses
2490 */
David S. Millercf22f9a2012-04-14 21:37:40 -04002491 addrconf_dad_start(ifp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002492 in6_ifa_put(ifp);
Noriaki TAKAMIYA07787692006-07-28 18:12:10 +09002493 addrconf_verify(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002494 return 0;
2495 }
2496
2497 return PTR_ERR(ifp);
2498}
2499
Eric Dumazetb71d1d42011-04-22 04:53:02 +00002500static int inet6_addr_del(struct net *net, int ifindex, const struct in6_addr *pfx,
Thomas Graf24ef0da2008-05-28 16:54:22 +02002501 unsigned int plen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002502{
2503 struct inet6_ifaddr *ifp;
2504 struct inet6_dev *idev;
2505 struct net_device *dev;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002506
Thomas Graf24ef0da2008-05-28 16:54:22 +02002507 if (plen > 128)
2508 return -EINVAL;
2509
Daniel Lezcanoaf284932008-03-05 10:46:57 -08002510 dev = __dev_get_by_index(net, ifindex);
2511 if (!dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002512 return -ENODEV;
2513
David S. Miller7eaa48a2013-08-20 23:44:39 -07002514 if ((idev = __in6_dev_get(dev)) == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002515 return -ENXIO;
2516
2517 read_lock_bh(&idev->lock);
stephen hemminger502a2ff2010-03-17 20:31:13 +00002518 list_for_each_entry(ifp, &idev->addr_list, if_list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002519 if (ifp->prefix_len == plen &&
2520 ipv6_addr_equal(pfx, &ifp->addr)) {
2521 in6_ifa_hold(ifp);
2522 read_unlock_bh(&idev->lock);
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002523
Linus Torvalds1da177e2005-04-16 15:20:36 -07002524 ipv6_del_addr(ifp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002525 return 0;
2526 }
2527 }
2528 read_unlock_bh(&idev->lock);
2529 return -EADDRNOTAVAIL;
2530}
2531
2532
Daniel Lezcanoaf284932008-03-05 10:46:57 -08002533int addrconf_add_ifaddr(struct net *net, void __user *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002534{
2535 struct in6_ifreq ireq;
2536 int err;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002537
Eric W. Biedermanaf31f412012-11-16 03:03:06 +00002538 if (!ns_capable(net->user_ns, CAP_NET_ADMIN))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002539 return -EPERM;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002540
Linus Torvalds1da177e2005-04-16 15:20:36 -07002541 if (copy_from_user(&ireq, arg, sizeof(struct in6_ifreq)))
2542 return -EFAULT;
2543
2544 rtnl_lock();
Nicolas Dichtelcaeaba72013-05-16 22:32:00 +00002545 err = inet6_addr_add(net, ireq.ifr6_ifindex, &ireq.ifr6_addr, NULL,
Daniel Lezcanoaf284932008-03-05 10:46:57 -08002546 ireq.ifr6_prefixlen, IFA_F_PERMANENT,
2547 INFINITY_LIFE_TIME, INFINITY_LIFE_TIME);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002548 rtnl_unlock();
2549 return err;
2550}
2551
Daniel Lezcanoaf284932008-03-05 10:46:57 -08002552int addrconf_del_ifaddr(struct net *net, void __user *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002553{
2554 struct in6_ifreq ireq;
2555 int err;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002556
Eric W. Biedermanaf31f412012-11-16 03:03:06 +00002557 if (!ns_capable(net->user_ns, CAP_NET_ADMIN))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002558 return -EPERM;
2559
2560 if (copy_from_user(&ireq, arg, sizeof(struct in6_ifreq)))
2561 return -EFAULT;
2562
2563 rtnl_lock();
Daniel Lezcanoaf284932008-03-05 10:46:57 -08002564 err = inet6_addr_del(net, ireq.ifr6_ifindex, &ireq.ifr6_addr,
2565 ireq.ifr6_prefixlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002566 rtnl_unlock();
2567 return err;
2568}
2569
Ilpo Järvinenb5f348e2009-02-06 23:48:01 -08002570static void add_addr(struct inet6_dev *idev, const struct in6_addr *addr,
2571 int plen, int scope)
2572{
2573 struct inet6_ifaddr *ifp;
2574
Jiri Benc8a226b22013-08-01 10:41:28 +02002575 ifp = ipv6_add_addr(idev, addr, NULL, plen,
2576 scope, IFA_F_PERMANENT, 0, 0);
Ilpo Järvinenb5f348e2009-02-06 23:48:01 -08002577 if (!IS_ERR(ifp)) {
2578 spin_lock_bh(&ifp->lock);
2579 ifp->flags &= ~IFA_F_TENTATIVE;
2580 spin_unlock_bh(&ifp->lock);
2581 ipv6_ifa_notify(RTM_NEWADDR, ifp);
2582 in6_ifa_put(ifp);
2583 }
2584}
2585
Amerigo Wang07a93622012-10-29 16:23:10 +00002586#if IS_ENABLED(CONFIG_IPV6_SIT)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002587static void sit_add_v4_addrs(struct inet6_dev *idev)
2588{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002589 struct in6_addr addr;
2590 struct net_device *dev;
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09002591 struct net *net = dev_net(idev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002592 int scope;
2593
2594 ASSERT_RTNL();
2595
2596 memset(&addr, 0, sizeof(struct in6_addr));
2597 memcpy(&addr.s6_addr32[3], idev->dev->dev_addr, 4);
2598
2599 if (idev->dev->flags&IFF_POINTOPOINT) {
2600 addr.s6_addr32[0] = htonl(0xfe800000);
2601 scope = IFA_LINK;
2602 } else {
2603 scope = IPV6_ADDR_COMPATv4;
2604 }
2605
2606 if (addr.s6_addr32[3]) {
Ilpo Järvinenb5f348e2009-02-06 23:48:01 -08002607 add_addr(idev, &addr, 128, scope);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002608 return;
2609 }
2610
Benjamin Thery6fda7352008-03-05 10:47:47 -08002611 for_each_netdev(net, dev) {
Eldad Zack8e5e8f32012-04-01 07:49:08 +00002612 struct in_device *in_dev = __in_dev_get_rtnl(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002613 if (in_dev && (dev->flags & IFF_UP)) {
Eldad Zack8e5e8f32012-04-01 07:49:08 +00002614 struct in_ifaddr *ifa;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002615
2616 int flag = scope;
2617
2618 for (ifa = in_dev->ifa_list; ifa; ifa = ifa->ifa_next) {
2619 int plen;
2620
2621 addr.s6_addr32[3] = ifa->ifa_local;
2622
2623 if (ifa->ifa_scope == RT_SCOPE_LINK)
2624 continue;
2625 if (ifa->ifa_scope >= RT_SCOPE_HOST) {
2626 if (idev->dev->flags&IFF_POINTOPOINT)
2627 continue;
2628 flag |= IFA_HOST;
2629 }
2630 if (idev->dev->flags&IFF_POINTOPOINT)
2631 plen = 64;
2632 else
2633 plen = 96;
2634
Ilpo Järvinenb5f348e2009-02-06 23:48:01 -08002635 add_addr(idev, &addr, plen, flag);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002636 }
2637 }
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002638 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002639}
Joerg Roedel0be669b2006-10-10 14:49:53 -07002640#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002641
2642static void init_loopback(struct net_device *dev)
2643{
2644 struct inet6_dev *idev;
Balakumaran Kannan25fb6ca42013-04-02 16:15:05 +05302645 struct net_device *sp_dev;
2646 struct inet6_ifaddr *sp_ifa;
2647 struct rt6_info *sp_rt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002648
2649 /* ::1 */
2650
2651 ASSERT_RTNL();
2652
David S. Miller7eaa48a2013-08-20 23:44:39 -07002653 if ((idev = ipv6_find_idev(dev)) == NULL) {
Joe Perches91df42b2012-05-15 14:11:54 +00002654 pr_debug("%s: add_dev failed\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002655 return;
2656 }
2657
Ilpo Järvinenb5f348e2009-02-06 23:48:01 -08002658 add_addr(idev, &in6addr_loopback, 128, IFA_HOST);
Balakumaran Kannan25fb6ca42013-04-02 16:15:05 +05302659
2660 /* Add routes to other interface's IPv6 addresses */
2661 for_each_netdev(dev_net(dev), sp_dev) {
2662 if (!strcmp(sp_dev->name, dev->name))
2663 continue;
2664
2665 idev = __in6_dev_get(sp_dev);
2666 if (!idev)
2667 continue;
2668
2669 read_lock_bh(&idev->lock);
2670 list_for_each_entry(sp_ifa, &idev->addr_list, if_list) {
2671
2672 if (sp_ifa->flags & (IFA_F_DADFAILED | IFA_F_TENTATIVE))
2673 continue;
2674
Gao fenga881ae12013-06-16 11:14:30 +08002675 if (sp_ifa->rt)
2676 continue;
2677
Balakumaran Kannan25fb6ca42013-04-02 16:15:05 +05302678 sp_rt = addrconf_dst_alloc(idev, &sp_ifa->addr, 0);
2679
2680 /* Failure cases are ignored */
Gao feng534c8772013-06-02 22:16:21 +00002681 if (!IS_ERR(sp_rt)) {
2682 sp_ifa->rt = sp_rt;
Balakumaran Kannan25fb6ca42013-04-02 16:15:05 +05302683 ip6_ins_rt(sp_rt);
Gao feng534c8772013-06-02 22:16:21 +00002684 }
Balakumaran Kannan25fb6ca42013-04-02 16:15:05 +05302685 }
2686 read_unlock_bh(&idev->lock);
2687 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002688}
2689
Eric Dumazetb71d1d42011-04-22 04:53:02 +00002690static void addrconf_add_linklocal(struct inet6_dev *idev, const struct in6_addr *addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002691{
Eldad Zack8e5e8f32012-04-01 07:49:08 +00002692 struct inet6_ifaddr *ifp;
Neil Horman95c385b2007-04-25 17:08:10 -07002693 u32 addr_flags = IFA_F_PERMANENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002694
Neil Horman95c385b2007-04-25 17:08:10 -07002695#ifdef CONFIG_IPV6_OPTIMISTIC_DAD
2696 if (idev->cnf.optimistic_dad &&
David Miller702beb82008-07-20 18:17:02 -07002697 !dev_net(idev->dev)->ipv6.devconf_all->forwarding)
Neil Horman95c385b2007-04-25 17:08:10 -07002698 addr_flags |= IFA_F_OPTIMISTIC;
2699#endif
2700
2701
Jiri Benc8a226b22013-08-01 10:41:28 +02002702 ifp = ipv6_add_addr(idev, addr, NULL, 64, IFA_LINK, addr_flags, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002703 if (!IS_ERR(ifp)) {
YOSHIFUJI Hideaki46d48042007-02-07 20:36:26 +09002704 addrconf_prefix_route(&ifp->addr, ifp->prefix_len, idev->dev, 0, 0);
David S. Millercf22f9a2012-04-14 21:37:40 -04002705 addrconf_dad_start(ifp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002706 in6_ifa_put(ifp);
2707 }
2708}
2709
2710static void addrconf_dev_config(struct net_device *dev)
2711{
2712 struct in6_addr addr;
Eldad Zack8e5e8f32012-04-01 07:49:08 +00002713 struct inet6_dev *idev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002714
2715 ASSERT_RTNL();
2716
Herbert Xu74235a22007-06-14 13:02:55 -07002717 if ((dev->type != ARPHRD_ETHER) &&
2718 (dev->type != ARPHRD_FDDI) &&
Herbert Xu74235a22007-06-14 13:02:55 -07002719 (dev->type != ARPHRD_ARCNET) &&
alex.bluesman.smirnov@gmail.com06a4c1c2012-05-10 03:25:52 +00002720 (dev->type != ARPHRD_INFINIBAND) &&
YOSHIFUJI Hideaki / 吉藤英明cb6bf352013-03-25 08:26:24 +00002721 (dev->type != ARPHRD_IEEE802154) &&
Nicolas Dichtele8377352013-08-20 12:16:06 +02002722 (dev->type != ARPHRD_IEEE1394) &&
2723 (dev->type != ARPHRD_TUNNEL6)) {
Herbert Xu74235a22007-06-14 13:02:55 -07002724 /* Alas, we support only Ethernet autoconfiguration. */
2725 return;
2726 }
2727
Linus Torvalds1da177e2005-04-16 15:20:36 -07002728 idev = addrconf_add_dev(dev);
Brian Haley64e724f2010-07-20 10:34:30 +00002729 if (IS_ERR(idev))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002730 return;
2731
2732 memset(&addr, 0, sizeof(struct in6_addr));
2733 addr.s6_addr32[0] = htonl(0xFE800000);
2734
2735 if (ipv6_generate_eui64(addr.s6_addr + 8, dev) == 0)
2736 addrconf_add_linklocal(idev, &addr);
2737}
2738
Amerigo Wang07a93622012-10-29 16:23:10 +00002739#if IS_ENABLED(CONFIG_IPV6_SIT)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002740static void addrconf_sit_config(struct net_device *dev)
2741{
2742 struct inet6_dev *idev;
2743
2744 ASSERT_RTNL();
2745
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002746 /*
2747 * Configure the tunnel with one of our IPv4
2748 * addresses... we should configure all of
Linus Torvalds1da177e2005-04-16 15:20:36 -07002749 * our v4 addrs in the tunnel
2750 */
2751
David S. Miller7eaa48a2013-08-20 23:44:39 -07002752 if ((idev = ipv6_find_idev(dev)) == NULL) {
Joe Perches91df42b2012-05-15 14:11:54 +00002753 pr_debug("%s: add_dev failed\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002754 return;
2755 }
2756
Fred L. Templinc7dc89c2007-11-29 22:11:40 +11002757 if (dev->priv_flags & IFF_ISATAP) {
2758 struct in6_addr addr;
2759
2760 ipv6_addr_set(&addr, htonl(0xFE800000), 0, 0, 0);
2761 addrconf_prefix_route(&addr, 64, dev, 0, 0);
2762 if (!ipv6_generate_eui64(addr.s6_addr + 8, dev))
2763 addrconf_add_linklocal(idev, &addr);
2764 return;
2765 }
2766
Linus Torvalds1da177e2005-04-16 15:20:36 -07002767 sit_add_v4_addrs(idev);
2768
Nicolas Dichtel62b54dd2012-10-01 23:19:14 +00002769 if (dev->flags&IFF_POINTOPOINT)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002770 addrconf_add_mroute(dev);
Nicolas Dichtel62b54dd2012-10-01 23:19:14 +00002771 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07002772 sit_route_add(dev);
2773}
Joerg Roedel0be669b2006-10-10 14:49:53 -07002774#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002775
Amerigo Wang07a93622012-10-29 16:23:10 +00002776#if IS_ENABLED(CONFIG_NET_IPGRE)
stephen hemmingeraee80b52011-06-08 10:44:30 +00002777static void addrconf_gre_config(struct net_device *dev)
2778{
2779 struct inet6_dev *idev;
2780 struct in6_addr addr;
2781
stephen hemmingeraee80b52011-06-08 10:44:30 +00002782 ASSERT_RTNL();
2783
David S. Miller7eaa48a2013-08-20 23:44:39 -07002784 if ((idev = ipv6_find_idev(dev)) == NULL) {
Joe Perches91df42b2012-05-15 14:11:54 +00002785 pr_debug("%s: add_dev failed\n", __func__);
stephen hemmingeraee80b52011-06-08 10:44:30 +00002786 return;
2787 }
2788
2789 ipv6_addr_set(&addr, htonl(0xFE800000), 0, 0, 0);
2790 addrconf_prefix_route(&addr, 64, dev, 0, 0);
2791
2792 if (!ipv6_generate_eui64(addr.s6_addr + 8, dev))
2793 addrconf_add_linklocal(idev, &addr);
2794}
2795#endif
2796
Linus Torvalds1da177e2005-04-16 15:20:36 -07002797static inline int
2798ipv6_inherit_linklocal(struct inet6_dev *idev, struct net_device *link_dev)
2799{
2800 struct in6_addr lladdr;
2801
Neil Horman95c385b2007-04-25 17:08:10 -07002802 if (!ipv6_get_lladdr(link_dev, &lladdr, IFA_F_TENTATIVE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002803 addrconf_add_linklocal(idev, &lladdr);
2804 return 0;
2805 }
2806 return -1;
2807}
2808
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002809static int addrconf_notify(struct notifier_block *this, unsigned long event,
Jiri Pirko351638e2013-05-28 01:30:21 +00002810 void *ptr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002811{
Jiri Pirko351638e2013-05-28 01:30:21 +00002812 struct net_device *dev = netdev_notifier_info_to_dev(ptr);
Eric Dumazet748e2d92012-08-22 21:50:59 +00002813 struct inet6_dev *idev = __in6_dev_get(dev);
YOSHIFUJI Hideakic5e33bd2005-12-21 22:57:44 +09002814 int run_pending = 0;
Herbert Xub217d612007-07-30 17:04:52 -07002815 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002816
Stephen Hemmingere21e8462010-03-20 16:09:01 -07002817 switch (event) {
YOSHIFUJI Hideaki45ba9dd2007-02-15 02:07:27 +09002818 case NETDEV_REGISTER:
Herbert Xu74235a22007-06-14 13:02:55 -07002819 if (!idev && dev->mtu >= IPV6_MIN_MTU) {
YOSHIFUJI Hideaki45ba9dd2007-02-15 02:07:27 +09002820 idev = ipv6_add_dev(dev);
2821 if (!idev)
Herbert Xub217d612007-07-30 17:04:52 -07002822 return notifier_from_errno(-ENOMEM);
YOSHIFUJI Hideaki45ba9dd2007-02-15 02:07:27 +09002823 }
2824 break;
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07002825
Linus Torvalds1da177e2005-04-16 15:20:36 -07002826 case NETDEV_UP:
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09002827 case NETDEV_CHANGE:
Jay Vosburghc2edacf2007-07-09 10:42:47 -07002828 if (dev->flags & IFF_SLAVE)
2829 break;
2830
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09002831 if (event == NETDEV_UP) {
Mitsuru Chinenf24e3d62007-10-10 02:53:43 -07002832 if (!addrconf_qdisc_ok(dev)) {
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09002833 /* device is not ready yet. */
Joe Perchesf3213832012-05-15 14:11:53 +00002834 pr_info("ADDRCONF(NETDEV_UP): %s: link is not ready\n",
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09002835 dev->name);
2836 break;
2837 }
Kristian Slavov99081042006-02-08 16:10:53 -08002838
Evgeniy Polyakovd31c7b82007-11-30 23:36:08 +11002839 if (!idev && dev->mtu >= IPV6_MIN_MTU)
2840 idev = ipv6_add_dev(dev);
2841
Benjamin Therye3ec6cf2008-11-05 01:43:57 -08002842 if (idev) {
Kristian Slavov99081042006-02-08 16:10:53 -08002843 idev->if_flags |= IF_READY;
Benjamin Therye3ec6cf2008-11-05 01:43:57 -08002844 run_pending = 1;
2845 }
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09002846 } else {
Mitsuru Chinenf24e3d62007-10-10 02:53:43 -07002847 if (!addrconf_qdisc_ok(dev)) {
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09002848 /* device is still not ready. */
2849 break;
2850 }
2851
2852 if (idev) {
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07002853 if (idev->if_flags & IF_READY)
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09002854 /* device is already configured. */
2855 break;
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09002856 idev->if_flags |= IF_READY;
2857 }
2858
Joe Perchesf3213832012-05-15 14:11:53 +00002859 pr_info("ADDRCONF(NETDEV_CHANGE): %s: link becomes ready\n",
2860 dev->name);
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09002861
YOSHIFUJI Hideakic5e33bd2005-12-21 22:57:44 +09002862 run_pending = 1;
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09002863 }
2864
Stephen Hemmingere21e8462010-03-20 16:09:01 -07002865 switch (dev->type) {
Amerigo Wang07a93622012-10-29 16:23:10 +00002866#if IS_ENABLED(CONFIG_IPV6_SIT)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002867 case ARPHRD_SIT:
2868 addrconf_sit_config(dev);
2869 break;
Joerg Roedel0be669b2006-10-10 14:49:53 -07002870#endif
Amerigo Wang07a93622012-10-29 16:23:10 +00002871#if IS_ENABLED(CONFIG_NET_IPGRE)
stephen hemmingeraee80b52011-06-08 10:44:30 +00002872 case ARPHRD_IPGRE:
2873 addrconf_gre_config(dev);
2874 break;
2875#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002876 case ARPHRD_LOOPBACK:
2877 init_loopback(dev);
2878 break;
2879
2880 default:
2881 addrconf_dev_config(dev);
2882 break;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07002883 }
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07002884
Linus Torvalds1da177e2005-04-16 15:20:36 -07002885 if (idev) {
YOSHIFUJI Hideakic5e33bd2005-12-21 22:57:44 +09002886 if (run_pending)
2887 addrconf_dad_run(idev);
2888
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07002889 /*
2890 * If the MTU changed during the interface down,
2891 * when the interface up, the changed MTU must be
2892 * reflected in the idev as well as routers.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002893 */
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07002894 if (idev->cnf.mtu6 != dev->mtu &&
2895 dev->mtu >= IPV6_MIN_MTU) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002896 rt6_mtu_change(dev, dev->mtu);
2897 idev->cnf.mtu6 = dev->mtu;
2898 }
2899 idev->tstamp = jiffies;
2900 inet6_ifinfo_notify(RTM_NEWLINK, idev);
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07002901
2902 /*
2903 * If the changed mtu during down is lower than
2904 * IPV6_MIN_MTU stop IPv6 on this interface.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002905 */
2906 if (dev->mtu < IPV6_MIN_MTU)
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07002907 addrconf_ifdown(dev, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002908 }
2909 break;
2910
2911 case NETDEV_CHANGEMTU:
Evgeniy Polyakovd31c7b82007-11-30 23:36:08 +11002912 if (idev && dev->mtu >= IPV6_MIN_MTU) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002913 rt6_mtu_change(dev, dev->mtu);
2914 idev->cnf.mtu6 = dev->mtu;
2915 break;
2916 }
2917
Evgeniy Polyakovd31c7b82007-11-30 23:36:08 +11002918 if (!idev && dev->mtu >= IPV6_MIN_MTU) {
2919 idev = ipv6_add_dev(dev);
2920 if (idev)
2921 break;
2922 }
2923
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07002924 /*
2925 * MTU falled under IPV6_MIN_MTU.
2926 * Stop IPv6 on this interface.
2927 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002928
2929 case NETDEV_DOWN:
2930 case NETDEV_UNREGISTER:
2931 /*
2932 * Remove all addresses from this interface.
2933 */
2934 addrconf_ifdown(dev, event != NETDEV_DOWN);
2935 break;
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09002936
Linus Torvalds1da177e2005-04-16 15:20:36 -07002937 case NETDEV_CHANGENAME:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002938 if (idev) {
Stephen Hemminger5632c512007-04-28 21:16:39 -07002939 snmp6_unregister_dev(idev);
Pavel Emelyanov408c4762008-01-10 17:41:21 -08002940 addrconf_sysctl_unregister(idev);
Pavel Emelyanovf52295a2007-12-02 00:58:37 +11002941 addrconf_sysctl_register(idev);
Herbert Xub217d612007-07-30 17:04:52 -07002942 err = snmp6_register_dev(idev);
2943 if (err)
2944 return notifier_from_errno(err);
Stephen Hemminger5632c512007-04-28 21:16:39 -07002945 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002946 break;
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07002947
Jiri Pirko93d9b7d2010-03-10 10:28:56 +00002948 case NETDEV_PRE_TYPE_CHANGE:
2949 case NETDEV_POST_TYPE_CHANGE:
2950 addrconf_type_change(dev, event);
Moni Shoua75c78502009-09-15 02:37:40 -07002951 break;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07002952 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002953
2954 return NOTIFY_OK;
2955}
2956
2957/*
2958 * addrconf module should be notified of a device going up
2959 */
2960static struct notifier_block ipv6_dev_notf = {
2961 .notifier_call = addrconf_notify,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002962};
2963
Jiri Pirko93d9b7d2010-03-10 10:28:56 +00002964static void addrconf_type_change(struct net_device *dev, unsigned long event)
Moni Shoua75c78502009-09-15 02:37:40 -07002965{
2966 struct inet6_dev *idev;
2967 ASSERT_RTNL();
2968
2969 idev = __in6_dev_get(dev);
2970
Jiri Pirko93d9b7d2010-03-10 10:28:56 +00002971 if (event == NETDEV_POST_TYPE_CHANGE)
Moni Shoua75c78502009-09-15 02:37:40 -07002972 ipv6_mc_remap(idev);
Jiri Pirko93d9b7d2010-03-10 10:28:56 +00002973 else if (event == NETDEV_PRE_TYPE_CHANGE)
Moni Shoua75c78502009-09-15 02:37:40 -07002974 ipv6_mc_unmap(idev);
2975}
2976
Linus Torvalds1da177e2005-04-16 15:20:36 -07002977static int addrconf_ifdown(struct net_device *dev, int how)
2978{
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09002979 struct net *net = dev_net(dev);
stephen hemminger502a2ff2010-03-17 20:31:13 +00002980 struct inet6_dev *idev;
2981 struct inet6_ifaddr *ifa;
David S. Miller73a8bd72011-01-23 23:27:15 -08002982 int state, i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002983
2984 ASSERT_RTNL();
2985
David S. Miller73a8bd72011-01-23 23:27:15 -08002986 rt6_ifdown(net, dev);
2987 neigh_ifdown(&nd_tbl, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002988
2989 idev = __in6_dev_get(dev);
2990 if (idev == NULL)
2991 return -ENODEV;
2992
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07002993 /*
2994 * Step 1: remove reference to ipv6 device from parent device.
2995 * Do not dev_put!
Linus Torvalds1da177e2005-04-16 15:20:36 -07002996 */
Denis V. Lunev439e2382008-04-03 13:30:17 -07002997 if (how) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002998 idev->dead = 1;
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -07002999
3000 /* protected by rtnl_lock */
Stephen Hemmingera9b3cd72011-08-01 16:19:00 +00003001 RCU_INIT_POINTER(dev->ip6_ptr, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003002
3003 /* Step 1.5: remove snmp6 entry */
3004 snmp6_unregister_dev(idev);
3005
3006 }
3007
David S. Miller73a8bd72011-01-23 23:27:15 -08003008 /* Step 2: clear hash table */
3009 for (i = 0; i < IN6_ADDR_HSIZE; i++) {
3010 struct hlist_head *h = &inet6_addr_lst[i];
David S. Miller73a8bd72011-01-23 23:27:15 -08003011
3012 spin_lock_bh(&addrconf_hash_lock);
3013 restart:
Sasha Levinb67bfe02013-02-27 17:06:00 -08003014 hlist_for_each_entry_rcu(ifa, h, addr_lst) {
David S. Miller73a8bd72011-01-23 23:27:15 -08003015 if (ifa->idev == idev) {
3016 hlist_del_init_rcu(&ifa->addr_lst);
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003017 addrconf_del_dad_timer(ifa);
David S. Miller73a8bd72011-01-23 23:27:15 -08003018 goto restart;
3019 }
3020 }
3021 spin_unlock_bh(&addrconf_hash_lock);
3022 }
3023
Linus Torvalds1da177e2005-04-16 15:20:36 -07003024 write_lock_bh(&idev->lock);
3025
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003026 addrconf_del_rs_timer(idev);
3027
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07003028 /* Step 2: clear flags for stateless addrconf */
Denis V. Lunev439e2382008-04-03 13:30:17 -07003029 if (!how)
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09003030 idev->if_flags &= ~(IF_RS_SENT|IF_RA_RCVD|IF_READY);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003031
Linus Torvalds1da177e2005-04-16 15:20:36 -07003032#ifdef CONFIG_IPV6_PRIVACY
Denis V. Lunev439e2382008-04-03 13:30:17 -07003033 if (how && del_timer(&idev->regen_timer))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003034 in6_dev_put(idev);
3035
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07003036 /* Step 3: clear tempaddr list */
stephen hemminger372e6c82010-03-17 20:31:09 +00003037 while (!list_empty(&idev->tempaddr_list)) {
3038 ifa = list_first_entry(&idev->tempaddr_list,
3039 struct inet6_ifaddr, tmp_list);
3040 list_del(&ifa->tmp_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003041 write_unlock_bh(&idev->lock);
3042 spin_lock_bh(&ifa->lock);
3043
3044 if (ifa->ifpub) {
3045 in6_ifa_put(ifa->ifpub);
3046 ifa->ifpub = NULL;
3047 }
3048 spin_unlock_bh(&ifa->lock);
3049 in6_ifa_put(ifa);
3050 write_lock_bh(&idev->lock);
3051 }
3052#endif
stephen hemminger8f37ada2010-03-03 08:19:59 +00003053
stephen hemminger502a2ff2010-03-17 20:31:13 +00003054 while (!list_empty(&idev->addr_list)) {
3055 ifa = list_first_entry(&idev->addr_list,
3056 struct inet6_ifaddr, if_list);
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003057 addrconf_del_dad_timer(ifa);
stephen hemminger84e8b802010-03-02 13:32:46 +00003058
David S. Miller73a8bd72011-01-23 23:27:15 -08003059 list_del(&ifa->if_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003060
David S. Miller73a8bd72011-01-23 23:27:15 -08003061 write_unlock_bh(&idev->lock);
stephen hemminger84e8b802010-03-02 13:32:46 +00003062
David S. Miller73a8bd72011-01-23 23:27:15 -08003063 spin_lock_bh(&ifa->state_lock);
3064 state = ifa->state;
3065 ifa->state = INET6_IFADDR_STATE_DEAD;
3066 spin_unlock_bh(&ifa->state_lock);
stephen hemminger84e8b802010-03-02 13:32:46 +00003067
David S. Miller73a8bd72011-01-23 23:27:15 -08003068 if (state != INET6_IFADDR_STATE_DEAD) {
3069 __ipv6_ifa_notify(RTM_DELADDR, ifa);
Cong Wangf88c91d2013-04-14 23:18:43 +08003070 inet6addr_notifier_call_chain(NETDEV_DOWN, ifa);
stephen hemminger27bdb2a2010-04-12 05:41:32 +00003071 }
David S. Miller73a8bd72011-01-23 23:27:15 -08003072 in6_ifa_put(ifa);
stephen hemminger8f37ada2010-03-03 08:19:59 +00003073
David S. Miller73a8bd72011-01-23 23:27:15 -08003074 write_lock_bh(&idev->lock);
3075 }
stephen hemminger8f37ada2010-03-03 08:19:59 +00003076
Linus Torvalds1da177e2005-04-16 15:20:36 -07003077 write_unlock_bh(&idev->lock);
3078
3079 /* Step 5: Discard multicast list */
Denis V. Lunev439e2382008-04-03 13:30:17 -07003080 if (how)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003081 ipv6_mc_destroy_dev(idev);
3082 else
3083 ipv6_mc_down(idev);
3084
Linus Torvalds1da177e2005-04-16 15:20:36 -07003085 idev->tstamp = jiffies;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09003086
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07003087 /* Last: Shot the device (if unregistered) */
Denis V. Lunev439e2382008-04-03 13:30:17 -07003088 if (how) {
Pavel Emelyanov408c4762008-01-10 17:41:21 -08003089 addrconf_sysctl_unregister(idev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003090 neigh_parms_release(&nd_tbl, idev->nd_parms);
3091 neigh_ifdown(&nd_tbl, dev);
3092 in6_dev_put(idev);
3093 }
3094 return 0;
3095}
3096
3097static void addrconf_rs_timer(unsigned long data)
3098{
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003099 struct inet6_dev *idev = (struct inet6_dev *)data;
3100 struct in6_addr lladdr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003101
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003102 write_lock(&idev->lock);
stephen hemminger5b2a1952010-03-02 13:32:45 +00003103 if (idev->dead || !(idev->if_flags & IF_READY))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003104 goto out;
3105
Shmulik Ladkani9ba2add2012-12-02 01:44:53 +00003106 if (!ipv6_accept_ra(idev))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003107 goto out;
stephen hemminger5b2a1952010-03-02 13:32:45 +00003108
3109 /* Announcement received after solicitation was sent */
3110 if (idev->if_flags & IF_RA_RCVD)
3111 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003112
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003113 if (idev->rs_probes++ < idev->cnf.rtr_solicits) {
3114 if (!__ipv6_get_lladdr(idev, &lladdr, IFA_F_TENTATIVE))
3115 ndisc_send_rs(idev->dev, &lladdr,
3116 &in6addr_linklocal_allrouters);
3117 else
3118 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003119
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003120 /* The wait after the last probe can be shorter */
3121 addrconf_mod_rs_timer(idev, (idev->rs_probes ==
3122 idev->cnf.rtr_solicits) ?
3123 idev->cnf.rtr_solicit_delay :
3124 idev->cnf.rtr_solicit_interval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003125 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003126 /*
3127 * Note: we do not support deprecated "all on-link"
3128 * assumption any longer.
3129 */
Joe Perches91df42b2012-05-15 14:11:54 +00003130 pr_debug("%s: no IPv6 routers present\n", idev->dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003131 }
3132
3133out:
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003134 write_unlock(&idev->lock);
3135 in6_dev_put(idev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003136}
3137
3138/*
3139 * Duplicate Address Detection
3140 */
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09003141static void addrconf_dad_kick(struct inet6_ifaddr *ifp)
3142{
3143 unsigned long rand_num;
3144 struct inet6_dev *idev = ifp->idev;
3145
Neil Horman95c385b2007-04-25 17:08:10 -07003146 if (ifp->flags & IFA_F_OPTIMISTIC)
3147 rand_num = 0;
3148 else
3149 rand_num = net_random() % (idev->cnf.rtr_solicit_delay ? : 1);
3150
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003151 ifp->dad_probes = idev->cnf.dad_transmits;
3152 addrconf_mod_dad_timer(ifp, rand_num);
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09003153}
3154
David S. Millercf22f9a2012-04-14 21:37:40 -04003155static void addrconf_dad_start(struct inet6_ifaddr *ifp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003156{
3157 struct inet6_dev *idev = ifp->idev;
3158 struct net_device *dev = idev->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003159
3160 addrconf_join_solict(dev, &ifp->addr);
3161
Linus Torvalds1da177e2005-04-16 15:20:36 -07003162 net_srandom(ifp->addr.s6_addr32[3]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003163
3164 read_lock_bh(&idev->lock);
Herbert Xu622ccdf2010-05-18 15:56:06 -07003165 spin_lock(&ifp->lock);
Herbert Xue9d3e082010-05-18 15:36:06 -07003166 if (ifp->state == INET6_IFADDR_STATE_DEAD)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003167 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003168
3169 if (dev->flags&(IFF_NOARP|IFF_LOOPBACK) ||
YOSHIFUJI Hideaki1b34be72008-06-28 14:18:38 +09003170 idev->cnf.accept_dad < 1 ||
Noriaki TAKAMIYA55ebaef2006-09-22 14:45:27 -07003171 !(ifp->flags&IFA_F_TENTATIVE) ||
3172 ifp->flags & IFA_F_NODAD) {
Brian Haleycc411d02009-09-09 14:41:32 +00003173 ifp->flags &= ~(IFA_F_TENTATIVE|IFA_F_OPTIMISTIC|IFA_F_DADFAILED);
stephen hemminger21809fa2010-02-08 19:48:52 +00003174 spin_unlock(&ifp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003175 read_unlock_bh(&idev->lock);
3176
3177 addrconf_dad_completed(ifp);
3178 return;
3179 }
3180
YOSHIFUJI Hideaki6732bad2005-12-27 13:35:15 -08003181 if (!(idev->if_flags & IF_READY)) {
stephen hemminger21809fa2010-02-08 19:48:52 +00003182 spin_unlock(&ifp->lock);
YOSHIFUJI Hideaki6732bad2005-12-27 13:35:15 -08003183 read_unlock_bh(&idev->lock);
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09003184 /*
Masatake YAMATO590a9882009-06-09 10:41:12 +09003185 * If the device is not ready:
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09003186 * - keep it tentative if it is a permanent address.
3187 * - otherwise, kill it.
3188 */
3189 in6_ifa_hold(ifp);
Brian Haleycc411d02009-09-09 14:41:32 +00003190 addrconf_dad_stop(ifp, 0);
YOSHIFUJI Hideaki6732bad2005-12-27 13:35:15 -08003191 return;
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09003192 }
Neil Horman95c385b2007-04-25 17:08:10 -07003193
3194 /*
3195 * Optimistic nodes can start receiving
3196 * Frames right away
3197 */
Stephen Hemmingere21e8462010-03-20 16:09:01 -07003198 if (ifp->flags & IFA_F_OPTIMISTIC)
Neil Horman95c385b2007-04-25 17:08:10 -07003199 ip6_ins_rt(ifp->rt);
3200
YOSHIFUJI Hideaki6732bad2005-12-27 13:35:15 -08003201 addrconf_dad_kick(ifp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003202out:
Herbert Xu622ccdf2010-05-18 15:56:06 -07003203 spin_unlock(&ifp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003204 read_unlock_bh(&idev->lock);
3205}
3206
3207static void addrconf_dad_timer(unsigned long data)
3208{
3209 struct inet6_ifaddr *ifp = (struct inet6_ifaddr *) data;
3210 struct inet6_dev *idev = ifp->idev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003211 struct in6_addr mcaddr;
3212
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003213 if (!ifp->dad_probes && addrconf_dad_end(ifp))
Herbert Xuf2344a12010-05-18 15:55:27 -07003214 goto out;
3215
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003216 write_lock(&idev->lock);
stephen hemminger122e4512010-03-02 13:32:44 +00003217 if (idev->dead || !(idev->if_flags & IF_READY)) {
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003218 write_unlock(&idev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003219 goto out;
3220 }
stephen hemminger21809fa2010-02-08 19:48:52 +00003221
3222 spin_lock(&ifp->lock);
Herbert Xu622ccdf2010-05-18 15:56:06 -07003223 if (ifp->state == INET6_IFADDR_STATE_DEAD) {
3224 spin_unlock(&ifp->lock);
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003225 write_unlock(&idev->lock);
Herbert Xu622ccdf2010-05-18 15:56:06 -07003226 goto out;
3227 }
3228
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003229 if (ifp->dad_probes == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003230 /*
3231 * DAD was successful
3232 */
3233
Brian Haleycc411d02009-09-09 14:41:32 +00003234 ifp->flags &= ~(IFA_F_TENTATIVE|IFA_F_OPTIMISTIC|IFA_F_DADFAILED);
stephen hemminger21809fa2010-02-08 19:48:52 +00003235 spin_unlock(&ifp->lock);
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003236 write_unlock(&idev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003237
3238 addrconf_dad_completed(ifp);
3239
3240 goto out;
3241 }
3242
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003243 ifp->dad_probes--;
3244 addrconf_mod_dad_timer(ifp, ifp->idev->nd_parms->retrans_time);
stephen hemminger21809fa2010-02-08 19:48:52 +00003245 spin_unlock(&ifp->lock);
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003246 write_unlock(&idev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003247
3248 /* send a neighbour solicitation for our addr */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003249 addrconf_addr_solict_mult(&ifp->addr, &mcaddr);
YOSHIFUJI Hideakid7aabf22008-04-10 15:42:11 +09003250 ndisc_send_ns(ifp->idev->dev, NULL, &ifp->addr, &mcaddr, &in6addr_any);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003251out:
3252 in6_ifa_put(ifp);
3253}
3254
3255static void addrconf_dad_completed(struct inet6_ifaddr *ifp)
3256{
Stephen Hemmingere21e8462010-03-20 16:09:01 -07003257 struct net_device *dev = ifp->idev->dev;
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003258 struct in6_addr lladdr;
Hannes Frederic Sowab173ee42013-06-27 00:07:01 +02003259 bool send_rs, send_mld;
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003260
3261 addrconf_del_dad_timer(ifp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003262
3263 /*
3264 * Configure the address for reception. Now it is valid.
3265 */
3266
3267 ipv6_ifa_notify(RTM_NEWADDR, ifp);
3268
Tore Anderson026359b2011-08-28 23:47:33 +00003269 /* If added prefix is link local and we are prepared to process
3270 router advertisements, start sending router solicitations.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003271 */
3272
Hannes Frederic Sowa1ec047e2013-06-27 00:06:56 +02003273 read_lock_bh(&ifp->idev->lock);
3274 spin_lock(&ifp->lock);
Hannes Frederic Sowab173ee42013-06-27 00:07:01 +02003275 send_mld = ipv6_addr_type(&ifp->addr) & IPV6_ADDR_LINKLOCAL &&
3276 ifp->idev->valid_ll_addr_cnt == 1;
3277 send_rs = send_mld &&
3278 ipv6_accept_ra(ifp->idev) &&
Hannes Frederic Sowa1ec047e2013-06-27 00:06:56 +02003279 ifp->idev->cnf.rtr_solicits > 0 &&
Hannes Frederic Sowab173ee42013-06-27 00:07:01 +02003280 (dev->flags&IFF_LOOPBACK) == 0;
Hannes Frederic Sowa1ec047e2013-06-27 00:06:56 +02003281 spin_unlock(&ifp->lock);
3282 read_unlock_bh(&ifp->idev->lock);
3283
Hannes Frederic Sowab173ee42013-06-27 00:07:01 +02003284 /* While dad is in progress mld report's source address is in6_addrany.
3285 * Resend with proper ll now.
3286 */
3287 if (send_mld)
3288 ipv6_mc_dad_complete(ifp->idev);
3289
Hannes Frederic Sowa1ec047e2013-06-27 00:06:56 +02003290 if (send_rs) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003291 /*
3292 * If a host as already performed a random delay
3293 * [...] as part of DAD [...] there is no need
3294 * to delay again before sending the first RS
3295 */
Hannes Frederic Sowa1ec047e2013-06-27 00:06:56 +02003296 if (ipv6_get_lladdr(dev, &lladdr, IFA_F_TENTATIVE))
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003297 return;
Hannes Frederic Sowa1ec047e2013-06-27 00:06:56 +02003298 ndisc_send_rs(dev, &lladdr, &in6addr_linklocal_allrouters);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003299
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003300 write_lock_bh(&ifp->idev->lock);
3301 spin_lock(&ifp->lock);
3302 ifp->idev->rs_probes = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003303 ifp->idev->if_flags |= IF_RS_SENT;
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003304 addrconf_mod_rs_timer(ifp->idev,
3305 ifp->idev->cnf.rtr_solicit_interval);
3306 spin_unlock(&ifp->lock);
3307 write_unlock_bh(&ifp->idev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003308 }
3309}
3310
Stephen Hemmingere21e8462010-03-20 16:09:01 -07003311static void addrconf_dad_run(struct inet6_dev *idev)
3312{
YOSHIFUJI Hideakic5e33bd2005-12-21 22:57:44 +09003313 struct inet6_ifaddr *ifp;
3314
3315 read_lock_bh(&idev->lock);
stephen hemminger502a2ff2010-03-17 20:31:13 +00003316 list_for_each_entry(ifp, &idev->addr_list, if_list) {
stephen hemminger21809fa2010-02-08 19:48:52 +00003317 spin_lock(&ifp->lock);
Herbert Xuf2344a12010-05-18 15:55:27 -07003318 if (ifp->flags & IFA_F_TENTATIVE &&
3319 ifp->state == INET6_IFADDR_STATE_DAD)
3320 addrconf_dad_kick(ifp);
stephen hemminger21809fa2010-02-08 19:48:52 +00003321 spin_unlock(&ifp->lock);
YOSHIFUJI Hideakic5e33bd2005-12-21 22:57:44 +09003322 }
3323 read_unlock_bh(&idev->lock);
3324}
3325
Linus Torvalds1da177e2005-04-16 15:20:36 -07003326#ifdef CONFIG_PROC_FS
3327struct if6_iter_state {
Daniel Lezcano3c400902008-01-10 22:42:49 -08003328 struct seq_net_private p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003329 int bucket;
Mihai Maruseac1d578302012-01-03 23:31:35 +00003330 int offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003331};
3332
Mihai Maruseac1d578302012-01-03 23:31:35 +00003333static struct inet6_ifaddr *if6_get_first(struct seq_file *seq, loff_t pos)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003334{
3335 struct inet6_ifaddr *ifa = NULL;
3336 struct if6_iter_state *state = seq->private;
YOSHIFUJI Hideaki12188542008-03-26 02:36:06 +09003337 struct net *net = seq_file_net(seq);
Mihai Maruseac1d578302012-01-03 23:31:35 +00003338 int p = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003339
Mihai Maruseac1d578302012-01-03 23:31:35 +00003340 /* initial bucket if pos is 0 */
3341 if (pos == 0) {
3342 state->bucket = 0;
3343 state->offset = 0;
3344 }
3345
3346 for (; state->bucket < IN6_ADDR_HSIZE; ++state->bucket) {
Sasha Levinb67bfe02013-02-27 17:06:00 -08003347 hlist_for_each_entry_rcu_bh(ifa, &inet6_addr_lst[state->bucket],
Mihai Maruseac1d578302012-01-03 23:31:35 +00003348 addr_lst) {
Eric Dumazet9f0d3c22012-10-16 07:37:27 +00003349 if (!net_eq(dev_net(ifa->idev->dev), net))
3350 continue;
Mihai Maruseac1d578302012-01-03 23:31:35 +00003351 /* sync with offset */
3352 if (p < state->offset) {
3353 p++;
3354 continue;
3355 }
3356 state->offset++;
Eric Dumazet9f0d3c22012-10-16 07:37:27 +00003357 return ifa;
Mihai Maruseac1d578302012-01-03 23:31:35 +00003358 }
3359
3360 /* prepare for next bucket */
3361 state->offset = 0;
3362 p = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003363 }
stephen hemmingerc2e21292010-03-17 20:31:10 +00003364 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003365}
3366
stephen hemmingerc2e21292010-03-17 20:31:10 +00003367static struct inet6_ifaddr *if6_get_next(struct seq_file *seq,
3368 struct inet6_ifaddr *ifa)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003369{
3370 struct if6_iter_state *state = seq->private;
YOSHIFUJI Hideaki12188542008-03-26 02:36:06 +09003371 struct net *net = seq_file_net(seq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003372
Sasha Levinb67bfe02013-02-27 17:06:00 -08003373 hlist_for_each_entry_continue_rcu_bh(ifa, addr_lst) {
Eric Dumazet9f0d3c22012-10-16 07:37:27 +00003374 if (!net_eq(dev_net(ifa->idev->dev), net))
3375 continue;
Mihai Maruseac1d578302012-01-03 23:31:35 +00003376 state->offset++;
Eric Dumazet9f0d3c22012-10-16 07:37:27 +00003377 return ifa;
Mihai Maruseac1d578302012-01-03 23:31:35 +00003378 }
stephen hemmingerc2e21292010-03-17 20:31:10 +00003379
3380 while (++state->bucket < IN6_ADDR_HSIZE) {
Mihai Maruseac1d578302012-01-03 23:31:35 +00003381 state->offset = 0;
Sasha Levinb67bfe02013-02-27 17:06:00 -08003382 hlist_for_each_entry_rcu_bh(ifa,
stephen hemmingerc2e21292010-03-17 20:31:10 +00003383 &inet6_addr_lst[state->bucket], addr_lst) {
Eric Dumazet9f0d3c22012-10-16 07:37:27 +00003384 if (!net_eq(dev_net(ifa->idev->dev), net))
3385 continue;
Mihai Maruseac1d578302012-01-03 23:31:35 +00003386 state->offset++;
Eric Dumazet9f0d3c22012-10-16 07:37:27 +00003387 return ifa;
Daniel Lezcano3c400902008-01-10 22:42:49 -08003388 }
3389 }
3390
stephen hemmingerc2e21292010-03-17 20:31:10 +00003391 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003392}
3393
Linus Torvalds1da177e2005-04-16 15:20:36 -07003394static void *if6_seq_start(struct seq_file *seq, loff_t *pos)
Eric Dumazet4f70ecc2010-05-03 10:50:14 +00003395 __acquires(rcu_bh)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003396{
stephen hemminger5c578aed2010-03-17 20:31:11 +00003397 rcu_read_lock_bh();
Mihai Maruseac1d578302012-01-03 23:31:35 +00003398 return if6_get_first(seq, *pos);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003399}
3400
3401static void *if6_seq_next(struct seq_file *seq, void *v, loff_t *pos)
3402{
3403 struct inet6_ifaddr *ifa;
3404
3405 ifa = if6_get_next(seq, v);
3406 ++*pos;
3407 return ifa;
3408}
3409
3410static void if6_seq_stop(struct seq_file *seq, void *v)
Eric Dumazet4f70ecc2010-05-03 10:50:14 +00003411 __releases(rcu_bh)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003412{
stephen hemminger5c578aed2010-03-17 20:31:11 +00003413 rcu_read_unlock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003414}
3415
3416static int if6_seq_show(struct seq_file *seq, void *v)
3417{
3418 struct inet6_ifaddr *ifp = (struct inet6_ifaddr *)v;
Harvey Harrison4b7a4272008-10-29 12:50:24 -07003419 seq_printf(seq, "%pi6 %02x %02x %02x %02x %8s\n",
Harvey Harrisonb0711952008-10-28 16:05:40 -07003420 &ifp->addr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003421 ifp->idev->dev->ifindex,
3422 ifp->prefix_len,
3423 ifp->scope,
3424 ifp->flags,
3425 ifp->idev->dev->name);
3426 return 0;
3427}
3428
Philippe De Muyter56b3d972007-07-10 23:07:31 -07003429static const struct seq_operations if6_seq_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003430 .start = if6_seq_start,
3431 .next = if6_seq_next,
3432 .show = if6_seq_show,
3433 .stop = if6_seq_stop,
3434};
3435
3436static int if6_seq_open(struct inode *inode, struct file *file)
3437{
Daniel Lezcano3c400902008-01-10 22:42:49 -08003438 return seq_open_net(inode, file, &if6_seq_ops,
3439 sizeof(struct if6_iter_state));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003440}
3441
Arjan van de Ven9a321442007-02-12 00:55:35 -08003442static const struct file_operations if6_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003443 .owner = THIS_MODULE,
3444 .open = if6_seq_open,
3445 .read = seq_read,
3446 .llseek = seq_lseek,
Daniel Lezcano3c400902008-01-10 22:42:49 -08003447 .release = seq_release_net,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003448};
3449
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00003450static int __net_init if6_proc_net_init(struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003451{
Gao fengd4beaa62013-02-18 01:34:54 +00003452 if (!proc_create("if_inet6", S_IRUGO, net->proc_net, &if6_fops))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003453 return -ENOMEM;
3454 return 0;
3455}
3456
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00003457static void __net_exit if6_proc_net_exit(struct net *net)
Daniel Lezcano3c400902008-01-10 22:42:49 -08003458{
Gao fengece31ff2013-02-18 01:34:56 +00003459 remove_proc_entry("if_inet6", net->proc_net);
Daniel Lezcano3c400902008-01-10 22:42:49 -08003460}
3461
3462static struct pernet_operations if6_proc_net_ops = {
3463 .init = if6_proc_net_init,
3464 .exit = if6_proc_net_exit,
3465};
3466
3467int __init if6_proc_init(void)
3468{
3469 return register_pernet_subsys(&if6_proc_net_ops);
3470}
3471
Linus Torvalds1da177e2005-04-16 15:20:36 -07003472void if6_proc_exit(void)
3473{
Daniel Lezcano3c400902008-01-10 22:42:49 -08003474 unregister_pernet_subsys(&if6_proc_net_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003475}
3476#endif /* CONFIG_PROC_FS */
3477
Amerigo Wang07a93622012-10-29 16:23:10 +00003478#if IS_ENABLED(CONFIG_IPV6_MIP6)
Noriaki TAKAMIYA3b9f9a12006-09-22 14:45:56 -07003479/* Check if address is a home address configured on any interface. */
Eric Dumazetb71d1d42011-04-22 04:53:02 +00003480int ipv6_chk_home_addr(struct net *net, const struct in6_addr *addr)
Noriaki TAKAMIYA3b9f9a12006-09-22 14:45:56 -07003481{
3482 int ret = 0;
stephen hemmingerc2e21292010-03-17 20:31:10 +00003483 struct inet6_ifaddr *ifp = NULL;
Eric Dumazetddbe5032012-07-18 08:11:12 +00003484 unsigned int hash = inet6_addr_hash(addr);
stephen hemmingerc2e21292010-03-17 20:31:10 +00003485
stephen hemminger5c578aed2010-03-17 20:31:11 +00003486 rcu_read_lock_bh();
Sasha Levinb67bfe02013-02-27 17:06:00 -08003487 hlist_for_each_entry_rcu_bh(ifp, &inet6_addr_lst[hash], addr_lst) {
YOSHIFUJI Hideaki878628f2008-03-26 03:57:35 +09003488 if (!net_eq(dev_net(ifp->idev->dev), net))
Daniel Lezcano389f6612008-01-10 22:44:40 -08003489 continue;
YOSHIFUJI Hideakicaad2952008-04-10 15:42:07 +09003490 if (ipv6_addr_equal(&ifp->addr, addr) &&
Noriaki TAKAMIYA3b9f9a12006-09-22 14:45:56 -07003491 (ifp->flags & IFA_F_HOMEADDRESS)) {
3492 ret = 1;
3493 break;
3494 }
3495 }
stephen hemminger5c578aed2010-03-17 20:31:11 +00003496 rcu_read_unlock_bh();
Noriaki TAKAMIYA3b9f9a12006-09-22 14:45:56 -07003497 return ret;
3498}
3499#endif
3500
Linus Torvalds1da177e2005-04-16 15:20:36 -07003501/*
3502 * Periodic address status verification
3503 */
3504
3505static void addrconf_verify(unsigned long foo)
3506{
YOSHIFUJI Hideakib2db7562010-03-20 16:11:12 -07003507 unsigned long now, next, next_sec, next_sched;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003508 struct inet6_ifaddr *ifp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003509 int i;
3510
stephen hemminger5c578aed2010-03-17 20:31:11 +00003511 rcu_read_lock_bh();
3512 spin_lock(&addrconf_verify_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003513 now = jiffies;
YOSHIFUJI Hideakib2db7562010-03-20 16:11:12 -07003514 next = round_jiffies_up(now + ADDR_CHECK_FREQUENCY);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003515
3516 del_timer(&addr_chk_timer);
3517
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07003518 for (i = 0; i < IN6_ADDR_HSIZE; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003519restart:
Sasha Levinb67bfe02013-02-27 17:06:00 -08003520 hlist_for_each_entry_rcu_bh(ifp,
stephen hemminger5c578aed2010-03-17 20:31:11 +00003521 &inet6_addr_lst[i], addr_lst) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003522 unsigned long age;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003523
3524 if (ifp->flags & IFA_F_PERMANENT)
3525 continue;
3526
3527 spin_lock(&ifp->lock);
YOSHIFUJI Hideakib2db7562010-03-20 16:11:12 -07003528 /* We try to batch several events at once. */
3529 age = (now - ifp->tstamp + ADDRCONF_TIMER_FUZZ_MINUS) / HZ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003530
YOSHIFUJI Hideaki8f27ebb2006-07-28 18:12:11 +09003531 if (ifp->valid_lft != INFINITY_LIFE_TIME &&
3532 age >= ifp->valid_lft) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003533 spin_unlock(&ifp->lock);
3534 in6_ifa_hold(ifp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003535 ipv6_del_addr(ifp);
3536 goto restart;
YOSHIFUJI Hideaki8f27ebb2006-07-28 18:12:11 +09003537 } else if (ifp->prefered_lft == INFINITY_LIFE_TIME) {
3538 spin_unlock(&ifp->lock);
3539 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003540 } else if (age >= ifp->prefered_lft) {
Brian Haleya1ed0522009-07-02 07:10:52 +00003541 /* jiffies - ifp->tstamp > age >= ifp->prefered_lft */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003542 int deprecate = 0;
3543
3544 if (!(ifp->flags&IFA_F_DEPRECATED)) {
3545 deprecate = 1;
3546 ifp->flags |= IFA_F_DEPRECATED;
3547 }
3548
3549 if (time_before(ifp->tstamp + ifp->valid_lft * HZ, next))
3550 next = ifp->tstamp + ifp->valid_lft * HZ;
3551
3552 spin_unlock(&ifp->lock);
3553
3554 if (deprecate) {
3555 in6_ifa_hold(ifp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003556
3557 ipv6_ifa_notify(0, ifp);
3558 in6_ifa_put(ifp);
3559 goto restart;
3560 }
3561#ifdef CONFIG_IPV6_PRIVACY
3562 } else if ((ifp->flags&IFA_F_TEMPORARY) &&
3563 !(ifp->flags&IFA_F_TENTATIVE)) {
stephen hemminger88949cf2010-03-17 20:31:17 +00003564 unsigned long regen_advance = ifp->idev->cnf.regen_max_retry *
3565 ifp->idev->cnf.dad_transmits *
3566 ifp->idev->nd_parms->retrans_time / HZ;
3567
Linus Torvalds1da177e2005-04-16 15:20:36 -07003568 if (age >= ifp->prefered_lft - regen_advance) {
3569 struct inet6_ifaddr *ifpub = ifp->ifpub;
3570 if (time_before(ifp->tstamp + ifp->prefered_lft * HZ, next))
3571 next = ifp->tstamp + ifp->prefered_lft * HZ;
3572 if (!ifp->regen_count && ifpub) {
3573 ifp->regen_count++;
3574 in6_ifa_hold(ifp);
3575 in6_ifa_hold(ifpub);
3576 spin_unlock(&ifp->lock);
stephen hemminger5c578aed2010-03-17 20:31:11 +00003577
Hiroyuki YAMAMORI291d8092005-12-23 11:24:05 -08003578 spin_lock(&ifpub->lock);
3579 ifpub->regen_count = 0;
3580 spin_unlock(&ifpub->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003581 ipv6_create_tempaddr(ifpub, ifp);
3582 in6_ifa_put(ifpub);
3583 in6_ifa_put(ifp);
3584 goto restart;
3585 }
3586 } else if (time_before(ifp->tstamp + ifp->prefered_lft * HZ - regen_advance * HZ, next))
3587 next = ifp->tstamp + ifp->prefered_lft * HZ - regen_advance * HZ;
3588 spin_unlock(&ifp->lock);
3589#endif
3590 } else {
3591 /* ifp->prefered_lft <= ifp->valid_lft */
3592 if (time_before(ifp->tstamp + ifp->prefered_lft * HZ, next))
3593 next = ifp->tstamp + ifp->prefered_lft * HZ;
3594 spin_unlock(&ifp->lock);
3595 }
3596 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003597 }
3598
YOSHIFUJI Hideakib2db7562010-03-20 16:11:12 -07003599 next_sec = round_jiffies_up(next);
3600 next_sched = next;
3601
3602 /* If rounded timeout is accurate enough, accept it. */
3603 if (time_before(next_sec, next + ADDRCONF_TIMER_FUZZ))
3604 next_sched = next_sec;
3605
3606 /* And minimum interval is ADDRCONF_TIMER_FUZZ_MAX. */
3607 if (time_before(next_sched, jiffies + ADDRCONF_TIMER_FUZZ_MAX))
3608 next_sched = jiffies + ADDRCONF_TIMER_FUZZ_MAX;
3609
dingtianhongba3542e2013-08-17 10:27:04 +08003610 ADBG(KERN_DEBUG "now = %lu, schedule = %lu, rounded schedule = %lu => %lu\n",
3611 now, next, next_sec, next_sched);
YOSHIFUJI Hideakib2db7562010-03-20 16:11:12 -07003612
3613 addr_chk_timer.expires = next_sched;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003614 add_timer(&addr_chk_timer);
stephen hemminger5c578aed2010-03-17 20:31:11 +00003615 spin_unlock(&addrconf_verify_lock);
3616 rcu_read_unlock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003617}
3618
Nicolas Dichtelcaeaba72013-05-16 22:32:00 +00003619static struct in6_addr *extract_addr(struct nlattr *addr, struct nlattr *local,
3620 struct in6_addr **peer_pfx)
Thomas Graf461d8832006-09-18 00:09:49 -07003621{
3622 struct in6_addr *pfx = NULL;
3623
Nicolas Dichtelcaeaba72013-05-16 22:32:00 +00003624 *peer_pfx = NULL;
3625
Thomas Graf461d8832006-09-18 00:09:49 -07003626 if (addr)
3627 pfx = nla_data(addr);
3628
3629 if (local) {
3630 if (pfx && nla_memcmp(local, pfx, sizeof(*pfx)))
Nicolas Dichtelcaeaba72013-05-16 22:32:00 +00003631 *peer_pfx = pfx;
3632 pfx = nla_data(local);
Thomas Graf461d8832006-09-18 00:09:49 -07003633 }
3634
3635 return pfx;
3636}
3637
Patrick McHardyef7c79e2007-06-05 12:38:30 -07003638static const struct nla_policy ifa_ipv6_policy[IFA_MAX+1] = {
Thomas Graf461d8832006-09-18 00:09:49 -07003639 [IFA_ADDRESS] = { .len = sizeof(struct in6_addr) },
3640 [IFA_LOCAL] = { .len = sizeof(struct in6_addr) },
3641 [IFA_CACHEINFO] = { .len = sizeof(struct ifa_cacheinfo) },
3642};
3643
Linus Torvalds1da177e2005-04-16 15:20:36 -07003644static int
Thomas Graf661d2962013-03-21 07:45:29 +00003645inet6_rtm_deladdr(struct sk_buff *skb, struct nlmsghdr *nlh)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003646{
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09003647 struct net *net = sock_net(skb->sk);
Thomas Grafb933f712006-09-18 00:10:19 -07003648 struct ifaddrmsg *ifm;
3649 struct nlattr *tb[IFA_MAX+1];
Nicolas Dichtelcaeaba72013-05-16 22:32:00 +00003650 struct in6_addr *pfx, *peer_pfx;
Thomas Grafb933f712006-09-18 00:10:19 -07003651 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003652
Thomas Grafb933f712006-09-18 00:10:19 -07003653 err = nlmsg_parse(nlh, sizeof(*ifm), tb, IFA_MAX, ifa_ipv6_policy);
3654 if (err < 0)
3655 return err;
3656
3657 ifm = nlmsg_data(nlh);
Nicolas Dichtelcaeaba72013-05-16 22:32:00 +00003658 pfx = extract_addr(tb[IFA_ADDRESS], tb[IFA_LOCAL], &peer_pfx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003659 if (pfx == NULL)
3660 return -EINVAL;
3661
Daniel Lezcanoaf284932008-03-05 10:46:57 -08003662 return inet6_addr_del(net, ifm->ifa_index, pfx, ifm->ifa_prefixlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003663}
3664
Noriaki TAKAMIYA55ebaef2006-09-22 14:45:27 -07003665static int inet6_addr_modify(struct inet6_ifaddr *ifp, u8 ifa_flags,
3666 u32 prefered_lft, u32 valid_lft)
Noriaki TAKAMIYA081bba52006-07-28 18:12:13 +09003667{
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07003668 u32 flags;
3669 clock_t expires;
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +09003670 unsigned long timeout;
YOSHIFUJI Hideaki46d48042007-02-07 20:36:26 +09003671
Noriaki TAKAMIYA081bba52006-07-28 18:12:13 +09003672 if (!valid_lft || (prefered_lft > valid_lft))
3673 return -EINVAL;
3674
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +09003675 timeout = addrconf_timeout_fixup(valid_lft, HZ);
3676 if (addrconf_finite_timeout(timeout)) {
3677 expires = jiffies_to_clock_t(timeout * HZ);
3678 valid_lft = timeout;
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07003679 flags = RTF_EXPIRES;
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +09003680 } else {
3681 expires = 0;
3682 flags = 0;
3683 ifa_flags |= IFA_F_PERMANENT;
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07003684 }
Noriaki TAKAMIYA081bba52006-07-28 18:12:13 +09003685
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +09003686 timeout = addrconf_timeout_fixup(prefered_lft, HZ);
3687 if (addrconf_finite_timeout(timeout)) {
3688 if (timeout == 0)
3689 ifa_flags |= IFA_F_DEPRECATED;
3690 prefered_lft = timeout;
3691 }
Noriaki TAKAMIYA081bba52006-07-28 18:12:13 +09003692
3693 spin_lock_bh(&ifp->lock);
Noriaki TAKAMIYA3b9f9a12006-09-22 14:45:56 -07003694 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 +09003695 ifp->tstamp = jiffies;
3696 ifp->valid_lft = valid_lft;
3697 ifp->prefered_lft = prefered_lft;
3698
3699 spin_unlock_bh(&ifp->lock);
3700 if (!(ifp->flags&IFA_F_TENTATIVE))
3701 ipv6_ifa_notify(0, ifp);
Noriaki TAKAMIYA081bba52006-07-28 18:12:13 +09003702
YOSHIFUJI Hideaki46d48042007-02-07 20:36:26 +09003703 addrconf_prefix_route(&ifp->addr, ifp->prefix_len, ifp->idev->dev,
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07003704 expires, flags);
Noriaki TAKAMIYA081bba52006-07-28 18:12:13 +09003705 addrconf_verify(0);
3706
3707 return 0;
3708}
3709
3710static int
Thomas Graf661d2962013-03-21 07:45:29 +00003711inet6_rtm_newaddr(struct sk_buff *skb, struct nlmsghdr *nlh)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003712{
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09003713 struct net *net = sock_net(skb->sk);
Thomas Graf461d8832006-09-18 00:09:49 -07003714 struct ifaddrmsg *ifm;
3715 struct nlattr *tb[IFA_MAX+1];
Nicolas Dichtelcaeaba72013-05-16 22:32:00 +00003716 struct in6_addr *pfx, *peer_pfx;
Thomas Graf7198f8c2006-09-18 00:13:46 -07003717 struct inet6_ifaddr *ifa;
3718 struct net_device *dev;
Noriaki TAKAMIYA55ebaef2006-09-22 14:45:27 -07003719 u32 valid_lft = INFINITY_LIFE_TIME, preferred_lft = INFINITY_LIFE_TIME;
3720 u8 ifa_flags;
Thomas Graf461d8832006-09-18 00:09:49 -07003721 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003722
Thomas Graf461d8832006-09-18 00:09:49 -07003723 err = nlmsg_parse(nlh, sizeof(*ifm), tb, IFA_MAX, ifa_ipv6_policy);
3724 if (err < 0)
3725 return err;
3726
3727 ifm = nlmsg_data(nlh);
Nicolas Dichtelcaeaba72013-05-16 22:32:00 +00003728 pfx = extract_addr(tb[IFA_ADDRESS], tb[IFA_LOCAL], &peer_pfx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003729 if (pfx == NULL)
3730 return -EINVAL;
3731
Thomas Graf461d8832006-09-18 00:09:49 -07003732 if (tb[IFA_CACHEINFO]) {
Noriaki TAKAMIYA07787692006-07-28 18:12:10 +09003733 struct ifa_cacheinfo *ci;
Thomas Graf461d8832006-09-18 00:09:49 -07003734
3735 ci = nla_data(tb[IFA_CACHEINFO]);
Noriaki TAKAMIYA07787692006-07-28 18:12:10 +09003736 valid_lft = ci->ifa_valid;
Thomas Graf461d8832006-09-18 00:09:49 -07003737 preferred_lft = ci->ifa_prefered;
3738 } else {
3739 preferred_lft = INFINITY_LIFE_TIME;
3740 valid_lft = INFINITY_LIFE_TIME;
Noriaki TAKAMIYA07787692006-07-28 18:12:10 +09003741 }
3742
Daniel Lezcanoaf284932008-03-05 10:46:57 -08003743 dev = __dev_get_by_index(net, ifm->ifa_index);
Thomas Graf7198f8c2006-09-18 00:13:46 -07003744 if (dev == NULL)
3745 return -ENODEV;
3746
Noriaki TAKAMIYA55ebaef2006-09-22 14:45:27 -07003747 /* We ignore other flags so far. */
Noriaki TAKAMIYA3b9f9a12006-09-22 14:45:56 -07003748 ifa_flags = ifm->ifa_flags & (IFA_F_NODAD | IFA_F_HOMEADDRESS);
Noriaki TAKAMIYA55ebaef2006-09-22 14:45:27 -07003749
Daniel Lezcano1cab3da2008-01-10 22:44:09 -08003750 ifa = ipv6_get_ifaddr(net, pfx, dev, 1);
Thomas Graf7198f8c2006-09-18 00:13:46 -07003751 if (ifa == NULL) {
3752 /*
3753 * It would be best to check for !NLM_F_CREATE here but
3754 * userspace alreay relies on not having to provide this.
3755 */
Nicolas Dichtelcaeaba72013-05-16 22:32:00 +00003756 return inet6_addr_add(net, ifm->ifa_index, pfx, peer_pfx,
Daniel Lezcanoaf284932008-03-05 10:46:57 -08003757 ifm->ifa_prefixlen, ifa_flags,
3758 preferred_lft, valid_lft);
Noriaki TAKAMIYA081bba52006-07-28 18:12:13 +09003759 }
3760
Thomas Graf7198f8c2006-09-18 00:13:46 -07003761 if (nlh->nlmsg_flags & NLM_F_EXCL ||
3762 !(nlh->nlmsg_flags & NLM_F_REPLACE))
3763 err = -EEXIST;
3764 else
Noriaki TAKAMIYA55ebaef2006-09-22 14:45:27 -07003765 err = inet6_addr_modify(ifa, ifa_flags, preferred_lft, valid_lft);
Thomas Graf7198f8c2006-09-18 00:13:46 -07003766
3767 in6_ifa_put(ifa);
3768
3769 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003770}
3771
Thomas Graf101bb222006-09-18 00:11:52 -07003772static void put_ifaddrmsg(struct nlmsghdr *nlh, u8 prefixlen, u8 flags,
3773 u8 scope, int ifindex)
3774{
3775 struct ifaddrmsg *ifm;
3776
3777 ifm = nlmsg_data(nlh);
3778 ifm->ifa_family = AF_INET6;
3779 ifm->ifa_prefixlen = prefixlen;
3780 ifm->ifa_flags = flags;
3781 ifm->ifa_scope = scope;
3782 ifm->ifa_index = ifindex;
3783}
3784
Thomas Graf85486af2006-09-18 00:11:24 -07003785static int put_cacheinfo(struct sk_buff *skb, unsigned long cstamp,
3786 unsigned long tstamp, u32 preferred, u32 valid)
3787{
3788 struct ifa_cacheinfo ci;
3789
Thomas Graf18a31e12010-11-17 04:12:02 +00003790 ci.cstamp = cstamp_delta(cstamp);
3791 ci.tstamp = cstamp_delta(tstamp);
Thomas Graf85486af2006-09-18 00:11:24 -07003792 ci.ifa_prefered = preferred;
3793 ci.ifa_valid = valid;
3794
3795 return nla_put(skb, IFA_CACHEINFO, sizeof(ci), &ci);
3796}
3797
Thomas Graf101bb222006-09-18 00:11:52 -07003798static inline int rt_scope(int ifa_scope)
3799{
3800 if (ifa_scope & IFA_HOST)
3801 return RT_SCOPE_HOST;
3802 else if (ifa_scope & IFA_LINK)
3803 return RT_SCOPE_LINK;
3804 else if (ifa_scope & IFA_SITE)
3805 return RT_SCOPE_SITE;
3806 else
3807 return RT_SCOPE_UNIVERSE;
3808}
3809
Thomas Graf0ab68032006-09-18 00:12:35 -07003810static inline int inet6_ifaddr_msgsize(void)
3811{
Thomas Graf339bf982006-11-10 14:10:15 -08003812 return NLMSG_ALIGN(sizeof(struct ifaddrmsg))
Nicolas Dichtelcaeaba72013-05-16 22:32:00 +00003813 + nla_total_size(16) /* IFA_LOCAL */
Thomas Graf339bf982006-11-10 14:10:15 -08003814 + nla_total_size(16) /* IFA_ADDRESS */
3815 + nla_total_size(sizeof(struct ifa_cacheinfo));
Thomas Graf0ab68032006-09-18 00:12:35 -07003816}
YOSHIFUJI Hideakic5396a32006-06-17 22:48:48 -07003817
Linus Torvalds1da177e2005-04-16 15:20:36 -07003818static int inet6_fill_ifaddr(struct sk_buff *skb, struct inet6_ifaddr *ifa,
Eric W. Biederman15e47302012-09-07 20:12:54 +00003819 u32 portid, u32 seq, int event, unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003820{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003821 struct nlmsghdr *nlh;
Thomas Graf85486af2006-09-18 00:11:24 -07003822 u32 preferred, valid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003823
Eric W. Biederman15e47302012-09-07 20:12:54 +00003824 nlh = nlmsg_put(skb, portid, seq, event, sizeof(struct ifaddrmsg), flags);
Thomas Graf0ab68032006-09-18 00:12:35 -07003825 if (nlh == NULL)
Patrick McHardy26932562007-01-31 23:16:40 -08003826 return -EMSGSIZE;
Thomas Graf0ab68032006-09-18 00:12:35 -07003827
Thomas Graf101bb222006-09-18 00:11:52 -07003828 put_ifaddrmsg(nlh, ifa->prefix_len, ifa->flags, rt_scope(ifa->scope),
3829 ifa->idev->dev->ifindex);
3830
Linus Torvalds1da177e2005-04-16 15:20:36 -07003831 if (!(ifa->flags&IFA_F_PERMANENT)) {
Thomas Graf85486af2006-09-18 00:11:24 -07003832 preferred = ifa->prefered_lft;
3833 valid = ifa->valid_lft;
3834 if (preferred != INFINITY_LIFE_TIME) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003835 long tval = (jiffies - ifa->tstamp)/HZ;
Jens Rosenbooma1faa692009-06-25 04:55:50 +00003836 if (preferred > tval)
3837 preferred -= tval;
3838 else
3839 preferred = 0;
Ben Hutchingsf56619f2010-06-26 11:37:47 +00003840 if (valid != INFINITY_LIFE_TIME) {
3841 if (valid > tval)
3842 valid -= tval;
3843 else
3844 valid = 0;
3845 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003846 }
3847 } else {
Thomas Graf85486af2006-09-18 00:11:24 -07003848 preferred = INFINITY_LIFE_TIME;
3849 valid = INFINITY_LIFE_TIME;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003850 }
Thomas Graf85486af2006-09-18 00:11:24 -07003851
Cong Wang7996c792013-05-22 05:41:06 +00003852 if (!ipv6_addr_any(&ifa->peer_addr)) {
Nicolas Dichtelcaeaba72013-05-16 22:32:00 +00003853 if (nla_put(skb, IFA_LOCAL, 16, &ifa->addr) < 0 ||
3854 nla_put(skb, IFA_ADDRESS, 16, &ifa->peer_addr) < 0)
3855 goto error;
3856 } else
3857 if (nla_put(skb, IFA_ADDRESS, 16, &ifa->addr) < 0)
3858 goto error;
3859
3860 if (put_cacheinfo(skb, ifa->cstamp, ifa->tstamp, preferred, valid) < 0)
3861 goto error;
Thomas Graf85486af2006-09-18 00:11:24 -07003862
Thomas Graf0ab68032006-09-18 00:12:35 -07003863 return nlmsg_end(skb, nlh);
Nicolas Dichtelcaeaba72013-05-16 22:32:00 +00003864
3865error:
3866 nlmsg_cancel(skb, nlh);
3867 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003868}
3869
3870static int inet6_fill_ifmcaddr(struct sk_buff *skb, struct ifmcaddr6 *ifmca,
Eric W. Biederman15e47302012-09-07 20:12:54 +00003871 u32 portid, u32 seq, int event, u16 flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003872{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003873 struct nlmsghdr *nlh;
Thomas Graf101bb222006-09-18 00:11:52 -07003874 u8 scope = RT_SCOPE_UNIVERSE;
3875 int ifindex = ifmca->idev->dev->ifindex;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003876
Thomas Graf101bb222006-09-18 00:11:52 -07003877 if (ipv6_addr_scope(&ifmca->mca_addr) & IFA_SITE)
3878 scope = RT_SCOPE_SITE;
3879
Eric W. Biederman15e47302012-09-07 20:12:54 +00003880 nlh = nlmsg_put(skb, portid, seq, event, sizeof(struct ifaddrmsg), flags);
Thomas Graf0ab68032006-09-18 00:12:35 -07003881 if (nlh == NULL)
Patrick McHardy26932562007-01-31 23:16:40 -08003882 return -EMSGSIZE;
Thomas Graf0ab68032006-09-18 00:12:35 -07003883
Thomas Graf101bb222006-09-18 00:11:52 -07003884 put_ifaddrmsg(nlh, 128, IFA_F_PERMANENT, scope, ifindex);
Thomas Graf0ab68032006-09-18 00:12:35 -07003885 if (nla_put(skb, IFA_MULTICAST, 16, &ifmca->mca_addr) < 0 ||
3886 put_cacheinfo(skb, ifmca->mca_cstamp, ifmca->mca_tstamp,
Patrick McHardy26932562007-01-31 23:16:40 -08003887 INFINITY_LIFE_TIME, INFINITY_LIFE_TIME) < 0) {
3888 nlmsg_cancel(skb, nlh);
3889 return -EMSGSIZE;
3890 }
Thomas Graf85486af2006-09-18 00:11:24 -07003891
Thomas Graf0ab68032006-09-18 00:12:35 -07003892 return nlmsg_end(skb, nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003893}
3894
3895static int inet6_fill_ifacaddr(struct sk_buff *skb, struct ifacaddr6 *ifaca,
Eric W. Biederman15e47302012-09-07 20:12:54 +00003896 u32 portid, u32 seq, int event, unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003897{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003898 struct nlmsghdr *nlh;
Thomas Graf101bb222006-09-18 00:11:52 -07003899 u8 scope = RT_SCOPE_UNIVERSE;
3900 int ifindex = ifaca->aca_idev->dev->ifindex;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003901
Thomas Graf101bb222006-09-18 00:11:52 -07003902 if (ipv6_addr_scope(&ifaca->aca_addr) & IFA_SITE)
3903 scope = RT_SCOPE_SITE;
3904
Eric W. Biederman15e47302012-09-07 20:12:54 +00003905 nlh = nlmsg_put(skb, portid, seq, event, sizeof(struct ifaddrmsg), flags);
Thomas Graf0ab68032006-09-18 00:12:35 -07003906 if (nlh == NULL)
Patrick McHardy26932562007-01-31 23:16:40 -08003907 return -EMSGSIZE;
Thomas Graf0ab68032006-09-18 00:12:35 -07003908
Thomas Graf101bb222006-09-18 00:11:52 -07003909 put_ifaddrmsg(nlh, 128, IFA_F_PERMANENT, scope, ifindex);
Thomas Graf0ab68032006-09-18 00:12:35 -07003910 if (nla_put(skb, IFA_ANYCAST, 16, &ifaca->aca_addr) < 0 ||
3911 put_cacheinfo(skb, ifaca->aca_cstamp, ifaca->aca_tstamp,
Patrick McHardy26932562007-01-31 23:16:40 -08003912 INFINITY_LIFE_TIME, INFINITY_LIFE_TIME) < 0) {
3913 nlmsg_cancel(skb, nlh);
3914 return -EMSGSIZE;
3915 }
Thomas Graf85486af2006-09-18 00:11:24 -07003916
Thomas Graf0ab68032006-09-18 00:12:35 -07003917 return nlmsg_end(skb, nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003918}
3919
Stephen Hemmingere21e8462010-03-20 16:09:01 -07003920enum addr_type_t {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003921 UNICAST_ADDR,
3922 MULTICAST_ADDR,
3923 ANYCAST_ADDR,
3924};
3925
Eric Dumazet234b27c2009-11-12 04:11:50 +00003926/* called with rcu_read_lock() */
3927static int in6_dump_addrs(struct inet6_dev *idev, struct sk_buff *skb,
3928 struct netlink_callback *cb, enum addr_type_t type,
3929 int s_ip_idx, int *p_ip_idx)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003930{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003931 struct ifmcaddr6 *ifmca;
3932 struct ifacaddr6 *ifaca;
Eric Dumazet234b27c2009-11-12 04:11:50 +00003933 int err = 1;
3934 int ip_idx = *p_ip_idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003935
Eric Dumazet234b27c2009-11-12 04:11:50 +00003936 read_lock_bh(&idev->lock);
3937 switch (type) {
stephen hemminger502a2ff2010-03-17 20:31:13 +00003938 case UNICAST_ADDR: {
3939 struct inet6_ifaddr *ifa;
3940
Eric Dumazet234b27c2009-11-12 04:11:50 +00003941 /* unicast address incl. temp addr */
stephen hemminger502a2ff2010-03-17 20:31:13 +00003942 list_for_each_entry(ifa, &idev->addr_list, if_list) {
3943 if (++ip_idx < s_ip_idx)
Eric Dumazet234b27c2009-11-12 04:11:50 +00003944 continue;
3945 err = inet6_fill_ifaddr(skb, ifa,
Eric W. Biederman15e47302012-09-07 20:12:54 +00003946 NETLINK_CB(cb->skb).portid,
Eric Dumazet234b27c2009-11-12 04:11:50 +00003947 cb->nlh->nlmsg_seq,
3948 RTM_NEWADDR,
3949 NLM_F_MULTI);
3950 if (err <= 0)
3951 break;
Nicolas Dichtel63998ac2013-03-22 06:28:43 +00003952 nl_dump_check_consistent(cb, nlmsg_hdr(skb));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003953 }
Eric Dumazet234b27c2009-11-12 04:11:50 +00003954 break;
stephen hemminger502a2ff2010-03-17 20:31:13 +00003955 }
Eric Dumazet234b27c2009-11-12 04:11:50 +00003956 case MULTICAST_ADDR:
3957 /* multicast address */
3958 for (ifmca = idev->mc_list; ifmca;
3959 ifmca = ifmca->next, ip_idx++) {
3960 if (ip_idx < s_ip_idx)
3961 continue;
3962 err = inet6_fill_ifmcaddr(skb, ifmca,
Eric W. Biederman15e47302012-09-07 20:12:54 +00003963 NETLINK_CB(cb->skb).portid,
Eric Dumazet234b27c2009-11-12 04:11:50 +00003964 cb->nlh->nlmsg_seq,
3965 RTM_GETMULTICAST,
3966 NLM_F_MULTI);
3967 if (err <= 0)
3968 break;
3969 }
3970 break;
3971 case ANYCAST_ADDR:
3972 /* anycast address */
3973 for (ifaca = idev->ac_list; ifaca;
3974 ifaca = ifaca->aca_next, ip_idx++) {
3975 if (ip_idx < s_ip_idx)
3976 continue;
3977 err = inet6_fill_ifacaddr(skb, ifaca,
Eric W. Biederman15e47302012-09-07 20:12:54 +00003978 NETLINK_CB(cb->skb).portid,
Eric Dumazet234b27c2009-11-12 04:11:50 +00003979 cb->nlh->nlmsg_seq,
3980 RTM_GETANYCAST,
3981 NLM_F_MULTI);
3982 if (err <= 0)
3983 break;
3984 }
3985 break;
3986 default:
3987 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003988 }
Eric Dumazet234b27c2009-11-12 04:11:50 +00003989 read_unlock_bh(&idev->lock);
3990 *p_ip_idx = ip_idx;
3991 return err;
3992}
3993
3994static int inet6_dump_addr(struct sk_buff *skb, struct netlink_callback *cb,
3995 enum addr_type_t type)
3996{
3997 struct net *net = sock_net(skb->sk);
3998 int h, s_h;
3999 int idx, ip_idx;
4000 int s_idx, s_ip_idx;
4001 struct net_device *dev;
4002 struct inet6_dev *idev;
4003 struct hlist_head *head;
Eric Dumazet234b27c2009-11-12 04:11:50 +00004004
4005 s_h = cb->args[0];
4006 s_idx = idx = cb->args[1];
4007 s_ip_idx = ip_idx = cb->args[2];
4008
4009 rcu_read_lock();
Nicolas Dichtel63998ac2013-03-22 06:28:43 +00004010 cb->seq = atomic_read(&net->ipv6.dev_addr_genid) ^ net->dev_base_seq;
Eric Dumazet234b27c2009-11-12 04:11:50 +00004011 for (h = s_h; h < NETDEV_HASHENTRIES; h++, s_idx = 0) {
4012 idx = 0;
4013 head = &net->dev_index_head[h];
Sasha Levinb67bfe02013-02-27 17:06:00 -08004014 hlist_for_each_entry_rcu(dev, head, index_hlist) {
Eric Dumazet234b27c2009-11-12 04:11:50 +00004015 if (idx < s_idx)
4016 goto cont;
Patrick McHardy4b97efd2010-03-26 20:27:49 -07004017 if (h > s_h || idx > s_idx)
Eric Dumazet234b27c2009-11-12 04:11:50 +00004018 s_ip_idx = 0;
4019 ip_idx = 0;
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004020 idev = __in6_dev_get(dev);
4021 if (!idev)
Eric Dumazet234b27c2009-11-12 04:11:50 +00004022 goto cont;
4023
4024 if (in6_dump_addrs(idev, skb, cb, type,
4025 s_ip_idx, &ip_idx) <= 0)
4026 goto done;
4027cont:
4028 idx++;
4029 }
4030 }
4031done:
4032 rcu_read_unlock();
4033 cb->args[0] = h;
4034 cb->args[1] = idx;
4035 cb->args[2] = ip_idx;
4036
Linus Torvalds1da177e2005-04-16 15:20:36 -07004037 return skb->len;
4038}
4039
4040static int inet6_dump_ifaddr(struct sk_buff *skb, struct netlink_callback *cb)
4041{
4042 enum addr_type_t type = UNICAST_ADDR;
Denis V. Lunevb8542722007-12-01 00:21:31 +11004043
Linus Torvalds1da177e2005-04-16 15:20:36 -07004044 return inet6_dump_addr(skb, cb, type);
4045}
4046
4047static int inet6_dump_ifmcaddr(struct sk_buff *skb, struct netlink_callback *cb)
4048{
4049 enum addr_type_t type = MULTICAST_ADDR;
Denis V. Lunevb8542722007-12-01 00:21:31 +11004050
Linus Torvalds1da177e2005-04-16 15:20:36 -07004051 return inet6_dump_addr(skb, cb, type);
4052}
4053
4054
4055static int inet6_dump_ifacaddr(struct sk_buff *skb, struct netlink_callback *cb)
4056{
4057 enum addr_type_t type = ANYCAST_ADDR;
Denis V. Lunevb8542722007-12-01 00:21:31 +11004058
Linus Torvalds1da177e2005-04-16 15:20:36 -07004059 return inet6_dump_addr(skb, cb, type);
4060}
4061
Thomas Graf661d2962013-03-21 07:45:29 +00004062static int inet6_rtm_getaddr(struct sk_buff *in_skb, struct nlmsghdr *nlh)
Noriaki TAKAMIYA6c223822006-07-28 18:12:12 +09004063{
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09004064 struct net *net = sock_net(in_skb->sk);
Thomas Graf1b29fc22006-09-18 00:10:50 -07004065 struct ifaddrmsg *ifm;
4066 struct nlattr *tb[IFA_MAX+1];
Nicolas Dichtelcaeaba72013-05-16 22:32:00 +00004067 struct in6_addr *addr = NULL, *peer;
Noriaki TAKAMIYA6c223822006-07-28 18:12:12 +09004068 struct net_device *dev = NULL;
4069 struct inet6_ifaddr *ifa;
4070 struct sk_buff *skb;
Noriaki TAKAMIYA6c223822006-07-28 18:12:12 +09004071 int err;
4072
Thomas Graf1b29fc22006-09-18 00:10:50 -07004073 err = nlmsg_parse(nlh, sizeof(*ifm), tb, IFA_MAX, ifa_ipv6_policy);
4074 if (err < 0)
4075 goto errout;
Noriaki TAKAMIYA6c223822006-07-28 18:12:12 +09004076
Nicolas Dichtelcaeaba72013-05-16 22:32:00 +00004077 addr = extract_addr(tb[IFA_ADDRESS], tb[IFA_LOCAL], &peer);
Thomas Graf1b29fc22006-09-18 00:10:50 -07004078 if (addr == NULL) {
4079 err = -EINVAL;
4080 goto errout;
4081 }
4082
4083 ifm = nlmsg_data(nlh);
Noriaki TAKAMIYA6c223822006-07-28 18:12:12 +09004084 if (ifm->ifa_index)
Benjamin Thery6fda7352008-03-05 10:47:47 -08004085 dev = __dev_get_by_index(net, ifm->ifa_index);
Noriaki TAKAMIYA6c223822006-07-28 18:12:12 +09004086
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004087 ifa = ipv6_get_ifaddr(net, addr, dev, 1);
4088 if (!ifa) {
Thomas Graf1b29fc22006-09-18 00:10:50 -07004089 err = -EADDRNOTAVAIL;
4090 goto errout;
Noriaki TAKAMIYA6c223822006-07-28 18:12:12 +09004091 }
4092
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004093 skb = nlmsg_new(inet6_ifaddr_msgsize(), GFP_KERNEL);
4094 if (!skb) {
Thomas Graf1b29fc22006-09-18 00:10:50 -07004095 err = -ENOBUFS;
4096 goto errout_ifa;
4097 }
4098
Eric W. Biederman15e47302012-09-07 20:12:54 +00004099 err = inet6_fill_ifaddr(skb, ifa, NETLINK_CB(in_skb).portid,
Noriaki TAKAMIYA6c223822006-07-28 18:12:12 +09004100 nlh->nlmsg_seq, RTM_NEWADDR, 0);
Patrick McHardy26932562007-01-31 23:16:40 -08004101 if (err < 0) {
4102 /* -EMSGSIZE implies BUG in inet6_ifaddr_msgsize() */
4103 WARN_ON(err == -EMSGSIZE);
4104 kfree_skb(skb);
4105 goto errout_ifa;
4106 }
Eric W. Biederman15e47302012-09-07 20:12:54 +00004107 err = rtnl_unicast(skb, net, NETLINK_CB(in_skb).portid);
Thomas Graf1b29fc22006-09-18 00:10:50 -07004108errout_ifa:
Noriaki TAKAMIYA6c223822006-07-28 18:12:12 +09004109 in6_ifa_put(ifa);
Thomas Graf1b29fc22006-09-18 00:10:50 -07004110errout:
Noriaki TAKAMIYA6c223822006-07-28 18:12:12 +09004111 return err;
Noriaki TAKAMIYA6c223822006-07-28 18:12:12 +09004112}
4113
Linus Torvalds1da177e2005-04-16 15:20:36 -07004114static void inet6_ifa_notify(int event, struct inet6_ifaddr *ifa)
4115{
4116 struct sk_buff *skb;
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09004117 struct net *net = dev_net(ifa->idev->dev);
Thomas Graf5d620262006-08-15 00:35:02 -07004118 int err = -ENOBUFS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004119
Thomas Graf0ab68032006-09-18 00:12:35 -07004120 skb = nlmsg_new(inet6_ifaddr_msgsize(), GFP_ATOMIC);
Thomas Graf5d620262006-08-15 00:35:02 -07004121 if (skb == NULL)
4122 goto errout;
4123
4124 err = inet6_fill_ifaddr(skb, ifa, 0, 0, event, 0);
Patrick McHardy26932562007-01-31 23:16:40 -08004125 if (err < 0) {
4126 /* -EMSGSIZE implies BUG in inet6_ifaddr_msgsize() */
4127 WARN_ON(err == -EMSGSIZE);
4128 kfree_skb(skb);
4129 goto errout;
4130 }
Pablo Neira Ayuso1ce85fe2009-02-24 23:18:28 -08004131 rtnl_notify(skb, net, 0, RTNLGRP_IPV6_IFADDR, NULL, GFP_ATOMIC);
4132 return;
Thomas Graf5d620262006-08-15 00:35:02 -07004133errout:
4134 if (err < 0)
Benjamin Thery6fda7352008-03-05 10:47:47 -08004135 rtnl_set_sk_err(net, RTNLGRP_IPV6_IFADDR, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004136}
4137
Dave Jonesb6f99a22007-03-22 12:27:49 -07004138static inline void ipv6_store_devconf(struct ipv6_devconf *cnf,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004139 __s32 *array, int bytes)
4140{
Thomas Graf04561c12006-11-14 19:53:58 -08004141 BUG_ON(bytes < (DEVCONF_MAX * 4));
4142
Linus Torvalds1da177e2005-04-16 15:20:36 -07004143 memset(array, 0, bytes);
4144 array[DEVCONF_FORWARDING] = cnf->forwarding;
4145 array[DEVCONF_HOPLIMIT] = cnf->hop_limit;
4146 array[DEVCONF_MTU6] = cnf->mtu6;
4147 array[DEVCONF_ACCEPT_RA] = cnf->accept_ra;
4148 array[DEVCONF_ACCEPT_REDIRECTS] = cnf->accept_redirects;
4149 array[DEVCONF_AUTOCONF] = cnf->autoconf;
4150 array[DEVCONF_DAD_TRANSMITS] = cnf->dad_transmits;
4151 array[DEVCONF_RTR_SOLICITS] = cnf->rtr_solicits;
Thomas Graf93908d12010-11-17 01:44:24 +00004152 array[DEVCONF_RTR_SOLICIT_INTERVAL] =
4153 jiffies_to_msecs(cnf->rtr_solicit_interval);
4154 array[DEVCONF_RTR_SOLICIT_DELAY] =
4155 jiffies_to_msecs(cnf->rtr_solicit_delay);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004156 array[DEVCONF_FORCE_MLD_VERSION] = cnf->force_mld_version;
Hannes Frederic Sowafc4eba52013-08-14 01:03:46 +02004157 array[DEVCONF_MLDV1_UNSOLICITED_REPORT_INTERVAL] =
4158 jiffies_to_msecs(cnf->mldv1_unsolicited_report_interval);
4159 array[DEVCONF_MLDV2_UNSOLICITED_REPORT_INTERVAL] =
4160 jiffies_to_msecs(cnf->mldv2_unsolicited_report_interval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004161#ifdef CONFIG_IPV6_PRIVACY
4162 array[DEVCONF_USE_TEMPADDR] = cnf->use_tempaddr;
4163 array[DEVCONF_TEMP_VALID_LFT] = cnf->temp_valid_lft;
4164 array[DEVCONF_TEMP_PREFERED_LFT] = cnf->temp_prefered_lft;
4165 array[DEVCONF_REGEN_MAX_RETRY] = cnf->regen_max_retry;
4166 array[DEVCONF_MAX_DESYNC_FACTOR] = cnf->max_desync_factor;
4167#endif
4168 array[DEVCONF_MAX_ADDRESSES] = cnf->max_addresses;
YOSHIFUJI Hideaki65f5c7c2006-03-20 16:55:08 -08004169 array[DEVCONF_ACCEPT_RA_DEFRTR] = cnf->accept_ra_defrtr;
YOSHIFUJI Hideakic4fd30e2006-03-20 16:55:26 -08004170 array[DEVCONF_ACCEPT_RA_PINFO] = cnf->accept_ra_pinfo;
YOSHIFUJI Hideaki930d6ff2006-03-20 17:05:30 -08004171#ifdef CONFIG_IPV6_ROUTER_PREF
4172 array[DEVCONF_ACCEPT_RA_RTR_PREF] = cnf->accept_ra_rtr_pref;
Thomas Graf93908d12010-11-17 01:44:24 +00004173 array[DEVCONF_RTR_PROBE_INTERVAL] =
4174 jiffies_to_msecs(cnf->rtr_probe_interval);
Neil Hormanfa03ef32007-01-30 14:30:10 -08004175#ifdef CONFIG_IPV6_ROUTE_INFO
YOSHIFUJI Hideaki09c884d2006-03-20 17:07:03 -08004176 array[DEVCONF_ACCEPT_RA_RT_INFO_MAX_PLEN] = cnf->accept_ra_rt_info_max_plen;
4177#endif
YOSHIFUJI Hideaki930d6ff2006-03-20 17:05:30 -08004178#endif
YOSHIFUJI Hideakifbea49e2006-09-22 14:43:49 -07004179 array[DEVCONF_PROXY_NDP] = cnf->proxy_ndp;
YOSHIFUJI Hideaki0bcbc922007-04-24 14:58:30 -07004180 array[DEVCONF_ACCEPT_SOURCE_ROUTE] = cnf->accept_source_route;
Neil Horman95c385b2007-04-25 17:08:10 -07004181#ifdef CONFIG_IPV6_OPTIMISTIC_DAD
4182 array[DEVCONF_OPTIMISTIC_DAD] = cnf->optimistic_dad;
4183#endif
YOSHIFUJI Hideaki7bc570c2008-04-03 09:22:53 +09004184#ifdef CONFIG_IPV6_MROUTE
4185 array[DEVCONF_MC_FORWARDING] = cnf->mc_forwarding;
4186#endif
YOSHIFUJI Hideaki778d80b2008-06-28 14:17:11 +09004187 array[DEVCONF_DISABLE_IPV6] = cnf->disable_ipv6;
YOSHIFUJI Hideaki1b34be72008-06-28 14:18:38 +09004188 array[DEVCONF_ACCEPT_DAD] = cnf->accept_dad;
Cosmin Ratiuc3faca02009-10-09 03:11:14 +00004189 array[DEVCONF_FORCE_TLLAO] = cnf->force_tllao;
Hannes Frederic Sowa5cb04432012-11-06 16:46:20 +00004190 array[DEVCONF_NDISC_NOTIFY] = cnf->ndisc_notify;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004191}
4192
Thomas Grafb382b192010-11-16 04:33:57 +00004193static inline size_t inet6_ifla6_size(void)
4194{
4195 return nla_total_size(4) /* IFLA_INET6_FLAGS */
4196 + nla_total_size(sizeof(struct ifla_cacheinfo))
4197 + nla_total_size(DEVCONF_MAX * 4) /* IFLA_INET6_CONF */
4198 + nla_total_size(IPSTATS_MIB_MAX * 8) /* IFLA_INET6_STATS */
Daniel Borkmannf53adae2013-04-08 04:01:30 +00004199 + nla_total_size(ICMP6_MIB_MAX * 8) /* IFLA_INET6_ICMP6STATS */
4200 + nla_total_size(sizeof(struct in6_addr)); /* IFLA_INET6_TOKEN */
Thomas Grafb382b192010-11-16 04:33:57 +00004201}
4202
Thomas Graf339bf982006-11-10 14:10:15 -08004203static inline size_t inet6_if_nlmsg_size(void)
4204{
4205 return NLMSG_ALIGN(sizeof(struct ifinfomsg))
4206 + nla_total_size(IFNAMSIZ) /* IFLA_IFNAME */
4207 + nla_total_size(MAX_ADDR_LEN) /* IFLA_ADDRESS */
4208 + nla_total_size(4) /* IFLA_MTU */
4209 + nla_total_size(4) /* IFLA_LINK */
Thomas Grafb382b192010-11-16 04:33:57 +00004210 + nla_total_size(inet6_ifla6_size()); /* IFLA_PROTINFO */
Thomas Graf339bf982006-11-10 14:10:15 -08004211}
YOSHIFUJI Hideakic5396a32006-06-17 22:48:48 -07004212
Eric Dumazetbe281e52011-05-19 01:14:23 +00004213static inline void __snmp6_fill_statsdev(u64 *stats, atomic_long_t *mib,
Tejun Heo7d720c32010-02-16 15:20:26 +00004214 int items, int bytes)
Herbert Xu7f7d9a62007-04-24 21:54:09 -07004215{
4216 int i;
4217 int pad = bytes - sizeof(u64) * items;
4218 BUG_ON(pad < 0);
4219
4220 /* Use put_unaligned() because stats may not be aligned for u64. */
4221 put_unaligned(items, &stats[0]);
4222 for (i = 1; i < items; i++)
Eric Dumazetbe281e52011-05-19 01:14:23 +00004223 put_unaligned(atomic_long_read(&mib[i]), &stats[i]);
Herbert Xu7f7d9a62007-04-24 21:54:09 -07004224
4225 memset(&stats[items], 0, pad);
4226}
4227
Eric Dumazet4ce3c182010-06-30 13:31:19 -07004228static inline void __snmp6_fill_stats64(u64 *stats, void __percpu **mib,
4229 int items, int bytes, size_t syncpoff)
4230{
4231 int i;
4232 int pad = bytes - sizeof(u64) * items;
4233 BUG_ON(pad < 0);
4234
4235 /* Use put_unaligned() because stats may not be aligned for u64. */
4236 put_unaligned(items, &stats[0]);
4237 for (i = 1; i < items; i++)
4238 put_unaligned(snmp_fold_field64(mib, i, syncpoff), &stats[i]);
4239
4240 memset(&stats[items], 0, pad);
4241}
4242
Herbert Xu7f7d9a62007-04-24 21:54:09 -07004243static void snmp6_fill_stats(u64 *stats, struct inet6_dev *idev, int attrtype,
4244 int bytes)
4245{
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004246 switch (attrtype) {
Herbert Xu7f7d9a62007-04-24 21:54:09 -07004247 case IFLA_INET6_STATS:
Eric Dumazet4ce3c182010-06-30 13:31:19 -07004248 __snmp6_fill_stats64(stats, (void __percpu **)idev->stats.ipv6,
4249 IPSTATS_MIB_MAX, bytes, offsetof(struct ipstats_mib, syncp));
Herbert Xu7f7d9a62007-04-24 21:54:09 -07004250 break;
4251 case IFLA_INET6_ICMP6STATS:
Eric Dumazetbe281e52011-05-19 01:14:23 +00004252 __snmp6_fill_statsdev(stats, idev->stats.icmpv6dev->mibs, ICMP6_MIB_MAX, bytes);
Herbert Xu7f7d9a62007-04-24 21:54:09 -07004253 break;
4254 }
4255}
4256
Thomas Grafb382b192010-11-16 04:33:57 +00004257static int inet6_fill_ifla6_attrs(struct sk_buff *skb, struct inet6_dev *idev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004258{
YOSHIFUJI Hideakibf99f1b2007-04-20 15:56:20 -07004259 struct nlattr *nla;
Thomas Graf04561c12006-11-14 19:53:58 -08004260 struct ifla_cacheinfo ci;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004261
David S. Millerc78679e2012-04-01 20:27:33 -04004262 if (nla_put_u32(skb, IFLA_INET6_FLAGS, idev->if_flags))
4263 goto nla_put_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004264 ci.max_reasm_len = IPV6_MAXPLEN;
David S. Miller24912422010-11-19 13:13:47 -08004265 ci.tstamp = cstamp_delta(idev->tstamp);
4266 ci.reachable_time = jiffies_to_msecs(idev->nd_parms->reachable_time);
4267 ci.retrans_time = jiffies_to_msecs(idev->nd_parms->retrans_time);
David S. Millerc78679e2012-04-01 20:27:33 -04004268 if (nla_put(skb, IFLA_INET6_CACHEINFO, sizeof(ci), &ci))
4269 goto nla_put_failure;
YOSHIFUJI Hideakibf99f1b2007-04-20 15:56:20 -07004270 nla = nla_reserve(skb, IFLA_INET6_CONF, DEVCONF_MAX * sizeof(s32));
4271 if (nla == NULL)
Thomas Graf04561c12006-11-14 19:53:58 -08004272 goto nla_put_failure;
YOSHIFUJI Hideakibf99f1b2007-04-20 15:56:20 -07004273 ipv6_store_devconf(&idev->cnf, nla_data(nla), nla_len(nla));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004274
YOSHIFUJI Hideakibf99f1b2007-04-20 15:56:20 -07004275 /* XXX - MC not implemented */
4276
4277 nla = nla_reserve(skb, IFLA_INET6_STATS, IPSTATS_MIB_MAX * sizeof(u64));
4278 if (nla == NULL)
4279 goto nla_put_failure;
4280 snmp6_fill_stats(nla_data(nla), idev, IFLA_INET6_STATS, nla_len(nla));
4281
4282 nla = nla_reserve(skb, IFLA_INET6_ICMP6STATS, ICMP6_MIB_MAX * sizeof(u64));
4283 if (nla == NULL)
4284 goto nla_put_failure;
4285 snmp6_fill_stats(nla_data(nla), idev, IFLA_INET6_ICMP6STATS, nla_len(nla));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004286
Daniel Borkmannf53adae2013-04-08 04:01:30 +00004287 nla = nla_reserve(skb, IFLA_INET6_TOKEN, sizeof(struct in6_addr));
4288 if (nla == NULL)
4289 goto nla_put_failure;
4290 read_lock_bh(&idev->lock);
4291 memcpy(nla_data(nla), idev->token.s6_addr, nla_len(nla));
4292 read_unlock_bh(&idev->lock);
4293
Thomas Grafb382b192010-11-16 04:33:57 +00004294 return 0;
4295
4296nla_put_failure:
4297 return -EMSGSIZE;
4298}
4299
4300static size_t inet6_get_link_af_size(const struct net_device *dev)
4301{
4302 if (!__in6_dev_get(dev))
4303 return 0;
4304
4305 return inet6_ifla6_size();
4306}
4307
4308static int inet6_fill_link_af(struct sk_buff *skb, const struct net_device *dev)
4309{
4310 struct inet6_dev *idev = __in6_dev_get(dev);
4311
4312 if (!idev)
4313 return -ENODATA;
4314
4315 if (inet6_fill_ifla6_attrs(skb, idev) < 0)
4316 return -EMSGSIZE;
4317
4318 return 0;
4319}
4320
Daniel Borkmannf53adae2013-04-08 04:01:30 +00004321static int inet6_set_iftoken(struct inet6_dev *idev, struct in6_addr *token)
4322{
Daniel Borkmannf53adae2013-04-08 04:01:30 +00004323 struct inet6_ifaddr *ifp;
4324 struct net_device *dev = idev->dev;
Daniel Borkmannfc403832013-04-09 03:47:15 +00004325 bool update_rs = false;
Hannes Frederic Sowadc848292013-06-24 21:42:40 +02004326 struct in6_addr ll_addr;
Daniel Borkmannf53adae2013-04-08 04:01:30 +00004327
4328 if (token == NULL)
4329 return -EINVAL;
4330 if (ipv6_addr_any(token))
4331 return -EINVAL;
4332 if (dev->flags & (IFF_LOOPBACK | IFF_NOARP))
4333 return -EINVAL;
Daniel Borkmannf53adae2013-04-08 04:01:30 +00004334 if (!ipv6_accept_ra(idev))
4335 return -EINVAL;
4336 if (idev->cnf.rtr_solicits <= 0)
4337 return -EINVAL;
4338
4339 write_lock_bh(&idev->lock);
4340
4341 BUILD_BUG_ON(sizeof(token->s6_addr) != 16);
4342 memcpy(idev->token.s6_addr + 8, token->s6_addr + 8, 8);
4343
4344 write_unlock_bh(&idev->lock);
4345
Hannes Frederic Sowadc848292013-06-24 21:42:40 +02004346 if (!idev->dead && (idev->if_flags & IF_READY) &&
4347 !ipv6_get_lladdr(dev, &ll_addr, IFA_F_TENTATIVE |
4348 IFA_F_OPTIMISTIC)) {
Daniel Borkmannfc403832013-04-09 03:47:15 +00004349
4350 /* If we're not ready, then normal ifup will take care
4351 * of this. Otherwise, we need to request our rs here.
4352 */
4353 ndisc_send_rs(dev, &ll_addr, &in6addr_linklocal_allrouters);
4354 update_rs = true;
4355 }
Daniel Borkmannf53adae2013-04-08 04:01:30 +00004356
4357 write_lock_bh(&idev->lock);
Daniel Borkmannfc403832013-04-09 03:47:15 +00004358
Hannes Frederic Sowa77ecaac2013-06-26 03:41:49 +02004359 if (update_rs) {
Daniel Borkmannfc403832013-04-09 03:47:15 +00004360 idev->if_flags |= IF_RS_SENT;
Hannes Frederic Sowa77ecaac2013-06-26 03:41:49 +02004361 idev->rs_probes = 1;
4362 addrconf_mod_rs_timer(idev, idev->cnf.rtr_solicit_interval);
4363 }
Daniel Borkmannf53adae2013-04-08 04:01:30 +00004364
4365 /* Well, that's kinda nasty ... */
4366 list_for_each_entry(ifp, &idev->addr_list, if_list) {
4367 spin_lock(&ifp->lock);
Daniel Borkmann617fe292013-04-09 03:47:16 +00004368 if (ifp->tokenized) {
Daniel Borkmannf53adae2013-04-08 04:01:30 +00004369 ifp->valid_lft = 0;
4370 ifp->prefered_lft = 0;
4371 }
4372 spin_unlock(&ifp->lock);
4373 }
4374
4375 write_unlock_bh(&idev->lock);
Hannes Frederic Sowa2b9651d2013-06-24 22:03:28 +02004376 addrconf_verify(0);
Daniel Borkmannf53adae2013-04-08 04:01:30 +00004377 return 0;
4378}
4379
4380static int inet6_set_link_af(struct net_device *dev, const struct nlattr *nla)
4381{
4382 int err = -EINVAL;
4383 struct inet6_dev *idev = __in6_dev_get(dev);
4384 struct nlattr *tb[IFLA_INET6_MAX + 1];
4385
4386 if (!idev)
4387 return -EAFNOSUPPORT;
4388
4389 if (nla_parse_nested(tb, IFLA_INET6_MAX, nla, NULL) < 0)
4390 BUG();
4391
4392 if (tb[IFLA_INET6_TOKEN])
4393 err = inet6_set_iftoken(idev, nla_data(tb[IFLA_INET6_TOKEN]));
4394
4395 return err;
4396}
4397
Thomas Grafb382b192010-11-16 04:33:57 +00004398static int inet6_fill_ifinfo(struct sk_buff *skb, struct inet6_dev *idev,
Eric W. Biederman15e47302012-09-07 20:12:54 +00004399 u32 portid, u32 seq, int event, unsigned int flags)
Thomas Grafb382b192010-11-16 04:33:57 +00004400{
4401 struct net_device *dev = idev->dev;
4402 struct ifinfomsg *hdr;
4403 struct nlmsghdr *nlh;
4404 void *protoinfo;
4405
Eric W. Biederman15e47302012-09-07 20:12:54 +00004406 nlh = nlmsg_put(skb, portid, seq, event, sizeof(*hdr), flags);
Thomas Grafb382b192010-11-16 04:33:57 +00004407 if (nlh == NULL)
4408 return -EMSGSIZE;
4409
4410 hdr = nlmsg_data(nlh);
4411 hdr->ifi_family = AF_INET6;
4412 hdr->__ifi_pad = 0;
4413 hdr->ifi_type = dev->type;
4414 hdr->ifi_index = dev->ifindex;
4415 hdr->ifi_flags = dev_get_flags(dev);
4416 hdr->ifi_change = 0;
4417
David S. Millerc78679e2012-04-01 20:27:33 -04004418 if (nla_put_string(skb, IFLA_IFNAME, dev->name) ||
4419 (dev->addr_len &&
4420 nla_put(skb, IFLA_ADDRESS, dev->addr_len, dev->dev_addr)) ||
4421 nla_put_u32(skb, IFLA_MTU, dev->mtu) ||
4422 (dev->ifindex != dev->iflink &&
4423 nla_put_u32(skb, IFLA_LINK, dev->iflink)))
4424 goto nla_put_failure;
Thomas Grafb382b192010-11-16 04:33:57 +00004425 protoinfo = nla_nest_start(skb, IFLA_PROTINFO);
4426 if (protoinfo == NULL)
4427 goto nla_put_failure;
4428
4429 if (inet6_fill_ifla6_attrs(skb, idev) < 0)
4430 goto nla_put_failure;
4431
Thomas Graf04561c12006-11-14 19:53:58 -08004432 nla_nest_end(skb, protoinfo);
4433 return nlmsg_end(skb, nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004434
Thomas Graf04561c12006-11-14 19:53:58 -08004435nla_put_failure:
Patrick McHardy26932562007-01-31 23:16:40 -08004436 nlmsg_cancel(skb, nlh);
4437 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004438}
4439
4440static int inet6_dump_ifinfo(struct sk_buff *skb, struct netlink_callback *cb)
4441{
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09004442 struct net *net = sock_net(skb->sk);
Eric Dumazet84d26972009-11-09 12:11:28 +00004443 int h, s_h;
David S. Miller434a8a52009-11-11 18:53:00 -08004444 int idx = 0, s_idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004445 struct net_device *dev;
4446 struct inet6_dev *idev;
Eric Dumazet84d26972009-11-09 12:11:28 +00004447 struct hlist_head *head;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004448
Eric Dumazet84d26972009-11-09 12:11:28 +00004449 s_h = cb->args[0];
4450 s_idx = cb->args[1];
4451
4452 rcu_read_lock();
4453 for (h = s_h; h < NETDEV_HASHENTRIES; h++, s_idx = 0) {
4454 idx = 0;
4455 head = &net->dev_index_head[h];
Sasha Levinb67bfe02013-02-27 17:06:00 -08004456 hlist_for_each_entry_rcu(dev, head, index_hlist) {
Eric Dumazet84d26972009-11-09 12:11:28 +00004457 if (idx < s_idx)
4458 goto cont;
4459 idev = __in6_dev_get(dev);
4460 if (!idev)
4461 goto cont;
4462 if (inet6_fill_ifinfo(skb, idev,
Eric W. Biederman15e47302012-09-07 20:12:54 +00004463 NETLINK_CB(cb->skb).portid,
Eric Dumazet84d26972009-11-09 12:11:28 +00004464 cb->nlh->nlmsg_seq,
4465 RTM_NEWLINK, NLM_F_MULTI) <= 0)
4466 goto out;
Pavel Emelianov7562f872007-05-03 15:13:45 -07004467cont:
Eric Dumazet84d26972009-11-09 12:11:28 +00004468 idx++;
4469 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004470 }
Eric Dumazet84d26972009-11-09 12:11:28 +00004471out:
4472 rcu_read_unlock();
4473 cb->args[1] = idx;
4474 cb->args[0] = h;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004475
4476 return skb->len;
4477}
4478
4479void inet6_ifinfo_notify(int event, struct inet6_dev *idev)
4480{
4481 struct sk_buff *skb;
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09004482 struct net *net = dev_net(idev->dev);
Thomas Graf8d7a76c2006-08-15 00:35:47 -07004483 int err = -ENOBUFS;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09004484
Thomas Graf339bf982006-11-10 14:10:15 -08004485 skb = nlmsg_new(inet6_if_nlmsg_size(), GFP_ATOMIC);
Thomas Graf8d7a76c2006-08-15 00:35:47 -07004486 if (skb == NULL)
4487 goto errout;
4488
4489 err = inet6_fill_ifinfo(skb, idev, 0, 0, event, 0);
Patrick McHardy26932562007-01-31 23:16:40 -08004490 if (err < 0) {
4491 /* -EMSGSIZE implies BUG in inet6_if_nlmsg_size() */
4492 WARN_ON(err == -EMSGSIZE);
4493 kfree_skb(skb);
4494 goto errout;
4495 }
Nicolas Dichtel5f75a102010-12-07 23:38:31 +00004496 rtnl_notify(skb, net, 0, RTNLGRP_IPV6_IFINFO, NULL, GFP_ATOMIC);
Pablo Neira Ayuso1ce85fe2009-02-24 23:18:28 -08004497 return;
Thomas Graf8d7a76c2006-08-15 00:35:47 -07004498errout:
4499 if (err < 0)
Nicolas Dichtel5f75a102010-12-07 23:38:31 +00004500 rtnl_set_sk_err(net, RTNLGRP_IPV6_IFINFO, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004501}
4502
Thomas Graf339bf982006-11-10 14:10:15 -08004503static inline size_t inet6_prefix_nlmsg_size(void)
4504{
4505 return NLMSG_ALIGN(sizeof(struct prefixmsg))
4506 + nla_total_size(sizeof(struct in6_addr))
4507 + nla_total_size(sizeof(struct prefix_cacheinfo));
4508}
YOSHIFUJI Hideakic5396a32006-06-17 22:48:48 -07004509
Linus Torvalds1da177e2005-04-16 15:20:36 -07004510static int inet6_fill_prefix(struct sk_buff *skb, struct inet6_dev *idev,
Eric W. Biederman15e47302012-09-07 20:12:54 +00004511 struct prefix_info *pinfo, u32 portid, u32 seq,
Thomas Graf6051e2f2006-11-14 19:54:19 -08004512 int event, unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004513{
Thomas Graf6051e2f2006-11-14 19:54:19 -08004514 struct prefixmsg *pmsg;
4515 struct nlmsghdr *nlh;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004516 struct prefix_cacheinfo ci;
4517
Eric W. Biederman15e47302012-09-07 20:12:54 +00004518 nlh = nlmsg_put(skb, portid, seq, event, sizeof(*pmsg), flags);
Thomas Graf6051e2f2006-11-14 19:54:19 -08004519 if (nlh == NULL)
Patrick McHardy26932562007-01-31 23:16:40 -08004520 return -EMSGSIZE;
Thomas Graf6051e2f2006-11-14 19:54:19 -08004521
4522 pmsg = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004523 pmsg->prefix_family = AF_INET6;
Patrick McHardy8a470772005-06-28 12:56:45 -07004524 pmsg->prefix_pad1 = 0;
4525 pmsg->prefix_pad2 = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004526 pmsg->prefix_ifindex = idev->dev->ifindex;
4527 pmsg->prefix_len = pinfo->prefix_len;
4528 pmsg->prefix_type = pinfo->type;
Patrick McHardy8a470772005-06-28 12:56:45 -07004529 pmsg->prefix_pad3 = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004530 pmsg->prefix_flags = 0;
4531 if (pinfo->onlink)
4532 pmsg->prefix_flags |= IF_PREFIX_ONLINK;
4533 if (pinfo->autoconf)
4534 pmsg->prefix_flags |= IF_PREFIX_AUTOCONF;
4535
David S. Millerc78679e2012-04-01 20:27:33 -04004536 if (nla_put(skb, PREFIX_ADDRESS, sizeof(pinfo->prefix), &pinfo->prefix))
4537 goto nla_put_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004538 ci.preferred_time = ntohl(pinfo->prefered);
4539 ci.valid_time = ntohl(pinfo->valid);
David S. Millerc78679e2012-04-01 20:27:33 -04004540 if (nla_put(skb, PREFIX_CACHEINFO, sizeof(ci), &ci))
4541 goto nla_put_failure;
Thomas Graf6051e2f2006-11-14 19:54:19 -08004542 return nlmsg_end(skb, nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004543
Thomas Graf6051e2f2006-11-14 19:54:19 -08004544nla_put_failure:
Patrick McHardy26932562007-01-31 23:16:40 -08004545 nlmsg_cancel(skb, nlh);
4546 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004547}
4548
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09004549static void inet6_prefix_notify(int event, struct inet6_dev *idev,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004550 struct prefix_info *pinfo)
4551{
4552 struct sk_buff *skb;
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09004553 struct net *net = dev_net(idev->dev);
Thomas Graf8c384bfa2006-08-15 00:36:07 -07004554 int err = -ENOBUFS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004555
Thomas Graf339bf982006-11-10 14:10:15 -08004556 skb = nlmsg_new(inet6_prefix_nlmsg_size(), GFP_ATOMIC);
Thomas Graf8c384bfa2006-08-15 00:36:07 -07004557 if (skb == NULL)
4558 goto errout;
4559
4560 err = inet6_fill_prefix(skb, idev, pinfo, 0, 0, event, 0);
Patrick McHardy26932562007-01-31 23:16:40 -08004561 if (err < 0) {
4562 /* -EMSGSIZE implies BUG in inet6_prefix_nlmsg_size() */
4563 WARN_ON(err == -EMSGSIZE);
4564 kfree_skb(skb);
4565 goto errout;
4566 }
Pablo Neira Ayuso1ce85fe2009-02-24 23:18:28 -08004567 rtnl_notify(skb, net, 0, RTNLGRP_IPV6_PREFIX, NULL, GFP_ATOMIC);
4568 return;
Thomas Graf8c384bfa2006-08-15 00:36:07 -07004569errout:
4570 if (err < 0)
Benjamin Thery6fda7352008-03-05 10:47:47 -08004571 rtnl_set_sk_err(net, RTNLGRP_IPV6_PREFIX, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004572}
4573
Hannes Frederic Sowa1ec047e2013-06-27 00:06:56 +02004574static void update_valid_ll_addr_cnt(struct inet6_ifaddr *ifp, int count)
4575{
4576 write_lock_bh(&ifp->idev->lock);
4577 spin_lock(&ifp->lock);
4578 if (((ifp->flags & (IFA_F_PERMANENT|IFA_F_TENTATIVE|IFA_F_OPTIMISTIC|
4579 IFA_F_DADFAILED)) == IFA_F_PERMANENT) &&
4580 (ipv6_addr_type(&ifp->addr) & IPV6_ADDR_LINKLOCAL))
4581 ifp->idev->valid_ll_addr_cnt += count;
4582 WARN_ON(ifp->idev->valid_ll_addr_cnt < 0);
4583 spin_unlock(&ifp->lock);
4584 write_unlock_bh(&ifp->idev->lock);
4585}
4586
Linus Torvalds1da177e2005-04-16 15:20:36 -07004587static void __ipv6_ifa_notify(int event, struct inet6_ifaddr *ifp)
4588{
Nicolas Dichtel63998ac2013-03-22 06:28:43 +00004589 struct net *net = dev_net(ifp->idev->dev);
4590
Linus Torvalds1da177e2005-04-16 15:20:36 -07004591 inet6_ifa_notify(event ? : RTM_NEWADDR, ifp);
4592
4593 switch (event) {
4594 case RTM_NEWADDR:
Hannes Frederic Sowa1ec047e2013-06-27 00:06:56 +02004595 update_valid_ll_addr_cnt(ifp, 1);
4596
Neil Horman95c385b2007-04-25 17:08:10 -07004597 /*
4598 * If the address was optimistic
4599 * we inserted the route at the start of
4600 * our DAD process, so we don't need
4601 * to do it again
4602 */
4603 if (!(ifp->rt->rt6i_node))
4604 ip6_ins_rt(ifp->rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004605 if (ifp->idev->cnf.forwarding)
4606 addrconf_join_anycast(ifp);
Cong Wang7996c792013-05-22 05:41:06 +00004607 if (!ipv6_addr_any(&ifp->peer_addr))
Nicolas Dichtelcaeaba72013-05-16 22:32:00 +00004608 addrconf_prefix_route(&ifp->peer_addr, 128,
4609 ifp->idev->dev, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004610 break;
4611 case RTM_DELADDR:
Hannes Frederic Sowa1ec047e2013-06-27 00:06:56 +02004612 update_valid_ll_addr_cnt(ifp, -1);
4613
Linus Torvalds1da177e2005-04-16 15:20:36 -07004614 if (ifp->idev->cnf.forwarding)
4615 addrconf_leave_anycast(ifp);
4616 addrconf_leave_solict(ifp->idev, &ifp->addr);
Cong Wang7996c792013-05-22 05:41:06 +00004617 if (!ipv6_addr_any(&ifp->peer_addr)) {
Nicolas Dichtelcaeaba72013-05-16 22:32:00 +00004618 struct rt6_info *rt;
4619 struct net_device *dev = ifp->idev->dev;
4620
4621 rt = rt6_lookup(dev_net(dev), &ifp->peer_addr, NULL,
4622 dev->ifindex, 1);
4623 if (rt) {
4624 dst_hold(&rt->dst);
4625 if (ip6_del_rt(rt))
4626 dst_free(&rt->dst);
4627 }
4628 }
Changli Gaod8d1f302010-06-10 23:31:35 -07004629 dst_hold(&ifp->rt->dst);
stephen hemminger93fa1592010-04-12 05:41:31 +00004630
David S. Miller73a8bd72011-01-23 23:27:15 -08004631 if (ip6_del_rt(ifp->rt))
Changli Gaod8d1f302010-06-10 23:31:35 -07004632 dst_free(&ifp->rt->dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004633 break;
4634 }
Nicolas Dichtel63998ac2013-03-22 06:28:43 +00004635 atomic_inc(&net->ipv6.dev_addr_genid);
fan.du439677d2013-08-01 17:44:44 +08004636 rt_genid_bump_ipv6(net);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004637}
4638
4639static void ipv6_ifa_notify(int event, struct inet6_ifaddr *ifp)
4640{
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -07004641 rcu_read_lock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004642 if (likely(ifp->idev->dead == 0))
4643 __ipv6_ifa_notify(event, ifp);
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -07004644 rcu_read_unlock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004645}
4646
4647#ifdef CONFIG_SYSCTL
4648
4649static
Joe Perchesfe2c6332013-06-11 23:04:25 -07004650int addrconf_sysctl_forward(struct ctl_table *ctl, int write,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004651 void __user *buffer, size_t *lenp, loff_t *ppos)
4652{
4653 int *valp = ctl->data;
4654 int val = *valp;
Eric W. Biederman88af1822010-02-19 13:22:59 +00004655 loff_t pos = *ppos;
Joe Perchesfe2c6332013-06-11 23:04:25 -07004656 struct ctl_table lctl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004657 int ret;
4658
Francesco Ruggeri013d97e2012-01-16 10:40:10 +00004659 /*
4660 * ctl->data points to idev->cnf.forwarding, we should
4661 * not modify it until we get the rtnl lock.
4662 */
4663 lctl = *ctl;
4664 lctl.data = &val;
4665
4666 ret = proc_dointvec(&lctl, write, buffer, lenp, ppos);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004667
Pavel Emelyanovc8fecf22007-12-05 01:50:24 -08004668 if (write)
Stephen Hemmingerb325fdd2009-02-26 06:55:31 +00004669 ret = addrconf_fixup_forwarding(ctl, valp, val);
Eric W. Biederman88af1822010-02-19 13:22:59 +00004670 if (ret)
4671 *ppos = pos;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09004672 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004673}
4674
Brian Haley56d417b2009-06-01 03:07:33 -07004675static void dev_disable_change(struct inet6_dev *idev)
4676{
Cong Wang75538c22013-05-29 11:30:50 +08004677 struct netdev_notifier_info info;
4678
Brian Haley56d417b2009-06-01 03:07:33 -07004679 if (!idev || !idev->dev)
4680 return;
4681
Cong Wang75538c22013-05-29 11:30:50 +08004682 netdev_notifier_info_init(&info, idev->dev);
Brian Haley56d417b2009-06-01 03:07:33 -07004683 if (idev->cnf.disable_ipv6)
Cong Wang75538c22013-05-29 11:30:50 +08004684 addrconf_notify(NULL, NETDEV_DOWN, &info);
Brian Haley56d417b2009-06-01 03:07:33 -07004685 else
Cong Wang75538c22013-05-29 11:30:50 +08004686 addrconf_notify(NULL, NETDEV_UP, &info);
Brian Haley56d417b2009-06-01 03:07:33 -07004687}
4688
4689static void addrconf_disable_change(struct net *net, __s32 newf)
4690{
4691 struct net_device *dev;
4692 struct inet6_dev *idev;
4693
Eric Dumazetc6d14c82009-11-04 05:43:23 -08004694 rcu_read_lock();
4695 for_each_netdev_rcu(net, dev) {
Brian Haley56d417b2009-06-01 03:07:33 -07004696 idev = __in6_dev_get(dev);
4697 if (idev) {
4698 int changed = (!idev->cnf.disable_ipv6) ^ (!newf);
4699 idev->cnf.disable_ipv6 = newf;
4700 if (changed)
4701 dev_disable_change(idev);
4702 }
Brian Haley56d417b2009-06-01 03:07:33 -07004703 }
Eric Dumazetc6d14c82009-11-04 05:43:23 -08004704 rcu_read_unlock();
Brian Haley56d417b2009-06-01 03:07:33 -07004705}
4706
Francesco Ruggeri013d97e2012-01-16 10:40:10 +00004707static int addrconf_disable_ipv6(struct ctl_table *table, int *p, int newf)
Brian Haley56d417b2009-06-01 03:07:33 -07004708{
4709 struct net *net;
Francesco Ruggeri013d97e2012-01-16 10:40:10 +00004710 int old;
4711
4712 if (!rtnl_trylock())
4713 return restart_syscall();
Brian Haley56d417b2009-06-01 03:07:33 -07004714
4715 net = (struct net *)table->extra2;
Francesco Ruggeri013d97e2012-01-16 10:40:10 +00004716 old = *p;
4717 *p = newf;
Brian Haley56d417b2009-06-01 03:07:33 -07004718
Francesco Ruggeri013d97e2012-01-16 10:40:10 +00004719 if (p == &net->ipv6.devconf_dflt->disable_ipv6) {
4720 rtnl_unlock();
Brian Haley56d417b2009-06-01 03:07:33 -07004721 return 0;
Eric W. Biederman88af1822010-02-19 13:22:59 +00004722 }
Brian Haley56d417b2009-06-01 03:07:33 -07004723
4724 if (p == &net->ipv6.devconf_all->disable_ipv6) {
Brian Haley56d417b2009-06-01 03:07:33 -07004725 net->ipv6.devconf_dflt->disable_ipv6 = newf;
4726 addrconf_disable_change(net, newf);
Francesco Ruggeri013d97e2012-01-16 10:40:10 +00004727 } else if ((!newf) ^ (!old))
Brian Haley56d417b2009-06-01 03:07:33 -07004728 dev_disable_change((struct inet6_dev *)table->extra1);
4729
4730 rtnl_unlock();
4731 return 0;
4732}
4733
4734static
Joe Perchesfe2c6332013-06-11 23:04:25 -07004735int addrconf_sysctl_disable(struct ctl_table *ctl, int write,
Brian Haley56d417b2009-06-01 03:07:33 -07004736 void __user *buffer, size_t *lenp, loff_t *ppos)
4737{
4738 int *valp = ctl->data;
4739 int val = *valp;
Eric W. Biederman88af1822010-02-19 13:22:59 +00004740 loff_t pos = *ppos;
Joe Perchesfe2c6332013-06-11 23:04:25 -07004741 struct ctl_table lctl;
Brian Haley56d417b2009-06-01 03:07:33 -07004742 int ret;
4743
Francesco Ruggeri013d97e2012-01-16 10:40:10 +00004744 /*
4745 * ctl->data points to idev->cnf.disable_ipv6, we should
4746 * not modify it until we get the rtnl lock.
4747 */
4748 lctl = *ctl;
4749 lctl.data = &val;
4750
4751 ret = proc_dointvec(&lctl, write, buffer, lenp, ppos);
Brian Haley56d417b2009-06-01 03:07:33 -07004752
4753 if (write)
4754 ret = addrconf_disable_ipv6(ctl, valp, val);
Eric W. Biederman88af1822010-02-19 13:22:59 +00004755 if (ret)
4756 *ppos = pos;
Brian Haley56d417b2009-06-01 03:07:33 -07004757 return ret;
4758}
4759
Linus Torvalds1da177e2005-04-16 15:20:36 -07004760static struct addrconf_sysctl_table
4761{
4762 struct ctl_table_header *sysctl_header;
Joe Perchesfe2c6332013-06-11 23:04:25 -07004763 struct ctl_table addrconf_vars[DEVCONF_MAX+1];
Brian Haleyab32ea52006-09-22 14:15:41 -07004764} addrconf_sysctl __read_mostly = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004765 .sysctl_header = NULL,
4766 .addrconf_vars = {
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09004767 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004768 .procname = "forwarding",
4769 .data = &ipv6_devconf.forwarding,
4770 .maxlen = sizeof(int),
4771 .mode = 0644,
4772 .proc_handler = addrconf_sysctl_forward,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004773 },
4774 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004775 .procname = "hop_limit",
4776 .data = &ipv6_devconf.hop_limit,
4777 .maxlen = sizeof(int),
4778 .mode = 0644,
4779 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004780 },
4781 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004782 .procname = "mtu",
4783 .data = &ipv6_devconf.mtu6,
4784 .maxlen = sizeof(int),
4785 .mode = 0644,
4786 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004787 },
4788 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004789 .procname = "accept_ra",
4790 .data = &ipv6_devconf.accept_ra,
4791 .maxlen = sizeof(int),
4792 .mode = 0644,
4793 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004794 },
4795 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004796 .procname = "accept_redirects",
4797 .data = &ipv6_devconf.accept_redirects,
4798 .maxlen = sizeof(int),
4799 .mode = 0644,
4800 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004801 },
4802 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004803 .procname = "autoconf",
4804 .data = &ipv6_devconf.autoconf,
4805 .maxlen = sizeof(int),
4806 .mode = 0644,
4807 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004808 },
4809 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004810 .procname = "dad_transmits",
4811 .data = &ipv6_devconf.dad_transmits,
4812 .maxlen = sizeof(int),
4813 .mode = 0644,
4814 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004815 },
4816 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004817 .procname = "router_solicitations",
4818 .data = &ipv6_devconf.rtr_solicits,
4819 .maxlen = sizeof(int),
4820 .mode = 0644,
4821 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004822 },
4823 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004824 .procname = "router_solicitation_interval",
4825 .data = &ipv6_devconf.rtr_solicit_interval,
4826 .maxlen = sizeof(int),
4827 .mode = 0644,
4828 .proc_handler = proc_dointvec_jiffies,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004829 },
4830 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004831 .procname = "router_solicitation_delay",
4832 .data = &ipv6_devconf.rtr_solicit_delay,
4833 .maxlen = sizeof(int),
4834 .mode = 0644,
4835 .proc_handler = proc_dointvec_jiffies,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004836 },
4837 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004838 .procname = "force_mld_version",
4839 .data = &ipv6_devconf.force_mld_version,
4840 .maxlen = sizeof(int),
4841 .mode = 0644,
4842 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004843 },
Hannes Frederic Sowafc4eba52013-08-14 01:03:46 +02004844 {
4845 .procname = "mldv1_unsolicited_report_interval",
4846 .data =
4847 &ipv6_devconf.mldv1_unsolicited_report_interval,
4848 .maxlen = sizeof(int),
4849 .mode = 0644,
4850 .proc_handler = proc_dointvec_ms_jiffies,
4851 },
4852 {
4853 .procname = "mldv2_unsolicited_report_interval",
4854 .data =
4855 &ipv6_devconf.mldv2_unsolicited_report_interval,
4856 .maxlen = sizeof(int),
4857 .mode = 0644,
4858 .proc_handler = proc_dointvec_ms_jiffies,
4859 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07004860#ifdef CONFIG_IPV6_PRIVACY
4861 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004862 .procname = "use_tempaddr",
4863 .data = &ipv6_devconf.use_tempaddr,
4864 .maxlen = sizeof(int),
4865 .mode = 0644,
4866 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004867 },
4868 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004869 .procname = "temp_valid_lft",
4870 .data = &ipv6_devconf.temp_valid_lft,
4871 .maxlen = sizeof(int),
4872 .mode = 0644,
4873 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004874 },
4875 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004876 .procname = "temp_prefered_lft",
4877 .data = &ipv6_devconf.temp_prefered_lft,
4878 .maxlen = sizeof(int),
4879 .mode = 0644,
4880 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004881 },
4882 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004883 .procname = "regen_max_retry",
4884 .data = &ipv6_devconf.regen_max_retry,
4885 .maxlen = sizeof(int),
4886 .mode = 0644,
4887 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004888 },
4889 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004890 .procname = "max_desync_factor",
4891 .data = &ipv6_devconf.max_desync_factor,
4892 .maxlen = sizeof(int),
4893 .mode = 0644,
4894 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004895 },
4896#endif
4897 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004898 .procname = "max_addresses",
4899 .data = &ipv6_devconf.max_addresses,
4900 .maxlen = sizeof(int),
4901 .mode = 0644,
4902 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004903 },
4904 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004905 .procname = "accept_ra_defrtr",
4906 .data = &ipv6_devconf.accept_ra_defrtr,
4907 .maxlen = sizeof(int),
4908 .mode = 0644,
4909 .proc_handler = proc_dointvec,
YOSHIFUJI Hideaki65f5c7c2006-03-20 16:55:08 -08004910 },
4911 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004912 .procname = "accept_ra_pinfo",
4913 .data = &ipv6_devconf.accept_ra_pinfo,
4914 .maxlen = sizeof(int),
4915 .mode = 0644,
4916 .proc_handler = proc_dointvec,
YOSHIFUJI Hideakic4fd30e2006-03-20 16:55:26 -08004917 },
YOSHIFUJI Hideaki930d6ff2006-03-20 17:05:30 -08004918#ifdef CONFIG_IPV6_ROUTER_PREF
4919 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004920 .procname = "accept_ra_rtr_pref",
4921 .data = &ipv6_devconf.accept_ra_rtr_pref,
4922 .maxlen = sizeof(int),
4923 .mode = 0644,
4924 .proc_handler = proc_dointvec,
YOSHIFUJI Hideaki930d6ff2006-03-20 17:05:30 -08004925 },
YOSHIFUJI Hideaki52e163562006-03-20 17:05:47 -08004926 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004927 .procname = "router_probe_interval",
4928 .data = &ipv6_devconf.rtr_probe_interval,
4929 .maxlen = sizeof(int),
4930 .mode = 0644,
4931 .proc_handler = proc_dointvec_jiffies,
YOSHIFUJI Hideaki52e163562006-03-20 17:05:47 -08004932 },
Neil Hormanfa03ef32007-01-30 14:30:10 -08004933#ifdef CONFIG_IPV6_ROUTE_INFO
YOSHIFUJI Hideaki09c884d2006-03-20 17:07:03 -08004934 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004935 .procname = "accept_ra_rt_info_max_plen",
4936 .data = &ipv6_devconf.accept_ra_rt_info_max_plen,
4937 .maxlen = sizeof(int),
4938 .mode = 0644,
4939 .proc_handler = proc_dointvec,
YOSHIFUJI Hideaki09c884d2006-03-20 17:07:03 -08004940 },
4941#endif
YOSHIFUJI Hideaki930d6ff2006-03-20 17:05:30 -08004942#endif
YOSHIFUJI Hideakic4fd30e2006-03-20 16:55:26 -08004943 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004944 .procname = "proxy_ndp",
4945 .data = &ipv6_devconf.proxy_ndp,
4946 .maxlen = sizeof(int),
4947 .mode = 0644,
4948 .proc_handler = proc_dointvec,
YOSHIFUJI Hideakifbea49e2006-09-22 14:43:49 -07004949 },
4950 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004951 .procname = "accept_source_route",
4952 .data = &ipv6_devconf.accept_source_route,
4953 .maxlen = sizeof(int),
4954 .mode = 0644,
4955 .proc_handler = proc_dointvec,
YOSHIFUJI Hideaki0bcbc922007-04-24 14:58:30 -07004956 },
Neil Horman95c385b2007-04-25 17:08:10 -07004957#ifdef CONFIG_IPV6_OPTIMISTIC_DAD
4958 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004959 .procname = "optimistic_dad",
4960 .data = &ipv6_devconf.optimistic_dad,
4961 .maxlen = sizeof(int),
4962 .mode = 0644,
4963 .proc_handler = proc_dointvec,
Neil Horman95c385b2007-04-25 17:08:10 -07004964
4965 },
4966#endif
YOSHIFUJI Hideaki7bc570c2008-04-03 09:22:53 +09004967#ifdef CONFIG_IPV6_MROUTE
4968 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004969 .procname = "mc_forwarding",
4970 .data = &ipv6_devconf.mc_forwarding,
4971 .maxlen = sizeof(int),
4972 .mode = 0444,
4973 .proc_handler = proc_dointvec,
YOSHIFUJI Hideaki7bc570c2008-04-03 09:22:53 +09004974 },
4975#endif
YOSHIFUJI Hideaki0bcbc922007-04-24 14:58:30 -07004976 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004977 .procname = "disable_ipv6",
4978 .data = &ipv6_devconf.disable_ipv6,
4979 .maxlen = sizeof(int),
4980 .mode = 0644,
4981 .proc_handler = addrconf_sysctl_disable,
YOSHIFUJI Hideaki778d80b2008-06-28 14:17:11 +09004982 },
4983 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004984 .procname = "accept_dad",
4985 .data = &ipv6_devconf.accept_dad,
4986 .maxlen = sizeof(int),
4987 .mode = 0644,
4988 .proc_handler = proc_dointvec,
YOSHIFUJI Hideaki1b34be72008-06-28 14:18:38 +09004989 },
4990 {
Octavian Purdilaf7734fd2009-10-02 11:39:15 +00004991 .procname = "force_tllao",
4992 .data = &ipv6_devconf.force_tllao,
4993 .maxlen = sizeof(int),
4994 .mode = 0644,
4995 .proc_handler = proc_dointvec
4996 },
4997 {
Hannes Frederic Sowa5cb04432012-11-06 16:46:20 +00004998 .procname = "ndisc_notify",
4999 .data = &ipv6_devconf.ndisc_notify,
5000 .maxlen = sizeof(int),
5001 .mode = 0644,
5002 .proc_handler = proc_dointvec
5003 },
5004 {
Eric W. Biedermanf8572d82009-11-05 13:32:03 -08005005 /* sentinel */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005006 }
5007 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07005008};
5009
Pavel Emelyanovbff16c22008-01-10 17:42:13 -08005010static int __addrconf_sysctl_register(struct net *net, char *dev_name,
Eric W. Biedermanf8572d82009-11-05 13:32:03 -08005011 struct inet6_dev *idev, struct ipv6_devconf *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005012{
5013 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005014 struct addrconf_sysctl_table *t;
Eric W. Biederman6105e292012-04-19 13:41:24 +00005015 char path[sizeof("net/ipv6/conf/") + IFNAMSIZ];
Pavel Emelyanov1dab6222007-12-02 00:59:38 +11005016
Arnaldo Carvalho de Meloaf879cc2006-11-17 12:14:37 -02005017 t = kmemdup(&addrconf_sysctl, sizeof(*t), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005018 if (t == NULL)
Pavel Emelyanovf68635e2007-12-02 00:21:52 +11005019 goto out;
5020
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07005021 for (i = 0; t->addrconf_vars[i].data; i++) {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07005022 t->addrconf_vars[i].data += (char *)p - (char *)&ipv6_devconf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005023 t->addrconf_vars[i].extra1 = idev; /* embedded; no ref */
Pavel Emelyanovbff16c22008-01-10 17:42:13 -08005024 t->addrconf_vars[i].extra2 = net;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005025 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005026
Eric W. Biederman6105e292012-04-19 13:41:24 +00005027 snprintf(path, sizeof(path), "net/ipv6/conf/%s", dev_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005028
Eric W. Biederman6105e292012-04-19 13:41:24 +00005029 t->sysctl_header = register_net_sysctl(net, path, t->addrconf_vars);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005030 if (t->sysctl_header == NULL)
Eric W. Biederman6105e292012-04-19 13:41:24 +00005031 goto free;
Pavel Emelyanovf68635e2007-12-02 00:21:52 +11005032
5033 p->sysctl = t;
Pavel Emelyanov95897312008-01-10 17:41:45 -08005034 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005035
Pavel Emelyanovf68635e2007-12-02 00:21:52 +11005036free:
Linus Torvalds1da177e2005-04-16 15:20:36 -07005037 kfree(t);
Pavel Emelyanovf68635e2007-12-02 00:21:52 +11005038out:
Pavel Emelyanov95897312008-01-10 17:41:45 -08005039 return -ENOBUFS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005040}
5041
Pavel Emelyanov408c4762008-01-10 17:41:21 -08005042static void __addrconf_sysctl_unregister(struct ipv6_devconf *p)
5043{
5044 struct addrconf_sysctl_table *t;
5045
5046 if (p->sysctl == NULL)
5047 return;
5048
5049 t = p->sysctl;
5050 p->sysctl = NULL;
Lucian Adrian Grijincuff538812011-05-01 01:44:01 +00005051 unregister_net_sysctl_table(t->sysctl_header);
Pavel Emelyanov408c4762008-01-10 17:41:21 -08005052 kfree(t);
5053}
5054
Pavel Emelyanovf52295a2007-12-02 00:58:37 +11005055static void addrconf_sysctl_register(struct inet6_dev *idev)
5056{
Eric W. Biederman54716e32010-02-14 03:27:03 +00005057 neigh_sysctl_register(idev->dev, idev->nd_parms, "ipv6",
Eric W. Biedermanf8572d82009-11-05 13:32:03 -08005058 &ndisc_ifinfo_sysctl_change);
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09005059 __addrconf_sysctl_register(dev_net(idev->dev), idev->dev->name,
Eric W. Biedermanf8572d82009-11-05 13:32:03 -08005060 idev, &idev->cnf);
Pavel Emelyanovf52295a2007-12-02 00:58:37 +11005061}
5062
Pavel Emelyanov408c4762008-01-10 17:41:21 -08005063static void addrconf_sysctl_unregister(struct inet6_dev *idev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005064{
Pavel Emelyanov408c4762008-01-10 17:41:21 -08005065 __addrconf_sysctl_unregister(&idev->cnf);
5066 neigh_sysctl_unregister(idev->nd_parms);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005067}
5068
5069
5070#endif
5071
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00005072static int __net_init addrconf_init_net(struct net *net)
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08005073{
Hong Zhiguoa79ca222013-03-26 01:52:45 +08005074 int err = -ENOMEM;
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08005075 struct ipv6_devconf *all, *dflt;
5076
Hong Zhiguoa79ca222013-03-26 01:52:45 +08005077 all = kmemdup(&ipv6_devconf, sizeof(ipv6_devconf), GFP_KERNEL);
5078 if (all == NULL)
5079 goto err_alloc_all;
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08005080
Hong Zhiguoa79ca222013-03-26 01:52:45 +08005081 dflt = kmemdup(&ipv6_devconf_dflt, sizeof(ipv6_devconf_dflt), GFP_KERNEL);
5082 if (dflt == NULL)
5083 goto err_alloc_dflt;
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08005084
Hong Zhiguoa79ca222013-03-26 01:52:45 +08005085 /* these will be inherited by all namespaces */
5086 dflt->autoconf = ipv6_defaults.autoconf;
5087 dflt->disable_ipv6 = ipv6_defaults.disable_ipv6;
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08005088
5089 net->ipv6.devconf_all = all;
5090 net->ipv6.devconf_dflt = dflt;
5091
5092#ifdef CONFIG_SYSCTL
Eric W. Biedermanf8572d82009-11-05 13:32:03 -08005093 err = __addrconf_sysctl_register(net, "all", NULL, all);
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08005094 if (err < 0)
5095 goto err_reg_all;
5096
Eric W. Biedermanf8572d82009-11-05 13:32:03 -08005097 err = __addrconf_sysctl_register(net, "default", NULL, dflt);
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08005098 if (err < 0)
5099 goto err_reg_dflt;
5100#endif
5101 return 0;
5102
5103#ifdef CONFIG_SYSCTL
5104err_reg_dflt:
5105 __addrconf_sysctl_unregister(all);
5106err_reg_all:
5107 kfree(dflt);
5108#endif
5109err_alloc_dflt:
5110 kfree(all);
5111err_alloc_all:
5112 return err;
5113}
5114
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00005115static void __net_exit addrconf_exit_net(struct net *net)
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08005116{
5117#ifdef CONFIG_SYSCTL
5118 __addrconf_sysctl_unregister(net->ipv6.devconf_dflt);
5119 __addrconf_sysctl_unregister(net->ipv6.devconf_all);
5120#endif
Octavian Purdila09ad9bc2009-11-25 15:14:13 -08005121 if (!net_eq(net, &init_net)) {
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08005122 kfree(net->ipv6.devconf_dflt);
5123 kfree(net->ipv6.devconf_all);
5124 }
5125}
5126
5127static struct pernet_operations addrconf_ops = {
5128 .init = addrconf_init_net,
5129 .exit = addrconf_exit_net,
5130};
5131
Thomas Grafb382b192010-11-16 04:33:57 +00005132static struct rtnl_af_ops inet6_ops = {
5133 .family = AF_INET6,
5134 .fill_link_af = inet6_fill_link_af,
5135 .get_link_af_size = inet6_get_link_af_size,
Daniel Borkmannf53adae2013-04-08 04:01:30 +00005136 .set_link_af = inet6_set_link_af,
Thomas Grafb382b192010-11-16 04:33:57 +00005137};
5138
Linus Torvalds1da177e2005-04-16 15:20:36 -07005139/*
5140 * Init / cleanup code
5141 */
5142
5143int __init addrconf_init(void)
5144{
stephen hemmingerc2e21292010-03-17 20:31:10 +00005145 int i, err;
YOSHIFUJI Hideaki2a8cc6c2007-11-14 15:56:23 +09005146
Stephen Hemmingere21e8462010-03-20 16:09:01 -07005147 err = ipv6_addr_label_init();
5148 if (err < 0) {
Joe Perchesf3213832012-05-15 14:11:53 +00005149 pr_crit("%s: cannot initialize default policy table: %d\n",
5150 __func__, err);
Neil Horman2cc6d2b2010-09-24 09:55:52 +00005151 goto out;
YOSHIFUJI Hideaki2a8cc6c2007-11-14 15:56:23 +09005152 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005153
Neil Horman2cc6d2b2010-09-24 09:55:52 +00005154 err = register_pernet_subsys(&addrconf_ops);
5155 if (err < 0)
5156 goto out_addrlabel;
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08005157
Linus Torvalds1da177e2005-04-16 15:20:36 -07005158 /* The addrconf netdev notifier requires that loopback_dev
5159 * has it's ipv6 private information allocated and setup
5160 * before it can bring up and give link-local addresses
5161 * to other devices which are up.
5162 *
5163 * Unfortunately, loopback_dev is not necessarily the first
5164 * entry in the global dev_base list of net devices. In fact,
5165 * it is likely to be the very last entry on that list.
5166 * So this causes the notifier registry below to try and
5167 * give link-local addresses to all devices besides loopback_dev
5168 * first, then loopback_dev, which cases all the non-loopback_dev
5169 * devices to fail to get a link-local address.
5170 *
5171 * So, as a temporary fix, allocate the ipv6 structure for
5172 * loopback_dev first by hand.
5173 * Longer term, all of the dependencies ipv6 has upon the loopback
5174 * device and it being up should be removed.
5175 */
5176 rtnl_lock();
Eric W. Biederman2774c7a2007-09-26 22:10:56 -07005177 if (!ipv6_add_dev(init_net.loopback_dev))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005178 err = -ENOMEM;
5179 rtnl_unlock();
5180 if (err)
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08005181 goto errlo;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005182
stephen hemmingerc2e21292010-03-17 20:31:10 +00005183 for (i = 0; i < IN6_ADDR_HSIZE; i++)
5184 INIT_HLIST_HEAD(&inet6_addr_lst[i]);
5185
Linus Torvalds1da177e2005-04-16 15:20:36 -07005186 register_netdevice_notifier(&ipv6_dev_notf);
5187
Linus Torvalds1da177e2005-04-16 15:20:36 -07005188 addrconf_verify(0);
Thomas Grafc127ea22007-03-22 11:58:32 -07005189
Thomas Grafb382b192010-11-16 04:33:57 +00005190 err = rtnl_af_register(&inet6_ops);
5191 if (err < 0)
5192 goto errout_af;
5193
Greg Rosec7ac8672011-06-10 01:27:09 +00005194 err = __rtnl_register(PF_INET6, RTM_GETLINK, NULL, inet6_dump_ifinfo,
5195 NULL);
Thomas Grafc127ea22007-03-22 11:58:32 -07005196 if (err < 0)
5197 goto errout;
5198
5199 /* Only the first call to __rtnl_register can fail */
Greg Rosec7ac8672011-06-10 01:27:09 +00005200 __rtnl_register(PF_INET6, RTM_NEWADDR, inet6_rtm_newaddr, NULL, NULL);
5201 __rtnl_register(PF_INET6, RTM_DELADDR, inet6_rtm_deladdr, NULL, NULL);
5202 __rtnl_register(PF_INET6, RTM_GETADDR, inet6_rtm_getaddr,
5203 inet6_dump_ifaddr, NULL);
5204 __rtnl_register(PF_INET6, RTM_GETMULTICAST, NULL,
5205 inet6_dump_ifmcaddr, NULL);
5206 __rtnl_register(PF_INET6, RTM_GETANYCAST, NULL,
5207 inet6_dump_ifacaddr, NULL);
Nicolas Dichtel76f8f6c2012-10-25 22:28:51 +00005208 __rtnl_register(PF_INET6, RTM_GETNETCONF, inet6_netconf_get_devconf,
Nicolas Dichtel7a674202013-03-05 23:42:06 +00005209 inet6_netconf_dump_devconf, NULL);
Thomas Grafc127ea22007-03-22 11:58:32 -07005210
YOSHIFUJI Hideaki2a8cc6c2007-11-14 15:56:23 +09005211 ipv6_addr_label_rtnl_register();
5212
Linus Torvalds1da177e2005-04-16 15:20:36 -07005213 return 0;
Thomas Grafc127ea22007-03-22 11:58:32 -07005214errout:
Thomas Grafb382b192010-11-16 04:33:57 +00005215 rtnl_af_unregister(&inet6_ops);
5216errout_af:
Thomas Grafc127ea22007-03-22 11:58:32 -07005217 unregister_netdevice_notifier(&ipv6_dev_notf);
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08005218errlo:
5219 unregister_pernet_subsys(&addrconf_ops);
Neil Horman2cc6d2b2010-09-24 09:55:52 +00005220out_addrlabel:
5221 ipv6_addr_label_cleanup();
5222out:
Thomas Grafc127ea22007-03-22 11:58:32 -07005223 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005224}
5225
Daniel Lezcano09f77092007-12-13 05:34:58 -08005226void addrconf_cleanup(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005227{
Daniel Lezcano176c39a2009-03-03 01:06:45 -08005228 struct net_device *dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005229 int i;
5230
5231 unregister_netdevice_notifier(&ipv6_dev_notf);
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08005232 unregister_pernet_subsys(&addrconf_ops);
Neil Horman2cc6d2b2010-09-24 09:55:52 +00005233 ipv6_addr_label_cleanup();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005234
5235 rtnl_lock();
5236
Thomas Grafb382b192010-11-16 04:33:57 +00005237 __rtnl_af_unregister(&inet6_ops);
5238
Daniel Lezcano176c39a2009-03-03 01:06:45 -08005239 /* clean dev list */
5240 for_each_netdev(&init_net, dev) {
5241 if (__in6_dev_get(dev) == NULL)
5242 continue;
5243 addrconf_ifdown(dev, 1);
5244 }
5245 addrconf_ifdown(init_net.loopback_dev, 2);
5246
Linus Torvalds1da177e2005-04-16 15:20:36 -07005247 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005248 * Check hash table.
5249 */
stephen hemminger5c578aed2010-03-17 20:31:11 +00005250 spin_lock_bh(&addrconf_hash_lock);
stephen hemmingerc2e21292010-03-17 20:31:10 +00005251 for (i = 0; i < IN6_ADDR_HSIZE; i++)
5252 WARN_ON(!hlist_empty(&inet6_addr_lst[i]));
stephen hemminger5c578aed2010-03-17 20:31:11 +00005253 spin_unlock_bh(&addrconf_hash_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005254
5255 del_timer(&addr_chk_timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005256 rtnl_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005257}