2 * Copyright(c) 2008 Hewlett-Packard Development Company, L.P.
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.
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
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.
18 * The full GNU General Public License is included in this distribution in the
19 * file called LICENSE.
23 #include <linux/types.h>
24 #include <linux/if_vlan.h>
26 #include <net/ndisc.h>
27 #include <net/addrconf.h>
31 * Assign bond->master_ipv6 to the next IPv6 address in the list, or
32 * zero it out if there are none.
34 static void bond_glean_dev_ipv6(struct net_device
*dev
, struct in6_addr
*addr
)
36 struct inet6_dev
*idev
;
37 struct inet6_ifaddr
*ifa
;
42 idev
= in6_dev_get(dev
);
46 read_lock_bh(&idev
->lock
);
47 ifa
= idev
->addr_list
;
49 ipv6_addr_copy(addr
, &ifa
->addr
);
51 ipv6_addr_set(addr
, 0, 0, 0, 0);
53 read_unlock_bh(&idev
->lock
);
58 static void bond_na_send(struct net_device
*slave_dev
,
59 struct in6_addr
*daddr
,
61 unsigned short vlan_id
)
63 struct in6_addr mcaddr
;
64 struct icmp6hdr icmp6h
= {
65 .icmp6_type
= NDISC_NEIGHBOUR_ADVERTISEMENT
,
69 /* The Ethernet header is built in ndisc_send_skb(), not
70 * ndisc_build_skb(), so we cannot insert a VLAN tag. Only an
71 * out-of-line tag inserted by the hardware will work.
73 if (vlan_id
&& !(slave_dev
->features
& NETIF_F_HW_VLAN_TX
))
76 icmp6h
.icmp6_router
= router
;
77 icmp6h
.icmp6_solicited
= 0;
78 icmp6h
.icmp6_override
= 1;
80 addrconf_addr_solict_mult(daddr
, &mcaddr
);
82 pr_debug("ipv6 na on slave %s: dest %pI6, src %pI6\n",
83 slave_dev
->name
, &mcaddr
, daddr
);
85 skb
= ndisc_build_skb(slave_dev
, &mcaddr
, daddr
, &icmp6h
, daddr
,
86 ND_OPT_TARGET_LL_ADDR
);
89 pr_err(DRV_NAME
": NA packet allocation failed\n");
94 skb
= __vlan_hwaccel_put_tag(skb
, vlan_id
);
96 pr_err(DRV_NAME
": failed to insert VLAN tag\n");
101 ndisc_send_skb(skb
, slave_dev
, NULL
, &mcaddr
, daddr
, &icmp6h
);
105 * Kick out an unsolicited Neighbor Advertisement for an IPv6 address on
106 * the bonding master. This will help the switch learn our address
107 * if in active-backup mode.
109 * Caller must hold curr_slave_lock for read or better
111 void bond_send_unsolicited_na(struct bonding
*bond
)
113 struct slave
*slave
= bond
->curr_active_slave
;
114 struct vlan_entry
*vlan
;
115 struct inet6_dev
*idev
;
118 pr_debug("bond_send_unsol_na: bond %s slave %s\n", bond
->dev
->name
,
119 slave
? slave
->dev
->name
: "NULL");
121 if (!slave
|| !bond
->send_unsol_na
||
122 test_bit(__LINK_STATE_LINKWATCH_PENDING
, &slave
->dev
->state
))
125 bond
->send_unsol_na
--;
127 idev
= in6_dev_get(bond
->dev
);
131 is_router
= !!idev
->cnf
.forwarding
;
135 if (!ipv6_addr_any(&bond
->master_ipv6
))
136 bond_na_send(slave
->dev
, &bond
->master_ipv6
, is_router
, 0);
138 list_for_each_entry(vlan
, &bond
->vlan_list
, vlan_list
) {
139 if (!ipv6_addr_any(&vlan
->vlan_ipv6
)) {
140 bond_na_send(slave
->dev
, &vlan
->vlan_ipv6
, is_router
,
147 * bond_inet6addr_event: handle inet6addr notifier chain events.
149 * We keep track of device IPv6 addresses primarily to use as source
150 * addresses in NS probes.
152 * We track one IPv6 for the main device (if it has one).
154 static int bond_inet6addr_event(struct notifier_block
*this,
158 struct inet6_ifaddr
*ifa
= ptr
;
159 struct net_device
*vlan_dev
, *event_dev
= ifa
->idev
->dev
;
160 struct bonding
*bond
;
161 struct vlan_entry
*vlan
;
163 if (dev_net(event_dev
) != &init_net
)
166 list_for_each_entry(bond
, &bond_dev_list
, bond_list
) {
167 if (bond
->dev
== event_dev
) {
170 if (ipv6_addr_any(&bond
->master_ipv6
))
171 ipv6_addr_copy(&bond
->master_ipv6
,
175 if (ipv6_addr_equal(&bond
->master_ipv6
,
177 bond_glean_dev_ipv6(bond
->dev
,
185 list_for_each_entry(vlan
, &bond
->vlan_list
, vlan_list
) {
186 vlan_dev
= vlan_group_get_device(bond
->vlgrp
,
188 if (vlan_dev
== event_dev
) {
191 if (ipv6_addr_any(&vlan
->vlan_ipv6
))
192 ipv6_addr_copy(&vlan
->vlan_ipv6
,
196 if (ipv6_addr_equal(&vlan
->vlan_ipv6
,
198 bond_glean_dev_ipv6(vlan_dev
,
210 static struct notifier_block bond_inet6addr_notifier
= {
211 .notifier_call
= bond_inet6addr_event
,
214 void bond_register_ipv6_notifier(void)
216 register_inet6addr_notifier(&bond_inet6addr_notifier
);
219 void bond_unregister_ipv6_notifier(void)
221 unregister_inet6addr_notifier(&bond_inet6addr_notifier
);