blob: a0c3abe724612ffa6fed1d4b820e60a80b0f0a2f [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{
Tejun Heo7d720c32010-02-16 15:20:26 +0000284 if (snmp_mib_init((void __percpu **)idev->stats.ipv6,
Eric Dumazet1823e4c82010-06-22 20:58:41 +0000285 sizeof(struct ipstats_mib),
286 __alignof__(struct ipstats_mib)) < 0)
Herbert Xu7f7d9a62007-04-24 21:54:09 -0700287 goto err_ip;
Eric Dumazetbe281e52011-05-19 01:14:23 +0000288 idev->stats.icmpv6dev = kzalloc(sizeof(struct icmpv6_mib_device),
289 GFP_KERNEL);
290 if (!idev->stats.icmpv6dev)
Herbert Xu7f7d9a62007-04-24 21:54:09 -0700291 goto err_icmp;
Eric Dumazetbe281e52011-05-19 01:14:23 +0000292 idev->stats.icmpv6msgdev = kzalloc(sizeof(struct icmpv6msg_mib_device),
293 GFP_KERNEL);
294 if (!idev->stats.icmpv6msgdev)
David L Stevens14878f72007-09-16 16:52:35 -0700295 goto err_icmpmsg;
Herbert Xu7f7d9a62007-04-24 21:54:09 -0700296
297 return 0;
298
David L Stevens14878f72007-09-16 16:52:35 -0700299err_icmpmsg:
Eric Dumazetbe281e52011-05-19 01:14:23 +0000300 kfree(idev->stats.icmpv6dev);
Herbert Xu7f7d9a62007-04-24 21:54:09 -0700301err_icmp:
Tejun Heo7d720c32010-02-16 15:20:26 +0000302 snmp_mib_free((void __percpu **)idev->stats.ipv6);
Herbert Xu7f7d9a62007-04-24 21:54:09 -0700303err_ip:
Pavel Emelyanovaaf70ec2007-10-17 21:25:32 -0700304 return -ENOMEM;
Herbert Xu7f7d9a62007-04-24 21:54:09 -0700305}
306
Eldad Zack8e5e8f32012-04-01 07:49:08 +0000307static struct inet6_dev *ipv6_add_dev(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308{
309 struct inet6_dev *ndev;
310
311 ASSERT_RTNL();
312
313 if (dev->mtu < IPV6_MIN_MTU)
314 return NULL;
315
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900316 ndev = kzalloc(sizeof(struct inet6_dev), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900318 if (ndev == NULL)
319 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320
Ingo Oeser322f74a2006-03-20 23:01:47 -0800321 rwlock_init(&ndev->lock);
322 ndev->dev = dev;
stephen hemminger502a2ff2010-03-17 20:31:13 +0000323 INIT_LIST_HEAD(&ndev->addr_list);
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +0200324 setup_timer(&ndev->rs_timer, addrconf_rs_timer,
325 (unsigned long)ndev);
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +0900326 memcpy(&ndev->cnf, dev_net(dev)->ipv6.devconf_dflt, sizeof(ndev->cnf));
Ingo Oeser322f74a2006-03-20 23:01:47 -0800327 ndev->cnf.mtu6 = dev->mtu;
328 ndev->cnf.sysctl = NULL;
329 ndev->nd_parms = neigh_parms_alloc(dev, &nd_tbl);
330 if (ndev->nd_parms == NULL) {
331 kfree(ndev);
332 return NULL;
333 }
Ben Hutchings0187bdf2008-06-19 16:15:47 -0700334 if (ndev->cnf.forwarding)
335 dev_disable_lro(dev);
Ingo Oeser322f74a2006-03-20 23:01:47 -0800336 /* We refer to the device */
337 dev_hold(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338
Ingo Oeser322f74a2006-03-20 23:01:47 -0800339 if (snmp6_alloc_dev(ndev) < 0) {
dingtianhongba3542e2013-08-17 10:27:04 +0800340 ADBG(KERN_WARNING
Joe Perchesf3213832012-05-15 14:11:53 +0000341 "%s: cannot allocate memory for statistics; dev=%s.\n",
dingtianhongba3542e2013-08-17 10:27:04 +0800342 __func__, dev->name);
Ingo Oeser322f74a2006-03-20 23:01:47 -0800343 neigh_parms_release(&nd_tbl, ndev->nd_parms);
Roy Li8603e332011-09-20 15:10:16 -0400344 dev_put(dev);
345 kfree(ndev);
Ingo Oeser322f74a2006-03-20 23:01:47 -0800346 return NULL;
347 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348
Ingo Oeser322f74a2006-03-20 23:01:47 -0800349 if (snmp6_register_dev(ndev) < 0) {
dingtianhongba3542e2013-08-17 10:27:04 +0800350 ADBG(KERN_WARNING
Joe Perchesf3213832012-05-15 14:11:53 +0000351 "%s: cannot create /proc/net/dev_snmp6/%s\n",
dingtianhongba3542e2013-08-17 10:27:04 +0800352 __func__, dev->name);
Ingo Oeser322f74a2006-03-20 23:01:47 -0800353 neigh_parms_release(&nd_tbl, ndev->nd_parms);
354 ndev->dead = 1;
355 in6_dev_finish_destroy(ndev);
356 return NULL;
357 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358
Ingo Oeser322f74a2006-03-20 23:01:47 -0800359 /* One reference from device. We must do this before
360 * we invoke __ipv6_regen_rndid().
361 */
362 in6_dev_hold(ndev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363
YOSHIFUJI Hideaki1b34be72008-06-28 14:18:38 +0900364 if (dev->flags & (IFF_NOARP | IFF_LOOPBACK))
365 ndev->cnf.accept_dad = -1;
366
Amerigo Wang07a93622012-10-29 16:23:10 +0000367#if IS_ENABLED(CONFIG_IPV6_SIT)
YOSHIFUJI Hideakib077d7a2008-04-13 23:42:18 -0700368 if (dev->type == ARPHRD_SIT && (dev->priv_flags & IFF_ISATAP)) {
Joe Perchesf3213832012-05-15 14:11:53 +0000369 pr_info("%s: Disabled Multicast RS\n", dev->name);
YOSHIFUJI Hideakib077d7a2008-04-13 23:42:18 -0700370 ndev->cnf.rtr_solicits = 0;
371 }
372#endif
373
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374#ifdef CONFIG_IPV6_PRIVACY
stephen hemminger372e6c82010-03-17 20:31:09 +0000375 INIT_LIST_HEAD(&ndev->tempaddr_list);
Pavel Emelyanovb24b8a22008-01-23 21:20:07 -0800376 setup_timer(&ndev->regen_timer, ipv6_regen_rndid, (unsigned long)ndev);
Ingo Oeser322f74a2006-03-20 23:01:47 -0800377 if ((dev->flags&IFF_LOOPBACK) ||
378 dev->type == ARPHRD_TUNNEL ||
YOSHIFUJI Hideaki9625ed72008-04-13 23:47:11 -0700379 dev->type == ARPHRD_TUNNEL6 ||
Joerg Roedel0be669b2006-10-10 14:49:53 -0700380 dev->type == ARPHRD_SIT ||
Joerg Roedel0be669b2006-10-10 14:49:53 -0700381 dev->type == ARPHRD_NONE) {
Ingo Oeser322f74a2006-03-20 23:01:47 -0800382 ndev->cnf.use_tempaddr = -1;
383 } else {
384 in6_dev_hold(ndev);
385 ipv6_regen_rndid((unsigned long) ndev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386 }
Ingo Oeser322f74a2006-03-20 23:01:47 -0800387#endif
Daniel Borkmann914faa12013-04-09 03:47:14 +0000388 ndev->token = in6addr_any;
Ingo Oeser322f74a2006-03-20 23:01:47 -0800389
Mitsuru Chinenf24e3d62007-10-10 02:53:43 -0700390 if (netif_running(dev) && addrconf_qdisc_ok(dev))
Herbert Xu53aadcc2007-03-27 14:31:52 -0700391 ndev->if_flags |= IF_READY;
392
Ingo Oeser322f74a2006-03-20 23:01:47 -0800393 ipv6_mc_init_dev(ndev);
394 ndev->tstamp = jiffies;
Pavel Emelyanovf52295a2007-12-02 00:58:37 +1100395 addrconf_sysctl_register(ndev);
David L Stevens30c4cf52007-01-04 12:31:14 -0800396 /* protected by rtnl_lock */
Eric Dumazetcf778b02012-01-12 04:41:32 +0000397 rcu_assign_pointer(dev->ip6_ptr, ndev);
YOSHIFUJI Hideakid88ae4c2007-01-14 21:48:40 -0800398
Hannes Frederic Sowa2c5e8932013-02-10 03:50:18 +0000399 /* Join interface-local all-node multicast group */
400 ipv6_dev_mc_inc(dev, &in6addr_interfacelocal_allnodes);
401
YOSHIFUJI Hideakid88ae4c2007-01-14 21:48:40 -0800402 /* Join all-node multicast group */
YOSHIFUJI Hideakif3ee4012008-04-10 15:42:11 +0900403 ipv6_dev_mc_inc(dev, &in6addr_linklocal_allnodes);
YOSHIFUJI Hideakid88ae4c2007-01-14 21:48:40 -0800404
Li Weid6ddef92012-03-05 14:45:17 +0000405 /* Join all-router multicast group if forwarding is set */
Li Wei8b2aaed2012-03-07 14:58:07 +0000406 if (ndev->cnf.forwarding && (dev->flags & IFF_MULTICAST))
Li Weid6ddef92012-03-05 14:45:17 +0000407 ipv6_dev_mc_inc(dev, &in6addr_linklocal_allrouters);
408
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409 return ndev;
410}
411
Eldad Zack8e5e8f32012-04-01 07:49:08 +0000412static struct inet6_dev *ipv6_find_idev(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413{
414 struct inet6_dev *idev;
415
416 ASSERT_RTNL();
417
Stephen Hemmingere21e8462010-03-20 16:09:01 -0700418 idev = __in6_dev_get(dev);
419 if (!idev) {
420 idev = ipv6_add_dev(dev);
421 if (!idev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422 return NULL;
423 }
YOSHIFUJI Hideakic5e33bd2005-12-21 22:57:44 +0900424
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425 if (dev->flags&IFF_UP)
426 ipv6_mc_up(idev);
427 return idev;
428}
429
Nicolas Dichtelf3a1bfb2012-10-25 22:28:50 +0000430static int inet6_netconf_msgsize_devconf(int type)
431{
432 int size = NLMSG_ALIGN(sizeof(struct netconfmsg))
433 + nla_total_size(4); /* NETCONFA_IFINDEX */
434
Nicolas Dichtel76f8f6c2012-10-25 22:28:51 +0000435 /* type -1 is used for ALL */
436 if (type == -1 || type == NETCONFA_FORWARDING)
Nicolas Dichtelf3a1bfb2012-10-25 22:28:50 +0000437 size += nla_total_size(4);
David S. Millerb1afce92012-12-04 14:46:34 -0500438#ifdef CONFIG_IPV6_MROUTE
Nicolas Dichteld67b8c62012-12-04 01:13:35 +0000439 if (type == -1 || type == NETCONFA_MC_FORWARDING)
440 size += nla_total_size(4);
David S. Millerb1afce92012-12-04 14:46:34 -0500441#endif
Nicolas Dichtelf3a1bfb2012-10-25 22:28:50 +0000442
443 return size;
444}
445
446static int inet6_netconf_fill_devconf(struct sk_buff *skb, int ifindex,
447 struct ipv6_devconf *devconf, u32 portid,
448 u32 seq, int event, unsigned int flags,
449 int type)
450{
451 struct nlmsghdr *nlh;
452 struct netconfmsg *ncm;
453
454 nlh = nlmsg_put(skb, portid, seq, event, sizeof(struct netconfmsg),
455 flags);
456 if (nlh == NULL)
457 return -EMSGSIZE;
458
459 ncm = nlmsg_data(nlh);
460 ncm->ncm_family = AF_INET6;
461
462 if (nla_put_s32(skb, NETCONFA_IFINDEX, ifindex) < 0)
463 goto nla_put_failure;
464
Nicolas Dichtel76f8f6c2012-10-25 22:28:51 +0000465 /* type -1 is used for ALL */
466 if ((type == -1 || type == NETCONFA_FORWARDING) &&
Nicolas Dichtelf3a1bfb2012-10-25 22:28:50 +0000467 nla_put_s32(skb, NETCONFA_FORWARDING, devconf->forwarding) < 0)
468 goto nla_put_failure;
David S. Millerb1afce92012-12-04 14:46:34 -0500469#ifdef CONFIG_IPV6_MROUTE
Nicolas Dichteld67b8c62012-12-04 01:13:35 +0000470 if ((type == -1 || type == NETCONFA_MC_FORWARDING) &&
471 nla_put_s32(skb, NETCONFA_MC_FORWARDING,
472 devconf->mc_forwarding) < 0)
473 goto nla_put_failure;
David S. Millerb1afce92012-12-04 14:46:34 -0500474#endif
Nicolas Dichtelf3a1bfb2012-10-25 22:28:50 +0000475 return nlmsg_end(skb, nlh);
476
477nla_put_failure:
478 nlmsg_cancel(skb, nlh);
479 return -EMSGSIZE;
480}
481
Nicolas Dichteld67b8c62012-12-04 01:13:35 +0000482void inet6_netconf_notify_devconf(struct net *net, int type, int ifindex,
483 struct ipv6_devconf *devconf)
Nicolas Dichtelf3a1bfb2012-10-25 22:28:50 +0000484{
485 struct sk_buff *skb;
486 int err = -ENOBUFS;
487
488 skb = nlmsg_new(inet6_netconf_msgsize_devconf(type), GFP_ATOMIC);
489 if (skb == NULL)
490 goto errout;
491
492 err = inet6_netconf_fill_devconf(skb, ifindex, devconf, 0, 0,
493 RTM_NEWNETCONF, 0, type);
494 if (err < 0) {
495 /* -EMSGSIZE implies BUG in inet6_netconf_msgsize_devconf() */
496 WARN_ON(err == -EMSGSIZE);
497 kfree_skb(skb);
498 goto errout;
499 }
500 rtnl_notify(skb, net, 0, RTNLGRP_IPV6_NETCONF, NULL, GFP_ATOMIC);
501 return;
502errout:
Cong Dingbd779022012-12-18 12:08:56 +0000503 rtnl_set_sk_err(net, RTNLGRP_IPV6_NETCONF, err);
Nicolas Dichtelf3a1bfb2012-10-25 22:28:50 +0000504}
505
Nicolas Dichtel76f8f6c2012-10-25 22:28:51 +0000506static const struct nla_policy devconf_ipv6_policy[NETCONFA_MAX+1] = {
507 [NETCONFA_IFINDEX] = { .len = sizeof(int) },
508 [NETCONFA_FORWARDING] = { .len = sizeof(int) },
509};
510
511static int inet6_netconf_get_devconf(struct sk_buff *in_skb,
Thomas Graf661d2962013-03-21 07:45:29 +0000512 struct nlmsghdr *nlh)
Nicolas Dichtel76f8f6c2012-10-25 22:28:51 +0000513{
514 struct net *net = sock_net(in_skb->sk);
515 struct nlattr *tb[NETCONFA_MAX+1];
516 struct netconfmsg *ncm;
517 struct sk_buff *skb;
518 struct ipv6_devconf *devconf;
519 struct inet6_dev *in6_dev;
520 struct net_device *dev;
521 int ifindex;
522 int err;
523
524 err = nlmsg_parse(nlh, sizeof(*ncm), tb, NETCONFA_MAX,
525 devconf_ipv6_policy);
526 if (err < 0)
527 goto errout;
528
529 err = EINVAL;
530 if (!tb[NETCONFA_IFINDEX])
531 goto errout;
532
533 ifindex = nla_get_s32(tb[NETCONFA_IFINDEX]);
534 switch (ifindex) {
535 case NETCONFA_IFINDEX_ALL:
536 devconf = net->ipv6.devconf_all;
537 break;
538 case NETCONFA_IFINDEX_DEFAULT:
539 devconf = net->ipv6.devconf_dflt;
540 break;
541 default:
542 dev = __dev_get_by_index(net, ifindex);
543 if (dev == NULL)
544 goto errout;
545 in6_dev = __in6_dev_get(dev);
546 if (in6_dev == NULL)
547 goto errout;
548 devconf = &in6_dev->cnf;
549 break;
550 }
551
552 err = -ENOBUFS;
553 skb = nlmsg_new(inet6_netconf_msgsize_devconf(-1), GFP_ATOMIC);
554 if (skb == NULL)
555 goto errout;
556
557 err = inet6_netconf_fill_devconf(skb, ifindex, devconf,
558 NETLINK_CB(in_skb).portid,
559 nlh->nlmsg_seq, RTM_NEWNETCONF, 0,
560 -1);
561 if (err < 0) {
562 /* -EMSGSIZE implies BUG in inet6_netconf_msgsize_devconf() */
563 WARN_ON(err == -EMSGSIZE);
564 kfree_skb(skb);
565 goto errout;
566 }
567 err = rtnl_unicast(skb, net, NETLINK_CB(in_skb).portid);
568errout:
569 return err;
570}
571
Nicolas Dichtel7a674202013-03-05 23:42:06 +0000572static int inet6_netconf_dump_devconf(struct sk_buff *skb,
573 struct netlink_callback *cb)
574{
575 struct net *net = sock_net(skb->sk);
576 int h, s_h;
577 int idx, s_idx;
578 struct net_device *dev;
579 struct inet6_dev *idev;
580 struct hlist_head *head;
581
582 s_h = cb->args[0];
583 s_idx = idx = cb->args[1];
584
585 for (h = s_h; h < NETDEV_HASHENTRIES; h++, s_idx = 0) {
586 idx = 0;
587 head = &net->dev_index_head[h];
588 rcu_read_lock();
Nicolas Dichtel63998ac2013-03-22 06:28:43 +0000589 cb->seq = atomic_read(&net->ipv6.dev_addr_genid) ^
590 net->dev_base_seq;
Nicolas Dichtel7a674202013-03-05 23:42:06 +0000591 hlist_for_each_entry_rcu(dev, head, index_hlist) {
592 if (idx < s_idx)
593 goto cont;
594 idev = __in6_dev_get(dev);
595 if (!idev)
596 goto cont;
597
598 if (inet6_netconf_fill_devconf(skb, dev->ifindex,
599 &idev->cnf,
600 NETLINK_CB(cb->skb).portid,
601 cb->nlh->nlmsg_seq,
602 RTM_NEWNETCONF,
603 NLM_F_MULTI,
604 -1) <= 0) {
605 rcu_read_unlock();
606 goto done;
607 }
Nicolas Dichtel63998ac2013-03-22 06:28:43 +0000608 nl_dump_check_consistent(cb, nlmsg_hdr(skb));
Nicolas Dichtel7a674202013-03-05 23:42:06 +0000609cont:
610 idx++;
611 }
612 rcu_read_unlock();
613 }
614 if (h == NETDEV_HASHENTRIES) {
615 if (inet6_netconf_fill_devconf(skb, NETCONFA_IFINDEX_ALL,
616 net->ipv6.devconf_all,
617 NETLINK_CB(cb->skb).portid,
618 cb->nlh->nlmsg_seq,
619 RTM_NEWNETCONF, NLM_F_MULTI,
620 -1) <= 0)
621 goto done;
622 else
623 h++;
624 }
625 if (h == NETDEV_HASHENTRIES + 1) {
626 if (inet6_netconf_fill_devconf(skb, NETCONFA_IFINDEX_DEFAULT,
627 net->ipv6.devconf_dflt,
628 NETLINK_CB(cb->skb).portid,
629 cb->nlh->nlmsg_seq,
630 RTM_NEWNETCONF, NLM_F_MULTI,
631 -1) <= 0)
632 goto done;
633 else
634 h++;
635 }
636done:
637 cb->args[0] = h;
638 cb->args[1] = idx;
639
640 return skb->len;
641}
642
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643#ifdef CONFIG_SYSCTL
644static void dev_forward_change(struct inet6_dev *idev)
645{
646 struct net_device *dev;
647 struct inet6_ifaddr *ifa;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648
649 if (!idev)
650 return;
651 dev = idev->dev;
Ben Hutchings0187bdf2008-06-19 16:15:47 -0700652 if (idev->cnf.forwarding)
653 dev_disable_lro(dev);
Amerigo Wang1a940832012-10-28 17:43:53 +0000654 if (dev->flags & IFF_MULTICAST) {
Hannes Frederic Sowa2c5e8932013-02-10 03:50:18 +0000655 if (idev->cnf.forwarding) {
YOSHIFUJI Hideakif3ee4012008-04-10 15:42:11 +0900656 ipv6_dev_mc_inc(dev, &in6addr_linklocal_allrouters);
Hannes Frederic Sowa2c5e8932013-02-10 03:50:18 +0000657 ipv6_dev_mc_inc(dev, &in6addr_interfacelocal_allrouters);
658 ipv6_dev_mc_inc(dev, &in6addr_sitelocal_allrouters);
659 } else {
YOSHIFUJI Hideakif3ee4012008-04-10 15:42:11 +0900660 ipv6_dev_mc_dec(dev, &in6addr_linklocal_allrouters);
Hannes Frederic Sowa2c5e8932013-02-10 03:50:18 +0000661 ipv6_dev_mc_dec(dev, &in6addr_interfacelocal_allrouters);
662 ipv6_dev_mc_dec(dev, &in6addr_sitelocal_allrouters);
663 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664 }
stephen hemminger502a2ff2010-03-17 20:31:13 +0000665
666 list_for_each_entry(ifa, &idev->addr_list, if_list) {
Michal Wrobel2c12a742007-02-26 15:36:10 -0800667 if (ifa->flags&IFA_F_TENTATIVE)
668 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669 if (idev->cnf.forwarding)
670 addrconf_join_anycast(ifa);
671 else
672 addrconf_leave_anycast(ifa);
673 }
Nicolas Dichtelf3a1bfb2012-10-25 22:28:50 +0000674 inet6_netconf_notify_devconf(dev_net(dev), NETCONFA_FORWARDING,
675 dev->ifindex, &idev->cnf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676}
677
678
Pavel Emelyanove1869322008-01-10 17:43:50 -0800679static void addrconf_forward_change(struct net *net, __s32 newf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680{
681 struct net_device *dev;
682 struct inet6_dev *idev;
683
Ben Hutchings4acd4942012-08-14 08:54:51 +0000684 for_each_netdev(net, dev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685 idev = __in6_dev_get(dev);
686 if (idev) {
Pavel Emelyanove1869322008-01-10 17:43:50 -0800687 int changed = (!idev->cnf.forwarding) ^ (!newf);
688 idev->cnf.forwarding = newf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689 if (changed)
690 dev_forward_change(idev);
691 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693}
Pavel Emelyanovc8fecf22007-12-05 01:50:24 -0800694
Francesco Ruggeri013d97e2012-01-16 10:40:10 +0000695static int addrconf_fixup_forwarding(struct ctl_table *table, int *p, int newf)
Pavel Emelyanovc8fecf22007-12-05 01:50:24 -0800696{
Pavel Emelyanovbff16c22008-01-10 17:42:13 -0800697 struct net *net;
Francesco Ruggeri013d97e2012-01-16 10:40:10 +0000698 int old;
699
700 if (!rtnl_trylock())
701 return restart_syscall();
Pavel Emelyanovbff16c22008-01-10 17:42:13 -0800702
703 net = (struct net *)table->extra2;
Francesco Ruggeri013d97e2012-01-16 10:40:10 +0000704 old = *p;
705 *p = newf;
Pavel Emelyanovc8fecf22007-12-05 01:50:24 -0800706
Francesco Ruggeri013d97e2012-01-16 10:40:10 +0000707 if (p == &net->ipv6.devconf_dflt->forwarding) {
Nicolas Dichtelf3a1bfb2012-10-25 22:28:50 +0000708 if ((!newf) ^ (!old))
709 inet6_netconf_notify_devconf(net, NETCONFA_FORWARDING,
710 NETCONFA_IFINDEX_DEFAULT,
711 net->ipv6.devconf_dflt);
Francesco Ruggeri013d97e2012-01-16 10:40:10 +0000712 rtnl_unlock();
713 return 0;
Eric W. Biederman88af1822010-02-19 13:22:59 +0000714 }
Stephen Hemmingerb325fdd2009-02-26 06:55:31 +0000715
Pavel Emelyanove1869322008-01-10 17:43:50 -0800716 if (p == &net->ipv6.devconf_all->forwarding) {
Pavel Emelyanove1869322008-01-10 17:43:50 -0800717 net->ipv6.devconf_dflt->forwarding = newf;
718 addrconf_forward_change(net, newf);
Nicolas Dichtelf3a1bfb2012-10-25 22:28:50 +0000719 if ((!newf) ^ (!old))
720 inet6_netconf_notify_devconf(net, NETCONFA_FORWARDING,
721 NETCONFA_IFINDEX_ALL,
722 net->ipv6.devconf_all);
Francesco Ruggeri013d97e2012-01-16 10:40:10 +0000723 } else if ((!newf) ^ (!old))
Pavel Emelyanovc8fecf22007-12-05 01:50:24 -0800724 dev_forward_change((struct inet6_dev *)table->extra1);
Ben Hutchings0187bdf2008-06-19 16:15:47 -0700725 rtnl_unlock();
Pavel Emelyanovc8fecf22007-12-05 01:50:24 -0800726
Francesco Ruggeri013d97e2012-01-16 10:40:10 +0000727 if (newf)
Daniel Lezcano7b4da532008-03-04 13:47:14 -0800728 rt6_purge_dflt_routers(net);
Stephen Hemmingerb325fdd2009-02-26 06:55:31 +0000729 return 1;
Pavel Emelyanovc8fecf22007-12-05 01:50:24 -0800730}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731#endif
732
stephen hemminger5c578ae2010-03-17 20:31:11 +0000733/* Nobody refers to this ifaddr, destroy it */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734void inet6_ifa_finish_destroy(struct inet6_ifaddr *ifp)
735{
stephen hemmingerc2e21292010-03-17 20:31:10 +0000736 WARN_ON(!hlist_unhashed(&ifp->addr_lst));
Ilpo Järvinen547b7922008-07-25 21:43:18 -0700737
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738#ifdef NET_REFCNT_DEBUG
Joe Perches91df42b2012-05-15 14:11:54 +0000739 pr_debug("%s\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740#endif
741
742 in6_dev_put(ifp->idev);
743
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +0200744 if (del_timer(&ifp->dad_timer))
Stephen Hemmingere21e8462010-03-20 16:09:01 -0700745 pr_notice("Timer is still running, when freeing ifa=%p\n", ifp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746
Herbert Xue9d3e082010-05-18 15:36:06 -0700747 if (ifp->state != INET6_IFADDR_STATE_DEAD) {
Joe Perchesf3213832012-05-15 14:11:53 +0000748 pr_warn("Freeing alive inet6 address %p\n", ifp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749 return;
750 }
Amerigo Wang94e187c2012-10-29 00:13:19 +0000751 ip6_rt_put(ifp->rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752
Lai Jiangshane5785982011-03-15 18:00:14 +0800753 kfree_rcu(ifp, rcu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754}
755
Brian Haleye55ffac2006-07-10 15:25:51 -0700756static void
757ipv6_link_dev_addr(struct inet6_dev *idev, struct inet6_ifaddr *ifp)
758{
stephen hemminger502a2ff2010-03-17 20:31:13 +0000759 struct list_head *p;
YOSHIFUJI Hideaki8a6ce0c2006-07-11 13:05:30 -0700760 int ifp_scope = ipv6_addr_src_scope(&ifp->addr);
Brian Haleye55ffac2006-07-10 15:25:51 -0700761
762 /*
763 * Each device address list is sorted in order of scope -
764 * global before linklocal.
765 */
stephen hemminger502a2ff2010-03-17 20:31:13 +0000766 list_for_each(p, &idev->addr_list) {
767 struct inet6_ifaddr *ifa
768 = list_entry(p, struct inet6_ifaddr, if_list);
YOSHIFUJI Hideaki8a6ce0c2006-07-11 13:05:30 -0700769 if (ifp_scope >= ipv6_addr_src_scope(&ifa->addr))
Brian Haleye55ffac2006-07-10 15:25:51 -0700770 break;
771 }
772
David S. Millerb54c9b92010-03-25 21:25:30 -0700773 list_add_tail(&ifp->if_list, p);
Brian Haleye55ffac2006-07-10 15:25:51 -0700774}
775
Eric Dumazetddbe5032012-07-18 08:11:12 +0000776static u32 inet6_addr_hash(const struct in6_addr *addr)
YOSHIFUJI Hideaki3eb84f42008-04-10 15:42:08 +0900777{
Eric Dumazetddbe5032012-07-18 08:11:12 +0000778 return hash_32(ipv6_addr_hash(addr), IN6_ADDR_HSIZE_SHIFT);
YOSHIFUJI Hideaki3eb84f42008-04-10 15:42:08 +0900779}
780
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781/* On success it returns ifp with increased reference count */
782
783static struct inet6_ifaddr *
Jiri Pirko3f8f5292013-08-01 10:41:27 +0200784ipv6_add_addr(struct inet6_dev *idev, const struct in6_addr *addr,
785 const struct in6_addr *peer_addr, int pfxlen,
Jiri Benc8a226b22013-08-01 10:41:28 +0200786 int scope, u32 flags, u32 valid_lft, u32 prefered_lft)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787{
788 struct inet6_ifaddr *ifa = NULL;
789 struct rt6_info *rt;
stephen hemminger3a88a812010-03-17 20:31:12 +0000790 unsigned int hash;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791 int err = 0;
YOSHIFUJI Hideakid68b8272008-06-25 16:26:47 +0900792 int addr_type = ipv6_addr_type(addr);
793
794 if (addr_type == IPV6_ADDR_ANY ||
795 addr_type & IPV6_ADDR_MULTICAST ||
796 (!(idev->dev->flags & IFF_LOOPBACK) &&
797 addr_type & IPV6_ADDR_LOOPBACK))
798 return ERR_PTR(-EADDRNOTAVAIL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -0700800 rcu_read_lock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801 if (idev->dead) {
802 err = -ENODEV; /*XXX*/
803 goto out2;
804 }
805
Brian Haley56d417b2009-06-01 03:07:33 -0700806 if (idev->cnf.disable_ipv6) {
Brian Haley9bdd8d42009-03-18 18:22:48 -0700807 err = -EACCES;
808 goto out2;
809 }
810
stephen hemminger5c578ae2010-03-17 20:31:11 +0000811 spin_lock(&addrconf_hash_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812
813 /* Ignore adding duplicate addresses on an interface */
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +0900814 if (ipv6_chk_same_addr(dev_net(idev->dev), addr, idev->dev)) {
dingtianhongba3542e2013-08-17 10:27:04 +0800815 ADBG("ipv6_add_addr: already assigned\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816 err = -EEXIST;
817 goto out;
818 }
819
Ingo Oeser322f74a2006-03-20 23:01:47 -0800820 ifa = kzalloc(sizeof(struct inet6_ifaddr), GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821
822 if (ifa == NULL) {
dingtianhongba3542e2013-08-17 10:27:04 +0800823 ADBG("ipv6_add_addr: malloc failed\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824 err = -ENOBUFS;
825 goto out;
826 }
827
David S. Miller8f031512011-12-06 16:48:14 -0500828 rt = addrconf_dst_alloc(idev, addr, false);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829 if (IS_ERR(rt)) {
830 err = PTR_ERR(rt);
831 goto out;
832 }
833
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +0000834 ifa->addr = *addr;
Jiri Pirko3f8f5292013-08-01 10:41:27 +0200835 if (peer_addr)
836 ifa->peer_addr = *peer_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837
838 spin_lock_init(&ifa->lock);
Herbert Xue9d3e082010-05-18 15:36:06 -0700839 spin_lock_init(&ifa->state_lock);
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +0200840 setup_timer(&ifa->dad_timer, addrconf_dad_timer,
841 (unsigned long)ifa);
stephen hemmingerc2e21292010-03-17 20:31:10 +0000842 INIT_HLIST_NODE(&ifa->addr_lst);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843 ifa->scope = scope;
844 ifa->prefix_len = pfxlen;
845 ifa->flags = flags | IFA_F_TENTATIVE;
Jiri Benc8a226b22013-08-01 10:41:28 +0200846 ifa->valid_lft = valid_lft;
847 ifa->prefered_lft = prefered_lft;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848 ifa->cstamp = ifa->tstamp = jiffies;
Daniel Borkmann617fe292013-04-09 03:47:16 +0000849 ifa->tokenized = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850
Keir Fraser57f5f542006-08-29 02:43:49 -0700851 ifa->rt = rt;
852
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853 ifa->idev = idev;
854 in6_dev_hold(idev);
855 /* For caller */
856 in6_ifa_hold(ifa);
857
858 /* Add to big hash table */
Eric Dumazetddbe5032012-07-18 08:11:12 +0000859 hash = inet6_addr_hash(addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860
stephen hemminger5c578ae2010-03-17 20:31:11 +0000861 hlist_add_head_rcu(&ifa->addr_lst, &inet6_addr_lst[hash]);
stephen hemminger5c578ae2010-03-17 20:31:11 +0000862 spin_unlock(&addrconf_hash_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863
864 write_lock(&idev->lock);
865 /* Add to inet6_dev unicast addr list. */
Brian Haleye55ffac2006-07-10 15:25:51 -0700866 ipv6_link_dev_addr(idev, ifa);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867
868#ifdef CONFIG_IPV6_PRIVACY
869 if (ifa->flags&IFA_F_TEMPORARY) {
stephen hemminger372e6c82010-03-17 20:31:09 +0000870 list_add(&ifa->tmp_list, &idev->tempaddr_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871 in6_ifa_hold(ifa);
872 }
873#endif
874
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875 in6_ifa_hold(ifa);
876 write_unlock(&idev->lock);
877out2:
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -0700878 rcu_read_unlock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879
YOSHIFUJI Hideakifd928332005-04-19 22:27:09 -0700880 if (likely(err == 0))
Cong Wangf88c91d2013-04-14 23:18:43 +0800881 inet6addr_notifier_call_chain(NETDEV_UP, ifa);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882 else {
883 kfree(ifa);
884 ifa = ERR_PTR(err);
885 }
886
887 return ifa;
888out:
stephen hemminger5c578ae2010-03-17 20:31:11 +0000889 spin_unlock(&addrconf_hash_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890 goto out2;
891}
892
893/* This function wants to get referenced ifp and releases it before return */
894
895static void ipv6_del_addr(struct inet6_ifaddr *ifp)
896{
stephen hemminger502a2ff2010-03-17 20:31:13 +0000897 struct inet6_ifaddr *ifa, *ifn;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898 struct inet6_dev *idev = ifp->idev;
Herbert Xu4c5ff6a2010-05-18 15:54:18 -0700899 int state;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900 int deleted = 0, onlink = 0;
901 unsigned long expires = jiffies;
902
Herbert Xu4c5ff6a2010-05-18 15:54:18 -0700903 spin_lock_bh(&ifp->state_lock);
904 state = ifp->state;
Herbert Xue9d3e082010-05-18 15:36:06 -0700905 ifp->state = INET6_IFADDR_STATE_DEAD;
Herbert Xu4c5ff6a2010-05-18 15:54:18 -0700906 spin_unlock_bh(&ifp->state_lock);
907
908 if (state == INET6_IFADDR_STATE_DEAD)
909 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910
stephen hemminger5c578ae2010-03-17 20:31:11 +0000911 spin_lock_bh(&addrconf_hash_lock);
912 hlist_del_init_rcu(&ifp->addr_lst);
stephen hemminger5c578ae2010-03-17 20:31:11 +0000913 spin_unlock_bh(&addrconf_hash_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914
915 write_lock_bh(&idev->lock);
916#ifdef CONFIG_IPV6_PRIVACY
917 if (ifp->flags&IFA_F_TEMPORARY) {
stephen hemminger372e6c82010-03-17 20:31:09 +0000918 list_del(&ifp->tmp_list);
919 if (ifp->ifpub) {
920 in6_ifa_put(ifp->ifpub);
921 ifp->ifpub = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922 }
stephen hemminger372e6c82010-03-17 20:31:09 +0000923 __in6_ifa_put(ifp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700924 }
925#endif
926
stephen hemminger502a2ff2010-03-17 20:31:13 +0000927 list_for_each_entry_safe(ifa, ifn, &idev->addr_list, if_list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928 if (ifa == ifp) {
stephen hemminger502a2ff2010-03-17 20:31:13 +0000929 list_del_init(&ifp->if_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930 __in6_ifa_put(ifp);
stephen hemminger502a2ff2010-03-17 20:31:13 +0000931
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932 if (!(ifp->flags & IFA_F_PERMANENT) || onlink > 0)
933 break;
934 deleted = 1;
Kristian Slavov1d142802005-12-21 18:47:24 -0800935 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936 } else if (ifp->flags & IFA_F_PERMANENT) {
937 if (ipv6_prefix_equal(&ifa->addr, &ifp->addr,
938 ifp->prefix_len)) {
939 if (ifa->flags & IFA_F_PERMANENT) {
940 onlink = 1;
941 if (deleted)
942 break;
943 } else {
944 unsigned long lifetime;
945
946 if (!onlink)
947 onlink = -1;
948
949 spin_lock(&ifa->lock);
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +0900950
951 lifetime = addrconf_timeout_fixup(ifa->valid_lft, HZ);
952 /*
953 * Note: Because this address is
954 * not permanent, lifetime <
955 * LONG_MAX / HZ here.
956 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700957 if (time_before(expires,
958 ifa->tstamp + lifetime * HZ))
959 expires = ifa->tstamp + lifetime * HZ;
960 spin_unlock(&ifa->lock);
961 }
962 }
963 }
964 }
965 write_unlock_bh(&idev->lock);
966
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +0200967 addrconf_del_dad_timer(ifp);
Andrey Vaginb2238562008-07-08 15:13:31 -0700968
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969 ipv6_ifa_notify(RTM_DELADDR, ifp);
970
Cong Wangf88c91d2013-04-14 23:18:43 +0800971 inet6addr_notifier_call_chain(NETDEV_DOWN, ifp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973 /*
974 * Purge or update corresponding prefix
975 *
976 * 1) we don't purge prefix here if address was not permanent.
977 * prefix is managed by its own lifetime.
978 * 2) if there're no addresses, delete prefix.
979 * 3) if there're still other permanent address(es),
980 * corresponding prefix is still permanent.
981 * 4) otherwise, update prefix lifetime to the
982 * longest valid lifetime among the corresponding
983 * addresses on the device.
984 * Note: subsequent RA will update lifetime.
985 *
986 * --yoshfuji
987 */
988 if ((ifp->flags & IFA_F_PERMANENT) && onlink < 1) {
989 struct in6_addr prefix;
990 struct rt6_info *rt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700991
Nicolas Dichtel64c6d082012-09-26 00:04:55 +0000992 ipv6_addr_prefix(&prefix, &ifp->addr, ifp->prefix_len);
Nicolas Dichtel64c6d082012-09-26 00:04:55 +0000993
Romain Kuntz21caa662013-01-09 21:06:03 +0000994 rt = addrconf_get_prefix_route(&prefix,
995 ifp->prefix_len,
996 ifp->idev->dev,
997 0, RTF_GATEWAY | RTF_DEFAULT);
998
999 if (rt) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000 if (onlink == 0) {
Thomas Grafe0a1ad732006-08-22 00:00:21 -07001001 ip6_del_rt(rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001002 rt = NULL;
1003 } else if (!(rt->rt6i_flags & RTF_EXPIRES)) {
Gao feng1716a962012-04-06 00:13:10 +00001004 rt6_set_expires(rt, expires);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001005 }
1006 }
Amerigo Wang94e187c2012-10-29 00:13:19 +00001007 ip6_rt_put(rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001008 }
1009
Daniel Walterc3968a82011-04-13 21:10:57 +00001010 /* clean up prefsrc entries */
1011 rt6_remove_prefsrc(ifp);
Herbert Xu4c5ff6a2010-05-18 15:54:18 -07001012out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013 in6_ifa_put(ifp);
1014}
1015
1016#ifdef CONFIG_IPV6_PRIVACY
1017static int ipv6_create_tempaddr(struct inet6_ifaddr *ifp, struct inet6_ifaddr *ift)
1018{
1019 struct inet6_dev *idev = ifp->idev;
1020 struct in6_addr addr, *tmpaddr;
Lorenzo Colitti76f793e2011-07-26 13:50:49 +00001021 unsigned long tmp_prefered_lft, tmp_valid_lft, tmp_tstamp, age;
Benoit Boissinoteac55bf2008-04-02 00:01:35 -07001022 unsigned long regen_advance;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001023 int tmp_plen;
1024 int ret = 0;
Neil Horman95c385b2007-04-25 17:08:10 -07001025 u32 addr_flags;
Lorenzo Colitti76f793e2011-07-26 13:50:49 +00001026 unsigned long now = jiffies;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001027
1028 write_lock(&idev->lock);
1029 if (ift) {
1030 spin_lock_bh(&ift->lock);
1031 memcpy(&addr.s6_addr[8], &ift->addr.s6_addr[8], 8);
1032 spin_unlock_bh(&ift->lock);
1033 tmpaddr = &addr;
1034 } else {
1035 tmpaddr = NULL;
1036 }
1037retry:
1038 in6_dev_hold(idev);
1039 if (idev->cnf.use_tempaddr <= 0) {
1040 write_unlock(&idev->lock);
Joe Perchesf3213832012-05-15 14:11:53 +00001041 pr_info("%s: use_tempaddr is disabled\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042 in6_dev_put(idev);
1043 ret = -1;
1044 goto out;
1045 }
1046 spin_lock_bh(&ifp->lock);
1047 if (ifp->regen_count++ >= idev->cnf.regen_max_retry) {
1048 idev->cnf.use_tempaddr = -1; /*XXX*/
1049 spin_unlock_bh(&ifp->lock);
1050 write_unlock(&idev->lock);
Joe Perchesf3213832012-05-15 14:11:53 +00001051 pr_warn("%s: regeneration time exceeded - disabled temporary address support\n",
1052 __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001053 in6_dev_put(idev);
1054 ret = -1;
1055 goto out;
1056 }
1057 in6_ifa_hold(ifp);
1058 memcpy(addr.s6_addr, ifp->addr.s6_addr, 8);
Sorin Dumitrueb7e0572012-08-30 02:01:45 +00001059 __ipv6_try_regen_rndid(idev, tmpaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001060 memcpy(&addr.s6_addr[8], idev->rndid, 8);
Lorenzo Colitti76f793e2011-07-26 13:50:49 +00001061 age = (now - ifp->tstamp) / HZ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001062 tmp_valid_lft = min_t(__u32,
1063 ifp->valid_lft,
Glenn Wurster7a876b02010-09-27 07:10:10 +00001064 idev->cnf.temp_valid_lft + age);
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001065 tmp_prefered_lft = min_t(__u32,
1066 ifp->prefered_lft,
Glenn Wurster7a876b02010-09-27 07:10:10 +00001067 idev->cnf.temp_prefered_lft + age -
Ben Hutchings784e2712010-06-26 11:42:55 +00001068 idev->cnf.max_desync_factor);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001069 tmp_plen = ifp->prefix_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001070 tmp_tstamp = ifp->tstamp;
1071 spin_unlock_bh(&ifp->lock);
1072
Benoit Boissinoteac55bf2008-04-02 00:01:35 -07001073 regen_advance = idev->cnf.regen_max_retry *
David S. Miller7eaa48a2013-08-20 23:44:39 -07001074 idev->cnf.dad_transmits *
1075 idev->nd_parms->retrans_time / HZ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076 write_unlock(&idev->lock);
Neil Horman95c385b2007-04-25 17:08:10 -07001077
Benoit Boissinoteac55bf2008-04-02 00:01:35 -07001078 /* A temporary address is created only if this calculated Preferred
1079 * Lifetime is greater than REGEN_ADVANCE time units. In particular,
1080 * an implementation must not create a temporary address with a zero
1081 * Preferred Lifetime.
1082 */
1083 if (tmp_prefered_lft <= regen_advance) {
1084 in6_ifa_put(ifp);
1085 in6_dev_put(idev);
1086 ret = -1;
1087 goto out;
1088 }
1089
Neil Horman95c385b2007-04-25 17:08:10 -07001090 addr_flags = IFA_F_TEMPORARY;
1091 /* set in addrconf_prefix_rcv() */
1092 if (ifp->flags & IFA_F_OPTIMISTIC)
1093 addr_flags |= IFA_F_OPTIMISTIC;
1094
Hannes Frederic Sowa4b08a8f2013-08-16 13:02:27 +02001095 ift = ipv6_add_addr(idev, &addr, NULL, tmp_plen,
1096 ipv6_addr_scope(&addr), addr_flags,
1097 tmp_valid_lft, tmp_prefered_lft);
1098 if (IS_ERR(ift)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001099 in6_ifa_put(ifp);
1100 in6_dev_put(idev);
Joe Perchesf3213832012-05-15 14:11:53 +00001101 pr_info("%s: retry temporary address regeneration\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001102 tmpaddr = &addr;
1103 write_lock(&idev->lock);
1104 goto retry;
1105 }
1106
1107 spin_lock_bh(&ift->lock);
1108 ift->ifpub = ifp;
Lorenzo Colitti76f793e2011-07-26 13:50:49 +00001109 ift->cstamp = now;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001110 ift->tstamp = tmp_tstamp;
1111 spin_unlock_bh(&ift->lock);
1112
David S. Millercf22f9a2012-04-14 21:37:40 -04001113 addrconf_dad_start(ift);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001114 in6_ifa_put(ift);
1115 in6_dev_put(idev);
1116out:
1117 return ret;
1118}
1119#endif
1120
1121/*
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001122 * Choose an appropriate source address (RFC3484)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001123 */
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001124enum {
1125 IPV6_SADDR_RULE_INIT = 0,
1126 IPV6_SADDR_RULE_LOCAL,
1127 IPV6_SADDR_RULE_SCOPE,
1128 IPV6_SADDR_RULE_PREFERRED,
1129#ifdef CONFIG_IPV6_MIP6
1130 IPV6_SADDR_RULE_HOA,
1131#endif
1132 IPV6_SADDR_RULE_OIF,
1133 IPV6_SADDR_RULE_LABEL,
1134#ifdef CONFIG_IPV6_PRIVACY
1135 IPV6_SADDR_RULE_PRIVACY,
1136#endif
1137 IPV6_SADDR_RULE_ORCHID,
1138 IPV6_SADDR_RULE_PREFIX,
1139 IPV6_SADDR_RULE_MAX
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001140};
1141
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001142struct ipv6_saddr_score {
1143 int rule;
1144 int addr_type;
1145 struct inet6_ifaddr *ifa;
1146 DECLARE_BITMAP(scorebits, IPV6_SADDR_RULE_MAX);
1147 int scopedist;
1148 int matchlen;
1149};
1150
1151struct ipv6_saddr_dst {
YOSHIFUJI Hideaki9acd9f32008-04-10 15:42:10 +09001152 const struct in6_addr *addr;
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001153 int ifindex;
1154 int scope;
1155 int label;
YOSHIFUJI Hideaki7cbca672008-03-25 09:37:42 +09001156 unsigned int prefs;
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001157};
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001158
Dave Jonesb6f99a22007-03-22 12:27:49 -07001159static inline int ipv6_saddr_preferred(int type)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001160{
Ulrich Weber45bb0062010-02-25 23:28:58 +00001161 if (type & (IPV6_ADDR_MAPPED|IPV6_ADDR_COMPATv4|IPV6_ADDR_LOOPBACK))
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001162 return 1;
1163 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001164}
1165
Benjamin Thery3de23252008-05-28 14:51:24 +02001166static int ipv6_get_saddr_eval(struct net *net,
1167 struct ipv6_saddr_score *score,
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001168 struct ipv6_saddr_dst *dst,
1169 int i)
1170{
1171 int ret;
1172
1173 if (i <= score->rule) {
1174 switch (i) {
1175 case IPV6_SADDR_RULE_SCOPE:
1176 ret = score->scopedist;
1177 break;
1178 case IPV6_SADDR_RULE_PREFIX:
1179 ret = score->matchlen;
1180 break;
1181 default:
1182 ret = !!test_bit(i, score->scorebits);
1183 }
1184 goto out;
1185 }
1186
1187 switch (i) {
1188 case IPV6_SADDR_RULE_INIT:
1189 /* Rule 0: remember if hiscore is not ready yet */
1190 ret = !!score->ifa;
1191 break;
1192 case IPV6_SADDR_RULE_LOCAL:
1193 /* Rule 1: Prefer same address */
1194 ret = ipv6_addr_equal(&score->ifa->addr, dst->addr);
1195 break;
1196 case IPV6_SADDR_RULE_SCOPE:
1197 /* Rule 2: Prefer appropriate scope
1198 *
1199 * ret
1200 * ^
1201 * -1 | d 15
1202 * ---+--+-+---> scope
1203 * |
1204 * | d is scope of the destination.
1205 * B-d | \
1206 * | \ <- smaller scope is better if
1207 * B-15 | \ if scope is enough for destinaion.
1208 * | ret = B - scope (-1 <= scope >= d <= 15).
1209 * d-C-1 | /
1210 * |/ <- greater is better
1211 * -C / if scope is not enough for destination.
1212 * /| ret = scope - C (-1 <= d < scope <= 15).
1213 *
1214 * d - C - 1 < B -15 (for all -1 <= d <= 15).
1215 * C > d + 14 - B >= 15 + 14 - B = 29 - B.
1216 * Assume B = 0 and we get C > 29.
1217 */
1218 ret = __ipv6_addr_src_scope(score->addr_type);
1219 if (ret >= dst->scope)
1220 ret = -ret;
1221 else
1222 ret -= 128; /* 30 is enough */
1223 score->scopedist = ret;
1224 break;
1225 case IPV6_SADDR_RULE_PREFERRED:
1226 /* Rule 3: Avoid deprecated and optimistic addresses */
1227 ret = ipv6_saddr_preferred(score->addr_type) ||
1228 !(score->ifa->flags & (IFA_F_DEPRECATED|IFA_F_OPTIMISTIC));
1229 break;
1230#ifdef CONFIG_IPV6_MIP6
1231 case IPV6_SADDR_RULE_HOA:
YOSHIFUJI Hideaki7cbca672008-03-25 09:37:42 +09001232 {
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001233 /* Rule 4: Prefer home address */
YOSHIFUJI Hideaki7cbca672008-03-25 09:37:42 +09001234 int prefhome = !(dst->prefs & IPV6_PREFER_SRC_COA);
1235 ret = !(score->ifa->flags & IFA_F_HOMEADDRESS) ^ prefhome;
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001236 break;
YOSHIFUJI Hideaki7cbca672008-03-25 09:37:42 +09001237 }
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001238#endif
1239 case IPV6_SADDR_RULE_OIF:
1240 /* Rule 5: Prefer outgoing interface */
1241 ret = (!dst->ifindex ||
1242 dst->ifindex == score->ifa->idev->dev->ifindex);
1243 break;
1244 case IPV6_SADDR_RULE_LABEL:
1245 /* Rule 6: Prefer matching label */
Benjamin Thery3de23252008-05-28 14:51:24 +02001246 ret = ipv6_addr_label(net,
1247 &score->ifa->addr, score->addr_type,
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001248 score->ifa->idev->dev->ifindex) == dst->label;
1249 break;
1250#ifdef CONFIG_IPV6_PRIVACY
1251 case IPV6_SADDR_RULE_PRIVACY:
YOSHIFUJI Hideaki7cbca672008-03-25 09:37:42 +09001252 {
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001253 /* Rule 7: Prefer public address
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001254 * Note: prefer temporary address if use_tempaddr >= 2
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001255 */
YOSHIFUJI Hideaki7cbca672008-03-25 09:37:42 +09001256 int preftmp = dst->prefs & (IPV6_PREFER_SRC_PUBLIC|IPV6_PREFER_SRC_TMP) ?
1257 !!(dst->prefs & IPV6_PREFER_SRC_TMP) :
1258 score->ifa->idev->cnf.use_tempaddr >= 2;
1259 ret = (!(score->ifa->flags & IFA_F_TEMPORARY)) ^ preftmp;
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001260 break;
YOSHIFUJI Hideaki7cbca672008-03-25 09:37:42 +09001261 }
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001262#endif
1263 case IPV6_SADDR_RULE_ORCHID:
1264 /* Rule 8-: Prefer ORCHID vs ORCHID or
1265 * non-ORCHID vs non-ORCHID
1266 */
1267 ret = !(ipv6_addr_orchid(&score->ifa->addr) ^
1268 ipv6_addr_orchid(dst->addr));
1269 break;
1270 case IPV6_SADDR_RULE_PREFIX:
1271 /* Rule 8: Use longest matching prefix */
YOSHIFUJI Hideaki / 吉藤英明91b4b042012-09-10 18:41:07 +00001272 ret = ipv6_addr_diff(&score->ifa->addr, dst->addr);
1273 if (ret > score->ifa->prefix_len)
1274 ret = score->ifa->prefix_len;
1275 score->matchlen = ret;
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001276 break;
1277 default:
1278 ret = 0;
1279 }
1280
1281 if (ret)
1282 __set_bit(i, score->scorebits);
1283 score->rule = i;
1284out:
1285 return ret;
1286}
1287
Patrick McHardyb3f644f2012-08-26 19:14:14 +02001288int ipv6_dev_get_saddr(struct net *net, const struct net_device *dst_dev,
YOSHIFUJI Hideaki9acd9f32008-04-10 15:42:10 +09001289 const struct in6_addr *daddr, unsigned int prefs,
YOSHIFUJI Hideaki7cbca672008-03-25 09:37:42 +09001290 struct in6_addr *saddr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001291{
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001292 struct ipv6_saddr_score scores[2],
1293 *score = &scores[0], *hiscore = &scores[1];
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001294 struct ipv6_saddr_dst dst;
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001295 struct net_device *dev;
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001296 int dst_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001297
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001298 dst_type = __ipv6_addr_type(daddr);
1299 dst.addr = daddr;
1300 dst.ifindex = dst_dev ? dst_dev->ifindex : 0;
1301 dst.scope = __ipv6_addr_src_scope(dst_type);
Benjamin Thery3de23252008-05-28 14:51:24 +02001302 dst.label = ipv6_addr_label(net, daddr, dst_type, dst.ifindex);
YOSHIFUJI Hideaki7cbca672008-03-25 09:37:42 +09001303 dst.prefs = prefs;
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001304
1305 hiscore->rule = -1;
1306 hiscore->ifa = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001307
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -07001308 rcu_read_lock();
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001309
Eric Dumazetc6d14c82009-11-04 05:43:23 -08001310 for_each_netdev_rcu(net, dev) {
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001311 struct inet6_dev *idev;
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001312
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001313 /* Candidate Source Address (section 4)
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001314 * - multicast and link-local destination address,
1315 * the set of candidate source address MUST only
1316 * include addresses assigned to interfaces
1317 * belonging to the same link as the outgoing
1318 * interface.
1319 * (- For site-local destination addresses, the
1320 * set of candidate source addresses MUST only
1321 * include addresses assigned to interfaces
1322 * belonging to the same site as the outgoing
1323 * interface.)
1324 */
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001325 if (((dst_type & IPV6_ADDR_MULTICAST) ||
1326 dst.scope <= IPV6_ADDR_SCOPE_LINKLOCAL) &&
1327 dst.ifindex && dev->ifindex != dst.ifindex)
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001328 continue;
1329
Linus Torvalds1da177e2005-04-16 15:20:36 -07001330 idev = __in6_dev_get(dev);
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001331 if (!idev)
1332 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001333
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001334 read_lock_bh(&idev->lock);
stephen hemminger502a2ff2010-03-17 20:31:13 +00001335 list_for_each_entry(score->ifa, &idev->addr_list, if_list) {
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001336 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001337
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001338 /*
YOSHIFUJI Hideaki6b3ae802005-12-21 22:58:01 +09001339 * - Tentative Address (RFC2462 section 5.4)
1340 * - A tentative address is not considered
1341 * "assigned to an interface" in the traditional
Neil Horman95c385b2007-04-25 17:08:10 -07001342 * sense, unless it is also flagged as optimistic.
YOSHIFUJI Hideaki6b3ae802005-12-21 22:58:01 +09001343 * - Candidate Source Address (section 4)
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001344 * - In any case, anycast addresses, multicast
1345 * addresses, and the unspecified address MUST
1346 * NOT be included in a candidate set.
1347 */
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001348 if ((score->ifa->flags & IFA_F_TENTATIVE) &&
1349 (!(score->ifa->flags & IFA_F_OPTIMISTIC)))
YOSHIFUJI Hideaki6b3ae802005-12-21 22:58:01 +09001350 continue;
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001351
1352 score->addr_type = __ipv6_addr_type(&score->ifa->addr);
1353
1354 if (unlikely(score->addr_type == IPV6_ADDR_ANY ||
1355 score->addr_type & IPV6_ADDR_MULTICAST)) {
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001356 LIMIT_NETDEBUG(KERN_DEBUG
Joe Perches3b6d8212007-11-19 23:47:25 -08001357 "ADDRCONF: unspecified / multicast address "
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001358 "assigned as unicast address on %s",
1359 dev->name);
1360 continue;
1361 }
1362
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001363 score->rule = -1;
1364 bitmap_zero(score->scorebits, IPV6_SADDR_RULE_MAX);
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001365
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001366 for (i = 0; i < IPV6_SADDR_RULE_MAX; i++) {
1367 int minihiscore, miniscore;
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001368
Benjamin Thery3de23252008-05-28 14:51:24 +02001369 minihiscore = ipv6_get_saddr_eval(net, hiscore, &dst, i);
1370 miniscore = ipv6_get_saddr_eval(net, score, &dst, i);
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001371
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001372 if (minihiscore > miniscore) {
1373 if (i == IPV6_SADDR_RULE_SCOPE &&
1374 score->scopedist > 0) {
1375 /*
1376 * special case:
1377 * each remaining entry
1378 * has too small (not enough)
1379 * scope, because ifa entries
1380 * are sorted by their scope
1381 * values.
1382 */
1383 goto try_nextdev;
1384 }
1385 break;
1386 } else if (minihiscore < miniscore) {
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001387 if (hiscore->ifa)
1388 in6_ifa_put(hiscore->ifa);
1389
1390 in6_ifa_hold(score->ifa);
1391
Ilpo Järvinena0bffff2009-03-21 13:36:17 -07001392 swap(hiscore, score);
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001393
1394 /* restore our iterator */
1395 score->ifa = hiscore->ifa;
1396
1397 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001398 }
1399 }
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001400 }
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001401try_nextdev:
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001402 read_unlock_bh(&idev->lock);
1403 }
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -07001404 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001405
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001406 if (!hiscore->ifa)
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001407 return -EADDRNOTAVAIL;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001408
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00001409 *saddr = hiscore->ifa->addr;
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001410 in6_ifa_put(hiscore->ifa);
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001411 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001412}
YOSHIFUJI Hideaki5e5f3f02008-03-03 21:44:34 +09001413EXPORT_SYMBOL(ipv6_dev_get_saddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001414
Amerigo Wang89657792013-06-29 21:30:49 +08001415int __ipv6_get_lladdr(struct inet6_dev *idev, struct in6_addr *addr,
1416 unsigned char banned_flags)
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02001417{
1418 struct inet6_ifaddr *ifp;
1419 int err = -EADDRNOTAVAIL;
1420
1421 list_for_each_entry(ifp, &idev->addr_list, if_list) {
1422 if (ifp->scope == IFA_LINK &&
1423 !(ifp->flags & banned_flags)) {
1424 *addr = ifp->addr;
1425 err = 0;
1426 break;
1427 }
1428 }
1429 return err;
1430}
1431
Neil Horman95c385b2007-04-25 17:08:10 -07001432int ipv6_get_lladdr(struct net_device *dev, struct in6_addr *addr,
1433 unsigned char banned_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001434{
1435 struct inet6_dev *idev;
1436 int err = -EADDRNOTAVAIL;
1437
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -07001438 rcu_read_lock();
Stephen Hemmingere21e8462010-03-20 16:09:01 -07001439 idev = __in6_dev_get(dev);
1440 if (idev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001441 read_lock_bh(&idev->lock);
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02001442 err = __ipv6_get_lladdr(idev, addr, banned_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001443 read_unlock_bh(&idev->lock);
1444 }
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -07001445 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001446 return err;
1447}
1448
1449static int ipv6_count_addresses(struct inet6_dev *idev)
1450{
1451 int cnt = 0;
1452 struct inet6_ifaddr *ifp;
1453
1454 read_lock_bh(&idev->lock);
stephen hemminger502a2ff2010-03-17 20:31:13 +00001455 list_for_each_entry(ifp, &idev->addr_list, if_list)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001456 cnt++;
1457 read_unlock_bh(&idev->lock);
1458 return cnt;
1459}
1460
Eric Dumazetb71d1d42011-04-22 04:53:02 +00001461int ipv6_chk_addr(struct net *net, const struct in6_addr *addr,
Florian Westphal2a7851b2013-05-17 03:56:10 +00001462 const struct net_device *dev, int strict)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001463{
Stephen Hemmingereedf0422010-05-17 22:27:12 -07001464 struct inet6_ifaddr *ifp;
Eric Dumazetddbe5032012-07-18 08:11:12 +00001465 unsigned int hash = inet6_addr_hash(addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001466
stephen hemminger5c578ae2010-03-17 20:31:11 +00001467 rcu_read_lock_bh();
Sasha Levinb67bfe02013-02-27 17:06:00 -08001468 hlist_for_each_entry_rcu(ifp, &inet6_addr_lst[hash], addr_lst) {
YOSHIFUJI Hideaki878628f2008-03-26 03:57:35 +09001469 if (!net_eq(dev_net(ifp->idev->dev), net))
Daniel Lezcanobfeade02008-01-10 22:43:18 -08001470 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001471 if (ipv6_addr_equal(&ifp->addr, addr) &&
Stephen Hemmingereedf0422010-05-17 22:27:12 -07001472 !(ifp->flags&IFA_F_TENTATIVE) &&
1473 (dev == NULL || ifp->idev->dev == dev ||
1474 !(ifp->scope&(IFA_LINK|IFA_HOST) || strict))) {
1475 rcu_read_unlock_bh();
1476 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001477 }
1478 }
stephen hemminger5c578ae2010-03-17 20:31:11 +00001479
Stephen Hemmingereedf0422010-05-17 22:27:12 -07001480 rcu_read_unlock_bh();
1481 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001482}
YOSHIFUJI Hideaki71590392007-02-22 22:05:40 +09001483EXPORT_SYMBOL(ipv6_chk_addr);
1484
David S. Miller3e81c6d2010-03-20 16:18:00 -07001485static bool ipv6_chk_same_addr(struct net *net, const struct in6_addr *addr,
1486 struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001487{
Eric Dumazetddbe5032012-07-18 08:11:12 +00001488 unsigned int hash = inet6_addr_hash(addr);
stephen hemmingerc2e21292010-03-17 20:31:10 +00001489 struct inet6_ifaddr *ifp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001490
Sasha Levinb67bfe02013-02-27 17:06:00 -08001491 hlist_for_each_entry(ifp, &inet6_addr_lst[hash], addr_lst) {
YOSHIFUJI Hideaki878628f2008-03-26 03:57:35 +09001492 if (!net_eq(dev_net(ifp->idev->dev), net))
Daniel Lezcano06bfe652008-01-10 22:43:42 -08001493 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001494 if (ipv6_addr_equal(&ifp->addr, addr)) {
1495 if (dev == NULL || ifp->idev->dev == dev)
David S. Miller3e81c6d2010-03-20 16:18:00 -07001496 return true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001497 }
1498 }
David S. Miller3e81c6d2010-03-20 16:18:00 -07001499 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001500}
1501
Catalin\(ux\) M. BOIE7df37ff2013-09-23 23:04:19 +03001502/* Compares an address/prefix_len with addresses on device @dev.
1503 * If one is found it returns true.
1504 */
1505bool ipv6_chk_custom_prefix(const struct in6_addr *addr,
1506 const unsigned int prefix_len, struct net_device *dev)
1507{
1508 struct inet6_dev *idev;
1509 struct inet6_ifaddr *ifa;
1510 bool ret = false;
1511
1512 rcu_read_lock();
1513 idev = __in6_dev_get(dev);
1514 if (idev) {
1515 read_lock_bh(&idev->lock);
1516 list_for_each_entry(ifa, &idev->addr_list, if_list) {
1517 ret = ipv6_prefix_equal(addr, &ifa->addr, prefix_len);
1518 if (ret)
1519 break;
1520 }
1521 read_unlock_bh(&idev->lock);
1522 }
1523 rcu_read_unlock();
1524
1525 return ret;
1526}
1527EXPORT_SYMBOL(ipv6_chk_custom_prefix);
1528
Eric Dumazetb71d1d42011-04-22 04:53:02 +00001529int ipv6_chk_prefix(const struct in6_addr *addr, struct net_device *dev)
YOSHIFUJI Hideaki52eeeb82008-03-15 22:54:23 -04001530{
1531 struct inet6_dev *idev;
1532 struct inet6_ifaddr *ifa;
1533 int onlink;
1534
1535 onlink = 0;
1536 rcu_read_lock();
1537 idev = __in6_dev_get(dev);
1538 if (idev) {
1539 read_lock_bh(&idev->lock);
stephen hemminger502a2ff2010-03-17 20:31:13 +00001540 list_for_each_entry(ifa, &idev->addr_list, if_list) {
YOSHIFUJI Hideaki52eeeb82008-03-15 22:54:23 -04001541 onlink = ipv6_prefix_equal(addr, &ifa->addr,
1542 ifa->prefix_len);
1543 if (onlink)
1544 break;
1545 }
1546 read_unlock_bh(&idev->lock);
1547 }
1548 rcu_read_unlock();
1549 return onlink;
1550}
YOSHIFUJI Hideaki52eeeb82008-03-15 22:54:23 -04001551EXPORT_SYMBOL(ipv6_chk_prefix);
1552
YOSHIFUJI Hideaki9acd9f32008-04-10 15:42:10 +09001553struct inet6_ifaddr *ipv6_get_ifaddr(struct net *net, const struct in6_addr *addr,
Daniel Lezcano1cab3da2008-01-10 22:44:09 -08001554 struct net_device *dev, int strict)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001555{
David S. Millerb79d1d52010-03-25 21:39:21 -07001556 struct inet6_ifaddr *ifp, *result = NULL;
Eric Dumazetddbe5032012-07-18 08:11:12 +00001557 unsigned int hash = inet6_addr_hash(addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001558
stephen hemminger5c578ae2010-03-17 20:31:11 +00001559 rcu_read_lock_bh();
Sasha Levinb67bfe02013-02-27 17:06:00 -08001560 hlist_for_each_entry_rcu_bh(ifp, &inet6_addr_lst[hash], addr_lst) {
YOSHIFUJI Hideaki878628f2008-03-26 03:57:35 +09001561 if (!net_eq(dev_net(ifp->idev->dev), net))
Daniel Lezcano1cab3da2008-01-10 22:44:09 -08001562 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001563 if (ipv6_addr_equal(&ifp->addr, addr)) {
1564 if (dev == NULL || ifp->idev->dev == dev ||
1565 !(ifp->scope&(IFA_LINK|IFA_HOST) || strict)) {
David S. Millerb79d1d52010-03-25 21:39:21 -07001566 result = ifp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001567 in6_ifa_hold(ifp);
1568 break;
1569 }
1570 }
1571 }
stephen hemminger5c578ae2010-03-17 20:31:11 +00001572 rcu_read_unlock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001573
David S. Millerb79d1d52010-03-25 21:39:21 -07001574 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001575}
1576
Linus Torvalds1da177e2005-04-16 15:20:36 -07001577/* Gets referenced address, destroys ifaddr */
1578
Brian Haleycc411d02009-09-09 14:41:32 +00001579static void addrconf_dad_stop(struct inet6_ifaddr *ifp, int dad_failed)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001580{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001581 if (ifp->flags&IFA_F_PERMANENT) {
1582 spin_lock_bh(&ifp->lock);
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02001583 addrconf_del_dad_timer(ifp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001584 ifp->flags |= IFA_F_TENTATIVE;
Brian Haleycc411d02009-09-09 14:41:32 +00001585 if (dad_failed)
1586 ifp->flags |= IFA_F_DADFAILED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001587 spin_unlock_bh(&ifp->lock);
Herbert Xue2577a02010-03-13 12:23:29 -08001588 if (dad_failed)
1589 ipv6_ifa_notify(0, ifp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001590 in6_ifa_put(ifp);
1591#ifdef CONFIG_IPV6_PRIVACY
1592 } else if (ifp->flags&IFA_F_TEMPORARY) {
1593 struct inet6_ifaddr *ifpub;
1594 spin_lock_bh(&ifp->lock);
1595 ifpub = ifp->ifpub;
1596 if (ifpub) {
1597 in6_ifa_hold(ifpub);
1598 spin_unlock_bh(&ifp->lock);
1599 ipv6_create_tempaddr(ifpub, ifp);
1600 in6_ifa_put(ifpub);
1601 } else {
1602 spin_unlock_bh(&ifp->lock);
1603 }
1604 ipv6_del_addr(ifp);
1605#endif
1606 } else
1607 ipv6_del_addr(ifp);
1608}
1609
Herbert Xuf2344a12010-05-18 15:55:27 -07001610static int addrconf_dad_end(struct inet6_ifaddr *ifp)
1611{
1612 int err = -ENOENT;
1613
1614 spin_lock(&ifp->state_lock);
1615 if (ifp->state == INET6_IFADDR_STATE_DAD) {
1616 ifp->state = INET6_IFADDR_STATE_POSTDAD;
1617 err = 0;
1618 }
1619 spin_unlock(&ifp->state_lock);
1620
1621 return err;
1622}
1623
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09001624void addrconf_dad_failure(struct inet6_ifaddr *ifp)
1625{
YOSHIFUJI Hideaki1b34be72008-06-28 14:18:38 +09001626 struct inet6_dev *idev = ifp->idev;
Brian Haley9bdd8d42009-03-18 18:22:48 -07001627
Ursula Braun853dc2e2010-10-24 23:06:43 +00001628 if (addrconf_dad_end(ifp)) {
1629 in6_ifa_put(ifp);
Herbert Xuf2344a12010-05-18 15:55:27 -07001630 return;
Ursula Braun853dc2e2010-10-24 23:06:43 +00001631 }
Herbert Xuf2344a12010-05-18 15:55:27 -07001632
Joe Perchese87cc472012-05-13 21:56:26 +00001633 net_info_ratelimited("%s: IPv6 duplicate address %pI6c detected!\n",
1634 ifp->idev->dev->name, &ifp->addr);
Brian Haley9bdd8d42009-03-18 18:22:48 -07001635
YOSHIFUJI Hideaki1b34be72008-06-28 14:18:38 +09001636 if (idev->cnf.accept_dad > 1 && !idev->cnf.disable_ipv6) {
1637 struct in6_addr addr;
1638
1639 addr.s6_addr32[0] = htonl(0xfe800000);
1640 addr.s6_addr32[1] = 0;
1641
1642 if (!ipv6_generate_eui64(addr.s6_addr + 8, idev->dev) &&
1643 ipv6_addr_equal(&ifp->addr, &addr)) {
1644 /* DAD failed for link-local based on MAC address */
1645 idev->cnf.disable_ipv6 = 1;
Brian Haley9bdd8d42009-03-18 18:22:48 -07001646
Joe Perchesf3213832012-05-15 14:11:53 +00001647 pr_info("%s: IPv6 being disabled!\n",
Brian Haley9bdd8d42009-03-18 18:22:48 -07001648 ifp->idev->dev->name);
YOSHIFUJI Hideaki1b34be72008-06-28 14:18:38 +09001649 }
1650 }
1651
Brian Haleycc411d02009-09-09 14:41:32 +00001652 addrconf_dad_stop(ifp, 1);
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09001653}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001654
1655/* Join to solicited addr multicast group. */
1656
Eric Dumazetb71d1d42011-04-22 04:53:02 +00001657void addrconf_join_solict(struct net_device *dev, const struct in6_addr *addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001658{
1659 struct in6_addr maddr;
1660
1661 if (dev->flags&(IFF_LOOPBACK|IFF_NOARP))
1662 return;
1663
1664 addrconf_addr_solict_mult(addr, &maddr);
1665 ipv6_dev_mc_inc(dev, &maddr);
1666}
1667
Eric Dumazetb71d1d42011-04-22 04:53:02 +00001668void addrconf_leave_solict(struct inet6_dev *idev, const struct in6_addr *addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001669{
1670 struct in6_addr maddr;
1671
1672 if (idev->dev->flags&(IFF_LOOPBACK|IFF_NOARP))
1673 return;
1674
1675 addrconf_addr_solict_mult(addr, &maddr);
1676 __ipv6_dev_mc_dec(idev, &maddr);
1677}
1678
Arnaldo Carvalho de Melo20380732005-08-16 02:18:02 -03001679static void addrconf_join_anycast(struct inet6_ifaddr *ifp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001680{
1681 struct in6_addr addr;
Bjørn Mork2bda8a02011-07-05 23:04:13 +00001682 if (ifp->prefix_len == 127) /* RFC 6164 */
1683 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001684 ipv6_addr_prefix(&addr, &ifp->addr, ifp->prefix_len);
1685 if (ipv6_addr_any(&addr))
1686 return;
1687 ipv6_dev_ac_inc(ifp->idev->dev, &addr);
1688}
1689
Arnaldo Carvalho de Melo20380732005-08-16 02:18:02 -03001690static void addrconf_leave_anycast(struct inet6_ifaddr *ifp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001691{
1692 struct in6_addr addr;
YOSHIFUJI Hideaki32019e62011-07-24 11:44:34 +00001693 if (ifp->prefix_len == 127) /* RFC 6164 */
1694 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001695 ipv6_addr_prefix(&addr, &ifp->addr, ifp->prefix_len);
1696 if (ipv6_addr_any(&addr))
1697 return;
1698 __ipv6_dev_ac_dec(ifp->idev, &addr);
1699}
1700
YOSHIFUJI Hideaki073a8e02006-03-20 16:54:49 -08001701static int addrconf_ifid_eui48(u8 *eui, struct net_device *dev)
1702{
1703 if (dev->addr_len != ETH_ALEN)
1704 return -1;
1705 memcpy(eui, dev->dev_addr, 3);
1706 memcpy(eui + 5, dev->dev_addr + 3, 3);
1707
1708 /*
1709 * The zSeries OSA network cards can be shared among various
1710 * OS instances, but the OSA cards have only one MAC address.
1711 * This leads to duplicate address conflicts in conjunction
1712 * with IPv6 if more than one instance uses the same card.
1713 *
1714 * The driver for these cards can deliver a unique 16-bit
1715 * identifier for each instance sharing the same card. It is
1716 * placed instead of 0xFFFE in the interface identifier. The
1717 * "u" bit of the interface identifier is not inverted in this
1718 * case. Hence the resulting interface identifier has local
1719 * scope according to RFC2373.
1720 */
1721 if (dev->dev_id) {
1722 eui[3] = (dev->dev_id >> 8) & 0xFF;
1723 eui[4] = dev->dev_id & 0xFF;
1724 } else {
1725 eui[3] = 0xFF;
1726 eui[4] = 0xFE;
1727 eui[0] ^= 2;
1728 }
1729 return 0;
1730}
1731
alex.bluesman.smirnov@gmail.com06a4c1c2012-05-10 03:25:52 +00001732static int addrconf_ifid_eui64(u8 *eui, struct net_device *dev)
1733{
1734 if (dev->addr_len != IEEE802154_ADDR_LEN)
1735 return -1;
1736 memcpy(eui, dev->dev_addr, 8);
YOSHIFUJI Hideaki / 吉藤英明5e98a362013-01-28 10:44:29 +00001737 eui[0] ^= 2;
alex.bluesman.smirnov@gmail.com06a4c1c2012-05-10 03:25:52 +00001738 return 0;
1739}
1740
YOSHIFUJI Hideaki / 吉藤英明cb6bf352013-03-25 08:26:24 +00001741static int addrconf_ifid_ieee1394(u8 *eui, struct net_device *dev)
1742{
1743 union fwnet_hwaddr *ha;
1744
1745 if (dev->addr_len != FWNET_ALEN)
1746 return -1;
1747
1748 ha = (union fwnet_hwaddr *)dev->dev_addr;
1749
1750 memcpy(eui, &ha->uc.uniq_id, sizeof(ha->uc.uniq_id));
1751 eui[0] ^= 2;
1752 return 0;
1753}
1754
YOSHIFUJI Hideaki073a8e02006-03-20 16:54:49 -08001755static int addrconf_ifid_arcnet(u8 *eui, struct net_device *dev)
1756{
1757 /* XXX: inherit EUI-64 from other interface -- yoshfuji */
1758 if (dev->addr_len != ARCNET_ALEN)
1759 return -1;
1760 memset(eui, 0, 7);
Eldad Zack8e5e8f32012-04-01 07:49:08 +00001761 eui[7] = *(u8 *)dev->dev_addr;
YOSHIFUJI Hideaki073a8e02006-03-20 16:54:49 -08001762 return 0;
1763}
1764
1765static int addrconf_ifid_infiniband(u8 *eui, struct net_device *dev)
1766{
1767 if (dev->addr_len != INFINIBAND_ALEN)
1768 return -1;
1769 memcpy(eui, dev->dev_addr + 12, 8);
1770 eui[0] |= 2;
1771 return 0;
1772}
1773
stephen hemmingerc61393e2010-10-04 20:17:53 +00001774static int __ipv6_isatap_ifid(u8 *eui, __be32 addr)
YOSHIFUJI Hideakidfd982b2008-04-10 15:42:09 +09001775{
Sascha Hlusiak9af28512009-05-19 12:56:51 +00001776 if (addr == 0)
1777 return -1;
YOSHIFUJI Hideakidfd982b2008-04-10 15:42:09 +09001778 eui[0] = (ipv4_is_zeronet(addr) || ipv4_is_private_10(addr) ||
1779 ipv4_is_loopback(addr) || ipv4_is_linklocal_169(addr) ||
1780 ipv4_is_private_172(addr) || ipv4_is_test_192(addr) ||
1781 ipv4_is_anycast_6to4(addr) || ipv4_is_private_192(addr) ||
1782 ipv4_is_test_198(addr) || ipv4_is_multicast(addr) ||
1783 ipv4_is_lbcast(addr)) ? 0x00 : 0x02;
1784 eui[1] = 0;
1785 eui[2] = 0x5E;
1786 eui[3] = 0xFE;
1787 memcpy(eui + 4, &addr, 4);
1788 return 0;
1789}
YOSHIFUJI Hideakidfd982b2008-04-10 15:42:09 +09001790
1791static int addrconf_ifid_sit(u8 *eui, struct net_device *dev)
1792{
1793 if (dev->priv_flags & IFF_ISATAP)
1794 return __ipv6_isatap_ifid(eui, *(__be32 *)dev->dev_addr);
1795 return -1;
1796}
1797
stephen hemmingeraee80b52011-06-08 10:44:30 +00001798static int addrconf_ifid_gre(u8 *eui, struct net_device *dev)
1799{
1800 return __ipv6_isatap_ifid(eui, *(__be32 *)dev->dev_addr);
1801}
1802
Nicolas Dichtele8377352013-08-20 12:16:06 +02001803static int addrconf_ifid_ip6tnl(u8 *eui, struct net_device *dev)
1804{
1805 memcpy(eui, dev->perm_addr, 3);
1806 memcpy(eui + 5, dev->perm_addr + 3, 3);
1807 eui[3] = 0xFF;
1808 eui[4] = 0xFE;
1809 eui[0] ^= 2;
1810 return 0;
1811}
1812
Linus Torvalds1da177e2005-04-16 15:20:36 -07001813static int ipv6_generate_eui64(u8 *eui, struct net_device *dev)
1814{
1815 switch (dev->type) {
1816 case ARPHRD_ETHER:
1817 case ARPHRD_FDDI:
YOSHIFUJI Hideaki073a8e02006-03-20 16:54:49 -08001818 return addrconf_ifid_eui48(eui, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001819 case ARPHRD_ARCNET:
YOSHIFUJI Hideaki073a8e02006-03-20 16:54:49 -08001820 return addrconf_ifid_arcnet(eui, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001821 case ARPHRD_INFINIBAND:
YOSHIFUJI Hideaki073a8e02006-03-20 16:54:49 -08001822 return addrconf_ifid_infiniband(eui, dev);
Fred L. Templinc7dc89c2007-11-29 22:11:40 +11001823 case ARPHRD_SIT:
YOSHIFUJI Hideakidfd982b2008-04-10 15:42:09 +09001824 return addrconf_ifid_sit(eui, dev);
stephen hemmingeraee80b52011-06-08 10:44:30 +00001825 case ARPHRD_IPGRE:
1826 return addrconf_ifid_gre(eui, dev);
alex.bluesman.smirnov@gmail.com06a4c1c2012-05-10 03:25:52 +00001827 case ARPHRD_IEEE802154:
1828 return addrconf_ifid_eui64(eui, dev);
YOSHIFUJI Hideaki / 吉藤英明cb6bf352013-03-25 08:26:24 +00001829 case ARPHRD_IEEE1394:
1830 return addrconf_ifid_ieee1394(eui, dev);
Nicolas Dichtele8377352013-08-20 12:16:06 +02001831 case ARPHRD_TUNNEL6:
1832 return addrconf_ifid_ip6tnl(eui, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001833 }
1834 return -1;
1835}
1836
1837static int ipv6_inherit_eui64(u8 *eui, struct inet6_dev *idev)
1838{
1839 int err = -1;
1840 struct inet6_ifaddr *ifp;
1841
1842 read_lock_bh(&idev->lock);
stephen hemminger502a2ff2010-03-17 20:31:13 +00001843 list_for_each_entry(ifp, &idev->addr_list, if_list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001844 if (ifp->scope == IFA_LINK && !(ifp->flags&IFA_F_TENTATIVE)) {
1845 memcpy(eui, ifp->addr.s6_addr+8, 8);
1846 err = 0;
1847 break;
1848 }
1849 }
1850 read_unlock_bh(&idev->lock);
1851 return err;
1852}
1853
1854#ifdef CONFIG_IPV6_PRIVACY
1855/* (re)generation of randomized interface identifier (RFC 3041 3.2, 3.5) */
Sorin Dumitrueb7e0572012-08-30 02:01:45 +00001856static void __ipv6_regen_rndid(struct inet6_dev *idev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001857{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001858regen:
YOSHIFUJI Hideaki955189e2006-03-20 16:54:09 -08001859 get_random_bytes(idev->rndid, sizeof(idev->rndid));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001860 idev->rndid[0] &= ~0x02;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001861
1862 /*
1863 * <draft-ietf-ipngwg-temp-addresses-v2-00.txt>:
1864 * check if generated address is not inappropriate
1865 *
1866 * - Reserved subnet anycast (RFC 2526)
1867 * 11111101 11....11 1xxxxxxx
Fred L. Templinc7dc89c2007-11-29 22:11:40 +11001868 * - ISATAP (RFC4214) 6.1
Linus Torvalds1da177e2005-04-16 15:20:36 -07001869 * 00-00-5E-FE-xx-xx-xx-xx
1870 * - value 0
1871 * - XXX: already assigned to an address on the device
1872 */
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001873 if (idev->rndid[0] == 0xfd &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07001874 (idev->rndid[1]&idev->rndid[2]&idev->rndid[3]&idev->rndid[4]&idev->rndid[5]&idev->rndid[6]) == 0xff &&
1875 (idev->rndid[7]&0x80))
1876 goto regen;
1877 if ((idev->rndid[0]|idev->rndid[1]) == 0) {
1878 if (idev->rndid[2] == 0x5e && idev->rndid[3] == 0xfe)
1879 goto regen;
1880 if ((idev->rndid[2]|idev->rndid[3]|idev->rndid[4]|idev->rndid[5]|idev->rndid[6]|idev->rndid[7]) == 0x00)
1881 goto regen;
1882 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001883}
1884
1885static void ipv6_regen_rndid(unsigned long data)
1886{
1887 struct inet6_dev *idev = (struct inet6_dev *) data;
1888 unsigned long expires;
1889
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -07001890 rcu_read_lock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001891 write_lock_bh(&idev->lock);
1892
1893 if (idev->dead)
1894 goto out;
1895
Sorin Dumitrueb7e0572012-08-30 02:01:45 +00001896 __ipv6_regen_rndid(idev);
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001897
Linus Torvalds1da177e2005-04-16 15:20:36 -07001898 expires = jiffies +
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001899 idev->cnf.temp_prefered_lft * HZ -
Ben Hutchings784e2712010-06-26 11:42:55 +00001900 idev->cnf.regen_max_retry * idev->cnf.dad_transmits * idev->nd_parms->retrans_time -
1901 idev->cnf.max_desync_factor * HZ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001902 if (time_before(expires, jiffies)) {
Joe Perchesf3213832012-05-15 14:11:53 +00001903 pr_warn("%s: too short regeneration interval; timer disabled for %s\n",
1904 __func__, idev->dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001905 goto out;
1906 }
1907
1908 if (!mod_timer(&idev->regen_timer, expires))
1909 in6_dev_hold(idev);
1910
1911out:
1912 write_unlock_bh(&idev->lock);
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -07001913 rcu_read_unlock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001914 in6_dev_put(idev);
1915}
1916
Sorin Dumitrueb7e0572012-08-30 02:01:45 +00001917static void __ipv6_try_regen_rndid(struct inet6_dev *idev, struct in6_addr *tmpaddr)
Eldad Zack8e5e8f32012-04-01 07:49:08 +00001918{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001919 if (tmpaddr && memcmp(idev->rndid, &tmpaddr->s6_addr[8], 8) == 0)
Sorin Dumitrueb7e0572012-08-30 02:01:45 +00001920 __ipv6_regen_rndid(idev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001921}
1922#endif
1923
1924/*
1925 * Add prefix route.
1926 */
1927
1928static void
1929addrconf_prefix_route(struct in6_addr *pfx, int plen, struct net_device *dev,
Jamal Hadi Salime431b8c2005-06-18 22:55:31 -07001930 unsigned long expires, u32 flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001931{
Thomas Graf86872cb2006-08-22 00:01:08 -07001932 struct fib6_config cfg = {
1933 .fc_table = RT6_TABLE_PREFIX,
1934 .fc_metric = IP6_RT_PRIO_ADDRCONF,
1935 .fc_ifindex = dev->ifindex,
1936 .fc_expires = expires,
1937 .fc_dst_len = plen,
1938 .fc_flags = RTF_UP | flags,
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09001939 .fc_nlinfo.nl_net = dev_net(dev),
Stephen Hemmingerf410a1f2008-08-23 05:16:46 -07001940 .fc_protocol = RTPROT_KERNEL,
Thomas Graf86872cb2006-08-22 00:01:08 -07001941 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001942
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00001943 cfg.fc_dst = *pfx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001944
1945 /* Prevent useless cloning on PtP SIT.
1946 This thing is done here expecting that the whole
1947 class of non-broadcast devices need not cloning.
1948 */
Amerigo Wang07a93622012-10-29 16:23:10 +00001949#if IS_ENABLED(CONFIG_IPV6_SIT)
Thomas Graf86872cb2006-08-22 00:01:08 -07001950 if (dev->type == ARPHRD_SIT && (dev->flags & IFF_POINTOPOINT))
1951 cfg.fc_flags |= RTF_NONEXTHOP;
Joerg Roedel0be669b2006-10-10 14:49:53 -07001952#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001953
Thomas Graf86872cb2006-08-22 00:01:08 -07001954 ip6_route_add(&cfg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001955}
1956
Andreas Hofmeister14ef37b2011-10-26 03:24:29 +00001957
1958static struct rt6_info *addrconf_get_prefix_route(const struct in6_addr *pfx,
1959 int plen,
1960 const struct net_device *dev,
1961 u32 flags, u32 noflags)
1962{
1963 struct fib6_node *fn;
1964 struct rt6_info *rt = NULL;
1965 struct fib6_table *table;
1966
1967 table = fib6_get_table(dev_net(dev), RT6_TABLE_PREFIX);
1968 if (table == NULL)
1969 return NULL;
1970
Li RongQing5744dd92012-09-11 21:59:01 +00001971 read_lock_bh(&table->tb6_lock);
Andreas Hofmeister14ef37b2011-10-26 03:24:29 +00001972 fn = fib6_locate(&table->tb6_root, pfx, plen, NULL, 0);
1973 if (!fn)
1974 goto out;
1975 for (rt = fn->leaf; rt; rt = rt->dst.rt6_next) {
David S. Millerd1918542011-12-28 20:19:20 -05001976 if (rt->dst.dev->ifindex != dev->ifindex)
Andreas Hofmeister14ef37b2011-10-26 03:24:29 +00001977 continue;
1978 if ((rt->rt6i_flags & flags) != flags)
1979 continue;
Romain Kuntz85da53b2013-01-09 15:02:26 +01001980 if ((rt->rt6i_flags & noflags) != 0)
Andreas Hofmeister14ef37b2011-10-26 03:24:29 +00001981 continue;
1982 dst_hold(&rt->dst);
1983 break;
1984 }
1985out:
Li RongQing5744dd92012-09-11 21:59:01 +00001986 read_unlock_bh(&table->tb6_lock);
Andreas Hofmeister14ef37b2011-10-26 03:24:29 +00001987 return rt;
1988}
1989
1990
Linus Torvalds1da177e2005-04-16 15:20:36 -07001991/* Create "default" multicast route to the interface */
1992
1993static void addrconf_add_mroute(struct net_device *dev)
1994{
Thomas Graf86872cb2006-08-22 00:01:08 -07001995 struct fib6_config cfg = {
1996 .fc_table = RT6_TABLE_LOCAL,
1997 .fc_metric = IP6_RT_PRIO_ADDRCONF,
1998 .fc_ifindex = dev->ifindex,
1999 .fc_dst_len = 8,
2000 .fc_flags = RTF_UP,
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09002001 .fc_nlinfo.nl_net = dev_net(dev),
Thomas Graf86872cb2006-08-22 00:01:08 -07002002 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002003
Thomas Graf86872cb2006-08-22 00:01:08 -07002004 ipv6_addr_set(&cfg.fc_dst, htonl(0xFF000000), 0, 0, 0);
2005
2006 ip6_route_add(&cfg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002007}
2008
Amerigo Wang07a93622012-10-29 16:23:10 +00002009#if IS_ENABLED(CONFIG_IPV6_SIT)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002010static void sit_route_add(struct net_device *dev)
2011{
Thomas Graf86872cb2006-08-22 00:01:08 -07002012 struct fib6_config cfg = {
2013 .fc_table = RT6_TABLE_MAIN,
2014 .fc_metric = IP6_RT_PRIO_ADDRCONF,
2015 .fc_ifindex = dev->ifindex,
2016 .fc_dst_len = 96,
2017 .fc_flags = RTF_UP | RTF_NONEXTHOP,
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09002018 .fc_nlinfo.nl_net = dev_net(dev),
Thomas Graf86872cb2006-08-22 00:01:08 -07002019 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002020
2021 /* prefix length - 96 bits "::d.d.d.d" */
Thomas Graf86872cb2006-08-22 00:01:08 -07002022 ip6_route_add(&cfg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002023}
Joerg Roedel0be669b2006-10-10 14:49:53 -07002024#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002025
Linus Torvalds1da177e2005-04-16 15:20:36 -07002026static struct inet6_dev *addrconf_add_dev(struct net_device *dev)
2027{
2028 struct inet6_dev *idev;
2029
2030 ASSERT_RTNL();
2031
Stephen Hemmingere21e8462010-03-20 16:09:01 -07002032 idev = ipv6_find_idev(dev);
2033 if (!idev)
Brian Haley64e724f2010-07-20 10:34:30 +00002034 return ERR_PTR(-ENOBUFS);
2035
2036 if (idev->cnf.disable_ipv6)
2037 return ERR_PTR(-EACCES);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002038
2039 /* Add default multicast route */
Li Wei4af04ab2011-12-06 21:23:45 +00002040 if (!(dev->flags & IFF_LOOPBACK))
2041 addrconf_add_mroute(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002042
Linus Torvalds1da177e2005-04-16 15:20:36 -07002043 return idev;
2044}
2045
Neil Hormane6bff992012-01-04 10:49:15 +00002046void addrconf_prefix_rcv(struct net_device *dev, u8 *opt, int len, bool sllao)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002047{
2048 struct prefix_info *pinfo;
2049 __u32 valid_lft;
2050 __u32 prefered_lft;
2051 int addr_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002052 struct inet6_dev *in6_dev;
Brian Haley56d417b2009-06-01 03:07:33 -07002053 struct net *net = dev_net(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002054
2055 pinfo = (struct prefix_info *) opt;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002056
Linus Torvalds1da177e2005-04-16 15:20:36 -07002057 if (len < sizeof(struct prefix_info)) {
dingtianhongba3542e2013-08-17 10:27:04 +08002058 ADBG("addrconf: prefix option too short\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002059 return;
2060 }
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002061
Linus Torvalds1da177e2005-04-16 15:20:36 -07002062 /*
2063 * Validation checks ([ADDRCONF], page 19)
2064 */
2065
2066 addr_type = ipv6_addr_type(&pinfo->prefix);
2067
2068 if (addr_type & (IPV6_ADDR_MULTICAST|IPV6_ADDR_LINKLOCAL))
2069 return;
2070
2071 valid_lft = ntohl(pinfo->valid);
2072 prefered_lft = ntohl(pinfo->prefered);
2073
2074 if (prefered_lft > valid_lft) {
Joe Perchese87cc472012-05-13 21:56:26 +00002075 net_warn_ratelimited("addrconf: prefix option has invalid lifetime\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002076 return;
2077 }
2078
2079 in6_dev = in6_dev_get(dev);
2080
2081 if (in6_dev == NULL) {
Joe Perchese87cc472012-05-13 21:56:26 +00002082 net_dbg_ratelimited("addrconf: device %s not configured\n",
2083 dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002084 return;
2085 }
2086
2087 /*
2088 * Two things going on here:
2089 * 1) Add routes for on-link prefixes
2090 * 2) Configure prefixes with the auto flag set
2091 */
2092
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +09002093 if (pinfo->onlink) {
2094 struct rt6_info *rt;
2095 unsigned long rt_expires;
2096
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07002097 /* Avoid arithmetic overflow. Really, we could
2098 * save rt_expires in seconds, likely valid_lft,
2099 * but it would require division in fib gc, that it
2100 * not good.
2101 */
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +09002102 if (HZ > USER_HZ)
2103 rt_expires = addrconf_timeout_fixup(valid_lft, HZ);
2104 else
2105 rt_expires = addrconf_timeout_fixup(valid_lft, USER_HZ);
YOSHIFUJI Hideaki3dd4bc62005-12-19 14:02:45 -08002106
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +09002107 if (addrconf_finite_timeout(rt_expires))
2108 rt_expires *= HZ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002109
Andreas Hofmeister14ef37b2011-10-26 03:24:29 +00002110 rt = addrconf_get_prefix_route(&pinfo->prefix,
2111 pinfo->prefix_len,
2112 dev,
2113 RTF_ADDRCONF | RTF_PREFIX_RT,
2114 RTF_GATEWAY | RTF_DEFAULT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002115
Andreas Hofmeister14ef37b2011-10-26 03:24:29 +00002116 if (rt) {
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07002117 /* Autoconf prefix route */
2118 if (valid_lft == 0) {
2119 ip6_del_rt(rt);
2120 rt = NULL;
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +09002121 } else if (addrconf_finite_timeout(rt_expires)) {
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07002122 /* not infinity */
Gao feng1716a962012-04-06 00:13:10 +00002123 rt6_set_expires(rt, jiffies + rt_expires);
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07002124 } else {
Gao feng1716a962012-04-06 00:13:10 +00002125 rt6_clean_expires(rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002126 }
2127 } else if (valid_lft) {
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07002128 clock_t expires = 0;
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +09002129 int flags = RTF_ADDRCONF | RTF_PREFIX_RT;
2130 if (addrconf_finite_timeout(rt_expires)) {
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07002131 /* not infinity */
2132 flags |= RTF_EXPIRES;
2133 expires = jiffies_to_clock_t(rt_expires);
2134 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002135 addrconf_prefix_route(&pinfo->prefix, pinfo->prefix_len,
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07002136 dev, expires, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002137 }
Amerigo Wang94e187c2012-10-29 00:13:19 +00002138 ip6_rt_put(rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002139 }
2140
2141 /* Try to figure out our local address for this prefix */
2142
2143 if (pinfo->autoconf && in6_dev->cnf.autoconf) {
Eldad Zack8e5e8f32012-04-01 07:49:08 +00002144 struct inet6_ifaddr *ifp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002145 struct in6_addr addr;
2146 int create = 0, update_lft = 0;
Daniel Borkmann617fe292013-04-09 03:47:16 +00002147 bool tokenized = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002148
2149 if (pinfo->prefix_len == 64) {
2150 memcpy(&addr, &pinfo->prefix, 8);
Daniel Borkmannf53adae2013-04-08 04:01:30 +00002151
2152 if (!ipv6_addr_any(&in6_dev->token)) {
2153 read_lock_bh(&in6_dev->lock);
2154 memcpy(addr.s6_addr + 8,
2155 in6_dev->token.s6_addr + 8, 8);
2156 read_unlock_bh(&in6_dev->lock);
Daniel Borkmann617fe292013-04-09 03:47:16 +00002157 tokenized = true;
Daniel Borkmannf53adae2013-04-08 04:01:30 +00002158 } else if (ipv6_generate_eui64(addr.s6_addr + 8, dev) &&
2159 ipv6_inherit_eui64(addr.s6_addr + 8, in6_dev)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002160 in6_dev_put(in6_dev);
2161 return;
2162 }
2163 goto ok;
2164 }
Joe Perchese87cc472012-05-13 21:56:26 +00002165 net_dbg_ratelimited("IPv6 addrconf: prefix with wrong length %d\n",
2166 pinfo->prefix_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002167 in6_dev_put(in6_dev);
2168 return;
2169
2170ok:
2171
YOSHIFUJI Hideaki53b79972008-07-19 22:35:03 -07002172 ifp = ipv6_get_ifaddr(net, &addr, dev, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002173
2174 if (ifp == NULL && valid_lft) {
2175 int max_addresses = in6_dev->cnf.max_addresses;
Neil Horman95c385b2007-04-25 17:08:10 -07002176 u32 addr_flags = 0;
2177
2178#ifdef CONFIG_IPV6_OPTIMISTIC_DAD
2179 if (in6_dev->cnf.optimistic_dad &&
Neil Hormane6bff992012-01-04 10:49:15 +00002180 !net->ipv6.devconf_all->forwarding && sllao)
Neil Horman95c385b2007-04-25 17:08:10 -07002181 addr_flags = IFA_F_OPTIMISTIC;
2182#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002183
2184 /* Do not allow to create too much of autoconfigured
2185 * addresses; this would be too easy way to crash kernel.
2186 */
2187 if (!max_addresses ||
2188 ipv6_count_addresses(in6_dev) < max_addresses)
Jiri Pirko3f8f5292013-08-01 10:41:27 +02002189 ifp = ipv6_add_addr(in6_dev, &addr, NULL,
2190 pinfo->prefix_len,
Neil Horman95c385b2007-04-25 17:08:10 -07002191 addr_type&IPV6_ADDR_SCOPE_MASK,
Jiri Benc8a226b22013-08-01 10:41:28 +02002192 addr_flags, valid_lft,
2193 prefered_lft);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002194
YOSHIFUJI Hideaki / 吉藤英明3f0d2ba2013-01-22 06:32:54 +00002195 if (IS_ERR_OR_NULL(ifp)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002196 in6_dev_put(in6_dev);
2197 return;
2198 }
2199
Jiri Benc8a226b22013-08-01 10:41:28 +02002200 update_lft = 0;
2201 create = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002202 ifp->cstamp = jiffies;
Daniel Borkmann617fe292013-04-09 03:47:16 +00002203 ifp->tokenized = tokenized;
David S. Millercf22f9a2012-04-14 21:37:40 -04002204 addrconf_dad_start(ifp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002205 }
2206
2207 if (ifp) {
2208 int flags;
2209 unsigned long now;
2210#ifdef CONFIG_IPV6_PRIVACY
2211 struct inet6_ifaddr *ift;
2212#endif
2213 u32 stored_lft;
2214
2215 /* update lifetime (RFC2462 5.5.3 e) */
2216 spin_lock(&ifp->lock);
2217 now = jiffies;
2218 if (ifp->valid_lft > (now - ifp->tstamp) / HZ)
2219 stored_lft = ifp->valid_lft - (now - ifp->tstamp) / HZ;
2220 else
2221 stored_lft = 0;
Jiri Benc8a226b22013-08-01 10:41:28 +02002222 if (!update_lft && !create && stored_lft) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002223 if (valid_lft > MIN_VALID_LIFETIME ||
2224 valid_lft > stored_lft)
2225 update_lft = 1;
2226 else if (stored_lft <= MIN_VALID_LIFETIME) {
2227 /* valid_lft <= stored_lft is always true */
Brian Haleya1ed0522009-07-02 07:10:52 +00002228 /*
2229 * RFC 4862 Section 5.5.3e:
2230 * "Note that the preferred lifetime of
2231 * the corresponding address is always
2232 * reset to the Preferred Lifetime in
2233 * the received Prefix Information
2234 * option, regardless of whether the
2235 * valid lifetime is also reset or
2236 * ignored."
2237 *
2238 * So if the preferred lifetime in
2239 * this advertisement is different
2240 * than what we have stored, but the
2241 * valid lifetime is invalid, just
2242 * reset prefered_lft.
2243 *
2244 * We must set the valid lifetime
2245 * to the stored lifetime since we'll
2246 * be updating the timestamp below,
2247 * else we'll set it back to the
Lucas De Marchi25985ed2011-03-30 22:57:33 -03002248 * minimum.
Brian Haleya1ed0522009-07-02 07:10:52 +00002249 */
2250 if (prefered_lft != ifp->prefered_lft) {
2251 valid_lft = stored_lft;
2252 update_lft = 1;
2253 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002254 } else {
2255 valid_lft = MIN_VALID_LIFETIME;
2256 if (valid_lft < prefered_lft)
2257 prefered_lft = valid_lft;
2258 update_lft = 1;
2259 }
2260 }
2261
2262 if (update_lft) {
2263 ifp->valid_lft = valid_lft;
2264 ifp->prefered_lft = prefered_lft;
2265 ifp->tstamp = now;
2266 flags = ifp->flags;
2267 ifp->flags &= ~IFA_F_DEPRECATED;
2268 spin_unlock(&ifp->lock);
2269
2270 if (!(flags&IFA_F_TENTATIVE))
2271 ipv6_ifa_notify(0, ifp);
2272 } else
2273 spin_unlock(&ifp->lock);
2274
2275#ifdef CONFIG_IPV6_PRIVACY
2276 read_lock_bh(&in6_dev->lock);
2277 /* update all temporary addresses in the list */
Lorenzo Colitti76f793e2011-07-26 13:50:49 +00002278 list_for_each_entry(ift, &in6_dev->tempaddr_list,
2279 tmp_list) {
2280 int age, max_valid, max_prefered;
2281
Benoit Boissinotc6fbfac2008-04-02 00:00:58 -07002282 if (ifp != ift->ifpub)
2283 continue;
2284
Lorenzo Colitti76f793e2011-07-26 13:50:49 +00002285 /*
2286 * RFC 4941 section 3.3:
2287 * If a received option will extend the lifetime
2288 * of a public address, the lifetimes of
2289 * temporary addresses should be extended,
2290 * subject to the overall constraint that no
2291 * temporary addresses should ever remain
2292 * "valid" or "preferred" for a time longer than
2293 * (TEMP_VALID_LIFETIME) or
2294 * (TEMP_PREFERRED_LIFETIME - DESYNC_FACTOR),
2295 * respectively.
2296 */
2297 age = (now - ift->cstamp) / HZ;
2298 max_valid = in6_dev->cnf.temp_valid_lft - age;
2299 if (max_valid < 0)
2300 max_valid = 0;
2301
2302 max_prefered = in6_dev->cnf.temp_prefered_lft -
2303 in6_dev->cnf.max_desync_factor -
2304 age;
2305 if (max_prefered < 0)
2306 max_prefered = 0;
2307
2308 if (valid_lft > max_valid)
2309 valid_lft = max_valid;
2310
2311 if (prefered_lft > max_prefered)
2312 prefered_lft = max_prefered;
2313
Linus Torvalds1da177e2005-04-16 15:20:36 -07002314 spin_lock(&ift->lock);
2315 flags = ift->flags;
Lorenzo Colitti76f793e2011-07-26 13:50:49 +00002316 ift->valid_lft = valid_lft;
2317 ift->prefered_lft = prefered_lft;
2318 ift->tstamp = now;
2319 if (prefered_lft > 0)
2320 ift->flags &= ~IFA_F_DEPRECATED;
2321
Linus Torvalds1da177e2005-04-16 15:20:36 -07002322 spin_unlock(&ift->lock);
2323 if (!(flags&IFA_F_TENTATIVE))
2324 ipv6_ifa_notify(0, ift);
2325 }
2326
Glenn Wursteraed65502010-09-27 07:04:30 +00002327 if ((create || list_empty(&in6_dev->tempaddr_list)) && in6_dev->cnf.use_tempaddr > 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002328 /*
Lorenzo Colitti76f793e2011-07-26 13:50:49 +00002329 * When a new public address is created as
2330 * described in [ADDRCONF], also create a new
2331 * temporary address. Also create a temporary
2332 * address if it's enabled but no temporary
2333 * address currently exists.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002334 */
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002335 read_unlock_bh(&in6_dev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002336 ipv6_create_tempaddr(ifp, NULL);
2337 } else {
2338 read_unlock_bh(&in6_dev->lock);
2339 }
2340#endif
2341 in6_ifa_put(ifp);
2342 addrconf_verify(0);
2343 }
2344 }
2345 inet6_prefix_notify(RTM_NEWPREFIX, in6_dev, pinfo);
2346 in6_dev_put(in6_dev);
2347}
2348
2349/*
2350 * Set destination address.
2351 * Special case for SIT interfaces where we create a new "virtual"
2352 * device.
2353 */
Daniel Lezcanoaf284932008-03-05 10:46:57 -08002354int addrconf_set_dstaddr(struct net *net, void __user *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002355{
2356 struct in6_ifreq ireq;
2357 struct net_device *dev;
2358 int err = -EINVAL;
2359
2360 rtnl_lock();
2361
2362 err = -EFAULT;
2363 if (copy_from_user(&ireq, arg, sizeof(struct in6_ifreq)))
2364 goto err_exit;
2365
Daniel Lezcanoaf284932008-03-05 10:46:57 -08002366 dev = __dev_get_by_index(net, ireq.ifr6_ifindex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002367
2368 err = -ENODEV;
2369 if (dev == NULL)
2370 goto err_exit;
2371
Amerigo Wang07a93622012-10-29 16:23:10 +00002372#if IS_ENABLED(CONFIG_IPV6_SIT)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002373 if (dev->type == ARPHRD_SIT) {
Stephen Hemminger5bc3eb72008-11-19 21:52:05 -08002374 const struct net_device_ops *ops = dev->netdev_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002375 struct ifreq ifr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002376 struct ip_tunnel_parm p;
2377
2378 err = -EADDRNOTAVAIL;
2379 if (!(ipv6_addr_type(&ireq.ifr6_addr) & IPV6_ADDR_COMPATv4))
2380 goto err_exit;
2381
2382 memset(&p, 0, sizeof(p));
2383 p.iph.daddr = ireq.ifr6_addr.s6_addr32[3];
2384 p.iph.saddr = 0;
2385 p.iph.version = 4;
2386 p.iph.ihl = 5;
2387 p.iph.protocol = IPPROTO_IPV6;
2388 p.iph.ttl = 64;
Stephen Hemmingerd20b3102008-01-21 00:48:43 -08002389 ifr.ifr_ifru.ifru_data = (__force void __user *)&p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002390
Stephen Hemminger5bc3eb72008-11-19 21:52:05 -08002391 if (ops->ndo_do_ioctl) {
2392 mm_segment_t oldfs = get_fs();
2393
2394 set_fs(KERNEL_DS);
2395 err = ops->ndo_do_ioctl(dev, &ifr, SIOCADDTUNNEL);
2396 set_fs(oldfs);
2397 } else
2398 err = -EOPNOTSUPP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002399
2400 if (err == 0) {
2401 err = -ENOBUFS;
Daniel Lezcanoaf284932008-03-05 10:46:57 -08002402 dev = __dev_get_by_name(net, p.name);
2403 if (!dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002404 goto err_exit;
2405 err = dev_open(dev);
2406 }
2407 }
Joerg Roedel0be669b2006-10-10 14:49:53 -07002408#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002409
2410err_exit:
2411 rtnl_unlock();
2412 return err;
2413}
2414
2415/*
2416 * Manual configuration of address on an interface
2417 */
Eric Dumazetb71d1d42011-04-22 04:53:02 +00002418static int inet6_addr_add(struct net *net, int ifindex, const struct in6_addr *pfx,
Nicolas Dichtelcaeaba72013-05-16 22:32:00 +00002419 const struct in6_addr *peer_pfx,
Thomas Graf24ef0da2008-05-28 16:54:22 +02002420 unsigned int plen, __u8 ifa_flags, __u32 prefered_lft,
Daniel Lezcanoaf284932008-03-05 10:46:57 -08002421 __u32 valid_lft)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002422{
2423 struct inet6_ifaddr *ifp;
2424 struct inet6_dev *idev;
2425 struct net_device *dev;
2426 int scope;
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07002427 u32 flags;
2428 clock_t expires;
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +09002429 unsigned long timeout;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002430
2431 ASSERT_RTNL();
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002432
Thomas Graf24ef0da2008-05-28 16:54:22 +02002433 if (plen > 128)
2434 return -EINVAL;
2435
Noriaki TAKAMIYA07787692006-07-28 18:12:10 +09002436 /* check the lifetime */
2437 if (!valid_lft || prefered_lft > valid_lft)
2438 return -EINVAL;
2439
Daniel Lezcanoaf284932008-03-05 10:46:57 -08002440 dev = __dev_get_by_index(net, ifindex);
2441 if (!dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002442 return -ENODEV;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002443
Brian Haley64e724f2010-07-20 10:34:30 +00002444 idev = addrconf_add_dev(dev);
2445 if (IS_ERR(idev))
2446 return PTR_ERR(idev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002447
2448 scope = ipv6_addr_scope(pfx);
2449
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +09002450 timeout = addrconf_timeout_fixup(valid_lft, HZ);
2451 if (addrconf_finite_timeout(timeout)) {
2452 expires = jiffies_to_clock_t(timeout * HZ);
2453 valid_lft = timeout;
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07002454 flags = RTF_EXPIRES;
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +09002455 } else {
2456 expires = 0;
2457 flags = 0;
2458 ifa_flags |= IFA_F_PERMANENT;
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07002459 }
Noriaki TAKAMIYA07787692006-07-28 18:12:10 +09002460
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +09002461 timeout = addrconf_timeout_fixup(prefered_lft, HZ);
2462 if (addrconf_finite_timeout(timeout)) {
2463 if (timeout == 0)
2464 ifa_flags |= IFA_F_DEPRECATED;
2465 prefered_lft = timeout;
2466 }
Noriaki TAKAMIYA07787692006-07-28 18:12:10 +09002467
Jiri Benc8a226b22013-08-01 10:41:28 +02002468 ifp = ipv6_add_addr(idev, pfx, peer_pfx, plen, scope, ifa_flags,
2469 valid_lft, prefered_lft);
Noriaki TAKAMIYA07787692006-07-28 18:12:10 +09002470
Linus Torvalds1da177e2005-04-16 15:20:36 -07002471 if (!IS_ERR(ifp)) {
YOSHIFUJI Hideaki46d48042007-02-07 20:36:26 +09002472 addrconf_prefix_route(&ifp->addr, ifp->prefix_len, dev,
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07002473 expires, flags);
Neil Horman95c385b2007-04-25 17:08:10 -07002474 /*
2475 * Note that section 3.1 of RFC 4429 indicates
2476 * that the Optimistic flag should not be set for
2477 * manually configured addresses
2478 */
David S. Millercf22f9a2012-04-14 21:37:40 -04002479 addrconf_dad_start(ifp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002480 in6_ifa_put(ifp);
Noriaki TAKAMIYA07787692006-07-28 18:12:10 +09002481 addrconf_verify(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002482 return 0;
2483 }
2484
2485 return PTR_ERR(ifp);
2486}
2487
Eric Dumazetb71d1d42011-04-22 04:53:02 +00002488static int inet6_addr_del(struct net *net, int ifindex, const struct in6_addr *pfx,
Thomas Graf24ef0da2008-05-28 16:54:22 +02002489 unsigned int plen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002490{
2491 struct inet6_ifaddr *ifp;
2492 struct inet6_dev *idev;
2493 struct net_device *dev;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002494
Thomas Graf24ef0da2008-05-28 16:54:22 +02002495 if (plen > 128)
2496 return -EINVAL;
2497
Daniel Lezcanoaf284932008-03-05 10:46:57 -08002498 dev = __dev_get_by_index(net, ifindex);
2499 if (!dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002500 return -ENODEV;
2501
David S. Miller7eaa48a2013-08-20 23:44:39 -07002502 if ((idev = __in6_dev_get(dev)) == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002503 return -ENXIO;
2504
2505 read_lock_bh(&idev->lock);
stephen hemminger502a2ff2010-03-17 20:31:13 +00002506 list_for_each_entry(ifp, &idev->addr_list, if_list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002507 if (ifp->prefix_len == plen &&
2508 ipv6_addr_equal(pfx, &ifp->addr)) {
2509 in6_ifa_hold(ifp);
2510 read_unlock_bh(&idev->lock);
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002511
Linus Torvalds1da177e2005-04-16 15:20:36 -07002512 ipv6_del_addr(ifp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002513 return 0;
2514 }
2515 }
2516 read_unlock_bh(&idev->lock);
2517 return -EADDRNOTAVAIL;
2518}
2519
2520
Daniel Lezcanoaf284932008-03-05 10:46:57 -08002521int addrconf_add_ifaddr(struct net *net, void __user *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002522{
2523 struct in6_ifreq ireq;
2524 int err;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002525
Eric W. Biedermanaf31f412012-11-16 03:03:06 +00002526 if (!ns_capable(net->user_ns, CAP_NET_ADMIN))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002527 return -EPERM;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002528
Linus Torvalds1da177e2005-04-16 15:20:36 -07002529 if (copy_from_user(&ireq, arg, sizeof(struct in6_ifreq)))
2530 return -EFAULT;
2531
2532 rtnl_lock();
Nicolas Dichtelcaeaba72013-05-16 22:32:00 +00002533 err = inet6_addr_add(net, ireq.ifr6_ifindex, &ireq.ifr6_addr, NULL,
Daniel Lezcanoaf284932008-03-05 10:46:57 -08002534 ireq.ifr6_prefixlen, IFA_F_PERMANENT,
2535 INFINITY_LIFE_TIME, INFINITY_LIFE_TIME);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002536 rtnl_unlock();
2537 return err;
2538}
2539
Daniel Lezcanoaf284932008-03-05 10:46:57 -08002540int addrconf_del_ifaddr(struct net *net, void __user *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002541{
2542 struct in6_ifreq ireq;
2543 int err;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002544
Eric W. Biedermanaf31f412012-11-16 03:03:06 +00002545 if (!ns_capable(net->user_ns, CAP_NET_ADMIN))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002546 return -EPERM;
2547
2548 if (copy_from_user(&ireq, arg, sizeof(struct in6_ifreq)))
2549 return -EFAULT;
2550
2551 rtnl_lock();
Daniel Lezcanoaf284932008-03-05 10:46:57 -08002552 err = inet6_addr_del(net, ireq.ifr6_ifindex, &ireq.ifr6_addr,
2553 ireq.ifr6_prefixlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002554 rtnl_unlock();
2555 return err;
2556}
2557
Ilpo Järvinenb5f348e2009-02-06 23:48:01 -08002558static void add_addr(struct inet6_dev *idev, const struct in6_addr *addr,
2559 int plen, int scope)
2560{
2561 struct inet6_ifaddr *ifp;
2562
Jiri Benc8a226b22013-08-01 10:41:28 +02002563 ifp = ipv6_add_addr(idev, addr, NULL, plen,
2564 scope, IFA_F_PERMANENT, 0, 0);
Ilpo Järvinenb5f348e2009-02-06 23:48:01 -08002565 if (!IS_ERR(ifp)) {
2566 spin_lock_bh(&ifp->lock);
2567 ifp->flags &= ~IFA_F_TENTATIVE;
2568 spin_unlock_bh(&ifp->lock);
2569 ipv6_ifa_notify(RTM_NEWADDR, ifp);
2570 in6_ifa_put(ifp);
2571 }
2572}
2573
Amerigo Wang07a93622012-10-29 16:23:10 +00002574#if IS_ENABLED(CONFIG_IPV6_SIT)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002575static void sit_add_v4_addrs(struct inet6_dev *idev)
2576{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002577 struct in6_addr addr;
2578 struct net_device *dev;
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09002579 struct net *net = dev_net(idev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002580 int scope;
2581
2582 ASSERT_RTNL();
2583
2584 memset(&addr, 0, sizeof(struct in6_addr));
2585 memcpy(&addr.s6_addr32[3], idev->dev->dev_addr, 4);
2586
2587 if (idev->dev->flags&IFF_POINTOPOINT) {
2588 addr.s6_addr32[0] = htonl(0xfe800000);
2589 scope = IFA_LINK;
2590 } else {
2591 scope = IPV6_ADDR_COMPATv4;
2592 }
2593
2594 if (addr.s6_addr32[3]) {
Ilpo Järvinenb5f348e2009-02-06 23:48:01 -08002595 add_addr(idev, &addr, 128, scope);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002596 return;
2597 }
2598
Benjamin Thery6fda7352008-03-05 10:47:47 -08002599 for_each_netdev(net, dev) {
Eldad Zack8e5e8f32012-04-01 07:49:08 +00002600 struct in_device *in_dev = __in_dev_get_rtnl(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002601 if (in_dev && (dev->flags & IFF_UP)) {
Eldad Zack8e5e8f32012-04-01 07:49:08 +00002602 struct in_ifaddr *ifa;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002603
2604 int flag = scope;
2605
2606 for (ifa = in_dev->ifa_list; ifa; ifa = ifa->ifa_next) {
2607 int plen;
2608
2609 addr.s6_addr32[3] = ifa->ifa_local;
2610
2611 if (ifa->ifa_scope == RT_SCOPE_LINK)
2612 continue;
2613 if (ifa->ifa_scope >= RT_SCOPE_HOST) {
2614 if (idev->dev->flags&IFF_POINTOPOINT)
2615 continue;
2616 flag |= IFA_HOST;
2617 }
2618 if (idev->dev->flags&IFF_POINTOPOINT)
2619 plen = 64;
2620 else
2621 plen = 96;
2622
Ilpo Järvinenb5f348e2009-02-06 23:48:01 -08002623 add_addr(idev, &addr, plen, flag);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002624 }
2625 }
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002626 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002627}
Joerg Roedel0be669b2006-10-10 14:49:53 -07002628#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002629
2630static void init_loopback(struct net_device *dev)
2631{
2632 struct inet6_dev *idev;
Balakumaran Kannan25fb6ca42013-04-02 16:15:05 +05302633 struct net_device *sp_dev;
2634 struct inet6_ifaddr *sp_ifa;
2635 struct rt6_info *sp_rt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002636
2637 /* ::1 */
2638
2639 ASSERT_RTNL();
2640
David S. Miller7eaa48a2013-08-20 23:44:39 -07002641 if ((idev = ipv6_find_idev(dev)) == NULL) {
Joe Perches91df42b2012-05-15 14:11:54 +00002642 pr_debug("%s: add_dev failed\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002643 return;
2644 }
2645
Ilpo Järvinenb5f348e2009-02-06 23:48:01 -08002646 add_addr(idev, &in6addr_loopback, 128, IFA_HOST);
Balakumaran Kannan25fb6ca42013-04-02 16:15:05 +05302647
2648 /* Add routes to other interface's IPv6 addresses */
2649 for_each_netdev(dev_net(dev), sp_dev) {
2650 if (!strcmp(sp_dev->name, dev->name))
2651 continue;
2652
2653 idev = __in6_dev_get(sp_dev);
2654 if (!idev)
2655 continue;
2656
2657 read_lock_bh(&idev->lock);
2658 list_for_each_entry(sp_ifa, &idev->addr_list, if_list) {
2659
2660 if (sp_ifa->flags & (IFA_F_DADFAILED | IFA_F_TENTATIVE))
2661 continue;
2662
Gao fenga881ae12013-06-16 11:14:30 +08002663 if (sp_ifa->rt)
2664 continue;
2665
Balakumaran Kannan25fb6ca42013-04-02 16:15:05 +05302666 sp_rt = addrconf_dst_alloc(idev, &sp_ifa->addr, 0);
2667
2668 /* Failure cases are ignored */
Gao feng534c8772013-06-02 22:16:21 +00002669 if (!IS_ERR(sp_rt)) {
2670 sp_ifa->rt = sp_rt;
Balakumaran Kannan25fb6ca42013-04-02 16:15:05 +05302671 ip6_ins_rt(sp_rt);
Gao feng534c8772013-06-02 22:16:21 +00002672 }
Balakumaran Kannan25fb6ca42013-04-02 16:15:05 +05302673 }
2674 read_unlock_bh(&idev->lock);
2675 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002676}
2677
Eric Dumazetb71d1d42011-04-22 04:53:02 +00002678static void addrconf_add_linklocal(struct inet6_dev *idev, const struct in6_addr *addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002679{
Eldad Zack8e5e8f32012-04-01 07:49:08 +00002680 struct inet6_ifaddr *ifp;
Neil Horman95c385b2007-04-25 17:08:10 -07002681 u32 addr_flags = IFA_F_PERMANENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002682
Neil Horman95c385b2007-04-25 17:08:10 -07002683#ifdef CONFIG_IPV6_OPTIMISTIC_DAD
2684 if (idev->cnf.optimistic_dad &&
David Miller702beb82008-07-20 18:17:02 -07002685 !dev_net(idev->dev)->ipv6.devconf_all->forwarding)
Neil Horman95c385b2007-04-25 17:08:10 -07002686 addr_flags |= IFA_F_OPTIMISTIC;
2687#endif
2688
2689
Jiri Benc8a226b22013-08-01 10:41:28 +02002690 ifp = ipv6_add_addr(idev, addr, NULL, 64, IFA_LINK, addr_flags, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002691 if (!IS_ERR(ifp)) {
YOSHIFUJI Hideaki46d48042007-02-07 20:36:26 +09002692 addrconf_prefix_route(&ifp->addr, ifp->prefix_len, idev->dev, 0, 0);
David S. Millercf22f9a2012-04-14 21:37:40 -04002693 addrconf_dad_start(ifp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002694 in6_ifa_put(ifp);
2695 }
2696}
2697
2698static void addrconf_dev_config(struct net_device *dev)
2699{
2700 struct in6_addr addr;
Eldad Zack8e5e8f32012-04-01 07:49:08 +00002701 struct inet6_dev *idev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002702
2703 ASSERT_RTNL();
2704
Herbert Xu74235a22007-06-14 13:02:55 -07002705 if ((dev->type != ARPHRD_ETHER) &&
2706 (dev->type != ARPHRD_FDDI) &&
Herbert Xu74235a22007-06-14 13:02:55 -07002707 (dev->type != ARPHRD_ARCNET) &&
alex.bluesman.smirnov@gmail.com06a4c1c2012-05-10 03:25:52 +00002708 (dev->type != ARPHRD_INFINIBAND) &&
YOSHIFUJI Hideaki / 吉藤英明cb6bf352013-03-25 08:26:24 +00002709 (dev->type != ARPHRD_IEEE802154) &&
Nicolas Dichtele8377352013-08-20 12:16:06 +02002710 (dev->type != ARPHRD_IEEE1394) &&
2711 (dev->type != ARPHRD_TUNNEL6)) {
Herbert Xu74235a22007-06-14 13:02:55 -07002712 /* Alas, we support only Ethernet autoconfiguration. */
2713 return;
2714 }
2715
Linus Torvalds1da177e2005-04-16 15:20:36 -07002716 idev = addrconf_add_dev(dev);
Brian Haley64e724f2010-07-20 10:34:30 +00002717 if (IS_ERR(idev))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002718 return;
2719
2720 memset(&addr, 0, sizeof(struct in6_addr));
2721 addr.s6_addr32[0] = htonl(0xFE800000);
2722
2723 if (ipv6_generate_eui64(addr.s6_addr + 8, dev) == 0)
2724 addrconf_add_linklocal(idev, &addr);
2725}
2726
Amerigo Wang07a93622012-10-29 16:23:10 +00002727#if IS_ENABLED(CONFIG_IPV6_SIT)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002728static void addrconf_sit_config(struct net_device *dev)
2729{
2730 struct inet6_dev *idev;
2731
2732 ASSERT_RTNL();
2733
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002734 /*
2735 * Configure the tunnel with one of our IPv4
2736 * addresses... we should configure all of
Linus Torvalds1da177e2005-04-16 15:20:36 -07002737 * our v4 addrs in the tunnel
2738 */
2739
David S. Miller7eaa48a2013-08-20 23:44:39 -07002740 if ((idev = ipv6_find_idev(dev)) == NULL) {
Joe Perches91df42b2012-05-15 14:11:54 +00002741 pr_debug("%s: add_dev failed\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002742 return;
2743 }
2744
Fred L. Templinc7dc89c2007-11-29 22:11:40 +11002745 if (dev->priv_flags & IFF_ISATAP) {
2746 struct in6_addr addr;
2747
2748 ipv6_addr_set(&addr, htonl(0xFE800000), 0, 0, 0);
2749 addrconf_prefix_route(&addr, 64, dev, 0, 0);
2750 if (!ipv6_generate_eui64(addr.s6_addr + 8, dev))
2751 addrconf_add_linklocal(idev, &addr);
2752 return;
2753 }
2754
Linus Torvalds1da177e2005-04-16 15:20:36 -07002755 sit_add_v4_addrs(idev);
2756
Nicolas Dichtel62b54dd2012-10-01 23:19:14 +00002757 if (dev->flags&IFF_POINTOPOINT)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002758 addrconf_add_mroute(dev);
Nicolas Dichtel62b54dd2012-10-01 23:19:14 +00002759 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07002760 sit_route_add(dev);
2761}
Joerg Roedel0be669b2006-10-10 14:49:53 -07002762#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002763
Amerigo Wang07a93622012-10-29 16:23:10 +00002764#if IS_ENABLED(CONFIG_NET_IPGRE)
stephen hemmingeraee80b52011-06-08 10:44:30 +00002765static void addrconf_gre_config(struct net_device *dev)
2766{
2767 struct inet6_dev *idev;
2768 struct in6_addr addr;
2769
stephen hemmingeraee80b52011-06-08 10:44:30 +00002770 ASSERT_RTNL();
2771
David S. Miller7eaa48a2013-08-20 23:44:39 -07002772 if ((idev = ipv6_find_idev(dev)) == NULL) {
Joe Perches91df42b2012-05-15 14:11:54 +00002773 pr_debug("%s: add_dev failed\n", __func__);
stephen hemmingeraee80b52011-06-08 10:44:30 +00002774 return;
2775 }
2776
2777 ipv6_addr_set(&addr, htonl(0xFE800000), 0, 0, 0);
2778 addrconf_prefix_route(&addr, 64, dev, 0, 0);
2779
2780 if (!ipv6_generate_eui64(addr.s6_addr + 8, dev))
2781 addrconf_add_linklocal(idev, &addr);
2782}
2783#endif
2784
Linus Torvalds1da177e2005-04-16 15:20:36 -07002785static inline int
2786ipv6_inherit_linklocal(struct inet6_dev *idev, struct net_device *link_dev)
2787{
2788 struct in6_addr lladdr;
2789
Neil Horman95c385b2007-04-25 17:08:10 -07002790 if (!ipv6_get_lladdr(link_dev, &lladdr, IFA_F_TENTATIVE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002791 addrconf_add_linklocal(idev, &lladdr);
2792 return 0;
2793 }
2794 return -1;
2795}
2796
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002797static int addrconf_notify(struct notifier_block *this, unsigned long event,
Jiri Pirko351638e2013-05-28 01:30:21 +00002798 void *ptr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002799{
Jiri Pirko351638e2013-05-28 01:30:21 +00002800 struct net_device *dev = netdev_notifier_info_to_dev(ptr);
Eric Dumazet748e2d92012-08-22 21:50:59 +00002801 struct inet6_dev *idev = __in6_dev_get(dev);
YOSHIFUJI Hideakic5e33bd2005-12-21 22:57:44 +09002802 int run_pending = 0;
Herbert Xub217d612007-07-30 17:04:52 -07002803 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002804
Stephen Hemmingere21e8462010-03-20 16:09:01 -07002805 switch (event) {
YOSHIFUJI Hideaki45ba9dd2007-02-15 02:07:27 +09002806 case NETDEV_REGISTER:
Herbert Xu74235a22007-06-14 13:02:55 -07002807 if (!idev && dev->mtu >= IPV6_MIN_MTU) {
YOSHIFUJI Hideaki45ba9dd2007-02-15 02:07:27 +09002808 idev = ipv6_add_dev(dev);
2809 if (!idev)
Herbert Xub217d612007-07-30 17:04:52 -07002810 return notifier_from_errno(-ENOMEM);
YOSHIFUJI Hideaki45ba9dd2007-02-15 02:07:27 +09002811 }
2812 break;
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07002813
Linus Torvalds1da177e2005-04-16 15:20:36 -07002814 case NETDEV_UP:
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09002815 case NETDEV_CHANGE:
Jay Vosburghc2edacf2007-07-09 10:42:47 -07002816 if (dev->flags & IFF_SLAVE)
2817 break;
2818
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09002819 if (event == NETDEV_UP) {
Mitsuru Chinenf24e3d62007-10-10 02:53:43 -07002820 if (!addrconf_qdisc_ok(dev)) {
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09002821 /* device is not ready yet. */
Joe Perchesf3213832012-05-15 14:11:53 +00002822 pr_info("ADDRCONF(NETDEV_UP): %s: link is not ready\n",
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09002823 dev->name);
2824 break;
2825 }
Kristian Slavov99081042006-02-08 16:10:53 -08002826
Evgeniy Polyakovd31c7b82007-11-30 23:36:08 +11002827 if (!idev && dev->mtu >= IPV6_MIN_MTU)
2828 idev = ipv6_add_dev(dev);
2829
Benjamin Therye3ec6cf2008-11-05 01:43:57 -08002830 if (idev) {
Kristian Slavov99081042006-02-08 16:10:53 -08002831 idev->if_flags |= IF_READY;
Benjamin Therye3ec6cf2008-11-05 01:43:57 -08002832 run_pending = 1;
2833 }
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09002834 } else {
Mitsuru Chinenf24e3d62007-10-10 02:53:43 -07002835 if (!addrconf_qdisc_ok(dev)) {
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09002836 /* device is still not ready. */
2837 break;
2838 }
2839
2840 if (idev) {
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07002841 if (idev->if_flags & IF_READY)
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09002842 /* device is already configured. */
2843 break;
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09002844 idev->if_flags |= IF_READY;
2845 }
2846
Joe Perchesf3213832012-05-15 14:11:53 +00002847 pr_info("ADDRCONF(NETDEV_CHANGE): %s: link becomes ready\n",
2848 dev->name);
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09002849
YOSHIFUJI Hideakic5e33bd2005-12-21 22:57:44 +09002850 run_pending = 1;
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09002851 }
2852
Stephen Hemmingere21e8462010-03-20 16:09:01 -07002853 switch (dev->type) {
Amerigo Wang07a93622012-10-29 16:23:10 +00002854#if IS_ENABLED(CONFIG_IPV6_SIT)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002855 case ARPHRD_SIT:
2856 addrconf_sit_config(dev);
2857 break;
Joerg Roedel0be669b2006-10-10 14:49:53 -07002858#endif
Amerigo Wang07a93622012-10-29 16:23:10 +00002859#if IS_ENABLED(CONFIG_NET_IPGRE)
stephen hemmingeraee80b52011-06-08 10:44:30 +00002860 case ARPHRD_IPGRE:
2861 addrconf_gre_config(dev);
2862 break;
2863#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002864 case ARPHRD_LOOPBACK:
2865 init_loopback(dev);
2866 break;
2867
2868 default:
2869 addrconf_dev_config(dev);
2870 break;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07002871 }
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07002872
Linus Torvalds1da177e2005-04-16 15:20:36 -07002873 if (idev) {
YOSHIFUJI Hideakic5e33bd2005-12-21 22:57:44 +09002874 if (run_pending)
2875 addrconf_dad_run(idev);
2876
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07002877 /*
2878 * If the MTU changed during the interface down,
2879 * when the interface up, the changed MTU must be
2880 * reflected in the idev as well as routers.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002881 */
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07002882 if (idev->cnf.mtu6 != dev->mtu &&
2883 dev->mtu >= IPV6_MIN_MTU) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002884 rt6_mtu_change(dev, dev->mtu);
2885 idev->cnf.mtu6 = dev->mtu;
2886 }
2887 idev->tstamp = jiffies;
2888 inet6_ifinfo_notify(RTM_NEWLINK, idev);
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07002889
2890 /*
2891 * If the changed mtu during down is lower than
2892 * IPV6_MIN_MTU stop IPv6 on this interface.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002893 */
2894 if (dev->mtu < IPV6_MIN_MTU)
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07002895 addrconf_ifdown(dev, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002896 }
2897 break;
2898
2899 case NETDEV_CHANGEMTU:
Evgeniy Polyakovd31c7b82007-11-30 23:36:08 +11002900 if (idev && dev->mtu >= IPV6_MIN_MTU) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002901 rt6_mtu_change(dev, dev->mtu);
2902 idev->cnf.mtu6 = dev->mtu;
2903 break;
2904 }
2905
Evgeniy Polyakovd31c7b82007-11-30 23:36:08 +11002906 if (!idev && dev->mtu >= IPV6_MIN_MTU) {
2907 idev = ipv6_add_dev(dev);
2908 if (idev)
2909 break;
2910 }
2911
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07002912 /*
2913 * MTU falled under IPV6_MIN_MTU.
2914 * Stop IPv6 on this interface.
2915 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002916
2917 case NETDEV_DOWN:
2918 case NETDEV_UNREGISTER:
2919 /*
2920 * Remove all addresses from this interface.
2921 */
2922 addrconf_ifdown(dev, event != NETDEV_DOWN);
2923 break;
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09002924
Linus Torvalds1da177e2005-04-16 15:20:36 -07002925 case NETDEV_CHANGENAME:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002926 if (idev) {
Stephen Hemminger5632c512007-04-28 21:16:39 -07002927 snmp6_unregister_dev(idev);
Pavel Emelyanov408c4762008-01-10 17:41:21 -08002928 addrconf_sysctl_unregister(idev);
Pavel Emelyanovf52295a2007-12-02 00:58:37 +11002929 addrconf_sysctl_register(idev);
Herbert Xub217d612007-07-30 17:04:52 -07002930 err = snmp6_register_dev(idev);
2931 if (err)
2932 return notifier_from_errno(err);
Stephen Hemminger5632c512007-04-28 21:16:39 -07002933 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002934 break;
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07002935
Jiri Pirko93d9b7d2010-03-10 10:28:56 +00002936 case NETDEV_PRE_TYPE_CHANGE:
2937 case NETDEV_POST_TYPE_CHANGE:
2938 addrconf_type_change(dev, event);
Moni Shoua75c78502009-09-15 02:37:40 -07002939 break;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07002940 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002941
2942 return NOTIFY_OK;
2943}
2944
2945/*
2946 * addrconf module should be notified of a device going up
2947 */
2948static struct notifier_block ipv6_dev_notf = {
2949 .notifier_call = addrconf_notify,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002950};
2951
Jiri Pirko93d9b7d2010-03-10 10:28:56 +00002952static void addrconf_type_change(struct net_device *dev, unsigned long event)
Moni Shoua75c78502009-09-15 02:37:40 -07002953{
2954 struct inet6_dev *idev;
2955 ASSERT_RTNL();
2956
2957 idev = __in6_dev_get(dev);
2958
Jiri Pirko93d9b7d2010-03-10 10:28:56 +00002959 if (event == NETDEV_POST_TYPE_CHANGE)
Moni Shoua75c78502009-09-15 02:37:40 -07002960 ipv6_mc_remap(idev);
Jiri Pirko93d9b7d2010-03-10 10:28:56 +00002961 else if (event == NETDEV_PRE_TYPE_CHANGE)
Moni Shoua75c78502009-09-15 02:37:40 -07002962 ipv6_mc_unmap(idev);
2963}
2964
Linus Torvalds1da177e2005-04-16 15:20:36 -07002965static int addrconf_ifdown(struct net_device *dev, int how)
2966{
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09002967 struct net *net = dev_net(dev);
stephen hemminger502a2ff2010-03-17 20:31:13 +00002968 struct inet6_dev *idev;
2969 struct inet6_ifaddr *ifa;
David S. Miller73a8bd72011-01-23 23:27:15 -08002970 int state, i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002971
2972 ASSERT_RTNL();
2973
David S. Miller73a8bd72011-01-23 23:27:15 -08002974 rt6_ifdown(net, dev);
2975 neigh_ifdown(&nd_tbl, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002976
2977 idev = __in6_dev_get(dev);
2978 if (idev == NULL)
2979 return -ENODEV;
2980
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07002981 /*
2982 * Step 1: remove reference to ipv6 device from parent device.
2983 * Do not dev_put!
Linus Torvalds1da177e2005-04-16 15:20:36 -07002984 */
Denis V. Lunev439e2382008-04-03 13:30:17 -07002985 if (how) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002986 idev->dead = 1;
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -07002987
2988 /* protected by rtnl_lock */
Stephen Hemmingera9b3cd72011-08-01 16:19:00 +00002989 RCU_INIT_POINTER(dev->ip6_ptr, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002990
2991 /* Step 1.5: remove snmp6 entry */
2992 snmp6_unregister_dev(idev);
2993
2994 }
2995
David S. Miller73a8bd72011-01-23 23:27:15 -08002996 /* Step 2: clear hash table */
2997 for (i = 0; i < IN6_ADDR_HSIZE; i++) {
2998 struct hlist_head *h = &inet6_addr_lst[i];
David S. Miller73a8bd72011-01-23 23:27:15 -08002999
3000 spin_lock_bh(&addrconf_hash_lock);
3001 restart:
Sasha Levinb67bfe02013-02-27 17:06:00 -08003002 hlist_for_each_entry_rcu(ifa, h, addr_lst) {
David S. Miller73a8bd72011-01-23 23:27:15 -08003003 if (ifa->idev == idev) {
3004 hlist_del_init_rcu(&ifa->addr_lst);
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003005 addrconf_del_dad_timer(ifa);
David S. Miller73a8bd72011-01-23 23:27:15 -08003006 goto restart;
3007 }
3008 }
3009 spin_unlock_bh(&addrconf_hash_lock);
3010 }
3011
Linus Torvalds1da177e2005-04-16 15:20:36 -07003012 write_lock_bh(&idev->lock);
3013
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003014 addrconf_del_rs_timer(idev);
3015
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07003016 /* Step 2: clear flags for stateless addrconf */
Denis V. Lunev439e2382008-04-03 13:30:17 -07003017 if (!how)
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09003018 idev->if_flags &= ~(IF_RS_SENT|IF_RA_RCVD|IF_READY);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003019
Linus Torvalds1da177e2005-04-16 15:20:36 -07003020#ifdef CONFIG_IPV6_PRIVACY
Denis V. Lunev439e2382008-04-03 13:30:17 -07003021 if (how && del_timer(&idev->regen_timer))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003022 in6_dev_put(idev);
3023
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07003024 /* Step 3: clear tempaddr list */
stephen hemminger372e6c82010-03-17 20:31:09 +00003025 while (!list_empty(&idev->tempaddr_list)) {
3026 ifa = list_first_entry(&idev->tempaddr_list,
3027 struct inet6_ifaddr, tmp_list);
3028 list_del(&ifa->tmp_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003029 write_unlock_bh(&idev->lock);
3030 spin_lock_bh(&ifa->lock);
3031
3032 if (ifa->ifpub) {
3033 in6_ifa_put(ifa->ifpub);
3034 ifa->ifpub = NULL;
3035 }
3036 spin_unlock_bh(&ifa->lock);
3037 in6_ifa_put(ifa);
3038 write_lock_bh(&idev->lock);
3039 }
3040#endif
stephen hemminger8f37ada2010-03-03 08:19:59 +00003041
stephen hemminger502a2ff2010-03-17 20:31:13 +00003042 while (!list_empty(&idev->addr_list)) {
3043 ifa = list_first_entry(&idev->addr_list,
3044 struct inet6_ifaddr, if_list);
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003045 addrconf_del_dad_timer(ifa);
stephen hemminger84e8b802010-03-02 13:32:46 +00003046
David S. Miller73a8bd72011-01-23 23:27:15 -08003047 list_del(&ifa->if_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003048
David S. Miller73a8bd72011-01-23 23:27:15 -08003049 write_unlock_bh(&idev->lock);
stephen hemminger84e8b802010-03-02 13:32:46 +00003050
David S. Miller73a8bd72011-01-23 23:27:15 -08003051 spin_lock_bh(&ifa->state_lock);
3052 state = ifa->state;
3053 ifa->state = INET6_IFADDR_STATE_DEAD;
3054 spin_unlock_bh(&ifa->state_lock);
stephen hemminger84e8b802010-03-02 13:32:46 +00003055
David S. Miller73a8bd72011-01-23 23:27:15 -08003056 if (state != INET6_IFADDR_STATE_DEAD) {
3057 __ipv6_ifa_notify(RTM_DELADDR, ifa);
Cong Wangf88c91d2013-04-14 23:18:43 +08003058 inet6addr_notifier_call_chain(NETDEV_DOWN, ifa);
stephen hemminger27bdb2a2010-04-12 05:41:32 +00003059 }
David S. Miller73a8bd72011-01-23 23:27:15 -08003060 in6_ifa_put(ifa);
stephen hemminger8f37ada2010-03-03 08:19:59 +00003061
David S. Miller73a8bd72011-01-23 23:27:15 -08003062 write_lock_bh(&idev->lock);
3063 }
stephen hemminger8f37ada2010-03-03 08:19:59 +00003064
Linus Torvalds1da177e2005-04-16 15:20:36 -07003065 write_unlock_bh(&idev->lock);
3066
3067 /* Step 5: Discard multicast list */
Denis V. Lunev439e2382008-04-03 13:30:17 -07003068 if (how)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003069 ipv6_mc_destroy_dev(idev);
3070 else
3071 ipv6_mc_down(idev);
3072
Linus Torvalds1da177e2005-04-16 15:20:36 -07003073 idev->tstamp = jiffies;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09003074
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07003075 /* Last: Shot the device (if unregistered) */
Denis V. Lunev439e2382008-04-03 13:30:17 -07003076 if (how) {
Pavel Emelyanov408c4762008-01-10 17:41:21 -08003077 addrconf_sysctl_unregister(idev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003078 neigh_parms_release(&nd_tbl, idev->nd_parms);
3079 neigh_ifdown(&nd_tbl, dev);
3080 in6_dev_put(idev);
3081 }
3082 return 0;
3083}
3084
3085static void addrconf_rs_timer(unsigned long data)
3086{
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003087 struct inet6_dev *idev = (struct inet6_dev *)data;
Cong Wangcaf92bc2013-08-31 13:44:32 +08003088 struct net_device *dev = idev->dev;
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003089 struct in6_addr lladdr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003090
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003091 write_lock(&idev->lock);
stephen hemminger5b2a1952010-03-02 13:32:45 +00003092 if (idev->dead || !(idev->if_flags & IF_READY))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003093 goto out;
3094
Shmulik Ladkani9ba2add2012-12-02 01:44:53 +00003095 if (!ipv6_accept_ra(idev))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003096 goto out;
stephen hemminger5b2a1952010-03-02 13:32:45 +00003097
3098 /* Announcement received after solicitation was sent */
3099 if (idev->if_flags & IF_RA_RCVD)
3100 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003101
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003102 if (idev->rs_probes++ < idev->cnf.rtr_solicits) {
Cong Wangcaf92bc2013-08-31 13:44:32 +08003103 write_unlock(&idev->lock);
3104 if (!ipv6_get_lladdr(dev, &lladdr, IFA_F_TENTATIVE))
3105 ndisc_send_rs(dev, &lladdr,
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003106 &in6addr_linklocal_allrouters);
3107 else
Cong Wangcaf92bc2013-08-31 13:44:32 +08003108 goto put;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003109
Cong Wangcaf92bc2013-08-31 13:44:32 +08003110 write_lock(&idev->lock);
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003111 /* The wait after the last probe can be shorter */
3112 addrconf_mod_rs_timer(idev, (idev->rs_probes ==
3113 idev->cnf.rtr_solicits) ?
3114 idev->cnf.rtr_solicit_delay :
3115 idev->cnf.rtr_solicit_interval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003116 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003117 /*
3118 * Note: we do not support deprecated "all on-link"
3119 * assumption any longer.
3120 */
Joe Perches91df42b2012-05-15 14:11:54 +00003121 pr_debug("%s: no IPv6 routers present\n", idev->dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003122 }
3123
3124out:
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003125 write_unlock(&idev->lock);
Cong Wangcaf92bc2013-08-31 13:44:32 +08003126put:
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003127 in6_dev_put(idev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003128}
3129
3130/*
3131 * Duplicate Address Detection
3132 */
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09003133static void addrconf_dad_kick(struct inet6_ifaddr *ifp)
3134{
3135 unsigned long rand_num;
3136 struct inet6_dev *idev = ifp->idev;
3137
Neil Horman95c385b2007-04-25 17:08:10 -07003138 if (ifp->flags & IFA_F_OPTIMISTIC)
3139 rand_num = 0;
3140 else
3141 rand_num = net_random() % (idev->cnf.rtr_solicit_delay ? : 1);
3142
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003143 ifp->dad_probes = idev->cnf.dad_transmits;
3144 addrconf_mod_dad_timer(ifp, rand_num);
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09003145}
3146
David S. Millercf22f9a2012-04-14 21:37:40 -04003147static void addrconf_dad_start(struct inet6_ifaddr *ifp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003148{
3149 struct inet6_dev *idev = ifp->idev;
3150 struct net_device *dev = idev->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003151
3152 addrconf_join_solict(dev, &ifp->addr);
3153
Linus Torvalds1da177e2005-04-16 15:20:36 -07003154 net_srandom(ifp->addr.s6_addr32[3]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003155
3156 read_lock_bh(&idev->lock);
Herbert Xu622ccdf2010-05-18 15:56:06 -07003157 spin_lock(&ifp->lock);
Herbert Xue9d3e082010-05-18 15:36:06 -07003158 if (ifp->state == INET6_IFADDR_STATE_DEAD)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003159 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003160
3161 if (dev->flags&(IFF_NOARP|IFF_LOOPBACK) ||
YOSHIFUJI Hideaki1b34be72008-06-28 14:18:38 +09003162 idev->cnf.accept_dad < 1 ||
Noriaki TAKAMIYA55ebaef2006-09-22 14:45:27 -07003163 !(ifp->flags&IFA_F_TENTATIVE) ||
3164 ifp->flags & IFA_F_NODAD) {
Brian Haleycc411d02009-09-09 14:41:32 +00003165 ifp->flags &= ~(IFA_F_TENTATIVE|IFA_F_OPTIMISTIC|IFA_F_DADFAILED);
stephen hemminger21809fa2010-02-08 19:48:52 +00003166 spin_unlock(&ifp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003167 read_unlock_bh(&idev->lock);
3168
3169 addrconf_dad_completed(ifp);
3170 return;
3171 }
3172
YOSHIFUJI Hideaki6732bad2005-12-27 13:35:15 -08003173 if (!(idev->if_flags & IF_READY)) {
stephen hemminger21809fa2010-02-08 19:48:52 +00003174 spin_unlock(&ifp->lock);
YOSHIFUJI Hideaki6732bad2005-12-27 13:35:15 -08003175 read_unlock_bh(&idev->lock);
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09003176 /*
Masatake YAMATO590a9882009-06-09 10:41:12 +09003177 * If the device is not ready:
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09003178 * - keep it tentative if it is a permanent address.
3179 * - otherwise, kill it.
3180 */
3181 in6_ifa_hold(ifp);
Brian Haleycc411d02009-09-09 14:41:32 +00003182 addrconf_dad_stop(ifp, 0);
YOSHIFUJI Hideaki6732bad2005-12-27 13:35:15 -08003183 return;
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09003184 }
Neil Horman95c385b2007-04-25 17:08:10 -07003185
3186 /*
3187 * Optimistic nodes can start receiving
3188 * Frames right away
3189 */
Stephen Hemmingere21e8462010-03-20 16:09:01 -07003190 if (ifp->flags & IFA_F_OPTIMISTIC)
Neil Horman95c385b2007-04-25 17:08:10 -07003191 ip6_ins_rt(ifp->rt);
3192
YOSHIFUJI Hideaki6732bad2005-12-27 13:35:15 -08003193 addrconf_dad_kick(ifp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003194out:
Herbert Xu622ccdf2010-05-18 15:56:06 -07003195 spin_unlock(&ifp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003196 read_unlock_bh(&idev->lock);
3197}
3198
3199static void addrconf_dad_timer(unsigned long data)
3200{
3201 struct inet6_ifaddr *ifp = (struct inet6_ifaddr *) data;
3202 struct inet6_dev *idev = ifp->idev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003203 struct in6_addr mcaddr;
3204
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003205 if (!ifp->dad_probes && addrconf_dad_end(ifp))
Herbert Xuf2344a12010-05-18 15:55:27 -07003206 goto out;
3207
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003208 write_lock(&idev->lock);
stephen hemminger122e4512010-03-02 13:32:44 +00003209 if (idev->dead || !(idev->if_flags & IF_READY)) {
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003210 write_unlock(&idev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003211 goto out;
3212 }
stephen hemminger21809fa2010-02-08 19:48:52 +00003213
3214 spin_lock(&ifp->lock);
Herbert Xu622ccdf2010-05-18 15:56:06 -07003215 if (ifp->state == INET6_IFADDR_STATE_DEAD) {
3216 spin_unlock(&ifp->lock);
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003217 write_unlock(&idev->lock);
Herbert Xu622ccdf2010-05-18 15:56:06 -07003218 goto out;
3219 }
3220
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003221 if (ifp->dad_probes == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003222 /*
3223 * DAD was successful
3224 */
3225
Brian Haleycc411d02009-09-09 14:41:32 +00003226 ifp->flags &= ~(IFA_F_TENTATIVE|IFA_F_OPTIMISTIC|IFA_F_DADFAILED);
stephen hemminger21809fa2010-02-08 19:48:52 +00003227 spin_unlock(&ifp->lock);
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003228 write_unlock(&idev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003229
3230 addrconf_dad_completed(ifp);
3231
3232 goto out;
3233 }
3234
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003235 ifp->dad_probes--;
3236 addrconf_mod_dad_timer(ifp, ifp->idev->nd_parms->retrans_time);
stephen hemminger21809fa2010-02-08 19:48:52 +00003237 spin_unlock(&ifp->lock);
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003238 write_unlock(&idev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003239
3240 /* send a neighbour solicitation for our addr */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003241 addrconf_addr_solict_mult(&ifp->addr, &mcaddr);
YOSHIFUJI Hideakid7aabf22008-04-10 15:42:11 +09003242 ndisc_send_ns(ifp->idev->dev, NULL, &ifp->addr, &mcaddr, &in6addr_any);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003243out:
3244 in6_ifa_put(ifp);
3245}
3246
3247static void addrconf_dad_completed(struct inet6_ifaddr *ifp)
3248{
Stephen Hemmingere21e8462010-03-20 16:09:01 -07003249 struct net_device *dev = ifp->idev->dev;
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003250 struct in6_addr lladdr;
Hannes Frederic Sowab173ee42013-06-27 00:07:01 +02003251 bool send_rs, send_mld;
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003252
3253 addrconf_del_dad_timer(ifp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003254
3255 /*
3256 * Configure the address for reception. Now it is valid.
3257 */
3258
3259 ipv6_ifa_notify(RTM_NEWADDR, ifp);
3260
Tore Anderson026359b2011-08-28 23:47:33 +00003261 /* If added prefix is link local and we are prepared to process
3262 router advertisements, start sending router solicitations.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003263 */
3264
Hannes Frederic Sowa1ec047e2013-06-27 00:06:56 +02003265 read_lock_bh(&ifp->idev->lock);
3266 spin_lock(&ifp->lock);
Hannes Frederic Sowab173ee42013-06-27 00:07:01 +02003267 send_mld = ipv6_addr_type(&ifp->addr) & IPV6_ADDR_LINKLOCAL &&
3268 ifp->idev->valid_ll_addr_cnt == 1;
3269 send_rs = send_mld &&
3270 ipv6_accept_ra(ifp->idev) &&
Hannes Frederic Sowa1ec047e2013-06-27 00:06:56 +02003271 ifp->idev->cnf.rtr_solicits > 0 &&
Hannes Frederic Sowab173ee42013-06-27 00:07:01 +02003272 (dev->flags&IFF_LOOPBACK) == 0;
Hannes Frederic Sowa1ec047e2013-06-27 00:06:56 +02003273 spin_unlock(&ifp->lock);
3274 read_unlock_bh(&ifp->idev->lock);
3275
Hannes Frederic Sowab173ee42013-06-27 00:07:01 +02003276 /* While dad is in progress mld report's source address is in6_addrany.
3277 * Resend with proper ll now.
3278 */
3279 if (send_mld)
3280 ipv6_mc_dad_complete(ifp->idev);
3281
Hannes Frederic Sowa1ec047e2013-06-27 00:06:56 +02003282 if (send_rs) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003283 /*
3284 * If a host as already performed a random delay
3285 * [...] as part of DAD [...] there is no need
3286 * to delay again before sending the first RS
3287 */
Hannes Frederic Sowa1ec047e2013-06-27 00:06:56 +02003288 if (ipv6_get_lladdr(dev, &lladdr, IFA_F_TENTATIVE))
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003289 return;
Hannes Frederic Sowa1ec047e2013-06-27 00:06:56 +02003290 ndisc_send_rs(dev, &lladdr, &in6addr_linklocal_allrouters);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003291
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003292 write_lock_bh(&ifp->idev->lock);
3293 spin_lock(&ifp->lock);
3294 ifp->idev->rs_probes = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003295 ifp->idev->if_flags |= IF_RS_SENT;
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003296 addrconf_mod_rs_timer(ifp->idev,
3297 ifp->idev->cnf.rtr_solicit_interval);
3298 spin_unlock(&ifp->lock);
3299 write_unlock_bh(&ifp->idev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003300 }
3301}
3302
Stephen Hemmingere21e8462010-03-20 16:09:01 -07003303static void addrconf_dad_run(struct inet6_dev *idev)
3304{
YOSHIFUJI Hideakic5e33bd2005-12-21 22:57:44 +09003305 struct inet6_ifaddr *ifp;
3306
3307 read_lock_bh(&idev->lock);
stephen hemminger502a2ff2010-03-17 20:31:13 +00003308 list_for_each_entry(ifp, &idev->addr_list, if_list) {
stephen hemminger21809fa2010-02-08 19:48:52 +00003309 spin_lock(&ifp->lock);
Herbert Xuf2344a12010-05-18 15:55:27 -07003310 if (ifp->flags & IFA_F_TENTATIVE &&
3311 ifp->state == INET6_IFADDR_STATE_DAD)
3312 addrconf_dad_kick(ifp);
stephen hemminger21809fa2010-02-08 19:48:52 +00003313 spin_unlock(&ifp->lock);
YOSHIFUJI Hideakic5e33bd2005-12-21 22:57:44 +09003314 }
3315 read_unlock_bh(&idev->lock);
3316}
3317
Linus Torvalds1da177e2005-04-16 15:20:36 -07003318#ifdef CONFIG_PROC_FS
3319struct if6_iter_state {
Daniel Lezcano3c400902008-01-10 22:42:49 -08003320 struct seq_net_private p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003321 int bucket;
Mihai Maruseac1d578302012-01-03 23:31:35 +00003322 int offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003323};
3324
Mihai Maruseac1d578302012-01-03 23:31:35 +00003325static struct inet6_ifaddr *if6_get_first(struct seq_file *seq, loff_t pos)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003326{
3327 struct inet6_ifaddr *ifa = NULL;
3328 struct if6_iter_state *state = seq->private;
YOSHIFUJI Hideaki12188542008-03-26 02:36:06 +09003329 struct net *net = seq_file_net(seq);
Mihai Maruseac1d578302012-01-03 23:31:35 +00003330 int p = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003331
Mihai Maruseac1d578302012-01-03 23:31:35 +00003332 /* initial bucket if pos is 0 */
3333 if (pos == 0) {
3334 state->bucket = 0;
3335 state->offset = 0;
3336 }
3337
3338 for (; state->bucket < IN6_ADDR_HSIZE; ++state->bucket) {
Sasha Levinb67bfe02013-02-27 17:06:00 -08003339 hlist_for_each_entry_rcu_bh(ifa, &inet6_addr_lst[state->bucket],
Mihai Maruseac1d578302012-01-03 23:31:35 +00003340 addr_lst) {
Eric Dumazet9f0d3c22012-10-16 07:37:27 +00003341 if (!net_eq(dev_net(ifa->idev->dev), net))
3342 continue;
Mihai Maruseac1d578302012-01-03 23:31:35 +00003343 /* sync with offset */
3344 if (p < state->offset) {
3345 p++;
3346 continue;
3347 }
3348 state->offset++;
Eric Dumazet9f0d3c22012-10-16 07:37:27 +00003349 return ifa;
Mihai Maruseac1d578302012-01-03 23:31:35 +00003350 }
3351
3352 /* prepare for next bucket */
3353 state->offset = 0;
3354 p = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003355 }
stephen hemmingerc2e21292010-03-17 20:31:10 +00003356 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003357}
3358
stephen hemmingerc2e21292010-03-17 20:31:10 +00003359static struct inet6_ifaddr *if6_get_next(struct seq_file *seq,
3360 struct inet6_ifaddr *ifa)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003361{
3362 struct if6_iter_state *state = seq->private;
YOSHIFUJI Hideaki12188542008-03-26 02:36:06 +09003363 struct net *net = seq_file_net(seq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003364
Sasha Levinb67bfe02013-02-27 17:06:00 -08003365 hlist_for_each_entry_continue_rcu_bh(ifa, addr_lst) {
Eric Dumazet9f0d3c22012-10-16 07:37:27 +00003366 if (!net_eq(dev_net(ifa->idev->dev), net))
3367 continue;
Mihai Maruseac1d578302012-01-03 23:31:35 +00003368 state->offset++;
Eric Dumazet9f0d3c22012-10-16 07:37:27 +00003369 return ifa;
Mihai Maruseac1d578302012-01-03 23:31:35 +00003370 }
stephen hemmingerc2e21292010-03-17 20:31:10 +00003371
3372 while (++state->bucket < IN6_ADDR_HSIZE) {
Mihai Maruseac1d578302012-01-03 23:31:35 +00003373 state->offset = 0;
Sasha Levinb67bfe02013-02-27 17:06:00 -08003374 hlist_for_each_entry_rcu_bh(ifa,
stephen hemmingerc2e21292010-03-17 20:31:10 +00003375 &inet6_addr_lst[state->bucket], addr_lst) {
Eric Dumazet9f0d3c22012-10-16 07:37:27 +00003376 if (!net_eq(dev_net(ifa->idev->dev), net))
3377 continue;
Mihai Maruseac1d578302012-01-03 23:31:35 +00003378 state->offset++;
Eric Dumazet9f0d3c22012-10-16 07:37:27 +00003379 return ifa;
Daniel Lezcano3c400902008-01-10 22:42:49 -08003380 }
3381 }
3382
stephen hemmingerc2e21292010-03-17 20:31:10 +00003383 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003384}
3385
Linus Torvalds1da177e2005-04-16 15:20:36 -07003386static void *if6_seq_start(struct seq_file *seq, loff_t *pos)
Eric Dumazet4f70ecc2010-05-03 10:50:14 +00003387 __acquires(rcu_bh)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003388{
stephen hemminger5c578ae2010-03-17 20:31:11 +00003389 rcu_read_lock_bh();
Mihai Maruseac1d578302012-01-03 23:31:35 +00003390 return if6_get_first(seq, *pos);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003391}
3392
3393static void *if6_seq_next(struct seq_file *seq, void *v, loff_t *pos)
3394{
3395 struct inet6_ifaddr *ifa;
3396
3397 ifa = if6_get_next(seq, v);
3398 ++*pos;
3399 return ifa;
3400}
3401
3402static void if6_seq_stop(struct seq_file *seq, void *v)
Eric Dumazet4f70ecc2010-05-03 10:50:14 +00003403 __releases(rcu_bh)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003404{
stephen hemminger5c578ae2010-03-17 20:31:11 +00003405 rcu_read_unlock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003406}
3407
3408static int if6_seq_show(struct seq_file *seq, void *v)
3409{
3410 struct inet6_ifaddr *ifp = (struct inet6_ifaddr *)v;
Harvey Harrison4b7a4272008-10-29 12:50:24 -07003411 seq_printf(seq, "%pi6 %02x %02x %02x %02x %8s\n",
Harvey Harrisonb0711952008-10-28 16:05:40 -07003412 &ifp->addr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003413 ifp->idev->dev->ifindex,
3414 ifp->prefix_len,
3415 ifp->scope,
3416 ifp->flags,
3417 ifp->idev->dev->name);
3418 return 0;
3419}
3420
Philippe De Muyter56b3d972007-07-10 23:07:31 -07003421static const struct seq_operations if6_seq_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003422 .start = if6_seq_start,
3423 .next = if6_seq_next,
3424 .show = if6_seq_show,
3425 .stop = if6_seq_stop,
3426};
3427
3428static int if6_seq_open(struct inode *inode, struct file *file)
3429{
Daniel Lezcano3c400902008-01-10 22:42:49 -08003430 return seq_open_net(inode, file, &if6_seq_ops,
3431 sizeof(struct if6_iter_state));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003432}
3433
Arjan van de Ven9a321442007-02-12 00:55:35 -08003434static const struct file_operations if6_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003435 .owner = THIS_MODULE,
3436 .open = if6_seq_open,
3437 .read = seq_read,
3438 .llseek = seq_lseek,
Daniel Lezcano3c400902008-01-10 22:42:49 -08003439 .release = seq_release_net,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003440};
3441
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00003442static int __net_init if6_proc_net_init(struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003443{
Gao fengd4beaa62013-02-18 01:34:54 +00003444 if (!proc_create("if_inet6", S_IRUGO, net->proc_net, &if6_fops))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003445 return -ENOMEM;
3446 return 0;
3447}
3448
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00003449static void __net_exit if6_proc_net_exit(struct net *net)
Daniel Lezcano3c400902008-01-10 22:42:49 -08003450{
Gao fengece31ff2013-02-18 01:34:56 +00003451 remove_proc_entry("if_inet6", net->proc_net);
Daniel Lezcano3c400902008-01-10 22:42:49 -08003452}
3453
3454static struct pernet_operations if6_proc_net_ops = {
3455 .init = if6_proc_net_init,
3456 .exit = if6_proc_net_exit,
3457};
3458
3459int __init if6_proc_init(void)
3460{
3461 return register_pernet_subsys(&if6_proc_net_ops);
3462}
3463
Linus Torvalds1da177e2005-04-16 15:20:36 -07003464void if6_proc_exit(void)
3465{
Daniel Lezcano3c400902008-01-10 22:42:49 -08003466 unregister_pernet_subsys(&if6_proc_net_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003467}
3468#endif /* CONFIG_PROC_FS */
3469
Amerigo Wang07a93622012-10-29 16:23:10 +00003470#if IS_ENABLED(CONFIG_IPV6_MIP6)
Noriaki TAKAMIYA3b9f9a12006-09-22 14:45:56 -07003471/* Check if address is a home address configured on any interface. */
Eric Dumazetb71d1d42011-04-22 04:53:02 +00003472int ipv6_chk_home_addr(struct net *net, const struct in6_addr *addr)
Noriaki TAKAMIYA3b9f9a12006-09-22 14:45:56 -07003473{
3474 int ret = 0;
stephen hemmingerc2e21292010-03-17 20:31:10 +00003475 struct inet6_ifaddr *ifp = NULL;
Eric Dumazetddbe5032012-07-18 08:11:12 +00003476 unsigned int hash = inet6_addr_hash(addr);
stephen hemmingerc2e21292010-03-17 20:31:10 +00003477
stephen hemminger5c578ae2010-03-17 20:31:11 +00003478 rcu_read_lock_bh();
Sasha Levinb67bfe02013-02-27 17:06:00 -08003479 hlist_for_each_entry_rcu_bh(ifp, &inet6_addr_lst[hash], addr_lst) {
YOSHIFUJI Hideaki878628f2008-03-26 03:57:35 +09003480 if (!net_eq(dev_net(ifp->idev->dev), net))
Daniel Lezcano389f6612008-01-10 22:44:40 -08003481 continue;
YOSHIFUJI Hideakicaad2952008-04-10 15:42:07 +09003482 if (ipv6_addr_equal(&ifp->addr, addr) &&
Noriaki TAKAMIYA3b9f9a12006-09-22 14:45:56 -07003483 (ifp->flags & IFA_F_HOMEADDRESS)) {
3484 ret = 1;
3485 break;
3486 }
3487 }
stephen hemminger5c578ae2010-03-17 20:31:11 +00003488 rcu_read_unlock_bh();
Noriaki TAKAMIYA3b9f9a12006-09-22 14:45:56 -07003489 return ret;
3490}
3491#endif
3492
Linus Torvalds1da177e2005-04-16 15:20:36 -07003493/*
3494 * Periodic address status verification
3495 */
3496
3497static void addrconf_verify(unsigned long foo)
3498{
YOSHIFUJI Hideakib2db7562010-03-20 16:11:12 -07003499 unsigned long now, next, next_sec, next_sched;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003500 struct inet6_ifaddr *ifp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003501 int i;
3502
stephen hemminger5c578ae2010-03-17 20:31:11 +00003503 rcu_read_lock_bh();
3504 spin_lock(&addrconf_verify_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003505 now = jiffies;
YOSHIFUJI Hideakib2db7562010-03-20 16:11:12 -07003506 next = round_jiffies_up(now + ADDR_CHECK_FREQUENCY);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003507
3508 del_timer(&addr_chk_timer);
3509
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07003510 for (i = 0; i < IN6_ADDR_HSIZE; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003511restart:
Sasha Levinb67bfe02013-02-27 17:06:00 -08003512 hlist_for_each_entry_rcu_bh(ifp,
stephen hemminger5c578ae2010-03-17 20:31:11 +00003513 &inet6_addr_lst[i], addr_lst) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003514 unsigned long age;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003515
3516 if (ifp->flags & IFA_F_PERMANENT)
3517 continue;
3518
3519 spin_lock(&ifp->lock);
YOSHIFUJI Hideakib2db7562010-03-20 16:11:12 -07003520 /* We try to batch several events at once. */
3521 age = (now - ifp->tstamp + ADDRCONF_TIMER_FUZZ_MINUS) / HZ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003522
YOSHIFUJI Hideaki8f27ebb2006-07-28 18:12:11 +09003523 if (ifp->valid_lft != INFINITY_LIFE_TIME &&
3524 age >= ifp->valid_lft) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003525 spin_unlock(&ifp->lock);
3526 in6_ifa_hold(ifp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003527 ipv6_del_addr(ifp);
3528 goto restart;
YOSHIFUJI Hideaki8f27ebb2006-07-28 18:12:11 +09003529 } else if (ifp->prefered_lft == INFINITY_LIFE_TIME) {
3530 spin_unlock(&ifp->lock);
3531 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003532 } else if (age >= ifp->prefered_lft) {
Brian Haleya1ed0522009-07-02 07:10:52 +00003533 /* jiffies - ifp->tstamp > age >= ifp->prefered_lft */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003534 int deprecate = 0;
3535
3536 if (!(ifp->flags&IFA_F_DEPRECATED)) {
3537 deprecate = 1;
3538 ifp->flags |= IFA_F_DEPRECATED;
3539 }
3540
3541 if (time_before(ifp->tstamp + ifp->valid_lft * HZ, next))
3542 next = ifp->tstamp + ifp->valid_lft * HZ;
3543
3544 spin_unlock(&ifp->lock);
3545
3546 if (deprecate) {
3547 in6_ifa_hold(ifp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003548
3549 ipv6_ifa_notify(0, ifp);
3550 in6_ifa_put(ifp);
3551 goto restart;
3552 }
3553#ifdef CONFIG_IPV6_PRIVACY
3554 } else if ((ifp->flags&IFA_F_TEMPORARY) &&
3555 !(ifp->flags&IFA_F_TENTATIVE)) {
stephen hemminger88949cf2010-03-17 20:31:17 +00003556 unsigned long regen_advance = ifp->idev->cnf.regen_max_retry *
3557 ifp->idev->cnf.dad_transmits *
3558 ifp->idev->nd_parms->retrans_time / HZ;
3559
Linus Torvalds1da177e2005-04-16 15:20:36 -07003560 if (age >= ifp->prefered_lft - regen_advance) {
3561 struct inet6_ifaddr *ifpub = ifp->ifpub;
3562 if (time_before(ifp->tstamp + ifp->prefered_lft * HZ, next))
3563 next = ifp->tstamp + ifp->prefered_lft * HZ;
3564 if (!ifp->regen_count && ifpub) {
3565 ifp->regen_count++;
3566 in6_ifa_hold(ifp);
3567 in6_ifa_hold(ifpub);
3568 spin_unlock(&ifp->lock);
stephen hemminger5c578ae2010-03-17 20:31:11 +00003569
Hiroyuki YAMAMORI291d8092005-12-23 11:24:05 -08003570 spin_lock(&ifpub->lock);
3571 ifpub->regen_count = 0;
3572 spin_unlock(&ifpub->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003573 ipv6_create_tempaddr(ifpub, ifp);
3574 in6_ifa_put(ifpub);
3575 in6_ifa_put(ifp);
3576 goto restart;
3577 }
3578 } else if (time_before(ifp->tstamp + ifp->prefered_lft * HZ - regen_advance * HZ, next))
3579 next = ifp->tstamp + ifp->prefered_lft * HZ - regen_advance * HZ;
3580 spin_unlock(&ifp->lock);
3581#endif
3582 } else {
3583 /* ifp->prefered_lft <= ifp->valid_lft */
3584 if (time_before(ifp->tstamp + ifp->prefered_lft * HZ, next))
3585 next = ifp->tstamp + ifp->prefered_lft * HZ;
3586 spin_unlock(&ifp->lock);
3587 }
3588 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003589 }
3590
YOSHIFUJI Hideakib2db7562010-03-20 16:11:12 -07003591 next_sec = round_jiffies_up(next);
3592 next_sched = next;
3593
3594 /* If rounded timeout is accurate enough, accept it. */
3595 if (time_before(next_sec, next + ADDRCONF_TIMER_FUZZ))
3596 next_sched = next_sec;
3597
3598 /* And minimum interval is ADDRCONF_TIMER_FUZZ_MAX. */
3599 if (time_before(next_sched, jiffies + ADDRCONF_TIMER_FUZZ_MAX))
3600 next_sched = jiffies + ADDRCONF_TIMER_FUZZ_MAX;
3601
dingtianhongba3542e2013-08-17 10:27:04 +08003602 ADBG(KERN_DEBUG "now = %lu, schedule = %lu, rounded schedule = %lu => %lu\n",
3603 now, next, next_sec, next_sched);
YOSHIFUJI Hideakib2db7562010-03-20 16:11:12 -07003604
3605 addr_chk_timer.expires = next_sched;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003606 add_timer(&addr_chk_timer);
stephen hemminger5c578ae2010-03-17 20:31:11 +00003607 spin_unlock(&addrconf_verify_lock);
3608 rcu_read_unlock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003609}
3610
Nicolas Dichtelcaeaba72013-05-16 22:32:00 +00003611static struct in6_addr *extract_addr(struct nlattr *addr, struct nlattr *local,
3612 struct in6_addr **peer_pfx)
Thomas Graf461d8832006-09-18 00:09:49 -07003613{
3614 struct in6_addr *pfx = NULL;
3615
Nicolas Dichtelcaeaba72013-05-16 22:32:00 +00003616 *peer_pfx = NULL;
3617
Thomas Graf461d8832006-09-18 00:09:49 -07003618 if (addr)
3619 pfx = nla_data(addr);
3620
3621 if (local) {
3622 if (pfx && nla_memcmp(local, pfx, sizeof(*pfx)))
Nicolas Dichtelcaeaba72013-05-16 22:32:00 +00003623 *peer_pfx = pfx;
3624 pfx = nla_data(local);
Thomas Graf461d8832006-09-18 00:09:49 -07003625 }
3626
3627 return pfx;
3628}
3629
Patrick McHardyef7c79e2007-06-05 12:38:30 -07003630static const struct nla_policy ifa_ipv6_policy[IFA_MAX+1] = {
Thomas Graf461d8832006-09-18 00:09:49 -07003631 [IFA_ADDRESS] = { .len = sizeof(struct in6_addr) },
3632 [IFA_LOCAL] = { .len = sizeof(struct in6_addr) },
3633 [IFA_CACHEINFO] = { .len = sizeof(struct ifa_cacheinfo) },
3634};
3635
Linus Torvalds1da177e2005-04-16 15:20:36 -07003636static int
Thomas Graf661d2962013-03-21 07:45:29 +00003637inet6_rtm_deladdr(struct sk_buff *skb, struct nlmsghdr *nlh)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003638{
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09003639 struct net *net = sock_net(skb->sk);
Thomas Grafb933f712006-09-18 00:10:19 -07003640 struct ifaddrmsg *ifm;
3641 struct nlattr *tb[IFA_MAX+1];
Nicolas Dichtelcaeaba72013-05-16 22:32:00 +00003642 struct in6_addr *pfx, *peer_pfx;
Thomas Grafb933f712006-09-18 00:10:19 -07003643 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003644
Thomas Grafb933f712006-09-18 00:10:19 -07003645 err = nlmsg_parse(nlh, sizeof(*ifm), tb, IFA_MAX, ifa_ipv6_policy);
3646 if (err < 0)
3647 return err;
3648
3649 ifm = nlmsg_data(nlh);
Nicolas Dichtelcaeaba72013-05-16 22:32:00 +00003650 pfx = extract_addr(tb[IFA_ADDRESS], tb[IFA_LOCAL], &peer_pfx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003651 if (pfx == NULL)
3652 return -EINVAL;
3653
Daniel Lezcanoaf284932008-03-05 10:46:57 -08003654 return inet6_addr_del(net, ifm->ifa_index, pfx, ifm->ifa_prefixlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003655}
3656
Noriaki TAKAMIYA55ebaef2006-09-22 14:45:27 -07003657static int inet6_addr_modify(struct inet6_ifaddr *ifp, u8 ifa_flags,
3658 u32 prefered_lft, u32 valid_lft)
Noriaki TAKAMIYA081bba52006-07-28 18:12:13 +09003659{
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07003660 u32 flags;
3661 clock_t expires;
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +09003662 unsigned long timeout;
YOSHIFUJI Hideaki46d48042007-02-07 20:36:26 +09003663
Noriaki TAKAMIYA081bba52006-07-28 18:12:13 +09003664 if (!valid_lft || (prefered_lft > valid_lft))
3665 return -EINVAL;
3666
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +09003667 timeout = addrconf_timeout_fixup(valid_lft, HZ);
3668 if (addrconf_finite_timeout(timeout)) {
3669 expires = jiffies_to_clock_t(timeout * HZ);
3670 valid_lft = timeout;
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07003671 flags = RTF_EXPIRES;
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +09003672 } else {
3673 expires = 0;
3674 flags = 0;
3675 ifa_flags |= IFA_F_PERMANENT;
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07003676 }
Noriaki TAKAMIYA081bba52006-07-28 18:12:13 +09003677
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +09003678 timeout = addrconf_timeout_fixup(prefered_lft, HZ);
3679 if (addrconf_finite_timeout(timeout)) {
3680 if (timeout == 0)
3681 ifa_flags |= IFA_F_DEPRECATED;
3682 prefered_lft = timeout;
3683 }
Noriaki TAKAMIYA081bba52006-07-28 18:12:13 +09003684
3685 spin_lock_bh(&ifp->lock);
Noriaki TAKAMIYA3b9f9a12006-09-22 14:45:56 -07003686 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 +09003687 ifp->tstamp = jiffies;
3688 ifp->valid_lft = valid_lft;
3689 ifp->prefered_lft = prefered_lft;
3690
3691 spin_unlock_bh(&ifp->lock);
3692 if (!(ifp->flags&IFA_F_TENTATIVE))
3693 ipv6_ifa_notify(0, ifp);
Noriaki TAKAMIYA081bba52006-07-28 18:12:13 +09003694
YOSHIFUJI Hideaki46d48042007-02-07 20:36:26 +09003695 addrconf_prefix_route(&ifp->addr, ifp->prefix_len, ifp->idev->dev,
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07003696 expires, flags);
Noriaki TAKAMIYA081bba52006-07-28 18:12:13 +09003697 addrconf_verify(0);
3698
3699 return 0;
3700}
3701
3702static int
Thomas Graf661d2962013-03-21 07:45:29 +00003703inet6_rtm_newaddr(struct sk_buff *skb, struct nlmsghdr *nlh)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003704{
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09003705 struct net *net = sock_net(skb->sk);
Thomas Graf461d8832006-09-18 00:09:49 -07003706 struct ifaddrmsg *ifm;
3707 struct nlattr *tb[IFA_MAX+1];
Nicolas Dichtelcaeaba72013-05-16 22:32:00 +00003708 struct in6_addr *pfx, *peer_pfx;
Thomas Graf7198f8c2006-09-18 00:13:46 -07003709 struct inet6_ifaddr *ifa;
3710 struct net_device *dev;
Noriaki TAKAMIYA55ebaef2006-09-22 14:45:27 -07003711 u32 valid_lft = INFINITY_LIFE_TIME, preferred_lft = INFINITY_LIFE_TIME;
3712 u8 ifa_flags;
Thomas Graf461d8832006-09-18 00:09:49 -07003713 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003714
Thomas Graf461d8832006-09-18 00:09:49 -07003715 err = nlmsg_parse(nlh, sizeof(*ifm), tb, IFA_MAX, ifa_ipv6_policy);
3716 if (err < 0)
3717 return err;
3718
3719 ifm = nlmsg_data(nlh);
Nicolas Dichtelcaeaba72013-05-16 22:32:00 +00003720 pfx = extract_addr(tb[IFA_ADDRESS], tb[IFA_LOCAL], &peer_pfx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003721 if (pfx == NULL)
3722 return -EINVAL;
3723
Thomas Graf461d8832006-09-18 00:09:49 -07003724 if (tb[IFA_CACHEINFO]) {
Noriaki TAKAMIYA07787692006-07-28 18:12:10 +09003725 struct ifa_cacheinfo *ci;
Thomas Graf461d8832006-09-18 00:09:49 -07003726
3727 ci = nla_data(tb[IFA_CACHEINFO]);
Noriaki TAKAMIYA07787692006-07-28 18:12:10 +09003728 valid_lft = ci->ifa_valid;
Thomas Graf461d8832006-09-18 00:09:49 -07003729 preferred_lft = ci->ifa_prefered;
3730 } else {
3731 preferred_lft = INFINITY_LIFE_TIME;
3732 valid_lft = INFINITY_LIFE_TIME;
Noriaki TAKAMIYA07787692006-07-28 18:12:10 +09003733 }
3734
Daniel Lezcanoaf284932008-03-05 10:46:57 -08003735 dev = __dev_get_by_index(net, ifm->ifa_index);
Thomas Graf7198f8c2006-09-18 00:13:46 -07003736 if (dev == NULL)
3737 return -ENODEV;
3738
Noriaki TAKAMIYA55ebaef2006-09-22 14:45:27 -07003739 /* We ignore other flags so far. */
Noriaki TAKAMIYA3b9f9a12006-09-22 14:45:56 -07003740 ifa_flags = ifm->ifa_flags & (IFA_F_NODAD | IFA_F_HOMEADDRESS);
Noriaki TAKAMIYA55ebaef2006-09-22 14:45:27 -07003741
Daniel Lezcano1cab3da2008-01-10 22:44:09 -08003742 ifa = ipv6_get_ifaddr(net, pfx, dev, 1);
Thomas Graf7198f8c2006-09-18 00:13:46 -07003743 if (ifa == NULL) {
3744 /*
3745 * It would be best to check for !NLM_F_CREATE here but
3746 * userspace alreay relies on not having to provide this.
3747 */
Nicolas Dichtelcaeaba72013-05-16 22:32:00 +00003748 return inet6_addr_add(net, ifm->ifa_index, pfx, peer_pfx,
Daniel Lezcanoaf284932008-03-05 10:46:57 -08003749 ifm->ifa_prefixlen, ifa_flags,
3750 preferred_lft, valid_lft);
Noriaki TAKAMIYA081bba52006-07-28 18:12:13 +09003751 }
3752
Thomas Graf7198f8c2006-09-18 00:13:46 -07003753 if (nlh->nlmsg_flags & NLM_F_EXCL ||
3754 !(nlh->nlmsg_flags & NLM_F_REPLACE))
3755 err = -EEXIST;
3756 else
Noriaki TAKAMIYA55ebaef2006-09-22 14:45:27 -07003757 err = inet6_addr_modify(ifa, ifa_flags, preferred_lft, valid_lft);
Thomas Graf7198f8c2006-09-18 00:13:46 -07003758
3759 in6_ifa_put(ifa);
3760
3761 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003762}
3763
Thomas Graf101bb222006-09-18 00:11:52 -07003764static void put_ifaddrmsg(struct nlmsghdr *nlh, u8 prefixlen, u8 flags,
3765 u8 scope, int ifindex)
3766{
3767 struct ifaddrmsg *ifm;
3768
3769 ifm = nlmsg_data(nlh);
3770 ifm->ifa_family = AF_INET6;
3771 ifm->ifa_prefixlen = prefixlen;
3772 ifm->ifa_flags = flags;
3773 ifm->ifa_scope = scope;
3774 ifm->ifa_index = ifindex;
3775}
3776
Thomas Graf85486af2006-09-18 00:11:24 -07003777static int put_cacheinfo(struct sk_buff *skb, unsigned long cstamp,
3778 unsigned long tstamp, u32 preferred, u32 valid)
3779{
3780 struct ifa_cacheinfo ci;
3781
Thomas Graf18a31e12010-11-17 04:12:02 +00003782 ci.cstamp = cstamp_delta(cstamp);
3783 ci.tstamp = cstamp_delta(tstamp);
Thomas Graf85486af2006-09-18 00:11:24 -07003784 ci.ifa_prefered = preferred;
3785 ci.ifa_valid = valid;
3786
3787 return nla_put(skb, IFA_CACHEINFO, sizeof(ci), &ci);
3788}
3789
Thomas Graf101bb222006-09-18 00:11:52 -07003790static inline int rt_scope(int ifa_scope)
3791{
3792 if (ifa_scope & IFA_HOST)
3793 return RT_SCOPE_HOST;
3794 else if (ifa_scope & IFA_LINK)
3795 return RT_SCOPE_LINK;
3796 else if (ifa_scope & IFA_SITE)
3797 return RT_SCOPE_SITE;
3798 else
3799 return RT_SCOPE_UNIVERSE;
3800}
3801
Thomas Graf0ab68032006-09-18 00:12:35 -07003802static inline int inet6_ifaddr_msgsize(void)
3803{
Thomas Graf339bf982006-11-10 14:10:15 -08003804 return NLMSG_ALIGN(sizeof(struct ifaddrmsg))
Nicolas Dichtelcaeaba72013-05-16 22:32:00 +00003805 + nla_total_size(16) /* IFA_LOCAL */
Thomas Graf339bf982006-11-10 14:10:15 -08003806 + nla_total_size(16) /* IFA_ADDRESS */
3807 + nla_total_size(sizeof(struct ifa_cacheinfo));
Thomas Graf0ab68032006-09-18 00:12:35 -07003808}
YOSHIFUJI Hideakic5396a32006-06-17 22:48:48 -07003809
Linus Torvalds1da177e2005-04-16 15:20:36 -07003810static int inet6_fill_ifaddr(struct sk_buff *skb, struct inet6_ifaddr *ifa,
Eric W. Biederman15e47302012-09-07 20:12:54 +00003811 u32 portid, u32 seq, int event, unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003812{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003813 struct nlmsghdr *nlh;
Thomas Graf85486af2006-09-18 00:11:24 -07003814 u32 preferred, valid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003815
Eric W. Biederman15e47302012-09-07 20:12:54 +00003816 nlh = nlmsg_put(skb, portid, seq, event, sizeof(struct ifaddrmsg), flags);
Thomas Graf0ab68032006-09-18 00:12:35 -07003817 if (nlh == NULL)
Patrick McHardy26932562007-01-31 23:16:40 -08003818 return -EMSGSIZE;
Thomas Graf0ab68032006-09-18 00:12:35 -07003819
Thomas Graf101bb222006-09-18 00:11:52 -07003820 put_ifaddrmsg(nlh, ifa->prefix_len, ifa->flags, rt_scope(ifa->scope),
3821 ifa->idev->dev->ifindex);
3822
Linus Torvalds1da177e2005-04-16 15:20:36 -07003823 if (!(ifa->flags&IFA_F_PERMANENT)) {
Thomas Graf85486af2006-09-18 00:11:24 -07003824 preferred = ifa->prefered_lft;
3825 valid = ifa->valid_lft;
3826 if (preferred != INFINITY_LIFE_TIME) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003827 long tval = (jiffies - ifa->tstamp)/HZ;
Jens Rosenbooma1faa692009-06-25 04:55:50 +00003828 if (preferred > tval)
3829 preferred -= tval;
3830 else
3831 preferred = 0;
Ben Hutchingsf56619f2010-06-26 11:37:47 +00003832 if (valid != INFINITY_LIFE_TIME) {
3833 if (valid > tval)
3834 valid -= tval;
3835 else
3836 valid = 0;
3837 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003838 }
3839 } else {
Thomas Graf85486af2006-09-18 00:11:24 -07003840 preferred = INFINITY_LIFE_TIME;
3841 valid = INFINITY_LIFE_TIME;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003842 }
Thomas Graf85486af2006-09-18 00:11:24 -07003843
Cong Wang7996c792013-05-22 05:41:06 +00003844 if (!ipv6_addr_any(&ifa->peer_addr)) {
Nicolas Dichtelcaeaba72013-05-16 22:32:00 +00003845 if (nla_put(skb, IFA_LOCAL, 16, &ifa->addr) < 0 ||
3846 nla_put(skb, IFA_ADDRESS, 16, &ifa->peer_addr) < 0)
3847 goto error;
3848 } else
3849 if (nla_put(skb, IFA_ADDRESS, 16, &ifa->addr) < 0)
3850 goto error;
3851
3852 if (put_cacheinfo(skb, ifa->cstamp, ifa->tstamp, preferred, valid) < 0)
3853 goto error;
Thomas Graf85486af2006-09-18 00:11:24 -07003854
Thomas Graf0ab68032006-09-18 00:12:35 -07003855 return nlmsg_end(skb, nlh);
Nicolas Dichtelcaeaba72013-05-16 22:32:00 +00003856
3857error:
3858 nlmsg_cancel(skb, nlh);
3859 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003860}
3861
3862static int inet6_fill_ifmcaddr(struct sk_buff *skb, struct ifmcaddr6 *ifmca,
Eric W. Biederman15e47302012-09-07 20:12:54 +00003863 u32 portid, u32 seq, int event, u16 flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003864{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003865 struct nlmsghdr *nlh;
Thomas Graf101bb222006-09-18 00:11:52 -07003866 u8 scope = RT_SCOPE_UNIVERSE;
3867 int ifindex = ifmca->idev->dev->ifindex;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003868
Thomas Graf101bb222006-09-18 00:11:52 -07003869 if (ipv6_addr_scope(&ifmca->mca_addr) & IFA_SITE)
3870 scope = RT_SCOPE_SITE;
3871
Eric W. Biederman15e47302012-09-07 20:12:54 +00003872 nlh = nlmsg_put(skb, portid, seq, event, sizeof(struct ifaddrmsg), flags);
Thomas Graf0ab68032006-09-18 00:12:35 -07003873 if (nlh == NULL)
Patrick McHardy26932562007-01-31 23:16:40 -08003874 return -EMSGSIZE;
Thomas Graf0ab68032006-09-18 00:12:35 -07003875
Thomas Graf101bb222006-09-18 00:11:52 -07003876 put_ifaddrmsg(nlh, 128, IFA_F_PERMANENT, scope, ifindex);
Thomas Graf0ab68032006-09-18 00:12:35 -07003877 if (nla_put(skb, IFA_MULTICAST, 16, &ifmca->mca_addr) < 0 ||
3878 put_cacheinfo(skb, ifmca->mca_cstamp, ifmca->mca_tstamp,
Patrick McHardy26932562007-01-31 23:16:40 -08003879 INFINITY_LIFE_TIME, INFINITY_LIFE_TIME) < 0) {
3880 nlmsg_cancel(skb, nlh);
3881 return -EMSGSIZE;
3882 }
Thomas Graf85486af2006-09-18 00:11:24 -07003883
Thomas Graf0ab68032006-09-18 00:12:35 -07003884 return nlmsg_end(skb, nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003885}
3886
3887static int inet6_fill_ifacaddr(struct sk_buff *skb, struct ifacaddr6 *ifaca,
Eric W. Biederman15e47302012-09-07 20:12:54 +00003888 u32 portid, u32 seq, int event, unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003889{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003890 struct nlmsghdr *nlh;
Thomas Graf101bb222006-09-18 00:11:52 -07003891 u8 scope = RT_SCOPE_UNIVERSE;
3892 int ifindex = ifaca->aca_idev->dev->ifindex;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003893
Thomas Graf101bb222006-09-18 00:11:52 -07003894 if (ipv6_addr_scope(&ifaca->aca_addr) & IFA_SITE)
3895 scope = RT_SCOPE_SITE;
3896
Eric W. Biederman15e47302012-09-07 20:12:54 +00003897 nlh = nlmsg_put(skb, portid, seq, event, sizeof(struct ifaddrmsg), flags);
Thomas Graf0ab68032006-09-18 00:12:35 -07003898 if (nlh == NULL)
Patrick McHardy26932562007-01-31 23:16:40 -08003899 return -EMSGSIZE;
Thomas Graf0ab68032006-09-18 00:12:35 -07003900
Thomas Graf101bb222006-09-18 00:11:52 -07003901 put_ifaddrmsg(nlh, 128, IFA_F_PERMANENT, scope, ifindex);
Thomas Graf0ab68032006-09-18 00:12:35 -07003902 if (nla_put(skb, IFA_ANYCAST, 16, &ifaca->aca_addr) < 0 ||
3903 put_cacheinfo(skb, ifaca->aca_cstamp, ifaca->aca_tstamp,
Patrick McHardy26932562007-01-31 23:16:40 -08003904 INFINITY_LIFE_TIME, INFINITY_LIFE_TIME) < 0) {
3905 nlmsg_cancel(skb, nlh);
3906 return -EMSGSIZE;
3907 }
Thomas Graf85486af2006-09-18 00:11:24 -07003908
Thomas Graf0ab68032006-09-18 00:12:35 -07003909 return nlmsg_end(skb, nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003910}
3911
Stephen Hemmingere21e8462010-03-20 16:09:01 -07003912enum addr_type_t {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003913 UNICAST_ADDR,
3914 MULTICAST_ADDR,
3915 ANYCAST_ADDR,
3916};
3917
Eric Dumazet234b27c2009-11-12 04:11:50 +00003918/* called with rcu_read_lock() */
3919static int in6_dump_addrs(struct inet6_dev *idev, struct sk_buff *skb,
3920 struct netlink_callback *cb, enum addr_type_t type,
3921 int s_ip_idx, int *p_ip_idx)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003922{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003923 struct ifmcaddr6 *ifmca;
3924 struct ifacaddr6 *ifaca;
Eric Dumazet234b27c2009-11-12 04:11:50 +00003925 int err = 1;
3926 int ip_idx = *p_ip_idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003927
Eric Dumazet234b27c2009-11-12 04:11:50 +00003928 read_lock_bh(&idev->lock);
3929 switch (type) {
stephen hemminger502a2ff2010-03-17 20:31:13 +00003930 case UNICAST_ADDR: {
3931 struct inet6_ifaddr *ifa;
3932
Eric Dumazet234b27c2009-11-12 04:11:50 +00003933 /* unicast address incl. temp addr */
stephen hemminger502a2ff2010-03-17 20:31:13 +00003934 list_for_each_entry(ifa, &idev->addr_list, if_list) {
3935 if (++ip_idx < s_ip_idx)
Eric Dumazet234b27c2009-11-12 04:11:50 +00003936 continue;
3937 err = inet6_fill_ifaddr(skb, ifa,
Eric W. Biederman15e47302012-09-07 20:12:54 +00003938 NETLINK_CB(cb->skb).portid,
Eric Dumazet234b27c2009-11-12 04:11:50 +00003939 cb->nlh->nlmsg_seq,
3940 RTM_NEWADDR,
3941 NLM_F_MULTI);
3942 if (err <= 0)
3943 break;
Nicolas Dichtel63998ac2013-03-22 06:28:43 +00003944 nl_dump_check_consistent(cb, nlmsg_hdr(skb));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003945 }
Eric Dumazet234b27c2009-11-12 04:11:50 +00003946 break;
stephen hemminger502a2ff2010-03-17 20:31:13 +00003947 }
Eric Dumazet234b27c2009-11-12 04:11:50 +00003948 case MULTICAST_ADDR:
3949 /* multicast address */
3950 for (ifmca = idev->mc_list; ifmca;
3951 ifmca = ifmca->next, ip_idx++) {
3952 if (ip_idx < s_ip_idx)
3953 continue;
3954 err = inet6_fill_ifmcaddr(skb, ifmca,
Eric W. Biederman15e47302012-09-07 20:12:54 +00003955 NETLINK_CB(cb->skb).portid,
Eric Dumazet234b27c2009-11-12 04:11:50 +00003956 cb->nlh->nlmsg_seq,
3957 RTM_GETMULTICAST,
3958 NLM_F_MULTI);
3959 if (err <= 0)
3960 break;
3961 }
3962 break;
3963 case ANYCAST_ADDR:
3964 /* anycast address */
3965 for (ifaca = idev->ac_list; ifaca;
3966 ifaca = ifaca->aca_next, ip_idx++) {
3967 if (ip_idx < s_ip_idx)
3968 continue;
3969 err = inet6_fill_ifacaddr(skb, ifaca,
Eric W. Biederman15e47302012-09-07 20:12:54 +00003970 NETLINK_CB(cb->skb).portid,
Eric Dumazet234b27c2009-11-12 04:11:50 +00003971 cb->nlh->nlmsg_seq,
3972 RTM_GETANYCAST,
3973 NLM_F_MULTI);
3974 if (err <= 0)
3975 break;
3976 }
3977 break;
3978 default:
3979 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003980 }
Eric Dumazet234b27c2009-11-12 04:11:50 +00003981 read_unlock_bh(&idev->lock);
3982 *p_ip_idx = ip_idx;
3983 return err;
3984}
3985
3986static int inet6_dump_addr(struct sk_buff *skb, struct netlink_callback *cb,
3987 enum addr_type_t type)
3988{
3989 struct net *net = sock_net(skb->sk);
3990 int h, s_h;
3991 int idx, ip_idx;
3992 int s_idx, s_ip_idx;
3993 struct net_device *dev;
3994 struct inet6_dev *idev;
3995 struct hlist_head *head;
Eric Dumazet234b27c2009-11-12 04:11:50 +00003996
3997 s_h = cb->args[0];
3998 s_idx = idx = cb->args[1];
3999 s_ip_idx = ip_idx = cb->args[2];
4000
4001 rcu_read_lock();
Nicolas Dichtel63998ac2013-03-22 06:28:43 +00004002 cb->seq = atomic_read(&net->ipv6.dev_addr_genid) ^ net->dev_base_seq;
Eric Dumazet234b27c2009-11-12 04:11:50 +00004003 for (h = s_h; h < NETDEV_HASHENTRIES; h++, s_idx = 0) {
4004 idx = 0;
4005 head = &net->dev_index_head[h];
Sasha Levinb67bfe02013-02-27 17:06:00 -08004006 hlist_for_each_entry_rcu(dev, head, index_hlist) {
Eric Dumazet234b27c2009-11-12 04:11:50 +00004007 if (idx < s_idx)
4008 goto cont;
Patrick McHardy4b97efd2010-03-26 20:27:49 -07004009 if (h > s_h || idx > s_idx)
Eric Dumazet234b27c2009-11-12 04:11:50 +00004010 s_ip_idx = 0;
4011 ip_idx = 0;
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004012 idev = __in6_dev_get(dev);
4013 if (!idev)
Eric Dumazet234b27c2009-11-12 04:11:50 +00004014 goto cont;
4015
4016 if (in6_dump_addrs(idev, skb, cb, type,
4017 s_ip_idx, &ip_idx) <= 0)
4018 goto done;
4019cont:
4020 idx++;
4021 }
4022 }
4023done:
4024 rcu_read_unlock();
4025 cb->args[0] = h;
4026 cb->args[1] = idx;
4027 cb->args[2] = ip_idx;
4028
Linus Torvalds1da177e2005-04-16 15:20:36 -07004029 return skb->len;
4030}
4031
4032static int inet6_dump_ifaddr(struct sk_buff *skb, struct netlink_callback *cb)
4033{
4034 enum addr_type_t type = UNICAST_ADDR;
Denis V. Lunevb8542722007-12-01 00:21:31 +11004035
Linus Torvalds1da177e2005-04-16 15:20:36 -07004036 return inet6_dump_addr(skb, cb, type);
4037}
4038
4039static int inet6_dump_ifmcaddr(struct sk_buff *skb, struct netlink_callback *cb)
4040{
4041 enum addr_type_t type = MULTICAST_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
4046
4047static int inet6_dump_ifacaddr(struct sk_buff *skb, struct netlink_callback *cb)
4048{
4049 enum addr_type_t type = ANYCAST_ADDR;
Denis V. Lunevb8542722007-12-01 00:21:31 +11004050
Linus Torvalds1da177e2005-04-16 15:20:36 -07004051 return inet6_dump_addr(skb, cb, type);
4052}
4053
Thomas Graf661d2962013-03-21 07:45:29 +00004054static int inet6_rtm_getaddr(struct sk_buff *in_skb, struct nlmsghdr *nlh)
Noriaki TAKAMIYA6c223822006-07-28 18:12:12 +09004055{
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09004056 struct net *net = sock_net(in_skb->sk);
Thomas Graf1b29fc22006-09-18 00:10:50 -07004057 struct ifaddrmsg *ifm;
4058 struct nlattr *tb[IFA_MAX+1];
Nicolas Dichtelcaeaba72013-05-16 22:32:00 +00004059 struct in6_addr *addr = NULL, *peer;
Noriaki TAKAMIYA6c223822006-07-28 18:12:12 +09004060 struct net_device *dev = NULL;
4061 struct inet6_ifaddr *ifa;
4062 struct sk_buff *skb;
Noriaki TAKAMIYA6c223822006-07-28 18:12:12 +09004063 int err;
4064
Thomas Graf1b29fc22006-09-18 00:10:50 -07004065 err = nlmsg_parse(nlh, sizeof(*ifm), tb, IFA_MAX, ifa_ipv6_policy);
4066 if (err < 0)
4067 goto errout;
Noriaki TAKAMIYA6c223822006-07-28 18:12:12 +09004068
Nicolas Dichtelcaeaba72013-05-16 22:32:00 +00004069 addr = extract_addr(tb[IFA_ADDRESS], tb[IFA_LOCAL], &peer);
Thomas Graf1b29fc22006-09-18 00:10:50 -07004070 if (addr == NULL) {
4071 err = -EINVAL;
4072 goto errout;
4073 }
4074
4075 ifm = nlmsg_data(nlh);
Noriaki TAKAMIYA6c223822006-07-28 18:12:12 +09004076 if (ifm->ifa_index)
Benjamin Thery6fda7352008-03-05 10:47:47 -08004077 dev = __dev_get_by_index(net, ifm->ifa_index);
Noriaki TAKAMIYA6c223822006-07-28 18:12:12 +09004078
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004079 ifa = ipv6_get_ifaddr(net, addr, dev, 1);
4080 if (!ifa) {
Thomas Graf1b29fc22006-09-18 00:10:50 -07004081 err = -EADDRNOTAVAIL;
4082 goto errout;
Noriaki TAKAMIYA6c223822006-07-28 18:12:12 +09004083 }
4084
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004085 skb = nlmsg_new(inet6_ifaddr_msgsize(), GFP_KERNEL);
4086 if (!skb) {
Thomas Graf1b29fc22006-09-18 00:10:50 -07004087 err = -ENOBUFS;
4088 goto errout_ifa;
4089 }
4090
Eric W. Biederman15e47302012-09-07 20:12:54 +00004091 err = inet6_fill_ifaddr(skb, ifa, NETLINK_CB(in_skb).portid,
Noriaki TAKAMIYA6c223822006-07-28 18:12:12 +09004092 nlh->nlmsg_seq, RTM_NEWADDR, 0);
Patrick McHardy26932562007-01-31 23:16:40 -08004093 if (err < 0) {
4094 /* -EMSGSIZE implies BUG in inet6_ifaddr_msgsize() */
4095 WARN_ON(err == -EMSGSIZE);
4096 kfree_skb(skb);
4097 goto errout_ifa;
4098 }
Eric W. Biederman15e47302012-09-07 20:12:54 +00004099 err = rtnl_unicast(skb, net, NETLINK_CB(in_skb).portid);
Thomas Graf1b29fc22006-09-18 00:10:50 -07004100errout_ifa:
Noriaki TAKAMIYA6c223822006-07-28 18:12:12 +09004101 in6_ifa_put(ifa);
Thomas Graf1b29fc22006-09-18 00:10:50 -07004102errout:
Noriaki TAKAMIYA6c223822006-07-28 18:12:12 +09004103 return err;
Noriaki TAKAMIYA6c223822006-07-28 18:12:12 +09004104}
4105
Linus Torvalds1da177e2005-04-16 15:20:36 -07004106static void inet6_ifa_notify(int event, struct inet6_ifaddr *ifa)
4107{
4108 struct sk_buff *skb;
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09004109 struct net *net = dev_net(ifa->idev->dev);
Thomas Graf5d620262006-08-15 00:35:02 -07004110 int err = -ENOBUFS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004111
Thomas Graf0ab68032006-09-18 00:12:35 -07004112 skb = nlmsg_new(inet6_ifaddr_msgsize(), GFP_ATOMIC);
Thomas Graf5d620262006-08-15 00:35:02 -07004113 if (skb == NULL)
4114 goto errout;
4115
4116 err = inet6_fill_ifaddr(skb, ifa, 0, 0, event, 0);
Patrick McHardy26932562007-01-31 23:16:40 -08004117 if (err < 0) {
4118 /* -EMSGSIZE implies BUG in inet6_ifaddr_msgsize() */
4119 WARN_ON(err == -EMSGSIZE);
4120 kfree_skb(skb);
4121 goto errout;
4122 }
Pablo Neira Ayuso1ce85fe2009-02-24 23:18:28 -08004123 rtnl_notify(skb, net, 0, RTNLGRP_IPV6_IFADDR, NULL, GFP_ATOMIC);
4124 return;
Thomas Graf5d620262006-08-15 00:35:02 -07004125errout:
4126 if (err < 0)
Benjamin Thery6fda7352008-03-05 10:47:47 -08004127 rtnl_set_sk_err(net, RTNLGRP_IPV6_IFADDR, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004128}
4129
Dave Jonesb6f99a22007-03-22 12:27:49 -07004130static inline void ipv6_store_devconf(struct ipv6_devconf *cnf,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004131 __s32 *array, int bytes)
4132{
Thomas Graf04561c12006-11-14 19:53:58 -08004133 BUG_ON(bytes < (DEVCONF_MAX * 4));
4134
Linus Torvalds1da177e2005-04-16 15:20:36 -07004135 memset(array, 0, bytes);
4136 array[DEVCONF_FORWARDING] = cnf->forwarding;
4137 array[DEVCONF_HOPLIMIT] = cnf->hop_limit;
4138 array[DEVCONF_MTU6] = cnf->mtu6;
4139 array[DEVCONF_ACCEPT_RA] = cnf->accept_ra;
4140 array[DEVCONF_ACCEPT_REDIRECTS] = cnf->accept_redirects;
4141 array[DEVCONF_AUTOCONF] = cnf->autoconf;
4142 array[DEVCONF_DAD_TRANSMITS] = cnf->dad_transmits;
4143 array[DEVCONF_RTR_SOLICITS] = cnf->rtr_solicits;
Thomas Graf93908d12010-11-17 01:44:24 +00004144 array[DEVCONF_RTR_SOLICIT_INTERVAL] =
4145 jiffies_to_msecs(cnf->rtr_solicit_interval);
4146 array[DEVCONF_RTR_SOLICIT_DELAY] =
4147 jiffies_to_msecs(cnf->rtr_solicit_delay);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004148 array[DEVCONF_FORCE_MLD_VERSION] = cnf->force_mld_version;
Hannes Frederic Sowafc4eba52013-08-14 01:03:46 +02004149 array[DEVCONF_MLDV1_UNSOLICITED_REPORT_INTERVAL] =
4150 jiffies_to_msecs(cnf->mldv1_unsolicited_report_interval);
4151 array[DEVCONF_MLDV2_UNSOLICITED_REPORT_INTERVAL] =
4152 jiffies_to_msecs(cnf->mldv2_unsolicited_report_interval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004153#ifdef CONFIG_IPV6_PRIVACY
4154 array[DEVCONF_USE_TEMPADDR] = cnf->use_tempaddr;
4155 array[DEVCONF_TEMP_VALID_LFT] = cnf->temp_valid_lft;
4156 array[DEVCONF_TEMP_PREFERED_LFT] = cnf->temp_prefered_lft;
4157 array[DEVCONF_REGEN_MAX_RETRY] = cnf->regen_max_retry;
4158 array[DEVCONF_MAX_DESYNC_FACTOR] = cnf->max_desync_factor;
4159#endif
4160 array[DEVCONF_MAX_ADDRESSES] = cnf->max_addresses;
YOSHIFUJI Hideaki65f5c7c2006-03-20 16:55:08 -08004161 array[DEVCONF_ACCEPT_RA_DEFRTR] = cnf->accept_ra_defrtr;
YOSHIFUJI Hideakic4fd30e2006-03-20 16:55:26 -08004162 array[DEVCONF_ACCEPT_RA_PINFO] = cnf->accept_ra_pinfo;
YOSHIFUJI Hideaki930d6ff2006-03-20 17:05:30 -08004163#ifdef CONFIG_IPV6_ROUTER_PREF
4164 array[DEVCONF_ACCEPT_RA_RTR_PREF] = cnf->accept_ra_rtr_pref;
Thomas Graf93908d12010-11-17 01:44:24 +00004165 array[DEVCONF_RTR_PROBE_INTERVAL] =
4166 jiffies_to_msecs(cnf->rtr_probe_interval);
Neil Hormanfa03ef32007-01-30 14:30:10 -08004167#ifdef CONFIG_IPV6_ROUTE_INFO
YOSHIFUJI Hideaki09c884d2006-03-20 17:07:03 -08004168 array[DEVCONF_ACCEPT_RA_RT_INFO_MAX_PLEN] = cnf->accept_ra_rt_info_max_plen;
4169#endif
YOSHIFUJI Hideaki930d6ff2006-03-20 17:05:30 -08004170#endif
YOSHIFUJI Hideakifbea49e2006-09-22 14:43:49 -07004171 array[DEVCONF_PROXY_NDP] = cnf->proxy_ndp;
YOSHIFUJI Hideaki0bcbc922007-04-24 14:58:30 -07004172 array[DEVCONF_ACCEPT_SOURCE_ROUTE] = cnf->accept_source_route;
Neil Horman95c385b2007-04-25 17:08:10 -07004173#ifdef CONFIG_IPV6_OPTIMISTIC_DAD
4174 array[DEVCONF_OPTIMISTIC_DAD] = cnf->optimistic_dad;
4175#endif
YOSHIFUJI Hideaki7bc570c2008-04-03 09:22:53 +09004176#ifdef CONFIG_IPV6_MROUTE
4177 array[DEVCONF_MC_FORWARDING] = cnf->mc_forwarding;
4178#endif
YOSHIFUJI Hideaki778d80b2008-06-28 14:17:11 +09004179 array[DEVCONF_DISABLE_IPV6] = cnf->disable_ipv6;
YOSHIFUJI Hideaki1b34be72008-06-28 14:18:38 +09004180 array[DEVCONF_ACCEPT_DAD] = cnf->accept_dad;
Cosmin Ratiuc3faca02009-10-09 03:11:14 +00004181 array[DEVCONF_FORCE_TLLAO] = cnf->force_tllao;
Hannes Frederic Sowa5cb04432012-11-06 16:46:20 +00004182 array[DEVCONF_NDISC_NOTIFY] = cnf->ndisc_notify;
Hannes Frederic Sowab800c3b2013-08-27 01:36:51 +02004183 array[DEVCONF_SUPPRESS_FRAG_NDISC] = cnf->suppress_frag_ndisc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004184}
4185
Thomas Grafb382b192010-11-16 04:33:57 +00004186static inline size_t inet6_ifla6_size(void)
4187{
4188 return nla_total_size(4) /* IFLA_INET6_FLAGS */
4189 + nla_total_size(sizeof(struct ifla_cacheinfo))
4190 + nla_total_size(DEVCONF_MAX * 4) /* IFLA_INET6_CONF */
4191 + nla_total_size(IPSTATS_MIB_MAX * 8) /* IFLA_INET6_STATS */
Daniel Borkmannf53adae2013-04-08 04:01:30 +00004192 + nla_total_size(ICMP6_MIB_MAX * 8) /* IFLA_INET6_ICMP6STATS */
4193 + nla_total_size(sizeof(struct in6_addr)); /* IFLA_INET6_TOKEN */
Thomas Grafb382b192010-11-16 04:33:57 +00004194}
4195
Thomas Graf339bf982006-11-10 14:10:15 -08004196static inline size_t inet6_if_nlmsg_size(void)
4197{
4198 return NLMSG_ALIGN(sizeof(struct ifinfomsg))
4199 + nla_total_size(IFNAMSIZ) /* IFLA_IFNAME */
4200 + nla_total_size(MAX_ADDR_LEN) /* IFLA_ADDRESS */
4201 + nla_total_size(4) /* IFLA_MTU */
4202 + nla_total_size(4) /* IFLA_LINK */
Thomas Grafb382b192010-11-16 04:33:57 +00004203 + nla_total_size(inet6_ifla6_size()); /* IFLA_PROTINFO */
Thomas Graf339bf982006-11-10 14:10:15 -08004204}
YOSHIFUJI Hideakic5396a32006-06-17 22:48:48 -07004205
Eric Dumazetbe281e52011-05-19 01:14:23 +00004206static inline void __snmp6_fill_statsdev(u64 *stats, atomic_long_t *mib,
Tejun Heo7d720c32010-02-16 15:20:26 +00004207 int items, int bytes)
Herbert Xu7f7d9a62007-04-24 21:54:09 -07004208{
4209 int i;
4210 int pad = bytes - sizeof(u64) * items;
4211 BUG_ON(pad < 0);
4212
4213 /* Use put_unaligned() because stats may not be aligned for u64. */
4214 put_unaligned(items, &stats[0]);
4215 for (i = 1; i < items; i++)
Eric Dumazetbe281e52011-05-19 01:14:23 +00004216 put_unaligned(atomic_long_read(&mib[i]), &stats[i]);
Herbert Xu7f7d9a62007-04-24 21:54:09 -07004217
4218 memset(&stats[items], 0, pad);
4219}
4220
Eric Dumazet4ce3c182010-06-30 13:31:19 -07004221static inline void __snmp6_fill_stats64(u64 *stats, void __percpu **mib,
4222 int items, int bytes, size_t syncpoff)
4223{
4224 int i;
4225 int pad = bytes - sizeof(u64) * items;
4226 BUG_ON(pad < 0);
4227
4228 /* Use put_unaligned() because stats may not be aligned for u64. */
4229 put_unaligned(items, &stats[0]);
4230 for (i = 1; i < items; i++)
4231 put_unaligned(snmp_fold_field64(mib, i, syncpoff), &stats[i]);
4232
4233 memset(&stats[items], 0, pad);
4234}
4235
Herbert Xu7f7d9a62007-04-24 21:54:09 -07004236static void snmp6_fill_stats(u64 *stats, struct inet6_dev *idev, int attrtype,
4237 int bytes)
4238{
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004239 switch (attrtype) {
Herbert Xu7f7d9a62007-04-24 21:54:09 -07004240 case IFLA_INET6_STATS:
Eric Dumazet4ce3c182010-06-30 13:31:19 -07004241 __snmp6_fill_stats64(stats, (void __percpu **)idev->stats.ipv6,
4242 IPSTATS_MIB_MAX, bytes, offsetof(struct ipstats_mib, syncp));
Herbert Xu7f7d9a62007-04-24 21:54:09 -07004243 break;
4244 case IFLA_INET6_ICMP6STATS:
Eric Dumazetbe281e52011-05-19 01:14:23 +00004245 __snmp6_fill_statsdev(stats, idev->stats.icmpv6dev->mibs, ICMP6_MIB_MAX, bytes);
Herbert Xu7f7d9a62007-04-24 21:54:09 -07004246 break;
4247 }
4248}
4249
Thomas Grafb382b192010-11-16 04:33:57 +00004250static int inet6_fill_ifla6_attrs(struct sk_buff *skb, struct inet6_dev *idev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004251{
YOSHIFUJI Hideakibf99f1b2007-04-20 15:56:20 -07004252 struct nlattr *nla;
Thomas Graf04561c12006-11-14 19:53:58 -08004253 struct ifla_cacheinfo ci;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004254
David S. Millerc78679e2012-04-01 20:27:33 -04004255 if (nla_put_u32(skb, IFLA_INET6_FLAGS, idev->if_flags))
4256 goto nla_put_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004257 ci.max_reasm_len = IPV6_MAXPLEN;
David S. Miller24912422010-11-19 13:13:47 -08004258 ci.tstamp = cstamp_delta(idev->tstamp);
4259 ci.reachable_time = jiffies_to_msecs(idev->nd_parms->reachable_time);
4260 ci.retrans_time = jiffies_to_msecs(idev->nd_parms->retrans_time);
David S. Millerc78679e2012-04-01 20:27:33 -04004261 if (nla_put(skb, IFLA_INET6_CACHEINFO, sizeof(ci), &ci))
4262 goto nla_put_failure;
YOSHIFUJI Hideakibf99f1b2007-04-20 15:56:20 -07004263 nla = nla_reserve(skb, IFLA_INET6_CONF, DEVCONF_MAX * sizeof(s32));
4264 if (nla == NULL)
Thomas Graf04561c12006-11-14 19:53:58 -08004265 goto nla_put_failure;
YOSHIFUJI Hideakibf99f1b2007-04-20 15:56:20 -07004266 ipv6_store_devconf(&idev->cnf, nla_data(nla), nla_len(nla));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004267
YOSHIFUJI Hideakibf99f1b2007-04-20 15:56:20 -07004268 /* XXX - MC not implemented */
4269
4270 nla = nla_reserve(skb, IFLA_INET6_STATS, IPSTATS_MIB_MAX * sizeof(u64));
4271 if (nla == NULL)
4272 goto nla_put_failure;
4273 snmp6_fill_stats(nla_data(nla), idev, IFLA_INET6_STATS, nla_len(nla));
4274
4275 nla = nla_reserve(skb, IFLA_INET6_ICMP6STATS, ICMP6_MIB_MAX * sizeof(u64));
4276 if (nla == NULL)
4277 goto nla_put_failure;
4278 snmp6_fill_stats(nla_data(nla), idev, IFLA_INET6_ICMP6STATS, nla_len(nla));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004279
Daniel Borkmannf53adae2013-04-08 04:01:30 +00004280 nla = nla_reserve(skb, IFLA_INET6_TOKEN, sizeof(struct in6_addr));
4281 if (nla == NULL)
4282 goto nla_put_failure;
4283 read_lock_bh(&idev->lock);
4284 memcpy(nla_data(nla), idev->token.s6_addr, nla_len(nla));
4285 read_unlock_bh(&idev->lock);
4286
Thomas Grafb382b192010-11-16 04:33:57 +00004287 return 0;
4288
4289nla_put_failure:
4290 return -EMSGSIZE;
4291}
4292
4293static size_t inet6_get_link_af_size(const struct net_device *dev)
4294{
4295 if (!__in6_dev_get(dev))
4296 return 0;
4297
4298 return inet6_ifla6_size();
4299}
4300
4301static int inet6_fill_link_af(struct sk_buff *skb, const struct net_device *dev)
4302{
4303 struct inet6_dev *idev = __in6_dev_get(dev);
4304
4305 if (!idev)
4306 return -ENODATA;
4307
4308 if (inet6_fill_ifla6_attrs(skb, idev) < 0)
4309 return -EMSGSIZE;
4310
4311 return 0;
4312}
4313
Daniel Borkmannf53adae2013-04-08 04:01:30 +00004314static int inet6_set_iftoken(struct inet6_dev *idev, struct in6_addr *token)
4315{
Daniel Borkmannf53adae2013-04-08 04:01:30 +00004316 struct inet6_ifaddr *ifp;
4317 struct net_device *dev = idev->dev;
Daniel Borkmannfc403832013-04-09 03:47:15 +00004318 bool update_rs = false;
Hannes Frederic Sowadc848292013-06-24 21:42:40 +02004319 struct in6_addr ll_addr;
Daniel Borkmannf53adae2013-04-08 04:01:30 +00004320
4321 if (token == NULL)
4322 return -EINVAL;
4323 if (ipv6_addr_any(token))
4324 return -EINVAL;
4325 if (dev->flags & (IFF_LOOPBACK | IFF_NOARP))
4326 return -EINVAL;
Daniel Borkmannf53adae2013-04-08 04:01:30 +00004327 if (!ipv6_accept_ra(idev))
4328 return -EINVAL;
4329 if (idev->cnf.rtr_solicits <= 0)
4330 return -EINVAL;
4331
4332 write_lock_bh(&idev->lock);
4333
4334 BUILD_BUG_ON(sizeof(token->s6_addr) != 16);
4335 memcpy(idev->token.s6_addr + 8, token->s6_addr + 8, 8);
4336
4337 write_unlock_bh(&idev->lock);
4338
Hannes Frederic Sowadc848292013-06-24 21:42:40 +02004339 if (!idev->dead && (idev->if_flags & IF_READY) &&
4340 !ipv6_get_lladdr(dev, &ll_addr, IFA_F_TENTATIVE |
4341 IFA_F_OPTIMISTIC)) {
Daniel Borkmannfc403832013-04-09 03:47:15 +00004342
4343 /* If we're not ready, then normal ifup will take care
4344 * of this. Otherwise, we need to request our rs here.
4345 */
4346 ndisc_send_rs(dev, &ll_addr, &in6addr_linklocal_allrouters);
4347 update_rs = true;
4348 }
Daniel Borkmannf53adae2013-04-08 04:01:30 +00004349
4350 write_lock_bh(&idev->lock);
Daniel Borkmannfc403832013-04-09 03:47:15 +00004351
Hannes Frederic Sowa77ecaac2013-06-26 03:41:49 +02004352 if (update_rs) {
Daniel Borkmannfc403832013-04-09 03:47:15 +00004353 idev->if_flags |= IF_RS_SENT;
Hannes Frederic Sowa77ecaac2013-06-26 03:41:49 +02004354 idev->rs_probes = 1;
4355 addrconf_mod_rs_timer(idev, idev->cnf.rtr_solicit_interval);
4356 }
Daniel Borkmannf53adae2013-04-08 04:01:30 +00004357
4358 /* Well, that's kinda nasty ... */
4359 list_for_each_entry(ifp, &idev->addr_list, if_list) {
4360 spin_lock(&ifp->lock);
Daniel Borkmann617fe292013-04-09 03:47:16 +00004361 if (ifp->tokenized) {
Daniel Borkmannf53adae2013-04-08 04:01:30 +00004362 ifp->valid_lft = 0;
4363 ifp->prefered_lft = 0;
4364 }
4365 spin_unlock(&ifp->lock);
4366 }
4367
4368 write_unlock_bh(&idev->lock);
Hannes Frederic Sowa2b9651d2013-06-24 22:03:28 +02004369 addrconf_verify(0);
Daniel Borkmannf53adae2013-04-08 04:01:30 +00004370 return 0;
4371}
4372
4373static int inet6_set_link_af(struct net_device *dev, const struct nlattr *nla)
4374{
4375 int err = -EINVAL;
4376 struct inet6_dev *idev = __in6_dev_get(dev);
4377 struct nlattr *tb[IFLA_INET6_MAX + 1];
4378
4379 if (!idev)
4380 return -EAFNOSUPPORT;
4381
4382 if (nla_parse_nested(tb, IFLA_INET6_MAX, nla, NULL) < 0)
4383 BUG();
4384
4385 if (tb[IFLA_INET6_TOKEN])
4386 err = inet6_set_iftoken(idev, nla_data(tb[IFLA_INET6_TOKEN]));
4387
4388 return err;
4389}
4390
Thomas Grafb382b192010-11-16 04:33:57 +00004391static int inet6_fill_ifinfo(struct sk_buff *skb, struct inet6_dev *idev,
Eric W. Biederman15e47302012-09-07 20:12:54 +00004392 u32 portid, u32 seq, int event, unsigned int flags)
Thomas Grafb382b192010-11-16 04:33:57 +00004393{
4394 struct net_device *dev = idev->dev;
4395 struct ifinfomsg *hdr;
4396 struct nlmsghdr *nlh;
4397 void *protoinfo;
4398
Eric W. Biederman15e47302012-09-07 20:12:54 +00004399 nlh = nlmsg_put(skb, portid, seq, event, sizeof(*hdr), flags);
Thomas Grafb382b192010-11-16 04:33:57 +00004400 if (nlh == NULL)
4401 return -EMSGSIZE;
4402
4403 hdr = nlmsg_data(nlh);
4404 hdr->ifi_family = AF_INET6;
4405 hdr->__ifi_pad = 0;
4406 hdr->ifi_type = dev->type;
4407 hdr->ifi_index = dev->ifindex;
4408 hdr->ifi_flags = dev_get_flags(dev);
4409 hdr->ifi_change = 0;
4410
David S. Millerc78679e2012-04-01 20:27:33 -04004411 if (nla_put_string(skb, IFLA_IFNAME, dev->name) ||
4412 (dev->addr_len &&
4413 nla_put(skb, IFLA_ADDRESS, dev->addr_len, dev->dev_addr)) ||
4414 nla_put_u32(skb, IFLA_MTU, dev->mtu) ||
4415 (dev->ifindex != dev->iflink &&
4416 nla_put_u32(skb, IFLA_LINK, dev->iflink)))
4417 goto nla_put_failure;
Thomas Grafb382b192010-11-16 04:33:57 +00004418 protoinfo = nla_nest_start(skb, IFLA_PROTINFO);
4419 if (protoinfo == NULL)
4420 goto nla_put_failure;
4421
4422 if (inet6_fill_ifla6_attrs(skb, idev) < 0)
4423 goto nla_put_failure;
4424
Thomas Graf04561c12006-11-14 19:53:58 -08004425 nla_nest_end(skb, protoinfo);
4426 return nlmsg_end(skb, nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004427
Thomas Graf04561c12006-11-14 19:53:58 -08004428nla_put_failure:
Patrick McHardy26932562007-01-31 23:16:40 -08004429 nlmsg_cancel(skb, nlh);
4430 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004431}
4432
4433static int inet6_dump_ifinfo(struct sk_buff *skb, struct netlink_callback *cb)
4434{
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09004435 struct net *net = sock_net(skb->sk);
Eric Dumazet84d26972009-11-09 12:11:28 +00004436 int h, s_h;
David S. Miller434a8a52009-11-11 18:53:00 -08004437 int idx = 0, s_idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004438 struct net_device *dev;
4439 struct inet6_dev *idev;
Eric Dumazet84d26972009-11-09 12:11:28 +00004440 struct hlist_head *head;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004441
Eric Dumazet84d26972009-11-09 12:11:28 +00004442 s_h = cb->args[0];
4443 s_idx = cb->args[1];
4444
4445 rcu_read_lock();
4446 for (h = s_h; h < NETDEV_HASHENTRIES; h++, s_idx = 0) {
4447 idx = 0;
4448 head = &net->dev_index_head[h];
Sasha Levinb67bfe02013-02-27 17:06:00 -08004449 hlist_for_each_entry_rcu(dev, head, index_hlist) {
Eric Dumazet84d26972009-11-09 12:11:28 +00004450 if (idx < s_idx)
4451 goto cont;
4452 idev = __in6_dev_get(dev);
4453 if (!idev)
4454 goto cont;
4455 if (inet6_fill_ifinfo(skb, idev,
Eric W. Biederman15e47302012-09-07 20:12:54 +00004456 NETLINK_CB(cb->skb).portid,
Eric Dumazet84d26972009-11-09 12:11:28 +00004457 cb->nlh->nlmsg_seq,
4458 RTM_NEWLINK, NLM_F_MULTI) <= 0)
4459 goto out;
Pavel Emelianov7562f872007-05-03 15:13:45 -07004460cont:
Eric Dumazet84d26972009-11-09 12:11:28 +00004461 idx++;
4462 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004463 }
Eric Dumazet84d26972009-11-09 12:11:28 +00004464out:
4465 rcu_read_unlock();
4466 cb->args[1] = idx;
4467 cb->args[0] = h;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004468
4469 return skb->len;
4470}
4471
4472void inet6_ifinfo_notify(int event, struct inet6_dev *idev)
4473{
4474 struct sk_buff *skb;
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09004475 struct net *net = dev_net(idev->dev);
Thomas Graf8d7a76c2006-08-15 00:35:47 -07004476 int err = -ENOBUFS;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09004477
Thomas Graf339bf982006-11-10 14:10:15 -08004478 skb = nlmsg_new(inet6_if_nlmsg_size(), GFP_ATOMIC);
Thomas Graf8d7a76c2006-08-15 00:35:47 -07004479 if (skb == NULL)
4480 goto errout;
4481
4482 err = inet6_fill_ifinfo(skb, idev, 0, 0, event, 0);
Patrick McHardy26932562007-01-31 23:16:40 -08004483 if (err < 0) {
4484 /* -EMSGSIZE implies BUG in inet6_if_nlmsg_size() */
4485 WARN_ON(err == -EMSGSIZE);
4486 kfree_skb(skb);
4487 goto errout;
4488 }
Nicolas Dichtel5f75a102010-12-07 23:38:31 +00004489 rtnl_notify(skb, net, 0, RTNLGRP_IPV6_IFINFO, NULL, GFP_ATOMIC);
Pablo Neira Ayuso1ce85fe2009-02-24 23:18:28 -08004490 return;
Thomas Graf8d7a76c2006-08-15 00:35:47 -07004491errout:
4492 if (err < 0)
Nicolas Dichtel5f75a102010-12-07 23:38:31 +00004493 rtnl_set_sk_err(net, RTNLGRP_IPV6_IFINFO, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004494}
4495
Thomas Graf339bf982006-11-10 14:10:15 -08004496static inline size_t inet6_prefix_nlmsg_size(void)
4497{
4498 return NLMSG_ALIGN(sizeof(struct prefixmsg))
4499 + nla_total_size(sizeof(struct in6_addr))
4500 + nla_total_size(sizeof(struct prefix_cacheinfo));
4501}
YOSHIFUJI Hideakic5396a32006-06-17 22:48:48 -07004502
Linus Torvalds1da177e2005-04-16 15:20:36 -07004503static int inet6_fill_prefix(struct sk_buff *skb, struct inet6_dev *idev,
Eric W. Biederman15e47302012-09-07 20:12:54 +00004504 struct prefix_info *pinfo, u32 portid, u32 seq,
Thomas Graf6051e2f2006-11-14 19:54:19 -08004505 int event, unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004506{
Thomas Graf6051e2f2006-11-14 19:54:19 -08004507 struct prefixmsg *pmsg;
4508 struct nlmsghdr *nlh;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004509 struct prefix_cacheinfo ci;
4510
Eric W. Biederman15e47302012-09-07 20:12:54 +00004511 nlh = nlmsg_put(skb, portid, seq, event, sizeof(*pmsg), flags);
Thomas Graf6051e2f2006-11-14 19:54:19 -08004512 if (nlh == NULL)
Patrick McHardy26932562007-01-31 23:16:40 -08004513 return -EMSGSIZE;
Thomas Graf6051e2f2006-11-14 19:54:19 -08004514
4515 pmsg = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004516 pmsg->prefix_family = AF_INET6;
Patrick McHardy8a470772005-06-28 12:56:45 -07004517 pmsg->prefix_pad1 = 0;
4518 pmsg->prefix_pad2 = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004519 pmsg->prefix_ifindex = idev->dev->ifindex;
4520 pmsg->prefix_len = pinfo->prefix_len;
4521 pmsg->prefix_type = pinfo->type;
Patrick McHardy8a470772005-06-28 12:56:45 -07004522 pmsg->prefix_pad3 = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004523 pmsg->prefix_flags = 0;
4524 if (pinfo->onlink)
4525 pmsg->prefix_flags |= IF_PREFIX_ONLINK;
4526 if (pinfo->autoconf)
4527 pmsg->prefix_flags |= IF_PREFIX_AUTOCONF;
4528
David S. Millerc78679e2012-04-01 20:27:33 -04004529 if (nla_put(skb, PREFIX_ADDRESS, sizeof(pinfo->prefix), &pinfo->prefix))
4530 goto nla_put_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004531 ci.preferred_time = ntohl(pinfo->prefered);
4532 ci.valid_time = ntohl(pinfo->valid);
David S. Millerc78679e2012-04-01 20:27:33 -04004533 if (nla_put(skb, PREFIX_CACHEINFO, sizeof(ci), &ci))
4534 goto nla_put_failure;
Thomas Graf6051e2f2006-11-14 19:54:19 -08004535 return nlmsg_end(skb, nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004536
Thomas Graf6051e2f2006-11-14 19:54:19 -08004537nla_put_failure:
Patrick McHardy26932562007-01-31 23:16:40 -08004538 nlmsg_cancel(skb, nlh);
4539 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004540}
4541
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09004542static void inet6_prefix_notify(int event, struct inet6_dev *idev,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004543 struct prefix_info *pinfo)
4544{
4545 struct sk_buff *skb;
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09004546 struct net *net = dev_net(idev->dev);
Thomas Graf8c384bfa2006-08-15 00:36:07 -07004547 int err = -ENOBUFS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004548
Thomas Graf339bf982006-11-10 14:10:15 -08004549 skb = nlmsg_new(inet6_prefix_nlmsg_size(), GFP_ATOMIC);
Thomas Graf8c384bfa2006-08-15 00:36:07 -07004550 if (skb == NULL)
4551 goto errout;
4552
4553 err = inet6_fill_prefix(skb, idev, pinfo, 0, 0, event, 0);
Patrick McHardy26932562007-01-31 23:16:40 -08004554 if (err < 0) {
4555 /* -EMSGSIZE implies BUG in inet6_prefix_nlmsg_size() */
4556 WARN_ON(err == -EMSGSIZE);
4557 kfree_skb(skb);
4558 goto errout;
4559 }
Pablo Neira Ayuso1ce85fe2009-02-24 23:18:28 -08004560 rtnl_notify(skb, net, 0, RTNLGRP_IPV6_PREFIX, NULL, GFP_ATOMIC);
4561 return;
Thomas Graf8c384bfa2006-08-15 00:36:07 -07004562errout:
4563 if (err < 0)
Benjamin Thery6fda7352008-03-05 10:47:47 -08004564 rtnl_set_sk_err(net, RTNLGRP_IPV6_PREFIX, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004565}
4566
Hannes Frederic Sowa1ec047e2013-06-27 00:06:56 +02004567static void update_valid_ll_addr_cnt(struct inet6_ifaddr *ifp, int count)
4568{
4569 write_lock_bh(&ifp->idev->lock);
4570 spin_lock(&ifp->lock);
4571 if (((ifp->flags & (IFA_F_PERMANENT|IFA_F_TENTATIVE|IFA_F_OPTIMISTIC|
4572 IFA_F_DADFAILED)) == IFA_F_PERMANENT) &&
4573 (ipv6_addr_type(&ifp->addr) & IPV6_ADDR_LINKLOCAL))
4574 ifp->idev->valid_ll_addr_cnt += count;
4575 WARN_ON(ifp->idev->valid_ll_addr_cnt < 0);
4576 spin_unlock(&ifp->lock);
4577 write_unlock_bh(&ifp->idev->lock);
4578}
4579
Linus Torvalds1da177e2005-04-16 15:20:36 -07004580static void __ipv6_ifa_notify(int event, struct inet6_ifaddr *ifp)
4581{
Nicolas Dichtel63998ac2013-03-22 06:28:43 +00004582 struct net *net = dev_net(ifp->idev->dev);
4583
Linus Torvalds1da177e2005-04-16 15:20:36 -07004584 inet6_ifa_notify(event ? : RTM_NEWADDR, ifp);
4585
4586 switch (event) {
4587 case RTM_NEWADDR:
Hannes Frederic Sowa1ec047e2013-06-27 00:06:56 +02004588 update_valid_ll_addr_cnt(ifp, 1);
4589
Neil Horman95c385b2007-04-25 17:08:10 -07004590 /*
4591 * If the address was optimistic
4592 * we inserted the route at the start of
4593 * our DAD process, so we don't need
4594 * to do it again
4595 */
4596 if (!(ifp->rt->rt6i_node))
4597 ip6_ins_rt(ifp->rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004598 if (ifp->idev->cnf.forwarding)
4599 addrconf_join_anycast(ifp);
Cong Wang7996c792013-05-22 05:41:06 +00004600 if (!ipv6_addr_any(&ifp->peer_addr))
Nicolas Dichtelcaeaba72013-05-16 22:32:00 +00004601 addrconf_prefix_route(&ifp->peer_addr, 128,
4602 ifp->idev->dev, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004603 break;
4604 case RTM_DELADDR:
Hannes Frederic Sowa1ec047e2013-06-27 00:06:56 +02004605 update_valid_ll_addr_cnt(ifp, -1);
4606
Linus Torvalds1da177e2005-04-16 15:20:36 -07004607 if (ifp->idev->cnf.forwarding)
4608 addrconf_leave_anycast(ifp);
4609 addrconf_leave_solict(ifp->idev, &ifp->addr);
Cong Wang7996c792013-05-22 05:41:06 +00004610 if (!ipv6_addr_any(&ifp->peer_addr)) {
Nicolas Dichtelcaeaba72013-05-16 22:32:00 +00004611 struct rt6_info *rt;
4612 struct net_device *dev = ifp->idev->dev;
4613
4614 rt = rt6_lookup(dev_net(dev), &ifp->peer_addr, NULL,
4615 dev->ifindex, 1);
4616 if (rt) {
4617 dst_hold(&rt->dst);
4618 if (ip6_del_rt(rt))
4619 dst_free(&rt->dst);
4620 }
4621 }
Changli Gaod8d1f302010-06-10 23:31:35 -07004622 dst_hold(&ifp->rt->dst);
stephen hemminger93fa1592010-04-12 05:41:31 +00004623
David S. Miller73a8bd72011-01-23 23:27:15 -08004624 if (ip6_del_rt(ifp->rt))
Changli Gaod8d1f302010-06-10 23:31:35 -07004625 dst_free(&ifp->rt->dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004626 break;
4627 }
Nicolas Dichtel63998ac2013-03-22 06:28:43 +00004628 atomic_inc(&net->ipv6.dev_addr_genid);
fan.du439677d2013-08-01 17:44:44 +08004629 rt_genid_bump_ipv6(net);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004630}
4631
4632static void ipv6_ifa_notify(int event, struct inet6_ifaddr *ifp)
4633{
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -07004634 rcu_read_lock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004635 if (likely(ifp->idev->dead == 0))
4636 __ipv6_ifa_notify(event, ifp);
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -07004637 rcu_read_unlock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004638}
4639
4640#ifdef CONFIG_SYSCTL
4641
4642static
Joe Perchesfe2c6332013-06-11 23:04:25 -07004643int addrconf_sysctl_forward(struct ctl_table *ctl, int write,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004644 void __user *buffer, size_t *lenp, loff_t *ppos)
4645{
4646 int *valp = ctl->data;
4647 int val = *valp;
Eric W. Biederman88af1822010-02-19 13:22:59 +00004648 loff_t pos = *ppos;
Joe Perchesfe2c6332013-06-11 23:04:25 -07004649 struct ctl_table lctl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004650 int ret;
4651
Francesco Ruggeri013d97e2012-01-16 10:40:10 +00004652 /*
4653 * ctl->data points to idev->cnf.forwarding, we should
4654 * not modify it until we get the rtnl lock.
4655 */
4656 lctl = *ctl;
4657 lctl.data = &val;
4658
4659 ret = proc_dointvec(&lctl, write, buffer, lenp, ppos);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004660
Pavel Emelyanovc8fecf22007-12-05 01:50:24 -08004661 if (write)
Stephen Hemmingerb325fdd2009-02-26 06:55:31 +00004662 ret = addrconf_fixup_forwarding(ctl, valp, val);
Eric W. Biederman88af1822010-02-19 13:22:59 +00004663 if (ret)
4664 *ppos = pos;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09004665 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004666}
4667
Brian Haley56d417b2009-06-01 03:07:33 -07004668static void dev_disable_change(struct inet6_dev *idev)
4669{
Cong Wang75538c22013-05-29 11:30:50 +08004670 struct netdev_notifier_info info;
4671
Brian Haley56d417b2009-06-01 03:07:33 -07004672 if (!idev || !idev->dev)
4673 return;
4674
Cong Wang75538c22013-05-29 11:30:50 +08004675 netdev_notifier_info_init(&info, idev->dev);
Brian Haley56d417b2009-06-01 03:07:33 -07004676 if (idev->cnf.disable_ipv6)
Cong Wang75538c22013-05-29 11:30:50 +08004677 addrconf_notify(NULL, NETDEV_DOWN, &info);
Brian Haley56d417b2009-06-01 03:07:33 -07004678 else
Cong Wang75538c22013-05-29 11:30:50 +08004679 addrconf_notify(NULL, NETDEV_UP, &info);
Brian Haley56d417b2009-06-01 03:07:33 -07004680}
4681
4682static void addrconf_disable_change(struct net *net, __s32 newf)
4683{
4684 struct net_device *dev;
4685 struct inet6_dev *idev;
4686
Eric Dumazetc6d14c82009-11-04 05:43:23 -08004687 rcu_read_lock();
4688 for_each_netdev_rcu(net, dev) {
Brian Haley56d417b2009-06-01 03:07:33 -07004689 idev = __in6_dev_get(dev);
4690 if (idev) {
4691 int changed = (!idev->cnf.disable_ipv6) ^ (!newf);
4692 idev->cnf.disable_ipv6 = newf;
4693 if (changed)
4694 dev_disable_change(idev);
4695 }
Brian Haley56d417b2009-06-01 03:07:33 -07004696 }
Eric Dumazetc6d14c82009-11-04 05:43:23 -08004697 rcu_read_unlock();
Brian Haley56d417b2009-06-01 03:07:33 -07004698}
4699
Francesco Ruggeri013d97e2012-01-16 10:40:10 +00004700static int addrconf_disable_ipv6(struct ctl_table *table, int *p, int newf)
Brian Haley56d417b2009-06-01 03:07:33 -07004701{
4702 struct net *net;
Francesco Ruggeri013d97e2012-01-16 10:40:10 +00004703 int old;
4704
4705 if (!rtnl_trylock())
4706 return restart_syscall();
Brian Haley56d417b2009-06-01 03:07:33 -07004707
4708 net = (struct net *)table->extra2;
Francesco Ruggeri013d97e2012-01-16 10:40:10 +00004709 old = *p;
4710 *p = newf;
Brian Haley56d417b2009-06-01 03:07:33 -07004711
Francesco Ruggeri013d97e2012-01-16 10:40:10 +00004712 if (p == &net->ipv6.devconf_dflt->disable_ipv6) {
4713 rtnl_unlock();
Brian Haley56d417b2009-06-01 03:07:33 -07004714 return 0;
Eric W. Biederman88af1822010-02-19 13:22:59 +00004715 }
Brian Haley56d417b2009-06-01 03:07:33 -07004716
4717 if (p == &net->ipv6.devconf_all->disable_ipv6) {
Brian Haley56d417b2009-06-01 03:07:33 -07004718 net->ipv6.devconf_dflt->disable_ipv6 = newf;
4719 addrconf_disable_change(net, newf);
Francesco Ruggeri013d97e2012-01-16 10:40:10 +00004720 } else if ((!newf) ^ (!old))
Brian Haley56d417b2009-06-01 03:07:33 -07004721 dev_disable_change((struct inet6_dev *)table->extra1);
4722
4723 rtnl_unlock();
4724 return 0;
4725}
4726
4727static
Joe Perchesfe2c6332013-06-11 23:04:25 -07004728int addrconf_sysctl_disable(struct ctl_table *ctl, int write,
Brian Haley56d417b2009-06-01 03:07:33 -07004729 void __user *buffer, size_t *lenp, loff_t *ppos)
4730{
4731 int *valp = ctl->data;
4732 int val = *valp;
Eric W. Biederman88af1822010-02-19 13:22:59 +00004733 loff_t pos = *ppos;
Joe Perchesfe2c6332013-06-11 23:04:25 -07004734 struct ctl_table lctl;
Brian Haley56d417b2009-06-01 03:07:33 -07004735 int ret;
4736
Francesco Ruggeri013d97e2012-01-16 10:40:10 +00004737 /*
4738 * ctl->data points to idev->cnf.disable_ipv6, we should
4739 * not modify it until we get the rtnl lock.
4740 */
4741 lctl = *ctl;
4742 lctl.data = &val;
4743
4744 ret = proc_dointvec(&lctl, write, buffer, lenp, ppos);
Brian Haley56d417b2009-06-01 03:07:33 -07004745
4746 if (write)
4747 ret = addrconf_disable_ipv6(ctl, valp, val);
Eric W. Biederman88af1822010-02-19 13:22:59 +00004748 if (ret)
4749 *ppos = pos;
Brian Haley56d417b2009-06-01 03:07:33 -07004750 return ret;
4751}
4752
Linus Torvalds1da177e2005-04-16 15:20:36 -07004753static struct addrconf_sysctl_table
4754{
4755 struct ctl_table_header *sysctl_header;
Joe Perchesfe2c6332013-06-11 23:04:25 -07004756 struct ctl_table addrconf_vars[DEVCONF_MAX+1];
Brian Haleyab32ea52006-09-22 14:15:41 -07004757} addrconf_sysctl __read_mostly = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004758 .sysctl_header = NULL,
4759 .addrconf_vars = {
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09004760 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004761 .procname = "forwarding",
4762 .data = &ipv6_devconf.forwarding,
4763 .maxlen = sizeof(int),
4764 .mode = 0644,
4765 .proc_handler = addrconf_sysctl_forward,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004766 },
4767 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004768 .procname = "hop_limit",
4769 .data = &ipv6_devconf.hop_limit,
4770 .maxlen = sizeof(int),
4771 .mode = 0644,
4772 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004773 },
4774 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004775 .procname = "mtu",
4776 .data = &ipv6_devconf.mtu6,
4777 .maxlen = sizeof(int),
4778 .mode = 0644,
4779 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004780 },
4781 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004782 .procname = "accept_ra",
4783 .data = &ipv6_devconf.accept_ra,
4784 .maxlen = sizeof(int),
4785 .mode = 0644,
4786 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004787 },
4788 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004789 .procname = "accept_redirects",
4790 .data = &ipv6_devconf.accept_redirects,
4791 .maxlen = sizeof(int),
4792 .mode = 0644,
4793 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004794 },
4795 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004796 .procname = "autoconf",
4797 .data = &ipv6_devconf.autoconf,
4798 .maxlen = sizeof(int),
4799 .mode = 0644,
4800 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004801 },
4802 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004803 .procname = "dad_transmits",
4804 .data = &ipv6_devconf.dad_transmits,
4805 .maxlen = sizeof(int),
4806 .mode = 0644,
4807 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004808 },
4809 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004810 .procname = "router_solicitations",
4811 .data = &ipv6_devconf.rtr_solicits,
4812 .maxlen = sizeof(int),
4813 .mode = 0644,
4814 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004815 },
4816 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004817 .procname = "router_solicitation_interval",
4818 .data = &ipv6_devconf.rtr_solicit_interval,
4819 .maxlen = sizeof(int),
4820 .mode = 0644,
4821 .proc_handler = proc_dointvec_jiffies,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004822 },
4823 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004824 .procname = "router_solicitation_delay",
4825 .data = &ipv6_devconf.rtr_solicit_delay,
4826 .maxlen = sizeof(int),
4827 .mode = 0644,
4828 .proc_handler = proc_dointvec_jiffies,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004829 },
4830 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004831 .procname = "force_mld_version",
4832 .data = &ipv6_devconf.force_mld_version,
4833 .maxlen = sizeof(int),
4834 .mode = 0644,
4835 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004836 },
Hannes Frederic Sowafc4eba52013-08-14 01:03:46 +02004837 {
4838 .procname = "mldv1_unsolicited_report_interval",
4839 .data =
4840 &ipv6_devconf.mldv1_unsolicited_report_interval,
4841 .maxlen = sizeof(int),
4842 .mode = 0644,
4843 .proc_handler = proc_dointvec_ms_jiffies,
4844 },
4845 {
4846 .procname = "mldv2_unsolicited_report_interval",
4847 .data =
4848 &ipv6_devconf.mldv2_unsolicited_report_interval,
4849 .maxlen = sizeof(int),
4850 .mode = 0644,
4851 .proc_handler = proc_dointvec_ms_jiffies,
4852 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07004853#ifdef CONFIG_IPV6_PRIVACY
4854 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004855 .procname = "use_tempaddr",
4856 .data = &ipv6_devconf.use_tempaddr,
4857 .maxlen = sizeof(int),
4858 .mode = 0644,
4859 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004860 },
4861 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004862 .procname = "temp_valid_lft",
4863 .data = &ipv6_devconf.temp_valid_lft,
4864 .maxlen = sizeof(int),
4865 .mode = 0644,
4866 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004867 },
4868 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004869 .procname = "temp_prefered_lft",
4870 .data = &ipv6_devconf.temp_prefered_lft,
4871 .maxlen = sizeof(int),
4872 .mode = 0644,
4873 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004874 },
4875 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004876 .procname = "regen_max_retry",
4877 .data = &ipv6_devconf.regen_max_retry,
4878 .maxlen = sizeof(int),
4879 .mode = 0644,
4880 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004881 },
4882 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004883 .procname = "max_desync_factor",
4884 .data = &ipv6_devconf.max_desync_factor,
4885 .maxlen = sizeof(int),
4886 .mode = 0644,
4887 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004888 },
4889#endif
4890 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004891 .procname = "max_addresses",
4892 .data = &ipv6_devconf.max_addresses,
4893 .maxlen = sizeof(int),
4894 .mode = 0644,
4895 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004896 },
4897 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004898 .procname = "accept_ra_defrtr",
4899 .data = &ipv6_devconf.accept_ra_defrtr,
4900 .maxlen = sizeof(int),
4901 .mode = 0644,
4902 .proc_handler = proc_dointvec,
YOSHIFUJI Hideaki65f5c7c2006-03-20 16:55:08 -08004903 },
4904 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004905 .procname = "accept_ra_pinfo",
4906 .data = &ipv6_devconf.accept_ra_pinfo,
4907 .maxlen = sizeof(int),
4908 .mode = 0644,
4909 .proc_handler = proc_dointvec,
YOSHIFUJI Hideakic4fd30e2006-03-20 16:55:26 -08004910 },
YOSHIFUJI Hideaki930d6ff2006-03-20 17:05:30 -08004911#ifdef CONFIG_IPV6_ROUTER_PREF
4912 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004913 .procname = "accept_ra_rtr_pref",
4914 .data = &ipv6_devconf.accept_ra_rtr_pref,
4915 .maxlen = sizeof(int),
4916 .mode = 0644,
4917 .proc_handler = proc_dointvec,
YOSHIFUJI Hideaki930d6ff2006-03-20 17:05:30 -08004918 },
YOSHIFUJI Hideaki52e16352006-03-20 17:05:47 -08004919 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004920 .procname = "router_probe_interval",
4921 .data = &ipv6_devconf.rtr_probe_interval,
4922 .maxlen = sizeof(int),
4923 .mode = 0644,
4924 .proc_handler = proc_dointvec_jiffies,
YOSHIFUJI Hideaki52e16352006-03-20 17:05:47 -08004925 },
Neil Hormanfa03ef32007-01-30 14:30:10 -08004926#ifdef CONFIG_IPV6_ROUTE_INFO
YOSHIFUJI Hideaki09c884d2006-03-20 17:07:03 -08004927 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004928 .procname = "accept_ra_rt_info_max_plen",
4929 .data = &ipv6_devconf.accept_ra_rt_info_max_plen,
4930 .maxlen = sizeof(int),
4931 .mode = 0644,
4932 .proc_handler = proc_dointvec,
YOSHIFUJI Hideaki09c884d2006-03-20 17:07:03 -08004933 },
4934#endif
YOSHIFUJI Hideaki930d6ff2006-03-20 17:05:30 -08004935#endif
YOSHIFUJI Hideakic4fd30e2006-03-20 16:55:26 -08004936 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004937 .procname = "proxy_ndp",
4938 .data = &ipv6_devconf.proxy_ndp,
4939 .maxlen = sizeof(int),
4940 .mode = 0644,
4941 .proc_handler = proc_dointvec,
YOSHIFUJI Hideakifbea49e2006-09-22 14:43:49 -07004942 },
4943 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004944 .procname = "accept_source_route",
4945 .data = &ipv6_devconf.accept_source_route,
4946 .maxlen = sizeof(int),
4947 .mode = 0644,
4948 .proc_handler = proc_dointvec,
YOSHIFUJI Hideaki0bcbc922007-04-24 14:58:30 -07004949 },
Neil Horman95c385b2007-04-25 17:08:10 -07004950#ifdef CONFIG_IPV6_OPTIMISTIC_DAD
4951 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004952 .procname = "optimistic_dad",
4953 .data = &ipv6_devconf.optimistic_dad,
4954 .maxlen = sizeof(int),
4955 .mode = 0644,
4956 .proc_handler = proc_dointvec,
Neil Horman95c385b2007-04-25 17:08:10 -07004957
4958 },
4959#endif
YOSHIFUJI Hideaki7bc570c2008-04-03 09:22:53 +09004960#ifdef CONFIG_IPV6_MROUTE
4961 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004962 .procname = "mc_forwarding",
4963 .data = &ipv6_devconf.mc_forwarding,
4964 .maxlen = sizeof(int),
4965 .mode = 0444,
4966 .proc_handler = proc_dointvec,
YOSHIFUJI Hideaki7bc570c2008-04-03 09:22:53 +09004967 },
4968#endif
YOSHIFUJI Hideaki0bcbc922007-04-24 14:58:30 -07004969 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004970 .procname = "disable_ipv6",
4971 .data = &ipv6_devconf.disable_ipv6,
4972 .maxlen = sizeof(int),
4973 .mode = 0644,
4974 .proc_handler = addrconf_sysctl_disable,
YOSHIFUJI Hideaki778d80b2008-06-28 14:17:11 +09004975 },
4976 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004977 .procname = "accept_dad",
4978 .data = &ipv6_devconf.accept_dad,
4979 .maxlen = sizeof(int),
4980 .mode = 0644,
4981 .proc_handler = proc_dointvec,
YOSHIFUJI Hideaki1b34be72008-06-28 14:18:38 +09004982 },
4983 {
Octavian Purdilaf7734fd2009-10-02 11:39:15 +00004984 .procname = "force_tllao",
4985 .data = &ipv6_devconf.force_tllao,
4986 .maxlen = sizeof(int),
4987 .mode = 0644,
4988 .proc_handler = proc_dointvec
4989 },
4990 {
Hannes Frederic Sowa5cb04432012-11-06 16:46:20 +00004991 .procname = "ndisc_notify",
4992 .data = &ipv6_devconf.ndisc_notify,
4993 .maxlen = sizeof(int),
4994 .mode = 0644,
4995 .proc_handler = proc_dointvec
4996 },
4997 {
Hannes Frederic Sowab800c3b2013-08-27 01:36:51 +02004998 .procname = "suppress_frag_ndisc",
4999 .data = &ipv6_devconf.suppress_frag_ndisc,
5000 .maxlen = sizeof(int),
5001 .mode = 0644,
5002 .proc_handler = proc_dointvec
5003 },
5004 {
Eric W. Biedermanf8572d82009-11-05 13:32:03 -08005005 /* sentinel */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005006 }
5007 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07005008};
5009
Pavel Emelyanovbff16c22008-01-10 17:42:13 -08005010static int __addrconf_sysctl_register(struct net *net, char *dev_name,
Eric W. Biedermanf8572d82009-11-05 13:32:03 -08005011 struct inet6_dev *idev, struct ipv6_devconf *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005012{
5013 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005014 struct addrconf_sysctl_table *t;
Eric W. Biederman6105e292012-04-19 13:41:24 +00005015 char path[sizeof("net/ipv6/conf/") + IFNAMSIZ];
Pavel Emelyanov1dab6222007-12-02 00:59:38 +11005016
Arnaldo Carvalho de Meloaf879cc2006-11-17 12:14:37 -02005017 t = kmemdup(&addrconf_sysctl, sizeof(*t), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005018 if (t == NULL)
Pavel Emelyanovf68635e2007-12-02 00:21:52 +11005019 goto out;
5020
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07005021 for (i = 0; t->addrconf_vars[i].data; i++) {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07005022 t->addrconf_vars[i].data += (char *)p - (char *)&ipv6_devconf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005023 t->addrconf_vars[i].extra1 = idev; /* embedded; no ref */
Pavel Emelyanovbff16c22008-01-10 17:42:13 -08005024 t->addrconf_vars[i].extra2 = net;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005025 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005026
Eric W. Biederman6105e292012-04-19 13:41:24 +00005027 snprintf(path, sizeof(path), "net/ipv6/conf/%s", dev_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005028
Eric W. Biederman6105e292012-04-19 13:41:24 +00005029 t->sysctl_header = register_net_sysctl(net, path, t->addrconf_vars);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005030 if (t->sysctl_header == NULL)
Eric W. Biederman6105e292012-04-19 13:41:24 +00005031 goto free;
Pavel Emelyanovf68635e2007-12-02 00:21:52 +11005032
5033 p->sysctl = t;
Pavel Emelyanov95897312008-01-10 17:41:45 -08005034 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005035
Pavel Emelyanovf68635e2007-12-02 00:21:52 +11005036free:
Linus Torvalds1da177e2005-04-16 15:20:36 -07005037 kfree(t);
Pavel Emelyanovf68635e2007-12-02 00:21:52 +11005038out:
Pavel Emelyanov95897312008-01-10 17:41:45 -08005039 return -ENOBUFS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005040}
5041
Pavel Emelyanov408c4762008-01-10 17:41:21 -08005042static void __addrconf_sysctl_unregister(struct ipv6_devconf *p)
5043{
5044 struct addrconf_sysctl_table *t;
5045
5046 if (p->sysctl == NULL)
5047 return;
5048
5049 t = p->sysctl;
5050 p->sysctl = NULL;
Lucian Adrian Grijincuff538812011-05-01 01:44:01 +00005051 unregister_net_sysctl_table(t->sysctl_header);
Pavel Emelyanov408c4762008-01-10 17:41:21 -08005052 kfree(t);
5053}
5054
Pavel Emelyanovf52295a2007-12-02 00:58:37 +11005055static void addrconf_sysctl_register(struct inet6_dev *idev)
5056{
Eric W. Biederman54716e32010-02-14 03:27:03 +00005057 neigh_sysctl_register(idev->dev, idev->nd_parms, "ipv6",
Eric W. Biedermanf8572d82009-11-05 13:32:03 -08005058 &ndisc_ifinfo_sysctl_change);
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09005059 __addrconf_sysctl_register(dev_net(idev->dev), idev->dev->name,
Eric W. Biedermanf8572d82009-11-05 13:32:03 -08005060 idev, &idev->cnf);
Pavel Emelyanovf52295a2007-12-02 00:58:37 +11005061}
5062
Pavel Emelyanov408c4762008-01-10 17:41:21 -08005063static void addrconf_sysctl_unregister(struct inet6_dev *idev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005064{
Pavel Emelyanov408c4762008-01-10 17:41:21 -08005065 __addrconf_sysctl_unregister(&idev->cnf);
5066 neigh_sysctl_unregister(idev->nd_parms);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005067}
5068
5069
5070#endif
5071
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00005072static int __net_init addrconf_init_net(struct net *net)
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08005073{
Hong Zhiguoa79ca222013-03-26 01:52:45 +08005074 int err = -ENOMEM;
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08005075 struct ipv6_devconf *all, *dflt;
5076
Hong Zhiguoa79ca222013-03-26 01:52:45 +08005077 all = kmemdup(&ipv6_devconf, sizeof(ipv6_devconf), GFP_KERNEL);
5078 if (all == NULL)
5079 goto err_alloc_all;
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08005080
Hong Zhiguoa79ca222013-03-26 01:52:45 +08005081 dflt = kmemdup(&ipv6_devconf_dflt, sizeof(ipv6_devconf_dflt), GFP_KERNEL);
5082 if (dflt == NULL)
5083 goto err_alloc_dflt;
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08005084
Hong Zhiguoa79ca222013-03-26 01:52:45 +08005085 /* these will be inherited by all namespaces */
5086 dflt->autoconf = ipv6_defaults.autoconf;
5087 dflt->disable_ipv6 = ipv6_defaults.disable_ipv6;
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08005088
5089 net->ipv6.devconf_all = all;
5090 net->ipv6.devconf_dflt = dflt;
5091
5092#ifdef CONFIG_SYSCTL
Eric W. Biedermanf8572d82009-11-05 13:32:03 -08005093 err = __addrconf_sysctl_register(net, "all", NULL, all);
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08005094 if (err < 0)
5095 goto err_reg_all;
5096
Eric W. Biedermanf8572d82009-11-05 13:32:03 -08005097 err = __addrconf_sysctl_register(net, "default", NULL, dflt);
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08005098 if (err < 0)
5099 goto err_reg_dflt;
5100#endif
5101 return 0;
5102
5103#ifdef CONFIG_SYSCTL
5104err_reg_dflt:
5105 __addrconf_sysctl_unregister(all);
5106err_reg_all:
5107 kfree(dflt);
5108#endif
5109err_alloc_dflt:
5110 kfree(all);
5111err_alloc_all:
5112 return err;
5113}
5114
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00005115static void __net_exit addrconf_exit_net(struct net *net)
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08005116{
5117#ifdef CONFIG_SYSCTL
5118 __addrconf_sysctl_unregister(net->ipv6.devconf_dflt);
5119 __addrconf_sysctl_unregister(net->ipv6.devconf_all);
5120#endif
Octavian Purdila09ad9bc2009-11-25 15:14:13 -08005121 if (!net_eq(net, &init_net)) {
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08005122 kfree(net->ipv6.devconf_dflt);
5123 kfree(net->ipv6.devconf_all);
5124 }
5125}
5126
5127static struct pernet_operations addrconf_ops = {
5128 .init = addrconf_init_net,
5129 .exit = addrconf_exit_net,
5130};
5131
Thomas Grafb382b192010-11-16 04:33:57 +00005132static struct rtnl_af_ops inet6_ops = {
5133 .family = AF_INET6,
5134 .fill_link_af = inet6_fill_link_af,
5135 .get_link_af_size = inet6_get_link_af_size,
Daniel Borkmannf53adae2013-04-08 04:01:30 +00005136 .set_link_af = inet6_set_link_af,
Thomas Grafb382b192010-11-16 04:33:57 +00005137};
5138
Linus Torvalds1da177e2005-04-16 15:20:36 -07005139/*
5140 * Init / cleanup code
5141 */
5142
5143int __init addrconf_init(void)
5144{
stephen hemmingerc2e21292010-03-17 20:31:10 +00005145 int i, err;
YOSHIFUJI Hideaki2a8cc6c2007-11-14 15:56:23 +09005146
Stephen Hemmingere21e8462010-03-20 16:09:01 -07005147 err = ipv6_addr_label_init();
5148 if (err < 0) {
Joe Perchesf3213832012-05-15 14:11:53 +00005149 pr_crit("%s: cannot initialize default policy table: %d\n",
5150 __func__, err);
Neil Horman2cc6d2b2010-09-24 09:55:52 +00005151 goto out;
YOSHIFUJI Hideaki2a8cc6c2007-11-14 15:56:23 +09005152 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005153
Neil Horman2cc6d2b2010-09-24 09:55:52 +00005154 err = register_pernet_subsys(&addrconf_ops);
5155 if (err < 0)
5156 goto out_addrlabel;
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08005157
Linus Torvalds1da177e2005-04-16 15:20:36 -07005158 /* The addrconf netdev notifier requires that loopback_dev
5159 * has it's ipv6 private information allocated and setup
5160 * before it can bring up and give link-local addresses
5161 * to other devices which are up.
5162 *
5163 * Unfortunately, loopback_dev is not necessarily the first
5164 * entry in the global dev_base list of net devices. In fact,
5165 * it is likely to be the very last entry on that list.
5166 * So this causes the notifier registry below to try and
5167 * give link-local addresses to all devices besides loopback_dev
5168 * first, then loopback_dev, which cases all the non-loopback_dev
5169 * devices to fail to get a link-local address.
5170 *
5171 * So, as a temporary fix, allocate the ipv6 structure for
5172 * loopback_dev first by hand.
5173 * Longer term, all of the dependencies ipv6 has upon the loopback
5174 * device and it being up should be removed.
5175 */
5176 rtnl_lock();
Eric W. Biederman2774c7a2007-09-26 22:10:56 -07005177 if (!ipv6_add_dev(init_net.loopback_dev))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005178 err = -ENOMEM;
5179 rtnl_unlock();
5180 if (err)
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08005181 goto errlo;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005182
stephen hemmingerc2e21292010-03-17 20:31:10 +00005183 for (i = 0; i < IN6_ADDR_HSIZE; i++)
5184 INIT_HLIST_HEAD(&inet6_addr_lst[i]);
5185
Linus Torvalds1da177e2005-04-16 15:20:36 -07005186 register_netdevice_notifier(&ipv6_dev_notf);
5187
Linus Torvalds1da177e2005-04-16 15:20:36 -07005188 addrconf_verify(0);
Thomas Grafc127ea22007-03-22 11:58:32 -07005189
Thomas Grafb382b192010-11-16 04:33:57 +00005190 err = rtnl_af_register(&inet6_ops);
5191 if (err < 0)
5192 goto errout_af;
5193
Greg Rosec7ac8672011-06-10 01:27:09 +00005194 err = __rtnl_register(PF_INET6, RTM_GETLINK, NULL, inet6_dump_ifinfo,
5195 NULL);
Thomas Grafc127ea22007-03-22 11:58:32 -07005196 if (err < 0)
5197 goto errout;
5198
5199 /* Only the first call to __rtnl_register can fail */
Greg Rosec7ac8672011-06-10 01:27:09 +00005200 __rtnl_register(PF_INET6, RTM_NEWADDR, inet6_rtm_newaddr, NULL, NULL);
5201 __rtnl_register(PF_INET6, RTM_DELADDR, inet6_rtm_deladdr, NULL, NULL);
5202 __rtnl_register(PF_INET6, RTM_GETADDR, inet6_rtm_getaddr,
5203 inet6_dump_ifaddr, NULL);
5204 __rtnl_register(PF_INET6, RTM_GETMULTICAST, NULL,
5205 inet6_dump_ifmcaddr, NULL);
5206 __rtnl_register(PF_INET6, RTM_GETANYCAST, NULL,
5207 inet6_dump_ifacaddr, NULL);
Nicolas Dichtel76f8f6c2012-10-25 22:28:51 +00005208 __rtnl_register(PF_INET6, RTM_GETNETCONF, inet6_netconf_get_devconf,
Nicolas Dichtel7a674202013-03-05 23:42:06 +00005209 inet6_netconf_dump_devconf, NULL);
Thomas Grafc127ea22007-03-22 11:58:32 -07005210
YOSHIFUJI Hideaki2a8cc6c2007-11-14 15:56:23 +09005211 ipv6_addr_label_rtnl_register();
5212
Linus Torvalds1da177e2005-04-16 15:20:36 -07005213 return 0;
Thomas Grafc127ea22007-03-22 11:58:32 -07005214errout:
Thomas Grafb382b192010-11-16 04:33:57 +00005215 rtnl_af_unregister(&inet6_ops);
5216errout_af:
Thomas Grafc127ea22007-03-22 11:58:32 -07005217 unregister_netdevice_notifier(&ipv6_dev_notf);
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08005218errlo:
5219 unregister_pernet_subsys(&addrconf_ops);
Neil Horman2cc6d2b2010-09-24 09:55:52 +00005220out_addrlabel:
5221 ipv6_addr_label_cleanup();
5222out:
Thomas Grafc127ea22007-03-22 11:58:32 -07005223 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005224}
5225
Daniel Lezcano09f77092007-12-13 05:34:58 -08005226void addrconf_cleanup(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005227{
Daniel Lezcano176c39a2009-03-03 01:06:45 -08005228 struct net_device *dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005229 int i;
5230
5231 unregister_netdevice_notifier(&ipv6_dev_notf);
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08005232 unregister_pernet_subsys(&addrconf_ops);
Neil Horman2cc6d2b2010-09-24 09:55:52 +00005233 ipv6_addr_label_cleanup();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005234
5235 rtnl_lock();
5236
Thomas Grafb382b192010-11-16 04:33:57 +00005237 __rtnl_af_unregister(&inet6_ops);
5238
Daniel Lezcano176c39a2009-03-03 01:06:45 -08005239 /* clean dev list */
5240 for_each_netdev(&init_net, dev) {
5241 if (__in6_dev_get(dev) == NULL)
5242 continue;
5243 addrconf_ifdown(dev, 1);
5244 }
5245 addrconf_ifdown(init_net.loopback_dev, 2);
5246
Linus Torvalds1da177e2005-04-16 15:20:36 -07005247 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005248 * Check hash table.
5249 */
stephen hemminger5c578ae2010-03-17 20:31:11 +00005250 spin_lock_bh(&addrconf_hash_lock);
stephen hemmingerc2e21292010-03-17 20:31:10 +00005251 for (i = 0; i < IN6_ADDR_HSIZE; i++)
5252 WARN_ON(!hlist_empty(&inet6_addr_lst[i]));
stephen hemminger5c578ae2010-03-17 20:31:11 +00005253 spin_unlock_bh(&addrconf_hash_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005254
5255 del_timer(&addr_chk_timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005256 rtnl_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005257}