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
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/skbuff.h>
24 #include <linux/netdevice.h>
25 #include <linux/etherdevice.h>
26 #include <linux/pkt_sched.h>
27 #include <linux/spinlock.h>
28 #include <linux/slab.h>
29 #include <linux/timer.h>
31 #include <linux/ipv6.h>
32 #include <linux/if_arp.h>
33 #include <linux/if_ether.h>
34 #include <linux/if_bonding.h>
35 #include <linux/if_vlan.h>
40 #include <asm/byteorder.h>
45 #define ALB_TIMER_TICKS_PER_SEC 10 /* should be a divisor of HZ */
46 #define BOND_TLB_REBALANCE_INTERVAL 10 /* In seconds, periodic re-balancing.
47 * Used for division - never set
50 #define BOND_ALB_LP_INTERVAL 1 /* In seconds, periodic send of
51 * learning packets to the switch
54 #define BOND_TLB_REBALANCE_TICKS (BOND_TLB_REBALANCE_INTERVAL \
55 * ALB_TIMER_TICKS_PER_SEC)
57 #define BOND_ALB_LP_TICKS (BOND_ALB_LP_INTERVAL \
58 * ALB_TIMER_TICKS_PER_SEC)
60 #define TLB_HASH_TABLE_SIZE 256 /* The size of the clients hash table.
61 * Note that this value MUST NOT be smaller
62 * because the key hash table is BYTE wide !
66 #define TLB_NULL_INDEX 0xffffffff
67 #define MAX_LP_BURST 3
70 #define RLB_HASH_TABLE_SIZE 256
71 #define RLB_NULL_INDEX 0xffffffff
72 #define RLB_UPDATE_DELAY 2*ALB_TIMER_TICKS_PER_SEC /* 2 seconds */
73 #define RLB_ARP_BURST_SIZE 2
74 #define RLB_UPDATE_RETRY 3 /* 3-ticks - must be smaller than the rlb
75 * rebalance interval (5 min).
77 /* RLB_PROMISC_TIMEOUT = 10 sec equals the time that the current slave is
78 * promiscuous after failover
80 #define RLB_PROMISC_TIMEOUT 10*ALB_TIMER_TICKS_PER_SEC
82 #ifndef __long_aligned
83 #define __long_aligned __attribute__((aligned((sizeof(long)))))
85 static const u8 mac_bcast
[ETH_ALEN
] __long_aligned
= {
86 0xff, 0xff, 0xff, 0xff, 0xff, 0xff
88 static const u8 mac_v6_allmcast
[ETH_ALEN
] __long_aligned
= {
89 0x33, 0x33, 0x00, 0x00, 0x00, 0x01
91 static const int alb_delta_in_ticks
= HZ
/ ALB_TIMER_TICKS_PER_SEC
;
98 u8 padding
[ETH_ZLEN
- ETH_HLEN
];
102 __be16 hw_addr_space
;
103 __be16 prot_addr_space
;
107 u8 mac_src
[ETH_ALEN
]; /* sender hardware address */
108 __be32 ip_src
; /* sender IP address */
109 u8 mac_dst
[ETH_ALEN
]; /* target hardware address */
110 __be32 ip_dst
; /* target IP address */
114 static inline struct arp_pkt
*arp_pkt(const struct sk_buff
*skb
)
116 return (struct arp_pkt
*)skb_network_header(skb
);
119 /* Forward declaration */
120 static void alb_send_learning_packets(struct slave
*slave
, u8 mac_addr
[]);
122 static inline u8
_simple_hash(const u8
*hash_start
, int hash_size
)
127 for (i
= 0; i
< hash_size
; i
++) {
128 hash
^= hash_start
[i
];
134 /*********************** tlb specific functions ***************************/
136 static inline void _lock_tx_hashtbl(struct bonding
*bond
)
138 spin_lock_bh(&(BOND_ALB_INFO(bond
).tx_hashtbl_lock
));
141 static inline void _unlock_tx_hashtbl(struct bonding
*bond
)
143 spin_unlock_bh(&(BOND_ALB_INFO(bond
).tx_hashtbl_lock
));
146 /* Caller must hold tx_hashtbl lock */
147 static inline void tlb_init_table_entry(struct tlb_client_info
*entry
, int save_load
)
150 entry
->load_history
= 1 + entry
->tx_bytes
/
151 BOND_TLB_REBALANCE_INTERVAL
;
155 entry
->tx_slave
= NULL
;
156 entry
->next
= TLB_NULL_INDEX
;
157 entry
->prev
= TLB_NULL_INDEX
;
160 static inline void tlb_init_slave(struct slave
*slave
)
162 SLAVE_TLB_INFO(slave
).load
= 0;
163 SLAVE_TLB_INFO(slave
).head
= TLB_NULL_INDEX
;
166 /* Caller must hold bond lock for read */
167 static void tlb_clear_slave(struct bonding
*bond
, struct slave
*slave
, int save_load
)
169 struct tlb_client_info
*tx_hash_table
;
172 _lock_tx_hashtbl(bond
);
174 /* clear slave from tx_hashtbl */
175 tx_hash_table
= BOND_ALB_INFO(bond
).tx_hashtbl
;
177 /* skip this if we've already freed the tx hash table */
179 index
= SLAVE_TLB_INFO(slave
).head
;
180 while (index
!= TLB_NULL_INDEX
) {
181 u32 next_index
= tx_hash_table
[index
].next
;
182 tlb_init_table_entry(&tx_hash_table
[index
], save_load
);
187 tlb_init_slave(slave
);
189 _unlock_tx_hashtbl(bond
);
192 /* Must be called before starting the monitor timer */
193 static int tlb_initialize(struct bonding
*bond
)
195 struct alb_bond_info
*bond_info
= &(BOND_ALB_INFO(bond
));
196 int size
= TLB_HASH_TABLE_SIZE
* sizeof(struct tlb_client_info
);
197 struct tlb_client_info
*new_hashtbl
;
200 spin_lock_init(&(bond_info
->tx_hashtbl_lock
));
202 new_hashtbl
= kzalloc(size
, GFP_KERNEL
);
205 ": %s: Error: Failed to allocate TLB hash table\n",
209 _lock_tx_hashtbl(bond
);
211 bond_info
->tx_hashtbl
= new_hashtbl
;
213 for (i
= 0; i
< TLB_HASH_TABLE_SIZE
; i
++) {
214 tlb_init_table_entry(&bond_info
->tx_hashtbl
[i
], 1);
217 _unlock_tx_hashtbl(bond
);
222 /* Must be called only after all slaves have been released */
223 static void tlb_deinitialize(struct bonding
*bond
)
225 struct alb_bond_info
*bond_info
= &(BOND_ALB_INFO(bond
));
227 _lock_tx_hashtbl(bond
);
229 kfree(bond_info
->tx_hashtbl
);
230 bond_info
->tx_hashtbl
= NULL
;
232 _unlock_tx_hashtbl(bond
);
235 /* Caller must hold bond lock for read */
236 static struct slave
*tlb_get_least_loaded_slave(struct bonding
*bond
)
238 struct slave
*slave
, *least_loaded
;
242 /* Find the first enabled slave */
243 bond_for_each_slave(bond
, slave
, i
) {
244 if (SLAVE_IS_OK(slave
)) {
254 least_loaded
= slave
;
255 max_gap
= (s64
)(slave
->speed
<< 20) - /* Convert to Megabit per sec */
256 (s64
)(SLAVE_TLB_INFO(slave
).load
<< 3); /* Bytes to bits */
258 /* Find the slave with the largest gap */
259 bond_for_each_slave_from(bond
, slave
, i
, least_loaded
) {
260 if (SLAVE_IS_OK(slave
)) {
261 s64 gap
= (s64
)(slave
->speed
<< 20) -
262 (s64
)(SLAVE_TLB_INFO(slave
).load
<< 3);
264 least_loaded
= slave
;
273 /* Caller must hold bond lock for read */
274 static struct slave
*tlb_choose_channel(struct bonding
*bond
, u32 hash_index
, u32 skb_len
)
276 struct alb_bond_info
*bond_info
= &(BOND_ALB_INFO(bond
));
277 struct tlb_client_info
*hash_table
;
278 struct slave
*assigned_slave
;
280 _lock_tx_hashtbl(bond
);
282 hash_table
= bond_info
->tx_hashtbl
;
283 assigned_slave
= hash_table
[hash_index
].tx_slave
;
284 if (!assigned_slave
) {
285 assigned_slave
= tlb_get_least_loaded_slave(bond
);
287 if (assigned_slave
) {
288 struct tlb_slave_info
*slave_info
=
289 &(SLAVE_TLB_INFO(assigned_slave
));
290 u32 next_index
= slave_info
->head
;
292 hash_table
[hash_index
].tx_slave
= assigned_slave
;
293 hash_table
[hash_index
].next
= next_index
;
294 hash_table
[hash_index
].prev
= TLB_NULL_INDEX
;
296 if (next_index
!= TLB_NULL_INDEX
) {
297 hash_table
[next_index
].prev
= hash_index
;
300 slave_info
->head
= hash_index
;
302 hash_table
[hash_index
].load_history
;
306 if (assigned_slave
) {
307 hash_table
[hash_index
].tx_bytes
+= skb_len
;
310 _unlock_tx_hashtbl(bond
);
312 return assigned_slave
;
315 /*********************** rlb specific functions ***************************/
316 static inline void _lock_rx_hashtbl(struct bonding
*bond
)
318 spin_lock_bh(&(BOND_ALB_INFO(bond
).rx_hashtbl_lock
));
321 static inline void _unlock_rx_hashtbl(struct bonding
*bond
)
323 spin_unlock_bh(&(BOND_ALB_INFO(bond
).rx_hashtbl_lock
));
326 /* when an ARP REPLY is received from a client update its info
329 static void rlb_update_entry_from_arp(struct bonding
*bond
, struct arp_pkt
*arp
)
331 struct alb_bond_info
*bond_info
= &(BOND_ALB_INFO(bond
));
332 struct rlb_client_info
*client_info
;
335 _lock_rx_hashtbl(bond
);
337 hash_index
= _simple_hash((u8
*)&(arp
->ip_src
), sizeof(arp
->ip_src
));
338 client_info
= &(bond_info
->rx_hashtbl
[hash_index
]);
340 if ((client_info
->assigned
) &&
341 (client_info
->ip_src
== arp
->ip_dst
) &&
342 (client_info
->ip_dst
== arp
->ip_src
)) {
343 /* update the clients MAC address */
344 memcpy(client_info
->mac_dst
, arp
->mac_src
, ETH_ALEN
);
345 client_info
->ntt
= 1;
346 bond_info
->rx_ntt
= 1;
349 _unlock_rx_hashtbl(bond
);
352 static int rlb_arp_recv(struct sk_buff
*skb
, struct net_device
*bond_dev
, struct packet_type
*ptype
, struct net_device
*orig_dev
)
354 struct bonding
*bond
;
355 struct arp_pkt
*arp
= (struct arp_pkt
*)skb
->data
;
356 int res
= NET_RX_DROP
;
358 if (dev_net(bond_dev
) != &init_net
)
361 while (bond_dev
->priv_flags
& IFF_802_1Q_VLAN
)
362 bond_dev
= vlan_dev_real_dev(bond_dev
);
364 if (!(bond_dev
->priv_flags
& IFF_BONDING
) ||
365 !(bond_dev
->flags
& IFF_MASTER
))
369 pr_debug("Packet has no ARP data\n");
373 if (skb
->len
< sizeof(struct arp_pkt
)) {
374 pr_debug("Packet is too small to be an ARP\n");
378 if (arp
->op_code
== htons(ARPOP_REPLY
)) {
379 /* update rx hash table for this ARP */
380 bond
= netdev_priv(bond_dev
);
381 rlb_update_entry_from_arp(bond
, arp
);
382 pr_debug("Server received an ARP Reply from client\n");
385 res
= NET_RX_SUCCESS
;
393 /* Caller must hold bond lock for read */
394 static struct slave
*rlb_next_rx_slave(struct bonding
*bond
)
396 struct alb_bond_info
*bond_info
= &(BOND_ALB_INFO(bond
));
397 struct slave
*rx_slave
, *slave
, *start_at
;
400 if (bond_info
->next_rx_slave
) {
401 start_at
= bond_info
->next_rx_slave
;
403 start_at
= bond
->first_slave
;
408 bond_for_each_slave_from(bond
, slave
, i
, start_at
) {
409 if (SLAVE_IS_OK(slave
)) {
412 } else if (slave
->speed
> rx_slave
->speed
) {
419 bond_info
->next_rx_slave
= rx_slave
->next
;
425 /* teach the switch the mac of a disabled slave
426 * on the primary for fault tolerance
428 * Caller must hold bond->curr_slave_lock for write or bond lock for write
430 static void rlb_teach_disabled_mac_on_primary(struct bonding
*bond
, u8 addr
[])
432 if (!bond
->curr_active_slave
) {
436 if (!bond
->alb_info
.primary_is_promisc
) {
437 if (!dev_set_promiscuity(bond
->curr_active_slave
->dev
, 1))
438 bond
->alb_info
.primary_is_promisc
= 1;
440 bond
->alb_info
.primary_is_promisc
= 0;
443 bond
->alb_info
.rlb_promisc_timeout_counter
= 0;
445 alb_send_learning_packets(bond
->curr_active_slave
, addr
);
448 /* slave being removed should not be active at this point
450 * Caller must hold bond lock for read
452 static void rlb_clear_slave(struct bonding
*bond
, struct slave
*slave
)
454 struct alb_bond_info
*bond_info
= &(BOND_ALB_INFO(bond
));
455 struct rlb_client_info
*rx_hash_table
;
456 u32 index
, next_index
;
458 /* clear slave from rx_hashtbl */
459 _lock_rx_hashtbl(bond
);
461 rx_hash_table
= bond_info
->rx_hashtbl
;
462 index
= bond_info
->rx_hashtbl_head
;
463 for (; index
!= RLB_NULL_INDEX
; index
= next_index
) {
464 next_index
= rx_hash_table
[index
].next
;
465 if (rx_hash_table
[index
].slave
== slave
) {
466 struct slave
*assigned_slave
= rlb_next_rx_slave(bond
);
468 if (assigned_slave
) {
469 rx_hash_table
[index
].slave
= assigned_slave
;
470 if (compare_ether_addr_64bits(rx_hash_table
[index
].mac_dst
,
472 bond_info
->rx_hashtbl
[index
].ntt
= 1;
473 bond_info
->rx_ntt
= 1;
474 /* A slave has been removed from the
475 * table because it is either disabled
476 * or being released. We must retry the
477 * update to avoid clients from not
478 * being updated & disconnecting when
481 bond_info
->rlb_update_retry_counter
=
484 } else { /* there is no active slave */
485 rx_hash_table
[index
].slave
= NULL
;
490 _unlock_rx_hashtbl(bond
);
492 write_lock_bh(&bond
->curr_slave_lock
);
494 if (slave
!= bond
->curr_active_slave
) {
495 rlb_teach_disabled_mac_on_primary(bond
, slave
->dev
->dev_addr
);
498 write_unlock_bh(&bond
->curr_slave_lock
);
501 static void rlb_update_client(struct rlb_client_info
*client_info
)
505 if (!client_info
->slave
) {
509 for (i
= 0; i
< RLB_ARP_BURST_SIZE
; i
++) {
512 skb
= arp_create(ARPOP_REPLY
, ETH_P_ARP
,
514 client_info
->slave
->dev
,
516 client_info
->mac_dst
,
517 client_info
->slave
->dev
->dev_addr
,
518 client_info
->mac_dst
);
521 ": %s: Error: failed to create an ARP packet\n",
522 client_info
->slave
->dev
->master
->name
);
526 skb
->dev
= client_info
->slave
->dev
;
528 if (client_info
->tag
) {
529 skb
= vlan_put_tag(skb
, client_info
->vlan_id
);
532 ": %s: Error: failed to insert VLAN tag\n",
533 client_info
->slave
->dev
->master
->name
);
542 /* sends ARP REPLIES that update the clients that need updating */
543 static void rlb_update_rx_clients(struct bonding
*bond
)
545 struct alb_bond_info
*bond_info
= &(BOND_ALB_INFO(bond
));
546 struct rlb_client_info
*client_info
;
549 _lock_rx_hashtbl(bond
);
551 hash_index
= bond_info
->rx_hashtbl_head
;
552 for (; hash_index
!= RLB_NULL_INDEX
; hash_index
= client_info
->next
) {
553 client_info
= &(bond_info
->rx_hashtbl
[hash_index
]);
554 if (client_info
->ntt
) {
555 rlb_update_client(client_info
);
556 if (bond_info
->rlb_update_retry_counter
== 0) {
557 client_info
->ntt
= 0;
562 /* do not update the entries again untill this counter is zero so that
563 * not to confuse the clients.
565 bond_info
->rlb_update_delay_counter
= RLB_UPDATE_DELAY
;
567 _unlock_rx_hashtbl(bond
);
570 /* The slave was assigned a new mac address - update the clients */
571 static void rlb_req_update_slave_clients(struct bonding
*bond
, struct slave
*slave
)
573 struct alb_bond_info
*bond_info
= &(BOND_ALB_INFO(bond
));
574 struct rlb_client_info
*client_info
;
578 _lock_rx_hashtbl(bond
);
580 hash_index
= bond_info
->rx_hashtbl_head
;
581 for (; hash_index
!= RLB_NULL_INDEX
; hash_index
= client_info
->next
) {
582 client_info
= &(bond_info
->rx_hashtbl
[hash_index
]);
584 if ((client_info
->slave
== slave
) &&
585 compare_ether_addr_64bits(client_info
->mac_dst
, mac_bcast
)) {
586 client_info
->ntt
= 1;
591 // update the team's flag only after the whole iteration
593 bond_info
->rx_ntt
= 1;
595 bond_info
->rlb_update_retry_counter
= RLB_UPDATE_RETRY
;
598 _unlock_rx_hashtbl(bond
);
601 /* mark all clients using src_ip to be updated */
602 static void rlb_req_update_subnet_clients(struct bonding
*bond
, __be32 src_ip
)
604 struct alb_bond_info
*bond_info
= &(BOND_ALB_INFO(bond
));
605 struct rlb_client_info
*client_info
;
608 _lock_rx_hashtbl(bond
);
610 hash_index
= bond_info
->rx_hashtbl_head
;
611 for (; hash_index
!= RLB_NULL_INDEX
; hash_index
= client_info
->next
) {
612 client_info
= &(bond_info
->rx_hashtbl
[hash_index
]);
614 if (!client_info
->slave
) {
616 ": %s: Error: found a client with no channel in "
617 "the client's hash table\n",
621 /*update all clients using this src_ip, that are not assigned
622 * to the team's address (curr_active_slave) and have a known
623 * unicast mac address.
625 if ((client_info
->ip_src
== src_ip
) &&
626 compare_ether_addr_64bits(client_info
->slave
->dev
->dev_addr
,
627 bond
->dev
->dev_addr
) &&
628 compare_ether_addr_64bits(client_info
->mac_dst
, mac_bcast
)) {
629 client_info
->ntt
= 1;
630 bond_info
->rx_ntt
= 1;
634 _unlock_rx_hashtbl(bond
);
637 /* Caller must hold both bond and ptr locks for read */
638 static struct slave
*rlb_choose_channel(struct sk_buff
*skb
, struct bonding
*bond
)
640 struct alb_bond_info
*bond_info
= &(BOND_ALB_INFO(bond
));
641 struct arp_pkt
*arp
= arp_pkt(skb
);
642 struct slave
*assigned_slave
;
643 struct rlb_client_info
*client_info
;
646 _lock_rx_hashtbl(bond
);
648 hash_index
= _simple_hash((u8
*)&arp
->ip_dst
, sizeof(arp
->ip_src
));
649 client_info
= &(bond_info
->rx_hashtbl
[hash_index
]);
651 if (client_info
->assigned
) {
652 if ((client_info
->ip_src
== arp
->ip_src
) &&
653 (client_info
->ip_dst
== arp
->ip_dst
)) {
654 /* the entry is already assigned to this client */
655 if (compare_ether_addr_64bits(arp
->mac_dst
, mac_bcast
)) {
656 /* update mac address from arp */
657 memcpy(client_info
->mac_dst
, arp
->mac_dst
, ETH_ALEN
);
660 assigned_slave
= client_info
->slave
;
661 if (assigned_slave
) {
662 _unlock_rx_hashtbl(bond
);
663 return assigned_slave
;
666 /* the entry is already assigned to some other client,
667 * move the old client to primary (curr_active_slave) so
668 * that the new client can be assigned to this entry.
670 if (bond
->curr_active_slave
&&
671 client_info
->slave
!= bond
->curr_active_slave
) {
672 client_info
->slave
= bond
->curr_active_slave
;
673 rlb_update_client(client_info
);
677 /* assign a new slave */
678 assigned_slave
= rlb_next_rx_slave(bond
);
680 if (assigned_slave
) {
681 client_info
->ip_src
= arp
->ip_src
;
682 client_info
->ip_dst
= arp
->ip_dst
;
683 /* arp->mac_dst is broadcast for arp reqeusts.
684 * will be updated with clients actual unicast mac address
685 * upon receiving an arp reply.
687 memcpy(client_info
->mac_dst
, arp
->mac_dst
, ETH_ALEN
);
688 client_info
->slave
= assigned_slave
;
690 if (compare_ether_addr_64bits(client_info
->mac_dst
, mac_bcast
)) {
691 client_info
->ntt
= 1;
692 bond
->alb_info
.rx_ntt
= 1;
694 client_info
->ntt
= 0;
697 if (!list_empty(&bond
->vlan_list
)) {
698 if (!vlan_get_tag(skb
, &client_info
->vlan_id
))
699 client_info
->tag
= 1;
702 if (!client_info
->assigned
) {
703 u32 prev_tbl_head
= bond_info
->rx_hashtbl_head
;
704 bond_info
->rx_hashtbl_head
= hash_index
;
705 client_info
->next
= prev_tbl_head
;
706 if (prev_tbl_head
!= RLB_NULL_INDEX
) {
707 bond_info
->rx_hashtbl
[prev_tbl_head
].prev
=
710 client_info
->assigned
= 1;
714 _unlock_rx_hashtbl(bond
);
716 return assigned_slave
;
719 /* chooses (and returns) transmit channel for arp reply
720 * does not choose channel for other arp types since they are
721 * sent on the curr_active_slave
723 static struct slave
*rlb_arp_xmit(struct sk_buff
*skb
, struct bonding
*bond
)
725 struct arp_pkt
*arp
= arp_pkt(skb
);
726 struct slave
*tx_slave
= NULL
;
728 if (arp
->op_code
== htons(ARPOP_REPLY
)) {
729 /* the arp must be sent on the selected
732 tx_slave
= rlb_choose_channel(skb
, bond
);
734 memcpy(arp
->mac_src
,tx_slave
->dev
->dev_addr
, ETH_ALEN
);
736 pr_debug("Server sent ARP Reply packet\n");
737 } else if (arp
->op_code
== htons(ARPOP_REQUEST
)) {
738 /* Create an entry in the rx_hashtbl for this client as a
740 * When the arp reply is received the entry will be updated
741 * with the correct unicast address of the client.
743 rlb_choose_channel(skb
, bond
);
745 /* The ARP relpy packets must be delayed so that
746 * they can cancel out the influence of the ARP request.
748 bond
->alb_info
.rlb_update_delay_counter
= RLB_UPDATE_DELAY
;
750 /* arp requests are broadcast and are sent on the primary
751 * the arp request will collapse all clients on the subnet to
752 * the primary slave. We must register these clients to be
753 * updated with their assigned mac.
755 rlb_req_update_subnet_clients(bond
, arp
->ip_src
);
756 pr_debug("Server sent ARP Request packet\n");
762 /* Caller must hold bond lock for read */
763 static void rlb_rebalance(struct bonding
*bond
)
765 struct alb_bond_info
*bond_info
= &(BOND_ALB_INFO(bond
));
766 struct slave
*assigned_slave
;
767 struct rlb_client_info
*client_info
;
771 _lock_rx_hashtbl(bond
);
774 hash_index
= bond_info
->rx_hashtbl_head
;
775 for (; hash_index
!= RLB_NULL_INDEX
; hash_index
= client_info
->next
) {
776 client_info
= &(bond_info
->rx_hashtbl
[hash_index
]);
777 assigned_slave
= rlb_next_rx_slave(bond
);
778 if (assigned_slave
&& (client_info
->slave
!= assigned_slave
)) {
779 client_info
->slave
= assigned_slave
;
780 client_info
->ntt
= 1;
785 /* update the team's flag only after the whole iteration */
787 bond_info
->rx_ntt
= 1;
789 _unlock_rx_hashtbl(bond
);
792 /* Caller must hold rx_hashtbl lock */
793 static void rlb_init_table_entry(struct rlb_client_info
*entry
)
795 memset(entry
, 0, sizeof(struct rlb_client_info
));
796 entry
->next
= RLB_NULL_INDEX
;
797 entry
->prev
= RLB_NULL_INDEX
;
800 static int rlb_initialize(struct bonding
*bond
)
802 struct alb_bond_info
*bond_info
= &(BOND_ALB_INFO(bond
));
803 struct packet_type
*pk_type
= &(BOND_ALB_INFO(bond
).rlb_pkt_type
);
804 struct rlb_client_info
*new_hashtbl
;
805 int size
= RLB_HASH_TABLE_SIZE
* sizeof(struct rlb_client_info
);
808 spin_lock_init(&(bond_info
->rx_hashtbl_lock
));
810 new_hashtbl
= kmalloc(size
, GFP_KERNEL
);
813 ": %s: Error: Failed to allocate RLB hash table\n",
817 _lock_rx_hashtbl(bond
);
819 bond_info
->rx_hashtbl
= new_hashtbl
;
821 bond_info
->rx_hashtbl_head
= RLB_NULL_INDEX
;
823 for (i
= 0; i
< RLB_HASH_TABLE_SIZE
; i
++) {
824 rlb_init_table_entry(bond_info
->rx_hashtbl
+ i
);
827 _unlock_rx_hashtbl(bond
);
829 /*initialize packet type*/
830 pk_type
->type
= cpu_to_be16(ETH_P_ARP
);
832 pk_type
->func
= rlb_arp_recv
;
834 /* register to receive ARPs */
835 dev_add_pack(pk_type
);
840 static void rlb_deinitialize(struct bonding
*bond
)
842 struct alb_bond_info
*bond_info
= &(BOND_ALB_INFO(bond
));
844 dev_remove_pack(&(bond_info
->rlb_pkt_type
));
846 _lock_rx_hashtbl(bond
);
848 kfree(bond_info
->rx_hashtbl
);
849 bond_info
->rx_hashtbl
= NULL
;
850 bond_info
->rx_hashtbl_head
= RLB_NULL_INDEX
;
852 _unlock_rx_hashtbl(bond
);
855 static void rlb_clear_vlan(struct bonding
*bond
, unsigned short vlan_id
)
857 struct alb_bond_info
*bond_info
= &(BOND_ALB_INFO(bond
));
860 _lock_rx_hashtbl(bond
);
862 curr_index
= bond_info
->rx_hashtbl_head
;
863 while (curr_index
!= RLB_NULL_INDEX
) {
864 struct rlb_client_info
*curr
= &(bond_info
->rx_hashtbl
[curr_index
]);
865 u32 next_index
= bond_info
->rx_hashtbl
[curr_index
].next
;
866 u32 prev_index
= bond_info
->rx_hashtbl
[curr_index
].prev
;
868 if (curr
->tag
&& (curr
->vlan_id
== vlan_id
)) {
869 if (curr_index
== bond_info
->rx_hashtbl_head
) {
870 bond_info
->rx_hashtbl_head
= next_index
;
872 if (prev_index
!= RLB_NULL_INDEX
) {
873 bond_info
->rx_hashtbl
[prev_index
].next
= next_index
;
875 if (next_index
!= RLB_NULL_INDEX
) {
876 bond_info
->rx_hashtbl
[next_index
].prev
= prev_index
;
879 rlb_init_table_entry(curr
);
882 curr_index
= next_index
;
885 _unlock_rx_hashtbl(bond
);
888 /*********************** tlb/rlb shared functions *********************/
890 static void alb_send_learning_packets(struct slave
*slave
, u8 mac_addr
[])
892 struct bonding
*bond
= bond_get_bond_by_slave(slave
);
893 struct learning_pkt pkt
;
894 int size
= sizeof(struct learning_pkt
);
897 memset(&pkt
, 0, size
);
898 memcpy(pkt
.mac_dst
, mac_addr
, ETH_ALEN
);
899 memcpy(pkt
.mac_src
, mac_addr
, ETH_ALEN
);
900 pkt
.type
= cpu_to_be16(ETH_P_LOOP
);
902 for (i
= 0; i
< MAX_LP_BURST
; i
++) {
906 skb
= dev_alloc_skb(size
);
911 data
= skb_put(skb
, size
);
912 memcpy(data
, &pkt
, size
);
914 skb_reset_mac_header(skb
);
915 skb
->network_header
= skb
->mac_header
+ ETH_HLEN
;
916 skb
->protocol
= pkt
.type
;
917 skb
->priority
= TC_PRIO_CONTROL
;
918 skb
->dev
= slave
->dev
;
920 if (!list_empty(&bond
->vlan_list
)) {
921 struct vlan_entry
*vlan
;
923 vlan
= bond_next_vlan(bond
,
924 bond
->alb_info
.current_alb_vlan
);
926 bond
->alb_info
.current_alb_vlan
= vlan
;
932 skb
= vlan_put_tag(skb
, vlan
->vlan_id
);
935 ": %s: Error: failed to insert VLAN tag\n",
945 /* hw is a boolean parameter that determines whether we should try and
946 * set the hw address of the device as well as the hw address of the
949 static int alb_set_slave_mac_addr(struct slave
*slave
, u8 addr
[], int hw
)
951 struct net_device
*dev
= slave
->dev
;
952 struct sockaddr s_addr
;
955 memcpy(dev
->dev_addr
, addr
, dev
->addr_len
);
959 /* for rlb each slave must have a unique hw mac addresses so that */
960 /* each slave will receive packets destined to a different mac */
961 memcpy(s_addr
.sa_data
, addr
, dev
->addr_len
);
962 s_addr
.sa_family
= dev
->type
;
963 if (dev_set_mac_address(dev
, &s_addr
)) {
965 ": %s: Error: dev_set_mac_address of dev %s failed! ALB "
966 "mode requires that the base driver support setting "
967 "the hw address also when the network device's "
968 "interface is open\n",
969 dev
->master
->name
, dev
->name
);
976 * Swap MAC addresses between two slaves.
978 * Called with RTNL held, and no other locks.
982 static void alb_swap_mac_addr(struct bonding
*bond
, struct slave
*slave1
, struct slave
*slave2
)
984 u8 tmp_mac_addr
[ETH_ALEN
];
986 memcpy(tmp_mac_addr
, slave1
->dev
->dev_addr
, ETH_ALEN
);
987 alb_set_slave_mac_addr(slave1
, slave2
->dev
->dev_addr
, bond
->alb_info
.rlb_enabled
);
988 alb_set_slave_mac_addr(slave2
, tmp_mac_addr
, bond
->alb_info
.rlb_enabled
);
993 * Send learning packets after MAC address swap.
995 * Called with RTNL and no other locks
997 static void alb_fasten_mac_swap(struct bonding
*bond
, struct slave
*slave1
,
998 struct slave
*slave2
)
1000 int slaves_state_differ
= (SLAVE_IS_OK(slave1
) != SLAVE_IS_OK(slave2
));
1001 struct slave
*disabled_slave
= NULL
;
1005 /* fasten the change in the switch */
1006 if (SLAVE_IS_OK(slave1
)) {
1007 alb_send_learning_packets(slave1
, slave1
->dev
->dev_addr
);
1008 if (bond
->alb_info
.rlb_enabled
) {
1009 /* inform the clients that the mac address
1012 rlb_req_update_slave_clients(bond
, slave1
);
1015 disabled_slave
= slave1
;
1018 if (SLAVE_IS_OK(slave2
)) {
1019 alb_send_learning_packets(slave2
, slave2
->dev
->dev_addr
);
1020 if (bond
->alb_info
.rlb_enabled
) {
1021 /* inform the clients that the mac address
1024 rlb_req_update_slave_clients(bond
, slave2
);
1027 disabled_slave
= slave2
;
1030 if (bond
->alb_info
.rlb_enabled
&& slaves_state_differ
) {
1031 /* A disabled slave was assigned an active mac addr */
1032 rlb_teach_disabled_mac_on_primary(bond
,
1033 disabled_slave
->dev
->dev_addr
);
1038 * alb_change_hw_addr_on_detach
1039 * @bond: bonding we're working on
1040 * @slave: the slave that was just detached
1042 * We assume that @slave was already detached from the slave list.
1044 * If @slave's permanent hw address is different both from its current
1045 * address and from @bond's address, then somewhere in the bond there's
1046 * a slave that has @slave's permanet address as its current address.
1047 * We'll make sure that that slave no longer uses @slave's permanent address.
1049 * Caller must hold RTNL and no other locks
1051 static void alb_change_hw_addr_on_detach(struct bonding
*bond
, struct slave
*slave
)
1056 perm_curr_diff
= compare_ether_addr_64bits(slave
->perm_hwaddr
,
1057 slave
->dev
->dev_addr
);
1058 perm_bond_diff
= compare_ether_addr_64bits(slave
->perm_hwaddr
,
1059 bond
->dev
->dev_addr
);
1061 if (perm_curr_diff
&& perm_bond_diff
) {
1062 struct slave
*tmp_slave
;
1065 bond_for_each_slave(bond
, tmp_slave
, i
) {
1066 if (!compare_ether_addr_64bits(slave
->perm_hwaddr
,
1067 tmp_slave
->dev
->dev_addr
)) {
1074 /* locking: needs RTNL and nothing else */
1075 alb_swap_mac_addr(bond
, slave
, tmp_slave
);
1076 alb_fasten_mac_swap(bond
, slave
, tmp_slave
);
1082 * alb_handle_addr_collision_on_attach
1083 * @bond: bonding we're working on
1084 * @slave: the slave that was just attached
1086 * checks uniqueness of slave's mac address and handles the case the
1087 * new slave uses the bonds mac address.
1089 * If the permanent hw address of @slave is @bond's hw address, we need to
1090 * find a different hw address to give @slave, that isn't in use by any other
1091 * slave in the bond. This address must be, of course, one of the premanent
1092 * addresses of the other slaves.
1094 * We go over the slave list, and for each slave there we compare its
1095 * permanent hw address with the current address of all the other slaves.
1096 * If no match was found, then we've found a slave with a permanent address
1097 * that isn't used by any other slave in the bond, so we can assign it to
1100 * assumption: this function is called before @slave is attached to the
1103 * caller must hold the bond lock for write since the mac addresses are compared
1104 * and may be swapped.
1106 static int alb_handle_addr_collision_on_attach(struct bonding
*bond
, struct slave
*slave
)
1108 struct slave
*tmp_slave1
, *tmp_slave2
, *free_mac_slave
;
1109 struct slave
*has_bond_addr
= bond
->curr_active_slave
;
1110 int i
, j
, found
= 0;
1112 if (bond
->slave_cnt
== 0) {
1113 /* this is the first slave */
1117 /* if slave's mac address differs from bond's mac address
1118 * check uniqueness of slave's mac address against the other
1119 * slaves in the bond.
1121 if (compare_ether_addr_64bits(slave
->perm_hwaddr
, bond
->dev
->dev_addr
)) {
1122 bond_for_each_slave(bond
, tmp_slave1
, i
) {
1123 if (!compare_ether_addr_64bits(tmp_slave1
->dev
->dev_addr
,
1124 slave
->dev
->dev_addr
)) {
1133 /* Try setting slave mac to bond address and fall-through
1134 to code handling that situation below... */
1135 alb_set_slave_mac_addr(slave
, bond
->dev
->dev_addr
,
1136 bond
->alb_info
.rlb_enabled
);
1139 /* The slave's address is equal to the address of the bond.
1140 * Search for a spare address in the bond for this slave.
1142 free_mac_slave
= NULL
;
1144 bond_for_each_slave(bond
, tmp_slave1
, i
) {
1146 bond_for_each_slave(bond
, tmp_slave2
, j
) {
1147 if (!compare_ether_addr_64bits(tmp_slave1
->perm_hwaddr
,
1148 tmp_slave2
->dev
->dev_addr
)) {
1155 /* no slave has tmp_slave1's perm addr
1158 free_mac_slave
= tmp_slave1
;
1162 if (!has_bond_addr
) {
1163 if (!compare_ether_addr_64bits(tmp_slave1
->dev
->dev_addr
,
1164 bond
->dev
->dev_addr
)) {
1166 has_bond_addr
= tmp_slave1
;
1171 if (free_mac_slave
) {
1172 alb_set_slave_mac_addr(slave
, free_mac_slave
->perm_hwaddr
,
1173 bond
->alb_info
.rlb_enabled
);
1176 ": %s: Warning: the hw address of slave %s is "
1177 "in use by the bond; giving it the hw address "
1179 bond
->dev
->name
, slave
->dev
->name
,
1180 free_mac_slave
->dev
->name
);
1182 } else if (has_bond_addr
) {
1184 ": %s: Error: the hw address of slave %s is in use by the "
1185 "bond; couldn't find a slave with a free hw address to "
1186 "give it (this should not have happened)\n",
1187 bond
->dev
->name
, slave
->dev
->name
);
1195 * alb_set_mac_address
1199 * In TLB mode all slaves are configured to the bond's hw address, but set
1200 * their dev_addr field to different addresses (based on their permanent hw
1203 * For each slave, this function sets the interface to the new address and then
1204 * changes its dev_addr field to its previous value.
1206 * Unwinding assumes bond's mac address has not yet changed.
1208 static int alb_set_mac_address(struct bonding
*bond
, void *addr
)
1211 struct slave
*slave
, *stop_at
;
1212 char tmp_addr
[ETH_ALEN
];
1216 if (bond
->alb_info
.rlb_enabled
) {
1220 bond_for_each_slave(bond
, slave
, i
) {
1221 /* save net_device's current hw address */
1222 memcpy(tmp_addr
, slave
->dev
->dev_addr
, ETH_ALEN
);
1224 res
= dev_set_mac_address(slave
->dev
, addr
);
1226 /* restore net_device's hw address */
1227 memcpy(slave
->dev
->dev_addr
, tmp_addr
, ETH_ALEN
);
1236 memcpy(sa
.sa_data
, bond
->dev
->dev_addr
, bond
->dev
->addr_len
);
1237 sa
.sa_family
= bond
->dev
->type
;
1239 /* unwind from head to the slave that failed */
1241 bond_for_each_slave_from_to(bond
, slave
, i
, bond
->first_slave
, stop_at
) {
1242 memcpy(tmp_addr
, slave
->dev
->dev_addr
, ETH_ALEN
);
1243 dev_set_mac_address(slave
->dev
, &sa
);
1244 memcpy(slave
->dev
->dev_addr
, tmp_addr
, ETH_ALEN
);
1250 /************************ exported alb funcions ************************/
1252 int bond_alb_initialize(struct bonding
*bond
, int rlb_enabled
)
1256 res
= tlb_initialize(bond
);
1262 bond
->alb_info
.rlb_enabled
= 1;
1263 /* initialize rlb */
1264 res
= rlb_initialize(bond
);
1266 tlb_deinitialize(bond
);
1270 bond
->alb_info
.rlb_enabled
= 0;
1276 void bond_alb_deinitialize(struct bonding
*bond
)
1278 struct alb_bond_info
*bond_info
= &(BOND_ALB_INFO(bond
));
1280 tlb_deinitialize(bond
);
1282 if (bond_info
->rlb_enabled
) {
1283 rlb_deinitialize(bond
);
1287 int bond_alb_xmit(struct sk_buff
*skb
, struct net_device
*bond_dev
)
1289 struct bonding
*bond
= netdev_priv(bond_dev
);
1290 struct ethhdr
*eth_data
;
1291 struct alb_bond_info
*bond_info
= &(BOND_ALB_INFO(bond
));
1292 struct slave
*tx_slave
= NULL
;
1293 static const __be32 ip_bcast
= htonl(0xffffffff);
1295 int do_tx_balance
= 1;
1297 const u8
*hash_start
= NULL
;
1299 struct ipv6hdr
*ip6hdr
;
1301 skb_reset_mac_header(skb
);
1302 eth_data
= eth_hdr(skb
);
1304 /* make sure that the curr_active_slave and the slaves list do
1305 * not change during tx
1307 read_lock(&bond
->lock
);
1308 read_lock(&bond
->curr_slave_lock
);
1310 if (!BOND_IS_OK(bond
)) {
1314 switch (ntohs(skb
->protocol
)) {
1316 const struct iphdr
*iph
= ip_hdr(skb
);
1318 if (!compare_ether_addr_64bits(eth_data
->h_dest
, mac_bcast
) ||
1319 (iph
->daddr
== ip_bcast
) ||
1320 (iph
->protocol
== IPPROTO_IGMP
)) {
1324 hash_start
= (char *)&(iph
->daddr
);
1325 hash_size
= sizeof(iph
->daddr
);
1329 /* IPv6 doesn't really use broadcast mac address, but leave
1330 * that here just in case.
1332 if (!compare_ether_addr_64bits(eth_data
->h_dest
, mac_bcast
)) {
1337 /* IPv6 uses all-nodes multicast as an equivalent to
1338 * broadcasts in IPv4.
1340 if (!compare_ether_addr_64bits(eth_data
->h_dest
, mac_v6_allmcast
)) {
1345 /* Additianally, DAD probes should not be tx-balanced as that
1346 * will lead to false positives for duplicate addresses and
1347 * prevent address configuration from working.
1349 ip6hdr
= ipv6_hdr(skb
);
1350 if (ipv6_addr_any(&ip6hdr
->saddr
)) {
1355 hash_start
= (char *)&(ipv6_hdr(skb
)->daddr
);
1356 hash_size
= sizeof(ipv6_hdr(skb
)->daddr
);
1359 if (ipx_hdr(skb
)->ipx_checksum
!= IPX_NO_CHECKSUM
) {
1360 /* something is wrong with this packet */
1365 if (ipx_hdr(skb
)->ipx_type
!= IPX_TYPE_NCP
) {
1366 /* The only protocol worth balancing in
1367 * this family since it has an "ARP" like
1374 hash_start
= (char*)eth_data
->h_dest
;
1375 hash_size
= ETH_ALEN
;
1379 if (bond_info
->rlb_enabled
) {
1380 tx_slave
= rlb_arp_xmit(skb
, bond
);
1388 if (do_tx_balance
) {
1389 hash_index
= _simple_hash(hash_start
, hash_size
);
1390 tx_slave
= tlb_choose_channel(bond
, hash_index
, skb
->len
);
1394 /* unbalanced or unassigned, send through primary */
1395 tx_slave
= bond
->curr_active_slave
;
1396 bond_info
->unbalanced_load
+= skb
->len
;
1399 if (tx_slave
&& SLAVE_IS_OK(tx_slave
)) {
1400 if (tx_slave
!= bond
->curr_active_slave
) {
1401 memcpy(eth_data
->h_source
,
1402 tx_slave
->dev
->dev_addr
,
1406 res
= bond_dev_queue_xmit(bond
, skb
, tx_slave
->dev
);
1409 tlb_clear_slave(bond
, tx_slave
, 0);
1415 /* no suitable interface, frame not sent */
1418 read_unlock(&bond
->curr_slave_lock
);
1419 read_unlock(&bond
->lock
);
1420 return NETDEV_TX_OK
;
1423 void bond_alb_monitor(struct work_struct
*work
)
1425 struct bonding
*bond
= container_of(work
, struct bonding
,
1427 struct alb_bond_info
*bond_info
= &(BOND_ALB_INFO(bond
));
1428 struct slave
*slave
;
1431 read_lock(&bond
->lock
);
1433 if (bond
->kill_timers
) {
1437 if (bond
->slave_cnt
== 0) {
1438 bond_info
->tx_rebalance_counter
= 0;
1439 bond_info
->lp_counter
= 0;
1443 bond_info
->tx_rebalance_counter
++;
1444 bond_info
->lp_counter
++;
1446 /* send learning packets */
1447 if (bond_info
->lp_counter
>= BOND_ALB_LP_TICKS
) {
1448 /* change of curr_active_slave involves swapping of mac addresses.
1449 * in order to avoid this swapping from happening while
1450 * sending the learning packets, the curr_slave_lock must be held for
1453 read_lock(&bond
->curr_slave_lock
);
1455 bond_for_each_slave(bond
, slave
, i
) {
1456 alb_send_learning_packets(slave
, slave
->dev
->dev_addr
);
1459 read_unlock(&bond
->curr_slave_lock
);
1461 bond_info
->lp_counter
= 0;
1464 /* rebalance tx traffic */
1465 if (bond_info
->tx_rebalance_counter
>= BOND_TLB_REBALANCE_TICKS
) {
1467 read_lock(&bond
->curr_slave_lock
);
1469 bond_for_each_slave(bond
, slave
, i
) {
1470 tlb_clear_slave(bond
, slave
, 1);
1471 if (slave
== bond
->curr_active_slave
) {
1472 SLAVE_TLB_INFO(slave
).load
=
1473 bond_info
->unbalanced_load
/
1474 BOND_TLB_REBALANCE_INTERVAL
;
1475 bond_info
->unbalanced_load
= 0;
1479 read_unlock(&bond
->curr_slave_lock
);
1481 bond_info
->tx_rebalance_counter
= 0;
1484 /* handle rlb stuff */
1485 if (bond_info
->rlb_enabled
) {
1486 if (bond_info
->primary_is_promisc
&&
1487 (++bond_info
->rlb_promisc_timeout_counter
>= RLB_PROMISC_TIMEOUT
)) {
1490 * dev_set_promiscuity requires rtnl and
1493 read_unlock(&bond
->lock
);
1496 bond_info
->rlb_promisc_timeout_counter
= 0;
1498 /* If the primary was set to promiscuous mode
1499 * because a slave was disabled then
1500 * it can now leave promiscuous mode.
1502 dev_set_promiscuity(bond
->curr_active_slave
->dev
, -1);
1503 bond_info
->primary_is_promisc
= 0;
1506 read_lock(&bond
->lock
);
1509 if (bond_info
->rlb_rebalance
) {
1510 bond_info
->rlb_rebalance
= 0;
1511 rlb_rebalance(bond
);
1514 /* check if clients need updating */
1515 if (bond_info
->rx_ntt
) {
1516 if (bond_info
->rlb_update_delay_counter
) {
1517 --bond_info
->rlb_update_delay_counter
;
1519 rlb_update_rx_clients(bond
);
1520 if (bond_info
->rlb_update_retry_counter
) {
1521 --bond_info
->rlb_update_retry_counter
;
1523 bond_info
->rx_ntt
= 0;
1530 queue_delayed_work(bond
->wq
, &bond
->alb_work
, alb_delta_in_ticks
);
1532 read_unlock(&bond
->lock
);
1535 /* assumption: called before the slave is attached to the bond
1536 * and not locked by the bond lock
1538 int bond_alb_init_slave(struct bonding
*bond
, struct slave
*slave
)
1542 res
= alb_set_slave_mac_addr(slave
, slave
->perm_hwaddr
,
1543 bond
->alb_info
.rlb_enabled
);
1548 /* caller must hold the bond lock for write since the mac addresses
1549 * are compared and may be swapped.
1551 read_lock(&bond
->lock
);
1553 res
= alb_handle_addr_collision_on_attach(bond
, slave
);
1555 read_unlock(&bond
->lock
);
1561 tlb_init_slave(slave
);
1563 /* order a rebalance ASAP */
1564 bond
->alb_info
.tx_rebalance_counter
= BOND_TLB_REBALANCE_TICKS
;
1566 if (bond
->alb_info
.rlb_enabled
) {
1567 bond
->alb_info
.rlb_rebalance
= 1;
1574 * Remove slave from tlb and rlb hash tables, and fix up MAC addresses
1577 * Caller must hold RTNL and no other locks
1579 void bond_alb_deinit_slave(struct bonding
*bond
, struct slave
*slave
)
1581 if (bond
->slave_cnt
> 1) {
1582 alb_change_hw_addr_on_detach(bond
, slave
);
1585 tlb_clear_slave(bond
, slave
, 0);
1587 if (bond
->alb_info
.rlb_enabled
) {
1588 bond
->alb_info
.next_rx_slave
= NULL
;
1589 rlb_clear_slave(bond
, slave
);
1593 /* Caller must hold bond lock for read */
1594 void bond_alb_handle_link_change(struct bonding
*bond
, struct slave
*slave
, char link
)
1596 struct alb_bond_info
*bond_info
= &(BOND_ALB_INFO(bond
));
1598 if (link
== BOND_LINK_DOWN
) {
1599 tlb_clear_slave(bond
, slave
, 0);
1600 if (bond
->alb_info
.rlb_enabled
) {
1601 rlb_clear_slave(bond
, slave
);
1603 } else if (link
== BOND_LINK_UP
) {
1604 /* order a rebalance ASAP */
1605 bond_info
->tx_rebalance_counter
= BOND_TLB_REBALANCE_TICKS
;
1606 if (bond
->alb_info
.rlb_enabled
) {
1607 bond
->alb_info
.rlb_rebalance
= 1;
1608 /* If the updelay module parameter is smaller than the
1609 * forwarding delay of the switch the rebalance will
1610 * not work because the rebalance arp replies will
1611 * not be forwarded to the clients..
1618 * bond_alb_handle_active_change - assign new curr_active_slave
1619 * @bond: our bonding struct
1620 * @new_slave: new slave to assign
1622 * Set the bond->curr_active_slave to @new_slave and handle
1623 * mac address swapping and promiscuity changes as needed.
1625 * If new_slave is NULL, caller must hold curr_slave_lock or
1626 * bond->lock for write.
1628 * If new_slave is not NULL, caller must hold RTNL, bond->lock for
1629 * read and curr_slave_lock for write. Processing here may sleep, so
1630 * no other locks may be held.
1632 void bond_alb_handle_active_change(struct bonding
*bond
, struct slave
*new_slave
)
1633 __releases(&bond
->curr_slave_lock
)
1634 __releases(&bond
->lock
)
1635 __acquires(&bond
->lock
)
1636 __acquires(&bond
->curr_slave_lock
)
1638 struct slave
*swap_slave
;
1641 if (bond
->curr_active_slave
== new_slave
) {
1645 if (bond
->curr_active_slave
&& bond
->alb_info
.primary_is_promisc
) {
1646 dev_set_promiscuity(bond
->curr_active_slave
->dev
, -1);
1647 bond
->alb_info
.primary_is_promisc
= 0;
1648 bond
->alb_info
.rlb_promisc_timeout_counter
= 0;
1651 swap_slave
= bond
->curr_active_slave
;
1652 bond
->curr_active_slave
= new_slave
;
1654 if (!new_slave
|| (bond
->slave_cnt
== 0)) {
1658 /* set the new curr_active_slave to the bonds mac address
1659 * i.e. swap mac addresses of old curr_active_slave and new curr_active_slave
1662 struct slave
*tmp_slave
;
1663 /* find slave that is holding the bond's mac address */
1664 bond_for_each_slave(bond
, tmp_slave
, i
) {
1665 if (!compare_ether_addr_64bits(tmp_slave
->dev
->dev_addr
,
1666 bond
->dev
->dev_addr
)) {
1667 swap_slave
= tmp_slave
;
1674 * Arrange for swap_slave and new_slave to temporarily be
1675 * ignored so we can mess with their MAC addresses without
1676 * fear of interference from transmit activity.
1679 tlb_clear_slave(bond
, swap_slave
, 1);
1681 tlb_clear_slave(bond
, new_slave
, 1);
1683 write_unlock_bh(&bond
->curr_slave_lock
);
1684 read_unlock(&bond
->lock
);
1688 /* curr_active_slave must be set before calling alb_swap_mac_addr */
1690 /* swap mac address */
1691 alb_swap_mac_addr(bond
, swap_slave
, new_slave
);
1693 /* set the new_slave to the bond mac address */
1694 alb_set_slave_mac_addr(new_slave
, bond
->dev
->dev_addr
,
1695 bond
->alb_info
.rlb_enabled
);
1699 alb_fasten_mac_swap(bond
, swap_slave
, new_slave
);
1700 read_lock(&bond
->lock
);
1702 read_lock(&bond
->lock
);
1703 alb_send_learning_packets(new_slave
, bond
->dev
->dev_addr
);
1706 write_lock_bh(&bond
->curr_slave_lock
);
1712 int bond_alb_set_mac_address(struct net_device
*bond_dev
, void *addr
)
1713 __acquires(&bond
->lock
)
1714 __releases(&bond
->lock
)
1716 struct bonding
*bond
= netdev_priv(bond_dev
);
1717 struct sockaddr
*sa
= addr
;
1718 struct slave
*slave
, *swap_slave
;
1722 if (!is_valid_ether_addr(sa
->sa_data
)) {
1723 return -EADDRNOTAVAIL
;
1726 res
= alb_set_mac_address(bond
, addr
);
1731 memcpy(bond_dev
->dev_addr
, sa
->sa_data
, bond_dev
->addr_len
);
1733 /* If there is no curr_active_slave there is nothing else to do.
1734 * Otherwise we'll need to pass the new address to it and handle
1737 if (!bond
->curr_active_slave
) {
1743 bond_for_each_slave(bond
, slave
, i
) {
1744 if (!compare_ether_addr_64bits(slave
->dev
->dev_addr
,
1745 bond_dev
->dev_addr
)) {
1752 alb_swap_mac_addr(bond
, swap_slave
, bond
->curr_active_slave
);
1753 alb_fasten_mac_swap(bond
, swap_slave
, bond
->curr_active_slave
);
1755 alb_set_slave_mac_addr(bond
->curr_active_slave
, bond_dev
->dev_addr
,
1756 bond
->alb_info
.rlb_enabled
);
1758 read_lock(&bond
->lock
);
1759 alb_send_learning_packets(bond
->curr_active_slave
, bond_dev
->dev_addr
);
1760 if (bond
->alb_info
.rlb_enabled
) {
1761 /* inform clients mac address has changed */
1762 rlb_req_update_slave_clients(bond
, bond
->curr_active_slave
);
1764 read_unlock(&bond
->lock
);
1770 void bond_alb_clear_vlan(struct bonding
*bond
, unsigned short vlan_id
)
1772 if (bond
->alb_info
.current_alb_vlan
&&
1773 (bond
->alb_info
.current_alb_vlan
->vlan_id
== vlan_id
)) {
1774 bond
->alb_info
.current_alb_vlan
= NULL
;
1777 if (bond
->alb_info
.rlb_enabled
) {
1778 rlb_clear_vlan(bond
, vlan_id
);