blob: 5969ca19a6c82d186d568ecb170e8fb747f55c5a [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#include <linux/random.h>
Stephen Hemmingere21e8462010-03-20 16:09:01 -070087#include <linux/uaccess.h>
Herbert Xu7f7d9a62007-04-24 21:54:09 -070088#include <asm/unaligned.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070089
90#include <linux/proc_fs.h>
91#include <linux/seq_file.h>
Paul Gortmakerbc3b2d72011-07-15 11:47:34 -040092#include <linux/export.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070093
94/* Set to 3 to get tracing... */
95#define ACONF_DEBUG 2
96
97#if ACONF_DEBUG >= 3
dingtianhongba3542e2013-08-17 10:27:04 +080098#define ADBG(fmt, ...) printk(fmt, ##__VA_ARGS__)
Linus Torvalds1da177e2005-04-16 15:20:36 -070099#else
dingtianhongba3542e2013-08-17 10:27:04 +0800100#define ADBG(fmt, ...) do { if (0) printk(fmt, ##__VA_ARGS__); } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101#endif
102
103#define INFINITY_LIFE_TIME 0xFFFFFFFF
Thomas Graf18a31e12010-11-17 04:12:02 +0000104
105static inline u32 cstamp_delta(unsigned long cstamp)
106{
107 return (cstamp - INITIAL_JIFFIES) * 100UL / HZ;
108}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109
110#ifdef CONFIG_SYSCTL
Pavel Emelyanovf52295a2007-12-02 00:58:37 +1100111static void addrconf_sysctl_register(struct inet6_dev *idev);
Pavel Emelyanov408c4762008-01-10 17:41:21 -0800112static void addrconf_sysctl_unregister(struct inet6_dev *idev);
113#else
114static inline void addrconf_sysctl_register(struct inet6_dev *idev)
115{
116}
117
118static inline void addrconf_sysctl_unregister(struct inet6_dev *idev)
119{
120}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121#endif
122
Sorin Dumitrueb7e0572012-08-30 02:01:45 +0000123static void __ipv6_regen_rndid(struct inet6_dev *idev);
124static void __ipv6_try_regen_rndid(struct inet6_dev *idev, struct in6_addr *tmpaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125static void ipv6_regen_rndid(unsigned long data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126
YOSHIFUJI Hideaki1b34be72008-06-28 14:18:38 +0900127static int ipv6_generate_eui64(u8 *eui, struct net_device *dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128static int ipv6_count_addresses(struct inet6_dev *idev);
129
130/*
131 * Configured unicast address hash table
132 */
stephen hemmingerc2e21292010-03-17 20:31:10 +0000133static struct hlist_head inet6_addr_lst[IN6_ADDR_HSIZE];
stephen hemminger5c578ae2010-03-17 20:31:11 +0000134static DEFINE_SPINLOCK(addrconf_hash_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136static void addrconf_verify(unsigned long);
137
Ingo Molnar8d06afa2005-09-09 13:10:40 -0700138static DEFINE_TIMER(addr_chk_timer, addrconf_verify, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139static DEFINE_SPINLOCK(addrconf_verify_lock);
140
141static void addrconf_join_anycast(struct inet6_ifaddr *ifp);
142static void addrconf_leave_anycast(struct inet6_ifaddr *ifp);
143
Jiri Pirko93d9b7d2010-03-10 10:28:56 +0000144static void addrconf_type_change(struct net_device *dev,
145 unsigned long event);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146static int addrconf_ifdown(struct net_device *dev, int how);
147
Romain Kuntz21caa662013-01-09 21:06:03 +0000148static struct rt6_info *addrconf_get_prefix_route(const struct in6_addr *pfx,
149 int plen,
150 const struct net_device *dev,
151 u32 flags, u32 noflags);
152
David S. Millercf22f9a2012-04-14 21:37:40 -0400153static void addrconf_dad_start(struct inet6_ifaddr *ifp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154static void addrconf_dad_timer(unsigned long data);
155static void addrconf_dad_completed(struct inet6_ifaddr *ifp);
YOSHIFUJI Hideakic5e33bd2005-12-21 22:57:44 +0900156static void addrconf_dad_run(struct inet6_dev *idev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157static void addrconf_rs_timer(unsigned long data);
158static void __ipv6_ifa_notify(int event, struct inet6_ifaddr *ifa);
159static void ipv6_ifa_notify(int event, struct inet6_ifaddr *ifa);
160
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900161static void inet6_prefix_notify(int event, struct inet6_dev *idev,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162 struct prefix_info *pinfo);
David S. Miller3e81c6d2010-03-20 16:18:00 -0700163static bool ipv6_chk_same_addr(struct net *net, const struct in6_addr *addr,
164 struct net_device *dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165
Adrian Bunk888c8482008-07-22 14:21:58 -0700166static struct ipv6_devconf ipv6_devconf __read_mostly = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167 .forwarding = 0,
168 .hop_limit = IPV6_DEFAULT_HOPLIMIT,
169 .mtu6 = IPV6_MIN_MTU,
170 .accept_ra = 1,
171 .accept_redirects = 1,
172 .autoconf = 1,
173 .force_mld_version = 0,
Hannes Frederic Sowafc4eba52013-08-14 01:03:46 +0200174 .mldv1_unsolicited_report_interval = 10 * HZ,
175 .mldv2_unsolicited_report_interval = HZ,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176 .dad_transmits = 1,
177 .rtr_solicits = MAX_RTR_SOLICITATIONS,
178 .rtr_solicit_interval = RTR_SOLICITATION_INTERVAL,
179 .rtr_solicit_delay = MAX_RTR_SOLICITATION_DELAY,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180 .use_tempaddr = 0,
181 .temp_valid_lft = TEMP_VALID_LIFETIME,
182 .temp_prefered_lft = TEMP_PREFERRED_LIFETIME,
183 .regen_max_retry = REGEN_MAX_RETRY,
184 .max_desync_factor = MAX_DESYNC_FACTOR,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185 .max_addresses = IPV6_MAX_ADDRESSES,
YOSHIFUJI Hideaki65f5c7c2006-03-20 16:55:08 -0800186 .accept_ra_defrtr = 1,
YOSHIFUJI Hideakic4fd30e2006-03-20 16:55:26 -0800187 .accept_ra_pinfo = 1,
YOSHIFUJI Hideaki930d6ff2006-03-20 17:05:30 -0800188#ifdef CONFIG_IPV6_ROUTER_PREF
189 .accept_ra_rtr_pref = 1,
YOSHIFUJI Hideaki52e16352006-03-20 17:05:47 -0800190 .rtr_probe_interval = 60 * HZ,
YOSHIFUJI Hideaki09c884d2006-03-20 17:07:03 -0800191#ifdef CONFIG_IPV6_ROUTE_INFO
192 .accept_ra_rt_info_max_plen = 0,
193#endif
YOSHIFUJI Hideaki930d6ff2006-03-20 17:05:30 -0800194#endif
YOSHIFUJI Hideakifbea49e2006-09-22 14:43:49 -0700195 .proxy_ndp = 0,
YOSHIFUJI Hideaki0bcbc922007-04-24 14:58:30 -0700196 .accept_source_route = 0, /* we do not accept RH0 by default. */
YOSHIFUJI Hideaki778d80b2008-06-28 14:17:11 +0900197 .disable_ipv6 = 0,
YOSHIFUJI Hideaki1b34be72008-06-28 14:18:38 +0900198 .accept_dad = 1,
Hannes Frederic Sowab800c3b2013-08-27 01:36:51 +0200199 .suppress_frag_ndisc = 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200};
201
Brian Haleyab32ea52006-09-22 14:15:41 -0700202static struct ipv6_devconf ipv6_devconf_dflt __read_mostly = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203 .forwarding = 0,
204 .hop_limit = IPV6_DEFAULT_HOPLIMIT,
205 .mtu6 = IPV6_MIN_MTU,
206 .accept_ra = 1,
207 .accept_redirects = 1,
208 .autoconf = 1,
Hannes Frederic Sowafc4eba52013-08-14 01:03:46 +0200209 .force_mld_version = 0,
210 .mldv1_unsolicited_report_interval = 10 * HZ,
211 .mldv2_unsolicited_report_interval = HZ,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212 .dad_transmits = 1,
213 .rtr_solicits = MAX_RTR_SOLICITATIONS,
214 .rtr_solicit_interval = RTR_SOLICITATION_INTERVAL,
215 .rtr_solicit_delay = MAX_RTR_SOLICITATION_DELAY,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216 .use_tempaddr = 0,
217 .temp_valid_lft = TEMP_VALID_LIFETIME,
218 .temp_prefered_lft = TEMP_PREFERRED_LIFETIME,
219 .regen_max_retry = REGEN_MAX_RETRY,
220 .max_desync_factor = MAX_DESYNC_FACTOR,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221 .max_addresses = IPV6_MAX_ADDRESSES,
YOSHIFUJI Hideaki65f5c7c2006-03-20 16:55:08 -0800222 .accept_ra_defrtr = 1,
YOSHIFUJI Hideakic4fd30e2006-03-20 16:55:26 -0800223 .accept_ra_pinfo = 1,
YOSHIFUJI Hideaki930d6ff2006-03-20 17:05:30 -0800224#ifdef CONFIG_IPV6_ROUTER_PREF
225 .accept_ra_rtr_pref = 1,
YOSHIFUJI Hideaki52e16352006-03-20 17:05:47 -0800226 .rtr_probe_interval = 60 * HZ,
YOSHIFUJI Hideaki09c884d2006-03-20 17:07:03 -0800227#ifdef CONFIG_IPV6_ROUTE_INFO
228 .accept_ra_rt_info_max_plen = 0,
229#endif
YOSHIFUJI Hideaki930d6ff2006-03-20 17:05:30 -0800230#endif
YOSHIFUJI Hideakifbea49e2006-09-22 14:43:49 -0700231 .proxy_ndp = 0,
YOSHIFUJI Hideaki0bcbc922007-04-24 14:58:30 -0700232 .accept_source_route = 0, /* we do not accept RH0 by default. */
YOSHIFUJI Hideaki778d80b2008-06-28 14:17:11 +0900233 .disable_ipv6 = 0,
YOSHIFUJI Hideaki1b34be72008-06-28 14:18:38 +0900234 .accept_dad = 1,
Hannes Frederic Sowab800c3b2013-08-27 01:36:51 +0200235 .suppress_frag_ndisc = 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236};
237
Mitsuru Chinenf24e3d62007-10-10 02:53:43 -0700238/* Check if a valid qdisc is available */
David S. Miller05297942008-07-08 23:01:27 -0700239static inline bool addrconf_qdisc_ok(const struct net_device *dev)
Mitsuru Chinenf24e3d62007-10-10 02:53:43 -0700240{
David S. Miller05297942008-07-08 23:01:27 -0700241 return !qdisc_tx_is_noop(dev);
Mitsuru Chinenf24e3d62007-10-10 02:53:43 -0700242}
243
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +0200244static void addrconf_del_rs_timer(struct inet6_dev *idev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245{
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +0200246 if (del_timer(&idev->rs_timer))
247 __in6_dev_put(idev);
248}
249
250static void addrconf_del_dad_timer(struct inet6_ifaddr *ifp)
251{
252 if (del_timer(&ifp->dad_timer))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253 __in6_ifa_put(ifp);
254}
255
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +0200256static void addrconf_mod_rs_timer(struct inet6_dev *idev,
257 unsigned long when)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258{
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +0200259 if (!timer_pending(&idev->rs_timer))
260 in6_dev_hold(idev);
261 mod_timer(&idev->rs_timer, jiffies + when);
262}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +0200264static void addrconf_mod_dad_timer(struct inet6_ifaddr *ifp,
265 unsigned long when)
266{
267 if (!timer_pending(&ifp->dad_timer))
268 in6_ifa_hold(ifp);
269 mod_timer(&ifp->dad_timer, jiffies + when);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270}
271
Herbert Xu7f7d9a62007-04-24 21:54:09 -0700272static int snmp6_alloc_dev(struct inet6_dev *idev)
273{
Tejun Heo7d720c32010-02-16 15:20:26 +0000274 if (snmp_mib_init((void __percpu **)idev->stats.ipv6,
Eric Dumazet1823e4c82010-06-22 20:58:41 +0000275 sizeof(struct ipstats_mib),
276 __alignof__(struct ipstats_mib)) < 0)
Herbert Xu7f7d9a62007-04-24 21:54:09 -0700277 goto err_ip;
Eric Dumazetbe281e52011-05-19 01:14:23 +0000278 idev->stats.icmpv6dev = kzalloc(sizeof(struct icmpv6_mib_device),
279 GFP_KERNEL);
280 if (!idev->stats.icmpv6dev)
Herbert Xu7f7d9a62007-04-24 21:54:09 -0700281 goto err_icmp;
Eric Dumazetbe281e52011-05-19 01:14:23 +0000282 idev->stats.icmpv6msgdev = kzalloc(sizeof(struct icmpv6msg_mib_device),
283 GFP_KERNEL);
284 if (!idev->stats.icmpv6msgdev)
David L Stevens14878f72007-09-16 16:52:35 -0700285 goto err_icmpmsg;
Herbert Xu7f7d9a62007-04-24 21:54:09 -0700286
287 return 0;
288
David L Stevens14878f72007-09-16 16:52:35 -0700289err_icmpmsg:
Eric Dumazetbe281e52011-05-19 01:14:23 +0000290 kfree(idev->stats.icmpv6dev);
Herbert Xu7f7d9a62007-04-24 21:54:09 -0700291err_icmp:
Tejun Heo7d720c32010-02-16 15:20:26 +0000292 snmp_mib_free((void __percpu **)idev->stats.ipv6);
Herbert Xu7f7d9a62007-04-24 21:54:09 -0700293err_ip:
Pavel Emelyanovaaf70ec2007-10-17 21:25:32 -0700294 return -ENOMEM;
Herbert Xu7f7d9a62007-04-24 21:54:09 -0700295}
296
Eldad Zack8e5e8f32012-04-01 07:49:08 +0000297static struct inet6_dev *ipv6_add_dev(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298{
299 struct inet6_dev *ndev;
300
301 ASSERT_RTNL();
302
303 if (dev->mtu < IPV6_MIN_MTU)
304 return NULL;
305
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900306 ndev = kzalloc(sizeof(struct inet6_dev), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900308 if (ndev == NULL)
309 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310
Ingo Oeser322f74a2006-03-20 23:01:47 -0800311 rwlock_init(&ndev->lock);
312 ndev->dev = dev;
stephen hemminger502a2ff2010-03-17 20:31:13 +0000313 INIT_LIST_HEAD(&ndev->addr_list);
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +0200314 setup_timer(&ndev->rs_timer, addrconf_rs_timer,
315 (unsigned long)ndev);
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +0900316 memcpy(&ndev->cnf, dev_net(dev)->ipv6.devconf_dflt, sizeof(ndev->cnf));
Ingo Oeser322f74a2006-03-20 23:01:47 -0800317 ndev->cnf.mtu6 = dev->mtu;
318 ndev->cnf.sysctl = NULL;
319 ndev->nd_parms = neigh_parms_alloc(dev, &nd_tbl);
320 if (ndev->nd_parms == NULL) {
321 kfree(ndev);
322 return NULL;
323 }
Ben Hutchings0187bdf2008-06-19 16:15:47 -0700324 if (ndev->cnf.forwarding)
325 dev_disable_lro(dev);
Ingo Oeser322f74a2006-03-20 23:01:47 -0800326 /* We refer to the device */
327 dev_hold(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328
Ingo Oeser322f74a2006-03-20 23:01:47 -0800329 if (snmp6_alloc_dev(ndev) < 0) {
dingtianhongba3542e2013-08-17 10:27:04 +0800330 ADBG(KERN_WARNING
Joe Perchesf3213832012-05-15 14:11:53 +0000331 "%s: cannot allocate memory for statistics; dev=%s.\n",
dingtianhongba3542e2013-08-17 10:27:04 +0800332 __func__, dev->name);
Ingo Oeser322f74a2006-03-20 23:01:47 -0800333 neigh_parms_release(&nd_tbl, ndev->nd_parms);
Roy Li8603e332011-09-20 15:10:16 -0400334 dev_put(dev);
335 kfree(ndev);
Ingo Oeser322f74a2006-03-20 23:01:47 -0800336 return NULL;
337 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338
Ingo Oeser322f74a2006-03-20 23:01:47 -0800339 if (snmp6_register_dev(ndev) < 0) {
dingtianhongba3542e2013-08-17 10:27:04 +0800340 ADBG(KERN_WARNING
Joe Perchesf3213832012-05-15 14:11:53 +0000341 "%s: cannot create /proc/net/dev_snmp6/%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);
344 ndev->dead = 1;
345 in6_dev_finish_destroy(ndev);
346 return NULL;
347 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348
Ingo Oeser322f74a2006-03-20 23:01:47 -0800349 /* One reference from device. We must do this before
350 * we invoke __ipv6_regen_rndid().
351 */
352 in6_dev_hold(ndev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353
YOSHIFUJI Hideaki1b34be72008-06-28 14:18:38 +0900354 if (dev->flags & (IFF_NOARP | IFF_LOOPBACK))
355 ndev->cnf.accept_dad = -1;
356
Amerigo Wang07a93622012-10-29 16:23:10 +0000357#if IS_ENABLED(CONFIG_IPV6_SIT)
YOSHIFUJI Hideakib077d7a2008-04-13 23:42:18 -0700358 if (dev->type == ARPHRD_SIT && (dev->priv_flags & IFF_ISATAP)) {
Joe Perchesf3213832012-05-15 14:11:53 +0000359 pr_info("%s: Disabled Multicast RS\n", dev->name);
YOSHIFUJI Hideakib077d7a2008-04-13 23:42:18 -0700360 ndev->cnf.rtr_solicits = 0;
361 }
362#endif
363
stephen hemminger372e6c82010-03-17 20:31:09 +0000364 INIT_LIST_HEAD(&ndev->tempaddr_list);
Pavel Emelyanovb24b8a22008-01-23 21:20:07 -0800365 setup_timer(&ndev->regen_timer, ipv6_regen_rndid, (unsigned long)ndev);
Ingo Oeser322f74a2006-03-20 23:01:47 -0800366 if ((dev->flags&IFF_LOOPBACK) ||
367 dev->type == ARPHRD_TUNNEL ||
YOSHIFUJI Hideaki9625ed72008-04-13 23:47:11 -0700368 dev->type == ARPHRD_TUNNEL6 ||
Joerg Roedel0be669b2006-10-10 14:49:53 -0700369 dev->type == ARPHRD_SIT ||
Joerg Roedel0be669b2006-10-10 14:49:53 -0700370 dev->type == ARPHRD_NONE) {
Ingo Oeser322f74a2006-03-20 23:01:47 -0800371 ndev->cnf.use_tempaddr = -1;
372 } else {
373 in6_dev_hold(ndev);
374 ipv6_regen_rndid((unsigned long) ndev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375 }
David S. Miller5d9efa72013-10-28 20:07:50 -0400376
Daniel Borkmann914faa12013-04-09 03:47:14 +0000377 ndev->token = in6addr_any;
Ingo Oeser322f74a2006-03-20 23:01:47 -0800378
Mitsuru Chinenf24e3d62007-10-10 02:53:43 -0700379 if (netif_running(dev) && addrconf_qdisc_ok(dev))
Herbert Xu53aadcc2007-03-27 14:31:52 -0700380 ndev->if_flags |= IF_READY;
381
Ingo Oeser322f74a2006-03-20 23:01:47 -0800382 ipv6_mc_init_dev(ndev);
383 ndev->tstamp = jiffies;
Pavel Emelyanovf52295a2007-12-02 00:58:37 +1100384 addrconf_sysctl_register(ndev);
David L Stevens30c4cf52007-01-04 12:31:14 -0800385 /* protected by rtnl_lock */
Eric Dumazetcf778b02012-01-12 04:41:32 +0000386 rcu_assign_pointer(dev->ip6_ptr, ndev);
YOSHIFUJI Hideakid88ae4c2007-01-14 21:48:40 -0800387
Hannes Frederic Sowa2c5e8932013-02-10 03:50:18 +0000388 /* Join interface-local all-node multicast group */
389 ipv6_dev_mc_inc(dev, &in6addr_interfacelocal_allnodes);
390
YOSHIFUJI Hideakid88ae4c2007-01-14 21:48:40 -0800391 /* Join all-node multicast group */
YOSHIFUJI Hideakif3ee4012008-04-10 15:42:11 +0900392 ipv6_dev_mc_inc(dev, &in6addr_linklocal_allnodes);
YOSHIFUJI Hideakid88ae4c2007-01-14 21:48:40 -0800393
Li Weid6ddef92012-03-05 14:45:17 +0000394 /* Join all-router multicast group if forwarding is set */
Li Wei8b2aaed2012-03-07 14:58:07 +0000395 if (ndev->cnf.forwarding && (dev->flags & IFF_MULTICAST))
Li Weid6ddef92012-03-05 14:45:17 +0000396 ipv6_dev_mc_inc(dev, &in6addr_linklocal_allrouters);
397
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398 return ndev;
399}
400
Eldad Zack8e5e8f32012-04-01 07:49:08 +0000401static struct inet6_dev *ipv6_find_idev(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402{
403 struct inet6_dev *idev;
404
405 ASSERT_RTNL();
406
Stephen Hemmingere21e8462010-03-20 16:09:01 -0700407 idev = __in6_dev_get(dev);
408 if (!idev) {
409 idev = ipv6_add_dev(dev);
410 if (!idev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411 return NULL;
412 }
YOSHIFUJI Hideakic5e33bd2005-12-21 22:57:44 +0900413
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414 if (dev->flags&IFF_UP)
415 ipv6_mc_up(idev);
416 return idev;
417}
418
Nicolas Dichtelf3a1bfb2012-10-25 22:28:50 +0000419static int inet6_netconf_msgsize_devconf(int type)
420{
421 int size = NLMSG_ALIGN(sizeof(struct netconfmsg))
422 + nla_total_size(4); /* NETCONFA_IFINDEX */
423
Nicolas Dichtel76f8f6c2012-10-25 22:28:51 +0000424 /* type -1 is used for ALL */
425 if (type == -1 || type == NETCONFA_FORWARDING)
Nicolas Dichtelf3a1bfb2012-10-25 22:28:50 +0000426 size += nla_total_size(4);
David S. Millerb1afce92012-12-04 14:46:34 -0500427#ifdef CONFIG_IPV6_MROUTE
Nicolas Dichteld67b8c62012-12-04 01:13:35 +0000428 if (type == -1 || type == NETCONFA_MC_FORWARDING)
429 size += nla_total_size(4);
David S. Millerb1afce92012-12-04 14:46:34 -0500430#endif
Nicolas Dichtelf3a1bfb2012-10-25 22:28:50 +0000431
432 return size;
433}
434
435static int inet6_netconf_fill_devconf(struct sk_buff *skb, int ifindex,
436 struct ipv6_devconf *devconf, u32 portid,
437 u32 seq, int event, unsigned int flags,
438 int type)
439{
440 struct nlmsghdr *nlh;
441 struct netconfmsg *ncm;
442
443 nlh = nlmsg_put(skb, portid, seq, event, sizeof(struct netconfmsg),
444 flags);
445 if (nlh == NULL)
446 return -EMSGSIZE;
447
448 ncm = nlmsg_data(nlh);
449 ncm->ncm_family = AF_INET6;
450
451 if (nla_put_s32(skb, NETCONFA_IFINDEX, ifindex) < 0)
452 goto nla_put_failure;
453
Nicolas Dichtel76f8f6c2012-10-25 22:28:51 +0000454 /* type -1 is used for ALL */
455 if ((type == -1 || type == NETCONFA_FORWARDING) &&
Nicolas Dichtelf3a1bfb2012-10-25 22:28:50 +0000456 nla_put_s32(skb, NETCONFA_FORWARDING, devconf->forwarding) < 0)
457 goto nla_put_failure;
David S. Millerb1afce92012-12-04 14:46:34 -0500458#ifdef CONFIG_IPV6_MROUTE
Nicolas Dichteld67b8c62012-12-04 01:13:35 +0000459 if ((type == -1 || type == NETCONFA_MC_FORWARDING) &&
460 nla_put_s32(skb, NETCONFA_MC_FORWARDING,
461 devconf->mc_forwarding) < 0)
462 goto nla_put_failure;
David S. Millerb1afce92012-12-04 14:46:34 -0500463#endif
Nicolas Dichtelf3a1bfb2012-10-25 22:28:50 +0000464 return nlmsg_end(skb, nlh);
465
466nla_put_failure:
467 nlmsg_cancel(skb, nlh);
468 return -EMSGSIZE;
469}
470
Nicolas Dichteld67b8c62012-12-04 01:13:35 +0000471void inet6_netconf_notify_devconf(struct net *net, int type, int ifindex,
472 struct ipv6_devconf *devconf)
Nicolas Dichtelf3a1bfb2012-10-25 22:28:50 +0000473{
474 struct sk_buff *skb;
475 int err = -ENOBUFS;
476
477 skb = nlmsg_new(inet6_netconf_msgsize_devconf(type), GFP_ATOMIC);
478 if (skb == NULL)
479 goto errout;
480
481 err = inet6_netconf_fill_devconf(skb, ifindex, devconf, 0, 0,
482 RTM_NEWNETCONF, 0, type);
483 if (err < 0) {
484 /* -EMSGSIZE implies BUG in inet6_netconf_msgsize_devconf() */
485 WARN_ON(err == -EMSGSIZE);
486 kfree_skb(skb);
487 goto errout;
488 }
489 rtnl_notify(skb, net, 0, RTNLGRP_IPV6_NETCONF, NULL, GFP_ATOMIC);
490 return;
491errout:
Cong Dingbd779022012-12-18 12:08:56 +0000492 rtnl_set_sk_err(net, RTNLGRP_IPV6_NETCONF, err);
Nicolas Dichtelf3a1bfb2012-10-25 22:28:50 +0000493}
494
Nicolas Dichtel76f8f6c2012-10-25 22:28:51 +0000495static const struct nla_policy devconf_ipv6_policy[NETCONFA_MAX+1] = {
496 [NETCONFA_IFINDEX] = { .len = sizeof(int) },
497 [NETCONFA_FORWARDING] = { .len = sizeof(int) },
498};
499
500static int inet6_netconf_get_devconf(struct sk_buff *in_skb,
Thomas Graf661d2962013-03-21 07:45:29 +0000501 struct nlmsghdr *nlh)
Nicolas Dichtel76f8f6c2012-10-25 22:28:51 +0000502{
503 struct net *net = sock_net(in_skb->sk);
504 struct nlattr *tb[NETCONFA_MAX+1];
505 struct netconfmsg *ncm;
506 struct sk_buff *skb;
507 struct ipv6_devconf *devconf;
508 struct inet6_dev *in6_dev;
509 struct net_device *dev;
510 int ifindex;
511 int err;
512
513 err = nlmsg_parse(nlh, sizeof(*ncm), tb, NETCONFA_MAX,
514 devconf_ipv6_policy);
515 if (err < 0)
516 goto errout;
517
518 err = EINVAL;
519 if (!tb[NETCONFA_IFINDEX])
520 goto errout;
521
522 ifindex = nla_get_s32(tb[NETCONFA_IFINDEX]);
523 switch (ifindex) {
524 case NETCONFA_IFINDEX_ALL:
525 devconf = net->ipv6.devconf_all;
526 break;
527 case NETCONFA_IFINDEX_DEFAULT:
528 devconf = net->ipv6.devconf_dflt;
529 break;
530 default:
531 dev = __dev_get_by_index(net, ifindex);
532 if (dev == NULL)
533 goto errout;
534 in6_dev = __in6_dev_get(dev);
535 if (in6_dev == NULL)
536 goto errout;
537 devconf = &in6_dev->cnf;
538 break;
539 }
540
541 err = -ENOBUFS;
542 skb = nlmsg_new(inet6_netconf_msgsize_devconf(-1), GFP_ATOMIC);
543 if (skb == NULL)
544 goto errout;
545
546 err = inet6_netconf_fill_devconf(skb, ifindex, devconf,
547 NETLINK_CB(in_skb).portid,
548 nlh->nlmsg_seq, RTM_NEWNETCONF, 0,
549 -1);
550 if (err < 0) {
551 /* -EMSGSIZE implies BUG in inet6_netconf_msgsize_devconf() */
552 WARN_ON(err == -EMSGSIZE);
553 kfree_skb(skb);
554 goto errout;
555 }
556 err = rtnl_unicast(skb, net, NETLINK_CB(in_skb).portid);
557errout:
558 return err;
559}
560
Nicolas Dichtel7a674202013-03-05 23:42:06 +0000561static int inet6_netconf_dump_devconf(struct sk_buff *skb,
562 struct netlink_callback *cb)
563{
564 struct net *net = sock_net(skb->sk);
565 int h, s_h;
566 int idx, s_idx;
567 struct net_device *dev;
568 struct inet6_dev *idev;
569 struct hlist_head *head;
570
571 s_h = cb->args[0];
572 s_idx = idx = cb->args[1];
573
574 for (h = s_h; h < NETDEV_HASHENTRIES; h++, s_idx = 0) {
575 idx = 0;
576 head = &net->dev_index_head[h];
577 rcu_read_lock();
Nicolas Dichtel63998ac2013-03-22 06:28:43 +0000578 cb->seq = atomic_read(&net->ipv6.dev_addr_genid) ^
579 net->dev_base_seq;
Nicolas Dichtel7a674202013-03-05 23:42:06 +0000580 hlist_for_each_entry_rcu(dev, head, index_hlist) {
581 if (idx < s_idx)
582 goto cont;
583 idev = __in6_dev_get(dev);
584 if (!idev)
585 goto cont;
586
587 if (inet6_netconf_fill_devconf(skb, dev->ifindex,
588 &idev->cnf,
589 NETLINK_CB(cb->skb).portid,
590 cb->nlh->nlmsg_seq,
591 RTM_NEWNETCONF,
592 NLM_F_MULTI,
593 -1) <= 0) {
594 rcu_read_unlock();
595 goto done;
596 }
Nicolas Dichtel63998ac2013-03-22 06:28:43 +0000597 nl_dump_check_consistent(cb, nlmsg_hdr(skb));
Nicolas Dichtel7a674202013-03-05 23:42:06 +0000598cont:
599 idx++;
600 }
601 rcu_read_unlock();
602 }
603 if (h == NETDEV_HASHENTRIES) {
604 if (inet6_netconf_fill_devconf(skb, NETCONFA_IFINDEX_ALL,
605 net->ipv6.devconf_all,
606 NETLINK_CB(cb->skb).portid,
607 cb->nlh->nlmsg_seq,
608 RTM_NEWNETCONF, NLM_F_MULTI,
609 -1) <= 0)
610 goto done;
611 else
612 h++;
613 }
614 if (h == NETDEV_HASHENTRIES + 1) {
615 if (inet6_netconf_fill_devconf(skb, NETCONFA_IFINDEX_DEFAULT,
616 net->ipv6.devconf_dflt,
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 }
625done:
626 cb->args[0] = h;
627 cb->args[1] = idx;
628
629 return skb->len;
630}
631
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632#ifdef CONFIG_SYSCTL
633static void dev_forward_change(struct inet6_dev *idev)
634{
635 struct net_device *dev;
636 struct inet6_ifaddr *ifa;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637
638 if (!idev)
639 return;
640 dev = idev->dev;
Ben Hutchings0187bdf2008-06-19 16:15:47 -0700641 if (idev->cnf.forwarding)
642 dev_disable_lro(dev);
Amerigo Wang1a940832012-10-28 17:43:53 +0000643 if (dev->flags & IFF_MULTICAST) {
Hannes Frederic Sowa2c5e8932013-02-10 03:50:18 +0000644 if (idev->cnf.forwarding) {
YOSHIFUJI Hideakif3ee4012008-04-10 15:42:11 +0900645 ipv6_dev_mc_inc(dev, &in6addr_linklocal_allrouters);
Hannes Frederic Sowa2c5e8932013-02-10 03:50:18 +0000646 ipv6_dev_mc_inc(dev, &in6addr_interfacelocal_allrouters);
647 ipv6_dev_mc_inc(dev, &in6addr_sitelocal_allrouters);
648 } else {
YOSHIFUJI Hideakif3ee4012008-04-10 15:42:11 +0900649 ipv6_dev_mc_dec(dev, &in6addr_linklocal_allrouters);
Hannes Frederic Sowa2c5e8932013-02-10 03:50:18 +0000650 ipv6_dev_mc_dec(dev, &in6addr_interfacelocal_allrouters);
651 ipv6_dev_mc_dec(dev, &in6addr_sitelocal_allrouters);
652 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653 }
stephen hemminger502a2ff2010-03-17 20:31:13 +0000654
655 list_for_each_entry(ifa, &idev->addr_list, if_list) {
Michal Wrobel2c12a742007-02-26 15:36:10 -0800656 if (ifa->flags&IFA_F_TENTATIVE)
657 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658 if (idev->cnf.forwarding)
659 addrconf_join_anycast(ifa);
660 else
661 addrconf_leave_anycast(ifa);
662 }
Nicolas Dichtelf3a1bfb2012-10-25 22:28:50 +0000663 inet6_netconf_notify_devconf(dev_net(dev), NETCONFA_FORWARDING,
664 dev->ifindex, &idev->cnf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665}
666
667
Pavel Emelyanove1869322008-01-10 17:43:50 -0800668static void addrconf_forward_change(struct net *net, __s32 newf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669{
670 struct net_device *dev;
671 struct inet6_dev *idev;
672
Ben Hutchings4acd4942012-08-14 08:54:51 +0000673 for_each_netdev(net, dev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674 idev = __in6_dev_get(dev);
675 if (idev) {
Pavel Emelyanove1869322008-01-10 17:43:50 -0800676 int changed = (!idev->cnf.forwarding) ^ (!newf);
677 idev->cnf.forwarding = newf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678 if (changed)
679 dev_forward_change(idev);
680 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682}
Pavel Emelyanovc8fecf22007-12-05 01:50:24 -0800683
Francesco Ruggeri013d97e2012-01-16 10:40:10 +0000684static int addrconf_fixup_forwarding(struct ctl_table *table, int *p, int newf)
Pavel Emelyanovc8fecf22007-12-05 01:50:24 -0800685{
Pavel Emelyanovbff16c22008-01-10 17:42:13 -0800686 struct net *net;
Francesco Ruggeri013d97e2012-01-16 10:40:10 +0000687 int old;
688
689 if (!rtnl_trylock())
690 return restart_syscall();
Pavel Emelyanovbff16c22008-01-10 17:42:13 -0800691
692 net = (struct net *)table->extra2;
Francesco Ruggeri013d97e2012-01-16 10:40:10 +0000693 old = *p;
694 *p = newf;
Pavel Emelyanovc8fecf22007-12-05 01:50:24 -0800695
Francesco Ruggeri013d97e2012-01-16 10:40:10 +0000696 if (p == &net->ipv6.devconf_dflt->forwarding) {
Nicolas Dichtelf3a1bfb2012-10-25 22:28:50 +0000697 if ((!newf) ^ (!old))
698 inet6_netconf_notify_devconf(net, NETCONFA_FORWARDING,
699 NETCONFA_IFINDEX_DEFAULT,
700 net->ipv6.devconf_dflt);
Francesco Ruggeri013d97e2012-01-16 10:40:10 +0000701 rtnl_unlock();
702 return 0;
Eric W. Biederman88af1822010-02-19 13:22:59 +0000703 }
Stephen Hemmingerb325fdd2009-02-26 06:55:31 +0000704
Pavel Emelyanove1869322008-01-10 17:43:50 -0800705 if (p == &net->ipv6.devconf_all->forwarding) {
Pavel Emelyanove1869322008-01-10 17:43:50 -0800706 net->ipv6.devconf_dflt->forwarding = newf;
707 addrconf_forward_change(net, newf);
Nicolas Dichtelf3a1bfb2012-10-25 22:28:50 +0000708 if ((!newf) ^ (!old))
709 inet6_netconf_notify_devconf(net, NETCONFA_FORWARDING,
710 NETCONFA_IFINDEX_ALL,
711 net->ipv6.devconf_all);
Francesco Ruggeri013d97e2012-01-16 10:40:10 +0000712 } else if ((!newf) ^ (!old))
Pavel Emelyanovc8fecf22007-12-05 01:50:24 -0800713 dev_forward_change((struct inet6_dev *)table->extra1);
Ben Hutchings0187bdf2008-06-19 16:15:47 -0700714 rtnl_unlock();
Pavel Emelyanovc8fecf22007-12-05 01:50:24 -0800715
Francesco Ruggeri013d97e2012-01-16 10:40:10 +0000716 if (newf)
Daniel Lezcano7b4da532008-03-04 13:47:14 -0800717 rt6_purge_dflt_routers(net);
Stephen Hemmingerb325fdd2009-02-26 06:55:31 +0000718 return 1;
Pavel Emelyanovc8fecf22007-12-05 01:50:24 -0800719}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720#endif
721
stephen hemminger5c578ae2010-03-17 20:31:11 +0000722/* Nobody refers to this ifaddr, destroy it */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723void inet6_ifa_finish_destroy(struct inet6_ifaddr *ifp)
724{
stephen hemmingerc2e21292010-03-17 20:31:10 +0000725 WARN_ON(!hlist_unhashed(&ifp->addr_lst));
Ilpo Järvinen547b7922008-07-25 21:43:18 -0700726
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727#ifdef NET_REFCNT_DEBUG
Joe Perches91df42b2012-05-15 14:11:54 +0000728 pr_debug("%s\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729#endif
730
731 in6_dev_put(ifp->idev);
732
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +0200733 if (del_timer(&ifp->dad_timer))
Stephen Hemmingere21e8462010-03-20 16:09:01 -0700734 pr_notice("Timer is still running, when freeing ifa=%p\n", ifp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735
Herbert Xue9d3e082010-05-18 15:36:06 -0700736 if (ifp->state != INET6_IFADDR_STATE_DEAD) {
Joe Perchesf3213832012-05-15 14:11:53 +0000737 pr_warn("Freeing alive inet6 address %p\n", ifp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738 return;
739 }
Amerigo Wang94e187c2012-10-29 00:13:19 +0000740 ip6_rt_put(ifp->rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741
Lai Jiangshane5785982011-03-15 18:00:14 +0800742 kfree_rcu(ifp, rcu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743}
744
Brian Haleye55ffac2006-07-10 15:25:51 -0700745static void
746ipv6_link_dev_addr(struct inet6_dev *idev, struct inet6_ifaddr *ifp)
747{
stephen hemminger502a2ff2010-03-17 20:31:13 +0000748 struct list_head *p;
YOSHIFUJI Hideaki8a6ce0c2006-07-11 13:05:30 -0700749 int ifp_scope = ipv6_addr_src_scope(&ifp->addr);
Brian Haleye55ffac2006-07-10 15:25:51 -0700750
751 /*
752 * Each device address list is sorted in order of scope -
753 * global before linklocal.
754 */
stephen hemminger502a2ff2010-03-17 20:31:13 +0000755 list_for_each(p, &idev->addr_list) {
756 struct inet6_ifaddr *ifa
757 = list_entry(p, struct inet6_ifaddr, if_list);
YOSHIFUJI Hideaki8a6ce0c2006-07-11 13:05:30 -0700758 if (ifp_scope >= ipv6_addr_src_scope(&ifa->addr))
Brian Haleye55ffac2006-07-10 15:25:51 -0700759 break;
760 }
761
David S. Millerb54c9b92010-03-25 21:25:30 -0700762 list_add_tail(&ifp->if_list, p);
Brian Haleye55ffac2006-07-10 15:25:51 -0700763}
764
Eric Dumazetddbe5032012-07-18 08:11:12 +0000765static u32 inet6_addr_hash(const struct in6_addr *addr)
YOSHIFUJI Hideaki3eb84f42008-04-10 15:42:08 +0900766{
Eric Dumazetddbe5032012-07-18 08:11:12 +0000767 return hash_32(ipv6_addr_hash(addr), IN6_ADDR_HSIZE_SHIFT);
YOSHIFUJI Hideaki3eb84f42008-04-10 15:42:08 +0900768}
769
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770/* On success it returns ifp with increased reference count */
771
772static struct inet6_ifaddr *
Jiri Pirko3f8f5292013-08-01 10:41:27 +0200773ipv6_add_addr(struct inet6_dev *idev, const struct in6_addr *addr,
774 const struct in6_addr *peer_addr, int pfxlen,
Jiri Benc8a226b22013-08-01 10:41:28 +0200775 int scope, u32 flags, u32 valid_lft, u32 prefered_lft)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776{
777 struct inet6_ifaddr *ifa = NULL;
778 struct rt6_info *rt;
stephen hemminger3a88a812010-03-17 20:31:12 +0000779 unsigned int hash;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780 int err = 0;
YOSHIFUJI Hideakid68b8272008-06-25 16:26:47 +0900781 int addr_type = ipv6_addr_type(addr);
782
783 if (addr_type == IPV6_ADDR_ANY ||
784 addr_type & IPV6_ADDR_MULTICAST ||
785 (!(idev->dev->flags & IFF_LOOPBACK) &&
786 addr_type & IPV6_ADDR_LOOPBACK))
787 return ERR_PTR(-EADDRNOTAVAIL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -0700789 rcu_read_lock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790 if (idev->dead) {
791 err = -ENODEV; /*XXX*/
792 goto out2;
793 }
794
Brian Haley56d417b2009-06-01 03:07:33 -0700795 if (idev->cnf.disable_ipv6) {
Brian Haley9bdd8d42009-03-18 18:22:48 -0700796 err = -EACCES;
797 goto out2;
798 }
799
stephen hemminger5c578ae2010-03-17 20:31:11 +0000800 spin_lock(&addrconf_hash_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801
802 /* Ignore adding duplicate addresses on an interface */
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +0900803 if (ipv6_chk_same_addr(dev_net(idev->dev), addr, idev->dev)) {
dingtianhongba3542e2013-08-17 10:27:04 +0800804 ADBG("ipv6_add_addr: already assigned\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805 err = -EEXIST;
806 goto out;
807 }
808
Ingo Oeser322f74a2006-03-20 23:01:47 -0800809 ifa = kzalloc(sizeof(struct inet6_ifaddr), GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810
811 if (ifa == NULL) {
dingtianhongba3542e2013-08-17 10:27:04 +0800812 ADBG("ipv6_add_addr: malloc failed\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813 err = -ENOBUFS;
814 goto out;
815 }
816
David S. Miller8f031512011-12-06 16:48:14 -0500817 rt = addrconf_dst_alloc(idev, addr, false);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818 if (IS_ERR(rt)) {
819 err = PTR_ERR(rt);
820 goto out;
821 }
822
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +0000823 ifa->addr = *addr;
Jiri Pirko3f8f5292013-08-01 10:41:27 +0200824 if (peer_addr)
825 ifa->peer_addr = *peer_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826
827 spin_lock_init(&ifa->lock);
Herbert Xue9d3e082010-05-18 15:36:06 -0700828 spin_lock_init(&ifa->state_lock);
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +0200829 setup_timer(&ifa->dad_timer, addrconf_dad_timer,
830 (unsigned long)ifa);
stephen hemmingerc2e21292010-03-17 20:31:10 +0000831 INIT_HLIST_NODE(&ifa->addr_lst);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832 ifa->scope = scope;
833 ifa->prefix_len = pfxlen;
834 ifa->flags = flags | IFA_F_TENTATIVE;
Jiri Benc8a226b22013-08-01 10:41:28 +0200835 ifa->valid_lft = valid_lft;
836 ifa->prefered_lft = prefered_lft;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837 ifa->cstamp = ifa->tstamp = jiffies;
Daniel Borkmann617fe292013-04-09 03:47:16 +0000838 ifa->tokenized = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839
Keir Fraser57f5f542006-08-29 02:43:49 -0700840 ifa->rt = rt;
841
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842 ifa->idev = idev;
843 in6_dev_hold(idev);
844 /* For caller */
845 in6_ifa_hold(ifa);
846
847 /* Add to big hash table */
Eric Dumazetddbe5032012-07-18 08:11:12 +0000848 hash = inet6_addr_hash(addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849
stephen hemminger5c578ae2010-03-17 20:31:11 +0000850 hlist_add_head_rcu(&ifa->addr_lst, &inet6_addr_lst[hash]);
stephen hemminger5c578ae2010-03-17 20:31:11 +0000851 spin_unlock(&addrconf_hash_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852
853 write_lock(&idev->lock);
854 /* Add to inet6_dev unicast addr list. */
Brian Haleye55ffac2006-07-10 15:25:51 -0700855 ipv6_link_dev_addr(idev, ifa);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857 if (ifa->flags&IFA_F_TEMPORARY) {
stephen hemminger372e6c82010-03-17 20:31:09 +0000858 list_add(&ifa->tmp_list, &idev->tempaddr_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859 in6_ifa_hold(ifa);
860 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862 in6_ifa_hold(ifa);
863 write_unlock(&idev->lock);
864out2:
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -0700865 rcu_read_unlock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866
YOSHIFUJI Hideakifd928332005-04-19 22:27:09 -0700867 if (likely(err == 0))
Cong Wangf88c91d2013-04-14 23:18:43 +0800868 inet6addr_notifier_call_chain(NETDEV_UP, ifa);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869 else {
870 kfree(ifa);
871 ifa = ERR_PTR(err);
872 }
873
874 return ifa;
875out:
stephen hemminger5c578ae2010-03-17 20:31:11 +0000876 spin_unlock(&addrconf_hash_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877 goto out2;
878}
879
880/* This function wants to get referenced ifp and releases it before return */
881
882static void ipv6_del_addr(struct inet6_ifaddr *ifp)
883{
stephen hemminger502a2ff2010-03-17 20:31:13 +0000884 struct inet6_ifaddr *ifa, *ifn;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885 struct inet6_dev *idev = ifp->idev;
Herbert Xu4c5ff6a2010-05-18 15:54:18 -0700886 int state;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887 int deleted = 0, onlink = 0;
888 unsigned long expires = jiffies;
889
Herbert Xu4c5ff6a2010-05-18 15:54:18 -0700890 spin_lock_bh(&ifp->state_lock);
891 state = ifp->state;
Herbert Xue9d3e082010-05-18 15:36:06 -0700892 ifp->state = INET6_IFADDR_STATE_DEAD;
Herbert Xu4c5ff6a2010-05-18 15:54:18 -0700893 spin_unlock_bh(&ifp->state_lock);
894
895 if (state == INET6_IFADDR_STATE_DEAD)
896 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897
stephen hemminger5c578ae2010-03-17 20:31:11 +0000898 spin_lock_bh(&addrconf_hash_lock);
899 hlist_del_init_rcu(&ifp->addr_lst);
stephen hemminger5c578ae2010-03-17 20:31:11 +0000900 spin_unlock_bh(&addrconf_hash_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901
902 write_lock_bh(&idev->lock);
David S. Miller5d9efa72013-10-28 20:07:50 -0400903
Linus Torvalds1da177e2005-04-16 15:20:36 -0700904 if (ifp->flags&IFA_F_TEMPORARY) {
stephen hemminger372e6c82010-03-17 20:31:09 +0000905 list_del(&ifp->tmp_list);
906 if (ifp->ifpub) {
907 in6_ifa_put(ifp->ifpub);
908 ifp->ifpub = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909 }
stephen hemminger372e6c82010-03-17 20:31:09 +0000910 __in6_ifa_put(ifp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912
stephen hemminger502a2ff2010-03-17 20:31:13 +0000913 list_for_each_entry_safe(ifa, ifn, &idev->addr_list, if_list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914 if (ifa == ifp) {
stephen hemminger502a2ff2010-03-17 20:31:13 +0000915 list_del_init(&ifp->if_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916 __in6_ifa_put(ifp);
stephen hemminger502a2ff2010-03-17 20:31:13 +0000917
Linus Torvalds1da177e2005-04-16 15:20:36 -0700918 if (!(ifp->flags & IFA_F_PERMANENT) || onlink > 0)
919 break;
920 deleted = 1;
Kristian Slavov1d142802005-12-21 18:47:24 -0800921 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922 } else if (ifp->flags & IFA_F_PERMANENT) {
923 if (ipv6_prefix_equal(&ifa->addr, &ifp->addr,
924 ifp->prefix_len)) {
925 if (ifa->flags & IFA_F_PERMANENT) {
926 onlink = 1;
927 if (deleted)
928 break;
929 } else {
930 unsigned long lifetime;
931
932 if (!onlink)
933 onlink = -1;
934
935 spin_lock(&ifa->lock);
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +0900936
937 lifetime = addrconf_timeout_fixup(ifa->valid_lft, HZ);
938 /*
939 * Note: Because this address is
940 * not permanent, lifetime <
941 * LONG_MAX / HZ here.
942 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700943 if (time_before(expires,
944 ifa->tstamp + lifetime * HZ))
945 expires = ifa->tstamp + lifetime * HZ;
946 spin_unlock(&ifa->lock);
947 }
948 }
949 }
950 }
951 write_unlock_bh(&idev->lock);
952
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +0200953 addrconf_del_dad_timer(ifp);
Andrey Vaginb2238562008-07-08 15:13:31 -0700954
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955 ipv6_ifa_notify(RTM_DELADDR, ifp);
956
Cong Wangf88c91d2013-04-14 23:18:43 +0800957 inet6addr_notifier_call_chain(NETDEV_DOWN, ifp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958
Linus Torvalds1da177e2005-04-16 15:20:36 -0700959 /*
960 * Purge or update corresponding prefix
961 *
962 * 1) we don't purge prefix here if address was not permanent.
963 * prefix is managed by its own lifetime.
964 * 2) if there're no addresses, delete prefix.
965 * 3) if there're still other permanent address(es),
966 * corresponding prefix is still permanent.
967 * 4) otherwise, update prefix lifetime to the
968 * longest valid lifetime among the corresponding
969 * addresses on the device.
970 * Note: subsequent RA will update lifetime.
971 *
972 * --yoshfuji
973 */
974 if ((ifp->flags & IFA_F_PERMANENT) && onlink < 1) {
975 struct in6_addr prefix;
976 struct rt6_info *rt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977
Nicolas Dichtel64c6d082012-09-26 00:04:55 +0000978 ipv6_addr_prefix(&prefix, &ifp->addr, ifp->prefix_len);
Nicolas Dichtel64c6d082012-09-26 00:04:55 +0000979
Romain Kuntz21caa662013-01-09 21:06:03 +0000980 rt = addrconf_get_prefix_route(&prefix,
981 ifp->prefix_len,
982 ifp->idev->dev,
983 0, RTF_GATEWAY | RTF_DEFAULT);
984
985 if (rt) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700986 if (onlink == 0) {
Thomas Grafe0a1ad732006-08-22 00:00:21 -0700987 ip6_del_rt(rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700988 rt = NULL;
989 } else if (!(rt->rt6i_flags & RTF_EXPIRES)) {
Gao feng1716a962012-04-06 00:13:10 +0000990 rt6_set_expires(rt, expires);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700991 }
992 }
Amerigo Wang94e187c2012-10-29 00:13:19 +0000993 ip6_rt_put(rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994 }
995
Daniel Walterc3968a82011-04-13 21:10:57 +0000996 /* clean up prefsrc entries */
997 rt6_remove_prefsrc(ifp);
Herbert Xu4c5ff6a2010-05-18 15:54:18 -0700998out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700999 in6_ifa_put(ifp);
1000}
1001
Linus Torvalds1da177e2005-04-16 15:20:36 -07001002static int ipv6_create_tempaddr(struct inet6_ifaddr *ifp, struct inet6_ifaddr *ift)
1003{
1004 struct inet6_dev *idev = ifp->idev;
1005 struct in6_addr addr, *tmpaddr;
Lorenzo Colitti76f793e2011-07-26 13:50:49 +00001006 unsigned long tmp_prefered_lft, tmp_valid_lft, tmp_tstamp, age;
Benoit Boissinoteac55bf2008-04-02 00:01:35 -07001007 unsigned long regen_advance;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001008 int tmp_plen;
1009 int ret = 0;
Neil Horman95c385b2007-04-25 17:08:10 -07001010 u32 addr_flags;
Lorenzo Colitti76f793e2011-07-26 13:50:49 +00001011 unsigned long now = jiffies;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012
1013 write_lock(&idev->lock);
1014 if (ift) {
1015 spin_lock_bh(&ift->lock);
1016 memcpy(&addr.s6_addr[8], &ift->addr.s6_addr[8], 8);
1017 spin_unlock_bh(&ift->lock);
1018 tmpaddr = &addr;
1019 } else {
1020 tmpaddr = NULL;
1021 }
1022retry:
1023 in6_dev_hold(idev);
1024 if (idev->cnf.use_tempaddr <= 0) {
1025 write_unlock(&idev->lock);
Joe Perchesf3213832012-05-15 14:11:53 +00001026 pr_info("%s: use_tempaddr is disabled\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001027 in6_dev_put(idev);
1028 ret = -1;
1029 goto out;
1030 }
1031 spin_lock_bh(&ifp->lock);
1032 if (ifp->regen_count++ >= idev->cnf.regen_max_retry) {
1033 idev->cnf.use_tempaddr = -1; /*XXX*/
1034 spin_unlock_bh(&ifp->lock);
1035 write_unlock(&idev->lock);
Joe Perchesf3213832012-05-15 14:11:53 +00001036 pr_warn("%s: regeneration time exceeded - disabled temporary address support\n",
1037 __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038 in6_dev_put(idev);
1039 ret = -1;
1040 goto out;
1041 }
1042 in6_ifa_hold(ifp);
1043 memcpy(addr.s6_addr, ifp->addr.s6_addr, 8);
Sorin Dumitrueb7e0572012-08-30 02:01:45 +00001044 __ipv6_try_regen_rndid(idev, tmpaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001045 memcpy(&addr.s6_addr[8], idev->rndid, 8);
Lorenzo Colitti76f793e2011-07-26 13:50:49 +00001046 age = (now - ifp->tstamp) / HZ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047 tmp_valid_lft = min_t(__u32,
1048 ifp->valid_lft,
Glenn Wurster7a876b02010-09-27 07:10:10 +00001049 idev->cnf.temp_valid_lft + age);
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001050 tmp_prefered_lft = min_t(__u32,
1051 ifp->prefered_lft,
Glenn Wurster7a876b02010-09-27 07:10:10 +00001052 idev->cnf.temp_prefered_lft + age -
Ben Hutchings784e2712010-06-26 11:42:55 +00001053 idev->cnf.max_desync_factor);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001054 tmp_plen = ifp->prefix_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001055 tmp_tstamp = ifp->tstamp;
1056 spin_unlock_bh(&ifp->lock);
1057
Benoit Boissinoteac55bf2008-04-02 00:01:35 -07001058 regen_advance = idev->cnf.regen_max_retry *
David S. Miller7eaa48a2013-08-20 23:44:39 -07001059 idev->cnf.dad_transmits *
1060 idev->nd_parms->retrans_time / HZ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001061 write_unlock(&idev->lock);
Neil Horman95c385b2007-04-25 17:08:10 -07001062
Benoit Boissinoteac55bf2008-04-02 00:01:35 -07001063 /* A temporary address is created only if this calculated Preferred
1064 * Lifetime is greater than REGEN_ADVANCE time units. In particular,
1065 * an implementation must not create a temporary address with a zero
1066 * Preferred Lifetime.
1067 */
1068 if (tmp_prefered_lft <= regen_advance) {
1069 in6_ifa_put(ifp);
1070 in6_dev_put(idev);
1071 ret = -1;
1072 goto out;
1073 }
1074
Neil Horman95c385b2007-04-25 17:08:10 -07001075 addr_flags = IFA_F_TEMPORARY;
1076 /* set in addrconf_prefix_rcv() */
1077 if (ifp->flags & IFA_F_OPTIMISTIC)
1078 addr_flags |= IFA_F_OPTIMISTIC;
1079
Hannes Frederic Sowa4b08a8f2013-08-16 13:02:27 +02001080 ift = ipv6_add_addr(idev, &addr, NULL, tmp_plen,
1081 ipv6_addr_scope(&addr), addr_flags,
1082 tmp_valid_lft, tmp_prefered_lft);
1083 if (IS_ERR(ift)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001084 in6_ifa_put(ifp);
1085 in6_dev_put(idev);
Joe Perchesf3213832012-05-15 14:11:53 +00001086 pr_info("%s: retry temporary address regeneration\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001087 tmpaddr = &addr;
1088 write_lock(&idev->lock);
1089 goto retry;
1090 }
1091
1092 spin_lock_bh(&ift->lock);
1093 ift->ifpub = ifp;
Lorenzo Colitti76f793e2011-07-26 13:50:49 +00001094 ift->cstamp = now;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001095 ift->tstamp = tmp_tstamp;
1096 spin_unlock_bh(&ift->lock);
1097
David S. Millercf22f9a2012-04-14 21:37:40 -04001098 addrconf_dad_start(ift);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001099 in6_ifa_put(ift);
1100 in6_dev_put(idev);
1101out:
1102 return ret;
1103}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001104
1105/*
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001106 * Choose an appropriate source address (RFC3484)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001107 */
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001108enum {
1109 IPV6_SADDR_RULE_INIT = 0,
1110 IPV6_SADDR_RULE_LOCAL,
1111 IPV6_SADDR_RULE_SCOPE,
1112 IPV6_SADDR_RULE_PREFERRED,
1113#ifdef CONFIG_IPV6_MIP6
1114 IPV6_SADDR_RULE_HOA,
1115#endif
1116 IPV6_SADDR_RULE_OIF,
1117 IPV6_SADDR_RULE_LABEL,
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001118 IPV6_SADDR_RULE_PRIVACY,
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001119 IPV6_SADDR_RULE_ORCHID,
1120 IPV6_SADDR_RULE_PREFIX,
1121 IPV6_SADDR_RULE_MAX
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001122};
1123
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001124struct ipv6_saddr_score {
1125 int rule;
1126 int addr_type;
1127 struct inet6_ifaddr *ifa;
1128 DECLARE_BITMAP(scorebits, IPV6_SADDR_RULE_MAX);
1129 int scopedist;
1130 int matchlen;
1131};
1132
1133struct ipv6_saddr_dst {
YOSHIFUJI Hideaki9acd9f32008-04-10 15:42:10 +09001134 const struct in6_addr *addr;
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001135 int ifindex;
1136 int scope;
1137 int label;
YOSHIFUJI Hideaki7cbca672008-03-25 09:37:42 +09001138 unsigned int prefs;
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001139};
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001140
Dave Jonesb6f99a22007-03-22 12:27:49 -07001141static inline int ipv6_saddr_preferred(int type)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142{
Ulrich Weber45bb0062010-02-25 23:28:58 +00001143 if (type & (IPV6_ADDR_MAPPED|IPV6_ADDR_COMPATv4|IPV6_ADDR_LOOPBACK))
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001144 return 1;
1145 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001146}
1147
Benjamin Thery3de23252008-05-28 14:51:24 +02001148static int ipv6_get_saddr_eval(struct net *net,
1149 struct ipv6_saddr_score *score,
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001150 struct ipv6_saddr_dst *dst,
1151 int i)
1152{
1153 int ret;
1154
1155 if (i <= score->rule) {
1156 switch (i) {
1157 case IPV6_SADDR_RULE_SCOPE:
1158 ret = score->scopedist;
1159 break;
1160 case IPV6_SADDR_RULE_PREFIX:
1161 ret = score->matchlen;
1162 break;
1163 default:
1164 ret = !!test_bit(i, score->scorebits);
1165 }
1166 goto out;
1167 }
1168
1169 switch (i) {
1170 case IPV6_SADDR_RULE_INIT:
1171 /* Rule 0: remember if hiscore is not ready yet */
1172 ret = !!score->ifa;
1173 break;
1174 case IPV6_SADDR_RULE_LOCAL:
1175 /* Rule 1: Prefer same address */
1176 ret = ipv6_addr_equal(&score->ifa->addr, dst->addr);
1177 break;
1178 case IPV6_SADDR_RULE_SCOPE:
1179 /* Rule 2: Prefer appropriate scope
1180 *
1181 * ret
1182 * ^
1183 * -1 | d 15
1184 * ---+--+-+---> scope
1185 * |
1186 * | d is scope of the destination.
1187 * B-d | \
1188 * | \ <- smaller scope is better if
1189 * B-15 | \ if scope is enough for destinaion.
1190 * | ret = B - scope (-1 <= scope >= d <= 15).
1191 * d-C-1 | /
1192 * |/ <- greater is better
1193 * -C / if scope is not enough for destination.
1194 * /| ret = scope - C (-1 <= d < scope <= 15).
1195 *
1196 * d - C - 1 < B -15 (for all -1 <= d <= 15).
1197 * C > d + 14 - B >= 15 + 14 - B = 29 - B.
1198 * Assume B = 0 and we get C > 29.
1199 */
1200 ret = __ipv6_addr_src_scope(score->addr_type);
1201 if (ret >= dst->scope)
1202 ret = -ret;
1203 else
1204 ret -= 128; /* 30 is enough */
1205 score->scopedist = ret;
1206 break;
1207 case IPV6_SADDR_RULE_PREFERRED:
1208 /* Rule 3: Avoid deprecated and optimistic addresses */
1209 ret = ipv6_saddr_preferred(score->addr_type) ||
1210 !(score->ifa->flags & (IFA_F_DEPRECATED|IFA_F_OPTIMISTIC));
1211 break;
1212#ifdef CONFIG_IPV6_MIP6
1213 case IPV6_SADDR_RULE_HOA:
YOSHIFUJI Hideaki7cbca672008-03-25 09:37:42 +09001214 {
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001215 /* Rule 4: Prefer home address */
YOSHIFUJI Hideaki7cbca672008-03-25 09:37:42 +09001216 int prefhome = !(dst->prefs & IPV6_PREFER_SRC_COA);
1217 ret = !(score->ifa->flags & IFA_F_HOMEADDRESS) ^ prefhome;
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001218 break;
YOSHIFUJI Hideaki7cbca672008-03-25 09:37:42 +09001219 }
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001220#endif
1221 case IPV6_SADDR_RULE_OIF:
1222 /* Rule 5: Prefer outgoing interface */
1223 ret = (!dst->ifindex ||
1224 dst->ifindex == score->ifa->idev->dev->ifindex);
1225 break;
1226 case IPV6_SADDR_RULE_LABEL:
1227 /* Rule 6: Prefer matching label */
Benjamin Thery3de23252008-05-28 14:51:24 +02001228 ret = ipv6_addr_label(net,
1229 &score->ifa->addr, score->addr_type,
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001230 score->ifa->idev->dev->ifindex) == dst->label;
1231 break;
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001232 case IPV6_SADDR_RULE_PRIVACY:
YOSHIFUJI Hideaki7cbca672008-03-25 09:37:42 +09001233 {
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001234 /* Rule 7: Prefer public address
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001235 * Note: prefer temporary address if use_tempaddr >= 2
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001236 */
YOSHIFUJI Hideaki7cbca672008-03-25 09:37:42 +09001237 int preftmp = dst->prefs & (IPV6_PREFER_SRC_PUBLIC|IPV6_PREFER_SRC_TMP) ?
1238 !!(dst->prefs & IPV6_PREFER_SRC_TMP) :
1239 score->ifa->idev->cnf.use_tempaddr >= 2;
1240 ret = (!(score->ifa->flags & IFA_F_TEMPORARY)) ^ preftmp;
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001241 break;
YOSHIFUJI Hideaki7cbca672008-03-25 09:37:42 +09001242 }
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001243 case IPV6_SADDR_RULE_ORCHID:
1244 /* Rule 8-: Prefer ORCHID vs ORCHID or
1245 * non-ORCHID vs non-ORCHID
1246 */
1247 ret = !(ipv6_addr_orchid(&score->ifa->addr) ^
1248 ipv6_addr_orchid(dst->addr));
1249 break;
1250 case IPV6_SADDR_RULE_PREFIX:
1251 /* Rule 8: Use longest matching prefix */
YOSHIFUJI Hideaki / 吉藤英明91b4b042012-09-10 18:41:07 +00001252 ret = ipv6_addr_diff(&score->ifa->addr, dst->addr);
1253 if (ret > score->ifa->prefix_len)
1254 ret = score->ifa->prefix_len;
1255 score->matchlen = ret;
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001256 break;
1257 default:
1258 ret = 0;
1259 }
1260
1261 if (ret)
1262 __set_bit(i, score->scorebits);
1263 score->rule = i;
1264out:
1265 return ret;
1266}
1267
Patrick McHardyb3f644f2012-08-26 19:14:14 +02001268int ipv6_dev_get_saddr(struct net *net, const struct net_device *dst_dev,
YOSHIFUJI Hideaki9acd9f32008-04-10 15:42:10 +09001269 const struct in6_addr *daddr, unsigned int prefs,
YOSHIFUJI Hideaki7cbca672008-03-25 09:37:42 +09001270 struct in6_addr *saddr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001271{
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001272 struct ipv6_saddr_score scores[2],
1273 *score = &scores[0], *hiscore = &scores[1];
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001274 struct ipv6_saddr_dst dst;
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001275 struct net_device *dev;
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001276 int dst_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001277
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001278 dst_type = __ipv6_addr_type(daddr);
1279 dst.addr = daddr;
1280 dst.ifindex = dst_dev ? dst_dev->ifindex : 0;
1281 dst.scope = __ipv6_addr_src_scope(dst_type);
Benjamin Thery3de23252008-05-28 14:51:24 +02001282 dst.label = ipv6_addr_label(net, daddr, dst_type, dst.ifindex);
YOSHIFUJI Hideaki7cbca672008-03-25 09:37:42 +09001283 dst.prefs = prefs;
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001284
1285 hiscore->rule = -1;
1286 hiscore->ifa = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001287
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -07001288 rcu_read_lock();
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001289
Eric Dumazetc6d14c82009-11-04 05:43:23 -08001290 for_each_netdev_rcu(net, dev) {
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001291 struct inet6_dev *idev;
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001292
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001293 /* Candidate Source Address (section 4)
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001294 * - multicast and link-local destination address,
1295 * the set of candidate source address MUST only
1296 * include addresses assigned to interfaces
1297 * belonging to the same link as the outgoing
1298 * interface.
1299 * (- For site-local destination addresses, the
1300 * set of candidate source addresses MUST only
1301 * include addresses assigned to interfaces
1302 * belonging to the same site as the outgoing
1303 * interface.)
1304 */
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001305 if (((dst_type & IPV6_ADDR_MULTICAST) ||
1306 dst.scope <= IPV6_ADDR_SCOPE_LINKLOCAL) &&
1307 dst.ifindex && dev->ifindex != dst.ifindex)
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001308 continue;
1309
Linus Torvalds1da177e2005-04-16 15:20:36 -07001310 idev = __in6_dev_get(dev);
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001311 if (!idev)
1312 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001313
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001314 read_lock_bh(&idev->lock);
stephen hemminger502a2ff2010-03-17 20:31:13 +00001315 list_for_each_entry(score->ifa, &idev->addr_list, if_list) {
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001316 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001317
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001318 /*
YOSHIFUJI Hideaki6b3ae802005-12-21 22:58:01 +09001319 * - Tentative Address (RFC2462 section 5.4)
1320 * - A tentative address is not considered
1321 * "assigned to an interface" in the traditional
Neil Horman95c385b2007-04-25 17:08:10 -07001322 * sense, unless it is also flagged as optimistic.
YOSHIFUJI Hideaki6b3ae802005-12-21 22:58:01 +09001323 * - Candidate Source Address (section 4)
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001324 * - In any case, anycast addresses, multicast
1325 * addresses, and the unspecified address MUST
1326 * NOT be included in a candidate set.
1327 */
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001328 if ((score->ifa->flags & IFA_F_TENTATIVE) &&
1329 (!(score->ifa->flags & IFA_F_OPTIMISTIC)))
YOSHIFUJI Hideaki6b3ae802005-12-21 22:58:01 +09001330 continue;
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001331
1332 score->addr_type = __ipv6_addr_type(&score->ifa->addr);
1333
1334 if (unlikely(score->addr_type == IPV6_ADDR_ANY ||
1335 score->addr_type & IPV6_ADDR_MULTICAST)) {
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001336 LIMIT_NETDEBUG(KERN_DEBUG
Joe Perches3b6d8212007-11-19 23:47:25 -08001337 "ADDRCONF: unspecified / multicast address "
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001338 "assigned as unicast address on %s",
1339 dev->name);
1340 continue;
1341 }
1342
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001343 score->rule = -1;
1344 bitmap_zero(score->scorebits, IPV6_SADDR_RULE_MAX);
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001345
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001346 for (i = 0; i < IPV6_SADDR_RULE_MAX; i++) {
1347 int minihiscore, miniscore;
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001348
Benjamin Thery3de23252008-05-28 14:51:24 +02001349 minihiscore = ipv6_get_saddr_eval(net, hiscore, &dst, i);
1350 miniscore = ipv6_get_saddr_eval(net, score, &dst, i);
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001351
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001352 if (minihiscore > miniscore) {
1353 if (i == IPV6_SADDR_RULE_SCOPE &&
1354 score->scopedist > 0) {
1355 /*
1356 * special case:
1357 * each remaining entry
1358 * has too small (not enough)
1359 * scope, because ifa entries
1360 * are sorted by their scope
1361 * values.
1362 */
1363 goto try_nextdev;
1364 }
1365 break;
1366 } else if (minihiscore < miniscore) {
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001367 if (hiscore->ifa)
1368 in6_ifa_put(hiscore->ifa);
1369
1370 in6_ifa_hold(score->ifa);
1371
Ilpo Järvinena0bffff2009-03-21 13:36:17 -07001372 swap(hiscore, score);
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001373
1374 /* restore our iterator */
1375 score->ifa = hiscore->ifa;
1376
1377 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001378 }
1379 }
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001380 }
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001381try_nextdev:
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001382 read_unlock_bh(&idev->lock);
1383 }
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -07001384 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001385
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001386 if (!hiscore->ifa)
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001387 return -EADDRNOTAVAIL;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001388
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00001389 *saddr = hiscore->ifa->addr;
YOSHIFUJI Hideakia9b05722008-03-02 10:48:21 +09001390 in6_ifa_put(hiscore->ifa);
YOSHIFUJI Hideaki072047e2005-11-08 09:38:30 -08001391 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001392}
YOSHIFUJI Hideaki5e5f3f02008-03-03 21:44:34 +09001393EXPORT_SYMBOL(ipv6_dev_get_saddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001394
Amerigo Wang89657792013-06-29 21:30:49 +08001395int __ipv6_get_lladdr(struct inet6_dev *idev, struct in6_addr *addr,
1396 unsigned char banned_flags)
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02001397{
1398 struct inet6_ifaddr *ifp;
1399 int err = -EADDRNOTAVAIL;
1400
1401 list_for_each_entry(ifp, &idev->addr_list, if_list) {
1402 if (ifp->scope == IFA_LINK &&
1403 !(ifp->flags & banned_flags)) {
1404 *addr = ifp->addr;
1405 err = 0;
1406 break;
1407 }
1408 }
1409 return err;
1410}
1411
Neil Horman95c385b2007-04-25 17:08:10 -07001412int ipv6_get_lladdr(struct net_device *dev, struct in6_addr *addr,
1413 unsigned char banned_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001414{
1415 struct inet6_dev *idev;
1416 int err = -EADDRNOTAVAIL;
1417
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -07001418 rcu_read_lock();
Stephen Hemmingere21e8462010-03-20 16:09:01 -07001419 idev = __in6_dev_get(dev);
1420 if (idev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001421 read_lock_bh(&idev->lock);
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02001422 err = __ipv6_get_lladdr(idev, addr, banned_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001423 read_unlock_bh(&idev->lock);
1424 }
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -07001425 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001426 return err;
1427}
1428
1429static int ipv6_count_addresses(struct inet6_dev *idev)
1430{
1431 int cnt = 0;
1432 struct inet6_ifaddr *ifp;
1433
1434 read_lock_bh(&idev->lock);
stephen hemminger502a2ff2010-03-17 20:31:13 +00001435 list_for_each_entry(ifp, &idev->addr_list, if_list)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001436 cnt++;
1437 read_unlock_bh(&idev->lock);
1438 return cnt;
1439}
1440
Eric Dumazetb71d1d42011-04-22 04:53:02 +00001441int ipv6_chk_addr(struct net *net, const struct in6_addr *addr,
Florian Westphal2a7851b2013-05-17 03:56:10 +00001442 const struct net_device *dev, int strict)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001443{
Stephen Hemmingereedf0422010-05-17 22:27:12 -07001444 struct inet6_ifaddr *ifp;
Eric Dumazetddbe5032012-07-18 08:11:12 +00001445 unsigned int hash = inet6_addr_hash(addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001446
stephen hemminger5c578ae2010-03-17 20:31:11 +00001447 rcu_read_lock_bh();
Sasha Levinb67bfe02013-02-27 17:06:00 -08001448 hlist_for_each_entry_rcu(ifp, &inet6_addr_lst[hash], addr_lst) {
YOSHIFUJI Hideaki878628f2008-03-26 03:57:35 +09001449 if (!net_eq(dev_net(ifp->idev->dev), net))
Daniel Lezcanobfeade02008-01-10 22:43:18 -08001450 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001451 if (ipv6_addr_equal(&ifp->addr, addr) &&
Stephen Hemmingereedf0422010-05-17 22:27:12 -07001452 !(ifp->flags&IFA_F_TENTATIVE) &&
1453 (dev == NULL || ifp->idev->dev == dev ||
1454 !(ifp->scope&(IFA_LINK|IFA_HOST) || strict))) {
1455 rcu_read_unlock_bh();
1456 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001457 }
1458 }
stephen hemminger5c578ae2010-03-17 20:31:11 +00001459
Stephen Hemmingereedf0422010-05-17 22:27:12 -07001460 rcu_read_unlock_bh();
1461 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001462}
YOSHIFUJI Hideaki71590392007-02-22 22:05:40 +09001463EXPORT_SYMBOL(ipv6_chk_addr);
1464
David S. Miller3e81c6d2010-03-20 16:18:00 -07001465static bool ipv6_chk_same_addr(struct net *net, const struct in6_addr *addr,
1466 struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001467{
Eric Dumazetddbe5032012-07-18 08:11:12 +00001468 unsigned int hash = inet6_addr_hash(addr);
stephen hemmingerc2e21292010-03-17 20:31:10 +00001469 struct inet6_ifaddr *ifp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001470
Sasha Levinb67bfe02013-02-27 17:06:00 -08001471 hlist_for_each_entry(ifp, &inet6_addr_lst[hash], addr_lst) {
YOSHIFUJI Hideaki878628f2008-03-26 03:57:35 +09001472 if (!net_eq(dev_net(ifp->idev->dev), net))
Daniel Lezcano06bfe652008-01-10 22:43:42 -08001473 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001474 if (ipv6_addr_equal(&ifp->addr, addr)) {
1475 if (dev == NULL || ifp->idev->dev == dev)
David S. Miller3e81c6d2010-03-20 16:18:00 -07001476 return true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001477 }
1478 }
David S. Miller3e81c6d2010-03-20 16:18:00 -07001479 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001480}
1481
Catalin\(ux\) M. BOIE7df37ff2013-09-23 23:04:19 +03001482/* Compares an address/prefix_len with addresses on device @dev.
1483 * If one is found it returns true.
1484 */
1485bool ipv6_chk_custom_prefix(const struct in6_addr *addr,
1486 const unsigned int prefix_len, struct net_device *dev)
1487{
1488 struct inet6_dev *idev;
1489 struct inet6_ifaddr *ifa;
1490 bool ret = false;
1491
1492 rcu_read_lock();
1493 idev = __in6_dev_get(dev);
1494 if (idev) {
1495 read_lock_bh(&idev->lock);
1496 list_for_each_entry(ifa, &idev->addr_list, if_list) {
1497 ret = ipv6_prefix_equal(addr, &ifa->addr, prefix_len);
1498 if (ret)
1499 break;
1500 }
1501 read_unlock_bh(&idev->lock);
1502 }
1503 rcu_read_unlock();
1504
1505 return ret;
1506}
1507EXPORT_SYMBOL(ipv6_chk_custom_prefix);
1508
Eric Dumazetb71d1d42011-04-22 04:53:02 +00001509int ipv6_chk_prefix(const struct in6_addr *addr, struct net_device *dev)
YOSHIFUJI Hideaki52eeeb82008-03-15 22:54:23 -04001510{
1511 struct inet6_dev *idev;
1512 struct inet6_ifaddr *ifa;
1513 int onlink;
1514
1515 onlink = 0;
1516 rcu_read_lock();
1517 idev = __in6_dev_get(dev);
1518 if (idev) {
1519 read_lock_bh(&idev->lock);
stephen hemminger502a2ff2010-03-17 20:31:13 +00001520 list_for_each_entry(ifa, &idev->addr_list, if_list) {
YOSHIFUJI Hideaki52eeeb82008-03-15 22:54:23 -04001521 onlink = ipv6_prefix_equal(addr, &ifa->addr,
1522 ifa->prefix_len);
1523 if (onlink)
1524 break;
1525 }
1526 read_unlock_bh(&idev->lock);
1527 }
1528 rcu_read_unlock();
1529 return onlink;
1530}
YOSHIFUJI Hideaki52eeeb82008-03-15 22:54:23 -04001531EXPORT_SYMBOL(ipv6_chk_prefix);
1532
YOSHIFUJI Hideaki9acd9f32008-04-10 15:42:10 +09001533struct inet6_ifaddr *ipv6_get_ifaddr(struct net *net, const struct in6_addr *addr,
Daniel Lezcano1cab3da2008-01-10 22:44:09 -08001534 struct net_device *dev, int strict)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001535{
David S. Millerb79d1d52010-03-25 21:39:21 -07001536 struct inet6_ifaddr *ifp, *result = NULL;
Eric Dumazetddbe5032012-07-18 08:11:12 +00001537 unsigned int hash = inet6_addr_hash(addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001538
stephen hemminger5c578ae2010-03-17 20:31:11 +00001539 rcu_read_lock_bh();
Sasha Levinb67bfe02013-02-27 17:06:00 -08001540 hlist_for_each_entry_rcu_bh(ifp, &inet6_addr_lst[hash], addr_lst) {
YOSHIFUJI Hideaki878628f2008-03-26 03:57:35 +09001541 if (!net_eq(dev_net(ifp->idev->dev), net))
Daniel Lezcano1cab3da2008-01-10 22:44:09 -08001542 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001543 if (ipv6_addr_equal(&ifp->addr, addr)) {
1544 if (dev == NULL || ifp->idev->dev == dev ||
1545 !(ifp->scope&(IFA_LINK|IFA_HOST) || strict)) {
David S. Millerb79d1d52010-03-25 21:39:21 -07001546 result = ifp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001547 in6_ifa_hold(ifp);
1548 break;
1549 }
1550 }
1551 }
stephen hemminger5c578ae2010-03-17 20:31:11 +00001552 rcu_read_unlock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001553
David S. Millerb79d1d52010-03-25 21:39:21 -07001554 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001555}
1556
Linus Torvalds1da177e2005-04-16 15:20:36 -07001557/* Gets referenced address, destroys ifaddr */
1558
Brian Haleycc411d02009-09-09 14:41:32 +00001559static void addrconf_dad_stop(struct inet6_ifaddr *ifp, int dad_failed)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001560{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001561 if (ifp->flags&IFA_F_PERMANENT) {
1562 spin_lock_bh(&ifp->lock);
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02001563 addrconf_del_dad_timer(ifp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001564 ifp->flags |= IFA_F_TENTATIVE;
Brian Haleycc411d02009-09-09 14:41:32 +00001565 if (dad_failed)
1566 ifp->flags |= IFA_F_DADFAILED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001567 spin_unlock_bh(&ifp->lock);
Herbert Xue2577a02010-03-13 12:23:29 -08001568 if (dad_failed)
1569 ipv6_ifa_notify(0, ifp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001570 in6_ifa_put(ifp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001571 } else if (ifp->flags&IFA_F_TEMPORARY) {
1572 struct inet6_ifaddr *ifpub;
1573 spin_lock_bh(&ifp->lock);
1574 ifpub = ifp->ifpub;
1575 if (ifpub) {
1576 in6_ifa_hold(ifpub);
1577 spin_unlock_bh(&ifp->lock);
1578 ipv6_create_tempaddr(ifpub, ifp);
1579 in6_ifa_put(ifpub);
1580 } else {
1581 spin_unlock_bh(&ifp->lock);
1582 }
1583 ipv6_del_addr(ifp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001584 } else
1585 ipv6_del_addr(ifp);
1586}
1587
Herbert Xuf2344a12010-05-18 15:55:27 -07001588static int addrconf_dad_end(struct inet6_ifaddr *ifp)
1589{
1590 int err = -ENOENT;
1591
1592 spin_lock(&ifp->state_lock);
1593 if (ifp->state == INET6_IFADDR_STATE_DAD) {
1594 ifp->state = INET6_IFADDR_STATE_POSTDAD;
1595 err = 0;
1596 }
1597 spin_unlock(&ifp->state_lock);
1598
1599 return err;
1600}
1601
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09001602void addrconf_dad_failure(struct inet6_ifaddr *ifp)
1603{
YOSHIFUJI Hideaki1b34be72008-06-28 14:18:38 +09001604 struct inet6_dev *idev = ifp->idev;
Brian Haley9bdd8d42009-03-18 18:22:48 -07001605
Ursula Braun853dc2e2010-10-24 23:06:43 +00001606 if (addrconf_dad_end(ifp)) {
1607 in6_ifa_put(ifp);
Herbert Xuf2344a12010-05-18 15:55:27 -07001608 return;
Ursula Braun853dc2e2010-10-24 23:06:43 +00001609 }
Herbert Xuf2344a12010-05-18 15:55:27 -07001610
Joe Perchese87cc472012-05-13 21:56:26 +00001611 net_info_ratelimited("%s: IPv6 duplicate address %pI6c detected!\n",
1612 ifp->idev->dev->name, &ifp->addr);
Brian Haley9bdd8d42009-03-18 18:22:48 -07001613
YOSHIFUJI Hideaki1b34be72008-06-28 14:18:38 +09001614 if (idev->cnf.accept_dad > 1 && !idev->cnf.disable_ipv6) {
1615 struct in6_addr addr;
1616
1617 addr.s6_addr32[0] = htonl(0xfe800000);
1618 addr.s6_addr32[1] = 0;
1619
1620 if (!ipv6_generate_eui64(addr.s6_addr + 8, idev->dev) &&
1621 ipv6_addr_equal(&ifp->addr, &addr)) {
1622 /* DAD failed for link-local based on MAC address */
1623 idev->cnf.disable_ipv6 = 1;
Brian Haley9bdd8d42009-03-18 18:22:48 -07001624
Joe Perchesf3213832012-05-15 14:11:53 +00001625 pr_info("%s: IPv6 being disabled!\n",
Brian Haley9bdd8d42009-03-18 18:22:48 -07001626 ifp->idev->dev->name);
YOSHIFUJI Hideaki1b34be72008-06-28 14:18:38 +09001627 }
1628 }
1629
Brian Haleycc411d02009-09-09 14:41:32 +00001630 addrconf_dad_stop(ifp, 1);
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09001631}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001632
1633/* Join to solicited addr multicast group. */
1634
Eric Dumazetb71d1d42011-04-22 04:53:02 +00001635void addrconf_join_solict(struct net_device *dev, const struct in6_addr *addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001636{
1637 struct in6_addr maddr;
1638
1639 if (dev->flags&(IFF_LOOPBACK|IFF_NOARP))
1640 return;
1641
1642 addrconf_addr_solict_mult(addr, &maddr);
1643 ipv6_dev_mc_inc(dev, &maddr);
1644}
1645
Eric Dumazetb71d1d42011-04-22 04:53:02 +00001646void addrconf_leave_solict(struct inet6_dev *idev, const struct in6_addr *addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001647{
1648 struct in6_addr maddr;
1649
1650 if (idev->dev->flags&(IFF_LOOPBACK|IFF_NOARP))
1651 return;
1652
1653 addrconf_addr_solict_mult(addr, &maddr);
1654 __ipv6_dev_mc_dec(idev, &maddr);
1655}
1656
Arnaldo Carvalho de Melo20380732005-08-16 02:18:02 -03001657static void addrconf_join_anycast(struct inet6_ifaddr *ifp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001658{
1659 struct in6_addr addr;
Bjørn Mork2bda8a02011-07-05 23:04:13 +00001660 if (ifp->prefix_len == 127) /* RFC 6164 */
1661 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001662 ipv6_addr_prefix(&addr, &ifp->addr, ifp->prefix_len);
1663 if (ipv6_addr_any(&addr))
1664 return;
1665 ipv6_dev_ac_inc(ifp->idev->dev, &addr);
1666}
1667
Arnaldo Carvalho de Melo20380732005-08-16 02:18:02 -03001668static void addrconf_leave_anycast(struct inet6_ifaddr *ifp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001669{
1670 struct in6_addr addr;
YOSHIFUJI Hideaki32019e62011-07-24 11:44:34 +00001671 if (ifp->prefix_len == 127) /* RFC 6164 */
1672 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001673 ipv6_addr_prefix(&addr, &ifp->addr, ifp->prefix_len);
1674 if (ipv6_addr_any(&addr))
1675 return;
1676 __ipv6_dev_ac_dec(ifp->idev, &addr);
1677}
1678
YOSHIFUJI Hideaki073a8e02006-03-20 16:54:49 -08001679static int addrconf_ifid_eui48(u8 *eui, struct net_device *dev)
1680{
1681 if (dev->addr_len != ETH_ALEN)
1682 return -1;
1683 memcpy(eui, dev->dev_addr, 3);
1684 memcpy(eui + 5, dev->dev_addr + 3, 3);
1685
1686 /*
1687 * The zSeries OSA network cards can be shared among various
1688 * OS instances, but the OSA cards have only one MAC address.
1689 * This leads to duplicate address conflicts in conjunction
1690 * with IPv6 if more than one instance uses the same card.
1691 *
1692 * The driver for these cards can deliver a unique 16-bit
1693 * identifier for each instance sharing the same card. It is
1694 * placed instead of 0xFFFE in the interface identifier. The
1695 * "u" bit of the interface identifier is not inverted in this
1696 * case. Hence the resulting interface identifier has local
1697 * scope according to RFC2373.
1698 */
1699 if (dev->dev_id) {
1700 eui[3] = (dev->dev_id >> 8) & 0xFF;
1701 eui[4] = dev->dev_id & 0xFF;
1702 } else {
1703 eui[3] = 0xFF;
1704 eui[4] = 0xFE;
1705 eui[0] ^= 2;
1706 }
1707 return 0;
1708}
1709
alex.bluesman.smirnov@gmail.com06a4c1c2012-05-10 03:25:52 +00001710static int addrconf_ifid_eui64(u8 *eui, struct net_device *dev)
1711{
1712 if (dev->addr_len != IEEE802154_ADDR_LEN)
1713 return -1;
1714 memcpy(eui, dev->dev_addr, 8);
YOSHIFUJI Hideaki / 吉藤英明5e98a362013-01-28 10:44:29 +00001715 eui[0] ^= 2;
alex.bluesman.smirnov@gmail.com06a4c1c2012-05-10 03:25:52 +00001716 return 0;
1717}
1718
YOSHIFUJI Hideaki / 吉藤英明cb6bf352013-03-25 08:26:24 +00001719static int addrconf_ifid_ieee1394(u8 *eui, struct net_device *dev)
1720{
1721 union fwnet_hwaddr *ha;
1722
1723 if (dev->addr_len != FWNET_ALEN)
1724 return -1;
1725
1726 ha = (union fwnet_hwaddr *)dev->dev_addr;
1727
1728 memcpy(eui, &ha->uc.uniq_id, sizeof(ha->uc.uniq_id));
1729 eui[0] ^= 2;
1730 return 0;
1731}
1732
YOSHIFUJI Hideaki073a8e02006-03-20 16:54:49 -08001733static int addrconf_ifid_arcnet(u8 *eui, struct net_device *dev)
1734{
1735 /* XXX: inherit EUI-64 from other interface -- yoshfuji */
1736 if (dev->addr_len != ARCNET_ALEN)
1737 return -1;
1738 memset(eui, 0, 7);
Eldad Zack8e5e8f32012-04-01 07:49:08 +00001739 eui[7] = *(u8 *)dev->dev_addr;
YOSHIFUJI Hideaki073a8e02006-03-20 16:54:49 -08001740 return 0;
1741}
1742
1743static int addrconf_ifid_infiniband(u8 *eui, struct net_device *dev)
1744{
1745 if (dev->addr_len != INFINIBAND_ALEN)
1746 return -1;
1747 memcpy(eui, dev->dev_addr + 12, 8);
1748 eui[0] |= 2;
1749 return 0;
1750}
1751
stephen hemmingerc61393e2010-10-04 20:17:53 +00001752static int __ipv6_isatap_ifid(u8 *eui, __be32 addr)
YOSHIFUJI Hideakidfd982b2008-04-10 15:42:09 +09001753{
Sascha Hlusiak9af28512009-05-19 12:56:51 +00001754 if (addr == 0)
1755 return -1;
YOSHIFUJI Hideakidfd982b2008-04-10 15:42:09 +09001756 eui[0] = (ipv4_is_zeronet(addr) || ipv4_is_private_10(addr) ||
1757 ipv4_is_loopback(addr) || ipv4_is_linklocal_169(addr) ||
1758 ipv4_is_private_172(addr) || ipv4_is_test_192(addr) ||
1759 ipv4_is_anycast_6to4(addr) || ipv4_is_private_192(addr) ||
1760 ipv4_is_test_198(addr) || ipv4_is_multicast(addr) ||
1761 ipv4_is_lbcast(addr)) ? 0x00 : 0x02;
1762 eui[1] = 0;
1763 eui[2] = 0x5E;
1764 eui[3] = 0xFE;
1765 memcpy(eui + 4, &addr, 4);
1766 return 0;
1767}
YOSHIFUJI Hideakidfd982b2008-04-10 15:42:09 +09001768
1769static int addrconf_ifid_sit(u8 *eui, struct net_device *dev)
1770{
1771 if (dev->priv_flags & IFF_ISATAP)
1772 return __ipv6_isatap_ifid(eui, *(__be32 *)dev->dev_addr);
1773 return -1;
1774}
1775
stephen hemmingeraee80b52011-06-08 10:44:30 +00001776static int addrconf_ifid_gre(u8 *eui, struct net_device *dev)
1777{
1778 return __ipv6_isatap_ifid(eui, *(__be32 *)dev->dev_addr);
1779}
1780
Nicolas Dichtele8377352013-08-20 12:16:06 +02001781static int addrconf_ifid_ip6tnl(u8 *eui, struct net_device *dev)
1782{
1783 memcpy(eui, dev->perm_addr, 3);
1784 memcpy(eui + 5, dev->perm_addr + 3, 3);
1785 eui[3] = 0xFF;
1786 eui[4] = 0xFE;
1787 eui[0] ^= 2;
1788 return 0;
1789}
1790
Linus Torvalds1da177e2005-04-16 15:20:36 -07001791static int ipv6_generate_eui64(u8 *eui, struct net_device *dev)
1792{
1793 switch (dev->type) {
1794 case ARPHRD_ETHER:
1795 case ARPHRD_FDDI:
YOSHIFUJI Hideaki073a8e02006-03-20 16:54:49 -08001796 return addrconf_ifid_eui48(eui, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001797 case ARPHRD_ARCNET:
YOSHIFUJI Hideaki073a8e02006-03-20 16:54:49 -08001798 return addrconf_ifid_arcnet(eui, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001799 case ARPHRD_INFINIBAND:
YOSHIFUJI Hideaki073a8e02006-03-20 16:54:49 -08001800 return addrconf_ifid_infiniband(eui, dev);
Fred L. Templinc7dc89c2007-11-29 22:11:40 +11001801 case ARPHRD_SIT:
YOSHIFUJI Hideakidfd982b2008-04-10 15:42:09 +09001802 return addrconf_ifid_sit(eui, dev);
stephen hemmingeraee80b52011-06-08 10:44:30 +00001803 case ARPHRD_IPGRE:
1804 return addrconf_ifid_gre(eui, dev);
alex.bluesman.smirnov@gmail.com06a4c1c2012-05-10 03:25:52 +00001805 case ARPHRD_IEEE802154:
1806 return addrconf_ifid_eui64(eui, dev);
YOSHIFUJI Hideaki / 吉藤英明cb6bf352013-03-25 08:26:24 +00001807 case ARPHRD_IEEE1394:
1808 return addrconf_ifid_ieee1394(eui, dev);
Nicolas Dichtele8377352013-08-20 12:16:06 +02001809 case ARPHRD_TUNNEL6:
1810 return addrconf_ifid_ip6tnl(eui, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001811 }
1812 return -1;
1813}
1814
1815static int ipv6_inherit_eui64(u8 *eui, struct inet6_dev *idev)
1816{
1817 int err = -1;
1818 struct inet6_ifaddr *ifp;
1819
1820 read_lock_bh(&idev->lock);
stephen hemminger502a2ff2010-03-17 20:31:13 +00001821 list_for_each_entry(ifp, &idev->addr_list, if_list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001822 if (ifp->scope == IFA_LINK && !(ifp->flags&IFA_F_TENTATIVE)) {
1823 memcpy(eui, ifp->addr.s6_addr+8, 8);
1824 err = 0;
1825 break;
1826 }
1827 }
1828 read_unlock_bh(&idev->lock);
1829 return err;
1830}
1831
Linus Torvalds1da177e2005-04-16 15:20:36 -07001832/* (re)generation of randomized interface identifier (RFC 3041 3.2, 3.5) */
Sorin Dumitrueb7e0572012-08-30 02:01:45 +00001833static void __ipv6_regen_rndid(struct inet6_dev *idev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001834{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001835regen:
YOSHIFUJI Hideaki955189e2006-03-20 16:54:09 -08001836 get_random_bytes(idev->rndid, sizeof(idev->rndid));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001837 idev->rndid[0] &= ~0x02;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001838
1839 /*
1840 * <draft-ietf-ipngwg-temp-addresses-v2-00.txt>:
1841 * check if generated address is not inappropriate
1842 *
1843 * - Reserved subnet anycast (RFC 2526)
1844 * 11111101 11....11 1xxxxxxx
Fred L. Templinc7dc89c2007-11-29 22:11:40 +11001845 * - ISATAP (RFC4214) 6.1
Linus Torvalds1da177e2005-04-16 15:20:36 -07001846 * 00-00-5E-FE-xx-xx-xx-xx
1847 * - value 0
1848 * - XXX: already assigned to an address on the device
1849 */
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001850 if (idev->rndid[0] == 0xfd &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07001851 (idev->rndid[1]&idev->rndid[2]&idev->rndid[3]&idev->rndid[4]&idev->rndid[5]&idev->rndid[6]) == 0xff &&
1852 (idev->rndid[7]&0x80))
1853 goto regen;
1854 if ((idev->rndid[0]|idev->rndid[1]) == 0) {
1855 if (idev->rndid[2] == 0x5e && idev->rndid[3] == 0xfe)
1856 goto regen;
1857 if ((idev->rndid[2]|idev->rndid[3]|idev->rndid[4]|idev->rndid[5]|idev->rndid[6]|idev->rndid[7]) == 0x00)
1858 goto regen;
1859 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001860}
1861
1862static void ipv6_regen_rndid(unsigned long data)
1863{
1864 struct inet6_dev *idev = (struct inet6_dev *) data;
1865 unsigned long expires;
1866
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -07001867 rcu_read_lock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001868 write_lock_bh(&idev->lock);
1869
1870 if (idev->dead)
1871 goto out;
1872
Sorin Dumitrueb7e0572012-08-30 02:01:45 +00001873 __ipv6_regen_rndid(idev);
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001874
Linus Torvalds1da177e2005-04-16 15:20:36 -07001875 expires = jiffies +
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001876 idev->cnf.temp_prefered_lft * HZ -
Ben Hutchings784e2712010-06-26 11:42:55 +00001877 idev->cnf.regen_max_retry * idev->cnf.dad_transmits * idev->nd_parms->retrans_time -
1878 idev->cnf.max_desync_factor * HZ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001879 if (time_before(expires, jiffies)) {
Joe Perchesf3213832012-05-15 14:11:53 +00001880 pr_warn("%s: too short regeneration interval; timer disabled for %s\n",
1881 __func__, idev->dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001882 goto out;
1883 }
1884
1885 if (!mod_timer(&idev->regen_timer, expires))
1886 in6_dev_hold(idev);
1887
1888out:
1889 write_unlock_bh(&idev->lock);
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -07001890 rcu_read_unlock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001891 in6_dev_put(idev);
1892}
1893
Sorin Dumitrueb7e0572012-08-30 02:01:45 +00001894static void __ipv6_try_regen_rndid(struct inet6_dev *idev, struct in6_addr *tmpaddr)
Eldad Zack8e5e8f32012-04-01 07:49:08 +00001895{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001896 if (tmpaddr && memcmp(idev->rndid, &tmpaddr->s6_addr[8], 8) == 0)
Sorin Dumitrueb7e0572012-08-30 02:01:45 +00001897 __ipv6_regen_rndid(idev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001898}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001899
1900/*
1901 * Add prefix route.
1902 */
1903
1904static void
1905addrconf_prefix_route(struct in6_addr *pfx, int plen, struct net_device *dev,
Jamal Hadi Salime431b8c2005-06-18 22:55:31 -07001906 unsigned long expires, u32 flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001907{
Thomas Graf86872cb2006-08-22 00:01:08 -07001908 struct fib6_config cfg = {
1909 .fc_table = RT6_TABLE_PREFIX,
1910 .fc_metric = IP6_RT_PRIO_ADDRCONF,
1911 .fc_ifindex = dev->ifindex,
1912 .fc_expires = expires,
1913 .fc_dst_len = plen,
1914 .fc_flags = RTF_UP | flags,
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09001915 .fc_nlinfo.nl_net = dev_net(dev),
Stephen Hemmingerf410a1f2008-08-23 05:16:46 -07001916 .fc_protocol = RTPROT_KERNEL,
Thomas Graf86872cb2006-08-22 00:01:08 -07001917 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001918
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00001919 cfg.fc_dst = *pfx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001920
1921 /* Prevent useless cloning on PtP SIT.
1922 This thing is done here expecting that the whole
1923 class of non-broadcast devices need not cloning.
1924 */
Amerigo Wang07a93622012-10-29 16:23:10 +00001925#if IS_ENABLED(CONFIG_IPV6_SIT)
Thomas Graf86872cb2006-08-22 00:01:08 -07001926 if (dev->type == ARPHRD_SIT && (dev->flags & IFF_POINTOPOINT))
1927 cfg.fc_flags |= RTF_NONEXTHOP;
Joerg Roedel0be669b2006-10-10 14:49:53 -07001928#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001929
Thomas Graf86872cb2006-08-22 00:01:08 -07001930 ip6_route_add(&cfg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001931}
1932
Andreas Hofmeister14ef37b2011-10-26 03:24:29 +00001933
1934static struct rt6_info *addrconf_get_prefix_route(const struct in6_addr *pfx,
1935 int plen,
1936 const struct net_device *dev,
1937 u32 flags, u32 noflags)
1938{
1939 struct fib6_node *fn;
1940 struct rt6_info *rt = NULL;
1941 struct fib6_table *table;
1942
1943 table = fib6_get_table(dev_net(dev), RT6_TABLE_PREFIX);
1944 if (table == NULL)
1945 return NULL;
1946
Li RongQing5744dd92012-09-11 21:59:01 +00001947 read_lock_bh(&table->tb6_lock);
Andreas Hofmeister14ef37b2011-10-26 03:24:29 +00001948 fn = fib6_locate(&table->tb6_root, pfx, plen, NULL, 0);
1949 if (!fn)
1950 goto out;
1951 for (rt = fn->leaf; rt; rt = rt->dst.rt6_next) {
David S. Millerd1918542011-12-28 20:19:20 -05001952 if (rt->dst.dev->ifindex != dev->ifindex)
Andreas Hofmeister14ef37b2011-10-26 03:24:29 +00001953 continue;
1954 if ((rt->rt6i_flags & flags) != flags)
1955 continue;
Romain Kuntz85da53b2013-01-09 15:02:26 +01001956 if ((rt->rt6i_flags & noflags) != 0)
Andreas Hofmeister14ef37b2011-10-26 03:24:29 +00001957 continue;
1958 dst_hold(&rt->dst);
1959 break;
1960 }
1961out:
Li RongQing5744dd92012-09-11 21:59:01 +00001962 read_unlock_bh(&table->tb6_lock);
Andreas Hofmeister14ef37b2011-10-26 03:24:29 +00001963 return rt;
1964}
1965
1966
Linus Torvalds1da177e2005-04-16 15:20:36 -07001967/* Create "default" multicast route to the interface */
1968
1969static void addrconf_add_mroute(struct net_device *dev)
1970{
Thomas Graf86872cb2006-08-22 00:01:08 -07001971 struct fib6_config cfg = {
1972 .fc_table = RT6_TABLE_LOCAL,
1973 .fc_metric = IP6_RT_PRIO_ADDRCONF,
1974 .fc_ifindex = dev->ifindex,
1975 .fc_dst_len = 8,
1976 .fc_flags = RTF_UP,
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09001977 .fc_nlinfo.nl_net = dev_net(dev),
Thomas Graf86872cb2006-08-22 00:01:08 -07001978 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001979
Thomas Graf86872cb2006-08-22 00:01:08 -07001980 ipv6_addr_set(&cfg.fc_dst, htonl(0xFF000000), 0, 0, 0);
1981
1982 ip6_route_add(&cfg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001983}
1984
Linus Torvalds1da177e2005-04-16 15:20:36 -07001985static struct inet6_dev *addrconf_add_dev(struct net_device *dev)
1986{
1987 struct inet6_dev *idev;
1988
1989 ASSERT_RTNL();
1990
Stephen Hemmingere21e8462010-03-20 16:09:01 -07001991 idev = ipv6_find_idev(dev);
1992 if (!idev)
Brian Haley64e724f2010-07-20 10:34:30 +00001993 return ERR_PTR(-ENOBUFS);
1994
1995 if (idev->cnf.disable_ipv6)
1996 return ERR_PTR(-EACCES);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001997
1998 /* Add default multicast route */
Li Wei4af04ab2011-12-06 21:23:45 +00001999 if (!(dev->flags & IFF_LOOPBACK))
2000 addrconf_add_mroute(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002001
Linus Torvalds1da177e2005-04-16 15:20:36 -07002002 return idev;
2003}
2004
Neil Hormane6bff992012-01-04 10:49:15 +00002005void addrconf_prefix_rcv(struct net_device *dev, u8 *opt, int len, bool sllao)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002006{
2007 struct prefix_info *pinfo;
2008 __u32 valid_lft;
2009 __u32 prefered_lft;
2010 int addr_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002011 struct inet6_dev *in6_dev;
Brian Haley56d417b2009-06-01 03:07:33 -07002012 struct net *net = dev_net(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002013
2014 pinfo = (struct prefix_info *) opt;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002015
Linus Torvalds1da177e2005-04-16 15:20:36 -07002016 if (len < sizeof(struct prefix_info)) {
dingtianhongba3542e2013-08-17 10:27:04 +08002017 ADBG("addrconf: prefix option too short\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002018 return;
2019 }
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002020
Linus Torvalds1da177e2005-04-16 15:20:36 -07002021 /*
2022 * Validation checks ([ADDRCONF], page 19)
2023 */
2024
2025 addr_type = ipv6_addr_type(&pinfo->prefix);
2026
2027 if (addr_type & (IPV6_ADDR_MULTICAST|IPV6_ADDR_LINKLOCAL))
2028 return;
2029
2030 valid_lft = ntohl(pinfo->valid);
2031 prefered_lft = ntohl(pinfo->prefered);
2032
2033 if (prefered_lft > valid_lft) {
Joe Perchese87cc472012-05-13 21:56:26 +00002034 net_warn_ratelimited("addrconf: prefix option has invalid lifetime\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002035 return;
2036 }
2037
2038 in6_dev = in6_dev_get(dev);
2039
2040 if (in6_dev == NULL) {
Joe Perchese87cc472012-05-13 21:56:26 +00002041 net_dbg_ratelimited("addrconf: device %s not configured\n",
2042 dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002043 return;
2044 }
2045
2046 /*
2047 * Two things going on here:
2048 * 1) Add routes for on-link prefixes
2049 * 2) Configure prefixes with the auto flag set
2050 */
2051
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +09002052 if (pinfo->onlink) {
2053 struct rt6_info *rt;
2054 unsigned long rt_expires;
2055
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07002056 /* Avoid arithmetic overflow. Really, we could
2057 * save rt_expires in seconds, likely valid_lft,
2058 * but it would require division in fib gc, that it
2059 * not good.
2060 */
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +09002061 if (HZ > USER_HZ)
2062 rt_expires = addrconf_timeout_fixup(valid_lft, HZ);
2063 else
2064 rt_expires = addrconf_timeout_fixup(valid_lft, USER_HZ);
YOSHIFUJI Hideaki3dd4bc62005-12-19 14:02:45 -08002065
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +09002066 if (addrconf_finite_timeout(rt_expires))
2067 rt_expires *= HZ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002068
Andreas Hofmeister14ef37b2011-10-26 03:24:29 +00002069 rt = addrconf_get_prefix_route(&pinfo->prefix,
2070 pinfo->prefix_len,
2071 dev,
2072 RTF_ADDRCONF | RTF_PREFIX_RT,
2073 RTF_GATEWAY | RTF_DEFAULT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002074
Andreas Hofmeister14ef37b2011-10-26 03:24:29 +00002075 if (rt) {
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07002076 /* Autoconf prefix route */
2077 if (valid_lft == 0) {
2078 ip6_del_rt(rt);
2079 rt = NULL;
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +09002080 } else if (addrconf_finite_timeout(rt_expires)) {
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07002081 /* not infinity */
Gao feng1716a962012-04-06 00:13:10 +00002082 rt6_set_expires(rt, jiffies + rt_expires);
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07002083 } else {
Gao feng1716a962012-04-06 00:13:10 +00002084 rt6_clean_expires(rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002085 }
2086 } else if (valid_lft) {
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07002087 clock_t expires = 0;
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +09002088 int flags = RTF_ADDRCONF | RTF_PREFIX_RT;
2089 if (addrconf_finite_timeout(rt_expires)) {
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07002090 /* not infinity */
2091 flags |= RTF_EXPIRES;
2092 expires = jiffies_to_clock_t(rt_expires);
2093 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002094 addrconf_prefix_route(&pinfo->prefix, pinfo->prefix_len,
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07002095 dev, expires, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002096 }
Amerigo Wang94e187c2012-10-29 00:13:19 +00002097 ip6_rt_put(rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002098 }
2099
2100 /* Try to figure out our local address for this prefix */
2101
2102 if (pinfo->autoconf && in6_dev->cnf.autoconf) {
Eldad Zack8e5e8f32012-04-01 07:49:08 +00002103 struct inet6_ifaddr *ifp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002104 struct in6_addr addr;
2105 int create = 0, update_lft = 0;
Daniel Borkmann617fe292013-04-09 03:47:16 +00002106 bool tokenized = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002107
2108 if (pinfo->prefix_len == 64) {
2109 memcpy(&addr, &pinfo->prefix, 8);
Daniel Borkmannf53adae2013-04-08 04:01:30 +00002110
2111 if (!ipv6_addr_any(&in6_dev->token)) {
2112 read_lock_bh(&in6_dev->lock);
2113 memcpy(addr.s6_addr + 8,
2114 in6_dev->token.s6_addr + 8, 8);
2115 read_unlock_bh(&in6_dev->lock);
Daniel Borkmann617fe292013-04-09 03:47:16 +00002116 tokenized = true;
Daniel Borkmannf53adae2013-04-08 04:01:30 +00002117 } else if (ipv6_generate_eui64(addr.s6_addr + 8, dev) &&
2118 ipv6_inherit_eui64(addr.s6_addr + 8, in6_dev)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002119 in6_dev_put(in6_dev);
2120 return;
2121 }
2122 goto ok;
2123 }
Joe Perchese87cc472012-05-13 21:56:26 +00002124 net_dbg_ratelimited("IPv6 addrconf: prefix with wrong length %d\n",
2125 pinfo->prefix_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002126 in6_dev_put(in6_dev);
2127 return;
2128
2129ok:
2130
YOSHIFUJI Hideaki53b79972008-07-19 22:35:03 -07002131 ifp = ipv6_get_ifaddr(net, &addr, dev, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002132
2133 if (ifp == NULL && valid_lft) {
2134 int max_addresses = in6_dev->cnf.max_addresses;
Neil Horman95c385b2007-04-25 17:08:10 -07002135 u32 addr_flags = 0;
2136
2137#ifdef CONFIG_IPV6_OPTIMISTIC_DAD
2138 if (in6_dev->cnf.optimistic_dad &&
Neil Hormane6bff992012-01-04 10:49:15 +00002139 !net->ipv6.devconf_all->forwarding && sllao)
Neil Horman95c385b2007-04-25 17:08:10 -07002140 addr_flags = IFA_F_OPTIMISTIC;
2141#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002142
2143 /* Do not allow to create too much of autoconfigured
2144 * addresses; this would be too easy way to crash kernel.
2145 */
2146 if (!max_addresses ||
2147 ipv6_count_addresses(in6_dev) < max_addresses)
Jiri Pirko3f8f5292013-08-01 10:41:27 +02002148 ifp = ipv6_add_addr(in6_dev, &addr, NULL,
2149 pinfo->prefix_len,
Neil Horman95c385b2007-04-25 17:08:10 -07002150 addr_type&IPV6_ADDR_SCOPE_MASK,
Jiri Benc8a226b22013-08-01 10:41:28 +02002151 addr_flags, valid_lft,
2152 prefered_lft);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002153
YOSHIFUJI Hideaki / 吉藤英明3f0d2ba2013-01-22 06:32:54 +00002154 if (IS_ERR_OR_NULL(ifp)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002155 in6_dev_put(in6_dev);
2156 return;
2157 }
2158
Jiri Benc8a226b22013-08-01 10:41:28 +02002159 update_lft = 0;
2160 create = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002161 ifp->cstamp = jiffies;
Daniel Borkmann617fe292013-04-09 03:47:16 +00002162 ifp->tokenized = tokenized;
David S. Millercf22f9a2012-04-14 21:37:40 -04002163 addrconf_dad_start(ifp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002164 }
2165
2166 if (ifp) {
2167 int flags;
2168 unsigned long now;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002169 struct inet6_ifaddr *ift;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002170 u32 stored_lft;
2171
2172 /* update lifetime (RFC2462 5.5.3 e) */
2173 spin_lock(&ifp->lock);
2174 now = jiffies;
2175 if (ifp->valid_lft > (now - ifp->tstamp) / HZ)
2176 stored_lft = ifp->valid_lft - (now - ifp->tstamp) / HZ;
2177 else
2178 stored_lft = 0;
Jiri Benc8a226b22013-08-01 10:41:28 +02002179 if (!update_lft && !create && stored_lft) {
Paul Marksc9d55d52013-09-25 15:12:55 -07002180 const u32 minimum_lft = min(
2181 stored_lft, (u32)MIN_VALID_LIFETIME);
2182 valid_lft = max(valid_lft, minimum_lft);
2183
2184 /* RFC4862 Section 5.5.3e:
2185 * "Note that the preferred lifetime of the
2186 * corresponding address is always reset to
2187 * the Preferred Lifetime in the received
2188 * Prefix Information option, regardless of
2189 * whether the valid lifetime is also reset or
2190 * ignored."
2191 *
2192 * So we should always update prefered_lft here.
2193 */
2194 update_lft = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002195 }
2196
2197 if (update_lft) {
2198 ifp->valid_lft = valid_lft;
2199 ifp->prefered_lft = prefered_lft;
2200 ifp->tstamp = now;
2201 flags = ifp->flags;
2202 ifp->flags &= ~IFA_F_DEPRECATED;
2203 spin_unlock(&ifp->lock);
2204
2205 if (!(flags&IFA_F_TENTATIVE))
2206 ipv6_ifa_notify(0, ifp);
2207 } else
2208 spin_unlock(&ifp->lock);
2209
Linus Torvalds1da177e2005-04-16 15:20:36 -07002210 read_lock_bh(&in6_dev->lock);
2211 /* update all temporary addresses in the list */
Lorenzo Colitti76f793e2011-07-26 13:50:49 +00002212 list_for_each_entry(ift, &in6_dev->tempaddr_list,
2213 tmp_list) {
2214 int age, max_valid, max_prefered;
2215
Benoit Boissinotc6fbfac2008-04-02 00:00:58 -07002216 if (ifp != ift->ifpub)
2217 continue;
2218
Lorenzo Colitti76f793e2011-07-26 13:50:49 +00002219 /*
2220 * RFC 4941 section 3.3:
2221 * If a received option will extend the lifetime
2222 * of a public address, the lifetimes of
2223 * temporary addresses should be extended,
2224 * subject to the overall constraint that no
2225 * temporary addresses should ever remain
2226 * "valid" or "preferred" for a time longer than
2227 * (TEMP_VALID_LIFETIME) or
2228 * (TEMP_PREFERRED_LIFETIME - DESYNC_FACTOR),
2229 * respectively.
2230 */
2231 age = (now - ift->cstamp) / HZ;
2232 max_valid = in6_dev->cnf.temp_valid_lft - age;
2233 if (max_valid < 0)
2234 max_valid = 0;
2235
2236 max_prefered = in6_dev->cnf.temp_prefered_lft -
2237 in6_dev->cnf.max_desync_factor -
2238 age;
2239 if (max_prefered < 0)
2240 max_prefered = 0;
2241
2242 if (valid_lft > max_valid)
2243 valid_lft = max_valid;
2244
2245 if (prefered_lft > max_prefered)
2246 prefered_lft = max_prefered;
2247
Linus Torvalds1da177e2005-04-16 15:20:36 -07002248 spin_lock(&ift->lock);
2249 flags = ift->flags;
Lorenzo Colitti76f793e2011-07-26 13:50:49 +00002250 ift->valid_lft = valid_lft;
2251 ift->prefered_lft = prefered_lft;
2252 ift->tstamp = now;
2253 if (prefered_lft > 0)
2254 ift->flags &= ~IFA_F_DEPRECATED;
2255
Linus Torvalds1da177e2005-04-16 15:20:36 -07002256 spin_unlock(&ift->lock);
2257 if (!(flags&IFA_F_TENTATIVE))
2258 ipv6_ifa_notify(0, ift);
2259 }
2260
Glenn Wursteraed65502010-09-27 07:04:30 +00002261 if ((create || list_empty(&in6_dev->tempaddr_list)) && in6_dev->cnf.use_tempaddr > 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002262 /*
Lorenzo Colitti76f793e2011-07-26 13:50:49 +00002263 * When a new public address is created as
2264 * described in [ADDRCONF], also create a new
2265 * temporary address. Also create a temporary
2266 * address if it's enabled but no temporary
2267 * address currently exists.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002268 */
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002269 read_unlock_bh(&in6_dev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002270 ipv6_create_tempaddr(ifp, NULL);
2271 } else {
2272 read_unlock_bh(&in6_dev->lock);
2273 }
David S. Miller5d9efa72013-10-28 20:07:50 -04002274
Linus Torvalds1da177e2005-04-16 15:20:36 -07002275 in6_ifa_put(ifp);
2276 addrconf_verify(0);
2277 }
2278 }
2279 inet6_prefix_notify(RTM_NEWPREFIX, in6_dev, pinfo);
2280 in6_dev_put(in6_dev);
2281}
2282
2283/*
2284 * Set destination address.
2285 * Special case for SIT interfaces where we create a new "virtual"
2286 * device.
2287 */
Daniel Lezcanoaf284932008-03-05 10:46:57 -08002288int addrconf_set_dstaddr(struct net *net, void __user *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002289{
2290 struct in6_ifreq ireq;
2291 struct net_device *dev;
2292 int err = -EINVAL;
2293
2294 rtnl_lock();
2295
2296 err = -EFAULT;
2297 if (copy_from_user(&ireq, arg, sizeof(struct in6_ifreq)))
2298 goto err_exit;
2299
Daniel Lezcanoaf284932008-03-05 10:46:57 -08002300 dev = __dev_get_by_index(net, ireq.ifr6_ifindex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002301
2302 err = -ENODEV;
2303 if (dev == NULL)
2304 goto err_exit;
2305
Amerigo Wang07a93622012-10-29 16:23:10 +00002306#if IS_ENABLED(CONFIG_IPV6_SIT)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002307 if (dev->type == ARPHRD_SIT) {
Stephen Hemminger5bc3eb72008-11-19 21:52:05 -08002308 const struct net_device_ops *ops = dev->netdev_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002309 struct ifreq ifr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002310 struct ip_tunnel_parm p;
2311
2312 err = -EADDRNOTAVAIL;
2313 if (!(ipv6_addr_type(&ireq.ifr6_addr) & IPV6_ADDR_COMPATv4))
2314 goto err_exit;
2315
2316 memset(&p, 0, sizeof(p));
2317 p.iph.daddr = ireq.ifr6_addr.s6_addr32[3];
2318 p.iph.saddr = 0;
2319 p.iph.version = 4;
2320 p.iph.ihl = 5;
2321 p.iph.protocol = IPPROTO_IPV6;
2322 p.iph.ttl = 64;
Stephen Hemmingerd20b3102008-01-21 00:48:43 -08002323 ifr.ifr_ifru.ifru_data = (__force void __user *)&p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002324
Stephen Hemminger5bc3eb72008-11-19 21:52:05 -08002325 if (ops->ndo_do_ioctl) {
2326 mm_segment_t oldfs = get_fs();
2327
2328 set_fs(KERNEL_DS);
2329 err = ops->ndo_do_ioctl(dev, &ifr, SIOCADDTUNNEL);
2330 set_fs(oldfs);
2331 } else
2332 err = -EOPNOTSUPP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002333
2334 if (err == 0) {
2335 err = -ENOBUFS;
Daniel Lezcanoaf284932008-03-05 10:46:57 -08002336 dev = __dev_get_by_name(net, p.name);
2337 if (!dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002338 goto err_exit;
2339 err = dev_open(dev);
2340 }
2341 }
Joerg Roedel0be669b2006-10-10 14:49:53 -07002342#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002343
2344err_exit:
2345 rtnl_unlock();
2346 return err;
2347}
2348
2349/*
2350 * Manual configuration of address on an interface
2351 */
Eric Dumazetb71d1d42011-04-22 04:53:02 +00002352static int inet6_addr_add(struct net *net, int ifindex, const struct in6_addr *pfx,
Nicolas Dichtelcaeaba72013-05-16 22:32:00 +00002353 const struct in6_addr *peer_pfx,
Thomas Graf24ef0da2008-05-28 16:54:22 +02002354 unsigned int plen, __u8 ifa_flags, __u32 prefered_lft,
Daniel Lezcanoaf284932008-03-05 10:46:57 -08002355 __u32 valid_lft)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002356{
2357 struct inet6_ifaddr *ifp;
2358 struct inet6_dev *idev;
2359 struct net_device *dev;
2360 int scope;
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07002361 u32 flags;
2362 clock_t expires;
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +09002363 unsigned long timeout;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002364
2365 ASSERT_RTNL();
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002366
Thomas Graf24ef0da2008-05-28 16:54:22 +02002367 if (plen > 128)
2368 return -EINVAL;
2369
Noriaki TAKAMIYA07787692006-07-28 18:12:10 +09002370 /* check the lifetime */
2371 if (!valid_lft || prefered_lft > valid_lft)
2372 return -EINVAL;
2373
Daniel Lezcanoaf284932008-03-05 10:46:57 -08002374 dev = __dev_get_by_index(net, ifindex);
2375 if (!dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002376 return -ENODEV;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002377
Brian Haley64e724f2010-07-20 10:34:30 +00002378 idev = addrconf_add_dev(dev);
2379 if (IS_ERR(idev))
2380 return PTR_ERR(idev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002381
2382 scope = ipv6_addr_scope(pfx);
2383
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +09002384 timeout = addrconf_timeout_fixup(valid_lft, HZ);
2385 if (addrconf_finite_timeout(timeout)) {
2386 expires = jiffies_to_clock_t(timeout * HZ);
2387 valid_lft = timeout;
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07002388 flags = RTF_EXPIRES;
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +09002389 } else {
2390 expires = 0;
2391 flags = 0;
2392 ifa_flags |= IFA_F_PERMANENT;
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07002393 }
Noriaki TAKAMIYA07787692006-07-28 18:12:10 +09002394
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +09002395 timeout = addrconf_timeout_fixup(prefered_lft, HZ);
2396 if (addrconf_finite_timeout(timeout)) {
2397 if (timeout == 0)
2398 ifa_flags |= IFA_F_DEPRECATED;
2399 prefered_lft = timeout;
2400 }
Noriaki TAKAMIYA07787692006-07-28 18:12:10 +09002401
Jiri Benc8a226b22013-08-01 10:41:28 +02002402 ifp = ipv6_add_addr(idev, pfx, peer_pfx, plen, scope, ifa_flags,
2403 valid_lft, prefered_lft);
Noriaki TAKAMIYA07787692006-07-28 18:12:10 +09002404
Linus Torvalds1da177e2005-04-16 15:20:36 -07002405 if (!IS_ERR(ifp)) {
YOSHIFUJI Hideaki46d48042007-02-07 20:36:26 +09002406 addrconf_prefix_route(&ifp->addr, ifp->prefix_len, dev,
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07002407 expires, flags);
Neil Horman95c385b2007-04-25 17:08:10 -07002408 /*
2409 * Note that section 3.1 of RFC 4429 indicates
2410 * that the Optimistic flag should not be set for
2411 * manually configured addresses
2412 */
David S. Millercf22f9a2012-04-14 21:37:40 -04002413 addrconf_dad_start(ifp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002414 in6_ifa_put(ifp);
Noriaki TAKAMIYA07787692006-07-28 18:12:10 +09002415 addrconf_verify(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002416 return 0;
2417 }
2418
2419 return PTR_ERR(ifp);
2420}
2421
Eric Dumazetb71d1d42011-04-22 04:53:02 +00002422static int inet6_addr_del(struct net *net, int ifindex, const struct in6_addr *pfx,
Thomas Graf24ef0da2008-05-28 16:54:22 +02002423 unsigned int plen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002424{
2425 struct inet6_ifaddr *ifp;
2426 struct inet6_dev *idev;
2427 struct net_device *dev;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002428
Thomas Graf24ef0da2008-05-28 16:54:22 +02002429 if (plen > 128)
2430 return -EINVAL;
2431
Daniel Lezcanoaf284932008-03-05 10:46:57 -08002432 dev = __dev_get_by_index(net, ifindex);
2433 if (!dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002434 return -ENODEV;
2435
David S. Miller7eaa48a2013-08-20 23:44:39 -07002436 if ((idev = __in6_dev_get(dev)) == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002437 return -ENXIO;
2438
2439 read_lock_bh(&idev->lock);
stephen hemminger502a2ff2010-03-17 20:31:13 +00002440 list_for_each_entry(ifp, &idev->addr_list, if_list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002441 if (ifp->prefix_len == plen &&
2442 ipv6_addr_equal(pfx, &ifp->addr)) {
2443 in6_ifa_hold(ifp);
2444 read_unlock_bh(&idev->lock);
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002445
Linus Torvalds1da177e2005-04-16 15:20:36 -07002446 ipv6_del_addr(ifp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002447 return 0;
2448 }
2449 }
2450 read_unlock_bh(&idev->lock);
2451 return -EADDRNOTAVAIL;
2452}
2453
2454
Daniel Lezcanoaf284932008-03-05 10:46:57 -08002455int addrconf_add_ifaddr(struct net *net, void __user *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002456{
2457 struct in6_ifreq ireq;
2458 int err;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002459
Eric W. Biedermanaf31f412012-11-16 03:03:06 +00002460 if (!ns_capable(net->user_ns, CAP_NET_ADMIN))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002461 return -EPERM;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002462
Linus Torvalds1da177e2005-04-16 15:20:36 -07002463 if (copy_from_user(&ireq, arg, sizeof(struct in6_ifreq)))
2464 return -EFAULT;
2465
2466 rtnl_lock();
Nicolas Dichtelcaeaba72013-05-16 22:32:00 +00002467 err = inet6_addr_add(net, ireq.ifr6_ifindex, &ireq.ifr6_addr, NULL,
Daniel Lezcanoaf284932008-03-05 10:46:57 -08002468 ireq.ifr6_prefixlen, IFA_F_PERMANENT,
2469 INFINITY_LIFE_TIME, INFINITY_LIFE_TIME);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002470 rtnl_unlock();
2471 return err;
2472}
2473
Daniel Lezcanoaf284932008-03-05 10:46:57 -08002474int addrconf_del_ifaddr(struct net *net, void __user *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002475{
2476 struct in6_ifreq ireq;
2477 int err;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002478
Eric W. Biedermanaf31f412012-11-16 03:03:06 +00002479 if (!ns_capable(net->user_ns, CAP_NET_ADMIN))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002480 return -EPERM;
2481
2482 if (copy_from_user(&ireq, arg, sizeof(struct in6_ifreq)))
2483 return -EFAULT;
2484
2485 rtnl_lock();
Daniel Lezcanoaf284932008-03-05 10:46:57 -08002486 err = inet6_addr_del(net, ireq.ifr6_ifindex, &ireq.ifr6_addr,
2487 ireq.ifr6_prefixlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002488 rtnl_unlock();
2489 return err;
2490}
2491
Ilpo Järvinenb5f348e2009-02-06 23:48:01 -08002492static void add_addr(struct inet6_dev *idev, const struct in6_addr *addr,
2493 int plen, int scope)
2494{
2495 struct inet6_ifaddr *ifp;
2496
Jiri Benc8a226b22013-08-01 10:41:28 +02002497 ifp = ipv6_add_addr(idev, addr, NULL, plen,
2498 scope, IFA_F_PERMANENT, 0, 0);
Ilpo Järvinenb5f348e2009-02-06 23:48:01 -08002499 if (!IS_ERR(ifp)) {
2500 spin_lock_bh(&ifp->lock);
2501 ifp->flags &= ~IFA_F_TENTATIVE;
2502 spin_unlock_bh(&ifp->lock);
2503 ipv6_ifa_notify(RTM_NEWADDR, ifp);
2504 in6_ifa_put(ifp);
2505 }
2506}
2507
Amerigo Wang07a93622012-10-29 16:23:10 +00002508#if IS_ENABLED(CONFIG_IPV6_SIT)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002509static void sit_add_v4_addrs(struct inet6_dev *idev)
2510{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002511 struct in6_addr addr;
2512 struct net_device *dev;
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09002513 struct net *net = dev_net(idev->dev);
Nicolas Dichtel929c9cf2013-11-14 13:51:05 +01002514 int scope, plen;
Nicolas Dichtelf0e2acf2013-11-14 13:51:06 +01002515 u32 pflags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002516
2517 ASSERT_RTNL();
2518
2519 memset(&addr, 0, sizeof(struct in6_addr));
2520 memcpy(&addr.s6_addr32[3], idev->dev->dev_addr, 4);
2521
2522 if (idev->dev->flags&IFF_POINTOPOINT) {
2523 addr.s6_addr32[0] = htonl(0xfe800000);
2524 scope = IFA_LINK;
Nicolas Dichtel929c9cf2013-11-14 13:51:05 +01002525 plen = 64;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002526 } else {
2527 scope = IPV6_ADDR_COMPATv4;
Nicolas Dichtel929c9cf2013-11-14 13:51:05 +01002528 plen = 96;
Nicolas Dichtelf0e2acf2013-11-14 13:51:06 +01002529 pflags |= RTF_NONEXTHOP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002530 }
2531
2532 if (addr.s6_addr32[3]) {
Nicolas Dichtel929c9cf2013-11-14 13:51:05 +01002533 add_addr(idev, &addr, plen, scope);
Nicolas Dichtelf0e2acf2013-11-14 13:51:06 +01002534 addrconf_prefix_route(&addr, plen, idev->dev, 0, pflags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002535 return;
2536 }
2537
Benjamin Thery6fda7352008-03-05 10:47:47 -08002538 for_each_netdev(net, dev) {
Eldad Zack8e5e8f32012-04-01 07:49:08 +00002539 struct in_device *in_dev = __in_dev_get_rtnl(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002540 if (in_dev && (dev->flags & IFF_UP)) {
Eldad Zack8e5e8f32012-04-01 07:49:08 +00002541 struct in_ifaddr *ifa;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002542
2543 int flag = scope;
2544
2545 for (ifa = in_dev->ifa_list; ifa; ifa = ifa->ifa_next) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002546
2547 addr.s6_addr32[3] = ifa->ifa_local;
2548
2549 if (ifa->ifa_scope == RT_SCOPE_LINK)
2550 continue;
2551 if (ifa->ifa_scope >= RT_SCOPE_HOST) {
2552 if (idev->dev->flags&IFF_POINTOPOINT)
2553 continue;
2554 flag |= IFA_HOST;
2555 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002556
Ilpo Järvinenb5f348e2009-02-06 23:48:01 -08002557 add_addr(idev, &addr, plen, flag);
Nicolas Dichtelf0e2acf2013-11-14 13:51:06 +01002558 addrconf_prefix_route(&addr, plen, idev->dev, 0,
2559 pflags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002560 }
2561 }
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002562 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002563}
Joerg Roedel0be669b2006-10-10 14:49:53 -07002564#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002565
2566static void init_loopback(struct net_device *dev)
2567{
2568 struct inet6_dev *idev;
Balakumaran Kannan25fb6ca42013-04-02 16:15:05 +05302569 struct net_device *sp_dev;
2570 struct inet6_ifaddr *sp_ifa;
2571 struct rt6_info *sp_rt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002572
2573 /* ::1 */
2574
2575 ASSERT_RTNL();
2576
David S. Miller7eaa48a2013-08-20 23:44:39 -07002577 if ((idev = ipv6_find_idev(dev)) == NULL) {
Joe Perches91df42b2012-05-15 14:11:54 +00002578 pr_debug("%s: add_dev failed\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002579 return;
2580 }
2581
Ilpo Järvinenb5f348e2009-02-06 23:48:01 -08002582 add_addr(idev, &in6addr_loopback, 128, IFA_HOST);
Balakumaran Kannan25fb6ca42013-04-02 16:15:05 +05302583
2584 /* Add routes to other interface's IPv6 addresses */
2585 for_each_netdev(dev_net(dev), sp_dev) {
2586 if (!strcmp(sp_dev->name, dev->name))
2587 continue;
2588
2589 idev = __in6_dev_get(sp_dev);
2590 if (!idev)
2591 continue;
2592
2593 read_lock_bh(&idev->lock);
2594 list_for_each_entry(sp_ifa, &idev->addr_list, if_list) {
2595
2596 if (sp_ifa->flags & (IFA_F_DADFAILED | IFA_F_TENTATIVE))
2597 continue;
2598
Gao fenga881ae12013-06-16 11:14:30 +08002599 if (sp_ifa->rt)
2600 continue;
2601
Balakumaran Kannan25fb6ca42013-04-02 16:15:05 +05302602 sp_rt = addrconf_dst_alloc(idev, &sp_ifa->addr, 0);
2603
2604 /* Failure cases are ignored */
Gao feng534c8772013-06-02 22:16:21 +00002605 if (!IS_ERR(sp_rt)) {
2606 sp_ifa->rt = sp_rt;
Balakumaran Kannan25fb6ca42013-04-02 16:15:05 +05302607 ip6_ins_rt(sp_rt);
Gao feng534c8772013-06-02 22:16:21 +00002608 }
Balakumaran Kannan25fb6ca42013-04-02 16:15:05 +05302609 }
2610 read_unlock_bh(&idev->lock);
2611 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002612}
2613
Eric Dumazetb71d1d42011-04-22 04:53:02 +00002614static void addrconf_add_linklocal(struct inet6_dev *idev, const struct in6_addr *addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002615{
Eldad Zack8e5e8f32012-04-01 07:49:08 +00002616 struct inet6_ifaddr *ifp;
Neil Horman95c385b2007-04-25 17:08:10 -07002617 u32 addr_flags = IFA_F_PERMANENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002618
Neil Horman95c385b2007-04-25 17:08:10 -07002619#ifdef CONFIG_IPV6_OPTIMISTIC_DAD
2620 if (idev->cnf.optimistic_dad &&
David Miller702beb82008-07-20 18:17:02 -07002621 !dev_net(idev->dev)->ipv6.devconf_all->forwarding)
Neil Horman95c385b2007-04-25 17:08:10 -07002622 addr_flags |= IFA_F_OPTIMISTIC;
2623#endif
2624
2625
Jiri Benc8a226b22013-08-01 10:41:28 +02002626 ifp = ipv6_add_addr(idev, addr, NULL, 64, IFA_LINK, addr_flags, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002627 if (!IS_ERR(ifp)) {
YOSHIFUJI Hideaki46d48042007-02-07 20:36:26 +09002628 addrconf_prefix_route(&ifp->addr, ifp->prefix_len, idev->dev, 0, 0);
David S. Millercf22f9a2012-04-14 21:37:40 -04002629 addrconf_dad_start(ifp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002630 in6_ifa_put(ifp);
2631 }
2632}
2633
2634static void addrconf_dev_config(struct net_device *dev)
2635{
2636 struct in6_addr addr;
Eldad Zack8e5e8f32012-04-01 07:49:08 +00002637 struct inet6_dev *idev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002638
2639 ASSERT_RTNL();
2640
Herbert Xu74235a22007-06-14 13:02:55 -07002641 if ((dev->type != ARPHRD_ETHER) &&
2642 (dev->type != ARPHRD_FDDI) &&
Herbert Xu74235a22007-06-14 13:02:55 -07002643 (dev->type != ARPHRD_ARCNET) &&
alex.bluesman.smirnov@gmail.com06a4c1c2012-05-10 03:25:52 +00002644 (dev->type != ARPHRD_INFINIBAND) &&
YOSHIFUJI Hideaki / 吉藤英明cb6bf352013-03-25 08:26:24 +00002645 (dev->type != ARPHRD_IEEE802154) &&
Nicolas Dichtele8377352013-08-20 12:16:06 +02002646 (dev->type != ARPHRD_IEEE1394) &&
2647 (dev->type != ARPHRD_TUNNEL6)) {
Herbert Xu74235a22007-06-14 13:02:55 -07002648 /* Alas, we support only Ethernet autoconfiguration. */
2649 return;
2650 }
2651
Linus Torvalds1da177e2005-04-16 15:20:36 -07002652 idev = addrconf_add_dev(dev);
Brian Haley64e724f2010-07-20 10:34:30 +00002653 if (IS_ERR(idev))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002654 return;
2655
2656 memset(&addr, 0, sizeof(struct in6_addr));
2657 addr.s6_addr32[0] = htonl(0xFE800000);
2658
2659 if (ipv6_generate_eui64(addr.s6_addr + 8, dev) == 0)
2660 addrconf_add_linklocal(idev, &addr);
2661}
2662
Amerigo Wang07a93622012-10-29 16:23:10 +00002663#if IS_ENABLED(CONFIG_IPV6_SIT)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002664static void addrconf_sit_config(struct net_device *dev)
2665{
2666 struct inet6_dev *idev;
2667
2668 ASSERT_RTNL();
2669
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002670 /*
2671 * Configure the tunnel with one of our IPv4
2672 * addresses... we should configure all of
Linus Torvalds1da177e2005-04-16 15:20:36 -07002673 * our v4 addrs in the tunnel
2674 */
2675
David S. Miller7eaa48a2013-08-20 23:44:39 -07002676 if ((idev = ipv6_find_idev(dev)) == NULL) {
Joe Perches91df42b2012-05-15 14:11:54 +00002677 pr_debug("%s: add_dev failed\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002678 return;
2679 }
2680
Fred L. Templinc7dc89c2007-11-29 22:11:40 +11002681 if (dev->priv_flags & IFF_ISATAP) {
2682 struct in6_addr addr;
2683
2684 ipv6_addr_set(&addr, htonl(0xFE800000), 0, 0, 0);
2685 addrconf_prefix_route(&addr, 64, dev, 0, 0);
2686 if (!ipv6_generate_eui64(addr.s6_addr + 8, dev))
2687 addrconf_add_linklocal(idev, &addr);
2688 return;
2689 }
2690
Linus Torvalds1da177e2005-04-16 15:20:36 -07002691 sit_add_v4_addrs(idev);
2692
Nicolas Dichtel62b54dd2012-10-01 23:19:14 +00002693 if (dev->flags&IFF_POINTOPOINT)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002694 addrconf_add_mroute(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002695}
Joerg Roedel0be669b2006-10-10 14:49:53 -07002696#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002697
Amerigo Wang07a93622012-10-29 16:23:10 +00002698#if IS_ENABLED(CONFIG_NET_IPGRE)
stephen hemmingeraee80b52011-06-08 10:44:30 +00002699static void addrconf_gre_config(struct net_device *dev)
2700{
2701 struct inet6_dev *idev;
2702 struct in6_addr addr;
2703
stephen hemmingeraee80b52011-06-08 10:44:30 +00002704 ASSERT_RTNL();
2705
David S. Miller7eaa48a2013-08-20 23:44:39 -07002706 if ((idev = ipv6_find_idev(dev)) == NULL) {
Joe Perches91df42b2012-05-15 14:11:54 +00002707 pr_debug("%s: add_dev failed\n", __func__);
stephen hemmingeraee80b52011-06-08 10:44:30 +00002708 return;
2709 }
2710
2711 ipv6_addr_set(&addr, htonl(0xFE800000), 0, 0, 0);
2712 addrconf_prefix_route(&addr, 64, dev, 0, 0);
2713
2714 if (!ipv6_generate_eui64(addr.s6_addr + 8, dev))
2715 addrconf_add_linklocal(idev, &addr);
2716}
2717#endif
2718
Linus Torvalds1da177e2005-04-16 15:20:36 -07002719static inline int
2720ipv6_inherit_linklocal(struct inet6_dev *idev, struct net_device *link_dev)
2721{
2722 struct in6_addr lladdr;
2723
Neil Horman95c385b2007-04-25 17:08:10 -07002724 if (!ipv6_get_lladdr(link_dev, &lladdr, IFA_F_TENTATIVE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002725 addrconf_add_linklocal(idev, &lladdr);
2726 return 0;
2727 }
2728 return -1;
2729}
2730
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09002731static int addrconf_notify(struct notifier_block *this, unsigned long event,
Jiri Pirko351638e2013-05-28 01:30:21 +00002732 void *ptr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002733{
Jiri Pirko351638e2013-05-28 01:30:21 +00002734 struct net_device *dev = netdev_notifier_info_to_dev(ptr);
Eric Dumazet748e2d92012-08-22 21:50:59 +00002735 struct inet6_dev *idev = __in6_dev_get(dev);
YOSHIFUJI Hideakic5e33bd2005-12-21 22:57:44 +09002736 int run_pending = 0;
Herbert Xub217d612007-07-30 17:04:52 -07002737 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002738
Stephen Hemmingere21e8462010-03-20 16:09:01 -07002739 switch (event) {
YOSHIFUJI Hideaki45ba9dd2007-02-15 02:07:27 +09002740 case NETDEV_REGISTER:
Herbert Xu74235a22007-06-14 13:02:55 -07002741 if (!idev && dev->mtu >= IPV6_MIN_MTU) {
YOSHIFUJI Hideaki45ba9dd2007-02-15 02:07:27 +09002742 idev = ipv6_add_dev(dev);
2743 if (!idev)
Herbert Xub217d612007-07-30 17:04:52 -07002744 return notifier_from_errno(-ENOMEM);
YOSHIFUJI Hideaki45ba9dd2007-02-15 02:07:27 +09002745 }
2746 break;
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07002747
Linus Torvalds1da177e2005-04-16 15:20:36 -07002748 case NETDEV_UP:
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09002749 case NETDEV_CHANGE:
Jay Vosburghc2edacf2007-07-09 10:42:47 -07002750 if (dev->flags & IFF_SLAVE)
2751 break;
2752
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09002753 if (event == NETDEV_UP) {
Mitsuru Chinenf24e3d62007-10-10 02:53:43 -07002754 if (!addrconf_qdisc_ok(dev)) {
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09002755 /* device is not ready yet. */
Joe Perchesf3213832012-05-15 14:11:53 +00002756 pr_info("ADDRCONF(NETDEV_UP): %s: link is not ready\n",
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09002757 dev->name);
2758 break;
2759 }
Kristian Slavov99081042006-02-08 16:10:53 -08002760
Evgeniy Polyakovd31c7b82007-11-30 23:36:08 +11002761 if (!idev && dev->mtu >= IPV6_MIN_MTU)
2762 idev = ipv6_add_dev(dev);
2763
Benjamin Therye3ec6cf2008-11-05 01:43:57 -08002764 if (idev) {
Kristian Slavov99081042006-02-08 16:10:53 -08002765 idev->if_flags |= IF_READY;
Benjamin Therye3ec6cf2008-11-05 01:43:57 -08002766 run_pending = 1;
2767 }
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09002768 } else {
Mitsuru Chinenf24e3d62007-10-10 02:53:43 -07002769 if (!addrconf_qdisc_ok(dev)) {
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09002770 /* device is still not ready. */
2771 break;
2772 }
2773
2774 if (idev) {
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07002775 if (idev->if_flags & IF_READY)
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09002776 /* device is already configured. */
2777 break;
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09002778 idev->if_flags |= IF_READY;
2779 }
2780
Joe Perchesf3213832012-05-15 14:11:53 +00002781 pr_info("ADDRCONF(NETDEV_CHANGE): %s: link becomes ready\n",
2782 dev->name);
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09002783
YOSHIFUJI Hideakic5e33bd2005-12-21 22:57:44 +09002784 run_pending = 1;
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09002785 }
2786
Stephen Hemmingere21e8462010-03-20 16:09:01 -07002787 switch (dev->type) {
Amerigo Wang07a93622012-10-29 16:23:10 +00002788#if IS_ENABLED(CONFIG_IPV6_SIT)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002789 case ARPHRD_SIT:
2790 addrconf_sit_config(dev);
2791 break;
Joerg Roedel0be669b2006-10-10 14:49:53 -07002792#endif
Amerigo Wang07a93622012-10-29 16:23:10 +00002793#if IS_ENABLED(CONFIG_NET_IPGRE)
stephen hemmingeraee80b52011-06-08 10:44:30 +00002794 case ARPHRD_IPGRE:
2795 addrconf_gre_config(dev);
2796 break;
2797#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002798 case ARPHRD_LOOPBACK:
2799 init_loopback(dev);
2800 break;
2801
2802 default:
2803 addrconf_dev_config(dev);
2804 break;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07002805 }
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07002806
Linus Torvalds1da177e2005-04-16 15:20:36 -07002807 if (idev) {
YOSHIFUJI Hideakic5e33bd2005-12-21 22:57:44 +09002808 if (run_pending)
2809 addrconf_dad_run(idev);
2810
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07002811 /*
2812 * If the MTU changed during the interface down,
2813 * when the interface up, the changed MTU must be
2814 * reflected in the idev as well as routers.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002815 */
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07002816 if (idev->cnf.mtu6 != dev->mtu &&
2817 dev->mtu >= IPV6_MIN_MTU) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002818 rt6_mtu_change(dev, dev->mtu);
2819 idev->cnf.mtu6 = dev->mtu;
2820 }
2821 idev->tstamp = jiffies;
2822 inet6_ifinfo_notify(RTM_NEWLINK, idev);
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07002823
2824 /*
2825 * If the changed mtu during down is lower than
2826 * IPV6_MIN_MTU stop IPv6 on this interface.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002827 */
2828 if (dev->mtu < IPV6_MIN_MTU)
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07002829 addrconf_ifdown(dev, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002830 }
2831 break;
2832
2833 case NETDEV_CHANGEMTU:
Evgeniy Polyakovd31c7b82007-11-30 23:36:08 +11002834 if (idev && dev->mtu >= IPV6_MIN_MTU) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002835 rt6_mtu_change(dev, dev->mtu);
2836 idev->cnf.mtu6 = dev->mtu;
2837 break;
2838 }
2839
Evgeniy Polyakovd31c7b82007-11-30 23:36:08 +11002840 if (!idev && dev->mtu >= IPV6_MIN_MTU) {
2841 idev = ipv6_add_dev(dev);
2842 if (idev)
2843 break;
2844 }
2845
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07002846 /*
2847 * MTU falled under IPV6_MIN_MTU.
2848 * Stop IPv6 on this interface.
2849 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002850
2851 case NETDEV_DOWN:
2852 case NETDEV_UNREGISTER:
2853 /*
2854 * Remove all addresses from this interface.
2855 */
2856 addrconf_ifdown(dev, event != NETDEV_DOWN);
2857 break;
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09002858
Linus Torvalds1da177e2005-04-16 15:20:36 -07002859 case NETDEV_CHANGENAME:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002860 if (idev) {
Stephen Hemminger5632c512007-04-28 21:16:39 -07002861 snmp6_unregister_dev(idev);
Pavel Emelyanov408c4762008-01-10 17:41:21 -08002862 addrconf_sysctl_unregister(idev);
Pavel Emelyanovf52295a2007-12-02 00:58:37 +11002863 addrconf_sysctl_register(idev);
Herbert Xub217d612007-07-30 17:04:52 -07002864 err = snmp6_register_dev(idev);
2865 if (err)
2866 return notifier_from_errno(err);
Stephen Hemminger5632c512007-04-28 21:16:39 -07002867 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002868 break;
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07002869
Jiri Pirko93d9b7d2010-03-10 10:28:56 +00002870 case NETDEV_PRE_TYPE_CHANGE:
2871 case NETDEV_POST_TYPE_CHANGE:
2872 addrconf_type_change(dev, event);
Moni Shoua75c78502009-09-15 02:37:40 -07002873 break;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07002874 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002875
2876 return NOTIFY_OK;
2877}
2878
2879/*
2880 * addrconf module should be notified of a device going up
2881 */
2882static struct notifier_block ipv6_dev_notf = {
2883 .notifier_call = addrconf_notify,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002884};
2885
Jiri Pirko93d9b7d2010-03-10 10:28:56 +00002886static void addrconf_type_change(struct net_device *dev, unsigned long event)
Moni Shoua75c78502009-09-15 02:37:40 -07002887{
2888 struct inet6_dev *idev;
2889 ASSERT_RTNL();
2890
2891 idev = __in6_dev_get(dev);
2892
Jiri Pirko93d9b7d2010-03-10 10:28:56 +00002893 if (event == NETDEV_POST_TYPE_CHANGE)
Moni Shoua75c78502009-09-15 02:37:40 -07002894 ipv6_mc_remap(idev);
Jiri Pirko93d9b7d2010-03-10 10:28:56 +00002895 else if (event == NETDEV_PRE_TYPE_CHANGE)
Moni Shoua75c78502009-09-15 02:37:40 -07002896 ipv6_mc_unmap(idev);
2897}
2898
Linus Torvalds1da177e2005-04-16 15:20:36 -07002899static int addrconf_ifdown(struct net_device *dev, int how)
2900{
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09002901 struct net *net = dev_net(dev);
stephen hemminger502a2ff2010-03-17 20:31:13 +00002902 struct inet6_dev *idev;
2903 struct inet6_ifaddr *ifa;
David S. Miller73a8bd72011-01-23 23:27:15 -08002904 int state, i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002905
2906 ASSERT_RTNL();
2907
David S. Miller73a8bd72011-01-23 23:27:15 -08002908 rt6_ifdown(net, dev);
2909 neigh_ifdown(&nd_tbl, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002910
2911 idev = __in6_dev_get(dev);
2912 if (idev == NULL)
2913 return -ENODEV;
2914
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07002915 /*
2916 * Step 1: remove reference to ipv6 device from parent device.
2917 * Do not dev_put!
Linus Torvalds1da177e2005-04-16 15:20:36 -07002918 */
Denis V. Lunev439e2382008-04-03 13:30:17 -07002919 if (how) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002920 idev->dead = 1;
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -07002921
2922 /* protected by rtnl_lock */
Stephen Hemmingera9b3cd72011-08-01 16:19:00 +00002923 RCU_INIT_POINTER(dev->ip6_ptr, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002924
2925 /* Step 1.5: remove snmp6 entry */
2926 snmp6_unregister_dev(idev);
2927
2928 }
2929
David S. Miller73a8bd72011-01-23 23:27:15 -08002930 /* Step 2: clear hash table */
2931 for (i = 0; i < IN6_ADDR_HSIZE; i++) {
2932 struct hlist_head *h = &inet6_addr_lst[i];
David S. Miller73a8bd72011-01-23 23:27:15 -08002933
2934 spin_lock_bh(&addrconf_hash_lock);
2935 restart:
Sasha Levinb67bfe02013-02-27 17:06:00 -08002936 hlist_for_each_entry_rcu(ifa, h, addr_lst) {
David S. Miller73a8bd72011-01-23 23:27:15 -08002937 if (ifa->idev == idev) {
2938 hlist_del_init_rcu(&ifa->addr_lst);
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02002939 addrconf_del_dad_timer(ifa);
David S. Miller73a8bd72011-01-23 23:27:15 -08002940 goto restart;
2941 }
2942 }
2943 spin_unlock_bh(&addrconf_hash_lock);
2944 }
2945
Linus Torvalds1da177e2005-04-16 15:20:36 -07002946 write_lock_bh(&idev->lock);
2947
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02002948 addrconf_del_rs_timer(idev);
2949
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07002950 /* Step 2: clear flags for stateless addrconf */
Denis V. Lunev439e2382008-04-03 13:30:17 -07002951 if (!how)
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09002952 idev->if_flags &= ~(IF_RS_SENT|IF_RA_RCVD|IF_READY);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002953
Denis V. Lunev439e2382008-04-03 13:30:17 -07002954 if (how && del_timer(&idev->regen_timer))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002955 in6_dev_put(idev);
2956
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07002957 /* Step 3: clear tempaddr list */
stephen hemminger372e6c82010-03-17 20:31:09 +00002958 while (!list_empty(&idev->tempaddr_list)) {
2959 ifa = list_first_entry(&idev->tempaddr_list,
2960 struct inet6_ifaddr, tmp_list);
2961 list_del(&ifa->tmp_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002962 write_unlock_bh(&idev->lock);
2963 spin_lock_bh(&ifa->lock);
2964
2965 if (ifa->ifpub) {
2966 in6_ifa_put(ifa->ifpub);
2967 ifa->ifpub = NULL;
2968 }
2969 spin_unlock_bh(&ifa->lock);
2970 in6_ifa_put(ifa);
2971 write_lock_bh(&idev->lock);
2972 }
stephen hemminger8f37ada2010-03-03 08:19:59 +00002973
stephen hemminger502a2ff2010-03-17 20:31:13 +00002974 while (!list_empty(&idev->addr_list)) {
2975 ifa = list_first_entry(&idev->addr_list,
2976 struct inet6_ifaddr, if_list);
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02002977 addrconf_del_dad_timer(ifa);
stephen hemminger84e8b802010-03-02 13:32:46 +00002978
David S. Miller73a8bd72011-01-23 23:27:15 -08002979 list_del(&ifa->if_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002980
David S. Miller73a8bd72011-01-23 23:27:15 -08002981 write_unlock_bh(&idev->lock);
stephen hemminger84e8b802010-03-02 13:32:46 +00002982
David S. Miller73a8bd72011-01-23 23:27:15 -08002983 spin_lock_bh(&ifa->state_lock);
2984 state = ifa->state;
2985 ifa->state = INET6_IFADDR_STATE_DEAD;
2986 spin_unlock_bh(&ifa->state_lock);
stephen hemminger84e8b802010-03-02 13:32:46 +00002987
David S. Miller73a8bd72011-01-23 23:27:15 -08002988 if (state != INET6_IFADDR_STATE_DEAD) {
2989 __ipv6_ifa_notify(RTM_DELADDR, ifa);
Cong Wangf88c91d2013-04-14 23:18:43 +08002990 inet6addr_notifier_call_chain(NETDEV_DOWN, ifa);
stephen hemminger27bdb2a2010-04-12 05:41:32 +00002991 }
David S. Miller73a8bd72011-01-23 23:27:15 -08002992 in6_ifa_put(ifa);
stephen hemminger8f37ada2010-03-03 08:19:59 +00002993
David S. Miller73a8bd72011-01-23 23:27:15 -08002994 write_lock_bh(&idev->lock);
2995 }
stephen hemminger8f37ada2010-03-03 08:19:59 +00002996
Linus Torvalds1da177e2005-04-16 15:20:36 -07002997 write_unlock_bh(&idev->lock);
2998
2999 /* Step 5: Discard multicast list */
Denis V. Lunev439e2382008-04-03 13:30:17 -07003000 if (how)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003001 ipv6_mc_destroy_dev(idev);
3002 else
3003 ipv6_mc_down(idev);
3004
Linus Torvalds1da177e2005-04-16 15:20:36 -07003005 idev->tstamp = jiffies;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09003006
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07003007 /* Last: Shot the device (if unregistered) */
Denis V. Lunev439e2382008-04-03 13:30:17 -07003008 if (how) {
Pavel Emelyanov408c4762008-01-10 17:41:21 -08003009 addrconf_sysctl_unregister(idev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003010 neigh_parms_release(&nd_tbl, idev->nd_parms);
3011 neigh_ifdown(&nd_tbl, dev);
3012 in6_dev_put(idev);
3013 }
3014 return 0;
3015}
3016
3017static void addrconf_rs_timer(unsigned long data)
3018{
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003019 struct inet6_dev *idev = (struct inet6_dev *)data;
Cong Wangcaf92bc2013-08-31 13:44:32 +08003020 struct net_device *dev = idev->dev;
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003021 struct in6_addr lladdr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003022
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003023 write_lock(&idev->lock);
stephen hemminger5b2a1952010-03-02 13:32:45 +00003024 if (idev->dead || !(idev->if_flags & IF_READY))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003025 goto out;
3026
Shmulik Ladkani9ba2add2012-12-02 01:44:53 +00003027 if (!ipv6_accept_ra(idev))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003028 goto out;
stephen hemminger5b2a1952010-03-02 13:32:45 +00003029
3030 /* Announcement received after solicitation was sent */
3031 if (idev->if_flags & IF_RA_RCVD)
3032 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003033
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003034 if (idev->rs_probes++ < idev->cnf.rtr_solicits) {
Cong Wangcaf92bc2013-08-31 13:44:32 +08003035 write_unlock(&idev->lock);
3036 if (!ipv6_get_lladdr(dev, &lladdr, IFA_F_TENTATIVE))
3037 ndisc_send_rs(dev, &lladdr,
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003038 &in6addr_linklocal_allrouters);
3039 else
Cong Wangcaf92bc2013-08-31 13:44:32 +08003040 goto put;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003041
Cong Wangcaf92bc2013-08-31 13:44:32 +08003042 write_lock(&idev->lock);
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003043 /* The wait after the last probe can be shorter */
3044 addrconf_mod_rs_timer(idev, (idev->rs_probes ==
3045 idev->cnf.rtr_solicits) ?
3046 idev->cnf.rtr_solicit_delay :
3047 idev->cnf.rtr_solicit_interval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003048 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003049 /*
3050 * Note: we do not support deprecated "all on-link"
3051 * assumption any longer.
3052 */
Joe Perches91df42b2012-05-15 14:11:54 +00003053 pr_debug("%s: no IPv6 routers present\n", idev->dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003054 }
3055
3056out:
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003057 write_unlock(&idev->lock);
Cong Wangcaf92bc2013-08-31 13:44:32 +08003058put:
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003059 in6_dev_put(idev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003060}
3061
3062/*
3063 * Duplicate Address Detection
3064 */
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09003065static void addrconf_dad_kick(struct inet6_ifaddr *ifp)
3066{
3067 unsigned long rand_num;
3068 struct inet6_dev *idev = ifp->idev;
3069
Neil Horman95c385b2007-04-25 17:08:10 -07003070 if (ifp->flags & IFA_F_OPTIMISTIC)
3071 rand_num = 0;
3072 else
3073 rand_num = net_random() % (idev->cnf.rtr_solicit_delay ? : 1);
3074
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003075 ifp->dad_probes = idev->cnf.dad_transmits;
3076 addrconf_mod_dad_timer(ifp, rand_num);
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09003077}
3078
David S. Millercf22f9a2012-04-14 21:37:40 -04003079static void addrconf_dad_start(struct inet6_ifaddr *ifp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003080{
3081 struct inet6_dev *idev = ifp->idev;
3082 struct net_device *dev = idev->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003083
3084 addrconf_join_solict(dev, &ifp->addr);
3085
Linus Torvalds1da177e2005-04-16 15:20:36 -07003086 net_srandom(ifp->addr.s6_addr32[3]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003087
3088 read_lock_bh(&idev->lock);
Herbert Xu622ccdf2010-05-18 15:56:06 -07003089 spin_lock(&ifp->lock);
Herbert Xue9d3e082010-05-18 15:36:06 -07003090 if (ifp->state == INET6_IFADDR_STATE_DEAD)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003091 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003092
3093 if (dev->flags&(IFF_NOARP|IFF_LOOPBACK) ||
YOSHIFUJI Hideaki1b34be72008-06-28 14:18:38 +09003094 idev->cnf.accept_dad < 1 ||
Noriaki TAKAMIYA55ebaef2006-09-22 14:45:27 -07003095 !(ifp->flags&IFA_F_TENTATIVE) ||
3096 ifp->flags & IFA_F_NODAD) {
Brian Haleycc411d02009-09-09 14:41:32 +00003097 ifp->flags &= ~(IFA_F_TENTATIVE|IFA_F_OPTIMISTIC|IFA_F_DADFAILED);
stephen hemminger21809fa2010-02-08 19:48:52 +00003098 spin_unlock(&ifp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003099 read_unlock_bh(&idev->lock);
3100
3101 addrconf_dad_completed(ifp);
3102 return;
3103 }
3104
YOSHIFUJI Hideaki6732bad2005-12-27 13:35:15 -08003105 if (!(idev->if_flags & IF_READY)) {
stephen hemminger21809fa2010-02-08 19:48:52 +00003106 spin_unlock(&ifp->lock);
YOSHIFUJI Hideaki6732bad2005-12-27 13:35:15 -08003107 read_unlock_bh(&idev->lock);
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09003108 /*
Masatake YAMATO590a9882009-06-09 10:41:12 +09003109 * If the device is not ready:
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09003110 * - keep it tentative if it is a permanent address.
3111 * - otherwise, kill it.
3112 */
3113 in6_ifa_hold(ifp);
Brian Haleycc411d02009-09-09 14:41:32 +00003114 addrconf_dad_stop(ifp, 0);
YOSHIFUJI Hideaki6732bad2005-12-27 13:35:15 -08003115 return;
YOSHIFUJI Hideaki3c21edb2005-12-21 22:57:24 +09003116 }
Neil Horman95c385b2007-04-25 17:08:10 -07003117
3118 /*
3119 * Optimistic nodes can start receiving
3120 * Frames right away
3121 */
Stephen Hemmingere21e8462010-03-20 16:09:01 -07003122 if (ifp->flags & IFA_F_OPTIMISTIC)
Neil Horman95c385b2007-04-25 17:08:10 -07003123 ip6_ins_rt(ifp->rt);
3124
YOSHIFUJI Hideaki6732bad2005-12-27 13:35:15 -08003125 addrconf_dad_kick(ifp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003126out:
Herbert Xu622ccdf2010-05-18 15:56:06 -07003127 spin_unlock(&ifp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003128 read_unlock_bh(&idev->lock);
3129}
3130
3131static void addrconf_dad_timer(unsigned long data)
3132{
3133 struct inet6_ifaddr *ifp = (struct inet6_ifaddr *) data;
3134 struct inet6_dev *idev = ifp->idev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003135 struct in6_addr mcaddr;
3136
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003137 if (!ifp->dad_probes && addrconf_dad_end(ifp))
Herbert Xuf2344a12010-05-18 15:55:27 -07003138 goto out;
3139
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003140 write_lock(&idev->lock);
stephen hemminger122e4512010-03-02 13:32:44 +00003141 if (idev->dead || !(idev->if_flags & IF_READY)) {
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003142 write_unlock(&idev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003143 goto out;
3144 }
stephen hemminger21809fa2010-02-08 19:48:52 +00003145
3146 spin_lock(&ifp->lock);
Herbert Xu622ccdf2010-05-18 15:56:06 -07003147 if (ifp->state == INET6_IFADDR_STATE_DEAD) {
3148 spin_unlock(&ifp->lock);
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003149 write_unlock(&idev->lock);
Herbert Xu622ccdf2010-05-18 15:56:06 -07003150 goto out;
3151 }
3152
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003153 if (ifp->dad_probes == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003154 /*
3155 * DAD was successful
3156 */
3157
Brian Haleycc411d02009-09-09 14:41:32 +00003158 ifp->flags &= ~(IFA_F_TENTATIVE|IFA_F_OPTIMISTIC|IFA_F_DADFAILED);
stephen hemminger21809fa2010-02-08 19:48:52 +00003159 spin_unlock(&ifp->lock);
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003160 write_unlock(&idev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003161
3162 addrconf_dad_completed(ifp);
3163
3164 goto out;
3165 }
3166
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003167 ifp->dad_probes--;
3168 addrconf_mod_dad_timer(ifp, ifp->idev->nd_parms->retrans_time);
stephen hemminger21809fa2010-02-08 19:48:52 +00003169 spin_unlock(&ifp->lock);
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003170 write_unlock(&idev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003171
3172 /* send a neighbour solicitation for our addr */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003173 addrconf_addr_solict_mult(&ifp->addr, &mcaddr);
YOSHIFUJI Hideakid7aabf22008-04-10 15:42:11 +09003174 ndisc_send_ns(ifp->idev->dev, NULL, &ifp->addr, &mcaddr, &in6addr_any);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003175out:
3176 in6_ifa_put(ifp);
3177}
3178
3179static void addrconf_dad_completed(struct inet6_ifaddr *ifp)
3180{
Stephen Hemmingere21e8462010-03-20 16:09:01 -07003181 struct net_device *dev = ifp->idev->dev;
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003182 struct in6_addr lladdr;
Hannes Frederic Sowab173ee42013-06-27 00:07:01 +02003183 bool send_rs, send_mld;
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003184
3185 addrconf_del_dad_timer(ifp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003186
3187 /*
3188 * Configure the address for reception. Now it is valid.
3189 */
3190
3191 ipv6_ifa_notify(RTM_NEWADDR, ifp);
3192
Tore Anderson026359b2011-08-28 23:47:33 +00003193 /* If added prefix is link local and we are prepared to process
3194 router advertisements, start sending router solicitations.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003195 */
3196
Hannes Frederic Sowa1ec047e2013-06-27 00:06:56 +02003197 read_lock_bh(&ifp->idev->lock);
3198 spin_lock(&ifp->lock);
Hannes Frederic Sowab173ee42013-06-27 00:07:01 +02003199 send_mld = ipv6_addr_type(&ifp->addr) & IPV6_ADDR_LINKLOCAL &&
3200 ifp->idev->valid_ll_addr_cnt == 1;
3201 send_rs = send_mld &&
3202 ipv6_accept_ra(ifp->idev) &&
Hannes Frederic Sowa1ec047e2013-06-27 00:06:56 +02003203 ifp->idev->cnf.rtr_solicits > 0 &&
Hannes Frederic Sowab173ee42013-06-27 00:07:01 +02003204 (dev->flags&IFF_LOOPBACK) == 0;
Hannes Frederic Sowa1ec047e2013-06-27 00:06:56 +02003205 spin_unlock(&ifp->lock);
3206 read_unlock_bh(&ifp->idev->lock);
3207
Hannes Frederic Sowab173ee42013-06-27 00:07:01 +02003208 /* While dad is in progress mld report's source address is in6_addrany.
3209 * Resend with proper ll now.
3210 */
3211 if (send_mld)
3212 ipv6_mc_dad_complete(ifp->idev);
3213
Hannes Frederic Sowa1ec047e2013-06-27 00:06:56 +02003214 if (send_rs) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003215 /*
3216 * If a host as already performed a random delay
3217 * [...] as part of DAD [...] there is no need
3218 * to delay again before sending the first RS
3219 */
Hannes Frederic Sowa1ec047e2013-06-27 00:06:56 +02003220 if (ipv6_get_lladdr(dev, &lladdr, IFA_F_TENTATIVE))
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003221 return;
Hannes Frederic Sowa1ec047e2013-06-27 00:06:56 +02003222 ndisc_send_rs(dev, &lladdr, &in6addr_linklocal_allrouters);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003223
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003224 write_lock_bh(&ifp->idev->lock);
3225 spin_lock(&ifp->lock);
3226 ifp->idev->rs_probes = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003227 ifp->idev->if_flags |= IF_RS_SENT;
Hannes Frederic Sowab7b1bfc2013-06-23 18:39:01 +02003228 addrconf_mod_rs_timer(ifp->idev,
3229 ifp->idev->cnf.rtr_solicit_interval);
3230 spin_unlock(&ifp->lock);
3231 write_unlock_bh(&ifp->idev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003232 }
3233}
3234
Stephen Hemmingere21e8462010-03-20 16:09:01 -07003235static void addrconf_dad_run(struct inet6_dev *idev)
3236{
YOSHIFUJI Hideakic5e33bd2005-12-21 22:57:44 +09003237 struct inet6_ifaddr *ifp;
3238
3239 read_lock_bh(&idev->lock);
stephen hemminger502a2ff2010-03-17 20:31:13 +00003240 list_for_each_entry(ifp, &idev->addr_list, if_list) {
stephen hemminger21809fa2010-02-08 19:48:52 +00003241 spin_lock(&ifp->lock);
Herbert Xuf2344a12010-05-18 15:55:27 -07003242 if (ifp->flags & IFA_F_TENTATIVE &&
3243 ifp->state == INET6_IFADDR_STATE_DAD)
3244 addrconf_dad_kick(ifp);
stephen hemminger21809fa2010-02-08 19:48:52 +00003245 spin_unlock(&ifp->lock);
YOSHIFUJI Hideakic5e33bd2005-12-21 22:57:44 +09003246 }
3247 read_unlock_bh(&idev->lock);
3248}
3249
Linus Torvalds1da177e2005-04-16 15:20:36 -07003250#ifdef CONFIG_PROC_FS
3251struct if6_iter_state {
Daniel Lezcano3c400902008-01-10 22:42:49 -08003252 struct seq_net_private p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003253 int bucket;
Mihai Maruseac1d578302012-01-03 23:31:35 +00003254 int offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003255};
3256
Mihai Maruseac1d578302012-01-03 23:31:35 +00003257static struct inet6_ifaddr *if6_get_first(struct seq_file *seq, loff_t pos)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003258{
3259 struct inet6_ifaddr *ifa = NULL;
3260 struct if6_iter_state *state = seq->private;
YOSHIFUJI Hideaki12188542008-03-26 02:36:06 +09003261 struct net *net = seq_file_net(seq);
Mihai Maruseac1d578302012-01-03 23:31:35 +00003262 int p = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003263
Mihai Maruseac1d578302012-01-03 23:31:35 +00003264 /* initial bucket if pos is 0 */
3265 if (pos == 0) {
3266 state->bucket = 0;
3267 state->offset = 0;
3268 }
3269
3270 for (; state->bucket < IN6_ADDR_HSIZE; ++state->bucket) {
Sasha Levinb67bfe02013-02-27 17:06:00 -08003271 hlist_for_each_entry_rcu_bh(ifa, &inet6_addr_lst[state->bucket],
Mihai Maruseac1d578302012-01-03 23:31:35 +00003272 addr_lst) {
Eric Dumazet9f0d3c22012-10-16 07:37:27 +00003273 if (!net_eq(dev_net(ifa->idev->dev), net))
3274 continue;
Mihai Maruseac1d578302012-01-03 23:31:35 +00003275 /* sync with offset */
3276 if (p < state->offset) {
3277 p++;
3278 continue;
3279 }
3280 state->offset++;
Eric Dumazet9f0d3c22012-10-16 07:37:27 +00003281 return ifa;
Mihai Maruseac1d578302012-01-03 23:31:35 +00003282 }
3283
3284 /* prepare for next bucket */
3285 state->offset = 0;
3286 p = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003287 }
stephen hemmingerc2e21292010-03-17 20:31:10 +00003288 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003289}
3290
stephen hemmingerc2e21292010-03-17 20:31:10 +00003291static struct inet6_ifaddr *if6_get_next(struct seq_file *seq,
3292 struct inet6_ifaddr *ifa)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003293{
3294 struct if6_iter_state *state = seq->private;
YOSHIFUJI Hideaki12188542008-03-26 02:36:06 +09003295 struct net *net = seq_file_net(seq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003296
Sasha Levinb67bfe02013-02-27 17:06:00 -08003297 hlist_for_each_entry_continue_rcu_bh(ifa, addr_lst) {
Eric Dumazet9f0d3c22012-10-16 07:37:27 +00003298 if (!net_eq(dev_net(ifa->idev->dev), net))
3299 continue;
Mihai Maruseac1d578302012-01-03 23:31:35 +00003300 state->offset++;
Eric Dumazet9f0d3c22012-10-16 07:37:27 +00003301 return ifa;
Mihai Maruseac1d578302012-01-03 23:31:35 +00003302 }
stephen hemmingerc2e21292010-03-17 20:31:10 +00003303
3304 while (++state->bucket < IN6_ADDR_HSIZE) {
Mihai Maruseac1d578302012-01-03 23:31:35 +00003305 state->offset = 0;
Sasha Levinb67bfe02013-02-27 17:06:00 -08003306 hlist_for_each_entry_rcu_bh(ifa,
stephen hemmingerc2e21292010-03-17 20:31:10 +00003307 &inet6_addr_lst[state->bucket], addr_lst) {
Eric Dumazet9f0d3c22012-10-16 07:37:27 +00003308 if (!net_eq(dev_net(ifa->idev->dev), net))
3309 continue;
Mihai Maruseac1d578302012-01-03 23:31:35 +00003310 state->offset++;
Eric Dumazet9f0d3c22012-10-16 07:37:27 +00003311 return ifa;
Daniel Lezcano3c400902008-01-10 22:42:49 -08003312 }
3313 }
3314
stephen hemmingerc2e21292010-03-17 20:31:10 +00003315 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003316}
3317
Linus Torvalds1da177e2005-04-16 15:20:36 -07003318static void *if6_seq_start(struct seq_file *seq, loff_t *pos)
Eric Dumazet4f70ecc2010-05-03 10:50:14 +00003319 __acquires(rcu_bh)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003320{
stephen hemminger5c578ae2010-03-17 20:31:11 +00003321 rcu_read_lock_bh();
Mihai Maruseac1d578302012-01-03 23:31:35 +00003322 return if6_get_first(seq, *pos);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003323}
3324
3325static void *if6_seq_next(struct seq_file *seq, void *v, loff_t *pos)
3326{
3327 struct inet6_ifaddr *ifa;
3328
3329 ifa = if6_get_next(seq, v);
3330 ++*pos;
3331 return ifa;
3332}
3333
3334static void if6_seq_stop(struct seq_file *seq, void *v)
Eric Dumazet4f70ecc2010-05-03 10:50:14 +00003335 __releases(rcu_bh)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003336{
stephen hemminger5c578ae2010-03-17 20:31:11 +00003337 rcu_read_unlock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003338}
3339
3340static int if6_seq_show(struct seq_file *seq, void *v)
3341{
3342 struct inet6_ifaddr *ifp = (struct inet6_ifaddr *)v;
Harvey Harrison4b7a4272008-10-29 12:50:24 -07003343 seq_printf(seq, "%pi6 %02x %02x %02x %02x %8s\n",
Harvey Harrisonb0711952008-10-28 16:05:40 -07003344 &ifp->addr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003345 ifp->idev->dev->ifindex,
3346 ifp->prefix_len,
3347 ifp->scope,
3348 ifp->flags,
3349 ifp->idev->dev->name);
3350 return 0;
3351}
3352
Philippe De Muyter56b3d972007-07-10 23:07:31 -07003353static const struct seq_operations if6_seq_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003354 .start = if6_seq_start,
3355 .next = if6_seq_next,
3356 .show = if6_seq_show,
3357 .stop = if6_seq_stop,
3358};
3359
3360static int if6_seq_open(struct inode *inode, struct file *file)
3361{
Daniel Lezcano3c400902008-01-10 22:42:49 -08003362 return seq_open_net(inode, file, &if6_seq_ops,
3363 sizeof(struct if6_iter_state));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003364}
3365
Arjan van de Ven9a321442007-02-12 00:55:35 -08003366static const struct file_operations if6_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003367 .owner = THIS_MODULE,
3368 .open = if6_seq_open,
3369 .read = seq_read,
3370 .llseek = seq_lseek,
Daniel Lezcano3c400902008-01-10 22:42:49 -08003371 .release = seq_release_net,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003372};
3373
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00003374static int __net_init if6_proc_net_init(struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003375{
Gao fengd4beaa62013-02-18 01:34:54 +00003376 if (!proc_create("if_inet6", S_IRUGO, net->proc_net, &if6_fops))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003377 return -ENOMEM;
3378 return 0;
3379}
3380
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00003381static void __net_exit if6_proc_net_exit(struct net *net)
Daniel Lezcano3c400902008-01-10 22:42:49 -08003382{
Gao fengece31ff2013-02-18 01:34:56 +00003383 remove_proc_entry("if_inet6", net->proc_net);
Daniel Lezcano3c400902008-01-10 22:42:49 -08003384}
3385
3386static struct pernet_operations if6_proc_net_ops = {
3387 .init = if6_proc_net_init,
3388 .exit = if6_proc_net_exit,
3389};
3390
3391int __init if6_proc_init(void)
3392{
3393 return register_pernet_subsys(&if6_proc_net_ops);
3394}
3395
Linus Torvalds1da177e2005-04-16 15:20:36 -07003396void if6_proc_exit(void)
3397{
Daniel Lezcano3c400902008-01-10 22:42:49 -08003398 unregister_pernet_subsys(&if6_proc_net_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003399}
3400#endif /* CONFIG_PROC_FS */
3401
Amerigo Wang07a93622012-10-29 16:23:10 +00003402#if IS_ENABLED(CONFIG_IPV6_MIP6)
Noriaki TAKAMIYA3b9f9a12006-09-22 14:45:56 -07003403/* Check if address is a home address configured on any interface. */
Eric Dumazetb71d1d42011-04-22 04:53:02 +00003404int ipv6_chk_home_addr(struct net *net, const struct in6_addr *addr)
Noriaki TAKAMIYA3b9f9a12006-09-22 14:45:56 -07003405{
3406 int ret = 0;
stephen hemmingerc2e21292010-03-17 20:31:10 +00003407 struct inet6_ifaddr *ifp = NULL;
Eric Dumazetddbe5032012-07-18 08:11:12 +00003408 unsigned int hash = inet6_addr_hash(addr);
stephen hemmingerc2e21292010-03-17 20:31:10 +00003409
stephen hemminger5c578ae2010-03-17 20:31:11 +00003410 rcu_read_lock_bh();
Sasha Levinb67bfe02013-02-27 17:06:00 -08003411 hlist_for_each_entry_rcu_bh(ifp, &inet6_addr_lst[hash], addr_lst) {
YOSHIFUJI Hideaki878628f2008-03-26 03:57:35 +09003412 if (!net_eq(dev_net(ifp->idev->dev), net))
Daniel Lezcano389f6612008-01-10 22:44:40 -08003413 continue;
YOSHIFUJI Hideakicaad2952008-04-10 15:42:07 +09003414 if (ipv6_addr_equal(&ifp->addr, addr) &&
Noriaki TAKAMIYA3b9f9a12006-09-22 14:45:56 -07003415 (ifp->flags & IFA_F_HOMEADDRESS)) {
3416 ret = 1;
3417 break;
3418 }
3419 }
stephen hemminger5c578ae2010-03-17 20:31:11 +00003420 rcu_read_unlock_bh();
Noriaki TAKAMIYA3b9f9a12006-09-22 14:45:56 -07003421 return ret;
3422}
3423#endif
3424
Linus Torvalds1da177e2005-04-16 15:20:36 -07003425/*
3426 * Periodic address status verification
3427 */
3428
3429static void addrconf_verify(unsigned long foo)
3430{
YOSHIFUJI Hideakib2db7562010-03-20 16:11:12 -07003431 unsigned long now, next, next_sec, next_sched;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003432 struct inet6_ifaddr *ifp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003433 int i;
3434
stephen hemminger5c578ae2010-03-17 20:31:11 +00003435 rcu_read_lock_bh();
3436 spin_lock(&addrconf_verify_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003437 now = jiffies;
YOSHIFUJI Hideakib2db7562010-03-20 16:11:12 -07003438 next = round_jiffies_up(now + ADDR_CHECK_FREQUENCY);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003439
3440 del_timer(&addr_chk_timer);
3441
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07003442 for (i = 0; i < IN6_ADDR_HSIZE; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003443restart:
Sasha Levinb67bfe02013-02-27 17:06:00 -08003444 hlist_for_each_entry_rcu_bh(ifp,
stephen hemminger5c578ae2010-03-17 20:31:11 +00003445 &inet6_addr_lst[i], addr_lst) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003446 unsigned long age;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003447
3448 if (ifp->flags & IFA_F_PERMANENT)
3449 continue;
3450
3451 spin_lock(&ifp->lock);
YOSHIFUJI Hideakib2db7562010-03-20 16:11:12 -07003452 /* We try to batch several events at once. */
3453 age = (now - ifp->tstamp + ADDRCONF_TIMER_FUZZ_MINUS) / HZ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003454
YOSHIFUJI Hideaki8f27ebb2006-07-28 18:12:11 +09003455 if (ifp->valid_lft != INFINITY_LIFE_TIME &&
3456 age >= ifp->valid_lft) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003457 spin_unlock(&ifp->lock);
3458 in6_ifa_hold(ifp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003459 ipv6_del_addr(ifp);
3460 goto restart;
YOSHIFUJI Hideaki8f27ebb2006-07-28 18:12:11 +09003461 } else if (ifp->prefered_lft == INFINITY_LIFE_TIME) {
3462 spin_unlock(&ifp->lock);
3463 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003464 } else if (age >= ifp->prefered_lft) {
Brian Haleya1ed0522009-07-02 07:10:52 +00003465 /* jiffies - ifp->tstamp > age >= ifp->prefered_lft */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003466 int deprecate = 0;
3467
3468 if (!(ifp->flags&IFA_F_DEPRECATED)) {
3469 deprecate = 1;
3470 ifp->flags |= IFA_F_DEPRECATED;
3471 }
3472
3473 if (time_before(ifp->tstamp + ifp->valid_lft * HZ, next))
3474 next = ifp->tstamp + ifp->valid_lft * HZ;
3475
3476 spin_unlock(&ifp->lock);
3477
3478 if (deprecate) {
3479 in6_ifa_hold(ifp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003480
3481 ipv6_ifa_notify(0, ifp);
3482 in6_ifa_put(ifp);
3483 goto restart;
3484 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003485 } else if ((ifp->flags&IFA_F_TEMPORARY) &&
3486 !(ifp->flags&IFA_F_TENTATIVE)) {
stephen hemminger88949cf2010-03-17 20:31:17 +00003487 unsigned long regen_advance = ifp->idev->cnf.regen_max_retry *
3488 ifp->idev->cnf.dad_transmits *
3489 ifp->idev->nd_parms->retrans_time / HZ;
3490
Linus Torvalds1da177e2005-04-16 15:20:36 -07003491 if (age >= ifp->prefered_lft - regen_advance) {
3492 struct inet6_ifaddr *ifpub = ifp->ifpub;
3493 if (time_before(ifp->tstamp + ifp->prefered_lft * HZ, next))
3494 next = ifp->tstamp + ifp->prefered_lft * HZ;
3495 if (!ifp->regen_count && ifpub) {
3496 ifp->regen_count++;
3497 in6_ifa_hold(ifp);
3498 in6_ifa_hold(ifpub);
3499 spin_unlock(&ifp->lock);
stephen hemminger5c578ae2010-03-17 20:31:11 +00003500
Hiroyuki YAMAMORI291d8092005-12-23 11:24:05 -08003501 spin_lock(&ifpub->lock);
3502 ifpub->regen_count = 0;
3503 spin_unlock(&ifpub->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003504 ipv6_create_tempaddr(ifpub, ifp);
3505 in6_ifa_put(ifpub);
3506 in6_ifa_put(ifp);
3507 goto restart;
3508 }
3509 } else if (time_before(ifp->tstamp + ifp->prefered_lft * HZ - regen_advance * HZ, next))
3510 next = ifp->tstamp + ifp->prefered_lft * HZ - regen_advance * HZ;
3511 spin_unlock(&ifp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003512 } else {
3513 /* ifp->prefered_lft <= ifp->valid_lft */
3514 if (time_before(ifp->tstamp + ifp->prefered_lft * HZ, next))
3515 next = ifp->tstamp + ifp->prefered_lft * HZ;
3516 spin_unlock(&ifp->lock);
3517 }
3518 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003519 }
3520
YOSHIFUJI Hideakib2db7562010-03-20 16:11:12 -07003521 next_sec = round_jiffies_up(next);
3522 next_sched = next;
3523
3524 /* If rounded timeout is accurate enough, accept it. */
3525 if (time_before(next_sec, next + ADDRCONF_TIMER_FUZZ))
3526 next_sched = next_sec;
3527
3528 /* And minimum interval is ADDRCONF_TIMER_FUZZ_MAX. */
3529 if (time_before(next_sched, jiffies + ADDRCONF_TIMER_FUZZ_MAX))
3530 next_sched = jiffies + ADDRCONF_TIMER_FUZZ_MAX;
3531
dingtianhongba3542e2013-08-17 10:27:04 +08003532 ADBG(KERN_DEBUG "now = %lu, schedule = %lu, rounded schedule = %lu => %lu\n",
3533 now, next, next_sec, next_sched);
YOSHIFUJI Hideakib2db7562010-03-20 16:11:12 -07003534
3535 addr_chk_timer.expires = next_sched;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003536 add_timer(&addr_chk_timer);
stephen hemminger5c578ae2010-03-17 20:31:11 +00003537 spin_unlock(&addrconf_verify_lock);
3538 rcu_read_unlock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003539}
3540
Nicolas Dichtelcaeaba72013-05-16 22:32:00 +00003541static struct in6_addr *extract_addr(struct nlattr *addr, struct nlattr *local,
3542 struct in6_addr **peer_pfx)
Thomas Graf461d8832006-09-18 00:09:49 -07003543{
3544 struct in6_addr *pfx = NULL;
3545
Nicolas Dichtelcaeaba72013-05-16 22:32:00 +00003546 *peer_pfx = NULL;
3547
Thomas Graf461d8832006-09-18 00:09:49 -07003548 if (addr)
3549 pfx = nla_data(addr);
3550
3551 if (local) {
3552 if (pfx && nla_memcmp(local, pfx, sizeof(*pfx)))
Nicolas Dichtelcaeaba72013-05-16 22:32:00 +00003553 *peer_pfx = pfx;
3554 pfx = nla_data(local);
Thomas Graf461d8832006-09-18 00:09:49 -07003555 }
3556
3557 return pfx;
3558}
3559
Patrick McHardyef7c79e2007-06-05 12:38:30 -07003560static const struct nla_policy ifa_ipv6_policy[IFA_MAX+1] = {
Thomas Graf461d8832006-09-18 00:09:49 -07003561 [IFA_ADDRESS] = { .len = sizeof(struct in6_addr) },
3562 [IFA_LOCAL] = { .len = sizeof(struct in6_addr) },
3563 [IFA_CACHEINFO] = { .len = sizeof(struct ifa_cacheinfo) },
3564};
3565
Linus Torvalds1da177e2005-04-16 15:20:36 -07003566static int
Thomas Graf661d2962013-03-21 07:45:29 +00003567inet6_rtm_deladdr(struct sk_buff *skb, struct nlmsghdr *nlh)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003568{
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09003569 struct net *net = sock_net(skb->sk);
Thomas Grafb933f712006-09-18 00:10:19 -07003570 struct ifaddrmsg *ifm;
3571 struct nlattr *tb[IFA_MAX+1];
Nicolas Dichtelcaeaba72013-05-16 22:32:00 +00003572 struct in6_addr *pfx, *peer_pfx;
Thomas Grafb933f712006-09-18 00:10:19 -07003573 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003574
Thomas Grafb933f712006-09-18 00:10:19 -07003575 err = nlmsg_parse(nlh, sizeof(*ifm), tb, IFA_MAX, ifa_ipv6_policy);
3576 if (err < 0)
3577 return err;
3578
3579 ifm = nlmsg_data(nlh);
Nicolas Dichtelcaeaba72013-05-16 22:32:00 +00003580 pfx = extract_addr(tb[IFA_ADDRESS], tb[IFA_LOCAL], &peer_pfx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003581 if (pfx == NULL)
3582 return -EINVAL;
3583
Daniel Lezcanoaf284932008-03-05 10:46:57 -08003584 return inet6_addr_del(net, ifm->ifa_index, pfx, ifm->ifa_prefixlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003585}
3586
Noriaki TAKAMIYA55ebaef2006-09-22 14:45:27 -07003587static int inet6_addr_modify(struct inet6_ifaddr *ifp, u8 ifa_flags,
3588 u32 prefered_lft, u32 valid_lft)
Noriaki TAKAMIYA081bba52006-07-28 18:12:13 +09003589{
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07003590 u32 flags;
3591 clock_t expires;
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +09003592 unsigned long timeout;
YOSHIFUJI Hideaki46d48042007-02-07 20:36:26 +09003593
Noriaki TAKAMIYA081bba52006-07-28 18:12:13 +09003594 if (!valid_lft || (prefered_lft > valid_lft))
3595 return -EINVAL;
3596
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +09003597 timeout = addrconf_timeout_fixup(valid_lft, HZ);
3598 if (addrconf_finite_timeout(timeout)) {
3599 expires = jiffies_to_clock_t(timeout * HZ);
3600 valid_lft = timeout;
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07003601 flags = RTF_EXPIRES;
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +09003602 } else {
3603 expires = 0;
3604 flags = 0;
3605 ifa_flags |= IFA_F_PERMANENT;
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07003606 }
Noriaki TAKAMIYA081bba52006-07-28 18:12:13 +09003607
YOSHIFUJI Hideaki4bed72e2008-05-27 17:37:49 +09003608 timeout = addrconf_timeout_fixup(prefered_lft, HZ);
3609 if (addrconf_finite_timeout(timeout)) {
3610 if (timeout == 0)
3611 ifa_flags |= IFA_F_DEPRECATED;
3612 prefered_lft = timeout;
3613 }
Noriaki TAKAMIYA081bba52006-07-28 18:12:13 +09003614
3615 spin_lock_bh(&ifp->lock);
Noriaki TAKAMIYA3b9f9a12006-09-22 14:45:56 -07003616 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 +09003617 ifp->tstamp = jiffies;
3618 ifp->valid_lft = valid_lft;
3619 ifp->prefered_lft = prefered_lft;
3620
3621 spin_unlock_bh(&ifp->lock);
3622 if (!(ifp->flags&IFA_F_TENTATIVE))
3623 ipv6_ifa_notify(0, ifp);
Noriaki TAKAMIYA081bba52006-07-28 18:12:13 +09003624
YOSHIFUJI Hideaki46d48042007-02-07 20:36:26 +09003625 addrconf_prefix_route(&ifp->addr, ifp->prefix_len, ifp->idev->dev,
YOSHIFUJI Hideaki6f704992008-05-19 16:56:11 -07003626 expires, flags);
Noriaki TAKAMIYA081bba52006-07-28 18:12:13 +09003627 addrconf_verify(0);
3628
3629 return 0;
3630}
3631
3632static int
Thomas Graf661d2962013-03-21 07:45:29 +00003633inet6_rtm_newaddr(struct sk_buff *skb, struct nlmsghdr *nlh)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003634{
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09003635 struct net *net = sock_net(skb->sk);
Thomas Graf461d8832006-09-18 00:09:49 -07003636 struct ifaddrmsg *ifm;
3637 struct nlattr *tb[IFA_MAX+1];
Nicolas Dichtelcaeaba72013-05-16 22:32:00 +00003638 struct in6_addr *pfx, *peer_pfx;
Thomas Graf7198f8c2006-09-18 00:13:46 -07003639 struct inet6_ifaddr *ifa;
3640 struct net_device *dev;
Noriaki TAKAMIYA55ebaef2006-09-22 14:45:27 -07003641 u32 valid_lft = INFINITY_LIFE_TIME, preferred_lft = INFINITY_LIFE_TIME;
3642 u8 ifa_flags;
Thomas Graf461d8832006-09-18 00:09:49 -07003643 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003644
Thomas Graf461d8832006-09-18 00:09:49 -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
Thomas Graf461d8832006-09-18 00:09:49 -07003654 if (tb[IFA_CACHEINFO]) {
Noriaki TAKAMIYA07787692006-07-28 18:12:10 +09003655 struct ifa_cacheinfo *ci;
Thomas Graf461d8832006-09-18 00:09:49 -07003656
3657 ci = nla_data(tb[IFA_CACHEINFO]);
Noriaki TAKAMIYA07787692006-07-28 18:12:10 +09003658 valid_lft = ci->ifa_valid;
Thomas Graf461d8832006-09-18 00:09:49 -07003659 preferred_lft = ci->ifa_prefered;
3660 } else {
3661 preferred_lft = INFINITY_LIFE_TIME;
3662 valid_lft = INFINITY_LIFE_TIME;
Noriaki TAKAMIYA07787692006-07-28 18:12:10 +09003663 }
3664
Daniel Lezcanoaf284932008-03-05 10:46:57 -08003665 dev = __dev_get_by_index(net, ifm->ifa_index);
Thomas Graf7198f8c2006-09-18 00:13:46 -07003666 if (dev == NULL)
3667 return -ENODEV;
3668
Noriaki TAKAMIYA55ebaef2006-09-22 14:45:27 -07003669 /* We ignore other flags so far. */
Noriaki TAKAMIYA3b9f9a12006-09-22 14:45:56 -07003670 ifa_flags = ifm->ifa_flags & (IFA_F_NODAD | IFA_F_HOMEADDRESS);
Noriaki TAKAMIYA55ebaef2006-09-22 14:45:27 -07003671
Daniel Lezcano1cab3da2008-01-10 22:44:09 -08003672 ifa = ipv6_get_ifaddr(net, pfx, dev, 1);
Thomas Graf7198f8c2006-09-18 00:13:46 -07003673 if (ifa == NULL) {
3674 /*
3675 * It would be best to check for !NLM_F_CREATE here but
3676 * userspace alreay relies on not having to provide this.
3677 */
Nicolas Dichtelcaeaba72013-05-16 22:32:00 +00003678 return inet6_addr_add(net, ifm->ifa_index, pfx, peer_pfx,
Daniel Lezcanoaf284932008-03-05 10:46:57 -08003679 ifm->ifa_prefixlen, ifa_flags,
3680 preferred_lft, valid_lft);
Noriaki TAKAMIYA081bba52006-07-28 18:12:13 +09003681 }
3682
Thomas Graf7198f8c2006-09-18 00:13:46 -07003683 if (nlh->nlmsg_flags & NLM_F_EXCL ||
3684 !(nlh->nlmsg_flags & NLM_F_REPLACE))
3685 err = -EEXIST;
3686 else
Noriaki TAKAMIYA55ebaef2006-09-22 14:45:27 -07003687 err = inet6_addr_modify(ifa, ifa_flags, preferred_lft, valid_lft);
Thomas Graf7198f8c2006-09-18 00:13:46 -07003688
3689 in6_ifa_put(ifa);
3690
3691 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003692}
3693
Thomas Graf101bb222006-09-18 00:11:52 -07003694static void put_ifaddrmsg(struct nlmsghdr *nlh, u8 prefixlen, u8 flags,
3695 u8 scope, int ifindex)
3696{
3697 struct ifaddrmsg *ifm;
3698
3699 ifm = nlmsg_data(nlh);
3700 ifm->ifa_family = AF_INET6;
3701 ifm->ifa_prefixlen = prefixlen;
3702 ifm->ifa_flags = flags;
3703 ifm->ifa_scope = scope;
3704 ifm->ifa_index = ifindex;
3705}
3706
Thomas Graf85486af2006-09-18 00:11:24 -07003707static int put_cacheinfo(struct sk_buff *skb, unsigned long cstamp,
3708 unsigned long tstamp, u32 preferred, u32 valid)
3709{
3710 struct ifa_cacheinfo ci;
3711
Thomas Graf18a31e12010-11-17 04:12:02 +00003712 ci.cstamp = cstamp_delta(cstamp);
3713 ci.tstamp = cstamp_delta(tstamp);
Thomas Graf85486af2006-09-18 00:11:24 -07003714 ci.ifa_prefered = preferred;
3715 ci.ifa_valid = valid;
3716
3717 return nla_put(skb, IFA_CACHEINFO, sizeof(ci), &ci);
3718}
3719
Thomas Graf101bb222006-09-18 00:11:52 -07003720static inline int rt_scope(int ifa_scope)
3721{
3722 if (ifa_scope & IFA_HOST)
3723 return RT_SCOPE_HOST;
3724 else if (ifa_scope & IFA_LINK)
3725 return RT_SCOPE_LINK;
3726 else if (ifa_scope & IFA_SITE)
3727 return RT_SCOPE_SITE;
3728 else
3729 return RT_SCOPE_UNIVERSE;
3730}
3731
Thomas Graf0ab68032006-09-18 00:12:35 -07003732static inline int inet6_ifaddr_msgsize(void)
3733{
Thomas Graf339bf982006-11-10 14:10:15 -08003734 return NLMSG_ALIGN(sizeof(struct ifaddrmsg))
Nicolas Dichtelcaeaba72013-05-16 22:32:00 +00003735 + nla_total_size(16) /* IFA_LOCAL */
Thomas Graf339bf982006-11-10 14:10:15 -08003736 + nla_total_size(16) /* IFA_ADDRESS */
3737 + nla_total_size(sizeof(struct ifa_cacheinfo));
Thomas Graf0ab68032006-09-18 00:12:35 -07003738}
YOSHIFUJI Hideakic5396a32006-06-17 22:48:48 -07003739
Linus Torvalds1da177e2005-04-16 15:20:36 -07003740static int inet6_fill_ifaddr(struct sk_buff *skb, struct inet6_ifaddr *ifa,
Eric W. Biederman15e47302012-09-07 20:12:54 +00003741 u32 portid, u32 seq, int event, unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003742{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003743 struct nlmsghdr *nlh;
Thomas Graf85486af2006-09-18 00:11:24 -07003744 u32 preferred, valid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003745
Eric W. Biederman15e47302012-09-07 20:12:54 +00003746 nlh = nlmsg_put(skb, portid, seq, event, sizeof(struct ifaddrmsg), flags);
Thomas Graf0ab68032006-09-18 00:12:35 -07003747 if (nlh == NULL)
Patrick McHardy26932562007-01-31 23:16:40 -08003748 return -EMSGSIZE;
Thomas Graf0ab68032006-09-18 00:12:35 -07003749
Thomas Graf101bb222006-09-18 00:11:52 -07003750 put_ifaddrmsg(nlh, ifa->prefix_len, ifa->flags, rt_scope(ifa->scope),
3751 ifa->idev->dev->ifindex);
3752
Linus Torvalds1da177e2005-04-16 15:20:36 -07003753 if (!(ifa->flags&IFA_F_PERMANENT)) {
Thomas Graf85486af2006-09-18 00:11:24 -07003754 preferred = ifa->prefered_lft;
3755 valid = ifa->valid_lft;
3756 if (preferred != INFINITY_LIFE_TIME) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003757 long tval = (jiffies - ifa->tstamp)/HZ;
Jens Rosenbooma1faa692009-06-25 04:55:50 +00003758 if (preferred > tval)
3759 preferred -= tval;
3760 else
3761 preferred = 0;
Ben Hutchingsf56619f2010-06-26 11:37:47 +00003762 if (valid != INFINITY_LIFE_TIME) {
3763 if (valid > tval)
3764 valid -= tval;
3765 else
3766 valid = 0;
3767 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003768 }
3769 } else {
Thomas Graf85486af2006-09-18 00:11:24 -07003770 preferred = INFINITY_LIFE_TIME;
3771 valid = INFINITY_LIFE_TIME;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003772 }
Thomas Graf85486af2006-09-18 00:11:24 -07003773
Cong Wang7996c792013-05-22 05:41:06 +00003774 if (!ipv6_addr_any(&ifa->peer_addr)) {
Nicolas Dichtelcaeaba72013-05-16 22:32:00 +00003775 if (nla_put(skb, IFA_LOCAL, 16, &ifa->addr) < 0 ||
3776 nla_put(skb, IFA_ADDRESS, 16, &ifa->peer_addr) < 0)
3777 goto error;
3778 } else
3779 if (nla_put(skb, IFA_ADDRESS, 16, &ifa->addr) < 0)
3780 goto error;
3781
3782 if (put_cacheinfo(skb, ifa->cstamp, ifa->tstamp, preferred, valid) < 0)
3783 goto error;
Thomas Graf85486af2006-09-18 00:11:24 -07003784
Thomas Graf0ab68032006-09-18 00:12:35 -07003785 return nlmsg_end(skb, nlh);
Nicolas Dichtelcaeaba72013-05-16 22:32:00 +00003786
3787error:
3788 nlmsg_cancel(skb, nlh);
3789 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003790}
3791
3792static int inet6_fill_ifmcaddr(struct sk_buff *skb, struct ifmcaddr6 *ifmca,
Eric W. Biederman15e47302012-09-07 20:12:54 +00003793 u32 portid, u32 seq, int event, u16 flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003794{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003795 struct nlmsghdr *nlh;
Thomas Graf101bb222006-09-18 00:11:52 -07003796 u8 scope = RT_SCOPE_UNIVERSE;
3797 int ifindex = ifmca->idev->dev->ifindex;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003798
Thomas Graf101bb222006-09-18 00:11:52 -07003799 if (ipv6_addr_scope(&ifmca->mca_addr) & IFA_SITE)
3800 scope = RT_SCOPE_SITE;
3801
Eric W. Biederman15e47302012-09-07 20:12:54 +00003802 nlh = nlmsg_put(skb, portid, seq, event, sizeof(struct ifaddrmsg), flags);
Thomas Graf0ab68032006-09-18 00:12:35 -07003803 if (nlh == NULL)
Patrick McHardy26932562007-01-31 23:16:40 -08003804 return -EMSGSIZE;
Thomas Graf0ab68032006-09-18 00:12:35 -07003805
Thomas Graf101bb222006-09-18 00:11:52 -07003806 put_ifaddrmsg(nlh, 128, IFA_F_PERMANENT, scope, ifindex);
Thomas Graf0ab68032006-09-18 00:12:35 -07003807 if (nla_put(skb, IFA_MULTICAST, 16, &ifmca->mca_addr) < 0 ||
3808 put_cacheinfo(skb, ifmca->mca_cstamp, ifmca->mca_tstamp,
Patrick McHardy26932562007-01-31 23:16:40 -08003809 INFINITY_LIFE_TIME, INFINITY_LIFE_TIME) < 0) {
3810 nlmsg_cancel(skb, nlh);
3811 return -EMSGSIZE;
3812 }
Thomas Graf85486af2006-09-18 00:11:24 -07003813
Thomas Graf0ab68032006-09-18 00:12:35 -07003814 return nlmsg_end(skb, nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003815}
3816
3817static int inet6_fill_ifacaddr(struct sk_buff *skb, struct ifacaddr6 *ifaca,
Eric W. Biederman15e47302012-09-07 20:12:54 +00003818 u32 portid, u32 seq, int event, unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003819{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003820 struct nlmsghdr *nlh;
Thomas Graf101bb222006-09-18 00:11:52 -07003821 u8 scope = RT_SCOPE_UNIVERSE;
3822 int ifindex = ifaca->aca_idev->dev->ifindex;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003823
Thomas Graf101bb222006-09-18 00:11:52 -07003824 if (ipv6_addr_scope(&ifaca->aca_addr) & IFA_SITE)
3825 scope = RT_SCOPE_SITE;
3826
Eric W. Biederman15e47302012-09-07 20:12:54 +00003827 nlh = nlmsg_put(skb, portid, seq, event, sizeof(struct ifaddrmsg), flags);
Thomas Graf0ab68032006-09-18 00:12:35 -07003828 if (nlh == NULL)
Patrick McHardy26932562007-01-31 23:16:40 -08003829 return -EMSGSIZE;
Thomas Graf0ab68032006-09-18 00:12:35 -07003830
Thomas Graf101bb222006-09-18 00:11:52 -07003831 put_ifaddrmsg(nlh, 128, IFA_F_PERMANENT, scope, ifindex);
Thomas Graf0ab68032006-09-18 00:12:35 -07003832 if (nla_put(skb, IFA_ANYCAST, 16, &ifaca->aca_addr) < 0 ||
3833 put_cacheinfo(skb, ifaca->aca_cstamp, ifaca->aca_tstamp,
Patrick McHardy26932562007-01-31 23:16:40 -08003834 INFINITY_LIFE_TIME, INFINITY_LIFE_TIME) < 0) {
3835 nlmsg_cancel(skb, nlh);
3836 return -EMSGSIZE;
3837 }
Thomas Graf85486af2006-09-18 00:11:24 -07003838
Thomas Graf0ab68032006-09-18 00:12:35 -07003839 return nlmsg_end(skb, nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003840}
3841
Stephen Hemmingere21e8462010-03-20 16:09:01 -07003842enum addr_type_t {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003843 UNICAST_ADDR,
3844 MULTICAST_ADDR,
3845 ANYCAST_ADDR,
3846};
3847
Eric Dumazet234b27c2009-11-12 04:11:50 +00003848/* called with rcu_read_lock() */
3849static int in6_dump_addrs(struct inet6_dev *idev, struct sk_buff *skb,
3850 struct netlink_callback *cb, enum addr_type_t type,
3851 int s_ip_idx, int *p_ip_idx)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003852{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003853 struct ifmcaddr6 *ifmca;
3854 struct ifacaddr6 *ifaca;
Eric Dumazet234b27c2009-11-12 04:11:50 +00003855 int err = 1;
3856 int ip_idx = *p_ip_idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003857
Eric Dumazet234b27c2009-11-12 04:11:50 +00003858 read_lock_bh(&idev->lock);
3859 switch (type) {
stephen hemminger502a2ff2010-03-17 20:31:13 +00003860 case UNICAST_ADDR: {
3861 struct inet6_ifaddr *ifa;
3862
Eric Dumazet234b27c2009-11-12 04:11:50 +00003863 /* unicast address incl. temp addr */
stephen hemminger502a2ff2010-03-17 20:31:13 +00003864 list_for_each_entry(ifa, &idev->addr_list, if_list) {
3865 if (++ip_idx < s_ip_idx)
Eric Dumazet234b27c2009-11-12 04:11:50 +00003866 continue;
3867 err = inet6_fill_ifaddr(skb, ifa,
Eric W. Biederman15e47302012-09-07 20:12:54 +00003868 NETLINK_CB(cb->skb).portid,
Eric Dumazet234b27c2009-11-12 04:11:50 +00003869 cb->nlh->nlmsg_seq,
3870 RTM_NEWADDR,
3871 NLM_F_MULTI);
3872 if (err <= 0)
3873 break;
Nicolas Dichtel63998ac2013-03-22 06:28:43 +00003874 nl_dump_check_consistent(cb, nlmsg_hdr(skb));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003875 }
Eric Dumazet234b27c2009-11-12 04:11:50 +00003876 break;
stephen hemminger502a2ff2010-03-17 20:31:13 +00003877 }
Eric Dumazet234b27c2009-11-12 04:11:50 +00003878 case MULTICAST_ADDR:
3879 /* multicast address */
3880 for (ifmca = idev->mc_list; ifmca;
3881 ifmca = ifmca->next, ip_idx++) {
3882 if (ip_idx < s_ip_idx)
3883 continue;
3884 err = inet6_fill_ifmcaddr(skb, ifmca,
Eric W. Biederman15e47302012-09-07 20:12:54 +00003885 NETLINK_CB(cb->skb).portid,
Eric Dumazet234b27c2009-11-12 04:11:50 +00003886 cb->nlh->nlmsg_seq,
3887 RTM_GETMULTICAST,
3888 NLM_F_MULTI);
3889 if (err <= 0)
3890 break;
3891 }
3892 break;
3893 case ANYCAST_ADDR:
3894 /* anycast address */
3895 for (ifaca = idev->ac_list; ifaca;
3896 ifaca = ifaca->aca_next, ip_idx++) {
3897 if (ip_idx < s_ip_idx)
3898 continue;
3899 err = inet6_fill_ifacaddr(skb, ifaca,
Eric W. Biederman15e47302012-09-07 20:12:54 +00003900 NETLINK_CB(cb->skb).portid,
Eric Dumazet234b27c2009-11-12 04:11:50 +00003901 cb->nlh->nlmsg_seq,
3902 RTM_GETANYCAST,
3903 NLM_F_MULTI);
3904 if (err <= 0)
3905 break;
3906 }
3907 break;
3908 default:
3909 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003910 }
Eric Dumazet234b27c2009-11-12 04:11:50 +00003911 read_unlock_bh(&idev->lock);
3912 *p_ip_idx = ip_idx;
3913 return err;
3914}
3915
3916static int inet6_dump_addr(struct sk_buff *skb, struct netlink_callback *cb,
3917 enum addr_type_t type)
3918{
3919 struct net *net = sock_net(skb->sk);
3920 int h, s_h;
3921 int idx, ip_idx;
3922 int s_idx, s_ip_idx;
3923 struct net_device *dev;
3924 struct inet6_dev *idev;
3925 struct hlist_head *head;
Eric Dumazet234b27c2009-11-12 04:11:50 +00003926
3927 s_h = cb->args[0];
3928 s_idx = idx = cb->args[1];
3929 s_ip_idx = ip_idx = cb->args[2];
3930
3931 rcu_read_lock();
Nicolas Dichtel63998ac2013-03-22 06:28:43 +00003932 cb->seq = atomic_read(&net->ipv6.dev_addr_genid) ^ net->dev_base_seq;
Eric Dumazet234b27c2009-11-12 04:11:50 +00003933 for (h = s_h; h < NETDEV_HASHENTRIES; h++, s_idx = 0) {
3934 idx = 0;
3935 head = &net->dev_index_head[h];
Sasha Levinb67bfe02013-02-27 17:06:00 -08003936 hlist_for_each_entry_rcu(dev, head, index_hlist) {
Eric Dumazet234b27c2009-11-12 04:11:50 +00003937 if (idx < s_idx)
3938 goto cont;
Patrick McHardy4b97efd2010-03-26 20:27:49 -07003939 if (h > s_h || idx > s_idx)
Eric Dumazet234b27c2009-11-12 04:11:50 +00003940 s_ip_idx = 0;
3941 ip_idx = 0;
Stephen Hemmingere21e8462010-03-20 16:09:01 -07003942 idev = __in6_dev_get(dev);
3943 if (!idev)
Eric Dumazet234b27c2009-11-12 04:11:50 +00003944 goto cont;
3945
3946 if (in6_dump_addrs(idev, skb, cb, type,
3947 s_ip_idx, &ip_idx) <= 0)
3948 goto done;
3949cont:
3950 idx++;
3951 }
3952 }
3953done:
3954 rcu_read_unlock();
3955 cb->args[0] = h;
3956 cb->args[1] = idx;
3957 cb->args[2] = ip_idx;
3958
Linus Torvalds1da177e2005-04-16 15:20:36 -07003959 return skb->len;
3960}
3961
3962static int inet6_dump_ifaddr(struct sk_buff *skb, struct netlink_callback *cb)
3963{
3964 enum addr_type_t type = UNICAST_ADDR;
Denis V. Lunevb8542722007-12-01 00:21:31 +11003965
Linus Torvalds1da177e2005-04-16 15:20:36 -07003966 return inet6_dump_addr(skb, cb, type);
3967}
3968
3969static int inet6_dump_ifmcaddr(struct sk_buff *skb, struct netlink_callback *cb)
3970{
3971 enum addr_type_t type = MULTICAST_ADDR;
Denis V. Lunevb8542722007-12-01 00:21:31 +11003972
Linus Torvalds1da177e2005-04-16 15:20:36 -07003973 return inet6_dump_addr(skb, cb, type);
3974}
3975
3976
3977static int inet6_dump_ifacaddr(struct sk_buff *skb, struct netlink_callback *cb)
3978{
3979 enum addr_type_t type = ANYCAST_ADDR;
Denis V. Lunevb8542722007-12-01 00:21:31 +11003980
Linus Torvalds1da177e2005-04-16 15:20:36 -07003981 return inet6_dump_addr(skb, cb, type);
3982}
3983
Thomas Graf661d2962013-03-21 07:45:29 +00003984static int inet6_rtm_getaddr(struct sk_buff *in_skb, struct nlmsghdr *nlh)
Noriaki TAKAMIYA6c223822006-07-28 18:12:12 +09003985{
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09003986 struct net *net = sock_net(in_skb->sk);
Thomas Graf1b29fc22006-09-18 00:10:50 -07003987 struct ifaddrmsg *ifm;
3988 struct nlattr *tb[IFA_MAX+1];
Nicolas Dichtelcaeaba72013-05-16 22:32:00 +00003989 struct in6_addr *addr = NULL, *peer;
Noriaki TAKAMIYA6c223822006-07-28 18:12:12 +09003990 struct net_device *dev = NULL;
3991 struct inet6_ifaddr *ifa;
3992 struct sk_buff *skb;
Noriaki TAKAMIYA6c223822006-07-28 18:12:12 +09003993 int err;
3994
Thomas Graf1b29fc22006-09-18 00:10:50 -07003995 err = nlmsg_parse(nlh, sizeof(*ifm), tb, IFA_MAX, ifa_ipv6_policy);
3996 if (err < 0)
3997 goto errout;
Noriaki TAKAMIYA6c223822006-07-28 18:12:12 +09003998
Nicolas Dichtelcaeaba72013-05-16 22:32:00 +00003999 addr = extract_addr(tb[IFA_ADDRESS], tb[IFA_LOCAL], &peer);
Thomas Graf1b29fc22006-09-18 00:10:50 -07004000 if (addr == NULL) {
4001 err = -EINVAL;
4002 goto errout;
4003 }
4004
4005 ifm = nlmsg_data(nlh);
Noriaki TAKAMIYA6c223822006-07-28 18:12:12 +09004006 if (ifm->ifa_index)
Benjamin Thery6fda7352008-03-05 10:47:47 -08004007 dev = __dev_get_by_index(net, ifm->ifa_index);
Noriaki TAKAMIYA6c223822006-07-28 18:12:12 +09004008
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004009 ifa = ipv6_get_ifaddr(net, addr, dev, 1);
4010 if (!ifa) {
Thomas Graf1b29fc22006-09-18 00:10:50 -07004011 err = -EADDRNOTAVAIL;
4012 goto errout;
Noriaki TAKAMIYA6c223822006-07-28 18:12:12 +09004013 }
4014
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004015 skb = nlmsg_new(inet6_ifaddr_msgsize(), GFP_KERNEL);
4016 if (!skb) {
Thomas Graf1b29fc22006-09-18 00:10:50 -07004017 err = -ENOBUFS;
4018 goto errout_ifa;
4019 }
4020
Eric W. Biederman15e47302012-09-07 20:12:54 +00004021 err = inet6_fill_ifaddr(skb, ifa, NETLINK_CB(in_skb).portid,
Noriaki TAKAMIYA6c223822006-07-28 18:12:12 +09004022 nlh->nlmsg_seq, RTM_NEWADDR, 0);
Patrick McHardy26932562007-01-31 23:16:40 -08004023 if (err < 0) {
4024 /* -EMSGSIZE implies BUG in inet6_ifaddr_msgsize() */
4025 WARN_ON(err == -EMSGSIZE);
4026 kfree_skb(skb);
4027 goto errout_ifa;
4028 }
Eric W. Biederman15e47302012-09-07 20:12:54 +00004029 err = rtnl_unicast(skb, net, NETLINK_CB(in_skb).portid);
Thomas Graf1b29fc22006-09-18 00:10:50 -07004030errout_ifa:
Noriaki TAKAMIYA6c223822006-07-28 18:12:12 +09004031 in6_ifa_put(ifa);
Thomas Graf1b29fc22006-09-18 00:10:50 -07004032errout:
Noriaki TAKAMIYA6c223822006-07-28 18:12:12 +09004033 return err;
Noriaki TAKAMIYA6c223822006-07-28 18:12:12 +09004034}
4035
Linus Torvalds1da177e2005-04-16 15:20:36 -07004036static void inet6_ifa_notify(int event, struct inet6_ifaddr *ifa)
4037{
4038 struct sk_buff *skb;
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09004039 struct net *net = dev_net(ifa->idev->dev);
Thomas Graf5d620262006-08-15 00:35:02 -07004040 int err = -ENOBUFS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004041
Thomas Graf0ab68032006-09-18 00:12:35 -07004042 skb = nlmsg_new(inet6_ifaddr_msgsize(), GFP_ATOMIC);
Thomas Graf5d620262006-08-15 00:35:02 -07004043 if (skb == NULL)
4044 goto errout;
4045
4046 err = inet6_fill_ifaddr(skb, ifa, 0, 0, event, 0);
Patrick McHardy26932562007-01-31 23:16:40 -08004047 if (err < 0) {
4048 /* -EMSGSIZE implies BUG in inet6_ifaddr_msgsize() */
4049 WARN_ON(err == -EMSGSIZE);
4050 kfree_skb(skb);
4051 goto errout;
4052 }
Pablo Neira Ayuso1ce85fe2009-02-24 23:18:28 -08004053 rtnl_notify(skb, net, 0, RTNLGRP_IPV6_IFADDR, NULL, GFP_ATOMIC);
4054 return;
Thomas Graf5d620262006-08-15 00:35:02 -07004055errout:
4056 if (err < 0)
Benjamin Thery6fda7352008-03-05 10:47:47 -08004057 rtnl_set_sk_err(net, RTNLGRP_IPV6_IFADDR, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004058}
4059
Dave Jonesb6f99a22007-03-22 12:27:49 -07004060static inline void ipv6_store_devconf(struct ipv6_devconf *cnf,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004061 __s32 *array, int bytes)
4062{
Thomas Graf04561c12006-11-14 19:53:58 -08004063 BUG_ON(bytes < (DEVCONF_MAX * 4));
4064
Linus Torvalds1da177e2005-04-16 15:20:36 -07004065 memset(array, 0, bytes);
4066 array[DEVCONF_FORWARDING] = cnf->forwarding;
4067 array[DEVCONF_HOPLIMIT] = cnf->hop_limit;
4068 array[DEVCONF_MTU6] = cnf->mtu6;
4069 array[DEVCONF_ACCEPT_RA] = cnf->accept_ra;
4070 array[DEVCONF_ACCEPT_REDIRECTS] = cnf->accept_redirects;
4071 array[DEVCONF_AUTOCONF] = cnf->autoconf;
4072 array[DEVCONF_DAD_TRANSMITS] = cnf->dad_transmits;
4073 array[DEVCONF_RTR_SOLICITS] = cnf->rtr_solicits;
Thomas Graf93908d12010-11-17 01:44:24 +00004074 array[DEVCONF_RTR_SOLICIT_INTERVAL] =
4075 jiffies_to_msecs(cnf->rtr_solicit_interval);
4076 array[DEVCONF_RTR_SOLICIT_DELAY] =
4077 jiffies_to_msecs(cnf->rtr_solicit_delay);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004078 array[DEVCONF_FORCE_MLD_VERSION] = cnf->force_mld_version;
Hannes Frederic Sowafc4eba52013-08-14 01:03:46 +02004079 array[DEVCONF_MLDV1_UNSOLICITED_REPORT_INTERVAL] =
4080 jiffies_to_msecs(cnf->mldv1_unsolicited_report_interval);
4081 array[DEVCONF_MLDV2_UNSOLICITED_REPORT_INTERVAL] =
4082 jiffies_to_msecs(cnf->mldv2_unsolicited_report_interval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004083 array[DEVCONF_USE_TEMPADDR] = cnf->use_tempaddr;
4084 array[DEVCONF_TEMP_VALID_LFT] = cnf->temp_valid_lft;
4085 array[DEVCONF_TEMP_PREFERED_LFT] = cnf->temp_prefered_lft;
4086 array[DEVCONF_REGEN_MAX_RETRY] = cnf->regen_max_retry;
4087 array[DEVCONF_MAX_DESYNC_FACTOR] = cnf->max_desync_factor;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004088 array[DEVCONF_MAX_ADDRESSES] = cnf->max_addresses;
YOSHIFUJI Hideaki65f5c7c2006-03-20 16:55:08 -08004089 array[DEVCONF_ACCEPT_RA_DEFRTR] = cnf->accept_ra_defrtr;
YOSHIFUJI Hideakic4fd30e2006-03-20 16:55:26 -08004090 array[DEVCONF_ACCEPT_RA_PINFO] = cnf->accept_ra_pinfo;
YOSHIFUJI Hideaki930d6ff2006-03-20 17:05:30 -08004091#ifdef CONFIG_IPV6_ROUTER_PREF
4092 array[DEVCONF_ACCEPT_RA_RTR_PREF] = cnf->accept_ra_rtr_pref;
Thomas Graf93908d12010-11-17 01:44:24 +00004093 array[DEVCONF_RTR_PROBE_INTERVAL] =
4094 jiffies_to_msecs(cnf->rtr_probe_interval);
Neil Hormanfa03ef32007-01-30 14:30:10 -08004095#ifdef CONFIG_IPV6_ROUTE_INFO
YOSHIFUJI Hideaki09c884d2006-03-20 17:07:03 -08004096 array[DEVCONF_ACCEPT_RA_RT_INFO_MAX_PLEN] = cnf->accept_ra_rt_info_max_plen;
4097#endif
YOSHIFUJI Hideaki930d6ff2006-03-20 17:05:30 -08004098#endif
YOSHIFUJI Hideakifbea49e2006-09-22 14:43:49 -07004099 array[DEVCONF_PROXY_NDP] = cnf->proxy_ndp;
YOSHIFUJI Hideaki0bcbc922007-04-24 14:58:30 -07004100 array[DEVCONF_ACCEPT_SOURCE_ROUTE] = cnf->accept_source_route;
Neil Horman95c385b2007-04-25 17:08:10 -07004101#ifdef CONFIG_IPV6_OPTIMISTIC_DAD
4102 array[DEVCONF_OPTIMISTIC_DAD] = cnf->optimistic_dad;
4103#endif
YOSHIFUJI Hideaki7bc570c2008-04-03 09:22:53 +09004104#ifdef CONFIG_IPV6_MROUTE
4105 array[DEVCONF_MC_FORWARDING] = cnf->mc_forwarding;
4106#endif
YOSHIFUJI Hideaki778d80b2008-06-28 14:17:11 +09004107 array[DEVCONF_DISABLE_IPV6] = cnf->disable_ipv6;
YOSHIFUJI Hideaki1b34be72008-06-28 14:18:38 +09004108 array[DEVCONF_ACCEPT_DAD] = cnf->accept_dad;
Cosmin Ratiuc3faca02009-10-09 03:11:14 +00004109 array[DEVCONF_FORCE_TLLAO] = cnf->force_tllao;
Hannes Frederic Sowa5cb04432012-11-06 16:46:20 +00004110 array[DEVCONF_NDISC_NOTIFY] = cnf->ndisc_notify;
Hannes Frederic Sowab800c3b2013-08-27 01:36:51 +02004111 array[DEVCONF_SUPPRESS_FRAG_NDISC] = cnf->suppress_frag_ndisc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004112}
4113
Thomas Grafb382b192010-11-16 04:33:57 +00004114static inline size_t inet6_ifla6_size(void)
4115{
4116 return nla_total_size(4) /* IFLA_INET6_FLAGS */
4117 + nla_total_size(sizeof(struct ifla_cacheinfo))
4118 + nla_total_size(DEVCONF_MAX * 4) /* IFLA_INET6_CONF */
4119 + nla_total_size(IPSTATS_MIB_MAX * 8) /* IFLA_INET6_STATS */
Daniel Borkmannf53adae2013-04-08 04:01:30 +00004120 + nla_total_size(ICMP6_MIB_MAX * 8) /* IFLA_INET6_ICMP6STATS */
4121 + nla_total_size(sizeof(struct in6_addr)); /* IFLA_INET6_TOKEN */
Thomas Grafb382b192010-11-16 04:33:57 +00004122}
4123
Thomas Graf339bf982006-11-10 14:10:15 -08004124static inline size_t inet6_if_nlmsg_size(void)
4125{
4126 return NLMSG_ALIGN(sizeof(struct ifinfomsg))
4127 + nla_total_size(IFNAMSIZ) /* IFLA_IFNAME */
4128 + nla_total_size(MAX_ADDR_LEN) /* IFLA_ADDRESS */
4129 + nla_total_size(4) /* IFLA_MTU */
4130 + nla_total_size(4) /* IFLA_LINK */
Thomas Grafb382b192010-11-16 04:33:57 +00004131 + nla_total_size(inet6_ifla6_size()); /* IFLA_PROTINFO */
Thomas Graf339bf982006-11-10 14:10:15 -08004132}
YOSHIFUJI Hideakic5396a32006-06-17 22:48:48 -07004133
Eric Dumazetbe281e52011-05-19 01:14:23 +00004134static inline void __snmp6_fill_statsdev(u64 *stats, atomic_long_t *mib,
Tejun Heo7d720c32010-02-16 15:20:26 +00004135 int items, int bytes)
Herbert Xu7f7d9a62007-04-24 21:54:09 -07004136{
4137 int i;
4138 int pad = bytes - sizeof(u64) * items;
4139 BUG_ON(pad < 0);
4140
4141 /* Use put_unaligned() because stats may not be aligned for u64. */
4142 put_unaligned(items, &stats[0]);
4143 for (i = 1; i < items; i++)
Eric Dumazetbe281e52011-05-19 01:14:23 +00004144 put_unaligned(atomic_long_read(&mib[i]), &stats[i]);
Herbert Xu7f7d9a62007-04-24 21:54:09 -07004145
4146 memset(&stats[items], 0, pad);
4147}
4148
Eric Dumazet4ce3c182010-06-30 13:31:19 -07004149static inline void __snmp6_fill_stats64(u64 *stats, void __percpu **mib,
4150 int items, int bytes, size_t syncpoff)
4151{
4152 int i;
4153 int pad = bytes - sizeof(u64) * items;
4154 BUG_ON(pad < 0);
4155
4156 /* Use put_unaligned() because stats may not be aligned for u64. */
4157 put_unaligned(items, &stats[0]);
4158 for (i = 1; i < items; i++)
4159 put_unaligned(snmp_fold_field64(mib, i, syncpoff), &stats[i]);
4160
4161 memset(&stats[items], 0, pad);
4162}
4163
Herbert Xu7f7d9a62007-04-24 21:54:09 -07004164static void snmp6_fill_stats(u64 *stats, struct inet6_dev *idev, int attrtype,
4165 int bytes)
4166{
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004167 switch (attrtype) {
Herbert Xu7f7d9a62007-04-24 21:54:09 -07004168 case IFLA_INET6_STATS:
Eric Dumazet4ce3c182010-06-30 13:31:19 -07004169 __snmp6_fill_stats64(stats, (void __percpu **)idev->stats.ipv6,
4170 IPSTATS_MIB_MAX, bytes, offsetof(struct ipstats_mib, syncp));
Herbert Xu7f7d9a62007-04-24 21:54:09 -07004171 break;
4172 case IFLA_INET6_ICMP6STATS:
Eric Dumazetbe281e52011-05-19 01:14:23 +00004173 __snmp6_fill_statsdev(stats, idev->stats.icmpv6dev->mibs, ICMP6_MIB_MAX, bytes);
Herbert Xu7f7d9a62007-04-24 21:54:09 -07004174 break;
4175 }
4176}
4177
Thomas Grafb382b192010-11-16 04:33:57 +00004178static int inet6_fill_ifla6_attrs(struct sk_buff *skb, struct inet6_dev *idev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004179{
YOSHIFUJI Hideakibf99f1b2007-04-20 15:56:20 -07004180 struct nlattr *nla;
Thomas Graf04561c12006-11-14 19:53:58 -08004181 struct ifla_cacheinfo ci;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004182
David S. Millerc78679e2012-04-01 20:27:33 -04004183 if (nla_put_u32(skb, IFLA_INET6_FLAGS, idev->if_flags))
4184 goto nla_put_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004185 ci.max_reasm_len = IPV6_MAXPLEN;
David S. Miller24912422010-11-19 13:13:47 -08004186 ci.tstamp = cstamp_delta(idev->tstamp);
4187 ci.reachable_time = jiffies_to_msecs(idev->nd_parms->reachable_time);
4188 ci.retrans_time = jiffies_to_msecs(idev->nd_parms->retrans_time);
David S. Millerc78679e2012-04-01 20:27:33 -04004189 if (nla_put(skb, IFLA_INET6_CACHEINFO, sizeof(ci), &ci))
4190 goto nla_put_failure;
YOSHIFUJI Hideakibf99f1b2007-04-20 15:56:20 -07004191 nla = nla_reserve(skb, IFLA_INET6_CONF, DEVCONF_MAX * sizeof(s32));
4192 if (nla == NULL)
Thomas Graf04561c12006-11-14 19:53:58 -08004193 goto nla_put_failure;
YOSHIFUJI Hideakibf99f1b2007-04-20 15:56:20 -07004194 ipv6_store_devconf(&idev->cnf, nla_data(nla), nla_len(nla));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004195
YOSHIFUJI Hideakibf99f1b2007-04-20 15:56:20 -07004196 /* XXX - MC not implemented */
4197
4198 nla = nla_reserve(skb, IFLA_INET6_STATS, IPSTATS_MIB_MAX * sizeof(u64));
4199 if (nla == NULL)
4200 goto nla_put_failure;
4201 snmp6_fill_stats(nla_data(nla), idev, IFLA_INET6_STATS, nla_len(nla));
4202
4203 nla = nla_reserve(skb, IFLA_INET6_ICMP6STATS, ICMP6_MIB_MAX * sizeof(u64));
4204 if (nla == NULL)
4205 goto nla_put_failure;
4206 snmp6_fill_stats(nla_data(nla), idev, IFLA_INET6_ICMP6STATS, nla_len(nla));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004207
Daniel Borkmannf53adae2013-04-08 04:01:30 +00004208 nla = nla_reserve(skb, IFLA_INET6_TOKEN, sizeof(struct in6_addr));
4209 if (nla == NULL)
4210 goto nla_put_failure;
4211 read_lock_bh(&idev->lock);
4212 memcpy(nla_data(nla), idev->token.s6_addr, nla_len(nla));
4213 read_unlock_bh(&idev->lock);
4214
Thomas Grafb382b192010-11-16 04:33:57 +00004215 return 0;
4216
4217nla_put_failure:
4218 return -EMSGSIZE;
4219}
4220
4221static size_t inet6_get_link_af_size(const struct net_device *dev)
4222{
4223 if (!__in6_dev_get(dev))
4224 return 0;
4225
4226 return inet6_ifla6_size();
4227}
4228
4229static int inet6_fill_link_af(struct sk_buff *skb, const struct net_device *dev)
4230{
4231 struct inet6_dev *idev = __in6_dev_get(dev);
4232
4233 if (!idev)
4234 return -ENODATA;
4235
4236 if (inet6_fill_ifla6_attrs(skb, idev) < 0)
4237 return -EMSGSIZE;
4238
4239 return 0;
4240}
4241
Daniel Borkmannf53adae2013-04-08 04:01:30 +00004242static int inet6_set_iftoken(struct inet6_dev *idev, struct in6_addr *token)
4243{
Daniel Borkmannf53adae2013-04-08 04:01:30 +00004244 struct inet6_ifaddr *ifp;
4245 struct net_device *dev = idev->dev;
Daniel Borkmannfc403832013-04-09 03:47:15 +00004246 bool update_rs = false;
Hannes Frederic Sowadc848292013-06-24 21:42:40 +02004247 struct in6_addr ll_addr;
Daniel Borkmannf53adae2013-04-08 04:01:30 +00004248
4249 if (token == NULL)
4250 return -EINVAL;
4251 if (ipv6_addr_any(token))
4252 return -EINVAL;
4253 if (dev->flags & (IFF_LOOPBACK | IFF_NOARP))
4254 return -EINVAL;
Daniel Borkmannf53adae2013-04-08 04:01:30 +00004255 if (!ipv6_accept_ra(idev))
4256 return -EINVAL;
4257 if (idev->cnf.rtr_solicits <= 0)
4258 return -EINVAL;
4259
4260 write_lock_bh(&idev->lock);
4261
4262 BUILD_BUG_ON(sizeof(token->s6_addr) != 16);
4263 memcpy(idev->token.s6_addr + 8, token->s6_addr + 8, 8);
4264
4265 write_unlock_bh(&idev->lock);
4266
Hannes Frederic Sowadc848292013-06-24 21:42:40 +02004267 if (!idev->dead && (idev->if_flags & IF_READY) &&
4268 !ipv6_get_lladdr(dev, &ll_addr, IFA_F_TENTATIVE |
4269 IFA_F_OPTIMISTIC)) {
Daniel Borkmannfc403832013-04-09 03:47:15 +00004270
4271 /* If we're not ready, then normal ifup will take care
4272 * of this. Otherwise, we need to request our rs here.
4273 */
4274 ndisc_send_rs(dev, &ll_addr, &in6addr_linklocal_allrouters);
4275 update_rs = true;
4276 }
Daniel Borkmannf53adae2013-04-08 04:01:30 +00004277
4278 write_lock_bh(&idev->lock);
Daniel Borkmannfc403832013-04-09 03:47:15 +00004279
Hannes Frederic Sowa77ecaac2013-06-26 03:41:49 +02004280 if (update_rs) {
Daniel Borkmannfc403832013-04-09 03:47:15 +00004281 idev->if_flags |= IF_RS_SENT;
Hannes Frederic Sowa77ecaac2013-06-26 03:41:49 +02004282 idev->rs_probes = 1;
4283 addrconf_mod_rs_timer(idev, idev->cnf.rtr_solicit_interval);
4284 }
Daniel Borkmannf53adae2013-04-08 04:01:30 +00004285
4286 /* Well, that's kinda nasty ... */
4287 list_for_each_entry(ifp, &idev->addr_list, if_list) {
4288 spin_lock(&ifp->lock);
Daniel Borkmann617fe292013-04-09 03:47:16 +00004289 if (ifp->tokenized) {
Daniel Borkmannf53adae2013-04-08 04:01:30 +00004290 ifp->valid_lft = 0;
4291 ifp->prefered_lft = 0;
4292 }
4293 spin_unlock(&ifp->lock);
4294 }
4295
4296 write_unlock_bh(&idev->lock);
Hannes Frederic Sowa2b9651d2013-06-24 22:03:28 +02004297 addrconf_verify(0);
Daniel Borkmannf53adae2013-04-08 04:01:30 +00004298 return 0;
4299}
4300
4301static int inet6_set_link_af(struct net_device *dev, const struct nlattr *nla)
4302{
4303 int err = -EINVAL;
4304 struct inet6_dev *idev = __in6_dev_get(dev);
4305 struct nlattr *tb[IFLA_INET6_MAX + 1];
4306
4307 if (!idev)
4308 return -EAFNOSUPPORT;
4309
4310 if (nla_parse_nested(tb, IFLA_INET6_MAX, nla, NULL) < 0)
4311 BUG();
4312
4313 if (tb[IFLA_INET6_TOKEN])
4314 err = inet6_set_iftoken(idev, nla_data(tb[IFLA_INET6_TOKEN]));
4315
4316 return err;
4317}
4318
Thomas Grafb382b192010-11-16 04:33:57 +00004319static int inet6_fill_ifinfo(struct sk_buff *skb, struct inet6_dev *idev,
Eric W. Biederman15e47302012-09-07 20:12:54 +00004320 u32 portid, u32 seq, int event, unsigned int flags)
Thomas Grafb382b192010-11-16 04:33:57 +00004321{
4322 struct net_device *dev = idev->dev;
4323 struct ifinfomsg *hdr;
4324 struct nlmsghdr *nlh;
4325 void *protoinfo;
4326
Eric W. Biederman15e47302012-09-07 20:12:54 +00004327 nlh = nlmsg_put(skb, portid, seq, event, sizeof(*hdr), flags);
Thomas Grafb382b192010-11-16 04:33:57 +00004328 if (nlh == NULL)
4329 return -EMSGSIZE;
4330
4331 hdr = nlmsg_data(nlh);
4332 hdr->ifi_family = AF_INET6;
4333 hdr->__ifi_pad = 0;
4334 hdr->ifi_type = dev->type;
4335 hdr->ifi_index = dev->ifindex;
4336 hdr->ifi_flags = dev_get_flags(dev);
4337 hdr->ifi_change = 0;
4338
David S. Millerc78679e2012-04-01 20:27:33 -04004339 if (nla_put_string(skb, IFLA_IFNAME, dev->name) ||
4340 (dev->addr_len &&
4341 nla_put(skb, IFLA_ADDRESS, dev->addr_len, dev->dev_addr)) ||
4342 nla_put_u32(skb, IFLA_MTU, dev->mtu) ||
4343 (dev->ifindex != dev->iflink &&
4344 nla_put_u32(skb, IFLA_LINK, dev->iflink)))
4345 goto nla_put_failure;
Thomas Grafb382b192010-11-16 04:33:57 +00004346 protoinfo = nla_nest_start(skb, IFLA_PROTINFO);
4347 if (protoinfo == NULL)
4348 goto nla_put_failure;
4349
4350 if (inet6_fill_ifla6_attrs(skb, idev) < 0)
4351 goto nla_put_failure;
4352
Thomas Graf04561c12006-11-14 19:53:58 -08004353 nla_nest_end(skb, protoinfo);
4354 return nlmsg_end(skb, nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004355
Thomas Graf04561c12006-11-14 19:53:58 -08004356nla_put_failure:
Patrick McHardy26932562007-01-31 23:16:40 -08004357 nlmsg_cancel(skb, nlh);
4358 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004359}
4360
4361static int inet6_dump_ifinfo(struct sk_buff *skb, struct netlink_callback *cb)
4362{
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09004363 struct net *net = sock_net(skb->sk);
Eric Dumazet84d26972009-11-09 12:11:28 +00004364 int h, s_h;
David S. Miller434a8a52009-11-11 18:53:00 -08004365 int idx = 0, s_idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004366 struct net_device *dev;
4367 struct inet6_dev *idev;
Eric Dumazet84d26972009-11-09 12:11:28 +00004368 struct hlist_head *head;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004369
Eric Dumazet84d26972009-11-09 12:11:28 +00004370 s_h = cb->args[0];
4371 s_idx = cb->args[1];
4372
4373 rcu_read_lock();
4374 for (h = s_h; h < NETDEV_HASHENTRIES; h++, s_idx = 0) {
4375 idx = 0;
4376 head = &net->dev_index_head[h];
Sasha Levinb67bfe02013-02-27 17:06:00 -08004377 hlist_for_each_entry_rcu(dev, head, index_hlist) {
Eric Dumazet84d26972009-11-09 12:11:28 +00004378 if (idx < s_idx)
4379 goto cont;
4380 idev = __in6_dev_get(dev);
4381 if (!idev)
4382 goto cont;
4383 if (inet6_fill_ifinfo(skb, idev,
Eric W. Biederman15e47302012-09-07 20:12:54 +00004384 NETLINK_CB(cb->skb).portid,
Eric Dumazet84d26972009-11-09 12:11:28 +00004385 cb->nlh->nlmsg_seq,
4386 RTM_NEWLINK, NLM_F_MULTI) <= 0)
4387 goto out;
Pavel Emelianov7562f872007-05-03 15:13:45 -07004388cont:
Eric Dumazet84d26972009-11-09 12:11:28 +00004389 idx++;
4390 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004391 }
Eric Dumazet84d26972009-11-09 12:11:28 +00004392out:
4393 rcu_read_unlock();
4394 cb->args[1] = idx;
4395 cb->args[0] = h;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004396
4397 return skb->len;
4398}
4399
4400void inet6_ifinfo_notify(int event, struct inet6_dev *idev)
4401{
4402 struct sk_buff *skb;
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09004403 struct net *net = dev_net(idev->dev);
Thomas Graf8d7a76c2006-08-15 00:35:47 -07004404 int err = -ENOBUFS;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09004405
Thomas Graf339bf982006-11-10 14:10:15 -08004406 skb = nlmsg_new(inet6_if_nlmsg_size(), GFP_ATOMIC);
Thomas Graf8d7a76c2006-08-15 00:35:47 -07004407 if (skb == NULL)
4408 goto errout;
4409
4410 err = inet6_fill_ifinfo(skb, idev, 0, 0, event, 0);
Patrick McHardy26932562007-01-31 23:16:40 -08004411 if (err < 0) {
4412 /* -EMSGSIZE implies BUG in inet6_if_nlmsg_size() */
4413 WARN_ON(err == -EMSGSIZE);
4414 kfree_skb(skb);
4415 goto errout;
4416 }
Nicolas Dichtel5f75a102010-12-07 23:38:31 +00004417 rtnl_notify(skb, net, 0, RTNLGRP_IPV6_IFINFO, NULL, GFP_ATOMIC);
Pablo Neira Ayuso1ce85fe2009-02-24 23:18:28 -08004418 return;
Thomas Graf8d7a76c2006-08-15 00:35:47 -07004419errout:
4420 if (err < 0)
Nicolas Dichtel5f75a102010-12-07 23:38:31 +00004421 rtnl_set_sk_err(net, RTNLGRP_IPV6_IFINFO, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004422}
4423
Thomas Graf339bf982006-11-10 14:10:15 -08004424static inline size_t inet6_prefix_nlmsg_size(void)
4425{
4426 return NLMSG_ALIGN(sizeof(struct prefixmsg))
4427 + nla_total_size(sizeof(struct in6_addr))
4428 + nla_total_size(sizeof(struct prefix_cacheinfo));
4429}
YOSHIFUJI Hideakic5396a32006-06-17 22:48:48 -07004430
Linus Torvalds1da177e2005-04-16 15:20:36 -07004431static int inet6_fill_prefix(struct sk_buff *skb, struct inet6_dev *idev,
Eric W. Biederman15e47302012-09-07 20:12:54 +00004432 struct prefix_info *pinfo, u32 portid, u32 seq,
Thomas Graf6051e2f2006-11-14 19:54:19 -08004433 int event, unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004434{
Thomas Graf6051e2f2006-11-14 19:54:19 -08004435 struct prefixmsg *pmsg;
4436 struct nlmsghdr *nlh;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004437 struct prefix_cacheinfo ci;
4438
Eric W. Biederman15e47302012-09-07 20:12:54 +00004439 nlh = nlmsg_put(skb, portid, seq, event, sizeof(*pmsg), flags);
Thomas Graf6051e2f2006-11-14 19:54:19 -08004440 if (nlh == NULL)
Patrick McHardy26932562007-01-31 23:16:40 -08004441 return -EMSGSIZE;
Thomas Graf6051e2f2006-11-14 19:54:19 -08004442
4443 pmsg = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004444 pmsg->prefix_family = AF_INET6;
Patrick McHardy8a470772005-06-28 12:56:45 -07004445 pmsg->prefix_pad1 = 0;
4446 pmsg->prefix_pad2 = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004447 pmsg->prefix_ifindex = idev->dev->ifindex;
4448 pmsg->prefix_len = pinfo->prefix_len;
4449 pmsg->prefix_type = pinfo->type;
Patrick McHardy8a470772005-06-28 12:56:45 -07004450 pmsg->prefix_pad3 = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004451 pmsg->prefix_flags = 0;
4452 if (pinfo->onlink)
4453 pmsg->prefix_flags |= IF_PREFIX_ONLINK;
4454 if (pinfo->autoconf)
4455 pmsg->prefix_flags |= IF_PREFIX_AUTOCONF;
4456
David S. Millerc78679e2012-04-01 20:27:33 -04004457 if (nla_put(skb, PREFIX_ADDRESS, sizeof(pinfo->prefix), &pinfo->prefix))
4458 goto nla_put_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004459 ci.preferred_time = ntohl(pinfo->prefered);
4460 ci.valid_time = ntohl(pinfo->valid);
David S. Millerc78679e2012-04-01 20:27:33 -04004461 if (nla_put(skb, PREFIX_CACHEINFO, sizeof(ci), &ci))
4462 goto nla_put_failure;
Thomas Graf6051e2f2006-11-14 19:54:19 -08004463 return nlmsg_end(skb, nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004464
Thomas Graf6051e2f2006-11-14 19:54:19 -08004465nla_put_failure:
Patrick McHardy26932562007-01-31 23:16:40 -08004466 nlmsg_cancel(skb, nlh);
4467 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004468}
4469
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09004470static void inet6_prefix_notify(int event, struct inet6_dev *idev,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004471 struct prefix_info *pinfo)
4472{
4473 struct sk_buff *skb;
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09004474 struct net *net = dev_net(idev->dev);
Thomas Graf8c384bfa2006-08-15 00:36:07 -07004475 int err = -ENOBUFS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004476
Thomas Graf339bf982006-11-10 14:10:15 -08004477 skb = nlmsg_new(inet6_prefix_nlmsg_size(), GFP_ATOMIC);
Thomas Graf8c384bfa2006-08-15 00:36:07 -07004478 if (skb == NULL)
4479 goto errout;
4480
4481 err = inet6_fill_prefix(skb, idev, pinfo, 0, 0, event, 0);
Patrick McHardy26932562007-01-31 23:16:40 -08004482 if (err < 0) {
4483 /* -EMSGSIZE implies BUG in inet6_prefix_nlmsg_size() */
4484 WARN_ON(err == -EMSGSIZE);
4485 kfree_skb(skb);
4486 goto errout;
4487 }
Pablo Neira Ayuso1ce85fe2009-02-24 23:18:28 -08004488 rtnl_notify(skb, net, 0, RTNLGRP_IPV6_PREFIX, NULL, GFP_ATOMIC);
4489 return;
Thomas Graf8c384bfa2006-08-15 00:36:07 -07004490errout:
4491 if (err < 0)
Benjamin Thery6fda7352008-03-05 10:47:47 -08004492 rtnl_set_sk_err(net, RTNLGRP_IPV6_PREFIX, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004493}
4494
Hannes Frederic Sowa1ec047e2013-06-27 00:06:56 +02004495static void update_valid_ll_addr_cnt(struct inet6_ifaddr *ifp, int count)
4496{
4497 write_lock_bh(&ifp->idev->lock);
4498 spin_lock(&ifp->lock);
4499 if (((ifp->flags & (IFA_F_PERMANENT|IFA_F_TENTATIVE|IFA_F_OPTIMISTIC|
4500 IFA_F_DADFAILED)) == IFA_F_PERMANENT) &&
4501 (ipv6_addr_type(&ifp->addr) & IPV6_ADDR_LINKLOCAL))
4502 ifp->idev->valid_ll_addr_cnt += count;
4503 WARN_ON(ifp->idev->valid_ll_addr_cnt < 0);
4504 spin_unlock(&ifp->lock);
4505 write_unlock_bh(&ifp->idev->lock);
4506}
4507
Linus Torvalds1da177e2005-04-16 15:20:36 -07004508static void __ipv6_ifa_notify(int event, struct inet6_ifaddr *ifp)
4509{
Nicolas Dichtel63998ac2013-03-22 06:28:43 +00004510 struct net *net = dev_net(ifp->idev->dev);
4511
Linus Torvalds1da177e2005-04-16 15:20:36 -07004512 inet6_ifa_notify(event ? : RTM_NEWADDR, ifp);
4513
4514 switch (event) {
4515 case RTM_NEWADDR:
Hannes Frederic Sowa1ec047e2013-06-27 00:06:56 +02004516 update_valid_ll_addr_cnt(ifp, 1);
4517
Neil Horman95c385b2007-04-25 17:08:10 -07004518 /*
4519 * If the address was optimistic
4520 * we inserted the route at the start of
4521 * our DAD process, so we don't need
4522 * to do it again
4523 */
4524 if (!(ifp->rt->rt6i_node))
4525 ip6_ins_rt(ifp->rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004526 if (ifp->idev->cnf.forwarding)
4527 addrconf_join_anycast(ifp);
Cong Wang7996c792013-05-22 05:41:06 +00004528 if (!ipv6_addr_any(&ifp->peer_addr))
Nicolas Dichtelcaeaba72013-05-16 22:32:00 +00004529 addrconf_prefix_route(&ifp->peer_addr, 128,
4530 ifp->idev->dev, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004531 break;
4532 case RTM_DELADDR:
Hannes Frederic Sowa1ec047e2013-06-27 00:06:56 +02004533 update_valid_ll_addr_cnt(ifp, -1);
4534
Linus Torvalds1da177e2005-04-16 15:20:36 -07004535 if (ifp->idev->cnf.forwarding)
4536 addrconf_leave_anycast(ifp);
4537 addrconf_leave_solict(ifp->idev, &ifp->addr);
Cong Wang7996c792013-05-22 05:41:06 +00004538 if (!ipv6_addr_any(&ifp->peer_addr)) {
Nicolas Dichtelcaeaba72013-05-16 22:32:00 +00004539 struct rt6_info *rt;
4540 struct net_device *dev = ifp->idev->dev;
4541
4542 rt = rt6_lookup(dev_net(dev), &ifp->peer_addr, NULL,
4543 dev->ifindex, 1);
4544 if (rt) {
4545 dst_hold(&rt->dst);
4546 if (ip6_del_rt(rt))
4547 dst_free(&rt->dst);
4548 }
4549 }
Changli Gaod8d1f302010-06-10 23:31:35 -07004550 dst_hold(&ifp->rt->dst);
stephen hemminger93fa1592010-04-12 05:41:31 +00004551
David S. Miller73a8bd72011-01-23 23:27:15 -08004552 if (ip6_del_rt(ifp->rt))
Changli Gaod8d1f302010-06-10 23:31:35 -07004553 dst_free(&ifp->rt->dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004554 break;
4555 }
Nicolas Dichtel63998ac2013-03-22 06:28:43 +00004556 atomic_inc(&net->ipv6.dev_addr_genid);
fan.du439677d2013-08-01 17:44:44 +08004557 rt_genid_bump_ipv6(net);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004558}
4559
4560static void ipv6_ifa_notify(int event, struct inet6_ifaddr *ifp)
4561{
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -07004562 rcu_read_lock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004563 if (likely(ifp->idev->dead == 0))
4564 __ipv6_ifa_notify(event, ifp);
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -07004565 rcu_read_unlock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004566}
4567
4568#ifdef CONFIG_SYSCTL
4569
4570static
Joe Perchesfe2c6332013-06-11 23:04:25 -07004571int addrconf_sysctl_forward(struct ctl_table *ctl, int write,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004572 void __user *buffer, size_t *lenp, loff_t *ppos)
4573{
4574 int *valp = ctl->data;
4575 int val = *valp;
Eric W. Biederman88af1822010-02-19 13:22:59 +00004576 loff_t pos = *ppos;
Joe Perchesfe2c6332013-06-11 23:04:25 -07004577 struct ctl_table lctl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004578 int ret;
4579
Francesco Ruggeri013d97e2012-01-16 10:40:10 +00004580 /*
4581 * ctl->data points to idev->cnf.forwarding, we should
4582 * not modify it until we get the rtnl lock.
4583 */
4584 lctl = *ctl;
4585 lctl.data = &val;
4586
4587 ret = proc_dointvec(&lctl, write, buffer, lenp, ppos);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004588
Pavel Emelyanovc8fecf22007-12-05 01:50:24 -08004589 if (write)
Stephen Hemmingerb325fdd2009-02-26 06:55:31 +00004590 ret = addrconf_fixup_forwarding(ctl, valp, val);
Eric W. Biederman88af1822010-02-19 13:22:59 +00004591 if (ret)
4592 *ppos = pos;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09004593 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004594}
4595
Brian Haley56d417b2009-06-01 03:07:33 -07004596static void dev_disable_change(struct inet6_dev *idev)
4597{
Cong Wang75538c22013-05-29 11:30:50 +08004598 struct netdev_notifier_info info;
4599
Brian Haley56d417b2009-06-01 03:07:33 -07004600 if (!idev || !idev->dev)
4601 return;
4602
Cong Wang75538c22013-05-29 11:30:50 +08004603 netdev_notifier_info_init(&info, idev->dev);
Brian Haley56d417b2009-06-01 03:07:33 -07004604 if (idev->cnf.disable_ipv6)
Cong Wang75538c22013-05-29 11:30:50 +08004605 addrconf_notify(NULL, NETDEV_DOWN, &info);
Brian Haley56d417b2009-06-01 03:07:33 -07004606 else
Cong Wang75538c22013-05-29 11:30:50 +08004607 addrconf_notify(NULL, NETDEV_UP, &info);
Brian Haley56d417b2009-06-01 03:07:33 -07004608}
4609
4610static void addrconf_disable_change(struct net *net, __s32 newf)
4611{
4612 struct net_device *dev;
4613 struct inet6_dev *idev;
4614
Eric Dumazetc6d14c82009-11-04 05:43:23 -08004615 rcu_read_lock();
4616 for_each_netdev_rcu(net, dev) {
Brian Haley56d417b2009-06-01 03:07:33 -07004617 idev = __in6_dev_get(dev);
4618 if (idev) {
4619 int changed = (!idev->cnf.disable_ipv6) ^ (!newf);
4620 idev->cnf.disable_ipv6 = newf;
4621 if (changed)
4622 dev_disable_change(idev);
4623 }
Brian Haley56d417b2009-06-01 03:07:33 -07004624 }
Eric Dumazetc6d14c82009-11-04 05:43:23 -08004625 rcu_read_unlock();
Brian Haley56d417b2009-06-01 03:07:33 -07004626}
4627
Francesco Ruggeri013d97e2012-01-16 10:40:10 +00004628static int addrconf_disable_ipv6(struct ctl_table *table, int *p, int newf)
Brian Haley56d417b2009-06-01 03:07:33 -07004629{
4630 struct net *net;
Francesco Ruggeri013d97e2012-01-16 10:40:10 +00004631 int old;
4632
4633 if (!rtnl_trylock())
4634 return restart_syscall();
Brian Haley56d417b2009-06-01 03:07:33 -07004635
4636 net = (struct net *)table->extra2;
Francesco Ruggeri013d97e2012-01-16 10:40:10 +00004637 old = *p;
4638 *p = newf;
Brian Haley56d417b2009-06-01 03:07:33 -07004639
Francesco Ruggeri013d97e2012-01-16 10:40:10 +00004640 if (p == &net->ipv6.devconf_dflt->disable_ipv6) {
4641 rtnl_unlock();
Brian Haley56d417b2009-06-01 03:07:33 -07004642 return 0;
Eric W. Biederman88af1822010-02-19 13:22:59 +00004643 }
Brian Haley56d417b2009-06-01 03:07:33 -07004644
4645 if (p == &net->ipv6.devconf_all->disable_ipv6) {
Brian Haley56d417b2009-06-01 03:07:33 -07004646 net->ipv6.devconf_dflt->disable_ipv6 = newf;
4647 addrconf_disable_change(net, newf);
Francesco Ruggeri013d97e2012-01-16 10:40:10 +00004648 } else if ((!newf) ^ (!old))
Brian Haley56d417b2009-06-01 03:07:33 -07004649 dev_disable_change((struct inet6_dev *)table->extra1);
4650
4651 rtnl_unlock();
4652 return 0;
4653}
4654
4655static
Joe Perchesfe2c6332013-06-11 23:04:25 -07004656int addrconf_sysctl_disable(struct ctl_table *ctl, int write,
Brian Haley56d417b2009-06-01 03:07:33 -07004657 void __user *buffer, size_t *lenp, loff_t *ppos)
4658{
4659 int *valp = ctl->data;
4660 int val = *valp;
Eric W. Biederman88af1822010-02-19 13:22:59 +00004661 loff_t pos = *ppos;
Joe Perchesfe2c6332013-06-11 23:04:25 -07004662 struct ctl_table lctl;
Brian Haley56d417b2009-06-01 03:07:33 -07004663 int ret;
4664
Francesco Ruggeri013d97e2012-01-16 10:40:10 +00004665 /*
4666 * ctl->data points to idev->cnf.disable_ipv6, we should
4667 * not modify it until we get the rtnl lock.
4668 */
4669 lctl = *ctl;
4670 lctl.data = &val;
4671
4672 ret = proc_dointvec(&lctl, write, buffer, lenp, ppos);
Brian Haley56d417b2009-06-01 03:07:33 -07004673
4674 if (write)
4675 ret = addrconf_disable_ipv6(ctl, valp, val);
Eric W. Biederman88af1822010-02-19 13:22:59 +00004676 if (ret)
4677 *ppos = pos;
Brian Haley56d417b2009-06-01 03:07:33 -07004678 return ret;
4679}
4680
Linus Torvalds1da177e2005-04-16 15:20:36 -07004681static struct addrconf_sysctl_table
4682{
4683 struct ctl_table_header *sysctl_header;
Joe Perchesfe2c6332013-06-11 23:04:25 -07004684 struct ctl_table addrconf_vars[DEVCONF_MAX+1];
Brian Haleyab32ea52006-09-22 14:15:41 -07004685} addrconf_sysctl __read_mostly = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004686 .sysctl_header = NULL,
4687 .addrconf_vars = {
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09004688 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004689 .procname = "forwarding",
4690 .data = &ipv6_devconf.forwarding,
4691 .maxlen = sizeof(int),
4692 .mode = 0644,
4693 .proc_handler = addrconf_sysctl_forward,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004694 },
4695 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004696 .procname = "hop_limit",
4697 .data = &ipv6_devconf.hop_limit,
4698 .maxlen = sizeof(int),
4699 .mode = 0644,
4700 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004701 },
4702 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004703 .procname = "mtu",
4704 .data = &ipv6_devconf.mtu6,
4705 .maxlen = sizeof(int),
4706 .mode = 0644,
4707 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004708 },
4709 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004710 .procname = "accept_ra",
4711 .data = &ipv6_devconf.accept_ra,
4712 .maxlen = sizeof(int),
4713 .mode = 0644,
4714 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004715 },
4716 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004717 .procname = "accept_redirects",
4718 .data = &ipv6_devconf.accept_redirects,
4719 .maxlen = sizeof(int),
4720 .mode = 0644,
4721 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004722 },
4723 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004724 .procname = "autoconf",
4725 .data = &ipv6_devconf.autoconf,
4726 .maxlen = sizeof(int),
4727 .mode = 0644,
4728 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004729 },
4730 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004731 .procname = "dad_transmits",
4732 .data = &ipv6_devconf.dad_transmits,
4733 .maxlen = sizeof(int),
4734 .mode = 0644,
4735 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004736 },
4737 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004738 .procname = "router_solicitations",
4739 .data = &ipv6_devconf.rtr_solicits,
4740 .maxlen = sizeof(int),
4741 .mode = 0644,
4742 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004743 },
4744 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004745 .procname = "router_solicitation_interval",
4746 .data = &ipv6_devconf.rtr_solicit_interval,
4747 .maxlen = sizeof(int),
4748 .mode = 0644,
4749 .proc_handler = proc_dointvec_jiffies,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004750 },
4751 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004752 .procname = "router_solicitation_delay",
4753 .data = &ipv6_devconf.rtr_solicit_delay,
4754 .maxlen = sizeof(int),
4755 .mode = 0644,
4756 .proc_handler = proc_dointvec_jiffies,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004757 },
4758 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004759 .procname = "force_mld_version",
4760 .data = &ipv6_devconf.force_mld_version,
4761 .maxlen = sizeof(int),
4762 .mode = 0644,
4763 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004764 },
Hannes Frederic Sowafc4eba52013-08-14 01:03:46 +02004765 {
4766 .procname = "mldv1_unsolicited_report_interval",
4767 .data =
4768 &ipv6_devconf.mldv1_unsolicited_report_interval,
4769 .maxlen = sizeof(int),
4770 .mode = 0644,
4771 .proc_handler = proc_dointvec_ms_jiffies,
4772 },
4773 {
4774 .procname = "mldv2_unsolicited_report_interval",
4775 .data =
4776 &ipv6_devconf.mldv2_unsolicited_report_interval,
4777 .maxlen = sizeof(int),
4778 .mode = 0644,
4779 .proc_handler = proc_dointvec_ms_jiffies,
4780 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07004781 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004782 .procname = "use_tempaddr",
4783 .data = &ipv6_devconf.use_tempaddr,
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 = "temp_valid_lft",
4790 .data = &ipv6_devconf.temp_valid_lft,
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 = "temp_prefered_lft",
4797 .data = &ipv6_devconf.temp_prefered_lft,
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 = "regen_max_retry",
4804 .data = &ipv6_devconf.regen_max_retry,
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 = "max_desync_factor",
4811 .data = &ipv6_devconf.max_desync_factor,
4812 .maxlen = sizeof(int),
4813 .mode = 0644,
4814 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004815 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07004816 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004817 .procname = "max_addresses",
4818 .data = &ipv6_devconf.max_addresses,
4819 .maxlen = sizeof(int),
4820 .mode = 0644,
4821 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004822 },
4823 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004824 .procname = "accept_ra_defrtr",
4825 .data = &ipv6_devconf.accept_ra_defrtr,
4826 .maxlen = sizeof(int),
4827 .mode = 0644,
4828 .proc_handler = proc_dointvec,
YOSHIFUJI Hideaki65f5c7c2006-03-20 16:55:08 -08004829 },
4830 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004831 .procname = "accept_ra_pinfo",
4832 .data = &ipv6_devconf.accept_ra_pinfo,
4833 .maxlen = sizeof(int),
4834 .mode = 0644,
4835 .proc_handler = proc_dointvec,
YOSHIFUJI Hideakic4fd30e2006-03-20 16:55:26 -08004836 },
YOSHIFUJI Hideaki930d6ff2006-03-20 17:05:30 -08004837#ifdef CONFIG_IPV6_ROUTER_PREF
4838 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004839 .procname = "accept_ra_rtr_pref",
4840 .data = &ipv6_devconf.accept_ra_rtr_pref,
4841 .maxlen = sizeof(int),
4842 .mode = 0644,
4843 .proc_handler = proc_dointvec,
YOSHIFUJI Hideaki930d6ff2006-03-20 17:05:30 -08004844 },
YOSHIFUJI Hideaki52e16352006-03-20 17:05:47 -08004845 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004846 .procname = "router_probe_interval",
4847 .data = &ipv6_devconf.rtr_probe_interval,
4848 .maxlen = sizeof(int),
4849 .mode = 0644,
4850 .proc_handler = proc_dointvec_jiffies,
YOSHIFUJI Hideaki52e16352006-03-20 17:05:47 -08004851 },
Neil Hormanfa03ef32007-01-30 14:30:10 -08004852#ifdef CONFIG_IPV6_ROUTE_INFO
YOSHIFUJI Hideaki09c884d2006-03-20 17:07:03 -08004853 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004854 .procname = "accept_ra_rt_info_max_plen",
4855 .data = &ipv6_devconf.accept_ra_rt_info_max_plen,
4856 .maxlen = sizeof(int),
4857 .mode = 0644,
4858 .proc_handler = proc_dointvec,
YOSHIFUJI Hideaki09c884d2006-03-20 17:07:03 -08004859 },
4860#endif
YOSHIFUJI Hideaki930d6ff2006-03-20 17:05:30 -08004861#endif
YOSHIFUJI Hideakic4fd30e2006-03-20 16:55:26 -08004862 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004863 .procname = "proxy_ndp",
4864 .data = &ipv6_devconf.proxy_ndp,
4865 .maxlen = sizeof(int),
4866 .mode = 0644,
4867 .proc_handler = proc_dointvec,
YOSHIFUJI Hideakifbea49e2006-09-22 14:43:49 -07004868 },
4869 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004870 .procname = "accept_source_route",
4871 .data = &ipv6_devconf.accept_source_route,
4872 .maxlen = sizeof(int),
4873 .mode = 0644,
4874 .proc_handler = proc_dointvec,
YOSHIFUJI Hideaki0bcbc922007-04-24 14:58:30 -07004875 },
Neil Horman95c385b2007-04-25 17:08:10 -07004876#ifdef CONFIG_IPV6_OPTIMISTIC_DAD
4877 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004878 .procname = "optimistic_dad",
4879 .data = &ipv6_devconf.optimistic_dad,
4880 .maxlen = sizeof(int),
4881 .mode = 0644,
4882 .proc_handler = proc_dointvec,
Neil Horman95c385b2007-04-25 17:08:10 -07004883
4884 },
4885#endif
YOSHIFUJI Hideaki7bc570c2008-04-03 09:22:53 +09004886#ifdef CONFIG_IPV6_MROUTE
4887 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004888 .procname = "mc_forwarding",
4889 .data = &ipv6_devconf.mc_forwarding,
4890 .maxlen = sizeof(int),
4891 .mode = 0444,
4892 .proc_handler = proc_dointvec,
YOSHIFUJI Hideaki7bc570c2008-04-03 09:22:53 +09004893 },
4894#endif
YOSHIFUJI Hideaki0bcbc922007-04-24 14:58:30 -07004895 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004896 .procname = "disable_ipv6",
4897 .data = &ipv6_devconf.disable_ipv6,
4898 .maxlen = sizeof(int),
4899 .mode = 0644,
4900 .proc_handler = addrconf_sysctl_disable,
YOSHIFUJI Hideaki778d80b2008-06-28 14:17:11 +09004901 },
4902 {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004903 .procname = "accept_dad",
4904 .data = &ipv6_devconf.accept_dad,
4905 .maxlen = sizeof(int),
4906 .mode = 0644,
4907 .proc_handler = proc_dointvec,
YOSHIFUJI Hideaki1b34be72008-06-28 14:18:38 +09004908 },
4909 {
Octavian Purdilaf7734fd2009-10-02 11:39:15 +00004910 .procname = "force_tllao",
4911 .data = &ipv6_devconf.force_tllao,
4912 .maxlen = sizeof(int),
4913 .mode = 0644,
4914 .proc_handler = proc_dointvec
4915 },
4916 {
Hannes Frederic Sowa5cb04432012-11-06 16:46:20 +00004917 .procname = "ndisc_notify",
4918 .data = &ipv6_devconf.ndisc_notify,
4919 .maxlen = sizeof(int),
4920 .mode = 0644,
4921 .proc_handler = proc_dointvec
4922 },
4923 {
Hannes Frederic Sowab800c3b2013-08-27 01:36:51 +02004924 .procname = "suppress_frag_ndisc",
4925 .data = &ipv6_devconf.suppress_frag_ndisc,
4926 .maxlen = sizeof(int),
4927 .mode = 0644,
4928 .proc_handler = proc_dointvec
4929 },
4930 {
Eric W. Biedermanf8572d82009-11-05 13:32:03 -08004931 /* sentinel */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004932 }
4933 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07004934};
4935
Pavel Emelyanovbff16c22008-01-10 17:42:13 -08004936static int __addrconf_sysctl_register(struct net *net, char *dev_name,
Eric W. Biedermanf8572d82009-11-05 13:32:03 -08004937 struct inet6_dev *idev, struct ipv6_devconf *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004938{
4939 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004940 struct addrconf_sysctl_table *t;
Eric W. Biederman6105e292012-04-19 13:41:24 +00004941 char path[sizeof("net/ipv6/conf/") + IFNAMSIZ];
Pavel Emelyanov1dab6222007-12-02 00:59:38 +11004942
Arnaldo Carvalho de Meloaf879cc2006-11-17 12:14:37 -02004943 t = kmemdup(&addrconf_sysctl, sizeof(*t), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004944 if (t == NULL)
Pavel Emelyanovf68635e2007-12-02 00:21:52 +11004945 goto out;
4946
Stephen Hemmingerbcdd5532010-03-20 16:08:18 -07004947 for (i = 0; t->addrconf_vars[i].data; i++) {
Stephen Hemmingere21e8462010-03-20 16:09:01 -07004948 t->addrconf_vars[i].data += (char *)p - (char *)&ipv6_devconf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004949 t->addrconf_vars[i].extra1 = idev; /* embedded; no ref */
Pavel Emelyanovbff16c22008-01-10 17:42:13 -08004950 t->addrconf_vars[i].extra2 = net;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004951 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004952
Eric W. Biederman6105e292012-04-19 13:41:24 +00004953 snprintf(path, sizeof(path), "net/ipv6/conf/%s", dev_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004954
Eric W. Biederman6105e292012-04-19 13:41:24 +00004955 t->sysctl_header = register_net_sysctl(net, path, t->addrconf_vars);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004956 if (t->sysctl_header == NULL)
Eric W. Biederman6105e292012-04-19 13:41:24 +00004957 goto free;
Pavel Emelyanovf68635e2007-12-02 00:21:52 +11004958
4959 p->sysctl = t;
Pavel Emelyanov95897312008-01-10 17:41:45 -08004960 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004961
Pavel Emelyanovf68635e2007-12-02 00:21:52 +11004962free:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004963 kfree(t);
Pavel Emelyanovf68635e2007-12-02 00:21:52 +11004964out:
Pavel Emelyanov95897312008-01-10 17:41:45 -08004965 return -ENOBUFS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004966}
4967
Pavel Emelyanov408c4762008-01-10 17:41:21 -08004968static void __addrconf_sysctl_unregister(struct ipv6_devconf *p)
4969{
4970 struct addrconf_sysctl_table *t;
4971
4972 if (p->sysctl == NULL)
4973 return;
4974
4975 t = p->sysctl;
4976 p->sysctl = NULL;
Lucian Adrian Grijincuff538812011-05-01 01:44:01 +00004977 unregister_net_sysctl_table(t->sysctl_header);
Pavel Emelyanov408c4762008-01-10 17:41:21 -08004978 kfree(t);
4979}
4980
Pavel Emelyanovf52295a2007-12-02 00:58:37 +11004981static void addrconf_sysctl_register(struct inet6_dev *idev)
4982{
Eric W. Biederman54716e32010-02-14 03:27:03 +00004983 neigh_sysctl_register(idev->dev, idev->nd_parms, "ipv6",
Eric W. Biedermanf8572d82009-11-05 13:32:03 -08004984 &ndisc_ifinfo_sysctl_change);
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09004985 __addrconf_sysctl_register(dev_net(idev->dev), idev->dev->name,
Eric W. Biedermanf8572d82009-11-05 13:32:03 -08004986 idev, &idev->cnf);
Pavel Emelyanovf52295a2007-12-02 00:58:37 +11004987}
4988
Pavel Emelyanov408c4762008-01-10 17:41:21 -08004989static void addrconf_sysctl_unregister(struct inet6_dev *idev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004990{
Pavel Emelyanov408c4762008-01-10 17:41:21 -08004991 __addrconf_sysctl_unregister(&idev->cnf);
4992 neigh_sysctl_unregister(idev->nd_parms);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004993}
4994
4995
4996#endif
4997
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00004998static int __net_init addrconf_init_net(struct net *net)
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08004999{
Hong Zhiguoa79ca222013-03-26 01:52:45 +08005000 int err = -ENOMEM;
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08005001 struct ipv6_devconf *all, *dflt;
5002
Hong Zhiguoa79ca222013-03-26 01:52:45 +08005003 all = kmemdup(&ipv6_devconf, sizeof(ipv6_devconf), GFP_KERNEL);
5004 if (all == NULL)
5005 goto err_alloc_all;
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08005006
Hong Zhiguoa79ca222013-03-26 01:52:45 +08005007 dflt = kmemdup(&ipv6_devconf_dflt, sizeof(ipv6_devconf_dflt), GFP_KERNEL);
5008 if (dflt == NULL)
5009 goto err_alloc_dflt;
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08005010
Hong Zhiguoa79ca222013-03-26 01:52:45 +08005011 /* these will be inherited by all namespaces */
5012 dflt->autoconf = ipv6_defaults.autoconf;
5013 dflt->disable_ipv6 = ipv6_defaults.disable_ipv6;
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08005014
5015 net->ipv6.devconf_all = all;
5016 net->ipv6.devconf_dflt = dflt;
5017
5018#ifdef CONFIG_SYSCTL
Eric W. Biedermanf8572d82009-11-05 13:32:03 -08005019 err = __addrconf_sysctl_register(net, "all", NULL, all);
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08005020 if (err < 0)
5021 goto err_reg_all;
5022
Eric W. Biedermanf8572d82009-11-05 13:32:03 -08005023 err = __addrconf_sysctl_register(net, "default", NULL, dflt);
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08005024 if (err < 0)
5025 goto err_reg_dflt;
5026#endif
5027 return 0;
5028
5029#ifdef CONFIG_SYSCTL
5030err_reg_dflt:
5031 __addrconf_sysctl_unregister(all);
5032err_reg_all:
5033 kfree(dflt);
5034#endif
5035err_alloc_dflt:
5036 kfree(all);
5037err_alloc_all:
5038 return err;
5039}
5040
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00005041static void __net_exit addrconf_exit_net(struct net *net)
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08005042{
5043#ifdef CONFIG_SYSCTL
5044 __addrconf_sysctl_unregister(net->ipv6.devconf_dflt);
5045 __addrconf_sysctl_unregister(net->ipv6.devconf_all);
5046#endif
Octavian Purdila09ad9bc2009-11-25 15:14:13 -08005047 if (!net_eq(net, &init_net)) {
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08005048 kfree(net->ipv6.devconf_dflt);
5049 kfree(net->ipv6.devconf_all);
5050 }
5051}
5052
5053static struct pernet_operations addrconf_ops = {
5054 .init = addrconf_init_net,
5055 .exit = addrconf_exit_net,
5056};
5057
Thomas Grafb382b192010-11-16 04:33:57 +00005058static struct rtnl_af_ops inet6_ops = {
5059 .family = AF_INET6,
5060 .fill_link_af = inet6_fill_link_af,
5061 .get_link_af_size = inet6_get_link_af_size,
Daniel Borkmannf53adae2013-04-08 04:01:30 +00005062 .set_link_af = inet6_set_link_af,
Thomas Grafb382b192010-11-16 04:33:57 +00005063};
5064
Linus Torvalds1da177e2005-04-16 15:20:36 -07005065/*
5066 * Init / cleanup code
5067 */
5068
5069int __init addrconf_init(void)
5070{
stephen hemmingerc2e21292010-03-17 20:31:10 +00005071 int i, err;
YOSHIFUJI Hideaki2a8cc6c2007-11-14 15:56:23 +09005072
Stephen Hemmingere21e8462010-03-20 16:09:01 -07005073 err = ipv6_addr_label_init();
5074 if (err < 0) {
Joe Perchesf3213832012-05-15 14:11:53 +00005075 pr_crit("%s: cannot initialize default policy table: %d\n",
5076 __func__, err);
Neil Horman2cc6d2b2010-09-24 09:55:52 +00005077 goto out;
YOSHIFUJI Hideaki2a8cc6c2007-11-14 15:56:23 +09005078 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005079
Neil Horman2cc6d2b2010-09-24 09:55:52 +00005080 err = register_pernet_subsys(&addrconf_ops);
5081 if (err < 0)
5082 goto out_addrlabel;
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08005083
Linus Torvalds1da177e2005-04-16 15:20:36 -07005084 /* The addrconf netdev notifier requires that loopback_dev
5085 * has it's ipv6 private information allocated and setup
5086 * before it can bring up and give link-local addresses
5087 * to other devices which are up.
5088 *
5089 * Unfortunately, loopback_dev is not necessarily the first
5090 * entry in the global dev_base list of net devices. In fact,
5091 * it is likely to be the very last entry on that list.
5092 * So this causes the notifier registry below to try and
5093 * give link-local addresses to all devices besides loopback_dev
5094 * first, then loopback_dev, which cases all the non-loopback_dev
5095 * devices to fail to get a link-local address.
5096 *
5097 * So, as a temporary fix, allocate the ipv6 structure for
5098 * loopback_dev first by hand.
5099 * Longer term, all of the dependencies ipv6 has upon the loopback
5100 * device and it being up should be removed.
5101 */
5102 rtnl_lock();
Eric W. Biederman2774c7a2007-09-26 22:10:56 -07005103 if (!ipv6_add_dev(init_net.loopback_dev))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005104 err = -ENOMEM;
5105 rtnl_unlock();
5106 if (err)
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08005107 goto errlo;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005108
stephen hemmingerc2e21292010-03-17 20:31:10 +00005109 for (i = 0; i < IN6_ADDR_HSIZE; i++)
5110 INIT_HLIST_HEAD(&inet6_addr_lst[i]);
5111
Linus Torvalds1da177e2005-04-16 15:20:36 -07005112 register_netdevice_notifier(&ipv6_dev_notf);
5113
Linus Torvalds1da177e2005-04-16 15:20:36 -07005114 addrconf_verify(0);
Thomas Grafc127ea22007-03-22 11:58:32 -07005115
Thomas Grafb382b192010-11-16 04:33:57 +00005116 err = rtnl_af_register(&inet6_ops);
5117 if (err < 0)
5118 goto errout_af;
5119
Greg Rosec7ac8672011-06-10 01:27:09 +00005120 err = __rtnl_register(PF_INET6, RTM_GETLINK, NULL, inet6_dump_ifinfo,
5121 NULL);
Thomas Grafc127ea22007-03-22 11:58:32 -07005122 if (err < 0)
5123 goto errout;
5124
5125 /* Only the first call to __rtnl_register can fail */
Greg Rosec7ac8672011-06-10 01:27:09 +00005126 __rtnl_register(PF_INET6, RTM_NEWADDR, inet6_rtm_newaddr, NULL, NULL);
5127 __rtnl_register(PF_INET6, RTM_DELADDR, inet6_rtm_deladdr, NULL, NULL);
5128 __rtnl_register(PF_INET6, RTM_GETADDR, inet6_rtm_getaddr,
5129 inet6_dump_ifaddr, NULL);
5130 __rtnl_register(PF_INET6, RTM_GETMULTICAST, NULL,
5131 inet6_dump_ifmcaddr, NULL);
5132 __rtnl_register(PF_INET6, RTM_GETANYCAST, NULL,
5133 inet6_dump_ifacaddr, NULL);
Nicolas Dichtel76f8f6c2012-10-25 22:28:51 +00005134 __rtnl_register(PF_INET6, RTM_GETNETCONF, inet6_netconf_get_devconf,
Nicolas Dichtel7a674202013-03-05 23:42:06 +00005135 inet6_netconf_dump_devconf, NULL);
Thomas Grafc127ea22007-03-22 11:58:32 -07005136
YOSHIFUJI Hideaki2a8cc6c2007-11-14 15:56:23 +09005137 ipv6_addr_label_rtnl_register();
5138
Linus Torvalds1da177e2005-04-16 15:20:36 -07005139 return 0;
Thomas Grafc127ea22007-03-22 11:58:32 -07005140errout:
Thomas Grafb382b192010-11-16 04:33:57 +00005141 rtnl_af_unregister(&inet6_ops);
5142errout_af:
Thomas Grafc127ea22007-03-22 11:58:32 -07005143 unregister_netdevice_notifier(&ipv6_dev_notf);
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08005144errlo:
5145 unregister_pernet_subsys(&addrconf_ops);
Neil Horman2cc6d2b2010-09-24 09:55:52 +00005146out_addrlabel:
5147 ipv6_addr_label_cleanup();
5148out:
Thomas Grafc127ea22007-03-22 11:58:32 -07005149 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005150}
5151
Daniel Lezcano09f77092007-12-13 05:34:58 -08005152void addrconf_cleanup(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005153{
Daniel Lezcano176c39a2009-03-03 01:06:45 -08005154 struct net_device *dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005155 int i;
5156
5157 unregister_netdevice_notifier(&ipv6_dev_notf);
Pavel Emelyanove0da5a42008-01-10 17:42:55 -08005158 unregister_pernet_subsys(&addrconf_ops);
Neil Horman2cc6d2b2010-09-24 09:55:52 +00005159 ipv6_addr_label_cleanup();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005160
5161 rtnl_lock();
5162
Thomas Grafb382b192010-11-16 04:33:57 +00005163 __rtnl_af_unregister(&inet6_ops);
5164
Daniel Lezcano176c39a2009-03-03 01:06:45 -08005165 /* clean dev list */
5166 for_each_netdev(&init_net, dev) {
5167 if (__in6_dev_get(dev) == NULL)
5168 continue;
5169 addrconf_ifdown(dev, 1);
5170 }
5171 addrconf_ifdown(init_net.loopback_dev, 2);
5172
Linus Torvalds1da177e2005-04-16 15:20:36 -07005173 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005174 * Check hash table.
5175 */
stephen hemminger5c578ae2010-03-17 20:31:11 +00005176 spin_lock_bh(&addrconf_hash_lock);
stephen hemmingerc2e21292010-03-17 20:31:10 +00005177 for (i = 0; i < IN6_ADDR_HSIZE; i++)
5178 WARN_ON(!hlist_empty(&inet6_addr_lst[i]));
stephen hemminger5c578ae2010-03-17 20:31:11 +00005179 spin_unlock_bh(&addrconf_hash_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005180
5181 del_timer(&addr_chk_timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005182 rtnl_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005183}