blob: d62d589bb6223ffc1fbdc5cc99ac98dde7630964 [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 hemminger5c578ae2010-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 Hideaki52e16352006-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,
Hannes Frederic Sowab800c3b2013-08-27 01:36:51 +0200207 .suppress_frag_ndisc = 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208};
209
Brian Haleyab32ea52006-09-22 14:15:41 -0700210static struct ipv6_devconf ipv6_devconf_dflt __read_mostly = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211 .forwarding = 0,
212 .hop_limit = IPV6_DEFAULT_HOPLIMIT,
213 .mtu6 = IPV6_MIN_MTU,
214 .accept_ra = 1,
215 .accept_redirects = 1,
216 .autoconf = 1,
Hannes Frederic Sowafc4eba52013-08-14 01:03:46 +0200217 .force_mld_version = 0,
218 .mldv1_unsolicited_report_interval = 10 * HZ,
219 .mldv2_unsolicited_report_interval = HZ,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220 .dad_transmits = 1,
221 .rtr_solicits = MAX_RTR_SOLICITATIONS,
222 .rtr_solicit_interval = RTR_SOLICITATION_INTERVAL,
223 .rtr_solicit_delay = MAX_RTR_SOLICITATION_DELAY,
224#ifdef CONFIG_IPV6_PRIVACY
225 .use_tempaddr = 0,
226 .temp_valid_lft = TEMP_VALID_LIFETIME,
227 .temp_prefered_lft = TEMP_PREFERRED_LIFETIME,
228 .regen_max_retry = REGEN_MAX_RETRY,
229 .max_desync_factor = MAX_DESYNC_FACTOR,
230#endif
231 .max_addresses = IPV6_MAX_ADDRESSES,
YOSHIFUJI Hideaki65f5c7c2006-03-20 16:55:08 -0800232 .accept_ra_defrtr = 1,
YOSHIFUJI Hideakic4fd30e2006-03-20 16:55:26 -0800233 .accept_ra_pinfo = 1,
YOSHIFUJI Hideaki930d6ff2006-03-20 17:05:30 -0800234#ifdef CONFIG_IPV6_ROUTER_PREF
235 .accept_ra_rtr_pref = 1,
YOSHIFUJI Hideaki52e16352006-03-20 17:05:47 -0800236 .rtr_probe_interval = 60 * HZ,
YOSHIFUJI Hideaki09c884d2006-03-20 17:07:03 -0800237#ifdef CONFIG_IPV6_ROUTE_INFO
238 .accept_ra_rt_info_max_plen = 0,
239#endif
YOSHIFUJI Hideaki930d6ff2006-03-20 17:05:30 -0800240#endif
YOSHIFUJI Hideakifbea49e2006-09-22 14:43:49 -0700241 .proxy_ndp = 0,
YOSHIFUJI Hideaki0bcbc922007-04-24 14:58:30 -0700242 .accept_source_route = 0, /* we do not accept RH0 by default. */
YOSHIFUJI Hideaki778d80b2008-06-28 14:17:11 +0900243 .disable_ipv6 = 0,
YOSHIFUJI Hideaki1b34be72008-06-28 14:18:38 +0900244 .accept_dad = 1,
Hannes Frederic Sowab800c3b2013-08-27 01:36:51 +0200245 .suppress_frag_ndisc = 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246};
247
Mitsuru Chinenf24e3d62007-10-10 02:53:43 -0700248/* Check if a valid qdisc is available */
David S. Miller05297942008-07-08 23:01:27 -0700249static inline bool addrconf_qdisc_ok(const struct net_device *dev)
Mitsuru Chinenf24e3d62007-10-10 02:53:43 -0700250{
David S. Miller05297942008-07-08 23:01:27 -0700251 return !qdisc_tx_is_noop(dev);
Mitsuru Chinenf24e3d62007-10-10 02:53:43 -0700252}
253
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +0200254static void addrconf_del_rs_timer(struct inet6_dev *idev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255{
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +0200256 if (del_timer(&idev->rs_timer))
257 __in6_dev_put(idev);
258}
259
260static void addrconf_del_dad_timer(struct inet6_ifaddr *ifp)
261{
262 if (del_timer(&ifp->dad_timer))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263 __in6_ifa_put(ifp);
264}
265
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +0200266static void addrconf_mod_rs_timer(struct inet6_dev *idev,
267 unsigned long when)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268{
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +0200269 if (!timer_pending(&idev->rs_timer))
270 in6_dev_hold(idev);
271 mod_timer(&idev->rs_timer, jiffies + when);
272}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +0200274static void addrconf_mod_dad_timer(struct inet6_ifaddr *ifp,
275 unsigned long when)
276{
277 if (!timer_pending(&ifp->dad_timer))
278 in6_ifa_hold(ifp);
279 mod_timer(&ifp->dad_timer, jiffies + when);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280}
281
Herbert Xu7f7d9a62007-04-24 21:54:09 -0700282static int snmp6_alloc_dev(struct inet6_dev *idev)
283{
John Stultz827da442013-10-07 15:51:58 -0700284 int i;
285
Tejun Heo7d720c32010-02-16 15:20:26 +0000286 if (snmp_mib_init((void __percpu **)idev->stats.ipv6,
Eric Dumazet1823e4c82010-06-22 20:58:41 +0000287 sizeof(struct ipstats_mib),
288 __alignof__(struct ipstats_mib)) < 0)
Herbert Xu7f7d9a62007-04-24 21:54:09 -0700289 goto err_ip;
John Stultz827da442013-10-07 15:51:58 -0700290
291 for_each_possible_cpu(i) {
292 struct ipstats_mib *addrconf_stats;
293 addrconf_stats = per_cpu_ptr(idev->stats.ipv6[0], i);
294 u64_stats_init(&addrconf_stats->syncp);
295#if SNMP_ARRAY_SZ == 2
296 addrconf_stats = per_cpu_ptr(idev->stats.ipv6[1], i);
297 u64_stats_init(&addrconf_stats->syncp);
298#endif
299 }
300
301
Eric Dumazetbe281e52011-05-19 01:14:23 +0000302 idev->stats.icmpv6dev = kzalloc(sizeof(struct icmpv6_mib_device),
303 GFP_KERNEL);
304 if (!idev->stats.icmpv6dev)
Herbert Xu7f7d9a62007-04-24 21:54:09 -0700305 goto err_icmp;
Eric Dumazetbe281e52011-05-19 01:14:23 +0000306 idev->stats.icmpv6msgdev = kzalloc(sizeof(struct icmpv6msg_mib_device),
307 GFP_KERNEL);
308 if (!idev->stats.icmpv6msgdev)
David L Stevens14878f72007-09-16 16:52:35 -0700309 goto err_icmpmsg;
Herbert Xu7f7d9a62007-04-24 21:54:09 -0700310
311 return 0;
312
David L Stevens14878f72007-09-16 16:52:35 -0700313err_icmpmsg:
Eric Dumazetbe281e52011-05-19 01:14:23 +0000314 kfree(idev->stats.icmpv6dev);
Herbert Xu7f7d9a62007-04-24 21:54:09 -0700315err_icmp:
Tejun Heo7d720c32010-02-16 15:20:26 +0000316 snmp_mib_free((void __percpu **)idev->stats.ipv6);
Herbert Xu7f7d9a62007-04-24 21:54:09 -0700317err_ip:
Pavel Emelyanovaaf70ec2007-10-17 21:25:32 -0700318 return -ENOMEM;
Herbert Xu7f7d9a62007-04-24 21:54:09 -0700319}
320
Eldad Zack8e5e8f32012-04-01 07:49:08 +0000321static struct inet6_dev *ipv6_add_dev(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322{
323 struct inet6_dev *ndev;
324
325 ASSERT_RTNL();
326
327 if (dev->mtu < IPV6_MIN_MTU)
328 return NULL;
329
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900330 ndev = kzalloc(sizeof(struct inet6_dev), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900332 if (ndev == NULL)
333 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334
Ingo Oeser322f74a2006-03-20 23:01:47 -0800335 rwlock_init(&ndev->lock);
336 ndev->dev = dev;
stephen hemminger502a2ff2010-03-17 20:31:13 +0000337 INIT_LIST_HEAD(&ndev->addr_list);
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +0200338 setup_timer(&ndev->rs_timer, addrconf_rs_timer,
339 (unsigned long)ndev);
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +0900340 memcpy(&ndev->cnf, dev_net(dev)->ipv6.devconf_dflt, sizeof(ndev->cnf));
Ingo Oeser322f74a2006-03-20 23:01:47 -0800341 ndev->cnf.mtu6 = dev->mtu;
342 ndev->cnf.sysctl = NULL;
343 ndev->nd_parms = neigh_parms_alloc(dev, &nd_tbl);
344 if (ndev->nd_parms == NULL) {
345 kfree(ndev);
346 return NULL;
347 }
Ben Hutchings0187bdf2008-06-19 16:15:47 -0700348 if (ndev->cnf.forwarding)
349 dev_disable_lro(dev);
Ingo Oeser322f74a2006-03-20 23:01:47 -0800350 /* We refer to the device */
351 dev_hold(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352
Ingo Oeser322f74a2006-03-20 23:01:47 -0800353 if (snmp6_alloc_dev(ndev) < 0) {
dingtianhongba3542e2013-08-17 10:27:04 +0800354 ADBG(KERN_WARNING
Joe Perchesf3213832012-05-15 14:11:53 +0000355 "%s: cannot allocate memory for statistics; dev=%s.\n",
dingtianhongba3542e2013-08-17 10:27:04 +0800356 __func__, dev->name);
Ingo Oeser322f74a2006-03-20 23:01:47 -0800357 neigh_parms_release(&nd_tbl, ndev->nd_parms);
Roy Li8603e332011-09-20 15:10:16 -0400358 dev_put(dev);
359 kfree(ndev);
Ingo Oeser322f74a2006-03-20 23:01:47 -0800360 return NULL;
361 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362
Ingo Oeser322f74a2006-03-20 23:01:47 -0800363 if (snmp6_register_dev(ndev) < 0) {
dingtianhongba3542e2013-08-17 10:27:04 +0800364 ADBG(KERN_WARNING
Joe Perchesf3213832012-05-15 14:11:53 +0000365 "%s: cannot create /proc/net/dev_snmp6/%s\n",
dingtianhongba3542e2013-08-17 10:27:04 +0800366 __func__, dev->name);
Ingo Oeser322f74a2006-03-20 23:01:47 -0800367 neigh_parms_release(&nd_tbl, ndev->nd_parms);
368 ndev->dead = 1;
369 in6_dev_finish_destroy(ndev);
370 return NULL;
371 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372
Ingo Oeser322f74a2006-03-20 23:01:47 -0800373 /* One reference from device. We must do this before
374 * we invoke __ipv6_regen_rndid().
375 */
376 in6_dev_hold(ndev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377
YOSHIFUJI Hideaki1b34be72008-06-28 14:18:38 +0900378 if (dev->flags & (IFF_NOARP | IFF_LOOPBACK))
379 ndev->cnf.accept_dad = -1;
380
Amerigo Wang07a93622012-10-29 16:23:10 +0000381#if IS_ENABLED(CONFIG_IPV6_SIT)
YOSHIFUJI Hideakib077d7a2008-04-13 23:42:18 -0700382 if (dev->type == ARPHRD_SIT && (dev->priv_flags & IFF_ISATAP)) {
Joe Perchesf3213832012-05-15 14:11:53 +0000383 pr_info("%s: Disabled Multicast RS\n", dev->name);
YOSHIFUJI Hideakib077d7a2008-04-13 23:42:18 -0700384 ndev->cnf.rtr_solicits = 0;
385 }
386#endif
387
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388#ifdef CONFIG_IPV6_PRIVACY
stephen hemminger372e6c82010-03-17 20:31:09 +0000389 INIT_LIST_HEAD(&ndev->tempaddr_list);
Pavel Emelyanovb24b8a22008-01-23 21:20:07 -0800390 setup_timer(&ndev->regen_timer, ipv6_regen_rndid, (unsigned long)ndev);
Ingo Oeser322f74a2006-03-20 23:01:47 -0800391 if ((dev->flags&IFF_LOOPBACK) ||
392 dev->type == ARPHRD_TUNNEL ||
YOSHIFUJI Hideaki9625ed72008-04-13 23:47:11 -0700393 dev->type == ARPHRD_TUNNEL6 ||
Joerg Roedel0be669b2006-10-10 14:49:53 -0700394 dev->type == ARPHRD_SIT ||
Joerg Roedel0be669b2006-10-10 14:49:53 -0700395 dev->type == ARPHRD_NONE) {
Ingo Oeser322f74a2006-03-20 23:01:47 -0800396 ndev->cnf.use_tempaddr = -1;
397 } else {
398 in6_dev_hold(ndev);
399 ipv6_regen_rndid((unsigned long) ndev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400 }
Ingo Oeser322f74a2006-03-20 23:01:47 -0800401#endif
Daniel Borkmann914faa12013-04-09 03:47:14 +0000402 ndev->token = in6addr_any;
Ingo Oeser322f74a2006-03-20 23:01:47 -0800403
Mitsuru Chinenf24e3d62007-10-10 02:53:43 -0700404 if (netif_running(dev) && addrconf_qdisc_ok(dev))
Herbert Xu53aadcc2007-03-27 14:31:52 -0700405 ndev->if_flags |= IF_READY;
406
Ingo Oeser322f74a2006-03-20 23:01:47 -0800407 ipv6_mc_init_dev(ndev);
408 ndev->tstamp = jiffies;
Pavel Emelyanovf52295a2007-12-02 00:58:37 +1100409 addrconf_sysctl_register(ndev);
David L Stevens30c4cf52007-01-04 12:31:14 -0800410 /* protected by rtnl_lock */
Eric Dumazetcf778b02012-01-12 04:41:32 +0000411 rcu_assign_pointer(dev->ip6_ptr, ndev);
YOSHIFUJI Hideakid88ae4c2007-01-14 21:48:40 -0800412
Hannes Frederic Sowa2c5e8932013-02-10 03:50:18 +0000413 /* Join interface-local all-node multicast group */
414 ipv6_dev_mc_inc(dev, &in6addr_interfacelocal_allnodes);
415
YOSHIFUJI Hideakid88ae4c2007-01-14 21:48:40 -0800416 /* Join all-node multicast group */
YOSHIFUJI Hideakif3ee4012008-04-10 15:42:11 +0900417 ipv6_dev_mc_inc(dev, &in6addr_linklocal_allnodes);
YOSHIFUJI Hideakid88ae4c2007-01-14 21:48:40 -0800418
Li Weid6ddef92012-03-05 14:45:17 +0000419 /* Join all-router multicast group if forwarding is set */
Li Wei8b2aaed2012-03-07 14:58:07 +0000420 if (ndev->cnf.forwarding && (dev->flags & IFF_MULTICAST))
Li Weid6ddef92012-03-05 14:45:17 +0000421 ipv6_dev_mc_inc(dev, &in6addr_linklocal_allrouters);
422
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423 return ndev;
424}
425
Eldad Zack8e5e8f32012-04-01 07:49:08 +0000426static struct inet6_dev *ipv6_find_idev(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427{
428 struct inet6_dev *idev;
429
430 ASSERT_RTNL();
431
Stephen Hemmingere21e8462010-03-20 16:09:01 -0700432 idev = __in6_dev_get(dev);
433 if (!idev) {
434 idev = ipv6_add_dev(dev);
435 if (!idev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436 return NULL;
437 }
YOSHIFUJI Hideakic5e33bd2005-12-21 22:57:44 +0900438
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439 if (dev->flags&IFF_UP)
440 ipv6_mc_up(idev);
441 return idev;
442}
443
Nicolas Dichtelf3a1bfb2012-10-25 22:28:50 +0000444static int inet6_netconf_msgsize_devconf(int type)
445{
446 int size = NLMSG_ALIGN(sizeof(struct netconfmsg))
447 + nla_total_size(4); /* NETCONFA_IFINDEX */
448
Nicolas Dichtel76f8f6c2012-10-25 22:28:51 +0000449 /* type -1 is used for ALL */
450 if (type == -1 || type == NETCONFA_FORWARDING)
Nicolas Dichtelf3a1bfb2012-10-25 22:28:50 +0000451 size += nla_total_size(4);
David S. Millerb1afce92012-12-04 14:46:34 -0500452#ifdef CONFIG_IPV6_MROUTE
Nicolas Dichteld67b8c62012-12-04 01:13:35 +0000453 if (type == -1 || type == NETCONFA_MC_FORWARDING)
454 size += nla_total_size(4);
David S. Millerb1afce92012-12-04 14:46:34 -0500455#endif
Nicolas Dichtelf3a1bfb2012-10-25 22:28:50 +0000456
457 return size;
458}
459
460static int inet6_netconf_fill_devconf(struct sk_buff *skb, int ifindex,
461 struct ipv6_devconf *devconf, u32 portid,
462 u32 seq, int event, unsigned int flags,
463 int type)
464{
465 struct nlmsghdr *nlh;
466 struct netconfmsg *ncm;
467
468 nlh = nlmsg_put(skb, portid, seq, event, sizeof(struct netconfmsg),
469 flags);
470 if (nlh == NULL)
471 return -EMSGSIZE;
472
473 ncm = nlmsg_data(nlh);
474 ncm->ncm_family = AF_INET6;
475
476 if (nla_put_s32(skb, NETCONFA_IFINDEX, ifindex) < 0)
477 goto nla_put_failure;
478
Nicolas Dichtel76f8f6c2012-10-25 22:28:51 +0000479 /* type -1 is used for ALL */
480 if ((type == -1 || type == NETCONFA_FORWARDING) &&
Nicolas Dichtelf3a1bfb2012-10-25 22:28:50 +0000481 nla_put_s32(skb, NETCONFA_FORWARDING, devconf->forwarding) < 0)
482 goto nla_put_failure;
David S. Millerb1afce92012-12-04 14:46:34 -0500483#ifdef CONFIG_IPV6_MROUTE
Nicolas Dichteld67b8c62012-12-04 01:13:35 +0000484 if ((type == -1 || type == NETCONFA_MC_FORWARDING) &&
485 nla_put_s32(skb, NETCONFA_MC_FORWARDING,
486 devconf->mc_forwarding) < 0)
487 goto nla_put_failure;
David S. Millerb1afce92012-12-04 14:46:34 -0500488#endif
Nicolas Dichtelf3a1bfb2012-10-25 22:28:50 +0000489 return nlmsg_end(skb, nlh);
490
491nla_put_failure:
492 nlmsg_cancel(skb, nlh);
493 return -EMSGSIZE;
494}
495
Nicolas Dichteld67b8c62012-12-04 01:13:35 +0000496void inet6_netconf_notify_devconf(struct net *net, int type, int ifindex,
497 struct ipv6_devconf *devconf)
Nicolas Dichtelf3a1bfb2012-10-25 22:28:50 +0000498{
499 struct sk_buff *skb;
500 int err = -ENOBUFS;
501
502 skb = nlmsg_new(inet6_netconf_msgsize_devconf(type), GFP_ATOMIC);
503 if (skb == NULL)
504 goto errout;
505
506 err = inet6_netconf_fill_devconf(skb, ifindex, devconf, 0, 0,
507 RTM_NEWNETCONF, 0, type);
508 if (err < 0) {
509 /* -EMSGSIZE implies BUG in inet6_netconf_msgsize_devconf() */
510 WARN_ON(err == -EMSGSIZE);
511 kfree_skb(skb);
512 goto errout;
513 }
514 rtnl_notify(skb, net, 0, RTNLGRP_IPV6_NETCONF, NULL, GFP_ATOMIC);
515 return;
516errout:
Cong Dingbd779022012-12-18 12:08:56 +0000517 rtnl_set_sk_err(net, RTNLGRP_IPV6_NETCONF, err);
Nicolas Dichtelf3a1bfb2012-10-25 22:28:50 +0000518}
519
Nicolas Dichtel76f8f6c2012-10-25 22:28:51 +0000520static const struct nla_policy devconf_ipv6_policy[NETCONFA_MAX+1] = {
521 [NETCONFA_IFINDEX] = { .len = sizeof(int) },
522 [NETCONFA_FORWARDING] = { .len = sizeof(int) },
523};
524
525static int inet6_netconf_get_devconf(struct sk_buff *in_skb,
Thomas Graf661d2962013-03-21 07:45:29 +0000526 struct nlmsghdr *nlh)
Nicolas Dichtel76f8f6c2012-10-25 22:28:51 +0000527{
528 struct net *net = sock_net(in_skb->sk);
529 struct nlattr *tb[NETCONFA_MAX+1];
530 struct netconfmsg *ncm;
531 struct sk_buff *skb;
532 struct ipv6_devconf *devconf;
533 struct inet6_dev *in6_dev;
534 struct net_device *dev;
535 int ifindex;
536 int err;
537
538 err = nlmsg_parse(nlh, sizeof(*ncm), tb, NETCONFA_MAX,
539 devconf_ipv6_policy);
540 if (err < 0)
541 goto errout;
542
543 err = EINVAL;
544 if (!tb[NETCONFA_IFINDEX])
545 goto errout;
546
547 ifindex = nla_get_s32(tb[NETCONFA_IFINDEX]);
548 switch (ifindex) {
549 case NETCONFA_IFINDEX_ALL:
550 devconf = net->ipv6.devconf_all;
551 break;
552 case NETCONFA_IFINDEX_DEFAULT:
553 devconf = net->ipv6.devconf_dflt;
554 break;
555 default:
556 dev = __dev_get_by_index(net, ifindex);
557 if (dev == NULL)
558 goto errout;
559 in6_dev = __in6_dev_get(dev);
560 if (in6_dev == NULL)
561 goto errout;
562 devconf = &in6_dev->cnf;
563 break;
564 }
565
566 err = -ENOBUFS;
567 skb = nlmsg_new(inet6_netconf_msgsize_devconf(-1), GFP_ATOMIC);
568 if (skb == NULL)
569 goto errout;
570
571 err = inet6_netconf_fill_devconf(skb, ifindex, devconf,
572 NETLINK_CB(in_skb).portid,
573 nlh->nlmsg_seq, RTM_NEWNETCONF, 0,
574 -1);
575 if (err < 0) {
576 /* -EMSGSIZE implies BUG in inet6_netconf_msgsize_devconf() */
577 WARN_ON(err == -EMSGSIZE);
578 kfree_skb(skb);
579 goto errout;
580 }
581 err = rtnl_unicast(skb, net, NETLINK_CB(in_skb).portid);
582errout:
583 return err;
584}
585
Nicolas Dichtel7a674202013-03-05 23:42:06 +0000586static int inet6_netconf_dump_devconf(struct sk_buff *skb,
587 struct netlink_callback *cb)
588{
589 struct net *net = sock_net(skb->sk);
590 int h, s_h;
591 int idx, s_idx;
592 struct net_device *dev;
593 struct inet6_dev *idev;
594 struct hlist_head *head;
595
596 s_h = cb->args[0];
597 s_idx = idx = cb->args[1];
598
599 for (h = s_h; h < NETDEV_HASHENTRIES; h++, s_idx = 0) {
600 idx = 0;
601 head = &net->dev_index_head[h];
602 rcu_read_lock();
Nicolas Dichtel63998ac2013-03-22 06:28:43 +0000603 cb->seq = atomic_read(&net->ipv6.dev_addr_genid) ^
604 net->dev_base_seq;
Nicolas Dichtel7a674202013-03-05 23:42:06 +0000605 hlist_for_each_entry_rcu(dev, head, index_hlist) {
606 if (idx < s_idx)
607 goto cont;
608 idev = __in6_dev_get(dev);
609 if (!idev)
610 goto cont;
611
612 if (inet6_netconf_fill_devconf(skb, dev->ifindex,
613 &idev->cnf,
614 NETLINK_CB(cb->skb).portid,
615 cb->nlh->nlmsg_seq,
616 RTM_NEWNETCONF,
617 NLM_F_MULTI,
618 -1) <= 0) {
619 rcu_read_unlock();
620 goto done;
621 }
Nicolas Dichtel63998ac2013-03-22 06:28:43 +0000622 nl_dump_check_consistent(cb, nlmsg_hdr(skb));
Nicolas Dichtel7a674202013-03-05 23:42:06 +0000623cont:
624 idx++;
625 }
626 rcu_read_unlock();
627 }
628 if (h == NETDEV_HASHENTRIES) {
629 if (inet6_netconf_fill_devconf(skb, NETCONFA_IFINDEX_ALL,
630 net->ipv6.devconf_all,
631 NETLINK_CB(cb->skb).portid,
632 cb->nlh->nlmsg_seq,
633 RTM_NEWNETCONF, NLM_F_MULTI,
634 -1) <= 0)
635 goto done;
636 else
637 h++;
638 }
639 if (h == NETDEV_HASHENTRIES + 1) {
640 if (inet6_netconf_fill_devconf(skb, NETCONFA_IFINDEX_DEFAULT,
641 net->ipv6.devconf_dflt,
642 NETLINK_CB(cb->skb).portid,
643 cb->nlh->nlmsg_seq,
644 RTM_NEWNETCONF, NLM_F_MULTI,
645 -1) <= 0)
646 goto done;
647 else
648 h++;
649 }
650done:
651 cb->args[0] = h;
652 cb->args[1] = idx;
653
654 return skb->len;
655}
656
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657#ifdef CONFIG_SYSCTL
658static void dev_forward_change(struct inet6_dev *idev)
659{
660 struct net_device *dev;
661 struct inet6_ifaddr *ifa;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662
663 if (!idev)
664 return;
665 dev = idev->dev;
Ben Hutchings0187bdf2008-06-19 16:15:47 -0700666 if (idev->cnf.forwarding)
667 dev_disable_lro(dev);
Amerigo Wang1a940832012-10-28 17:43:53 +0000668 if (dev->flags & IFF_MULTICAST) {
Hannes Frederic Sowa2c5e8932013-02-10 03:50:18 +0000669 if (idev->cnf.forwarding) {
YOSHIFUJI Hideakif3ee4012008-04-10 15:42:11 +0900670 ipv6_dev_mc_inc(dev, &in6addr_linklocal_allrouters);
Hannes Frederic Sowa2c5e8932013-02-10 03:50:18 +0000671 ipv6_dev_mc_inc(dev, &in6addr_interfacelocal_allrouters);
672 ipv6_dev_mc_inc(dev, &in6addr_sitelocal_allrouters);
673 } else {
YOSHIFUJI Hideakif3ee4012008-04-10 15:42:11 +0900674 ipv6_dev_mc_dec(dev, &in6addr_linklocal_allrouters);
Hannes Frederic Sowa2c5e8932013-02-10 03:50:18 +0000675 ipv6_dev_mc_dec(dev, &in6addr_interfacelocal_allrouters);
676 ipv6_dev_mc_dec(dev, &in6addr_sitelocal_allrouters);
677 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678 }
stephen hemminger502a2ff2010-03-17 20:31:13 +0000679
680 list_for_each_entry(ifa, &idev->addr_list, if_list) {
Michal Wrobel2c12a742007-02-26 15:36:10 -0800681 if (ifa->flags&IFA_F_TENTATIVE)
682 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683 if (idev->cnf.forwarding)
684 addrconf_join_anycast(ifa);
685 else
686 addrconf_leave_anycast(ifa);
687 }
Nicolas Dichtelf3a1bfb2012-10-25 22:28:50 +0000688 inet6_netconf_notify_devconf(dev_net(dev), NETCONFA_FORWARDING,
689 dev->ifindex, &idev->cnf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690}
691
692
Pavel Emelyanove1869322008-01-10 17:43:50 -0800693static void addrconf_forward_change(struct net *net, __s32 newf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694{
695 struct net_device *dev;
696 struct inet6_dev *idev;
697
Ben Hutchings4acd4942012-08-14 08:54:51 +0000698 for_each_netdev(net, dev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699 idev = __in6_dev_get(dev);
700 if (idev) {
Pavel Emelyanove1869322008-01-10 17:43:50 -0800701 int changed = (!idev->cnf.forwarding) ^ (!newf);
702 idev->cnf.forwarding = newf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703 if (changed)
704 dev_forward_change(idev);
705 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707}
Pavel Emelyanovc8fecf22007-12-05 01:50:24 -0800708
Francesco Ruggeri013d97e2012-01-16 10:40:10 +0000709static int addrconf_fixup_forwarding(struct ctl_table *table, int *p, int newf)
Pavel Emelyanovc8fecf22007-12-05 01:50:24 -0800710{
Pavel Emelyanovbff16c22008-01-10 17:42:13 -0800711 struct net *net;
Francesco Ruggeri013d97e2012-01-16 10:40:10 +0000712 int old;
713
714 if (!rtnl_trylock())
715 return restart_syscall();
Pavel Emelyanovbff16c22008-01-10 17:42:13 -0800716
717 net = (struct net *)table->extra2;
Francesco Ruggeri013d97e2012-01-16 10:40:10 +0000718 old = *p;
719 *p = newf;
Pavel Emelyanovc8fecf22007-12-05 01:50:24 -0800720
Francesco Ruggeri013d97e2012-01-16 10:40:10 +0000721 if (p == &net->ipv6.devconf_dflt->forwarding) {
Nicolas Dichtelf3a1bfb2012-10-25 22:28:50 +0000722 if ((!newf) ^ (!old))
723 inet6_netconf_notify_devconf(net, NETCONFA_FORWARDING,
724 NETCONFA_IFINDEX_DEFAULT,
725 net->ipv6.devconf_dflt);
Francesco Ruggeri013d97e2012-01-16 10:40:10 +0000726 rtnl_unlock();
727 return 0;
Eric W. Biederman88af1822010-02-19 13:22:59 +0000728 }
Stephen Hemmingerb325fdd2009-02-26 06:55:31 +0000729
Pavel Emelyanove1869322008-01-10 17:43:50 -0800730 if (p == &net->ipv6.devconf_all->forwarding) {
Pavel Emelyanove1869322008-01-10 17:43:50 -0800731 net->ipv6.devconf_dflt->forwarding = newf;
732 addrconf_forward_change(net, newf);
Nicolas Dichtelf3a1bfb2012-10-25 22:28:50 +0000733 if ((!newf) ^ (!old))
734 inet6_netconf_notify_devconf(net, NETCONFA_FORWARDING,
735 NETCONFA_IFINDEX_ALL,
736 net->ipv6.devconf_all);
Francesco Ruggeri013d97e2012-01-16 10:40:10 +0000737 } else if ((!newf) ^ (!old))
Pavel Emelyanovc8fecf22007-12-05 01:50:24 -0800738 dev_forward_change((struct inet6_dev *)table->extra1);
Ben Hutchings0187bdf2008-06-19 16:15:47 -0700739 rtnl_unlock();
Pavel Emelyanovc8fecf22007-12-05 01:50:24 -0800740
Francesco Ruggeri013d97e2012-01-16 10:40:10 +0000741 if (newf)
Daniel Lezcano7b4da532008-03-04 13:47:14 -0800742 rt6_purge_dflt_routers(net);
Stephen Hemmingerb325fdd2009-02-26 06:55:31 +0000743 return 1;
Pavel Emelyanovc8fecf22007-12-05 01:50:24 -0800744}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745#endif
746
stephen hemminger5c578ae2010-03-17 20:31:11 +0000747/* Nobody refers to this ifaddr, destroy it */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748void inet6_ifa_finish_destroy(struct inet6_ifaddr *ifp)
749{
stephen hemmingerc2e21292010-03-17 20:31:10 +0000750 WARN_ON(!hlist_unhashed(&ifp->addr_lst));
Ilpo Järvinen547b7922008-07-25 21:43:18 -0700751
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752#ifdef NET_REFCNT_DEBUG
Joe Perches91df42b2012-05-15 14:11:54 +0000753 pr_debug("%s\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754#endif
755
756 in6_dev_put(ifp->idev);
757
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +0200758 if (del_timer(&ifp->dad_timer))
Stephen Hemmingere21e8462010-03-20 16:09:01 -0700759 pr_notice("Timer is still running, when freeing ifa=%p\n", ifp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760
Herbert Xue9d3e082010-05-18 15:36:06 -0700761 if (ifp->state != INET6_IFADDR_STATE_DEAD) {
Joe Perchesf3213832012-05-15 14:11:53 +0000762 pr_warn("Freeing alive inet6 address %p\n", ifp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763 return;
764 }
Amerigo Wang94e187c2012-10-29 00:13:19 +0000765 ip6_rt_put(ifp->rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766
Lai Jiangshane5785982011-03-15 18:00:14 +0800767 kfree_rcu(ifp, rcu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768}
769
Brian Haleye55ffac2006-07-10 15:25:51 -0700770static void
771ipv6_link_dev_addr(struct inet6_dev *idev, struct inet6_ifaddr *ifp)
772{
stephen hemminger502a2ff2010-03-17 20:31:13 +0000773 struct list_head *p;
YOSHIFUJI Hideaki8a6ce0c2006-07-11 13:05:30 -0700774 int ifp_scope = ipv6_addr_src_scope(&ifp->addr);
Brian Haleye55ffac2006-07-10 15:25:51 -0700775
776 /*
777 * Each device address list is sorted in order of scope -
778 * global before linklocal.
779 */
stephen hemminger502a2ff2010-03-17 20:31:13 +0000780 list_for_each(p, &idev->addr_list) {
781 struct inet6_ifaddr *ifa
782 = list_entry(p, struct inet6_ifaddr, if_list);
YOSHIFUJI Hideaki8a6ce0c2006-07-11 13:05:30 -0700783 if (ifp_scope >= ipv6_addr_src_scope(&ifa->addr))
Brian Haleye55ffac2006-07-10 15:25:51 -0700784 break;
785 }
786
David S. Millerb54c9b92010-03-25 21:25:30 -0700787 list_add_tail(&ifp->if_list, p);
Brian Haleye55ffac2006-07-10 15:25:51 -0700788}
789
Eric Dumazetddbe5032012-07-18 08:11:12 +0000790static u32 inet6_addr_hash(const struct in6_addr *addr)
YOSHIFUJI Hideaki3eb84f42008-04-10 15:42:08 +0900791{
Eric Dumazetddbe5032012-07-18 08:11:12 +0000792 return hash_32(ipv6_addr_hash(addr), IN6_ADDR_HSIZE_SHIFT);
YOSHIFUJI Hideaki3eb84f42008-04-10 15:42:08 +0900793}
794
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795/* On success it returns ifp with increased reference count */
796
797static struct inet6_ifaddr *
Jiri Pirko3f8f5292013-08-01 10:41:27 +0200798ipv6_add_addr(struct inet6_dev *idev, const struct in6_addr *addr,
799 const struct in6_addr *peer_addr, int pfxlen,
Jiri Benc8a226b22013-08-01 10:41:28 +0200800 int scope, u32 flags, u32 valid_lft, u32 prefered_lft)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801{
802 struct inet6_ifaddr *ifa = NULL;
803 struct rt6_info *rt;
stephen hemminger3a88a812010-03-17 20:31:12 +0000804 unsigned int hash;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805 int err = 0;
YOSHIFUJI Hideakid68b8272008-06-25 16:26:47 +0900806 int addr_type = ipv6_addr_type(addr);
807
808 if (addr_type == IPV6_ADDR_ANY ||
809 addr_type & IPV6_ADDR_MULTICAST ||
810 (!(idev->dev->flags & IFF_LOOPBACK) &&
811 addr_type & IPV6_ADDR_LOOPBACK))
812 return ERR_PTR(-EADDRNOTAVAIL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -0700814 rcu_read_lock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815 if (idev->dead) {
816 err = -ENODEV; /*XXX*/
817 goto out2;
818 }
819
Brian Haley56d417b2009-06-01 03:07:33 -0700820 if (idev->cnf.disable_ipv6) {
Brian Haley9bdd8d42009-03-18 18:22:48 -0700821 err = -EACCES;
822 goto out2;
823 }
824
stephen hemminger5c578ae2010-03-17 20:31:11 +0000825 spin_lock(&addrconf_hash_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826
827 /* Ignore adding duplicate addresses on an interface */
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +0900828 if (ipv6_chk_same_addr(dev_net(idev->dev), addr, idev->dev)) {
dingtianhongba3542e2013-08-17 10:27:04 +0800829 ADBG("ipv6_add_addr: already assigned\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830 err = -EEXIST;
831 goto out;
832 }
833
Ingo Oeser322f74a2006-03-20 23:01:47 -0800834 ifa = kzalloc(sizeof(struct inet6_ifaddr), GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835
836 if (ifa == NULL) {
dingtianhongba3542e2013-08-17 10:27:04 +0800837 ADBG("ipv6_add_addr: malloc failed\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838 err = -ENOBUFS;
839 goto out;
840 }
841
David S. Miller8f031512011-12-06 16:48:14 -0500842 rt = addrconf_dst_alloc(idev, addr, false);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843 if (IS_ERR(rt)) {
844 err = PTR_ERR(rt);
845 goto out;
846 }
847
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +0000848 ifa->addr = *addr;
Jiri Pirko3f8f5292013-08-01 10:41:27 +0200849 if (peer_addr)
850 ifa->peer_addr = *peer_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851
852 spin_lock_init(&ifa->lock);
Herbert Xue9d3e082010-05-18 15:36:06 -0700853 spin_lock_init(&ifa->state_lock);
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +0200854 setup_timer(&ifa->dad_timer, addrconf_dad_timer,
855 (unsigned long)ifa);
stephen hemmingerc2e21292010-03-17 20:31:10 +0000856 INIT_HLIST_NODE(&ifa->addr_lst);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857 ifa->scope = scope;
858 ifa->prefix_len = pfxlen;
859 ifa->flags = flags | IFA_F_TENTATIVE;
Jiri Benc8a226b22013-08-01 10:41:28 +0200860 ifa->valid_lft = valid_lft;
861 ifa->prefered_lft = prefered_lft;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862 ifa->cstamp = ifa->tstamp = jiffies;
Daniel Borkmann617fe292013-04-09 03:47:16 +0000863 ifa->tokenized = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864
Keir Fraser57f5f542006-08-29 02:43:49 -0700865 ifa->rt = rt;
866
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867 ifa->idev = idev;
868 in6_dev_hold(idev);
869 /* For caller */
870 in6_ifa_hold(ifa);
871
872 /* Add to big hash table */
Eric Dumazetddbe5032012-07-18 08:11:12 +0000873 hash = inet6_addr_hash(addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874
stephen hemminger5c578ae2010-03-17 20:31:11 +0000875 hlist_add_head_rcu(&ifa->addr_lst, &inet6_addr_lst[hash]);
stephen hemminger5c578ae2010-03-17 20:31:11 +0000876 spin_unlock(&addrconf_hash_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877
878 write_lock(&idev->lock);
879 /* Add to inet6_dev unicast addr list. */
Brian Haleye55ffac2006-07-10 15:25:51 -0700880 ipv6_link_dev_addr(idev, ifa);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881
882#ifdef CONFIG_IPV6_PRIVACY
883 if (ifa->flags&IFA_F_TEMPORARY) {
stephen hemminger372e6c82010-03-17 20:31:09 +0000884 list_add(&ifa->tmp_list, &idev->tempaddr_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885 in6_ifa_hold(ifa);
886 }
887#endif
888
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889 in6_ifa_hold(ifa);
890 write_unlock(&idev->lock);
891out2:
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -0700892 rcu_read_unlock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893
YOSHIFUJI Hideakifd928332005-04-19 22:27:09 -0700894 if (likely(err == 0))
Cong Wangf88c91d2013-04-14 23:18:43 +0800895 inet6addr_notifier_call_chain(NETDEV_UP, ifa);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896 else {
897 kfree(ifa);
898 ifa = ERR_PTR(err);
899 }
900
901 return ifa;
902out:
stephen hemminger5c578ae2010-03-17 20:31:11 +0000903 spin_unlock(&addrconf_hash_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700904 goto out2;
905}
906
907/* This function wants to get referenced ifp and releases it before return */
908
909static void ipv6_del_addr(struct inet6_ifaddr *ifp)
910{
stephen hemminger502a2ff2010-03-17 20:31:13 +0000911 struct inet6_ifaddr *ifa, *ifn;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912 struct inet6_dev *idev = ifp->idev;
Herbert Xu4c5ff6a2010-05-18 15:54:18 -0700913 int state;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914 int deleted = 0, onlink = 0;
915 unsigned long expires = jiffies;
916
Herbert Xu4c5ff6a2010-05-18 15:54:18 -0700917 spin_lock_bh(&ifp->state_lock);
918 state = ifp->state;
Herbert Xue9d3e082010-05-18 15:36:06 -0700919 ifp->state = INET6_IFADDR_STATE_DEAD;
Herbert Xu4c5ff6a2010-05-18 15:54:18 -0700920 spin_unlock_bh(&ifp->state_lock);
921
922 if (state == INET6_IFADDR_STATE_DEAD)
923 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700924
stephen hemminger5c578ae2010-03-17 20:31:11 +0000925 spin_lock_bh(&addrconf_hash_lock);
926 hlist_del_init_rcu(&ifp->addr_lst);
stephen hemminger5c578ae2010-03-17 20:31:11 +0000927 spin_unlock_bh(&addrconf_hash_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928
929 write_lock_bh(&idev->lock);
930#ifdef CONFIG_IPV6_PRIVACY
931 if (ifp->flags&IFA_F_TEMPORARY) {
stephen hemminger372e6c82010-03-17 20:31:09 +0000932 list_del(&ifp->tmp_list);
933 if (ifp->ifpub) {
934 in6_ifa_put(ifp->ifpub);
935 ifp->ifpub = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936 }
stephen hemminger372e6c82010-03-17 20:31:09 +0000937 __in6_ifa_put(ifp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938 }
939#endif
940
stephen hemminger502a2ff2010-03-17 20:31:13 +0000941 list_for_each_entry_safe(ifa, ifn, &idev->addr_list, if_list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942 if (ifa == ifp) {
stephen hemminger502a2ff2010-03-17 20:31:13 +0000943 list_del_init(&ifp->if_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700944 __in6_ifa_put(ifp);
stephen hemminger502a2ff2010-03-17 20:31:13 +0000945
Linus Torvalds1da177e2005-04-16 15:20:36 -0700946 if (!(ifp->flags & IFA_F_PERMANENT) || onlink > 0)
947 break;
948 deleted = 1;
Kristian Slavov1d142802005-12-21 18:47:24 -0800949 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950 } else if (ifp->flags & IFA_F_PERMANENT) {
951 if (ipv6_prefix_equal(&ifa->addr, &ifp->addr,
952 ifp->prefix_len)) {
953 if (ifa->flags & IFA_F_PERMANENT) {
954 onlink = 1;
955 if (deleted)
956 break;
957 } else {
958 unsigned long lifetime;
959
960 if (!onlink)
961 onlink = -1;
962
963 spin_lock(&ifa->lock);
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +0900964
965 lifetime = addrconf_timeout_fixup(ifa->valid_lft, HZ);
966 /*
967 * Note: Because this address is
968 * not permanent, lifetime <
969 * LONG_MAX / HZ here.
970 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971 if (time_before(expires,
972 ifa->tstamp + lifetime * HZ))
973 expires = ifa->tstamp + lifetime * HZ;
974 spin_unlock(&ifa->lock);
975 }
976 }
977 }
978 }
979 write_unlock_bh(&idev->lock);
980
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +0200981 addrconf_del_dad_timer(ifp);
Andrey Vaginb2238562008-07-08 15:13:31 -0700982
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983 ipv6_ifa_notify(RTM_DELADDR, ifp);
984
Cong Wangf88c91d2013-04-14 23:18:43 +0800985 inet6addr_notifier_call_chain(NETDEV_DOWN, ifp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700986
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987 /*
988 * Purge or update corresponding prefix
989 *
990 * 1) we don't purge prefix here if address was not permanent.
991 * prefix is managed by its own lifetime.
992 * 2) if there're no addresses, delete prefix.
993 * 3) if there're still other permanent address(es),
994 * corresponding prefix is still permanent.
995 * 4) otherwise, update prefix lifetime to the
996 * longest valid lifetime among the corresponding
997 * addresses on the device.
998 * Note: subsequent RA will update lifetime.
999 *
1000 * --yoshfuji
1001 */
1002 if ((ifp->flags & IFA_F_PERMANENT) && onlink < 1) {
1003 struct in6_addr prefix;
1004 struct rt6_info *rt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001005
Nicolas Dichtel64c6d082012-09-26 00:04:55 +00001006 ipv6_addr_prefix(&prefix, &ifp->addr, ifp->prefix_len);
Nicolas Dichtel64c6d082012-09-26 00:04:55 +00001007
Romain Kuntz21caa662013-01-09 21:06:03 +00001008 rt = addrconf_get_prefix_route(&prefix,
1009 ifp->prefix_len,
1010 ifp->idev->dev,
1011 0, RTF_GATEWAY | RTF_DEFAULT);
1012
1013 if (rt) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014 if (onlink == 0) {
Thomas Grafe0a1ad732006-08-22 00:00:21 -07001015 ip6_del_rt(rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001016 rt = NULL;
1017 } else if (!(rt->rt6i_flags & RTF_EXPIRES)) {
Gao feng1716a962012-04-06 00:13:10 +00001018 rt6_set_expires(rt, expires);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001019 }
1020 }
Amerigo Wang94e187c2012-10-29 00:13:19 +00001021 ip6_rt_put(rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022 }
1023
Daniel Walterc3968a82011-04-13 21:10:57 +00001024 /* clean up prefsrc entries */
1025 rt6_remove_prefsrc(ifp);
Herbert Xu4c5ff6a2010-05-18 15:54:18 -07001026out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001027 in6_ifa_put(ifp);
1028}
1029
1030#ifdef CONFIG_IPV6_PRIVACY
1031static int ipv6_create_tempaddr(struct inet6_ifaddr *ifp, struct inet6_ifaddr *ift)
1032{
1033 struct inet6_dev *idev = ifp->idev;
1034 struct in6_addr addr, *tmpaddr;
Lorenzo Colitti76f793e2011-07-26 13:50:49 +00001035 unsigned long tmp_prefered_lft, tmp_valid_lft, tmp_tstamp, age;
Benoit Boissinoteac55bf2008-04-02 00:01:35 -07001036 unsigned long regen_advance;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001037 int tmp_plen;
1038 int ret = 0;
Neil Horman95c385b2007-04-25 17:08:10 -07001039 u32 addr_flags;
Lorenzo Colitti76f793e2011-07-26 13:50:49 +00001040 unsigned long now = jiffies;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001041
1042 write_lock(&idev->lock);
1043 if (ift) {
1044 spin_lock_bh(&ift->lock);
1045 memcpy(&addr.s6_addr[8], &ift->addr.s6_addr[8], 8);
1046 spin_unlock_bh(&ift->lock);
1047 tmpaddr = &addr;
1048 } else {
1049 tmpaddr = NULL;
1050 }
1051retry:
1052 in6_dev_hold(idev);
1053 if (idev->cnf.use_tempaddr <= 0) {
1054 write_unlock(&idev->lock);
Joe Perchesf3213832012-05-15 14:11:53 +00001055 pr_info("%s: use_tempaddr is disabled\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001056 in6_dev_put(idev);
1057 ret = -1;
1058 goto out;
1059 }
1060 spin_lock_bh(&ifp->lock);
1061 if (ifp->regen_count++ >= idev->cnf.regen_max_retry) {
1062 idev->cnf.use_tempaddr = -1; /*XXX*/
1063 spin_unlock_bh(&ifp->lock);
1064 write_unlock(&idev->lock);
Joe Perchesf3213832012-05-15 14:11:53 +00001065 pr_warn("%s: regeneration time exceeded - disabled temporary address support\n",
1066 __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001067 in6_dev_put(idev);
1068 ret = -1;
1069 goto out;
1070 }
1071 in6_ifa_hold(ifp);
1072 memcpy(addr.s6_addr, ifp->addr.s6_addr, 8);
Sorin Dumitrueb7e0572012-08-30 02:01:45 +00001073 __ipv6_try_regen_rndid(idev, tmpaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001074 memcpy(&addr.s6_addr[8], idev->rndid, 8);
Lorenzo Colitti76f793e2011-07-26 13:50:49 +00001075 age = (now - ifp->tstamp) / HZ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076 tmp_valid_lft = min_t(__u32,
1077 ifp->valid_lft,
Glenn Wurster7a876b02010-09-27 07:10:10 +00001078 idev->cnf.temp_valid_lft + age);
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001079 tmp_prefered_lft = min_t(__u32,
1080 ifp->prefered_lft,
Glenn Wurster7a876b02010-09-27 07:10:10 +00001081 idev->cnf.temp_prefered_lft + age -
Ben Hutchings784e2712010-06-26 11:42:55 +00001082 idev->cnf.max_desync_factor);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001083 tmp_plen = ifp->prefix_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001084 tmp_tstamp = ifp->tstamp;
1085 spin_unlock_bh(&ifp->lock);
1086
Benoit Boissinoteac55bf2008-04-02 00:01:35 -07001087 regen_advance = idev->cnf.regen_max_retry *
David S. Miller7eaa48a2013-08-20 23:44:39 -07001088 idev->cnf.dad_transmits *
1089 idev->nd_parms->retrans_time / HZ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001090 write_unlock(&idev->lock);
Neil Horman95c385b2007-04-25 17:08:10 -07001091
Benoit Boissinoteac55bf2008-04-02 00:01:35 -07001092 /* A temporary address is created only if this calculated Preferred
1093 * Lifetime is greater than REGEN_ADVANCE time units. In particular,
1094 * an implementation must not create a temporary address with a zero
1095 * Preferred Lifetime.
1096 */
1097 if (tmp_prefered_lft <= regen_advance) {
1098 in6_ifa_put(ifp);
1099 in6_dev_put(idev);
1100 ret = -1;
1101 goto out;
1102 }
1103
Neil Horman95c385b2007-04-25 17:08:10 -07001104 addr_flags = IFA_F_TEMPORARY;
1105 /* set in addrconf_prefix_rcv() */
1106 if (ifp->flags & IFA_F_OPTIMISTIC)
1107 addr_flags |= IFA_F_OPTIMISTIC;
1108
Hannes Frederic Sowa4b08a8f2013-08-16 13:02:27 +02001109 ift = ipv6_add_addr(idev, &addr, NULL, tmp_plen,
1110 ipv6_addr_scope(&addr), addr_flags,
1111 tmp_valid_lft, tmp_prefered_lft);
1112 if (IS_ERR(ift)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001113 in6_ifa_put(ifp);
1114 in6_dev_put(idev);
Joe Perchesf3213832012-05-15 14:11:53 +00001115 pr_info("%s: retry temporary address regeneration\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001116 tmpaddr = &addr;
1117 write_lock(&idev->lock);
1118 goto retry;
1119 }
1120
1121 spin_lock_bh(&ift->lock);
1122 ift->ifpub = ifp;
Lorenzo Colitti76f793e2011-07-26 13:50:49 +00001123 ift->cstamp = now;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001124 ift->tstamp = tmp_tstamp;
1125 spin_unlock_bh(&ift->lock);
1126
David S. Millercf22f9a2012-04-14 21:37:40 -04001127 addrconf_dad_start(ift);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001128 in6_ifa_put(ift);
1129 in6_dev_put(idev);
1130out:
1131 return ret;
1132}
1133#endif
1134
1135/*
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001136 * Choose an appropriate source address (RFC3484)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001137 */
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001138enum {
1139 IPV6_SADDR_RULE_INIT = 0,
1140 IPV6_SADDR_RULE_LOCAL,
1141 IPV6_SADDR_RULE_SCOPE,
1142 IPV6_SADDR_RULE_PREFERRED,
1143#ifdef CONFIG_IPV6_MIP6
1144 IPV6_SADDR_RULE_HOA,
1145#endif
1146 IPV6_SADDR_RULE_OIF,
1147 IPV6_SADDR_RULE_LABEL,
1148#ifdef CONFIG_IPV6_PRIVACY
1149 IPV6_SADDR_RULE_PRIVACY,
1150#endif
1151 IPV6_SADDR_RULE_ORCHID,
1152 IPV6_SADDR_RULE_PREFIX,
1153 IPV6_SADDR_RULE_MAX
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001154};
1155
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001156struct ipv6_saddr_score {
1157 int rule;
1158 int addr_type;
1159 struct inet6_ifaddr *ifa;
1160 DECLARE_BITMAP(scorebits, IPV6_SADDR_RULE_MAX);
1161 int scopedist;
1162 int matchlen;
1163};
1164
1165struct ipv6_saddr_dst {
YOSHIFUJI Hideaki9acd9f32008-04-10 15:42:10 +09001166 const struct in6_addr *addr;
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001167 int ifindex;
1168 int scope;
1169 int label;
YOSHIFUJI Hideaki7cbca672008-03-25 09:37:42 +09001170 unsigned int prefs;
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001171};
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001172
Dave Jonesb6f99a22007-03-22 12:27:49 -07001173static inline int ipv6_saddr_preferred(int type)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001174{
Ulrich Weber45bb0062010-02-25 23:28:58 +00001175 if (type & (IPV6_ADDR_MAPPED|IPV6_ADDR_COMPATv4|IPV6_ADDR_LOOPBACK))
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001176 return 1;
1177 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001178}
1179
Benjamin Thery3de23252008-05-28 14:51:24 +02001180static int ipv6_get_saddr_eval(struct net *net,
1181 struct ipv6_saddr_score *score,
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001182 struct ipv6_saddr_dst *dst,
1183 int i)
1184{
1185 int ret;
1186
1187 if (i <= score->rule) {
1188 switch (i) {
1189 case IPV6_SADDR_RULE_SCOPE:
1190 ret = score->scopedist;
1191 break;
1192 case IPV6_SADDR_RULE_PREFIX:
1193 ret = score->matchlen;
1194 break;
1195 default:
1196 ret = !!test_bit(i, score->scorebits);
1197 }
1198 goto out;
1199 }
1200
1201 switch (i) {
1202 case IPV6_SADDR_RULE_INIT:
1203 /* Rule 0: remember if hiscore is not ready yet */
1204 ret = !!score->ifa;
1205 break;
1206 case IPV6_SADDR_RULE_LOCAL:
1207 /* Rule 1: Prefer same address */
1208 ret = ipv6_addr_equal(&score->ifa->addr, dst->addr);
1209 break;
1210 case IPV6_SADDR_RULE_SCOPE:
1211 /* Rule 2: Prefer appropriate scope
1212 *
1213 * ret
1214 * ^
1215 * -1 | d 15
1216 * ---+--+-+---> scope
1217 * |
1218 * | d is scope of the destination.
1219 * B-d | \
1220 * | \ <- smaller scope is better if
1221 * B-15 | \ if scope is enough for destinaion.
1222 * | ret = B - scope (-1 <= scope >= d <= 15).
1223 * d-C-1 | /
1224 * |/ <- greater is better
1225 * -C / if scope is not enough for destination.
1226 * /| ret = scope - C (-1 <= d < scope <= 15).
1227 *
1228 * d - C - 1 < B -15 (for all -1 <= d <= 15).
1229 * C > d + 14 - B >= 15 + 14 - B = 29 - B.
1230 * Assume B = 0 and we get C > 29.
1231 */
1232 ret = __ipv6_addr_src_scope(score->addr_type);
1233 if (ret >= dst->scope)
1234 ret = -ret;
1235 else
1236 ret -= 128; /* 30 is enough */
1237 score->scopedist = ret;
1238 break;
1239 case IPV6_SADDR_RULE_PREFERRED:
1240 /* Rule 3: Avoid deprecated and optimistic addresses */
1241 ret = ipv6_saddr_preferred(score->addr_type) ||
1242 !(score->ifa->flags & (IFA_F_DEPRECATED|IFA_F_OPTIMISTIC));
1243 break;
1244#ifdef CONFIG_IPV6_MIP6
1245 case IPV6_SADDR_RULE_HOA:
YOSHIFUJI Hideaki7cbca672008-03-25 09:37:42 +09001246 {
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001247 /* Rule 4: Prefer home address */
YOSHIFUJI Hideaki7cbca672008-03-25 09:37:42 +09001248 int prefhome = !(dst->prefs & IPV6_PREFER_SRC_COA);
1249 ret = !(score->ifa->flags & IFA_F_HOMEADDRESS) ^ prefhome;
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001250 break;
YOSHIFUJI Hideaki7cbca672008-03-25 09:37:42 +09001251 }
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001252#endif
1253 case IPV6_SADDR_RULE_OIF:
1254 /* Rule 5: Prefer outgoing interface */
1255 ret = (!dst->ifindex ||
1256 dst->ifindex == score->ifa->idev->dev->ifindex);
1257 break;
1258 case IPV6_SADDR_RULE_LABEL:
1259 /* Rule 6: Prefer matching label */
Benjamin Thery3de23252008-05-28 14:51:24 +02001260 ret = ipv6_addr_label(net,
1261 &score->ifa->addr, score->addr_type,
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001262 score->ifa->idev->dev->ifindex) == dst->label;
1263 break;
1264#ifdef CONFIG_IPV6_PRIVACY
1265 case IPV6_SADDR_RULE_PRIVACY:
YOSHIFUJI Hideaki7cbca672008-03-25 09:37:42 +09001266 {
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001267 /* Rule 7: Prefer public address
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001268 * Note: prefer temporary address if use_tempaddr >= 2
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001269 */
YOSHIFUJI Hideaki7cbca672008-03-25 09:37:42 +09001270 int preftmp = dst->prefs & (IPV6_PREFER_SRC_PUBLIC|IPV6_PREFER_SRC_TMP) ?
1271 !!(dst->prefs & IPV6_PREFER_SRC_TMP) :
1272 score->ifa->idev->cnf.use_tempaddr >= 2;
1273 ret = (!(score->ifa->flags & IFA_F_TEMPORARY)) ^ preftmp;
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001274 break;
YOSHIFUJI Hideaki7cbca672008-03-25 09:37:42 +09001275 }
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001276#endif
1277 case IPV6_SADDR_RULE_ORCHID:
1278 /* Rule 8-: Prefer ORCHID vs ORCHID or
1279 * non-ORCHID vs non-ORCHID
1280 */
1281 ret = !(ipv6_addr_orchid(&score->ifa->addr) ^
1282 ipv6_addr_orchid(dst->addr));
1283 break;
1284 case IPV6_SADDR_RULE_PREFIX:
1285 /* Rule 8: Use longest matching prefix */
YOSHIFUJI Hideaki / 吉藤英明91b4b042012-09-10 18:41:07 +00001286 ret = ipv6_addr_diff(&score->ifa->addr, dst->addr);
1287 if (ret > score->ifa->prefix_len)
1288 ret = score->ifa->prefix_len;
1289 score->matchlen = ret;
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001290 break;
1291 default:
1292 ret = 0;
1293 }
1294
1295 if (ret)
1296 __set_bit(i, score->scorebits);
1297 score->rule = i;
1298out:
1299 return ret;
1300}
1301
Patrick McHardyb3f644f2012-08-26 19:14:14 +02001302int ipv6_dev_get_saddr(struct net *net, const struct net_device *dst_dev,
YOSHIFUJI Hideaki9acd9f32008-04-10 15:42:10 +09001303 const struct in6_addr *daddr, unsigned int prefs,
YOSHIFUJI Hideaki7cbca672008-03-25 09:37:42 +09001304 struct in6_addr *saddr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001305{
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001306 struct ipv6_saddr_score scores[2],
1307 *score = &scores[0], *hiscore = &scores[1];
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001308 struct ipv6_saddr_dst dst;
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001309 struct net_device *dev;
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001310 int dst_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001311
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001312 dst_type = __ipv6_addr_type(daddr);
1313 dst.addr = daddr;
1314 dst.ifindex = dst_dev ? dst_dev->ifindex : 0;
1315 dst.scope = __ipv6_addr_src_scope(dst_type);
Benjamin Thery3de23252008-05-28 14:51:24 +02001316 dst.label = ipv6_addr_label(net, daddr, dst_type, dst.ifindex);
YOSHIFUJI Hideaki7cbca672008-03-25 09:37:42 +09001317 dst.prefs = prefs;
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001318
1319 hiscore->rule = -1;
1320 hiscore->ifa = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001321
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -07001322 rcu_read_lock();
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001323
Eric Dumazetc6d14c82009-11-04 05:43:23 -08001324 for_each_netdev_rcu(net, dev) {
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001325 struct inet6_dev *idev;
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001326
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001327 /* Candidate Source Address (section 4)
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001328 * - multicast and link-local destination address,
1329 * the set of candidate source address MUST only
1330 * include addresses assigned to interfaces
1331 * belonging to the same link as the outgoing
1332 * interface.
1333 * (- For site-local destination addresses, the
1334 * set of candidate source addresses MUST only
1335 * include addresses assigned to interfaces
1336 * belonging to the same site as the outgoing
1337 * interface.)
1338 */
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001339 if (((dst_type & IPV6_ADDR_MULTICAST) ||
1340 dst.scope <= IPV6_ADDR_SCOPE_LINKLOCAL) &&
1341 dst.ifindex && dev->ifindex != dst.ifindex)
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001342 continue;
1343
Linus Torvalds1da177e2005-04-16 15:20:36 -07001344 idev = __in6_dev_get(dev);
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001345 if (!idev)
1346 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001347
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001348 read_lock_bh(&idev->lock);
stephen hemminger502a2ff2010-03-17 20:31:13 +00001349 list_for_each_entry(score->ifa, &idev->addr_list, if_list) {
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001350 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001351
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001352 /*
YOSHIFUJI Hideaki6b3ae802005-12-21 22:58:01 +09001353 * - Tentative Address (RFC2462 section 5.4)
1354 * - A tentative address is not considered
1355 * "assigned to an interface" in the traditional
Neil Horman95c385b2007-04-25 17:08:10 -07001356 * sense, unless it is also flagged as optimistic.
YOSHIFUJI Hideaki6b3ae802005-12-21 22:58:01 +09001357 * - Candidate Source Address (section 4)
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001358 * - In any case, anycast addresses, multicast
1359 * addresses, and the unspecified address MUST
1360 * NOT be included in a candidate set.
1361 */
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001362 if ((score->ifa->flags & IFA_F_TENTATIVE) &&
1363 (!(score->ifa->flags & IFA_F_OPTIMISTIC)))
YOSHIFUJI Hideaki6b3ae802005-12-21 22:58:01 +09001364 continue;
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001365
1366 score->addr_type = __ipv6_addr_type(&score->ifa->addr);
1367
1368 if (unlikely(score->addr_type == IPV6_ADDR_ANY ||
1369 score->addr_type & IPV6_ADDR_MULTICAST)) {
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001370 LIMIT_NETDEBUG(KERN_DEBUG
Joe Perches3b6d821c2007-11-19 23:47:25 -08001371 "ADDRCONF: unspecified / multicast address "
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001372 "assigned as unicast address on %s",
1373 dev->name);
1374 continue;
1375 }
1376
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001377 score->rule = -1;
1378 bitmap_zero(score->scorebits, IPV6_SADDR_RULE_MAX);
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001379
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001380 for (i = 0; i < IPV6_SADDR_RULE_MAX; i++) {
1381 int minihiscore, miniscore;
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001382
Benjamin Thery3de23252008-05-28 14:51:24 +02001383 minihiscore = ipv6_get_saddr_eval(net, hiscore, &dst, i);
1384 miniscore = ipv6_get_saddr_eval(net, score, &dst, i);
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001385
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001386 if (minihiscore > miniscore) {
1387 if (i == IPV6_SADDR_RULE_SCOPE &&
1388 score->scopedist > 0) {
1389 /*
1390 * special case:
1391 * each remaining entry
1392 * has too small (not enough)
1393 * scope, because ifa entries
1394 * are sorted by their scope
1395 * values.
1396 */
1397 goto try_nextdev;
1398 }
1399 break;
1400 } else if (minihiscore < miniscore) {
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001401 if (hiscore->ifa)
1402 in6_ifa_put(hiscore->ifa);
1403
1404 in6_ifa_hold(score->ifa);
1405
Ilpo Järvinena0bffff2009-03-21 13:36:17 -07001406 swap(hiscore, score);
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001407
1408 /* restore our iterator */
1409 score->ifa = hiscore->ifa;
1410
1411 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001412 }
1413 }
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001414 }
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001415try_nextdev:
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001416 read_unlock_bh(&idev->lock);
1417 }
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -07001418 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001419
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001420 if (!hiscore->ifa)
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001421 return -EADDRNOTAVAIL;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001422
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00001423 *saddr = hiscore->ifa->addr;
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001424 in6_ifa_put(hiscore->ifa);
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001425 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001426}
YOSHIFUJI Hideaki5e5f3f02008-03-03 21:44:34 +09001427EXPORT_SYMBOL(ipv6_dev_get_saddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001428
Amerigo Wang89657792013-06-29 21:30:49 +08001429int __ipv6_get_lladdr(struct inet6_dev *idev, struct in6_addr *addr,
1430 unsigned char banned_flags)
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02001431{
1432 struct inet6_ifaddr *ifp;
1433 int err = -EADDRNOTAVAIL;
1434
1435 list_for_each_entry(ifp, &idev->addr_list, if_list) {
1436 if (ifp->scope == IFA_LINK &&
1437 !(ifp->flags & banned_flags)) {
1438 *addr = ifp->addr;
1439 err = 0;
1440 break;
1441 }
1442 }
1443 return err;
1444}
1445
Neil Horman95c385b2007-04-25 17:08:10 -07001446int ipv6_get_lladdr(struct net_device *dev, struct in6_addr *addr,
1447 unsigned char banned_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001448{
1449 struct inet6_dev *idev;
1450 int err = -EADDRNOTAVAIL;
1451
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -07001452 rcu_read_lock();
Stephen Hemmingere21e8462010-03-20 16:09:01 -07001453 idev = __in6_dev_get(dev);
1454 if (idev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001455 read_lock_bh(&idev->lock);
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02001456 err = __ipv6_get_lladdr(idev, addr, banned_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001457 read_unlock_bh(&idev->lock);
1458 }
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -07001459 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001460 return err;
1461}
1462
1463static int ipv6_count_addresses(struct inet6_dev *idev)
1464{
1465 int cnt = 0;
1466 struct inet6_ifaddr *ifp;
1467
1468 read_lock_bh(&idev->lock);
stephen hemminger502a2ff2010-03-17 20:31:13 +00001469 list_for_each_entry(ifp, &idev->addr_list, if_list)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001470 cnt++;
1471 read_unlock_bh(&idev->lock);
1472 return cnt;
1473}
1474
Eric Dumazetb71d1d42011-04-22 04:53:02 +00001475int ipv6_chk_addr(struct net *net, const struct in6_addr *addr,
Florian Westphal2a7851b2013-05-17 03:56:10 +00001476 const struct net_device *dev, int strict)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001477{
Stephen Hemmingereedf0422010-05-17 22:27:12 -07001478 struct inet6_ifaddr *ifp;
Eric Dumazetddbe5032012-07-18 08:11:12 +00001479 unsigned int hash = inet6_addr_hash(addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001480
stephen hemminger5c578ae2010-03-17 20:31:11 +00001481 rcu_read_lock_bh();
Sasha Levinb67bfe02013-02-27 17:06:00 -08001482 hlist_for_each_entry_rcu(ifp, &inet6_addr_lst[hash], addr_lst) {
YOSHIFUJI Hideaki878628f2008-03-26 03:57:35 +09001483 if (!net_eq(dev_net(ifp->idev->dev), net))
Daniel Lezcanobfeade02008-01-10 22:43:18 -08001484 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001485 if (ipv6_addr_equal(&ifp->addr, addr) &&
Stephen Hemmingereedf0422010-05-17 22:27:12 -07001486 !(ifp->flags&IFA_F_TENTATIVE) &&
1487 (dev == NULL || ifp->idev->dev == dev ||
1488 !(ifp->scope&(IFA_LINK|IFA_HOST) || strict))) {
1489 rcu_read_unlock_bh();
1490 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001491 }
1492 }
stephen hemminger5c578ae2010-03-17 20:31:11 +00001493
Stephen Hemmingereedf0422010-05-17 22:27:12 -07001494 rcu_read_unlock_bh();
1495 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001496}
YOSHIFUJI Hideaki71590392007-02-22 22:05:40 +09001497EXPORT_SYMBOL(ipv6_chk_addr);
1498
David S. Miller3e81c6d2010-03-20 16:18:00 -07001499static bool ipv6_chk_same_addr(struct net *net, const struct in6_addr *addr,
1500 struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001501{
Eric Dumazetddbe5032012-07-18 08:11:12 +00001502 unsigned int hash = inet6_addr_hash(addr);
stephen hemmingerc2e21292010-03-17 20:31:10 +00001503 struct inet6_ifaddr *ifp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001504
Sasha Levinb67bfe02013-02-27 17:06:00 -08001505 hlist_for_each_entry(ifp, &inet6_addr_lst[hash], addr_lst) {
YOSHIFUJI Hideaki878628f2008-03-26 03:57:35 +09001506 if (!net_eq(dev_net(ifp->idev->dev), net))
Daniel Lezcano06bfe652008-01-10 22:43:42 -08001507 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001508 if (ipv6_addr_equal(&ifp->addr, addr)) {
1509 if (dev == NULL || ifp->idev->dev == dev)
David S. Miller3e81c6d2010-03-20 16:18:00 -07001510 return true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001511 }
1512 }
David S. Miller3e81c6d2010-03-20 16:18:00 -07001513 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001514}
1515
Catalin\(ux\) M. BOIE7df37ff2013-09-23 23:04:19 +03001516/* Compares an address/prefix_len with addresses on device @dev.
1517 * If one is found it returns true.
1518 */
1519bool ipv6_chk_custom_prefix(const struct in6_addr *addr,
1520 const unsigned int prefix_len, struct net_device *dev)
1521{
1522 struct inet6_dev *idev;
1523 struct inet6_ifaddr *ifa;
1524 bool ret = false;
1525
1526 rcu_read_lock();
1527 idev = __in6_dev_get(dev);
1528 if (idev) {
1529 read_lock_bh(&idev->lock);
1530 list_for_each_entry(ifa, &idev->addr_list, if_list) {
1531 ret = ipv6_prefix_equal(addr, &ifa->addr, prefix_len);
1532 if (ret)
1533 break;
1534 }
1535 read_unlock_bh(&idev->lock);
1536 }
1537 rcu_read_unlock();
1538
1539 return ret;
1540}
1541EXPORT_SYMBOL(ipv6_chk_custom_prefix);
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 hemminger5c578ae2010-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 hemminger5c578ae2010-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
Nicolas Dichtele8377352013-08-20 12:16:06 +02001817static int addrconf_ifid_ip6tnl(u8 *eui, struct net_device *dev)
1818{
1819 memcpy(eui, dev->perm_addr, 3);
1820 memcpy(eui + 5, dev->perm_addr + 3, 3);
1821 eui[3] = 0xFF;
1822 eui[4] = 0xFE;
1823 eui[0] ^= 2;
1824 return 0;
1825}
1826
Linus Torvalds1da177e2005-04-16 15:20:36 -07001827static int ipv6_generate_eui64(u8 *eui, struct net_device *dev)
1828{
1829 switch (dev->type) {
1830 case ARPHRD_ETHER:
1831 case ARPHRD_FDDI:
YOSHIFUJI Hideaki073a8e02006-03-20 16:54:49 -08001832 return addrconf_ifid_eui48(eui, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001833 case ARPHRD_ARCNET:
YOSHIFUJI Hideaki073a8e02006-03-20 16:54:49 -08001834 return addrconf_ifid_arcnet(eui, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001835 case ARPHRD_INFINIBAND:
YOSHIFUJI Hideaki073a8e02006-03-20 16:54:49 -08001836 return addrconf_ifid_infiniband(eui, dev);
Fred L. Templinc7dc89c2007-11-29 22:11:40 +11001837 case ARPHRD_SIT:
YOSHIFUJI Hideakidfd982b2008-04-10 15:42:09 +09001838 return addrconf_ifid_sit(eui, dev);
stephen hemmingeraee80b52011-06-08 10:44:30 +00001839 case ARPHRD_IPGRE:
1840 return addrconf_ifid_gre(eui, dev);
alex.bluesman.smirnov@gmail.com06a4c1c2012-05-10 03:25:52 +00001841 case ARPHRD_IEEE802154:
1842 return addrconf_ifid_eui64(eui, dev);
YOSHIFUJI Hideaki / 吉藤英明cb6bf352013-03-25 08:26:24 +00001843 case ARPHRD_IEEE1394:
1844 return addrconf_ifid_ieee1394(eui, dev);
Nicolas Dichtele8377352013-08-20 12:16:06 +02001845 case ARPHRD_TUNNEL6:
1846 return addrconf_ifid_ip6tnl(eui, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001847 }
1848 return -1;
1849}
1850
1851static int ipv6_inherit_eui64(u8 *eui, struct inet6_dev *idev)
1852{
1853 int err = -1;
1854 struct inet6_ifaddr *ifp;
1855
1856 read_lock_bh(&idev->lock);
stephen hemminger502a2ff2010-03-17 20:31:13 +00001857 list_for_each_entry(ifp, &idev->addr_list, if_list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001858 if (ifp->scope == IFA_LINK && !(ifp->flags&IFA_F_TENTATIVE)) {
1859 memcpy(eui, ifp->addr.s6_addr+8, 8);
1860 err = 0;
1861 break;
1862 }
1863 }
1864 read_unlock_bh(&idev->lock);
1865 return err;
1866}
1867
1868#ifdef CONFIG_IPV6_PRIVACY
1869/* (re)generation of randomized interface identifier (RFC 3041 3.2, 3.5) */
Sorin Dumitrueb7e0572012-08-30 02:01:45 +00001870static void __ipv6_regen_rndid(struct inet6_dev *idev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001871{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001872regen:
YOSHIFUJI Hideaki955189e2006-03-20 16:54:09 -08001873 get_random_bytes(idev->rndid, sizeof(idev->rndid));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001874 idev->rndid[0] &= ~0x02;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001875
1876 /*
1877 * <draft-ietf-ipngwg-temp-addresses-v2-00.txt>:
1878 * check if generated address is not inappropriate
1879 *
1880 * - Reserved subnet anycast (RFC 2526)
1881 * 11111101 11....11 1xxxxxxx
Fred L. Templinc7dc89c2007-11-29 22:11:40 +11001882 * - ISATAP (RFC4214) 6.1
Linus Torvalds1da177e2005-04-16 15:20:36 -07001883 * 00-00-5E-FE-xx-xx-xx-xx
1884 * - value 0
1885 * - XXX: already assigned to an address on the device
1886 */
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001887 if (idev->rndid[0] == 0xfd &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07001888 (idev->rndid[1]&idev->rndid[2]&idev->rndid[3]&idev->rndid[4]&idev->rndid[5]&idev->rndid[6]) == 0xff &&
1889 (idev->rndid[7]&0x80))
1890 goto regen;
1891 if ((idev->rndid[0]|idev->rndid[1]) == 0) {
1892 if (idev->rndid[2] == 0x5e && idev->rndid[3] == 0xfe)
1893 goto regen;
1894 if ((idev->rndid[2]|idev->rndid[3]|idev->rndid[4]|idev->rndid[5]|idev->rndid[6]|idev->rndid[7]) == 0x00)
1895 goto regen;
1896 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001897}
1898
1899static void ipv6_regen_rndid(unsigned long data)
1900{
1901 struct inet6_dev *idev = (struct inet6_dev *) data;
1902 unsigned long expires;
1903
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -07001904 rcu_read_lock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001905 write_lock_bh(&idev->lock);
1906
1907 if (idev->dead)
1908 goto out;
1909
Sorin Dumitrueb7e0572012-08-30 02:01:45 +00001910 __ipv6_regen_rndid(idev);
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001911
Linus Torvalds1da177e2005-04-16 15:20:36 -07001912 expires = jiffies +
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001913 idev->cnf.temp_prefered_lft * HZ -
Ben Hutchings784e2712010-06-26 11:42:55 +00001914 idev->cnf.regen_max_retry * idev->cnf.dad_transmits * idev->nd_parms->retrans_time -
1915 idev->cnf.max_desync_factor * HZ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001916 if (time_before(expires, jiffies)) {
Joe Perchesf3213832012-05-15 14:11:53 +00001917 pr_warn("%s: too short regeneration interval; timer disabled for %s\n",
1918 __func__, idev->dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001919 goto out;
1920 }
1921
1922 if (!mod_timer(&idev->regen_timer, expires))
1923 in6_dev_hold(idev);
1924
1925out:
1926 write_unlock_bh(&idev->lock);
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -07001927 rcu_read_unlock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001928 in6_dev_put(idev);
1929}
1930
Sorin Dumitrueb7e0572012-08-30 02:01:45 +00001931static void __ipv6_try_regen_rndid(struct inet6_dev *idev, struct in6_addr *tmpaddr)
Eldad Zack8e5e8f32012-04-01 07:49:08 +00001932{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001933 if (tmpaddr && memcmp(idev->rndid, &tmpaddr->s6_addr[8], 8) == 0)
Sorin Dumitrueb7e0572012-08-30 02:01:45 +00001934 __ipv6_regen_rndid(idev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001935}
1936#endif
1937
1938/*
1939 * Add prefix route.
1940 */
1941
1942static void
1943addrconf_prefix_route(struct in6_addr *pfx, int plen, struct net_device *dev,
Jamal Hadi Salime431b8c2005-06-18 22:55:31 -07001944 unsigned long expires, u32 flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001945{
Thomas Graf86872cb2006-08-22 00:01:08 -07001946 struct fib6_config cfg = {
1947 .fc_table = RT6_TABLE_PREFIX,
1948 .fc_metric = IP6_RT_PRIO_ADDRCONF,
1949 .fc_ifindex = dev->ifindex,
1950 .fc_expires = expires,
1951 .fc_dst_len = plen,
1952 .fc_flags = RTF_UP | flags,
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09001953 .fc_nlinfo.nl_net = dev_net(dev),
Stephen Hemmingerf410a1f2008-08-23 05:16:46 -07001954 .fc_protocol = RTPROT_KERNEL,
Thomas Graf86872cb2006-08-22 00:01:08 -07001955 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001956
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00001957 cfg.fc_dst = *pfx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001958
1959 /* Prevent useless cloning on PtP SIT.
1960 This thing is done here expecting that the whole
1961 class of non-broadcast devices need not cloning.
1962 */
Amerigo Wang07a93622012-10-29 16:23:10 +00001963#if IS_ENABLED(CONFIG_IPV6_SIT)
Thomas Graf86872cb2006-08-22 00:01:08 -07001964 if (dev->type == ARPHRD_SIT && (dev->flags & IFF_POINTOPOINT))
1965 cfg.fc_flags |= RTF_NONEXTHOP;
Joerg Roedel0be669b2006-10-10 14:49:53 -07001966#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001967
Thomas Graf86872cb2006-08-22 00:01:08 -07001968 ip6_route_add(&cfg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001969}
1970
Andreas Hofmeister14ef37b2011-10-26 03:24:29 +00001971
1972static struct rt6_info *addrconf_get_prefix_route(const struct in6_addr *pfx,
1973 int plen,
1974 const struct net_device *dev,
1975 u32 flags, u32 noflags)
1976{
1977 struct fib6_node *fn;
1978 struct rt6_info *rt = NULL;
1979 struct fib6_table *table;
1980
1981 table = fib6_get_table(dev_net(dev), RT6_TABLE_PREFIX);
1982 if (table == NULL)
1983 return NULL;
1984
Li RongQing5744dd92012-09-11 21:59:01 +00001985 read_lock_bh(&table->tb6_lock);
Andreas Hofmeister14ef37b2011-10-26 03:24:29 +00001986 fn = fib6_locate(&table->tb6_root, pfx, plen, NULL, 0);
1987 if (!fn)
1988 goto out;
1989 for (rt = fn->leaf; rt; rt = rt->dst.rt6_next) {
David S. Millerd1918542011-12-28 20:19:20 -05001990 if (rt->dst.dev->ifindex != dev->ifindex)
Andreas Hofmeister14ef37b2011-10-26 03:24:29 +00001991 continue;
1992 if ((rt->rt6i_flags & flags) != flags)
1993 continue;
Romain Kuntz85da53b2013-01-09 15:02:26 +01001994 if ((rt->rt6i_flags & noflags) != 0)
Andreas Hofmeister14ef37b2011-10-26 03:24:29 +00001995 continue;
1996 dst_hold(&rt->dst);
1997 break;
1998 }
1999out:
Li RongQing5744dd92012-09-11 21:59:01 +00002000 read_unlock_bh(&table->tb6_lock);
Andreas Hofmeister14ef37b2011-10-26 03:24:29 +00002001 return rt;
2002}
2003
2004
Linus Torvalds1da177e2005-04-16 15:20:36 -07002005/* Create "default" multicast route to the interface */
2006
2007static void addrconf_add_mroute(struct net_device *dev)
2008{
Thomas Graf86872cb2006-08-22 00:01:08 -07002009 struct fib6_config cfg = {
2010 .fc_table = RT6_TABLE_LOCAL,
2011 .fc_metric = IP6_RT_PRIO_ADDRCONF,
2012 .fc_ifindex = dev->ifindex,
2013 .fc_dst_len = 8,
2014 .fc_flags = RTF_UP,
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09002015 .fc_nlinfo.nl_net = dev_net(dev),
Thomas Graf86872cb2006-08-22 00:01:08 -07002016 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002017
Thomas Graf86872cb2006-08-22 00:01:08 -07002018 ipv6_addr_set(&cfg.fc_dst, htonl(0xFF000000), 0, 0, 0);
2019
2020 ip6_route_add(&cfg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002021}
2022
Amerigo Wang07a93622012-10-29 16:23:10 +00002023#if IS_ENABLED(CONFIG_IPV6_SIT)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002024static void sit_route_add(struct net_device *dev)
2025{
Thomas Graf86872cb2006-08-22 00:01:08 -07002026 struct fib6_config cfg = {
2027 .fc_table = RT6_TABLE_MAIN,
2028 .fc_metric = IP6_RT_PRIO_ADDRCONF,
2029 .fc_ifindex = dev->ifindex,
2030 .fc_dst_len = 96,
2031 .fc_flags = RTF_UP | RTF_NONEXTHOP,
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09002032 .fc_nlinfo.nl_net = dev_net(dev),
Thomas Graf86872cb2006-08-22 00:01:08 -07002033 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002034
2035 /* prefix length - 96 bits "::d.d.d.d" */
Thomas Graf86872cb2006-08-22 00:01:08 -07002036 ip6_route_add(&cfg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002037}
Joerg Roedel0be669b2006-10-10 14:49:53 -07002038#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002039
Linus Torvalds1da177e2005-04-16 15:20:36 -07002040static struct inet6_dev *addrconf_add_dev(struct net_device *dev)
2041{
2042 struct inet6_dev *idev;
2043
2044 ASSERT_RTNL();
2045
Stephen Hemmingere21e8462010-03-20 16:09:01 -07002046 idev = ipv6_find_idev(dev);
2047 if (!idev)
Brian Haley64e724f2010-07-20 10:34:30 +00002048 return ERR_PTR(-ENOBUFS);
2049
2050 if (idev->cnf.disable_ipv6)
2051 return ERR_PTR(-EACCES);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002052
2053 /* Add default multicast route */
Li Wei4af04ab2011-12-06 21:23:45 +00002054 if (!(dev->flags & IFF_LOOPBACK))
2055 addrconf_add_mroute(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002056
Linus Torvalds1da177e2005-04-16 15:20:36 -07002057 return idev;
2058}
2059
Neil Hormane6bff992012-01-04 10:49:15 +00002060void addrconf_prefix_rcv(struct net_device *dev, u8 *opt, int len, bool sllao)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002061{
2062 struct prefix_info *pinfo;
2063 __u32 valid_lft;
2064 __u32 prefered_lft;
2065 int addr_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002066 struct inet6_dev *in6_dev;
Brian Haley56d417b2009-06-01 03:07:33 -07002067 struct net *net = dev_net(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002068
2069 pinfo = (struct prefix_info *) opt;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002070
Linus Torvalds1da177e2005-04-16 15:20:36 -07002071 if (len < sizeof(struct prefix_info)) {
dingtianhongba3542e2013-08-17 10:27:04 +08002072 ADBG("addrconf: prefix option too short\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002073 return;
2074 }
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002075
Linus Torvalds1da177e2005-04-16 15:20:36 -07002076 /*
2077 * Validation checks ([ADDRCONF], page 19)
2078 */
2079
2080 addr_type = ipv6_addr_type(&pinfo->prefix);
2081
2082 if (addr_type & (IPV6_ADDR_MULTICAST|IPV6_ADDR_LINKLOCAL))
2083 return;
2084
2085 valid_lft = ntohl(pinfo->valid);
2086 prefered_lft = ntohl(pinfo->prefered);
2087
2088 if (prefered_lft > valid_lft) {
Joe Perchese87cc472012-05-13 21:56:26 +00002089 net_warn_ratelimited("addrconf: prefix option has invalid lifetime\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002090 return;
2091 }
2092
2093 in6_dev = in6_dev_get(dev);
2094
2095 if (in6_dev == NULL) {
Joe Perchese87cc472012-05-13 21:56:26 +00002096 net_dbg_ratelimited("addrconf: device %s not configured\n",
2097 dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002098 return;
2099 }
2100
2101 /*
2102 * Two things going on here:
2103 * 1) Add routes for on-link prefixes
2104 * 2) Configure prefixes with the auto flag set
2105 */
2106
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +09002107 if (pinfo->onlink) {
2108 struct rt6_info *rt;
2109 unsigned long rt_expires;
2110
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07002111 /* Avoid arithmetic overflow. Really, we could
2112 * save rt_expires in seconds, likely valid_lft,
2113 * but it would require division in fib gc, that it
2114 * not good.
2115 */
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +09002116 if (HZ > USER_HZ)
2117 rt_expires = addrconf_timeout_fixup(valid_lft, HZ);
2118 else
2119 rt_expires = addrconf_timeout_fixup(valid_lft, USER_HZ);
YOSHIFUJI Hideaki3dd4bc62005-12-19 14:02:45 -08002120
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +09002121 if (addrconf_finite_timeout(rt_expires))
2122 rt_expires *= HZ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002123
Andreas Hofmeister14ef37b2011-10-26 03:24:29 +00002124 rt = addrconf_get_prefix_route(&pinfo->prefix,
2125 pinfo->prefix_len,
2126 dev,
2127 RTF_ADDRCONF | RTF_PREFIX_RT,
2128 RTF_GATEWAY | RTF_DEFAULT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002129
Andreas Hofmeister14ef37b2011-10-26 03:24:29 +00002130 if (rt) {
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07002131 /* Autoconf prefix route */
2132 if (valid_lft == 0) {
2133 ip6_del_rt(rt);
2134 rt = NULL;
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +09002135 } else if (addrconf_finite_timeout(rt_expires)) {
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07002136 /* not infinity */
Gao feng1716a962012-04-06 00:13:10 +00002137 rt6_set_expires(rt, jiffies + rt_expires);
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07002138 } else {
Gao feng1716a962012-04-06 00:13:10 +00002139 rt6_clean_expires(rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002140 }
2141 } else if (valid_lft) {
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07002142 clock_t expires = 0;
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +09002143 int flags = RTF_ADDRCONF | RTF_PREFIX_RT;
2144 if (addrconf_finite_timeout(rt_expires)) {
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07002145 /* not infinity */
2146 flags |= RTF_EXPIRES;
2147 expires = jiffies_to_clock_t(rt_expires);
2148 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002149 addrconf_prefix_route(&pinfo->prefix, pinfo->prefix_len,
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07002150 dev, expires, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002151 }
Amerigo Wang94e187c2012-10-29 00:13:19 +00002152 ip6_rt_put(rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002153 }
2154
2155 /* Try to figure out our local address for this prefix */
2156
2157 if (pinfo->autoconf && in6_dev->cnf.autoconf) {
Eldad Zack8e5e8f32012-04-01 07:49:08 +00002158 struct inet6_ifaddr *ifp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002159 struct in6_addr addr;
2160 int create = 0, update_lft = 0;
Daniel Borkmann617fe292013-04-09 03:47:16 +00002161 bool tokenized = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002162
2163 if (pinfo->prefix_len == 64) {
2164 memcpy(&addr, &pinfo->prefix, 8);
Daniel Borkmannf53adae2013-04-08 04:01:30 +00002165
2166 if (!ipv6_addr_any(&in6_dev->token)) {
2167 read_lock_bh(&in6_dev->lock);
2168 memcpy(addr.s6_addr + 8,
2169 in6_dev->token.s6_addr + 8, 8);
2170 read_unlock_bh(&in6_dev->lock);
Daniel Borkmann617fe292013-04-09 03:47:16 +00002171 tokenized = true;
Daniel Borkmannf53adae2013-04-08 04:01:30 +00002172 } else if (ipv6_generate_eui64(addr.s6_addr + 8, dev) &&
2173 ipv6_inherit_eui64(addr.s6_addr + 8, in6_dev)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002174 in6_dev_put(in6_dev);
2175 return;
2176 }
2177 goto ok;
2178 }
Joe Perchese87cc472012-05-13 21:56:26 +00002179 net_dbg_ratelimited("IPv6 addrconf: prefix with wrong length %d\n",
2180 pinfo->prefix_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002181 in6_dev_put(in6_dev);
2182 return;
2183
2184ok:
2185
YOSHIFUJI Hideaki53b79972008-07-19 22:35:03 -07002186 ifp = ipv6_get_ifaddr(net, &addr, dev, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002187
2188 if (ifp == NULL && valid_lft) {
2189 int max_addresses = in6_dev->cnf.max_addresses;
Neil Horman95c385b2007-04-25 17:08:10 -07002190 u32 addr_flags = 0;
2191
2192#ifdef CONFIG_IPV6_OPTIMISTIC_DAD
2193 if (in6_dev->cnf.optimistic_dad &&
Neil Hormane6bff992012-01-04 10:49:15 +00002194 !net->ipv6.devconf_all->forwarding && sllao)
Neil Horman95c385b2007-04-25 17:08:10 -07002195 addr_flags = IFA_F_OPTIMISTIC;
2196#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002197
2198 /* Do not allow to create too much of autoconfigured
2199 * addresses; this would be too easy way to crash kernel.
2200 */
2201 if (!max_addresses ||
2202 ipv6_count_addresses(in6_dev) < max_addresses)
Jiri Pirko3f8f5292013-08-01 10:41:27 +02002203 ifp = ipv6_add_addr(in6_dev, &addr, NULL,
2204 pinfo->prefix_len,
Neil Horman95c385b2007-04-25 17:08:10 -07002205 addr_type&IPV6_ADDR_SCOPE_MASK,
Jiri Benc8a226b22013-08-01 10:41:28 +02002206 addr_flags, valid_lft,
2207 prefered_lft);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002208
YOSHIFUJI Hideaki / 吉藤英明3f0d2ba2013-01-22 06:32:54 +00002209 if (IS_ERR_OR_NULL(ifp)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002210 in6_dev_put(in6_dev);
2211 return;
2212 }
2213
Jiri Benc8a226b22013-08-01 10:41:28 +02002214 update_lft = 0;
2215 create = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002216 ifp->cstamp = jiffies;
Daniel Borkmann617fe292013-04-09 03:47:16 +00002217 ifp->tokenized = tokenized;
David S. Millercf22f9a2012-04-14 21:37:40 -04002218 addrconf_dad_start(ifp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002219 }
2220
2221 if (ifp) {
2222 int flags;
2223 unsigned long now;
2224#ifdef CONFIG_IPV6_PRIVACY
2225 struct inet6_ifaddr *ift;
2226#endif
2227 u32 stored_lft;
2228
2229 /* update lifetime (RFC2462 5.5.3 e) */
2230 spin_lock(&ifp->lock);
2231 now = jiffies;
2232 if (ifp->valid_lft > (now - ifp->tstamp) / HZ)
2233 stored_lft = ifp->valid_lft - (now - ifp->tstamp) / HZ;
2234 else
2235 stored_lft = 0;
Jiri Benc8a226b22013-08-01 10:41:28 +02002236 if (!update_lft && !create && stored_lft) {
Paul Marksc9d55d52013-09-25 15:12:55 -07002237 const u32 minimum_lft = min(
2238 stored_lft, (u32)MIN_VALID_LIFETIME);
2239 valid_lft = max(valid_lft, minimum_lft);
2240
2241 /* RFC4862 Section 5.5.3e:
2242 * "Note that the preferred lifetime of the
2243 * corresponding address is always reset to
2244 * the Preferred Lifetime in the received
2245 * Prefix Information option, regardless of
2246 * whether the valid lifetime is also reset or
2247 * ignored."
2248 *
2249 * So we should always update prefered_lft here.
2250 */
2251 update_lft = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002252 }
2253
2254 if (update_lft) {
2255 ifp->valid_lft = valid_lft;
2256 ifp->prefered_lft = prefered_lft;
2257 ifp->tstamp = now;
2258 flags = ifp->flags;
2259 ifp->flags &= ~IFA_F_DEPRECATED;
2260 spin_unlock(&ifp->lock);
2261
2262 if (!(flags&IFA_F_TENTATIVE))
2263 ipv6_ifa_notify(0, ifp);
2264 } else
2265 spin_unlock(&ifp->lock);
2266
2267#ifdef CONFIG_IPV6_PRIVACY
2268 read_lock_bh(&in6_dev->lock);
2269 /* update all temporary addresses in the list */
Lorenzo Colitti76f793e2011-07-26 13:50:49 +00002270 list_for_each_entry(ift, &in6_dev->tempaddr_list,
2271 tmp_list) {
2272 int age, max_valid, max_prefered;
2273
Benoit Boissinotc6fbfac2008-04-02 00:00:58 -07002274 if (ifp != ift->ifpub)
2275 continue;
2276
Lorenzo Colitti76f793e2011-07-26 13:50:49 +00002277 /*
2278 * RFC 4941 section 3.3:
2279 * If a received option will extend the lifetime
2280 * of a public address, the lifetimes of
2281 * temporary addresses should be extended,
2282 * subject to the overall constraint that no
2283 * temporary addresses should ever remain
2284 * "valid" or "preferred" for a time longer than
2285 * (TEMP_VALID_LIFETIME) or
2286 * (TEMP_PREFERRED_LIFETIME - DESYNC_FACTOR),
2287 * respectively.
2288 */
2289 age = (now - ift->cstamp) / HZ;
2290 max_valid = in6_dev->cnf.temp_valid_lft - age;
2291 if (max_valid < 0)
2292 max_valid = 0;
2293
2294 max_prefered = in6_dev->cnf.temp_prefered_lft -
2295 in6_dev->cnf.max_desync_factor -
2296 age;
2297 if (max_prefered < 0)
2298 max_prefered = 0;
2299
2300 if (valid_lft > max_valid)
2301 valid_lft = max_valid;
2302
2303 if (prefered_lft > max_prefered)
2304 prefered_lft = max_prefered;
2305
Linus Torvalds1da177e2005-04-16 15:20:36 -07002306 spin_lock(&ift->lock);
2307 flags = ift->flags;
Lorenzo Colitti76f793e2011-07-26 13:50:49 +00002308 ift->valid_lft = valid_lft;
2309 ift->prefered_lft = prefered_lft;
2310 ift->tstamp = now;
2311 if (prefered_lft > 0)
2312 ift->flags &= ~IFA_F_DEPRECATED;
2313
Linus Torvalds1da177e2005-04-16 15:20:36 -07002314 spin_unlock(&ift->lock);
2315 if (!(flags&IFA_F_TENTATIVE))
2316 ipv6_ifa_notify(0, ift);
2317 }
2318
Glenn Wursteraed65502010-09-27 07:04:30 +00002319 if ((create || list_empty(&in6_dev->tempaddr_list)) && in6_dev->cnf.use_tempaddr > 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002320 /*
Lorenzo Colitti76f793e2011-07-26 13:50:49 +00002321 * When a new public address is created as
2322 * described in [ADDRCONF], also create a new
2323 * temporary address. Also create a temporary
2324 * address if it's enabled but no temporary
2325 * address currently exists.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002326 */
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002327 read_unlock_bh(&in6_dev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002328 ipv6_create_tempaddr(ifp, NULL);
2329 } else {
2330 read_unlock_bh(&in6_dev->lock);
2331 }
2332#endif
2333 in6_ifa_put(ifp);
2334 addrconf_verify(0);
2335 }
2336 }
2337 inet6_prefix_notify(RTM_NEWPREFIX, in6_dev, pinfo);
2338 in6_dev_put(in6_dev);
2339}
2340
2341/*
2342 * Set destination address.
2343 * Special case for SIT interfaces where we create a new "virtual"
2344 * device.
2345 */
Daniel Lezcanoaf284932008-03-05 10:46:57 -08002346int addrconf_set_dstaddr(struct net *net, void __user *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002347{
2348 struct in6_ifreq ireq;
2349 struct net_device *dev;
2350 int err = -EINVAL;
2351
2352 rtnl_lock();
2353
2354 err = -EFAULT;
2355 if (copy_from_user(&ireq, arg, sizeof(struct in6_ifreq)))
2356 goto err_exit;
2357
Daniel Lezcanoaf284932008-03-05 10:46:57 -08002358 dev = __dev_get_by_index(net, ireq.ifr6_ifindex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002359
2360 err = -ENODEV;
2361 if (dev == NULL)
2362 goto err_exit;
2363
Amerigo Wang07a93622012-10-29 16:23:10 +00002364#if IS_ENABLED(CONFIG_IPV6_SIT)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002365 if (dev->type == ARPHRD_SIT) {
Stephen Hemminger5bc3eb72008-11-19 21:52:05 -08002366 const struct net_device_ops *ops = dev->netdev_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002367 struct ifreq ifr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002368 struct ip_tunnel_parm p;
2369
2370 err = -EADDRNOTAVAIL;
2371 if (!(ipv6_addr_type(&ireq.ifr6_addr) & IPV6_ADDR_COMPATv4))
2372 goto err_exit;
2373
2374 memset(&p, 0, sizeof(p));
2375 p.iph.daddr = ireq.ifr6_addr.s6_addr32[3];
2376 p.iph.saddr = 0;
2377 p.iph.version = 4;
2378 p.iph.ihl = 5;
2379 p.iph.protocol = IPPROTO_IPV6;
2380 p.iph.ttl = 64;
Stephen Hemmingerd20b3102008-01-21 00:48:43 -08002381 ifr.ifr_ifru.ifru_data = (__force void __user *)&p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002382
Stephen Hemminger5bc3eb72008-11-19 21:52:05 -08002383 if (ops->ndo_do_ioctl) {
2384 mm_segment_t oldfs = get_fs();
2385
2386 set_fs(KERNEL_DS);
2387 err = ops->ndo_do_ioctl(dev, &ifr, SIOCADDTUNNEL);
2388 set_fs(oldfs);
2389 } else
2390 err = -EOPNOTSUPP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002391
2392 if (err == 0) {
2393 err = -ENOBUFS;
Daniel Lezcanoaf284932008-03-05 10:46:57 -08002394 dev = __dev_get_by_name(net, p.name);
2395 if (!dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002396 goto err_exit;
2397 err = dev_open(dev);
2398 }
2399 }
Joerg Roedel0be669b2006-10-10 14:49:53 -07002400#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002401
2402err_exit:
2403 rtnl_unlock();
2404 return err;
2405}
2406
2407/*
2408 * Manual configuration of address on an interface
2409 */
Eric Dumazetb71d1d42011-04-22 04:53:02 +00002410static int inet6_addr_add(struct net *net, int ifindex, const struct in6_addr *pfx,
Nicolas Dichtelcaeaba72013-05-16 22:32:00 +00002411 const struct in6_addr *peer_pfx,
Thomas Graf24ef0da2008-05-28 16:54:22 +02002412 unsigned int plen, __u8 ifa_flags, __u32 prefered_lft,
Daniel Lezcanoaf284932008-03-05 10:46:57 -08002413 __u32 valid_lft)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002414{
2415 struct inet6_ifaddr *ifp;
2416 struct inet6_dev *idev;
2417 struct net_device *dev;
2418 int scope;
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07002419 u32 flags;
2420 clock_t expires;
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +09002421 unsigned long timeout;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002422
2423 ASSERT_RTNL();
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002424
Thomas Graf24ef0da2008-05-28 16:54:22 +02002425 if (plen > 128)
2426 return -EINVAL;
2427
Noriaki TAKAMIYA07787692006-07-28 18:12:10 +09002428 /* check the lifetime */
2429 if (!valid_lft || prefered_lft > valid_lft)
2430 return -EINVAL;
2431
Daniel Lezcanoaf284932008-03-05 10:46:57 -08002432 dev = __dev_get_by_index(net, ifindex);
2433 if (!dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002434 return -ENODEV;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002435
Brian Haley64e724f2010-07-20 10:34:30 +00002436 idev = addrconf_add_dev(dev);
2437 if (IS_ERR(idev))
2438 return PTR_ERR(idev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002439
2440 scope = ipv6_addr_scope(pfx);
2441
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +09002442 timeout = addrconf_timeout_fixup(valid_lft, HZ);
2443 if (addrconf_finite_timeout(timeout)) {
2444 expires = jiffies_to_clock_t(timeout * HZ);
2445 valid_lft = timeout;
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07002446 flags = RTF_EXPIRES;
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +09002447 } else {
2448 expires = 0;
2449 flags = 0;
2450 ifa_flags |= IFA_F_PERMANENT;
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07002451 }
Noriaki TAKAMIYA07787692006-07-28 18:12:10 +09002452
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +09002453 timeout = addrconf_timeout_fixup(prefered_lft, HZ);
2454 if (addrconf_finite_timeout(timeout)) {
2455 if (timeout == 0)
2456 ifa_flags |= IFA_F_DEPRECATED;
2457 prefered_lft = timeout;
2458 }
Noriaki TAKAMIYA07787692006-07-28 18:12:10 +09002459
Jiri Benc8a226b22013-08-01 10:41:28 +02002460 ifp = ipv6_add_addr(idev, pfx, peer_pfx, plen, scope, ifa_flags,
2461 valid_lft, prefered_lft);
Noriaki TAKAMIYA07787692006-07-28 18:12:10 +09002462
Linus Torvalds1da177e2005-04-16 15:20:36 -07002463 if (!IS_ERR(ifp)) {
YOSHIFUJI Hideaki46d48042007-02-07 20:36:26 +09002464 addrconf_prefix_route(&ifp->addr, ifp->prefix_len, dev,
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07002465 expires, flags);
Neil Horman95c385b2007-04-25 17:08:10 -07002466 /*
2467 * Note that section 3.1 of RFC 4429 indicates
2468 * that the Optimistic flag should not be set for
2469 * manually configured addresses
2470 */
David S. Millercf22f9a2012-04-14 21:37:40 -04002471 addrconf_dad_start(ifp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002472 in6_ifa_put(ifp);
Noriaki TAKAMIYA07787692006-07-28 18:12:10 +09002473 addrconf_verify(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002474 return 0;
2475 }
2476
2477 return PTR_ERR(ifp);
2478}
2479
Eric Dumazetb71d1d42011-04-22 04:53:02 +00002480static int inet6_addr_del(struct net *net, int ifindex, const struct in6_addr *pfx,
Thomas Graf24ef0da2008-05-28 16:54:22 +02002481 unsigned int plen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002482{
2483 struct inet6_ifaddr *ifp;
2484 struct inet6_dev *idev;
2485 struct net_device *dev;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002486
Thomas Graf24ef0da2008-05-28 16:54:22 +02002487 if (plen > 128)
2488 return -EINVAL;
2489
Daniel Lezcanoaf284932008-03-05 10:46:57 -08002490 dev = __dev_get_by_index(net, ifindex);
2491 if (!dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002492 return -ENODEV;
2493
David S. Miller7eaa48a2013-08-20 23:44:39 -07002494 if ((idev = __in6_dev_get(dev)) == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002495 return -ENXIO;
2496
2497 read_lock_bh(&idev->lock);
stephen hemminger502a2ff2010-03-17 20:31:13 +00002498 list_for_each_entry(ifp, &idev->addr_list, if_list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002499 if (ifp->prefix_len == plen &&
2500 ipv6_addr_equal(pfx, &ifp->addr)) {
2501 in6_ifa_hold(ifp);
2502 read_unlock_bh(&idev->lock);
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002503
Linus Torvalds1da177e2005-04-16 15:20:36 -07002504 ipv6_del_addr(ifp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002505 return 0;
2506 }
2507 }
2508 read_unlock_bh(&idev->lock);
2509 return -EADDRNOTAVAIL;
2510}
2511
2512
Daniel Lezcanoaf284932008-03-05 10:46:57 -08002513int addrconf_add_ifaddr(struct net *net, void __user *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002514{
2515 struct in6_ifreq ireq;
2516 int err;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002517
Eric W. Biedermanaf31f412012-11-16 03:03:06 +00002518 if (!ns_capable(net->user_ns, CAP_NET_ADMIN))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002519 return -EPERM;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002520
Linus Torvalds1da177e2005-04-16 15:20:36 -07002521 if (copy_from_user(&ireq, arg, sizeof(struct in6_ifreq)))
2522 return -EFAULT;
2523
2524 rtnl_lock();
Nicolas Dichtelcaeaba72013-05-16 22:32:00 +00002525 err = inet6_addr_add(net, ireq.ifr6_ifindex, &ireq.ifr6_addr, NULL,
Daniel Lezcanoaf284932008-03-05 10:46:57 -08002526 ireq.ifr6_prefixlen, IFA_F_PERMANENT,
2527 INFINITY_LIFE_TIME, INFINITY_LIFE_TIME);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002528 rtnl_unlock();
2529 return err;
2530}
2531
Daniel Lezcanoaf284932008-03-05 10:46:57 -08002532int addrconf_del_ifaddr(struct net *net, void __user *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002533{
2534 struct in6_ifreq ireq;
2535 int err;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002536
Eric W. Biedermanaf31f412012-11-16 03:03:06 +00002537 if (!ns_capable(net->user_ns, CAP_NET_ADMIN))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002538 return -EPERM;
2539
2540 if (copy_from_user(&ireq, arg, sizeof(struct in6_ifreq)))
2541 return -EFAULT;
2542
2543 rtnl_lock();
Daniel Lezcanoaf284932008-03-05 10:46:57 -08002544 err = inet6_addr_del(net, ireq.ifr6_ifindex, &ireq.ifr6_addr,
2545 ireq.ifr6_prefixlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002546 rtnl_unlock();
2547 return err;
2548}
2549
Ilpo Järvinenb5f348e2009-02-06 23:48:01 -08002550static void add_addr(struct inet6_dev *idev, const struct in6_addr *addr,
2551 int plen, int scope)
2552{
2553 struct inet6_ifaddr *ifp;
2554
Jiri Benc8a226b22013-08-01 10:41:28 +02002555 ifp = ipv6_add_addr(idev, addr, NULL, plen,
2556 scope, IFA_F_PERMANENT, 0, 0);
Ilpo Järvinenb5f348e2009-02-06 23:48:01 -08002557 if (!IS_ERR(ifp)) {
2558 spin_lock_bh(&ifp->lock);
2559 ifp->flags &= ~IFA_F_TENTATIVE;
2560 spin_unlock_bh(&ifp->lock);
2561 ipv6_ifa_notify(RTM_NEWADDR, ifp);
2562 in6_ifa_put(ifp);
2563 }
2564}
2565
Amerigo Wang07a93622012-10-29 16:23:10 +00002566#if IS_ENABLED(CONFIG_IPV6_SIT)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002567static void sit_add_v4_addrs(struct inet6_dev *idev)
2568{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002569 struct in6_addr addr;
2570 struct net_device *dev;
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09002571 struct net *net = dev_net(idev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002572 int scope;
2573
2574 ASSERT_RTNL();
2575
2576 memset(&addr, 0, sizeof(struct in6_addr));
2577 memcpy(&addr.s6_addr32[3], idev->dev->dev_addr, 4);
2578
2579 if (idev->dev->flags&IFF_POINTOPOINT) {
2580 addr.s6_addr32[0] = htonl(0xfe800000);
2581 scope = IFA_LINK;
2582 } else {
2583 scope = IPV6_ADDR_COMPATv4;
2584 }
2585
2586 if (addr.s6_addr32[3]) {
Ilpo Järvinenb5f348e2009-02-06 23:48:01 -08002587 add_addr(idev, &addr, 128, scope);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002588 return;
2589 }
2590
Benjamin Thery6fda7352008-03-05 10:47:47 -08002591 for_each_netdev(net, dev) {
Eldad Zack8e5e8f32012-04-01 07:49:08 +00002592 struct in_device *in_dev = __in_dev_get_rtnl(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002593 if (in_dev && (dev->flags & IFF_UP)) {
Eldad Zack8e5e8f32012-04-01 07:49:08 +00002594 struct in_ifaddr *ifa;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002595
2596 int flag = scope;
2597
2598 for (ifa = in_dev->ifa_list; ifa; ifa = ifa->ifa_next) {
2599 int plen;
2600
2601 addr.s6_addr32[3] = ifa->ifa_local;
2602
2603 if (ifa->ifa_scope == RT_SCOPE_LINK)
2604 continue;
2605 if (ifa->ifa_scope >= RT_SCOPE_HOST) {
2606 if (idev->dev->flags&IFF_POINTOPOINT)
2607 continue;
2608 flag |= IFA_HOST;
2609 }
2610 if (idev->dev->flags&IFF_POINTOPOINT)
2611 plen = 64;
2612 else
2613 plen = 96;
2614
Ilpo Järvinenb5f348e2009-02-06 23:48:01 -08002615 add_addr(idev, &addr, plen, flag);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002616 }
2617 }
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002618 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002619}
Joerg Roedel0be669b2006-10-10 14:49:53 -07002620#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002621
2622static void init_loopback(struct net_device *dev)
2623{
2624 struct inet6_dev *idev;
Balakumaran Kannan25fb6ca42013-04-02 16:15:05 +05302625 struct net_device *sp_dev;
2626 struct inet6_ifaddr *sp_ifa;
2627 struct rt6_info *sp_rt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002628
2629 /* ::1 */
2630
2631 ASSERT_RTNL();
2632
David S. Miller7eaa48a2013-08-20 23:44:39 -07002633 if ((idev = ipv6_find_idev(dev)) == NULL) {
Joe Perches91df42b2012-05-15 14:11:54 +00002634 pr_debug("%s: add_dev failed\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002635 return;
2636 }
2637
Ilpo Järvinenb5f348e2009-02-06 23:48:01 -08002638 add_addr(idev, &in6addr_loopback, 128, IFA_HOST);
Balakumaran Kannan25fb6ca42013-04-02 16:15:05 +05302639
2640 /* Add routes to other interface's IPv6 addresses */
2641 for_each_netdev(dev_net(dev), sp_dev) {
2642 if (!strcmp(sp_dev->name, dev->name))
2643 continue;
2644
2645 idev = __in6_dev_get(sp_dev);
2646 if (!idev)
2647 continue;
2648
2649 read_lock_bh(&idev->lock);
2650 list_for_each_entry(sp_ifa, &idev->addr_list, if_list) {
2651
2652 if (sp_ifa->flags & (IFA_F_DADFAILED | IFA_F_TENTATIVE))
2653 continue;
2654
Gao fenga881ae12013-06-16 11:14:30 +08002655 if (sp_ifa->rt)
2656 continue;
2657
Balakumaran Kannan25fb6ca42013-04-02 16:15:05 +05302658 sp_rt = addrconf_dst_alloc(idev, &sp_ifa->addr, 0);
2659
2660 /* Failure cases are ignored */
Gao feng534c8772013-06-02 22:16:21 +00002661 if (!IS_ERR(sp_rt)) {
2662 sp_ifa->rt = sp_rt;
Balakumaran Kannan25fb6ca42013-04-02 16:15:05 +05302663 ip6_ins_rt(sp_rt);
Gao feng534c8772013-06-02 22:16:21 +00002664 }
Balakumaran Kannan25fb6ca42013-04-02 16:15:05 +05302665 }
2666 read_unlock_bh(&idev->lock);
2667 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002668}
2669
Eric Dumazetb71d1d42011-04-22 04:53:02 +00002670static void addrconf_add_linklocal(struct inet6_dev *idev, const struct in6_addr *addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002671{
Eldad Zack8e5e8f32012-04-01 07:49:08 +00002672 struct inet6_ifaddr *ifp;
Neil Horman95c385b2007-04-25 17:08:10 -07002673 u32 addr_flags = IFA_F_PERMANENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002674
Neil Horman95c385b2007-04-25 17:08:10 -07002675#ifdef CONFIG_IPV6_OPTIMISTIC_DAD
2676 if (idev->cnf.optimistic_dad &&
David Miller702beb82008-07-20 18:17:02 -07002677 !dev_net(idev->dev)->ipv6.devconf_all->forwarding)
Neil Horman95c385b2007-04-25 17:08:10 -07002678 addr_flags |= IFA_F_OPTIMISTIC;
2679#endif
2680
2681
Jiri Benc8a226b22013-08-01 10:41:28 +02002682 ifp = ipv6_add_addr(idev, addr, NULL, 64, IFA_LINK, addr_flags, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002683 if (!IS_ERR(ifp)) {
YOSHIFUJI Hideaki46d48042007-02-07 20:36:26 +09002684 addrconf_prefix_route(&ifp->addr, ifp->prefix_len, idev->dev, 0, 0);
David S. Millercf22f9a2012-04-14 21:37:40 -04002685 addrconf_dad_start(ifp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002686 in6_ifa_put(ifp);
2687 }
2688}
2689
2690static void addrconf_dev_config(struct net_device *dev)
2691{
2692 struct in6_addr addr;
Eldad Zack8e5e8f32012-04-01 07:49:08 +00002693 struct inet6_dev *idev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002694
2695 ASSERT_RTNL();
2696
Herbert Xu74235a22007-06-14 13:02:55 -07002697 if ((dev->type != ARPHRD_ETHER) &&
2698 (dev->type != ARPHRD_FDDI) &&
Herbert Xu74235a22007-06-14 13:02:55 -07002699 (dev->type != ARPHRD_ARCNET) &&
alex.bluesman.smirnov@gmail.com06a4c1c2012-05-10 03:25:52 +00002700 (dev->type != ARPHRD_INFINIBAND) &&
YOSHIFUJI Hideaki / 吉藤英明cb6bf352013-03-25 08:26:24 +00002701 (dev->type != ARPHRD_IEEE802154) &&
Nicolas Dichtele8377352013-08-20 12:16:06 +02002702 (dev->type != ARPHRD_IEEE1394) &&
2703 (dev->type != ARPHRD_TUNNEL6)) {
Herbert Xu74235a22007-06-14 13:02:55 -07002704 /* Alas, we support only Ethernet autoconfiguration. */
2705 return;
2706 }
2707
Linus Torvalds1da177e2005-04-16 15:20:36 -07002708 idev = addrconf_add_dev(dev);
Brian Haley64e724f2010-07-20 10:34:30 +00002709 if (IS_ERR(idev))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002710 return;
2711
2712 memset(&addr, 0, sizeof(struct in6_addr));
2713 addr.s6_addr32[0] = htonl(0xFE800000);
2714
2715 if (ipv6_generate_eui64(addr.s6_addr + 8, dev) == 0)
2716 addrconf_add_linklocal(idev, &addr);
2717}
2718
Amerigo Wang07a93622012-10-29 16:23:10 +00002719#if IS_ENABLED(CONFIG_IPV6_SIT)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002720static void addrconf_sit_config(struct net_device *dev)
2721{
2722 struct inet6_dev *idev;
2723
2724 ASSERT_RTNL();
2725
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002726 /*
2727 * Configure the tunnel with one of our IPv4
2728 * addresses... we should configure all of
Linus Torvalds1da177e2005-04-16 15:20:36 -07002729 * our v4 addrs in the tunnel
2730 */
2731
David S. Miller7eaa48a2013-08-20 23:44:39 -07002732 if ((idev = ipv6_find_idev(dev)) == NULL) {
Joe Perches91df42b2012-05-15 14:11:54 +00002733 pr_debug("%s: add_dev failed\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002734 return;
2735 }
2736
Fred L. Templinc7dc89c2007-11-29 22:11:40 +11002737 if (dev->priv_flags & IFF_ISATAP) {
2738 struct in6_addr addr;
2739
2740 ipv6_addr_set(&addr, htonl(0xFE800000), 0, 0, 0);
2741 addrconf_prefix_route(&addr, 64, dev, 0, 0);
2742 if (!ipv6_generate_eui64(addr.s6_addr + 8, dev))
2743 addrconf_add_linklocal(idev, &addr);
2744 return;
2745 }
2746
Linus Torvalds1da177e2005-04-16 15:20:36 -07002747 sit_add_v4_addrs(idev);
2748
Nicolas Dichtel62b54dd2012-10-01 23:19:14 +00002749 if (dev->flags&IFF_POINTOPOINT)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002750 addrconf_add_mroute(dev);
Nicolas Dichtel62b54dd2012-10-01 23:19:14 +00002751 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07002752 sit_route_add(dev);
2753}
Joerg Roedel0be669b2006-10-10 14:49:53 -07002754#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002755
Amerigo Wang07a93622012-10-29 16:23:10 +00002756#if IS_ENABLED(CONFIG_NET_IPGRE)
stephen hemmingeraee80b52011-06-08 10:44:30 +00002757static void addrconf_gre_config(struct net_device *dev)
2758{
2759 struct inet6_dev *idev;
2760 struct in6_addr addr;
2761
stephen hemmingeraee80b52011-06-08 10:44:30 +00002762 ASSERT_RTNL();
2763
David S. Miller7eaa48a2013-08-20 23:44:39 -07002764 if ((idev = ipv6_find_idev(dev)) == NULL) {
Joe Perches91df42b2012-05-15 14:11:54 +00002765 pr_debug("%s: add_dev failed\n", __func__);
stephen hemmingeraee80b52011-06-08 10:44:30 +00002766 return;
2767 }
2768
2769 ipv6_addr_set(&addr, htonl(0xFE800000), 0, 0, 0);
2770 addrconf_prefix_route(&addr, 64, dev, 0, 0);
2771
2772 if (!ipv6_generate_eui64(addr.s6_addr + 8, dev))
2773 addrconf_add_linklocal(idev, &addr);
2774}
2775#endif
2776
Linus Torvalds1da177e2005-04-16 15:20:36 -07002777static inline int
2778ipv6_inherit_linklocal(struct inet6_dev *idev, struct net_device *link_dev)
2779{
2780 struct in6_addr lladdr;
2781
Neil Horman95c385b2007-04-25 17:08:10 -07002782 if (!ipv6_get_lladdr(link_dev, &lladdr, IFA_F_TENTATIVE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002783 addrconf_add_linklocal(idev, &lladdr);
2784 return 0;
2785 }
2786 return -1;
2787}
2788
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002789static int addrconf_notify(struct notifier_block *this, unsigned long event,
Jiri Pirko351638e2013-05-28 01:30:21 +00002790 void *ptr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002791{
Jiri Pirko351638e2013-05-28 01:30:21 +00002792 struct net_device *dev = netdev_notifier_info_to_dev(ptr);
Eric Dumazet748e2d92012-08-22 21:50:59 +00002793 struct inet6_dev *idev = __in6_dev_get(dev);
YOSHIFUJI Hideakic5e33bd2005-12-21 22:57:44 +09002794 int run_pending = 0;
Herbert Xub217d612007-07-30 17:04:52 -07002795 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002796
Stephen Hemmingere21e8462010-03-20 16:09:01 -07002797 switch (event) {
YOSHIFUJI Hideaki45ba9dd2007-02-15 02:07:27 +09002798 case NETDEV_REGISTER:
Herbert Xu74235a22007-06-14 13:02:55 -07002799 if (!idev && dev->mtu >= IPV6_MIN_MTU) {
YOSHIFUJI Hideaki45ba9dd2007-02-15 02:07:27 +09002800 idev = ipv6_add_dev(dev);
2801 if (!idev)
Herbert Xub217d612007-07-30 17:04:52 -07002802 return notifier_from_errno(-ENOMEM);
YOSHIFUJI Hideaki45ba9dd2007-02-15 02:07:27 +09002803 }
2804 break;
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07002805
Linus Torvalds1da177e2005-04-16 15:20:36 -07002806 case NETDEV_UP:
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09002807 case NETDEV_CHANGE:
Jay Vosburghc2edacf2007-07-09 10:42:47 -07002808 if (dev->flags & IFF_SLAVE)
2809 break;
2810
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09002811 if (event == NETDEV_UP) {
Mitsuru Chinenf24e3d62007-10-10 02:53:43 -07002812 if (!addrconf_qdisc_ok(dev)) {
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09002813 /* device is not ready yet. */
Joe Perchesf3213832012-05-15 14:11:53 +00002814 pr_info("ADDRCONF(NETDEV_UP): %s: link is not ready\n",
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09002815 dev->name);
2816 break;
2817 }
Kristian Slavov99081042006-02-08 16:10:53 -08002818
Evgeniy Polyakovd31c7b82007-11-30 23:36:08 +11002819 if (!idev && dev->mtu >= IPV6_MIN_MTU)
2820 idev = ipv6_add_dev(dev);
2821
Benjamin Therye3ec6cf2008-11-05 01:43:57 -08002822 if (idev) {
Kristian Slavov99081042006-02-08 16:10:53 -08002823 idev->if_flags |= IF_READY;
Benjamin Therye3ec6cf2008-11-05 01:43:57 -08002824 run_pending = 1;
2825 }
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09002826 } else {
Mitsuru Chinenf24e3d62007-10-10 02:53:43 -07002827 if (!addrconf_qdisc_ok(dev)) {
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09002828 /* device is still not ready. */
2829 break;
2830 }
2831
2832 if (idev) {
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07002833 if (idev->if_flags & IF_READY)
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09002834 /* device is already configured. */
2835 break;
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09002836 idev->if_flags |= IF_READY;
2837 }
2838
Joe Perchesf3213832012-05-15 14:11:53 +00002839 pr_info("ADDRCONF(NETDEV_CHANGE): %s: link becomes ready\n",
2840 dev->name);
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09002841
YOSHIFUJI Hideakic5e33bd2005-12-21 22:57:44 +09002842 run_pending = 1;
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09002843 }
2844
Stephen Hemmingere21e8462010-03-20 16:09:01 -07002845 switch (dev->type) {
Amerigo Wang07a93622012-10-29 16:23:10 +00002846#if IS_ENABLED(CONFIG_IPV6_SIT)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002847 case ARPHRD_SIT:
2848 addrconf_sit_config(dev);
2849 break;
Joerg Roedel0be669b2006-10-10 14:49:53 -07002850#endif
Amerigo Wang07a93622012-10-29 16:23:10 +00002851#if IS_ENABLED(CONFIG_NET_IPGRE)
stephen hemmingeraee80b52011-06-08 10:44:30 +00002852 case ARPHRD_IPGRE:
2853 addrconf_gre_config(dev);
2854 break;
2855#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002856 case ARPHRD_LOOPBACK:
2857 init_loopback(dev);
2858 break;
2859
2860 default:
2861 addrconf_dev_config(dev);
2862 break;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07002863 }
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07002864
Linus Torvalds1da177e2005-04-16 15:20:36 -07002865 if (idev) {
YOSHIFUJI Hideakic5e33bd2005-12-21 22:57:44 +09002866 if (run_pending)
2867 addrconf_dad_run(idev);
2868
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07002869 /*
2870 * If the MTU changed during the interface down,
2871 * when the interface up, the changed MTU must be
2872 * reflected in the idev as well as routers.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002873 */
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07002874 if (idev->cnf.mtu6 != dev->mtu &&
2875 dev->mtu >= IPV6_MIN_MTU) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002876 rt6_mtu_change(dev, dev->mtu);
2877 idev->cnf.mtu6 = dev->mtu;
2878 }
2879 idev->tstamp = jiffies;
2880 inet6_ifinfo_notify(RTM_NEWLINK, idev);
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07002881
2882 /*
2883 * If the changed mtu during down is lower than
2884 * IPV6_MIN_MTU stop IPv6 on this interface.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002885 */
2886 if (dev->mtu < IPV6_MIN_MTU)
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07002887 addrconf_ifdown(dev, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002888 }
2889 break;
2890
2891 case NETDEV_CHANGEMTU:
Evgeniy Polyakovd31c7b82007-11-30 23:36:08 +11002892 if (idev && dev->mtu >= IPV6_MIN_MTU) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002893 rt6_mtu_change(dev, dev->mtu);
2894 idev->cnf.mtu6 = dev->mtu;
2895 break;
2896 }
2897
Evgeniy Polyakovd31c7b82007-11-30 23:36:08 +11002898 if (!idev && dev->mtu >= IPV6_MIN_MTU) {
2899 idev = ipv6_add_dev(dev);
2900 if (idev)
2901 break;
2902 }
2903
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07002904 /*
2905 * MTU falled under IPV6_MIN_MTU.
2906 * Stop IPv6 on this interface.
2907 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002908
2909 case NETDEV_DOWN:
2910 case NETDEV_UNREGISTER:
2911 /*
2912 * Remove all addresses from this interface.
2913 */
2914 addrconf_ifdown(dev, event != NETDEV_DOWN);
2915 break;
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09002916
Linus Torvalds1da177e2005-04-16 15:20:36 -07002917 case NETDEV_CHANGENAME:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002918 if (idev) {
Stephen Hemminger5632c512007-04-28 21:16:39 -07002919 snmp6_unregister_dev(idev);
Pavel Emelyanov408c4762008-01-10 17:41:21 -08002920 addrconf_sysctl_unregister(idev);
Pavel Emelyanovf52295a2007-12-02 00:58:37 +11002921 addrconf_sysctl_register(idev);
Herbert Xub217d612007-07-30 17:04:52 -07002922 err = snmp6_register_dev(idev);
2923 if (err)
2924 return notifier_from_errno(err);
Stephen Hemminger5632c512007-04-28 21:16:39 -07002925 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002926 break;
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07002927
Jiri Pirko93d9b7d2010-03-10 10:28:56 +00002928 case NETDEV_PRE_TYPE_CHANGE:
2929 case NETDEV_POST_TYPE_CHANGE:
2930 addrconf_type_change(dev, event);
Moni Shoua75c78502009-09-15 02:37:40 -07002931 break;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07002932 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002933
2934 return NOTIFY_OK;
2935}
2936
2937/*
2938 * addrconf module should be notified of a device going up
2939 */
2940static struct notifier_block ipv6_dev_notf = {
2941 .notifier_call = addrconf_notify,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002942};
2943
Jiri Pirko93d9b7d2010-03-10 10:28:56 +00002944static void addrconf_type_change(struct net_device *dev, unsigned long event)
Moni Shoua75c78502009-09-15 02:37:40 -07002945{
2946 struct inet6_dev *idev;
2947 ASSERT_RTNL();
2948
2949 idev = __in6_dev_get(dev);
2950
Jiri Pirko93d9b7d2010-03-10 10:28:56 +00002951 if (event == NETDEV_POST_TYPE_CHANGE)
Moni Shoua75c78502009-09-15 02:37:40 -07002952 ipv6_mc_remap(idev);
Jiri Pirko93d9b7d2010-03-10 10:28:56 +00002953 else if (event == NETDEV_PRE_TYPE_CHANGE)
Moni Shoua75c78502009-09-15 02:37:40 -07002954 ipv6_mc_unmap(idev);
2955}
2956
Linus Torvalds1da177e2005-04-16 15:20:36 -07002957static int addrconf_ifdown(struct net_device *dev, int how)
2958{
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09002959 struct net *net = dev_net(dev);
stephen hemminger502a2ff2010-03-17 20:31:13 +00002960 struct inet6_dev *idev;
2961 struct inet6_ifaddr *ifa;
David S. Miller73a8bd742011-01-23 23:27:15 -08002962 int state, i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002963
2964 ASSERT_RTNL();
2965
David S. Miller73a8bd742011-01-23 23:27:15 -08002966 rt6_ifdown(net, dev);
2967 neigh_ifdown(&nd_tbl, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002968
2969 idev = __in6_dev_get(dev);
2970 if (idev == NULL)
2971 return -ENODEV;
2972
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07002973 /*
2974 * Step 1: remove reference to ipv6 device from parent device.
2975 * Do not dev_put!
Linus Torvalds1da177e2005-04-16 15:20:36 -07002976 */
Denis V. Lunev439e2382008-04-03 13:30:17 -07002977 if (how) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002978 idev->dead = 1;
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -07002979
2980 /* protected by rtnl_lock */
Stephen Hemmingera9b3cd72011-08-01 16:19:00 +00002981 RCU_INIT_POINTER(dev->ip6_ptr, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002982
2983 /* Step 1.5: remove snmp6 entry */
2984 snmp6_unregister_dev(idev);
2985
2986 }
2987
David S. Miller73a8bd742011-01-23 23:27:15 -08002988 /* Step 2: clear hash table */
2989 for (i = 0; i < IN6_ADDR_HSIZE; i++) {
2990 struct hlist_head *h = &inet6_addr_lst[i];
David S. Miller73a8bd742011-01-23 23:27:15 -08002991
2992 spin_lock_bh(&addrconf_hash_lock);
2993 restart:
Sasha Levinb67bfe02013-02-27 17:06:00 -08002994 hlist_for_each_entry_rcu(ifa, h, addr_lst) {
David S. Miller73a8bd742011-01-23 23:27:15 -08002995 if (ifa->idev == idev) {
2996 hlist_del_init_rcu(&ifa->addr_lst);
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02002997 addrconf_del_dad_timer(ifa);
David S. Miller73a8bd742011-01-23 23:27:15 -08002998 goto restart;
2999 }
3000 }
3001 spin_unlock_bh(&addrconf_hash_lock);
3002 }
3003
Linus Torvalds1da177e2005-04-16 15:20:36 -07003004 write_lock_bh(&idev->lock);
3005
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003006 addrconf_del_rs_timer(idev);
3007
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07003008 /* Step 2: clear flags for stateless addrconf */
Denis V. Lunev439e2382008-04-03 13:30:17 -07003009 if (!how)
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09003010 idev->if_flags &= ~(IF_RS_SENT|IF_RA_RCVD|IF_READY);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003011
Linus Torvalds1da177e2005-04-16 15:20:36 -07003012#ifdef CONFIG_IPV6_PRIVACY
Denis V. Lunev439e2382008-04-03 13:30:17 -07003013 if (how && del_timer(&idev->regen_timer))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003014 in6_dev_put(idev);
3015
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07003016 /* Step 3: clear tempaddr list */
stephen hemminger372e6c82010-03-17 20:31:09 +00003017 while (!list_empty(&idev->tempaddr_list)) {
3018 ifa = list_first_entry(&idev->tempaddr_list,
3019 struct inet6_ifaddr, tmp_list);
3020 list_del(&ifa->tmp_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003021 write_unlock_bh(&idev->lock);
3022 spin_lock_bh(&ifa->lock);
3023
3024 if (ifa->ifpub) {
3025 in6_ifa_put(ifa->ifpub);
3026 ifa->ifpub = NULL;
3027 }
3028 spin_unlock_bh(&ifa->lock);
3029 in6_ifa_put(ifa);
3030 write_lock_bh(&idev->lock);
3031 }
3032#endif
stephen hemminger8f37ada2010-03-03 08:19:59 +00003033
stephen hemminger502a2ff2010-03-17 20:31:13 +00003034 while (!list_empty(&idev->addr_list)) {
3035 ifa = list_first_entry(&idev->addr_list,
3036 struct inet6_ifaddr, if_list);
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003037 addrconf_del_dad_timer(ifa);
stephen hemminger84e8b802010-03-02 13:32:46 +00003038
David S. Miller73a8bd742011-01-23 23:27:15 -08003039 list_del(&ifa->if_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003040
David S. Miller73a8bd742011-01-23 23:27:15 -08003041 write_unlock_bh(&idev->lock);
stephen hemminger84e8b802010-03-02 13:32:46 +00003042
David S. Miller73a8bd742011-01-23 23:27:15 -08003043 spin_lock_bh(&ifa->state_lock);
3044 state = ifa->state;
3045 ifa->state = INET6_IFADDR_STATE_DEAD;
3046 spin_unlock_bh(&ifa->state_lock);
stephen hemminger84e8b802010-03-02 13:32:46 +00003047
David S. Miller73a8bd742011-01-23 23:27:15 -08003048 if (state != INET6_IFADDR_STATE_DEAD) {
3049 __ipv6_ifa_notify(RTM_DELADDR, ifa);
Cong Wangf88c91d2013-04-14 23:18:43 +08003050 inet6addr_notifier_call_chain(NETDEV_DOWN, ifa);
stephen hemminger27bdb2a2010-04-12 05:41:32 +00003051 }
David S. Miller73a8bd742011-01-23 23:27:15 -08003052 in6_ifa_put(ifa);
stephen hemminger8f37ada2010-03-03 08:19:59 +00003053
David S. Miller73a8bd742011-01-23 23:27:15 -08003054 write_lock_bh(&idev->lock);
3055 }
stephen hemminger8f37ada2010-03-03 08:19:59 +00003056
Linus Torvalds1da177e2005-04-16 15:20:36 -07003057 write_unlock_bh(&idev->lock);
3058
3059 /* Step 5: Discard multicast list */
Denis V. Lunev439e2382008-04-03 13:30:17 -07003060 if (how)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003061 ipv6_mc_destroy_dev(idev);
3062 else
3063 ipv6_mc_down(idev);
3064
Linus Torvalds1da177e2005-04-16 15:20:36 -07003065 idev->tstamp = jiffies;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09003066
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07003067 /* Last: Shot the device (if unregistered) */
Denis V. Lunev439e2382008-04-03 13:30:17 -07003068 if (how) {
Pavel Emelyanov408c4762008-01-10 17:41:21 -08003069 addrconf_sysctl_unregister(idev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003070 neigh_parms_release(&nd_tbl, idev->nd_parms);
3071 neigh_ifdown(&nd_tbl, dev);
3072 in6_dev_put(idev);
3073 }
3074 return 0;
3075}
3076
3077static void addrconf_rs_timer(unsigned long data)
3078{
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003079 struct inet6_dev *idev = (struct inet6_dev *)data;
Cong Wangcaf92bc2013-08-31 13:44:32 +08003080 struct net_device *dev = idev->dev;
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003081 struct in6_addr lladdr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003082
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003083 write_lock(&idev->lock);
stephen hemminger5b2a1952010-03-02 13:32:45 +00003084 if (idev->dead || !(idev->if_flags & IF_READY))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003085 goto out;
3086
Shmulik Ladkani9ba2add2012-12-02 01:44:53 +00003087 if (!ipv6_accept_ra(idev))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003088 goto out;
stephen hemminger5b2a1952010-03-02 13:32:45 +00003089
3090 /* Announcement received after solicitation was sent */
3091 if (idev->if_flags & IF_RA_RCVD)
3092 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003093
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003094 if (idev->rs_probes++ < idev->cnf.rtr_solicits) {
Cong Wangcaf92bc2013-08-31 13:44:32 +08003095 write_unlock(&idev->lock);
3096 if (!ipv6_get_lladdr(dev, &lladdr, IFA_F_TENTATIVE))
3097 ndisc_send_rs(dev, &lladdr,
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003098 &in6addr_linklocal_allrouters);
3099 else
Cong Wangcaf92bc2013-08-31 13:44:32 +08003100 goto put;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003101
Cong Wangcaf92bc2013-08-31 13:44:32 +08003102 write_lock(&idev->lock);
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003103 /* The wait after the last probe can be shorter */
3104 addrconf_mod_rs_timer(idev, (idev->rs_probes ==
3105 idev->cnf.rtr_solicits) ?
3106 idev->cnf.rtr_solicit_delay :
3107 idev->cnf.rtr_solicit_interval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003108 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003109 /*
3110 * Note: we do not support deprecated "all on-link"
3111 * assumption any longer.
3112 */
Joe Perches91df42b2012-05-15 14:11:54 +00003113 pr_debug("%s: no IPv6 routers present\n", idev->dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003114 }
3115
3116out:
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003117 write_unlock(&idev->lock);
Cong Wangcaf92bc2013-08-31 13:44:32 +08003118put:
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003119 in6_dev_put(idev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003120}
3121
3122/*
3123 * Duplicate Address Detection
3124 */
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09003125static void addrconf_dad_kick(struct inet6_ifaddr *ifp)
3126{
3127 unsigned long rand_num;
3128 struct inet6_dev *idev = ifp->idev;
3129
Neil Horman95c385b2007-04-25 17:08:10 -07003130 if (ifp->flags & IFA_F_OPTIMISTIC)
3131 rand_num = 0;
3132 else
3133 rand_num = net_random() % (idev->cnf.rtr_solicit_delay ? : 1);
3134
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003135 ifp->dad_probes = idev->cnf.dad_transmits;
3136 addrconf_mod_dad_timer(ifp, rand_num);
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09003137}
3138
David S. Millercf22f9a2012-04-14 21:37:40 -04003139static void addrconf_dad_start(struct inet6_ifaddr *ifp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003140{
3141 struct inet6_dev *idev = ifp->idev;
3142 struct net_device *dev = idev->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003143
3144 addrconf_join_solict(dev, &ifp->addr);
3145
Linus Torvalds1da177e2005-04-16 15:20:36 -07003146 net_srandom(ifp->addr.s6_addr32[3]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003147
3148 read_lock_bh(&idev->lock);
Herbert Xu622ccdf2010-05-18 15:56:06 -07003149 spin_lock(&ifp->lock);
Herbert Xue9d3e082010-05-18 15:36:06 -07003150 if (ifp->state == INET6_IFADDR_STATE_DEAD)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003151 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003152
3153 if (dev->flags&(IFF_NOARP|IFF_LOOPBACK) ||
YOSHIFUJI Hideaki1b34be72008-06-28 14:18:38 +09003154 idev->cnf.accept_dad < 1 ||
Noriaki TAKAMIYA55ebaef2006-09-22 14:45:27 -07003155 !(ifp->flags&IFA_F_TENTATIVE) ||
3156 ifp->flags & IFA_F_NODAD) {
Brian Haleycc411d02009-09-09 14:41:32 +00003157 ifp->flags &= ~(IFA_F_TENTATIVE|IFA_F_OPTIMISTIC|IFA_F_DADFAILED);
stephen hemminger21809fa2010-02-08 19:48:52 +00003158 spin_unlock(&ifp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003159 read_unlock_bh(&idev->lock);
3160
3161 addrconf_dad_completed(ifp);
3162 return;
3163 }
3164
YOSHIFUJI Hideaki6732bad2005-12-27 13:35:15 -08003165 if (!(idev->if_flags & IF_READY)) {
stephen hemminger21809fa2010-02-08 19:48:52 +00003166 spin_unlock(&ifp->lock);
YOSHIFUJI Hideaki6732bad2005-12-27 13:35:15 -08003167 read_unlock_bh(&idev->lock);
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09003168 /*
Masatake YAMATO590a9882009-06-09 10:41:12 +09003169 * If the device is not ready:
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09003170 * - keep it tentative if it is a permanent address.
3171 * - otherwise, kill it.
3172 */
3173 in6_ifa_hold(ifp);
Brian Haleycc411d02009-09-09 14:41:32 +00003174 addrconf_dad_stop(ifp, 0);
YOSHIFUJI Hideaki6732bad2005-12-27 13:35:15 -08003175 return;
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09003176 }
Neil Horman95c385b2007-04-25 17:08:10 -07003177
3178 /*
3179 * Optimistic nodes can start receiving
3180 * Frames right away
3181 */
Stephen Hemmingere21e8462010-03-20 16:09:01 -07003182 if (ifp->flags & IFA_F_OPTIMISTIC)
Neil Horman95c385b2007-04-25 17:08:10 -07003183 ip6_ins_rt(ifp->rt);
3184
YOSHIFUJI Hideaki6732bad2005-12-27 13:35:15 -08003185 addrconf_dad_kick(ifp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003186out:
Herbert Xu622ccdf2010-05-18 15:56:06 -07003187 spin_unlock(&ifp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003188 read_unlock_bh(&idev->lock);
3189}
3190
3191static void addrconf_dad_timer(unsigned long data)
3192{
3193 struct inet6_ifaddr *ifp = (struct inet6_ifaddr *) data;
3194 struct inet6_dev *idev = ifp->idev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003195 struct in6_addr mcaddr;
3196
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003197 if (!ifp->dad_probes && addrconf_dad_end(ifp))
Herbert Xuf2344a12010-05-18 15:55:27 -07003198 goto out;
3199
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003200 write_lock(&idev->lock);
stephen hemminger122e4512010-03-02 13:32:44 +00003201 if (idev->dead || !(idev->if_flags & IF_READY)) {
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003202 write_unlock(&idev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003203 goto out;
3204 }
stephen hemminger21809fa2010-02-08 19:48:52 +00003205
3206 spin_lock(&ifp->lock);
Herbert Xu622ccdf2010-05-18 15:56:06 -07003207 if (ifp->state == INET6_IFADDR_STATE_DEAD) {
3208 spin_unlock(&ifp->lock);
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003209 write_unlock(&idev->lock);
Herbert Xu622ccdf2010-05-18 15:56:06 -07003210 goto out;
3211 }
3212
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003213 if (ifp->dad_probes == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003214 /*
3215 * DAD was successful
3216 */
3217
Brian Haleycc411d02009-09-09 14:41:32 +00003218 ifp->flags &= ~(IFA_F_TENTATIVE|IFA_F_OPTIMISTIC|IFA_F_DADFAILED);
stephen hemminger21809fa2010-02-08 19:48:52 +00003219 spin_unlock(&ifp->lock);
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003220 write_unlock(&idev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003221
3222 addrconf_dad_completed(ifp);
3223
3224 goto out;
3225 }
3226
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003227 ifp->dad_probes--;
3228 addrconf_mod_dad_timer(ifp, ifp->idev->nd_parms->retrans_time);
stephen hemminger21809fa2010-02-08 19:48:52 +00003229 spin_unlock(&ifp->lock);
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003230 write_unlock(&idev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003231
3232 /* send a neighbour solicitation for our addr */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003233 addrconf_addr_solict_mult(&ifp->addr, &mcaddr);
YOSHIFUJI Hideakid7aabf22008-04-10 15:42:11 +09003234 ndisc_send_ns(ifp->idev->dev, NULL, &ifp->addr, &mcaddr, &in6addr_any);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003235out:
3236 in6_ifa_put(ifp);
3237}
3238
3239static void addrconf_dad_completed(struct inet6_ifaddr *ifp)
3240{
Stephen Hemmingere21e8462010-03-20 16:09:01 -07003241 struct net_device *dev = ifp->idev->dev;
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003242 struct in6_addr lladdr;
Hannes Frederic Sowab173ee42013-06-27 00:07:01 +02003243 bool send_rs, send_mld;
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003244
3245 addrconf_del_dad_timer(ifp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003246
3247 /*
3248 * Configure the address for reception. Now it is valid.
3249 */
3250
3251 ipv6_ifa_notify(RTM_NEWADDR, ifp);
3252
Tore Anderson026359b2011-08-28 23:47:33 +00003253 /* If added prefix is link local and we are prepared to process
3254 router advertisements, start sending router solicitations.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003255 */
3256
Hannes Frederic Sowa1ec047e2013-06-27 00:06:56 +02003257 read_lock_bh(&ifp->idev->lock);
3258 spin_lock(&ifp->lock);
Hannes Frederic Sowab173ee42013-06-27 00:07:01 +02003259 send_mld = ipv6_addr_type(&ifp->addr) & IPV6_ADDR_LINKLOCAL &&
3260 ifp->idev->valid_ll_addr_cnt == 1;
3261 send_rs = send_mld &&
3262 ipv6_accept_ra(ifp->idev) &&
Hannes Frederic Sowa1ec047e2013-06-27 00:06:56 +02003263 ifp->idev->cnf.rtr_solicits > 0 &&
Hannes Frederic Sowab173ee42013-06-27 00:07:01 +02003264 (dev->flags&IFF_LOOPBACK) == 0;
Hannes Frederic Sowa1ec047e2013-06-27 00:06:56 +02003265 spin_unlock(&ifp->lock);
3266 read_unlock_bh(&ifp->idev->lock);
3267
Hannes Frederic Sowab173ee42013-06-27 00:07:01 +02003268 /* While dad is in progress mld report's source address is in6_addrany.
3269 * Resend with proper ll now.
3270 */
3271 if (send_mld)
3272 ipv6_mc_dad_complete(ifp->idev);
3273
Hannes Frederic Sowa1ec047e2013-06-27 00:06:56 +02003274 if (send_rs) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003275 /*
3276 * If a host as already performed a random delay
3277 * [...] as part of DAD [...] there is no need
3278 * to delay again before sending the first RS
3279 */
Hannes Frederic Sowa1ec047e2013-06-27 00:06:56 +02003280 if (ipv6_get_lladdr(dev, &lladdr, IFA_F_TENTATIVE))
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003281 return;
Hannes Frederic Sowa1ec047e2013-06-27 00:06:56 +02003282 ndisc_send_rs(dev, &lladdr, &in6addr_linklocal_allrouters);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003283
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003284 write_lock_bh(&ifp->idev->lock);
3285 spin_lock(&ifp->lock);
3286 ifp->idev->rs_probes = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003287 ifp->idev->if_flags |= IF_RS_SENT;
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003288 addrconf_mod_rs_timer(ifp->idev,
3289 ifp->idev->cnf.rtr_solicit_interval);
3290 spin_unlock(&ifp->lock);
3291 write_unlock_bh(&ifp->idev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003292 }
3293}
3294
Stephen Hemmingere21e8462010-03-20 16:09:01 -07003295static void addrconf_dad_run(struct inet6_dev *idev)
3296{
YOSHIFUJI Hideakic5e33bd2005-12-21 22:57:44 +09003297 struct inet6_ifaddr *ifp;
3298
3299 read_lock_bh(&idev->lock);
stephen hemminger502a2ff2010-03-17 20:31:13 +00003300 list_for_each_entry(ifp, &idev->addr_list, if_list) {
stephen hemminger21809fa2010-02-08 19:48:52 +00003301 spin_lock(&ifp->lock);
Herbert Xuf2344a12010-05-18 15:55:27 -07003302 if (ifp->flags & IFA_F_TENTATIVE &&
3303 ifp->state == INET6_IFADDR_STATE_DAD)
3304 addrconf_dad_kick(ifp);
stephen hemminger21809fa2010-02-08 19:48:52 +00003305 spin_unlock(&ifp->lock);
YOSHIFUJI Hideakic5e33bd2005-12-21 22:57:44 +09003306 }
3307 read_unlock_bh(&idev->lock);
3308}
3309
Linus Torvalds1da177e2005-04-16 15:20:36 -07003310#ifdef CONFIG_PROC_FS
3311struct if6_iter_state {
Daniel Lezcano3c400902008-01-10 22:42:49 -08003312 struct seq_net_private p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003313 int bucket;
Mihai Maruseac1d578302012-01-03 23:31:35 +00003314 int offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003315};
3316
Mihai Maruseac1d578302012-01-03 23:31:35 +00003317static struct inet6_ifaddr *if6_get_first(struct seq_file *seq, loff_t pos)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003318{
3319 struct inet6_ifaddr *ifa = NULL;
3320 struct if6_iter_state *state = seq->private;
YOSHIFUJI Hideaki12188542008-03-26 02:36:06 +09003321 struct net *net = seq_file_net(seq);
Mihai Maruseac1d578302012-01-03 23:31:35 +00003322 int p = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003323
Mihai Maruseac1d578302012-01-03 23:31:35 +00003324 /* initial bucket if pos is 0 */
3325 if (pos == 0) {
3326 state->bucket = 0;
3327 state->offset = 0;
3328 }
3329
3330 for (; state->bucket < IN6_ADDR_HSIZE; ++state->bucket) {
Sasha Levinb67bfe02013-02-27 17:06:00 -08003331 hlist_for_each_entry_rcu_bh(ifa, &inet6_addr_lst[state->bucket],
Mihai Maruseac1d578302012-01-03 23:31:35 +00003332 addr_lst) {
Eric Dumazet9f0d3c22012-10-16 07:37:27 +00003333 if (!net_eq(dev_net(ifa->idev->dev), net))
3334 continue;
Mihai Maruseac1d578302012-01-03 23:31:35 +00003335 /* sync with offset */
3336 if (p < state->offset) {
3337 p++;
3338 continue;
3339 }
3340 state->offset++;
Eric Dumazet9f0d3c22012-10-16 07:37:27 +00003341 return ifa;
Mihai Maruseac1d578302012-01-03 23:31:35 +00003342 }
3343
3344 /* prepare for next bucket */
3345 state->offset = 0;
3346 p = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003347 }
stephen hemmingerc2e21292010-03-17 20:31:10 +00003348 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003349}
3350
stephen hemmingerc2e21292010-03-17 20:31:10 +00003351static struct inet6_ifaddr *if6_get_next(struct seq_file *seq,
3352 struct inet6_ifaddr *ifa)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003353{
3354 struct if6_iter_state *state = seq->private;
YOSHIFUJI Hideaki12188542008-03-26 02:36:06 +09003355 struct net *net = seq_file_net(seq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003356
Sasha Levinb67bfe02013-02-27 17:06:00 -08003357 hlist_for_each_entry_continue_rcu_bh(ifa, addr_lst) {
Eric Dumazet9f0d3c22012-10-16 07:37:27 +00003358 if (!net_eq(dev_net(ifa->idev->dev), net))
3359 continue;
Mihai Maruseac1d578302012-01-03 23:31:35 +00003360 state->offset++;
Eric Dumazet9f0d3c22012-10-16 07:37:27 +00003361 return ifa;
Mihai Maruseac1d578302012-01-03 23:31:35 +00003362 }
stephen hemmingerc2e21292010-03-17 20:31:10 +00003363
3364 while (++state->bucket < IN6_ADDR_HSIZE) {
Mihai Maruseac1d578302012-01-03 23:31:35 +00003365 state->offset = 0;
Sasha Levinb67bfe02013-02-27 17:06:00 -08003366 hlist_for_each_entry_rcu_bh(ifa,
stephen hemmingerc2e21292010-03-17 20:31:10 +00003367 &inet6_addr_lst[state->bucket], addr_lst) {
Eric Dumazet9f0d3c22012-10-16 07:37:27 +00003368 if (!net_eq(dev_net(ifa->idev->dev), net))
3369 continue;
Mihai Maruseac1d578302012-01-03 23:31:35 +00003370 state->offset++;
Eric Dumazet9f0d3c22012-10-16 07:37:27 +00003371 return ifa;
Daniel Lezcano3c400902008-01-10 22:42:49 -08003372 }
3373 }
3374
stephen hemmingerc2e21292010-03-17 20:31:10 +00003375 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003376}
3377
Linus Torvalds1da177e2005-04-16 15:20:36 -07003378static void *if6_seq_start(struct seq_file *seq, loff_t *pos)
Eric Dumazet4f70ecc2010-05-03 10:50:14 +00003379 __acquires(rcu_bh)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003380{
stephen hemminger5c578ae2010-03-17 20:31:11 +00003381 rcu_read_lock_bh();
Mihai Maruseac1d578302012-01-03 23:31:35 +00003382 return if6_get_first(seq, *pos);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003383}
3384
3385static void *if6_seq_next(struct seq_file *seq, void *v, loff_t *pos)
3386{
3387 struct inet6_ifaddr *ifa;
3388
3389 ifa = if6_get_next(seq, v);
3390 ++*pos;
3391 return ifa;
3392}
3393
3394static void if6_seq_stop(struct seq_file *seq, void *v)
Eric Dumazet4f70ecc2010-05-03 10:50:14 +00003395 __releases(rcu_bh)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003396{
stephen hemminger5c578ae2010-03-17 20:31:11 +00003397 rcu_read_unlock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003398}
3399
3400static int if6_seq_show(struct seq_file *seq, void *v)
3401{
3402 struct inet6_ifaddr *ifp = (struct inet6_ifaddr *)v;
Harvey Harrison4b7a4272008-10-29 12:50:24 -07003403 seq_printf(seq, "%pi6 %02x %02x %02x %02x %8s\n",
Harvey Harrisonb0711952008-10-28 16:05:40 -07003404 &ifp->addr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003405 ifp->idev->dev->ifindex,
3406 ifp->prefix_len,
3407 ifp->scope,
3408 ifp->flags,
3409 ifp->idev->dev->name);
3410 return 0;
3411}
3412
Philippe De Muyter56b3d972007-07-10 23:07:31 -07003413static const struct seq_operations if6_seq_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003414 .start = if6_seq_start,
3415 .next = if6_seq_next,
3416 .show = if6_seq_show,
3417 .stop = if6_seq_stop,
3418};
3419
3420static int if6_seq_open(struct inode *inode, struct file *file)
3421{
Daniel Lezcano3c400902008-01-10 22:42:49 -08003422 return seq_open_net(inode, file, &if6_seq_ops,
3423 sizeof(struct if6_iter_state));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003424}
3425
Arjan van de Ven9a321442007-02-12 00:55:35 -08003426static const struct file_operations if6_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003427 .owner = THIS_MODULE,
3428 .open = if6_seq_open,
3429 .read = seq_read,
3430 .llseek = seq_lseek,
Daniel Lezcano3c400902008-01-10 22:42:49 -08003431 .release = seq_release_net,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003432};
3433
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00003434static int __net_init if6_proc_net_init(struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003435{
Gao fengd4beaa62013-02-18 01:34:54 +00003436 if (!proc_create("if_inet6", S_IRUGO, net->proc_net, &if6_fops))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003437 return -ENOMEM;
3438 return 0;
3439}
3440
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00003441static void __net_exit if6_proc_net_exit(struct net *net)
Daniel Lezcano3c400902008-01-10 22:42:49 -08003442{
Gao fengece31ff2013-02-18 01:34:56 +00003443 remove_proc_entry("if_inet6", net->proc_net);
Daniel Lezcano3c400902008-01-10 22:42:49 -08003444}
3445
3446static struct pernet_operations if6_proc_net_ops = {
3447 .init = if6_proc_net_init,
3448 .exit = if6_proc_net_exit,
3449};
3450
3451int __init if6_proc_init(void)
3452{
3453 return register_pernet_subsys(&if6_proc_net_ops);
3454}
3455
Linus Torvalds1da177e2005-04-16 15:20:36 -07003456void if6_proc_exit(void)
3457{
Daniel Lezcano3c400902008-01-10 22:42:49 -08003458 unregister_pernet_subsys(&if6_proc_net_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003459}
3460#endif /* CONFIG_PROC_FS */
3461
Amerigo Wang07a93622012-10-29 16:23:10 +00003462#if IS_ENABLED(CONFIG_IPV6_MIP6)
Noriaki TAKAMIYA3b9f9a12006-09-22 14:45:56 -07003463/* Check if address is a home address configured on any interface. */
Eric Dumazetb71d1d42011-04-22 04:53:02 +00003464int ipv6_chk_home_addr(struct net *net, const struct in6_addr *addr)
Noriaki TAKAMIYA3b9f9a12006-09-22 14:45:56 -07003465{
3466 int ret = 0;
stephen hemmingerc2e21292010-03-17 20:31:10 +00003467 struct inet6_ifaddr *ifp = NULL;
Eric Dumazetddbe5032012-07-18 08:11:12 +00003468 unsigned int hash = inet6_addr_hash(addr);
stephen hemmingerc2e21292010-03-17 20:31:10 +00003469
stephen hemminger5c578ae2010-03-17 20:31:11 +00003470 rcu_read_lock_bh();
Sasha Levinb67bfe02013-02-27 17:06:00 -08003471 hlist_for_each_entry_rcu_bh(ifp, &inet6_addr_lst[hash], addr_lst) {
YOSHIFUJI Hideaki878628f2008-03-26 03:57:35 +09003472 if (!net_eq(dev_net(ifp->idev->dev), net))
Daniel Lezcano389f6612008-01-10 22:44:40 -08003473 continue;
YOSHIFUJI Hideakicaad2952008-04-10 15:42:07 +09003474 if (ipv6_addr_equal(&ifp->addr, addr) &&
Noriaki TAKAMIYA3b9f9a12006-09-22 14:45:56 -07003475 (ifp->flags & IFA_F_HOMEADDRESS)) {
3476 ret = 1;
3477 break;
3478 }
3479 }
stephen hemminger5c578ae2010-03-17 20:31:11 +00003480 rcu_read_unlock_bh();
Noriaki TAKAMIYA3b9f9a12006-09-22 14:45:56 -07003481 return ret;
3482}
3483#endif
3484
Linus Torvalds1da177e2005-04-16 15:20:36 -07003485/*
3486 * Periodic address status verification
3487 */
3488
3489static void addrconf_verify(unsigned long foo)
3490{
YOSHIFUJI Hideakib2db7562010-03-20 16:11:12 -07003491 unsigned long now, next, next_sec, next_sched;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003492 struct inet6_ifaddr *ifp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003493 int i;
3494
stephen hemminger5c578ae2010-03-17 20:31:11 +00003495 rcu_read_lock_bh();
3496 spin_lock(&addrconf_verify_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003497 now = jiffies;
YOSHIFUJI Hideakib2db7562010-03-20 16:11:12 -07003498 next = round_jiffies_up(now + ADDR_CHECK_FREQUENCY);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003499
3500 del_timer(&addr_chk_timer);
3501
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07003502 for (i = 0; i < IN6_ADDR_HSIZE; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003503restart:
Sasha Levinb67bfe02013-02-27 17:06:00 -08003504 hlist_for_each_entry_rcu_bh(ifp,
stephen hemminger5c578ae2010-03-17 20:31:11 +00003505 &inet6_addr_lst[i], addr_lst) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003506 unsigned long age;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003507
3508 if (ifp->flags & IFA_F_PERMANENT)
3509 continue;
3510
3511 spin_lock(&ifp->lock);
YOSHIFUJI Hideakib2db7562010-03-20 16:11:12 -07003512 /* We try to batch several events at once. */
3513 age = (now - ifp->tstamp + ADDRCONF_TIMER_FUZZ_MINUS) / HZ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003514
YOSHIFUJI Hideaki8f27ebb2006-07-28 18:12:11 +09003515 if (ifp->valid_lft != INFINITY_LIFE_TIME &&
3516 age >= ifp->valid_lft) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003517 spin_unlock(&ifp->lock);
3518 in6_ifa_hold(ifp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003519 ipv6_del_addr(ifp);
3520 goto restart;
YOSHIFUJI Hideaki8f27ebb2006-07-28 18:12:11 +09003521 } else if (ifp->prefered_lft == INFINITY_LIFE_TIME) {
3522 spin_unlock(&ifp->lock);
3523 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003524 } else if (age >= ifp->prefered_lft) {
Brian Haleya1ed0522009-07-02 07:10:52 +00003525 /* jiffies - ifp->tstamp > age >= ifp->prefered_lft */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003526 int deprecate = 0;
3527
3528 if (!(ifp->flags&IFA_F_DEPRECATED)) {
3529 deprecate = 1;
3530 ifp->flags |= IFA_F_DEPRECATED;
3531 }
3532
3533 if (time_before(ifp->tstamp + ifp->valid_lft * HZ, next))
3534 next = ifp->tstamp + ifp->valid_lft * HZ;
3535
3536 spin_unlock(&ifp->lock);
3537
3538 if (deprecate) {
3539 in6_ifa_hold(ifp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003540
3541 ipv6_ifa_notify(0, ifp);
3542 in6_ifa_put(ifp);
3543 goto restart;
3544 }
3545#ifdef CONFIG_IPV6_PRIVACY
3546 } else if ((ifp->flags&IFA_F_TEMPORARY) &&
3547 !(ifp->flags&IFA_F_TENTATIVE)) {
stephen hemminger88949cf2010-03-17 20:31:17 +00003548 unsigned long regen_advance = ifp->idev->cnf.regen_max_retry *
3549 ifp->idev->cnf.dad_transmits *
3550 ifp->idev->nd_parms->retrans_time / HZ;
3551
Linus Torvalds1da177e2005-04-16 15:20:36 -07003552 if (age >= ifp->prefered_lft - regen_advance) {
3553 struct inet6_ifaddr *ifpub = ifp->ifpub;
3554 if (time_before(ifp->tstamp + ifp->prefered_lft * HZ, next))
3555 next = ifp->tstamp + ifp->prefered_lft * HZ;
3556 if (!ifp->regen_count && ifpub) {
3557 ifp->regen_count++;
3558 in6_ifa_hold(ifp);
3559 in6_ifa_hold(ifpub);
3560 spin_unlock(&ifp->lock);
stephen hemminger5c578ae2010-03-17 20:31:11 +00003561
Hiroyuki YAMAMORI291d8092005-12-23 11:24:05 -08003562 spin_lock(&ifpub->lock);
3563 ifpub->regen_count = 0;
3564 spin_unlock(&ifpub->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003565 ipv6_create_tempaddr(ifpub, ifp);
3566 in6_ifa_put(ifpub);
3567 in6_ifa_put(ifp);
3568 goto restart;
3569 }
3570 } else if (time_before(ifp->tstamp + ifp->prefered_lft * HZ - regen_advance * HZ, next))
3571 next = ifp->tstamp + ifp->prefered_lft * HZ - regen_advance * HZ;
3572 spin_unlock(&ifp->lock);
3573#endif
3574 } else {
3575 /* ifp->prefered_lft <= ifp->valid_lft */
3576 if (time_before(ifp->tstamp + ifp->prefered_lft * HZ, next))
3577 next = ifp->tstamp + ifp->prefered_lft * HZ;
3578 spin_unlock(&ifp->lock);
3579 }
3580 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003581 }
3582
YOSHIFUJI Hideakib2db7562010-03-20 16:11:12 -07003583 next_sec = round_jiffies_up(next);
3584 next_sched = next;
3585
3586 /* If rounded timeout is accurate enough, accept it. */
3587 if (time_before(next_sec, next + ADDRCONF_TIMER_FUZZ))
3588 next_sched = next_sec;
3589
3590 /* And minimum interval is ADDRCONF_TIMER_FUZZ_MAX. */
3591 if (time_before(next_sched, jiffies + ADDRCONF_TIMER_FUZZ_MAX))
3592 next_sched = jiffies + ADDRCONF_TIMER_FUZZ_MAX;
3593
dingtianhongba3542e2013-08-17 10:27:04 +08003594 ADBG(KERN_DEBUG "now = %lu, schedule = %lu, rounded schedule = %lu => %lu\n",
3595 now, next, next_sec, next_sched);
YOSHIFUJI Hideakib2db7562010-03-20 16:11:12 -07003596
3597 addr_chk_timer.expires = next_sched;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003598 add_timer(&addr_chk_timer);
stephen hemminger5c578ae2010-03-17 20:31:11 +00003599 spin_unlock(&addrconf_verify_lock);
3600 rcu_read_unlock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003601}
3602
Nicolas Dichtelcaeaba72013-05-16 22:32:00 +00003603static struct in6_addr *extract_addr(struct nlattr *addr, struct nlattr *local,
3604 struct in6_addr **peer_pfx)
Thomas Graf461d8832006-09-18 00:09:49 -07003605{
3606 struct in6_addr *pfx = NULL;
3607
Nicolas Dichtelcaeaba72013-05-16 22:32:00 +00003608 *peer_pfx = NULL;
3609
Thomas Graf461d8832006-09-18 00:09:49 -07003610 if (addr)
3611 pfx = nla_data(addr);
3612
3613 if (local) {
3614 if (pfx && nla_memcmp(local, pfx, sizeof(*pfx)))
Nicolas Dichtelcaeaba72013-05-16 22:32:00 +00003615 *peer_pfx = pfx;
3616 pfx = nla_data(local);
Thomas Graf461d8832006-09-18 00:09:49 -07003617 }
3618
3619 return pfx;
3620}
3621
Patrick McHardyef7c79e2007-06-05 12:38:30 -07003622static const struct nla_policy ifa_ipv6_policy[IFA_MAX+1] = {
Thomas Graf461d8832006-09-18 00:09:49 -07003623 [IFA_ADDRESS] = { .len = sizeof(struct in6_addr) },
3624 [IFA_LOCAL] = { .len = sizeof(struct in6_addr) },
3625 [IFA_CACHEINFO] = { .len = sizeof(struct ifa_cacheinfo) },
3626};
3627
Linus Torvalds1da177e2005-04-16 15:20:36 -07003628static int
Thomas Graf661d2962013-03-21 07:45:29 +00003629inet6_rtm_deladdr(struct sk_buff *skb, struct nlmsghdr *nlh)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003630{
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09003631 struct net *net = sock_net(skb->sk);
Thomas Grafb933f712006-09-18 00:10:19 -07003632 struct ifaddrmsg *ifm;
3633 struct nlattr *tb[IFA_MAX+1];
Nicolas Dichtelcaeaba72013-05-16 22:32:00 +00003634 struct in6_addr *pfx, *peer_pfx;
Thomas Grafb933f712006-09-18 00:10:19 -07003635 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003636
Thomas Grafb933f712006-09-18 00:10:19 -07003637 err = nlmsg_parse(nlh, sizeof(*ifm), tb, IFA_MAX, ifa_ipv6_policy);
3638 if (err < 0)
3639 return err;
3640
3641 ifm = nlmsg_data(nlh);
Nicolas Dichtelcaeaba72013-05-16 22:32:00 +00003642 pfx = extract_addr(tb[IFA_ADDRESS], tb[IFA_LOCAL], &peer_pfx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003643 if (pfx == NULL)
3644 return -EINVAL;
3645
Daniel Lezcanoaf284932008-03-05 10:46:57 -08003646 return inet6_addr_del(net, ifm->ifa_index, pfx, ifm->ifa_prefixlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003647}
3648
Noriaki TAKAMIYA55ebaef2006-09-22 14:45:27 -07003649static int inet6_addr_modify(struct inet6_ifaddr *ifp, u8 ifa_flags,
3650 u32 prefered_lft, u32 valid_lft)
Noriaki TAKAMIYA081bba52006-07-28 18:12:13 +09003651{
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07003652 u32 flags;
3653 clock_t expires;
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +09003654 unsigned long timeout;
YOSHIFUJI Hideaki46d48042007-02-07 20:36:26 +09003655
Noriaki TAKAMIYA081bba52006-07-28 18:12:13 +09003656 if (!valid_lft || (prefered_lft > valid_lft))
3657 return -EINVAL;
3658
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +09003659 timeout = addrconf_timeout_fixup(valid_lft, HZ);
3660 if (addrconf_finite_timeout(timeout)) {
3661 expires = jiffies_to_clock_t(timeout * HZ);
3662 valid_lft = timeout;
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07003663 flags = RTF_EXPIRES;
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +09003664 } else {
3665 expires = 0;
3666 flags = 0;
3667 ifa_flags |= IFA_F_PERMANENT;
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07003668 }
Noriaki TAKAMIYA081bba52006-07-28 18:12:13 +09003669
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +09003670 timeout = addrconf_timeout_fixup(prefered_lft, HZ);
3671 if (addrconf_finite_timeout(timeout)) {
3672 if (timeout == 0)
3673 ifa_flags |= IFA_F_DEPRECATED;
3674 prefered_lft = timeout;
3675 }
Noriaki TAKAMIYA081bba52006-07-28 18:12:13 +09003676
3677 spin_lock_bh(&ifp->lock);
Noriaki TAKAMIYA3b9f9a12006-09-22 14:45:56 -07003678 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 +09003679 ifp->tstamp = jiffies;
3680 ifp->valid_lft = valid_lft;
3681 ifp->prefered_lft = prefered_lft;
3682
3683 spin_unlock_bh(&ifp->lock);
3684 if (!(ifp->flags&IFA_F_TENTATIVE))
3685 ipv6_ifa_notify(0, ifp);
Noriaki TAKAMIYA081bba52006-07-28 18:12:13 +09003686
YOSHIFUJI Hideaki46d48042007-02-07 20:36:26 +09003687 addrconf_prefix_route(&ifp->addr, ifp->prefix_len, ifp->idev->dev,
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07003688 expires, flags);
Noriaki TAKAMIYA081bba52006-07-28 18:12:13 +09003689 addrconf_verify(0);
3690
3691 return 0;
3692}
3693
3694static int
Thomas Graf661d2962013-03-21 07:45:29 +00003695inet6_rtm_newaddr(struct sk_buff *skb, struct nlmsghdr *nlh)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003696{
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09003697 struct net *net = sock_net(skb->sk);
Thomas Graf461d8832006-09-18 00:09:49 -07003698 struct ifaddrmsg *ifm;
3699 struct nlattr *tb[IFA_MAX+1];
Nicolas Dichtelcaeaba72013-05-16 22:32:00 +00003700 struct in6_addr *pfx, *peer_pfx;
Thomas Graf7198f8c2006-09-18 00:13:46 -07003701 struct inet6_ifaddr *ifa;
3702 struct net_device *dev;
Noriaki TAKAMIYA55ebaef2006-09-22 14:45:27 -07003703 u32 valid_lft = INFINITY_LIFE_TIME, preferred_lft = INFINITY_LIFE_TIME;
3704 u8 ifa_flags;
Thomas Graf461d8832006-09-18 00:09:49 -07003705 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003706
Thomas Graf461d8832006-09-18 00:09:49 -07003707 err = nlmsg_parse(nlh, sizeof(*ifm), tb, IFA_MAX, ifa_ipv6_policy);
3708 if (err < 0)
3709 return err;
3710
3711 ifm = nlmsg_data(nlh);
Nicolas Dichtelcaeaba72013-05-16 22:32:00 +00003712 pfx = extract_addr(tb[IFA_ADDRESS], tb[IFA_LOCAL], &peer_pfx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003713 if (pfx == NULL)
3714 return -EINVAL;
3715
Thomas Graf461d8832006-09-18 00:09:49 -07003716 if (tb[IFA_CACHEINFO]) {
Noriaki TAKAMIYA07787692006-07-28 18:12:10 +09003717 struct ifa_cacheinfo *ci;
Thomas Graf461d8832006-09-18 00:09:49 -07003718
3719 ci = nla_data(tb[IFA_CACHEINFO]);
Noriaki TAKAMIYA07787692006-07-28 18:12:10 +09003720 valid_lft = ci->ifa_valid;
Thomas Graf461d8832006-09-18 00:09:49 -07003721 preferred_lft = ci->ifa_prefered;
3722 } else {
3723 preferred_lft = INFINITY_LIFE_TIME;
3724 valid_lft = INFINITY_LIFE_TIME;
Noriaki TAKAMIYA07787692006-07-28 18:12:10 +09003725 }
3726
Daniel Lezcanoaf284932008-03-05 10:46:57 -08003727 dev = __dev_get_by_index(net, ifm->ifa_index);
Thomas Graf7198f8c2006-09-18 00:13:46 -07003728 if (dev == NULL)
3729 return -ENODEV;
3730
Noriaki TAKAMIYA55ebaef2006-09-22 14:45:27 -07003731 /* We ignore other flags so far. */
Noriaki TAKAMIYA3b9f9a12006-09-22 14:45:56 -07003732 ifa_flags = ifm->ifa_flags & (IFA_F_NODAD | IFA_F_HOMEADDRESS);
Noriaki TAKAMIYA55ebaef2006-09-22 14:45:27 -07003733
Daniel Lezcano1cab3da2008-01-10 22:44:09 -08003734 ifa = ipv6_get_ifaddr(net, pfx, dev, 1);
Thomas Graf7198f8c2006-09-18 00:13:46 -07003735 if (ifa == NULL) {
3736 /*
3737 * It would be best to check for !NLM_F_CREATE here but
3738 * userspace alreay relies on not having to provide this.
3739 */
Nicolas Dichtelcaeaba72013-05-16 22:32:00 +00003740 return inet6_addr_add(net, ifm->ifa_index, pfx, peer_pfx,
Daniel Lezcanoaf284932008-03-05 10:46:57 -08003741 ifm->ifa_prefixlen, ifa_flags,
3742 preferred_lft, valid_lft);
Noriaki TAKAMIYA081bba52006-07-28 18:12:13 +09003743 }
3744
Thomas Graf7198f8c2006-09-18 00:13:46 -07003745 if (nlh->nlmsg_flags & NLM_F_EXCL ||
3746 !(nlh->nlmsg_flags & NLM_F_REPLACE))
3747 err = -EEXIST;
3748 else
Noriaki TAKAMIYA55ebaef2006-09-22 14:45:27 -07003749 err = inet6_addr_modify(ifa, ifa_flags, preferred_lft, valid_lft);
Thomas Graf7198f8c2006-09-18 00:13:46 -07003750
3751 in6_ifa_put(ifa);
3752
3753 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003754}
3755
Thomas Graf101bb222006-09-18 00:11:52 -07003756static void put_ifaddrmsg(struct nlmsghdr *nlh, u8 prefixlen, u8 flags,
3757 u8 scope, int ifindex)
3758{
3759 struct ifaddrmsg *ifm;
3760
3761 ifm = nlmsg_data(nlh);
3762 ifm->ifa_family = AF_INET6;
3763 ifm->ifa_prefixlen = prefixlen;
3764 ifm->ifa_flags = flags;
3765 ifm->ifa_scope = scope;
3766 ifm->ifa_index = ifindex;
3767}
3768
Thomas Graf85486af2006-09-18 00:11:24 -07003769static int put_cacheinfo(struct sk_buff *skb, unsigned long cstamp,
3770 unsigned long tstamp, u32 preferred, u32 valid)
3771{
3772 struct ifa_cacheinfo ci;
3773
Thomas Graf18a31e12010-11-17 04:12:02 +00003774 ci.cstamp = cstamp_delta(cstamp);
3775 ci.tstamp = cstamp_delta(tstamp);
Thomas Graf85486af2006-09-18 00:11:24 -07003776 ci.ifa_prefered = preferred;
3777 ci.ifa_valid = valid;
3778
3779 return nla_put(skb, IFA_CACHEINFO, sizeof(ci), &ci);
3780}
3781
Thomas Graf101bb222006-09-18 00:11:52 -07003782static inline int rt_scope(int ifa_scope)
3783{
3784 if (ifa_scope & IFA_HOST)
3785 return RT_SCOPE_HOST;
3786 else if (ifa_scope & IFA_LINK)
3787 return RT_SCOPE_LINK;
3788 else if (ifa_scope & IFA_SITE)
3789 return RT_SCOPE_SITE;
3790 else
3791 return RT_SCOPE_UNIVERSE;
3792}
3793
Thomas Graf0ab68032006-09-18 00:12:35 -07003794static inline int inet6_ifaddr_msgsize(void)
3795{
Thomas Graf339bf982006-11-10 14:10:15 -08003796 return NLMSG_ALIGN(sizeof(struct ifaddrmsg))
Nicolas Dichtelcaeaba72013-05-16 22:32:00 +00003797 + nla_total_size(16) /* IFA_LOCAL */
Thomas Graf339bf982006-11-10 14:10:15 -08003798 + nla_total_size(16) /* IFA_ADDRESS */
3799 + nla_total_size(sizeof(struct ifa_cacheinfo));
Thomas Graf0ab68032006-09-18 00:12:35 -07003800}
YOSHIFUJI Hideakic5396a32006-06-17 22:48:48 -07003801
Linus Torvalds1da177e2005-04-16 15:20:36 -07003802static int inet6_fill_ifaddr(struct sk_buff *skb, struct inet6_ifaddr *ifa,
Eric W. Biederman15e47302012-09-07 20:12:54 +00003803 u32 portid, u32 seq, int event, unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003804{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003805 struct nlmsghdr *nlh;
Thomas Graf85486af2006-09-18 00:11:24 -07003806 u32 preferred, valid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003807
Eric W. Biederman15e47302012-09-07 20:12:54 +00003808 nlh = nlmsg_put(skb, portid, seq, event, sizeof(struct ifaddrmsg), flags);
Thomas Graf0ab68032006-09-18 00:12:35 -07003809 if (nlh == NULL)
Patrick McHardy26932562007-01-31 23:16:40 -08003810 return -EMSGSIZE;
Thomas Graf0ab68032006-09-18 00:12:35 -07003811
Thomas Graf101bb222006-09-18 00:11:52 -07003812 put_ifaddrmsg(nlh, ifa->prefix_len, ifa->flags, rt_scope(ifa->scope),
3813 ifa->idev->dev->ifindex);
3814
Linus Torvalds1da177e2005-04-16 15:20:36 -07003815 if (!(ifa->flags&IFA_F_PERMANENT)) {
Thomas Graf85486af2006-09-18 00:11:24 -07003816 preferred = ifa->prefered_lft;
3817 valid = ifa->valid_lft;
3818 if (preferred != INFINITY_LIFE_TIME) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003819 long tval = (jiffies - ifa->tstamp)/HZ;
Jens Rosenbooma1faa692009-06-25 04:55:50 +00003820 if (preferred > tval)
3821 preferred -= tval;
3822 else
3823 preferred = 0;
Ben Hutchingsf56619f2010-06-26 11:37:47 +00003824 if (valid != INFINITY_LIFE_TIME) {
3825 if (valid > tval)
3826 valid -= tval;
3827 else
3828 valid = 0;
3829 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003830 }
3831 } else {
Thomas Graf85486af2006-09-18 00:11:24 -07003832 preferred = INFINITY_LIFE_TIME;
3833 valid = INFINITY_LIFE_TIME;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003834 }
Thomas Graf85486af2006-09-18 00:11:24 -07003835
Cong Wang7996c792013-05-22 05:41:06 +00003836 if (!ipv6_addr_any(&ifa->peer_addr)) {
Nicolas Dichtelcaeaba72013-05-16 22:32:00 +00003837 if (nla_put(skb, IFA_LOCAL, 16, &ifa->addr) < 0 ||
3838 nla_put(skb, IFA_ADDRESS, 16, &ifa->peer_addr) < 0)
3839 goto error;
3840 } else
3841 if (nla_put(skb, IFA_ADDRESS, 16, &ifa->addr) < 0)
3842 goto error;
3843
3844 if (put_cacheinfo(skb, ifa->cstamp, ifa->tstamp, preferred, valid) < 0)
3845 goto error;
Thomas Graf85486af2006-09-18 00:11:24 -07003846
Thomas Graf0ab68032006-09-18 00:12:35 -07003847 return nlmsg_end(skb, nlh);
Nicolas Dichtelcaeaba72013-05-16 22:32:00 +00003848
3849error:
3850 nlmsg_cancel(skb, nlh);
3851 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003852}
3853
3854static int inet6_fill_ifmcaddr(struct sk_buff *skb, struct ifmcaddr6 *ifmca,
Eric W. Biederman15e47302012-09-07 20:12:54 +00003855 u32 portid, u32 seq, int event, u16 flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003856{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003857 struct nlmsghdr *nlh;
Thomas Graf101bb222006-09-18 00:11:52 -07003858 u8 scope = RT_SCOPE_UNIVERSE;
3859 int ifindex = ifmca->idev->dev->ifindex;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003860
Thomas Graf101bb222006-09-18 00:11:52 -07003861 if (ipv6_addr_scope(&ifmca->mca_addr) & IFA_SITE)
3862 scope = RT_SCOPE_SITE;
3863
Eric W. Biederman15e47302012-09-07 20:12:54 +00003864 nlh = nlmsg_put(skb, portid, seq, event, sizeof(struct ifaddrmsg), flags);
Thomas Graf0ab68032006-09-18 00:12:35 -07003865 if (nlh == NULL)
Patrick McHardy26932562007-01-31 23:16:40 -08003866 return -EMSGSIZE;
Thomas Graf0ab68032006-09-18 00:12:35 -07003867
Thomas Graf101bb222006-09-18 00:11:52 -07003868 put_ifaddrmsg(nlh, 128, IFA_F_PERMANENT, scope, ifindex);
Thomas Graf0ab68032006-09-18 00:12:35 -07003869 if (nla_put(skb, IFA_MULTICAST, 16, &ifmca->mca_addr) < 0 ||
3870 put_cacheinfo(skb, ifmca->mca_cstamp, ifmca->mca_tstamp,
Patrick McHardy26932562007-01-31 23:16:40 -08003871 INFINITY_LIFE_TIME, INFINITY_LIFE_TIME) < 0) {
3872 nlmsg_cancel(skb, nlh);
3873 return -EMSGSIZE;
3874 }
Thomas Graf85486af2006-09-18 00:11:24 -07003875
Thomas Graf0ab68032006-09-18 00:12:35 -07003876 return nlmsg_end(skb, nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003877}
3878
3879static int inet6_fill_ifacaddr(struct sk_buff *skb, struct ifacaddr6 *ifaca,
Eric W. Biederman15e47302012-09-07 20:12:54 +00003880 u32 portid, u32 seq, int event, unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003881{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003882 struct nlmsghdr *nlh;
Thomas Graf101bb222006-09-18 00:11:52 -07003883 u8 scope = RT_SCOPE_UNIVERSE;
3884 int ifindex = ifaca->aca_idev->dev->ifindex;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003885
Thomas Graf101bb222006-09-18 00:11:52 -07003886 if (ipv6_addr_scope(&ifaca->aca_addr) & IFA_SITE)
3887 scope = RT_SCOPE_SITE;
3888
Eric W. Biederman15e47302012-09-07 20:12:54 +00003889 nlh = nlmsg_put(skb, portid, seq, event, sizeof(struct ifaddrmsg), flags);
Thomas Graf0ab68032006-09-18 00:12:35 -07003890 if (nlh == NULL)
Patrick McHardy26932562007-01-31 23:16:40 -08003891 return -EMSGSIZE;
Thomas Graf0ab68032006-09-18 00:12:35 -07003892
Thomas Graf101bb222006-09-18 00:11:52 -07003893 put_ifaddrmsg(nlh, 128, IFA_F_PERMANENT, scope, ifindex);
Thomas Graf0ab68032006-09-18 00:12:35 -07003894 if (nla_put(skb, IFA_ANYCAST, 16, &ifaca->aca_addr) < 0 ||
3895 put_cacheinfo(skb, ifaca->aca_cstamp, ifaca->aca_tstamp,
Patrick McHardy26932562007-01-31 23:16:40 -08003896 INFINITY_LIFE_TIME, INFINITY_LIFE_TIME) < 0) {
3897 nlmsg_cancel(skb, nlh);
3898 return -EMSGSIZE;
3899 }
Thomas Graf85486af2006-09-18 00:11:24 -07003900
Thomas Graf0ab68032006-09-18 00:12:35 -07003901 return nlmsg_end(skb, nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003902}
3903
Stephen Hemmingere21e8462010-03-20 16:09:01 -07003904enum addr_type_t {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003905 UNICAST_ADDR,
3906 MULTICAST_ADDR,
3907 ANYCAST_ADDR,
3908};
3909
Eric Dumazet234b27c2009-11-12 04:11:50 +00003910/* called with rcu_read_lock() */
3911static int in6_dump_addrs(struct inet6_dev *idev, struct sk_buff *skb,
3912 struct netlink_callback *cb, enum addr_type_t type,
3913 int s_ip_idx, int *p_ip_idx)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003914{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003915 struct ifmcaddr6 *ifmca;
3916 struct ifacaddr6 *ifaca;
Eric Dumazet234b27c2009-11-12 04:11:50 +00003917 int err = 1;
3918 int ip_idx = *p_ip_idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003919
Eric Dumazet234b27c2009-11-12 04:11:50 +00003920 read_lock_bh(&idev->lock);
3921 switch (type) {
stephen hemminger502a2ff2010-03-17 20:31:13 +00003922 case UNICAST_ADDR: {
3923 struct inet6_ifaddr *ifa;
3924
Eric Dumazet234b27c2009-11-12 04:11:50 +00003925 /* unicast address incl. temp addr */
stephen hemminger502a2ff2010-03-17 20:31:13 +00003926 list_for_each_entry(ifa, &idev->addr_list, if_list) {
3927 if (++ip_idx < s_ip_idx)
Eric Dumazet234b27c2009-11-12 04:11:50 +00003928 continue;
3929 err = inet6_fill_ifaddr(skb, ifa,
Eric W. Biederman15e47302012-09-07 20:12:54 +00003930 NETLINK_CB(cb->skb).portid,
Eric Dumazet234b27c2009-11-12 04:11:50 +00003931 cb->nlh->nlmsg_seq,
3932 RTM_NEWADDR,
3933 NLM_F_MULTI);
3934 if (err <= 0)
3935 break;
Nicolas Dichtel63998ac2013-03-22 06:28:43 +00003936 nl_dump_check_consistent(cb, nlmsg_hdr(skb));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003937 }
Eric Dumazet234b27c2009-11-12 04:11:50 +00003938 break;
stephen hemminger502a2ff2010-03-17 20:31:13 +00003939 }
Eric Dumazet234b27c2009-11-12 04:11:50 +00003940 case MULTICAST_ADDR:
3941 /* multicast address */
3942 for (ifmca = idev->mc_list; ifmca;
3943 ifmca = ifmca->next, ip_idx++) {
3944 if (ip_idx < s_ip_idx)
3945 continue;
3946 err = inet6_fill_ifmcaddr(skb, ifmca,
Eric W. Biederman15e47302012-09-07 20:12:54 +00003947 NETLINK_CB(cb->skb).portid,
Eric Dumazet234b27c2009-11-12 04:11:50 +00003948 cb->nlh->nlmsg_seq,
3949 RTM_GETMULTICAST,
3950 NLM_F_MULTI);
3951 if (err <= 0)
3952 break;
3953 }
3954 break;
3955 case ANYCAST_ADDR:
3956 /* anycast address */
3957 for (ifaca = idev->ac_list; ifaca;
3958 ifaca = ifaca->aca_next, ip_idx++) {
3959 if (ip_idx < s_ip_idx)
3960 continue;
3961 err = inet6_fill_ifacaddr(skb, ifaca,
Eric W. Biederman15e47302012-09-07 20:12:54 +00003962 NETLINK_CB(cb->skb).portid,
Eric Dumazet234b27c2009-11-12 04:11:50 +00003963 cb->nlh->nlmsg_seq,
3964 RTM_GETANYCAST,
3965 NLM_F_MULTI);
3966 if (err <= 0)
3967 break;
3968 }
3969 break;
3970 default:
3971 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003972 }
Eric Dumazet234b27c2009-11-12 04:11:50 +00003973 read_unlock_bh(&idev->lock);
3974 *p_ip_idx = ip_idx;
3975 return err;
3976}
3977
3978static int inet6_dump_addr(struct sk_buff *skb, struct netlink_callback *cb,
3979 enum addr_type_t type)
3980{
3981 struct net *net = sock_net(skb->sk);
3982 int h, s_h;
3983 int idx, ip_idx;
3984 int s_idx, s_ip_idx;
3985 struct net_device *dev;
3986 struct inet6_dev *idev;
3987 struct hlist_head *head;
Eric Dumazet234b27c2009-11-12 04:11:50 +00003988
3989 s_h = cb->args[0];
3990 s_idx = idx = cb->args[1];
3991 s_ip_idx = ip_idx = cb->args[2];
3992
3993 rcu_read_lock();
Nicolas Dichtel63998ac2013-03-22 06:28:43 +00003994 cb->seq = atomic_read(&net->ipv6.dev_addr_genid) ^ net->dev_base_seq;
Eric Dumazet234b27c2009-11-12 04:11:50 +00003995 for (h = s_h; h < NETDEV_HASHENTRIES; h++, s_idx = 0) {
3996 idx = 0;
3997 head = &net->dev_index_head[h];
Sasha Levinb67bfe02013-02-27 17:06:00 -08003998 hlist_for_each_entry_rcu(dev, head, index_hlist) {
Eric Dumazet234b27c2009-11-12 04:11:50 +00003999 if (idx < s_idx)
4000 goto cont;
Patrick McHardy4b97efd2010-03-26 20:27:49 -07004001 if (h > s_h || idx > s_idx)
Eric Dumazet234b27c2009-11-12 04:11:50 +00004002 s_ip_idx = 0;
4003 ip_idx = 0;
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004004 idev = __in6_dev_get(dev);
4005 if (!idev)
Eric Dumazet234b27c2009-11-12 04:11:50 +00004006 goto cont;
4007
4008 if (in6_dump_addrs(idev, skb, cb, type,
4009 s_ip_idx, &ip_idx) <= 0)
4010 goto done;
4011cont:
4012 idx++;
4013 }
4014 }
4015done:
4016 rcu_read_unlock();
4017 cb->args[0] = h;
4018 cb->args[1] = idx;
4019 cb->args[2] = ip_idx;
4020
Linus Torvalds1da177e2005-04-16 15:20:36 -07004021 return skb->len;
4022}
4023
4024static int inet6_dump_ifaddr(struct sk_buff *skb, struct netlink_callback *cb)
4025{
4026 enum addr_type_t type = UNICAST_ADDR;
Denis V. Lunevb8542722007-12-01 00:21:31 +11004027
Linus Torvalds1da177e2005-04-16 15:20:36 -07004028 return inet6_dump_addr(skb, cb, type);
4029}
4030
4031static int inet6_dump_ifmcaddr(struct sk_buff *skb, struct netlink_callback *cb)
4032{
4033 enum addr_type_t type = MULTICAST_ADDR;
Denis V. Lunevb8542722007-12-01 00:21:31 +11004034
Linus Torvalds1da177e2005-04-16 15:20:36 -07004035 return inet6_dump_addr(skb, cb, type);
4036}
4037
4038
4039static int inet6_dump_ifacaddr(struct sk_buff *skb, struct netlink_callback *cb)
4040{
4041 enum addr_type_t type = ANYCAST_ADDR;
Denis V. Lunevb8542722007-12-01 00:21:31 +11004042
Linus Torvalds1da177e2005-04-16 15:20:36 -07004043 return inet6_dump_addr(skb, cb, type);
4044}
4045
Thomas Graf661d2962013-03-21 07:45:29 +00004046static int inet6_rtm_getaddr(struct sk_buff *in_skb, struct nlmsghdr *nlh)
Noriaki TAKAMIYA6c223822006-07-28 18:12:12 +09004047{
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09004048 struct net *net = sock_net(in_skb->sk);
Thomas Graf1b29fc22006-09-18 00:10:50 -07004049 struct ifaddrmsg *ifm;
4050 struct nlattr *tb[IFA_MAX+1];
Nicolas Dichtelcaeaba72013-05-16 22:32:00 +00004051 struct in6_addr *addr = NULL, *peer;
Noriaki TAKAMIYA6c223822006-07-28 18:12:12 +09004052 struct net_device *dev = NULL;
4053 struct inet6_ifaddr *ifa;
4054 struct sk_buff *skb;
Noriaki TAKAMIYA6c223822006-07-28 18:12:12 +09004055 int err;
4056
Thomas Graf1b29fc22006-09-18 00:10:50 -07004057 err = nlmsg_parse(nlh, sizeof(*ifm), tb, IFA_MAX, ifa_ipv6_policy);
4058 if (err < 0)
4059 goto errout;
Noriaki TAKAMIYA6c223822006-07-28 18:12:12 +09004060
Nicolas Dichtelcaeaba72013-05-16 22:32:00 +00004061 addr = extract_addr(tb[IFA_ADDRESS], tb[IFA_LOCAL], &peer);
Thomas Graf1b29fc22006-09-18 00:10:50 -07004062 if (addr == NULL) {
4063 err = -EINVAL;
4064 goto errout;
4065 }
4066
4067 ifm = nlmsg_data(nlh);
Noriaki TAKAMIYA6c223822006-07-28 18:12:12 +09004068 if (ifm->ifa_index)
Benjamin Thery6fda7352008-03-05 10:47:47 -08004069 dev = __dev_get_by_index(net, ifm->ifa_index);
Noriaki TAKAMIYA6c223822006-07-28 18:12:12 +09004070
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004071 ifa = ipv6_get_ifaddr(net, addr, dev, 1);
4072 if (!ifa) {
Thomas Graf1b29fc22006-09-18 00:10:50 -07004073 err = -EADDRNOTAVAIL;
4074 goto errout;
Noriaki TAKAMIYA6c223822006-07-28 18:12:12 +09004075 }
4076
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004077 skb = nlmsg_new(inet6_ifaddr_msgsize(), GFP_KERNEL);
4078 if (!skb) {
Thomas Graf1b29fc22006-09-18 00:10:50 -07004079 err = -ENOBUFS;
4080 goto errout_ifa;
4081 }
4082
Eric W. Biederman15e47302012-09-07 20:12:54 +00004083 err = inet6_fill_ifaddr(skb, ifa, NETLINK_CB(in_skb).portid,
Noriaki TAKAMIYA6c223822006-07-28 18:12:12 +09004084 nlh->nlmsg_seq, RTM_NEWADDR, 0);
Patrick McHardy26932562007-01-31 23:16:40 -08004085 if (err < 0) {
4086 /* -EMSGSIZE implies BUG in inet6_ifaddr_msgsize() */
4087 WARN_ON(err == -EMSGSIZE);
4088 kfree_skb(skb);
4089 goto errout_ifa;
4090 }
Eric W. Biederman15e47302012-09-07 20:12:54 +00004091 err = rtnl_unicast(skb, net, NETLINK_CB(in_skb).portid);
Thomas Graf1b29fc22006-09-18 00:10:50 -07004092errout_ifa:
Noriaki TAKAMIYA6c223822006-07-28 18:12:12 +09004093 in6_ifa_put(ifa);
Thomas Graf1b29fc22006-09-18 00:10:50 -07004094errout:
Noriaki TAKAMIYA6c223822006-07-28 18:12:12 +09004095 return err;
Noriaki TAKAMIYA6c223822006-07-28 18:12:12 +09004096}
4097
Linus Torvalds1da177e2005-04-16 15:20:36 -07004098static void inet6_ifa_notify(int event, struct inet6_ifaddr *ifa)
4099{
4100 struct sk_buff *skb;
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09004101 struct net *net = dev_net(ifa->idev->dev);
Thomas Graf5d620262006-08-15 00:35:02 -07004102 int err = -ENOBUFS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004103
Thomas Graf0ab68032006-09-18 00:12:35 -07004104 skb = nlmsg_new(inet6_ifaddr_msgsize(), GFP_ATOMIC);
Thomas Graf5d620262006-08-15 00:35:02 -07004105 if (skb == NULL)
4106 goto errout;
4107
4108 err = inet6_fill_ifaddr(skb, ifa, 0, 0, event, 0);
Patrick McHardy26932562007-01-31 23:16:40 -08004109 if (err < 0) {
4110 /* -EMSGSIZE implies BUG in inet6_ifaddr_msgsize() */
4111 WARN_ON(err == -EMSGSIZE);
4112 kfree_skb(skb);
4113 goto errout;
4114 }
Pablo Neira Ayuso1ce85fe2009-02-24 23:18:28 -08004115 rtnl_notify(skb, net, 0, RTNLGRP_IPV6_IFADDR, NULL, GFP_ATOMIC);
4116 return;
Thomas Graf5d620262006-08-15 00:35:02 -07004117errout:
4118 if (err < 0)
Benjamin Thery6fda7352008-03-05 10:47:47 -08004119 rtnl_set_sk_err(net, RTNLGRP_IPV6_IFADDR, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004120}
4121
Dave Jonesb6f99a22007-03-22 12:27:49 -07004122static inline void ipv6_store_devconf(struct ipv6_devconf *cnf,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004123 __s32 *array, int bytes)
4124{
Thomas Graf04561c12006-11-14 19:53:58 -08004125 BUG_ON(bytes < (DEVCONF_MAX * 4));
4126
Linus Torvalds1da177e2005-04-16 15:20:36 -07004127 memset(array, 0, bytes);
4128 array[DEVCONF_FORWARDING] = cnf->forwarding;
4129 array[DEVCONF_HOPLIMIT] = cnf->hop_limit;
4130 array[DEVCONF_MTU6] = cnf->mtu6;
4131 array[DEVCONF_ACCEPT_RA] = cnf->accept_ra;
4132 array[DEVCONF_ACCEPT_REDIRECTS] = cnf->accept_redirects;
4133 array[DEVCONF_AUTOCONF] = cnf->autoconf;
4134 array[DEVCONF_DAD_TRANSMITS] = cnf->dad_transmits;
4135 array[DEVCONF_RTR_SOLICITS] = cnf->rtr_solicits;
Thomas Graf93908d12010-11-17 01:44:24 +00004136 array[DEVCONF_RTR_SOLICIT_INTERVAL] =
4137 jiffies_to_msecs(cnf->rtr_solicit_interval);
4138 array[DEVCONF_RTR_SOLICIT_DELAY] =
4139 jiffies_to_msecs(cnf->rtr_solicit_delay);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004140 array[DEVCONF_FORCE_MLD_VERSION] = cnf->force_mld_version;
Hannes Frederic Sowafc4eba52013-08-14 01:03:46 +02004141 array[DEVCONF_MLDV1_UNSOLICITED_REPORT_INTERVAL] =
4142 jiffies_to_msecs(cnf->mldv1_unsolicited_report_interval);
4143 array[DEVCONF_MLDV2_UNSOLICITED_REPORT_INTERVAL] =
4144 jiffies_to_msecs(cnf->mldv2_unsolicited_report_interval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004145#ifdef CONFIG_IPV6_PRIVACY
4146 array[DEVCONF_USE_TEMPADDR] = cnf->use_tempaddr;
4147 array[DEVCONF_TEMP_VALID_LFT] = cnf->temp_valid_lft;
4148 array[DEVCONF_TEMP_PREFERED_LFT] = cnf->temp_prefered_lft;
4149 array[DEVCONF_REGEN_MAX_RETRY] = cnf->regen_max_retry;
4150 array[DEVCONF_MAX_DESYNC_FACTOR] = cnf->max_desync_factor;
4151#endif
4152 array[DEVCONF_MAX_ADDRESSES] = cnf->max_addresses;
YOSHIFUJI Hideaki65f5c7c2006-03-20 16:55:08 -08004153 array[DEVCONF_ACCEPT_RA_DEFRTR] = cnf->accept_ra_defrtr;
YOSHIFUJI Hideakic4fd30e2006-03-20 16:55:26 -08004154 array[DEVCONF_ACCEPT_RA_PINFO] = cnf->accept_ra_pinfo;
YOSHIFUJI Hideaki930d6ff2006-03-20 17:05:30 -08004155#ifdef CONFIG_IPV6_ROUTER_PREF
4156 array[DEVCONF_ACCEPT_RA_RTR_PREF] = cnf->accept_ra_rtr_pref;
Thomas Graf93908d12010-11-17 01:44:24 +00004157 array[DEVCONF_RTR_PROBE_INTERVAL] =
4158 jiffies_to_msecs(cnf->rtr_probe_interval);
Neil Hormanfa03ef32007-01-30 14:30:10 -08004159#ifdef CONFIG_IPV6_ROUTE_INFO
YOSHIFUJI Hideaki09c884d2006-03-20 17:07:03 -08004160 array[DEVCONF_ACCEPT_RA_RT_INFO_MAX_PLEN] = cnf->accept_ra_rt_info_max_plen;
4161#endif
YOSHIFUJI Hideaki930d6ff2006-03-20 17:05:30 -08004162#endif
YOSHIFUJI Hideakifbea49e2006-09-22 14:43:49 -07004163 array[DEVCONF_PROXY_NDP] = cnf->proxy_ndp;
YOSHIFUJI Hideaki0bcbc922007-04-24 14:58:30 -07004164 array[DEVCONF_ACCEPT_SOURCE_ROUTE] = cnf->accept_source_route;
Neil Horman95c385b2007-04-25 17:08:10 -07004165#ifdef CONFIG_IPV6_OPTIMISTIC_DAD
4166 array[DEVCONF_OPTIMISTIC_DAD] = cnf->optimistic_dad;
4167#endif
YOSHIFUJI Hideaki7bc570c2008-04-03 09:22:53 +09004168#ifdef CONFIG_IPV6_MROUTE
4169 array[DEVCONF_MC_FORWARDING] = cnf->mc_forwarding;
4170#endif
YOSHIFUJI Hideaki778d80b2008-06-28 14:17:11 +09004171 array[DEVCONF_DISABLE_IPV6] = cnf->disable_ipv6;
YOSHIFUJI Hideaki1b34be72008-06-28 14:18:38 +09004172 array[DEVCONF_ACCEPT_DAD] = cnf->accept_dad;
Cosmin Ratiuc3faca02009-10-09 03:11:14 +00004173 array[DEVCONF_FORCE_TLLAO] = cnf->force_tllao;
Hannes Frederic Sowa5cb04432012-11-06 16:46:20 +00004174 array[DEVCONF_NDISC_NOTIFY] = cnf->ndisc_notify;
Hannes Frederic Sowab800c3b2013-08-27 01:36:51 +02004175 array[DEVCONF_SUPPRESS_FRAG_NDISC] = cnf->suppress_frag_ndisc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004176}
4177
Thomas Grafb382b192010-11-16 04:33:57 +00004178static inline size_t inet6_ifla6_size(void)
4179{
4180 return nla_total_size(4) /* IFLA_INET6_FLAGS */
4181 + nla_total_size(sizeof(struct ifla_cacheinfo))
4182 + nla_total_size(DEVCONF_MAX * 4) /* IFLA_INET6_CONF */
4183 + nla_total_size(IPSTATS_MIB_MAX * 8) /* IFLA_INET6_STATS */
Daniel Borkmannf53adae2013-04-08 04:01:30 +00004184 + nla_total_size(ICMP6_MIB_MAX * 8) /* IFLA_INET6_ICMP6STATS */
4185 + nla_total_size(sizeof(struct in6_addr)); /* IFLA_INET6_TOKEN */
Thomas Grafb382b192010-11-16 04:33:57 +00004186}
4187
Thomas Graf339bf982006-11-10 14:10:15 -08004188static inline size_t inet6_if_nlmsg_size(void)
4189{
4190 return NLMSG_ALIGN(sizeof(struct ifinfomsg))
4191 + nla_total_size(IFNAMSIZ) /* IFLA_IFNAME */
4192 + nla_total_size(MAX_ADDR_LEN) /* IFLA_ADDRESS */
4193 + nla_total_size(4) /* IFLA_MTU */
4194 + nla_total_size(4) /* IFLA_LINK */
Thomas Grafb382b192010-11-16 04:33:57 +00004195 + nla_total_size(inet6_ifla6_size()); /* IFLA_PROTINFO */
Thomas Graf339bf982006-11-10 14:10:15 -08004196}
YOSHIFUJI Hideakic5396a32006-06-17 22:48:48 -07004197
Eric Dumazetbe281e52011-05-19 01:14:23 +00004198static inline void __snmp6_fill_statsdev(u64 *stats, atomic_long_t *mib,
Tejun Heo7d720c32010-02-16 15:20:26 +00004199 int items, int bytes)
Herbert Xu7f7d9a62007-04-24 21:54:09 -07004200{
4201 int i;
4202 int pad = bytes - sizeof(u64) * items;
4203 BUG_ON(pad < 0);
4204
4205 /* Use put_unaligned() because stats may not be aligned for u64. */
4206 put_unaligned(items, &stats[0]);
4207 for (i = 1; i < items; i++)
Eric Dumazetbe281e52011-05-19 01:14:23 +00004208 put_unaligned(atomic_long_read(&mib[i]), &stats[i]);
Herbert Xu7f7d9a62007-04-24 21:54:09 -07004209
4210 memset(&stats[items], 0, pad);
4211}
4212
Eric Dumazet4ce3c182010-06-30 13:31:19 -07004213static inline void __snmp6_fill_stats64(u64 *stats, void __percpu **mib,
4214 int items, int bytes, size_t syncpoff)
4215{
4216 int i;
4217 int pad = bytes - sizeof(u64) * items;
4218 BUG_ON(pad < 0);
4219
4220 /* Use put_unaligned() because stats may not be aligned for u64. */
4221 put_unaligned(items, &stats[0]);
4222 for (i = 1; i < items; i++)
4223 put_unaligned(snmp_fold_field64(mib, i, syncpoff), &stats[i]);
4224
4225 memset(&stats[items], 0, pad);
4226}
4227
Herbert Xu7f7d9a62007-04-24 21:54:09 -07004228static void snmp6_fill_stats(u64 *stats, struct inet6_dev *idev, int attrtype,
4229 int bytes)
4230{
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004231 switch (attrtype) {
Herbert Xu7f7d9a62007-04-24 21:54:09 -07004232 case IFLA_INET6_STATS:
Eric Dumazet4ce3c182010-06-30 13:31:19 -07004233 __snmp6_fill_stats64(stats, (void __percpu **)idev->stats.ipv6,
4234 IPSTATS_MIB_MAX, bytes, offsetof(struct ipstats_mib, syncp));
Herbert Xu7f7d9a62007-04-24 21:54:09 -07004235 break;
4236 case IFLA_INET6_ICMP6STATS:
Eric Dumazetbe281e52011-05-19 01:14:23 +00004237 __snmp6_fill_statsdev(stats, idev->stats.icmpv6dev->mibs, ICMP6_MIB_MAX, bytes);
Herbert Xu7f7d9a62007-04-24 21:54:09 -07004238 break;
4239 }
4240}
4241
Thomas Grafb382b192010-11-16 04:33:57 +00004242static int inet6_fill_ifla6_attrs(struct sk_buff *skb, struct inet6_dev *idev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004243{
YOSHIFUJI Hideakibf99f1b2007-04-20 15:56:20 -07004244 struct nlattr *nla;
Thomas Graf04561c12006-11-14 19:53:58 -08004245 struct ifla_cacheinfo ci;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004246
David S. Millerc78679e2012-04-01 20:27:33 -04004247 if (nla_put_u32(skb, IFLA_INET6_FLAGS, idev->if_flags))
4248 goto nla_put_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004249 ci.max_reasm_len = IPV6_MAXPLEN;
David S. Miller24912422010-11-19 13:13:47 -08004250 ci.tstamp = cstamp_delta(idev->tstamp);
4251 ci.reachable_time = jiffies_to_msecs(idev->nd_parms->reachable_time);
4252 ci.retrans_time = jiffies_to_msecs(idev->nd_parms->retrans_time);
David S. Millerc78679e2012-04-01 20:27:33 -04004253 if (nla_put(skb, IFLA_INET6_CACHEINFO, sizeof(ci), &ci))
4254 goto nla_put_failure;
YOSHIFUJI Hideakibf99f1b2007-04-20 15:56:20 -07004255 nla = nla_reserve(skb, IFLA_INET6_CONF, DEVCONF_MAX * sizeof(s32));
4256 if (nla == NULL)
Thomas Graf04561c12006-11-14 19:53:58 -08004257 goto nla_put_failure;
YOSHIFUJI Hideakibf99f1b2007-04-20 15:56:20 -07004258 ipv6_store_devconf(&idev->cnf, nla_data(nla), nla_len(nla));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004259
YOSHIFUJI Hideakibf99f1b2007-04-20 15:56:20 -07004260 /* XXX - MC not implemented */
4261
4262 nla = nla_reserve(skb, IFLA_INET6_STATS, IPSTATS_MIB_MAX * sizeof(u64));
4263 if (nla == NULL)
4264 goto nla_put_failure;
4265 snmp6_fill_stats(nla_data(nla), idev, IFLA_INET6_STATS, nla_len(nla));
4266
4267 nla = nla_reserve(skb, IFLA_INET6_ICMP6STATS, ICMP6_MIB_MAX * sizeof(u64));
4268 if (nla == NULL)
4269 goto nla_put_failure;
4270 snmp6_fill_stats(nla_data(nla), idev, IFLA_INET6_ICMP6STATS, nla_len(nla));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004271
Daniel Borkmannf53adae2013-04-08 04:01:30 +00004272 nla = nla_reserve(skb, IFLA_INET6_TOKEN, sizeof(struct in6_addr));
4273 if (nla == NULL)
4274 goto nla_put_failure;
4275 read_lock_bh(&idev->lock);
4276 memcpy(nla_data(nla), idev->token.s6_addr, nla_len(nla));
4277 read_unlock_bh(&idev->lock);
4278
Thomas Grafb382b192010-11-16 04:33:57 +00004279 return 0;
4280
4281nla_put_failure:
4282 return -EMSGSIZE;
4283}
4284
4285static size_t inet6_get_link_af_size(const struct net_device *dev)
4286{
4287 if (!__in6_dev_get(dev))
4288 return 0;
4289
4290 return inet6_ifla6_size();
4291}
4292
4293static int inet6_fill_link_af(struct sk_buff *skb, const struct net_device *dev)
4294{
4295 struct inet6_dev *idev = __in6_dev_get(dev);
4296
4297 if (!idev)
4298 return -ENODATA;
4299
4300 if (inet6_fill_ifla6_attrs(skb, idev) < 0)
4301 return -EMSGSIZE;
4302
4303 return 0;
4304}
4305
Daniel Borkmannf53adae2013-04-08 04:01:30 +00004306static int inet6_set_iftoken(struct inet6_dev *idev, struct in6_addr *token)
4307{
Daniel Borkmannf53adae2013-04-08 04:01:30 +00004308 struct inet6_ifaddr *ifp;
4309 struct net_device *dev = idev->dev;
Daniel Borkmannfc403832013-04-09 03:47:15 +00004310 bool update_rs = false;
Hannes Frederic Sowadc848292013-06-24 21:42:40 +02004311 struct in6_addr ll_addr;
Daniel Borkmannf53adae2013-04-08 04:01:30 +00004312
4313 if (token == NULL)
4314 return -EINVAL;
4315 if (ipv6_addr_any(token))
4316 return -EINVAL;
4317 if (dev->flags & (IFF_LOOPBACK | IFF_NOARP))
4318 return -EINVAL;
Daniel Borkmannf53adae2013-04-08 04:01:30 +00004319 if (!ipv6_accept_ra(idev))
4320 return -EINVAL;
4321 if (idev->cnf.rtr_solicits <= 0)
4322 return -EINVAL;
4323
4324 write_lock_bh(&idev->lock);
4325
4326 BUILD_BUG_ON(sizeof(token->s6_addr) != 16);
4327 memcpy(idev->token.s6_addr + 8, token->s6_addr + 8, 8);
4328
4329 write_unlock_bh(&idev->lock);
4330
Hannes Frederic Sowadc848292013-06-24 21:42:40 +02004331 if (!idev->dead && (idev->if_flags & IF_READY) &&
4332 !ipv6_get_lladdr(dev, &ll_addr, IFA_F_TENTATIVE |
4333 IFA_F_OPTIMISTIC)) {
Daniel Borkmannfc403832013-04-09 03:47:15 +00004334
4335 /* If we're not ready, then normal ifup will take care
4336 * of this. Otherwise, we need to request our rs here.
4337 */
4338 ndisc_send_rs(dev, &ll_addr, &in6addr_linklocal_allrouters);
4339 update_rs = true;
4340 }
Daniel Borkmannf53adae2013-04-08 04:01:30 +00004341
4342 write_lock_bh(&idev->lock);
Daniel Borkmannfc403832013-04-09 03:47:15 +00004343
Hannes Frederic Sowa77ecaac2013-06-26 03:41:49 +02004344 if (update_rs) {
Daniel Borkmannfc403832013-04-09 03:47:15 +00004345 idev->if_flags |= IF_RS_SENT;
Hannes Frederic Sowa77ecaac2013-06-26 03:41:49 +02004346 idev->rs_probes = 1;
4347 addrconf_mod_rs_timer(idev, idev->cnf.rtr_solicit_interval);
4348 }
Daniel Borkmannf53adae2013-04-08 04:01:30 +00004349
4350 /* Well, that's kinda nasty ... */
4351 list_for_each_entry(ifp, &idev->addr_list, if_list) {
4352 spin_lock(&ifp->lock);
Daniel Borkmann617fe292013-04-09 03:47:16 +00004353 if (ifp->tokenized) {
Daniel Borkmannf53adae2013-04-08 04:01:30 +00004354 ifp->valid_lft = 0;
4355 ifp->prefered_lft = 0;
4356 }
4357 spin_unlock(&ifp->lock);
4358 }
4359
4360 write_unlock_bh(&idev->lock);
Hannes Frederic Sowa2b9651d2013-06-24 22:03:28 +02004361 addrconf_verify(0);
Daniel Borkmannf53adae2013-04-08 04:01:30 +00004362 return 0;
4363}
4364
4365static int inet6_set_link_af(struct net_device *dev, const struct nlattr *nla)
4366{
4367 int err = -EINVAL;
4368 struct inet6_dev *idev = __in6_dev_get(dev);
4369 struct nlattr *tb[IFLA_INET6_MAX + 1];
4370
4371 if (!idev)
4372 return -EAFNOSUPPORT;
4373
4374 if (nla_parse_nested(tb, IFLA_INET6_MAX, nla, NULL) < 0)
4375 BUG();
4376
4377 if (tb[IFLA_INET6_TOKEN])
4378 err = inet6_set_iftoken(idev, nla_data(tb[IFLA_INET6_TOKEN]));
4379
4380 return err;
4381}
4382
Thomas Grafb382b192010-11-16 04:33:57 +00004383static int inet6_fill_ifinfo(struct sk_buff *skb, struct inet6_dev *idev,
Eric W. Biederman15e47302012-09-07 20:12:54 +00004384 u32 portid, u32 seq, int event, unsigned int flags)
Thomas Grafb382b192010-11-16 04:33:57 +00004385{
4386 struct net_device *dev = idev->dev;
4387 struct ifinfomsg *hdr;
4388 struct nlmsghdr *nlh;
4389 void *protoinfo;
4390
Eric W. Biederman15e47302012-09-07 20:12:54 +00004391 nlh = nlmsg_put(skb, portid, seq, event, sizeof(*hdr), flags);
Thomas Grafb382b192010-11-16 04:33:57 +00004392 if (nlh == NULL)
4393 return -EMSGSIZE;
4394
4395 hdr = nlmsg_data(nlh);
4396 hdr->ifi_family = AF_INET6;
4397 hdr->__ifi_pad = 0;
4398 hdr->ifi_type = dev->type;
4399 hdr->ifi_index = dev->ifindex;
4400 hdr->ifi_flags = dev_get_flags(dev);
4401 hdr->ifi_change = 0;
4402
David S. Millerc78679e2012-04-01 20:27:33 -04004403 if (nla_put_string(skb, IFLA_IFNAME, dev->name) ||
4404 (dev->addr_len &&
4405 nla_put(skb, IFLA_ADDRESS, dev->addr_len, dev->dev_addr)) ||
4406 nla_put_u32(skb, IFLA_MTU, dev->mtu) ||
4407 (dev->ifindex != dev->iflink &&
4408 nla_put_u32(skb, IFLA_LINK, dev->iflink)))
4409 goto nla_put_failure;
Thomas Grafb382b192010-11-16 04:33:57 +00004410 protoinfo = nla_nest_start(skb, IFLA_PROTINFO);
4411 if (protoinfo == NULL)
4412 goto nla_put_failure;
4413
4414 if (inet6_fill_ifla6_attrs(skb, idev) < 0)
4415 goto nla_put_failure;
4416
Thomas Graf04561c12006-11-14 19:53:58 -08004417 nla_nest_end(skb, protoinfo);
4418 return nlmsg_end(skb, nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004419
Thomas Graf04561c12006-11-14 19:53:58 -08004420nla_put_failure:
Patrick McHardy26932562007-01-31 23:16:40 -08004421 nlmsg_cancel(skb, nlh);
4422 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004423}
4424
4425static int inet6_dump_ifinfo(struct sk_buff *skb, struct netlink_callback *cb)
4426{
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09004427 struct net *net = sock_net(skb->sk);
Eric Dumazet84d26972009-11-09 12:11:28 +00004428 int h, s_h;
David S. Miller434a8a52009-11-11 18:53:00 -08004429 int idx = 0, s_idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004430 struct net_device *dev;
4431 struct inet6_dev *idev;
Eric Dumazet84d26972009-11-09 12:11:28 +00004432 struct hlist_head *head;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004433
Eric Dumazet84d26972009-11-09 12:11:28 +00004434 s_h = cb->args[0];
4435 s_idx = cb->args[1];
4436
4437 rcu_read_lock();
4438 for (h = s_h; h < NETDEV_HASHENTRIES; h++, s_idx = 0) {
4439 idx = 0;
4440 head = &net->dev_index_head[h];
Sasha Levinb67bfe02013-02-27 17:06:00 -08004441 hlist_for_each_entry_rcu(dev, head, index_hlist) {
Eric Dumazet84d26972009-11-09 12:11:28 +00004442 if (idx < s_idx)
4443 goto cont;
4444 idev = __in6_dev_get(dev);
4445 if (!idev)
4446 goto cont;
4447 if (inet6_fill_ifinfo(skb, idev,
Eric W. Biederman15e47302012-09-07 20:12:54 +00004448 NETLINK_CB(cb->skb).portid,
Eric Dumazet84d26972009-11-09 12:11:28 +00004449 cb->nlh->nlmsg_seq,
4450 RTM_NEWLINK, NLM_F_MULTI) <= 0)
4451 goto out;
Pavel Emelianov7562f872007-05-03 15:13:45 -07004452cont:
Eric Dumazet84d26972009-11-09 12:11:28 +00004453 idx++;
4454 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004455 }
Eric Dumazet84d26972009-11-09 12:11:28 +00004456out:
4457 rcu_read_unlock();
4458 cb->args[1] = idx;
4459 cb->args[0] = h;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004460
4461 return skb->len;
4462}
4463
4464void inet6_ifinfo_notify(int event, struct inet6_dev *idev)
4465{
4466 struct sk_buff *skb;
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09004467 struct net *net = dev_net(idev->dev);
Thomas Graf8d7a76c2006-08-15 00:35:47 -07004468 int err = -ENOBUFS;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09004469
Thomas Graf339bf982006-11-10 14:10:15 -08004470 skb = nlmsg_new(inet6_if_nlmsg_size(), GFP_ATOMIC);
Thomas Graf8d7a76c2006-08-15 00:35:47 -07004471 if (skb == NULL)
4472 goto errout;
4473
4474 err = inet6_fill_ifinfo(skb, idev, 0, 0, event, 0);
Patrick McHardy26932562007-01-31 23:16:40 -08004475 if (err < 0) {
4476 /* -EMSGSIZE implies BUG in inet6_if_nlmsg_size() */
4477 WARN_ON(err == -EMSGSIZE);
4478 kfree_skb(skb);
4479 goto errout;
4480 }
Nicolas Dichtel5f75a102010-12-07 23:38:31 +00004481 rtnl_notify(skb, net, 0, RTNLGRP_IPV6_IFINFO, NULL, GFP_ATOMIC);
Pablo Neira Ayuso1ce85fe2009-02-24 23:18:28 -08004482 return;
Thomas Graf8d7a76c2006-08-15 00:35:47 -07004483errout:
4484 if (err < 0)
Nicolas Dichtel5f75a102010-12-07 23:38:31 +00004485 rtnl_set_sk_err(net, RTNLGRP_IPV6_IFINFO, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004486}
4487
Thomas Graf339bf982006-11-10 14:10:15 -08004488static inline size_t inet6_prefix_nlmsg_size(void)
4489{
4490 return NLMSG_ALIGN(sizeof(struct prefixmsg))
4491 + nla_total_size(sizeof(struct in6_addr))
4492 + nla_total_size(sizeof(struct prefix_cacheinfo));
4493}
YOSHIFUJI Hideakic5396a32006-06-17 22:48:48 -07004494
Linus Torvalds1da177e2005-04-16 15:20:36 -07004495static int inet6_fill_prefix(struct sk_buff *skb, struct inet6_dev *idev,
Eric W. Biederman15e47302012-09-07 20:12:54 +00004496 struct prefix_info *pinfo, u32 portid, u32 seq,
Thomas Graf6051e2f2006-11-14 19:54:19 -08004497 int event, unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004498{
Thomas Graf6051e2f2006-11-14 19:54:19 -08004499 struct prefixmsg *pmsg;
4500 struct nlmsghdr *nlh;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004501 struct prefix_cacheinfo ci;
4502
Eric W. Biederman15e47302012-09-07 20:12:54 +00004503 nlh = nlmsg_put(skb, portid, seq, event, sizeof(*pmsg), flags);
Thomas Graf6051e2f2006-11-14 19:54:19 -08004504 if (nlh == NULL)
Patrick McHardy26932562007-01-31 23:16:40 -08004505 return -EMSGSIZE;
Thomas Graf6051e2f2006-11-14 19:54:19 -08004506
4507 pmsg = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004508 pmsg->prefix_family = AF_INET6;
Patrick McHardy8a470772005-06-28 12:56:45 -07004509 pmsg->prefix_pad1 = 0;
4510 pmsg->prefix_pad2 = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004511 pmsg->prefix_ifindex = idev->dev->ifindex;
4512 pmsg->prefix_len = pinfo->prefix_len;
4513 pmsg->prefix_type = pinfo->type;
Patrick McHardy8a470772005-06-28 12:56:45 -07004514 pmsg->prefix_pad3 = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004515 pmsg->prefix_flags = 0;
4516 if (pinfo->onlink)
4517 pmsg->prefix_flags |= IF_PREFIX_ONLINK;
4518 if (pinfo->autoconf)
4519 pmsg->prefix_flags |= IF_PREFIX_AUTOCONF;
4520
David S. Millerc78679e2012-04-01 20:27:33 -04004521 if (nla_put(skb, PREFIX_ADDRESS, sizeof(pinfo->prefix), &pinfo->prefix))
4522 goto nla_put_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004523 ci.preferred_time = ntohl(pinfo->prefered);
4524 ci.valid_time = ntohl(pinfo->valid);
David S. Millerc78679e2012-04-01 20:27:33 -04004525 if (nla_put(skb, PREFIX_CACHEINFO, sizeof(ci), &ci))
4526 goto nla_put_failure;
Thomas Graf6051e2f2006-11-14 19:54:19 -08004527 return nlmsg_end(skb, nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004528
Thomas Graf6051e2f2006-11-14 19:54:19 -08004529nla_put_failure:
Patrick McHardy26932562007-01-31 23:16:40 -08004530 nlmsg_cancel(skb, nlh);
4531 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004532}
4533
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09004534static void inet6_prefix_notify(int event, struct inet6_dev *idev,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004535 struct prefix_info *pinfo)
4536{
4537 struct sk_buff *skb;
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09004538 struct net *net = dev_net(idev->dev);
Thomas Graf8c384bfa2006-08-15 00:36:07 -07004539 int err = -ENOBUFS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004540
Thomas Graf339bf982006-11-10 14:10:15 -08004541 skb = nlmsg_new(inet6_prefix_nlmsg_size(), GFP_ATOMIC);
Thomas Graf8c384bfa2006-08-15 00:36:07 -07004542 if (skb == NULL)
4543 goto errout;
4544
4545 err = inet6_fill_prefix(skb, idev, pinfo, 0, 0, event, 0);
Patrick McHardy26932562007-01-31 23:16:40 -08004546 if (err < 0) {
4547 /* -EMSGSIZE implies BUG in inet6_prefix_nlmsg_size() */
4548 WARN_ON(err == -EMSGSIZE);
4549 kfree_skb(skb);
4550 goto errout;
4551 }
Pablo Neira Ayuso1ce85fe2009-02-24 23:18:28 -08004552 rtnl_notify(skb, net, 0, RTNLGRP_IPV6_PREFIX, NULL, GFP_ATOMIC);
4553 return;
Thomas Graf8c384bfa2006-08-15 00:36:07 -07004554errout:
4555 if (err < 0)
Benjamin Thery6fda7352008-03-05 10:47:47 -08004556 rtnl_set_sk_err(net, RTNLGRP_IPV6_PREFIX, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004557}
4558
Hannes Frederic Sowa1ec047e2013-06-27 00:06:56 +02004559static void update_valid_ll_addr_cnt(struct inet6_ifaddr *ifp, int count)
4560{
4561 write_lock_bh(&ifp->idev->lock);
4562 spin_lock(&ifp->lock);
4563 if (((ifp->flags & (IFA_F_PERMANENT|IFA_F_TENTATIVE|IFA_F_OPTIMISTIC|
4564 IFA_F_DADFAILED)) == IFA_F_PERMANENT) &&
4565 (ipv6_addr_type(&ifp->addr) & IPV6_ADDR_LINKLOCAL))
4566 ifp->idev->valid_ll_addr_cnt += count;
4567 WARN_ON(ifp->idev->valid_ll_addr_cnt < 0);
4568 spin_unlock(&ifp->lock);
4569 write_unlock_bh(&ifp->idev->lock);
4570}
4571
Linus Torvalds1da177e2005-04-16 15:20:36 -07004572static void __ipv6_ifa_notify(int event, struct inet6_ifaddr *ifp)
4573{
Nicolas Dichtel63998ac2013-03-22 06:28:43 +00004574 struct net *net = dev_net(ifp->idev->dev);
4575
Linus Torvalds1da177e2005-04-16 15:20:36 -07004576 inet6_ifa_notify(event ? : RTM_NEWADDR, ifp);
4577
4578 switch (event) {
4579 case RTM_NEWADDR:
Hannes Frederic Sowa1ec047e2013-06-27 00:06:56 +02004580 update_valid_ll_addr_cnt(ifp, 1);
4581
Neil Horman95c385b2007-04-25 17:08:10 -07004582 /*
4583 * If the address was optimistic
4584 * we inserted the route at the start of
4585 * our DAD process, so we don't need
4586 * to do it again
4587 */
4588 if (!(ifp->rt->rt6i_node))
4589 ip6_ins_rt(ifp->rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004590 if (ifp->idev->cnf.forwarding)
4591 addrconf_join_anycast(ifp);
Cong Wang7996c792013-05-22 05:41:06 +00004592 if (!ipv6_addr_any(&ifp->peer_addr))
Nicolas Dichtelcaeaba72013-05-16 22:32:00 +00004593 addrconf_prefix_route(&ifp->peer_addr, 128,
4594 ifp->idev->dev, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004595 break;
4596 case RTM_DELADDR:
Hannes Frederic Sowa1ec047e2013-06-27 00:06:56 +02004597 update_valid_ll_addr_cnt(ifp, -1);
4598
Linus Torvalds1da177e2005-04-16 15:20:36 -07004599 if (ifp->idev->cnf.forwarding)
4600 addrconf_leave_anycast(ifp);
4601 addrconf_leave_solict(ifp->idev, &ifp->addr);
Cong Wang7996c792013-05-22 05:41:06 +00004602 if (!ipv6_addr_any(&ifp->peer_addr)) {
Nicolas Dichtelcaeaba72013-05-16 22:32:00 +00004603 struct rt6_info *rt;
4604 struct net_device *dev = ifp->idev->dev;
4605
4606 rt = rt6_lookup(dev_net(dev), &ifp->peer_addr, NULL,
4607 dev->ifindex, 1);
4608 if (rt) {
4609 dst_hold(&rt->dst);
4610 if (ip6_del_rt(rt))
4611 dst_free(&rt->dst);
4612 }
4613 }
Changli Gaod8d1f302010-06-10 23:31:35 -07004614 dst_hold(&ifp->rt->dst);
stephen hemminger93fa1592010-04-12 05:41:31 +00004615
David S. Miller73a8bd742011-01-23 23:27:15 -08004616 if (ip6_del_rt(ifp->rt))
Changli Gaod8d1f302010-06-10 23:31:35 -07004617 dst_free(&ifp->rt->dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004618 break;
4619 }
Nicolas Dichtel63998ac2013-03-22 06:28:43 +00004620 atomic_inc(&net->ipv6.dev_addr_genid);
fan.du439677d2013-08-01 17:44:44 +08004621 rt_genid_bump_ipv6(net);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004622}
4623
4624static void ipv6_ifa_notify(int event, struct inet6_ifaddr *ifp)
4625{
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -07004626 rcu_read_lock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004627 if (likely(ifp->idev->dead == 0))
4628 __ipv6_ifa_notify(event, ifp);
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -07004629 rcu_read_unlock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004630}
4631
4632#ifdef CONFIG_SYSCTL
4633
4634static
Joe Perchesfe2c6332013-06-11 23:04:25 -07004635int addrconf_sysctl_forward(struct ctl_table *ctl, int write,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004636 void __user *buffer, size_t *lenp, loff_t *ppos)
4637{
4638 int *valp = ctl->data;
4639 int val = *valp;
Eric W. Biederman88af1822010-02-19 13:22:59 +00004640 loff_t pos = *ppos;
Joe Perchesfe2c6332013-06-11 23:04:25 -07004641 struct ctl_table lctl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004642 int ret;
4643
Francesco Ruggeri013d97e2012-01-16 10:40:10 +00004644 /*
4645 * ctl->data points to idev->cnf.forwarding, we should
4646 * not modify it until we get the rtnl lock.
4647 */
4648 lctl = *ctl;
4649 lctl.data = &val;
4650
4651 ret = proc_dointvec(&lctl, write, buffer, lenp, ppos);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004652
Pavel Emelyanovc8fecf22007-12-05 01:50:24 -08004653 if (write)
Stephen Hemmingerb325fdd2009-02-26 06:55:31 +00004654 ret = addrconf_fixup_forwarding(ctl, valp, val);
Eric W. Biederman88af1822010-02-19 13:22:59 +00004655 if (ret)
4656 *ppos = pos;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09004657 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004658}
4659
Brian Haley56d417b2009-06-01 03:07:33 -07004660static void dev_disable_change(struct inet6_dev *idev)
4661{
Cong Wang75538c22013-05-29 11:30:50 +08004662 struct netdev_notifier_info info;
4663
Brian Haley56d417b2009-06-01 03:07:33 -07004664 if (!idev || !idev->dev)
4665 return;
4666
Cong Wang75538c22013-05-29 11:30:50 +08004667 netdev_notifier_info_init(&info, idev->dev);
Brian Haley56d417b2009-06-01 03:07:33 -07004668 if (idev->cnf.disable_ipv6)
Cong Wang75538c22013-05-29 11:30:50 +08004669 addrconf_notify(NULL, NETDEV_DOWN, &info);
Brian Haley56d417b2009-06-01 03:07:33 -07004670 else
Cong Wang75538c22013-05-29 11:30:50 +08004671 addrconf_notify(NULL, NETDEV_UP, &info);
Brian Haley56d417b2009-06-01 03:07:33 -07004672}
4673
4674static void addrconf_disable_change(struct net *net, __s32 newf)
4675{
4676 struct net_device *dev;
4677 struct inet6_dev *idev;
4678
Eric Dumazetc6d14c82009-11-04 05:43:23 -08004679 rcu_read_lock();
4680 for_each_netdev_rcu(net, dev) {
Brian Haley56d417b2009-06-01 03:07:33 -07004681 idev = __in6_dev_get(dev);
4682 if (idev) {
4683 int changed = (!idev->cnf.disable_ipv6) ^ (!newf);
4684 idev->cnf.disable_ipv6 = newf;
4685 if (changed)
4686 dev_disable_change(idev);
4687 }
Brian Haley56d417b2009-06-01 03:07:33 -07004688 }
Eric Dumazetc6d14c82009-11-04 05:43:23 -08004689 rcu_read_unlock();
Brian Haley56d417b2009-06-01 03:07:33 -07004690}
4691
Francesco Ruggeri013d97e2012-01-16 10:40:10 +00004692static int addrconf_disable_ipv6(struct ctl_table *table, int *p, int newf)
Brian Haley56d417b2009-06-01 03:07:33 -07004693{
4694 struct net *net;
Francesco Ruggeri013d97e2012-01-16 10:40:10 +00004695 int old;
4696
4697 if (!rtnl_trylock())
4698 return restart_syscall();
Brian Haley56d417b2009-06-01 03:07:33 -07004699
4700 net = (struct net *)table->extra2;
Francesco Ruggeri013d97e2012-01-16 10:40:10 +00004701 old = *p;
4702 *p = newf;
Brian Haley56d417b2009-06-01 03:07:33 -07004703
Francesco Ruggeri013d97e2012-01-16 10:40:10 +00004704 if (p == &net->ipv6.devconf_dflt->disable_ipv6) {
4705 rtnl_unlock();
Brian Haley56d417b2009-06-01 03:07:33 -07004706 return 0;
Eric W. Biederman88af1822010-02-19 13:22:59 +00004707 }
Brian Haley56d417b2009-06-01 03:07:33 -07004708
4709 if (p == &net->ipv6.devconf_all->disable_ipv6) {
Brian Haley56d417b2009-06-01 03:07:33 -07004710 net->ipv6.devconf_dflt->disable_ipv6 = newf;
4711 addrconf_disable_change(net, newf);
Francesco Ruggeri013d97e2012-01-16 10:40:10 +00004712 } else if ((!newf) ^ (!old))
Brian Haley56d417b2009-06-01 03:07:33 -07004713 dev_disable_change((struct inet6_dev *)table->extra1);
4714
4715 rtnl_unlock();
4716 return 0;
4717}
4718
4719static
Joe Perchesfe2c6332013-06-11 23:04:25 -07004720int addrconf_sysctl_disable(struct ctl_table *ctl, int write,
Brian Haley56d417b2009-06-01 03:07:33 -07004721 void __user *buffer, size_t *lenp, loff_t *ppos)
4722{
4723 int *valp = ctl->data;
4724 int val = *valp;
Eric W. Biederman88af1822010-02-19 13:22:59 +00004725 loff_t pos = *ppos;
Joe Perchesfe2c6332013-06-11 23:04:25 -07004726 struct ctl_table lctl;
Brian Haley56d417b2009-06-01 03:07:33 -07004727 int ret;
4728
Francesco Ruggeri013d97e2012-01-16 10:40:10 +00004729 /*
4730 * ctl->data points to idev->cnf.disable_ipv6, we should
4731 * not modify it until we get the rtnl lock.
4732 */
4733 lctl = *ctl;
4734 lctl.data = &val;
4735
4736 ret = proc_dointvec(&lctl, write, buffer, lenp, ppos);
Brian Haley56d417b2009-06-01 03:07:33 -07004737
4738 if (write)
4739 ret = addrconf_disable_ipv6(ctl, valp, val);
Eric W. Biederman88af1822010-02-19 13:22:59 +00004740 if (ret)
4741 *ppos = pos;
Brian Haley56d417b2009-06-01 03:07:33 -07004742 return ret;
4743}
4744
Linus Torvalds1da177e2005-04-16 15:20:36 -07004745static struct addrconf_sysctl_table
4746{
4747 struct ctl_table_header *sysctl_header;
Joe Perchesfe2c6332013-06-11 23:04:25 -07004748 struct ctl_table addrconf_vars[DEVCONF_MAX+1];
Brian Haleyab32ea52006-09-22 14:15:41 -07004749} addrconf_sysctl __read_mostly = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004750 .sysctl_header = NULL,
4751 .addrconf_vars = {
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09004752 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004753 .procname = "forwarding",
4754 .data = &ipv6_devconf.forwarding,
4755 .maxlen = sizeof(int),
4756 .mode = 0644,
4757 .proc_handler = addrconf_sysctl_forward,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004758 },
4759 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004760 .procname = "hop_limit",
4761 .data = &ipv6_devconf.hop_limit,
4762 .maxlen = sizeof(int),
4763 .mode = 0644,
4764 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004765 },
4766 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004767 .procname = "mtu",
4768 .data = &ipv6_devconf.mtu6,
4769 .maxlen = sizeof(int),
4770 .mode = 0644,
4771 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004772 },
4773 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004774 .procname = "accept_ra",
4775 .data = &ipv6_devconf.accept_ra,
4776 .maxlen = sizeof(int),
4777 .mode = 0644,
4778 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004779 },
4780 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004781 .procname = "accept_redirects",
4782 .data = &ipv6_devconf.accept_redirects,
4783 .maxlen = sizeof(int),
4784 .mode = 0644,
4785 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004786 },
4787 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004788 .procname = "autoconf",
4789 .data = &ipv6_devconf.autoconf,
4790 .maxlen = sizeof(int),
4791 .mode = 0644,
4792 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004793 },
4794 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004795 .procname = "dad_transmits",
4796 .data = &ipv6_devconf.dad_transmits,
4797 .maxlen = sizeof(int),
4798 .mode = 0644,
4799 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004800 },
4801 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004802 .procname = "router_solicitations",
4803 .data = &ipv6_devconf.rtr_solicits,
4804 .maxlen = sizeof(int),
4805 .mode = 0644,
4806 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004807 },
4808 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004809 .procname = "router_solicitation_interval",
4810 .data = &ipv6_devconf.rtr_solicit_interval,
4811 .maxlen = sizeof(int),
4812 .mode = 0644,
4813 .proc_handler = proc_dointvec_jiffies,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004814 },
4815 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004816 .procname = "router_solicitation_delay",
4817 .data = &ipv6_devconf.rtr_solicit_delay,
4818 .maxlen = sizeof(int),
4819 .mode = 0644,
4820 .proc_handler = proc_dointvec_jiffies,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004821 },
4822 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004823 .procname = "force_mld_version",
4824 .data = &ipv6_devconf.force_mld_version,
4825 .maxlen = sizeof(int),
4826 .mode = 0644,
4827 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004828 },
Hannes Frederic Sowafc4eba52013-08-14 01:03:46 +02004829 {
4830 .procname = "mldv1_unsolicited_report_interval",
4831 .data =
4832 &ipv6_devconf.mldv1_unsolicited_report_interval,
4833 .maxlen = sizeof(int),
4834 .mode = 0644,
4835 .proc_handler = proc_dointvec_ms_jiffies,
4836 },
4837 {
4838 .procname = "mldv2_unsolicited_report_interval",
4839 .data =
4840 &ipv6_devconf.mldv2_unsolicited_report_interval,
4841 .maxlen = sizeof(int),
4842 .mode = 0644,
4843 .proc_handler = proc_dointvec_ms_jiffies,
4844 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07004845#ifdef CONFIG_IPV6_PRIVACY
4846 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004847 .procname = "use_tempaddr",
4848 .data = &ipv6_devconf.use_tempaddr,
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 = "temp_valid_lft",
4855 .data = &ipv6_devconf.temp_valid_lft,
4856 .maxlen = sizeof(int),
4857 .mode = 0644,
4858 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004859 },
4860 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004861 .procname = "temp_prefered_lft",
4862 .data = &ipv6_devconf.temp_prefered_lft,
4863 .maxlen = sizeof(int),
4864 .mode = 0644,
4865 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004866 },
4867 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004868 .procname = "regen_max_retry",
4869 .data = &ipv6_devconf.regen_max_retry,
4870 .maxlen = sizeof(int),
4871 .mode = 0644,
4872 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004873 },
4874 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004875 .procname = "max_desync_factor",
4876 .data = &ipv6_devconf.max_desync_factor,
4877 .maxlen = sizeof(int),
4878 .mode = 0644,
4879 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004880 },
4881#endif
4882 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004883 .procname = "max_addresses",
4884 .data = &ipv6_devconf.max_addresses,
4885 .maxlen = sizeof(int),
4886 .mode = 0644,
4887 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004888 },
4889 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004890 .procname = "accept_ra_defrtr",
4891 .data = &ipv6_devconf.accept_ra_defrtr,
4892 .maxlen = sizeof(int),
4893 .mode = 0644,
4894 .proc_handler = proc_dointvec,
YOSHIFUJI Hideaki65f5c7c2006-03-20 16:55:08 -08004895 },
4896 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004897 .procname = "accept_ra_pinfo",
4898 .data = &ipv6_devconf.accept_ra_pinfo,
4899 .maxlen = sizeof(int),
4900 .mode = 0644,
4901 .proc_handler = proc_dointvec,
YOSHIFUJI Hideakic4fd30e2006-03-20 16:55:26 -08004902 },
YOSHIFUJI Hideaki930d6ff2006-03-20 17:05:30 -08004903#ifdef CONFIG_IPV6_ROUTER_PREF
4904 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004905 .procname = "accept_ra_rtr_pref",
4906 .data = &ipv6_devconf.accept_ra_rtr_pref,
4907 .maxlen = sizeof(int),
4908 .mode = 0644,
4909 .proc_handler = proc_dointvec,
YOSHIFUJI Hideaki930d6ff2006-03-20 17:05:30 -08004910 },
YOSHIFUJI Hideaki52e16352006-03-20 17:05:47 -08004911 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004912 .procname = "router_probe_interval",
4913 .data = &ipv6_devconf.rtr_probe_interval,
4914 .maxlen = sizeof(int),
4915 .mode = 0644,
4916 .proc_handler = proc_dointvec_jiffies,
YOSHIFUJI Hideaki52e16352006-03-20 17:05:47 -08004917 },
Neil Hormanfa03ef32007-01-30 14:30:10 -08004918#ifdef CONFIG_IPV6_ROUTE_INFO
YOSHIFUJI Hideaki09c884d2006-03-20 17:07:03 -08004919 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004920 .procname = "accept_ra_rt_info_max_plen",
4921 .data = &ipv6_devconf.accept_ra_rt_info_max_plen,
4922 .maxlen = sizeof(int),
4923 .mode = 0644,
4924 .proc_handler = proc_dointvec,
YOSHIFUJI Hideaki09c884d2006-03-20 17:07:03 -08004925 },
4926#endif
YOSHIFUJI Hideaki930d6ff2006-03-20 17:05:30 -08004927#endif
YOSHIFUJI Hideakic4fd30e2006-03-20 16:55:26 -08004928 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004929 .procname = "proxy_ndp",
4930 .data = &ipv6_devconf.proxy_ndp,
4931 .maxlen = sizeof(int),
4932 .mode = 0644,
4933 .proc_handler = proc_dointvec,
YOSHIFUJI Hideakifbea49e2006-09-22 14:43:49 -07004934 },
4935 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004936 .procname = "accept_source_route",
4937 .data = &ipv6_devconf.accept_source_route,
4938 .maxlen = sizeof(int),
4939 .mode = 0644,
4940 .proc_handler = proc_dointvec,
YOSHIFUJI Hideaki0bcbc922007-04-24 14:58:30 -07004941 },
Neil Horman95c385b2007-04-25 17:08:10 -07004942#ifdef CONFIG_IPV6_OPTIMISTIC_DAD
4943 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004944 .procname = "optimistic_dad",
4945 .data = &ipv6_devconf.optimistic_dad,
4946 .maxlen = sizeof(int),
4947 .mode = 0644,
4948 .proc_handler = proc_dointvec,
Neil Horman95c385b2007-04-25 17:08:10 -07004949
4950 },
4951#endif
YOSHIFUJI Hideaki7bc570c2008-04-03 09:22:53 +09004952#ifdef CONFIG_IPV6_MROUTE
4953 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004954 .procname = "mc_forwarding",
4955 .data = &ipv6_devconf.mc_forwarding,
4956 .maxlen = sizeof(int),
4957 .mode = 0444,
4958 .proc_handler = proc_dointvec,
YOSHIFUJI Hideaki7bc570c2008-04-03 09:22:53 +09004959 },
4960#endif
YOSHIFUJI Hideaki0bcbc922007-04-24 14:58:30 -07004961 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004962 .procname = "disable_ipv6",
4963 .data = &ipv6_devconf.disable_ipv6,
4964 .maxlen = sizeof(int),
4965 .mode = 0644,
4966 .proc_handler = addrconf_sysctl_disable,
YOSHIFUJI Hideaki778d80b2008-06-28 14:17:11 +09004967 },
4968 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004969 .procname = "accept_dad",
4970 .data = &ipv6_devconf.accept_dad,
4971 .maxlen = sizeof(int),
4972 .mode = 0644,
4973 .proc_handler = proc_dointvec,
YOSHIFUJI Hideaki1b34be72008-06-28 14:18:38 +09004974 },
4975 {
Octavian Purdilaf7734fd2009-10-02 11:39:15 +00004976 .procname = "force_tllao",
4977 .data = &ipv6_devconf.force_tllao,
4978 .maxlen = sizeof(int),
4979 .mode = 0644,
4980 .proc_handler = proc_dointvec
4981 },
4982 {
Hannes Frederic Sowa5cb04432012-11-06 16:46:20 +00004983 .procname = "ndisc_notify",
4984 .data = &ipv6_devconf.ndisc_notify,
4985 .maxlen = sizeof(int),
4986 .mode = 0644,
4987 .proc_handler = proc_dointvec
4988 },
4989 {
Hannes Frederic Sowab800c3b2013-08-27 01:36:51 +02004990 .procname = "suppress_frag_ndisc",
4991 .data = &ipv6_devconf.suppress_frag_ndisc,
4992 .maxlen = sizeof(int),
4993 .mode = 0644,
4994 .proc_handler = proc_dointvec
4995 },
4996 {
Eric W. Biedermanf8572d82009-11-05 13:32:03 -08004997 /* sentinel */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004998 }
4999 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07005000};
5001
Pavel Emelyanovbff16c22008-01-10 17:42:13 -08005002static int __addrconf_sysctl_register(struct net *net, char *dev_name,
Eric W. Biedermanf8572d82009-11-05 13:32:03 -08005003 struct inet6_dev *idev, struct ipv6_devconf *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005004{
5005 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005006 struct addrconf_sysctl_table *t;
Eric W. Biederman6105e292012-04-19 13:41:24 +00005007 char path[sizeof("net/ipv6/conf/") + IFNAMSIZ];
Pavel Emelyanov1dab6222007-12-02 00:59:38 +11005008
Arnaldo Carvalho de Meloaf879cc2006-11-17 12:14:37 -02005009 t = kmemdup(&addrconf_sysctl, sizeof(*t), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005010 if (t == NULL)
Pavel Emelyanovf68635e2007-12-02 00:21:52 +11005011 goto out;
5012
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07005013 for (i = 0; t->addrconf_vars[i].data; i++) {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07005014 t->addrconf_vars[i].data += (char *)p - (char *)&ipv6_devconf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005015 t->addrconf_vars[i].extra1 = idev; /* embedded; no ref */
Pavel Emelyanovbff16c22008-01-10 17:42:13 -08005016 t->addrconf_vars[i].extra2 = net;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005017 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005018
Eric W. Biederman6105e292012-04-19 13:41:24 +00005019 snprintf(path, sizeof(path), "net/ipv6/conf/%s", dev_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005020
Eric W. Biederman6105e292012-04-19 13:41:24 +00005021 t->sysctl_header = register_net_sysctl(net, path, t->addrconf_vars);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005022 if (t->sysctl_header == NULL)
Eric W. Biederman6105e292012-04-19 13:41:24 +00005023 goto free;
Pavel Emelyanovf68635e2007-12-02 00:21:52 +11005024
5025 p->sysctl = t;
Pavel Emelyanov95897312008-01-10 17:41:45 -08005026 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005027
Pavel Emelyanovf68635e2007-12-02 00:21:52 +11005028free:
Linus Torvalds1da177e2005-04-16 15:20:36 -07005029 kfree(t);
Pavel Emelyanovf68635e2007-12-02 00:21:52 +11005030out:
Pavel Emelyanov95897312008-01-10 17:41:45 -08005031 return -ENOBUFS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005032}
5033
Pavel Emelyanov408c4762008-01-10 17:41:21 -08005034static void __addrconf_sysctl_unregister(struct ipv6_devconf *p)
5035{
5036 struct addrconf_sysctl_table *t;
5037
5038 if (p->sysctl == NULL)
5039 return;
5040
5041 t = p->sysctl;
5042 p->sysctl = NULL;
Lucian Adrian Grijincuff538812011-05-01 01:44:01 +00005043 unregister_net_sysctl_table(t->sysctl_header);
Pavel Emelyanov408c4762008-01-10 17:41:21 -08005044 kfree(t);
5045}
5046
Pavel Emelyanovf52295a2007-12-02 00:58:37 +11005047static void addrconf_sysctl_register(struct inet6_dev *idev)
5048{
Eric W. Biederman54716e32010-02-14 03:27:03 +00005049 neigh_sysctl_register(idev->dev, idev->nd_parms, "ipv6",
Eric W. Biedermanf8572d82009-11-05 13:32:03 -08005050 &ndisc_ifinfo_sysctl_change);
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09005051 __addrconf_sysctl_register(dev_net(idev->dev), idev->dev->name,
Eric W. Biedermanf8572d82009-11-05 13:32:03 -08005052 idev, &idev->cnf);
Pavel Emelyanovf52295a2007-12-02 00:58:37 +11005053}
5054
Pavel Emelyanov408c4762008-01-10 17:41:21 -08005055static void addrconf_sysctl_unregister(struct inet6_dev *idev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005056{
Pavel Emelyanov408c4762008-01-10 17:41:21 -08005057 __addrconf_sysctl_unregister(&idev->cnf);
5058 neigh_sysctl_unregister(idev->nd_parms);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005059}
5060
5061
5062#endif
5063
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00005064static int __net_init addrconf_init_net(struct net *net)
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08005065{
Hong Zhiguoa79ca222013-03-26 01:52:45 +08005066 int err = -ENOMEM;
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08005067 struct ipv6_devconf *all, *dflt;
5068
Hong Zhiguoa79ca222013-03-26 01:52:45 +08005069 all = kmemdup(&ipv6_devconf, sizeof(ipv6_devconf), GFP_KERNEL);
5070 if (all == NULL)
5071 goto err_alloc_all;
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08005072
Hong Zhiguoa79ca222013-03-26 01:52:45 +08005073 dflt = kmemdup(&ipv6_devconf_dflt, sizeof(ipv6_devconf_dflt), GFP_KERNEL);
5074 if (dflt == NULL)
5075 goto err_alloc_dflt;
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08005076
Hong Zhiguoa79ca222013-03-26 01:52:45 +08005077 /* these will be inherited by all namespaces */
5078 dflt->autoconf = ipv6_defaults.autoconf;
5079 dflt->disable_ipv6 = ipv6_defaults.disable_ipv6;
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08005080
5081 net->ipv6.devconf_all = all;
5082 net->ipv6.devconf_dflt = dflt;
5083
5084#ifdef CONFIG_SYSCTL
Eric W. Biedermanf8572d82009-11-05 13:32:03 -08005085 err = __addrconf_sysctl_register(net, "all", NULL, all);
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08005086 if (err < 0)
5087 goto err_reg_all;
5088
Eric W. Biedermanf8572d82009-11-05 13:32:03 -08005089 err = __addrconf_sysctl_register(net, "default", NULL, dflt);
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08005090 if (err < 0)
5091 goto err_reg_dflt;
5092#endif
5093 return 0;
5094
5095#ifdef CONFIG_SYSCTL
5096err_reg_dflt:
5097 __addrconf_sysctl_unregister(all);
5098err_reg_all:
5099 kfree(dflt);
5100#endif
5101err_alloc_dflt:
5102 kfree(all);
5103err_alloc_all:
5104 return err;
5105}
5106
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00005107static void __net_exit addrconf_exit_net(struct net *net)
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08005108{
5109#ifdef CONFIG_SYSCTL
5110 __addrconf_sysctl_unregister(net->ipv6.devconf_dflt);
5111 __addrconf_sysctl_unregister(net->ipv6.devconf_all);
5112#endif
Octavian Purdila09ad9bc2009-11-25 15:14:13 -08005113 if (!net_eq(net, &init_net)) {
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08005114 kfree(net->ipv6.devconf_dflt);
5115 kfree(net->ipv6.devconf_all);
5116 }
5117}
5118
5119static struct pernet_operations addrconf_ops = {
5120 .init = addrconf_init_net,
5121 .exit = addrconf_exit_net,
5122};
5123
Thomas Grafb382b192010-11-16 04:33:57 +00005124static struct rtnl_af_ops inet6_ops = {
5125 .family = AF_INET6,
5126 .fill_link_af = inet6_fill_link_af,
5127 .get_link_af_size = inet6_get_link_af_size,
Daniel Borkmannf53adae2013-04-08 04:01:30 +00005128 .set_link_af = inet6_set_link_af,
Thomas Grafb382b192010-11-16 04:33:57 +00005129};
5130
Linus Torvalds1da177e2005-04-16 15:20:36 -07005131/*
5132 * Init / cleanup code
5133 */
5134
5135int __init addrconf_init(void)
5136{
stephen hemmingerc2e21292010-03-17 20:31:10 +00005137 int i, err;
YOSHIFUJI Hideaki2a8cc6c2007-11-14 15:56:23 +09005138
Stephen Hemmingere21e8462010-03-20 16:09:01 -07005139 err = ipv6_addr_label_init();
5140 if (err < 0) {
Joe Perchesf3213832012-05-15 14:11:53 +00005141 pr_crit("%s: cannot initialize default policy table: %d\n",
5142 __func__, err);
Neil Horman2cc6d2b2010-09-24 09:55:52 +00005143 goto out;
YOSHIFUJI Hideaki2a8cc6c2007-11-14 15:56:23 +09005144 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005145
Neil Horman2cc6d2b2010-09-24 09:55:52 +00005146 err = register_pernet_subsys(&addrconf_ops);
5147 if (err < 0)
5148 goto out_addrlabel;
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08005149
Linus Torvalds1da177e2005-04-16 15:20:36 -07005150 /* The addrconf netdev notifier requires that loopback_dev
5151 * has it's ipv6 private information allocated and setup
5152 * before it can bring up and give link-local addresses
5153 * to other devices which are up.
5154 *
5155 * Unfortunately, loopback_dev is not necessarily the first
5156 * entry in the global dev_base list of net devices. In fact,
5157 * it is likely to be the very last entry on that list.
5158 * So this causes the notifier registry below to try and
5159 * give link-local addresses to all devices besides loopback_dev
5160 * first, then loopback_dev, which cases all the non-loopback_dev
5161 * devices to fail to get a link-local address.
5162 *
5163 * So, as a temporary fix, allocate the ipv6 structure for
5164 * loopback_dev first by hand.
5165 * Longer term, all of the dependencies ipv6 has upon the loopback
5166 * device and it being up should be removed.
5167 */
5168 rtnl_lock();
Eric W. Biederman2774c7a2007-09-26 22:10:56 -07005169 if (!ipv6_add_dev(init_net.loopback_dev))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005170 err = -ENOMEM;
5171 rtnl_unlock();
5172 if (err)
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08005173 goto errlo;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005174
stephen hemmingerc2e21292010-03-17 20:31:10 +00005175 for (i = 0; i < IN6_ADDR_HSIZE; i++)
5176 INIT_HLIST_HEAD(&inet6_addr_lst[i]);
5177
Linus Torvalds1da177e2005-04-16 15:20:36 -07005178 register_netdevice_notifier(&ipv6_dev_notf);
5179
Linus Torvalds1da177e2005-04-16 15:20:36 -07005180 addrconf_verify(0);
Thomas Grafc127ea22007-03-22 11:58:32 -07005181
Thomas Grafb382b192010-11-16 04:33:57 +00005182 err = rtnl_af_register(&inet6_ops);
5183 if (err < 0)
5184 goto errout_af;
5185
Greg Rosec7ac8672011-06-10 01:27:09 +00005186 err = __rtnl_register(PF_INET6, RTM_GETLINK, NULL, inet6_dump_ifinfo,
5187 NULL);
Thomas Grafc127ea22007-03-22 11:58:32 -07005188 if (err < 0)
5189 goto errout;
5190
5191 /* Only the first call to __rtnl_register can fail */
Greg Rosec7ac8672011-06-10 01:27:09 +00005192 __rtnl_register(PF_INET6, RTM_NEWADDR, inet6_rtm_newaddr, NULL, NULL);
5193 __rtnl_register(PF_INET6, RTM_DELADDR, inet6_rtm_deladdr, NULL, NULL);
5194 __rtnl_register(PF_INET6, RTM_GETADDR, inet6_rtm_getaddr,
5195 inet6_dump_ifaddr, NULL);
5196 __rtnl_register(PF_INET6, RTM_GETMULTICAST, NULL,
5197 inet6_dump_ifmcaddr, NULL);
5198 __rtnl_register(PF_INET6, RTM_GETANYCAST, NULL,
5199 inet6_dump_ifacaddr, NULL);
Nicolas Dichtel76f8f6c2012-10-25 22:28:51 +00005200 __rtnl_register(PF_INET6, RTM_GETNETCONF, inet6_netconf_get_devconf,
Nicolas Dichtel7a674202013-03-05 23:42:06 +00005201 inet6_netconf_dump_devconf, NULL);
Thomas Grafc127ea22007-03-22 11:58:32 -07005202
YOSHIFUJI Hideaki2a8cc6c2007-11-14 15:56:23 +09005203 ipv6_addr_label_rtnl_register();
5204
Linus Torvalds1da177e2005-04-16 15:20:36 -07005205 return 0;
Thomas Grafc127ea22007-03-22 11:58:32 -07005206errout:
Thomas Grafb382b192010-11-16 04:33:57 +00005207 rtnl_af_unregister(&inet6_ops);
5208errout_af:
Thomas Grafc127ea22007-03-22 11:58:32 -07005209 unregister_netdevice_notifier(&ipv6_dev_notf);
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08005210errlo:
5211 unregister_pernet_subsys(&addrconf_ops);
Neil Horman2cc6d2b2010-09-24 09:55:52 +00005212out_addrlabel:
5213 ipv6_addr_label_cleanup();
5214out:
Thomas Grafc127ea22007-03-22 11:58:32 -07005215 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005216}
5217
Daniel Lezcano09f77092007-12-13 05:34:58 -08005218void addrconf_cleanup(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005219{
Daniel Lezcano176c39a2009-03-03 01:06:45 -08005220 struct net_device *dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005221 int i;
5222
5223 unregister_netdevice_notifier(&ipv6_dev_notf);
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08005224 unregister_pernet_subsys(&addrconf_ops);
Neil Horman2cc6d2b2010-09-24 09:55:52 +00005225 ipv6_addr_label_cleanup();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005226
5227 rtnl_lock();
5228
Thomas Grafb382b192010-11-16 04:33:57 +00005229 __rtnl_af_unregister(&inet6_ops);
5230
Daniel Lezcano176c39a2009-03-03 01:06:45 -08005231 /* clean dev list */
5232 for_each_netdev(&init_net, dev) {
5233 if (__in6_dev_get(dev) == NULL)
5234 continue;
5235 addrconf_ifdown(dev, 1);
5236 }
5237 addrconf_ifdown(init_net.loopback_dev, 2);
5238
Linus Torvalds1da177e2005-04-16 15:20:36 -07005239 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005240 * Check hash table.
5241 */
stephen hemminger5c578ae2010-03-17 20:31:11 +00005242 spin_lock_bh(&addrconf_hash_lock);
stephen hemmingerc2e21292010-03-17 20:31:10 +00005243 for (i = 0; i < IN6_ADDR_HSIZE; i++)
5244 WARN_ON(!hlist_empty(&inet6_addr_lst[i]));
stephen hemminger5c578ae2010-03-17 20:31:11 +00005245 spin_unlock_bh(&addrconf_hash_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005246
5247 del_timer(&addr_chk_timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005248 rtnl_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005249}