blob: 3ca23e89f517a6a2db31a3978957c69c305f4d43 [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
Linus Torvalds1da177e2005-04-16 15:20:36 -07001134 ift = !max_addresses ||
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001135 ipv6_count_addresses(idev) < max_addresses ?
Jiri Pirko3f8f5292013-08-01 10:41:27 +02001136 ipv6_add_addr(idev, &addr, NULL, tmp_plen,
Jiri Benc8a226b22013-08-01 10:41:28 +02001137 ipv6_addr_scope(&addr), addr_flags,
1138 tmp_valid_lft, tmp_prefered_lft) : NULL;
YOSHIFUJI Hideaki / 吉藤英明3f0d2ba2013-01-22 06:32:54 +00001139 if (IS_ERR_OR_NULL(ift)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001140 in6_ifa_put(ifp);
1141 in6_dev_put(idev);
Joe Perchesf3213832012-05-15 14:11:53 +00001142 pr_info("%s: retry temporary address regeneration\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001143 tmpaddr = &addr;
1144 write_lock(&idev->lock);
1145 goto retry;
1146 }
1147
1148 spin_lock_bh(&ift->lock);
1149 ift->ifpub = ifp;
Lorenzo Colitti76f793e2011-07-26 13:50:49 +00001150 ift->cstamp = now;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001151 ift->tstamp = tmp_tstamp;
1152 spin_unlock_bh(&ift->lock);
1153
David S. Millercf22f9a2012-04-14 21:37:40 -04001154 addrconf_dad_start(ift);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001155 in6_ifa_put(ift);
1156 in6_dev_put(idev);
1157out:
1158 return ret;
1159}
1160#endif
1161
1162/*
YOSHIFUJI Hideaki072047e42005-11-08 09:38:30 -08001163 * Choose an appropriate source address (RFC3484)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001164 */
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001165enum {
1166 IPV6_SADDR_RULE_INIT = 0,
1167 IPV6_SADDR_RULE_LOCAL,
1168 IPV6_SADDR_RULE_SCOPE,
1169 IPV6_SADDR_RULE_PREFERRED,
1170#ifdef CONFIG_IPV6_MIP6
1171 IPV6_SADDR_RULE_HOA,
1172#endif
1173 IPV6_SADDR_RULE_OIF,
1174 IPV6_SADDR_RULE_LABEL,
1175#ifdef CONFIG_IPV6_PRIVACY
1176 IPV6_SADDR_RULE_PRIVACY,
1177#endif
1178 IPV6_SADDR_RULE_ORCHID,
1179 IPV6_SADDR_RULE_PREFIX,
1180 IPV6_SADDR_RULE_MAX
YOSHIFUJI Hideaki072047e42005-11-08 09:38:30 -08001181};
1182
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001183struct ipv6_saddr_score {
1184 int rule;
1185 int addr_type;
1186 struct inet6_ifaddr *ifa;
1187 DECLARE_BITMAP(scorebits, IPV6_SADDR_RULE_MAX);
1188 int scopedist;
1189 int matchlen;
1190};
1191
1192struct ipv6_saddr_dst {
YOSHIFUJI Hideaki9acd9f32008-04-10 15:42:10 +09001193 const struct in6_addr *addr;
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001194 int ifindex;
1195 int scope;
1196 int label;
YOSHIFUJI Hideaki7cbca672008-03-25 09:37:42 +09001197 unsigned int prefs;
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001198};
YOSHIFUJI Hideaki072047e42005-11-08 09:38:30 -08001199
Dave Jonesb6f99a22007-03-22 12:27:49 -07001200static inline int ipv6_saddr_preferred(int type)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001201{
Ulrich Weber45bb0062010-02-25 23:28:58 +00001202 if (type & (IPV6_ADDR_MAPPED|IPV6_ADDR_COMPATv4|IPV6_ADDR_LOOPBACK))
YOSHIFUJI Hideaki072047e42005-11-08 09:38:30 -08001203 return 1;
1204 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001205}
1206
Benjamin Thery3de23252008-05-28 14:51:24 +02001207static int ipv6_get_saddr_eval(struct net *net,
1208 struct ipv6_saddr_score *score,
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001209 struct ipv6_saddr_dst *dst,
1210 int i)
1211{
1212 int ret;
1213
1214 if (i <= score->rule) {
1215 switch (i) {
1216 case IPV6_SADDR_RULE_SCOPE:
1217 ret = score->scopedist;
1218 break;
1219 case IPV6_SADDR_RULE_PREFIX:
1220 ret = score->matchlen;
1221 break;
1222 default:
1223 ret = !!test_bit(i, score->scorebits);
1224 }
1225 goto out;
1226 }
1227
1228 switch (i) {
1229 case IPV6_SADDR_RULE_INIT:
1230 /* Rule 0: remember if hiscore is not ready yet */
1231 ret = !!score->ifa;
1232 break;
1233 case IPV6_SADDR_RULE_LOCAL:
1234 /* Rule 1: Prefer same address */
1235 ret = ipv6_addr_equal(&score->ifa->addr, dst->addr);
1236 break;
1237 case IPV6_SADDR_RULE_SCOPE:
1238 /* Rule 2: Prefer appropriate scope
1239 *
1240 * ret
1241 * ^
1242 * -1 | d 15
1243 * ---+--+-+---> scope
1244 * |
1245 * | d is scope of the destination.
1246 * B-d | \
1247 * | \ <- smaller scope is better if
1248 * B-15 | \ if scope is enough for destinaion.
1249 * | ret = B - scope (-1 <= scope >= d <= 15).
1250 * d-C-1 | /
1251 * |/ <- greater is better
1252 * -C / if scope is not enough for destination.
1253 * /| ret = scope - C (-1 <= d < scope <= 15).
1254 *
1255 * d - C - 1 < B -15 (for all -1 <= d <= 15).
1256 * C > d + 14 - B >= 15 + 14 - B = 29 - B.
1257 * Assume B = 0 and we get C > 29.
1258 */
1259 ret = __ipv6_addr_src_scope(score->addr_type);
1260 if (ret >= dst->scope)
1261 ret = -ret;
1262 else
1263 ret -= 128; /* 30 is enough */
1264 score->scopedist = ret;
1265 break;
1266 case IPV6_SADDR_RULE_PREFERRED:
1267 /* Rule 3: Avoid deprecated and optimistic addresses */
1268 ret = ipv6_saddr_preferred(score->addr_type) ||
1269 !(score->ifa->flags & (IFA_F_DEPRECATED|IFA_F_OPTIMISTIC));
1270 break;
1271#ifdef CONFIG_IPV6_MIP6
1272 case IPV6_SADDR_RULE_HOA:
YOSHIFUJI Hideaki7cbca672008-03-25 09:37:42 +09001273 {
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001274 /* Rule 4: Prefer home address */
YOSHIFUJI Hideaki7cbca672008-03-25 09:37:42 +09001275 int prefhome = !(dst->prefs & IPV6_PREFER_SRC_COA);
1276 ret = !(score->ifa->flags & IFA_F_HOMEADDRESS) ^ prefhome;
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001277 break;
YOSHIFUJI Hideaki7cbca672008-03-25 09:37:42 +09001278 }
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001279#endif
1280 case IPV6_SADDR_RULE_OIF:
1281 /* Rule 5: Prefer outgoing interface */
1282 ret = (!dst->ifindex ||
1283 dst->ifindex == score->ifa->idev->dev->ifindex);
1284 break;
1285 case IPV6_SADDR_RULE_LABEL:
1286 /* Rule 6: Prefer matching label */
Benjamin Thery3de23252008-05-28 14:51:24 +02001287 ret = ipv6_addr_label(net,
1288 &score->ifa->addr, score->addr_type,
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001289 score->ifa->idev->dev->ifindex) == dst->label;
1290 break;
1291#ifdef CONFIG_IPV6_PRIVACY
1292 case IPV6_SADDR_RULE_PRIVACY:
YOSHIFUJI Hideaki7cbca672008-03-25 09:37:42 +09001293 {
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001294 /* Rule 7: Prefer public address
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001295 * Note: prefer temporary address if use_tempaddr >= 2
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001296 */
YOSHIFUJI Hideaki7cbca672008-03-25 09:37:42 +09001297 int preftmp = dst->prefs & (IPV6_PREFER_SRC_PUBLIC|IPV6_PREFER_SRC_TMP) ?
1298 !!(dst->prefs & IPV6_PREFER_SRC_TMP) :
1299 score->ifa->idev->cnf.use_tempaddr >= 2;
1300 ret = (!(score->ifa->flags & IFA_F_TEMPORARY)) ^ preftmp;
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001301 break;
YOSHIFUJI Hideaki7cbca672008-03-25 09:37:42 +09001302 }
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001303#endif
1304 case IPV6_SADDR_RULE_ORCHID:
1305 /* Rule 8-: Prefer ORCHID vs ORCHID or
1306 * non-ORCHID vs non-ORCHID
1307 */
1308 ret = !(ipv6_addr_orchid(&score->ifa->addr) ^
1309 ipv6_addr_orchid(dst->addr));
1310 break;
1311 case IPV6_SADDR_RULE_PREFIX:
1312 /* Rule 8: Use longest matching prefix */
YOSHIFUJI Hideaki / 吉藤英明91b4b042012-09-10 18:41:07 +00001313 ret = ipv6_addr_diff(&score->ifa->addr, dst->addr);
1314 if (ret > score->ifa->prefix_len)
1315 ret = score->ifa->prefix_len;
1316 score->matchlen = ret;
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001317 break;
1318 default:
1319 ret = 0;
1320 }
1321
1322 if (ret)
1323 __set_bit(i, score->scorebits);
1324 score->rule = i;
1325out:
1326 return ret;
1327}
1328
Patrick McHardyb3f644f2012-08-26 19:14:14 +02001329int ipv6_dev_get_saddr(struct net *net, const struct net_device *dst_dev,
YOSHIFUJI Hideaki9acd9f32008-04-10 15:42:10 +09001330 const struct in6_addr *daddr, unsigned int prefs,
YOSHIFUJI Hideaki7cbca672008-03-25 09:37:42 +09001331 struct in6_addr *saddr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001332{
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001333 struct ipv6_saddr_score scores[2],
1334 *score = &scores[0], *hiscore = &scores[1];
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001335 struct ipv6_saddr_dst dst;
YOSHIFUJI Hideaki072047e42005-11-08 09:38:30 -08001336 struct net_device *dev;
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001337 int dst_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001338
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001339 dst_type = __ipv6_addr_type(daddr);
1340 dst.addr = daddr;
1341 dst.ifindex = dst_dev ? dst_dev->ifindex : 0;
1342 dst.scope = __ipv6_addr_src_scope(dst_type);
Benjamin Thery3de23252008-05-28 14:51:24 +02001343 dst.label = ipv6_addr_label(net, daddr, dst_type, dst.ifindex);
YOSHIFUJI Hideaki7cbca672008-03-25 09:37:42 +09001344 dst.prefs = prefs;
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001345
1346 hiscore->rule = -1;
1347 hiscore->ifa = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001348
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -07001349 rcu_read_lock();
YOSHIFUJI Hideaki072047e42005-11-08 09:38:30 -08001350
Eric Dumazetc6d14c82009-11-04 05:43:23 -08001351 for_each_netdev_rcu(net, dev) {
YOSHIFUJI Hideaki072047e42005-11-08 09:38:30 -08001352 struct inet6_dev *idev;
YOSHIFUJI Hideaki072047e42005-11-08 09:38:30 -08001353
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001354 /* Candidate Source Address (section 4)
YOSHIFUJI Hideaki072047e42005-11-08 09:38:30 -08001355 * - multicast and link-local destination address,
1356 * the set of candidate source address MUST only
1357 * include addresses assigned to interfaces
1358 * belonging to the same link as the outgoing
1359 * interface.
1360 * (- For site-local destination addresses, the
1361 * set of candidate source addresses MUST only
1362 * include addresses assigned to interfaces
1363 * belonging to the same site as the outgoing
1364 * interface.)
1365 */
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001366 if (((dst_type & IPV6_ADDR_MULTICAST) ||
1367 dst.scope <= IPV6_ADDR_SCOPE_LINKLOCAL) &&
1368 dst.ifindex && dev->ifindex != dst.ifindex)
YOSHIFUJI Hideaki072047e42005-11-08 09:38:30 -08001369 continue;
1370
Linus Torvalds1da177e2005-04-16 15:20:36 -07001371 idev = __in6_dev_get(dev);
YOSHIFUJI Hideaki072047e42005-11-08 09:38:30 -08001372 if (!idev)
1373 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001374
YOSHIFUJI Hideaki072047e42005-11-08 09:38:30 -08001375 read_lock_bh(&idev->lock);
stephen hemminger502a2ff2010-03-17 20:31:13 +00001376 list_for_each_entry(score->ifa, &idev->addr_list, if_list) {
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001377 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001378
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001379 /*
YOSHIFUJI Hideaki6b3ae802005-12-21 22:58:01 +09001380 * - Tentative Address (RFC2462 section 5.4)
1381 * - A tentative address is not considered
1382 * "assigned to an interface" in the traditional
Neil Horman95c385b2007-04-25 17:08:10 -07001383 * sense, unless it is also flagged as optimistic.
YOSHIFUJI Hideaki6b3ae802005-12-21 22:58:01 +09001384 * - Candidate Source Address (section 4)
YOSHIFUJI Hideaki072047e42005-11-08 09:38:30 -08001385 * - In any case, anycast addresses, multicast
1386 * addresses, and the unspecified address MUST
1387 * NOT be included in a candidate set.
1388 */
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001389 if ((score->ifa->flags & IFA_F_TENTATIVE) &&
1390 (!(score->ifa->flags & IFA_F_OPTIMISTIC)))
YOSHIFUJI Hideaki6b3ae802005-12-21 22:58:01 +09001391 continue;
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001392
1393 score->addr_type = __ipv6_addr_type(&score->ifa->addr);
1394
1395 if (unlikely(score->addr_type == IPV6_ADDR_ANY ||
1396 score->addr_type & IPV6_ADDR_MULTICAST)) {
YOSHIFUJI Hideaki072047e42005-11-08 09:38:30 -08001397 LIMIT_NETDEBUG(KERN_DEBUG
Joe Perches3b6d821c2007-11-19 23:47:25 -08001398 "ADDRCONF: unspecified / multicast address "
YOSHIFUJI Hideaki072047e42005-11-08 09:38:30 -08001399 "assigned as unicast address on %s",
1400 dev->name);
1401 continue;
1402 }
1403
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001404 score->rule = -1;
1405 bitmap_zero(score->scorebits, IPV6_SADDR_RULE_MAX);
YOSHIFUJI Hideaki072047e42005-11-08 09:38:30 -08001406
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001407 for (i = 0; i < IPV6_SADDR_RULE_MAX; i++) {
1408 int minihiscore, miniscore;
YOSHIFUJI Hideaki072047e42005-11-08 09:38:30 -08001409
Benjamin Thery3de23252008-05-28 14:51:24 +02001410 minihiscore = ipv6_get_saddr_eval(net, hiscore, &dst, i);
1411 miniscore = ipv6_get_saddr_eval(net, score, &dst, i);
YOSHIFUJI Hideaki072047e42005-11-08 09:38:30 -08001412
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001413 if (minihiscore > miniscore) {
1414 if (i == IPV6_SADDR_RULE_SCOPE &&
1415 score->scopedist > 0) {
1416 /*
1417 * special case:
1418 * each remaining entry
1419 * has too small (not enough)
1420 * scope, because ifa entries
1421 * are sorted by their scope
1422 * values.
1423 */
1424 goto try_nextdev;
1425 }
1426 break;
1427 } else if (minihiscore < miniscore) {
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001428 if (hiscore->ifa)
1429 in6_ifa_put(hiscore->ifa);
1430
1431 in6_ifa_hold(score->ifa);
1432
Ilpo Järvinena0bffff2009-03-21 13:36:17 -07001433 swap(hiscore, score);
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001434
1435 /* restore our iterator */
1436 score->ifa = hiscore->ifa;
1437
1438 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001439 }
1440 }
YOSHIFUJI Hideaki072047e42005-11-08 09:38:30 -08001441 }
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001442try_nextdev:
YOSHIFUJI Hideaki072047e42005-11-08 09:38:30 -08001443 read_unlock_bh(&idev->lock);
1444 }
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -07001445 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001446
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001447 if (!hiscore->ifa)
YOSHIFUJI Hideaki072047e42005-11-08 09:38:30 -08001448 return -EADDRNOTAVAIL;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001449
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00001450 *saddr = hiscore->ifa->addr;
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001451 in6_ifa_put(hiscore->ifa);
YOSHIFUJI Hideaki072047e42005-11-08 09:38:30 -08001452 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001453}
YOSHIFUJI Hideaki5e5f3f02008-03-03 21:44:34 +09001454EXPORT_SYMBOL(ipv6_dev_get_saddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001455
Amerigo Wang89657792013-06-29 21:30:49 +08001456int __ipv6_get_lladdr(struct inet6_dev *idev, struct in6_addr *addr,
1457 unsigned char banned_flags)
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02001458{
1459 struct inet6_ifaddr *ifp;
1460 int err = -EADDRNOTAVAIL;
1461
1462 list_for_each_entry(ifp, &idev->addr_list, if_list) {
1463 if (ifp->scope == IFA_LINK &&
1464 !(ifp->flags & banned_flags)) {
1465 *addr = ifp->addr;
1466 err = 0;
1467 break;
1468 }
1469 }
1470 return err;
1471}
1472
Neil Horman95c385b2007-04-25 17:08:10 -07001473int ipv6_get_lladdr(struct net_device *dev, struct in6_addr *addr,
1474 unsigned char banned_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001475{
1476 struct inet6_dev *idev;
1477 int err = -EADDRNOTAVAIL;
1478
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -07001479 rcu_read_lock();
Stephen Hemmingere21e8462010-03-20 16:09:01 -07001480 idev = __in6_dev_get(dev);
1481 if (idev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001482 read_lock_bh(&idev->lock);
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02001483 err = __ipv6_get_lladdr(idev, addr, banned_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001484 read_unlock_bh(&idev->lock);
1485 }
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -07001486 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001487 return err;
1488}
1489
1490static int ipv6_count_addresses(struct inet6_dev *idev)
1491{
1492 int cnt = 0;
1493 struct inet6_ifaddr *ifp;
1494
1495 read_lock_bh(&idev->lock);
stephen hemminger502a2ff2010-03-17 20:31:13 +00001496 list_for_each_entry(ifp, &idev->addr_list, if_list)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001497 cnt++;
1498 read_unlock_bh(&idev->lock);
1499 return cnt;
1500}
1501
Eric Dumazetb71d1d42011-04-22 04:53:02 +00001502int ipv6_chk_addr(struct net *net, const struct in6_addr *addr,
Florian Westphal2a7851b2013-05-17 03:56:10 +00001503 const struct net_device *dev, int strict)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001504{
Stephen Hemmingereedf0422010-05-17 22:27:12 -07001505 struct inet6_ifaddr *ifp;
Eric Dumazetddbe5032012-07-18 08:11:12 +00001506 unsigned int hash = inet6_addr_hash(addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001507
stephen hemminger5c578aed2010-03-17 20:31:11 +00001508 rcu_read_lock_bh();
Sasha Levinb67bfe02013-02-27 17:06:00 -08001509 hlist_for_each_entry_rcu(ifp, &inet6_addr_lst[hash], addr_lst) {
YOSHIFUJI Hideaki878628f2008-03-26 03:57:35 +09001510 if (!net_eq(dev_net(ifp->idev->dev), net))
Daniel Lezcanobfeade02008-01-10 22:43:18 -08001511 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001512 if (ipv6_addr_equal(&ifp->addr, addr) &&
Stephen Hemmingereedf0422010-05-17 22:27:12 -07001513 !(ifp->flags&IFA_F_TENTATIVE) &&
1514 (dev == NULL || ifp->idev->dev == dev ||
1515 !(ifp->scope&(IFA_LINK|IFA_HOST) || strict))) {
1516 rcu_read_unlock_bh();
1517 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001518 }
1519 }
stephen hemminger5c578aed2010-03-17 20:31:11 +00001520
Stephen Hemmingereedf0422010-05-17 22:27:12 -07001521 rcu_read_unlock_bh();
1522 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001523}
YOSHIFUJI Hideaki71590392007-02-22 22:05:40 +09001524EXPORT_SYMBOL(ipv6_chk_addr);
1525
David S. Miller3e81c6d2010-03-20 16:18:00 -07001526static bool ipv6_chk_same_addr(struct net *net, const struct in6_addr *addr,
1527 struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001528{
Eric Dumazetddbe5032012-07-18 08:11:12 +00001529 unsigned int hash = inet6_addr_hash(addr);
stephen hemmingerc2e21292010-03-17 20:31:10 +00001530 struct inet6_ifaddr *ifp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001531
Sasha Levinb67bfe02013-02-27 17:06:00 -08001532 hlist_for_each_entry(ifp, &inet6_addr_lst[hash], addr_lst) {
YOSHIFUJI Hideaki878628f2008-03-26 03:57:35 +09001533 if (!net_eq(dev_net(ifp->idev->dev), net))
Daniel Lezcano06bfe652008-01-10 22:43:42 -08001534 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001535 if (ipv6_addr_equal(&ifp->addr, addr)) {
1536 if (dev == NULL || ifp->idev->dev == dev)
David S. Miller3e81c6d2010-03-20 16:18:00 -07001537 return true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001538 }
1539 }
David S. Miller3e81c6d2010-03-20 16:18:00 -07001540 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001541}
1542
Eric Dumazetb71d1d42011-04-22 04:53:02 +00001543int ipv6_chk_prefix(const struct in6_addr *addr, struct net_device *dev)
YOSHIFUJI Hideaki52eeeb82008-03-15 22:54:23 -04001544{
1545 struct inet6_dev *idev;
1546 struct inet6_ifaddr *ifa;
1547 int onlink;
1548
1549 onlink = 0;
1550 rcu_read_lock();
1551 idev = __in6_dev_get(dev);
1552 if (idev) {
1553 read_lock_bh(&idev->lock);
stephen hemminger502a2ff2010-03-17 20:31:13 +00001554 list_for_each_entry(ifa, &idev->addr_list, if_list) {
YOSHIFUJI Hideaki52eeeb82008-03-15 22:54:23 -04001555 onlink = ipv6_prefix_equal(addr, &ifa->addr,
1556 ifa->prefix_len);
1557 if (onlink)
1558 break;
1559 }
1560 read_unlock_bh(&idev->lock);
1561 }
1562 rcu_read_unlock();
1563 return onlink;
1564}
YOSHIFUJI Hideaki52eeeb82008-03-15 22:54:23 -04001565EXPORT_SYMBOL(ipv6_chk_prefix);
1566
YOSHIFUJI Hideaki9acd9f32008-04-10 15:42:10 +09001567struct inet6_ifaddr *ipv6_get_ifaddr(struct net *net, const struct in6_addr *addr,
Daniel Lezcano1cab3da2008-01-10 22:44:09 -08001568 struct net_device *dev, int strict)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001569{
David S. Millerb79d1d52010-03-25 21:39:21 -07001570 struct inet6_ifaddr *ifp, *result = NULL;
Eric Dumazetddbe5032012-07-18 08:11:12 +00001571 unsigned int hash = inet6_addr_hash(addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001572
stephen hemminger5c578aed2010-03-17 20:31:11 +00001573 rcu_read_lock_bh();
Sasha Levinb67bfe02013-02-27 17:06:00 -08001574 hlist_for_each_entry_rcu_bh(ifp, &inet6_addr_lst[hash], addr_lst) {
YOSHIFUJI Hideaki878628f2008-03-26 03:57:35 +09001575 if (!net_eq(dev_net(ifp->idev->dev), net))
Daniel Lezcano1cab3da2008-01-10 22:44:09 -08001576 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001577 if (ipv6_addr_equal(&ifp->addr, addr)) {
1578 if (dev == NULL || ifp->idev->dev == dev ||
1579 !(ifp->scope&(IFA_LINK|IFA_HOST) || strict)) {
David S. Millerb79d1d52010-03-25 21:39:21 -07001580 result = ifp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001581 in6_ifa_hold(ifp);
1582 break;
1583 }
1584 }
1585 }
stephen hemminger5c578aed2010-03-17 20:31:11 +00001586 rcu_read_unlock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001587
David S. Millerb79d1d52010-03-25 21:39:21 -07001588 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001589}
1590
Linus Torvalds1da177e2005-04-16 15:20:36 -07001591/* Gets referenced address, destroys ifaddr */
1592
Brian Haleycc411d02009-09-09 14:41:32 +00001593static void addrconf_dad_stop(struct inet6_ifaddr *ifp, int dad_failed)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001594{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001595 if (ifp->flags&IFA_F_PERMANENT) {
1596 spin_lock_bh(&ifp->lock);
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02001597 addrconf_del_dad_timer(ifp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001598 ifp->flags |= IFA_F_TENTATIVE;
Brian Haleycc411d02009-09-09 14:41:32 +00001599 if (dad_failed)
1600 ifp->flags |= IFA_F_DADFAILED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001601 spin_unlock_bh(&ifp->lock);
Herbert Xue2577a02010-03-13 12:23:29 -08001602 if (dad_failed)
1603 ipv6_ifa_notify(0, ifp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001604 in6_ifa_put(ifp);
1605#ifdef CONFIG_IPV6_PRIVACY
1606 } else if (ifp->flags&IFA_F_TEMPORARY) {
1607 struct inet6_ifaddr *ifpub;
1608 spin_lock_bh(&ifp->lock);
1609 ifpub = ifp->ifpub;
1610 if (ifpub) {
1611 in6_ifa_hold(ifpub);
1612 spin_unlock_bh(&ifp->lock);
1613 ipv6_create_tempaddr(ifpub, ifp);
1614 in6_ifa_put(ifpub);
1615 } else {
1616 spin_unlock_bh(&ifp->lock);
1617 }
1618 ipv6_del_addr(ifp);
1619#endif
1620 } else
1621 ipv6_del_addr(ifp);
1622}
1623
Herbert Xuf2344a12010-05-18 15:55:27 -07001624static int addrconf_dad_end(struct inet6_ifaddr *ifp)
1625{
1626 int err = -ENOENT;
1627
1628 spin_lock(&ifp->state_lock);
1629 if (ifp->state == INET6_IFADDR_STATE_DAD) {
1630 ifp->state = INET6_IFADDR_STATE_POSTDAD;
1631 err = 0;
1632 }
1633 spin_unlock(&ifp->state_lock);
1634
1635 return err;
1636}
1637
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09001638void addrconf_dad_failure(struct inet6_ifaddr *ifp)
1639{
YOSHIFUJI Hideaki1b34be72008-06-28 14:18:38 +09001640 struct inet6_dev *idev = ifp->idev;
Brian Haley9bdd8d42009-03-18 18:22:48 -07001641
Ursula Braun853dc2e2010-10-24 23:06:43 +00001642 if (addrconf_dad_end(ifp)) {
1643 in6_ifa_put(ifp);
Herbert Xuf2344a12010-05-18 15:55:27 -07001644 return;
Ursula Braun853dc2e2010-10-24 23:06:43 +00001645 }
Herbert Xuf2344a12010-05-18 15:55:27 -07001646
Joe Perchese87cc472012-05-13 21:56:26 +00001647 net_info_ratelimited("%s: IPv6 duplicate address %pI6c detected!\n",
1648 ifp->idev->dev->name, &ifp->addr);
Brian Haley9bdd8d42009-03-18 18:22:48 -07001649
YOSHIFUJI Hideaki1b34be72008-06-28 14:18:38 +09001650 if (idev->cnf.accept_dad > 1 && !idev->cnf.disable_ipv6) {
1651 struct in6_addr addr;
1652
1653 addr.s6_addr32[0] = htonl(0xfe800000);
1654 addr.s6_addr32[1] = 0;
1655
1656 if (!ipv6_generate_eui64(addr.s6_addr + 8, idev->dev) &&
1657 ipv6_addr_equal(&ifp->addr, &addr)) {
1658 /* DAD failed for link-local based on MAC address */
1659 idev->cnf.disable_ipv6 = 1;
Brian Haley9bdd8d42009-03-18 18:22:48 -07001660
Joe Perchesf3213832012-05-15 14:11:53 +00001661 pr_info("%s: IPv6 being disabled!\n",
Brian Haley9bdd8d42009-03-18 18:22:48 -07001662 ifp->idev->dev->name);
YOSHIFUJI Hideaki1b34be72008-06-28 14:18:38 +09001663 }
1664 }
1665
Brian Haleycc411d02009-09-09 14:41:32 +00001666 addrconf_dad_stop(ifp, 1);
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09001667}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001668
1669/* Join to solicited addr multicast group. */
1670
Eric Dumazetb71d1d42011-04-22 04:53:02 +00001671void addrconf_join_solict(struct net_device *dev, const struct in6_addr *addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001672{
1673 struct in6_addr maddr;
1674
1675 if (dev->flags&(IFF_LOOPBACK|IFF_NOARP))
1676 return;
1677
1678 addrconf_addr_solict_mult(addr, &maddr);
1679 ipv6_dev_mc_inc(dev, &maddr);
1680}
1681
Eric Dumazetb71d1d42011-04-22 04:53:02 +00001682void addrconf_leave_solict(struct inet6_dev *idev, const struct in6_addr *addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001683{
1684 struct in6_addr maddr;
1685
1686 if (idev->dev->flags&(IFF_LOOPBACK|IFF_NOARP))
1687 return;
1688
1689 addrconf_addr_solict_mult(addr, &maddr);
1690 __ipv6_dev_mc_dec(idev, &maddr);
1691}
1692
Arnaldo Carvalho de Melo20380732005-08-16 02:18:02 -03001693static void addrconf_join_anycast(struct inet6_ifaddr *ifp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001694{
1695 struct in6_addr addr;
Bjørn Mork2bda8a02011-07-05 23:04:13 +00001696 if (ifp->prefix_len == 127) /* RFC 6164 */
1697 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001698 ipv6_addr_prefix(&addr, &ifp->addr, ifp->prefix_len);
1699 if (ipv6_addr_any(&addr))
1700 return;
1701 ipv6_dev_ac_inc(ifp->idev->dev, &addr);
1702}
1703
Arnaldo Carvalho de Melo20380732005-08-16 02:18:02 -03001704static void addrconf_leave_anycast(struct inet6_ifaddr *ifp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001705{
1706 struct in6_addr addr;
YOSHIFUJI Hideaki32019e62011-07-24 11:44:34 +00001707 if (ifp->prefix_len == 127) /* RFC 6164 */
1708 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001709 ipv6_addr_prefix(&addr, &ifp->addr, ifp->prefix_len);
1710 if (ipv6_addr_any(&addr))
1711 return;
1712 __ipv6_dev_ac_dec(ifp->idev, &addr);
1713}
1714
YOSHIFUJI Hideaki073a8e02006-03-20 16:54:49 -08001715static int addrconf_ifid_eui48(u8 *eui, struct net_device *dev)
1716{
1717 if (dev->addr_len != ETH_ALEN)
1718 return -1;
1719 memcpy(eui, dev->dev_addr, 3);
1720 memcpy(eui + 5, dev->dev_addr + 3, 3);
1721
1722 /*
1723 * The zSeries OSA network cards can be shared among various
1724 * OS instances, but the OSA cards have only one MAC address.
1725 * This leads to duplicate address conflicts in conjunction
1726 * with IPv6 if more than one instance uses the same card.
1727 *
1728 * The driver for these cards can deliver a unique 16-bit
1729 * identifier for each instance sharing the same card. It is
1730 * placed instead of 0xFFFE in the interface identifier. The
1731 * "u" bit of the interface identifier is not inverted in this
1732 * case. Hence the resulting interface identifier has local
1733 * scope according to RFC2373.
1734 */
1735 if (dev->dev_id) {
1736 eui[3] = (dev->dev_id >> 8) & 0xFF;
1737 eui[4] = dev->dev_id & 0xFF;
1738 } else {
1739 eui[3] = 0xFF;
1740 eui[4] = 0xFE;
1741 eui[0] ^= 2;
1742 }
1743 return 0;
1744}
1745
alex.bluesman.smirnov@gmail.com06a4c1c2012-05-10 03:25:52 +00001746static int addrconf_ifid_eui64(u8 *eui, struct net_device *dev)
1747{
1748 if (dev->addr_len != IEEE802154_ADDR_LEN)
1749 return -1;
1750 memcpy(eui, dev->dev_addr, 8);
YOSHIFUJI Hideaki / 吉藤英明5e98a362013-01-28 10:44:29 +00001751 eui[0] ^= 2;
alex.bluesman.smirnov@gmail.com06a4c1c2012-05-10 03:25:52 +00001752 return 0;
1753}
1754
YOSHIFUJI Hideaki / 吉藤英明cb6bf352013-03-25 08:26:24 +00001755static int addrconf_ifid_ieee1394(u8 *eui, struct net_device *dev)
1756{
1757 union fwnet_hwaddr *ha;
1758
1759 if (dev->addr_len != FWNET_ALEN)
1760 return -1;
1761
1762 ha = (union fwnet_hwaddr *)dev->dev_addr;
1763
1764 memcpy(eui, &ha->uc.uniq_id, sizeof(ha->uc.uniq_id));
1765 eui[0] ^= 2;
1766 return 0;
1767}
1768
YOSHIFUJI Hideaki073a8e02006-03-20 16:54:49 -08001769static int addrconf_ifid_arcnet(u8 *eui, struct net_device *dev)
1770{
1771 /* XXX: inherit EUI-64 from other interface -- yoshfuji */
1772 if (dev->addr_len != ARCNET_ALEN)
1773 return -1;
1774 memset(eui, 0, 7);
Eldad Zack8e5e8f32012-04-01 07:49:08 +00001775 eui[7] = *(u8 *)dev->dev_addr;
YOSHIFUJI Hideaki073a8e02006-03-20 16:54:49 -08001776 return 0;
1777}
1778
1779static int addrconf_ifid_infiniband(u8 *eui, struct net_device *dev)
1780{
1781 if (dev->addr_len != INFINIBAND_ALEN)
1782 return -1;
1783 memcpy(eui, dev->dev_addr + 12, 8);
1784 eui[0] |= 2;
1785 return 0;
1786}
1787
stephen hemmingerc61393e2010-10-04 20:17:53 +00001788static int __ipv6_isatap_ifid(u8 *eui, __be32 addr)
YOSHIFUJI Hideakidfd982b2008-04-10 15:42:09 +09001789{
Sascha Hlusiak9af28512009-05-19 12:56:51 +00001790 if (addr == 0)
1791 return -1;
YOSHIFUJI Hideakidfd982b2008-04-10 15:42:09 +09001792 eui[0] = (ipv4_is_zeronet(addr) || ipv4_is_private_10(addr) ||
1793 ipv4_is_loopback(addr) || ipv4_is_linklocal_169(addr) ||
1794 ipv4_is_private_172(addr) || ipv4_is_test_192(addr) ||
1795 ipv4_is_anycast_6to4(addr) || ipv4_is_private_192(addr) ||
1796 ipv4_is_test_198(addr) || ipv4_is_multicast(addr) ||
1797 ipv4_is_lbcast(addr)) ? 0x00 : 0x02;
1798 eui[1] = 0;
1799 eui[2] = 0x5E;
1800 eui[3] = 0xFE;
1801 memcpy(eui + 4, &addr, 4);
1802 return 0;
1803}
YOSHIFUJI Hideakidfd982b2008-04-10 15:42:09 +09001804
1805static int addrconf_ifid_sit(u8 *eui, struct net_device *dev)
1806{
1807 if (dev->priv_flags & IFF_ISATAP)
1808 return __ipv6_isatap_ifid(eui, *(__be32 *)dev->dev_addr);
1809 return -1;
1810}
1811
stephen hemmingeraee80b52011-06-08 10:44:30 +00001812static int addrconf_ifid_gre(u8 *eui, struct net_device *dev)
1813{
1814 return __ipv6_isatap_ifid(eui, *(__be32 *)dev->dev_addr);
1815}
1816
Linus Torvalds1da177e2005-04-16 15:20:36 -07001817static int ipv6_generate_eui64(u8 *eui, struct net_device *dev)
1818{
1819 switch (dev->type) {
1820 case ARPHRD_ETHER:
1821 case ARPHRD_FDDI:
YOSHIFUJI Hideaki073a8e02006-03-20 16:54:49 -08001822 return addrconf_ifid_eui48(eui, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001823 case ARPHRD_ARCNET:
YOSHIFUJI Hideaki073a8e02006-03-20 16:54:49 -08001824 return addrconf_ifid_arcnet(eui, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001825 case ARPHRD_INFINIBAND:
YOSHIFUJI Hideaki073a8e02006-03-20 16:54:49 -08001826 return addrconf_ifid_infiniband(eui, dev);
Fred L. Templinc7dc89c2007-11-29 22:11:40 +11001827 case ARPHRD_SIT:
YOSHIFUJI Hideakidfd982b2008-04-10 15:42:09 +09001828 return addrconf_ifid_sit(eui, dev);
stephen hemmingeraee80b52011-06-08 10:44:30 +00001829 case ARPHRD_IPGRE:
1830 return addrconf_ifid_gre(eui, dev);
alex.bluesman.smirnov@gmail.com06a4c1c2012-05-10 03:25:52 +00001831 case ARPHRD_IEEE802154:
1832 return addrconf_ifid_eui64(eui, dev);
YOSHIFUJI Hideaki / 吉藤英明cb6bf352013-03-25 08:26:24 +00001833 case ARPHRD_IEEE1394:
1834 return addrconf_ifid_ieee1394(eui, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001835 }
1836 return -1;
1837}
1838
1839static int ipv6_inherit_eui64(u8 *eui, struct inet6_dev *idev)
1840{
1841 int err = -1;
1842 struct inet6_ifaddr *ifp;
1843
1844 read_lock_bh(&idev->lock);
stephen hemminger502a2ff2010-03-17 20:31:13 +00001845 list_for_each_entry(ifp, &idev->addr_list, if_list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001846 if (ifp->scope == IFA_LINK && !(ifp->flags&IFA_F_TENTATIVE)) {
1847 memcpy(eui, ifp->addr.s6_addr+8, 8);
1848 err = 0;
1849 break;
1850 }
1851 }
1852 read_unlock_bh(&idev->lock);
1853 return err;
1854}
1855
1856#ifdef CONFIG_IPV6_PRIVACY
1857/* (re)generation of randomized interface identifier (RFC 3041 3.2, 3.5) */
Sorin Dumitrueb7e0572012-08-30 02:01:45 +00001858static void __ipv6_regen_rndid(struct inet6_dev *idev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001859{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001860regen:
YOSHIFUJI Hideaki955189e2006-03-20 16:54:09 -08001861 get_random_bytes(idev->rndid, sizeof(idev->rndid));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001862 idev->rndid[0] &= ~0x02;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001863
1864 /*
1865 * <draft-ietf-ipngwg-temp-addresses-v2-00.txt>:
1866 * check if generated address is not inappropriate
1867 *
1868 * - Reserved subnet anycast (RFC 2526)
1869 * 11111101 11....11 1xxxxxxx
Fred L. Templinc7dc89c2007-11-29 22:11:40 +11001870 * - ISATAP (RFC4214) 6.1
Linus Torvalds1da177e2005-04-16 15:20:36 -07001871 * 00-00-5E-FE-xx-xx-xx-xx
1872 * - value 0
1873 * - XXX: already assigned to an address on the device
1874 */
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001875 if (idev->rndid[0] == 0xfd &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07001876 (idev->rndid[1]&idev->rndid[2]&idev->rndid[3]&idev->rndid[4]&idev->rndid[5]&idev->rndid[6]) == 0xff &&
1877 (idev->rndid[7]&0x80))
1878 goto regen;
1879 if ((idev->rndid[0]|idev->rndid[1]) == 0) {
1880 if (idev->rndid[2] == 0x5e && idev->rndid[3] == 0xfe)
1881 goto regen;
1882 if ((idev->rndid[2]|idev->rndid[3]|idev->rndid[4]|idev->rndid[5]|idev->rndid[6]|idev->rndid[7]) == 0x00)
1883 goto regen;
1884 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001885}
1886
1887static void ipv6_regen_rndid(unsigned long data)
1888{
1889 struct inet6_dev *idev = (struct inet6_dev *) data;
1890 unsigned long expires;
1891
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -07001892 rcu_read_lock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001893 write_lock_bh(&idev->lock);
1894
1895 if (idev->dead)
1896 goto out;
1897
Sorin Dumitrueb7e0572012-08-30 02:01:45 +00001898 __ipv6_regen_rndid(idev);
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001899
Linus Torvalds1da177e2005-04-16 15:20:36 -07001900 expires = jiffies +
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001901 idev->cnf.temp_prefered_lft * HZ -
Ben Hutchings784e2712010-06-26 11:42:55 +00001902 idev->cnf.regen_max_retry * idev->cnf.dad_transmits * idev->nd_parms->retrans_time -
1903 idev->cnf.max_desync_factor * HZ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001904 if (time_before(expires, jiffies)) {
Joe Perchesf3213832012-05-15 14:11:53 +00001905 pr_warn("%s: too short regeneration interval; timer disabled for %s\n",
1906 __func__, idev->dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001907 goto out;
1908 }
1909
1910 if (!mod_timer(&idev->regen_timer, expires))
1911 in6_dev_hold(idev);
1912
1913out:
1914 write_unlock_bh(&idev->lock);
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -07001915 rcu_read_unlock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001916 in6_dev_put(idev);
1917}
1918
Sorin Dumitrueb7e0572012-08-30 02:01:45 +00001919static void __ipv6_try_regen_rndid(struct inet6_dev *idev, struct in6_addr *tmpaddr)
Eldad Zack8e5e8f32012-04-01 07:49:08 +00001920{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001921 if (tmpaddr && memcmp(idev->rndid, &tmpaddr->s6_addr[8], 8) == 0)
Sorin Dumitrueb7e0572012-08-30 02:01:45 +00001922 __ipv6_regen_rndid(idev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001923}
1924#endif
1925
1926/*
1927 * Add prefix route.
1928 */
1929
1930static void
1931addrconf_prefix_route(struct in6_addr *pfx, int plen, struct net_device *dev,
Jamal Hadi Salime431b8c2005-06-18 22:55:31 -07001932 unsigned long expires, u32 flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001933{
Thomas Graf86872cb2006-08-22 00:01:08 -07001934 struct fib6_config cfg = {
1935 .fc_table = RT6_TABLE_PREFIX,
1936 .fc_metric = IP6_RT_PRIO_ADDRCONF,
1937 .fc_ifindex = dev->ifindex,
1938 .fc_expires = expires,
1939 .fc_dst_len = plen,
1940 .fc_flags = RTF_UP | flags,
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09001941 .fc_nlinfo.nl_net = dev_net(dev),
Stephen Hemmingerf410a1f2008-08-23 05:16:46 -07001942 .fc_protocol = RTPROT_KERNEL,
Thomas Graf86872cb2006-08-22 00:01:08 -07001943 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001944
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00001945 cfg.fc_dst = *pfx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001946
1947 /* Prevent useless cloning on PtP SIT.
1948 This thing is done here expecting that the whole
1949 class of non-broadcast devices need not cloning.
1950 */
Amerigo Wang07a93622012-10-29 16:23:10 +00001951#if IS_ENABLED(CONFIG_IPV6_SIT)
Thomas Graf86872cb2006-08-22 00:01:08 -07001952 if (dev->type == ARPHRD_SIT && (dev->flags & IFF_POINTOPOINT))
1953 cfg.fc_flags |= RTF_NONEXTHOP;
Joerg Roedel0be669b2006-10-10 14:49:53 -07001954#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001955
Thomas Graf86872cb2006-08-22 00:01:08 -07001956 ip6_route_add(&cfg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001957}
1958
Andreas Hofmeister14ef37b2011-10-26 03:24:29 +00001959
1960static struct rt6_info *addrconf_get_prefix_route(const struct in6_addr *pfx,
1961 int plen,
1962 const struct net_device *dev,
1963 u32 flags, u32 noflags)
1964{
1965 struct fib6_node *fn;
1966 struct rt6_info *rt = NULL;
1967 struct fib6_table *table;
1968
1969 table = fib6_get_table(dev_net(dev), RT6_TABLE_PREFIX);
1970 if (table == NULL)
1971 return NULL;
1972
Li RongQing5744dd92012-09-11 21:59:01 +00001973 read_lock_bh(&table->tb6_lock);
Andreas Hofmeister14ef37b2011-10-26 03:24:29 +00001974 fn = fib6_locate(&table->tb6_root, pfx, plen, NULL, 0);
1975 if (!fn)
1976 goto out;
1977 for (rt = fn->leaf; rt; rt = rt->dst.rt6_next) {
David S. Millerd1918542011-12-28 20:19:20 -05001978 if (rt->dst.dev->ifindex != dev->ifindex)
Andreas Hofmeister14ef37b2011-10-26 03:24:29 +00001979 continue;
1980 if ((rt->rt6i_flags & flags) != flags)
1981 continue;
Romain Kuntz85da53b2013-01-09 15:02:26 +01001982 if ((rt->rt6i_flags & noflags) != 0)
Andreas Hofmeister14ef37b2011-10-26 03:24:29 +00001983 continue;
1984 dst_hold(&rt->dst);
1985 break;
1986 }
1987out:
Li RongQing5744dd92012-09-11 21:59:01 +00001988 read_unlock_bh(&table->tb6_lock);
Andreas Hofmeister14ef37b2011-10-26 03:24:29 +00001989 return rt;
1990}
1991
1992
Linus Torvalds1da177e2005-04-16 15:20:36 -07001993/* Create "default" multicast route to the interface */
1994
1995static void addrconf_add_mroute(struct net_device *dev)
1996{
Thomas Graf86872cb2006-08-22 00:01:08 -07001997 struct fib6_config cfg = {
1998 .fc_table = RT6_TABLE_LOCAL,
1999 .fc_metric = IP6_RT_PRIO_ADDRCONF,
2000 .fc_ifindex = dev->ifindex,
2001 .fc_dst_len = 8,
2002 .fc_flags = RTF_UP,
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09002003 .fc_nlinfo.nl_net = dev_net(dev),
Thomas Graf86872cb2006-08-22 00:01:08 -07002004 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002005
Thomas Graf86872cb2006-08-22 00:01:08 -07002006 ipv6_addr_set(&cfg.fc_dst, htonl(0xFF000000), 0, 0, 0);
2007
2008 ip6_route_add(&cfg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002009}
2010
Amerigo Wang07a93622012-10-29 16:23:10 +00002011#if IS_ENABLED(CONFIG_IPV6_SIT)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002012static void sit_route_add(struct net_device *dev)
2013{
Thomas Graf86872cb2006-08-22 00:01:08 -07002014 struct fib6_config cfg = {
2015 .fc_table = RT6_TABLE_MAIN,
2016 .fc_metric = IP6_RT_PRIO_ADDRCONF,
2017 .fc_ifindex = dev->ifindex,
2018 .fc_dst_len = 96,
2019 .fc_flags = RTF_UP | RTF_NONEXTHOP,
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09002020 .fc_nlinfo.nl_net = dev_net(dev),
Thomas Graf86872cb2006-08-22 00:01:08 -07002021 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002022
2023 /* prefix length - 96 bits "::d.d.d.d" */
Thomas Graf86872cb2006-08-22 00:01:08 -07002024 ip6_route_add(&cfg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002025}
Joerg Roedel0be669b2006-10-10 14:49:53 -07002026#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002027
Linus Torvalds1da177e2005-04-16 15:20:36 -07002028static struct inet6_dev *addrconf_add_dev(struct net_device *dev)
2029{
2030 struct inet6_dev *idev;
2031
2032 ASSERT_RTNL();
2033
Stephen Hemmingere21e8462010-03-20 16:09:01 -07002034 idev = ipv6_find_idev(dev);
2035 if (!idev)
Brian Haley64e724f2010-07-20 10:34:30 +00002036 return ERR_PTR(-ENOBUFS);
2037
2038 if (idev->cnf.disable_ipv6)
2039 return ERR_PTR(-EACCES);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002040
2041 /* Add default multicast route */
Li Wei4af04ab2011-12-06 21:23:45 +00002042 if (!(dev->flags & IFF_LOOPBACK))
2043 addrconf_add_mroute(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002044
Linus Torvalds1da177e2005-04-16 15:20:36 -07002045 return idev;
2046}
2047
Neil Hormane6bff992012-01-04 10:49:15 +00002048void addrconf_prefix_rcv(struct net_device *dev, u8 *opt, int len, bool sllao)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002049{
2050 struct prefix_info *pinfo;
2051 __u32 valid_lft;
2052 __u32 prefered_lft;
2053 int addr_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002054 struct inet6_dev *in6_dev;
Brian Haley56d417b2009-06-01 03:07:33 -07002055 struct net *net = dev_net(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002056
2057 pinfo = (struct prefix_info *) opt;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002058
Linus Torvalds1da177e2005-04-16 15:20:36 -07002059 if (len < sizeof(struct prefix_info)) {
dingtianhongba3542e2013-08-17 10:27:04 +08002060 ADBG("addrconf: prefix option too short\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002061 return;
2062 }
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002063
Linus Torvalds1da177e2005-04-16 15:20:36 -07002064 /*
2065 * Validation checks ([ADDRCONF], page 19)
2066 */
2067
2068 addr_type = ipv6_addr_type(&pinfo->prefix);
2069
2070 if (addr_type & (IPV6_ADDR_MULTICAST|IPV6_ADDR_LINKLOCAL))
2071 return;
2072
2073 valid_lft = ntohl(pinfo->valid);
2074 prefered_lft = ntohl(pinfo->prefered);
2075
2076 if (prefered_lft > valid_lft) {
Joe Perchese87cc472012-05-13 21:56:26 +00002077 net_warn_ratelimited("addrconf: prefix option has invalid lifetime\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002078 return;
2079 }
2080
2081 in6_dev = in6_dev_get(dev);
2082
2083 if (in6_dev == NULL) {
Joe Perchese87cc472012-05-13 21:56:26 +00002084 net_dbg_ratelimited("addrconf: device %s not configured\n",
2085 dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002086 return;
2087 }
2088
2089 /*
2090 * Two things going on here:
2091 * 1) Add routes for on-link prefixes
2092 * 2) Configure prefixes with the auto flag set
2093 */
2094
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +09002095 if (pinfo->onlink) {
2096 struct rt6_info *rt;
2097 unsigned long rt_expires;
2098
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07002099 /* Avoid arithmetic overflow. Really, we could
2100 * save rt_expires in seconds, likely valid_lft,
2101 * but it would require division in fib gc, that it
2102 * not good.
2103 */
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +09002104 if (HZ > USER_HZ)
2105 rt_expires = addrconf_timeout_fixup(valid_lft, HZ);
2106 else
2107 rt_expires = addrconf_timeout_fixup(valid_lft, USER_HZ);
YOSHIFUJI Hideaki3dd4bc62005-12-19 14:02:45 -08002108
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +09002109 if (addrconf_finite_timeout(rt_expires))
2110 rt_expires *= HZ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002111
Andreas Hofmeister14ef37b2011-10-26 03:24:29 +00002112 rt = addrconf_get_prefix_route(&pinfo->prefix,
2113 pinfo->prefix_len,
2114 dev,
2115 RTF_ADDRCONF | RTF_PREFIX_RT,
2116 RTF_GATEWAY | RTF_DEFAULT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002117
Andreas Hofmeister14ef37b2011-10-26 03:24:29 +00002118 if (rt) {
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07002119 /* Autoconf prefix route */
2120 if (valid_lft == 0) {
2121 ip6_del_rt(rt);
2122 rt = NULL;
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +09002123 } else if (addrconf_finite_timeout(rt_expires)) {
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07002124 /* not infinity */
Gao feng1716a962012-04-06 00:13:10 +00002125 rt6_set_expires(rt, jiffies + rt_expires);
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07002126 } else {
Gao feng1716a962012-04-06 00:13:10 +00002127 rt6_clean_expires(rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002128 }
2129 } else if (valid_lft) {
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07002130 clock_t expires = 0;
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +09002131 int flags = RTF_ADDRCONF | RTF_PREFIX_RT;
2132 if (addrconf_finite_timeout(rt_expires)) {
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07002133 /* not infinity */
2134 flags |= RTF_EXPIRES;
2135 expires = jiffies_to_clock_t(rt_expires);
2136 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002137 addrconf_prefix_route(&pinfo->prefix, pinfo->prefix_len,
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07002138 dev, expires, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002139 }
Amerigo Wang94e187c2012-10-29 00:13:19 +00002140 ip6_rt_put(rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002141 }
2142
2143 /* Try to figure out our local address for this prefix */
2144
2145 if (pinfo->autoconf && in6_dev->cnf.autoconf) {
Eldad Zack8e5e8f32012-04-01 07:49:08 +00002146 struct inet6_ifaddr *ifp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002147 struct in6_addr addr;
2148 int create = 0, update_lft = 0;
Daniel Borkmann617fe292013-04-09 03:47:16 +00002149 bool tokenized = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002150
2151 if (pinfo->prefix_len == 64) {
2152 memcpy(&addr, &pinfo->prefix, 8);
Daniel Borkmannf53adae2013-04-08 04:01:30 +00002153
2154 if (!ipv6_addr_any(&in6_dev->token)) {
2155 read_lock_bh(&in6_dev->lock);
2156 memcpy(addr.s6_addr + 8,
2157 in6_dev->token.s6_addr + 8, 8);
2158 read_unlock_bh(&in6_dev->lock);
Daniel Borkmann617fe292013-04-09 03:47:16 +00002159 tokenized = true;
Daniel Borkmannf53adae2013-04-08 04:01:30 +00002160 } else if (ipv6_generate_eui64(addr.s6_addr + 8, dev) &&
2161 ipv6_inherit_eui64(addr.s6_addr + 8, in6_dev)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002162 in6_dev_put(in6_dev);
2163 return;
2164 }
2165 goto ok;
2166 }
Joe Perchese87cc472012-05-13 21:56:26 +00002167 net_dbg_ratelimited("IPv6 addrconf: prefix with wrong length %d\n",
2168 pinfo->prefix_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002169 in6_dev_put(in6_dev);
2170 return;
2171
2172ok:
2173
YOSHIFUJI Hideaki53b79972008-07-19 22:35:03 -07002174 ifp = ipv6_get_ifaddr(net, &addr, dev, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002175
2176 if (ifp == NULL && valid_lft) {
2177 int max_addresses = in6_dev->cnf.max_addresses;
Neil Horman95c385b2007-04-25 17:08:10 -07002178 u32 addr_flags = 0;
2179
2180#ifdef CONFIG_IPV6_OPTIMISTIC_DAD
2181 if (in6_dev->cnf.optimistic_dad &&
Neil Hormane6bff992012-01-04 10:49:15 +00002182 !net->ipv6.devconf_all->forwarding && sllao)
Neil Horman95c385b2007-04-25 17:08:10 -07002183 addr_flags = IFA_F_OPTIMISTIC;
2184#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002185
2186 /* Do not allow to create too much of autoconfigured
2187 * addresses; this would be too easy way to crash kernel.
2188 */
2189 if (!max_addresses ||
2190 ipv6_count_addresses(in6_dev) < max_addresses)
Jiri Pirko3f8f5292013-08-01 10:41:27 +02002191 ifp = ipv6_add_addr(in6_dev, &addr, NULL,
2192 pinfo->prefix_len,
Neil Horman95c385b2007-04-25 17:08:10 -07002193 addr_type&IPV6_ADDR_SCOPE_MASK,
Jiri Benc8a226b22013-08-01 10:41:28 +02002194 addr_flags, valid_lft,
2195 prefered_lft);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002196
YOSHIFUJI Hideaki / 吉藤英明3f0d2ba2013-01-22 06:32:54 +00002197 if (IS_ERR_OR_NULL(ifp)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002198 in6_dev_put(in6_dev);
2199 return;
2200 }
2201
Jiri Benc8a226b22013-08-01 10:41:28 +02002202 update_lft = 0;
2203 create = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002204 ifp->cstamp = jiffies;
Daniel Borkmann617fe292013-04-09 03:47:16 +00002205 ifp->tokenized = tokenized;
David S. Millercf22f9a2012-04-14 21:37:40 -04002206 addrconf_dad_start(ifp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002207 }
2208
2209 if (ifp) {
2210 int flags;
2211 unsigned long now;
2212#ifdef CONFIG_IPV6_PRIVACY
2213 struct inet6_ifaddr *ift;
2214#endif
2215 u32 stored_lft;
2216
2217 /* update lifetime (RFC2462 5.5.3 e) */
2218 spin_lock(&ifp->lock);
2219 now = jiffies;
2220 if (ifp->valid_lft > (now - ifp->tstamp) / HZ)
2221 stored_lft = ifp->valid_lft - (now - ifp->tstamp) / HZ;
2222 else
2223 stored_lft = 0;
Jiri Benc8a226b22013-08-01 10:41:28 +02002224 if (!update_lft && !create && stored_lft) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002225 if (valid_lft > MIN_VALID_LIFETIME ||
2226 valid_lft > stored_lft)
2227 update_lft = 1;
2228 else if (stored_lft <= MIN_VALID_LIFETIME) {
2229 /* valid_lft <= stored_lft is always true */
Brian Haleya1ed0522009-07-02 07:10:52 +00002230 /*
2231 * RFC 4862 Section 5.5.3e:
2232 * "Note that the preferred lifetime of
2233 * the corresponding address is always
2234 * reset to the Preferred Lifetime in
2235 * the received Prefix Information
2236 * option, regardless of whether the
2237 * valid lifetime is also reset or
2238 * ignored."
2239 *
2240 * So if the preferred lifetime in
2241 * this advertisement is different
2242 * than what we have stored, but the
2243 * valid lifetime is invalid, just
2244 * reset prefered_lft.
2245 *
2246 * We must set the valid lifetime
2247 * to the stored lifetime since we'll
2248 * be updating the timestamp below,
2249 * else we'll set it back to the
Lucas De Marchi25985ed2011-03-30 22:57:33 -03002250 * minimum.
Brian Haleya1ed0522009-07-02 07:10:52 +00002251 */
2252 if (prefered_lft != ifp->prefered_lft) {
2253 valid_lft = stored_lft;
2254 update_lft = 1;
2255 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002256 } else {
2257 valid_lft = MIN_VALID_LIFETIME;
2258 if (valid_lft < prefered_lft)
2259 prefered_lft = valid_lft;
2260 update_lft = 1;
2261 }
2262 }
2263
2264 if (update_lft) {
2265 ifp->valid_lft = valid_lft;
2266 ifp->prefered_lft = prefered_lft;
2267 ifp->tstamp = now;
2268 flags = ifp->flags;
2269 ifp->flags &= ~IFA_F_DEPRECATED;
2270 spin_unlock(&ifp->lock);
2271
2272 if (!(flags&IFA_F_TENTATIVE))
2273 ipv6_ifa_notify(0, ifp);
2274 } else
2275 spin_unlock(&ifp->lock);
2276
2277#ifdef CONFIG_IPV6_PRIVACY
2278 read_lock_bh(&in6_dev->lock);
2279 /* update all temporary addresses in the list */
Lorenzo Colitti76f793e2011-07-26 13:50:49 +00002280 list_for_each_entry(ift, &in6_dev->tempaddr_list,
2281 tmp_list) {
2282 int age, max_valid, max_prefered;
2283
Benoit Boissinotc6fbfac2008-04-02 00:00:58 -07002284 if (ifp != ift->ifpub)
2285 continue;
2286
Lorenzo Colitti76f793e2011-07-26 13:50:49 +00002287 /*
2288 * RFC 4941 section 3.3:
2289 * If a received option will extend the lifetime
2290 * of a public address, the lifetimes of
2291 * temporary addresses should be extended,
2292 * subject to the overall constraint that no
2293 * temporary addresses should ever remain
2294 * "valid" or "preferred" for a time longer than
2295 * (TEMP_VALID_LIFETIME) or
2296 * (TEMP_PREFERRED_LIFETIME - DESYNC_FACTOR),
2297 * respectively.
2298 */
2299 age = (now - ift->cstamp) / HZ;
2300 max_valid = in6_dev->cnf.temp_valid_lft - age;
2301 if (max_valid < 0)
2302 max_valid = 0;
2303
2304 max_prefered = in6_dev->cnf.temp_prefered_lft -
2305 in6_dev->cnf.max_desync_factor -
2306 age;
2307 if (max_prefered < 0)
2308 max_prefered = 0;
2309
2310 if (valid_lft > max_valid)
2311 valid_lft = max_valid;
2312
2313 if (prefered_lft > max_prefered)
2314 prefered_lft = max_prefered;
2315
Linus Torvalds1da177e2005-04-16 15:20:36 -07002316 spin_lock(&ift->lock);
2317 flags = ift->flags;
Lorenzo Colitti76f793e2011-07-26 13:50:49 +00002318 ift->valid_lft = valid_lft;
2319 ift->prefered_lft = prefered_lft;
2320 ift->tstamp = now;
2321 if (prefered_lft > 0)
2322 ift->flags &= ~IFA_F_DEPRECATED;
2323
Linus Torvalds1da177e2005-04-16 15:20:36 -07002324 spin_unlock(&ift->lock);
2325 if (!(flags&IFA_F_TENTATIVE))
2326 ipv6_ifa_notify(0, ift);
2327 }
2328
Glenn Wursteraed65502010-09-27 07:04:30 +00002329 if ((create || list_empty(&in6_dev->tempaddr_list)) && in6_dev->cnf.use_tempaddr > 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002330 /*
Lorenzo Colitti76f793e2011-07-26 13:50:49 +00002331 * When a new public address is created as
2332 * described in [ADDRCONF], also create a new
2333 * temporary address. Also create a temporary
2334 * address if it's enabled but no temporary
2335 * address currently exists.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002336 */
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002337 read_unlock_bh(&in6_dev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002338 ipv6_create_tempaddr(ifp, NULL);
2339 } else {
2340 read_unlock_bh(&in6_dev->lock);
2341 }
2342#endif
2343 in6_ifa_put(ifp);
2344 addrconf_verify(0);
2345 }
2346 }
2347 inet6_prefix_notify(RTM_NEWPREFIX, in6_dev, pinfo);
2348 in6_dev_put(in6_dev);
2349}
2350
2351/*
2352 * Set destination address.
2353 * Special case for SIT interfaces where we create a new "virtual"
2354 * device.
2355 */
Daniel Lezcanoaf284932008-03-05 10:46:57 -08002356int addrconf_set_dstaddr(struct net *net, void __user *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002357{
2358 struct in6_ifreq ireq;
2359 struct net_device *dev;
2360 int err = -EINVAL;
2361
2362 rtnl_lock();
2363
2364 err = -EFAULT;
2365 if (copy_from_user(&ireq, arg, sizeof(struct in6_ifreq)))
2366 goto err_exit;
2367
Daniel Lezcanoaf284932008-03-05 10:46:57 -08002368 dev = __dev_get_by_index(net, ireq.ifr6_ifindex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002369
2370 err = -ENODEV;
2371 if (dev == NULL)
2372 goto err_exit;
2373
Amerigo Wang07a93622012-10-29 16:23:10 +00002374#if IS_ENABLED(CONFIG_IPV6_SIT)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002375 if (dev->type == ARPHRD_SIT) {
Stephen Hemminger5bc3eb72008-11-19 21:52:05 -08002376 const struct net_device_ops *ops = dev->netdev_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002377 struct ifreq ifr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002378 struct ip_tunnel_parm p;
2379
2380 err = -EADDRNOTAVAIL;
2381 if (!(ipv6_addr_type(&ireq.ifr6_addr) & IPV6_ADDR_COMPATv4))
2382 goto err_exit;
2383
2384 memset(&p, 0, sizeof(p));
2385 p.iph.daddr = ireq.ifr6_addr.s6_addr32[3];
2386 p.iph.saddr = 0;
2387 p.iph.version = 4;
2388 p.iph.ihl = 5;
2389 p.iph.protocol = IPPROTO_IPV6;
2390 p.iph.ttl = 64;
Stephen Hemmingerd20b3102008-01-21 00:48:43 -08002391 ifr.ifr_ifru.ifru_data = (__force void __user *)&p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002392
Stephen Hemminger5bc3eb72008-11-19 21:52:05 -08002393 if (ops->ndo_do_ioctl) {
2394 mm_segment_t oldfs = get_fs();
2395
2396 set_fs(KERNEL_DS);
2397 err = ops->ndo_do_ioctl(dev, &ifr, SIOCADDTUNNEL);
2398 set_fs(oldfs);
2399 } else
2400 err = -EOPNOTSUPP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002401
2402 if (err == 0) {
2403 err = -ENOBUFS;
Daniel Lezcanoaf284932008-03-05 10:46:57 -08002404 dev = __dev_get_by_name(net, p.name);
2405 if (!dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002406 goto err_exit;
2407 err = dev_open(dev);
2408 }
2409 }
Joerg Roedel0be669b2006-10-10 14:49:53 -07002410#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002411
2412err_exit:
2413 rtnl_unlock();
2414 return err;
2415}
2416
2417/*
2418 * Manual configuration of address on an interface
2419 */
Eric Dumazetb71d1d42011-04-22 04:53:02 +00002420static int inet6_addr_add(struct net *net, int ifindex, const struct in6_addr *pfx,
Nicolas Dichtelcaeaba72013-05-16 22:32:00 +00002421 const struct in6_addr *peer_pfx,
Thomas Graf24ef0da2008-05-28 16:54:22 +02002422 unsigned int plen, __u8 ifa_flags, __u32 prefered_lft,
Daniel Lezcanoaf284932008-03-05 10:46:57 -08002423 __u32 valid_lft)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002424{
2425 struct inet6_ifaddr *ifp;
2426 struct inet6_dev *idev;
2427 struct net_device *dev;
2428 int scope;
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07002429 u32 flags;
2430 clock_t expires;
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +09002431 unsigned long timeout;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002432
2433 ASSERT_RTNL();
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002434
Thomas Graf24ef0da2008-05-28 16:54:22 +02002435 if (plen > 128)
2436 return -EINVAL;
2437
Noriaki TAKAMIYA07787692006-07-28 18:12:10 +09002438 /* check the lifetime */
2439 if (!valid_lft || prefered_lft > valid_lft)
2440 return -EINVAL;
2441
Daniel Lezcanoaf284932008-03-05 10:46:57 -08002442 dev = __dev_get_by_index(net, ifindex);
2443 if (!dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002444 return -ENODEV;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002445
Brian Haley64e724f2010-07-20 10:34:30 +00002446 idev = addrconf_add_dev(dev);
2447 if (IS_ERR(idev))
2448 return PTR_ERR(idev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002449
2450 scope = ipv6_addr_scope(pfx);
2451
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +09002452 timeout = addrconf_timeout_fixup(valid_lft, HZ);
2453 if (addrconf_finite_timeout(timeout)) {
2454 expires = jiffies_to_clock_t(timeout * HZ);
2455 valid_lft = timeout;
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07002456 flags = RTF_EXPIRES;
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +09002457 } else {
2458 expires = 0;
2459 flags = 0;
2460 ifa_flags |= IFA_F_PERMANENT;
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07002461 }
Noriaki TAKAMIYA07787692006-07-28 18:12:10 +09002462
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +09002463 timeout = addrconf_timeout_fixup(prefered_lft, HZ);
2464 if (addrconf_finite_timeout(timeout)) {
2465 if (timeout == 0)
2466 ifa_flags |= IFA_F_DEPRECATED;
2467 prefered_lft = timeout;
2468 }
Noriaki TAKAMIYA07787692006-07-28 18:12:10 +09002469
Jiri Benc8a226b22013-08-01 10:41:28 +02002470 ifp = ipv6_add_addr(idev, pfx, peer_pfx, plen, scope, ifa_flags,
2471 valid_lft, prefered_lft);
Noriaki TAKAMIYA07787692006-07-28 18:12:10 +09002472
Linus Torvalds1da177e2005-04-16 15:20:36 -07002473 if (!IS_ERR(ifp)) {
YOSHIFUJI Hideaki46d48042007-02-07 20:36:26 +09002474 addrconf_prefix_route(&ifp->addr, ifp->prefix_len, dev,
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07002475 expires, flags);
Neil Horman95c385b2007-04-25 17:08:10 -07002476 /*
2477 * Note that section 3.1 of RFC 4429 indicates
2478 * that the Optimistic flag should not be set for
2479 * manually configured addresses
2480 */
David S. Millercf22f9a2012-04-14 21:37:40 -04002481 addrconf_dad_start(ifp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002482 in6_ifa_put(ifp);
Noriaki TAKAMIYA07787692006-07-28 18:12:10 +09002483 addrconf_verify(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002484 return 0;
2485 }
2486
2487 return PTR_ERR(ifp);
2488}
2489
Eric Dumazetb71d1d42011-04-22 04:53:02 +00002490static int inet6_addr_del(struct net *net, int ifindex, const struct in6_addr *pfx,
Thomas Graf24ef0da2008-05-28 16:54:22 +02002491 unsigned int plen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002492{
2493 struct inet6_ifaddr *ifp;
2494 struct inet6_dev *idev;
2495 struct net_device *dev;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002496
Thomas Graf24ef0da2008-05-28 16:54:22 +02002497 if (plen > 128)
2498 return -EINVAL;
2499
Daniel Lezcanoaf284932008-03-05 10:46:57 -08002500 dev = __dev_get_by_index(net, ifindex);
2501 if (!dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002502 return -ENODEV;
2503
David S. Miller7eaa48a2013-08-20 23:44:39 -07002504 if ((idev = __in6_dev_get(dev)) == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002505 return -ENXIO;
2506
2507 read_lock_bh(&idev->lock);
stephen hemminger502a2ff2010-03-17 20:31:13 +00002508 list_for_each_entry(ifp, &idev->addr_list, if_list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002509 if (ifp->prefix_len == plen &&
2510 ipv6_addr_equal(pfx, &ifp->addr)) {
2511 in6_ifa_hold(ifp);
2512 read_unlock_bh(&idev->lock);
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002513
Linus Torvalds1da177e2005-04-16 15:20:36 -07002514 ipv6_del_addr(ifp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002515 return 0;
2516 }
2517 }
2518 read_unlock_bh(&idev->lock);
2519 return -EADDRNOTAVAIL;
2520}
2521
2522
Daniel Lezcanoaf284932008-03-05 10:46:57 -08002523int addrconf_add_ifaddr(struct net *net, void __user *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002524{
2525 struct in6_ifreq ireq;
2526 int err;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002527
Eric W. Biedermanaf31f412012-11-16 03:03:06 +00002528 if (!ns_capable(net->user_ns, CAP_NET_ADMIN))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002529 return -EPERM;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002530
Linus Torvalds1da177e2005-04-16 15:20:36 -07002531 if (copy_from_user(&ireq, arg, sizeof(struct in6_ifreq)))
2532 return -EFAULT;
2533
2534 rtnl_lock();
Nicolas Dichtelcaeaba72013-05-16 22:32:00 +00002535 err = inet6_addr_add(net, ireq.ifr6_ifindex, &ireq.ifr6_addr, NULL,
Daniel Lezcanoaf284932008-03-05 10:46:57 -08002536 ireq.ifr6_prefixlen, IFA_F_PERMANENT,
2537 INFINITY_LIFE_TIME, INFINITY_LIFE_TIME);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002538 rtnl_unlock();
2539 return err;
2540}
2541
Daniel Lezcanoaf284932008-03-05 10:46:57 -08002542int addrconf_del_ifaddr(struct net *net, void __user *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002543{
2544 struct in6_ifreq ireq;
2545 int err;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002546
Eric W. Biedermanaf31f412012-11-16 03:03:06 +00002547 if (!ns_capable(net->user_ns, CAP_NET_ADMIN))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002548 return -EPERM;
2549
2550 if (copy_from_user(&ireq, arg, sizeof(struct in6_ifreq)))
2551 return -EFAULT;
2552
2553 rtnl_lock();
Daniel Lezcanoaf284932008-03-05 10:46:57 -08002554 err = inet6_addr_del(net, ireq.ifr6_ifindex, &ireq.ifr6_addr,
2555 ireq.ifr6_prefixlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002556 rtnl_unlock();
2557 return err;
2558}
2559
Ilpo Järvinenb5f348e2009-02-06 23:48:01 -08002560static void add_addr(struct inet6_dev *idev, const struct in6_addr *addr,
2561 int plen, int scope)
2562{
2563 struct inet6_ifaddr *ifp;
2564
Jiri Benc8a226b22013-08-01 10:41:28 +02002565 ifp = ipv6_add_addr(idev, addr, NULL, plen,
2566 scope, IFA_F_PERMANENT, 0, 0);
Ilpo Järvinenb5f348e2009-02-06 23:48:01 -08002567 if (!IS_ERR(ifp)) {
2568 spin_lock_bh(&ifp->lock);
2569 ifp->flags &= ~IFA_F_TENTATIVE;
2570 spin_unlock_bh(&ifp->lock);
2571 ipv6_ifa_notify(RTM_NEWADDR, ifp);
2572 in6_ifa_put(ifp);
2573 }
2574}
2575
Amerigo Wang07a93622012-10-29 16:23:10 +00002576#if IS_ENABLED(CONFIG_IPV6_SIT)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002577static void sit_add_v4_addrs(struct inet6_dev *idev)
2578{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002579 struct in6_addr addr;
2580 struct net_device *dev;
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09002581 struct net *net = dev_net(idev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002582 int scope;
2583
2584 ASSERT_RTNL();
2585
2586 memset(&addr, 0, sizeof(struct in6_addr));
2587 memcpy(&addr.s6_addr32[3], idev->dev->dev_addr, 4);
2588
2589 if (idev->dev->flags&IFF_POINTOPOINT) {
2590 addr.s6_addr32[0] = htonl(0xfe800000);
2591 scope = IFA_LINK;
2592 } else {
2593 scope = IPV6_ADDR_COMPATv4;
2594 }
2595
2596 if (addr.s6_addr32[3]) {
Ilpo Järvinenb5f348e2009-02-06 23:48:01 -08002597 add_addr(idev, &addr, 128, scope);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002598 return;
2599 }
2600
Benjamin Thery6fda7352008-03-05 10:47:47 -08002601 for_each_netdev(net, dev) {
Eldad Zack8e5e8f32012-04-01 07:49:08 +00002602 struct in_device *in_dev = __in_dev_get_rtnl(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002603 if (in_dev && (dev->flags & IFF_UP)) {
Eldad Zack8e5e8f32012-04-01 07:49:08 +00002604 struct in_ifaddr *ifa;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002605
2606 int flag = scope;
2607
2608 for (ifa = in_dev->ifa_list; ifa; ifa = ifa->ifa_next) {
2609 int plen;
2610
2611 addr.s6_addr32[3] = ifa->ifa_local;
2612
2613 if (ifa->ifa_scope == RT_SCOPE_LINK)
2614 continue;
2615 if (ifa->ifa_scope >= RT_SCOPE_HOST) {
2616 if (idev->dev->flags&IFF_POINTOPOINT)
2617 continue;
2618 flag |= IFA_HOST;
2619 }
2620 if (idev->dev->flags&IFF_POINTOPOINT)
2621 plen = 64;
2622 else
2623 plen = 96;
2624
Ilpo Järvinenb5f348e2009-02-06 23:48:01 -08002625 add_addr(idev, &addr, plen, flag);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002626 }
2627 }
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002628 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002629}
Joerg Roedel0be669b2006-10-10 14:49:53 -07002630#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002631
2632static void init_loopback(struct net_device *dev)
2633{
2634 struct inet6_dev *idev;
Balakumaran Kannan25fb6ca42013-04-02 16:15:05 +05302635 struct net_device *sp_dev;
2636 struct inet6_ifaddr *sp_ifa;
2637 struct rt6_info *sp_rt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002638
2639 /* ::1 */
2640
2641 ASSERT_RTNL();
2642
David S. Miller7eaa48a2013-08-20 23:44:39 -07002643 if ((idev = ipv6_find_idev(dev)) == NULL) {
Joe Perches91df42b2012-05-15 14:11:54 +00002644 pr_debug("%s: add_dev failed\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002645 return;
2646 }
2647
Ilpo Järvinenb5f348e2009-02-06 23:48:01 -08002648 add_addr(idev, &in6addr_loopback, 128, IFA_HOST);
Balakumaran Kannan25fb6ca42013-04-02 16:15:05 +05302649
2650 /* Add routes to other interface's IPv6 addresses */
2651 for_each_netdev(dev_net(dev), sp_dev) {
2652 if (!strcmp(sp_dev->name, dev->name))
2653 continue;
2654
2655 idev = __in6_dev_get(sp_dev);
2656 if (!idev)
2657 continue;
2658
2659 read_lock_bh(&idev->lock);
2660 list_for_each_entry(sp_ifa, &idev->addr_list, if_list) {
2661
2662 if (sp_ifa->flags & (IFA_F_DADFAILED | IFA_F_TENTATIVE))
2663 continue;
2664
Gao fenga881ae12013-06-16 11:14:30 +08002665 if (sp_ifa->rt)
2666 continue;
2667
Balakumaran Kannan25fb6ca42013-04-02 16:15:05 +05302668 sp_rt = addrconf_dst_alloc(idev, &sp_ifa->addr, 0);
2669
2670 /* Failure cases are ignored */
Gao feng534c8772013-06-02 22:16:21 +00002671 if (!IS_ERR(sp_rt)) {
2672 sp_ifa->rt = sp_rt;
Balakumaran Kannan25fb6ca42013-04-02 16:15:05 +05302673 ip6_ins_rt(sp_rt);
Gao feng534c8772013-06-02 22:16:21 +00002674 }
Balakumaran Kannan25fb6ca42013-04-02 16:15:05 +05302675 }
2676 read_unlock_bh(&idev->lock);
2677 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002678}
2679
Eric Dumazetb71d1d42011-04-22 04:53:02 +00002680static void addrconf_add_linklocal(struct inet6_dev *idev, const struct in6_addr *addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002681{
Eldad Zack8e5e8f32012-04-01 07:49:08 +00002682 struct inet6_ifaddr *ifp;
Neil Horman95c385b2007-04-25 17:08:10 -07002683 u32 addr_flags = IFA_F_PERMANENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002684
Neil Horman95c385b2007-04-25 17:08:10 -07002685#ifdef CONFIG_IPV6_OPTIMISTIC_DAD
2686 if (idev->cnf.optimistic_dad &&
David Miller702beb82008-07-20 18:17:02 -07002687 !dev_net(idev->dev)->ipv6.devconf_all->forwarding)
Neil Horman95c385b2007-04-25 17:08:10 -07002688 addr_flags |= IFA_F_OPTIMISTIC;
2689#endif
2690
2691
Jiri Benc8a226b22013-08-01 10:41:28 +02002692 ifp = ipv6_add_addr(idev, addr, NULL, 64, IFA_LINK, addr_flags, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002693 if (!IS_ERR(ifp)) {
YOSHIFUJI Hideaki46d48042007-02-07 20:36:26 +09002694 addrconf_prefix_route(&ifp->addr, ifp->prefix_len, idev->dev, 0, 0);
David S. Millercf22f9a2012-04-14 21:37:40 -04002695 addrconf_dad_start(ifp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002696 in6_ifa_put(ifp);
2697 }
2698}
2699
2700static void addrconf_dev_config(struct net_device *dev)
2701{
2702 struct in6_addr addr;
Eldad Zack8e5e8f32012-04-01 07:49:08 +00002703 struct inet6_dev *idev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002704
2705 ASSERT_RTNL();
2706
Herbert Xu74235a22007-06-14 13:02:55 -07002707 if ((dev->type != ARPHRD_ETHER) &&
2708 (dev->type != ARPHRD_FDDI) &&
Herbert Xu74235a22007-06-14 13:02:55 -07002709 (dev->type != ARPHRD_ARCNET) &&
alex.bluesman.smirnov@gmail.com06a4c1c2012-05-10 03:25:52 +00002710 (dev->type != ARPHRD_INFINIBAND) &&
YOSHIFUJI Hideaki / 吉藤英明cb6bf352013-03-25 08:26:24 +00002711 (dev->type != ARPHRD_IEEE802154) &&
2712 (dev->type != ARPHRD_IEEE1394)) {
Herbert Xu74235a22007-06-14 13:02:55 -07002713 /* Alas, we support only Ethernet autoconfiguration. */
2714 return;
2715 }
2716
Linus Torvalds1da177e2005-04-16 15:20:36 -07002717 idev = addrconf_add_dev(dev);
Brian Haley64e724f2010-07-20 10:34:30 +00002718 if (IS_ERR(idev))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002719 return;
2720
2721 memset(&addr, 0, sizeof(struct in6_addr));
2722 addr.s6_addr32[0] = htonl(0xFE800000);
2723
2724 if (ipv6_generate_eui64(addr.s6_addr + 8, dev) == 0)
2725 addrconf_add_linklocal(idev, &addr);
2726}
2727
Amerigo Wang07a93622012-10-29 16:23:10 +00002728#if IS_ENABLED(CONFIG_IPV6_SIT)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002729static void addrconf_sit_config(struct net_device *dev)
2730{
2731 struct inet6_dev *idev;
2732
2733 ASSERT_RTNL();
2734
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002735 /*
2736 * Configure the tunnel with one of our IPv4
2737 * addresses... we should configure all of
Linus Torvalds1da177e2005-04-16 15:20:36 -07002738 * our v4 addrs in the tunnel
2739 */
2740
David S. Miller7eaa48a2013-08-20 23:44:39 -07002741 if ((idev = ipv6_find_idev(dev)) == NULL) {
Joe Perches91df42b2012-05-15 14:11:54 +00002742 pr_debug("%s: add_dev failed\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002743 return;
2744 }
2745
Fred L. Templinc7dc89c2007-11-29 22:11:40 +11002746 if (dev->priv_flags & IFF_ISATAP) {
2747 struct in6_addr addr;
2748
2749 ipv6_addr_set(&addr, htonl(0xFE800000), 0, 0, 0);
2750 addrconf_prefix_route(&addr, 64, dev, 0, 0);
2751 if (!ipv6_generate_eui64(addr.s6_addr + 8, dev))
2752 addrconf_add_linklocal(idev, &addr);
2753 return;
2754 }
2755
Linus Torvalds1da177e2005-04-16 15:20:36 -07002756 sit_add_v4_addrs(idev);
2757
Nicolas Dichtel62b54dd2012-10-01 23:19:14 +00002758 if (dev->flags&IFF_POINTOPOINT)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002759 addrconf_add_mroute(dev);
Nicolas Dichtel62b54dd2012-10-01 23:19:14 +00002760 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07002761 sit_route_add(dev);
2762}
Joerg Roedel0be669b2006-10-10 14:49:53 -07002763#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002764
Amerigo Wang07a93622012-10-29 16:23:10 +00002765#if IS_ENABLED(CONFIG_NET_IPGRE)
stephen hemmingeraee80b52011-06-08 10:44:30 +00002766static void addrconf_gre_config(struct net_device *dev)
2767{
2768 struct inet6_dev *idev;
2769 struct in6_addr addr;
2770
stephen hemmingeraee80b52011-06-08 10:44:30 +00002771 ASSERT_RTNL();
2772
David S. Miller7eaa48a2013-08-20 23:44:39 -07002773 if ((idev = ipv6_find_idev(dev)) == NULL) {
Joe Perches91df42b2012-05-15 14:11:54 +00002774 pr_debug("%s: add_dev failed\n", __func__);
stephen hemmingeraee80b52011-06-08 10:44:30 +00002775 return;
2776 }
2777
2778 ipv6_addr_set(&addr, htonl(0xFE800000), 0, 0, 0);
2779 addrconf_prefix_route(&addr, 64, dev, 0, 0);
2780
2781 if (!ipv6_generate_eui64(addr.s6_addr + 8, dev))
2782 addrconf_add_linklocal(idev, &addr);
2783}
2784#endif
2785
Linus Torvalds1da177e2005-04-16 15:20:36 -07002786static inline int
2787ipv6_inherit_linklocal(struct inet6_dev *idev, struct net_device *link_dev)
2788{
2789 struct in6_addr lladdr;
2790
Neil Horman95c385b2007-04-25 17:08:10 -07002791 if (!ipv6_get_lladdr(link_dev, &lladdr, IFA_F_TENTATIVE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002792 addrconf_add_linklocal(idev, &lladdr);
2793 return 0;
2794 }
2795 return -1;
2796}
2797
2798static void ip6_tnl_add_linklocal(struct inet6_dev *idev)
2799{
2800 struct net_device *link_dev;
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09002801 struct net *net = dev_net(idev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002802
2803 /* first try to inherit the link-local address from the link device */
David S. Miller7eaa48a2013-08-20 23:44:39 -07002804 if (idev->dev->iflink &&
2805 (link_dev = __dev_get_by_index(net, idev->dev->iflink))) {
2806 if (!ipv6_inherit_linklocal(idev, link_dev))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002807 return;
David S. Miller7eaa48a2013-08-20 23:44:39 -07002808 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002809 /* then try to inherit it from any device */
Benjamin Thery6fda7352008-03-05 10:47:47 -08002810 for_each_netdev(net, link_dev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002811 if (!ipv6_inherit_linklocal(idev, link_dev))
2812 return;
2813 }
Joe Perches91df42b2012-05-15 14:11:54 +00002814 pr_debug("init ip6-ip6: add_linklocal failed\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002815}
2816
2817/*
2818 * Autoconfigure tunnel with a link-local address so routing protocols,
2819 * DHCPv6, MLD etc. can be run over the virtual link
2820 */
2821
2822static void addrconf_ip6_tnl_config(struct net_device *dev)
2823{
2824 struct inet6_dev *idev;
2825
2826 ASSERT_RTNL();
2827
Stephen Hemmingere21e8462010-03-20 16:09:01 -07002828 idev = addrconf_add_dev(dev);
Brian Haley64e724f2010-07-20 10:34:30 +00002829 if (IS_ERR(idev)) {
Joe Perches91df42b2012-05-15 14:11:54 +00002830 pr_debug("init ip6-ip6: add_dev failed\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002831 return;
2832 }
2833 ip6_tnl_add_linklocal(idev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002834}
2835
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002836static int addrconf_notify(struct notifier_block *this, unsigned long event,
Jiri Pirko351638e2013-05-28 01:30:21 +00002837 void *ptr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002838{
Jiri Pirko351638e2013-05-28 01:30:21 +00002839 struct net_device *dev = netdev_notifier_info_to_dev(ptr);
Eric Dumazet748e2d92012-08-22 21:50:59 +00002840 struct inet6_dev *idev = __in6_dev_get(dev);
YOSHIFUJI Hideakic5e33bd2005-12-21 22:57:44 +09002841 int run_pending = 0;
Herbert Xub217d612007-07-30 17:04:52 -07002842 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002843
Stephen Hemmingere21e8462010-03-20 16:09:01 -07002844 switch (event) {
YOSHIFUJI Hideaki45ba9dd2007-02-15 02:07:27 +09002845 case NETDEV_REGISTER:
Herbert Xu74235a22007-06-14 13:02:55 -07002846 if (!idev && dev->mtu >= IPV6_MIN_MTU) {
YOSHIFUJI Hideaki45ba9dd2007-02-15 02:07:27 +09002847 idev = ipv6_add_dev(dev);
2848 if (!idev)
Herbert Xub217d612007-07-30 17:04:52 -07002849 return notifier_from_errno(-ENOMEM);
YOSHIFUJI Hideaki45ba9dd2007-02-15 02:07:27 +09002850 }
2851 break;
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07002852
Linus Torvalds1da177e2005-04-16 15:20:36 -07002853 case NETDEV_UP:
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09002854 case NETDEV_CHANGE:
Jay Vosburghc2edacf2007-07-09 10:42:47 -07002855 if (dev->flags & IFF_SLAVE)
2856 break;
2857
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09002858 if (event == NETDEV_UP) {
Mitsuru Chinenf24e3d62007-10-10 02:53:43 -07002859 if (!addrconf_qdisc_ok(dev)) {
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09002860 /* device is not ready yet. */
Joe Perchesf3213832012-05-15 14:11:53 +00002861 pr_info("ADDRCONF(NETDEV_UP): %s: link is not ready\n",
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09002862 dev->name);
2863 break;
2864 }
Kristian Slavov99081042006-02-08 16:10:53 -08002865
Evgeniy Polyakovd31c7b82007-11-30 23:36:08 +11002866 if (!idev && dev->mtu >= IPV6_MIN_MTU)
2867 idev = ipv6_add_dev(dev);
2868
Benjamin Therye3ec6cf2008-11-05 01:43:57 -08002869 if (idev) {
Kristian Slavov99081042006-02-08 16:10:53 -08002870 idev->if_flags |= IF_READY;
Benjamin Therye3ec6cf2008-11-05 01:43:57 -08002871 run_pending = 1;
2872 }
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09002873 } else {
Mitsuru Chinenf24e3d62007-10-10 02:53:43 -07002874 if (!addrconf_qdisc_ok(dev)) {
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09002875 /* device is still not ready. */
2876 break;
2877 }
2878
2879 if (idev) {
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07002880 if (idev->if_flags & IF_READY)
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09002881 /* device is already configured. */
2882 break;
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09002883 idev->if_flags |= IF_READY;
2884 }
2885
Joe Perchesf3213832012-05-15 14:11:53 +00002886 pr_info("ADDRCONF(NETDEV_CHANGE): %s: link becomes ready\n",
2887 dev->name);
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09002888
YOSHIFUJI Hideakic5e33bd2005-12-21 22:57:44 +09002889 run_pending = 1;
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09002890 }
2891
Stephen Hemmingere21e8462010-03-20 16:09:01 -07002892 switch (dev->type) {
Amerigo Wang07a93622012-10-29 16:23:10 +00002893#if IS_ENABLED(CONFIG_IPV6_SIT)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002894 case ARPHRD_SIT:
2895 addrconf_sit_config(dev);
2896 break;
Joerg Roedel0be669b2006-10-10 14:49:53 -07002897#endif
Amerigo Wang07a93622012-10-29 16:23:10 +00002898#if IS_ENABLED(CONFIG_NET_IPGRE)
stephen hemmingeraee80b52011-06-08 10:44:30 +00002899 case ARPHRD_IPGRE:
2900 addrconf_gre_config(dev);
2901 break;
2902#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002903 case ARPHRD_TUNNEL6:
2904 addrconf_ip6_tnl_config(dev);
2905 break;
2906 case ARPHRD_LOOPBACK:
2907 init_loopback(dev);
2908 break;
2909
2910 default:
2911 addrconf_dev_config(dev);
2912 break;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07002913 }
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07002914
Linus Torvalds1da177e2005-04-16 15:20:36 -07002915 if (idev) {
YOSHIFUJI Hideakic5e33bd2005-12-21 22:57:44 +09002916 if (run_pending)
2917 addrconf_dad_run(idev);
2918
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07002919 /*
2920 * If the MTU changed during the interface down,
2921 * when the interface up, the changed MTU must be
2922 * reflected in the idev as well as routers.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002923 */
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07002924 if (idev->cnf.mtu6 != dev->mtu &&
2925 dev->mtu >= IPV6_MIN_MTU) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002926 rt6_mtu_change(dev, dev->mtu);
2927 idev->cnf.mtu6 = dev->mtu;
2928 }
2929 idev->tstamp = jiffies;
2930 inet6_ifinfo_notify(RTM_NEWLINK, idev);
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07002931
2932 /*
2933 * If the changed mtu during down is lower than
2934 * IPV6_MIN_MTU stop IPv6 on this interface.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002935 */
2936 if (dev->mtu < IPV6_MIN_MTU)
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07002937 addrconf_ifdown(dev, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002938 }
2939 break;
2940
2941 case NETDEV_CHANGEMTU:
Evgeniy Polyakovd31c7b82007-11-30 23:36:08 +11002942 if (idev && dev->mtu >= IPV6_MIN_MTU) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002943 rt6_mtu_change(dev, dev->mtu);
2944 idev->cnf.mtu6 = dev->mtu;
2945 break;
2946 }
2947
Evgeniy Polyakovd31c7b82007-11-30 23:36:08 +11002948 if (!idev && dev->mtu >= IPV6_MIN_MTU) {
2949 idev = ipv6_add_dev(dev);
2950 if (idev)
2951 break;
2952 }
2953
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07002954 /*
2955 * MTU falled under IPV6_MIN_MTU.
2956 * Stop IPv6 on this interface.
2957 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002958
2959 case NETDEV_DOWN:
2960 case NETDEV_UNREGISTER:
2961 /*
2962 * Remove all addresses from this interface.
2963 */
2964 addrconf_ifdown(dev, event != NETDEV_DOWN);
2965 break;
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09002966
Linus Torvalds1da177e2005-04-16 15:20:36 -07002967 case NETDEV_CHANGENAME:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002968 if (idev) {
Stephen Hemminger5632c512007-04-28 21:16:39 -07002969 snmp6_unregister_dev(idev);
Pavel Emelyanov408c4762008-01-10 17:41:21 -08002970 addrconf_sysctl_unregister(idev);
Pavel Emelyanovf52295a2007-12-02 00:58:37 +11002971 addrconf_sysctl_register(idev);
Herbert Xub217d612007-07-30 17:04:52 -07002972 err = snmp6_register_dev(idev);
2973 if (err)
2974 return notifier_from_errno(err);
Stephen Hemminger5632c512007-04-28 21:16:39 -07002975 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002976 break;
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07002977
Jiri Pirko93d9b7d2010-03-10 10:28:56 +00002978 case NETDEV_PRE_TYPE_CHANGE:
2979 case NETDEV_POST_TYPE_CHANGE:
2980 addrconf_type_change(dev, event);
Moni Shoua75c78502009-09-15 02:37:40 -07002981 break;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07002982 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002983
2984 return NOTIFY_OK;
2985}
2986
2987/*
2988 * addrconf module should be notified of a device going up
2989 */
2990static struct notifier_block ipv6_dev_notf = {
2991 .notifier_call = addrconf_notify,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002992};
2993
Jiri Pirko93d9b7d2010-03-10 10:28:56 +00002994static void addrconf_type_change(struct net_device *dev, unsigned long event)
Moni Shoua75c78502009-09-15 02:37:40 -07002995{
2996 struct inet6_dev *idev;
2997 ASSERT_RTNL();
2998
2999 idev = __in6_dev_get(dev);
3000
Jiri Pirko93d9b7d2010-03-10 10:28:56 +00003001 if (event == NETDEV_POST_TYPE_CHANGE)
Moni Shoua75c78502009-09-15 02:37:40 -07003002 ipv6_mc_remap(idev);
Jiri Pirko93d9b7d2010-03-10 10:28:56 +00003003 else if (event == NETDEV_PRE_TYPE_CHANGE)
Moni Shoua75c78502009-09-15 02:37:40 -07003004 ipv6_mc_unmap(idev);
3005}
3006
Linus Torvalds1da177e2005-04-16 15:20:36 -07003007static int addrconf_ifdown(struct net_device *dev, int how)
3008{
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09003009 struct net *net = dev_net(dev);
stephen hemminger502a2ff2010-03-17 20:31:13 +00003010 struct inet6_dev *idev;
3011 struct inet6_ifaddr *ifa;
David S. Miller73a8bd72011-01-23 23:27:15 -08003012 int state, i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003013
3014 ASSERT_RTNL();
3015
David S. Miller73a8bd72011-01-23 23:27:15 -08003016 rt6_ifdown(net, dev);
3017 neigh_ifdown(&nd_tbl, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003018
3019 idev = __in6_dev_get(dev);
3020 if (idev == NULL)
3021 return -ENODEV;
3022
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07003023 /*
3024 * Step 1: remove reference to ipv6 device from parent device.
3025 * Do not dev_put!
Linus Torvalds1da177e2005-04-16 15:20:36 -07003026 */
Denis V. Lunev439e2382008-04-03 13:30:17 -07003027 if (how) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003028 idev->dead = 1;
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -07003029
3030 /* protected by rtnl_lock */
Stephen Hemmingera9b3cd72011-08-01 16:19:00 +00003031 RCU_INIT_POINTER(dev->ip6_ptr, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003032
3033 /* Step 1.5: remove snmp6 entry */
3034 snmp6_unregister_dev(idev);
3035
3036 }
3037
David S. Miller73a8bd72011-01-23 23:27:15 -08003038 /* Step 2: clear hash table */
3039 for (i = 0; i < IN6_ADDR_HSIZE; i++) {
3040 struct hlist_head *h = &inet6_addr_lst[i];
David S. Miller73a8bd72011-01-23 23:27:15 -08003041
3042 spin_lock_bh(&addrconf_hash_lock);
3043 restart:
Sasha Levinb67bfe02013-02-27 17:06:00 -08003044 hlist_for_each_entry_rcu(ifa, h, addr_lst) {
David S. Miller73a8bd72011-01-23 23:27:15 -08003045 if (ifa->idev == idev) {
3046 hlist_del_init_rcu(&ifa->addr_lst);
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003047 addrconf_del_dad_timer(ifa);
David S. Miller73a8bd72011-01-23 23:27:15 -08003048 goto restart;
3049 }
3050 }
3051 spin_unlock_bh(&addrconf_hash_lock);
3052 }
3053
Linus Torvalds1da177e2005-04-16 15:20:36 -07003054 write_lock_bh(&idev->lock);
3055
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003056 addrconf_del_rs_timer(idev);
3057
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07003058 /* Step 2: clear flags for stateless addrconf */
Denis V. Lunev439e2382008-04-03 13:30:17 -07003059 if (!how)
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09003060 idev->if_flags &= ~(IF_RS_SENT|IF_RA_RCVD|IF_READY);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003061
Linus Torvalds1da177e2005-04-16 15:20:36 -07003062#ifdef CONFIG_IPV6_PRIVACY
Denis V. Lunev439e2382008-04-03 13:30:17 -07003063 if (how && del_timer(&idev->regen_timer))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003064 in6_dev_put(idev);
3065
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07003066 /* Step 3: clear tempaddr list */
stephen hemminger372e6c82010-03-17 20:31:09 +00003067 while (!list_empty(&idev->tempaddr_list)) {
3068 ifa = list_first_entry(&idev->tempaddr_list,
3069 struct inet6_ifaddr, tmp_list);
3070 list_del(&ifa->tmp_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003071 write_unlock_bh(&idev->lock);
3072 spin_lock_bh(&ifa->lock);
3073
3074 if (ifa->ifpub) {
3075 in6_ifa_put(ifa->ifpub);
3076 ifa->ifpub = NULL;
3077 }
3078 spin_unlock_bh(&ifa->lock);
3079 in6_ifa_put(ifa);
3080 write_lock_bh(&idev->lock);
3081 }
3082#endif
stephen hemminger8f37ada2010-03-03 08:19:59 +00003083
stephen hemminger502a2ff2010-03-17 20:31:13 +00003084 while (!list_empty(&idev->addr_list)) {
3085 ifa = list_first_entry(&idev->addr_list,
3086 struct inet6_ifaddr, if_list);
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003087 addrconf_del_dad_timer(ifa);
stephen hemminger84e8b802010-03-02 13:32:46 +00003088
David S. Miller73a8bd72011-01-23 23:27:15 -08003089 list_del(&ifa->if_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003090
David S. Miller73a8bd72011-01-23 23:27:15 -08003091 write_unlock_bh(&idev->lock);
stephen hemminger84e8b802010-03-02 13:32:46 +00003092
David S. Miller73a8bd72011-01-23 23:27:15 -08003093 spin_lock_bh(&ifa->state_lock);
3094 state = ifa->state;
3095 ifa->state = INET6_IFADDR_STATE_DEAD;
3096 spin_unlock_bh(&ifa->state_lock);
stephen hemminger84e8b802010-03-02 13:32:46 +00003097
David S. Miller73a8bd72011-01-23 23:27:15 -08003098 if (state != INET6_IFADDR_STATE_DEAD) {
3099 __ipv6_ifa_notify(RTM_DELADDR, ifa);
Cong Wangf88c91d2013-04-14 23:18:43 +08003100 inet6addr_notifier_call_chain(NETDEV_DOWN, ifa);
stephen hemminger27bdb2a2010-04-12 05:41:32 +00003101 }
David S. Miller73a8bd72011-01-23 23:27:15 -08003102 in6_ifa_put(ifa);
stephen hemminger8f37ada2010-03-03 08:19:59 +00003103
David S. Miller73a8bd72011-01-23 23:27:15 -08003104 write_lock_bh(&idev->lock);
3105 }
stephen hemminger8f37ada2010-03-03 08:19:59 +00003106
Linus Torvalds1da177e2005-04-16 15:20:36 -07003107 write_unlock_bh(&idev->lock);
3108
3109 /* Step 5: Discard multicast list */
Denis V. Lunev439e2382008-04-03 13:30:17 -07003110 if (how)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003111 ipv6_mc_destroy_dev(idev);
3112 else
3113 ipv6_mc_down(idev);
3114
Linus Torvalds1da177e2005-04-16 15:20:36 -07003115 idev->tstamp = jiffies;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09003116
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07003117 /* Last: Shot the device (if unregistered) */
Denis V. Lunev439e2382008-04-03 13:30:17 -07003118 if (how) {
Pavel Emelyanov408c4762008-01-10 17:41:21 -08003119 addrconf_sysctl_unregister(idev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003120 neigh_parms_release(&nd_tbl, idev->nd_parms);
3121 neigh_ifdown(&nd_tbl, dev);
3122 in6_dev_put(idev);
3123 }
3124 return 0;
3125}
3126
3127static void addrconf_rs_timer(unsigned long data)
3128{
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003129 struct inet6_dev *idev = (struct inet6_dev *)data;
3130 struct in6_addr lladdr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003131
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003132 write_lock(&idev->lock);
stephen hemminger5b2a1952010-03-02 13:32:45 +00003133 if (idev->dead || !(idev->if_flags & IF_READY))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003134 goto out;
3135
Shmulik Ladkani9ba2add2012-12-02 01:44:53 +00003136 if (!ipv6_accept_ra(idev))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003137 goto out;
stephen hemminger5b2a1952010-03-02 13:32:45 +00003138
3139 /* Announcement received after solicitation was sent */
3140 if (idev->if_flags & IF_RA_RCVD)
3141 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003142
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003143 if (idev->rs_probes++ < idev->cnf.rtr_solicits) {
3144 if (!__ipv6_get_lladdr(idev, &lladdr, IFA_F_TENTATIVE))
3145 ndisc_send_rs(idev->dev, &lladdr,
3146 &in6addr_linklocal_allrouters);
3147 else
3148 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003149
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003150 /* The wait after the last probe can be shorter */
3151 addrconf_mod_rs_timer(idev, (idev->rs_probes ==
3152 idev->cnf.rtr_solicits) ?
3153 idev->cnf.rtr_solicit_delay :
3154 idev->cnf.rtr_solicit_interval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003155 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003156 /*
3157 * Note: we do not support deprecated "all on-link"
3158 * assumption any longer.
3159 */
Joe Perches91df42b2012-05-15 14:11:54 +00003160 pr_debug("%s: no IPv6 routers present\n", idev->dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003161 }
3162
3163out:
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003164 write_unlock(&idev->lock);
3165 in6_dev_put(idev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003166}
3167
3168/*
3169 * Duplicate Address Detection
3170 */
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09003171static void addrconf_dad_kick(struct inet6_ifaddr *ifp)
3172{
3173 unsigned long rand_num;
3174 struct inet6_dev *idev = ifp->idev;
3175
Neil Horman95c385b2007-04-25 17:08:10 -07003176 if (ifp->flags & IFA_F_OPTIMISTIC)
3177 rand_num = 0;
3178 else
3179 rand_num = net_random() % (idev->cnf.rtr_solicit_delay ? : 1);
3180
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003181 ifp->dad_probes = idev->cnf.dad_transmits;
3182 addrconf_mod_dad_timer(ifp, rand_num);
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09003183}
3184
David S. Millercf22f9a2012-04-14 21:37:40 -04003185static void addrconf_dad_start(struct inet6_ifaddr *ifp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003186{
3187 struct inet6_dev *idev = ifp->idev;
3188 struct net_device *dev = idev->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003189
3190 addrconf_join_solict(dev, &ifp->addr);
3191
Linus Torvalds1da177e2005-04-16 15:20:36 -07003192 net_srandom(ifp->addr.s6_addr32[3]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003193
3194 read_lock_bh(&idev->lock);
Herbert Xu622ccdf2010-05-18 15:56:06 -07003195 spin_lock(&ifp->lock);
Herbert Xue9d3e082010-05-18 15:36:06 -07003196 if (ifp->state == INET6_IFADDR_STATE_DEAD)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003197 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003198
3199 if (dev->flags&(IFF_NOARP|IFF_LOOPBACK) ||
YOSHIFUJI Hideaki1b34be72008-06-28 14:18:38 +09003200 idev->cnf.accept_dad < 1 ||
Noriaki TAKAMIYA55ebaef2006-09-22 14:45:27 -07003201 !(ifp->flags&IFA_F_TENTATIVE) ||
3202 ifp->flags & IFA_F_NODAD) {
Brian Haleycc411d02009-09-09 14:41:32 +00003203 ifp->flags &= ~(IFA_F_TENTATIVE|IFA_F_OPTIMISTIC|IFA_F_DADFAILED);
stephen hemminger21809fa2010-02-08 19:48:52 +00003204 spin_unlock(&ifp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003205 read_unlock_bh(&idev->lock);
3206
3207 addrconf_dad_completed(ifp);
3208 return;
3209 }
3210
YOSHIFUJI Hideaki6732bad2005-12-27 13:35:15 -08003211 if (!(idev->if_flags & IF_READY)) {
stephen hemminger21809fa2010-02-08 19:48:52 +00003212 spin_unlock(&ifp->lock);
YOSHIFUJI Hideaki6732bad2005-12-27 13:35:15 -08003213 read_unlock_bh(&idev->lock);
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09003214 /*
Masatake YAMATO590a9882009-06-09 10:41:12 +09003215 * If the device is not ready:
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09003216 * - keep it tentative if it is a permanent address.
3217 * - otherwise, kill it.
3218 */
3219 in6_ifa_hold(ifp);
Brian Haleycc411d02009-09-09 14:41:32 +00003220 addrconf_dad_stop(ifp, 0);
YOSHIFUJI Hideaki6732bad2005-12-27 13:35:15 -08003221 return;
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09003222 }
Neil Horman95c385b2007-04-25 17:08:10 -07003223
3224 /*
3225 * Optimistic nodes can start receiving
3226 * Frames right away
3227 */
Stephen Hemmingere21e8462010-03-20 16:09:01 -07003228 if (ifp->flags & IFA_F_OPTIMISTIC)
Neil Horman95c385b2007-04-25 17:08:10 -07003229 ip6_ins_rt(ifp->rt);
3230
YOSHIFUJI Hideaki6732bad2005-12-27 13:35:15 -08003231 addrconf_dad_kick(ifp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003232out:
Herbert Xu622ccdf2010-05-18 15:56:06 -07003233 spin_unlock(&ifp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003234 read_unlock_bh(&idev->lock);
3235}
3236
3237static void addrconf_dad_timer(unsigned long data)
3238{
3239 struct inet6_ifaddr *ifp = (struct inet6_ifaddr *) data;
3240 struct inet6_dev *idev = ifp->idev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003241 struct in6_addr mcaddr;
3242
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003243 if (!ifp->dad_probes && addrconf_dad_end(ifp))
Herbert Xuf2344a12010-05-18 15:55:27 -07003244 goto out;
3245
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003246 write_lock(&idev->lock);
stephen hemminger122e4512010-03-02 13:32:44 +00003247 if (idev->dead || !(idev->if_flags & IF_READY)) {
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003248 write_unlock(&idev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003249 goto out;
3250 }
stephen hemminger21809fa2010-02-08 19:48:52 +00003251
3252 spin_lock(&ifp->lock);
Herbert Xu622ccdf2010-05-18 15:56:06 -07003253 if (ifp->state == INET6_IFADDR_STATE_DEAD) {
3254 spin_unlock(&ifp->lock);
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003255 write_unlock(&idev->lock);
Herbert Xu622ccdf2010-05-18 15:56:06 -07003256 goto out;
3257 }
3258
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003259 if (ifp->dad_probes == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003260 /*
3261 * DAD was successful
3262 */
3263
Brian Haleycc411d02009-09-09 14:41:32 +00003264 ifp->flags &= ~(IFA_F_TENTATIVE|IFA_F_OPTIMISTIC|IFA_F_DADFAILED);
stephen hemminger21809fa2010-02-08 19:48:52 +00003265 spin_unlock(&ifp->lock);
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003266 write_unlock(&idev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003267
3268 addrconf_dad_completed(ifp);
3269
3270 goto out;
3271 }
3272
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003273 ifp->dad_probes--;
3274 addrconf_mod_dad_timer(ifp, ifp->idev->nd_parms->retrans_time);
stephen hemminger21809fa2010-02-08 19:48:52 +00003275 spin_unlock(&ifp->lock);
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003276 write_unlock(&idev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003277
3278 /* send a neighbour solicitation for our addr */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003279 addrconf_addr_solict_mult(&ifp->addr, &mcaddr);
YOSHIFUJI Hideakid7aabf22008-04-10 15:42:11 +09003280 ndisc_send_ns(ifp->idev->dev, NULL, &ifp->addr, &mcaddr, &in6addr_any);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003281out:
3282 in6_ifa_put(ifp);
3283}
3284
3285static void addrconf_dad_completed(struct inet6_ifaddr *ifp)
3286{
Stephen Hemmingere21e8462010-03-20 16:09:01 -07003287 struct net_device *dev = ifp->idev->dev;
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003288 struct in6_addr lladdr;
Hannes Frederic Sowab173ee42013-06-27 00:07:01 +02003289 bool send_rs, send_mld;
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003290
3291 addrconf_del_dad_timer(ifp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003292
3293 /*
3294 * Configure the address for reception. Now it is valid.
3295 */
3296
3297 ipv6_ifa_notify(RTM_NEWADDR, ifp);
3298
Tore Anderson026359b2011-08-28 23:47:33 +00003299 /* If added prefix is link local and we are prepared to process
3300 router advertisements, start sending router solicitations.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003301 */
3302
Hannes Frederic Sowa1ec047e2013-06-27 00:06:56 +02003303 read_lock_bh(&ifp->idev->lock);
3304 spin_lock(&ifp->lock);
Hannes Frederic Sowab173ee42013-06-27 00:07:01 +02003305 send_mld = ipv6_addr_type(&ifp->addr) & IPV6_ADDR_LINKLOCAL &&
3306 ifp->idev->valid_ll_addr_cnt == 1;
3307 send_rs = send_mld &&
3308 ipv6_accept_ra(ifp->idev) &&
Hannes Frederic Sowa1ec047e2013-06-27 00:06:56 +02003309 ifp->idev->cnf.rtr_solicits > 0 &&
Hannes Frederic Sowab173ee42013-06-27 00:07:01 +02003310 (dev->flags&IFF_LOOPBACK) == 0;
Hannes Frederic Sowa1ec047e2013-06-27 00:06:56 +02003311 spin_unlock(&ifp->lock);
3312 read_unlock_bh(&ifp->idev->lock);
3313
Hannes Frederic Sowab173ee42013-06-27 00:07:01 +02003314 /* While dad is in progress mld report's source address is in6_addrany.
3315 * Resend with proper ll now.
3316 */
3317 if (send_mld)
3318 ipv6_mc_dad_complete(ifp->idev);
3319
Hannes Frederic Sowa1ec047e2013-06-27 00:06:56 +02003320 if (send_rs) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003321 /*
3322 * If a host as already performed a random delay
3323 * [...] as part of DAD [...] there is no need
3324 * to delay again before sending the first RS
3325 */
Hannes Frederic Sowa1ec047e2013-06-27 00:06:56 +02003326 if (ipv6_get_lladdr(dev, &lladdr, IFA_F_TENTATIVE))
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003327 return;
Hannes Frederic Sowa1ec047e2013-06-27 00:06:56 +02003328 ndisc_send_rs(dev, &lladdr, &in6addr_linklocal_allrouters);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003329
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003330 write_lock_bh(&ifp->idev->lock);
3331 spin_lock(&ifp->lock);
3332 ifp->idev->rs_probes = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003333 ifp->idev->if_flags |= IF_RS_SENT;
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003334 addrconf_mod_rs_timer(ifp->idev,
3335 ifp->idev->cnf.rtr_solicit_interval);
3336 spin_unlock(&ifp->lock);
3337 write_unlock_bh(&ifp->idev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003338 }
3339}
3340
Stephen Hemmingere21e8462010-03-20 16:09:01 -07003341static void addrconf_dad_run(struct inet6_dev *idev)
3342{
YOSHIFUJI Hideakic5e33bd2005-12-21 22:57:44 +09003343 struct inet6_ifaddr *ifp;
3344
3345 read_lock_bh(&idev->lock);
stephen hemminger502a2ff2010-03-17 20:31:13 +00003346 list_for_each_entry(ifp, &idev->addr_list, if_list) {
stephen hemminger21809fa2010-02-08 19:48:52 +00003347 spin_lock(&ifp->lock);
Herbert Xuf2344a12010-05-18 15:55:27 -07003348 if (ifp->flags & IFA_F_TENTATIVE &&
3349 ifp->state == INET6_IFADDR_STATE_DAD)
3350 addrconf_dad_kick(ifp);
stephen hemminger21809fa2010-02-08 19:48:52 +00003351 spin_unlock(&ifp->lock);
YOSHIFUJI Hideakic5e33bd2005-12-21 22:57:44 +09003352 }
3353 read_unlock_bh(&idev->lock);
3354}
3355
Linus Torvalds1da177e2005-04-16 15:20:36 -07003356#ifdef CONFIG_PROC_FS
3357struct if6_iter_state {
Daniel Lezcano3c400902008-01-10 22:42:49 -08003358 struct seq_net_private p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003359 int bucket;
Mihai Maruseac1d578302012-01-03 23:31:35 +00003360 int offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003361};
3362
Mihai Maruseac1d578302012-01-03 23:31:35 +00003363static struct inet6_ifaddr *if6_get_first(struct seq_file *seq, loff_t pos)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003364{
3365 struct inet6_ifaddr *ifa = NULL;
3366 struct if6_iter_state *state = seq->private;
YOSHIFUJI Hideaki12188542008-03-26 02:36:06 +09003367 struct net *net = seq_file_net(seq);
Mihai Maruseac1d578302012-01-03 23:31:35 +00003368 int p = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003369
Mihai Maruseac1d578302012-01-03 23:31:35 +00003370 /* initial bucket if pos is 0 */
3371 if (pos == 0) {
3372 state->bucket = 0;
3373 state->offset = 0;
3374 }
3375
3376 for (; state->bucket < IN6_ADDR_HSIZE; ++state->bucket) {
Sasha Levinb67bfe02013-02-27 17:06:00 -08003377 hlist_for_each_entry_rcu_bh(ifa, &inet6_addr_lst[state->bucket],
Mihai Maruseac1d578302012-01-03 23:31:35 +00003378 addr_lst) {
Eric Dumazet9f0d3c22012-10-16 07:37:27 +00003379 if (!net_eq(dev_net(ifa->idev->dev), net))
3380 continue;
Mihai Maruseac1d578302012-01-03 23:31:35 +00003381 /* sync with offset */
3382 if (p < state->offset) {
3383 p++;
3384 continue;
3385 }
3386 state->offset++;
Eric Dumazet9f0d3c22012-10-16 07:37:27 +00003387 return ifa;
Mihai Maruseac1d578302012-01-03 23:31:35 +00003388 }
3389
3390 /* prepare for next bucket */
3391 state->offset = 0;
3392 p = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003393 }
stephen hemmingerc2e21292010-03-17 20:31:10 +00003394 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003395}
3396
stephen hemmingerc2e21292010-03-17 20:31:10 +00003397static struct inet6_ifaddr *if6_get_next(struct seq_file *seq,
3398 struct inet6_ifaddr *ifa)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003399{
3400 struct if6_iter_state *state = seq->private;
YOSHIFUJI Hideaki12188542008-03-26 02:36:06 +09003401 struct net *net = seq_file_net(seq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003402
Sasha Levinb67bfe02013-02-27 17:06:00 -08003403 hlist_for_each_entry_continue_rcu_bh(ifa, addr_lst) {
Eric Dumazet9f0d3c22012-10-16 07:37:27 +00003404 if (!net_eq(dev_net(ifa->idev->dev), net))
3405 continue;
Mihai Maruseac1d578302012-01-03 23:31:35 +00003406 state->offset++;
Eric Dumazet9f0d3c22012-10-16 07:37:27 +00003407 return ifa;
Mihai Maruseac1d578302012-01-03 23:31:35 +00003408 }
stephen hemmingerc2e21292010-03-17 20:31:10 +00003409
3410 while (++state->bucket < IN6_ADDR_HSIZE) {
Mihai Maruseac1d578302012-01-03 23:31:35 +00003411 state->offset = 0;
Sasha Levinb67bfe02013-02-27 17:06:00 -08003412 hlist_for_each_entry_rcu_bh(ifa,
stephen hemmingerc2e21292010-03-17 20:31:10 +00003413 &inet6_addr_lst[state->bucket], addr_lst) {
Eric Dumazet9f0d3c22012-10-16 07:37:27 +00003414 if (!net_eq(dev_net(ifa->idev->dev), net))
3415 continue;
Mihai Maruseac1d578302012-01-03 23:31:35 +00003416 state->offset++;
Eric Dumazet9f0d3c22012-10-16 07:37:27 +00003417 return ifa;
Daniel Lezcano3c400902008-01-10 22:42:49 -08003418 }
3419 }
3420
stephen hemmingerc2e21292010-03-17 20:31:10 +00003421 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003422}
3423
Linus Torvalds1da177e2005-04-16 15:20:36 -07003424static void *if6_seq_start(struct seq_file *seq, loff_t *pos)
Eric Dumazet4f70ecc2010-05-03 10:50:14 +00003425 __acquires(rcu_bh)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003426{
stephen hemminger5c578aed2010-03-17 20:31:11 +00003427 rcu_read_lock_bh();
Mihai Maruseac1d578302012-01-03 23:31:35 +00003428 return if6_get_first(seq, *pos);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003429}
3430
3431static void *if6_seq_next(struct seq_file *seq, void *v, loff_t *pos)
3432{
3433 struct inet6_ifaddr *ifa;
3434
3435 ifa = if6_get_next(seq, v);
3436 ++*pos;
3437 return ifa;
3438}
3439
3440static void if6_seq_stop(struct seq_file *seq, void *v)
Eric Dumazet4f70ecc2010-05-03 10:50:14 +00003441 __releases(rcu_bh)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003442{
stephen hemminger5c578aed2010-03-17 20:31:11 +00003443 rcu_read_unlock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003444}
3445
3446static int if6_seq_show(struct seq_file *seq, void *v)
3447{
3448 struct inet6_ifaddr *ifp = (struct inet6_ifaddr *)v;
Harvey Harrison4b7a4272008-10-29 12:50:24 -07003449 seq_printf(seq, "%pi6 %02x %02x %02x %02x %8s\n",
Harvey Harrisonb0711952008-10-28 16:05:40 -07003450 &ifp->addr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003451 ifp->idev->dev->ifindex,
3452 ifp->prefix_len,
3453 ifp->scope,
3454 ifp->flags,
3455 ifp->idev->dev->name);
3456 return 0;
3457}
3458
Philippe De Muyter56b3d972007-07-10 23:07:31 -07003459static const struct seq_operations if6_seq_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003460 .start = if6_seq_start,
3461 .next = if6_seq_next,
3462 .show = if6_seq_show,
3463 .stop = if6_seq_stop,
3464};
3465
3466static int if6_seq_open(struct inode *inode, struct file *file)
3467{
Daniel Lezcano3c400902008-01-10 22:42:49 -08003468 return seq_open_net(inode, file, &if6_seq_ops,
3469 sizeof(struct if6_iter_state));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003470}
3471
Arjan van de Ven9a321442007-02-12 00:55:35 -08003472static const struct file_operations if6_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003473 .owner = THIS_MODULE,
3474 .open = if6_seq_open,
3475 .read = seq_read,
3476 .llseek = seq_lseek,
Daniel Lezcano3c400902008-01-10 22:42:49 -08003477 .release = seq_release_net,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003478};
3479
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00003480static int __net_init if6_proc_net_init(struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003481{
Gao fengd4beaa62013-02-18 01:34:54 +00003482 if (!proc_create("if_inet6", S_IRUGO, net->proc_net, &if6_fops))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003483 return -ENOMEM;
3484 return 0;
3485}
3486
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00003487static void __net_exit if6_proc_net_exit(struct net *net)
Daniel Lezcano3c400902008-01-10 22:42:49 -08003488{
Gao fengece31ff2013-02-18 01:34:56 +00003489 remove_proc_entry("if_inet6", net->proc_net);
Daniel Lezcano3c400902008-01-10 22:42:49 -08003490}
3491
3492static struct pernet_operations if6_proc_net_ops = {
3493 .init = if6_proc_net_init,
3494 .exit = if6_proc_net_exit,
3495};
3496
3497int __init if6_proc_init(void)
3498{
3499 return register_pernet_subsys(&if6_proc_net_ops);
3500}
3501
Linus Torvalds1da177e2005-04-16 15:20:36 -07003502void if6_proc_exit(void)
3503{
Daniel Lezcano3c400902008-01-10 22:42:49 -08003504 unregister_pernet_subsys(&if6_proc_net_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003505}
3506#endif /* CONFIG_PROC_FS */
3507
Amerigo Wang07a93622012-10-29 16:23:10 +00003508#if IS_ENABLED(CONFIG_IPV6_MIP6)
Noriaki TAKAMIYA3b9f9a12006-09-22 14:45:56 -07003509/* Check if address is a home address configured on any interface. */
Eric Dumazetb71d1d42011-04-22 04:53:02 +00003510int ipv6_chk_home_addr(struct net *net, const struct in6_addr *addr)
Noriaki TAKAMIYA3b9f9a12006-09-22 14:45:56 -07003511{
3512 int ret = 0;
stephen hemmingerc2e21292010-03-17 20:31:10 +00003513 struct inet6_ifaddr *ifp = NULL;
Eric Dumazetddbe5032012-07-18 08:11:12 +00003514 unsigned int hash = inet6_addr_hash(addr);
stephen hemmingerc2e21292010-03-17 20:31:10 +00003515
stephen hemminger5c578aed2010-03-17 20:31:11 +00003516 rcu_read_lock_bh();
Sasha Levinb67bfe02013-02-27 17:06:00 -08003517 hlist_for_each_entry_rcu_bh(ifp, &inet6_addr_lst[hash], addr_lst) {
YOSHIFUJI Hideaki878628f2008-03-26 03:57:35 +09003518 if (!net_eq(dev_net(ifp->idev->dev), net))
Daniel Lezcano389f6612008-01-10 22:44:40 -08003519 continue;
YOSHIFUJI Hideakicaad2952008-04-10 15:42:07 +09003520 if (ipv6_addr_equal(&ifp->addr, addr) &&
Noriaki TAKAMIYA3b9f9a12006-09-22 14:45:56 -07003521 (ifp->flags & IFA_F_HOMEADDRESS)) {
3522 ret = 1;
3523 break;
3524 }
3525 }
stephen hemminger5c578aed2010-03-17 20:31:11 +00003526 rcu_read_unlock_bh();
Noriaki TAKAMIYA3b9f9a12006-09-22 14:45:56 -07003527 return ret;
3528}
3529#endif
3530
Linus Torvalds1da177e2005-04-16 15:20:36 -07003531/*
3532 * Periodic address status verification
3533 */
3534
3535static void addrconf_verify(unsigned long foo)
3536{
YOSHIFUJI Hideakib2db7562010-03-20 16:11:12 -07003537 unsigned long now, next, next_sec, next_sched;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003538 struct inet6_ifaddr *ifp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003539 int i;
3540
stephen hemminger5c578aed2010-03-17 20:31:11 +00003541 rcu_read_lock_bh();
3542 spin_lock(&addrconf_verify_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003543 now = jiffies;
YOSHIFUJI Hideakib2db7562010-03-20 16:11:12 -07003544 next = round_jiffies_up(now + ADDR_CHECK_FREQUENCY);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003545
3546 del_timer(&addr_chk_timer);
3547
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07003548 for (i = 0; i < IN6_ADDR_HSIZE; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003549restart:
Sasha Levinb67bfe02013-02-27 17:06:00 -08003550 hlist_for_each_entry_rcu_bh(ifp,
stephen hemminger5c578aed2010-03-17 20:31:11 +00003551 &inet6_addr_lst[i], addr_lst) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003552 unsigned long age;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003553
3554 if (ifp->flags & IFA_F_PERMANENT)
3555 continue;
3556
3557 spin_lock(&ifp->lock);
YOSHIFUJI Hideakib2db7562010-03-20 16:11:12 -07003558 /* We try to batch several events at once. */
3559 age = (now - ifp->tstamp + ADDRCONF_TIMER_FUZZ_MINUS) / HZ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003560
YOSHIFUJI Hideaki8f27ebb2006-07-28 18:12:11 +09003561 if (ifp->valid_lft != INFINITY_LIFE_TIME &&
3562 age >= ifp->valid_lft) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003563 spin_unlock(&ifp->lock);
3564 in6_ifa_hold(ifp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003565 ipv6_del_addr(ifp);
3566 goto restart;
YOSHIFUJI Hideaki8f27ebb2006-07-28 18:12:11 +09003567 } else if (ifp->prefered_lft == INFINITY_LIFE_TIME) {
3568 spin_unlock(&ifp->lock);
3569 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003570 } else if (age >= ifp->prefered_lft) {
Brian Haleya1ed0522009-07-02 07:10:52 +00003571 /* jiffies - ifp->tstamp > age >= ifp->prefered_lft */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003572 int deprecate = 0;
3573
3574 if (!(ifp->flags&IFA_F_DEPRECATED)) {
3575 deprecate = 1;
3576 ifp->flags |= IFA_F_DEPRECATED;
3577 }
3578
3579 if (time_before(ifp->tstamp + ifp->valid_lft * HZ, next))
3580 next = ifp->tstamp + ifp->valid_lft * HZ;
3581
3582 spin_unlock(&ifp->lock);
3583
3584 if (deprecate) {
3585 in6_ifa_hold(ifp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003586
3587 ipv6_ifa_notify(0, ifp);
3588 in6_ifa_put(ifp);
3589 goto restart;
3590 }
3591#ifdef CONFIG_IPV6_PRIVACY
3592 } else if ((ifp->flags&IFA_F_TEMPORARY) &&
3593 !(ifp->flags&IFA_F_TENTATIVE)) {
stephen hemminger88949cf2010-03-17 20:31:17 +00003594 unsigned long regen_advance = ifp->idev->cnf.regen_max_retry *
3595 ifp->idev->cnf.dad_transmits *
3596 ifp->idev->nd_parms->retrans_time / HZ;
3597
Linus Torvalds1da177e2005-04-16 15:20:36 -07003598 if (age >= ifp->prefered_lft - regen_advance) {
3599 struct inet6_ifaddr *ifpub = ifp->ifpub;
3600 if (time_before(ifp->tstamp + ifp->prefered_lft * HZ, next))
3601 next = ifp->tstamp + ifp->prefered_lft * HZ;
3602 if (!ifp->regen_count && ifpub) {
3603 ifp->regen_count++;
3604 in6_ifa_hold(ifp);
3605 in6_ifa_hold(ifpub);
3606 spin_unlock(&ifp->lock);
stephen hemminger5c578aed2010-03-17 20:31:11 +00003607
Hiroyuki YAMAMORI291d8092005-12-23 11:24:05 -08003608 spin_lock(&ifpub->lock);
3609 ifpub->regen_count = 0;
3610 spin_unlock(&ifpub->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003611 ipv6_create_tempaddr(ifpub, ifp);
3612 in6_ifa_put(ifpub);
3613 in6_ifa_put(ifp);
3614 goto restart;
3615 }
3616 } else if (time_before(ifp->tstamp + ifp->prefered_lft * HZ - regen_advance * HZ, next))
3617 next = ifp->tstamp + ifp->prefered_lft * HZ - regen_advance * HZ;
3618 spin_unlock(&ifp->lock);
3619#endif
3620 } else {
3621 /* ifp->prefered_lft <= ifp->valid_lft */
3622 if (time_before(ifp->tstamp + ifp->prefered_lft * HZ, next))
3623 next = ifp->tstamp + ifp->prefered_lft * HZ;
3624 spin_unlock(&ifp->lock);
3625 }
3626 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003627 }
3628
YOSHIFUJI Hideakib2db7562010-03-20 16:11:12 -07003629 next_sec = round_jiffies_up(next);
3630 next_sched = next;
3631
3632 /* If rounded timeout is accurate enough, accept it. */
3633 if (time_before(next_sec, next + ADDRCONF_TIMER_FUZZ))
3634 next_sched = next_sec;
3635
3636 /* And minimum interval is ADDRCONF_TIMER_FUZZ_MAX. */
3637 if (time_before(next_sched, jiffies + ADDRCONF_TIMER_FUZZ_MAX))
3638 next_sched = jiffies + ADDRCONF_TIMER_FUZZ_MAX;
3639
dingtianhongba3542e2013-08-17 10:27:04 +08003640 ADBG(KERN_DEBUG "now = %lu, schedule = %lu, rounded schedule = %lu => %lu\n",
3641 now, next, next_sec, next_sched);
YOSHIFUJI Hideakib2db7562010-03-20 16:11:12 -07003642
3643 addr_chk_timer.expires = next_sched;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003644 add_timer(&addr_chk_timer);
stephen hemminger5c578aed2010-03-17 20:31:11 +00003645 spin_unlock(&addrconf_verify_lock);
3646 rcu_read_unlock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003647}
3648
Nicolas Dichtelcaeaba72013-05-16 22:32:00 +00003649static struct in6_addr *extract_addr(struct nlattr *addr, struct nlattr *local,
3650 struct in6_addr **peer_pfx)
Thomas Graf461d8832006-09-18 00:09:49 -07003651{
3652 struct in6_addr *pfx = NULL;
3653
Nicolas Dichtelcaeaba72013-05-16 22:32:00 +00003654 *peer_pfx = NULL;
3655
Thomas Graf461d8832006-09-18 00:09:49 -07003656 if (addr)
3657 pfx = nla_data(addr);
3658
3659 if (local) {
3660 if (pfx && nla_memcmp(local, pfx, sizeof(*pfx)))
Nicolas Dichtelcaeaba72013-05-16 22:32:00 +00003661 *peer_pfx = pfx;
3662 pfx = nla_data(local);
Thomas Graf461d8832006-09-18 00:09:49 -07003663 }
3664
3665 return pfx;
3666}
3667
Patrick McHardyef7c79e2007-06-05 12:38:30 -07003668static const struct nla_policy ifa_ipv6_policy[IFA_MAX+1] = {
Thomas Graf461d8832006-09-18 00:09:49 -07003669 [IFA_ADDRESS] = { .len = sizeof(struct in6_addr) },
3670 [IFA_LOCAL] = { .len = sizeof(struct in6_addr) },
3671 [IFA_CACHEINFO] = { .len = sizeof(struct ifa_cacheinfo) },
3672};
3673
Linus Torvalds1da177e2005-04-16 15:20:36 -07003674static int
Thomas Graf661d2962013-03-21 07:45:29 +00003675inet6_rtm_deladdr(struct sk_buff *skb, struct nlmsghdr *nlh)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003676{
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09003677 struct net *net = sock_net(skb->sk);
Thomas Grafb933f712006-09-18 00:10:19 -07003678 struct ifaddrmsg *ifm;
3679 struct nlattr *tb[IFA_MAX+1];
Nicolas Dichtelcaeaba72013-05-16 22:32:00 +00003680 struct in6_addr *pfx, *peer_pfx;
Thomas Grafb933f712006-09-18 00:10:19 -07003681 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003682
Thomas Grafb933f712006-09-18 00:10:19 -07003683 err = nlmsg_parse(nlh, sizeof(*ifm), tb, IFA_MAX, ifa_ipv6_policy);
3684 if (err < 0)
3685 return err;
3686
3687 ifm = nlmsg_data(nlh);
Nicolas Dichtelcaeaba72013-05-16 22:32:00 +00003688 pfx = extract_addr(tb[IFA_ADDRESS], tb[IFA_LOCAL], &peer_pfx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003689 if (pfx == NULL)
3690 return -EINVAL;
3691
Daniel Lezcanoaf284932008-03-05 10:46:57 -08003692 return inet6_addr_del(net, ifm->ifa_index, pfx, ifm->ifa_prefixlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003693}
3694
Noriaki TAKAMIYA55ebaef2006-09-22 14:45:27 -07003695static int inet6_addr_modify(struct inet6_ifaddr *ifp, u8 ifa_flags,
3696 u32 prefered_lft, u32 valid_lft)
Noriaki TAKAMIYA081bba52006-07-28 18:12:13 +09003697{
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07003698 u32 flags;
3699 clock_t expires;
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +09003700 unsigned long timeout;
YOSHIFUJI Hideaki46d48042007-02-07 20:36:26 +09003701
Noriaki TAKAMIYA081bba52006-07-28 18:12:13 +09003702 if (!valid_lft || (prefered_lft > valid_lft))
3703 return -EINVAL;
3704
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +09003705 timeout = addrconf_timeout_fixup(valid_lft, HZ);
3706 if (addrconf_finite_timeout(timeout)) {
3707 expires = jiffies_to_clock_t(timeout * HZ);
3708 valid_lft = timeout;
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07003709 flags = RTF_EXPIRES;
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +09003710 } else {
3711 expires = 0;
3712 flags = 0;
3713 ifa_flags |= IFA_F_PERMANENT;
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07003714 }
Noriaki TAKAMIYA081bba52006-07-28 18:12:13 +09003715
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +09003716 timeout = addrconf_timeout_fixup(prefered_lft, HZ);
3717 if (addrconf_finite_timeout(timeout)) {
3718 if (timeout == 0)
3719 ifa_flags |= IFA_F_DEPRECATED;
3720 prefered_lft = timeout;
3721 }
Noriaki TAKAMIYA081bba52006-07-28 18:12:13 +09003722
3723 spin_lock_bh(&ifp->lock);
Noriaki TAKAMIYA3b9f9a12006-09-22 14:45:56 -07003724 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 +09003725 ifp->tstamp = jiffies;
3726 ifp->valid_lft = valid_lft;
3727 ifp->prefered_lft = prefered_lft;
3728
3729 spin_unlock_bh(&ifp->lock);
3730 if (!(ifp->flags&IFA_F_TENTATIVE))
3731 ipv6_ifa_notify(0, ifp);
Noriaki TAKAMIYA081bba52006-07-28 18:12:13 +09003732
YOSHIFUJI Hideaki46d48042007-02-07 20:36:26 +09003733 addrconf_prefix_route(&ifp->addr, ifp->prefix_len, ifp->idev->dev,
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07003734 expires, flags);
Noriaki TAKAMIYA081bba52006-07-28 18:12:13 +09003735 addrconf_verify(0);
3736
3737 return 0;
3738}
3739
3740static int
Thomas Graf661d2962013-03-21 07:45:29 +00003741inet6_rtm_newaddr(struct sk_buff *skb, struct nlmsghdr *nlh)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003742{
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09003743 struct net *net = sock_net(skb->sk);
Thomas Graf461d8832006-09-18 00:09:49 -07003744 struct ifaddrmsg *ifm;
3745 struct nlattr *tb[IFA_MAX+1];
Nicolas Dichtelcaeaba72013-05-16 22:32:00 +00003746 struct in6_addr *pfx, *peer_pfx;
Thomas Graf7198f8c2006-09-18 00:13:46 -07003747 struct inet6_ifaddr *ifa;
3748 struct net_device *dev;
Noriaki TAKAMIYA55ebaef2006-09-22 14:45:27 -07003749 u32 valid_lft = INFINITY_LIFE_TIME, preferred_lft = INFINITY_LIFE_TIME;
3750 u8 ifa_flags;
Thomas Graf461d8832006-09-18 00:09:49 -07003751 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003752
Thomas Graf461d8832006-09-18 00:09:49 -07003753 err = nlmsg_parse(nlh, sizeof(*ifm), tb, IFA_MAX, ifa_ipv6_policy);
3754 if (err < 0)
3755 return err;
3756
3757 ifm = nlmsg_data(nlh);
Nicolas Dichtelcaeaba72013-05-16 22:32:00 +00003758 pfx = extract_addr(tb[IFA_ADDRESS], tb[IFA_LOCAL], &peer_pfx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003759 if (pfx == NULL)
3760 return -EINVAL;
3761
Thomas Graf461d8832006-09-18 00:09:49 -07003762 if (tb[IFA_CACHEINFO]) {
Noriaki TAKAMIYA07787692006-07-28 18:12:10 +09003763 struct ifa_cacheinfo *ci;
Thomas Graf461d8832006-09-18 00:09:49 -07003764
3765 ci = nla_data(tb[IFA_CACHEINFO]);
Noriaki TAKAMIYA07787692006-07-28 18:12:10 +09003766 valid_lft = ci->ifa_valid;
Thomas Graf461d8832006-09-18 00:09:49 -07003767 preferred_lft = ci->ifa_prefered;
3768 } else {
3769 preferred_lft = INFINITY_LIFE_TIME;
3770 valid_lft = INFINITY_LIFE_TIME;
Noriaki TAKAMIYA07787692006-07-28 18:12:10 +09003771 }
3772
Daniel Lezcanoaf284932008-03-05 10:46:57 -08003773 dev = __dev_get_by_index(net, ifm->ifa_index);
Thomas Graf7198f8c2006-09-18 00:13:46 -07003774 if (dev == NULL)
3775 return -ENODEV;
3776
Noriaki TAKAMIYA55ebaef2006-09-22 14:45:27 -07003777 /* We ignore other flags so far. */
Noriaki TAKAMIYA3b9f9a12006-09-22 14:45:56 -07003778 ifa_flags = ifm->ifa_flags & (IFA_F_NODAD | IFA_F_HOMEADDRESS);
Noriaki TAKAMIYA55ebaef2006-09-22 14:45:27 -07003779
Daniel Lezcano1cab3da2008-01-10 22:44:09 -08003780 ifa = ipv6_get_ifaddr(net, pfx, dev, 1);
Thomas Graf7198f8c2006-09-18 00:13:46 -07003781 if (ifa == NULL) {
3782 /*
3783 * It would be best to check for !NLM_F_CREATE here but
3784 * userspace alreay relies on not having to provide this.
3785 */
Nicolas Dichtelcaeaba72013-05-16 22:32:00 +00003786 return inet6_addr_add(net, ifm->ifa_index, pfx, peer_pfx,
Daniel Lezcanoaf284932008-03-05 10:46:57 -08003787 ifm->ifa_prefixlen, ifa_flags,
3788 preferred_lft, valid_lft);
Noriaki TAKAMIYA081bba52006-07-28 18:12:13 +09003789 }
3790
Thomas Graf7198f8c2006-09-18 00:13:46 -07003791 if (nlh->nlmsg_flags & NLM_F_EXCL ||
3792 !(nlh->nlmsg_flags & NLM_F_REPLACE))
3793 err = -EEXIST;
3794 else
Noriaki TAKAMIYA55ebaef2006-09-22 14:45:27 -07003795 err = inet6_addr_modify(ifa, ifa_flags, preferred_lft, valid_lft);
Thomas Graf7198f8c2006-09-18 00:13:46 -07003796
3797 in6_ifa_put(ifa);
3798
3799 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003800}
3801
Thomas Graf101bb222006-09-18 00:11:52 -07003802static void put_ifaddrmsg(struct nlmsghdr *nlh, u8 prefixlen, u8 flags,
3803 u8 scope, int ifindex)
3804{
3805 struct ifaddrmsg *ifm;
3806
3807 ifm = nlmsg_data(nlh);
3808 ifm->ifa_family = AF_INET6;
3809 ifm->ifa_prefixlen = prefixlen;
3810 ifm->ifa_flags = flags;
3811 ifm->ifa_scope = scope;
3812 ifm->ifa_index = ifindex;
3813}
3814
Thomas Graf85486af2006-09-18 00:11:24 -07003815static int put_cacheinfo(struct sk_buff *skb, unsigned long cstamp,
3816 unsigned long tstamp, u32 preferred, u32 valid)
3817{
3818 struct ifa_cacheinfo ci;
3819
Thomas Graf18a31e12010-11-17 04:12:02 +00003820 ci.cstamp = cstamp_delta(cstamp);
3821 ci.tstamp = cstamp_delta(tstamp);
Thomas Graf85486af2006-09-18 00:11:24 -07003822 ci.ifa_prefered = preferred;
3823 ci.ifa_valid = valid;
3824
3825 return nla_put(skb, IFA_CACHEINFO, sizeof(ci), &ci);
3826}
3827
Thomas Graf101bb222006-09-18 00:11:52 -07003828static inline int rt_scope(int ifa_scope)
3829{
3830 if (ifa_scope & IFA_HOST)
3831 return RT_SCOPE_HOST;
3832 else if (ifa_scope & IFA_LINK)
3833 return RT_SCOPE_LINK;
3834 else if (ifa_scope & IFA_SITE)
3835 return RT_SCOPE_SITE;
3836 else
3837 return RT_SCOPE_UNIVERSE;
3838}
3839
Thomas Graf0ab68032006-09-18 00:12:35 -07003840static inline int inet6_ifaddr_msgsize(void)
3841{
Thomas Graf339bf982006-11-10 14:10:15 -08003842 return NLMSG_ALIGN(sizeof(struct ifaddrmsg))
Nicolas Dichtelcaeaba72013-05-16 22:32:00 +00003843 + nla_total_size(16) /* IFA_LOCAL */
Thomas Graf339bf982006-11-10 14:10:15 -08003844 + nla_total_size(16) /* IFA_ADDRESS */
3845 + nla_total_size(sizeof(struct ifa_cacheinfo));
Thomas Graf0ab68032006-09-18 00:12:35 -07003846}
YOSHIFUJI Hideakic5396a32006-06-17 22:48:48 -07003847
Linus Torvalds1da177e2005-04-16 15:20:36 -07003848static int inet6_fill_ifaddr(struct sk_buff *skb, struct inet6_ifaddr *ifa,
Eric W. Biederman15e47302012-09-07 20:12:54 +00003849 u32 portid, u32 seq, int event, unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003850{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003851 struct nlmsghdr *nlh;
Thomas Graf85486af2006-09-18 00:11:24 -07003852 u32 preferred, valid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003853
Eric W. Biederman15e47302012-09-07 20:12:54 +00003854 nlh = nlmsg_put(skb, portid, seq, event, sizeof(struct ifaddrmsg), flags);
Thomas Graf0ab68032006-09-18 00:12:35 -07003855 if (nlh == NULL)
Patrick McHardy26932562007-01-31 23:16:40 -08003856 return -EMSGSIZE;
Thomas Graf0ab68032006-09-18 00:12:35 -07003857
Thomas Graf101bb222006-09-18 00:11:52 -07003858 put_ifaddrmsg(nlh, ifa->prefix_len, ifa->flags, rt_scope(ifa->scope),
3859 ifa->idev->dev->ifindex);
3860
Linus Torvalds1da177e2005-04-16 15:20:36 -07003861 if (!(ifa->flags&IFA_F_PERMANENT)) {
Thomas Graf85486af2006-09-18 00:11:24 -07003862 preferred = ifa->prefered_lft;
3863 valid = ifa->valid_lft;
3864 if (preferred != INFINITY_LIFE_TIME) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003865 long tval = (jiffies - ifa->tstamp)/HZ;
Jens Rosenbooma1faa692009-06-25 04:55:50 +00003866 if (preferred > tval)
3867 preferred -= tval;
3868 else
3869 preferred = 0;
Ben Hutchingsf56619f2010-06-26 11:37:47 +00003870 if (valid != INFINITY_LIFE_TIME) {
3871 if (valid > tval)
3872 valid -= tval;
3873 else
3874 valid = 0;
3875 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003876 }
3877 } else {
Thomas Graf85486af2006-09-18 00:11:24 -07003878 preferred = INFINITY_LIFE_TIME;
3879 valid = INFINITY_LIFE_TIME;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003880 }
Thomas Graf85486af2006-09-18 00:11:24 -07003881
Cong Wang7996c792013-05-22 05:41:06 +00003882 if (!ipv6_addr_any(&ifa->peer_addr)) {
Nicolas Dichtelcaeaba72013-05-16 22:32:00 +00003883 if (nla_put(skb, IFA_LOCAL, 16, &ifa->addr) < 0 ||
3884 nla_put(skb, IFA_ADDRESS, 16, &ifa->peer_addr) < 0)
3885 goto error;
3886 } else
3887 if (nla_put(skb, IFA_ADDRESS, 16, &ifa->addr) < 0)
3888 goto error;
3889
3890 if (put_cacheinfo(skb, ifa->cstamp, ifa->tstamp, preferred, valid) < 0)
3891 goto error;
Thomas Graf85486af2006-09-18 00:11:24 -07003892
Thomas Graf0ab68032006-09-18 00:12:35 -07003893 return nlmsg_end(skb, nlh);
Nicolas Dichtelcaeaba72013-05-16 22:32:00 +00003894
3895error:
3896 nlmsg_cancel(skb, nlh);
3897 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003898}
3899
3900static int inet6_fill_ifmcaddr(struct sk_buff *skb, struct ifmcaddr6 *ifmca,
Eric W. Biederman15e47302012-09-07 20:12:54 +00003901 u32 portid, u32 seq, int event, u16 flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003902{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003903 struct nlmsghdr *nlh;
Thomas Graf101bb222006-09-18 00:11:52 -07003904 u8 scope = RT_SCOPE_UNIVERSE;
3905 int ifindex = ifmca->idev->dev->ifindex;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003906
Thomas Graf101bb222006-09-18 00:11:52 -07003907 if (ipv6_addr_scope(&ifmca->mca_addr) & IFA_SITE)
3908 scope = RT_SCOPE_SITE;
3909
Eric W. Biederman15e47302012-09-07 20:12:54 +00003910 nlh = nlmsg_put(skb, portid, seq, event, sizeof(struct ifaddrmsg), flags);
Thomas Graf0ab68032006-09-18 00:12:35 -07003911 if (nlh == NULL)
Patrick McHardy26932562007-01-31 23:16:40 -08003912 return -EMSGSIZE;
Thomas Graf0ab68032006-09-18 00:12:35 -07003913
Thomas Graf101bb222006-09-18 00:11:52 -07003914 put_ifaddrmsg(nlh, 128, IFA_F_PERMANENT, scope, ifindex);
Thomas Graf0ab68032006-09-18 00:12:35 -07003915 if (nla_put(skb, IFA_MULTICAST, 16, &ifmca->mca_addr) < 0 ||
3916 put_cacheinfo(skb, ifmca->mca_cstamp, ifmca->mca_tstamp,
Patrick McHardy26932562007-01-31 23:16:40 -08003917 INFINITY_LIFE_TIME, INFINITY_LIFE_TIME) < 0) {
3918 nlmsg_cancel(skb, nlh);
3919 return -EMSGSIZE;
3920 }
Thomas Graf85486af2006-09-18 00:11:24 -07003921
Thomas Graf0ab68032006-09-18 00:12:35 -07003922 return nlmsg_end(skb, nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003923}
3924
3925static int inet6_fill_ifacaddr(struct sk_buff *skb, struct ifacaddr6 *ifaca,
Eric W. Biederman15e47302012-09-07 20:12:54 +00003926 u32 portid, u32 seq, int event, unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003927{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003928 struct nlmsghdr *nlh;
Thomas Graf101bb222006-09-18 00:11:52 -07003929 u8 scope = RT_SCOPE_UNIVERSE;
3930 int ifindex = ifaca->aca_idev->dev->ifindex;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003931
Thomas Graf101bb222006-09-18 00:11:52 -07003932 if (ipv6_addr_scope(&ifaca->aca_addr) & IFA_SITE)
3933 scope = RT_SCOPE_SITE;
3934
Eric W. Biederman15e47302012-09-07 20:12:54 +00003935 nlh = nlmsg_put(skb, portid, seq, event, sizeof(struct ifaddrmsg), flags);
Thomas Graf0ab68032006-09-18 00:12:35 -07003936 if (nlh == NULL)
Patrick McHardy26932562007-01-31 23:16:40 -08003937 return -EMSGSIZE;
Thomas Graf0ab68032006-09-18 00:12:35 -07003938
Thomas Graf101bb222006-09-18 00:11:52 -07003939 put_ifaddrmsg(nlh, 128, IFA_F_PERMANENT, scope, ifindex);
Thomas Graf0ab68032006-09-18 00:12:35 -07003940 if (nla_put(skb, IFA_ANYCAST, 16, &ifaca->aca_addr) < 0 ||
3941 put_cacheinfo(skb, ifaca->aca_cstamp, ifaca->aca_tstamp,
Patrick McHardy26932562007-01-31 23:16:40 -08003942 INFINITY_LIFE_TIME, INFINITY_LIFE_TIME) < 0) {
3943 nlmsg_cancel(skb, nlh);
3944 return -EMSGSIZE;
3945 }
Thomas Graf85486af2006-09-18 00:11:24 -07003946
Thomas Graf0ab68032006-09-18 00:12:35 -07003947 return nlmsg_end(skb, nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003948}
3949
Stephen Hemmingere21e8462010-03-20 16:09:01 -07003950enum addr_type_t {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003951 UNICAST_ADDR,
3952 MULTICAST_ADDR,
3953 ANYCAST_ADDR,
3954};
3955
Eric Dumazet234b27c2009-11-12 04:11:50 +00003956/* called with rcu_read_lock() */
3957static int in6_dump_addrs(struct inet6_dev *idev, struct sk_buff *skb,
3958 struct netlink_callback *cb, enum addr_type_t type,
3959 int s_ip_idx, int *p_ip_idx)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003960{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003961 struct ifmcaddr6 *ifmca;
3962 struct ifacaddr6 *ifaca;
Eric Dumazet234b27c2009-11-12 04:11:50 +00003963 int err = 1;
3964 int ip_idx = *p_ip_idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003965
Eric Dumazet234b27c2009-11-12 04:11:50 +00003966 read_lock_bh(&idev->lock);
3967 switch (type) {
stephen hemminger502a2ff2010-03-17 20:31:13 +00003968 case UNICAST_ADDR: {
3969 struct inet6_ifaddr *ifa;
3970
Eric Dumazet234b27c2009-11-12 04:11:50 +00003971 /* unicast address incl. temp addr */
stephen hemminger502a2ff2010-03-17 20:31:13 +00003972 list_for_each_entry(ifa, &idev->addr_list, if_list) {
3973 if (++ip_idx < s_ip_idx)
Eric Dumazet234b27c2009-11-12 04:11:50 +00003974 continue;
3975 err = inet6_fill_ifaddr(skb, ifa,
Eric W. Biederman15e47302012-09-07 20:12:54 +00003976 NETLINK_CB(cb->skb).portid,
Eric Dumazet234b27c2009-11-12 04:11:50 +00003977 cb->nlh->nlmsg_seq,
3978 RTM_NEWADDR,
3979 NLM_F_MULTI);
3980 if (err <= 0)
3981 break;
Nicolas Dichtel63998ac2013-03-22 06:28:43 +00003982 nl_dump_check_consistent(cb, nlmsg_hdr(skb));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003983 }
Eric Dumazet234b27c2009-11-12 04:11:50 +00003984 break;
stephen hemminger502a2ff2010-03-17 20:31:13 +00003985 }
Eric Dumazet234b27c2009-11-12 04:11:50 +00003986 case MULTICAST_ADDR:
3987 /* multicast address */
3988 for (ifmca = idev->mc_list; ifmca;
3989 ifmca = ifmca->next, ip_idx++) {
3990 if (ip_idx < s_ip_idx)
3991 continue;
3992 err = inet6_fill_ifmcaddr(skb, ifmca,
Eric W. Biederman15e47302012-09-07 20:12:54 +00003993 NETLINK_CB(cb->skb).portid,
Eric Dumazet234b27c2009-11-12 04:11:50 +00003994 cb->nlh->nlmsg_seq,
3995 RTM_GETMULTICAST,
3996 NLM_F_MULTI);
3997 if (err <= 0)
3998 break;
3999 }
4000 break;
4001 case ANYCAST_ADDR:
4002 /* anycast address */
4003 for (ifaca = idev->ac_list; ifaca;
4004 ifaca = ifaca->aca_next, ip_idx++) {
4005 if (ip_idx < s_ip_idx)
4006 continue;
4007 err = inet6_fill_ifacaddr(skb, ifaca,
Eric W. Biederman15e47302012-09-07 20:12:54 +00004008 NETLINK_CB(cb->skb).portid,
Eric Dumazet234b27c2009-11-12 04:11:50 +00004009 cb->nlh->nlmsg_seq,
4010 RTM_GETANYCAST,
4011 NLM_F_MULTI);
4012 if (err <= 0)
4013 break;
4014 }
4015 break;
4016 default:
4017 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004018 }
Eric Dumazet234b27c2009-11-12 04:11:50 +00004019 read_unlock_bh(&idev->lock);
4020 *p_ip_idx = ip_idx;
4021 return err;
4022}
4023
4024static int inet6_dump_addr(struct sk_buff *skb, struct netlink_callback *cb,
4025 enum addr_type_t type)
4026{
4027 struct net *net = sock_net(skb->sk);
4028 int h, s_h;
4029 int idx, ip_idx;
4030 int s_idx, s_ip_idx;
4031 struct net_device *dev;
4032 struct inet6_dev *idev;
4033 struct hlist_head *head;
Eric Dumazet234b27c2009-11-12 04:11:50 +00004034
4035 s_h = cb->args[0];
4036 s_idx = idx = cb->args[1];
4037 s_ip_idx = ip_idx = cb->args[2];
4038
4039 rcu_read_lock();
Nicolas Dichtel63998ac2013-03-22 06:28:43 +00004040 cb->seq = atomic_read(&net->ipv6.dev_addr_genid) ^ net->dev_base_seq;
Eric Dumazet234b27c2009-11-12 04:11:50 +00004041 for (h = s_h; h < NETDEV_HASHENTRIES; h++, s_idx = 0) {
4042 idx = 0;
4043 head = &net->dev_index_head[h];
Sasha Levinb67bfe02013-02-27 17:06:00 -08004044 hlist_for_each_entry_rcu(dev, head, index_hlist) {
Eric Dumazet234b27c2009-11-12 04:11:50 +00004045 if (idx < s_idx)
4046 goto cont;
Patrick McHardy4b97efd2010-03-26 20:27:49 -07004047 if (h > s_h || idx > s_idx)
Eric Dumazet234b27c2009-11-12 04:11:50 +00004048 s_ip_idx = 0;
4049 ip_idx = 0;
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004050 idev = __in6_dev_get(dev);
4051 if (!idev)
Eric Dumazet234b27c2009-11-12 04:11:50 +00004052 goto cont;
4053
4054 if (in6_dump_addrs(idev, skb, cb, type,
4055 s_ip_idx, &ip_idx) <= 0)
4056 goto done;
4057cont:
4058 idx++;
4059 }
4060 }
4061done:
4062 rcu_read_unlock();
4063 cb->args[0] = h;
4064 cb->args[1] = idx;
4065 cb->args[2] = ip_idx;
4066
Linus Torvalds1da177e2005-04-16 15:20:36 -07004067 return skb->len;
4068}
4069
4070static int inet6_dump_ifaddr(struct sk_buff *skb, struct netlink_callback *cb)
4071{
4072 enum addr_type_t type = UNICAST_ADDR;
Denis V. Lunevb8542722007-12-01 00:21:31 +11004073
Linus Torvalds1da177e2005-04-16 15:20:36 -07004074 return inet6_dump_addr(skb, cb, type);
4075}
4076
4077static int inet6_dump_ifmcaddr(struct sk_buff *skb, struct netlink_callback *cb)
4078{
4079 enum addr_type_t type = MULTICAST_ADDR;
Denis V. Lunevb8542722007-12-01 00:21:31 +11004080
Linus Torvalds1da177e2005-04-16 15:20:36 -07004081 return inet6_dump_addr(skb, cb, type);
4082}
4083
4084
4085static int inet6_dump_ifacaddr(struct sk_buff *skb, struct netlink_callback *cb)
4086{
4087 enum addr_type_t type = ANYCAST_ADDR;
Denis V. Lunevb8542722007-12-01 00:21:31 +11004088
Linus Torvalds1da177e2005-04-16 15:20:36 -07004089 return inet6_dump_addr(skb, cb, type);
4090}
4091
Thomas Graf661d2962013-03-21 07:45:29 +00004092static int inet6_rtm_getaddr(struct sk_buff *in_skb, struct nlmsghdr *nlh)
Noriaki TAKAMIYA6c223822006-07-28 18:12:12 +09004093{
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09004094 struct net *net = sock_net(in_skb->sk);
Thomas Graf1b29fc22006-09-18 00:10:50 -07004095 struct ifaddrmsg *ifm;
4096 struct nlattr *tb[IFA_MAX+1];
Nicolas Dichtelcaeaba72013-05-16 22:32:00 +00004097 struct in6_addr *addr = NULL, *peer;
Noriaki TAKAMIYA6c223822006-07-28 18:12:12 +09004098 struct net_device *dev = NULL;
4099 struct inet6_ifaddr *ifa;
4100 struct sk_buff *skb;
Noriaki TAKAMIYA6c223822006-07-28 18:12:12 +09004101 int err;
4102
Thomas Graf1b29fc22006-09-18 00:10:50 -07004103 err = nlmsg_parse(nlh, sizeof(*ifm), tb, IFA_MAX, ifa_ipv6_policy);
4104 if (err < 0)
4105 goto errout;
Noriaki TAKAMIYA6c223822006-07-28 18:12:12 +09004106
Nicolas Dichtelcaeaba72013-05-16 22:32:00 +00004107 addr = extract_addr(tb[IFA_ADDRESS], tb[IFA_LOCAL], &peer);
Thomas Graf1b29fc22006-09-18 00:10:50 -07004108 if (addr == NULL) {
4109 err = -EINVAL;
4110 goto errout;
4111 }
4112
4113 ifm = nlmsg_data(nlh);
Noriaki TAKAMIYA6c223822006-07-28 18:12:12 +09004114 if (ifm->ifa_index)
Benjamin Thery6fda7352008-03-05 10:47:47 -08004115 dev = __dev_get_by_index(net, ifm->ifa_index);
Noriaki TAKAMIYA6c223822006-07-28 18:12:12 +09004116
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004117 ifa = ipv6_get_ifaddr(net, addr, dev, 1);
4118 if (!ifa) {
Thomas Graf1b29fc22006-09-18 00:10:50 -07004119 err = -EADDRNOTAVAIL;
4120 goto errout;
Noriaki TAKAMIYA6c223822006-07-28 18:12:12 +09004121 }
4122
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004123 skb = nlmsg_new(inet6_ifaddr_msgsize(), GFP_KERNEL);
4124 if (!skb) {
Thomas Graf1b29fc22006-09-18 00:10:50 -07004125 err = -ENOBUFS;
4126 goto errout_ifa;
4127 }
4128
Eric W. Biederman15e47302012-09-07 20:12:54 +00004129 err = inet6_fill_ifaddr(skb, ifa, NETLINK_CB(in_skb).portid,
Noriaki TAKAMIYA6c223822006-07-28 18:12:12 +09004130 nlh->nlmsg_seq, RTM_NEWADDR, 0);
Patrick McHardy26932562007-01-31 23:16:40 -08004131 if (err < 0) {
4132 /* -EMSGSIZE implies BUG in inet6_ifaddr_msgsize() */
4133 WARN_ON(err == -EMSGSIZE);
4134 kfree_skb(skb);
4135 goto errout_ifa;
4136 }
Eric W. Biederman15e47302012-09-07 20:12:54 +00004137 err = rtnl_unicast(skb, net, NETLINK_CB(in_skb).portid);
Thomas Graf1b29fc22006-09-18 00:10:50 -07004138errout_ifa:
Noriaki TAKAMIYA6c223822006-07-28 18:12:12 +09004139 in6_ifa_put(ifa);
Thomas Graf1b29fc22006-09-18 00:10:50 -07004140errout:
Noriaki TAKAMIYA6c223822006-07-28 18:12:12 +09004141 return err;
Noriaki TAKAMIYA6c223822006-07-28 18:12:12 +09004142}
4143
Linus Torvalds1da177e2005-04-16 15:20:36 -07004144static void inet6_ifa_notify(int event, struct inet6_ifaddr *ifa)
4145{
4146 struct sk_buff *skb;
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09004147 struct net *net = dev_net(ifa->idev->dev);
Thomas Graf5d620262006-08-15 00:35:02 -07004148 int err = -ENOBUFS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004149
Thomas Graf0ab68032006-09-18 00:12:35 -07004150 skb = nlmsg_new(inet6_ifaddr_msgsize(), GFP_ATOMIC);
Thomas Graf5d620262006-08-15 00:35:02 -07004151 if (skb == NULL)
4152 goto errout;
4153
4154 err = inet6_fill_ifaddr(skb, ifa, 0, 0, event, 0);
Patrick McHardy26932562007-01-31 23:16:40 -08004155 if (err < 0) {
4156 /* -EMSGSIZE implies BUG in inet6_ifaddr_msgsize() */
4157 WARN_ON(err == -EMSGSIZE);
4158 kfree_skb(skb);
4159 goto errout;
4160 }
Pablo Neira Ayuso1ce85fe2009-02-24 23:18:28 -08004161 rtnl_notify(skb, net, 0, RTNLGRP_IPV6_IFADDR, NULL, GFP_ATOMIC);
4162 return;
Thomas Graf5d620262006-08-15 00:35:02 -07004163errout:
4164 if (err < 0)
Benjamin Thery6fda7352008-03-05 10:47:47 -08004165 rtnl_set_sk_err(net, RTNLGRP_IPV6_IFADDR, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004166}
4167
Dave Jonesb6f99a22007-03-22 12:27:49 -07004168static inline void ipv6_store_devconf(struct ipv6_devconf *cnf,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004169 __s32 *array, int bytes)
4170{
Thomas Graf04561c12006-11-14 19:53:58 -08004171 BUG_ON(bytes < (DEVCONF_MAX * 4));
4172
Linus Torvalds1da177e2005-04-16 15:20:36 -07004173 memset(array, 0, bytes);
4174 array[DEVCONF_FORWARDING] = cnf->forwarding;
4175 array[DEVCONF_HOPLIMIT] = cnf->hop_limit;
4176 array[DEVCONF_MTU6] = cnf->mtu6;
4177 array[DEVCONF_ACCEPT_RA] = cnf->accept_ra;
4178 array[DEVCONF_ACCEPT_REDIRECTS] = cnf->accept_redirects;
4179 array[DEVCONF_AUTOCONF] = cnf->autoconf;
4180 array[DEVCONF_DAD_TRANSMITS] = cnf->dad_transmits;
4181 array[DEVCONF_RTR_SOLICITS] = cnf->rtr_solicits;
Thomas Graf93908d12010-11-17 01:44:24 +00004182 array[DEVCONF_RTR_SOLICIT_INTERVAL] =
4183 jiffies_to_msecs(cnf->rtr_solicit_interval);
4184 array[DEVCONF_RTR_SOLICIT_DELAY] =
4185 jiffies_to_msecs(cnf->rtr_solicit_delay);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004186 array[DEVCONF_FORCE_MLD_VERSION] = cnf->force_mld_version;
Hannes Frederic Sowafc4eba52013-08-14 01:03:46 +02004187 array[DEVCONF_MLDV1_UNSOLICITED_REPORT_INTERVAL] =
4188 jiffies_to_msecs(cnf->mldv1_unsolicited_report_interval);
4189 array[DEVCONF_MLDV2_UNSOLICITED_REPORT_INTERVAL] =
4190 jiffies_to_msecs(cnf->mldv2_unsolicited_report_interval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004191#ifdef CONFIG_IPV6_PRIVACY
4192 array[DEVCONF_USE_TEMPADDR] = cnf->use_tempaddr;
4193 array[DEVCONF_TEMP_VALID_LFT] = cnf->temp_valid_lft;
4194 array[DEVCONF_TEMP_PREFERED_LFT] = cnf->temp_prefered_lft;
4195 array[DEVCONF_REGEN_MAX_RETRY] = cnf->regen_max_retry;
4196 array[DEVCONF_MAX_DESYNC_FACTOR] = cnf->max_desync_factor;
4197#endif
4198 array[DEVCONF_MAX_ADDRESSES] = cnf->max_addresses;
YOSHIFUJI Hideaki65f5c7c2006-03-20 16:55:08 -08004199 array[DEVCONF_ACCEPT_RA_DEFRTR] = cnf->accept_ra_defrtr;
YOSHIFUJI Hideakic4fd30e2006-03-20 16:55:26 -08004200 array[DEVCONF_ACCEPT_RA_PINFO] = cnf->accept_ra_pinfo;
YOSHIFUJI Hideaki930d6ff2006-03-20 17:05:30 -08004201#ifdef CONFIG_IPV6_ROUTER_PREF
4202 array[DEVCONF_ACCEPT_RA_RTR_PREF] = cnf->accept_ra_rtr_pref;
Thomas Graf93908d12010-11-17 01:44:24 +00004203 array[DEVCONF_RTR_PROBE_INTERVAL] =
4204 jiffies_to_msecs(cnf->rtr_probe_interval);
Neil Hormanfa03ef32007-01-30 14:30:10 -08004205#ifdef CONFIG_IPV6_ROUTE_INFO
YOSHIFUJI Hideaki09c884d2006-03-20 17:07:03 -08004206 array[DEVCONF_ACCEPT_RA_RT_INFO_MAX_PLEN] = cnf->accept_ra_rt_info_max_plen;
4207#endif
YOSHIFUJI Hideaki930d6ff2006-03-20 17:05:30 -08004208#endif
YOSHIFUJI Hideakifbea49e2006-09-22 14:43:49 -07004209 array[DEVCONF_PROXY_NDP] = cnf->proxy_ndp;
YOSHIFUJI Hideaki0bcbc922007-04-24 14:58:30 -07004210 array[DEVCONF_ACCEPT_SOURCE_ROUTE] = cnf->accept_source_route;
Neil Horman95c385b2007-04-25 17:08:10 -07004211#ifdef CONFIG_IPV6_OPTIMISTIC_DAD
4212 array[DEVCONF_OPTIMISTIC_DAD] = cnf->optimistic_dad;
4213#endif
YOSHIFUJI Hideaki7bc570c2008-04-03 09:22:53 +09004214#ifdef CONFIG_IPV6_MROUTE
4215 array[DEVCONF_MC_FORWARDING] = cnf->mc_forwarding;
4216#endif
YOSHIFUJI Hideaki778d80b2008-06-28 14:17:11 +09004217 array[DEVCONF_DISABLE_IPV6] = cnf->disable_ipv6;
YOSHIFUJI Hideaki1b34be72008-06-28 14:18:38 +09004218 array[DEVCONF_ACCEPT_DAD] = cnf->accept_dad;
Cosmin Ratiuc3faca02009-10-09 03:11:14 +00004219 array[DEVCONF_FORCE_TLLAO] = cnf->force_tllao;
Hannes Frederic Sowa5cb04432012-11-06 16:46:20 +00004220 array[DEVCONF_NDISC_NOTIFY] = cnf->ndisc_notify;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004221}
4222
Thomas Grafb382b192010-11-16 04:33:57 +00004223static inline size_t inet6_ifla6_size(void)
4224{
4225 return nla_total_size(4) /* IFLA_INET6_FLAGS */
4226 + nla_total_size(sizeof(struct ifla_cacheinfo))
4227 + nla_total_size(DEVCONF_MAX * 4) /* IFLA_INET6_CONF */
4228 + nla_total_size(IPSTATS_MIB_MAX * 8) /* IFLA_INET6_STATS */
Daniel Borkmannf53adae2013-04-08 04:01:30 +00004229 + nla_total_size(ICMP6_MIB_MAX * 8) /* IFLA_INET6_ICMP6STATS */
4230 + nla_total_size(sizeof(struct in6_addr)); /* IFLA_INET6_TOKEN */
Thomas Grafb382b192010-11-16 04:33:57 +00004231}
4232
Thomas Graf339bf982006-11-10 14:10:15 -08004233static inline size_t inet6_if_nlmsg_size(void)
4234{
4235 return NLMSG_ALIGN(sizeof(struct ifinfomsg))
4236 + nla_total_size(IFNAMSIZ) /* IFLA_IFNAME */
4237 + nla_total_size(MAX_ADDR_LEN) /* IFLA_ADDRESS */
4238 + nla_total_size(4) /* IFLA_MTU */
4239 + nla_total_size(4) /* IFLA_LINK */
Thomas Grafb382b192010-11-16 04:33:57 +00004240 + nla_total_size(inet6_ifla6_size()); /* IFLA_PROTINFO */
Thomas Graf339bf982006-11-10 14:10:15 -08004241}
YOSHIFUJI Hideakic5396a32006-06-17 22:48:48 -07004242
Eric Dumazetbe281e52011-05-19 01:14:23 +00004243static inline void __snmp6_fill_statsdev(u64 *stats, atomic_long_t *mib,
Tejun Heo7d720c32010-02-16 15:20:26 +00004244 int items, int bytes)
Herbert Xu7f7d9a62007-04-24 21:54:09 -07004245{
4246 int i;
4247 int pad = bytes - sizeof(u64) * items;
4248 BUG_ON(pad < 0);
4249
4250 /* Use put_unaligned() because stats may not be aligned for u64. */
4251 put_unaligned(items, &stats[0]);
4252 for (i = 1; i < items; i++)
Eric Dumazetbe281e52011-05-19 01:14:23 +00004253 put_unaligned(atomic_long_read(&mib[i]), &stats[i]);
Herbert Xu7f7d9a62007-04-24 21:54:09 -07004254
4255 memset(&stats[items], 0, pad);
4256}
4257
Eric Dumazet4ce3c182010-06-30 13:31:19 -07004258static inline void __snmp6_fill_stats64(u64 *stats, void __percpu **mib,
4259 int items, int bytes, size_t syncpoff)
4260{
4261 int i;
4262 int pad = bytes - sizeof(u64) * items;
4263 BUG_ON(pad < 0);
4264
4265 /* Use put_unaligned() because stats may not be aligned for u64. */
4266 put_unaligned(items, &stats[0]);
4267 for (i = 1; i < items; i++)
4268 put_unaligned(snmp_fold_field64(mib, i, syncpoff), &stats[i]);
4269
4270 memset(&stats[items], 0, pad);
4271}
4272
Herbert Xu7f7d9a62007-04-24 21:54:09 -07004273static void snmp6_fill_stats(u64 *stats, struct inet6_dev *idev, int attrtype,
4274 int bytes)
4275{
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004276 switch (attrtype) {
Herbert Xu7f7d9a62007-04-24 21:54:09 -07004277 case IFLA_INET6_STATS:
Eric Dumazet4ce3c182010-06-30 13:31:19 -07004278 __snmp6_fill_stats64(stats, (void __percpu **)idev->stats.ipv6,
4279 IPSTATS_MIB_MAX, bytes, offsetof(struct ipstats_mib, syncp));
Herbert Xu7f7d9a62007-04-24 21:54:09 -07004280 break;
4281 case IFLA_INET6_ICMP6STATS:
Eric Dumazetbe281e52011-05-19 01:14:23 +00004282 __snmp6_fill_statsdev(stats, idev->stats.icmpv6dev->mibs, ICMP6_MIB_MAX, bytes);
Herbert Xu7f7d9a62007-04-24 21:54:09 -07004283 break;
4284 }
4285}
4286
Thomas Grafb382b192010-11-16 04:33:57 +00004287static int inet6_fill_ifla6_attrs(struct sk_buff *skb, struct inet6_dev *idev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004288{
YOSHIFUJI Hideakibf99f1b2007-04-20 15:56:20 -07004289 struct nlattr *nla;
Thomas Graf04561c12006-11-14 19:53:58 -08004290 struct ifla_cacheinfo ci;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004291
David S. Millerc78679e2012-04-01 20:27:33 -04004292 if (nla_put_u32(skb, IFLA_INET6_FLAGS, idev->if_flags))
4293 goto nla_put_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004294 ci.max_reasm_len = IPV6_MAXPLEN;
David S. Miller24912422010-11-19 13:13:47 -08004295 ci.tstamp = cstamp_delta(idev->tstamp);
4296 ci.reachable_time = jiffies_to_msecs(idev->nd_parms->reachable_time);
4297 ci.retrans_time = jiffies_to_msecs(idev->nd_parms->retrans_time);
David S. Millerc78679e2012-04-01 20:27:33 -04004298 if (nla_put(skb, IFLA_INET6_CACHEINFO, sizeof(ci), &ci))
4299 goto nla_put_failure;
YOSHIFUJI Hideakibf99f1b2007-04-20 15:56:20 -07004300 nla = nla_reserve(skb, IFLA_INET6_CONF, DEVCONF_MAX * sizeof(s32));
4301 if (nla == NULL)
Thomas Graf04561c12006-11-14 19:53:58 -08004302 goto nla_put_failure;
YOSHIFUJI Hideakibf99f1b2007-04-20 15:56:20 -07004303 ipv6_store_devconf(&idev->cnf, nla_data(nla), nla_len(nla));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004304
YOSHIFUJI Hideakibf99f1b2007-04-20 15:56:20 -07004305 /* XXX - MC not implemented */
4306
4307 nla = nla_reserve(skb, IFLA_INET6_STATS, IPSTATS_MIB_MAX * sizeof(u64));
4308 if (nla == NULL)
4309 goto nla_put_failure;
4310 snmp6_fill_stats(nla_data(nla), idev, IFLA_INET6_STATS, nla_len(nla));
4311
4312 nla = nla_reserve(skb, IFLA_INET6_ICMP6STATS, ICMP6_MIB_MAX * sizeof(u64));
4313 if (nla == NULL)
4314 goto nla_put_failure;
4315 snmp6_fill_stats(nla_data(nla), idev, IFLA_INET6_ICMP6STATS, nla_len(nla));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004316
Daniel Borkmannf53adae2013-04-08 04:01:30 +00004317 nla = nla_reserve(skb, IFLA_INET6_TOKEN, sizeof(struct in6_addr));
4318 if (nla == NULL)
4319 goto nla_put_failure;
4320 read_lock_bh(&idev->lock);
4321 memcpy(nla_data(nla), idev->token.s6_addr, nla_len(nla));
4322 read_unlock_bh(&idev->lock);
4323
Thomas Grafb382b192010-11-16 04:33:57 +00004324 return 0;
4325
4326nla_put_failure:
4327 return -EMSGSIZE;
4328}
4329
4330static size_t inet6_get_link_af_size(const struct net_device *dev)
4331{
4332 if (!__in6_dev_get(dev))
4333 return 0;
4334
4335 return inet6_ifla6_size();
4336}
4337
4338static int inet6_fill_link_af(struct sk_buff *skb, const struct net_device *dev)
4339{
4340 struct inet6_dev *idev = __in6_dev_get(dev);
4341
4342 if (!idev)
4343 return -ENODATA;
4344
4345 if (inet6_fill_ifla6_attrs(skb, idev) < 0)
4346 return -EMSGSIZE;
4347
4348 return 0;
4349}
4350
Daniel Borkmannf53adae2013-04-08 04:01:30 +00004351static int inet6_set_iftoken(struct inet6_dev *idev, struct in6_addr *token)
4352{
Daniel Borkmannf53adae2013-04-08 04:01:30 +00004353 struct inet6_ifaddr *ifp;
4354 struct net_device *dev = idev->dev;
Daniel Borkmannfc403832013-04-09 03:47:15 +00004355 bool update_rs = false;
Hannes Frederic Sowadc848292013-06-24 21:42:40 +02004356 struct in6_addr ll_addr;
Daniel Borkmannf53adae2013-04-08 04:01:30 +00004357
4358 if (token == NULL)
4359 return -EINVAL;
4360 if (ipv6_addr_any(token))
4361 return -EINVAL;
4362 if (dev->flags & (IFF_LOOPBACK | IFF_NOARP))
4363 return -EINVAL;
Daniel Borkmannf53adae2013-04-08 04:01:30 +00004364 if (!ipv6_accept_ra(idev))
4365 return -EINVAL;
4366 if (idev->cnf.rtr_solicits <= 0)
4367 return -EINVAL;
4368
4369 write_lock_bh(&idev->lock);
4370
4371 BUILD_BUG_ON(sizeof(token->s6_addr) != 16);
4372 memcpy(idev->token.s6_addr + 8, token->s6_addr + 8, 8);
4373
4374 write_unlock_bh(&idev->lock);
4375
Hannes Frederic Sowadc848292013-06-24 21:42:40 +02004376 if (!idev->dead && (idev->if_flags & IF_READY) &&
4377 !ipv6_get_lladdr(dev, &ll_addr, IFA_F_TENTATIVE |
4378 IFA_F_OPTIMISTIC)) {
Daniel Borkmannfc403832013-04-09 03:47:15 +00004379
4380 /* If we're not ready, then normal ifup will take care
4381 * of this. Otherwise, we need to request our rs here.
4382 */
4383 ndisc_send_rs(dev, &ll_addr, &in6addr_linklocal_allrouters);
4384 update_rs = true;
4385 }
Daniel Borkmannf53adae2013-04-08 04:01:30 +00004386
4387 write_lock_bh(&idev->lock);
Daniel Borkmannfc403832013-04-09 03:47:15 +00004388
Hannes Frederic Sowa77ecaac2013-06-26 03:41:49 +02004389 if (update_rs) {
Daniel Borkmannfc403832013-04-09 03:47:15 +00004390 idev->if_flags |= IF_RS_SENT;
Hannes Frederic Sowa77ecaac2013-06-26 03:41:49 +02004391 idev->rs_probes = 1;
4392 addrconf_mod_rs_timer(idev, idev->cnf.rtr_solicit_interval);
4393 }
Daniel Borkmannf53adae2013-04-08 04:01:30 +00004394
4395 /* Well, that's kinda nasty ... */
4396 list_for_each_entry(ifp, &idev->addr_list, if_list) {
4397 spin_lock(&ifp->lock);
Daniel Borkmann617fe292013-04-09 03:47:16 +00004398 if (ifp->tokenized) {
Daniel Borkmannf53adae2013-04-08 04:01:30 +00004399 ifp->valid_lft = 0;
4400 ifp->prefered_lft = 0;
4401 }
4402 spin_unlock(&ifp->lock);
4403 }
4404
4405 write_unlock_bh(&idev->lock);
Hannes Frederic Sowa2b9651d2013-06-24 22:03:28 +02004406 addrconf_verify(0);
Daniel Borkmannf53adae2013-04-08 04:01:30 +00004407 return 0;
4408}
4409
4410static int inet6_set_link_af(struct net_device *dev, const struct nlattr *nla)
4411{
4412 int err = -EINVAL;
4413 struct inet6_dev *idev = __in6_dev_get(dev);
4414 struct nlattr *tb[IFLA_INET6_MAX + 1];
4415
4416 if (!idev)
4417 return -EAFNOSUPPORT;
4418
4419 if (nla_parse_nested(tb, IFLA_INET6_MAX, nla, NULL) < 0)
4420 BUG();
4421
4422 if (tb[IFLA_INET6_TOKEN])
4423 err = inet6_set_iftoken(idev, nla_data(tb[IFLA_INET6_TOKEN]));
4424
4425 return err;
4426}
4427
Thomas Grafb382b192010-11-16 04:33:57 +00004428static int inet6_fill_ifinfo(struct sk_buff *skb, struct inet6_dev *idev,
Eric W. Biederman15e47302012-09-07 20:12:54 +00004429 u32 portid, u32 seq, int event, unsigned int flags)
Thomas Grafb382b192010-11-16 04:33:57 +00004430{
4431 struct net_device *dev = idev->dev;
4432 struct ifinfomsg *hdr;
4433 struct nlmsghdr *nlh;
4434 void *protoinfo;
4435
Eric W. Biederman15e47302012-09-07 20:12:54 +00004436 nlh = nlmsg_put(skb, portid, seq, event, sizeof(*hdr), flags);
Thomas Grafb382b192010-11-16 04:33:57 +00004437 if (nlh == NULL)
4438 return -EMSGSIZE;
4439
4440 hdr = nlmsg_data(nlh);
4441 hdr->ifi_family = AF_INET6;
4442 hdr->__ifi_pad = 0;
4443 hdr->ifi_type = dev->type;
4444 hdr->ifi_index = dev->ifindex;
4445 hdr->ifi_flags = dev_get_flags(dev);
4446 hdr->ifi_change = 0;
4447
David S. Millerc78679e2012-04-01 20:27:33 -04004448 if (nla_put_string(skb, IFLA_IFNAME, dev->name) ||
4449 (dev->addr_len &&
4450 nla_put(skb, IFLA_ADDRESS, dev->addr_len, dev->dev_addr)) ||
4451 nla_put_u32(skb, IFLA_MTU, dev->mtu) ||
4452 (dev->ifindex != dev->iflink &&
4453 nla_put_u32(skb, IFLA_LINK, dev->iflink)))
4454 goto nla_put_failure;
Thomas Grafb382b192010-11-16 04:33:57 +00004455 protoinfo = nla_nest_start(skb, IFLA_PROTINFO);
4456 if (protoinfo == NULL)
4457 goto nla_put_failure;
4458
4459 if (inet6_fill_ifla6_attrs(skb, idev) < 0)
4460 goto nla_put_failure;
4461
Thomas Graf04561c12006-11-14 19:53:58 -08004462 nla_nest_end(skb, protoinfo);
4463 return nlmsg_end(skb, nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004464
Thomas Graf04561c12006-11-14 19:53:58 -08004465nla_put_failure:
Patrick McHardy26932562007-01-31 23:16:40 -08004466 nlmsg_cancel(skb, nlh);
4467 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004468}
4469
4470static int inet6_dump_ifinfo(struct sk_buff *skb, struct netlink_callback *cb)
4471{
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09004472 struct net *net = sock_net(skb->sk);
Eric Dumazet84d26972009-11-09 12:11:28 +00004473 int h, s_h;
David S. Miller434a8a52009-11-11 18:53:00 -08004474 int idx = 0, s_idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004475 struct net_device *dev;
4476 struct inet6_dev *idev;
Eric Dumazet84d26972009-11-09 12:11:28 +00004477 struct hlist_head *head;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004478
Eric Dumazet84d26972009-11-09 12:11:28 +00004479 s_h = cb->args[0];
4480 s_idx = cb->args[1];
4481
4482 rcu_read_lock();
4483 for (h = s_h; h < NETDEV_HASHENTRIES; h++, s_idx = 0) {
4484 idx = 0;
4485 head = &net->dev_index_head[h];
Sasha Levinb67bfe02013-02-27 17:06:00 -08004486 hlist_for_each_entry_rcu(dev, head, index_hlist) {
Eric Dumazet84d26972009-11-09 12:11:28 +00004487 if (idx < s_idx)
4488 goto cont;
4489 idev = __in6_dev_get(dev);
4490 if (!idev)
4491 goto cont;
4492 if (inet6_fill_ifinfo(skb, idev,
Eric W. Biederman15e47302012-09-07 20:12:54 +00004493 NETLINK_CB(cb->skb).portid,
Eric Dumazet84d26972009-11-09 12:11:28 +00004494 cb->nlh->nlmsg_seq,
4495 RTM_NEWLINK, NLM_F_MULTI) <= 0)
4496 goto out;
Pavel Emelianov7562f872007-05-03 15:13:45 -07004497cont:
Eric Dumazet84d26972009-11-09 12:11:28 +00004498 idx++;
4499 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004500 }
Eric Dumazet84d26972009-11-09 12:11:28 +00004501out:
4502 rcu_read_unlock();
4503 cb->args[1] = idx;
4504 cb->args[0] = h;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004505
4506 return skb->len;
4507}
4508
4509void inet6_ifinfo_notify(int event, struct inet6_dev *idev)
4510{
4511 struct sk_buff *skb;
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09004512 struct net *net = dev_net(idev->dev);
Thomas Graf8d7a76c2006-08-15 00:35:47 -07004513 int err = -ENOBUFS;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09004514
Thomas Graf339bf982006-11-10 14:10:15 -08004515 skb = nlmsg_new(inet6_if_nlmsg_size(), GFP_ATOMIC);
Thomas Graf8d7a76c2006-08-15 00:35:47 -07004516 if (skb == NULL)
4517 goto errout;
4518
4519 err = inet6_fill_ifinfo(skb, idev, 0, 0, event, 0);
Patrick McHardy26932562007-01-31 23:16:40 -08004520 if (err < 0) {
4521 /* -EMSGSIZE implies BUG in inet6_if_nlmsg_size() */
4522 WARN_ON(err == -EMSGSIZE);
4523 kfree_skb(skb);
4524 goto errout;
4525 }
Nicolas Dichtel5f75a102010-12-07 23:38:31 +00004526 rtnl_notify(skb, net, 0, RTNLGRP_IPV6_IFINFO, NULL, GFP_ATOMIC);
Pablo Neira Ayuso1ce85fe2009-02-24 23:18:28 -08004527 return;
Thomas Graf8d7a76c2006-08-15 00:35:47 -07004528errout:
4529 if (err < 0)
Nicolas Dichtel5f75a102010-12-07 23:38:31 +00004530 rtnl_set_sk_err(net, RTNLGRP_IPV6_IFINFO, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004531}
4532
Thomas Graf339bf982006-11-10 14:10:15 -08004533static inline size_t inet6_prefix_nlmsg_size(void)
4534{
4535 return NLMSG_ALIGN(sizeof(struct prefixmsg))
4536 + nla_total_size(sizeof(struct in6_addr))
4537 + nla_total_size(sizeof(struct prefix_cacheinfo));
4538}
YOSHIFUJI Hideakic5396a32006-06-17 22:48:48 -07004539
Linus Torvalds1da177e2005-04-16 15:20:36 -07004540static int inet6_fill_prefix(struct sk_buff *skb, struct inet6_dev *idev,
Eric W. Biederman15e47302012-09-07 20:12:54 +00004541 struct prefix_info *pinfo, u32 portid, u32 seq,
Thomas Graf6051e2f2006-11-14 19:54:19 -08004542 int event, unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004543{
Thomas Graf6051e2f2006-11-14 19:54:19 -08004544 struct prefixmsg *pmsg;
4545 struct nlmsghdr *nlh;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004546 struct prefix_cacheinfo ci;
4547
Eric W. Biederman15e47302012-09-07 20:12:54 +00004548 nlh = nlmsg_put(skb, portid, seq, event, sizeof(*pmsg), flags);
Thomas Graf6051e2f2006-11-14 19:54:19 -08004549 if (nlh == NULL)
Patrick McHardy26932562007-01-31 23:16:40 -08004550 return -EMSGSIZE;
Thomas Graf6051e2f2006-11-14 19:54:19 -08004551
4552 pmsg = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004553 pmsg->prefix_family = AF_INET6;
Patrick McHardy8a470772005-06-28 12:56:45 -07004554 pmsg->prefix_pad1 = 0;
4555 pmsg->prefix_pad2 = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004556 pmsg->prefix_ifindex = idev->dev->ifindex;
4557 pmsg->prefix_len = pinfo->prefix_len;
4558 pmsg->prefix_type = pinfo->type;
Patrick McHardy8a470772005-06-28 12:56:45 -07004559 pmsg->prefix_pad3 = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004560 pmsg->prefix_flags = 0;
4561 if (pinfo->onlink)
4562 pmsg->prefix_flags |= IF_PREFIX_ONLINK;
4563 if (pinfo->autoconf)
4564 pmsg->prefix_flags |= IF_PREFIX_AUTOCONF;
4565
David S. Millerc78679e2012-04-01 20:27:33 -04004566 if (nla_put(skb, PREFIX_ADDRESS, sizeof(pinfo->prefix), &pinfo->prefix))
4567 goto nla_put_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004568 ci.preferred_time = ntohl(pinfo->prefered);
4569 ci.valid_time = ntohl(pinfo->valid);
David S. Millerc78679e2012-04-01 20:27:33 -04004570 if (nla_put(skb, PREFIX_CACHEINFO, sizeof(ci), &ci))
4571 goto nla_put_failure;
Thomas Graf6051e2f2006-11-14 19:54:19 -08004572 return nlmsg_end(skb, nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004573
Thomas Graf6051e2f2006-11-14 19:54:19 -08004574nla_put_failure:
Patrick McHardy26932562007-01-31 23:16:40 -08004575 nlmsg_cancel(skb, nlh);
4576 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004577}
4578
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09004579static void inet6_prefix_notify(int event, struct inet6_dev *idev,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004580 struct prefix_info *pinfo)
4581{
4582 struct sk_buff *skb;
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09004583 struct net *net = dev_net(idev->dev);
Thomas Graf8c384bfa2006-08-15 00:36:07 -07004584 int err = -ENOBUFS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004585
Thomas Graf339bf982006-11-10 14:10:15 -08004586 skb = nlmsg_new(inet6_prefix_nlmsg_size(), GFP_ATOMIC);
Thomas Graf8c384bfa2006-08-15 00:36:07 -07004587 if (skb == NULL)
4588 goto errout;
4589
4590 err = inet6_fill_prefix(skb, idev, pinfo, 0, 0, event, 0);
Patrick McHardy26932562007-01-31 23:16:40 -08004591 if (err < 0) {
4592 /* -EMSGSIZE implies BUG in inet6_prefix_nlmsg_size() */
4593 WARN_ON(err == -EMSGSIZE);
4594 kfree_skb(skb);
4595 goto errout;
4596 }
Pablo Neira Ayuso1ce85fe2009-02-24 23:18:28 -08004597 rtnl_notify(skb, net, 0, RTNLGRP_IPV6_PREFIX, NULL, GFP_ATOMIC);
4598 return;
Thomas Graf8c384bfa2006-08-15 00:36:07 -07004599errout:
4600 if (err < 0)
Benjamin Thery6fda7352008-03-05 10:47:47 -08004601 rtnl_set_sk_err(net, RTNLGRP_IPV6_PREFIX, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004602}
4603
Hannes Frederic Sowa1ec047e2013-06-27 00:06:56 +02004604static void update_valid_ll_addr_cnt(struct inet6_ifaddr *ifp, int count)
4605{
4606 write_lock_bh(&ifp->idev->lock);
4607 spin_lock(&ifp->lock);
4608 if (((ifp->flags & (IFA_F_PERMANENT|IFA_F_TENTATIVE|IFA_F_OPTIMISTIC|
4609 IFA_F_DADFAILED)) == IFA_F_PERMANENT) &&
4610 (ipv6_addr_type(&ifp->addr) & IPV6_ADDR_LINKLOCAL))
4611 ifp->idev->valid_ll_addr_cnt += count;
4612 WARN_ON(ifp->idev->valid_ll_addr_cnt < 0);
4613 spin_unlock(&ifp->lock);
4614 write_unlock_bh(&ifp->idev->lock);
4615}
4616
Linus Torvalds1da177e2005-04-16 15:20:36 -07004617static void __ipv6_ifa_notify(int event, struct inet6_ifaddr *ifp)
4618{
Nicolas Dichtel63998ac2013-03-22 06:28:43 +00004619 struct net *net = dev_net(ifp->idev->dev);
4620
Linus Torvalds1da177e2005-04-16 15:20:36 -07004621 inet6_ifa_notify(event ? : RTM_NEWADDR, ifp);
4622
4623 switch (event) {
4624 case RTM_NEWADDR:
Hannes Frederic Sowa1ec047e2013-06-27 00:06:56 +02004625 update_valid_ll_addr_cnt(ifp, 1);
4626
Neil Horman95c385b2007-04-25 17:08:10 -07004627 /*
4628 * If the address was optimistic
4629 * we inserted the route at the start of
4630 * our DAD process, so we don't need
4631 * to do it again
4632 */
4633 if (!(ifp->rt->rt6i_node))
4634 ip6_ins_rt(ifp->rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004635 if (ifp->idev->cnf.forwarding)
4636 addrconf_join_anycast(ifp);
Cong Wang7996c792013-05-22 05:41:06 +00004637 if (!ipv6_addr_any(&ifp->peer_addr))
Nicolas Dichtelcaeaba72013-05-16 22:32:00 +00004638 addrconf_prefix_route(&ifp->peer_addr, 128,
4639 ifp->idev->dev, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004640 break;
4641 case RTM_DELADDR:
Hannes Frederic Sowa1ec047e2013-06-27 00:06:56 +02004642 update_valid_ll_addr_cnt(ifp, -1);
4643
Linus Torvalds1da177e2005-04-16 15:20:36 -07004644 if (ifp->idev->cnf.forwarding)
4645 addrconf_leave_anycast(ifp);
4646 addrconf_leave_solict(ifp->idev, &ifp->addr);
Cong Wang7996c792013-05-22 05:41:06 +00004647 if (!ipv6_addr_any(&ifp->peer_addr)) {
Nicolas Dichtelcaeaba72013-05-16 22:32:00 +00004648 struct rt6_info *rt;
4649 struct net_device *dev = ifp->idev->dev;
4650
4651 rt = rt6_lookup(dev_net(dev), &ifp->peer_addr, NULL,
4652 dev->ifindex, 1);
4653 if (rt) {
4654 dst_hold(&rt->dst);
4655 if (ip6_del_rt(rt))
4656 dst_free(&rt->dst);
4657 }
4658 }
Changli Gaod8d1f302010-06-10 23:31:35 -07004659 dst_hold(&ifp->rt->dst);
stephen hemminger93fa1592010-04-12 05:41:31 +00004660
David S. Miller73a8bd72011-01-23 23:27:15 -08004661 if (ip6_del_rt(ifp->rt))
Changli Gaod8d1f302010-06-10 23:31:35 -07004662 dst_free(&ifp->rt->dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004663 break;
4664 }
Nicolas Dichtel63998ac2013-03-22 06:28:43 +00004665 atomic_inc(&net->ipv6.dev_addr_genid);
fan.du439677d2013-08-01 17:44:44 +08004666 rt_genid_bump_ipv6(net);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004667}
4668
4669static void ipv6_ifa_notify(int event, struct inet6_ifaddr *ifp)
4670{
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -07004671 rcu_read_lock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004672 if (likely(ifp->idev->dead == 0))
4673 __ipv6_ifa_notify(event, ifp);
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -07004674 rcu_read_unlock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004675}
4676
4677#ifdef CONFIG_SYSCTL
4678
4679static
Joe Perchesfe2c6332013-06-11 23:04:25 -07004680int addrconf_sysctl_forward(struct ctl_table *ctl, int write,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004681 void __user *buffer, size_t *lenp, loff_t *ppos)
4682{
4683 int *valp = ctl->data;
4684 int val = *valp;
Eric W. Biederman88af1822010-02-19 13:22:59 +00004685 loff_t pos = *ppos;
Joe Perchesfe2c6332013-06-11 23:04:25 -07004686 struct ctl_table lctl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004687 int ret;
4688
Francesco Ruggeri013d97e2012-01-16 10:40:10 +00004689 /*
4690 * ctl->data points to idev->cnf.forwarding, we should
4691 * not modify it until we get the rtnl lock.
4692 */
4693 lctl = *ctl;
4694 lctl.data = &val;
4695
4696 ret = proc_dointvec(&lctl, write, buffer, lenp, ppos);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004697
Pavel Emelyanovc8fecf22007-12-05 01:50:24 -08004698 if (write)
Stephen Hemmingerb325fdd2009-02-26 06:55:31 +00004699 ret = addrconf_fixup_forwarding(ctl, valp, val);
Eric W. Biederman88af1822010-02-19 13:22:59 +00004700 if (ret)
4701 *ppos = pos;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09004702 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004703}
4704
Brian Haley56d417b2009-06-01 03:07:33 -07004705static void dev_disable_change(struct inet6_dev *idev)
4706{
Cong Wang75538c22013-05-29 11:30:50 +08004707 struct netdev_notifier_info info;
4708
Brian Haley56d417b2009-06-01 03:07:33 -07004709 if (!idev || !idev->dev)
4710 return;
4711
Cong Wang75538c22013-05-29 11:30:50 +08004712 netdev_notifier_info_init(&info, idev->dev);
Brian Haley56d417b2009-06-01 03:07:33 -07004713 if (idev->cnf.disable_ipv6)
Cong Wang75538c22013-05-29 11:30:50 +08004714 addrconf_notify(NULL, NETDEV_DOWN, &info);
Brian Haley56d417b2009-06-01 03:07:33 -07004715 else
Cong Wang75538c22013-05-29 11:30:50 +08004716 addrconf_notify(NULL, NETDEV_UP, &info);
Brian Haley56d417b2009-06-01 03:07:33 -07004717}
4718
4719static void addrconf_disable_change(struct net *net, __s32 newf)
4720{
4721 struct net_device *dev;
4722 struct inet6_dev *idev;
4723
Eric Dumazetc6d14c82009-11-04 05:43:23 -08004724 rcu_read_lock();
4725 for_each_netdev_rcu(net, dev) {
Brian Haley56d417b2009-06-01 03:07:33 -07004726 idev = __in6_dev_get(dev);
4727 if (idev) {
4728 int changed = (!idev->cnf.disable_ipv6) ^ (!newf);
4729 idev->cnf.disable_ipv6 = newf;
4730 if (changed)
4731 dev_disable_change(idev);
4732 }
Brian Haley56d417b2009-06-01 03:07:33 -07004733 }
Eric Dumazetc6d14c82009-11-04 05:43:23 -08004734 rcu_read_unlock();
Brian Haley56d417b2009-06-01 03:07:33 -07004735}
4736
Francesco Ruggeri013d97e2012-01-16 10:40:10 +00004737static int addrconf_disable_ipv6(struct ctl_table *table, int *p, int newf)
Brian Haley56d417b2009-06-01 03:07:33 -07004738{
4739 struct net *net;
Francesco Ruggeri013d97e2012-01-16 10:40:10 +00004740 int old;
4741
4742 if (!rtnl_trylock())
4743 return restart_syscall();
Brian Haley56d417b2009-06-01 03:07:33 -07004744
4745 net = (struct net *)table->extra2;
Francesco Ruggeri013d97e2012-01-16 10:40:10 +00004746 old = *p;
4747 *p = newf;
Brian Haley56d417b2009-06-01 03:07:33 -07004748
Francesco Ruggeri013d97e2012-01-16 10:40:10 +00004749 if (p == &net->ipv6.devconf_dflt->disable_ipv6) {
4750 rtnl_unlock();
Brian Haley56d417b2009-06-01 03:07:33 -07004751 return 0;
Eric W. Biederman88af1822010-02-19 13:22:59 +00004752 }
Brian Haley56d417b2009-06-01 03:07:33 -07004753
4754 if (p == &net->ipv6.devconf_all->disable_ipv6) {
Brian Haley56d417b2009-06-01 03:07:33 -07004755 net->ipv6.devconf_dflt->disable_ipv6 = newf;
4756 addrconf_disable_change(net, newf);
Francesco Ruggeri013d97e2012-01-16 10:40:10 +00004757 } else if ((!newf) ^ (!old))
Brian Haley56d417b2009-06-01 03:07:33 -07004758 dev_disable_change((struct inet6_dev *)table->extra1);
4759
4760 rtnl_unlock();
4761 return 0;
4762}
4763
4764static
Joe Perchesfe2c6332013-06-11 23:04:25 -07004765int addrconf_sysctl_disable(struct ctl_table *ctl, int write,
Brian Haley56d417b2009-06-01 03:07:33 -07004766 void __user *buffer, size_t *lenp, loff_t *ppos)
4767{
4768 int *valp = ctl->data;
4769 int val = *valp;
Eric W. Biederman88af1822010-02-19 13:22:59 +00004770 loff_t pos = *ppos;
Joe Perchesfe2c6332013-06-11 23:04:25 -07004771 struct ctl_table lctl;
Brian Haley56d417b2009-06-01 03:07:33 -07004772 int ret;
4773
Francesco Ruggeri013d97e2012-01-16 10:40:10 +00004774 /*
4775 * ctl->data points to idev->cnf.disable_ipv6, we should
4776 * not modify it until we get the rtnl lock.
4777 */
4778 lctl = *ctl;
4779 lctl.data = &val;
4780
4781 ret = proc_dointvec(&lctl, write, buffer, lenp, ppos);
Brian Haley56d417b2009-06-01 03:07:33 -07004782
4783 if (write)
4784 ret = addrconf_disable_ipv6(ctl, valp, val);
Eric W. Biederman88af1822010-02-19 13:22:59 +00004785 if (ret)
4786 *ppos = pos;
Brian Haley56d417b2009-06-01 03:07:33 -07004787 return ret;
4788}
4789
Linus Torvalds1da177e2005-04-16 15:20:36 -07004790static struct addrconf_sysctl_table
4791{
4792 struct ctl_table_header *sysctl_header;
Joe Perchesfe2c6332013-06-11 23:04:25 -07004793 struct ctl_table addrconf_vars[DEVCONF_MAX+1];
Brian Haleyab32ea52006-09-22 14:15:41 -07004794} addrconf_sysctl __read_mostly = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004795 .sysctl_header = NULL,
4796 .addrconf_vars = {
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09004797 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004798 .procname = "forwarding",
4799 .data = &ipv6_devconf.forwarding,
4800 .maxlen = sizeof(int),
4801 .mode = 0644,
4802 .proc_handler = addrconf_sysctl_forward,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004803 },
4804 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004805 .procname = "hop_limit",
4806 .data = &ipv6_devconf.hop_limit,
4807 .maxlen = sizeof(int),
4808 .mode = 0644,
4809 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004810 },
4811 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004812 .procname = "mtu",
4813 .data = &ipv6_devconf.mtu6,
4814 .maxlen = sizeof(int),
4815 .mode = 0644,
4816 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004817 },
4818 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004819 .procname = "accept_ra",
4820 .data = &ipv6_devconf.accept_ra,
4821 .maxlen = sizeof(int),
4822 .mode = 0644,
4823 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004824 },
4825 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004826 .procname = "accept_redirects",
4827 .data = &ipv6_devconf.accept_redirects,
4828 .maxlen = sizeof(int),
4829 .mode = 0644,
4830 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004831 },
4832 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004833 .procname = "autoconf",
4834 .data = &ipv6_devconf.autoconf,
4835 .maxlen = sizeof(int),
4836 .mode = 0644,
4837 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004838 },
4839 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004840 .procname = "dad_transmits",
4841 .data = &ipv6_devconf.dad_transmits,
4842 .maxlen = sizeof(int),
4843 .mode = 0644,
4844 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004845 },
4846 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004847 .procname = "router_solicitations",
4848 .data = &ipv6_devconf.rtr_solicits,
4849 .maxlen = sizeof(int),
4850 .mode = 0644,
4851 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004852 },
4853 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004854 .procname = "router_solicitation_interval",
4855 .data = &ipv6_devconf.rtr_solicit_interval,
4856 .maxlen = sizeof(int),
4857 .mode = 0644,
4858 .proc_handler = proc_dointvec_jiffies,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004859 },
4860 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004861 .procname = "router_solicitation_delay",
4862 .data = &ipv6_devconf.rtr_solicit_delay,
4863 .maxlen = sizeof(int),
4864 .mode = 0644,
4865 .proc_handler = proc_dointvec_jiffies,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004866 },
4867 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004868 .procname = "force_mld_version",
4869 .data = &ipv6_devconf.force_mld_version,
4870 .maxlen = sizeof(int),
4871 .mode = 0644,
4872 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004873 },
Hannes Frederic Sowafc4eba52013-08-14 01:03:46 +02004874 {
4875 .procname = "mldv1_unsolicited_report_interval",
4876 .data =
4877 &ipv6_devconf.mldv1_unsolicited_report_interval,
4878 .maxlen = sizeof(int),
4879 .mode = 0644,
4880 .proc_handler = proc_dointvec_ms_jiffies,
4881 },
4882 {
4883 .procname = "mldv2_unsolicited_report_interval",
4884 .data =
4885 &ipv6_devconf.mldv2_unsolicited_report_interval,
4886 .maxlen = sizeof(int),
4887 .mode = 0644,
4888 .proc_handler = proc_dointvec_ms_jiffies,
4889 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07004890#ifdef CONFIG_IPV6_PRIVACY
4891 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004892 .procname = "use_tempaddr",
4893 .data = &ipv6_devconf.use_tempaddr,
4894 .maxlen = sizeof(int),
4895 .mode = 0644,
4896 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004897 },
4898 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004899 .procname = "temp_valid_lft",
4900 .data = &ipv6_devconf.temp_valid_lft,
4901 .maxlen = sizeof(int),
4902 .mode = 0644,
4903 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004904 },
4905 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004906 .procname = "temp_prefered_lft",
4907 .data = &ipv6_devconf.temp_prefered_lft,
4908 .maxlen = sizeof(int),
4909 .mode = 0644,
4910 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004911 },
4912 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004913 .procname = "regen_max_retry",
4914 .data = &ipv6_devconf.regen_max_retry,
4915 .maxlen = sizeof(int),
4916 .mode = 0644,
4917 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004918 },
4919 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004920 .procname = "max_desync_factor",
4921 .data = &ipv6_devconf.max_desync_factor,
4922 .maxlen = sizeof(int),
4923 .mode = 0644,
4924 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004925 },
4926#endif
4927 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004928 .procname = "max_addresses",
4929 .data = &ipv6_devconf.max_addresses,
4930 .maxlen = sizeof(int),
4931 .mode = 0644,
4932 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004933 },
4934 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004935 .procname = "accept_ra_defrtr",
4936 .data = &ipv6_devconf.accept_ra_defrtr,
4937 .maxlen = sizeof(int),
4938 .mode = 0644,
4939 .proc_handler = proc_dointvec,
YOSHIFUJI Hideaki65f5c7c2006-03-20 16:55:08 -08004940 },
4941 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004942 .procname = "accept_ra_pinfo",
4943 .data = &ipv6_devconf.accept_ra_pinfo,
4944 .maxlen = sizeof(int),
4945 .mode = 0644,
4946 .proc_handler = proc_dointvec,
YOSHIFUJI Hideakic4fd30e2006-03-20 16:55:26 -08004947 },
YOSHIFUJI Hideaki930d6ff2006-03-20 17:05:30 -08004948#ifdef CONFIG_IPV6_ROUTER_PREF
4949 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004950 .procname = "accept_ra_rtr_pref",
4951 .data = &ipv6_devconf.accept_ra_rtr_pref,
4952 .maxlen = sizeof(int),
4953 .mode = 0644,
4954 .proc_handler = proc_dointvec,
YOSHIFUJI Hideaki930d6ff2006-03-20 17:05:30 -08004955 },
YOSHIFUJI Hideaki52e163562006-03-20 17:05:47 -08004956 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004957 .procname = "router_probe_interval",
4958 .data = &ipv6_devconf.rtr_probe_interval,
4959 .maxlen = sizeof(int),
4960 .mode = 0644,
4961 .proc_handler = proc_dointvec_jiffies,
YOSHIFUJI Hideaki52e163562006-03-20 17:05:47 -08004962 },
Neil Hormanfa03ef32007-01-30 14:30:10 -08004963#ifdef CONFIG_IPV6_ROUTE_INFO
YOSHIFUJI Hideaki09c884d2006-03-20 17:07:03 -08004964 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004965 .procname = "accept_ra_rt_info_max_plen",
4966 .data = &ipv6_devconf.accept_ra_rt_info_max_plen,
4967 .maxlen = sizeof(int),
4968 .mode = 0644,
4969 .proc_handler = proc_dointvec,
YOSHIFUJI Hideaki09c884d2006-03-20 17:07:03 -08004970 },
4971#endif
YOSHIFUJI Hideaki930d6ff2006-03-20 17:05:30 -08004972#endif
YOSHIFUJI Hideakic4fd30e2006-03-20 16:55:26 -08004973 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004974 .procname = "proxy_ndp",
4975 .data = &ipv6_devconf.proxy_ndp,
4976 .maxlen = sizeof(int),
4977 .mode = 0644,
4978 .proc_handler = proc_dointvec,
YOSHIFUJI Hideakifbea49e2006-09-22 14:43:49 -07004979 },
4980 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004981 .procname = "accept_source_route",
4982 .data = &ipv6_devconf.accept_source_route,
4983 .maxlen = sizeof(int),
4984 .mode = 0644,
4985 .proc_handler = proc_dointvec,
YOSHIFUJI Hideaki0bcbc922007-04-24 14:58:30 -07004986 },
Neil Horman95c385b2007-04-25 17:08:10 -07004987#ifdef CONFIG_IPV6_OPTIMISTIC_DAD
4988 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004989 .procname = "optimistic_dad",
4990 .data = &ipv6_devconf.optimistic_dad,
4991 .maxlen = sizeof(int),
4992 .mode = 0644,
4993 .proc_handler = proc_dointvec,
Neil Horman95c385b2007-04-25 17:08:10 -07004994
4995 },
4996#endif
YOSHIFUJI Hideaki7bc570c2008-04-03 09:22:53 +09004997#ifdef CONFIG_IPV6_MROUTE
4998 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004999 .procname = "mc_forwarding",
5000 .data = &ipv6_devconf.mc_forwarding,
5001 .maxlen = sizeof(int),
5002 .mode = 0444,
5003 .proc_handler = proc_dointvec,
YOSHIFUJI Hideaki7bc570c2008-04-03 09:22:53 +09005004 },
5005#endif
YOSHIFUJI Hideaki0bcbc922007-04-24 14:58:30 -07005006 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07005007 .procname = "disable_ipv6",
5008 .data = &ipv6_devconf.disable_ipv6,
5009 .maxlen = sizeof(int),
5010 .mode = 0644,
5011 .proc_handler = addrconf_sysctl_disable,
YOSHIFUJI Hideaki778d80b2008-06-28 14:17:11 +09005012 },
5013 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07005014 .procname = "accept_dad",
5015 .data = &ipv6_devconf.accept_dad,
5016 .maxlen = sizeof(int),
5017 .mode = 0644,
5018 .proc_handler = proc_dointvec,
YOSHIFUJI Hideaki1b34be72008-06-28 14:18:38 +09005019 },
5020 {
Octavian Purdilaf7734fd2009-10-02 11:39:15 +00005021 .procname = "force_tllao",
5022 .data = &ipv6_devconf.force_tllao,
5023 .maxlen = sizeof(int),
5024 .mode = 0644,
5025 .proc_handler = proc_dointvec
5026 },
5027 {
Hannes Frederic Sowa5cb04432012-11-06 16:46:20 +00005028 .procname = "ndisc_notify",
5029 .data = &ipv6_devconf.ndisc_notify,
5030 .maxlen = sizeof(int),
5031 .mode = 0644,
5032 .proc_handler = proc_dointvec
5033 },
5034 {
Eric W. Biedermanf8572d82009-11-05 13:32:03 -08005035 /* sentinel */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005036 }
5037 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07005038};
5039
Pavel Emelyanovbff16c22008-01-10 17:42:13 -08005040static int __addrconf_sysctl_register(struct net *net, char *dev_name,
Eric W. Biedermanf8572d82009-11-05 13:32:03 -08005041 struct inet6_dev *idev, struct ipv6_devconf *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005042{
5043 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005044 struct addrconf_sysctl_table *t;
Eric W. Biederman6105e292012-04-19 13:41:24 +00005045 char path[sizeof("net/ipv6/conf/") + IFNAMSIZ];
Pavel Emelyanov1dab6222007-12-02 00:59:38 +11005046
Arnaldo Carvalho de Meloaf879cc2006-11-17 12:14:37 -02005047 t = kmemdup(&addrconf_sysctl, sizeof(*t), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005048 if (t == NULL)
Pavel Emelyanovf68635e2007-12-02 00:21:52 +11005049 goto out;
5050
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07005051 for (i = 0; t->addrconf_vars[i].data; i++) {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07005052 t->addrconf_vars[i].data += (char *)p - (char *)&ipv6_devconf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005053 t->addrconf_vars[i].extra1 = idev; /* embedded; no ref */
Pavel Emelyanovbff16c22008-01-10 17:42:13 -08005054 t->addrconf_vars[i].extra2 = net;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005055 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005056
Eric W. Biederman6105e292012-04-19 13:41:24 +00005057 snprintf(path, sizeof(path), "net/ipv6/conf/%s", dev_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005058
Eric W. Biederman6105e292012-04-19 13:41:24 +00005059 t->sysctl_header = register_net_sysctl(net, path, t->addrconf_vars);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005060 if (t->sysctl_header == NULL)
Eric W. Biederman6105e292012-04-19 13:41:24 +00005061 goto free;
Pavel Emelyanovf68635e2007-12-02 00:21:52 +11005062
5063 p->sysctl = t;
Pavel Emelyanov95897312008-01-10 17:41:45 -08005064 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005065
Pavel Emelyanovf68635e2007-12-02 00:21:52 +11005066free:
Linus Torvalds1da177e2005-04-16 15:20:36 -07005067 kfree(t);
Pavel Emelyanovf68635e2007-12-02 00:21:52 +11005068out:
Pavel Emelyanov95897312008-01-10 17:41:45 -08005069 return -ENOBUFS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005070}
5071
Pavel Emelyanov408c4762008-01-10 17:41:21 -08005072static void __addrconf_sysctl_unregister(struct ipv6_devconf *p)
5073{
5074 struct addrconf_sysctl_table *t;
5075
5076 if (p->sysctl == NULL)
5077 return;
5078
5079 t = p->sysctl;
5080 p->sysctl = NULL;
Lucian Adrian Grijincuff538812011-05-01 01:44:01 +00005081 unregister_net_sysctl_table(t->sysctl_header);
Pavel Emelyanov408c4762008-01-10 17:41:21 -08005082 kfree(t);
5083}
5084
Pavel Emelyanovf52295a2007-12-02 00:58:37 +11005085static void addrconf_sysctl_register(struct inet6_dev *idev)
5086{
Eric W. Biederman54716e32010-02-14 03:27:03 +00005087 neigh_sysctl_register(idev->dev, idev->nd_parms, "ipv6",
Eric W. Biedermanf8572d82009-11-05 13:32:03 -08005088 &ndisc_ifinfo_sysctl_change);
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09005089 __addrconf_sysctl_register(dev_net(idev->dev), idev->dev->name,
Eric W. Biedermanf8572d82009-11-05 13:32:03 -08005090 idev, &idev->cnf);
Pavel Emelyanovf52295a2007-12-02 00:58:37 +11005091}
5092
Pavel Emelyanov408c4762008-01-10 17:41:21 -08005093static void addrconf_sysctl_unregister(struct inet6_dev *idev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005094{
Pavel Emelyanov408c4762008-01-10 17:41:21 -08005095 __addrconf_sysctl_unregister(&idev->cnf);
5096 neigh_sysctl_unregister(idev->nd_parms);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005097}
5098
5099
5100#endif
5101
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00005102static int __net_init addrconf_init_net(struct net *net)
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08005103{
Hong Zhiguoa79ca222013-03-26 01:52:45 +08005104 int err = -ENOMEM;
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08005105 struct ipv6_devconf *all, *dflt;
5106
Hong Zhiguoa79ca222013-03-26 01:52:45 +08005107 all = kmemdup(&ipv6_devconf, sizeof(ipv6_devconf), GFP_KERNEL);
5108 if (all == NULL)
5109 goto err_alloc_all;
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08005110
Hong Zhiguoa79ca222013-03-26 01:52:45 +08005111 dflt = kmemdup(&ipv6_devconf_dflt, sizeof(ipv6_devconf_dflt), GFP_KERNEL);
5112 if (dflt == NULL)
5113 goto err_alloc_dflt;
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08005114
Hong Zhiguoa79ca222013-03-26 01:52:45 +08005115 /* these will be inherited by all namespaces */
5116 dflt->autoconf = ipv6_defaults.autoconf;
5117 dflt->disable_ipv6 = ipv6_defaults.disable_ipv6;
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08005118
5119 net->ipv6.devconf_all = all;
5120 net->ipv6.devconf_dflt = dflt;
5121
5122#ifdef CONFIG_SYSCTL
Eric W. Biedermanf8572d82009-11-05 13:32:03 -08005123 err = __addrconf_sysctl_register(net, "all", NULL, all);
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08005124 if (err < 0)
5125 goto err_reg_all;
5126
Eric W. Biedermanf8572d82009-11-05 13:32:03 -08005127 err = __addrconf_sysctl_register(net, "default", NULL, dflt);
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08005128 if (err < 0)
5129 goto err_reg_dflt;
5130#endif
5131 return 0;
5132
5133#ifdef CONFIG_SYSCTL
5134err_reg_dflt:
5135 __addrconf_sysctl_unregister(all);
5136err_reg_all:
5137 kfree(dflt);
5138#endif
5139err_alloc_dflt:
5140 kfree(all);
5141err_alloc_all:
5142 return err;
5143}
5144
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00005145static void __net_exit addrconf_exit_net(struct net *net)
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08005146{
5147#ifdef CONFIG_SYSCTL
5148 __addrconf_sysctl_unregister(net->ipv6.devconf_dflt);
5149 __addrconf_sysctl_unregister(net->ipv6.devconf_all);
5150#endif
Octavian Purdila09ad9bc2009-11-25 15:14:13 -08005151 if (!net_eq(net, &init_net)) {
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08005152 kfree(net->ipv6.devconf_dflt);
5153 kfree(net->ipv6.devconf_all);
5154 }
5155}
5156
5157static struct pernet_operations addrconf_ops = {
5158 .init = addrconf_init_net,
5159 .exit = addrconf_exit_net,
5160};
5161
Thomas Grafb382b192010-11-16 04:33:57 +00005162static struct rtnl_af_ops inet6_ops = {
5163 .family = AF_INET6,
5164 .fill_link_af = inet6_fill_link_af,
5165 .get_link_af_size = inet6_get_link_af_size,
Daniel Borkmannf53adae2013-04-08 04:01:30 +00005166 .set_link_af = inet6_set_link_af,
Thomas Grafb382b192010-11-16 04:33:57 +00005167};
5168
Linus Torvalds1da177e2005-04-16 15:20:36 -07005169/*
5170 * Init / cleanup code
5171 */
5172
5173int __init addrconf_init(void)
5174{
stephen hemmingerc2e21292010-03-17 20:31:10 +00005175 int i, err;
YOSHIFUJI Hideaki2a8cc6c2007-11-14 15:56:23 +09005176
Stephen Hemmingere21e8462010-03-20 16:09:01 -07005177 err = ipv6_addr_label_init();
5178 if (err < 0) {
Joe Perchesf3213832012-05-15 14:11:53 +00005179 pr_crit("%s: cannot initialize default policy table: %d\n",
5180 __func__, err);
Neil Horman2cc6d2b2010-09-24 09:55:52 +00005181 goto out;
YOSHIFUJI Hideaki2a8cc6c2007-11-14 15:56:23 +09005182 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005183
Neil Horman2cc6d2b2010-09-24 09:55:52 +00005184 err = register_pernet_subsys(&addrconf_ops);
5185 if (err < 0)
5186 goto out_addrlabel;
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08005187
Linus Torvalds1da177e2005-04-16 15:20:36 -07005188 /* The addrconf netdev notifier requires that loopback_dev
5189 * has it's ipv6 private information allocated and setup
5190 * before it can bring up and give link-local addresses
5191 * to other devices which are up.
5192 *
5193 * Unfortunately, loopback_dev is not necessarily the first
5194 * entry in the global dev_base list of net devices. In fact,
5195 * it is likely to be the very last entry on that list.
5196 * So this causes the notifier registry below to try and
5197 * give link-local addresses to all devices besides loopback_dev
5198 * first, then loopback_dev, which cases all the non-loopback_dev
5199 * devices to fail to get a link-local address.
5200 *
5201 * So, as a temporary fix, allocate the ipv6 structure for
5202 * loopback_dev first by hand.
5203 * Longer term, all of the dependencies ipv6 has upon the loopback
5204 * device and it being up should be removed.
5205 */
5206 rtnl_lock();
Eric W. Biederman2774c7a2007-09-26 22:10:56 -07005207 if (!ipv6_add_dev(init_net.loopback_dev))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005208 err = -ENOMEM;
5209 rtnl_unlock();
5210 if (err)
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08005211 goto errlo;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005212
stephen hemmingerc2e21292010-03-17 20:31:10 +00005213 for (i = 0; i < IN6_ADDR_HSIZE; i++)
5214 INIT_HLIST_HEAD(&inet6_addr_lst[i]);
5215
Linus Torvalds1da177e2005-04-16 15:20:36 -07005216 register_netdevice_notifier(&ipv6_dev_notf);
5217
Linus Torvalds1da177e2005-04-16 15:20:36 -07005218 addrconf_verify(0);
Thomas Grafc127ea22007-03-22 11:58:32 -07005219
Thomas Grafb382b192010-11-16 04:33:57 +00005220 err = rtnl_af_register(&inet6_ops);
5221 if (err < 0)
5222 goto errout_af;
5223
Greg Rosec7ac8672011-06-10 01:27:09 +00005224 err = __rtnl_register(PF_INET6, RTM_GETLINK, NULL, inet6_dump_ifinfo,
5225 NULL);
Thomas Grafc127ea22007-03-22 11:58:32 -07005226 if (err < 0)
5227 goto errout;
5228
5229 /* Only the first call to __rtnl_register can fail */
Greg Rosec7ac8672011-06-10 01:27:09 +00005230 __rtnl_register(PF_INET6, RTM_NEWADDR, inet6_rtm_newaddr, NULL, NULL);
5231 __rtnl_register(PF_INET6, RTM_DELADDR, inet6_rtm_deladdr, NULL, NULL);
5232 __rtnl_register(PF_INET6, RTM_GETADDR, inet6_rtm_getaddr,
5233 inet6_dump_ifaddr, NULL);
5234 __rtnl_register(PF_INET6, RTM_GETMULTICAST, NULL,
5235 inet6_dump_ifmcaddr, NULL);
5236 __rtnl_register(PF_INET6, RTM_GETANYCAST, NULL,
5237 inet6_dump_ifacaddr, NULL);
Nicolas Dichtel76f8f6c2012-10-25 22:28:51 +00005238 __rtnl_register(PF_INET6, RTM_GETNETCONF, inet6_netconf_get_devconf,
Nicolas Dichtel7a674202013-03-05 23:42:06 +00005239 inet6_netconf_dump_devconf, NULL);
Thomas Grafc127ea22007-03-22 11:58:32 -07005240
YOSHIFUJI Hideaki2a8cc6c2007-11-14 15:56:23 +09005241 ipv6_addr_label_rtnl_register();
5242
Linus Torvalds1da177e2005-04-16 15:20:36 -07005243 return 0;
Thomas Grafc127ea22007-03-22 11:58:32 -07005244errout:
Thomas Grafb382b192010-11-16 04:33:57 +00005245 rtnl_af_unregister(&inet6_ops);
5246errout_af:
Thomas Grafc127ea22007-03-22 11:58:32 -07005247 unregister_netdevice_notifier(&ipv6_dev_notf);
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08005248errlo:
5249 unregister_pernet_subsys(&addrconf_ops);
Neil Horman2cc6d2b2010-09-24 09:55:52 +00005250out_addrlabel:
5251 ipv6_addr_label_cleanup();
5252out:
Thomas Grafc127ea22007-03-22 11:58:32 -07005253 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005254}
5255
Daniel Lezcano09f77092007-12-13 05:34:58 -08005256void addrconf_cleanup(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005257{
Daniel Lezcano176c39a2009-03-03 01:06:45 -08005258 struct net_device *dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005259 int i;
5260
5261 unregister_netdevice_notifier(&ipv6_dev_notf);
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08005262 unregister_pernet_subsys(&addrconf_ops);
Neil Horman2cc6d2b2010-09-24 09:55:52 +00005263 ipv6_addr_label_cleanup();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005264
5265 rtnl_lock();
5266
Thomas Grafb382b192010-11-16 04:33:57 +00005267 __rtnl_af_unregister(&inet6_ops);
5268
Daniel Lezcano176c39a2009-03-03 01:06:45 -08005269 /* clean dev list */
5270 for_each_netdev(&init_net, dev) {
5271 if (__in6_dev_get(dev) == NULL)
5272 continue;
5273 addrconf_ifdown(dev, 1);
5274 }
5275 addrconf_ifdown(init_net.loopback_dev, 2);
5276
Linus Torvalds1da177e2005-04-16 15:20:36 -07005277 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005278 * Check hash table.
5279 */
stephen hemminger5c578aed2010-03-17 20:31:11 +00005280 spin_lock_bh(&addrconf_hash_lock);
stephen hemmingerc2e21292010-03-17 20:31:10 +00005281 for (i = 0; i < IN6_ADDR_HSIZE; i++)
5282 WARN_ON(!hlist_empty(&inet6_addr_lst[i]));
stephen hemminger5c578aed2010-03-17 20:31:11 +00005283 spin_unlock_bh(&addrconf_hash_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005284
5285 del_timer(&addr_chk_timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005286 rtnl_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005287}