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 static const u8 mac_bcast
[ETH_ALEN
] = {0xff,0xff,0xff,0xff,0xff,0xff};
83 static const u8 mac_v6_allmcast
[ETH_ALEN
] = {0x33,0x33,0x00,0x00,0x00,0x01};
84 static const int alb_delta_in_ticks
= HZ
/ ALB_TIMER_TICKS_PER_SEC
;
91 u8 padding
[ETH_ZLEN
- ETH_HLEN
];
96 __be16 prot_addr_space
;
100 u8 mac_src
[ETH_ALEN
]; /* sender hardware address */
101 __be32 ip_src
; /* sender IP address */
102 u8 mac_dst
[ETH_ALEN
]; /* target hardware address */
103 __be32 ip_dst
; /* target IP address */
107 static inline struct arp_pkt
*arp_pkt(const struct sk_buff
*skb
)
109 return (struct arp_pkt
*)skb_network_header(skb
);
112 /* Forward declaration */
113 static void alb_send_learning_packets(struct slave
*slave
, u8 mac_addr
[]);
115 static inline u8
_simple_hash(const u8
*hash_start
, int hash_size
)
120 for (i
= 0; i
< hash_size
; i
++) {
121 hash
^= hash_start
[i
];
127 /*********************** tlb specific functions ***************************/
129 static inline void _lock_tx_hashtbl(struct bonding
*bond
)
131 spin_lock_bh(&(BOND_ALB_INFO(bond
).tx_hashtbl_lock
));
134 static inline void _unlock_tx_hashtbl(struct bonding
*bond
)
136 spin_unlock_bh(&(BOND_ALB_INFO(bond
).tx_hashtbl_lock
));
139 /* Caller must hold tx_hashtbl lock */
140 static inline void tlb_init_table_entry(struct tlb_client_info
*entry
, int save_load
)
143 entry
->load_history
= 1 + entry
->tx_bytes
/
144 BOND_TLB_REBALANCE_INTERVAL
;
148 entry
->tx_slave
= NULL
;
149 entry
->next
= TLB_NULL_INDEX
;
150 entry
->prev
= TLB_NULL_INDEX
;
153 static inline void tlb_init_slave(struct slave
*slave
)
155 SLAVE_TLB_INFO(slave
).load
= 0;
156 SLAVE_TLB_INFO(slave
).head
= TLB_NULL_INDEX
;
159 /* Caller must hold bond lock for read */
160 static void tlb_clear_slave(struct bonding
*bond
, struct slave
*slave
, int save_load
)
162 struct tlb_client_info
*tx_hash_table
;
165 _lock_tx_hashtbl(bond
);
167 /* clear slave from tx_hashtbl */
168 tx_hash_table
= BOND_ALB_INFO(bond
).tx_hashtbl
;
170 /* skip this if we've already freed the tx hash table */
172 index
= SLAVE_TLB_INFO(slave
).head
;
173 while (index
!= TLB_NULL_INDEX
) {
174 u32 next_index
= tx_hash_table
[index
].next
;
175 tlb_init_table_entry(&tx_hash_table
[index
], save_load
);
180 tlb_init_slave(slave
);
182 _unlock_tx_hashtbl(bond
);
185 /* Must be called before starting the monitor timer */
186 static int tlb_initialize(struct bonding
*bond
)
188 struct alb_bond_info
*bond_info
= &(BOND_ALB_INFO(bond
));
189 int size
= TLB_HASH_TABLE_SIZE
* sizeof(struct tlb_client_info
);
190 struct tlb_client_info
*new_hashtbl
;
193 spin_lock_init(&(bond_info
->tx_hashtbl_lock
));
195 new_hashtbl
= kzalloc(size
, GFP_KERNEL
);
197 printk(KERN_ERR DRV_NAME
198 ": %s: Error: Failed to allocate TLB hash table\n",
202 _lock_tx_hashtbl(bond
);
204 bond_info
->tx_hashtbl
= new_hashtbl
;
206 for (i
= 0; i
< TLB_HASH_TABLE_SIZE
; i
++) {
207 tlb_init_table_entry(&bond_info
->tx_hashtbl
[i
], 1);
210 _unlock_tx_hashtbl(bond
);
215 /* Must be called only after all slaves have been released */
216 static void tlb_deinitialize(struct bonding
*bond
)
218 struct alb_bond_info
*bond_info
= &(BOND_ALB_INFO(bond
));
220 _lock_tx_hashtbl(bond
);
222 kfree(bond_info
->tx_hashtbl
);
223 bond_info
->tx_hashtbl
= NULL
;
225 _unlock_tx_hashtbl(bond
);
228 /* Caller must hold bond lock for read */
229 static struct slave
*tlb_get_least_loaded_slave(struct bonding
*bond
)
231 struct slave
*slave
, *least_loaded
;
235 /* Find the first enabled slave */
236 bond_for_each_slave(bond
, slave
, i
) {
237 if (SLAVE_IS_OK(slave
)) {
247 least_loaded
= slave
;
248 max_gap
= (s64
)(slave
->speed
<< 20) - /* Convert to Megabit per sec */
249 (s64
)(SLAVE_TLB_INFO(slave
).load
<< 3); /* Bytes to bits */
251 /* Find the slave with the largest gap */
252 bond_for_each_slave_from(bond
, slave
, i
, least_loaded
) {
253 if (SLAVE_IS_OK(slave
)) {
254 s64 gap
= (s64
)(slave
->speed
<< 20) -
255 (s64
)(SLAVE_TLB_INFO(slave
).load
<< 3);
257 least_loaded
= slave
;
266 /* Caller must hold bond lock for read */
267 static struct slave
*tlb_choose_channel(struct bonding
*bond
, u32 hash_index
, u32 skb_len
)
269 struct alb_bond_info
*bond_info
= &(BOND_ALB_INFO(bond
));
270 struct tlb_client_info
*hash_table
;
271 struct slave
*assigned_slave
;
273 _lock_tx_hashtbl(bond
);
275 hash_table
= bond_info
->tx_hashtbl
;
276 assigned_slave
= hash_table
[hash_index
].tx_slave
;
277 if (!assigned_slave
) {
278 assigned_slave
= tlb_get_least_loaded_slave(bond
);
280 if (assigned_slave
) {
281 struct tlb_slave_info
*slave_info
=
282 &(SLAVE_TLB_INFO(assigned_slave
));
283 u32 next_index
= slave_info
->head
;
285 hash_table
[hash_index
].tx_slave
= assigned_slave
;
286 hash_table
[hash_index
].next
= next_index
;
287 hash_table
[hash_index
].prev
= TLB_NULL_INDEX
;
289 if (next_index
!= TLB_NULL_INDEX
) {
290 hash_table
[next_index
].prev
= hash_index
;
293 slave_info
->head
= hash_index
;
295 hash_table
[hash_index
].load_history
;
299 if (assigned_slave
) {
300 hash_table
[hash_index
].tx_bytes
+= skb_len
;
303 _unlock_tx_hashtbl(bond
);
305 return assigned_slave
;
308 /*********************** rlb specific functions ***************************/
309 static inline void _lock_rx_hashtbl(struct bonding
*bond
)
311 spin_lock_bh(&(BOND_ALB_INFO(bond
).rx_hashtbl_lock
));
314 static inline void _unlock_rx_hashtbl(struct bonding
*bond
)
316 spin_unlock_bh(&(BOND_ALB_INFO(bond
).rx_hashtbl_lock
));
319 /* when an ARP REPLY is received from a client update its info
322 static void rlb_update_entry_from_arp(struct bonding
*bond
, struct arp_pkt
*arp
)
324 struct alb_bond_info
*bond_info
= &(BOND_ALB_INFO(bond
));
325 struct rlb_client_info
*client_info
;
328 _lock_rx_hashtbl(bond
);
330 hash_index
= _simple_hash((u8
*)&(arp
->ip_src
), sizeof(arp
->ip_src
));
331 client_info
= &(bond_info
->rx_hashtbl
[hash_index
]);
333 if ((client_info
->assigned
) &&
334 (client_info
->ip_src
== arp
->ip_dst
) &&
335 (client_info
->ip_dst
== arp
->ip_src
)) {
336 /* update the clients MAC address */
337 memcpy(client_info
->mac_dst
, arp
->mac_src
, ETH_ALEN
);
338 client_info
->ntt
= 1;
339 bond_info
->rx_ntt
= 1;
342 _unlock_rx_hashtbl(bond
);
345 static int rlb_arp_recv(struct sk_buff
*skb
, struct net_device
*bond_dev
, struct packet_type
*ptype
, struct net_device
*orig_dev
)
347 struct bonding
*bond
;
348 struct arp_pkt
*arp
= (struct arp_pkt
*)skb
->data
;
349 int res
= NET_RX_DROP
;
351 if (dev_net(bond_dev
) != &init_net
)
354 while (bond_dev
->priv_flags
& IFF_802_1Q_VLAN
)
355 bond_dev
= vlan_dev_real_dev(bond_dev
);
357 if (!(bond_dev
->priv_flags
& IFF_BONDING
) ||
358 !(bond_dev
->flags
& IFF_MASTER
))
362 pr_debug("Packet has no ARP data\n");
366 if (skb
->len
< sizeof(struct arp_pkt
)) {
367 pr_debug("Packet is too small to be an ARP\n");
371 if (arp
->op_code
== htons(ARPOP_REPLY
)) {
372 /* update rx hash table for this ARP */
373 printk("rar: update orig %s bond_dev %s\n", orig_dev
->name
,
375 bond
= netdev_priv(bond_dev
);
376 rlb_update_entry_from_arp(bond
, arp
);
377 pr_debug("Server received an ARP Reply from client\n");
380 res
= NET_RX_SUCCESS
;
388 /* Caller must hold bond lock for read */
389 static struct slave
*rlb_next_rx_slave(struct bonding
*bond
)
391 struct alb_bond_info
*bond_info
= &(BOND_ALB_INFO(bond
));
392 struct slave
*rx_slave
, *slave
, *start_at
;
395 if (bond_info
->next_rx_slave
) {
396 start_at
= bond_info
->next_rx_slave
;
398 start_at
= bond
->first_slave
;
403 bond_for_each_slave_from(bond
, slave
, i
, start_at
) {
404 if (SLAVE_IS_OK(slave
)) {
407 } else if (slave
->speed
> rx_slave
->speed
) {
414 bond_info
->next_rx_slave
= rx_slave
->next
;
420 /* teach the switch the mac of a disabled slave
421 * on the primary for fault tolerance
423 * Caller must hold bond->curr_slave_lock for write or bond lock for write
425 static void rlb_teach_disabled_mac_on_primary(struct bonding
*bond
, u8 addr
[])
427 if (!bond
->curr_active_slave
) {
431 if (!bond
->alb_info
.primary_is_promisc
) {
432 if (!dev_set_promiscuity(bond
->curr_active_slave
->dev
, 1))
433 bond
->alb_info
.primary_is_promisc
= 1;
435 bond
->alb_info
.primary_is_promisc
= 0;
438 bond
->alb_info
.rlb_promisc_timeout_counter
= 0;
440 alb_send_learning_packets(bond
->curr_active_slave
, addr
);
443 /* slave being removed should not be active at this point
445 * Caller must hold bond lock for read
447 static void rlb_clear_slave(struct bonding
*bond
, struct slave
*slave
)
449 struct alb_bond_info
*bond_info
= &(BOND_ALB_INFO(bond
));
450 struct rlb_client_info
*rx_hash_table
;
451 u32 index
, next_index
;
453 /* clear slave from rx_hashtbl */
454 _lock_rx_hashtbl(bond
);
456 rx_hash_table
= bond_info
->rx_hashtbl
;
457 index
= bond_info
->rx_hashtbl_head
;
458 for (; index
!= RLB_NULL_INDEX
; index
= next_index
) {
459 next_index
= rx_hash_table
[index
].next
;
460 if (rx_hash_table
[index
].slave
== slave
) {
461 struct slave
*assigned_slave
= rlb_next_rx_slave(bond
);
463 if (assigned_slave
) {
464 rx_hash_table
[index
].slave
= assigned_slave
;
465 if (memcmp(rx_hash_table
[index
].mac_dst
,
466 mac_bcast
, ETH_ALEN
)) {
467 bond_info
->rx_hashtbl
[index
].ntt
= 1;
468 bond_info
->rx_ntt
= 1;
469 /* A slave has been removed from the
470 * table because it is either disabled
471 * or being released. We must retry the
472 * update to avoid clients from not
473 * being updated & disconnecting when
476 bond_info
->rlb_update_retry_counter
=
479 } else { /* there is no active slave */
480 rx_hash_table
[index
].slave
= NULL
;
485 _unlock_rx_hashtbl(bond
);
487 write_lock_bh(&bond
->curr_slave_lock
);
489 if (slave
!= bond
->curr_active_slave
) {
490 rlb_teach_disabled_mac_on_primary(bond
, slave
->dev
->dev_addr
);
493 write_unlock_bh(&bond
->curr_slave_lock
);
496 static void rlb_update_client(struct rlb_client_info
*client_info
)
500 if (!client_info
->slave
) {
504 for (i
= 0; i
< RLB_ARP_BURST_SIZE
; i
++) {
507 skb
= arp_create(ARPOP_REPLY
, ETH_P_ARP
,
509 client_info
->slave
->dev
,
511 client_info
->mac_dst
,
512 client_info
->slave
->dev
->dev_addr
,
513 client_info
->mac_dst
);
515 printk(KERN_ERR DRV_NAME
516 ": %s: Error: failed to create an ARP packet\n",
517 client_info
->slave
->dev
->master
->name
);
521 skb
->dev
= client_info
->slave
->dev
;
523 if (client_info
->tag
) {
524 skb
= vlan_put_tag(skb
, client_info
->vlan_id
);
526 printk(KERN_ERR DRV_NAME
527 ": %s: Error: failed to insert VLAN tag\n",
528 client_info
->slave
->dev
->master
->name
);
537 /* sends ARP REPLIES that update the clients that need updating */
538 static void rlb_update_rx_clients(struct bonding
*bond
)
540 struct alb_bond_info
*bond_info
= &(BOND_ALB_INFO(bond
));
541 struct rlb_client_info
*client_info
;
544 _lock_rx_hashtbl(bond
);
546 hash_index
= bond_info
->rx_hashtbl_head
;
547 for (; hash_index
!= RLB_NULL_INDEX
; hash_index
= client_info
->next
) {
548 client_info
= &(bond_info
->rx_hashtbl
[hash_index
]);
549 if (client_info
->ntt
) {
550 rlb_update_client(client_info
);
551 if (bond_info
->rlb_update_retry_counter
== 0) {
552 client_info
->ntt
= 0;
557 /* do not update the entries again untill this counter is zero so that
558 * not to confuse the clients.
560 bond_info
->rlb_update_delay_counter
= RLB_UPDATE_DELAY
;
562 _unlock_rx_hashtbl(bond
);
565 /* The slave was assigned a new mac address - update the clients */
566 static void rlb_req_update_slave_clients(struct bonding
*bond
, struct slave
*slave
)
568 struct alb_bond_info
*bond_info
= &(BOND_ALB_INFO(bond
));
569 struct rlb_client_info
*client_info
;
573 _lock_rx_hashtbl(bond
);
575 hash_index
= bond_info
->rx_hashtbl_head
;
576 for (; hash_index
!= RLB_NULL_INDEX
; hash_index
= client_info
->next
) {
577 client_info
= &(bond_info
->rx_hashtbl
[hash_index
]);
579 if ((client_info
->slave
== slave
) &&
580 memcmp(client_info
->mac_dst
, mac_bcast
, ETH_ALEN
)) {
581 client_info
->ntt
= 1;
586 // update the team's flag only after the whole iteration
588 bond_info
->rx_ntt
= 1;
590 bond_info
->rlb_update_retry_counter
= RLB_UPDATE_RETRY
;
593 _unlock_rx_hashtbl(bond
);
596 /* mark all clients using src_ip to be updated */
597 static void rlb_req_update_subnet_clients(struct bonding
*bond
, __be32 src_ip
)
599 struct alb_bond_info
*bond_info
= &(BOND_ALB_INFO(bond
));
600 struct rlb_client_info
*client_info
;
603 _lock_rx_hashtbl(bond
);
605 hash_index
= bond_info
->rx_hashtbl_head
;
606 for (; hash_index
!= RLB_NULL_INDEX
; hash_index
= client_info
->next
) {
607 client_info
= &(bond_info
->rx_hashtbl
[hash_index
]);
609 if (!client_info
->slave
) {
610 printk(KERN_ERR DRV_NAME
611 ": %s: Error: found a client with no channel in "
612 "the client's hash table\n",
616 /*update all clients using this src_ip, that are not assigned
617 * to the team's address (curr_active_slave) and have a known
618 * unicast mac address.
620 if ((client_info
->ip_src
== src_ip
) &&
621 memcmp(client_info
->slave
->dev
->dev_addr
,
622 bond
->dev
->dev_addr
, ETH_ALEN
) &&
623 memcmp(client_info
->mac_dst
, mac_bcast
, ETH_ALEN
)) {
624 client_info
->ntt
= 1;
625 bond_info
->rx_ntt
= 1;
629 _unlock_rx_hashtbl(bond
);
632 /* Caller must hold both bond and ptr locks for read */
633 static struct slave
*rlb_choose_channel(struct sk_buff
*skb
, struct bonding
*bond
)
635 struct alb_bond_info
*bond_info
= &(BOND_ALB_INFO(bond
));
636 struct arp_pkt
*arp
= arp_pkt(skb
);
637 struct slave
*assigned_slave
;
638 struct rlb_client_info
*client_info
;
641 _lock_rx_hashtbl(bond
);
643 hash_index
= _simple_hash((u8
*)&arp
->ip_dst
, sizeof(arp
->ip_src
));
644 client_info
= &(bond_info
->rx_hashtbl
[hash_index
]);
646 if (client_info
->assigned
) {
647 if ((client_info
->ip_src
== arp
->ip_src
) &&
648 (client_info
->ip_dst
== arp
->ip_dst
)) {
649 /* the entry is already assigned to this client */
650 if (memcmp(arp
->mac_dst
, mac_bcast
, ETH_ALEN
)) {
651 /* update mac address from arp */
652 memcpy(client_info
->mac_dst
, arp
->mac_dst
, ETH_ALEN
);
655 assigned_slave
= client_info
->slave
;
656 if (assigned_slave
) {
657 _unlock_rx_hashtbl(bond
);
658 return assigned_slave
;
661 /* the entry is already assigned to some other client,
662 * move the old client to primary (curr_active_slave) so
663 * that the new client can be assigned to this entry.
665 if (bond
->curr_active_slave
&&
666 client_info
->slave
!= bond
->curr_active_slave
) {
667 client_info
->slave
= bond
->curr_active_slave
;
668 rlb_update_client(client_info
);
672 /* assign a new slave */
673 assigned_slave
= rlb_next_rx_slave(bond
);
675 if (assigned_slave
) {
676 client_info
->ip_src
= arp
->ip_src
;
677 client_info
->ip_dst
= arp
->ip_dst
;
678 /* arp->mac_dst is broadcast for arp reqeusts.
679 * will be updated with clients actual unicast mac address
680 * upon receiving an arp reply.
682 memcpy(client_info
->mac_dst
, arp
->mac_dst
, ETH_ALEN
);
683 client_info
->slave
= assigned_slave
;
685 if (memcmp(client_info
->mac_dst
, mac_bcast
, ETH_ALEN
)) {
686 client_info
->ntt
= 1;
687 bond
->alb_info
.rx_ntt
= 1;
689 client_info
->ntt
= 0;
692 if (!list_empty(&bond
->vlan_list
)) {
693 if (!vlan_get_tag(skb
, &client_info
->vlan_id
))
694 client_info
->tag
= 1;
697 if (!client_info
->assigned
) {
698 u32 prev_tbl_head
= bond_info
->rx_hashtbl_head
;
699 bond_info
->rx_hashtbl_head
= hash_index
;
700 client_info
->next
= prev_tbl_head
;
701 if (prev_tbl_head
!= RLB_NULL_INDEX
) {
702 bond_info
->rx_hashtbl
[prev_tbl_head
].prev
=
705 client_info
->assigned
= 1;
709 _unlock_rx_hashtbl(bond
);
711 return assigned_slave
;
714 /* chooses (and returns) transmit channel for arp reply
715 * does not choose channel for other arp types since they are
716 * sent on the curr_active_slave
718 static struct slave
*rlb_arp_xmit(struct sk_buff
*skb
, struct bonding
*bond
)
720 struct arp_pkt
*arp
= arp_pkt(skb
);
721 struct slave
*tx_slave
= NULL
;
723 if (arp
->op_code
== htons(ARPOP_REPLY
)) {
724 /* the arp must be sent on the selected
727 tx_slave
= rlb_choose_channel(skb
, bond
);
729 memcpy(arp
->mac_src
,tx_slave
->dev
->dev_addr
, ETH_ALEN
);
731 pr_debug("Server sent ARP Reply packet\n");
732 } else if (arp
->op_code
== htons(ARPOP_REQUEST
)) {
733 /* Create an entry in the rx_hashtbl for this client as a
735 * When the arp reply is received the entry will be updated
736 * with the correct unicast address of the client.
738 rlb_choose_channel(skb
, bond
);
740 /* The ARP relpy packets must be delayed so that
741 * they can cancel out the influence of the ARP request.
743 bond
->alb_info
.rlb_update_delay_counter
= RLB_UPDATE_DELAY
;
745 /* arp requests are broadcast and are sent on the primary
746 * the arp request will collapse all clients on the subnet to
747 * the primary slave. We must register these clients to be
748 * updated with their assigned mac.
750 rlb_req_update_subnet_clients(bond
, arp
->ip_src
);
751 pr_debug("Server sent ARP Request packet\n");
757 /* Caller must hold bond lock for read */
758 static void rlb_rebalance(struct bonding
*bond
)
760 struct alb_bond_info
*bond_info
= &(BOND_ALB_INFO(bond
));
761 struct slave
*assigned_slave
;
762 struct rlb_client_info
*client_info
;
766 _lock_rx_hashtbl(bond
);
769 hash_index
= bond_info
->rx_hashtbl_head
;
770 for (; hash_index
!= RLB_NULL_INDEX
; hash_index
= client_info
->next
) {
771 client_info
= &(bond_info
->rx_hashtbl
[hash_index
]);
772 assigned_slave
= rlb_next_rx_slave(bond
);
773 if (assigned_slave
&& (client_info
->slave
!= assigned_slave
)) {
774 client_info
->slave
= assigned_slave
;
775 client_info
->ntt
= 1;
780 /* update the team's flag only after the whole iteration */
782 bond_info
->rx_ntt
= 1;
784 _unlock_rx_hashtbl(bond
);
787 /* Caller must hold rx_hashtbl lock */
788 static void rlb_init_table_entry(struct rlb_client_info
*entry
)
790 memset(entry
, 0, sizeof(struct rlb_client_info
));
791 entry
->next
= RLB_NULL_INDEX
;
792 entry
->prev
= RLB_NULL_INDEX
;
795 static int rlb_initialize(struct bonding
*bond
)
797 struct alb_bond_info
*bond_info
= &(BOND_ALB_INFO(bond
));
798 struct packet_type
*pk_type
= &(BOND_ALB_INFO(bond
).rlb_pkt_type
);
799 struct rlb_client_info
*new_hashtbl
;
800 int size
= RLB_HASH_TABLE_SIZE
* sizeof(struct rlb_client_info
);
803 spin_lock_init(&(bond_info
->rx_hashtbl_lock
));
805 new_hashtbl
= kmalloc(size
, GFP_KERNEL
);
807 printk(KERN_ERR DRV_NAME
808 ": %s: Error: Failed to allocate RLB hash table\n",
812 _lock_rx_hashtbl(bond
);
814 bond_info
->rx_hashtbl
= new_hashtbl
;
816 bond_info
->rx_hashtbl_head
= RLB_NULL_INDEX
;
818 for (i
= 0; i
< RLB_HASH_TABLE_SIZE
; i
++) {
819 rlb_init_table_entry(bond_info
->rx_hashtbl
+ i
);
822 _unlock_rx_hashtbl(bond
);
824 /*initialize packet type*/
825 pk_type
->type
= __constant_htons(ETH_P_ARP
);
827 pk_type
->func
= rlb_arp_recv
;
829 /* register to receive ARPs */
830 dev_add_pack(pk_type
);
835 static void rlb_deinitialize(struct bonding
*bond
)
837 struct alb_bond_info
*bond_info
= &(BOND_ALB_INFO(bond
));
839 dev_remove_pack(&(bond_info
->rlb_pkt_type
));
841 _lock_rx_hashtbl(bond
);
843 kfree(bond_info
->rx_hashtbl
);
844 bond_info
->rx_hashtbl
= NULL
;
845 bond_info
->rx_hashtbl_head
= RLB_NULL_INDEX
;
847 _unlock_rx_hashtbl(bond
);
850 static void rlb_clear_vlan(struct bonding
*bond
, unsigned short vlan_id
)
852 struct alb_bond_info
*bond_info
= &(BOND_ALB_INFO(bond
));
855 _lock_rx_hashtbl(bond
);
857 curr_index
= bond_info
->rx_hashtbl_head
;
858 while (curr_index
!= RLB_NULL_INDEX
) {
859 struct rlb_client_info
*curr
= &(bond_info
->rx_hashtbl
[curr_index
]);
860 u32 next_index
= bond_info
->rx_hashtbl
[curr_index
].next
;
861 u32 prev_index
= bond_info
->rx_hashtbl
[curr_index
].prev
;
863 if (curr
->tag
&& (curr
->vlan_id
== vlan_id
)) {
864 if (curr_index
== bond_info
->rx_hashtbl_head
) {
865 bond_info
->rx_hashtbl_head
= next_index
;
867 if (prev_index
!= RLB_NULL_INDEX
) {
868 bond_info
->rx_hashtbl
[prev_index
].next
= next_index
;
870 if (next_index
!= RLB_NULL_INDEX
) {
871 bond_info
->rx_hashtbl
[next_index
].prev
= prev_index
;
874 rlb_init_table_entry(curr
);
877 curr_index
= next_index
;
880 _unlock_rx_hashtbl(bond
);
883 /*********************** tlb/rlb shared functions *********************/
885 static void alb_send_learning_packets(struct slave
*slave
, u8 mac_addr
[])
887 struct bonding
*bond
= bond_get_bond_by_slave(slave
);
888 struct learning_pkt pkt
;
889 int size
= sizeof(struct learning_pkt
);
892 memset(&pkt
, 0, size
);
893 memcpy(pkt
.mac_dst
, mac_addr
, ETH_ALEN
);
894 memcpy(pkt
.mac_src
, mac_addr
, ETH_ALEN
);
895 pkt
.type
= __constant_htons(ETH_P_LOOP
);
897 for (i
= 0; i
< MAX_LP_BURST
; i
++) {
901 skb
= dev_alloc_skb(size
);
906 data
= skb_put(skb
, size
);
907 memcpy(data
, &pkt
, size
);
909 skb_reset_mac_header(skb
);
910 skb
->network_header
= skb
->mac_header
+ ETH_HLEN
;
911 skb
->protocol
= pkt
.type
;
912 skb
->priority
= TC_PRIO_CONTROL
;
913 skb
->dev
= slave
->dev
;
915 if (!list_empty(&bond
->vlan_list
)) {
916 struct vlan_entry
*vlan
;
918 vlan
= bond_next_vlan(bond
,
919 bond
->alb_info
.current_alb_vlan
);
921 bond
->alb_info
.current_alb_vlan
= vlan
;
927 skb
= vlan_put_tag(skb
, vlan
->vlan_id
);
929 printk(KERN_ERR DRV_NAME
930 ": %s: Error: failed to insert VLAN tag\n",
940 /* hw is a boolean parameter that determines whether we should try and
941 * set the hw address of the device as well as the hw address of the
944 static int alb_set_slave_mac_addr(struct slave
*slave
, u8 addr
[], int hw
)
946 struct net_device
*dev
= slave
->dev
;
947 struct sockaddr s_addr
;
950 memcpy(dev
->dev_addr
, addr
, dev
->addr_len
);
954 /* for rlb each slave must have a unique hw mac addresses so that */
955 /* each slave will receive packets destined to a different mac */
956 memcpy(s_addr
.sa_data
, addr
, dev
->addr_len
);
957 s_addr
.sa_family
= dev
->type
;
958 if (dev_set_mac_address(dev
, &s_addr
)) {
959 printk(KERN_ERR DRV_NAME
960 ": %s: Error: dev_set_mac_address of dev %s failed! ALB "
961 "mode requires that the base driver support setting "
962 "the hw address also when the network device's "
963 "interface is open\n",
964 dev
->master
->name
, dev
->name
);
971 * Swap MAC addresses between two slaves.
973 * Called with RTNL held, and no other locks.
977 static void alb_swap_mac_addr(struct bonding
*bond
, struct slave
*slave1
, struct slave
*slave2
)
979 u8 tmp_mac_addr
[ETH_ALEN
];
981 memcpy(tmp_mac_addr
, slave1
->dev
->dev_addr
, ETH_ALEN
);
982 alb_set_slave_mac_addr(slave1
, slave2
->dev
->dev_addr
, bond
->alb_info
.rlb_enabled
);
983 alb_set_slave_mac_addr(slave2
, tmp_mac_addr
, bond
->alb_info
.rlb_enabled
);
988 * Send learning packets after MAC address swap.
990 * Called with RTNL and no other locks
992 static void alb_fasten_mac_swap(struct bonding
*bond
, struct slave
*slave1
,
993 struct slave
*slave2
)
995 int slaves_state_differ
= (SLAVE_IS_OK(slave1
) != SLAVE_IS_OK(slave2
));
996 struct slave
*disabled_slave
= NULL
;
1000 /* fasten the change in the switch */
1001 if (SLAVE_IS_OK(slave1
)) {
1002 alb_send_learning_packets(slave1
, slave1
->dev
->dev_addr
);
1003 if (bond
->alb_info
.rlb_enabled
) {
1004 /* inform the clients that the mac address
1007 rlb_req_update_slave_clients(bond
, slave1
);
1010 disabled_slave
= slave1
;
1013 if (SLAVE_IS_OK(slave2
)) {
1014 alb_send_learning_packets(slave2
, slave2
->dev
->dev_addr
);
1015 if (bond
->alb_info
.rlb_enabled
) {
1016 /* inform the clients that the mac address
1019 rlb_req_update_slave_clients(bond
, slave2
);
1022 disabled_slave
= slave2
;
1025 if (bond
->alb_info
.rlb_enabled
&& slaves_state_differ
) {
1026 /* A disabled slave was assigned an active mac addr */
1027 rlb_teach_disabled_mac_on_primary(bond
,
1028 disabled_slave
->dev
->dev_addr
);
1033 * alb_change_hw_addr_on_detach
1034 * @bond: bonding we're working on
1035 * @slave: the slave that was just detached
1037 * We assume that @slave was already detached from the slave list.
1039 * If @slave's permanent hw address is different both from its current
1040 * address and from @bond's address, then somewhere in the bond there's
1041 * a slave that has @slave's permanet address as its current address.
1042 * We'll make sure that that slave no longer uses @slave's permanent address.
1044 * Caller must hold RTNL and no other locks
1046 static void alb_change_hw_addr_on_detach(struct bonding
*bond
, struct slave
*slave
)
1051 perm_curr_diff
= memcmp(slave
->perm_hwaddr
,
1052 slave
->dev
->dev_addr
,
1054 perm_bond_diff
= memcmp(slave
->perm_hwaddr
,
1055 bond
->dev
->dev_addr
,
1058 if (perm_curr_diff
&& perm_bond_diff
) {
1059 struct slave
*tmp_slave
;
1062 bond_for_each_slave(bond
, tmp_slave
, i
) {
1063 if (!memcmp(slave
->perm_hwaddr
,
1064 tmp_slave
->dev
->dev_addr
,
1072 /* locking: needs RTNL and nothing else */
1073 alb_swap_mac_addr(bond
, slave
, tmp_slave
);
1074 alb_fasten_mac_swap(bond
, slave
, tmp_slave
);
1080 * alb_handle_addr_collision_on_attach
1081 * @bond: bonding we're working on
1082 * @slave: the slave that was just attached
1084 * checks uniqueness of slave's mac address and handles the case the
1085 * new slave uses the bonds mac address.
1087 * If the permanent hw address of @slave is @bond's hw address, we need to
1088 * find a different hw address to give @slave, that isn't in use by any other
1089 * slave in the bond. This address must be, of course, one of the premanent
1090 * addresses of the other slaves.
1092 * We go over the slave list, and for each slave there we compare its
1093 * permanent hw address with the current address of all the other slaves.
1094 * If no match was found, then we've found a slave with a permanent address
1095 * that isn't used by any other slave in the bond, so we can assign it to
1098 * assumption: this function is called before @slave is attached to the
1101 * caller must hold the bond lock for write since the mac addresses are compared
1102 * and may be swapped.
1104 static int alb_handle_addr_collision_on_attach(struct bonding
*bond
, struct slave
*slave
)
1106 struct slave
*tmp_slave1
, *tmp_slave2
, *free_mac_slave
;
1107 struct slave
*has_bond_addr
= bond
->curr_active_slave
;
1108 int i
, j
, found
= 0;
1110 if (bond
->slave_cnt
== 0) {
1111 /* this is the first slave */
1115 /* if slave's mac address differs from bond's mac address
1116 * check uniqueness of slave's mac address against the other
1117 * slaves in the bond.
1119 if (memcmp(slave
->perm_hwaddr
, bond
->dev
->dev_addr
, ETH_ALEN
)) {
1120 bond_for_each_slave(bond
, tmp_slave1
, i
) {
1121 if (!memcmp(tmp_slave1
->dev
->dev_addr
, slave
->dev
->dev_addr
,
1131 /* Try setting slave mac to bond address and fall-through
1132 to code handling that situation below... */
1133 alb_set_slave_mac_addr(slave
, bond
->dev
->dev_addr
,
1134 bond
->alb_info
.rlb_enabled
);
1137 /* The slave's address is equal to the address of the bond.
1138 * Search for a spare address in the bond for this slave.
1140 free_mac_slave
= NULL
;
1142 bond_for_each_slave(bond
, tmp_slave1
, i
) {
1144 bond_for_each_slave(bond
, tmp_slave2
, j
) {
1145 if (!memcmp(tmp_slave1
->perm_hwaddr
,
1146 tmp_slave2
->dev
->dev_addr
,
1154 /* no slave has tmp_slave1's perm addr
1157 free_mac_slave
= tmp_slave1
;
1161 if (!has_bond_addr
) {
1162 if (!memcmp(tmp_slave1
->dev
->dev_addr
,
1163 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
);
1175 printk(KERN_WARNING DRV_NAME
1176 ": %s: Warning: the hw address of slave %s is in use by "
1177 "the bond; giving it the hw address of %s\n",
1178 bond
->dev
->name
, slave
->dev
->name
, free_mac_slave
->dev
->name
);
1180 } else if (has_bond_addr
) {
1181 printk(KERN_ERR DRV_NAME
1182 ": %s: Error: the hw address of slave %s is in use by the "
1183 "bond; couldn't find a slave with a free hw address to "
1184 "give it (this should not have happened)\n",
1185 bond
->dev
->name
, slave
->dev
->name
);
1193 * alb_set_mac_address
1197 * In TLB mode all slaves are configured to the bond's hw address, but set
1198 * their dev_addr field to different addresses (based on their permanent hw
1201 * For each slave, this function sets the interface to the new address and then
1202 * changes its dev_addr field to its previous value.
1204 * Unwinding assumes bond's mac address has not yet changed.
1206 static int alb_set_mac_address(struct bonding
*bond
, void *addr
)
1209 struct slave
*slave
, *stop_at
;
1210 char tmp_addr
[ETH_ALEN
];
1214 if (bond
->alb_info
.rlb_enabled
) {
1218 bond_for_each_slave(bond
, slave
, i
) {
1219 /* save net_device's current hw address */
1220 memcpy(tmp_addr
, slave
->dev
->dev_addr
, ETH_ALEN
);
1222 res
= dev_set_mac_address(slave
->dev
, addr
);
1224 /* restore net_device's hw address */
1225 memcpy(slave
->dev
->dev_addr
, tmp_addr
, ETH_ALEN
);
1234 memcpy(sa
.sa_data
, bond
->dev
->dev_addr
, bond
->dev
->addr_len
);
1235 sa
.sa_family
= bond
->dev
->type
;
1237 /* unwind from head to the slave that failed */
1239 bond_for_each_slave_from_to(bond
, slave
, i
, bond
->first_slave
, stop_at
) {
1240 memcpy(tmp_addr
, slave
->dev
->dev_addr
, ETH_ALEN
);
1241 dev_set_mac_address(slave
->dev
, &sa
);
1242 memcpy(slave
->dev
->dev_addr
, tmp_addr
, ETH_ALEN
);
1248 /************************ exported alb funcions ************************/
1250 int bond_alb_initialize(struct bonding
*bond
, int rlb_enabled
)
1254 res
= tlb_initialize(bond
);
1260 bond
->alb_info
.rlb_enabled
= 1;
1261 /* initialize rlb */
1262 res
= rlb_initialize(bond
);
1264 tlb_deinitialize(bond
);
1268 bond
->alb_info
.rlb_enabled
= 0;
1274 void bond_alb_deinitialize(struct bonding
*bond
)
1276 struct alb_bond_info
*bond_info
= &(BOND_ALB_INFO(bond
));
1278 tlb_deinitialize(bond
);
1280 if (bond_info
->rlb_enabled
) {
1281 rlb_deinitialize(bond
);
1285 int bond_alb_xmit(struct sk_buff
*skb
, struct net_device
*bond_dev
)
1287 struct bonding
*bond
= netdev_priv(bond_dev
);
1288 struct ethhdr
*eth_data
;
1289 struct alb_bond_info
*bond_info
= &(BOND_ALB_INFO(bond
));
1290 struct slave
*tx_slave
= NULL
;
1291 static const __be32 ip_bcast
= htonl(0xffffffff);
1293 int do_tx_balance
= 1;
1295 const u8
*hash_start
= NULL
;
1297 struct ipv6hdr
*ip6hdr
;
1299 skb_reset_mac_header(skb
);
1300 eth_data
= eth_hdr(skb
);
1302 /* make sure that the curr_active_slave and the slaves list do
1303 * not change during tx
1305 read_lock(&bond
->lock
);
1306 read_lock(&bond
->curr_slave_lock
);
1308 if (!BOND_IS_OK(bond
)) {
1312 switch (ntohs(skb
->protocol
)) {
1314 const struct iphdr
*iph
= ip_hdr(skb
);
1316 if ((memcmp(eth_data
->h_dest
, mac_bcast
, ETH_ALEN
) == 0) ||
1317 (iph
->daddr
== ip_bcast
) ||
1318 (iph
->protocol
== IPPROTO_IGMP
)) {
1322 hash_start
= (char *)&(iph
->daddr
);
1323 hash_size
= sizeof(iph
->daddr
);
1327 /* IPv6 doesn't really use broadcast mac address, but leave
1328 * that here just in case.
1330 if (memcmp(eth_data
->h_dest
, mac_bcast
, ETH_ALEN
) == 0) {
1335 /* IPv6 uses all-nodes multicast as an equivalent to
1336 * broadcasts in IPv4.
1338 if (memcmp(eth_data
->h_dest
, mac_v6_allmcast
, ETH_ALEN
) == 0) {
1343 /* Additianally, DAD probes should not be tx-balanced as that
1344 * will lead to false positives for duplicate addresses and
1345 * prevent address configuration from working.
1347 ip6hdr
= ipv6_hdr(skb
);
1348 if (ipv6_addr_any(&ip6hdr
->saddr
)) {
1353 hash_start
= (char *)&(ipv6_hdr(skb
)->daddr
);
1354 hash_size
= sizeof(ipv6_hdr(skb
)->daddr
);
1357 if (ipx_hdr(skb
)->ipx_checksum
!= IPX_NO_CHECKSUM
) {
1358 /* something is wrong with this packet */
1363 if (ipx_hdr(skb
)->ipx_type
!= IPX_TYPE_NCP
) {
1364 /* The only protocol worth balancing in
1365 * this family since it has an "ARP" like
1372 hash_start
= (char*)eth_data
->h_dest
;
1373 hash_size
= ETH_ALEN
;
1377 if (bond_info
->rlb_enabled
) {
1378 tx_slave
= rlb_arp_xmit(skb
, bond
);
1386 if (do_tx_balance
) {
1387 hash_index
= _simple_hash(hash_start
, hash_size
);
1388 tx_slave
= tlb_choose_channel(bond
, hash_index
, skb
->len
);
1392 /* unbalanced or unassigned, send through primary */
1393 tx_slave
= bond
->curr_active_slave
;
1394 bond_info
->unbalanced_load
+= skb
->len
;
1397 if (tx_slave
&& SLAVE_IS_OK(tx_slave
)) {
1398 if (tx_slave
!= bond
->curr_active_slave
) {
1399 memcpy(eth_data
->h_source
,
1400 tx_slave
->dev
->dev_addr
,
1404 res
= bond_dev_queue_xmit(bond
, skb
, tx_slave
->dev
);
1407 tlb_clear_slave(bond
, tx_slave
, 0);
1413 /* no suitable interface, frame not sent */
1416 read_unlock(&bond
->curr_slave_lock
);
1417 read_unlock(&bond
->lock
);
1421 void bond_alb_monitor(struct work_struct
*work
)
1423 struct bonding
*bond
= container_of(work
, struct bonding
,
1425 struct alb_bond_info
*bond_info
= &(BOND_ALB_INFO(bond
));
1426 struct slave
*slave
;
1429 read_lock(&bond
->lock
);
1431 if (bond
->kill_timers
) {
1435 if (bond
->slave_cnt
== 0) {
1436 bond_info
->tx_rebalance_counter
= 0;
1437 bond_info
->lp_counter
= 0;
1441 bond_info
->tx_rebalance_counter
++;
1442 bond_info
->lp_counter
++;
1444 /* send learning packets */
1445 if (bond_info
->lp_counter
>= BOND_ALB_LP_TICKS
) {
1446 /* change of curr_active_slave involves swapping of mac addresses.
1447 * in order to avoid this swapping from happening while
1448 * sending the learning packets, the curr_slave_lock must be held for
1451 read_lock(&bond
->curr_slave_lock
);
1453 bond_for_each_slave(bond
, slave
, i
) {
1454 alb_send_learning_packets(slave
, slave
->dev
->dev_addr
);
1457 read_unlock(&bond
->curr_slave_lock
);
1459 bond_info
->lp_counter
= 0;
1462 /* rebalance tx traffic */
1463 if (bond_info
->tx_rebalance_counter
>= BOND_TLB_REBALANCE_TICKS
) {
1465 read_lock(&bond
->curr_slave_lock
);
1467 bond_for_each_slave(bond
, slave
, i
) {
1468 tlb_clear_slave(bond
, slave
, 1);
1469 if (slave
== bond
->curr_active_slave
) {
1470 SLAVE_TLB_INFO(slave
).load
=
1471 bond_info
->unbalanced_load
/
1472 BOND_TLB_REBALANCE_INTERVAL
;
1473 bond_info
->unbalanced_load
= 0;
1477 read_unlock(&bond
->curr_slave_lock
);
1479 bond_info
->tx_rebalance_counter
= 0;
1482 /* handle rlb stuff */
1483 if (bond_info
->rlb_enabled
) {
1484 if (bond_info
->primary_is_promisc
&&
1485 (++bond_info
->rlb_promisc_timeout_counter
>= RLB_PROMISC_TIMEOUT
)) {
1488 * dev_set_promiscuity requires rtnl and
1491 read_unlock(&bond
->lock
);
1494 bond_info
->rlb_promisc_timeout_counter
= 0;
1496 /* If the primary was set to promiscuous mode
1497 * because a slave was disabled then
1498 * it can now leave promiscuous mode.
1500 dev_set_promiscuity(bond
->curr_active_slave
->dev
, -1);
1501 bond_info
->primary_is_promisc
= 0;
1504 read_lock(&bond
->lock
);
1507 if (bond_info
->rlb_rebalance
) {
1508 bond_info
->rlb_rebalance
= 0;
1509 rlb_rebalance(bond
);
1512 /* check if clients need updating */
1513 if (bond_info
->rx_ntt
) {
1514 if (bond_info
->rlb_update_delay_counter
) {
1515 --bond_info
->rlb_update_delay_counter
;
1517 rlb_update_rx_clients(bond
);
1518 if (bond_info
->rlb_update_retry_counter
) {
1519 --bond_info
->rlb_update_retry_counter
;
1521 bond_info
->rx_ntt
= 0;
1528 queue_delayed_work(bond
->wq
, &bond
->alb_work
, alb_delta_in_ticks
);
1530 read_unlock(&bond
->lock
);
1533 /* assumption: called before the slave is attached to the bond
1534 * and not locked by the bond lock
1536 int bond_alb_init_slave(struct bonding
*bond
, struct slave
*slave
)
1540 res
= alb_set_slave_mac_addr(slave
, slave
->perm_hwaddr
,
1541 bond
->alb_info
.rlb_enabled
);
1546 /* caller must hold the bond lock for write since the mac addresses
1547 * are compared and may be swapped.
1549 read_lock(&bond
->lock
);
1551 res
= alb_handle_addr_collision_on_attach(bond
, slave
);
1553 read_unlock(&bond
->lock
);
1559 tlb_init_slave(slave
);
1561 /* order a rebalance ASAP */
1562 bond
->alb_info
.tx_rebalance_counter
= BOND_TLB_REBALANCE_TICKS
;
1564 if (bond
->alb_info
.rlb_enabled
) {
1565 bond
->alb_info
.rlb_rebalance
= 1;
1572 * Remove slave from tlb and rlb hash tables, and fix up MAC addresses
1575 * Caller must hold RTNL and no other locks
1577 void bond_alb_deinit_slave(struct bonding
*bond
, struct slave
*slave
)
1579 if (bond
->slave_cnt
> 1) {
1580 alb_change_hw_addr_on_detach(bond
, slave
);
1583 tlb_clear_slave(bond
, slave
, 0);
1585 if (bond
->alb_info
.rlb_enabled
) {
1586 bond
->alb_info
.next_rx_slave
= NULL
;
1587 rlb_clear_slave(bond
, slave
);
1591 /* Caller must hold bond lock for read */
1592 void bond_alb_handle_link_change(struct bonding
*bond
, struct slave
*slave
, char link
)
1594 struct alb_bond_info
*bond_info
= &(BOND_ALB_INFO(bond
));
1596 if (link
== BOND_LINK_DOWN
) {
1597 tlb_clear_slave(bond
, slave
, 0);
1598 if (bond
->alb_info
.rlb_enabled
) {
1599 rlb_clear_slave(bond
, slave
);
1601 } else if (link
== BOND_LINK_UP
) {
1602 /* order a rebalance ASAP */
1603 bond_info
->tx_rebalance_counter
= BOND_TLB_REBALANCE_TICKS
;
1604 if (bond
->alb_info
.rlb_enabled
) {
1605 bond
->alb_info
.rlb_rebalance
= 1;
1606 /* If the updelay module parameter is smaller than the
1607 * forwarding delay of the switch the rebalance will
1608 * not work because the rebalance arp replies will
1609 * not be forwarded to the clients..
1616 * bond_alb_handle_active_change - assign new curr_active_slave
1617 * @bond: our bonding struct
1618 * @new_slave: new slave to assign
1620 * Set the bond->curr_active_slave to @new_slave and handle
1621 * mac address swapping and promiscuity changes as needed.
1623 * If new_slave is NULL, caller must hold curr_slave_lock or
1624 * bond->lock for write.
1626 * If new_slave is not NULL, caller must hold RTNL, bond->lock for
1627 * read and curr_slave_lock for write. Processing here may sleep, so
1628 * no other locks may be held.
1630 void bond_alb_handle_active_change(struct bonding
*bond
, struct slave
*new_slave
)
1632 struct slave
*swap_slave
;
1635 if (bond
->curr_active_slave
== new_slave
) {
1639 if (bond
->curr_active_slave
&& bond
->alb_info
.primary_is_promisc
) {
1640 dev_set_promiscuity(bond
->curr_active_slave
->dev
, -1);
1641 bond
->alb_info
.primary_is_promisc
= 0;
1642 bond
->alb_info
.rlb_promisc_timeout_counter
= 0;
1645 swap_slave
= bond
->curr_active_slave
;
1646 bond
->curr_active_slave
= new_slave
;
1648 if (!new_slave
|| (bond
->slave_cnt
== 0)) {
1652 /* set the new curr_active_slave to the bonds mac address
1653 * i.e. swap mac addresses of old curr_active_slave and new curr_active_slave
1656 struct slave
*tmp_slave
;
1657 /* find slave that is holding the bond's mac address */
1658 bond_for_each_slave(bond
, tmp_slave
, i
) {
1659 if (!memcmp(tmp_slave
->dev
->dev_addr
,
1660 bond
->dev
->dev_addr
, ETH_ALEN
)) {
1661 swap_slave
= tmp_slave
;
1668 * Arrange for swap_slave and new_slave to temporarily be
1669 * ignored so we can mess with their MAC addresses without
1670 * fear of interference from transmit activity.
1673 tlb_clear_slave(bond
, swap_slave
, 1);
1675 tlb_clear_slave(bond
, new_slave
, 1);
1677 write_unlock_bh(&bond
->curr_slave_lock
);
1678 read_unlock(&bond
->lock
);
1682 /* curr_active_slave must be set before calling alb_swap_mac_addr */
1684 /* swap mac address */
1685 alb_swap_mac_addr(bond
, swap_slave
, new_slave
);
1687 /* set the new_slave to the bond mac address */
1688 alb_set_slave_mac_addr(new_slave
, bond
->dev
->dev_addr
,
1689 bond
->alb_info
.rlb_enabled
);
1693 alb_fasten_mac_swap(bond
, swap_slave
, new_slave
);
1694 read_lock(&bond
->lock
);
1696 read_lock(&bond
->lock
);
1697 alb_send_learning_packets(new_slave
, bond
->dev
->dev_addr
);
1700 write_lock_bh(&bond
->curr_slave_lock
);
1706 int bond_alb_set_mac_address(struct net_device
*bond_dev
, void *addr
)
1708 struct bonding
*bond
= netdev_priv(bond_dev
);
1709 struct sockaddr
*sa
= addr
;
1710 struct slave
*slave
, *swap_slave
;
1714 if (!is_valid_ether_addr(sa
->sa_data
)) {
1715 return -EADDRNOTAVAIL
;
1718 res
= alb_set_mac_address(bond
, addr
);
1723 memcpy(bond_dev
->dev_addr
, sa
->sa_data
, bond_dev
->addr_len
);
1725 /* If there is no curr_active_slave there is nothing else to do.
1726 * Otherwise we'll need to pass the new address to it and handle
1729 if (!bond
->curr_active_slave
) {
1735 bond_for_each_slave(bond
, slave
, i
) {
1736 if (!memcmp(slave
->dev
->dev_addr
, bond_dev
->dev_addr
, ETH_ALEN
)) {
1742 write_unlock_bh(&bond
->curr_slave_lock
);
1743 read_unlock(&bond
->lock
);
1746 alb_swap_mac_addr(bond
, swap_slave
, bond
->curr_active_slave
);
1747 alb_fasten_mac_swap(bond
, swap_slave
, bond
->curr_active_slave
);
1749 alb_set_slave_mac_addr(bond
->curr_active_slave
, bond_dev
->dev_addr
,
1750 bond
->alb_info
.rlb_enabled
);
1752 alb_send_learning_packets(bond
->curr_active_slave
, bond_dev
->dev_addr
);
1753 if (bond
->alb_info
.rlb_enabled
) {
1754 /* inform clients mac address has changed */
1755 rlb_req_update_slave_clients(bond
, bond
->curr_active_slave
);
1759 read_lock(&bond
->lock
);
1760 write_lock_bh(&bond
->curr_slave_lock
);
1765 void bond_alb_clear_vlan(struct bonding
*bond
, unsigned short vlan_id
)
1767 if (bond
->alb_info
.current_alb_vlan
&&
1768 (bond
->alb_info
.current_alb_vlan
->vlan_id
== vlan_id
)) {
1769 bond
->alb_info
.current_alb_vlan
= NULL
;
1772 if (bond
->alb_info
.rlb_enabled
) {
1773 rlb_clear_vlan(bond
, vlan_id
);