bond_ipv6.c 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217
  1. /*
  2. * Copyright(c) 2008 Hewlett-Packard Development Company, L.P.
  3. *
  4. * This program is free software; you can redistribute it and/or modify it
  5. * under the terms of the GNU General Public License as published by the
  6. * Free Software Foundation; either version 2 of the License, or
  7. * (at your option) any later version.
  8. *
  9. * This program is distributed in the hope that it will be useful, but
  10. * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
  11. * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
  12. * for more details.
  13. *
  14. * You should have received a copy of the GNU General Public License along
  15. * with this program; if not, write to the Free Software Foundation, Inc.,
  16. * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
  17. *
  18. * The full GNU General Public License is included in this distribution in the
  19. * file called LICENSE.
  20. *
  21. */
  22. #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
  23. #include <linux/types.h>
  24. #include <linux/if_vlan.h>
  25. #include <net/ipv6.h>
  26. #include <net/ndisc.h>
  27. #include <net/addrconf.h>
  28. #include <net/netns/generic.h>
  29. #include "bonding.h"
  30. /*
  31. * Assign bond->master_ipv6 to the next IPv6 address in the list, or
  32. * zero it out if there are none.
  33. */
  34. static void bond_glean_dev_ipv6(struct net_device *dev, struct in6_addr *addr)
  35. {
  36. struct inet6_dev *idev;
  37. struct inet6_ifaddr *ifa;
  38. if (!dev)
  39. return;
  40. idev = in6_dev_get(dev);
  41. if (!idev)
  42. return;
  43. read_lock_bh(&idev->lock);
  44. ifa = idev->addr_list;
  45. if (ifa)
  46. ipv6_addr_copy(addr, &ifa->addr);
  47. else
  48. ipv6_addr_set(addr, 0, 0, 0, 0);
  49. read_unlock_bh(&idev->lock);
  50. in6_dev_put(idev);
  51. }
  52. static void bond_na_send(struct net_device *slave_dev,
  53. struct in6_addr *daddr,
  54. int router,
  55. unsigned short vlan_id)
  56. {
  57. struct in6_addr mcaddr;
  58. struct icmp6hdr icmp6h = {
  59. .icmp6_type = NDISC_NEIGHBOUR_ADVERTISEMENT,
  60. };
  61. struct sk_buff *skb;
  62. icmp6h.icmp6_router = router;
  63. icmp6h.icmp6_solicited = 0;
  64. icmp6h.icmp6_override = 1;
  65. addrconf_addr_solict_mult(daddr, &mcaddr);
  66. pr_debug("ipv6 na on slave %s: dest %pI6, src %pI6\n",
  67. slave_dev->name, &mcaddr, daddr);
  68. skb = ndisc_build_skb(slave_dev, &mcaddr, daddr, &icmp6h, daddr,
  69. ND_OPT_TARGET_LL_ADDR);
  70. if (!skb) {
  71. pr_err("NA packet allocation failed\n");
  72. return;
  73. }
  74. if (vlan_id) {
  75. skb = vlan_put_tag(skb, vlan_id);
  76. if (!skb) {
  77. pr_err("failed to insert VLAN tag\n");
  78. return;
  79. }
  80. }
  81. ndisc_send_skb(skb, slave_dev, NULL, &mcaddr, daddr, &icmp6h);
  82. }
  83. /*
  84. * Kick out an unsolicited Neighbor Advertisement for an IPv6 address on
  85. * the bonding master. This will help the switch learn our address
  86. * if in active-backup mode.
  87. *
  88. * Caller must hold curr_slave_lock for read or better
  89. */
  90. void bond_send_unsolicited_na(struct bonding *bond)
  91. {
  92. struct slave *slave = bond->curr_active_slave;
  93. struct vlan_entry *vlan;
  94. struct inet6_dev *idev;
  95. int is_router;
  96. pr_debug("%s: bond %s slave %s\n", bond->dev->name,
  97. __func__, slave ? slave->dev->name : "NULL");
  98. if (!slave || !bond->send_unsol_na ||
  99. test_bit(__LINK_STATE_LINKWATCH_PENDING, &slave->dev->state))
  100. return;
  101. bond->send_unsol_na--;
  102. idev = in6_dev_get(bond->dev);
  103. if (!idev)
  104. return;
  105. is_router = !!idev->cnf.forwarding;
  106. in6_dev_put(idev);
  107. if (!ipv6_addr_any(&bond->master_ipv6))
  108. bond_na_send(slave->dev, &bond->master_ipv6, is_router, 0);
  109. list_for_each_entry(vlan, &bond->vlan_list, vlan_list) {
  110. if (!ipv6_addr_any(&vlan->vlan_ipv6)) {
  111. bond_na_send(slave->dev, &vlan->vlan_ipv6, is_router,
  112. vlan->vlan_id);
  113. }
  114. }
  115. }
  116. /*
  117. * bond_inet6addr_event: handle inet6addr notifier chain events.
  118. *
  119. * We keep track of device IPv6 addresses primarily to use as source
  120. * addresses in NS probes.
  121. *
  122. * We track one IPv6 for the main device (if it has one).
  123. */
  124. static int bond_inet6addr_event(struct notifier_block *this,
  125. unsigned long event,
  126. void *ptr)
  127. {
  128. struct inet6_ifaddr *ifa = ptr;
  129. struct net_device *vlan_dev, *event_dev = ifa->idev->dev;
  130. struct bonding *bond;
  131. struct vlan_entry *vlan;
  132. struct bond_net *bn = net_generic(dev_net(event_dev), bond_net_id);
  133. list_for_each_entry(bond, &bn->dev_list, bond_list) {
  134. if (bond->dev == event_dev) {
  135. switch (event) {
  136. case NETDEV_UP:
  137. if (ipv6_addr_any(&bond->master_ipv6))
  138. ipv6_addr_copy(&bond->master_ipv6,
  139. &ifa->addr);
  140. return NOTIFY_OK;
  141. case NETDEV_DOWN:
  142. if (ipv6_addr_equal(&bond->master_ipv6,
  143. &ifa->addr))
  144. bond_glean_dev_ipv6(bond->dev,
  145. &bond->master_ipv6);
  146. return NOTIFY_OK;
  147. default:
  148. return NOTIFY_DONE;
  149. }
  150. }
  151. list_for_each_entry(vlan, &bond->vlan_list, vlan_list) {
  152. vlan_dev = vlan_group_get_device(bond->vlgrp,
  153. vlan->vlan_id);
  154. if (vlan_dev == event_dev) {
  155. switch (event) {
  156. case NETDEV_UP:
  157. if (ipv6_addr_any(&vlan->vlan_ipv6))
  158. ipv6_addr_copy(&vlan->vlan_ipv6,
  159. &ifa->addr);
  160. return NOTIFY_OK;
  161. case NETDEV_DOWN:
  162. if (ipv6_addr_equal(&vlan->vlan_ipv6,
  163. &ifa->addr))
  164. bond_glean_dev_ipv6(vlan_dev,
  165. &vlan->vlan_ipv6);
  166. return NOTIFY_OK;
  167. default:
  168. return NOTIFY_DONE;
  169. }
  170. }
  171. }
  172. }
  173. return NOTIFY_DONE;
  174. }
  175. static struct notifier_block bond_inet6addr_notifier = {
  176. .notifier_call = bond_inet6addr_event,
  177. };
  178. void bond_register_ipv6_notifier(void)
  179. {
  180. register_inet6addr_notifier(&bond_inet6addr_notifier);
  181. }
  182. void bond_unregister_ipv6_notifier(void)
  183. {
  184. unregister_inet6addr_notifier(&bond_inet6addr_notifier);
  185. }