]>
Commit | Line | Data |
---|---|---|
1da177e4 LT |
1 | /* |
2 | * IPv6 Address [auto]configuration | |
3 | * Linux INET6 implementation | |
4 | * | |
5 | * Authors: | |
1ab1457c | 6 | * Pedro Roque <[email protected]> |
1da177e4 LT |
7 | * Alexey Kuznetsov <[email protected]> |
8 | * | |
1da177e4 LT |
9 | * 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 | * <[email protected]> | |
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. | |
b1cacb68 YH |
36 | * YOSHIFUJI Hideaki @USAGI : improved source address |
37 | * selection; consider scope, | |
38 | * status etc. | |
1da177e4 LT |
39 | */ |
40 | ||
f3213831 JP |
41 | #define pr_fmt(fmt) "IPv6: " fmt |
42 | ||
1da177e4 LT |
43 | #include <linux/errno.h> |
44 | #include <linux/types.h> | |
a0bffffc | 45 | #include <linux/kernel.h> |
1da177e4 LT |
46 | #include <linux/socket.h> |
47 | #include <linux/sockios.h> | |
1da177e4 LT |
48 | #include <linux/net.h> |
49 | #include <linux/in6.h> | |
50 | #include <linux/netdevice.h> | |
1823730f | 51 | #include <linux/if_addr.h> |
1da177e4 LT |
52 | #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> | |
5a0e3ad6 | 58 | #include <linux/slab.h> |
1da177e4 LT |
59 | #ifdef CONFIG_SYSCTL |
60 | #include <linux/sysctl.h> | |
61 | #endif | |
4fc268d2 | 62 | #include <linux/capability.h> |
1da177e4 LT |
63 | #include <linux/delay.h> |
64 | #include <linux/notifier.h> | |
543537bd | 65 | #include <linux/string.h> |
ddbe5032 | 66 | #include <linux/hash.h> |
1da177e4 | 67 | |
457c4cbc | 68 | #include <net/net_namespace.h> |
1da177e4 LT |
69 | #include <net/sock.h> |
70 | #include <net/snmp.h> | |
71 | ||
06a4c1c5 | 72 | #include <net/af_ieee802154.h> |
1da177e4 LT |
73 | #include <net/ipv6.h> |
74 | #include <net/protocol.h> | |
75 | #include <net/ndisc.h> | |
76 | #include <net/ip6_route.h> | |
77 | #include <net/addrconf.h> | |
78 | #include <net/tcp.h> | |
79 | #include <net/ip.h> | |
5d620266 | 80 | #include <net/netlink.h> |
f24e3d65 | 81 | #include <net/pkt_sched.h> |
1da177e4 LT |
82 | #include <linux/if_tunnel.h> |
83 | #include <linux/rtnetlink.h> | |
f3a1bfb1 | 84 | #include <linux/netconf.h> |
1da177e4 LT |
85 | |
86 | #ifdef CONFIG_IPV6_PRIVACY | |
87 | #include <linux/random.h> | |
1da177e4 LT |
88 | #endif |
89 | ||
e21e8467 | 90 | #include <linux/uaccess.h> |
7f7d9a6b | 91 | #include <asm/unaligned.h> |
1da177e4 LT |
92 | |
93 | #include <linux/proc_fs.h> | |
94 | #include <linux/seq_file.h> | |
bc3b2d7f | 95 | #include <linux/export.h> |
1da177e4 LT |
96 | |
97 | /* Set to 3 to get tracing... */ | |
98 | #define ACONF_DEBUG 2 | |
99 | ||
100 | #if ACONF_DEBUG >= 3 | |
101 | #define ADBG(x) printk x | |
102 | #else | |
103 | #define ADBG(x) | |
104 | #endif | |
105 | ||
106 | #define INFINITY_LIFE_TIME 0xFFFFFFFF | |
18a31e1e TG |
107 | |
108 | static inline u32 cstamp_delta(unsigned long cstamp) | |
109 | { | |
110 | return (cstamp - INITIAL_JIFFIES) * 100UL / HZ; | |
111 | } | |
1da177e4 | 112 | |
b2db7564 YH |
113 | #define ADDRCONF_TIMER_FUZZ_MINUS (HZ > 50 ? HZ/50 : 1) |
114 | #define ADDRCONF_TIMER_FUZZ (HZ / 4) | |
115 | #define ADDRCONF_TIMER_FUZZ_MAX (HZ) | |
116 | ||
1da177e4 | 117 | #ifdef CONFIG_SYSCTL |
f52295a9 | 118 | static void addrconf_sysctl_register(struct inet6_dev *idev); |
408c4768 PE |
119 | static void addrconf_sysctl_unregister(struct inet6_dev *idev); |
120 | #else | |
121 | static inline void addrconf_sysctl_register(struct inet6_dev *idev) | |
122 | { | |
123 | } | |
124 | ||
125 | static inline void addrconf_sysctl_unregister(struct inet6_dev *idev) | |
126 | { | |
127 | } | |
1da177e4 LT |
128 | #endif |
129 | ||
130 | #ifdef CONFIG_IPV6_PRIVACY | |
eb7e0575 SD |
131 | static void __ipv6_regen_rndid(struct inet6_dev *idev); |
132 | static void __ipv6_try_regen_rndid(struct inet6_dev *idev, struct in6_addr *tmpaddr); | |
1da177e4 | 133 | static void ipv6_regen_rndid(unsigned long data); |
1da177e4 LT |
134 | #endif |
135 | ||
1b34be74 | 136 | static int ipv6_generate_eui64(u8 *eui, struct net_device *dev); |
1da177e4 LT |
137 | static int ipv6_count_addresses(struct inet6_dev *idev); |
138 | ||
139 | /* | |
140 | * Configured unicast address hash table | |
141 | */ | |
c2e21293 | 142 | static struct hlist_head inet6_addr_lst[IN6_ADDR_HSIZE]; |
5c578aed | 143 | static DEFINE_SPINLOCK(addrconf_hash_lock); |
1da177e4 | 144 | |
1da177e4 LT |
145 | static void addrconf_verify(unsigned long); |
146 | ||
8d06afab | 147 | static DEFINE_TIMER(addr_chk_timer, addrconf_verify, 0, 0); |
1da177e4 LT |
148 | static DEFINE_SPINLOCK(addrconf_verify_lock); |
149 | ||
150 | static void addrconf_join_anycast(struct inet6_ifaddr *ifp); | |
151 | static void addrconf_leave_anycast(struct inet6_ifaddr *ifp); | |
152 | ||
93d9b7d7 JP |
153 | static void addrconf_type_change(struct net_device *dev, |
154 | unsigned long event); | |
1da177e4 LT |
155 | static int addrconf_ifdown(struct net_device *dev, int how); |
156 | ||
cf22f9a2 | 157 | static void addrconf_dad_start(struct inet6_ifaddr *ifp); |
1da177e4 LT |
158 | static void addrconf_dad_timer(unsigned long data); |
159 | static void addrconf_dad_completed(struct inet6_ifaddr *ifp); | |
c5e33bdd | 160 | static void addrconf_dad_run(struct inet6_dev *idev); |
1da177e4 LT |
161 | static void addrconf_rs_timer(unsigned long data); |
162 | static void __ipv6_ifa_notify(int event, struct inet6_ifaddr *ifa); | |
163 | static void ipv6_ifa_notify(int event, struct inet6_ifaddr *ifa); | |
164 | ||
1ab1457c | 165 | static void inet6_prefix_notify(int event, struct inet6_dev *idev, |
1da177e4 | 166 | struct prefix_info *pinfo); |
3e81c6da DM |
167 | static bool ipv6_chk_same_addr(struct net *net, const struct in6_addr *addr, |
168 | struct net_device *dev); | |
1da177e4 | 169 | |
e041c683 | 170 | static ATOMIC_NOTIFIER_HEAD(inet6addr_chain); |
1da177e4 | 171 | |
888c848e | 172 | static struct ipv6_devconf ipv6_devconf __read_mostly = { |
1da177e4 LT |
173 | .forwarding = 0, |
174 | .hop_limit = IPV6_DEFAULT_HOPLIMIT, | |
175 | .mtu6 = IPV6_MIN_MTU, | |
176 | .accept_ra = 1, | |
177 | .accept_redirects = 1, | |
178 | .autoconf = 1, | |
179 | .force_mld_version = 0, | |
180 | .dad_transmits = 1, | |
181 | .rtr_solicits = MAX_RTR_SOLICITATIONS, | |
182 | .rtr_solicit_interval = RTR_SOLICITATION_INTERVAL, | |
183 | .rtr_solicit_delay = MAX_RTR_SOLICITATION_DELAY, | |
184 | #ifdef CONFIG_IPV6_PRIVACY | |
185 | .use_tempaddr = 0, | |
186 | .temp_valid_lft = TEMP_VALID_LIFETIME, | |
187 | .temp_prefered_lft = TEMP_PREFERRED_LIFETIME, | |
188 | .regen_max_retry = REGEN_MAX_RETRY, | |
189 | .max_desync_factor = MAX_DESYNC_FACTOR, | |
190 | #endif | |
191 | .max_addresses = IPV6_MAX_ADDRESSES, | |
65f5c7c1 | 192 | .accept_ra_defrtr = 1, |
c4fd30eb | 193 | .accept_ra_pinfo = 1, |
930d6ff2 YH |
194 | #ifdef CONFIG_IPV6_ROUTER_PREF |
195 | .accept_ra_rtr_pref = 1, | |
52e16356 | 196 | .rtr_probe_interval = 60 * HZ, |
09c884d4 YH |
197 | #ifdef CONFIG_IPV6_ROUTE_INFO |
198 | .accept_ra_rt_info_max_plen = 0, | |
199 | #endif | |
930d6ff2 | 200 | #endif |
fbea49e1 | 201 | .proxy_ndp = 0, |
0bcbc926 | 202 | .accept_source_route = 0, /* we do not accept RH0 by default. */ |
778d80be | 203 | .disable_ipv6 = 0, |
1b34be74 | 204 | .accept_dad = 1, |
1da177e4 LT |
205 | }; |
206 | ||
ab32ea5d | 207 | static struct ipv6_devconf ipv6_devconf_dflt __read_mostly = { |
1da177e4 LT |
208 | .forwarding = 0, |
209 | .hop_limit = IPV6_DEFAULT_HOPLIMIT, | |
210 | .mtu6 = IPV6_MIN_MTU, | |
211 | .accept_ra = 1, | |
212 | .accept_redirects = 1, | |
213 | .autoconf = 1, | |
214 | .dad_transmits = 1, | |
215 | .rtr_solicits = MAX_RTR_SOLICITATIONS, | |
216 | .rtr_solicit_interval = RTR_SOLICITATION_INTERVAL, | |
217 | .rtr_solicit_delay = MAX_RTR_SOLICITATION_DELAY, | |
218 | #ifdef CONFIG_IPV6_PRIVACY | |
219 | .use_tempaddr = 0, | |
220 | .temp_valid_lft = TEMP_VALID_LIFETIME, | |
221 | .temp_prefered_lft = TEMP_PREFERRED_LIFETIME, | |
222 | .regen_max_retry = REGEN_MAX_RETRY, | |
223 | .max_desync_factor = MAX_DESYNC_FACTOR, | |
224 | #endif | |
225 | .max_addresses = IPV6_MAX_ADDRESSES, | |
65f5c7c1 | 226 | .accept_ra_defrtr = 1, |
c4fd30eb | 227 | .accept_ra_pinfo = 1, |
930d6ff2 YH |
228 | #ifdef CONFIG_IPV6_ROUTER_PREF |
229 | .accept_ra_rtr_pref = 1, | |
52e16356 | 230 | .rtr_probe_interval = 60 * HZ, |
09c884d4 YH |
231 | #ifdef CONFIG_IPV6_ROUTE_INFO |
232 | .accept_ra_rt_info_max_plen = 0, | |
233 | #endif | |
930d6ff2 | 234 | #endif |
fbea49e1 | 235 | .proxy_ndp = 0, |
0bcbc926 | 236 | .accept_source_route = 0, /* we do not accept RH0 by default. */ |
778d80be | 237 | .disable_ipv6 = 0, |
1b34be74 | 238 | .accept_dad = 1, |
1da177e4 LT |
239 | }; |
240 | ||
241 | /* IPv6 Wildcard Address and Loopback Address defined by RFC2553 */ | |
1da177e4 | 242 | const struct in6_addr in6addr_any = IN6ADDR_ANY_INIT; |
1da177e4 | 243 | const struct in6_addr in6addr_loopback = IN6ADDR_LOOPBACK_INIT; |
f3ee4010 YH |
244 | const struct in6_addr in6addr_linklocal_allnodes = IN6ADDR_LINKLOCAL_ALLNODES_INIT; |
245 | const struct in6_addr in6addr_linklocal_allrouters = IN6ADDR_LINKLOCAL_ALLROUTERS_INIT; | |
1da177e4 | 246 | |
f24e3d65 | 247 | /* Check if a valid qdisc is available */ |
05297949 | 248 | static inline bool addrconf_qdisc_ok(const struct net_device *dev) |
f24e3d65 | 249 | { |
05297949 | 250 | return !qdisc_tx_is_noop(dev); |
f24e3d65 MC |
251 | } |
252 | ||
2b5ead46 YH |
253 | /* Check if a route is valid prefix route */ |
254 | static inline int addrconf_is_prefix_route(const struct rt6_info *rt) | |
255 | { | |
a02cec21 | 256 | return (rt->rt6i_flags & (RTF_GATEWAY | RTF_DEFAULT)) == 0; |
2b5ead46 YH |
257 | } |
258 | ||
1da177e4 LT |
259 | static void addrconf_del_timer(struct inet6_ifaddr *ifp) |
260 | { | |
261 | if (del_timer(&ifp->timer)) | |
262 | __in6_ifa_put(ifp); | |
263 | } | |
264 | ||
e21e8467 | 265 | enum addrconf_timer_t { |
1da177e4 LT |
266 | AC_NONE, |
267 | AC_DAD, | |
268 | AC_RS, | |
269 | }; | |
270 | ||
271 | static void addrconf_mod_timer(struct inet6_ifaddr *ifp, | |
272 | enum addrconf_timer_t what, | |
273 | unsigned long when) | |
274 | { | |
275 | if (!del_timer(&ifp->timer)) | |
276 | in6_ifa_hold(ifp); | |
277 | ||
278 | switch (what) { | |
279 | case AC_DAD: | |
280 | ifp->timer.function = addrconf_dad_timer; | |
281 | break; | |
282 | case AC_RS: | |
283 | ifp->timer.function = addrconf_rs_timer; | |
284 | break; | |
e21e8467 SH |
285 | default: |
286 | break; | |
1da177e4 LT |
287 | } |
288 | ifp->timer.expires = jiffies + when; | |
289 | add_timer(&ifp->timer); | |
290 | } | |
291 | ||
7f7d9a6b HX |
292 | static int snmp6_alloc_dev(struct inet6_dev *idev) |
293 | { | |
7d720c3e | 294 | if (snmp_mib_init((void __percpu **)idev->stats.ipv6, |
1823e4c8 ED |
295 | sizeof(struct ipstats_mib), |
296 | __alignof__(struct ipstats_mib)) < 0) | |
7f7d9a6b | 297 | goto err_ip; |
be281e55 ED |
298 | idev->stats.icmpv6dev = kzalloc(sizeof(struct icmpv6_mib_device), |
299 | GFP_KERNEL); | |
300 | if (!idev->stats.icmpv6dev) | |
7f7d9a6b | 301 | goto err_icmp; |
be281e55 ED |
302 | idev->stats.icmpv6msgdev = kzalloc(sizeof(struct icmpv6msg_mib_device), |
303 | GFP_KERNEL); | |
304 | if (!idev->stats.icmpv6msgdev) | |
14878f75 | 305 | goto err_icmpmsg; |
7f7d9a6b HX |
306 | |
307 | return 0; | |
308 | ||
14878f75 | 309 | err_icmpmsg: |
be281e55 | 310 | kfree(idev->stats.icmpv6dev); |
7f7d9a6b | 311 | err_icmp: |
7d720c3e | 312 | snmp_mib_free((void __percpu **)idev->stats.ipv6); |
7f7d9a6b | 313 | err_ip: |
aaf70ec7 | 314 | return -ENOMEM; |
7f7d9a6b HX |
315 | } |
316 | ||
16910b98 | 317 | static void snmp6_free_dev(struct inet6_dev *idev) |
7f7d9a6b | 318 | { |
be281e55 ED |
319 | kfree(idev->stats.icmpv6msgdev); |
320 | kfree(idev->stats.icmpv6dev); | |
7d720c3e | 321 | snmp_mib_free((void __percpu **)idev->stats.ipv6); |
7f7d9a6b HX |
322 | } |
323 | ||
1da177e4 LT |
324 | /* Nobody refers to this device, we may destroy it. */ |
325 | ||
326 | void in6_dev_finish_destroy(struct inet6_dev *idev) | |
327 | { | |
328 | struct net_device *dev = idev->dev; | |
547b792c | 329 | |
502a2ffd | 330 | WARN_ON(!list_empty(&idev->addr_list)); |
547b792c IJ |
331 | WARN_ON(idev->mc_list != NULL); |
332 | ||
1da177e4 | 333 | #ifdef NET_REFCNT_DEBUG |
91df42be | 334 | pr_debug("%s: %s\n", __func__, dev ? dev->name : "NIL"); |
1da177e4 LT |
335 | #endif |
336 | dev_put(dev); | |
337 | if (!idev->dead) { | |
f3213831 | 338 | pr_warn("Freeing alive inet6 device %p\n", idev); |
1da177e4 LT |
339 | return; |
340 | } | |
341 | snmp6_free_dev(idev); | |
38f57d1a | 342 | kfree_rcu(idev, rcu); |
1da177e4 | 343 | } |
7159039a YH |
344 | EXPORT_SYMBOL(in6_dev_finish_destroy); |
345 | ||
8e5e8f30 | 346 | static struct inet6_dev *ipv6_add_dev(struct net_device *dev) |
1da177e4 LT |
347 | { |
348 | struct inet6_dev *ndev; | |
349 | ||
350 | ASSERT_RTNL(); | |
351 | ||
352 | if (dev->mtu < IPV6_MIN_MTU) | |
353 | return NULL; | |
354 | ||
1ab1457c | 355 | ndev = kzalloc(sizeof(struct inet6_dev), GFP_KERNEL); |
322f74a4 | 356 | |
1ab1457c YH |
357 | if (ndev == NULL) |
358 | return NULL; | |
322f74a4 IO |
359 | |
360 | rwlock_init(&ndev->lock); | |
361 | ndev->dev = dev; | |
502a2ffd | 362 | INIT_LIST_HEAD(&ndev->addr_list); |
363 | ||
c346dca1 | 364 | memcpy(&ndev->cnf, dev_net(dev)->ipv6.devconf_dflt, sizeof(ndev->cnf)); |
322f74a4 IO |
365 | ndev->cnf.mtu6 = dev->mtu; |
366 | ndev->cnf.sysctl = NULL; | |
367 | ndev->nd_parms = neigh_parms_alloc(dev, &nd_tbl); | |
368 | if (ndev->nd_parms == NULL) { | |
369 | kfree(ndev); | |
370 | return NULL; | |
371 | } | |
0187bdfb BH |
372 | if (ndev->cnf.forwarding) |
373 | dev_disable_lro(dev); | |
322f74a4 IO |
374 | /* We refer to the device */ |
375 | dev_hold(dev); | |
1da177e4 | 376 | |
322f74a4 IO |
377 | if (snmp6_alloc_dev(ndev) < 0) { |
378 | ADBG((KERN_WARNING | |
f3213831 | 379 | "%s: cannot allocate memory for statistics; dev=%s.\n", |
0dc47877 | 380 | __func__, dev->name)); |
322f74a4 | 381 | neigh_parms_release(&nd_tbl, ndev->nd_parms); |
8603e33d RL |
382 | dev_put(dev); |
383 | kfree(ndev); | |
322f74a4 IO |
384 | return NULL; |
385 | } | |
1da177e4 | 386 | |
322f74a4 IO |
387 | if (snmp6_register_dev(ndev) < 0) { |
388 | ADBG((KERN_WARNING | |
f3213831 | 389 | "%s: cannot create /proc/net/dev_snmp6/%s\n", |
0dc47877 | 390 | __func__, dev->name)); |
322f74a4 IO |
391 | neigh_parms_release(&nd_tbl, ndev->nd_parms); |
392 | ndev->dead = 1; | |
393 | in6_dev_finish_destroy(ndev); | |
394 | return NULL; | |
395 | } | |
396 | ||
397 | /* One reference from device. We must do this before | |
398 | * we invoke __ipv6_regen_rndid(). | |
399 | */ | |
400 | in6_dev_hold(ndev); | |
1da177e4 | 401 | |
1b34be74 YH |
402 | if (dev->flags & (IFF_NOARP | IFF_LOOPBACK)) |
403 | ndev->cnf.accept_dad = -1; | |
404 | ||
07a93626 | 405 | #if IS_ENABLED(CONFIG_IPV6_SIT) |
b077d7ab | 406 | if (dev->type == ARPHRD_SIT && (dev->priv_flags & IFF_ISATAP)) { |
f3213831 | 407 | pr_info("%s: Disabled Multicast RS\n", dev->name); |
b077d7ab YH |
408 | ndev->cnf.rtr_solicits = 0; |
409 | } | |
410 | #endif | |
411 | ||
1da177e4 | 412 | #ifdef CONFIG_IPV6_PRIVACY |
372e6c8f | 413 | INIT_LIST_HEAD(&ndev->tempaddr_list); |
b24b8a24 | 414 | setup_timer(&ndev->regen_timer, ipv6_regen_rndid, (unsigned long)ndev); |
322f74a4 IO |
415 | if ((dev->flags&IFF_LOOPBACK) || |
416 | dev->type == ARPHRD_TUNNEL || | |
9625ed72 | 417 | dev->type == ARPHRD_TUNNEL6 || |
0be669bb | 418 | dev->type == ARPHRD_SIT || |
0be669bb | 419 | dev->type == ARPHRD_NONE) { |
322f74a4 IO |
420 | ndev->cnf.use_tempaddr = -1; |
421 | } else { | |
422 | in6_dev_hold(ndev); | |
423 | ipv6_regen_rndid((unsigned long) ndev); | |
424 | } | |
1da177e4 LT |
425 | #endif |
426 | ||
f24e3d65 | 427 | if (netif_running(dev) && addrconf_qdisc_ok(dev)) |
53aadcc9 HX |
428 | ndev->if_flags |= IF_READY; |
429 | ||
322f74a4 IO |
430 | ipv6_mc_init_dev(ndev); |
431 | ndev->tstamp = jiffies; | |
f52295a9 | 432 | addrconf_sysctl_register(ndev); |
30c4cf57 | 433 | /* protected by rtnl_lock */ |
cf778b00 | 434 | rcu_assign_pointer(dev->ip6_ptr, ndev); |
d88ae4cc YH |
435 | |
436 | /* Join all-node multicast group */ | |
f3ee4010 | 437 | ipv6_dev_mc_inc(dev, &in6addr_linklocal_allnodes); |
d88ae4cc | 438 | |
d6ddef9e | 439 | /* Join all-router multicast group if forwarding is set */ |
8b2aaede | 440 | if (ndev->cnf.forwarding && (dev->flags & IFF_MULTICAST)) |
d6ddef9e LW |
441 | ipv6_dev_mc_inc(dev, &in6addr_linklocal_allrouters); |
442 | ||
1da177e4 LT |
443 | return ndev; |
444 | } | |
445 | ||
8e5e8f30 | 446 | static struct inet6_dev *ipv6_find_idev(struct net_device *dev) |
1da177e4 LT |
447 | { |
448 | struct inet6_dev *idev; | |
449 | ||
450 | ASSERT_RTNL(); | |
451 | ||
e21e8467 SH |
452 | idev = __in6_dev_get(dev); |
453 | if (!idev) { | |
454 | idev = ipv6_add_dev(dev); | |
455 | if (!idev) | |
1da177e4 LT |
456 | return NULL; |
457 | } | |
c5e33bdd | 458 | |
1da177e4 LT |
459 | if (dev->flags&IFF_UP) |
460 | ipv6_mc_up(idev); | |
461 | return idev; | |
462 | } | |
463 | ||
f3a1bfb1 ND |
464 | static int inet6_netconf_msgsize_devconf(int type) |
465 | { | |
466 | int size = NLMSG_ALIGN(sizeof(struct netconfmsg)) | |
467 | + nla_total_size(4); /* NETCONFA_IFINDEX */ | |
468 | ||
76f8f6cb ND |
469 | /* type -1 is used for ALL */ |
470 | if (type == -1 || type == NETCONFA_FORWARDING) | |
f3a1bfb1 | 471 | size += nla_total_size(4); |
d67b8c61 ND |
472 | if (type == -1 || type == NETCONFA_MC_FORWARDING) |
473 | size += nla_total_size(4); | |
f3a1bfb1 ND |
474 | |
475 | return size; | |
476 | } | |
477 | ||
478 | static int inet6_netconf_fill_devconf(struct sk_buff *skb, int ifindex, | |
479 | struct ipv6_devconf *devconf, u32 portid, | |
480 | u32 seq, int event, unsigned int flags, | |
481 | int type) | |
482 | { | |
483 | struct nlmsghdr *nlh; | |
484 | struct netconfmsg *ncm; | |
485 | ||
486 | nlh = nlmsg_put(skb, portid, seq, event, sizeof(struct netconfmsg), | |
487 | flags); | |
488 | if (nlh == NULL) | |
489 | return -EMSGSIZE; | |
490 | ||
491 | ncm = nlmsg_data(nlh); | |
492 | ncm->ncm_family = AF_INET6; | |
493 | ||
494 | if (nla_put_s32(skb, NETCONFA_IFINDEX, ifindex) < 0) | |
495 | goto nla_put_failure; | |
496 | ||
76f8f6cb ND |
497 | /* type -1 is used for ALL */ |
498 | if ((type == -1 || type == NETCONFA_FORWARDING) && | |
f3a1bfb1 ND |
499 | nla_put_s32(skb, NETCONFA_FORWARDING, devconf->forwarding) < 0) |
500 | goto nla_put_failure; | |
d67b8c61 ND |
501 | if ((type == -1 || type == NETCONFA_MC_FORWARDING) && |
502 | nla_put_s32(skb, NETCONFA_MC_FORWARDING, | |
503 | devconf->mc_forwarding) < 0) | |
504 | goto nla_put_failure; | |
f3a1bfb1 ND |
505 | |
506 | return nlmsg_end(skb, nlh); | |
507 | ||
508 | nla_put_failure: | |
509 | nlmsg_cancel(skb, nlh); | |
510 | return -EMSGSIZE; | |
511 | } | |
512 | ||
d67b8c61 ND |
513 | void inet6_netconf_notify_devconf(struct net *net, int type, int ifindex, |
514 | struct ipv6_devconf *devconf) | |
f3a1bfb1 ND |
515 | { |
516 | struct sk_buff *skb; | |
517 | int err = -ENOBUFS; | |
518 | ||
519 | skb = nlmsg_new(inet6_netconf_msgsize_devconf(type), GFP_ATOMIC); | |
520 | if (skb == NULL) | |
521 | goto errout; | |
522 | ||
523 | err = inet6_netconf_fill_devconf(skb, ifindex, devconf, 0, 0, | |
524 | RTM_NEWNETCONF, 0, type); | |
525 | if (err < 0) { | |
526 | /* -EMSGSIZE implies BUG in inet6_netconf_msgsize_devconf() */ | |
527 | WARN_ON(err == -EMSGSIZE); | |
528 | kfree_skb(skb); | |
529 | goto errout; | |
530 | } | |
531 | rtnl_notify(skb, net, 0, RTNLGRP_IPV6_NETCONF, NULL, GFP_ATOMIC); | |
532 | return; | |
533 | errout: | |
534 | if (err < 0) | |
535 | rtnl_set_sk_err(net, RTNLGRP_IPV6_NETCONF, err); | |
536 | } | |
537 | ||
76f8f6cb ND |
538 | static const struct nla_policy devconf_ipv6_policy[NETCONFA_MAX+1] = { |
539 | [NETCONFA_IFINDEX] = { .len = sizeof(int) }, | |
540 | [NETCONFA_FORWARDING] = { .len = sizeof(int) }, | |
541 | }; | |
542 | ||
543 | static int inet6_netconf_get_devconf(struct sk_buff *in_skb, | |
544 | struct nlmsghdr *nlh, | |
545 | void *arg) | |
546 | { | |
547 | struct net *net = sock_net(in_skb->sk); | |
548 | struct nlattr *tb[NETCONFA_MAX+1]; | |
549 | struct netconfmsg *ncm; | |
550 | struct sk_buff *skb; | |
551 | struct ipv6_devconf *devconf; | |
552 | struct inet6_dev *in6_dev; | |
553 | struct net_device *dev; | |
554 | int ifindex; | |
555 | int err; | |
556 | ||
557 | err = nlmsg_parse(nlh, sizeof(*ncm), tb, NETCONFA_MAX, | |
558 | devconf_ipv6_policy); | |
559 | if (err < 0) | |
560 | goto errout; | |
561 | ||
562 | err = EINVAL; | |
563 | if (!tb[NETCONFA_IFINDEX]) | |
564 | goto errout; | |
565 | ||
566 | ifindex = nla_get_s32(tb[NETCONFA_IFINDEX]); | |
567 | switch (ifindex) { | |
568 | case NETCONFA_IFINDEX_ALL: | |
569 | devconf = net->ipv6.devconf_all; | |
570 | break; | |
571 | case NETCONFA_IFINDEX_DEFAULT: | |
572 | devconf = net->ipv6.devconf_dflt; | |
573 | break; | |
574 | default: | |
575 | dev = __dev_get_by_index(net, ifindex); | |
576 | if (dev == NULL) | |
577 | goto errout; | |
578 | in6_dev = __in6_dev_get(dev); | |
579 | if (in6_dev == NULL) | |
580 | goto errout; | |
581 | devconf = &in6_dev->cnf; | |
582 | break; | |
583 | } | |
584 | ||
585 | err = -ENOBUFS; | |
586 | skb = nlmsg_new(inet6_netconf_msgsize_devconf(-1), GFP_ATOMIC); | |
587 | if (skb == NULL) | |
588 | goto errout; | |
589 | ||
590 | err = inet6_netconf_fill_devconf(skb, ifindex, devconf, | |
591 | NETLINK_CB(in_skb).portid, | |
592 | nlh->nlmsg_seq, RTM_NEWNETCONF, 0, | |
593 | -1); | |
594 | if (err < 0) { | |
595 | /* -EMSGSIZE implies BUG in inet6_netconf_msgsize_devconf() */ | |
596 | WARN_ON(err == -EMSGSIZE); | |
597 | kfree_skb(skb); | |
598 | goto errout; | |
599 | } | |
600 | err = rtnl_unicast(skb, net, NETLINK_CB(in_skb).portid); | |
601 | errout: | |
602 | return err; | |
603 | } | |
604 | ||
1da177e4 LT |
605 | #ifdef CONFIG_SYSCTL |
606 | static void dev_forward_change(struct inet6_dev *idev) | |
607 | { | |
608 | struct net_device *dev; | |
609 | struct inet6_ifaddr *ifa; | |
1da177e4 LT |
610 | |
611 | if (!idev) | |
612 | return; | |
613 | dev = idev->dev; | |
0187bdfb BH |
614 | if (idev->cnf.forwarding) |
615 | dev_disable_lro(dev); | |
1a940835 | 616 | if (dev->flags & IFF_MULTICAST) { |
1da177e4 | 617 | if (idev->cnf.forwarding) |
f3ee4010 | 618 | ipv6_dev_mc_inc(dev, &in6addr_linklocal_allrouters); |
1da177e4 | 619 | else |
f3ee4010 | 620 | ipv6_dev_mc_dec(dev, &in6addr_linklocal_allrouters); |
1da177e4 | 621 | } |
502a2ffd | 622 | |
623 | list_for_each_entry(ifa, &idev->addr_list, if_list) { | |
2c12a74c MW |
624 | if (ifa->flags&IFA_F_TENTATIVE) |
625 | continue; | |
1da177e4 LT |
626 | if (idev->cnf.forwarding) |
627 | addrconf_join_anycast(ifa); | |
628 | else | |
629 | addrconf_leave_anycast(ifa); | |
630 | } | |
f3a1bfb1 ND |
631 | inet6_netconf_notify_devconf(dev_net(dev), NETCONFA_FORWARDING, |
632 | dev->ifindex, &idev->cnf); | |
1da177e4 LT |
633 | } |
634 | ||
635 | ||
e186932b | 636 | static void addrconf_forward_change(struct net *net, __s32 newf) |
1da177e4 LT |
637 | { |
638 | struct net_device *dev; | |
639 | struct inet6_dev *idev; | |
640 | ||
4acd4945 | 641 | for_each_netdev(net, dev) { |
1da177e4 LT |
642 | idev = __in6_dev_get(dev); |
643 | if (idev) { | |
e186932b PE |
644 | int changed = (!idev->cnf.forwarding) ^ (!newf); |
645 | idev->cnf.forwarding = newf; | |
1da177e4 LT |
646 | if (changed) |
647 | dev_forward_change(idev); | |
648 | } | |
1da177e4 | 649 | } |
1da177e4 | 650 | } |
c8fecf22 | 651 | |
013d97e9 | 652 | static int addrconf_fixup_forwarding(struct ctl_table *table, int *p, int newf) |
c8fecf22 | 653 | { |
bff16c2f | 654 | struct net *net; |
013d97e9 FR |
655 | int old; |
656 | ||
657 | if (!rtnl_trylock()) | |
658 | return restart_syscall(); | |
bff16c2f PE |
659 | |
660 | net = (struct net *)table->extra2; | |
013d97e9 FR |
661 | old = *p; |
662 | *p = newf; | |
b325fddb | 663 | |
013d97e9 | 664 | if (p == &net->ipv6.devconf_dflt->forwarding) { |
f3a1bfb1 ND |
665 | if ((!newf) ^ (!old)) |
666 | inet6_netconf_notify_devconf(net, NETCONFA_FORWARDING, | |
667 | NETCONFA_IFINDEX_DEFAULT, | |
668 | net->ipv6.devconf_dflt); | |
013d97e9 FR |
669 | rtnl_unlock(); |
670 | return 0; | |
88af182e | 671 | } |
c8fecf22 | 672 | |
e186932b | 673 | if (p == &net->ipv6.devconf_all->forwarding) { |
e186932b PE |
674 | net->ipv6.devconf_dflt->forwarding = newf; |
675 | addrconf_forward_change(net, newf); | |
f3a1bfb1 ND |
676 | if ((!newf) ^ (!old)) |
677 | inet6_netconf_notify_devconf(net, NETCONFA_FORWARDING, | |
678 | NETCONFA_IFINDEX_ALL, | |
679 | net->ipv6.devconf_all); | |
013d97e9 | 680 | } else if ((!newf) ^ (!old)) |
c8fecf22 | 681 | dev_forward_change((struct inet6_dev *)table->extra1); |
0187bdfb | 682 | rtnl_unlock(); |
c8fecf22 | 683 | |
013d97e9 | 684 | if (newf) |
7b4da532 | 685 | rt6_purge_dflt_routers(net); |
b325fddb | 686 | return 1; |
c8fecf22 | 687 | } |
1da177e4 LT |
688 | #endif |
689 | ||
5c578aed | 690 | /* Nobody refers to this ifaddr, destroy it */ |
1da177e4 LT |
691 | void inet6_ifa_finish_destroy(struct inet6_ifaddr *ifp) |
692 | { | |
c2e21293 | 693 | WARN_ON(!hlist_unhashed(&ifp->addr_lst)); |
547b792c | 694 | |
1da177e4 | 695 | #ifdef NET_REFCNT_DEBUG |
91df42be | 696 | pr_debug("%s\n", __func__); |
1da177e4 LT |
697 | #endif |
698 | ||
699 | in6_dev_put(ifp->idev); | |
700 | ||
701 | if (del_timer(&ifp->timer)) | |
e21e8467 | 702 | pr_notice("Timer is still running, when freeing ifa=%p\n", ifp); |
1da177e4 | 703 | |
e9d3e084 | 704 | if (ifp->state != INET6_IFADDR_STATE_DEAD) { |
f3213831 | 705 | pr_warn("Freeing alive inet6 address %p\n", ifp); |
1da177e4 LT |
706 | return; |
707 | } | |
94e187c0 | 708 | ip6_rt_put(ifp->rt); |
1da177e4 | 709 | |
e5785985 | 710 | kfree_rcu(ifp, rcu); |
1da177e4 LT |
711 | } |
712 | ||
e55ffac6 BH |
713 | static void |
714 | ipv6_link_dev_addr(struct inet6_dev *idev, struct inet6_ifaddr *ifp) | |
715 | { | |
502a2ffd | 716 | struct list_head *p; |
8a6ce0c0 | 717 | int ifp_scope = ipv6_addr_src_scope(&ifp->addr); |
e55ffac6 BH |
718 | |
719 | /* | |
720 | * Each device address list is sorted in order of scope - | |
721 | * global before linklocal. | |
722 | */ | |
502a2ffd | 723 | list_for_each(p, &idev->addr_list) { |
724 | struct inet6_ifaddr *ifa | |
725 | = list_entry(p, struct inet6_ifaddr, if_list); | |
8a6ce0c0 | 726 | if (ifp_scope >= ipv6_addr_src_scope(&ifa->addr)) |
e55ffac6 BH |
727 | break; |
728 | } | |
729 | ||
b54c9b98 | 730 | list_add_tail(&ifp->if_list, p); |
e55ffac6 BH |
731 | } |
732 | ||
ddbe5032 | 733 | static u32 inet6_addr_hash(const struct in6_addr *addr) |
3eb84f49 | 734 | { |
ddbe5032 | 735 | return hash_32(ipv6_addr_hash(addr), IN6_ADDR_HSIZE_SHIFT); |
3eb84f49 YH |
736 | } |
737 | ||
1da177e4 LT |
738 | /* On success it returns ifp with increased reference count */ |
739 | ||
740 | static struct inet6_ifaddr * | |
741 | ipv6_add_addr(struct inet6_dev *idev, const struct in6_addr *addr, int pfxlen, | |
e431b8c0 | 742 | int scope, u32 flags) |
1da177e4 LT |
743 | { |
744 | struct inet6_ifaddr *ifa = NULL; | |
745 | struct rt6_info *rt; | |
3a88a81d | 746 | unsigned int hash; |
1da177e4 | 747 | int err = 0; |
d68b8270 YH |
748 | int addr_type = ipv6_addr_type(addr); |
749 | ||
750 | if (addr_type == IPV6_ADDR_ANY || | |
751 | addr_type & IPV6_ADDR_MULTICAST || | |
752 | (!(idev->dev->flags & IFF_LOOPBACK) && | |
753 | addr_type & IPV6_ADDR_LOOPBACK)) | |
754 | return ERR_PTR(-EADDRNOTAVAIL); | |
1da177e4 | 755 | |
8814c4b5 | 756 | rcu_read_lock_bh(); |
1da177e4 LT |
757 | if (idev->dead) { |
758 | err = -ENODEV; /*XXX*/ | |
759 | goto out2; | |
760 | } | |
761 | ||
56d417b1 | 762 | if (idev->cnf.disable_ipv6) { |
9bdd8d40 BH |
763 | err = -EACCES; |
764 | goto out2; | |
765 | } | |
766 | ||
5c578aed | 767 | spin_lock(&addrconf_hash_lock); |
1da177e4 LT |
768 | |
769 | /* Ignore adding duplicate addresses on an interface */ | |
c346dca1 | 770 | if (ipv6_chk_same_addr(dev_net(idev->dev), addr, idev->dev)) { |
1da177e4 LT |
771 | ADBG(("ipv6_add_addr: already assigned\n")); |
772 | err = -EEXIST; | |
773 | goto out; | |
774 | } | |
775 | ||
322f74a4 | 776 | ifa = kzalloc(sizeof(struct inet6_ifaddr), GFP_ATOMIC); |
1da177e4 LT |
777 | |
778 | if (ifa == NULL) { | |
779 | ADBG(("ipv6_add_addr: malloc failed\n")); | |
780 | err = -ENOBUFS; | |
781 | goto out; | |
782 | } | |
783 | ||
8f031519 | 784 | rt = addrconf_dst_alloc(idev, addr, false); |
1da177e4 LT |
785 | if (IS_ERR(rt)) { |
786 | err = PTR_ERR(rt); | |
787 | goto out; | |
788 | } | |
789 | ||
4e3fd7a0 | 790 | ifa->addr = *addr; |
1da177e4 LT |
791 | |
792 | spin_lock_init(&ifa->lock); | |
e9d3e084 | 793 | spin_lock_init(&ifa->state_lock); |
1da177e4 | 794 | init_timer(&ifa->timer); |
c2e21293 | 795 | INIT_HLIST_NODE(&ifa->addr_lst); |
1da177e4 LT |
796 | ifa->timer.data = (unsigned long) ifa; |
797 | ifa->scope = scope; | |
798 | ifa->prefix_len = pfxlen; | |
799 | ifa->flags = flags | IFA_F_TENTATIVE; | |
800 | ifa->cstamp = ifa->tstamp = jiffies; | |
801 | ||
57f5f544 KF |
802 | ifa->rt = rt; |
803 | ||
1da177e4 LT |
804 | ifa->idev = idev; |
805 | in6_dev_hold(idev); | |
806 | /* For caller */ | |
807 | in6_ifa_hold(ifa); | |
808 | ||
809 | /* Add to big hash table */ | |
ddbe5032 | 810 | hash = inet6_addr_hash(addr); |
1da177e4 | 811 | |
5c578aed | 812 | hlist_add_head_rcu(&ifa->addr_lst, &inet6_addr_lst[hash]); |
5c578aed | 813 | spin_unlock(&addrconf_hash_lock); |
1da177e4 LT |
814 | |
815 | write_lock(&idev->lock); | |
816 | /* Add to inet6_dev unicast addr list. */ | |
e55ffac6 | 817 | ipv6_link_dev_addr(idev, ifa); |
1da177e4 LT |
818 | |
819 | #ifdef CONFIG_IPV6_PRIVACY | |
820 | if (ifa->flags&IFA_F_TEMPORARY) { | |
372e6c8f | 821 | list_add(&ifa->tmp_list, &idev->tempaddr_list); |
1da177e4 LT |
822 | in6_ifa_hold(ifa); |
823 | } | |
824 | #endif | |
825 | ||
1da177e4 LT |
826 | in6_ifa_hold(ifa); |
827 | write_unlock(&idev->lock); | |
828 | out2: | |
8814c4b5 | 829 | rcu_read_unlock_bh(); |
1da177e4 | 830 | |
fd92833a | 831 | if (likely(err == 0)) |
e041c683 | 832 | atomic_notifier_call_chain(&inet6addr_chain, NETDEV_UP, ifa); |
1da177e4 LT |
833 | else { |
834 | kfree(ifa); | |
835 | ifa = ERR_PTR(err); | |
836 | } | |
837 | ||
838 | return ifa; | |
839 | out: | |
5c578aed | 840 | spin_unlock(&addrconf_hash_lock); |
1da177e4 LT |
841 | goto out2; |
842 | } | |
843 | ||
844 | /* This function wants to get referenced ifp and releases it before return */ | |
845 | ||
846 | static void ipv6_del_addr(struct inet6_ifaddr *ifp) | |
847 | { | |
502a2ffd | 848 | struct inet6_ifaddr *ifa, *ifn; |
1da177e4 | 849 | struct inet6_dev *idev = ifp->idev; |
4c5ff6a6 | 850 | int state; |
1da177e4 LT |
851 | int deleted = 0, onlink = 0; |
852 | unsigned long expires = jiffies; | |
853 | ||
4c5ff6a6 HX |
854 | spin_lock_bh(&ifp->state_lock); |
855 | state = ifp->state; | |
e9d3e084 | 856 | ifp->state = INET6_IFADDR_STATE_DEAD; |
4c5ff6a6 HX |
857 | spin_unlock_bh(&ifp->state_lock); |
858 | ||
859 | if (state == INET6_IFADDR_STATE_DEAD) | |
860 | goto out; | |
1da177e4 | 861 | |
5c578aed | 862 | spin_lock_bh(&addrconf_hash_lock); |
863 | hlist_del_init_rcu(&ifp->addr_lst); | |
5c578aed | 864 | spin_unlock_bh(&addrconf_hash_lock); |
1da177e4 LT |
865 | |
866 | write_lock_bh(&idev->lock); | |
867 | #ifdef CONFIG_IPV6_PRIVACY | |
868 | if (ifp->flags&IFA_F_TEMPORARY) { | |
372e6c8f | 869 | list_del(&ifp->tmp_list); |
870 | if (ifp->ifpub) { | |
871 | in6_ifa_put(ifp->ifpub); | |
872 | ifp->ifpub = NULL; | |
1da177e4 | 873 | } |
372e6c8f | 874 | __in6_ifa_put(ifp); |
1da177e4 LT |
875 | } |
876 | #endif | |
877 | ||
502a2ffd | 878 | list_for_each_entry_safe(ifa, ifn, &idev->addr_list, if_list) { |
1da177e4 | 879 | if (ifa == ifp) { |
502a2ffd | 880 | list_del_init(&ifp->if_list); |
1da177e4 | 881 | __in6_ifa_put(ifp); |
502a2ffd | 882 | |
1da177e4 LT |
883 | if (!(ifp->flags & IFA_F_PERMANENT) || onlink > 0) |
884 | break; | |
885 | deleted = 1; | |
1d142804 | 886 | continue; |
1da177e4 LT |
887 | } else if (ifp->flags & IFA_F_PERMANENT) { |
888 | if (ipv6_prefix_equal(&ifa->addr, &ifp->addr, | |
889 | ifp->prefix_len)) { | |
890 | if (ifa->flags & IFA_F_PERMANENT) { | |
891 | onlink = 1; | |
892 | if (deleted) | |
893 | break; | |
894 | } else { | |
895 | unsigned long lifetime; | |
896 | ||
897 | if (!onlink) | |
898 | onlink = -1; | |
899 | ||
900 | spin_lock(&ifa->lock); | |
4bed72e4 YH |
901 | |
902 | lifetime = addrconf_timeout_fixup(ifa->valid_lft, HZ); | |
903 | /* | |
904 | * Note: Because this address is | |
905 | * not permanent, lifetime < | |
906 | * LONG_MAX / HZ here. | |
907 | */ | |
1da177e4 LT |
908 | if (time_before(expires, |
909 | ifa->tstamp + lifetime * HZ)) | |
910 | expires = ifa->tstamp + lifetime * HZ; | |
911 | spin_unlock(&ifa->lock); | |
912 | } | |
913 | } | |
914 | } | |
915 | } | |
916 | write_unlock_bh(&idev->lock); | |
917 | ||
b2238566 AV |
918 | addrconf_del_timer(ifp); |
919 | ||
1da177e4 LT |
920 | ipv6_ifa_notify(RTM_DELADDR, ifp); |
921 | ||
e041c683 | 922 | atomic_notifier_call_chain(&inet6addr_chain, NETDEV_DOWN, ifp); |
1da177e4 | 923 | |
1da177e4 LT |
924 | /* |
925 | * Purge or update corresponding prefix | |
926 | * | |
927 | * 1) we don't purge prefix here if address was not permanent. | |
928 | * prefix is managed by its own lifetime. | |
929 | * 2) if there're no addresses, delete prefix. | |
930 | * 3) if there're still other permanent address(es), | |
931 | * corresponding prefix is still permanent. | |
932 | * 4) otherwise, update prefix lifetime to the | |
933 | * longest valid lifetime among the corresponding | |
934 | * addresses on the device. | |
935 | * Note: subsequent RA will update lifetime. | |
936 | * | |
937 | * --yoshfuji | |
938 | */ | |
939 | if ((ifp->flags & IFA_F_PERMANENT) && onlink < 1) { | |
940 | struct in6_addr prefix; | |
941 | struct rt6_info *rt; | |
c346dca1 | 942 | struct net *net = dev_net(ifp->idev->dev); |
64c6d08e ND |
943 | struct flowi6 fl6 = {}; |
944 | ||
1da177e4 | 945 | ipv6_addr_prefix(&prefix, &ifp->addr, ifp->prefix_len); |
64c6d08e ND |
946 | fl6.flowi6_oif = ifp->idev->dev->ifindex; |
947 | fl6.daddr = prefix; | |
948 | rt = (struct rt6_info *)ip6_route_lookup(net, &fl6, | |
949 | RT6_LOOKUP_F_IFACE); | |
1da177e4 | 950 | |
64c6d08e ND |
951 | if (rt != net->ipv6.ip6_null_entry && |
952 | addrconf_is_prefix_route(rt)) { | |
1da177e4 | 953 | if (onlink == 0) { |
e0a1ad73 | 954 | ip6_del_rt(rt); |
1da177e4 LT |
955 | rt = NULL; |
956 | } else if (!(rt->rt6i_flags & RTF_EXPIRES)) { | |
1716a961 | 957 | rt6_set_expires(rt, expires); |
1da177e4 LT |
958 | } |
959 | } | |
94e187c0 | 960 | ip6_rt_put(rt); |
1da177e4 LT |
961 | } |
962 | ||
c3968a85 DW |
963 | /* clean up prefsrc entries */ |
964 | rt6_remove_prefsrc(ifp); | |
4c5ff6a6 | 965 | out: |
1da177e4 LT |
966 | in6_ifa_put(ifp); |
967 | } | |
968 | ||
969 | #ifdef CONFIG_IPV6_PRIVACY | |
970 | static int ipv6_create_tempaddr(struct inet6_ifaddr *ifp, struct inet6_ifaddr *ift) | |
971 | { | |
972 | struct inet6_dev *idev = ifp->idev; | |
973 | struct in6_addr addr, *tmpaddr; | |
76f793e3 | 974 | unsigned long tmp_prefered_lft, tmp_valid_lft, tmp_tstamp, age; |
eac55bf9 | 975 | unsigned long regen_advance; |
1da177e4 LT |
976 | int tmp_plen; |
977 | int ret = 0; | |
978 | int max_addresses; | |
95c385b4 | 979 | u32 addr_flags; |
76f793e3 | 980 | unsigned long now = jiffies; |
1da177e4 LT |
981 | |
982 | write_lock(&idev->lock); | |
983 | if (ift) { | |
984 | spin_lock_bh(&ift->lock); | |
985 | memcpy(&addr.s6_addr[8], &ift->addr.s6_addr[8], 8); | |
986 | spin_unlock_bh(&ift->lock); | |
987 | tmpaddr = &addr; | |
988 | } else { | |
989 | tmpaddr = NULL; | |
990 | } | |
991 | retry: | |
992 | in6_dev_hold(idev); | |
993 | if (idev->cnf.use_tempaddr <= 0) { | |
994 | write_unlock(&idev->lock); | |
f3213831 | 995 | pr_info("%s: use_tempaddr is disabled\n", __func__); |
1da177e4 LT |
996 | in6_dev_put(idev); |
997 | ret = -1; | |
998 | goto out; | |
999 | } | |
1000 | spin_lock_bh(&ifp->lock); | |
1001 | if (ifp->regen_count++ >= idev->cnf.regen_max_retry) { | |
1002 | idev->cnf.use_tempaddr = -1; /*XXX*/ | |
1003 | spin_unlock_bh(&ifp->lock); | |
1004 | write_unlock(&idev->lock); | |
f3213831 JP |
1005 | pr_warn("%s: regeneration time exceeded - disabled temporary address support\n", |
1006 | __func__); | |
1da177e4 LT |
1007 | in6_dev_put(idev); |
1008 | ret = -1; | |
1009 | goto out; | |
1010 | } | |
1011 | in6_ifa_hold(ifp); | |
1012 | memcpy(addr.s6_addr, ifp->addr.s6_addr, 8); | |
eb7e0575 | 1013 | __ipv6_try_regen_rndid(idev, tmpaddr); |
1da177e4 | 1014 | memcpy(&addr.s6_addr[8], idev->rndid, 8); |
76f793e3 | 1015 | age = (now - ifp->tstamp) / HZ; |
1da177e4 LT |
1016 | tmp_valid_lft = min_t(__u32, |
1017 | ifp->valid_lft, | |
7a876b0e | 1018 | idev->cnf.temp_valid_lft + age); |
1ab1457c YH |
1019 | tmp_prefered_lft = min_t(__u32, |
1020 | ifp->prefered_lft, | |
7a876b0e | 1021 | idev->cnf.temp_prefered_lft + age - |
784e2710 | 1022 | idev->cnf.max_desync_factor); |
1da177e4 LT |
1023 | tmp_plen = ifp->prefix_len; |
1024 | max_addresses = idev->cnf.max_addresses; | |
1da177e4 LT |
1025 | tmp_tstamp = ifp->tstamp; |
1026 | spin_unlock_bh(&ifp->lock); | |
1027 | ||
eac55bf9 BB |
1028 | regen_advance = idev->cnf.regen_max_retry * |
1029 | idev->cnf.dad_transmits * | |
1030 | idev->nd_parms->retrans_time / HZ; | |
1da177e4 | 1031 | write_unlock(&idev->lock); |
95c385b4 | 1032 | |
eac55bf9 BB |
1033 | /* A temporary address is created only if this calculated Preferred |
1034 | * Lifetime is greater than REGEN_ADVANCE time units. In particular, | |
1035 | * an implementation must not create a temporary address with a zero | |
1036 | * Preferred Lifetime. | |
1037 | */ | |
1038 | if (tmp_prefered_lft <= regen_advance) { | |
1039 | in6_ifa_put(ifp); | |
1040 | in6_dev_put(idev); | |
1041 | ret = -1; | |
1042 | goto out; | |
1043 | } | |
1044 | ||
95c385b4 NH |
1045 | addr_flags = IFA_F_TEMPORARY; |
1046 | /* set in addrconf_prefix_rcv() */ | |
1047 | if (ifp->flags & IFA_F_OPTIMISTIC) | |
1048 | addr_flags |= IFA_F_OPTIMISTIC; | |
1049 | ||
1da177e4 | 1050 | ift = !max_addresses || |
1ab1457c | 1051 | ipv6_count_addresses(idev) < max_addresses ? |
1da177e4 | 1052 | ipv6_add_addr(idev, &addr, tmp_plen, |
95c385b4 NH |
1053 | ipv6_addr_type(&addr)&IPV6_ADDR_SCOPE_MASK, |
1054 | addr_flags) : NULL; | |
1da177e4 LT |
1055 | if (!ift || IS_ERR(ift)) { |
1056 | in6_ifa_put(ifp); | |
1057 | in6_dev_put(idev); | |
f3213831 | 1058 | pr_info("%s: retry temporary address regeneration\n", __func__); |
1da177e4 LT |
1059 | tmpaddr = &addr; |
1060 | write_lock(&idev->lock); | |
1061 | goto retry; | |
1062 | } | |
1063 | ||
1064 | spin_lock_bh(&ift->lock); | |
1065 | ift->ifpub = ifp; | |
1066 | ift->valid_lft = tmp_valid_lft; | |
1067 | ift->prefered_lft = tmp_prefered_lft; | |
76f793e3 | 1068 | ift->cstamp = now; |
1da177e4 LT |
1069 | ift->tstamp = tmp_tstamp; |
1070 | spin_unlock_bh(&ift->lock); | |
1071 | ||
cf22f9a2 | 1072 | addrconf_dad_start(ift); |
1da177e4 LT |
1073 | in6_ifa_put(ift); |
1074 | in6_dev_put(idev); | |
1075 | out: | |
1076 | return ret; | |
1077 | } | |
1078 | #endif | |
1079 | ||
1080 | /* | |
072047e4 | 1081 | * Choose an appropriate source address (RFC3484) |
1da177e4 | 1082 | */ |
a9b05723 YH |
1083 | enum { |
1084 | IPV6_SADDR_RULE_INIT = 0, | |
1085 | IPV6_SADDR_RULE_LOCAL, | |
1086 | IPV6_SADDR_RULE_SCOPE, | |
1087 | IPV6_SADDR_RULE_PREFERRED, | |
1088 | #ifdef CONFIG_IPV6_MIP6 | |
1089 | IPV6_SADDR_RULE_HOA, | |
1090 | #endif | |
1091 | IPV6_SADDR_RULE_OIF, | |
1092 | IPV6_SADDR_RULE_LABEL, | |
1093 | #ifdef CONFIG_IPV6_PRIVACY | |
1094 | IPV6_SADDR_RULE_PRIVACY, | |
1095 | #endif | |
1096 | IPV6_SADDR_RULE_ORCHID, | |
1097 | IPV6_SADDR_RULE_PREFIX, | |
1098 | IPV6_SADDR_RULE_MAX | |
1099 | }; | |
1100 | ||
072047e4 | 1101 | struct ipv6_saddr_score { |
a9b05723 YH |
1102 | int rule; |
1103 | int addr_type; | |
1104 | struct inet6_ifaddr *ifa; | |
1105 | DECLARE_BITMAP(scorebits, IPV6_SADDR_RULE_MAX); | |
1106 | int scopedist; | |
1107 | int matchlen; | |
072047e4 YH |
1108 | }; |
1109 | ||
a9b05723 | 1110 | struct ipv6_saddr_dst { |
9acd9f3a | 1111 | const struct in6_addr *addr; |
a9b05723 YH |
1112 | int ifindex; |
1113 | int scope; | |
1114 | int label; | |
7cbca67c | 1115 | unsigned int prefs; |
a9b05723 | 1116 | }; |
072047e4 | 1117 | |
b6f99a21 | 1118 | static inline int ipv6_saddr_preferred(int type) |
1da177e4 | 1119 | { |
45bb0060 | 1120 | if (type & (IPV6_ADDR_MAPPED|IPV6_ADDR_COMPATv4|IPV6_ADDR_LOOPBACK)) |
072047e4 YH |
1121 | return 1; |
1122 | return 0; | |
1da177e4 LT |
1123 | } |
1124 | ||
3de23255 BT |
1125 | static int ipv6_get_saddr_eval(struct net *net, |
1126 | struct ipv6_saddr_score *score, | |
a9b05723 YH |
1127 | struct ipv6_saddr_dst *dst, |
1128 | int i) | |
1129 | { | |
1130 | int ret; | |
1131 | ||
1132 | if (i <= score->rule) { | |
1133 | switch (i) { | |
1134 | case IPV6_SADDR_RULE_SCOPE: | |
1135 | ret = score->scopedist; | |
1136 | break; | |
1137 | case IPV6_SADDR_RULE_PREFIX: | |
1138 | ret = score->matchlen; | |
1139 | break; | |
1140 | default: | |
1141 | ret = !!test_bit(i, score->scorebits); | |
1142 | } | |
1143 | goto out; | |
1144 | } | |
1145 | ||
1146 | switch (i) { | |
1147 | case IPV6_SADDR_RULE_INIT: | |
1148 | /* Rule 0: remember if hiscore is not ready yet */ | |
1149 | ret = !!score->ifa; | |
1150 | break; | |
1151 | case IPV6_SADDR_RULE_LOCAL: | |
1152 | /* Rule 1: Prefer same address */ | |
1153 | ret = ipv6_addr_equal(&score->ifa->addr, dst->addr); | |
1154 | break; | |
1155 | case IPV6_SADDR_RULE_SCOPE: | |
1156 | /* Rule 2: Prefer appropriate scope | |
1157 | * | |
1158 | * ret | |
1159 | * ^ | |
1160 | * -1 | d 15 | |
1161 | * ---+--+-+---> scope | |
1162 | * | | |
1163 | * | d is scope of the destination. | |
1164 | * B-d | \ | |
1165 | * | \ <- smaller scope is better if | |
1166 | * B-15 | \ if scope is enough for destinaion. | |
1167 | * | ret = B - scope (-1 <= scope >= d <= 15). | |
1168 | * d-C-1 | / | |
1169 | * |/ <- greater is better | |
1170 | * -C / if scope is not enough for destination. | |
1171 | * /| ret = scope - C (-1 <= d < scope <= 15). | |
1172 | * | |
1173 | * d - C - 1 < B -15 (for all -1 <= d <= 15). | |
1174 | * C > d + 14 - B >= 15 + 14 - B = 29 - B. | |
1175 | * Assume B = 0 and we get C > 29. | |
1176 | */ | |
1177 | ret = __ipv6_addr_src_scope(score->addr_type); | |
1178 | if (ret >= dst->scope) | |
1179 | ret = -ret; | |
1180 | else | |
1181 | ret -= 128; /* 30 is enough */ | |
1182 | score->scopedist = ret; | |
1183 | break; | |
1184 | case IPV6_SADDR_RULE_PREFERRED: | |
1185 | /* Rule 3: Avoid deprecated and optimistic addresses */ | |
1186 | ret = ipv6_saddr_preferred(score->addr_type) || | |
1187 | !(score->ifa->flags & (IFA_F_DEPRECATED|IFA_F_OPTIMISTIC)); | |
1188 | break; | |
1189 | #ifdef CONFIG_IPV6_MIP6 | |
1190 | case IPV6_SADDR_RULE_HOA: | |
7cbca67c | 1191 | { |
a9b05723 | 1192 | /* Rule 4: Prefer home address */ |
7cbca67c YH |
1193 | int prefhome = !(dst->prefs & IPV6_PREFER_SRC_COA); |
1194 | ret = !(score->ifa->flags & IFA_F_HOMEADDRESS) ^ prefhome; | |
a9b05723 | 1195 | break; |
7cbca67c | 1196 | } |
a9b05723 YH |
1197 | #endif |
1198 | case IPV6_SADDR_RULE_OIF: | |
1199 | /* Rule 5: Prefer outgoing interface */ | |
1200 | ret = (!dst->ifindex || | |
1201 | dst->ifindex == score->ifa->idev->dev->ifindex); | |
1202 | break; | |
1203 | case IPV6_SADDR_RULE_LABEL: | |
1204 | /* Rule 6: Prefer matching label */ | |
3de23255 BT |
1205 | ret = ipv6_addr_label(net, |
1206 | &score->ifa->addr, score->addr_type, | |
a9b05723 YH |
1207 | score->ifa->idev->dev->ifindex) == dst->label; |
1208 | break; | |
1209 | #ifdef CONFIG_IPV6_PRIVACY | |
1210 | case IPV6_SADDR_RULE_PRIVACY: | |
7cbca67c | 1211 | { |
a9b05723 | 1212 | /* Rule 7: Prefer public address |
25985edc | 1213 | * Note: prefer temporary address if use_tempaddr >= 2 |
a9b05723 | 1214 | */ |
7cbca67c YH |
1215 | int preftmp = dst->prefs & (IPV6_PREFER_SRC_PUBLIC|IPV6_PREFER_SRC_TMP) ? |
1216 | !!(dst->prefs & IPV6_PREFER_SRC_TMP) : | |
1217 | score->ifa->idev->cnf.use_tempaddr >= 2; | |
1218 | ret = (!(score->ifa->flags & IFA_F_TEMPORARY)) ^ preftmp; | |
a9b05723 | 1219 | break; |
7cbca67c | 1220 | } |
a9b05723 YH |
1221 | #endif |
1222 | case IPV6_SADDR_RULE_ORCHID: | |
1223 | /* Rule 8-: Prefer ORCHID vs ORCHID or | |
1224 | * non-ORCHID vs non-ORCHID | |
1225 | */ | |
1226 | ret = !(ipv6_addr_orchid(&score->ifa->addr) ^ | |
1227 | ipv6_addr_orchid(dst->addr)); | |
1228 | break; | |
1229 | case IPV6_SADDR_RULE_PREFIX: | |
1230 | /* Rule 8: Use longest matching prefix */ | |
91b4b04f YH |
1231 | ret = ipv6_addr_diff(&score->ifa->addr, dst->addr); |
1232 | if (ret > score->ifa->prefix_len) | |
1233 | ret = score->ifa->prefix_len; | |
1234 | score->matchlen = ret; | |
a9b05723 YH |
1235 | break; |
1236 | default: | |
1237 | ret = 0; | |
1238 | } | |
1239 | ||
1240 | if (ret) | |
1241 | __set_bit(i, score->scorebits); | |
1242 | score->rule = i; | |
1243 | out: | |
1244 | return ret; | |
1245 | } | |
1246 | ||
b3f644fc | 1247 | int ipv6_dev_get_saddr(struct net *net, const struct net_device *dst_dev, |
9acd9f3a | 1248 | const struct in6_addr *daddr, unsigned int prefs, |
7cbca67c | 1249 | struct in6_addr *saddr) |
1da177e4 | 1250 | { |
a9b05723 YH |
1251 | struct ipv6_saddr_score scores[2], |
1252 | *score = &scores[0], *hiscore = &scores[1]; | |
a9b05723 | 1253 | struct ipv6_saddr_dst dst; |
072047e4 | 1254 | struct net_device *dev; |
a9b05723 | 1255 | int dst_type; |
1da177e4 | 1256 | |
a9b05723 YH |
1257 | dst_type = __ipv6_addr_type(daddr); |
1258 | dst.addr = daddr; | |
1259 | dst.ifindex = dst_dev ? dst_dev->ifindex : 0; | |
1260 | dst.scope = __ipv6_addr_src_scope(dst_type); | |
3de23255 | 1261 | dst.label = ipv6_addr_label(net, daddr, dst_type, dst.ifindex); |
7cbca67c | 1262 | dst.prefs = prefs; |
a9b05723 YH |
1263 | |
1264 | hiscore->rule = -1; | |
1265 | hiscore->ifa = NULL; | |
1da177e4 | 1266 | |
8814c4b5 | 1267 | rcu_read_lock(); |
1da177e4 | 1268 | |
c6d14c84 | 1269 | for_each_netdev_rcu(net, dev) { |
072047e4 | 1270 | struct inet6_dev *idev; |
072047e4 | 1271 | |
a9b05723 | 1272 | /* Candidate Source Address (section 4) |
072047e4 YH |
1273 | * - multicast and link-local destination address, |
1274 | * the set of candidate source address MUST only | |
1275 | * include addresses assigned to interfaces | |
1276 | * belonging to the same link as the outgoing | |
1277 | * interface. | |
1278 | * (- For site-local destination addresses, the | |
1279 | * set of candidate source addresses MUST only | |
1280 | * include addresses assigned to interfaces | |
1281 | * belonging to the same site as the outgoing | |
1282 | * interface.) | |
1283 | */ | |
a9b05723 YH |
1284 | if (((dst_type & IPV6_ADDR_MULTICAST) || |
1285 | dst.scope <= IPV6_ADDR_SCOPE_LINKLOCAL) && | |
1286 | dst.ifindex && dev->ifindex != dst.ifindex) | |
072047e4 | 1287 | continue; |
1da177e4 | 1288 | |
1da177e4 | 1289 | idev = __in6_dev_get(dev); |
072047e4 YH |
1290 | if (!idev) |
1291 | continue; | |
1292 | ||
1293 | read_lock_bh(&idev->lock); | |
502a2ffd | 1294 | list_for_each_entry(score->ifa, &idev->addr_list, if_list) { |
a9b05723 | 1295 | int i; |
072047e4 | 1296 | |
a9b05723 | 1297 | /* |
6b3ae80a YH |
1298 | * - Tentative Address (RFC2462 section 5.4) |
1299 | * - A tentative address is not considered | |
1300 | * "assigned to an interface" in the traditional | |
95c385b4 | 1301 | * sense, unless it is also flagged as optimistic. |
6b3ae80a | 1302 | * - Candidate Source Address (section 4) |
072047e4 YH |
1303 | * - In any case, anycast addresses, multicast |
1304 | * addresses, and the unspecified address MUST | |
1305 | * NOT be included in a candidate set. | |
1306 | */ | |
a9b05723 YH |
1307 | if ((score->ifa->flags & IFA_F_TENTATIVE) && |
1308 | (!(score->ifa->flags & IFA_F_OPTIMISTIC))) | |
6b3ae80a | 1309 | continue; |
a9b05723 YH |
1310 | |
1311 | score->addr_type = __ipv6_addr_type(&score->ifa->addr); | |
1312 | ||
1313 | if (unlikely(score->addr_type == IPV6_ADDR_ANY || | |
1314 | score->addr_type & IPV6_ADDR_MULTICAST)) { | |
072047e4 | 1315 | LIMIT_NETDEBUG(KERN_DEBUG |
3b6d821c | 1316 | "ADDRCONF: unspecified / multicast address " |
072047e4 YH |
1317 | "assigned as unicast address on %s", |
1318 | dev->name); | |
1319 | continue; | |
1320 | } | |
1321 | ||
a9b05723 YH |
1322 | score->rule = -1; |
1323 | bitmap_zero(score->scorebits, IPV6_SADDR_RULE_MAX); | |
1324 | ||
1325 | for (i = 0; i < IPV6_SADDR_RULE_MAX; i++) { | |
1326 | int minihiscore, miniscore; | |
1327 | ||
3de23255 BT |
1328 | minihiscore = ipv6_get_saddr_eval(net, hiscore, &dst, i); |
1329 | miniscore = ipv6_get_saddr_eval(net, score, &dst, i); | |
a9b05723 YH |
1330 | |
1331 | if (minihiscore > miniscore) { | |
1332 | if (i == IPV6_SADDR_RULE_SCOPE && | |
1333 | score->scopedist > 0) { | |
1334 | /* | |
1335 | * special case: | |
1336 | * each remaining entry | |
1337 | * has too small (not enough) | |
1338 | * scope, because ifa entries | |
1339 | * are sorted by their scope | |
1340 | * values. | |
1341 | */ | |
1342 | goto try_nextdev; | |
1343 | } | |
1344 | break; | |
1345 | } else if (minihiscore < miniscore) { | |
a9b05723 YH |
1346 | if (hiscore->ifa) |
1347 | in6_ifa_put(hiscore->ifa); | |
1348 | ||
1349 | in6_ifa_hold(score->ifa); | |
1350 | ||
a0bffffc | 1351 | swap(hiscore, score); |
a9b05723 YH |
1352 | |
1353 | /* restore our iterator */ | |
1354 | score->ifa = hiscore->ifa; | |
1355 | ||
1356 | break; | |
1da177e4 | 1357 | } |
072047e4 | 1358 | } |
1da177e4 | 1359 | } |
a9b05723 | 1360 | try_nextdev: |
072047e4 | 1361 | read_unlock_bh(&idev->lock); |
1da177e4 | 1362 | } |
8814c4b5 | 1363 | rcu_read_unlock(); |
1da177e4 | 1364 | |
a9b05723 | 1365 | if (!hiscore->ifa) |
072047e4 | 1366 | return -EADDRNOTAVAIL; |
1ab1457c | 1367 | |
4e3fd7a0 | 1368 | *saddr = hiscore->ifa->addr; |
a9b05723 | 1369 | in6_ifa_put(hiscore->ifa); |
072047e4 | 1370 | return 0; |
1da177e4 | 1371 | } |
5e5f3f0f | 1372 | EXPORT_SYMBOL(ipv6_dev_get_saddr); |
1da177e4 | 1373 | |
95c385b4 NH |
1374 | int ipv6_get_lladdr(struct net_device *dev, struct in6_addr *addr, |
1375 | unsigned char banned_flags) | |
1da177e4 LT |
1376 | { |
1377 | struct inet6_dev *idev; | |
1378 | int err = -EADDRNOTAVAIL; | |
1379 | ||
8814c4b5 | 1380 | rcu_read_lock(); |
e21e8467 SH |
1381 | idev = __in6_dev_get(dev); |
1382 | if (idev) { | |
1da177e4 LT |
1383 | struct inet6_ifaddr *ifp; |
1384 | ||
1385 | read_lock_bh(&idev->lock); | |
502a2ffd | 1386 | list_for_each_entry(ifp, &idev->addr_list, if_list) { |
1387 | if (ifp->scope == IFA_LINK && | |
1388 | !(ifp->flags & banned_flags)) { | |
4e3fd7a0 | 1389 | *addr = ifp->addr; |
1da177e4 LT |
1390 | err = 0; |
1391 | break; | |
1392 | } | |
1393 | } | |
1394 | read_unlock_bh(&idev->lock); | |
1395 | } | |
8814c4b5 | 1396 | rcu_read_unlock(); |
1da177e4 LT |
1397 | return err; |
1398 | } | |
1399 | ||
1400 | static int ipv6_count_addresses(struct inet6_dev *idev) | |
1401 | { | |
1402 | int cnt = 0; | |
1403 | struct inet6_ifaddr *ifp; | |
1404 | ||
1405 | read_lock_bh(&idev->lock); | |
502a2ffd | 1406 | list_for_each_entry(ifp, &idev->addr_list, if_list) |
1da177e4 LT |
1407 | cnt++; |
1408 | read_unlock_bh(&idev->lock); | |
1409 | return cnt; | |
1410 | } | |
1411 | ||
b71d1d42 | 1412 | int ipv6_chk_addr(struct net *net, const struct in6_addr *addr, |
bfeade08 | 1413 | struct net_device *dev, int strict) |
1da177e4 | 1414 | { |
eedf042a | 1415 | struct inet6_ifaddr *ifp; |
c2e21293 | 1416 | struct hlist_node *node; |
ddbe5032 | 1417 | unsigned int hash = inet6_addr_hash(addr); |
1da177e4 | 1418 | |
5c578aed | 1419 | rcu_read_lock_bh(); |
1420 | hlist_for_each_entry_rcu(ifp, node, &inet6_addr_lst[hash], addr_lst) { | |
878628fb | 1421 | if (!net_eq(dev_net(ifp->idev->dev), net)) |
bfeade08 | 1422 | continue; |
1da177e4 | 1423 | if (ipv6_addr_equal(&ifp->addr, addr) && |
eedf042a SH |
1424 | !(ifp->flags&IFA_F_TENTATIVE) && |
1425 | (dev == NULL || ifp->idev->dev == dev || | |
1426 | !(ifp->scope&(IFA_LINK|IFA_HOST) || strict))) { | |
1427 | rcu_read_unlock_bh(); | |
1428 | return 1; | |
1da177e4 LT |
1429 | } |
1430 | } | |
5c578aed | 1431 | |
eedf042a SH |
1432 | rcu_read_unlock_bh(); |
1433 | return 0; | |
1da177e4 | 1434 | } |
7159039a YH |
1435 | EXPORT_SYMBOL(ipv6_chk_addr); |
1436 | ||
3e81c6da DM |
1437 | static bool ipv6_chk_same_addr(struct net *net, const struct in6_addr *addr, |
1438 | struct net_device *dev) | |
1da177e4 | 1439 | { |
ddbe5032 | 1440 | unsigned int hash = inet6_addr_hash(addr); |
c2e21293 | 1441 | struct inet6_ifaddr *ifp; |
1442 | struct hlist_node *node; | |
1da177e4 | 1443 | |
c2e21293 | 1444 | hlist_for_each_entry(ifp, node, &inet6_addr_lst[hash], addr_lst) { |
878628fb | 1445 | if (!net_eq(dev_net(ifp->idev->dev), net)) |
06bfe655 | 1446 | continue; |
1da177e4 LT |
1447 | if (ipv6_addr_equal(&ifp->addr, addr)) { |
1448 | if (dev == NULL || ifp->idev->dev == dev) | |
3e81c6da | 1449 | return true; |
1da177e4 LT |
1450 | } |
1451 | } | |
3e81c6da | 1452 | return false; |
1da177e4 LT |
1453 | } |
1454 | ||
b71d1d42 | 1455 | int ipv6_chk_prefix(const struct in6_addr *addr, struct net_device *dev) |
52eeeb84 YH |
1456 | { |
1457 | struct inet6_dev *idev; | |
1458 | struct inet6_ifaddr *ifa; | |
1459 | int onlink; | |
1460 | ||
1461 | onlink = 0; | |
1462 | rcu_read_lock(); | |
1463 | idev = __in6_dev_get(dev); | |
1464 | if (idev) { | |
1465 | read_lock_bh(&idev->lock); | |
502a2ffd | 1466 | list_for_each_entry(ifa, &idev->addr_list, if_list) { |
52eeeb84 YH |
1467 | onlink = ipv6_prefix_equal(addr, &ifa->addr, |
1468 | ifa->prefix_len); | |
1469 | if (onlink) | |
1470 | break; | |
1471 | } | |
1472 | read_unlock_bh(&idev->lock); | |
1473 | } | |
1474 | rcu_read_unlock(); | |
1475 | return onlink; | |
1476 | } | |
52eeeb84 YH |
1477 | EXPORT_SYMBOL(ipv6_chk_prefix); |
1478 | ||
9acd9f3a | 1479 | struct inet6_ifaddr *ipv6_get_ifaddr(struct net *net, const struct in6_addr *addr, |
1cab3da6 | 1480 | struct net_device *dev, int strict) |
1da177e4 | 1481 | { |
b79d1d54 | 1482 | struct inet6_ifaddr *ifp, *result = NULL; |
ddbe5032 | 1483 | unsigned int hash = inet6_addr_hash(addr); |
b79d1d54 | 1484 | struct hlist_node *node; |
1da177e4 | 1485 | |
5c578aed | 1486 | rcu_read_lock_bh(); |
4f70ecca | 1487 | hlist_for_each_entry_rcu_bh(ifp, node, &inet6_addr_lst[hash], addr_lst) { |
878628fb | 1488 | if (!net_eq(dev_net(ifp->idev->dev), net)) |
1cab3da6 | 1489 | continue; |
1da177e4 LT |
1490 | if (ipv6_addr_equal(&ifp->addr, addr)) { |
1491 | if (dev == NULL || ifp->idev->dev == dev || | |
1492 | !(ifp->scope&(IFA_LINK|IFA_HOST) || strict)) { | |
b79d1d54 | 1493 | result = ifp; |
1da177e4 LT |
1494 | in6_ifa_hold(ifp); |
1495 | break; | |
1496 | } | |
1497 | } | |
1498 | } | |
5c578aed | 1499 | rcu_read_unlock_bh(); |
1da177e4 | 1500 | |
b79d1d54 | 1501 | return result; |
1da177e4 LT |
1502 | } |
1503 | ||
1da177e4 LT |
1504 | /* Gets referenced address, destroys ifaddr */ |
1505 | ||
cc411d0b | 1506 | static void addrconf_dad_stop(struct inet6_ifaddr *ifp, int dad_failed) |
1da177e4 | 1507 | { |
1da177e4 LT |
1508 | if (ifp->flags&IFA_F_PERMANENT) { |
1509 | spin_lock_bh(&ifp->lock); | |
1510 | addrconf_del_timer(ifp); | |
1511 | ifp->flags |= IFA_F_TENTATIVE; | |
cc411d0b BH |
1512 | if (dad_failed) |
1513 | ifp->flags |= IFA_F_DADFAILED; | |
1da177e4 | 1514 | spin_unlock_bh(&ifp->lock); |
e2577a06 HX |
1515 | if (dad_failed) |
1516 | ipv6_ifa_notify(0, ifp); | |
1da177e4 LT |
1517 | in6_ifa_put(ifp); |
1518 | #ifdef CONFIG_IPV6_PRIVACY | |
1519 | } else if (ifp->flags&IFA_F_TEMPORARY) { | |
1520 | struct inet6_ifaddr *ifpub; | |
1521 | spin_lock_bh(&ifp->lock); | |
1522 | ifpub = ifp->ifpub; | |
1523 | if (ifpub) { | |
1524 | in6_ifa_hold(ifpub); | |
1525 | spin_unlock_bh(&ifp->lock); | |
1526 | ipv6_create_tempaddr(ifpub, ifp); | |
1527 | in6_ifa_put(ifpub); | |
1528 | } else { | |
1529 | spin_unlock_bh(&ifp->lock); | |
1530 | } | |
1531 | ipv6_del_addr(ifp); | |
1532 | #endif | |
1533 | } else | |
1534 | ipv6_del_addr(ifp); | |
1535 | } | |
1536 | ||
f2344a13 HX |
1537 | static int addrconf_dad_end(struct inet6_ifaddr *ifp) |
1538 | { | |
1539 | int err = -ENOENT; | |
1540 | ||
1541 | spin_lock(&ifp->state_lock); | |
1542 | if (ifp->state == INET6_IFADDR_STATE_DAD) { | |
1543 | ifp->state = INET6_IFADDR_STATE_POSTDAD; | |
1544 | err = 0; | |
1545 | } | |
1546 | spin_unlock(&ifp->state_lock); | |
1547 | ||
1548 | return err; | |
1549 | } | |
1550 | ||
3c21edbd YH |
1551 | void addrconf_dad_failure(struct inet6_ifaddr *ifp) |
1552 | { | |
1b34be74 | 1553 | struct inet6_dev *idev = ifp->idev; |
9bdd8d40 | 1554 | |
853dc2e0 UB |
1555 | if (addrconf_dad_end(ifp)) { |
1556 | in6_ifa_put(ifp); | |
f2344a13 | 1557 | return; |
853dc2e0 | 1558 | } |
f2344a13 | 1559 | |
e87cc472 JP |
1560 | net_info_ratelimited("%s: IPv6 duplicate address %pI6c detected!\n", |
1561 | ifp->idev->dev->name, &ifp->addr); | |
9bdd8d40 | 1562 | |
1b34be74 YH |
1563 | if (idev->cnf.accept_dad > 1 && !idev->cnf.disable_ipv6) { |
1564 | struct in6_addr addr; | |
1565 | ||
1566 | addr.s6_addr32[0] = htonl(0xfe800000); | |
1567 | addr.s6_addr32[1] = 0; | |
1568 | ||
1569 | if (!ipv6_generate_eui64(addr.s6_addr + 8, idev->dev) && | |
1570 | ipv6_addr_equal(&ifp->addr, &addr)) { | |
1571 | /* DAD failed for link-local based on MAC address */ | |
1572 | idev->cnf.disable_ipv6 = 1; | |
9bdd8d40 | 1573 | |
f3213831 | 1574 | pr_info("%s: IPv6 being disabled!\n", |
9bdd8d40 | 1575 | ifp->idev->dev->name); |
1b34be74 YH |
1576 | } |
1577 | } | |
1578 | ||
cc411d0b | 1579 | addrconf_dad_stop(ifp, 1); |
3c21edbd | 1580 | } |
1da177e4 LT |
1581 | |
1582 | /* Join to solicited addr multicast group. */ | |
1583 | ||
b71d1d42 | 1584 | void addrconf_join_solict(struct net_device *dev, const struct in6_addr *addr) |
1da177e4 LT |
1585 | { |
1586 | struct in6_addr maddr; | |
1587 | ||
1588 | if (dev->flags&(IFF_LOOPBACK|IFF_NOARP)) | |
1589 | return; | |
1590 | ||
1591 | addrconf_addr_solict_mult(addr, &maddr); | |
1592 | ipv6_dev_mc_inc(dev, &maddr); | |
1593 | } | |
1594 | ||
b71d1d42 | 1595 | void addrconf_leave_solict(struct inet6_dev *idev, const struct in6_addr *addr) |
1da177e4 LT |
1596 | { |
1597 | struct in6_addr maddr; | |
1598 | ||
1599 | if (idev->dev->flags&(IFF_LOOPBACK|IFF_NOARP)) | |
1600 | return; | |
1601 | ||
1602 | addrconf_addr_solict_mult(addr, &maddr); | |
1603 | __ipv6_dev_mc_dec(idev, &maddr); | |
1604 | } | |
1605 | ||
20380731 | 1606 | static void addrconf_join_anycast(struct inet6_ifaddr *ifp) |
1da177e4 LT |
1607 | { |
1608 | struct in6_addr addr; | |
2bda8a0c BM |
1609 | if (ifp->prefix_len == 127) /* RFC 6164 */ |
1610 | return; | |
1da177e4 LT |
1611 | ipv6_addr_prefix(&addr, &ifp->addr, ifp->prefix_len); |
1612 | if (ipv6_addr_any(&addr)) | |
1613 | return; | |
1614 | ipv6_dev_ac_inc(ifp->idev->dev, &addr); | |
1615 | } | |
1616 | ||
20380731 | 1617 | static void addrconf_leave_anycast(struct inet6_ifaddr *ifp) |
1da177e4 LT |
1618 | { |
1619 | struct in6_addr addr; | |
32019e65 YH |
1620 | if (ifp->prefix_len == 127) /* RFC 6164 */ |
1621 | return; | |
1da177e4 LT |
1622 | ipv6_addr_prefix(&addr, &ifp->addr, ifp->prefix_len); |
1623 | if (ipv6_addr_any(&addr)) | |
1624 | return; | |
1625 | __ipv6_dev_ac_dec(ifp->idev, &addr); | |
1626 | } | |
1627 | ||
073a8e0e YH |
1628 | static int addrconf_ifid_eui48(u8 *eui, struct net_device *dev) |
1629 | { | |
1630 | if (dev->addr_len != ETH_ALEN) | |
1631 | return -1; | |
1632 | memcpy(eui, dev->dev_addr, 3); | |
1633 | memcpy(eui + 5, dev->dev_addr + 3, 3); | |
1634 | ||
1635 | /* | |
1636 | * The zSeries OSA network cards can be shared among various | |
1637 | * OS instances, but the OSA cards have only one MAC address. | |
1638 | * This leads to duplicate address conflicts in conjunction | |
1639 | * with IPv6 if more than one instance uses the same card. | |
1640 | * | |
1641 | * The driver for these cards can deliver a unique 16-bit | |
1642 | * identifier for each instance sharing the same card. It is | |
1643 | * placed instead of 0xFFFE in the interface identifier. The | |
1644 | * "u" bit of the interface identifier is not inverted in this | |
1645 | * case. Hence the resulting interface identifier has local | |
1646 | * scope according to RFC2373. | |
1647 | */ | |
1648 | if (dev->dev_id) { | |
1649 | eui[3] = (dev->dev_id >> 8) & 0xFF; | |
1650 | eui[4] = dev->dev_id & 0xFF; | |
1651 | } else { | |
1652 | eui[3] = 0xFF; | |
1653 | eui[4] = 0xFE; | |
1654 | eui[0] ^= 2; | |
1655 | } | |
1656 | return 0; | |
1657 | } | |
1658 | ||
06a4c1c5 | 1659 | static int addrconf_ifid_eui64(u8 *eui, struct net_device *dev) |
1660 | { | |
1661 | if (dev->addr_len != IEEE802154_ADDR_LEN) | |
1662 | return -1; | |
1663 | memcpy(eui, dev->dev_addr, 8); | |
1664 | return 0; | |
1665 | } | |
1666 | ||
073a8e0e YH |
1667 | static int addrconf_ifid_arcnet(u8 *eui, struct net_device *dev) |
1668 | { | |
1669 | /* XXX: inherit EUI-64 from other interface -- yoshfuji */ | |
1670 | if (dev->addr_len != ARCNET_ALEN) | |
1671 | return -1; | |
1672 | memset(eui, 0, 7); | |
8e5e8f30 | 1673 | eui[7] = *(u8 *)dev->dev_addr; |
073a8e0e YH |
1674 | return 0; |
1675 | } | |
1676 | ||
1677 | static int addrconf_ifid_infiniband(u8 *eui, struct net_device *dev) | |
1678 | { | |
1679 | if (dev->addr_len != INFINIBAND_ALEN) | |
1680 | return -1; | |
1681 | memcpy(eui, dev->dev_addr + 12, 8); | |
1682 | eui[0] |= 2; | |
1683 | return 0; | |
1684 | } | |
1685 | ||
c61393ea | 1686 | static int __ipv6_isatap_ifid(u8 *eui, __be32 addr) |
dfd982ba | 1687 | { |
9af28511 SH |
1688 | if (addr == 0) |
1689 | return -1; | |
dfd982ba YH |
1690 | eui[0] = (ipv4_is_zeronet(addr) || ipv4_is_private_10(addr) || |
1691 | ipv4_is_loopback(addr) || ipv4_is_linklocal_169(addr) || | |
1692 | ipv4_is_private_172(addr) || ipv4_is_test_192(addr) || | |
1693 | ipv4_is_anycast_6to4(addr) || ipv4_is_private_192(addr) || | |
1694 | ipv4_is_test_198(addr) || ipv4_is_multicast(addr) || | |
1695 | ipv4_is_lbcast(addr)) ? 0x00 : 0x02; | |
1696 | eui[1] = 0; | |
1697 | eui[2] = 0x5E; | |
1698 | eui[3] = 0xFE; | |
1699 | memcpy(eui + 4, &addr, 4); | |
1700 | return 0; | |
1701 | } | |
dfd982ba YH |
1702 | |
1703 | static int addrconf_ifid_sit(u8 *eui, struct net_device *dev) | |
1704 | { | |
1705 | if (dev->priv_flags & IFF_ISATAP) | |
1706 | return __ipv6_isatap_ifid(eui, *(__be32 *)dev->dev_addr); | |
1707 | return -1; | |
1708 | } | |
1709 | ||
aee80b54 | 1710 | static int addrconf_ifid_gre(u8 *eui, struct net_device *dev) |
1711 | { | |
1712 | return __ipv6_isatap_ifid(eui, *(__be32 *)dev->dev_addr); | |
1713 | } | |
1714 | ||
1da177e4 LT |
1715 | static int ipv6_generate_eui64(u8 *eui, struct net_device *dev) |
1716 | { | |
1717 | switch (dev->type) { | |
1718 | case ARPHRD_ETHER: | |
1719 | case ARPHRD_FDDI: | |
073a8e0e | 1720 | return addrconf_ifid_eui48(eui, dev); |
1da177e4 | 1721 | case ARPHRD_ARCNET: |
073a8e0e | 1722 | return addrconf_ifid_arcnet(eui, dev); |
1da177e4 | 1723 | case ARPHRD_INFINIBAND: |
073a8e0e | 1724 | return addrconf_ifid_infiniband(eui, dev); |
c7dc89c0 | 1725 | case ARPHRD_SIT: |
dfd982ba | 1726 | return addrconf_ifid_sit(eui, dev); |
aee80b54 | 1727 | case ARPHRD_IPGRE: |
1728 | return addrconf_ifid_gre(eui, dev); | |
06a4c1c5 | 1729 | case ARPHRD_IEEE802154: |
1730 | return addrconf_ifid_eui64(eui, dev); | |
1da177e4 LT |
1731 | } |
1732 | return -1; | |
1733 | } | |
1734 | ||
1735 | static int ipv6_inherit_eui64(u8 *eui, struct inet6_dev *idev) | |
1736 | { | |
1737 | int err = -1; | |
1738 | struct inet6_ifaddr *ifp; | |
1739 | ||
1740 | read_lock_bh(&idev->lock); | |
502a2ffd | 1741 | list_for_each_entry(ifp, &idev->addr_list, if_list) { |
1da177e4 LT |
1742 | if (ifp->scope == IFA_LINK && !(ifp->flags&IFA_F_TENTATIVE)) { |
1743 | memcpy(eui, ifp->addr.s6_addr+8, 8); | |
1744 | err = 0; | |
1745 | break; | |
1746 | } | |
1747 | } | |
1748 | read_unlock_bh(&idev->lock); | |
1749 | return err; | |
1750 | } | |
1751 | ||
1752 | #ifdef CONFIG_IPV6_PRIVACY | |
1753 | /* (re)generation of randomized interface identifier (RFC 3041 3.2, 3.5) */ | |
eb7e0575 | 1754 | static void __ipv6_regen_rndid(struct inet6_dev *idev) |
1da177e4 | 1755 | { |
1da177e4 | 1756 | regen: |
955189ef | 1757 | get_random_bytes(idev->rndid, sizeof(idev->rndid)); |
1da177e4 | 1758 | idev->rndid[0] &= ~0x02; |
1da177e4 LT |
1759 | |
1760 | /* | |
1761 | * <draft-ietf-ipngwg-temp-addresses-v2-00.txt>: | |
1762 | * check if generated address is not inappropriate | |
1763 | * | |
1764 | * - Reserved subnet anycast (RFC 2526) | |
1765 | * 11111101 11....11 1xxxxxxx | |
c7dc89c0 | 1766 | * - ISATAP (RFC4214) 6.1 |
1da177e4 LT |
1767 | * 00-00-5E-FE-xx-xx-xx-xx |
1768 | * - value 0 | |
1769 | * - XXX: already assigned to an address on the device | |
1770 | */ | |
1ab1457c | 1771 | if (idev->rndid[0] == 0xfd && |
1da177e4 LT |
1772 | (idev->rndid[1]&idev->rndid[2]&idev->rndid[3]&idev->rndid[4]&idev->rndid[5]&idev->rndid[6]) == 0xff && |
1773 | (idev->rndid[7]&0x80)) | |
1774 | goto regen; | |
1775 | if ((idev->rndid[0]|idev->rndid[1]) == 0) { | |
1776 | if (idev->rndid[2] == 0x5e && idev->rndid[3] == 0xfe) | |
1777 | goto regen; | |
1778 | if ((idev->rndid[2]|idev->rndid[3]|idev->rndid[4]|idev->rndid[5]|idev->rndid[6]|idev->rndid[7]) == 0x00) | |
1779 | goto regen; | |
1780 | } | |
1da177e4 LT |
1781 | } |
1782 | ||
1783 | static void ipv6_regen_rndid(unsigned long data) | |
1784 | { | |
1785 | struct inet6_dev *idev = (struct inet6_dev *) data; | |
1786 | unsigned long expires; | |
1787 | ||
8814c4b5 | 1788 | rcu_read_lock_bh(); |
1da177e4 LT |
1789 | write_lock_bh(&idev->lock); |
1790 | ||
1791 | if (idev->dead) | |
1792 | goto out; | |
1793 | ||
eb7e0575 | 1794 | __ipv6_regen_rndid(idev); |
1ab1457c | 1795 | |
1da177e4 | 1796 | expires = jiffies + |
1ab1457c | 1797 | idev->cnf.temp_prefered_lft * HZ - |
784e2710 BH |
1798 | idev->cnf.regen_max_retry * idev->cnf.dad_transmits * idev->nd_parms->retrans_time - |
1799 | idev->cnf.max_desync_factor * HZ; | |
1da177e4 | 1800 | if (time_before(expires, jiffies)) { |
f3213831 JP |
1801 | pr_warn("%s: too short regeneration interval; timer disabled for %s\n", |
1802 | __func__, idev->dev->name); | |
1da177e4 LT |
1803 | goto out; |
1804 | } | |
1805 | ||
1806 | if (!mod_timer(&idev->regen_timer, expires)) | |
1807 | in6_dev_hold(idev); | |
1808 | ||
1809 | out: | |
1810 | write_unlock_bh(&idev->lock); | |
8814c4b5 | 1811 | rcu_read_unlock_bh(); |
1da177e4 LT |
1812 | in6_dev_put(idev); |
1813 | } | |
1814 | ||
eb7e0575 | 1815 | static void __ipv6_try_regen_rndid(struct inet6_dev *idev, struct in6_addr *tmpaddr) |
8e5e8f30 | 1816 | { |
1da177e4 | 1817 | if (tmpaddr && memcmp(idev->rndid, &tmpaddr->s6_addr[8], 8) == 0) |
eb7e0575 | 1818 | __ipv6_regen_rndid(idev); |
1da177e4 LT |
1819 | } |
1820 | #endif | |
1821 | ||
1822 | /* | |
1823 | * Add prefix route. | |
1824 | */ | |
1825 | ||
1826 | static void | |
1827 | addrconf_prefix_route(struct in6_addr *pfx, int plen, struct net_device *dev, | |
e431b8c0 | 1828 | unsigned long expires, u32 flags) |
1da177e4 | 1829 | { |
86872cb5 TG |
1830 | struct fib6_config cfg = { |
1831 | .fc_table = RT6_TABLE_PREFIX, | |
1832 | .fc_metric = IP6_RT_PRIO_ADDRCONF, | |
1833 | .fc_ifindex = dev->ifindex, | |
1834 | .fc_expires = expires, | |
1835 | .fc_dst_len = plen, | |
1836 | .fc_flags = RTF_UP | flags, | |
c346dca1 | 1837 | .fc_nlinfo.nl_net = dev_net(dev), |
f410a1fb | 1838 | .fc_protocol = RTPROT_KERNEL, |
86872cb5 | 1839 | }; |
1da177e4 | 1840 | |
4e3fd7a0 | 1841 | cfg.fc_dst = *pfx; |
1da177e4 LT |
1842 | |
1843 | /* Prevent useless cloning on PtP SIT. | |
1844 | This thing is done here expecting that the whole | |
1845 | class of non-broadcast devices need not cloning. | |
1846 | */ | |
07a93626 | 1847 | #if IS_ENABLED(CONFIG_IPV6_SIT) |
86872cb5 TG |
1848 | if (dev->type == ARPHRD_SIT && (dev->flags & IFF_POINTOPOINT)) |
1849 | cfg.fc_flags |= RTF_NONEXTHOP; | |
0be669bb | 1850 | #endif |
1da177e4 | 1851 | |
86872cb5 | 1852 | ip6_route_add(&cfg); |
1da177e4 LT |
1853 | } |
1854 | ||
14ef37b6 AH |
1855 | |
1856 | static struct rt6_info *addrconf_get_prefix_route(const struct in6_addr *pfx, | |
1857 | int plen, | |
1858 | const struct net_device *dev, | |
1859 | u32 flags, u32 noflags) | |
1860 | { | |
1861 | struct fib6_node *fn; | |
1862 | struct rt6_info *rt = NULL; | |
1863 | struct fib6_table *table; | |
1864 | ||
1865 | table = fib6_get_table(dev_net(dev), RT6_TABLE_PREFIX); | |
1866 | if (table == NULL) | |
1867 | return NULL; | |
1868 | ||
5744dd9b | 1869 | read_lock_bh(&table->tb6_lock); |
14ef37b6 AH |
1870 | fn = fib6_locate(&table->tb6_root, pfx, plen, NULL, 0); |
1871 | if (!fn) | |
1872 | goto out; | |
1873 | for (rt = fn->leaf; rt; rt = rt->dst.rt6_next) { | |
d1918542 | 1874 | if (rt->dst.dev->ifindex != dev->ifindex) |
14ef37b6 AH |
1875 | continue; |
1876 | if ((rt->rt6i_flags & flags) != flags) | |
1877 | continue; | |
1878 | if ((noflags != 0) && ((rt->rt6i_flags & flags) != 0)) | |
1879 | continue; | |
1880 | dst_hold(&rt->dst); | |
1881 | break; | |
1882 | } | |
1883 | out: | |
5744dd9b | 1884 | read_unlock_bh(&table->tb6_lock); |
14ef37b6 AH |
1885 | return rt; |
1886 | } | |
1887 | ||
1888 | ||
1da177e4 LT |
1889 | /* Create "default" multicast route to the interface */ |
1890 | ||
1891 | static void addrconf_add_mroute(struct net_device *dev) | |
1892 | { | |
86872cb5 TG |
1893 | struct fib6_config cfg = { |
1894 | .fc_table = RT6_TABLE_LOCAL, | |
1895 | .fc_metric = IP6_RT_PRIO_ADDRCONF, | |
1896 | .fc_ifindex = dev->ifindex, | |
1897 | .fc_dst_len = 8, | |
1898 | .fc_flags = RTF_UP, | |
c346dca1 | 1899 | .fc_nlinfo.nl_net = dev_net(dev), |
86872cb5 TG |
1900 | }; |
1901 | ||
1902 | ipv6_addr_set(&cfg.fc_dst, htonl(0xFF000000), 0, 0, 0); | |
1903 | ||
1904 | ip6_route_add(&cfg); | |
1da177e4 LT |
1905 | } |
1906 | ||
07a93626 | 1907 | #if IS_ENABLED(CONFIG_IPV6_SIT) |
1da177e4 LT |
1908 | static void sit_route_add(struct net_device *dev) |
1909 | { | |
86872cb5 TG |
1910 | struct fib6_config cfg = { |
1911 | .fc_table = RT6_TABLE_MAIN, | |
1912 | .fc_metric = IP6_RT_PRIO_ADDRCONF, | |
1913 | .fc_ifindex = dev->ifindex, | |
1914 | .fc_dst_len = 96, | |
1915 | .fc_flags = RTF_UP | RTF_NONEXTHOP, | |
c346dca1 | 1916 | .fc_nlinfo.nl_net = dev_net(dev), |
86872cb5 | 1917 | }; |
1da177e4 LT |
1918 | |
1919 | /* prefix length - 96 bits "::d.d.d.d" */ | |
86872cb5 | 1920 | ip6_route_add(&cfg); |
1da177e4 | 1921 | } |
0be669bb | 1922 | #endif |
1da177e4 | 1923 | |
1da177e4 LT |
1924 | static struct inet6_dev *addrconf_add_dev(struct net_device *dev) |
1925 | { | |
1926 | struct inet6_dev *idev; | |
1927 | ||
1928 | ASSERT_RTNL(); | |
1929 | ||
e21e8467 SH |
1930 | idev = ipv6_find_idev(dev); |
1931 | if (!idev) | |
64e724f6 BH |
1932 | return ERR_PTR(-ENOBUFS); |
1933 | ||
1934 | if (idev->cnf.disable_ipv6) | |
1935 | return ERR_PTR(-EACCES); | |
1da177e4 LT |
1936 | |
1937 | /* Add default multicast route */ | |
4af04aba LW |
1938 | if (!(dev->flags & IFF_LOOPBACK)) |
1939 | addrconf_add_mroute(dev); | |
1da177e4 | 1940 | |
1da177e4 LT |
1941 | return idev; |
1942 | } | |
1943 | ||
e6bff995 | 1944 | void addrconf_prefix_rcv(struct net_device *dev, u8 *opt, int len, bool sllao) |
1da177e4 LT |
1945 | { |
1946 | struct prefix_info *pinfo; | |
1947 | __u32 valid_lft; | |
1948 | __u32 prefered_lft; | |
1949 | int addr_type; | |
1da177e4 | 1950 | struct inet6_dev *in6_dev; |
56d417b1 | 1951 | struct net *net = dev_net(dev); |
1da177e4 LT |
1952 | |
1953 | pinfo = (struct prefix_info *) opt; | |
1ab1457c | 1954 | |
1da177e4 LT |
1955 | if (len < sizeof(struct prefix_info)) { |
1956 | ADBG(("addrconf: prefix option too short\n")); | |
1957 | return; | |
1958 | } | |
1ab1457c | 1959 | |
1da177e4 LT |
1960 | /* |
1961 | * Validation checks ([ADDRCONF], page 19) | |
1962 | */ | |
1963 | ||
1964 | addr_type = ipv6_addr_type(&pinfo->prefix); | |
1965 | ||
1966 | if (addr_type & (IPV6_ADDR_MULTICAST|IPV6_ADDR_LINKLOCAL)) | |
1967 | return; | |
1968 | ||
1969 | valid_lft = ntohl(pinfo->valid); | |
1970 | prefered_lft = ntohl(pinfo->prefered); | |
1971 | ||
1972 | if (prefered_lft > valid_lft) { | |
e87cc472 | 1973 | net_warn_ratelimited("addrconf: prefix option has invalid lifetime\n"); |
1da177e4 LT |
1974 | return; |
1975 | } | |
1976 | ||
1977 | in6_dev = in6_dev_get(dev); | |
1978 | ||
1979 | if (in6_dev == NULL) { | |
e87cc472 JP |
1980 | net_dbg_ratelimited("addrconf: device %s not configured\n", |
1981 | dev->name); | |
1da177e4 LT |
1982 | return; |
1983 | } | |
1984 | ||
1985 | /* | |
1986 | * Two things going on here: | |
1987 | * 1) Add routes for on-link prefixes | |
1988 | * 2) Configure prefixes with the auto flag set | |
1989 | */ | |
1990 | ||
4bed72e4 YH |
1991 | if (pinfo->onlink) { |
1992 | struct rt6_info *rt; | |
1993 | unsigned long rt_expires; | |
1994 | ||
6f704992 YH |
1995 | /* Avoid arithmetic overflow. Really, we could |
1996 | * save rt_expires in seconds, likely valid_lft, | |
1997 | * but it would require division in fib gc, that it | |
1998 | * not good. | |
1999 | */ | |
4bed72e4 YH |
2000 | if (HZ > USER_HZ) |
2001 | rt_expires = addrconf_timeout_fixup(valid_lft, HZ); | |
2002 | else | |
2003 | rt_expires = addrconf_timeout_fixup(valid_lft, USER_HZ); | |
3dd4bc68 | 2004 | |
4bed72e4 YH |
2005 | if (addrconf_finite_timeout(rt_expires)) |
2006 | rt_expires *= HZ; | |
1da177e4 | 2007 | |
14ef37b6 AH |
2008 | rt = addrconf_get_prefix_route(&pinfo->prefix, |
2009 | pinfo->prefix_len, | |
2010 | dev, | |
2011 | RTF_ADDRCONF | RTF_PREFIX_RT, | |
2012 | RTF_GATEWAY | RTF_DEFAULT); | |
1da177e4 | 2013 | |
14ef37b6 | 2014 | if (rt) { |
6f704992 YH |
2015 | /* Autoconf prefix route */ |
2016 | if (valid_lft == 0) { | |
2017 | ip6_del_rt(rt); | |
2018 | rt = NULL; | |
4bed72e4 | 2019 | } else if (addrconf_finite_timeout(rt_expires)) { |
6f704992 | 2020 | /* not infinity */ |
1716a961 | 2021 | rt6_set_expires(rt, jiffies + rt_expires); |
6f704992 | 2022 | } else { |
1716a961 | 2023 | rt6_clean_expires(rt); |
1da177e4 LT |
2024 | } |
2025 | } else if (valid_lft) { | |
6f704992 | 2026 | clock_t expires = 0; |
4bed72e4 YH |
2027 | int flags = RTF_ADDRCONF | RTF_PREFIX_RT; |
2028 | if (addrconf_finite_timeout(rt_expires)) { | |
6f704992 YH |
2029 | /* not infinity */ |
2030 | flags |= RTF_EXPIRES; | |
2031 | expires = jiffies_to_clock_t(rt_expires); | |
2032 | } | |
1da177e4 | 2033 | addrconf_prefix_route(&pinfo->prefix, pinfo->prefix_len, |
6f704992 | 2034 | dev, expires, flags); |
1da177e4 | 2035 | } |
94e187c0 | 2036 | ip6_rt_put(rt); |
1da177e4 LT |
2037 | } |
2038 | ||
2039 | /* Try to figure out our local address for this prefix */ | |
2040 | ||
2041 | if (pinfo->autoconf && in6_dev->cnf.autoconf) { | |
8e5e8f30 | 2042 | struct inet6_ifaddr *ifp; |
1da177e4 LT |
2043 | struct in6_addr addr; |
2044 | int create = 0, update_lft = 0; | |
2045 | ||
2046 | if (pinfo->prefix_len == 64) { | |
2047 | memcpy(&addr, &pinfo->prefix, 8); | |
2048 | if (ipv6_generate_eui64(addr.s6_addr + 8, dev) && | |
2049 | ipv6_inherit_eui64(addr.s6_addr + 8, in6_dev)) { | |
2050 | in6_dev_put(in6_dev); | |
2051 | return; | |
2052 | } | |
2053 | goto ok; | |
2054 | } | |
e87cc472 JP |
2055 | net_dbg_ratelimited("IPv6 addrconf: prefix with wrong length %d\n", |
2056 | pinfo->prefix_len); | |
1da177e4 LT |
2057 | in6_dev_put(in6_dev); |
2058 | return; | |
2059 | ||
2060 | ok: | |
2061 | ||
53b7997f | 2062 | ifp = ipv6_get_ifaddr(net, &addr, dev, 1); |
1da177e4 LT |
2063 | |
2064 | if (ifp == NULL && valid_lft) { | |
2065 | int max_addresses = in6_dev->cnf.max_addresses; | |
95c385b4 NH |
2066 | u32 addr_flags = 0; |
2067 | ||
2068 | #ifdef CONFIG_IPV6_OPTIMISTIC_DAD | |
2069 | if (in6_dev->cnf.optimistic_dad && | |
e6bff995 | 2070 | !net->ipv6.devconf_all->forwarding && sllao) |
95c385b4 NH |
2071 | addr_flags = IFA_F_OPTIMISTIC; |
2072 | #endif | |
1da177e4 LT |
2073 | |
2074 | /* Do not allow to create too much of autoconfigured | |
2075 | * addresses; this would be too easy way to crash kernel. | |
2076 | */ | |
2077 | if (!max_addresses || | |
2078 | ipv6_count_addresses(in6_dev) < max_addresses) | |
2079 | ifp = ipv6_add_addr(in6_dev, &addr, pinfo->prefix_len, | |
95c385b4 NH |
2080 | addr_type&IPV6_ADDR_SCOPE_MASK, |
2081 | addr_flags); | |
1da177e4 LT |
2082 | |
2083 | if (!ifp || IS_ERR(ifp)) { | |
2084 | in6_dev_put(in6_dev); | |
2085 | return; | |
2086 | } | |
2087 | ||
2088 | update_lft = create = 1; | |
2089 | ifp->cstamp = jiffies; | |
cf22f9a2 | 2090 | addrconf_dad_start(ifp); |
1da177e4 LT |
2091 | } |
2092 | ||
2093 | if (ifp) { | |
2094 | int flags; | |
2095 | unsigned long now; | |
2096 | #ifdef CONFIG_IPV6_PRIVACY | |
2097 | struct inet6_ifaddr *ift; | |
2098 | #endif | |
2099 | u32 stored_lft; | |
2100 | ||
2101 | /* update lifetime (RFC2462 5.5.3 e) */ | |
2102 | spin_lock(&ifp->lock); | |
2103 | now = jiffies; | |
2104 | if (ifp->valid_lft > (now - ifp->tstamp) / HZ) | |
2105 | stored_lft = ifp->valid_lft - (now - ifp->tstamp) / HZ; | |
2106 | else | |
2107 | stored_lft = 0; | |
2108 | if (!update_lft && stored_lft) { | |
2109 | if (valid_lft > MIN_VALID_LIFETIME || | |
2110 | valid_lft > stored_lft) | |
2111 | update_lft = 1; | |
2112 | else if (stored_lft <= MIN_VALID_LIFETIME) { | |
2113 | /* valid_lft <= stored_lft is always true */ | |
a1ed0526 BH |
2114 | /* |
2115 | * RFC 4862 Section 5.5.3e: | |
2116 | * "Note that the preferred lifetime of | |
2117 | * the corresponding address is always | |
2118 | * reset to the Preferred Lifetime in | |
2119 | * the received Prefix Information | |
2120 | * option, regardless of whether the | |
2121 | * valid lifetime is also reset or | |
2122 | * ignored." | |
2123 | * | |
2124 | * So if the preferred lifetime in | |
2125 | * this advertisement is different | |
2126 | * than what we have stored, but the | |
2127 | * valid lifetime is invalid, just | |
2128 | * reset prefered_lft. | |
2129 | * | |
2130 | * We must set the valid lifetime | |
2131 | * to the stored lifetime since we'll | |
2132 | * be updating the timestamp below, | |
2133 | * else we'll set it back to the | |
25985edc | 2134 | * minimum. |
a1ed0526 BH |
2135 | */ |
2136 | if (prefered_lft != ifp->prefered_lft) { | |
2137 | valid_lft = stored_lft; | |
2138 | update_lft = 1; | |
2139 | } | |
1da177e4 LT |
2140 | } else { |
2141 | valid_lft = MIN_VALID_LIFETIME; | |
2142 | if (valid_lft < prefered_lft) | |
2143 | prefered_lft = valid_lft; | |
2144 | update_lft = 1; | |
2145 | } | |
2146 | } | |
2147 | ||
2148 | if (update_lft) { | |
2149 | ifp->valid_lft = valid_lft; | |
2150 | ifp->prefered_lft = prefered_lft; | |
2151 | ifp->tstamp = now; | |
2152 | flags = ifp->flags; | |
2153 | ifp->flags &= ~IFA_F_DEPRECATED; | |
2154 | spin_unlock(&ifp->lock); | |
2155 | ||
2156 | if (!(flags&IFA_F_TENTATIVE)) | |
2157 | ipv6_ifa_notify(0, ifp); | |
2158 | } else | |
2159 | spin_unlock(&ifp->lock); | |
2160 | ||
2161 | #ifdef CONFIG_IPV6_PRIVACY | |
2162 | read_lock_bh(&in6_dev->lock); | |
2163 | /* update all temporary addresses in the list */ | |
76f793e3 LC |
2164 | list_for_each_entry(ift, &in6_dev->tempaddr_list, |
2165 | tmp_list) { | |
2166 | int age, max_valid, max_prefered; | |
2167 | ||
c6fbfac2 BB |
2168 | if (ifp != ift->ifpub) |
2169 | continue; | |
2170 | ||
76f793e3 LC |
2171 | /* |
2172 | * RFC 4941 section 3.3: | |
2173 | * If a received option will extend the lifetime | |
2174 | * of a public address, the lifetimes of | |
2175 | * temporary addresses should be extended, | |
2176 | * subject to the overall constraint that no | |
2177 | * temporary addresses should ever remain | |
2178 | * "valid" or "preferred" for a time longer than | |
2179 | * (TEMP_VALID_LIFETIME) or | |
2180 | * (TEMP_PREFERRED_LIFETIME - DESYNC_FACTOR), | |
2181 | * respectively. | |
2182 | */ | |
2183 | age = (now - ift->cstamp) / HZ; | |
2184 | max_valid = in6_dev->cnf.temp_valid_lft - age; | |
2185 | if (max_valid < 0) | |
2186 | max_valid = 0; | |
2187 | ||
2188 | max_prefered = in6_dev->cnf.temp_prefered_lft - | |
2189 | in6_dev->cnf.max_desync_factor - | |
2190 | age; | |
2191 | if (max_prefered < 0) | |
2192 | max_prefered = 0; | |
2193 | ||
2194 | if (valid_lft > max_valid) | |
2195 | valid_lft = max_valid; | |
2196 | ||
2197 | if (prefered_lft > max_prefered) | |
2198 | prefered_lft = max_prefered; | |
2199 | ||
1da177e4 LT |
2200 | spin_lock(&ift->lock); |
2201 | flags = ift->flags; | |
76f793e3 LC |
2202 | ift->valid_lft = valid_lft; |
2203 | ift->prefered_lft = prefered_lft; | |
2204 | ift->tstamp = now; | |
2205 | if (prefered_lft > 0) | |
2206 | ift->flags &= ~IFA_F_DEPRECATED; | |
2207 | ||
1da177e4 LT |
2208 | spin_unlock(&ift->lock); |
2209 | if (!(flags&IFA_F_TENTATIVE)) | |
2210 | ipv6_ifa_notify(0, ift); | |
2211 | } | |
2212 | ||
aed65501 | 2213 | if ((create || list_empty(&in6_dev->tempaddr_list)) && in6_dev->cnf.use_tempaddr > 0) { |
1da177e4 | 2214 | /* |
76f793e3 LC |
2215 | * When a new public address is created as |
2216 | * described in [ADDRCONF], also create a new | |
2217 | * temporary address. Also create a temporary | |
2218 | * address if it's enabled but no temporary | |
2219 | * address currently exists. | |
1da177e4 | 2220 | */ |
1ab1457c | 2221 | read_unlock_bh(&in6_dev->lock); |
1da177e4 LT |
2222 | ipv6_create_tempaddr(ifp, NULL); |
2223 | } else { | |
2224 | read_unlock_bh(&in6_dev->lock); | |
2225 | } | |
2226 | #endif | |
2227 | in6_ifa_put(ifp); | |
2228 | addrconf_verify(0); | |
2229 | } | |
2230 | } | |
2231 | inet6_prefix_notify(RTM_NEWPREFIX, in6_dev, pinfo); | |
2232 | in6_dev_put(in6_dev); | |
2233 | } | |
2234 | ||
2235 | /* | |
2236 | * Set destination address. | |
2237 | * Special case for SIT interfaces where we create a new "virtual" | |
2238 | * device. | |
2239 | */ | |
af284937 | 2240 | int addrconf_set_dstaddr(struct net *net, void __user *arg) |
1da177e4 LT |
2241 | { |
2242 | struct in6_ifreq ireq; | |
2243 | struct net_device *dev; | |
2244 | int err = -EINVAL; | |
2245 | ||
2246 | rtnl_lock(); | |
2247 | ||
2248 | err = -EFAULT; | |
2249 | if (copy_from_user(&ireq, arg, sizeof(struct in6_ifreq))) | |
2250 | goto err_exit; | |
2251 | ||
af284937 | 2252 | dev = __dev_get_by_index(net, ireq.ifr6_ifindex); |
1da177e4 LT |
2253 | |
2254 | err = -ENODEV; | |
2255 | if (dev == NULL) | |
2256 | goto err_exit; | |
2257 | ||
07a93626 | 2258 | #if IS_ENABLED(CONFIG_IPV6_SIT) |
1da177e4 | 2259 | if (dev->type == ARPHRD_SIT) { |
5bc3eb7e | 2260 | const struct net_device_ops *ops = dev->netdev_ops; |
1da177e4 | 2261 | struct ifreq ifr; |
1da177e4 LT |
2262 | struct ip_tunnel_parm p; |
2263 | ||
2264 | err = -EADDRNOTAVAIL; | |
2265 | if (!(ipv6_addr_type(&ireq.ifr6_addr) & IPV6_ADDR_COMPATv4)) | |
2266 | goto err_exit; | |
2267 | ||
2268 | memset(&p, 0, sizeof(p)); | |
2269 | p.iph.daddr = ireq.ifr6_addr.s6_addr32[3]; | |
2270 | p.iph.saddr = 0; | |
2271 | p.iph.version = 4; | |
2272 | p.iph.ihl = 5; | |
2273 | p.iph.protocol = IPPROTO_IPV6; | |
2274 | p.iph.ttl = 64; | |
d20b3109 | 2275 | ifr.ifr_ifru.ifru_data = (__force void __user *)&p; |
1da177e4 | 2276 | |
5bc3eb7e SH |
2277 | if (ops->ndo_do_ioctl) { |
2278 | mm_segment_t oldfs = get_fs(); | |
2279 | ||
2280 | set_fs(KERNEL_DS); | |
2281 | err = ops->ndo_do_ioctl(dev, &ifr, SIOCADDTUNNEL); | |
2282 | set_fs(oldfs); | |
2283 | } else | |
2284 | err = -EOPNOTSUPP; | |
1da177e4 LT |
2285 | |
2286 | if (err == 0) { | |
2287 | err = -ENOBUFS; | |
af284937 DL |
2288 | dev = __dev_get_by_name(net, p.name); |
2289 | if (!dev) | |
1da177e4 LT |
2290 | goto err_exit; |
2291 | err = dev_open(dev); | |
2292 | } | |
2293 | } | |
0be669bb | 2294 | #endif |
1da177e4 LT |
2295 | |
2296 | err_exit: | |
2297 | rtnl_unlock(); | |
2298 | return err; | |
2299 | } | |
2300 | ||
2301 | /* | |
2302 | * Manual configuration of address on an interface | |
2303 | */ | |
b71d1d42 | 2304 | static int inet6_addr_add(struct net *net, int ifindex, const struct in6_addr *pfx, |
24ef0da7 | 2305 | unsigned int plen, __u8 ifa_flags, __u32 prefered_lft, |
af284937 | 2306 | __u32 valid_lft) |
1da177e4 LT |
2307 | { |
2308 | struct inet6_ifaddr *ifp; | |
2309 | struct inet6_dev *idev; | |
2310 | struct net_device *dev; | |
2311 | int scope; | |
6f704992 YH |
2312 | u32 flags; |
2313 | clock_t expires; | |
4bed72e4 | 2314 | unsigned long timeout; |
1da177e4 LT |
2315 | |
2316 | ASSERT_RTNL(); | |
1ab1457c | 2317 | |
24ef0da7 TG |
2318 | if (plen > 128) |
2319 | return -EINVAL; | |
2320 | ||
0778769d NT |
2321 | /* check the lifetime */ |
2322 | if (!valid_lft || prefered_lft > valid_lft) | |
2323 | return -EINVAL; | |
2324 | ||
af284937 DL |
2325 | dev = __dev_get_by_index(net, ifindex); |
2326 | if (!dev) | |
1da177e4 | 2327 | return -ENODEV; |
1ab1457c | 2328 | |
64e724f6 BH |
2329 | idev = addrconf_add_dev(dev); |
2330 | if (IS_ERR(idev)) | |
2331 | return PTR_ERR(idev); | |
1da177e4 LT |
2332 | |
2333 | scope = ipv6_addr_scope(pfx); | |
2334 | ||
4bed72e4 YH |
2335 | timeout = addrconf_timeout_fixup(valid_lft, HZ); |
2336 | if (addrconf_finite_timeout(timeout)) { | |
2337 | expires = jiffies_to_clock_t(timeout * HZ); | |
2338 | valid_lft = timeout; | |
6f704992 | 2339 | flags = RTF_EXPIRES; |
4bed72e4 YH |
2340 | } else { |
2341 | expires = 0; | |
2342 | flags = 0; | |
2343 | ifa_flags |= IFA_F_PERMANENT; | |
6f704992 | 2344 | } |
0778769d | 2345 | |
4bed72e4 YH |
2346 | timeout = addrconf_timeout_fixup(prefered_lft, HZ); |
2347 | if (addrconf_finite_timeout(timeout)) { | |
2348 | if (timeout == 0) | |
2349 | ifa_flags |= IFA_F_DEPRECATED; | |
2350 | prefered_lft = timeout; | |
2351 | } | |
0778769d NT |
2352 | |
2353 | ifp = ipv6_add_addr(idev, pfx, plen, scope, ifa_flags); | |
2354 | ||
1da177e4 | 2355 | if (!IS_ERR(ifp)) { |
06aebfb7 | 2356 | spin_lock_bh(&ifp->lock); |
0778769d NT |
2357 | ifp->valid_lft = valid_lft; |
2358 | ifp->prefered_lft = prefered_lft; | |
2359 | ifp->tstamp = jiffies; | |
06aebfb7 | 2360 | spin_unlock_bh(&ifp->lock); |
0778769d | 2361 | |
46d48046 | 2362 | addrconf_prefix_route(&ifp->addr, ifp->prefix_len, dev, |
6f704992 | 2363 | expires, flags); |
95c385b4 NH |
2364 | /* |
2365 | * Note that section 3.1 of RFC 4429 indicates | |
2366 | * that the Optimistic flag should not be set for | |
2367 | * manually configured addresses | |
2368 | */ | |
cf22f9a2 | 2369 | addrconf_dad_start(ifp); |
1da177e4 | 2370 | in6_ifa_put(ifp); |
0778769d | 2371 | addrconf_verify(0); |
1da177e4 LT |
2372 | return 0; |
2373 | } | |
2374 | ||
2375 | return PTR_ERR(ifp); | |
2376 | } | |
2377 | ||
b71d1d42 | 2378 | static int inet6_addr_del(struct net *net, int ifindex, const struct in6_addr *pfx, |
24ef0da7 | 2379 | unsigned int plen) |
1da177e4 LT |
2380 | { |
2381 | struct inet6_ifaddr *ifp; | |
2382 | struct inet6_dev *idev; | |
2383 | struct net_device *dev; | |
1ab1457c | 2384 | |
24ef0da7 TG |
2385 | if (plen > 128) |
2386 | return -EINVAL; | |
2387 | ||
af284937 DL |
2388 | dev = __dev_get_by_index(net, ifindex); |
2389 | if (!dev) | |
1da177e4 LT |
2390 | return -ENODEV; |
2391 | ||
2392 | if ((idev = __in6_dev_get(dev)) == NULL) | |
2393 | return -ENXIO; | |
2394 | ||
2395 | read_lock_bh(&idev->lock); | |
502a2ffd | 2396 | list_for_each_entry(ifp, &idev->addr_list, if_list) { |
1da177e4 LT |
2397 | if (ifp->prefix_len == plen && |
2398 | ipv6_addr_equal(pfx, &ifp->addr)) { | |
2399 | in6_ifa_hold(ifp); | |
2400 | read_unlock_bh(&idev->lock); | |
1ab1457c | 2401 | |
1da177e4 LT |
2402 | ipv6_del_addr(ifp); |
2403 | ||
2404 | /* If the last address is deleted administratively, | |
2405 | disable IPv6 on this interface. | |
2406 | */ | |
502a2ffd | 2407 | if (list_empty(&idev->addr_list)) |
1da177e4 LT |
2408 | addrconf_ifdown(idev->dev, 1); |
2409 | return 0; | |
2410 | } | |
2411 | } | |
2412 | read_unlock_bh(&idev->lock); | |
2413 | return -EADDRNOTAVAIL; | |
2414 | } | |
2415 | ||
2416 | ||
af284937 | 2417 | int addrconf_add_ifaddr(struct net *net, void __user *arg) |
1da177e4 LT |
2418 | { |
2419 | struct in6_ifreq ireq; | |
2420 | int err; | |
1ab1457c | 2421 | |
af31f412 | 2422 | if (!ns_capable(net->user_ns, CAP_NET_ADMIN)) |
1da177e4 | 2423 | return -EPERM; |
1ab1457c | 2424 | |
1da177e4 LT |
2425 | if (copy_from_user(&ireq, arg, sizeof(struct in6_ifreq))) |
2426 | return -EFAULT; | |
2427 | ||
2428 | rtnl_lock(); | |
af284937 DL |
2429 | err = inet6_addr_add(net, ireq.ifr6_ifindex, &ireq.ifr6_addr, |
2430 | ireq.ifr6_prefixlen, IFA_F_PERMANENT, | |
2431 | INFINITY_LIFE_TIME, INFINITY_LIFE_TIME); | |
1da177e4 LT |
2432 | rtnl_unlock(); |
2433 | return err; | |
2434 | } | |
2435 | ||
af284937 | 2436 | int addrconf_del_ifaddr(struct net *net, void __user *arg) |
1da177e4 LT |
2437 | { |
2438 | struct in6_ifreq ireq; | |
2439 | int err; | |
1ab1457c | 2440 | |
af31f412 | 2441 | if (!ns_capable(net->user_ns, CAP_NET_ADMIN)) |
1da177e4 LT |
2442 | return -EPERM; |
2443 | ||
2444 | if (copy_from_user(&ireq, arg, sizeof(struct in6_ifreq))) | |
2445 | return -EFAULT; | |
2446 | ||
2447 | rtnl_lock(); | |
af284937 DL |
2448 | err = inet6_addr_del(net, ireq.ifr6_ifindex, &ireq.ifr6_addr, |
2449 | ireq.ifr6_prefixlen); | |
1da177e4 LT |
2450 | rtnl_unlock(); |
2451 | return err; | |
2452 | } | |
2453 | ||
b5f348e5 IJ |
2454 | static void add_addr(struct inet6_dev *idev, const struct in6_addr *addr, |
2455 | int plen, int scope) | |
2456 | { | |
2457 | struct inet6_ifaddr *ifp; | |
2458 | ||
2459 | ifp = ipv6_add_addr(idev, addr, plen, scope, IFA_F_PERMANENT); | |
2460 | if (!IS_ERR(ifp)) { | |
2461 | spin_lock_bh(&ifp->lock); | |
2462 | ifp->flags &= ~IFA_F_TENTATIVE; | |
2463 | spin_unlock_bh(&ifp->lock); | |
2464 | ipv6_ifa_notify(RTM_NEWADDR, ifp); | |
2465 | in6_ifa_put(ifp); | |
2466 | } | |
2467 | } | |
2468 | ||
07a93626 | 2469 | #if IS_ENABLED(CONFIG_IPV6_SIT) |
1da177e4 LT |
2470 | static void sit_add_v4_addrs(struct inet6_dev *idev) |
2471 | { | |
1da177e4 LT |
2472 | struct in6_addr addr; |
2473 | struct net_device *dev; | |
c346dca1 | 2474 | struct net *net = dev_net(idev->dev); |
1da177e4 LT |
2475 | int scope; |
2476 | ||
2477 | ASSERT_RTNL(); | |
2478 | ||
2479 | memset(&addr, 0, sizeof(struct in6_addr)); | |
2480 | memcpy(&addr.s6_addr32[3], idev->dev->dev_addr, 4); | |
2481 | ||
2482 | if (idev->dev->flags&IFF_POINTOPOINT) { | |
2483 | addr.s6_addr32[0] = htonl(0xfe800000); | |
2484 | scope = IFA_LINK; | |
2485 | } else { | |
2486 | scope = IPV6_ADDR_COMPATv4; | |
2487 | } | |
2488 | ||
2489 | if (addr.s6_addr32[3]) { | |
b5f348e5 | 2490 | add_addr(idev, &addr, 128, scope); |
1da177e4 LT |
2491 | return; |
2492 | } | |
2493 | ||
6fda7350 | 2494 | for_each_netdev(net, dev) { |
8e5e8f30 | 2495 | struct in_device *in_dev = __in_dev_get_rtnl(dev); |
1da177e4 | 2496 | if (in_dev && (dev->flags & IFF_UP)) { |
8e5e8f30 | 2497 | struct in_ifaddr *ifa; |
1da177e4 LT |
2498 | |
2499 | int flag = scope; | |
2500 | ||
2501 | for (ifa = in_dev->ifa_list; ifa; ifa = ifa->ifa_next) { | |
2502 | int plen; | |
2503 | ||
2504 | addr.s6_addr32[3] = ifa->ifa_local; | |
2505 | ||
2506 | if (ifa->ifa_scope == RT_SCOPE_LINK) | |
2507 | continue; | |
2508 | if (ifa->ifa_scope >= RT_SCOPE_HOST) { | |
2509 | if (idev->dev->flags&IFF_POINTOPOINT) | |
2510 | continue; | |
2511 | flag |= IFA_HOST; | |
2512 | } | |
2513 | if (idev->dev->flags&IFF_POINTOPOINT) | |
2514 | plen = 64; | |
2515 | else | |
2516 | plen = 96; | |
2517 | ||
b5f348e5 | 2518 | add_addr(idev, &addr, plen, flag); |
1da177e4 LT |
2519 | } |
2520 | } | |
1ab1457c | 2521 | } |
1da177e4 | 2522 | } |
0be669bb | 2523 | #endif |
1da177e4 LT |
2524 | |
2525 | static void init_loopback(struct net_device *dev) | |
2526 | { | |
2527 | struct inet6_dev *idev; | |
1da177e4 LT |
2528 | |
2529 | /* ::1 */ | |
2530 | ||
2531 | ASSERT_RTNL(); | |
2532 | ||
2533 | if ((idev = ipv6_find_idev(dev)) == NULL) { | |
91df42be | 2534 | pr_debug("%s: add_dev failed\n", __func__); |
1da177e4 LT |
2535 | return; |
2536 | } | |
2537 | ||
b5f348e5 | 2538 | add_addr(idev, &in6addr_loopback, 128, IFA_HOST); |
1da177e4 LT |
2539 | } |
2540 | ||
b71d1d42 | 2541 | static void addrconf_add_linklocal(struct inet6_dev *idev, const struct in6_addr *addr) |
1da177e4 | 2542 | { |
8e5e8f30 | 2543 | struct inet6_ifaddr *ifp; |
95c385b4 NH |
2544 | u32 addr_flags = IFA_F_PERMANENT; |
2545 | ||
2546 | #ifdef CONFIG_IPV6_OPTIMISTIC_DAD | |
2547 | if (idev->cnf.optimistic_dad && | |
702beb87 | 2548 | !dev_net(idev->dev)->ipv6.devconf_all->forwarding) |
95c385b4 NH |
2549 | addr_flags |= IFA_F_OPTIMISTIC; |
2550 | #endif | |
1da177e4 | 2551 | |
95c385b4 NH |
2552 | |
2553 | ifp = ipv6_add_addr(idev, addr, 64, IFA_LINK, addr_flags); | |
1da177e4 | 2554 | if (!IS_ERR(ifp)) { |
46d48046 | 2555 | addrconf_prefix_route(&ifp->addr, ifp->prefix_len, idev->dev, 0, 0); |
cf22f9a2 | 2556 | addrconf_dad_start(ifp); |
1da177e4 LT |
2557 | in6_ifa_put(ifp); |
2558 | } | |
2559 | } | |
2560 | ||
2561 | static void addrconf_dev_config(struct net_device *dev) | |
2562 | { | |
2563 | struct in6_addr addr; | |
8e5e8f30 | 2564 | struct inet6_dev *idev; |
1da177e4 LT |
2565 | |
2566 | ASSERT_RTNL(); | |
2567 | ||
74235a25 HX |
2568 | if ((dev->type != ARPHRD_ETHER) && |
2569 | (dev->type != ARPHRD_FDDI) && | |
74235a25 | 2570 | (dev->type != ARPHRD_ARCNET) && |
06a4c1c5 | 2571 | (dev->type != ARPHRD_INFINIBAND) && |
2572 | (dev->type != ARPHRD_IEEE802154)) { | |
74235a25 HX |
2573 | /* Alas, we support only Ethernet autoconfiguration. */ |
2574 | return; | |
2575 | } | |
2576 | ||
1da177e4 | 2577 | idev = addrconf_add_dev(dev); |
64e724f6 | 2578 | if (IS_ERR(idev)) |
1da177e4 LT |
2579 | return; |
2580 | ||
2581 | memset(&addr, 0, sizeof(struct in6_addr)); | |
2582 | addr.s6_addr32[0] = htonl(0xFE800000); | |
2583 | ||
2584 | if (ipv6_generate_eui64(addr.s6_addr + 8, dev) == 0) | |
2585 | addrconf_add_linklocal(idev, &addr); | |
2586 | } | |
2587 | ||
07a93626 | 2588 | #if IS_ENABLED(CONFIG_IPV6_SIT) |
1da177e4 LT |
2589 | static void addrconf_sit_config(struct net_device *dev) |
2590 | { | |
2591 | struct inet6_dev *idev; | |
2592 | ||
2593 | ASSERT_RTNL(); | |
2594 | ||
1ab1457c YH |
2595 | /* |
2596 | * Configure the tunnel with one of our IPv4 | |
2597 | * addresses... we should configure all of | |
1da177e4 LT |
2598 | * our v4 addrs in the tunnel |
2599 | */ | |
2600 | ||
2601 | if ((idev = ipv6_find_idev(dev)) == NULL) { | |
91df42be | 2602 | pr_debug("%s: add_dev failed\n", __func__); |
1da177e4 LT |
2603 | return; |
2604 | } | |
2605 | ||
c7dc89c0 FT |
2606 | if (dev->priv_flags & IFF_ISATAP) { |
2607 | struct in6_addr addr; | |
2608 | ||
2609 | ipv6_addr_set(&addr, htonl(0xFE800000), 0, 0, 0); | |
2610 | addrconf_prefix_route(&addr, 64, dev, 0, 0); | |
2611 | if (!ipv6_generate_eui64(addr.s6_addr + 8, dev)) | |
2612 | addrconf_add_linklocal(idev, &addr); | |
2613 | return; | |
2614 | } | |
2615 | ||
1da177e4 LT |
2616 | sit_add_v4_addrs(idev); |
2617 | ||
62b54dd9 | 2618 | if (dev->flags&IFF_POINTOPOINT) |
1da177e4 | 2619 | addrconf_add_mroute(dev); |
62b54dd9 | 2620 | else |
1da177e4 LT |
2621 | sit_route_add(dev); |
2622 | } | |
0be669bb | 2623 | #endif |
1da177e4 | 2624 | |
07a93626 | 2625 | #if IS_ENABLED(CONFIG_NET_IPGRE) |
aee80b54 | 2626 | static void addrconf_gre_config(struct net_device *dev) |
2627 | { | |
2628 | struct inet6_dev *idev; | |
2629 | struct in6_addr addr; | |
2630 | ||
f3213831 | 2631 | pr_info("%s(%s)\n", __func__, dev->name); |
aee80b54 | 2632 | |
2633 | ASSERT_RTNL(); | |
2634 | ||
2635 | if ((idev = ipv6_find_idev(dev)) == NULL) { | |
91df42be | 2636 | pr_debug("%s: add_dev failed\n", __func__); |
aee80b54 | 2637 | return; |
2638 | } | |
2639 | ||
2640 | ipv6_addr_set(&addr, htonl(0xFE800000), 0, 0, 0); | |
2641 | addrconf_prefix_route(&addr, 64, dev, 0, 0); | |
2642 | ||
2643 | if (!ipv6_generate_eui64(addr.s6_addr + 8, dev)) | |
2644 | addrconf_add_linklocal(idev, &addr); | |
2645 | } | |
2646 | #endif | |
2647 | ||
1da177e4 LT |
2648 | static inline int |
2649 | ipv6_inherit_linklocal(struct inet6_dev *idev, struct net_device *link_dev) | |
2650 | { | |
2651 | struct in6_addr lladdr; | |
2652 | ||
95c385b4 | 2653 | if (!ipv6_get_lladdr(link_dev, &lladdr, IFA_F_TENTATIVE)) { |
1da177e4 LT |
2654 | addrconf_add_linklocal(idev, &lladdr); |
2655 | return 0; | |
2656 | } | |
2657 | return -1; | |
2658 | } | |
2659 | ||
2660 | static void ip6_tnl_add_linklocal(struct inet6_dev *idev) | |
2661 | { | |
2662 | struct net_device *link_dev; | |
c346dca1 | 2663 | struct net *net = dev_net(idev->dev); |
1da177e4 LT |
2664 | |
2665 | /* first try to inherit the link-local address from the link device */ | |
2666 | if (idev->dev->iflink && | |
6fda7350 | 2667 | (link_dev = __dev_get_by_index(net, idev->dev->iflink))) { |
1da177e4 LT |
2668 | if (!ipv6_inherit_linklocal(idev, link_dev)) |
2669 | return; | |
2670 | } | |
2671 | /* then try to inherit it from any device */ | |
6fda7350 | 2672 | for_each_netdev(net, link_dev) { |
1da177e4 LT |
2673 | if (!ipv6_inherit_linklocal(idev, link_dev)) |
2674 | return; | |
2675 | } | |
91df42be | 2676 | pr_debug("init ip6-ip6: add_linklocal failed\n"); |
1da177e4 LT |
2677 | } |
2678 | ||
2679 | /* | |
2680 | * Autoconfigure tunnel with a link-local address so routing protocols, | |
2681 | * DHCPv6, MLD etc. can be run over the virtual link | |
2682 | */ | |
2683 | ||
2684 | static void addrconf_ip6_tnl_config(struct net_device *dev) | |
2685 | { | |
2686 | struct inet6_dev *idev; | |
2687 | ||
2688 | ASSERT_RTNL(); | |
2689 | ||
e21e8467 | 2690 | idev = addrconf_add_dev(dev); |
64e724f6 | 2691 | if (IS_ERR(idev)) { |
91df42be | 2692 | pr_debug("init ip6-ip6: add_dev failed\n"); |
1da177e4 LT |
2693 | return; |
2694 | } | |
2695 | ip6_tnl_add_linklocal(idev); | |
1da177e4 LT |
2696 | } |
2697 | ||
1ab1457c | 2698 | static int addrconf_notify(struct notifier_block *this, unsigned long event, |
8e5e8f30 | 2699 | void *data) |
1da177e4 LT |
2700 | { |
2701 | struct net_device *dev = (struct net_device *) data; | |
748e2d93 | 2702 | struct inet6_dev *idev = __in6_dev_get(dev); |
c5e33bdd | 2703 | int run_pending = 0; |
b217d616 | 2704 | int err; |
1da177e4 | 2705 | |
e21e8467 | 2706 | switch (event) { |
45ba9dd2 | 2707 | case NETDEV_REGISTER: |
74235a25 | 2708 | if (!idev && dev->mtu >= IPV6_MIN_MTU) { |
45ba9dd2 YH |
2709 | idev = ipv6_add_dev(dev); |
2710 | if (!idev) | |
b217d616 | 2711 | return notifier_from_errno(-ENOMEM); |
45ba9dd2 YH |
2712 | } |
2713 | break; | |
bcdd553f | 2714 | |
1da177e4 | 2715 | case NETDEV_UP: |
3c21edbd | 2716 | case NETDEV_CHANGE: |
c2edacf8 JV |
2717 | if (dev->flags & IFF_SLAVE) |
2718 | break; | |
2719 | ||
3c21edbd | 2720 | if (event == NETDEV_UP) { |
f24e3d65 | 2721 | if (!addrconf_qdisc_ok(dev)) { |
3c21edbd | 2722 | /* device is not ready yet. */ |
f3213831 | 2723 | pr_info("ADDRCONF(NETDEV_UP): %s: link is not ready\n", |
3c21edbd YH |
2724 | dev->name); |
2725 | break; | |
2726 | } | |
99081049 | 2727 | |
d31c7b8f EP |
2728 | if (!idev && dev->mtu >= IPV6_MIN_MTU) |
2729 | idev = ipv6_add_dev(dev); | |
2730 | ||
e3ec6cfc | 2731 | if (idev) { |
99081049 | 2732 | idev->if_flags |= IF_READY; |
e3ec6cfc BT |
2733 | run_pending = 1; |
2734 | } | |
3c21edbd | 2735 | } else { |
f24e3d65 | 2736 | if (!addrconf_qdisc_ok(dev)) { |
3c21edbd YH |
2737 | /* device is still not ready. */ |
2738 | break; | |
2739 | } | |
2740 | ||
2741 | if (idev) { | |
bcdd553f | 2742 | if (idev->if_flags & IF_READY) |
3c21edbd YH |
2743 | /* device is already configured. */ |
2744 | break; | |
3c21edbd YH |
2745 | idev->if_flags |= IF_READY; |
2746 | } | |
2747 | ||
f3213831 JP |
2748 | pr_info("ADDRCONF(NETDEV_CHANGE): %s: link becomes ready\n", |
2749 | dev->name); | |
3c21edbd | 2750 | |
c5e33bdd | 2751 | run_pending = 1; |
3c21edbd YH |
2752 | } |
2753 | ||
e21e8467 | 2754 | switch (dev->type) { |
07a93626 | 2755 | #if IS_ENABLED(CONFIG_IPV6_SIT) |
1da177e4 LT |
2756 | case ARPHRD_SIT: |
2757 | addrconf_sit_config(dev); | |
2758 | break; | |
aee80b54 | 2759 | #endif |
07a93626 | 2760 | #if IS_ENABLED(CONFIG_NET_IPGRE) |
aee80b54 | 2761 | case ARPHRD_IPGRE: |
2762 | addrconf_gre_config(dev); | |
2763 | break; | |
0be669bb | 2764 | #endif |
1da177e4 LT |
2765 | case ARPHRD_TUNNEL6: |
2766 | addrconf_ip6_tnl_config(dev); | |
2767 | break; | |
2768 | case ARPHRD_LOOPBACK: | |
2769 | init_loopback(dev); | |
2770 | break; | |
2771 | ||
2772 | default: | |
2773 | addrconf_dev_config(dev); | |
2774 | break; | |
3ff50b79 | 2775 | } |
bcdd553f | 2776 | |
1da177e4 | 2777 | if (idev) { |
c5e33bdd YH |
2778 | if (run_pending) |
2779 | addrconf_dad_run(idev); | |
2780 | ||
bcdd553f SH |
2781 | /* |
2782 | * If the MTU changed during the interface down, | |
2783 | * when the interface up, the changed MTU must be | |
2784 | * reflected in the idev as well as routers. | |
1da177e4 | 2785 | */ |
bcdd553f SH |
2786 | if (idev->cnf.mtu6 != dev->mtu && |
2787 | dev->mtu >= IPV6_MIN_MTU) { | |
1da177e4 LT |
2788 | rt6_mtu_change(dev, dev->mtu); |
2789 | idev->cnf.mtu6 = dev->mtu; | |
2790 | } | |
2791 | idev->tstamp = jiffies; | |
2792 | inet6_ifinfo_notify(RTM_NEWLINK, idev); | |
bcdd553f SH |
2793 | |
2794 | /* | |
2795 | * If the changed mtu during down is lower than | |
2796 | * IPV6_MIN_MTU stop IPv6 on this interface. | |
1da177e4 LT |
2797 | */ |
2798 | if (dev->mtu < IPV6_MIN_MTU) | |
bcdd553f | 2799 | addrconf_ifdown(dev, 1); |
1da177e4 LT |
2800 | } |
2801 | break; | |
2802 | ||
2803 | case NETDEV_CHANGEMTU: | |
d31c7b8f | 2804 | if (idev && dev->mtu >= IPV6_MIN_MTU) { |
1da177e4 LT |
2805 | rt6_mtu_change(dev, dev->mtu); |
2806 | idev->cnf.mtu6 = dev->mtu; | |
2807 | break; | |
2808 | } | |
2809 | ||
d31c7b8f EP |
2810 | if (!idev && dev->mtu >= IPV6_MIN_MTU) { |
2811 | idev = ipv6_add_dev(dev); | |
2812 | if (idev) | |
2813 | break; | |
2814 | } | |
2815 | ||
bcdd553f SH |
2816 | /* |
2817 | * MTU falled under IPV6_MIN_MTU. | |
2818 | * Stop IPv6 on this interface. | |
2819 | */ | |
1da177e4 LT |
2820 | |
2821 | case NETDEV_DOWN: | |
2822 | case NETDEV_UNREGISTER: | |
2823 | /* | |
2824 | * Remove all addresses from this interface. | |
2825 | */ | |
2826 | addrconf_ifdown(dev, event != NETDEV_DOWN); | |
2827 | break; | |
3c21edbd | 2828 | |
1da177e4 | 2829 | case NETDEV_CHANGENAME: |
1da177e4 | 2830 | if (idev) { |
5632c515 | 2831 | snmp6_unregister_dev(idev); |
408c4768 | 2832 | addrconf_sysctl_unregister(idev); |
f52295a9 | 2833 | addrconf_sysctl_register(idev); |
b217d616 HX |
2834 | err = snmp6_register_dev(idev); |
2835 | if (err) | |
2836 | return notifier_from_errno(err); | |
5632c515 | 2837 | } |
1da177e4 | 2838 | break; |
bcdd553f | 2839 | |
93d9b7d7 JP |
2840 | case NETDEV_PRE_TYPE_CHANGE: |
2841 | case NETDEV_POST_TYPE_CHANGE: | |
2842 | addrconf_type_change(dev, event); | |
75c78500 | 2843 | break; |
3ff50b79 | 2844 | } |
1da177e4 LT |
2845 | |
2846 | return NOTIFY_OK; | |
2847 | } | |
2848 | ||
2849 | /* | |
2850 | * addrconf module should be notified of a device going up | |
2851 | */ | |
2852 | static struct notifier_block ipv6_dev_notf = { | |
2853 | .notifier_call = addrconf_notify, | |
1da177e4 LT |
2854 | }; |
2855 | ||
93d9b7d7 | 2856 | static void addrconf_type_change(struct net_device *dev, unsigned long event) |
75c78500 MS |
2857 | { |
2858 | struct inet6_dev *idev; | |
2859 | ASSERT_RTNL(); | |
2860 | ||
2861 | idev = __in6_dev_get(dev); | |
2862 | ||
93d9b7d7 | 2863 | if (event == NETDEV_POST_TYPE_CHANGE) |
75c78500 | 2864 | ipv6_mc_remap(idev); |
93d9b7d7 | 2865 | else if (event == NETDEV_PRE_TYPE_CHANGE) |
75c78500 MS |
2866 | ipv6_mc_unmap(idev); |
2867 | } | |
2868 | ||
1da177e4 LT |
2869 | static int addrconf_ifdown(struct net_device *dev, int how) |
2870 | { | |
c346dca1 | 2871 | struct net *net = dev_net(dev); |
502a2ffd | 2872 | struct inet6_dev *idev; |
2873 | struct inet6_ifaddr *ifa; | |
73a8bd74 | 2874 | int state, i; |
1da177e4 LT |
2875 | |
2876 | ASSERT_RTNL(); | |
2877 | ||
73a8bd74 DM |
2878 | rt6_ifdown(net, dev); |
2879 | neigh_ifdown(&nd_tbl, dev); | |
1da177e4 LT |
2880 | |
2881 | idev = __in6_dev_get(dev); | |
2882 | if (idev == NULL) | |
2883 | return -ENODEV; | |
2884 | ||
bcdd553f SH |
2885 | /* |
2886 | * Step 1: remove reference to ipv6 device from parent device. | |
2887 | * Do not dev_put! | |
1da177e4 | 2888 | */ |
439e2385 | 2889 | if (how) { |
1da177e4 | 2890 | idev->dead = 1; |
8814c4b5 YH |
2891 | |
2892 | /* protected by rtnl_lock */ | |
a9b3cd7f | 2893 | RCU_INIT_POINTER(dev->ip6_ptr, NULL); |
1da177e4 LT |
2894 | |
2895 | /* Step 1.5: remove snmp6 entry */ | |
2896 | snmp6_unregister_dev(idev); | |
2897 | ||
2898 | } | |
2899 | ||
73a8bd74 DM |
2900 | /* Step 2: clear hash table */ |
2901 | for (i = 0; i < IN6_ADDR_HSIZE; i++) { | |
2902 | struct hlist_head *h = &inet6_addr_lst[i]; | |
2903 | struct hlist_node *n; | |
2904 | ||
2905 | spin_lock_bh(&addrconf_hash_lock); | |
2906 | restart: | |
2907 | hlist_for_each_entry_rcu(ifa, n, h, addr_lst) { | |
2908 | if (ifa->idev == idev) { | |
2909 | hlist_del_init_rcu(&ifa->addr_lst); | |
2910 | addrconf_del_timer(ifa); | |
2911 | goto restart; | |
2912 | } | |
2913 | } | |
2914 | spin_unlock_bh(&addrconf_hash_lock); | |
2915 | } | |
2916 | ||
1da177e4 LT |
2917 | write_lock_bh(&idev->lock); |
2918 | ||
bcdd553f | 2919 | /* Step 2: clear flags for stateless addrconf */ |
439e2385 | 2920 | if (!how) |
3c21edbd | 2921 | idev->if_flags &= ~(IF_RS_SENT|IF_RA_RCVD|IF_READY); |
1da177e4 | 2922 | |
1da177e4 | 2923 | #ifdef CONFIG_IPV6_PRIVACY |
439e2385 | 2924 | if (how && del_timer(&idev->regen_timer)) |
1da177e4 LT |
2925 | in6_dev_put(idev); |
2926 | ||
bcdd553f | 2927 | /* Step 3: clear tempaddr list */ |
372e6c8f | 2928 | while (!list_empty(&idev->tempaddr_list)) { |
2929 | ifa = list_first_entry(&idev->tempaddr_list, | |
2930 | struct inet6_ifaddr, tmp_list); | |
2931 | list_del(&ifa->tmp_list); | |
1da177e4 LT |
2932 | write_unlock_bh(&idev->lock); |
2933 | spin_lock_bh(&ifa->lock); | |
2934 | ||
2935 | if (ifa->ifpub) { | |
2936 | in6_ifa_put(ifa->ifpub); | |
2937 | ifa->ifpub = NULL; | |
2938 | } | |
2939 | spin_unlock_bh(&ifa->lock); | |
2940 | in6_ifa_put(ifa); | |
2941 | write_lock_bh(&idev->lock); | |
2942 | } | |
2943 | #endif | |
8f37ada5 | 2944 | |
502a2ffd | 2945 | while (!list_empty(&idev->addr_list)) { |
2946 | ifa = list_first_entry(&idev->addr_list, | |
2947 | struct inet6_ifaddr, if_list); | |
84e8b803 | 2948 | addrconf_del_timer(ifa); |
2949 | ||
73a8bd74 | 2950 | list_del(&ifa->if_list); |
84e8b803 | 2951 | |
73a8bd74 | 2952 | write_unlock_bh(&idev->lock); |
84e8b803 | 2953 | |
73a8bd74 DM |
2954 | spin_lock_bh(&ifa->state_lock); |
2955 | state = ifa->state; | |
2956 | ifa->state = INET6_IFADDR_STATE_DEAD; | |
2957 | spin_unlock_bh(&ifa->state_lock); | |
9d82ca98 | 2958 | |
73a8bd74 DM |
2959 | if (state != INET6_IFADDR_STATE_DEAD) { |
2960 | __ipv6_ifa_notify(RTM_DELADDR, ifa); | |
2961 | atomic_notifier_call_chain(&inet6addr_chain, NETDEV_DOWN, ifa); | |
27bdb2ab | 2962 | } |
73a8bd74 | 2963 | in6_ifa_put(ifa); |
8f37ada5 | 2964 | |
73a8bd74 DM |
2965 | write_lock_bh(&idev->lock); |
2966 | } | |
8f37ada5 | 2967 | |
1da177e4 LT |
2968 | write_unlock_bh(&idev->lock); |
2969 | ||
2970 | /* Step 5: Discard multicast list */ | |
439e2385 | 2971 | if (how) |
1da177e4 LT |
2972 | ipv6_mc_destroy_dev(idev); |
2973 | else | |
2974 | ipv6_mc_down(idev); | |
2975 | ||
1da177e4 | 2976 | idev->tstamp = jiffies; |
1ab1457c | 2977 | |
bcdd553f | 2978 | /* Last: Shot the device (if unregistered) */ |
439e2385 | 2979 | if (how) { |
408c4768 | 2980 | addrconf_sysctl_unregister(idev); |
1da177e4 LT |
2981 | neigh_parms_release(&nd_tbl, idev->nd_parms); |
2982 | neigh_ifdown(&nd_tbl, dev); | |
2983 | in6_dev_put(idev); | |
2984 | } | |
2985 | return 0; | |
2986 | } | |
2987 | ||
2988 | static void addrconf_rs_timer(unsigned long data) | |
2989 | { | |
2990 | struct inet6_ifaddr *ifp = (struct inet6_ifaddr *) data; | |
5b2a1953 | 2991 | struct inet6_dev *idev = ifp->idev; |
1da177e4 | 2992 | |
5b2a1953 | 2993 | read_lock(&idev->lock); |
2994 | if (idev->dead || !(idev->if_flags & IF_READY)) | |
1da177e4 LT |
2995 | goto out; |
2996 | ||
9ba2add3 | 2997 | if (!ipv6_accept_ra(idev)) |
5b2a1953 | 2998 | goto out; |
2999 | ||
3000 | /* Announcement received after solicitation was sent */ | |
3001 | if (idev->if_flags & IF_RA_RCVD) | |
1da177e4 | 3002 | goto out; |
1da177e4 LT |
3003 | |
3004 | spin_lock(&ifp->lock); | |
5b2a1953 | 3005 | if (ifp->probes++ < idev->cnf.rtr_solicits) { |
1da177e4 LT |
3006 | /* The wait after the last probe can be shorter */ |
3007 | addrconf_mod_timer(ifp, AC_RS, | |
5b2a1953 | 3008 | (ifp->probes == idev->cnf.rtr_solicits) ? |
3009 | idev->cnf.rtr_solicit_delay : | |
3010 | idev->cnf.rtr_solicit_interval); | |
1da177e4 LT |
3011 | spin_unlock(&ifp->lock); |
3012 | ||
5b2a1953 | 3013 | ndisc_send_rs(idev->dev, &ifp->addr, &in6addr_linklocal_allrouters); |
1da177e4 LT |
3014 | } else { |
3015 | spin_unlock(&ifp->lock); | |
3016 | /* | |
3017 | * Note: we do not support deprecated "all on-link" | |
3018 | * assumption any longer. | |
3019 | */ | |
91df42be | 3020 | pr_debug("%s: no IPv6 routers present\n", idev->dev->name); |
1da177e4 LT |
3021 | } |
3022 | ||
3023 | out: | |
5b2a1953 | 3024 | read_unlock(&idev->lock); |
1da177e4 LT |
3025 | in6_ifa_put(ifp); |
3026 | } | |
3027 | ||
3028 | /* | |
3029 | * Duplicate Address Detection | |
3030 | */ | |
3c21edbd YH |
3031 | static void addrconf_dad_kick(struct inet6_ifaddr *ifp) |
3032 | { | |
3033 | unsigned long rand_num; | |
3034 | struct inet6_dev *idev = ifp->idev; | |
3035 | ||
95c385b4 NH |
3036 | if (ifp->flags & IFA_F_OPTIMISTIC) |
3037 | rand_num = 0; | |
3038 | else | |
3039 | rand_num = net_random() % (idev->cnf.rtr_solicit_delay ? : 1); | |
3040 | ||
3c21edbd YH |
3041 | ifp->probes = idev->cnf.dad_transmits; |
3042 | addrconf_mod_timer(ifp, AC_DAD, rand_num); | |
3043 | } | |
3044 | ||
cf22f9a2 | 3045 | static void addrconf_dad_start(struct inet6_ifaddr *ifp) |
1da177e4 LT |
3046 | { |
3047 | struct inet6_dev *idev = ifp->idev; | |
3048 | struct net_device *dev = idev->dev; | |
1da177e4 LT |
3049 | |
3050 | addrconf_join_solict(dev, &ifp->addr); | |
3051 | ||
1da177e4 | 3052 | net_srandom(ifp->addr.s6_addr32[3]); |
1da177e4 LT |
3053 | |
3054 | read_lock_bh(&idev->lock); | |
622ccdf1 | 3055 | spin_lock(&ifp->lock); |
e9d3e084 | 3056 | if (ifp->state == INET6_IFADDR_STATE_DEAD) |
1da177e4 | 3057 | goto out; |
1da177e4 LT |
3058 | |
3059 | if (dev->flags&(IFF_NOARP|IFF_LOOPBACK) || | |
1b34be74 | 3060 | idev->cnf.accept_dad < 1 || |
55ebaef1 NT |
3061 | !(ifp->flags&IFA_F_TENTATIVE) || |
3062 | ifp->flags & IFA_F_NODAD) { | |
cc411d0b | 3063 | ifp->flags &= ~(IFA_F_TENTATIVE|IFA_F_OPTIMISTIC|IFA_F_DADFAILED); |
21809faf | 3064 | spin_unlock(&ifp->lock); |
1da177e4 LT |
3065 | read_unlock_bh(&idev->lock); |
3066 | ||
3067 | addrconf_dad_completed(ifp); | |
3068 | return; | |
3069 | } | |
3070 | ||
6732bade | 3071 | if (!(idev->if_flags & IF_READY)) { |
21809faf | 3072 | spin_unlock(&ifp->lock); |
6732bade | 3073 | read_unlock_bh(&idev->lock); |
3c21edbd | 3074 | /* |
590a9887 | 3075 | * If the device is not ready: |
3c21edbd YH |
3076 | * - keep it tentative if it is a permanent address. |
3077 | * - otherwise, kill it. | |
3078 | */ | |
3079 | in6_ifa_hold(ifp); | |
cc411d0b | 3080 | addrconf_dad_stop(ifp, 0); |
6732bade | 3081 | return; |
3c21edbd | 3082 | } |
95c385b4 NH |
3083 | |
3084 | /* | |
3085 | * Optimistic nodes can start receiving | |
3086 | * Frames right away | |
3087 | */ | |
e21e8467 | 3088 | if (ifp->flags & IFA_F_OPTIMISTIC) |
95c385b4 NH |
3089 | ip6_ins_rt(ifp->rt); |
3090 | ||
6732bade | 3091 | addrconf_dad_kick(ifp); |
1da177e4 | 3092 | out: |
622ccdf1 | 3093 | spin_unlock(&ifp->lock); |
1da177e4 LT |
3094 | read_unlock_bh(&idev->lock); |
3095 | } | |
3096 | ||
3097 | static void addrconf_dad_timer(unsigned long data) | |
3098 | { | |
3099 | struct inet6_ifaddr *ifp = (struct inet6_ifaddr *) data; | |
3100 | struct inet6_dev *idev = ifp->idev; | |
1da177e4 LT |
3101 | struct in6_addr mcaddr; |
3102 | ||
f2344a13 HX |
3103 | if (!ifp->probes && addrconf_dad_end(ifp)) |
3104 | goto out; | |
3105 | ||
122e4519 | 3106 | read_lock(&idev->lock); |
3107 | if (idev->dead || !(idev->if_flags & IF_READY)) { | |
3108 | read_unlock(&idev->lock); | |
1da177e4 LT |
3109 | goto out; |
3110 | } | |
21809faf | 3111 | |
3112 | spin_lock(&ifp->lock); | |
622ccdf1 HX |
3113 | if (ifp->state == INET6_IFADDR_STATE_DEAD) { |
3114 | spin_unlock(&ifp->lock); | |
3115 | read_unlock(&idev->lock); | |
3116 | goto out; | |
3117 | } | |
3118 | ||
1da177e4 LT |
3119 | if (ifp->probes == 0) { |
3120 | /* | |
3121 | * DAD was successful | |
3122 | */ | |
3123 | ||
cc411d0b | 3124 | ifp->flags &= ~(IFA_F_TENTATIVE|IFA_F_OPTIMISTIC|IFA_F_DADFAILED); |
21809faf | 3125 | spin_unlock(&ifp->lock); |
122e4519 | 3126 | read_unlock(&idev->lock); |
1da177e4 LT |
3127 | |
3128 | addrconf_dad_completed(ifp); | |
3129 | ||
3130 | goto out; | |
3131 | } | |
3132 | ||
3133 | ifp->probes--; | |
3134 | addrconf_mod_timer(ifp, AC_DAD, ifp->idev->nd_parms->retrans_time); | |
21809faf | 3135 | spin_unlock(&ifp->lock); |
122e4519 | 3136 | read_unlock(&idev->lock); |
1da177e4 LT |
3137 | |
3138 | /* send a neighbour solicitation for our addr */ | |
1da177e4 | 3139 | addrconf_addr_solict_mult(&ifp->addr, &mcaddr); |
d7aabf22 | 3140 | ndisc_send_ns(ifp->idev->dev, NULL, &ifp->addr, &mcaddr, &in6addr_any); |
1da177e4 LT |
3141 | out: |
3142 | in6_ifa_put(ifp); | |
3143 | } | |
3144 | ||
3145 | static void addrconf_dad_completed(struct inet6_ifaddr *ifp) | |
3146 | { | |
e21e8467 | 3147 | struct net_device *dev = ifp->idev->dev; |
1da177e4 LT |
3148 | |
3149 | /* | |
3150 | * Configure the address for reception. Now it is valid. | |
3151 | */ | |
3152 | ||
3153 | ipv6_ifa_notify(RTM_NEWADDR, ifp); | |
3154 | ||
026359bc TA |
3155 | /* If added prefix is link local and we are prepared to process |
3156 | router advertisements, start sending router solicitations. | |
1da177e4 LT |
3157 | */ |
3158 | ||
aeaf6e9d | 3159 | if (ipv6_accept_ra(ifp->idev) && |
1da177e4 LT |
3160 | ifp->idev->cnf.rtr_solicits > 0 && |
3161 | (dev->flags&IFF_LOOPBACK) == 0 && | |
3162 | (ipv6_addr_type(&ifp->addr) & IPV6_ADDR_LINKLOCAL)) { | |
1da177e4 LT |
3163 | /* |
3164 | * If a host as already performed a random delay | |
3165 | * [...] as part of DAD [...] there is no need | |
3166 | * to delay again before sending the first RS | |
3167 | */ | |
f3ee4010 | 3168 | ndisc_send_rs(ifp->idev->dev, &ifp->addr, &in6addr_linklocal_allrouters); |
1da177e4 LT |
3169 | |
3170 | spin_lock_bh(&ifp->lock); | |
3171 | ifp->probes = 1; | |
3172 | ifp->idev->if_flags |= IF_RS_SENT; | |
3173 | addrconf_mod_timer(ifp, AC_RS, ifp->idev->cnf.rtr_solicit_interval); | |
3174 | spin_unlock_bh(&ifp->lock); | |
3175 | } | |
3176 | } | |
3177 | ||
e21e8467 SH |
3178 | static void addrconf_dad_run(struct inet6_dev *idev) |
3179 | { | |
c5e33bdd YH |
3180 | struct inet6_ifaddr *ifp; |
3181 | ||
3182 | read_lock_bh(&idev->lock); | |
502a2ffd | 3183 | list_for_each_entry(ifp, &idev->addr_list, if_list) { |
21809faf | 3184 | spin_lock(&ifp->lock); |
f2344a13 HX |
3185 | if (ifp->flags & IFA_F_TENTATIVE && |
3186 | ifp->state == INET6_IFADDR_STATE_DAD) | |
3187 | addrconf_dad_kick(ifp); | |
21809faf | 3188 | spin_unlock(&ifp->lock); |
c5e33bdd YH |
3189 | } |
3190 | read_unlock_bh(&idev->lock); | |
3191 | } | |
3192 | ||
1da177e4 LT |
3193 | #ifdef CONFIG_PROC_FS |
3194 | struct if6_iter_state { | |
3c40090a | 3195 | struct seq_net_private p; |
1da177e4 | 3196 | int bucket; |
1d578303 | 3197 | int offset; |
1da177e4 LT |
3198 | }; |
3199 | ||
1d578303 | 3200 | static struct inet6_ifaddr *if6_get_first(struct seq_file *seq, loff_t pos) |
1da177e4 LT |
3201 | { |
3202 | struct inet6_ifaddr *ifa = NULL; | |
3203 | struct if6_iter_state *state = seq->private; | |
1218854a | 3204 | struct net *net = seq_file_net(seq); |
1d578303 | 3205 | int p = 0; |
1da177e4 | 3206 | |
1d578303 MM |
3207 | /* initial bucket if pos is 0 */ |
3208 | if (pos == 0) { | |
3209 | state->bucket = 0; | |
3210 | state->offset = 0; | |
3211 | } | |
3212 | ||
3213 | for (; state->bucket < IN6_ADDR_HSIZE; ++state->bucket) { | |
c2e21293 | 3214 | struct hlist_node *n; |
4f70ecca | 3215 | hlist_for_each_entry_rcu_bh(ifa, n, &inet6_addr_lst[state->bucket], |
1d578303 | 3216 | addr_lst) { |
9f0d3c27 ED |
3217 | if (!net_eq(dev_net(ifa->idev->dev), net)) |
3218 | continue; | |
1d578303 MM |
3219 | /* sync with offset */ |
3220 | if (p < state->offset) { | |
3221 | p++; | |
3222 | continue; | |
3223 | } | |
3224 | state->offset++; | |
9f0d3c27 | 3225 | return ifa; |
1d578303 MM |
3226 | } |
3227 | ||
3228 | /* prepare for next bucket */ | |
3229 | state->offset = 0; | |
3230 | p = 0; | |
1da177e4 | 3231 | } |
c2e21293 | 3232 | return NULL; |
1da177e4 LT |
3233 | } |
3234 | ||
c2e21293 | 3235 | static struct inet6_ifaddr *if6_get_next(struct seq_file *seq, |
3236 | struct inet6_ifaddr *ifa) | |
1da177e4 LT |
3237 | { |
3238 | struct if6_iter_state *state = seq->private; | |
1218854a | 3239 | struct net *net = seq_file_net(seq); |
c2e21293 | 3240 | struct hlist_node *n = &ifa->addr_lst; |
1da177e4 | 3241 | |
1d578303 | 3242 | hlist_for_each_entry_continue_rcu_bh(ifa, n, addr_lst) { |
9f0d3c27 ED |
3243 | if (!net_eq(dev_net(ifa->idev->dev), net)) |
3244 | continue; | |
1d578303 | 3245 | state->offset++; |
9f0d3c27 | 3246 | return ifa; |
1d578303 | 3247 | } |
3c40090a | 3248 | |
c2e21293 | 3249 | while (++state->bucket < IN6_ADDR_HSIZE) { |
1d578303 | 3250 | state->offset = 0; |
4f70ecca | 3251 | hlist_for_each_entry_rcu_bh(ifa, n, |
c2e21293 | 3252 | &inet6_addr_lst[state->bucket], addr_lst) { |
9f0d3c27 ED |
3253 | if (!net_eq(dev_net(ifa->idev->dev), net)) |
3254 | continue; | |
1d578303 | 3255 | state->offset++; |
9f0d3c27 | 3256 | return ifa; |
c2e21293 | 3257 | } |
1da177e4 | 3258 | } |
3c40090a | 3259 | |
c2e21293 | 3260 | return NULL; |
1da177e4 LT |
3261 | } |
3262 | ||
1da177e4 | 3263 | static void *if6_seq_start(struct seq_file *seq, loff_t *pos) |
4f70ecca | 3264 | __acquires(rcu_bh) |
1da177e4 | 3265 | { |
5c578aed | 3266 | rcu_read_lock_bh(); |
1d578303 | 3267 | return if6_get_first(seq, *pos); |
1da177e4 LT |
3268 | } |
3269 | ||
3270 | static void *if6_seq_next(struct seq_file *seq, void *v, loff_t *pos) | |
3271 | { | |
3272 | struct inet6_ifaddr *ifa; | |
3273 | ||
3274 | ifa = if6_get_next(seq, v); | |
3275 | ++*pos; | |
3276 | return ifa; | |
3277 | } | |
3278 | ||
3279 | static void if6_seq_stop(struct seq_file *seq, void *v) | |
4f70ecca | 3280 | __releases(rcu_bh) |
1da177e4 | 3281 | { |
5c578aed | 3282 | rcu_read_unlock_bh(); |
1da177e4 LT |
3283 | } |
3284 | ||
3285 | static int if6_seq_show(struct seq_file *seq, void *v) | |
3286 | { | |
3287 | struct inet6_ifaddr *ifp = (struct inet6_ifaddr *)v; | |
4b7a4274 | 3288 | seq_printf(seq, "%pi6 %02x %02x %02x %02x %8s\n", |
b071195d | 3289 | &ifp->addr, |
1da177e4 LT |
3290 | ifp->idev->dev->ifindex, |
3291 | ifp->prefix_len, | |
3292 | ifp->scope, | |
3293 | ifp->flags, | |
3294 | ifp->idev->dev->name); | |
3295 | return 0; | |
3296 | } | |
3297 | ||
56b3d975 | 3298 | static const struct seq_operations if6_seq_ops = { |
1da177e4 LT |
3299 | .start = if6_seq_start, |
3300 | .next = if6_seq_next, | |
3301 | .show = if6_seq_show, | |
3302 | .stop = if6_seq_stop, | |
3303 | }; | |
3304 | ||
3305 | static int if6_seq_open(struct inode *inode, struct file *file) | |
3306 | { | |
3c40090a DL |
3307 | return seq_open_net(inode, file, &if6_seq_ops, |
3308 | sizeof(struct if6_iter_state)); | |
1da177e4 LT |
3309 | } |
3310 | ||
9a32144e | 3311 | static const struct file_operations if6_fops = { |
1da177e4 LT |
3312 | .owner = THIS_MODULE, |
3313 | .open = if6_seq_open, | |
3314 | .read = seq_read, | |
3315 | .llseek = seq_lseek, | |
3c40090a | 3316 | .release = seq_release_net, |
1da177e4 LT |
3317 | }; |
3318 | ||
2c8c1e72 | 3319 | static int __net_init if6_proc_net_init(struct net *net) |
1da177e4 | 3320 | { |
3c40090a | 3321 | if (!proc_net_fops_create(net, "if_inet6", S_IRUGO, &if6_fops)) |
1da177e4 LT |
3322 | return -ENOMEM; |
3323 | return 0; | |
3324 | } | |
3325 | ||
2c8c1e72 | 3326 | static void __net_exit if6_proc_net_exit(struct net *net) |
3c40090a DL |
3327 | { |
3328 | proc_net_remove(net, "if_inet6"); | |
3329 | } | |
3330 | ||
3331 | static struct pernet_operations if6_proc_net_ops = { | |
3332 | .init = if6_proc_net_init, | |
3333 | .exit = if6_proc_net_exit, | |
3334 | }; | |
3335 | ||
3336 | int __init if6_proc_init(void) | |
3337 | { | |
3338 | return register_pernet_subsys(&if6_proc_net_ops); | |
3339 | } | |
3340 | ||
1da177e4 LT |
3341 | void if6_proc_exit(void) |
3342 | { | |
3c40090a | 3343 | unregister_pernet_subsys(&if6_proc_net_ops); |
1da177e4 LT |
3344 | } |
3345 | #endif /* CONFIG_PROC_FS */ | |
3346 | ||
07a93626 | 3347 | #if IS_ENABLED(CONFIG_IPV6_MIP6) |
3b9f9a1c | 3348 | /* Check if address is a home address configured on any interface. */ |
b71d1d42 | 3349 | int ipv6_chk_home_addr(struct net *net, const struct in6_addr *addr) |
3b9f9a1c NT |
3350 | { |
3351 | int ret = 0; | |
c2e21293 | 3352 | struct inet6_ifaddr *ifp = NULL; |
3353 | struct hlist_node *n; | |
ddbe5032 | 3354 | unsigned int hash = inet6_addr_hash(addr); |
c2e21293 | 3355 | |
5c578aed | 3356 | rcu_read_lock_bh(); |
4f70ecca | 3357 | hlist_for_each_entry_rcu_bh(ifp, n, &inet6_addr_lst[hash], addr_lst) { |
878628fb | 3358 | if (!net_eq(dev_net(ifp->idev->dev), net)) |
389f6612 | 3359 | continue; |
caad295f | 3360 | if (ipv6_addr_equal(&ifp->addr, addr) && |
3b9f9a1c NT |
3361 | (ifp->flags & IFA_F_HOMEADDRESS)) { |
3362 | ret = 1; | |
3363 | break; | |
3364 | } | |
3365 | } | |
5c578aed | 3366 | rcu_read_unlock_bh(); |
3b9f9a1c NT |
3367 | return ret; |
3368 | } | |
3369 | #endif | |
3370 | ||
1da177e4 LT |
3371 | /* |
3372 | * Periodic address status verification | |
3373 | */ | |
3374 | ||
3375 | static void addrconf_verify(unsigned long foo) | |
3376 | { | |
b2db7564 | 3377 | unsigned long now, next, next_sec, next_sched; |
1da177e4 | 3378 | struct inet6_ifaddr *ifp; |
c2e21293 | 3379 | struct hlist_node *node; |
1da177e4 LT |
3380 | int i; |
3381 | ||
5c578aed | 3382 | rcu_read_lock_bh(); |
3383 | spin_lock(&addrconf_verify_lock); | |
1da177e4 | 3384 | now = jiffies; |
b2db7564 | 3385 | next = round_jiffies_up(now + ADDR_CHECK_FREQUENCY); |
1da177e4 LT |
3386 | |
3387 | del_timer(&addr_chk_timer); | |
3388 | ||
bcdd553f | 3389 | for (i = 0; i < IN6_ADDR_HSIZE; i++) { |
1da177e4 | 3390 | restart: |
4f70ecca | 3391 | hlist_for_each_entry_rcu_bh(ifp, node, |
5c578aed | 3392 | &inet6_addr_lst[i], addr_lst) { |
1da177e4 | 3393 | unsigned long age; |
1da177e4 LT |
3394 | |
3395 | if (ifp->flags & IFA_F_PERMANENT) | |
3396 | continue; | |
3397 | ||
3398 | spin_lock(&ifp->lock); | |
b2db7564 YH |
3399 | /* We try to batch several events at once. */ |
3400 | age = (now - ifp->tstamp + ADDRCONF_TIMER_FUZZ_MINUS) / HZ; | |
1da177e4 | 3401 | |
8f27ebb9 YH |
3402 | if (ifp->valid_lft != INFINITY_LIFE_TIME && |
3403 | age >= ifp->valid_lft) { | |
1da177e4 LT |
3404 | spin_unlock(&ifp->lock); |
3405 | in6_ifa_hold(ifp); | |
1da177e4 LT |
3406 | ipv6_del_addr(ifp); |
3407 | goto restart; | |
8f27ebb9 YH |
3408 | } else if (ifp->prefered_lft == INFINITY_LIFE_TIME) { |
3409 | spin_unlock(&ifp->lock); | |
3410 | continue; | |
1da177e4 | 3411 | } else if (age >= ifp->prefered_lft) { |
a1ed0526 | 3412 | /* jiffies - ifp->tstamp > age >= ifp->prefered_lft */ |
1da177e4 LT |
3413 | int deprecate = 0; |
3414 | ||
3415 | if (!(ifp->flags&IFA_F_DEPRECATED)) { | |
3416 | deprecate = 1; | |
3417 | ifp->flags |= IFA_F_DEPRECATED; | |
3418 | } | |
3419 | ||
3420 | if (time_before(ifp->tstamp + ifp->valid_lft * HZ, next)) | |
3421 | next = ifp->tstamp + ifp->valid_lft * HZ; | |
3422 | ||
3423 | spin_unlock(&ifp->lock); | |
3424 | ||
3425 | if (deprecate) { | |
3426 | in6_ifa_hold(ifp); | |
1da177e4 LT |
3427 | |
3428 | ipv6_ifa_notify(0, ifp); | |
3429 | in6_ifa_put(ifp); | |
3430 | goto restart; | |
3431 | } | |
3432 | #ifdef CONFIG_IPV6_PRIVACY | |
3433 | } else if ((ifp->flags&IFA_F_TEMPORARY) && | |
3434 | !(ifp->flags&IFA_F_TENTATIVE)) { | |
88949cf4 | 3435 | unsigned long regen_advance = ifp->idev->cnf.regen_max_retry * |
3436 | ifp->idev->cnf.dad_transmits * | |
3437 | ifp->idev->nd_parms->retrans_time / HZ; | |
3438 | ||
1da177e4 LT |
3439 | if (age >= ifp->prefered_lft - regen_advance) { |
3440 | struct inet6_ifaddr *ifpub = ifp->ifpub; | |
3441 | if (time_before(ifp->tstamp + ifp->prefered_lft * HZ, next)) | |
3442 | next = ifp->tstamp + ifp->prefered_lft * HZ; | |
3443 | if (!ifp->regen_count && ifpub) { | |
3444 | ifp->regen_count++; | |
3445 | in6_ifa_hold(ifp); | |
3446 | in6_ifa_hold(ifpub); | |
3447 | spin_unlock(&ifp->lock); | |
5c578aed | 3448 | |
291d809b HY |
3449 | spin_lock(&ifpub->lock); |
3450 | ifpub->regen_count = 0; | |
3451 | spin_unlock(&ifpub->lock); | |
1da177e4 LT |
3452 | ipv6_create_tempaddr(ifpub, ifp); |
3453 | in6_ifa_put(ifpub); | |
3454 | in6_ifa_put(ifp); | |
3455 | goto restart; | |
3456 | } | |
3457 | } else if (time_before(ifp->tstamp + ifp->prefered_lft * HZ - regen_advance * HZ, next)) | |
3458 | next = ifp->tstamp + ifp->prefered_lft * HZ - regen_advance * HZ; | |
3459 | spin_unlock(&ifp->lock); | |
3460 | #endif | |
3461 | } else { | |
3462 | /* ifp->prefered_lft <= ifp->valid_lft */ | |
3463 | if (time_before(ifp->tstamp + ifp->prefered_lft * HZ, next)) | |
3464 | next = ifp->tstamp + ifp->prefered_lft * HZ; | |
3465 | spin_unlock(&ifp->lock); | |
3466 | } | |
3467 | } | |
1da177e4 LT |
3468 | } |
3469 | ||
b2db7564 YH |
3470 | next_sec = round_jiffies_up(next); |
3471 | next_sched = next; | |
3472 | ||
3473 | /* If rounded timeout is accurate enough, accept it. */ | |
3474 | if (time_before(next_sec, next + ADDRCONF_TIMER_FUZZ)) | |
3475 | next_sched = next_sec; | |
3476 | ||
3477 | /* And minimum interval is ADDRCONF_TIMER_FUZZ_MAX. */ | |
3478 | if (time_before(next_sched, jiffies + ADDRCONF_TIMER_FUZZ_MAX)) | |
3479 | next_sched = jiffies + ADDRCONF_TIMER_FUZZ_MAX; | |
3480 | ||
3481 | ADBG((KERN_DEBUG "now = %lu, schedule = %lu, rounded schedule = %lu => %lu\n", | |
3482 | now, next, next_sec, next_sched)); | |
3483 | ||
3484 | addr_chk_timer.expires = next_sched; | |
1da177e4 | 3485 | add_timer(&addr_chk_timer); |
5c578aed | 3486 | spin_unlock(&addrconf_verify_lock); |
3487 | rcu_read_unlock_bh(); | |
1da177e4 LT |
3488 | } |
3489 | ||
461d8837 TG |
3490 | static struct in6_addr *extract_addr(struct nlattr *addr, struct nlattr *local) |
3491 | { | |
3492 | struct in6_addr *pfx = NULL; | |
3493 | ||
3494 | if (addr) | |
3495 | pfx = nla_data(addr); | |
3496 | ||
3497 | if (local) { | |
3498 | if (pfx && nla_memcmp(local, pfx, sizeof(*pfx))) | |
3499 | pfx = NULL; | |
3500 | else | |
3501 | pfx = nla_data(local); | |
3502 | } | |
3503 | ||
3504 | return pfx; | |
3505 | } | |
3506 | ||
ef7c79ed | 3507 | static const struct nla_policy ifa_ipv6_policy[IFA_MAX+1] = { |
461d8837 TG |
3508 | [IFA_ADDRESS] = { .len = sizeof(struct in6_addr) }, |
3509 | [IFA_LOCAL] = { .len = sizeof(struct in6_addr) }, | |
3510 | [IFA_CACHEINFO] = { .len = sizeof(struct ifa_cacheinfo) }, | |
3511 | }; | |
3512 | ||
1da177e4 LT |
3513 | static int |
3514 | inet6_rtm_deladdr(struct sk_buff *skb, struct nlmsghdr *nlh, void *arg) | |
3515 | { | |
3b1e0a65 | 3516 | struct net *net = sock_net(skb->sk); |
b933f716 TG |
3517 | struct ifaddrmsg *ifm; |
3518 | struct nlattr *tb[IFA_MAX+1]; | |
1da177e4 | 3519 | struct in6_addr *pfx; |
b933f716 | 3520 | int err; |
1da177e4 | 3521 | |
b933f716 TG |
3522 | err = nlmsg_parse(nlh, sizeof(*ifm), tb, IFA_MAX, ifa_ipv6_policy); |
3523 | if (err < 0) | |
3524 | return err; | |
3525 | ||
3526 | ifm = nlmsg_data(nlh); | |
3527 | pfx = extract_addr(tb[IFA_ADDRESS], tb[IFA_LOCAL]); | |
1da177e4 LT |
3528 | if (pfx == NULL) |
3529 | return -EINVAL; | |
3530 | ||
af284937 | 3531 | return inet6_addr_del(net, ifm->ifa_index, pfx, ifm->ifa_prefixlen); |
1da177e4 LT |
3532 | } |
3533 | ||
55ebaef1 NT |
3534 | static int inet6_addr_modify(struct inet6_ifaddr *ifp, u8 ifa_flags, |
3535 | u32 prefered_lft, u32 valid_lft) | |
081bba5b | 3536 | { |
6f704992 YH |
3537 | u32 flags; |
3538 | clock_t expires; | |
4bed72e4 | 3539 | unsigned long timeout; |
46d48046 | 3540 | |
081bba5b NT |
3541 | if (!valid_lft || (prefered_lft > valid_lft)) |
3542 | return -EINVAL; | |
3543 | ||
4bed72e4 YH |
3544 | timeout = addrconf_timeout_fixup(valid_lft, HZ); |
3545 | if (addrconf_finite_timeout(timeout)) { | |
3546 | expires = jiffies_to_clock_t(timeout * HZ); | |
3547 | valid_lft = timeout; | |
6f704992 | 3548 | flags = RTF_EXPIRES; |
4bed72e4 YH |
3549 | } else { |
3550 | expires = 0; | |
3551 | flags = 0; | |
3552 | ifa_flags |= IFA_F_PERMANENT; | |
6f704992 | 3553 | } |
081bba5b | 3554 | |
4bed72e4 YH |
3555 | timeout = addrconf_timeout_fixup(prefered_lft, HZ); |
3556 | if (addrconf_finite_timeout(timeout)) { | |
3557 | if (timeout == 0) | |
3558 | ifa_flags |= IFA_F_DEPRECATED; | |
3559 | prefered_lft = timeout; | |
3560 | } | |
081bba5b NT |
3561 | |
3562 | spin_lock_bh(&ifp->lock); | |
3b9f9a1c | 3563 | ifp->flags = (ifp->flags & ~(IFA_F_DEPRECATED | IFA_F_PERMANENT | IFA_F_NODAD | IFA_F_HOMEADDRESS)) | ifa_flags; |
081bba5b NT |
3564 | ifp->tstamp = jiffies; |
3565 | ifp->valid_lft = valid_lft; | |
3566 | ifp->prefered_lft = prefered_lft; | |
3567 | ||
3568 | spin_unlock_bh(&ifp->lock); | |
3569 | if (!(ifp->flags&IFA_F_TENTATIVE)) | |
3570 | ipv6_ifa_notify(0, ifp); | |
081bba5b | 3571 | |
46d48046 | 3572 | addrconf_prefix_route(&ifp->addr, ifp->prefix_len, ifp->idev->dev, |
6f704992 | 3573 | expires, flags); |
081bba5b NT |
3574 | addrconf_verify(0); |
3575 | ||
3576 | return 0; | |
3577 | } | |
3578 | ||
1da177e4 LT |
3579 | static int |
3580 | inet6_rtm_newaddr(struct sk_buff *skb, struct nlmsghdr *nlh, void *arg) | |
3581 | { | |
3b1e0a65 | 3582 | struct net *net = sock_net(skb->sk); |
461d8837 TG |
3583 | struct ifaddrmsg *ifm; |
3584 | struct nlattr *tb[IFA_MAX+1]; | |
1da177e4 | 3585 | struct in6_addr *pfx; |
7198f8ce TG |
3586 | struct inet6_ifaddr *ifa; |
3587 | struct net_device *dev; | |
55ebaef1 NT |
3588 | u32 valid_lft = INFINITY_LIFE_TIME, preferred_lft = INFINITY_LIFE_TIME; |
3589 | u8 ifa_flags; | |
461d8837 | 3590 | int err; |
1da177e4 | 3591 | |
461d8837 TG |
3592 | err = nlmsg_parse(nlh, sizeof(*ifm), tb, IFA_MAX, ifa_ipv6_policy); |
3593 | if (err < 0) | |
3594 | return err; | |
3595 | ||
3596 | ifm = nlmsg_data(nlh); | |
3597 | pfx = extract_addr(tb[IFA_ADDRESS], tb[IFA_LOCAL]); | |
1da177e4 LT |
3598 | if (pfx == NULL) |
3599 | return -EINVAL; | |
3600 | ||
461d8837 | 3601 | if (tb[IFA_CACHEINFO]) { |
0778769d | 3602 | struct ifa_cacheinfo *ci; |
461d8837 TG |
3603 | |
3604 | ci = nla_data(tb[IFA_CACHEINFO]); | |
0778769d | 3605 | valid_lft = ci->ifa_valid; |
461d8837 TG |
3606 | preferred_lft = ci->ifa_prefered; |
3607 | } else { | |
3608 | preferred_lft = INFINITY_LIFE_TIME; | |
3609 | valid_lft = INFINITY_LIFE_TIME; | |
0778769d NT |
3610 | } |
3611 | ||
af284937 | 3612 | dev = __dev_get_by_index(net, ifm->ifa_index); |
7198f8ce TG |
3613 | if (dev == NULL) |
3614 | return -ENODEV; | |
3615 | ||
55ebaef1 | 3616 | /* We ignore other flags so far. */ |
3b9f9a1c | 3617 | ifa_flags = ifm->ifa_flags & (IFA_F_NODAD | IFA_F_HOMEADDRESS); |
55ebaef1 | 3618 | |
1cab3da6 | 3619 | ifa = ipv6_get_ifaddr(net, pfx, dev, 1); |
7198f8ce TG |
3620 | if (ifa == NULL) { |
3621 | /* | |
3622 | * It would be best to check for !NLM_F_CREATE here but | |
3623 | * userspace alreay relies on not having to provide this. | |
3624 | */ | |
af284937 DL |
3625 | return inet6_addr_add(net, ifm->ifa_index, pfx, |
3626 | ifm->ifa_prefixlen, ifa_flags, | |
3627 | preferred_lft, valid_lft); | |
081bba5b NT |
3628 | } |
3629 | ||
7198f8ce TG |
3630 | if (nlh->nlmsg_flags & NLM_F_EXCL || |
3631 | !(nlh->nlmsg_flags & NLM_F_REPLACE)) | |
3632 | err = -EEXIST; | |
3633 | else | |
55ebaef1 | 3634 | err = inet6_addr_modify(ifa, ifa_flags, preferred_lft, valid_lft); |
7198f8ce TG |
3635 | |
3636 | in6_ifa_put(ifa); | |
3637 | ||
3638 | return err; | |
1da177e4 LT |
3639 | } |
3640 | ||
101bb229 TG |
3641 | static void put_ifaddrmsg(struct nlmsghdr *nlh, u8 prefixlen, u8 flags, |
3642 | u8 scope, int ifindex) | |
3643 | { | |
3644 | struct ifaddrmsg *ifm; | |
3645 | ||
3646 | ifm = nlmsg_data(nlh); | |
3647 | ifm->ifa_family = AF_INET6; | |
3648 | ifm->ifa_prefixlen = prefixlen; | |
3649 | ifm->ifa_flags = flags; | |
3650 | ifm->ifa_scope = scope; | |
3651 | ifm->ifa_index = ifindex; | |
3652 | } | |
3653 | ||
85486af0 TG |
3654 | static int put_cacheinfo(struct sk_buff *skb, unsigned long cstamp, |
3655 | unsigned long tstamp, u32 preferred, u32 valid) | |
3656 | { | |
3657 | struct ifa_cacheinfo ci; | |
3658 | ||
18a31e1e TG |
3659 | ci.cstamp = cstamp_delta(cstamp); |
3660 | ci.tstamp = cstamp_delta(tstamp); | |
85486af0 TG |
3661 | ci.ifa_prefered = preferred; |
3662 | ci.ifa_valid = valid; | |
3663 | ||
3664 | return nla_put(skb, IFA_CACHEINFO, sizeof(ci), &ci); | |
3665 | } | |
3666 | ||
101bb229 TG |
3667 | static inline int rt_scope(int ifa_scope) |
3668 | { | |
3669 | if (ifa_scope & IFA_HOST) | |
3670 | return RT_SCOPE_HOST; | |
3671 | else if (ifa_scope & IFA_LINK) | |
3672 | return RT_SCOPE_LINK; | |
3673 | else if (ifa_scope & IFA_SITE) | |
3674 | return RT_SCOPE_SITE; | |
3675 | else | |
3676 | return RT_SCOPE_UNIVERSE; | |
3677 | } | |
3678 | ||
0ab6803b TG |
3679 | static inline int inet6_ifaddr_msgsize(void) |
3680 | { | |
339bf98f TG |
3681 | return NLMSG_ALIGN(sizeof(struct ifaddrmsg)) |
3682 | + nla_total_size(16) /* IFA_ADDRESS */ | |
3683 | + nla_total_size(sizeof(struct ifa_cacheinfo)); | |
0ab6803b | 3684 | } |
c5396a31 | 3685 | |
1da177e4 | 3686 | static int inet6_fill_ifaddr(struct sk_buff *skb, struct inet6_ifaddr *ifa, |
15e47304 | 3687 | u32 portid, u32 seq, int event, unsigned int flags) |
1da177e4 | 3688 | { |
1da177e4 | 3689 | struct nlmsghdr *nlh; |
85486af0 | 3690 | u32 preferred, valid; |
1da177e4 | 3691 | |
15e47304 | 3692 | nlh = nlmsg_put(skb, portid, seq, event, sizeof(struct ifaddrmsg), flags); |
0ab6803b | 3693 | if (nlh == NULL) |
26932566 | 3694 | return -EMSGSIZE; |
0ab6803b | 3695 | |
101bb229 TG |
3696 | put_ifaddrmsg(nlh, ifa->prefix_len, ifa->flags, rt_scope(ifa->scope), |
3697 | ifa->idev->dev->ifindex); | |
3698 | ||
1da177e4 | 3699 | if (!(ifa->flags&IFA_F_PERMANENT)) { |
85486af0 TG |
3700 | preferred = ifa->prefered_lft; |
3701 | valid = ifa->valid_lft; | |
3702 | if (preferred != INFINITY_LIFE_TIME) { | |
1da177e4 | 3703 | long tval = (jiffies - ifa->tstamp)/HZ; |
a1faa698 JR |
3704 | if (preferred > tval) |
3705 | preferred -= tval; | |
3706 | else | |
3707 | preferred = 0; | |
f56619fc BH |
3708 | if (valid != INFINITY_LIFE_TIME) { |
3709 | if (valid > tval) | |
3710 | valid -= tval; | |
3711 | else | |
3712 | valid = 0; | |
3713 | } | |
1da177e4 LT |
3714 | } |
3715 | } else { | |
85486af0 TG |
3716 | preferred = INFINITY_LIFE_TIME; |
3717 | valid = INFINITY_LIFE_TIME; | |
3718 | } | |
3719 | ||
0ab6803b | 3720 | if (nla_put(skb, IFA_ADDRESS, 16, &ifa->addr) < 0 || |
26932566 PM |
3721 | put_cacheinfo(skb, ifa->cstamp, ifa->tstamp, preferred, valid) < 0) { |
3722 | nlmsg_cancel(skb, nlh); | |
3723 | return -EMSGSIZE; | |
3724 | } | |
1da177e4 | 3725 | |
0ab6803b | 3726 | return nlmsg_end(skb, nlh); |
1da177e4 LT |
3727 | } |
3728 | ||
3729 | static int inet6_fill_ifmcaddr(struct sk_buff *skb, struct ifmcaddr6 *ifmca, | |
15e47304 | 3730 | u32 portid, u32 seq, int event, u16 flags) |
1da177e4 | 3731 | { |
1da177e4 | 3732 | struct nlmsghdr *nlh; |
101bb229 TG |
3733 | u8 scope = RT_SCOPE_UNIVERSE; |
3734 | int ifindex = ifmca->idev->dev->ifindex; | |
3735 | ||
3736 | if (ipv6_addr_scope(&ifmca->mca_addr) & IFA_SITE) | |
3737 | scope = RT_SCOPE_SITE; | |
1da177e4 | 3738 | |
15e47304 | 3739 | nlh = nlmsg_put(skb, portid, seq, event, sizeof(struct ifaddrmsg), flags); |
0ab6803b | 3740 | if (nlh == NULL) |
26932566 | 3741 | return -EMSGSIZE; |
85486af0 | 3742 | |
0ab6803b TG |
3743 | put_ifaddrmsg(nlh, 128, IFA_F_PERMANENT, scope, ifindex); |
3744 | if (nla_put(skb, IFA_MULTICAST, 16, &ifmca->mca_addr) < 0 || | |
3745 | put_cacheinfo(skb, ifmca->mca_cstamp, ifmca->mca_tstamp, | |
26932566 PM |
3746 | INFINITY_LIFE_TIME, INFINITY_LIFE_TIME) < 0) { |
3747 | nlmsg_cancel(skb, nlh); | |
3748 | return -EMSGSIZE; | |
3749 | } | |
85486af0 | 3750 | |
0ab6803b | 3751 | return nlmsg_end(skb, nlh); |
1da177e4 LT |
3752 | } |
3753 | ||
3754 | static int inet6_fill_ifacaddr(struct sk_buff *skb, struct ifacaddr6 *ifaca, | |
15e47304 | 3755 | u32 portid, u32 seq, int event, unsigned int flags) |
1da177e4 | 3756 | { |
1da177e4 | 3757 | struct nlmsghdr *nlh; |
101bb229 TG |
3758 | u8 scope = RT_SCOPE_UNIVERSE; |
3759 | int ifindex = ifaca->aca_idev->dev->ifindex; | |
3760 | ||
3761 | if (ipv6_addr_scope(&ifaca->aca_addr) & IFA_SITE) | |
3762 | scope = RT_SCOPE_SITE; | |
1da177e4 | 3763 | |
15e47304 | 3764 | nlh = nlmsg_put(skb, portid, seq, event, sizeof(struct ifaddrmsg), flags); |
0ab6803b | 3765 | if (nlh == NULL) |
26932566 | 3766 | return -EMSGSIZE; |
85486af0 | 3767 | |
0ab6803b TG |
3768 | put_ifaddrmsg(nlh, 128, IFA_F_PERMANENT, scope, ifindex); |
3769 | if (nla_put(skb, IFA_ANYCAST, 16, &ifaca->aca_addr) < 0 || | |
3770 | put_cacheinfo(skb, ifaca->aca_cstamp, ifaca->aca_tstamp, | |
26932566 PM |
3771 | INFINITY_LIFE_TIME, INFINITY_LIFE_TIME) < 0) { |
3772 | nlmsg_cancel(skb, nlh); | |
3773 | return -EMSGSIZE; | |
3774 | } | |
1da177e4 | 3775 | |
0ab6803b | 3776 | return nlmsg_end(skb, nlh); |
1da177e4 LT |
3777 | } |
3778 | ||
e21e8467 | 3779 | enum addr_type_t { |
1da177e4 LT |
3780 | UNICAST_ADDR, |
3781 | MULTICAST_ADDR, | |
3782 | ANYCAST_ADDR, | |
3783 | }; | |
3784 | ||
234b27c3 ED |
3785 | /* called with rcu_read_lock() */ |
3786 | static int in6_dump_addrs(struct inet6_dev *idev, struct sk_buff *skb, | |
3787 | struct netlink_callback *cb, enum addr_type_t type, | |
3788 | int s_ip_idx, int *p_ip_idx) | |
3789 | { | |
234b27c3 ED |
3790 | struct ifmcaddr6 *ifmca; |
3791 | struct ifacaddr6 *ifaca; | |
3792 | int err = 1; | |
3793 | int ip_idx = *p_ip_idx; | |
3794 | ||
3795 | read_lock_bh(&idev->lock); | |
3796 | switch (type) { | |
502a2ffd | 3797 | case UNICAST_ADDR: { |
3798 | struct inet6_ifaddr *ifa; | |
3799 | ||
234b27c3 | 3800 | /* unicast address incl. temp addr */ |
502a2ffd | 3801 | list_for_each_entry(ifa, &idev->addr_list, if_list) { |
3802 | if (++ip_idx < s_ip_idx) | |
234b27c3 ED |
3803 | continue; |
3804 | err = inet6_fill_ifaddr(skb, ifa, | |
15e47304 | 3805 | NETLINK_CB(cb->skb).portid, |
234b27c3 ED |
3806 | cb->nlh->nlmsg_seq, |
3807 | RTM_NEWADDR, | |
3808 | NLM_F_MULTI); | |
3809 | if (err <= 0) | |
3810 | break; | |
3811 | } | |
3812 | break; | |
502a2ffd | 3813 | } |
234b27c3 ED |
3814 | case MULTICAST_ADDR: |
3815 | /* multicast address */ | |
3816 | for (ifmca = idev->mc_list; ifmca; | |
3817 | ifmca = ifmca->next, ip_idx++) { | |
3818 | if (ip_idx < s_ip_idx) | |
3819 | continue; | |
3820 | err = inet6_fill_ifmcaddr(skb, ifmca, | |
15e47304 | 3821 | NETLINK_CB(cb->skb).portid, |
234b27c3 ED |
3822 | cb->nlh->nlmsg_seq, |
3823 | RTM_GETMULTICAST, | |
3824 | NLM_F_MULTI); | |
3825 | if (err <= 0) | |
3826 | break; | |
3827 | } | |
3828 | break; | |
3829 | case ANYCAST_ADDR: | |
3830 | /* anycast address */ | |
3831 | for (ifaca = idev->ac_list; ifaca; | |
3832 | ifaca = ifaca->aca_next, ip_idx++) { | |
3833 | if (ip_idx < s_ip_idx) | |
3834 | continue; | |
3835 | err = inet6_fill_ifacaddr(skb, ifaca, | |
15e47304 | 3836 | NETLINK_CB(cb->skb).portid, |
234b27c3 ED |
3837 | cb->nlh->nlmsg_seq, |
3838 | RTM_GETANYCAST, | |
3839 | NLM_F_MULTI); | |
3840 | if (err <= 0) | |
3841 | break; | |
3842 | } | |
3843 | break; | |
3844 | default: | |
3845 | break; | |
3846 | } | |
3847 | read_unlock_bh(&idev->lock); | |
3848 | *p_ip_idx = ip_idx; | |
3849 | return err; | |
3850 | } | |
3851 | ||
1da177e4 LT |
3852 | static int inet6_dump_addr(struct sk_buff *skb, struct netlink_callback *cb, |
3853 | enum addr_type_t type) | |
3854 | { | |
234b27c3 ED |
3855 | struct net *net = sock_net(skb->sk); |
3856 | int h, s_h; | |
1da177e4 LT |
3857 | int idx, ip_idx; |
3858 | int s_idx, s_ip_idx; | |
1da177e4 | 3859 | struct net_device *dev; |
234b27c3 ED |
3860 | struct inet6_dev *idev; |
3861 | struct hlist_head *head; | |
3862 | struct hlist_node *node; | |
1ab1457c | 3863 | |
234b27c3 ED |
3864 | s_h = cb->args[0]; |
3865 | s_idx = idx = cb->args[1]; | |
3866 | s_ip_idx = ip_idx = cb->args[2]; | |
5d5619b4 | 3867 | |
234b27c3 ED |
3868 | rcu_read_lock(); |
3869 | for (h = s_h; h < NETDEV_HASHENTRIES; h++, s_idx = 0) { | |
3870 | idx = 0; | |
3871 | head = &net->dev_index_head[h]; | |
3872 | hlist_for_each_entry_rcu(dev, node, head, index_hlist) { | |
3873 | if (idx < s_idx) | |
3874 | goto cont; | |
4b97efdf | 3875 | if (h > s_h || idx > s_idx) |
234b27c3 ED |
3876 | s_ip_idx = 0; |
3877 | ip_idx = 0; | |
e21e8467 SH |
3878 | idev = __in6_dev_get(dev); |
3879 | if (!idev) | |
234b27c3 ED |
3880 | goto cont; |
3881 | ||
3882 | if (in6_dump_addrs(idev, skb, cb, type, | |
3883 | s_ip_idx, &ip_idx) <= 0) | |
3884 | goto done; | |
7562f876 | 3885 | cont: |
234b27c3 ED |
3886 | idx++; |
3887 | } | |
1da177e4 | 3888 | } |
234b27c3 ED |
3889 | done: |
3890 | rcu_read_unlock(); | |
3891 | cb->args[0] = h; | |
3892 | cb->args[1] = idx; | |
3893 | cb->args[2] = ip_idx; | |
3894 | ||
1da177e4 LT |
3895 | return skb->len; |
3896 | } | |
3897 | ||
3898 | static int inet6_dump_ifaddr(struct sk_buff *skb, struct netlink_callback *cb) | |
3899 | { | |
3900 | enum addr_type_t type = UNICAST_ADDR; | |
b854272b | 3901 | |
1da177e4 LT |
3902 | return inet6_dump_addr(skb, cb, type); |
3903 | } | |
3904 | ||
3905 | static int inet6_dump_ifmcaddr(struct sk_buff *skb, struct netlink_callback *cb) | |
3906 | { | |
3907 | enum addr_type_t type = MULTICAST_ADDR; | |
b854272b | 3908 | |
1da177e4 LT |
3909 | return inet6_dump_addr(skb, cb, type); |
3910 | } | |
3911 | ||
3912 | ||
3913 | static int inet6_dump_ifacaddr(struct sk_buff *skb, struct netlink_callback *cb) | |
3914 | { | |
3915 | enum addr_type_t type = ANYCAST_ADDR; | |
b854272b | 3916 | |
1da177e4 LT |
3917 | return inet6_dump_addr(skb, cb, type); |
3918 | } | |
3919 | ||
8e5e8f30 | 3920 | static int inet6_rtm_getaddr(struct sk_buff *in_skb, struct nlmsghdr *nlh, |
1b29fc2c | 3921 | void *arg) |
6c223828 | 3922 | { |
3b1e0a65 | 3923 | struct net *net = sock_net(in_skb->sk); |
1b29fc2c TG |
3924 | struct ifaddrmsg *ifm; |
3925 | struct nlattr *tb[IFA_MAX+1]; | |
6c223828 NT |
3926 | struct in6_addr *addr = NULL; |
3927 | struct net_device *dev = NULL; | |
3928 | struct inet6_ifaddr *ifa; | |
3929 | struct sk_buff *skb; | |
6c223828 NT |
3930 | int err; |
3931 | ||
1b29fc2c TG |
3932 | err = nlmsg_parse(nlh, sizeof(*ifm), tb, IFA_MAX, ifa_ipv6_policy); |
3933 | if (err < 0) | |
3934 | goto errout; | |
3935 | ||
3936 | addr = extract_addr(tb[IFA_ADDRESS], tb[IFA_LOCAL]); | |
3937 | if (addr == NULL) { | |
3938 | err = -EINVAL; | |
3939 | goto errout; | |
6c223828 | 3940 | } |
6c223828 | 3941 | |
1b29fc2c | 3942 | ifm = nlmsg_data(nlh); |
6c223828 | 3943 | if (ifm->ifa_index) |
6fda7350 | 3944 | dev = __dev_get_by_index(net, ifm->ifa_index); |
6c223828 | 3945 | |
e21e8467 SH |
3946 | ifa = ipv6_get_ifaddr(net, addr, dev, 1); |
3947 | if (!ifa) { | |
1b29fc2c TG |
3948 | err = -EADDRNOTAVAIL; |
3949 | goto errout; | |
3950 | } | |
6c223828 | 3951 | |
e21e8467 SH |
3952 | skb = nlmsg_new(inet6_ifaddr_msgsize(), GFP_KERNEL); |
3953 | if (!skb) { | |
6c223828 | 3954 | err = -ENOBUFS; |
1b29fc2c | 3955 | goto errout_ifa; |
6c223828 NT |
3956 | } |
3957 | ||
15e47304 | 3958 | err = inet6_fill_ifaddr(skb, ifa, NETLINK_CB(in_skb).portid, |
6c223828 | 3959 | nlh->nlmsg_seq, RTM_NEWADDR, 0); |
26932566 PM |
3960 | if (err < 0) { |
3961 | /* -EMSGSIZE implies BUG in inet6_ifaddr_msgsize() */ | |
3962 | WARN_ON(err == -EMSGSIZE); | |
3963 | kfree_skb(skb); | |
3964 | goto errout_ifa; | |
3965 | } | |
15e47304 | 3966 | err = rtnl_unicast(skb, net, NETLINK_CB(in_skb).portid); |
1b29fc2c | 3967 | errout_ifa: |
6c223828 | 3968 | in6_ifa_put(ifa); |
1b29fc2c | 3969 | errout: |
6c223828 | 3970 | return err; |
6c223828 NT |
3971 | } |
3972 | ||
1da177e4 LT |
3973 | static void inet6_ifa_notify(int event, struct inet6_ifaddr *ifa) |
3974 | { | |
3975 | struct sk_buff *skb; | |
c346dca1 | 3976 | struct net *net = dev_net(ifa->idev->dev); |
5d620266 | 3977 | int err = -ENOBUFS; |
1da177e4 | 3978 | |
0ab6803b | 3979 | skb = nlmsg_new(inet6_ifaddr_msgsize(), GFP_ATOMIC); |
5d620266 TG |
3980 | if (skb == NULL) |
3981 | goto errout; | |
3982 | ||
3983 | err = inet6_fill_ifaddr(skb, ifa, 0, 0, event, 0); | |
26932566 PM |
3984 | if (err < 0) { |
3985 | /* -EMSGSIZE implies BUG in inet6_ifaddr_msgsize() */ | |
3986 | WARN_ON(err == -EMSGSIZE); | |
3987 | kfree_skb(skb); | |
3988 | goto errout; | |
3989 | } | |
1ce85fe4 PNA |
3990 | rtnl_notify(skb, net, 0, RTNLGRP_IPV6_IFADDR, NULL, GFP_ATOMIC); |
3991 | return; | |
5d620266 TG |
3992 | errout: |
3993 | if (err < 0) | |
6fda7350 | 3994 | rtnl_set_sk_err(net, RTNLGRP_IPV6_IFADDR, err); |
1da177e4 LT |
3995 | } |
3996 | ||
b6f99a21 | 3997 | static inline void ipv6_store_devconf(struct ipv6_devconf *cnf, |
1da177e4 LT |
3998 | __s32 *array, int bytes) |
3999 | { | |
04561c1f TG |
4000 | BUG_ON(bytes < (DEVCONF_MAX * 4)); |
4001 | ||
1da177e4 LT |
4002 | memset(array, 0, bytes); |
4003 | array[DEVCONF_FORWARDING] = cnf->forwarding; | |
4004 | array[DEVCONF_HOPLIMIT] = cnf->hop_limit; | |
4005 | array[DEVCONF_MTU6] = cnf->mtu6; | |
4006 | array[DEVCONF_ACCEPT_RA] = cnf->accept_ra; | |
4007 | array[DEVCONF_ACCEPT_REDIRECTS] = cnf->accept_redirects; | |
4008 | array[DEVCONF_AUTOCONF] = cnf->autoconf; | |
4009 | array[DEVCONF_DAD_TRANSMITS] = cnf->dad_transmits; | |
4010 | array[DEVCONF_RTR_SOLICITS] = cnf->rtr_solicits; | |
93908d19 TG |
4011 | array[DEVCONF_RTR_SOLICIT_INTERVAL] = |
4012 | jiffies_to_msecs(cnf->rtr_solicit_interval); | |
4013 | array[DEVCONF_RTR_SOLICIT_DELAY] = | |
4014 | jiffies_to_msecs(cnf->rtr_solicit_delay); | |
1da177e4 LT |
4015 | array[DEVCONF_FORCE_MLD_VERSION] = cnf->force_mld_version; |
4016 | #ifdef CONFIG_IPV6_PRIVACY | |
4017 | array[DEVCONF_USE_TEMPADDR] = cnf->use_tempaddr; | |
4018 | array[DEVCONF_TEMP_VALID_LFT] = cnf->temp_valid_lft; | |
4019 | array[DEVCONF_TEMP_PREFERED_LFT] = cnf->temp_prefered_lft; | |
4020 | array[DEVCONF_REGEN_MAX_RETRY] = cnf->regen_max_retry; | |
4021 | array[DEVCONF_MAX_DESYNC_FACTOR] = cnf->max_desync_factor; | |
4022 | #endif | |
4023 | array[DEVCONF_MAX_ADDRESSES] = cnf->max_addresses; | |
65f5c7c1 | 4024 | array[DEVCONF_ACCEPT_RA_DEFRTR] = cnf->accept_ra_defrtr; |
c4fd30eb | 4025 | array[DEVCONF_ACCEPT_RA_PINFO] = cnf->accept_ra_pinfo; |
930d6ff2 YH |
4026 | #ifdef CONFIG_IPV6_ROUTER_PREF |
4027 | array[DEVCONF_ACCEPT_RA_RTR_PREF] = cnf->accept_ra_rtr_pref; | |
93908d19 TG |
4028 | array[DEVCONF_RTR_PROBE_INTERVAL] = |
4029 | jiffies_to_msecs(cnf->rtr_probe_interval); | |
fa03ef38 | 4030 | #ifdef CONFIG_IPV6_ROUTE_INFO |
09c884d4 YH |
4031 | array[DEVCONF_ACCEPT_RA_RT_INFO_MAX_PLEN] = cnf->accept_ra_rt_info_max_plen; |
4032 | #endif | |
930d6ff2 | 4033 | #endif |
fbea49e1 | 4034 | array[DEVCONF_PROXY_NDP] = cnf->proxy_ndp; |
0bcbc926 | 4035 | array[DEVCONF_ACCEPT_SOURCE_ROUTE] = cnf->accept_source_route; |
95c385b4 NH |
4036 | #ifdef CONFIG_IPV6_OPTIMISTIC_DAD |
4037 | array[DEVCONF_OPTIMISTIC_DAD] = cnf->optimistic_dad; | |
4038 | #endif | |
7bc570c8 YH |
4039 | #ifdef CONFIG_IPV6_MROUTE |
4040 | array[DEVCONF_MC_FORWARDING] = cnf->mc_forwarding; | |
4041 | #endif | |
778d80be | 4042 | array[DEVCONF_DISABLE_IPV6] = cnf->disable_ipv6; |
1b34be74 | 4043 | array[DEVCONF_ACCEPT_DAD] = cnf->accept_dad; |
c3faca05 | 4044 | array[DEVCONF_FORCE_TLLAO] = cnf->force_tllao; |
5cb04436 | 4045 | array[DEVCONF_NDISC_NOTIFY] = cnf->ndisc_notify; |
1da177e4 LT |
4046 | } |
4047 | ||
b382b191 TG |
4048 | static inline size_t inet6_ifla6_size(void) |
4049 | { | |
4050 | return nla_total_size(4) /* IFLA_INET6_FLAGS */ | |
4051 | + nla_total_size(sizeof(struct ifla_cacheinfo)) | |
4052 | + nla_total_size(DEVCONF_MAX * 4) /* IFLA_INET6_CONF */ | |
4053 | + nla_total_size(IPSTATS_MIB_MAX * 8) /* IFLA_INET6_STATS */ | |
4054 | + nla_total_size(ICMP6_MIB_MAX * 8); /* IFLA_INET6_ICMP6STATS */ | |
4055 | } | |
4056 | ||
339bf98f TG |
4057 | static inline size_t inet6_if_nlmsg_size(void) |
4058 | { | |
4059 | return NLMSG_ALIGN(sizeof(struct ifinfomsg)) | |
4060 | + nla_total_size(IFNAMSIZ) /* IFLA_IFNAME */ | |
4061 | + nla_total_size(MAX_ADDR_LEN) /* IFLA_ADDRESS */ | |
4062 | + nla_total_size(4) /* IFLA_MTU */ | |
4063 | + nla_total_size(4) /* IFLA_LINK */ | |
b382b191 | 4064 | + nla_total_size(inet6_ifla6_size()); /* IFLA_PROTINFO */ |
339bf98f | 4065 | } |
c5396a31 | 4066 | |
be281e55 | 4067 | static inline void __snmp6_fill_statsdev(u64 *stats, atomic_long_t *mib, |
7d720c3e | 4068 | int items, int bytes) |
7f7d9a6b HX |
4069 | { |
4070 | int i; | |
4071 | int pad = bytes - sizeof(u64) * items; | |
4072 | BUG_ON(pad < 0); | |
4073 | ||
4074 | /* Use put_unaligned() because stats may not be aligned for u64. */ | |
4075 | put_unaligned(items, &stats[0]); | |
4076 | for (i = 1; i < items; i++) | |
be281e55 | 4077 | put_unaligned(atomic_long_read(&mib[i]), &stats[i]); |
7f7d9a6b HX |
4078 | |
4079 | memset(&stats[items], 0, pad); | |
4080 | } | |
4081 | ||
4ce3c183 ED |
4082 | static inline void __snmp6_fill_stats64(u64 *stats, void __percpu **mib, |
4083 | int items, int bytes, size_t syncpoff) | |
4084 | { | |
4085 | int i; | |
4086 | int pad = bytes - sizeof(u64) * items; | |
4087 | BUG_ON(pad < 0); | |
4088 | ||
4089 | /* Use put_unaligned() because stats may not be aligned for u64. */ | |
4090 | put_unaligned(items, &stats[0]); | |
4091 | for (i = 1; i < items; i++) | |
4092 | put_unaligned(snmp_fold_field64(mib, i, syncpoff), &stats[i]); | |
4093 | ||
4094 | memset(&stats[items], 0, pad); | |
4095 | } | |
4096 | ||
7f7d9a6b HX |
4097 | static void snmp6_fill_stats(u64 *stats, struct inet6_dev *idev, int attrtype, |
4098 | int bytes) | |
4099 | { | |
e21e8467 | 4100 | switch (attrtype) { |
7f7d9a6b | 4101 | case IFLA_INET6_STATS: |
4ce3c183 ED |
4102 | __snmp6_fill_stats64(stats, (void __percpu **)idev->stats.ipv6, |
4103 | IPSTATS_MIB_MAX, bytes, offsetof(struct ipstats_mib, syncp)); | |
7f7d9a6b HX |
4104 | break; |
4105 | case IFLA_INET6_ICMP6STATS: | |
be281e55 | 4106 | __snmp6_fill_statsdev(stats, idev->stats.icmpv6dev->mibs, ICMP6_MIB_MAX, bytes); |
7f7d9a6b HX |
4107 | break; |
4108 | } | |
4109 | } | |
4110 | ||
b382b191 TG |
4111 | static int inet6_fill_ifla6_attrs(struct sk_buff *skb, struct inet6_dev *idev) |
4112 | { | |
4113 | struct nlattr *nla; | |
4114 | struct ifla_cacheinfo ci; | |
4115 | ||
c78679e8 DM |
4116 | if (nla_put_u32(skb, IFLA_INET6_FLAGS, idev->if_flags)) |
4117 | goto nla_put_failure; | |
b382b191 | 4118 | ci.max_reasm_len = IPV6_MAXPLEN; |
24912420 DM |
4119 | ci.tstamp = cstamp_delta(idev->tstamp); |
4120 | ci.reachable_time = jiffies_to_msecs(idev->nd_parms->reachable_time); | |
4121 | ci.retrans_time = jiffies_to_msecs(idev->nd_parms->retrans_time); | |
c78679e8 DM |
4122 | if (nla_put(skb, IFLA_INET6_CACHEINFO, sizeof(ci), &ci)) |
4123 | goto nla_put_failure; | |
b382b191 TG |
4124 | nla = nla_reserve(skb, IFLA_INET6_CONF, DEVCONF_MAX * sizeof(s32)); |
4125 | if (nla == NULL) | |
4126 | goto nla_put_failure; | |
4127 | ipv6_store_devconf(&idev->cnf, nla_data(nla), nla_len(nla)); | |
4128 | ||
4129 | /* XXX - MC not implemented */ | |
4130 | ||
4131 | nla = nla_reserve(skb, IFLA_INET6_STATS, IPSTATS_MIB_MAX * sizeof(u64)); | |
4132 | if (nla == NULL) | |
4133 | goto nla_put_failure; | |
4134 | snmp6_fill_stats(nla_data(nla), idev, IFLA_INET6_STATS, nla_len(nla)); | |
4135 | ||
4136 | nla = nla_reserve(skb, IFLA_INET6_ICMP6STATS, ICMP6_MIB_MAX * sizeof(u64)); | |
4137 | if (nla == NULL) | |
4138 | goto nla_put_failure; | |
4139 | snmp6_fill_stats(nla_data(nla), idev, IFLA_INET6_ICMP6STATS, nla_len(nla)); | |
4140 | ||
4141 | return 0; | |
4142 | ||
4143 | nla_put_failure: | |
4144 | return -EMSGSIZE; | |
4145 | } | |
4146 | ||
4147 | static size_t inet6_get_link_af_size(const struct net_device *dev) | |
4148 | { | |
4149 | if (!__in6_dev_get(dev)) | |
4150 | return 0; | |
4151 | ||
4152 | return inet6_ifla6_size(); | |
4153 | } | |
4154 | ||
4155 | static int inet6_fill_link_af(struct sk_buff *skb, const struct net_device *dev) | |
4156 | { | |
4157 | struct inet6_dev *idev = __in6_dev_get(dev); | |
4158 | ||
4159 | if (!idev) | |
4160 | return -ENODATA; | |
4161 | ||
4162 | if (inet6_fill_ifla6_attrs(skb, idev) < 0) | |
4163 | return -EMSGSIZE; | |
4164 | ||
4165 | return 0; | |
4166 | } | |
4167 | ||
1ab1457c | 4168 | static int inet6_fill_ifinfo(struct sk_buff *skb, struct inet6_dev *idev, |
15e47304 | 4169 | u32 portid, u32 seq, int event, unsigned int flags) |
1da177e4 | 4170 | { |
04561c1f | 4171 | struct net_device *dev = idev->dev; |
04561c1f TG |
4172 | struct ifinfomsg *hdr; |
4173 | struct nlmsghdr *nlh; | |
4174 | void *protoinfo; | |
04561c1f | 4175 | |
15e47304 | 4176 | nlh = nlmsg_put(skb, portid, seq, event, sizeof(*hdr), flags); |
04561c1f | 4177 | if (nlh == NULL) |
26932566 | 4178 | return -EMSGSIZE; |
04561c1f TG |
4179 | |
4180 | hdr = nlmsg_data(nlh); | |
4181 | hdr->ifi_family = AF_INET6; | |
4182 | hdr->__ifi_pad = 0; | |
4183 | hdr->ifi_type = dev->type; | |
4184 | hdr->ifi_index = dev->ifindex; | |
4185 | hdr->ifi_flags = dev_get_flags(dev); | |
4186 | hdr->ifi_change = 0; | |
4187 | ||
c78679e8 DM |
4188 | if (nla_put_string(skb, IFLA_IFNAME, dev->name) || |
4189 | (dev->addr_len && | |
4190 | nla_put(skb, IFLA_ADDRESS, dev->addr_len, dev->dev_addr)) || | |
4191 | nla_put_u32(skb, IFLA_MTU, dev->mtu) || | |
4192 | (dev->ifindex != dev->iflink && | |
4193 | nla_put_u32(skb, IFLA_LINK, dev->iflink))) | |
4194 | goto nla_put_failure; | |
04561c1f TG |
4195 | protoinfo = nla_nest_start(skb, IFLA_PROTINFO); |
4196 | if (protoinfo == NULL) | |
4197 | goto nla_put_failure; | |
1da177e4 | 4198 | |
b382b191 | 4199 | if (inet6_fill_ifla6_attrs(skb, idev) < 0) |
bf99f1bd | 4200 | goto nla_put_failure; |
1da177e4 | 4201 | |
04561c1f TG |
4202 | nla_nest_end(skb, protoinfo); |
4203 | return nlmsg_end(skb, nlh); | |
1da177e4 | 4204 | |
04561c1f | 4205 | nla_put_failure: |
26932566 PM |
4206 | nlmsg_cancel(skb, nlh); |
4207 | return -EMSGSIZE; | |
1da177e4 LT |
4208 | } |
4209 | ||
4210 | static int inet6_dump_ifinfo(struct sk_buff *skb, struct netlink_callback *cb) | |
4211 | { | |
3b1e0a65 | 4212 | struct net *net = sock_net(skb->sk); |
84d2697d | 4213 | int h, s_h; |
434a8a58 | 4214 | int idx = 0, s_idx; |
1da177e4 LT |
4215 | struct net_device *dev; |
4216 | struct inet6_dev *idev; | |
84d2697d ED |
4217 | struct hlist_head *head; |
4218 | struct hlist_node *node; | |
1da177e4 | 4219 | |
84d2697d ED |
4220 | s_h = cb->args[0]; |
4221 | s_idx = cb->args[1]; | |
4222 | ||
4223 | rcu_read_lock(); | |
4224 | for (h = s_h; h < NETDEV_HASHENTRIES; h++, s_idx = 0) { | |
4225 | idx = 0; | |
4226 | head = &net->dev_index_head[h]; | |
4227 | hlist_for_each_entry_rcu(dev, node, head, index_hlist) { | |
4228 | if (idx < s_idx) | |
4229 | goto cont; | |
4230 | idev = __in6_dev_get(dev); | |
4231 | if (!idev) | |
4232 | goto cont; | |
4233 | if (inet6_fill_ifinfo(skb, idev, | |
15e47304 | 4234 | NETLINK_CB(cb->skb).portid, |
84d2697d ED |
4235 | cb->nlh->nlmsg_seq, |
4236 | RTM_NEWLINK, NLM_F_MULTI) <= 0) | |
4237 | goto out; | |
7562f876 | 4238 | cont: |
84d2697d ED |
4239 | idx++; |
4240 | } | |
1da177e4 | 4241 | } |
84d2697d ED |
4242 | out: |
4243 | rcu_read_unlock(); | |
4244 | cb->args[1] = idx; | |
4245 | cb->args[0] = h; | |
1da177e4 LT |
4246 | |
4247 | return skb->len; | |
4248 | } | |
4249 | ||
4250 | void inet6_ifinfo_notify(int event, struct inet6_dev *idev) | |
4251 | { | |
4252 | struct sk_buff *skb; | |
c346dca1 | 4253 | struct net *net = dev_net(idev->dev); |
8d7a76c9 | 4254 | int err = -ENOBUFS; |
1ab1457c | 4255 | |
339bf98f | 4256 | skb = nlmsg_new(inet6_if_nlmsg_size(), GFP_ATOMIC); |
8d7a76c9 TG |
4257 | if (skb == NULL) |
4258 | goto errout; | |
4259 | ||
4260 | err = inet6_fill_ifinfo(skb, idev, 0, 0, event, 0); | |
26932566 PM |
4261 | if (err < 0) { |
4262 | /* -EMSGSIZE implies BUG in inet6_if_nlmsg_size() */ | |
4263 | WARN_ON(err == -EMSGSIZE); | |
4264 | kfree_skb(skb); | |
4265 | goto errout; | |
4266 | } | |
5f75a104 | 4267 | rtnl_notify(skb, net, 0, RTNLGRP_IPV6_IFINFO, NULL, GFP_ATOMIC); |
1ce85fe4 | 4268 | return; |
8d7a76c9 TG |
4269 | errout: |
4270 | if (err < 0) | |
5f75a104 | 4271 | rtnl_set_sk_err(net, RTNLGRP_IPV6_IFINFO, err); |
1da177e4 LT |
4272 | } |
4273 | ||
339bf98f TG |
4274 | static inline size_t inet6_prefix_nlmsg_size(void) |
4275 | { | |
4276 | return NLMSG_ALIGN(sizeof(struct prefixmsg)) | |
4277 | + nla_total_size(sizeof(struct in6_addr)) | |
4278 | + nla_total_size(sizeof(struct prefix_cacheinfo)); | |
4279 | } | |
c5396a31 | 4280 | |
1da177e4 | 4281 | static int inet6_fill_prefix(struct sk_buff *skb, struct inet6_dev *idev, |
15e47304 | 4282 | struct prefix_info *pinfo, u32 portid, u32 seq, |
6051e2f4 | 4283 | int event, unsigned int flags) |
1da177e4 | 4284 | { |
6051e2f4 TG |
4285 | struct prefixmsg *pmsg; |
4286 | struct nlmsghdr *nlh; | |
1da177e4 LT |
4287 | struct prefix_cacheinfo ci; |
4288 | ||
15e47304 | 4289 | nlh = nlmsg_put(skb, portid, seq, event, sizeof(*pmsg), flags); |
6051e2f4 | 4290 | if (nlh == NULL) |
26932566 | 4291 | return -EMSGSIZE; |
6051e2f4 TG |
4292 | |
4293 | pmsg = nlmsg_data(nlh); | |
1da177e4 | 4294 | pmsg->prefix_family = AF_INET6; |
8a47077a PM |
4295 | pmsg->prefix_pad1 = 0; |
4296 | pmsg->prefix_pad2 = 0; | |
1da177e4 LT |
4297 | pmsg->prefix_ifindex = idev->dev->ifindex; |
4298 | pmsg->prefix_len = pinfo->prefix_len; | |
4299 | pmsg->prefix_type = pinfo->type; | |
8a47077a | 4300 | pmsg->prefix_pad3 = 0; |
1da177e4 LT |
4301 | pmsg->prefix_flags = 0; |
4302 | if (pinfo->onlink) | |
4303 | pmsg->prefix_flags |= IF_PREFIX_ONLINK; | |
4304 | if (pinfo->autoconf) | |
4305 | pmsg->prefix_flags |= IF_PREFIX_AUTOCONF; | |
4306 | ||
c78679e8 DM |
4307 | if (nla_put(skb, PREFIX_ADDRESS, sizeof(pinfo->prefix), &pinfo->prefix)) |
4308 | goto nla_put_failure; | |
1da177e4 LT |
4309 | ci.preferred_time = ntohl(pinfo->prefered); |
4310 | ci.valid_time = ntohl(pinfo->valid); | |
c78679e8 DM |
4311 | if (nla_put(skb, PREFIX_CACHEINFO, sizeof(ci), &ci)) |
4312 | goto nla_put_failure; | |
6051e2f4 | 4313 | return nlmsg_end(skb, nlh); |
1da177e4 | 4314 | |
6051e2f4 | 4315 | nla_put_failure: |
26932566 PM |
4316 | nlmsg_cancel(skb, nlh); |
4317 | return -EMSGSIZE; | |
1da177e4 LT |
4318 | } |
4319 | ||
1ab1457c | 4320 | static void inet6_prefix_notify(int event, struct inet6_dev *idev, |
1da177e4 LT |
4321 | struct prefix_info *pinfo) |
4322 | { | |
4323 | struct sk_buff *skb; | |
c346dca1 | 4324 | struct net *net = dev_net(idev->dev); |
8c384bfa | 4325 | int err = -ENOBUFS; |
1da177e4 | 4326 | |
339bf98f | 4327 | skb = nlmsg_new(inet6_prefix_nlmsg_size(), GFP_ATOMIC); |
8c384bfa TG |
4328 | if (skb == NULL) |
4329 | goto errout; | |
4330 | ||
4331 | err = inet6_fill_prefix(skb, idev, pinfo, 0, 0, event, 0); | |
26932566 PM |
4332 | if (err < 0) { |
4333 | /* -EMSGSIZE implies BUG in inet6_prefix_nlmsg_size() */ | |
4334 | WARN_ON(err == -EMSGSIZE); | |
4335 | kfree_skb(skb); | |
4336 | goto errout; | |
4337 | } | |
1ce85fe4 PNA |
4338 | rtnl_notify(skb, net, 0, RTNLGRP_IPV6_PREFIX, NULL, GFP_ATOMIC); |
4339 | return; | |
8c384bfa TG |
4340 | errout: |
4341 | if (err < 0) | |
6fda7350 | 4342 | rtnl_set_sk_err(net, RTNLGRP_IPV6_PREFIX, err); |
1da177e4 LT |
4343 | } |
4344 | ||
1da177e4 LT |
4345 | static void __ipv6_ifa_notify(int event, struct inet6_ifaddr *ifp) |
4346 | { | |
4347 | inet6_ifa_notify(event ? : RTM_NEWADDR, ifp); | |
4348 | ||
4349 | switch (event) { | |
4350 | case RTM_NEWADDR: | |
95c385b4 NH |
4351 | /* |
4352 | * If the address was optimistic | |
4353 | * we inserted the route at the start of | |
4354 | * our DAD process, so we don't need | |
4355 | * to do it again | |
4356 | */ | |
4357 | if (!(ifp->rt->rt6i_node)) | |
4358 | ip6_ins_rt(ifp->rt); | |
1da177e4 LT |
4359 | if (ifp->idev->cnf.forwarding) |
4360 | addrconf_join_anycast(ifp); | |
4361 | break; | |
4362 | case RTM_DELADDR: | |
4363 | if (ifp->idev->cnf.forwarding) | |
4364 | addrconf_leave_anycast(ifp); | |
4365 | addrconf_leave_solict(ifp->idev, &ifp->addr); | |
d8d1f30b | 4366 | dst_hold(&ifp->rt->dst); |
93fa159a | 4367 | |
73a8bd74 | 4368 | if (ip6_del_rt(ifp->rt)) |
d8d1f30b | 4369 | dst_free(&ifp->rt->dst); |
1da177e4 LT |
4370 | break; |
4371 | } | |
4372 | } | |
4373 | ||
4374 | static void ipv6_ifa_notify(int event, struct inet6_ifaddr *ifp) | |
4375 | { | |
8814c4b5 | 4376 | rcu_read_lock_bh(); |
1da177e4 LT |
4377 | if (likely(ifp->idev->dead == 0)) |
4378 | __ipv6_ifa_notify(event, ifp); | |
8814c4b5 | 4379 | rcu_read_unlock_bh(); |
1da177e4 LT |
4380 | } |
4381 | ||
4382 | #ifdef CONFIG_SYSCTL | |
4383 | ||
4384 | static | |
8d65af78 | 4385 | int addrconf_sysctl_forward(ctl_table *ctl, int write, |
1da177e4 LT |
4386 | void __user *buffer, size_t *lenp, loff_t *ppos) |
4387 | { | |
4388 | int *valp = ctl->data; | |
4389 | int val = *valp; | |
88af182e | 4390 | loff_t pos = *ppos; |
013d97e9 | 4391 | ctl_table lctl; |
1da177e4 LT |
4392 | int ret; |
4393 | ||
013d97e9 FR |
4394 | /* |
4395 | * ctl->data points to idev->cnf.forwarding, we should | |
4396 | * not modify it until we get the rtnl lock. | |
4397 | */ | |
4398 | lctl = *ctl; | |
4399 | lctl.data = &val; | |
4400 | ||
4401 | ret = proc_dointvec(&lctl, write, buffer, lenp, ppos); | |
1da177e4 | 4402 | |
c8fecf22 | 4403 | if (write) |
b325fddb | 4404 | ret = addrconf_fixup_forwarding(ctl, valp, val); |
88af182e EB |
4405 | if (ret) |
4406 | *ppos = pos; | |
1ab1457c | 4407 | return ret; |
1da177e4 LT |
4408 | } |
4409 | ||
56d417b1 BH |
4410 | static void dev_disable_change(struct inet6_dev *idev) |
4411 | { | |
4412 | if (!idev || !idev->dev) | |
4413 | return; | |
4414 | ||
4415 | if (idev->cnf.disable_ipv6) | |
4416 | addrconf_notify(NULL, NETDEV_DOWN, idev->dev); | |
4417 | else | |
4418 | addrconf_notify(NULL, NETDEV_UP, idev->dev); | |
4419 | } | |
4420 | ||
4421 | static void addrconf_disable_change(struct net *net, __s32 newf) | |
4422 | { | |
4423 | struct net_device *dev; | |
4424 | struct inet6_dev *idev; | |
4425 | ||
c6d14c84 ED |
4426 | rcu_read_lock(); |
4427 | for_each_netdev_rcu(net, dev) { | |
56d417b1 BH |
4428 | idev = __in6_dev_get(dev); |
4429 | if (idev) { | |
4430 | int changed = (!idev->cnf.disable_ipv6) ^ (!newf); | |
4431 | idev->cnf.disable_ipv6 = newf; | |
4432 | if (changed) | |
4433 | dev_disable_change(idev); | |
4434 | } | |
56d417b1 | 4435 | } |
c6d14c84 | 4436 | rcu_read_unlock(); |
56d417b1 BH |
4437 | } |
4438 | ||
013d97e9 | 4439 | static int addrconf_disable_ipv6(struct ctl_table *table, int *p, int newf) |
56d417b1 BH |
4440 | { |
4441 | struct net *net; | |
013d97e9 FR |
4442 | int old; |
4443 | ||
4444 | if (!rtnl_trylock()) | |
4445 | return restart_syscall(); | |
56d417b1 BH |
4446 | |
4447 | net = (struct net *)table->extra2; | |
013d97e9 FR |
4448 | old = *p; |
4449 | *p = newf; | |
56d417b1 | 4450 | |
013d97e9 FR |
4451 | if (p == &net->ipv6.devconf_dflt->disable_ipv6) { |
4452 | rtnl_unlock(); | |
56d417b1 | 4453 | return 0; |
88af182e | 4454 | } |
56d417b1 BH |
4455 | |
4456 | if (p == &net->ipv6.devconf_all->disable_ipv6) { | |
56d417b1 BH |
4457 | net->ipv6.devconf_dflt->disable_ipv6 = newf; |
4458 | addrconf_disable_change(net, newf); | |
013d97e9 | 4459 | } else if ((!newf) ^ (!old)) |
56d417b1 BH |
4460 | dev_disable_change((struct inet6_dev *)table->extra1); |
4461 | ||
4462 | rtnl_unlock(); | |
4463 | return 0; | |
4464 | } | |
4465 | ||
4466 | static | |
8d65af78 | 4467 | int addrconf_sysctl_disable(ctl_table *ctl, int write, |
56d417b1 BH |
4468 | void __user *buffer, size_t *lenp, loff_t *ppos) |
4469 | { | |
4470 | int *valp = ctl->data; | |
4471 | int val = *valp; | |
88af182e | 4472 | loff_t pos = *ppos; |
013d97e9 | 4473 | ctl_table lctl; |
56d417b1 BH |
4474 | int ret; |
4475 | ||
013d97e9 FR |
4476 | /* |
4477 | * ctl->data points to idev->cnf.disable_ipv6, we should | |
4478 | * not modify it until we get the rtnl lock. | |
4479 | */ | |
4480 | lctl = *ctl; | |
4481 | lctl.data = &val; | |
4482 | ||
4483 | ret = proc_dointvec(&lctl, write, buffer, lenp, ppos); | |
56d417b1 BH |
4484 | |
4485 | if (write) | |
4486 | ret = addrconf_disable_ipv6(ctl, valp, val); | |
88af182e EB |
4487 | if (ret) |
4488 | *ppos = pos; | |
56d417b1 BH |
4489 | return ret; |
4490 | } | |
4491 | ||
1da177e4 LT |
4492 | static struct addrconf_sysctl_table |
4493 | { | |
4494 | struct ctl_table_header *sysctl_header; | |
f6a07b29 | 4495 | ctl_table addrconf_vars[DEVCONF_MAX+1]; |
ab32ea5d | 4496 | } addrconf_sysctl __read_mostly = { |
1da177e4 LT |
4497 | .sysctl_header = NULL, |
4498 | .addrconf_vars = { | |
1ab1457c | 4499 | { |
e21e8467 SH |
4500 | .procname = "forwarding", |
4501 | .data = &ipv6_devconf.forwarding, | |
4502 | .maxlen = sizeof(int), | |
4503 | .mode = 0644, | |
4504 | .proc_handler = addrconf_sysctl_forward, | |
1da177e4 LT |
4505 | }, |
4506 | { | |
e21e8467 SH |
4507 | .procname = "hop_limit", |
4508 | .data = &ipv6_devconf.hop_limit, | |
4509 | .maxlen = sizeof(int), | |
4510 | .mode = 0644, | |
4511 | .proc_handler = proc_dointvec, | |
1da177e4 LT |
4512 | }, |
4513 | { | |
e21e8467 SH |
4514 | .procname = "mtu", |
4515 | .data = &ipv6_devconf.mtu6, | |
4516 | .maxlen = sizeof(int), | |
4517 | .mode = 0644, | |
4518 | .proc_handler = proc_dointvec, | |
1da177e4 LT |
4519 | }, |
4520 | { | |
e21e8467 SH |
4521 | .procname = "accept_ra", |
4522 | .data = &ipv6_devconf.accept_ra, | |
4523 | .maxlen = sizeof(int), | |
4524 | .mode = 0644, | |
4525 | .proc_handler = proc_dointvec, | |
1da177e4 LT |
4526 | }, |
4527 | { | |
e21e8467 SH |
4528 | .procname = "accept_redirects", |
4529 | .data = &ipv6_devconf.accept_redirects, | |
4530 | .maxlen = sizeof(int), | |
4531 | .mode = 0644, | |
4532 | .proc_handler = proc_dointvec, | |
1da177e4 LT |
4533 | }, |
4534 | { | |
e21e8467 SH |
4535 | .procname = "autoconf", |
4536 | .data = &ipv6_devconf.autoconf, | |
4537 | .maxlen = sizeof(int), | |
4538 | .mode = 0644, | |
4539 | .proc_handler = proc_dointvec, | |
1da177e4 LT |
4540 | }, |
4541 | { | |
e21e8467 SH |
4542 | .procname = "dad_transmits", |
4543 | .data = &ipv6_devconf.dad_transmits, | |
4544 | .maxlen = sizeof(int), | |
4545 | .mode = 0644, | |
4546 | .proc_handler = proc_dointvec, | |
1da177e4 LT |
4547 | }, |
4548 | { | |
e21e8467 SH |
4549 | .procname = "router_solicitations", |
4550 | .data = &ipv6_devconf.rtr_solicits, | |
4551 | .maxlen = sizeof(int), | |
4552 | .mode = 0644, | |
4553 | .proc_handler = proc_dointvec, | |
1da177e4 LT |
4554 | }, |
4555 | { | |
e21e8467 SH |
4556 | .procname = "router_solicitation_interval", |
4557 | .data = &ipv6_devconf.rtr_solicit_interval, | |
4558 | .maxlen = sizeof(int), | |
4559 | .mode = 0644, | |
4560 | .proc_handler = proc_dointvec_jiffies, | |
1da177e4 LT |
4561 | }, |
4562 | { | |
e21e8467 SH |
4563 | .procname = "router_solicitation_delay", |
4564 | .data = &ipv6_devconf.rtr_solicit_delay, | |
4565 | .maxlen = sizeof(int), | |
4566 | .mode = 0644, | |
4567 | .proc_handler = proc_dointvec_jiffies, | |
1da177e4 LT |
4568 | }, |
4569 | { | |
e21e8467 SH |
4570 | .procname = "force_mld_version", |
4571 | .data = &ipv6_devconf.force_mld_version, | |
4572 | .maxlen = sizeof(int), | |
4573 | .mode = 0644, | |
4574 | .proc_handler = proc_dointvec, | |
1da177e4 LT |
4575 | }, |
4576 | #ifdef CONFIG_IPV6_PRIVACY | |
4577 | { | |
e21e8467 SH |
4578 | .procname = "use_tempaddr", |
4579 | .data = &ipv6_devconf.use_tempaddr, | |
4580 | .maxlen = sizeof(int), | |
4581 | .mode = 0644, | |
4582 | .proc_handler = proc_dointvec, | |
1da177e4 LT |
4583 | }, |
4584 | { | |
e21e8467 SH |
4585 | .procname = "temp_valid_lft", |
4586 | .data = &ipv6_devconf.temp_valid_lft, | |
4587 | .maxlen = sizeof(int), | |
4588 | .mode = 0644, | |
4589 | .proc_handler = proc_dointvec, | |
1da177e4 LT |
4590 | }, |
4591 | { | |
e21e8467 SH |
4592 | .procname = "temp_prefered_lft", |
4593 | .data = &ipv6_devconf.temp_prefered_lft, | |
4594 | .maxlen = sizeof(int), | |
4595 | .mode = 0644, | |
4596 | .proc_handler = proc_dointvec, | |
1da177e4 LT |
4597 | }, |
4598 | { | |
e21e8467 SH |
4599 | .procname = "regen_max_retry", |
4600 | .data = &ipv6_devconf.regen_max_retry, | |
4601 | .maxlen = sizeof(int), | |
4602 | .mode = 0644, | |
4603 | .proc_handler = proc_dointvec, | |
1da177e4 LT |
4604 | }, |
4605 | { | |
e21e8467 SH |
4606 | .procname = "max_desync_factor", |
4607 | .data = &ipv6_devconf.max_desync_factor, | |
4608 | .maxlen = sizeof(int), | |
4609 | .mode = 0644, | |
4610 | .proc_handler = proc_dointvec, | |
1da177e4 LT |
4611 | }, |
4612 | #endif | |
4613 | { | |
e21e8467 SH |
4614 | .procname = "max_addresses", |
4615 | .data = &ipv6_devconf.max_addresses, | |
4616 | .maxlen = sizeof(int), | |
4617 | .mode = 0644, | |
4618 | .proc_handler = proc_dointvec, | |
1da177e4 | 4619 | }, |
65f5c7c1 | 4620 | { |
e21e8467 SH |
4621 | .procname = "accept_ra_defrtr", |
4622 | .data = &ipv6_devconf.accept_ra_defrtr, | |
4623 | .maxlen = sizeof(int), | |
4624 | .mode = 0644, | |
4625 | .proc_handler = proc_dointvec, | |
65f5c7c1 | 4626 | }, |
c4fd30eb | 4627 | { |
e21e8467 SH |
4628 | .procname = "accept_ra_pinfo", |
4629 | .data = &ipv6_devconf.accept_ra_pinfo, | |
4630 | .maxlen = sizeof(int), | |
4631 | .mode = 0644, | |
4632 | .proc_handler = proc_dointvec, | |
c4fd30eb | 4633 | }, |
930d6ff2 YH |
4634 | #ifdef CONFIG_IPV6_ROUTER_PREF |
4635 | { | |
e21e8467 SH |
4636 | .procname = "accept_ra_rtr_pref", |
4637 | .data = &ipv6_devconf.accept_ra_rtr_pref, | |
4638 | .maxlen = sizeof(int), | |
4639 | .mode = 0644, | |
4640 | .proc_handler = proc_dointvec, | |
930d6ff2 | 4641 | }, |
52e16356 | 4642 | { |
e21e8467 SH |
4643 | .procname = "router_probe_interval", |
4644 | .data = &ipv6_devconf.rtr_probe_interval, | |
4645 | .maxlen = sizeof(int), | |
4646 | .mode = 0644, | |
4647 | .proc_handler = proc_dointvec_jiffies, | |
52e16356 | 4648 | }, |
fa03ef38 | 4649 | #ifdef CONFIG_IPV6_ROUTE_INFO |
09c884d4 | 4650 | { |
e21e8467 SH |
4651 | .procname = "accept_ra_rt_info_max_plen", |
4652 | .data = &ipv6_devconf.accept_ra_rt_info_max_plen, | |
4653 | .maxlen = sizeof(int), | |
4654 | .mode = 0644, | |
4655 | .proc_handler = proc_dointvec, | |
09c884d4 YH |
4656 | }, |
4657 | #endif | |
930d6ff2 | 4658 | #endif |
fbea49e1 | 4659 | { |
e21e8467 SH |
4660 | .procname = "proxy_ndp", |
4661 | .data = &ipv6_devconf.proxy_ndp, | |
4662 | .maxlen = sizeof(int), | |
4663 | .mode = 0644, | |
4664 | .proc_handler = proc_dointvec, | |
fbea49e1 | 4665 | }, |
0bcbc926 | 4666 | { |
e21e8467 SH |
4667 | .procname = "accept_source_route", |
4668 | .data = &ipv6_devconf.accept_source_route, | |
4669 | .maxlen = sizeof(int), | |
4670 | .mode = 0644, | |
4671 | .proc_handler = proc_dointvec, | |
0bcbc926 | 4672 | }, |
95c385b4 NH |
4673 | #ifdef CONFIG_IPV6_OPTIMISTIC_DAD |
4674 | { | |
e21e8467 SH |
4675 | .procname = "optimistic_dad", |
4676 | .data = &ipv6_devconf.optimistic_dad, | |
4677 | .maxlen = sizeof(int), | |
4678 | .mode = 0644, | |
4679 | .proc_handler = proc_dointvec, | |
95c385b4 NH |
4680 | |
4681 | }, | |
7bc570c8 YH |
4682 | #endif |
4683 | #ifdef CONFIG_IPV6_MROUTE | |
4684 | { | |
e21e8467 SH |
4685 | .procname = "mc_forwarding", |
4686 | .data = &ipv6_devconf.mc_forwarding, | |
4687 | .maxlen = sizeof(int), | |
4688 | .mode = 0444, | |
4689 | .proc_handler = proc_dointvec, | |
7bc570c8 | 4690 | }, |
95c385b4 | 4691 | #endif |
778d80be | 4692 | { |
e21e8467 SH |
4693 | .procname = "disable_ipv6", |
4694 | .data = &ipv6_devconf.disable_ipv6, | |
4695 | .maxlen = sizeof(int), | |
4696 | .mode = 0644, | |
4697 | .proc_handler = addrconf_sysctl_disable, | |
778d80be | 4698 | }, |
1b34be74 | 4699 | { |
e21e8467 SH |
4700 | .procname = "accept_dad", |
4701 | .data = &ipv6_devconf.accept_dad, | |
4702 | .maxlen = sizeof(int), | |
4703 | .mode = 0644, | |
4704 | .proc_handler = proc_dointvec, | |
1b34be74 | 4705 | }, |
f7734fdf | 4706 | { |
f7734fdf OP |
4707 | .procname = "force_tllao", |
4708 | .data = &ipv6_devconf.force_tllao, | |
4709 | .maxlen = sizeof(int), | |
4710 | .mode = 0644, | |
4711 | .proc_handler = proc_dointvec | |
4712 | }, | |
5cb04436 HFS |
4713 | { |
4714 | .procname = "ndisc_notify", | |
4715 | .data = &ipv6_devconf.ndisc_notify, | |
4716 | .maxlen = sizeof(int), | |
4717 | .mode = 0644, | |
4718 | .proc_handler = proc_dointvec | |
4719 | }, | |
1da177e4 | 4720 | { |
f8572d8f | 4721 | /* sentinel */ |
1da177e4 LT |
4722 | } |
4723 | }, | |
1da177e4 LT |
4724 | }; |
4725 | ||
bff16c2f | 4726 | static int __addrconf_sysctl_register(struct net *net, char *dev_name, |
f8572d8f | 4727 | struct inet6_dev *idev, struct ipv6_devconf *p) |
1da177e4 LT |
4728 | { |
4729 | int i; | |
1da177e4 | 4730 | struct addrconf_sysctl_table *t; |
6105e293 | 4731 | char path[sizeof("net/ipv6/conf/") + IFNAMSIZ]; |
1dab6222 | 4732 | |
af879cc7 | 4733 | t = kmemdup(&addrconf_sysctl, sizeof(*t), GFP_KERNEL); |
1da177e4 | 4734 | if (t == NULL) |
f68635e6 PE |
4735 | goto out; |
4736 | ||
bcdd553f | 4737 | for (i = 0; t->addrconf_vars[i].data; i++) { |
e21e8467 | 4738 | t->addrconf_vars[i].data += (char *)p - (char *)&ipv6_devconf; |
1da177e4 | 4739 | t->addrconf_vars[i].extra1 = idev; /* embedded; no ref */ |
bff16c2f | 4740 | t->addrconf_vars[i].extra2 = net; |
1da177e4 | 4741 | } |
1da177e4 | 4742 | |
6105e293 | 4743 | snprintf(path, sizeof(path), "net/ipv6/conf/%s", dev_name); |
1da177e4 | 4744 | |
6105e293 | 4745 | t->sysctl_header = register_net_sysctl(net, path, t->addrconf_vars); |
1da177e4 | 4746 | if (t->sysctl_header == NULL) |
6105e293 | 4747 | goto free; |
f68635e6 PE |
4748 | |
4749 | p->sysctl = t; | |
95897312 | 4750 | return 0; |
1da177e4 | 4751 | |
f68635e6 | 4752 | free: |
1da177e4 | 4753 | kfree(t); |
f68635e6 | 4754 | out: |
95897312 | 4755 | return -ENOBUFS; |
1da177e4 LT |
4756 | } |
4757 | ||
408c4768 PE |
4758 | static void __addrconf_sysctl_unregister(struct ipv6_devconf *p) |
4759 | { | |
4760 | struct addrconf_sysctl_table *t; | |
4761 | ||
4762 | if (p->sysctl == NULL) | |
4763 | return; | |
4764 | ||
4765 | t = p->sysctl; | |
4766 | p->sysctl = NULL; | |
ff538818 | 4767 | unregister_net_sysctl_table(t->sysctl_header); |
408c4768 PE |
4768 | kfree(t); |
4769 | } | |
4770 | ||
f52295a9 PE |
4771 | static void addrconf_sysctl_register(struct inet6_dev *idev) |
4772 | { | |
54716e3b | 4773 | neigh_sysctl_register(idev->dev, idev->nd_parms, "ipv6", |
f8572d8f | 4774 | &ndisc_ifinfo_sysctl_change); |
c346dca1 | 4775 | __addrconf_sysctl_register(dev_net(idev->dev), idev->dev->name, |
f8572d8f | 4776 | idev, &idev->cnf); |
f52295a9 PE |
4777 | } |
4778 | ||
408c4768 | 4779 | static void addrconf_sysctl_unregister(struct inet6_dev *idev) |
1da177e4 | 4780 | { |
408c4768 PE |
4781 | __addrconf_sysctl_unregister(&idev->cnf); |
4782 | neigh_sysctl_unregister(idev->nd_parms); | |
1da177e4 LT |
4783 | } |
4784 | ||
4785 | ||
4786 | #endif | |
4787 | ||
2c8c1e72 | 4788 | static int __net_init addrconf_init_net(struct net *net) |
e0da5a48 PE |
4789 | { |
4790 | int err; | |
4791 | struct ipv6_devconf *all, *dflt; | |
4792 | ||
4793 | err = -ENOMEM; | |
4794 | all = &ipv6_devconf; | |
4795 | dflt = &ipv6_devconf_dflt; | |
4796 | ||
09ad9bc7 | 4797 | if (!net_eq(net, &init_net)) { |
e0da5a48 PE |
4798 | all = kmemdup(all, sizeof(ipv6_devconf), GFP_KERNEL); |
4799 | if (all == NULL) | |
4800 | goto err_alloc_all; | |
4801 | ||
4802 | dflt = kmemdup(dflt, sizeof(ipv6_devconf_dflt), GFP_KERNEL); | |
4803 | if (dflt == NULL) | |
4804 | goto err_alloc_dflt; | |
56d417b1 BH |
4805 | } else { |
4806 | /* these will be inherited by all namespaces */ | |
4807 | dflt->autoconf = ipv6_defaults.autoconf; | |
4808 | dflt->disable_ipv6 = ipv6_defaults.disable_ipv6; | |
e0da5a48 PE |
4809 | } |
4810 | ||
4811 | net->ipv6.devconf_all = all; | |
4812 | net->ipv6.devconf_dflt = dflt; | |
4813 | ||
4814 | #ifdef CONFIG_SYSCTL | |
f8572d8f | 4815 | err = __addrconf_sysctl_register(net, "all", NULL, all); |
e0da5a48 PE |
4816 | if (err < 0) |
4817 | goto err_reg_all; | |
4818 | ||
f8572d8f | 4819 | err = __addrconf_sysctl_register(net, "default", NULL, dflt); |
e0da5a48 PE |
4820 | if (err < 0) |
4821 | goto err_reg_dflt; | |
4822 | #endif | |
4823 | return 0; | |
4824 | ||
4825 | #ifdef CONFIG_SYSCTL | |
4826 | err_reg_dflt: | |
4827 | __addrconf_sysctl_unregister(all); | |
4828 | err_reg_all: | |
4829 | kfree(dflt); | |
4830 | #endif | |
4831 | err_alloc_dflt: | |
4832 | kfree(all); | |
4833 | err_alloc_all: | |
4834 | return err; | |
4835 | } | |
4836 | ||
2c8c1e72 | 4837 | static void __net_exit addrconf_exit_net(struct net *net) |
e0da5a48 PE |
4838 | { |
4839 | #ifdef CONFIG_SYSCTL | |
4840 | __addrconf_sysctl_unregister(net->ipv6.devconf_dflt); | |
4841 | __addrconf_sysctl_unregister(net->ipv6.devconf_all); | |
4842 | #endif | |
09ad9bc7 | 4843 | if (!net_eq(net, &init_net)) { |
e0da5a48 PE |
4844 | kfree(net->ipv6.devconf_dflt); |
4845 | kfree(net->ipv6.devconf_all); | |
4846 | } | |
4847 | } | |
4848 | ||
4849 | static struct pernet_operations addrconf_ops = { | |
4850 | .init = addrconf_init_net, | |
4851 | .exit = addrconf_exit_net, | |
4852 | }; | |
4853 | ||
1da177e4 LT |
4854 | /* |
4855 | * Device notifier | |
4856 | */ | |
4857 | ||
4858 | int register_inet6addr_notifier(struct notifier_block *nb) | |
4859 | { | |
1ab1457c | 4860 | return atomic_notifier_chain_register(&inet6addr_chain, nb); |
1da177e4 | 4861 | } |
7159039a YH |
4862 | EXPORT_SYMBOL(register_inet6addr_notifier); |
4863 | ||
1da177e4 LT |
4864 | int unregister_inet6addr_notifier(struct notifier_block *nb) |
4865 | { | |
e21e8467 | 4866 | return atomic_notifier_chain_unregister(&inet6addr_chain, nb); |
1da177e4 | 4867 | } |
7159039a YH |
4868 | EXPORT_SYMBOL(unregister_inet6addr_notifier); |
4869 | ||
b382b191 TG |
4870 | static struct rtnl_af_ops inet6_ops = { |
4871 | .family = AF_INET6, | |
4872 | .fill_link_af = inet6_fill_link_af, | |
4873 | .get_link_af_size = inet6_get_link_af_size, | |
b382b191 TG |
4874 | }; |
4875 | ||
1da177e4 LT |
4876 | /* |
4877 | * Init / cleanup code | |
4878 | */ | |
4879 | ||
4880 | int __init addrconf_init(void) | |
4881 | { | |
c2e21293 | 4882 | int i, err; |
2a8cc6c8 | 4883 | |
e21e8467 SH |
4884 | err = ipv6_addr_label_init(); |
4885 | if (err < 0) { | |
f3213831 JP |
4886 | pr_crit("%s: cannot initialize default policy table: %d\n", |
4887 | __func__, err); | |
2cc6d2bf | 4888 | goto out; |
2a8cc6c8 | 4889 | } |
1da177e4 | 4890 | |
2cc6d2bf NH |
4891 | err = register_pernet_subsys(&addrconf_ops); |
4892 | if (err < 0) | |
4893 | goto out_addrlabel; | |
e0da5a48 | 4894 | |
1da177e4 LT |
4895 | /* The addrconf netdev notifier requires that loopback_dev |
4896 | * has it's ipv6 private information allocated and setup | |
4897 | * before it can bring up and give link-local addresses | |
4898 | * to other devices which are up. | |
4899 | * | |
4900 | * Unfortunately, loopback_dev is not necessarily the first | |
4901 | * entry in the global dev_base list of net devices. In fact, | |
4902 | * it is likely to be the very last entry on that list. | |
4903 | * So this causes the notifier registry below to try and | |
4904 | * give link-local addresses to all devices besides loopback_dev | |
4905 | * first, then loopback_dev, which cases all the non-loopback_dev | |
4906 | * devices to fail to get a link-local address. | |
4907 | * | |
4908 | * So, as a temporary fix, allocate the ipv6 structure for | |
4909 | * loopback_dev first by hand. | |
4910 | * Longer term, all of the dependencies ipv6 has upon the loopback | |
4911 | * device and it being up should be removed. | |
4912 | */ | |
4913 | rtnl_lock(); | |
2774c7ab | 4914 | if (!ipv6_add_dev(init_net.loopback_dev)) |
1da177e4 LT |
4915 | err = -ENOMEM; |
4916 | rtnl_unlock(); | |
4917 | if (err) | |
e0da5a48 | 4918 | goto errlo; |
1da177e4 | 4919 | |
c2e21293 | 4920 | for (i = 0; i < IN6_ADDR_HSIZE; i++) |
4921 | INIT_HLIST_HEAD(&inet6_addr_lst[i]); | |
4922 | ||
1da177e4 LT |
4923 | register_netdevice_notifier(&ipv6_dev_notf); |
4924 | ||
1da177e4 | 4925 | addrconf_verify(0); |
c127ea2c | 4926 | |
b382b191 TG |
4927 | err = rtnl_af_register(&inet6_ops); |
4928 | if (err < 0) | |
4929 | goto errout_af; | |
4930 | ||
c7ac8679 GR |
4931 | err = __rtnl_register(PF_INET6, RTM_GETLINK, NULL, inet6_dump_ifinfo, |
4932 | NULL); | |
c127ea2c TG |
4933 | if (err < 0) |
4934 | goto errout; | |
4935 | ||
4936 | /* Only the first call to __rtnl_register can fail */ | |
c7ac8679 GR |
4937 | __rtnl_register(PF_INET6, RTM_NEWADDR, inet6_rtm_newaddr, NULL, NULL); |
4938 | __rtnl_register(PF_INET6, RTM_DELADDR, inet6_rtm_deladdr, NULL, NULL); | |
4939 | __rtnl_register(PF_INET6, RTM_GETADDR, inet6_rtm_getaddr, | |
4940 | inet6_dump_ifaddr, NULL); | |
4941 | __rtnl_register(PF_INET6, RTM_GETMULTICAST, NULL, | |
4942 | inet6_dump_ifmcaddr, NULL); | |
4943 | __rtnl_register(PF_INET6, RTM_GETANYCAST, NULL, | |
4944 | inet6_dump_ifacaddr, NULL); | |
76f8f6cb ND |
4945 | __rtnl_register(PF_INET6, RTM_GETNETCONF, inet6_netconf_get_devconf, |
4946 | NULL, NULL); | |
c127ea2c | 4947 | |
2a8cc6c8 YH |
4948 | ipv6_addr_label_rtnl_register(); |
4949 | ||
1da177e4 | 4950 | return 0; |
c127ea2c | 4951 | errout: |
b382b191 TG |
4952 | rtnl_af_unregister(&inet6_ops); |
4953 | errout_af: | |
c127ea2c | 4954 | unregister_netdevice_notifier(&ipv6_dev_notf); |
e0da5a48 PE |
4955 | errlo: |
4956 | unregister_pernet_subsys(&addrconf_ops); | |
2cc6d2bf NH |
4957 | out_addrlabel: |
4958 | ipv6_addr_label_cleanup(); | |
4959 | out: | |
c127ea2c | 4960 | return err; |
1da177e4 LT |
4961 | } |
4962 | ||
09f7709f | 4963 | void addrconf_cleanup(void) |
1da177e4 | 4964 | { |
176c39af | 4965 | struct net_device *dev; |
1da177e4 LT |
4966 | int i; |
4967 | ||
4968 | unregister_netdevice_notifier(&ipv6_dev_notf); | |
e0da5a48 | 4969 | unregister_pernet_subsys(&addrconf_ops); |
2cc6d2bf | 4970 | ipv6_addr_label_cleanup(); |
1da177e4 LT |
4971 | |
4972 | rtnl_lock(); | |
4973 | ||
b382b191 TG |
4974 | __rtnl_af_unregister(&inet6_ops); |
4975 | ||
176c39af DL |
4976 | /* clean dev list */ |
4977 | for_each_netdev(&init_net, dev) { | |
4978 | if (__in6_dev_get(dev) == NULL) | |
4979 | continue; | |
4980 | addrconf_ifdown(dev, 1); | |
4981 | } | |
4982 | addrconf_ifdown(init_net.loopback_dev, 2); | |
4983 | ||
1da177e4 LT |
4984 | /* |
4985 | * Check hash table. | |
4986 | */ | |
5c578aed | 4987 | spin_lock_bh(&addrconf_hash_lock); |
c2e21293 | 4988 | for (i = 0; i < IN6_ADDR_HSIZE; i++) |
4989 | WARN_ON(!hlist_empty(&inet6_addr_lst[i])); | |
5c578aed | 4990 | spin_unlock_bh(&addrconf_hash_lock); |
1da177e4 LT |
4991 | |
4992 | del_timer(&addr_chk_timer); | |
1da177e4 | 4993 | rtnl_unlock(); |
1da177e4 | 4994 | } |