bonding: prevent deadlock on slave store with alb mode (v3)
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / drivers / net / bonding / bond_alb.c
blob11ebd8f353caa8e36c71de37321de09153c7cdbd
1 /*
2 * Copyright(c) 1999 - 2004 Intel Corporation. All rights reserved.
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
12 * for more details.
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 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
25 #include <linux/skbuff.h>
26 #include <linux/netdevice.h>
27 #include <linux/etherdevice.h>
28 #include <linux/pkt_sched.h>
29 #include <linux/spinlock.h>
30 #include <linux/slab.h>
31 #include <linux/timer.h>
32 #include <linux/ip.h>
33 #include <linux/ipv6.h>
34 #include <linux/if_arp.h>
35 #include <linux/if_ether.h>
36 #include <linux/if_bonding.h>
37 #include <linux/if_vlan.h>
38 #include <linux/in.h>
39 #include <net/ipx.h>
40 #include <net/arp.h>
41 #include <net/ipv6.h>
42 #include <asm/byteorder.h>
43 #include "bonding.h"
44 #include "bond_alb.h"
48 #ifndef __long_aligned
49 #define __long_aligned __attribute__((aligned((sizeof(long)))))
50 #endif
51 static const u8 mac_bcast[ETH_ALEN] __long_aligned = {
52 0xff, 0xff, 0xff, 0xff, 0xff, 0xff
54 static const u8 mac_v6_allmcast[ETH_ALEN] __long_aligned = {
55 0x33, 0x33, 0x00, 0x00, 0x00, 0x01
57 static const int alb_delta_in_ticks = HZ / ALB_TIMER_TICKS_PER_SEC;
59 #pragma pack(1)
60 struct learning_pkt {
61 u8 mac_dst[ETH_ALEN];
62 u8 mac_src[ETH_ALEN];
63 __be16 type;
64 u8 padding[ETH_ZLEN - ETH_HLEN];
67 struct arp_pkt {
68 __be16 hw_addr_space;
69 __be16 prot_addr_space;
70 u8 hw_addr_len;
71 u8 prot_addr_len;
72 __be16 op_code;
73 u8 mac_src[ETH_ALEN]; /* sender hardware address */
74 __be32 ip_src; /* sender IP address */
75 u8 mac_dst[ETH_ALEN]; /* target hardware address */
76 __be32 ip_dst; /* target IP address */
78 #pragma pack()
80 static inline struct arp_pkt *arp_pkt(const struct sk_buff *skb)
82 return (struct arp_pkt *)skb_network_header(skb);
85 /* Forward declaration */
86 static void alb_send_learning_packets(struct slave *slave, u8 mac_addr[]);
88 static inline u8 _simple_hash(const u8 *hash_start, int hash_size)
90 int i;
91 u8 hash = 0;
93 for (i = 0; i < hash_size; i++) {
94 hash ^= hash_start[i];
97 return hash;
100 /*********************** tlb specific functions ***************************/
102 static inline void _lock_tx_hashtbl(struct bonding *bond)
104 spin_lock_bh(&(BOND_ALB_INFO(bond).tx_hashtbl_lock));
107 static inline void _unlock_tx_hashtbl(struct bonding *bond)
109 spin_unlock_bh(&(BOND_ALB_INFO(bond).tx_hashtbl_lock));
112 /* Caller must hold tx_hashtbl lock */
113 static inline void tlb_init_table_entry(struct tlb_client_info *entry, int save_load)
115 if (save_load) {
116 entry->load_history = 1 + entry->tx_bytes /
117 BOND_TLB_REBALANCE_INTERVAL;
118 entry->tx_bytes = 0;
121 entry->tx_slave = NULL;
122 entry->next = TLB_NULL_INDEX;
123 entry->prev = TLB_NULL_INDEX;
126 static inline void tlb_init_slave(struct slave *slave)
128 SLAVE_TLB_INFO(slave).load = 0;
129 SLAVE_TLB_INFO(slave).head = TLB_NULL_INDEX;
132 /* Caller must hold bond lock for read */
133 static void tlb_clear_slave(struct bonding *bond, struct slave *slave, int save_load)
135 struct tlb_client_info *tx_hash_table;
136 u32 index;
138 _lock_tx_hashtbl(bond);
140 /* clear slave from tx_hashtbl */
141 tx_hash_table = BOND_ALB_INFO(bond).tx_hashtbl;
143 /* skip this if we've already freed the tx hash table */
144 if (tx_hash_table) {
145 index = SLAVE_TLB_INFO(slave).head;
146 while (index != TLB_NULL_INDEX) {
147 u32 next_index = tx_hash_table[index].next;
148 tlb_init_table_entry(&tx_hash_table[index], save_load);
149 index = next_index;
153 tlb_init_slave(slave);
155 _unlock_tx_hashtbl(bond);
158 /* Must be called before starting the monitor timer */
159 static int tlb_initialize(struct bonding *bond)
161 struct alb_bond_info *bond_info = &(BOND_ALB_INFO(bond));
162 int size = TLB_HASH_TABLE_SIZE * sizeof(struct tlb_client_info);
163 struct tlb_client_info *new_hashtbl;
164 int i;
166 new_hashtbl = kzalloc(size, GFP_KERNEL);
167 if (!new_hashtbl) {
168 pr_err("%s: Error: Failed to allocate TLB hash table\n",
169 bond->dev->name);
170 return -1;
172 _lock_tx_hashtbl(bond);
174 bond_info->tx_hashtbl = new_hashtbl;
176 for (i = 0; i < TLB_HASH_TABLE_SIZE; i++) {
177 tlb_init_table_entry(&bond_info->tx_hashtbl[i], 1);
180 _unlock_tx_hashtbl(bond);
182 return 0;
185 /* Must be called only after all slaves have been released */
186 static void tlb_deinitialize(struct bonding *bond)
188 struct alb_bond_info *bond_info = &(BOND_ALB_INFO(bond));
190 _lock_tx_hashtbl(bond);
192 kfree(bond_info->tx_hashtbl);
193 bond_info->tx_hashtbl = NULL;
195 _unlock_tx_hashtbl(bond);
198 static long long compute_gap(struct slave *slave)
200 return (s64) (slave->speed << 20) - /* Convert to Megabit per sec */
201 (s64) (SLAVE_TLB_INFO(slave).load << 3); /* Bytes to bits */
204 /* Caller must hold bond lock for read */
205 static struct slave *tlb_get_least_loaded_slave(struct bonding *bond)
207 struct slave *slave, *least_loaded;
208 long long max_gap;
209 int i;
211 least_loaded = NULL;
212 max_gap = LLONG_MIN;
214 /* Find the slave with the largest gap */
215 bond_for_each_slave(bond, slave, i) {
216 if (SLAVE_IS_OK(slave)) {
217 long long gap = compute_gap(slave);
219 if (max_gap < gap) {
220 least_loaded = slave;
221 max_gap = gap;
226 return least_loaded;
229 /* Caller must hold bond lock for read */
230 static struct slave *tlb_choose_channel(struct bonding *bond, u32 hash_index, u32 skb_len)
232 struct alb_bond_info *bond_info = &(BOND_ALB_INFO(bond));
233 struct tlb_client_info *hash_table;
234 struct slave *assigned_slave;
236 _lock_tx_hashtbl(bond);
238 hash_table = bond_info->tx_hashtbl;
239 assigned_slave = hash_table[hash_index].tx_slave;
240 if (!assigned_slave) {
241 assigned_slave = tlb_get_least_loaded_slave(bond);
243 if (assigned_slave) {
244 struct tlb_slave_info *slave_info =
245 &(SLAVE_TLB_INFO(assigned_slave));
246 u32 next_index = slave_info->head;
248 hash_table[hash_index].tx_slave = assigned_slave;
249 hash_table[hash_index].next = next_index;
250 hash_table[hash_index].prev = TLB_NULL_INDEX;
252 if (next_index != TLB_NULL_INDEX) {
253 hash_table[next_index].prev = hash_index;
256 slave_info->head = hash_index;
257 slave_info->load +=
258 hash_table[hash_index].load_history;
262 if (assigned_slave) {
263 hash_table[hash_index].tx_bytes += skb_len;
266 _unlock_tx_hashtbl(bond);
268 return assigned_slave;
271 /*********************** rlb specific functions ***************************/
272 static inline void _lock_rx_hashtbl(struct bonding *bond)
274 spin_lock_bh(&(BOND_ALB_INFO(bond).rx_hashtbl_lock));
277 static inline void _unlock_rx_hashtbl(struct bonding *bond)
279 spin_unlock_bh(&(BOND_ALB_INFO(bond).rx_hashtbl_lock));
282 /* when an ARP REPLY is received from a client update its info
283 * in the rx_hashtbl
285 static void rlb_update_entry_from_arp(struct bonding *bond, struct arp_pkt *arp)
287 struct alb_bond_info *bond_info = &(BOND_ALB_INFO(bond));
288 struct rlb_client_info *client_info;
289 u32 hash_index;
291 _lock_rx_hashtbl(bond);
293 hash_index = _simple_hash((u8*)&(arp->ip_src), sizeof(arp->ip_src));
294 client_info = &(bond_info->rx_hashtbl[hash_index]);
296 if ((client_info->assigned) &&
297 (client_info->ip_src == arp->ip_dst) &&
298 (client_info->ip_dst == arp->ip_src) &&
299 (compare_ether_addr_64bits(client_info->mac_dst, arp->mac_src))) {
300 /* update the clients MAC address */
301 memcpy(client_info->mac_dst, arp->mac_src, ETH_ALEN);
302 client_info->ntt = 1;
303 bond_info->rx_ntt = 1;
306 _unlock_rx_hashtbl(bond);
309 static int rlb_arp_recv(struct sk_buff *skb, struct net_device *bond_dev, struct packet_type *ptype, struct net_device *orig_dev)
311 struct bonding *bond;
312 struct arp_pkt *arp = (struct arp_pkt *)skb->data;
313 int res = NET_RX_DROP;
315 while (bond_dev->priv_flags & IFF_802_1Q_VLAN)
316 bond_dev = vlan_dev_real_dev(bond_dev);
318 if (!(bond_dev->priv_flags & IFF_BONDING) ||
319 !(bond_dev->flags & IFF_MASTER))
320 goto out;
322 if (!arp) {
323 pr_debug("Packet has no ARP data\n");
324 goto out;
327 skb = skb_share_check(skb, GFP_ATOMIC);
328 if (!skb)
329 goto out;
331 if (!pskb_may_pull(skb, arp_hdr_len(bond_dev)))
332 goto out;
334 if (skb->len < sizeof(struct arp_pkt)) {
335 pr_debug("Packet is too small to be an ARP\n");
336 goto out;
339 if (arp->op_code == htons(ARPOP_REPLY)) {
340 /* update rx hash table for this ARP */
341 bond = netdev_priv(bond_dev);
342 rlb_update_entry_from_arp(bond, arp);
343 pr_debug("Server received an ARP Reply from client\n");
346 res = NET_RX_SUCCESS;
348 out:
349 dev_kfree_skb(skb);
351 return res;
354 /* Caller must hold bond lock for read */
355 static struct slave *rlb_next_rx_slave(struct bonding *bond)
357 struct alb_bond_info *bond_info = &(BOND_ALB_INFO(bond));
358 struct slave *rx_slave, *slave, *start_at;
359 int i = 0;
361 if (bond_info->next_rx_slave) {
362 start_at = bond_info->next_rx_slave;
363 } else {
364 start_at = bond->first_slave;
367 rx_slave = NULL;
369 bond_for_each_slave_from(bond, slave, i, start_at) {
370 if (SLAVE_IS_OK(slave)) {
371 if (!rx_slave) {
372 rx_slave = slave;
373 } else if (slave->speed > rx_slave->speed) {
374 rx_slave = slave;
379 if (rx_slave) {
380 bond_info->next_rx_slave = rx_slave->next;
383 return rx_slave;
386 /* teach the switch the mac of a disabled slave
387 * on the primary for fault tolerance
389 * Caller must hold bond->curr_slave_lock for write or bond lock for write
391 static void rlb_teach_disabled_mac_on_primary(struct bonding *bond, u8 addr[])
393 if (!bond->curr_active_slave) {
394 return;
397 if (!bond->alb_info.primary_is_promisc) {
398 if (!dev_set_promiscuity(bond->curr_active_slave->dev, 1))
399 bond->alb_info.primary_is_promisc = 1;
400 else
401 bond->alb_info.primary_is_promisc = 0;
404 bond->alb_info.rlb_promisc_timeout_counter = 0;
406 alb_send_learning_packets(bond->curr_active_slave, addr);
409 /* slave being removed should not be active at this point
411 * Caller must hold bond lock for read
413 static void rlb_clear_slave(struct bonding *bond, struct slave *slave)
415 struct alb_bond_info *bond_info = &(BOND_ALB_INFO(bond));
416 struct rlb_client_info *rx_hash_table;
417 u32 index, next_index;
419 /* clear slave from rx_hashtbl */
420 _lock_rx_hashtbl(bond);
422 rx_hash_table = bond_info->rx_hashtbl;
423 index = bond_info->rx_hashtbl_head;
424 for (; index != RLB_NULL_INDEX; index = next_index) {
425 next_index = rx_hash_table[index].next;
426 if (rx_hash_table[index].slave == slave) {
427 struct slave *assigned_slave = rlb_next_rx_slave(bond);
429 if (assigned_slave) {
430 rx_hash_table[index].slave = assigned_slave;
431 if (compare_ether_addr_64bits(rx_hash_table[index].mac_dst,
432 mac_bcast)) {
433 bond_info->rx_hashtbl[index].ntt = 1;
434 bond_info->rx_ntt = 1;
435 /* A slave has been removed from the
436 * table because it is either disabled
437 * or being released. We must retry the
438 * update to avoid clients from not
439 * being updated & disconnecting when
440 * there is stress
442 bond_info->rlb_update_retry_counter =
443 RLB_UPDATE_RETRY;
445 } else { /* there is no active slave */
446 rx_hash_table[index].slave = NULL;
451 _unlock_rx_hashtbl(bond);
453 write_lock_bh(&bond->curr_slave_lock);
455 if (slave != bond->curr_active_slave) {
456 rlb_teach_disabled_mac_on_primary(bond, slave->dev->dev_addr);
459 write_unlock_bh(&bond->curr_slave_lock);
462 static void rlb_update_client(struct rlb_client_info *client_info)
464 int i;
466 if (!client_info->slave) {
467 return;
470 for (i = 0; i < RLB_ARP_BURST_SIZE; i++) {
471 struct sk_buff *skb;
473 skb = arp_create(ARPOP_REPLY, ETH_P_ARP,
474 client_info->ip_dst,
475 client_info->slave->dev,
476 client_info->ip_src,
477 client_info->mac_dst,
478 client_info->slave->dev->dev_addr,
479 client_info->mac_dst);
480 if (!skb) {
481 pr_err("%s: Error: failed to create an ARP packet\n",
482 client_info->slave->dev->master->name);
483 continue;
486 skb->dev = client_info->slave->dev;
488 if (client_info->tag) {
489 skb = vlan_put_tag(skb, client_info->vlan_id);
490 if (!skb) {
491 pr_err("%s: Error: failed to insert VLAN tag\n",
492 client_info->slave->dev->master->name);
493 continue;
497 arp_xmit(skb);
501 /* sends ARP REPLIES that update the clients that need updating */
502 static void rlb_update_rx_clients(struct bonding *bond)
504 struct alb_bond_info *bond_info = &(BOND_ALB_INFO(bond));
505 struct rlb_client_info *client_info;
506 u32 hash_index;
508 _lock_rx_hashtbl(bond);
510 hash_index = bond_info->rx_hashtbl_head;
511 for (; hash_index != RLB_NULL_INDEX; hash_index = client_info->next) {
512 client_info = &(bond_info->rx_hashtbl[hash_index]);
513 if (client_info->ntt) {
514 rlb_update_client(client_info);
515 if (bond_info->rlb_update_retry_counter == 0) {
516 client_info->ntt = 0;
521 /* do not update the entries again until this counter is zero so that
522 * not to confuse the clients.
524 bond_info->rlb_update_delay_counter = RLB_UPDATE_DELAY;
526 _unlock_rx_hashtbl(bond);
529 /* The slave was assigned a new mac address - update the clients */
530 static void rlb_req_update_slave_clients(struct bonding *bond, struct slave *slave)
532 struct alb_bond_info *bond_info = &(BOND_ALB_INFO(bond));
533 struct rlb_client_info *client_info;
534 int ntt = 0;
535 u32 hash_index;
537 _lock_rx_hashtbl(bond);
539 hash_index = bond_info->rx_hashtbl_head;
540 for (; hash_index != RLB_NULL_INDEX; hash_index = client_info->next) {
541 client_info = &(bond_info->rx_hashtbl[hash_index]);
543 if ((client_info->slave == slave) &&
544 compare_ether_addr_64bits(client_info->mac_dst, mac_bcast)) {
545 client_info->ntt = 1;
546 ntt = 1;
550 // update the team's flag only after the whole iteration
551 if (ntt) {
552 bond_info->rx_ntt = 1;
553 //fasten the change
554 bond_info->rlb_update_retry_counter = RLB_UPDATE_RETRY;
557 _unlock_rx_hashtbl(bond);
560 /* mark all clients using src_ip to be updated */
561 static void rlb_req_update_subnet_clients(struct bonding *bond, __be32 src_ip)
563 struct alb_bond_info *bond_info = &(BOND_ALB_INFO(bond));
564 struct rlb_client_info *client_info;
565 u32 hash_index;
567 _lock_rx_hashtbl(bond);
569 hash_index = bond_info->rx_hashtbl_head;
570 for (; hash_index != RLB_NULL_INDEX; hash_index = client_info->next) {
571 client_info = &(bond_info->rx_hashtbl[hash_index]);
573 if (!client_info->slave) {
574 pr_err("%s: Error: found a client with no channel in the client's hash table\n",
575 bond->dev->name);
576 continue;
578 /*update all clients using this src_ip, that are not assigned
579 * to the team's address (curr_active_slave) and have a known
580 * unicast mac address.
582 if ((client_info->ip_src == src_ip) &&
583 compare_ether_addr_64bits(client_info->slave->dev->dev_addr,
584 bond->dev->dev_addr) &&
585 compare_ether_addr_64bits(client_info->mac_dst, mac_bcast)) {
586 client_info->ntt = 1;
587 bond_info->rx_ntt = 1;
591 _unlock_rx_hashtbl(bond);
594 /* Caller must hold both bond and ptr locks for read */
595 static struct slave *rlb_choose_channel(struct sk_buff *skb, struct bonding *bond)
597 struct alb_bond_info *bond_info = &(BOND_ALB_INFO(bond));
598 struct arp_pkt *arp = arp_pkt(skb);
599 struct slave *assigned_slave;
600 struct rlb_client_info *client_info;
601 u32 hash_index = 0;
603 _lock_rx_hashtbl(bond);
605 hash_index = _simple_hash((u8 *)&arp->ip_dst, sizeof(arp->ip_src));
606 client_info = &(bond_info->rx_hashtbl[hash_index]);
608 if (client_info->assigned) {
609 if ((client_info->ip_src == arp->ip_src) &&
610 (client_info->ip_dst == arp->ip_dst)) {
611 /* the entry is already assigned to this client */
612 if (compare_ether_addr_64bits(arp->mac_dst, mac_bcast)) {
613 /* update mac address from arp */
614 memcpy(client_info->mac_dst, arp->mac_dst, ETH_ALEN);
617 assigned_slave = client_info->slave;
618 if (assigned_slave) {
619 _unlock_rx_hashtbl(bond);
620 return assigned_slave;
622 } else {
623 /* the entry is already assigned to some other client,
624 * move the old client to primary (curr_active_slave) so
625 * that the new client can be assigned to this entry.
627 if (bond->curr_active_slave &&
628 client_info->slave != bond->curr_active_slave) {
629 client_info->slave = bond->curr_active_slave;
630 rlb_update_client(client_info);
634 /* assign a new slave */
635 assigned_slave = rlb_next_rx_slave(bond);
637 if (assigned_slave) {
638 client_info->ip_src = arp->ip_src;
639 client_info->ip_dst = arp->ip_dst;
640 /* arp->mac_dst is broadcast for arp reqeusts.
641 * will be updated with clients actual unicast mac address
642 * upon receiving an arp reply.
644 memcpy(client_info->mac_dst, arp->mac_dst, ETH_ALEN);
645 client_info->slave = assigned_slave;
647 if (compare_ether_addr_64bits(client_info->mac_dst, mac_bcast)) {
648 client_info->ntt = 1;
649 bond->alb_info.rx_ntt = 1;
650 } else {
651 client_info->ntt = 0;
654 if (bond->vlgrp) {
655 if (!vlan_get_tag(skb, &client_info->vlan_id))
656 client_info->tag = 1;
659 if (!client_info->assigned) {
660 u32 prev_tbl_head = bond_info->rx_hashtbl_head;
661 bond_info->rx_hashtbl_head = hash_index;
662 client_info->next = prev_tbl_head;
663 if (prev_tbl_head != RLB_NULL_INDEX) {
664 bond_info->rx_hashtbl[prev_tbl_head].prev =
665 hash_index;
667 client_info->assigned = 1;
671 _unlock_rx_hashtbl(bond);
673 return assigned_slave;
676 /* chooses (and returns) transmit channel for arp reply
677 * does not choose channel for other arp types since they are
678 * sent on the curr_active_slave
680 static struct slave *rlb_arp_xmit(struct sk_buff *skb, struct bonding *bond)
682 struct arp_pkt *arp = arp_pkt(skb);
683 struct slave *tx_slave = NULL;
685 if (arp->op_code == htons(ARPOP_REPLY)) {
686 /* the arp must be sent on the selected
687 * rx channel
689 tx_slave = rlb_choose_channel(skb, bond);
690 if (tx_slave) {
691 memcpy(arp->mac_src,tx_slave->dev->dev_addr, ETH_ALEN);
693 pr_debug("Server sent ARP Reply packet\n");
694 } else if (arp->op_code == htons(ARPOP_REQUEST)) {
695 /* Create an entry in the rx_hashtbl for this client as a
696 * place holder.
697 * When the arp reply is received the entry will be updated
698 * with the correct unicast address of the client.
700 rlb_choose_channel(skb, bond);
702 /* The ARP relpy packets must be delayed so that
703 * they can cancel out the influence of the ARP request.
705 bond->alb_info.rlb_update_delay_counter = RLB_UPDATE_DELAY;
707 /* arp requests are broadcast and are sent on the primary
708 * the arp request will collapse all clients on the subnet to
709 * the primary slave. We must register these clients to be
710 * updated with their assigned mac.
712 rlb_req_update_subnet_clients(bond, arp->ip_src);
713 pr_debug("Server sent ARP Request packet\n");
716 return tx_slave;
719 /* Caller must hold bond lock for read */
720 static void rlb_rebalance(struct bonding *bond)
722 struct alb_bond_info *bond_info = &(BOND_ALB_INFO(bond));
723 struct slave *assigned_slave;
724 struct rlb_client_info *client_info;
725 int ntt;
726 u32 hash_index;
728 _lock_rx_hashtbl(bond);
730 ntt = 0;
731 hash_index = bond_info->rx_hashtbl_head;
732 for (; hash_index != RLB_NULL_INDEX; hash_index = client_info->next) {
733 client_info = &(bond_info->rx_hashtbl[hash_index]);
734 assigned_slave = rlb_next_rx_slave(bond);
735 if (assigned_slave && (client_info->slave != assigned_slave)) {
736 client_info->slave = assigned_slave;
737 client_info->ntt = 1;
738 ntt = 1;
742 /* update the team's flag only after the whole iteration */
743 if (ntt) {
744 bond_info->rx_ntt = 1;
746 _unlock_rx_hashtbl(bond);
749 /* Caller must hold rx_hashtbl lock */
750 static void rlb_init_table_entry(struct rlb_client_info *entry)
752 memset(entry, 0, sizeof(struct rlb_client_info));
753 entry->next = RLB_NULL_INDEX;
754 entry->prev = RLB_NULL_INDEX;
757 static int rlb_initialize(struct bonding *bond)
759 struct alb_bond_info *bond_info = &(BOND_ALB_INFO(bond));
760 struct packet_type *pk_type = &(BOND_ALB_INFO(bond).rlb_pkt_type);
761 struct rlb_client_info *new_hashtbl;
762 int size = RLB_HASH_TABLE_SIZE * sizeof(struct rlb_client_info);
763 int i;
765 new_hashtbl = kmalloc(size, GFP_KERNEL);
766 if (!new_hashtbl) {
767 pr_err("%s: Error: Failed to allocate RLB hash table\n",
768 bond->dev->name);
769 return -1;
771 _lock_rx_hashtbl(bond);
773 bond_info->rx_hashtbl = new_hashtbl;
775 bond_info->rx_hashtbl_head = RLB_NULL_INDEX;
777 for (i = 0; i < RLB_HASH_TABLE_SIZE; i++) {
778 rlb_init_table_entry(bond_info->rx_hashtbl + i);
781 _unlock_rx_hashtbl(bond);
783 /*initialize packet type*/
784 pk_type->type = cpu_to_be16(ETH_P_ARP);
785 pk_type->dev = bond->dev;
786 pk_type->func = rlb_arp_recv;
788 /* register to receive ARPs */
789 dev_add_pack(pk_type);
791 return 0;
794 static void rlb_deinitialize(struct bonding *bond)
796 struct alb_bond_info *bond_info = &(BOND_ALB_INFO(bond));
798 dev_remove_pack(&(bond_info->rlb_pkt_type));
800 _lock_rx_hashtbl(bond);
802 kfree(bond_info->rx_hashtbl);
803 bond_info->rx_hashtbl = NULL;
804 bond_info->rx_hashtbl_head = RLB_NULL_INDEX;
806 _unlock_rx_hashtbl(bond);
809 static void rlb_clear_vlan(struct bonding *bond, unsigned short vlan_id)
811 struct alb_bond_info *bond_info = &(BOND_ALB_INFO(bond));
812 u32 curr_index;
814 _lock_rx_hashtbl(bond);
816 curr_index = bond_info->rx_hashtbl_head;
817 while (curr_index != RLB_NULL_INDEX) {
818 struct rlb_client_info *curr = &(bond_info->rx_hashtbl[curr_index]);
819 u32 next_index = bond_info->rx_hashtbl[curr_index].next;
820 u32 prev_index = bond_info->rx_hashtbl[curr_index].prev;
822 if (curr->tag && (curr->vlan_id == vlan_id)) {
823 if (curr_index == bond_info->rx_hashtbl_head) {
824 bond_info->rx_hashtbl_head = next_index;
826 if (prev_index != RLB_NULL_INDEX) {
827 bond_info->rx_hashtbl[prev_index].next = next_index;
829 if (next_index != RLB_NULL_INDEX) {
830 bond_info->rx_hashtbl[next_index].prev = prev_index;
833 rlb_init_table_entry(curr);
836 curr_index = next_index;
839 _unlock_rx_hashtbl(bond);
842 /*********************** tlb/rlb shared functions *********************/
844 static void alb_send_learning_packets(struct slave *slave, u8 mac_addr[])
846 struct bonding *bond = bond_get_bond_by_slave(slave);
847 struct learning_pkt pkt;
848 int size = sizeof(struct learning_pkt);
849 int i;
851 memset(&pkt, 0, size);
852 memcpy(pkt.mac_dst, mac_addr, ETH_ALEN);
853 memcpy(pkt.mac_src, mac_addr, ETH_ALEN);
854 pkt.type = cpu_to_be16(ETH_P_LOOP);
856 for (i = 0; i < MAX_LP_BURST; i++) {
857 struct sk_buff *skb;
858 char *data;
860 skb = dev_alloc_skb(size);
861 if (!skb) {
862 return;
865 data = skb_put(skb, size);
866 memcpy(data, &pkt, size);
868 skb_reset_mac_header(skb);
869 skb->network_header = skb->mac_header + ETH_HLEN;
870 skb->protocol = pkt.type;
871 skb->priority = TC_PRIO_CONTROL;
872 skb->dev = slave->dev;
874 if (bond->vlgrp) {
875 struct vlan_entry *vlan;
877 vlan = bond_next_vlan(bond,
878 bond->alb_info.current_alb_vlan);
880 bond->alb_info.current_alb_vlan = vlan;
881 if (!vlan) {
882 kfree_skb(skb);
883 continue;
886 skb = vlan_put_tag(skb, vlan->vlan_id);
887 if (!skb) {
888 pr_err("%s: Error: failed to insert VLAN tag\n",
889 bond->dev->name);
890 continue;
894 dev_queue_xmit(skb);
898 /* hw is a boolean parameter that determines whether we should try and
899 * set the hw address of the device as well as the hw address of the
900 * net_device
902 static int alb_set_slave_mac_addr(struct slave *slave, u8 addr[], int hw)
904 struct net_device *dev = slave->dev;
905 struct sockaddr s_addr;
907 if (!hw) {
908 memcpy(dev->dev_addr, addr, dev->addr_len);
909 return 0;
912 /* for rlb each slave must have a unique hw mac addresses so that */
913 /* each slave will receive packets destined to a different mac */
914 memcpy(s_addr.sa_data, addr, dev->addr_len);
915 s_addr.sa_family = dev->type;
916 if (dev_set_mac_address(dev, &s_addr)) {
917 pr_err("%s: Error: dev_set_mac_address of dev %s failed!\n"
918 "ALB mode requires that the base driver support setting the hw address also when the network device's interface is open\n",
919 dev->master->name, dev->name);
920 return -EOPNOTSUPP;
922 return 0;
926 * Swap MAC addresses between two slaves.
928 * Called with RTNL held, and no other locks.
932 static void alb_swap_mac_addr(struct bonding *bond, struct slave *slave1, struct slave *slave2)
934 u8 tmp_mac_addr[ETH_ALEN];
936 memcpy(tmp_mac_addr, slave1->dev->dev_addr, ETH_ALEN);
937 alb_set_slave_mac_addr(slave1, slave2->dev->dev_addr, bond->alb_info.rlb_enabled);
938 alb_set_slave_mac_addr(slave2, tmp_mac_addr, bond->alb_info.rlb_enabled);
943 * Send learning packets after MAC address swap.
945 * Called with RTNL and no other locks
947 static void alb_fasten_mac_swap(struct bonding *bond, struct slave *slave1,
948 struct slave *slave2)
950 int slaves_state_differ = (SLAVE_IS_OK(slave1) != SLAVE_IS_OK(slave2));
951 struct slave *disabled_slave = NULL;
953 ASSERT_RTNL();
955 /* fasten the change in the switch */
956 if (SLAVE_IS_OK(slave1)) {
957 alb_send_learning_packets(slave1, slave1->dev->dev_addr);
958 if (bond->alb_info.rlb_enabled) {
959 /* inform the clients that the mac address
960 * has changed
962 rlb_req_update_slave_clients(bond, slave1);
964 } else {
965 disabled_slave = slave1;
968 if (SLAVE_IS_OK(slave2)) {
969 alb_send_learning_packets(slave2, slave2->dev->dev_addr);
970 if (bond->alb_info.rlb_enabled) {
971 /* inform the clients that the mac address
972 * has changed
974 rlb_req_update_slave_clients(bond, slave2);
976 } else {
977 disabled_slave = slave2;
980 if (bond->alb_info.rlb_enabled && slaves_state_differ) {
981 /* A disabled slave was assigned an active mac addr */
982 rlb_teach_disabled_mac_on_primary(bond,
983 disabled_slave->dev->dev_addr);
988 * alb_change_hw_addr_on_detach
989 * @bond: bonding we're working on
990 * @slave: the slave that was just detached
992 * We assume that @slave was already detached from the slave list.
994 * If @slave's permanent hw address is different both from its current
995 * address and from @bond's address, then somewhere in the bond there's
996 * a slave that has @slave's permanet address as its current address.
997 * We'll make sure that that slave no longer uses @slave's permanent address.
999 * Caller must hold RTNL and no other locks
1001 static void alb_change_hw_addr_on_detach(struct bonding *bond, struct slave *slave)
1003 int perm_curr_diff;
1004 int perm_bond_diff;
1006 perm_curr_diff = compare_ether_addr_64bits(slave->perm_hwaddr,
1007 slave->dev->dev_addr);
1008 perm_bond_diff = compare_ether_addr_64bits(slave->perm_hwaddr,
1009 bond->dev->dev_addr);
1011 if (perm_curr_diff && perm_bond_diff) {
1012 struct slave *tmp_slave;
1013 int i, found = 0;
1015 bond_for_each_slave(bond, tmp_slave, i) {
1016 if (!compare_ether_addr_64bits(slave->perm_hwaddr,
1017 tmp_slave->dev->dev_addr)) {
1018 found = 1;
1019 break;
1023 if (found) {
1024 /* locking: needs RTNL and nothing else */
1025 alb_swap_mac_addr(bond, slave, tmp_slave);
1026 alb_fasten_mac_swap(bond, slave, tmp_slave);
1032 * alb_handle_addr_collision_on_attach
1033 * @bond: bonding we're working on
1034 * @slave: the slave that was just attached
1036 * checks uniqueness of slave's mac address and handles the case the
1037 * new slave uses the bonds mac address.
1039 * If the permanent hw address of @slave is @bond's hw address, we need to
1040 * find a different hw address to give @slave, that isn't in use by any other
1041 * slave in the bond. This address must be, of course, one of the premanent
1042 * addresses of the other slaves.
1044 * We go over the slave list, and for each slave there we compare its
1045 * permanent hw address with the current address of all the other slaves.
1046 * If no match was found, then we've found a slave with a permanent address
1047 * that isn't used by any other slave in the bond, so we can assign it to
1048 * @slave.
1050 * assumption: this function is called before @slave is attached to the
1051 * bond slave list.
1053 * caller must hold the bond lock for write since the mac addresses are compared
1054 * and may be swapped.
1056 static int alb_handle_addr_collision_on_attach(struct bonding *bond, struct slave *slave)
1058 struct slave *tmp_slave1, *tmp_slave2, *free_mac_slave;
1059 struct slave *has_bond_addr = bond->curr_active_slave;
1060 int i, j, found = 0;
1062 if (bond->slave_cnt == 0) {
1063 /* this is the first slave */
1064 return 0;
1067 /* if slave's mac address differs from bond's mac address
1068 * check uniqueness of slave's mac address against the other
1069 * slaves in the bond.
1071 if (compare_ether_addr_64bits(slave->perm_hwaddr, bond->dev->dev_addr)) {
1072 bond_for_each_slave(bond, tmp_slave1, i) {
1073 if (!compare_ether_addr_64bits(tmp_slave1->dev->dev_addr,
1074 slave->dev->dev_addr)) {
1075 found = 1;
1076 break;
1080 if (!found)
1081 return 0;
1083 /* Try setting slave mac to bond address and fall-through
1084 to code handling that situation below... */
1085 alb_set_slave_mac_addr(slave, bond->dev->dev_addr,
1086 bond->alb_info.rlb_enabled);
1089 /* The slave's address is equal to the address of the bond.
1090 * Search for a spare address in the bond for this slave.
1092 free_mac_slave = NULL;
1094 bond_for_each_slave(bond, tmp_slave1, i) {
1095 found = 0;
1096 bond_for_each_slave(bond, tmp_slave2, j) {
1097 if (!compare_ether_addr_64bits(tmp_slave1->perm_hwaddr,
1098 tmp_slave2->dev->dev_addr)) {
1099 found = 1;
1100 break;
1104 if (!found) {
1105 /* no slave has tmp_slave1's perm addr
1106 * as its curr addr
1108 free_mac_slave = tmp_slave1;
1109 break;
1112 if (!has_bond_addr) {
1113 if (!compare_ether_addr_64bits(tmp_slave1->dev->dev_addr,
1114 bond->dev->dev_addr)) {
1116 has_bond_addr = tmp_slave1;
1121 if (free_mac_slave) {
1122 alb_set_slave_mac_addr(slave, free_mac_slave->perm_hwaddr,
1123 bond->alb_info.rlb_enabled);
1125 pr_warning("%s: Warning: the hw address of slave %s is in use by the bond; giving it the hw address of %s\n",
1126 bond->dev->name, slave->dev->name,
1127 free_mac_slave->dev->name);
1129 } else if (has_bond_addr) {
1130 pr_err("%s: Error: the hw address of slave %s is in use by the bond; couldn't find a slave with a free hw address to give it (this should not have happened)\n",
1131 bond->dev->name, slave->dev->name);
1132 return -EFAULT;
1135 return 0;
1139 * alb_set_mac_address
1140 * @bond:
1141 * @addr:
1143 * In TLB mode all slaves are configured to the bond's hw address, but set
1144 * their dev_addr field to different addresses (based on their permanent hw
1145 * addresses).
1147 * For each slave, this function sets the interface to the new address and then
1148 * changes its dev_addr field to its previous value.
1150 * Unwinding assumes bond's mac address has not yet changed.
1152 static int alb_set_mac_address(struct bonding *bond, void *addr)
1154 struct sockaddr sa;
1155 struct slave *slave, *stop_at;
1156 char tmp_addr[ETH_ALEN];
1157 int res;
1158 int i;
1160 if (bond->alb_info.rlb_enabled) {
1161 return 0;
1164 bond_for_each_slave(bond, slave, i) {
1165 /* save net_device's current hw address */
1166 memcpy(tmp_addr, slave->dev->dev_addr, ETH_ALEN);
1168 res = dev_set_mac_address(slave->dev, addr);
1170 /* restore net_device's hw address */
1171 memcpy(slave->dev->dev_addr, tmp_addr, ETH_ALEN);
1173 if (res)
1174 goto unwind;
1177 return 0;
1179 unwind:
1180 memcpy(sa.sa_data, bond->dev->dev_addr, bond->dev->addr_len);
1181 sa.sa_family = bond->dev->type;
1183 /* unwind from head to the slave that failed */
1184 stop_at = slave;
1185 bond_for_each_slave_from_to(bond, slave, i, bond->first_slave, stop_at) {
1186 memcpy(tmp_addr, slave->dev->dev_addr, ETH_ALEN);
1187 dev_set_mac_address(slave->dev, &sa);
1188 memcpy(slave->dev->dev_addr, tmp_addr, ETH_ALEN);
1191 return res;
1194 /************************ exported alb funcions ************************/
1196 int bond_alb_initialize(struct bonding *bond, int rlb_enabled)
1198 int res;
1200 res = tlb_initialize(bond);
1201 if (res) {
1202 return res;
1205 if (rlb_enabled) {
1206 bond->alb_info.rlb_enabled = 1;
1207 /* initialize rlb */
1208 res = rlb_initialize(bond);
1209 if (res) {
1210 tlb_deinitialize(bond);
1211 return res;
1213 } else {
1214 bond->alb_info.rlb_enabled = 0;
1217 return 0;
1220 void bond_alb_deinitialize(struct bonding *bond)
1222 struct alb_bond_info *bond_info = &(BOND_ALB_INFO(bond));
1224 tlb_deinitialize(bond);
1226 if (bond_info->rlb_enabled) {
1227 rlb_deinitialize(bond);
1231 int bond_alb_xmit(struct sk_buff *skb, struct net_device *bond_dev)
1233 struct bonding *bond = netdev_priv(bond_dev);
1234 struct ethhdr *eth_data;
1235 struct alb_bond_info *bond_info = &(BOND_ALB_INFO(bond));
1236 struct slave *tx_slave = NULL;
1237 static const __be32 ip_bcast = htonl(0xffffffff);
1238 int hash_size = 0;
1239 int do_tx_balance = 1;
1240 u32 hash_index = 0;
1241 const u8 *hash_start = NULL;
1242 int res = 1;
1243 struct ipv6hdr *ip6hdr;
1245 skb_reset_mac_header(skb);
1246 eth_data = eth_hdr(skb);
1248 /* make sure that the curr_active_slave and the slaves list do
1249 * not change during tx
1251 read_lock(&bond->lock);
1252 read_lock(&bond->curr_slave_lock);
1254 if (!BOND_IS_OK(bond)) {
1255 goto out;
1258 switch (ntohs(skb->protocol)) {
1259 case ETH_P_IP: {
1260 const struct iphdr *iph = ip_hdr(skb);
1262 if (!compare_ether_addr_64bits(eth_data->h_dest, mac_bcast) ||
1263 (iph->daddr == ip_bcast) ||
1264 (iph->protocol == IPPROTO_IGMP)) {
1265 do_tx_balance = 0;
1266 break;
1268 hash_start = (char *)&(iph->daddr);
1269 hash_size = sizeof(iph->daddr);
1271 break;
1272 case ETH_P_IPV6:
1273 /* IPv6 doesn't really use broadcast mac address, but leave
1274 * that here just in case.
1276 if (!compare_ether_addr_64bits(eth_data->h_dest, mac_bcast)) {
1277 do_tx_balance = 0;
1278 break;
1281 /* IPv6 uses all-nodes multicast as an equivalent to
1282 * broadcasts in IPv4.
1284 if (!compare_ether_addr_64bits(eth_data->h_dest, mac_v6_allmcast)) {
1285 do_tx_balance = 0;
1286 break;
1289 /* Additianally, DAD probes should not be tx-balanced as that
1290 * will lead to false positives for duplicate addresses and
1291 * prevent address configuration from working.
1293 ip6hdr = ipv6_hdr(skb);
1294 if (ipv6_addr_any(&ip6hdr->saddr)) {
1295 do_tx_balance = 0;
1296 break;
1299 hash_start = (char *)&(ipv6_hdr(skb)->daddr);
1300 hash_size = sizeof(ipv6_hdr(skb)->daddr);
1301 break;
1302 case ETH_P_IPX:
1303 if (ipx_hdr(skb)->ipx_checksum != IPX_NO_CHECKSUM) {
1304 /* something is wrong with this packet */
1305 do_tx_balance = 0;
1306 break;
1309 if (ipx_hdr(skb)->ipx_type != IPX_TYPE_NCP) {
1310 /* The only protocol worth balancing in
1311 * this family since it has an "ARP" like
1312 * mechanism
1314 do_tx_balance = 0;
1315 break;
1318 hash_start = (char*)eth_data->h_dest;
1319 hash_size = ETH_ALEN;
1320 break;
1321 case ETH_P_ARP:
1322 do_tx_balance = 0;
1323 if (bond_info->rlb_enabled) {
1324 tx_slave = rlb_arp_xmit(skb, bond);
1326 break;
1327 default:
1328 do_tx_balance = 0;
1329 break;
1332 if (do_tx_balance) {
1333 hash_index = _simple_hash(hash_start, hash_size);
1334 tx_slave = tlb_choose_channel(bond, hash_index, skb->len);
1337 if (!tx_slave) {
1338 /* unbalanced or unassigned, send through primary */
1339 tx_slave = bond->curr_active_slave;
1340 bond_info->unbalanced_load += skb->len;
1343 if (tx_slave && SLAVE_IS_OK(tx_slave)) {
1344 if (tx_slave != bond->curr_active_slave) {
1345 memcpy(eth_data->h_source,
1346 tx_slave->dev->dev_addr,
1347 ETH_ALEN);
1350 res = bond_dev_queue_xmit(bond, skb, tx_slave->dev);
1351 } else {
1352 if (tx_slave) {
1353 tlb_clear_slave(bond, tx_slave, 0);
1357 out:
1358 if (res) {
1359 /* no suitable interface, frame not sent */
1360 dev_kfree_skb(skb);
1362 read_unlock(&bond->curr_slave_lock);
1363 read_unlock(&bond->lock);
1364 return NETDEV_TX_OK;
1367 void bond_alb_monitor(struct work_struct *work)
1369 struct bonding *bond = container_of(work, struct bonding,
1370 alb_work.work);
1371 struct alb_bond_info *bond_info = &(BOND_ALB_INFO(bond));
1372 struct slave *slave;
1373 int i;
1375 read_lock(&bond->lock);
1377 if (bond->kill_timers) {
1378 goto out;
1381 if (bond->slave_cnt == 0) {
1382 bond_info->tx_rebalance_counter = 0;
1383 bond_info->lp_counter = 0;
1384 goto re_arm;
1387 bond_info->tx_rebalance_counter++;
1388 bond_info->lp_counter++;
1390 /* send learning packets */
1391 if (bond_info->lp_counter >= BOND_ALB_LP_TICKS) {
1392 /* change of curr_active_slave involves swapping of mac addresses.
1393 * in order to avoid this swapping from happening while
1394 * sending the learning packets, the curr_slave_lock must be held for
1395 * read.
1397 read_lock(&bond->curr_slave_lock);
1399 bond_for_each_slave(bond, slave, i) {
1400 alb_send_learning_packets(slave, slave->dev->dev_addr);
1403 read_unlock(&bond->curr_slave_lock);
1405 bond_info->lp_counter = 0;
1408 /* rebalance tx traffic */
1409 if (bond_info->tx_rebalance_counter >= BOND_TLB_REBALANCE_TICKS) {
1411 read_lock(&bond->curr_slave_lock);
1413 bond_for_each_slave(bond, slave, i) {
1414 tlb_clear_slave(bond, slave, 1);
1415 if (slave == bond->curr_active_slave) {
1416 SLAVE_TLB_INFO(slave).load =
1417 bond_info->unbalanced_load /
1418 BOND_TLB_REBALANCE_INTERVAL;
1419 bond_info->unbalanced_load = 0;
1423 read_unlock(&bond->curr_slave_lock);
1425 bond_info->tx_rebalance_counter = 0;
1428 /* handle rlb stuff */
1429 if (bond_info->rlb_enabled) {
1430 if (bond_info->primary_is_promisc &&
1431 (++bond_info->rlb_promisc_timeout_counter >= RLB_PROMISC_TIMEOUT)) {
1434 * dev_set_promiscuity requires rtnl and
1435 * nothing else.
1437 read_unlock(&bond->lock);
1438 rtnl_lock();
1440 bond_info->rlb_promisc_timeout_counter = 0;
1442 /* If the primary was set to promiscuous mode
1443 * because a slave was disabled then
1444 * it can now leave promiscuous mode.
1446 dev_set_promiscuity(bond->curr_active_slave->dev, -1);
1447 bond_info->primary_is_promisc = 0;
1449 rtnl_unlock();
1450 read_lock(&bond->lock);
1453 if (bond_info->rlb_rebalance) {
1454 bond_info->rlb_rebalance = 0;
1455 rlb_rebalance(bond);
1458 /* check if clients need updating */
1459 if (bond_info->rx_ntt) {
1460 if (bond_info->rlb_update_delay_counter) {
1461 --bond_info->rlb_update_delay_counter;
1462 } else {
1463 rlb_update_rx_clients(bond);
1464 if (bond_info->rlb_update_retry_counter) {
1465 --bond_info->rlb_update_retry_counter;
1466 } else {
1467 bond_info->rx_ntt = 0;
1473 re_arm:
1474 queue_delayed_work(bond->wq, &bond->alb_work, alb_delta_in_ticks);
1475 out:
1476 read_unlock(&bond->lock);
1479 /* assumption: called before the slave is attached to the bond
1480 * and not locked by the bond lock
1482 int bond_alb_init_slave(struct bonding *bond, struct slave *slave)
1484 int res;
1486 res = alb_set_slave_mac_addr(slave, slave->perm_hwaddr,
1487 bond->alb_info.rlb_enabled);
1488 if (res) {
1489 return res;
1492 /* caller must hold the bond lock for write since the mac addresses
1493 * are compared and may be swapped.
1495 read_lock(&bond->lock);
1497 res = alb_handle_addr_collision_on_attach(bond, slave);
1499 read_unlock(&bond->lock);
1501 if (res) {
1502 return res;
1505 tlb_init_slave(slave);
1507 /* order a rebalance ASAP */
1508 bond->alb_info.tx_rebalance_counter = BOND_TLB_REBALANCE_TICKS;
1510 if (bond->alb_info.rlb_enabled) {
1511 bond->alb_info.rlb_rebalance = 1;
1514 return 0;
1518 * Remove slave from tlb and rlb hash tables, and fix up MAC addresses
1519 * if necessary.
1521 * Caller must hold RTNL and no other locks
1523 void bond_alb_deinit_slave(struct bonding *bond, struct slave *slave)
1525 if (bond->slave_cnt > 1) {
1526 alb_change_hw_addr_on_detach(bond, slave);
1529 tlb_clear_slave(bond, slave, 0);
1531 if (bond->alb_info.rlb_enabled) {
1532 bond->alb_info.next_rx_slave = NULL;
1533 rlb_clear_slave(bond, slave);
1537 /* Caller must hold bond lock for read */
1538 void bond_alb_handle_link_change(struct bonding *bond, struct slave *slave, char link)
1540 struct alb_bond_info *bond_info = &(BOND_ALB_INFO(bond));
1542 if (link == BOND_LINK_DOWN) {
1543 tlb_clear_slave(bond, slave, 0);
1544 if (bond->alb_info.rlb_enabled) {
1545 rlb_clear_slave(bond, slave);
1547 } else if (link == BOND_LINK_UP) {
1548 /* order a rebalance ASAP */
1549 bond_info->tx_rebalance_counter = BOND_TLB_REBALANCE_TICKS;
1550 if (bond->alb_info.rlb_enabled) {
1551 bond->alb_info.rlb_rebalance = 1;
1552 /* If the updelay module parameter is smaller than the
1553 * forwarding delay of the switch the rebalance will
1554 * not work because the rebalance arp replies will
1555 * not be forwarded to the clients..
1562 * bond_alb_handle_active_change - assign new curr_active_slave
1563 * @bond: our bonding struct
1564 * @new_slave: new slave to assign
1566 * Set the bond->curr_active_slave to @new_slave and handle
1567 * mac address swapping and promiscuity changes as needed.
1569 * If new_slave is NULL, caller must hold curr_slave_lock or
1570 * bond->lock for write.
1572 * If new_slave is not NULL, caller must hold RTNL, bond->lock for
1573 * read and curr_slave_lock for write. Processing here may sleep, so
1574 * no other locks may be held.
1576 void bond_alb_handle_active_change(struct bonding *bond, struct slave *new_slave)
1577 __releases(&bond->curr_slave_lock)
1578 __releases(&bond->lock)
1579 __acquires(&bond->lock)
1580 __acquires(&bond->curr_slave_lock)
1582 struct slave *swap_slave;
1583 int i;
1585 if (bond->curr_active_slave == new_slave) {
1586 return;
1589 if (bond->curr_active_slave && bond->alb_info.primary_is_promisc) {
1590 dev_set_promiscuity(bond->curr_active_slave->dev, -1);
1591 bond->alb_info.primary_is_promisc = 0;
1592 bond->alb_info.rlb_promisc_timeout_counter = 0;
1595 swap_slave = bond->curr_active_slave;
1596 bond->curr_active_slave = new_slave;
1598 if (!new_slave || (bond->slave_cnt == 0)) {
1599 return;
1602 /* set the new curr_active_slave to the bonds mac address
1603 * i.e. swap mac addresses of old curr_active_slave and new curr_active_slave
1605 if (!swap_slave) {
1606 struct slave *tmp_slave;
1607 /* find slave that is holding the bond's mac address */
1608 bond_for_each_slave(bond, tmp_slave, i) {
1609 if (!compare_ether_addr_64bits(tmp_slave->dev->dev_addr,
1610 bond->dev->dev_addr)) {
1611 swap_slave = tmp_slave;
1612 break;
1618 * Arrange for swap_slave and new_slave to temporarily be
1619 * ignored so we can mess with their MAC addresses without
1620 * fear of interference from transmit activity.
1622 if (swap_slave) {
1623 tlb_clear_slave(bond, swap_slave, 1);
1625 tlb_clear_slave(bond, new_slave, 1);
1627 write_unlock_bh(&bond->curr_slave_lock);
1628 read_unlock(&bond->lock);
1630 ASSERT_RTNL();
1632 /* curr_active_slave must be set before calling alb_swap_mac_addr */
1633 if (swap_slave) {
1634 /* swap mac address */
1635 alb_swap_mac_addr(bond, swap_slave, new_slave);
1636 } else {
1637 /* set the new_slave to the bond mac address */
1638 alb_set_slave_mac_addr(new_slave, bond->dev->dev_addr,
1639 bond->alb_info.rlb_enabled);
1642 if (swap_slave) {
1643 alb_fasten_mac_swap(bond, swap_slave, new_slave);
1644 read_lock(&bond->lock);
1645 } else {
1646 read_lock(&bond->lock);
1647 alb_send_learning_packets(new_slave, bond->dev->dev_addr);
1650 write_lock_bh(&bond->curr_slave_lock);
1654 * Called with RTNL
1656 int bond_alb_set_mac_address(struct net_device *bond_dev, void *addr)
1657 __acquires(&bond->lock)
1658 __releases(&bond->lock)
1660 struct bonding *bond = netdev_priv(bond_dev);
1661 struct sockaddr *sa = addr;
1662 struct slave *slave, *swap_slave;
1663 int res;
1664 int i;
1666 if (!is_valid_ether_addr(sa->sa_data)) {
1667 return -EADDRNOTAVAIL;
1670 res = alb_set_mac_address(bond, addr);
1671 if (res) {
1672 return res;
1675 memcpy(bond_dev->dev_addr, sa->sa_data, bond_dev->addr_len);
1677 /* If there is no curr_active_slave there is nothing else to do.
1678 * Otherwise we'll need to pass the new address to it and handle
1679 * duplications.
1681 if (!bond->curr_active_slave) {
1682 return 0;
1685 swap_slave = NULL;
1687 bond_for_each_slave(bond, slave, i) {
1688 if (!compare_ether_addr_64bits(slave->dev->dev_addr,
1689 bond_dev->dev_addr)) {
1690 swap_slave = slave;
1691 break;
1695 if (swap_slave) {
1696 alb_swap_mac_addr(bond, swap_slave, bond->curr_active_slave);
1697 alb_fasten_mac_swap(bond, swap_slave, bond->curr_active_slave);
1698 } else {
1699 alb_set_slave_mac_addr(bond->curr_active_slave, bond_dev->dev_addr,
1700 bond->alb_info.rlb_enabled);
1702 read_lock(&bond->lock);
1703 alb_send_learning_packets(bond->curr_active_slave, bond_dev->dev_addr);
1704 if (bond->alb_info.rlb_enabled) {
1705 /* inform clients mac address has changed */
1706 rlb_req_update_slave_clients(bond, bond->curr_active_slave);
1708 read_unlock(&bond->lock);
1711 return 0;
1714 void bond_alb_clear_vlan(struct bonding *bond, unsigned short vlan_id)
1716 if (bond->alb_info.current_alb_vlan &&
1717 (bond->alb_info.current_alb_vlan->vlan_id == vlan_id)) {
1718 bond->alb_info.current_alb_vlan = NULL;
1721 if (bond->alb_info.rlb_enabled) {
1722 rlb_clear_vlan(bond, vlan_id);