blob: 2108706d2f0c157cb0213255d7ce53269f08a31c [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Copyright(c) 1999 - 2004 Intel Corporation. All rights reserved.
3 *
4 * This program is free software; you can redistribute it and/or modify it
5 * under the terms of the GNU General Public License as published by the
6 * Free Software Foundation; either version 2 of the License, or
7 * (at your option) any later version.
8 *
9 * This program is distributed in the hope that it will be useful, but
10 * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
11 * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
12 * for more details.
13 *
14 * You should have received a copy of the GNU General Public License along
15 * with this program; if not, write to the Free Software Foundation, Inc.,
16 * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
17 *
18 * The full GNU General Public License is included in this distribution in the
19 * file called LICENSE.
20 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070021 */
22
Linus Torvalds1da177e2005-04-16 15:20:36 -070023#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>
30#include <linux/ip.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>
36#include <linux/in.h>
37#include <net/ipx.h>
38#include <net/arp.h>
Vlad Yasevich2d1ea192008-08-28 15:38:41 -040039#include <net/ipv6.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070040#include <asm/byteorder.h>
41#include "bonding.h"
42#include "bond_alb.h"
43
44
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
48 * to zero !!!
49 */
50#define BOND_ALB_LP_INTERVAL 1 /* In seconds, periodic send of
51 * learning packets to the switch
52 */
53
54#define BOND_TLB_REBALANCE_TICKS (BOND_TLB_REBALANCE_INTERVAL \
55 * ALB_TIMER_TICKS_PER_SEC)
56
57#define BOND_ALB_LP_TICKS (BOND_ALB_LP_INTERVAL \
58 * ALB_TIMER_TICKS_PER_SEC)
59
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 !
63 */
64
65
66#define TLB_NULL_INDEX 0xffffffff
67#define MAX_LP_BURST 3
68
69/* rlb defs */
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).
76 */
77/* RLB_PROMISC_TIMEOUT = 10 sec equals the time that the current slave is
78 * promiscuous after failover
79 */
80#define RLB_PROMISC_TIMEOUT 10*ALB_TIMER_TICKS_PER_SEC
81
82static const u8 mac_bcast[ETH_ALEN] = {0xff,0xff,0xff,0xff,0xff,0xff};
Vlad Yasevich2d1ea192008-08-28 15:38:41 -040083static const u8 mac_v6_allmcast[ETH_ALEN] = {0x33,0x33,0x00,0x00,0x00,0x01};
Linus Torvalds1da177e2005-04-16 15:20:36 -070084static const int alb_delta_in_ticks = HZ / ALB_TIMER_TICKS_PER_SEC;
85
86#pragma pack(1)
87struct learning_pkt {
88 u8 mac_dst[ETH_ALEN];
89 u8 mac_src[ETH_ALEN];
Al Virod3bb52b2007-08-22 20:06:58 -040090 __be16 type;
Linus Torvalds1da177e2005-04-16 15:20:36 -070091 u8 padding[ETH_ZLEN - ETH_HLEN];
92};
93
94struct arp_pkt {
Al Virod3bb52b2007-08-22 20:06:58 -040095 __be16 hw_addr_space;
96 __be16 prot_addr_space;
Linus Torvalds1da177e2005-04-16 15:20:36 -070097 u8 hw_addr_len;
98 u8 prot_addr_len;
Al Virod3bb52b2007-08-22 20:06:58 -040099 __be16 op_code;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100 u8 mac_src[ETH_ALEN]; /* sender hardware address */
Al Virod3bb52b2007-08-22 20:06:58 -0400101 __be32 ip_src; /* sender IP address */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102 u8 mac_dst[ETH_ALEN]; /* target hardware address */
Al Virod3bb52b2007-08-22 20:06:58 -0400103 __be32 ip_dst; /* target IP address */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104};
105#pragma pack()
106
Arnaldo Carvalho de Meloa16aeb32007-03-10 16:07:19 -0300107static inline struct arp_pkt *arp_pkt(const struct sk_buff *skb)
108{
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700109 return (struct arp_pkt *)skb_network_header(skb);
Arnaldo Carvalho de Meloa16aeb32007-03-10 16:07:19 -0300110}
111
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112/* Forward declaration */
113static void alb_send_learning_packets(struct slave *slave, u8 mac_addr[]);
114
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -0700115static inline u8 _simple_hash(const u8 *hash_start, int hash_size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116{
117 int i;
118 u8 hash = 0;
119
120 for (i = 0; i < hash_size; i++) {
121 hash ^= hash_start[i];
122 }
123
124 return hash;
125}
126
127/*********************** tlb specific functions ***************************/
128
129static inline void _lock_tx_hashtbl(struct bonding *bond)
130{
Jay Vosburgh6603a6f2007-10-17 17:37:50 -0700131 spin_lock_bh(&(BOND_ALB_INFO(bond).tx_hashtbl_lock));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132}
133
134static inline void _unlock_tx_hashtbl(struct bonding *bond)
135{
Jay Vosburgh6603a6f2007-10-17 17:37:50 -0700136 spin_unlock_bh(&(BOND_ALB_INFO(bond).tx_hashtbl_lock));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137}
138
139/* Caller must hold tx_hashtbl lock */
140static inline void tlb_init_table_entry(struct tlb_client_info *entry, int save_load)
141{
142 if (save_load) {
143 entry->load_history = 1 + entry->tx_bytes /
144 BOND_TLB_REBALANCE_INTERVAL;
145 entry->tx_bytes = 0;
146 }
147
148 entry->tx_slave = NULL;
149 entry->next = TLB_NULL_INDEX;
150 entry->prev = TLB_NULL_INDEX;
151}
152
153static inline void tlb_init_slave(struct slave *slave)
154{
155 SLAVE_TLB_INFO(slave).load = 0;
156 SLAVE_TLB_INFO(slave).head = TLB_NULL_INDEX;
157}
158
159/* Caller must hold bond lock for read */
160static void tlb_clear_slave(struct bonding *bond, struct slave *slave, int save_load)
161{
162 struct tlb_client_info *tx_hash_table;
163 u32 index;
164
165 _lock_tx_hashtbl(bond);
166
167 /* clear slave from tx_hashtbl */
168 tx_hash_table = BOND_ALB_INFO(bond).tx_hashtbl;
169
Andy Gospodarekce39a802008-10-30 17:41:16 -0700170 /* skip this if we've already freed the tx hash table */
171 if (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);
176 index = next_index;
177 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178 }
179
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180 tlb_init_slave(slave);
Jay Vosburgh5af47b22006-01-09 12:14:00 -0800181
182 _unlock_tx_hashtbl(bond);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183}
184
185/* Must be called before starting the monitor timer */
186static int tlb_initialize(struct bonding *bond)
187{
188 struct alb_bond_info *bond_info = &(BOND_ALB_INFO(bond));
189 int size = TLB_HASH_TABLE_SIZE * sizeof(struct tlb_client_info);
Mitch Williams0d206a32005-11-09 10:35:30 -0800190 struct tlb_client_info *new_hashtbl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191 int i;
192
193 spin_lock_init(&(bond_info->tx_hashtbl_lock));
194
Joe Jin243cb4e2007-02-06 14:16:40 -0800195 new_hashtbl = kzalloc(size, GFP_KERNEL);
Mitch Williams0d206a32005-11-09 10:35:30 -0800196 if (!new_hashtbl) {
Jiri Pirkoe5e2a8f2009-08-13 04:11:52 +0000197 pr_err(DRV_NAME
Mitch Williams4e0952c2005-11-09 10:34:57 -0800198 ": %s: Error: Failed to allocate TLB hash table\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199 bond->dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200 return -1;
201 }
Mitch Williams0d206a32005-11-09 10:35:30 -0800202 _lock_tx_hashtbl(bond);
203
204 bond_info->tx_hashtbl = new_hashtbl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206 for (i = 0; i < TLB_HASH_TABLE_SIZE; i++) {
207 tlb_init_table_entry(&bond_info->tx_hashtbl[i], 1);
208 }
209
210 _unlock_tx_hashtbl(bond);
211
212 return 0;
213}
214
215/* Must be called only after all slaves have been released */
216static void tlb_deinitialize(struct bonding *bond)
217{
218 struct alb_bond_info *bond_info = &(BOND_ALB_INFO(bond));
219
220 _lock_tx_hashtbl(bond);
221
222 kfree(bond_info->tx_hashtbl);
223 bond_info->tx_hashtbl = NULL;
224
225 _unlock_tx_hashtbl(bond);
226}
227
228/* Caller must hold bond lock for read */
229static struct slave *tlb_get_least_loaded_slave(struct bonding *bond)
230{
231 struct slave *slave, *least_loaded;
232 s64 max_gap;
233 int i, found = 0;
234
235 /* Find the first enabled slave */
236 bond_for_each_slave(bond, slave, i) {
237 if (SLAVE_IS_OK(slave)) {
238 found = 1;
239 break;
240 }
241 }
242
243 if (!found) {
244 return NULL;
245 }
246
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 */
250
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);
256 if (max_gap < gap) {
257 least_loaded = slave;
258 max_gap = gap;
259 }
260 }
261 }
262
263 return least_loaded;
264}
265
266/* Caller must hold bond lock for read */
267static struct slave *tlb_choose_channel(struct bonding *bond, u32 hash_index, u32 skb_len)
268{
269 struct alb_bond_info *bond_info = &(BOND_ALB_INFO(bond));
270 struct tlb_client_info *hash_table;
271 struct slave *assigned_slave;
272
273 _lock_tx_hashtbl(bond);
274
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);
279
280 if (assigned_slave) {
281 struct tlb_slave_info *slave_info =
282 &(SLAVE_TLB_INFO(assigned_slave));
283 u32 next_index = slave_info->head;
284
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;
288
289 if (next_index != TLB_NULL_INDEX) {
290 hash_table[next_index].prev = hash_index;
291 }
292
293 slave_info->head = hash_index;
294 slave_info->load +=
295 hash_table[hash_index].load_history;
296 }
297 }
298
299 if (assigned_slave) {
300 hash_table[hash_index].tx_bytes += skb_len;
301 }
302
303 _unlock_tx_hashtbl(bond);
304
305 return assigned_slave;
306}
307
308/*********************** rlb specific functions ***************************/
309static inline void _lock_rx_hashtbl(struct bonding *bond)
310{
Jay Vosburgh6603a6f2007-10-17 17:37:50 -0700311 spin_lock_bh(&(BOND_ALB_INFO(bond).rx_hashtbl_lock));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312}
313
314static inline void _unlock_rx_hashtbl(struct bonding *bond)
315{
Jay Vosburgh6603a6f2007-10-17 17:37:50 -0700316 spin_unlock_bh(&(BOND_ALB_INFO(bond).rx_hashtbl_lock));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317}
318
319/* when an ARP REPLY is received from a client update its info
320 * in the rx_hashtbl
321 */
322static void rlb_update_entry_from_arp(struct bonding *bond, struct arp_pkt *arp)
323{
324 struct alb_bond_info *bond_info = &(BOND_ALB_INFO(bond));
325 struct rlb_client_info *client_info;
326 u32 hash_index;
327
328 _lock_rx_hashtbl(bond);
329
330 hash_index = _simple_hash((u8*)&(arp->ip_src), sizeof(arp->ip_src));
331 client_info = &(bond_info->rx_hashtbl[hash_index]);
332
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;
340 }
341
342 _unlock_rx_hashtbl(bond);
343}
344
David S. Millerf2ccd8f2005-08-09 19:34:12 -0700345static int rlb_arp_recv(struct sk_buff *skb, struct net_device *bond_dev, struct packet_type *ptype, struct net_device *orig_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346{
Jay Vosburgh6146b1a2008-11-04 17:51:15 -0800347 struct bonding *bond;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348 struct arp_pkt *arp = (struct arp_pkt *)skb->data;
349 int res = NET_RX_DROP;
350
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +0900351 if (dev_net(bond_dev) != &init_net)
Eric W. Biedermane730c152007-09-17 11:53:39 -0700352 goto out;
353
Jay Vosburgh6146b1a2008-11-04 17:51:15 -0800354 while (bond_dev->priv_flags & IFF_802_1Q_VLAN)
355 bond_dev = vlan_dev_real_dev(bond_dev);
356
357 if (!(bond_dev->priv_flags & IFF_BONDING) ||
358 !(bond_dev->flags & IFF_MASTER))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360
361 if (!arp) {
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -0800362 pr_debug("Packet has no ARP data\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363 goto out;
364 }
365
366 if (skb->len < sizeof(struct arp_pkt)) {
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -0800367 pr_debug("Packet is too small to be an ARP\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368 goto out;
369 }
370
371 if (arp->op_code == htons(ARPOP_REPLY)) {
372 /* update rx hash table for this ARP */
Wang Chen454d7c92008-11-12 23:37:49 -0800373 bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374 rlb_update_entry_from_arp(bond, arp);
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -0800375 pr_debug("Server received an ARP Reply from client\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376 }
377
378 res = NET_RX_SUCCESS;
379
380out:
381 dev_kfree_skb(skb);
382
383 return res;
384}
385
386/* Caller must hold bond lock for read */
387static struct slave *rlb_next_rx_slave(struct bonding *bond)
388{
389 struct alb_bond_info *bond_info = &(BOND_ALB_INFO(bond));
390 struct slave *rx_slave, *slave, *start_at;
391 int i = 0;
392
393 if (bond_info->next_rx_slave) {
394 start_at = bond_info->next_rx_slave;
395 } else {
396 start_at = bond->first_slave;
397 }
398
399 rx_slave = NULL;
400
401 bond_for_each_slave_from(bond, slave, i, start_at) {
402 if (SLAVE_IS_OK(slave)) {
403 if (!rx_slave) {
404 rx_slave = slave;
405 } else if (slave->speed > rx_slave->speed) {
406 rx_slave = slave;
407 }
408 }
409 }
410
411 if (rx_slave) {
412 bond_info->next_rx_slave = rx_slave->next;
413 }
414
415 return rx_slave;
416}
417
418/* teach the switch the mac of a disabled slave
419 * on the primary for fault tolerance
420 *
421 * Caller must hold bond->curr_slave_lock for write or bond lock for write
422 */
423static void rlb_teach_disabled_mac_on_primary(struct bonding *bond, u8 addr[])
424{
425 if (!bond->curr_active_slave) {
426 return;
427 }
428
429 if (!bond->alb_info.primary_is_promisc) {
Wang Chen7e1a1ac2008-07-14 20:51:36 -0700430 if (!dev_set_promiscuity(bond->curr_active_slave->dev, 1))
431 bond->alb_info.primary_is_promisc = 1;
432 else
433 bond->alb_info.primary_is_promisc = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434 }
435
436 bond->alb_info.rlb_promisc_timeout_counter = 0;
437
438 alb_send_learning_packets(bond->curr_active_slave, addr);
439}
440
441/* slave being removed should not be active at this point
442 *
443 * Caller must hold bond lock for read
444 */
445static void rlb_clear_slave(struct bonding *bond, struct slave *slave)
446{
447 struct alb_bond_info *bond_info = &(BOND_ALB_INFO(bond));
448 struct rlb_client_info *rx_hash_table;
449 u32 index, next_index;
450
451 /* clear slave from rx_hashtbl */
452 _lock_rx_hashtbl(bond);
453
454 rx_hash_table = bond_info->rx_hashtbl;
455 index = bond_info->rx_hashtbl_head;
456 for (; index != RLB_NULL_INDEX; index = next_index) {
457 next_index = rx_hash_table[index].next;
458 if (rx_hash_table[index].slave == slave) {
459 struct slave *assigned_slave = rlb_next_rx_slave(bond);
460
461 if (assigned_slave) {
462 rx_hash_table[index].slave = assigned_slave;
463 if (memcmp(rx_hash_table[index].mac_dst,
464 mac_bcast, ETH_ALEN)) {
465 bond_info->rx_hashtbl[index].ntt = 1;
466 bond_info->rx_ntt = 1;
467 /* A slave has been removed from the
468 * table because it is either disabled
469 * or being released. We must retry the
470 * update to avoid clients from not
471 * being updated & disconnecting when
472 * there is stress
473 */
474 bond_info->rlb_update_retry_counter =
475 RLB_UPDATE_RETRY;
476 }
477 } else { /* there is no active slave */
478 rx_hash_table[index].slave = NULL;
479 }
480 }
481 }
482
483 _unlock_rx_hashtbl(bond);
484
Jay Vosburgh6603a6f2007-10-17 17:37:50 -0700485 write_lock_bh(&bond->curr_slave_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486
487 if (slave != bond->curr_active_slave) {
488 rlb_teach_disabled_mac_on_primary(bond, slave->dev->dev_addr);
489 }
490
Jay Vosburgh6603a6f2007-10-17 17:37:50 -0700491 write_unlock_bh(&bond->curr_slave_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492}
493
494static void rlb_update_client(struct rlb_client_info *client_info)
495{
496 int i;
497
498 if (!client_info->slave) {
499 return;
500 }
501
502 for (i = 0; i < RLB_ARP_BURST_SIZE; i++) {
503 struct sk_buff *skb;
504
505 skb = arp_create(ARPOP_REPLY, ETH_P_ARP,
506 client_info->ip_dst,
507 client_info->slave->dev,
508 client_info->ip_src,
509 client_info->mac_dst,
510 client_info->slave->dev->dev_addr,
511 client_info->mac_dst);
512 if (!skb) {
Jiri Pirkoe5e2a8f2009-08-13 04:11:52 +0000513 pr_err(DRV_NAME
Mitch Williams4e0952c2005-11-09 10:34:57 -0800514 ": %s: Error: failed to create an ARP packet\n",
515 client_info->slave->dev->master->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516 continue;
517 }
518
519 skb->dev = client_info->slave->dev;
520
521 if (client_info->tag) {
522 skb = vlan_put_tag(skb, client_info->vlan_id);
523 if (!skb) {
Jiri Pirkoe5e2a8f2009-08-13 04:11:52 +0000524 pr_err(DRV_NAME
Mitch Williams4e0952c2005-11-09 10:34:57 -0800525 ": %s: Error: failed to insert VLAN tag\n",
526 client_info->slave->dev->master->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527 continue;
528 }
529 }
530
531 arp_xmit(skb);
532 }
533}
534
535/* sends ARP REPLIES that update the clients that need updating */
536static void rlb_update_rx_clients(struct bonding *bond)
537{
538 struct alb_bond_info *bond_info = &(BOND_ALB_INFO(bond));
539 struct rlb_client_info *client_info;
540 u32 hash_index;
541
542 _lock_rx_hashtbl(bond);
543
544 hash_index = bond_info->rx_hashtbl_head;
545 for (; hash_index != RLB_NULL_INDEX; hash_index = client_info->next) {
546 client_info = &(bond_info->rx_hashtbl[hash_index]);
547 if (client_info->ntt) {
548 rlb_update_client(client_info);
549 if (bond_info->rlb_update_retry_counter == 0) {
550 client_info->ntt = 0;
551 }
552 }
553 }
554
555 /* do not update the entries again untill this counter is zero so that
556 * not to confuse the clients.
557 */
558 bond_info->rlb_update_delay_counter = RLB_UPDATE_DELAY;
559
560 _unlock_rx_hashtbl(bond);
561}
562
563/* The slave was assigned a new mac address - update the clients */
564static void rlb_req_update_slave_clients(struct bonding *bond, struct slave *slave)
565{
566 struct alb_bond_info *bond_info = &(BOND_ALB_INFO(bond));
567 struct rlb_client_info *client_info;
568 int ntt = 0;
569 u32 hash_index;
570
571 _lock_rx_hashtbl(bond);
572
573 hash_index = bond_info->rx_hashtbl_head;
574 for (; hash_index != RLB_NULL_INDEX; hash_index = client_info->next) {
575 client_info = &(bond_info->rx_hashtbl[hash_index]);
576
577 if ((client_info->slave == slave) &&
578 memcmp(client_info->mac_dst, mac_bcast, ETH_ALEN)) {
579 client_info->ntt = 1;
580 ntt = 1;
581 }
582 }
583
584 // update the team's flag only after the whole iteration
585 if (ntt) {
586 bond_info->rx_ntt = 1;
587 //fasten the change
588 bond_info->rlb_update_retry_counter = RLB_UPDATE_RETRY;
589 }
590
591 _unlock_rx_hashtbl(bond);
592}
593
594/* mark all clients using src_ip to be updated */
Al Virod3bb52b2007-08-22 20:06:58 -0400595static void rlb_req_update_subnet_clients(struct bonding *bond, __be32 src_ip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596{
597 struct alb_bond_info *bond_info = &(BOND_ALB_INFO(bond));
598 struct rlb_client_info *client_info;
599 u32 hash_index;
600
601 _lock_rx_hashtbl(bond);
602
603 hash_index = bond_info->rx_hashtbl_head;
604 for (; hash_index != RLB_NULL_INDEX; hash_index = client_info->next) {
605 client_info = &(bond_info->rx_hashtbl[hash_index]);
606
607 if (!client_info->slave) {
Jiri Pirkoe5e2a8f2009-08-13 04:11:52 +0000608 pr_err(DRV_NAME
Mitch Williams4e0952c2005-11-09 10:34:57 -0800609 ": %s: Error: found a client with no channel in "
610 "the client's hash table\n",
611 bond->dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612 continue;
613 }
614 /*update all clients using this src_ip, that are not assigned
615 * to the team's address (curr_active_slave) and have a known
616 * unicast mac address.
617 */
618 if ((client_info->ip_src == src_ip) &&
619 memcmp(client_info->slave->dev->dev_addr,
620 bond->dev->dev_addr, ETH_ALEN) &&
621 memcmp(client_info->mac_dst, mac_bcast, ETH_ALEN)) {
622 client_info->ntt = 1;
623 bond_info->rx_ntt = 1;
624 }
625 }
626
627 _unlock_rx_hashtbl(bond);
628}
629
630/* Caller must hold both bond and ptr locks for read */
631static struct slave *rlb_choose_channel(struct sk_buff *skb, struct bonding *bond)
632{
633 struct alb_bond_info *bond_info = &(BOND_ALB_INFO(bond));
Arnaldo Carvalho de Meloa16aeb32007-03-10 16:07:19 -0300634 struct arp_pkt *arp = arp_pkt(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635 struct slave *assigned_slave;
636 struct rlb_client_info *client_info;
637 u32 hash_index = 0;
638
639 _lock_rx_hashtbl(bond);
640
641 hash_index = _simple_hash((u8 *)&arp->ip_dst, sizeof(arp->ip_src));
642 client_info = &(bond_info->rx_hashtbl[hash_index]);
643
644 if (client_info->assigned) {
645 if ((client_info->ip_src == arp->ip_src) &&
646 (client_info->ip_dst == arp->ip_dst)) {
647 /* the entry is already assigned to this client */
648 if (memcmp(arp->mac_dst, mac_bcast, ETH_ALEN)) {
649 /* update mac address from arp */
650 memcpy(client_info->mac_dst, arp->mac_dst, ETH_ALEN);
651 }
652
653 assigned_slave = client_info->slave;
654 if (assigned_slave) {
655 _unlock_rx_hashtbl(bond);
656 return assigned_slave;
657 }
658 } else {
659 /* the entry is already assigned to some other client,
660 * move the old client to primary (curr_active_slave) so
661 * that the new client can be assigned to this entry.
662 */
663 if (bond->curr_active_slave &&
664 client_info->slave != bond->curr_active_slave) {
665 client_info->slave = bond->curr_active_slave;
666 rlb_update_client(client_info);
667 }
668 }
669 }
670 /* assign a new slave */
671 assigned_slave = rlb_next_rx_slave(bond);
672
673 if (assigned_slave) {
674 client_info->ip_src = arp->ip_src;
675 client_info->ip_dst = arp->ip_dst;
676 /* arp->mac_dst is broadcast for arp reqeusts.
677 * will be updated with clients actual unicast mac address
678 * upon receiving an arp reply.
679 */
680 memcpy(client_info->mac_dst, arp->mac_dst, ETH_ALEN);
681 client_info->slave = assigned_slave;
682
683 if (memcmp(client_info->mac_dst, mac_bcast, ETH_ALEN)) {
684 client_info->ntt = 1;
685 bond->alb_info.rx_ntt = 1;
686 } else {
687 client_info->ntt = 0;
688 }
689
690 if (!list_empty(&bond->vlan_list)) {
Jay Vosburgh966bc6f2008-03-21 22:29:34 -0700691 if (!vlan_get_tag(skb, &client_info->vlan_id))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692 client_info->tag = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693 }
694
695 if (!client_info->assigned) {
696 u32 prev_tbl_head = bond_info->rx_hashtbl_head;
697 bond_info->rx_hashtbl_head = hash_index;
698 client_info->next = prev_tbl_head;
699 if (prev_tbl_head != RLB_NULL_INDEX) {
700 bond_info->rx_hashtbl[prev_tbl_head].prev =
701 hash_index;
702 }
703 client_info->assigned = 1;
704 }
705 }
706
707 _unlock_rx_hashtbl(bond);
708
709 return assigned_slave;
710}
711
712/* chooses (and returns) transmit channel for arp reply
713 * does not choose channel for other arp types since they are
714 * sent on the curr_active_slave
715 */
716static struct slave *rlb_arp_xmit(struct sk_buff *skb, struct bonding *bond)
717{
Arnaldo Carvalho de Meloa16aeb32007-03-10 16:07:19 -0300718 struct arp_pkt *arp = arp_pkt(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719 struct slave *tx_slave = NULL;
720
Brian Haleyf14c4e42008-09-02 10:08:08 -0400721 if (arp->op_code == htons(ARPOP_REPLY)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722 /* the arp must be sent on the selected
723 * rx channel
724 */
725 tx_slave = rlb_choose_channel(skb, bond);
726 if (tx_slave) {
727 memcpy(arp->mac_src,tx_slave->dev->dev_addr, ETH_ALEN);
728 }
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -0800729 pr_debug("Server sent ARP Reply packet\n");
Brian Haleyf14c4e42008-09-02 10:08:08 -0400730 } else if (arp->op_code == htons(ARPOP_REQUEST)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731 /* Create an entry in the rx_hashtbl for this client as a
732 * place holder.
733 * When the arp reply is received the entry will be updated
734 * with the correct unicast address of the client.
735 */
736 rlb_choose_channel(skb, bond);
737
738 /* The ARP relpy packets must be delayed so that
739 * they can cancel out the influence of the ARP request.
740 */
741 bond->alb_info.rlb_update_delay_counter = RLB_UPDATE_DELAY;
742
743 /* arp requests are broadcast and are sent on the primary
744 * the arp request will collapse all clients on the subnet to
745 * the primary slave. We must register these clients to be
746 * updated with their assigned mac.
747 */
748 rlb_req_update_subnet_clients(bond, arp->ip_src);
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -0800749 pr_debug("Server sent ARP Request packet\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750 }
751
752 return tx_slave;
753}
754
755/* Caller must hold bond lock for read */
756static void rlb_rebalance(struct bonding *bond)
757{
758 struct alb_bond_info *bond_info = &(BOND_ALB_INFO(bond));
759 struct slave *assigned_slave;
760 struct rlb_client_info *client_info;
761 int ntt;
762 u32 hash_index;
763
764 _lock_rx_hashtbl(bond);
765
766 ntt = 0;
767 hash_index = bond_info->rx_hashtbl_head;
768 for (; hash_index != RLB_NULL_INDEX; hash_index = client_info->next) {
769 client_info = &(bond_info->rx_hashtbl[hash_index]);
770 assigned_slave = rlb_next_rx_slave(bond);
771 if (assigned_slave && (client_info->slave != assigned_slave)) {
772 client_info->slave = assigned_slave;
773 client_info->ntt = 1;
774 ntt = 1;
775 }
776 }
777
778 /* update the team's flag only after the whole iteration */
779 if (ntt) {
780 bond_info->rx_ntt = 1;
781 }
782 _unlock_rx_hashtbl(bond);
783}
784
785/* Caller must hold rx_hashtbl lock */
786static void rlb_init_table_entry(struct rlb_client_info *entry)
787{
788 memset(entry, 0, sizeof(struct rlb_client_info));
789 entry->next = RLB_NULL_INDEX;
790 entry->prev = RLB_NULL_INDEX;
791}
792
793static int rlb_initialize(struct bonding *bond)
794{
795 struct alb_bond_info *bond_info = &(BOND_ALB_INFO(bond));
796 struct packet_type *pk_type = &(BOND_ALB_INFO(bond).rlb_pkt_type);
Mitch Williams0d206a32005-11-09 10:35:30 -0800797 struct rlb_client_info *new_hashtbl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798 int size = RLB_HASH_TABLE_SIZE * sizeof(struct rlb_client_info);
799 int i;
800
801 spin_lock_init(&(bond_info->rx_hashtbl_lock));
802
Mitch Williams0d206a32005-11-09 10:35:30 -0800803 new_hashtbl = kmalloc(size, GFP_KERNEL);
804 if (!new_hashtbl) {
Jiri Pirkoe5e2a8f2009-08-13 04:11:52 +0000805 pr_err(DRV_NAME
Mitch Williams4e0952c2005-11-09 10:34:57 -0800806 ": %s: Error: Failed to allocate RLB hash table\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807 bond->dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808 return -1;
809 }
Mitch Williams0d206a32005-11-09 10:35:30 -0800810 _lock_rx_hashtbl(bond);
811
812 bond_info->rx_hashtbl = new_hashtbl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813
814 bond_info->rx_hashtbl_head = RLB_NULL_INDEX;
815
816 for (i = 0; i < RLB_HASH_TABLE_SIZE; i++) {
817 rlb_init_table_entry(bond_info->rx_hashtbl + i);
818 }
819
820 _unlock_rx_hashtbl(bond);
821
822 /*initialize packet type*/
Harvey Harrison09640e62009-02-01 00:45:17 -0800823 pk_type->type = cpu_to_be16(ETH_P_ARP);
Jay Vosburgh6146b1a2008-11-04 17:51:15 -0800824 pk_type->dev = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825 pk_type->func = rlb_arp_recv;
826
827 /* register to receive ARPs */
828 dev_add_pack(pk_type);
829
830 return 0;
831}
832
833static void rlb_deinitialize(struct bonding *bond)
834{
835 struct alb_bond_info *bond_info = &(BOND_ALB_INFO(bond));
836
837 dev_remove_pack(&(bond_info->rlb_pkt_type));
838
839 _lock_rx_hashtbl(bond);
840
841 kfree(bond_info->rx_hashtbl);
842 bond_info->rx_hashtbl = NULL;
843 bond_info->rx_hashtbl_head = RLB_NULL_INDEX;
844
845 _unlock_rx_hashtbl(bond);
846}
847
848static void rlb_clear_vlan(struct bonding *bond, unsigned short vlan_id)
849{
850 struct alb_bond_info *bond_info = &(BOND_ALB_INFO(bond));
851 u32 curr_index;
852
853 _lock_rx_hashtbl(bond);
854
855 curr_index = bond_info->rx_hashtbl_head;
856 while (curr_index != RLB_NULL_INDEX) {
857 struct rlb_client_info *curr = &(bond_info->rx_hashtbl[curr_index]);
858 u32 next_index = bond_info->rx_hashtbl[curr_index].next;
859 u32 prev_index = bond_info->rx_hashtbl[curr_index].prev;
860
861 if (curr->tag && (curr->vlan_id == vlan_id)) {
862 if (curr_index == bond_info->rx_hashtbl_head) {
863 bond_info->rx_hashtbl_head = next_index;
864 }
865 if (prev_index != RLB_NULL_INDEX) {
866 bond_info->rx_hashtbl[prev_index].next = next_index;
867 }
868 if (next_index != RLB_NULL_INDEX) {
869 bond_info->rx_hashtbl[next_index].prev = prev_index;
870 }
871
872 rlb_init_table_entry(curr);
873 }
874
875 curr_index = next_index;
876 }
877
878 _unlock_rx_hashtbl(bond);
879}
880
881/*********************** tlb/rlb shared functions *********************/
882
883static void alb_send_learning_packets(struct slave *slave, u8 mac_addr[])
884{
885 struct bonding *bond = bond_get_bond_by_slave(slave);
886 struct learning_pkt pkt;
887 int size = sizeof(struct learning_pkt);
888 int i;
889
890 memset(&pkt, 0, size);
891 memcpy(pkt.mac_dst, mac_addr, ETH_ALEN);
892 memcpy(pkt.mac_src, mac_addr, ETH_ALEN);
Harvey Harrison09640e62009-02-01 00:45:17 -0800893 pkt.type = cpu_to_be16(ETH_P_LOOP);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894
895 for (i = 0; i < MAX_LP_BURST; i++) {
896 struct sk_buff *skb;
897 char *data;
898
899 skb = dev_alloc_skb(size);
900 if (!skb) {
901 return;
902 }
903
904 data = skb_put(skb, size);
905 memcpy(data, &pkt, size);
906
Arnaldo Carvalho de Melo459a98e2007-03-19 15:30:44 -0700907 skb_reset_mac_header(skb);
Arnaldo Carvalho de Melob0e380b2007-04-10 21:21:55 -0700908 skb->network_header = skb->mac_header + ETH_HLEN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909 skb->protocol = pkt.type;
910 skb->priority = TC_PRIO_CONTROL;
911 skb->dev = slave->dev;
912
913 if (!list_empty(&bond->vlan_list)) {
914 struct vlan_entry *vlan;
915
916 vlan = bond_next_vlan(bond,
917 bond->alb_info.current_alb_vlan);
918
919 bond->alb_info.current_alb_vlan = vlan;
920 if (!vlan) {
921 kfree_skb(skb);
922 continue;
923 }
924
925 skb = vlan_put_tag(skb, vlan->vlan_id);
926 if (!skb) {
Jiri Pirkoe5e2a8f2009-08-13 04:11:52 +0000927 pr_err(DRV_NAME
Mitch Williams4e0952c2005-11-09 10:34:57 -0800928 ": %s: Error: failed to insert VLAN tag\n",
929 bond->dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930 continue;
931 }
932 }
933
934 dev_queue_xmit(skb);
935 }
936}
937
938/* hw is a boolean parameter that determines whether we should try and
939 * set the hw address of the device as well as the hw address of the
940 * net_device
941 */
942static int alb_set_slave_mac_addr(struct slave *slave, u8 addr[], int hw)
943{
944 struct net_device *dev = slave->dev;
945 struct sockaddr s_addr;
946
947 if (!hw) {
948 memcpy(dev->dev_addr, addr, dev->addr_len);
949 return 0;
950 }
951
952 /* for rlb each slave must have a unique hw mac addresses so that */
953 /* each slave will receive packets destined to a different mac */
954 memcpy(s_addr.sa_data, addr, dev->addr_len);
955 s_addr.sa_family = dev->type;
956 if (dev_set_mac_address(dev, &s_addr)) {
Jiri Pirkoe5e2a8f2009-08-13 04:11:52 +0000957 pr_err(DRV_NAME
Mitch Williams4e0952c2005-11-09 10:34:57 -0800958 ": %s: Error: dev_set_mac_address of dev %s failed! ALB "
Linus Torvalds1da177e2005-04-16 15:20:36 -0700959 "mode requires that the base driver support setting "
960 "the hw address also when the network device's "
961 "interface is open\n",
Mitch Williams4e0952c2005-11-09 10:34:57 -0800962 dev->master->name, dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700963 return -EOPNOTSUPP;
964 }
965 return 0;
966}
967
Jay Vosburgh059fe7a2007-10-17 17:37:49 -0700968/*
969 * Swap MAC addresses between two slaves.
970 *
971 * Called with RTNL held, and no other locks.
972 *
973 */
974
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975static void alb_swap_mac_addr(struct bonding *bond, struct slave *slave1, struct slave *slave2)
976{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977 u8 tmp_mac_addr[ETH_ALEN];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700978
979 memcpy(tmp_mac_addr, slave1->dev->dev_addr, ETH_ALEN);
980 alb_set_slave_mac_addr(slave1, slave2->dev->dev_addr, bond->alb_info.rlb_enabled);
981 alb_set_slave_mac_addr(slave2, tmp_mac_addr, bond->alb_info.rlb_enabled);
982
Jay Vosburgh059fe7a2007-10-17 17:37:49 -0700983}
984
985/*
986 * Send learning packets after MAC address swap.
987 *
Jay Vosburgh25433312008-01-17 16:24:59 -0800988 * Called with RTNL and no other locks
Jay Vosburgh059fe7a2007-10-17 17:37:49 -0700989 */
990static void alb_fasten_mac_swap(struct bonding *bond, struct slave *slave1,
991 struct slave *slave2)
992{
993 int slaves_state_differ = (SLAVE_IS_OK(slave1) != SLAVE_IS_OK(slave2));
994 struct slave *disabled_slave = NULL;
995
Jay Vosburgh25433312008-01-17 16:24:59 -0800996 ASSERT_RTNL();
997
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998 /* fasten the change in the switch */
999 if (SLAVE_IS_OK(slave1)) {
1000 alb_send_learning_packets(slave1, slave1->dev->dev_addr);
1001 if (bond->alb_info.rlb_enabled) {
1002 /* inform the clients that the mac address
1003 * has changed
1004 */
1005 rlb_req_update_slave_clients(bond, slave1);
1006 }
1007 } else {
1008 disabled_slave = slave1;
1009 }
1010
1011 if (SLAVE_IS_OK(slave2)) {
1012 alb_send_learning_packets(slave2, slave2->dev->dev_addr);
1013 if (bond->alb_info.rlb_enabled) {
1014 /* inform the clients that the mac address
1015 * has changed
1016 */
1017 rlb_req_update_slave_clients(bond, slave2);
1018 }
1019 } else {
1020 disabled_slave = slave2;
1021 }
1022
1023 if (bond->alb_info.rlb_enabled && slaves_state_differ) {
1024 /* A disabled slave was assigned an active mac addr */
1025 rlb_teach_disabled_mac_on_primary(bond,
1026 disabled_slave->dev->dev_addr);
1027 }
1028}
1029
1030/**
1031 * alb_change_hw_addr_on_detach
1032 * @bond: bonding we're working on
1033 * @slave: the slave that was just detached
1034 *
1035 * We assume that @slave was already detached from the slave list.
1036 *
1037 * If @slave's permanent hw address is different both from its current
1038 * address and from @bond's address, then somewhere in the bond there's
1039 * a slave that has @slave's permanet address as its current address.
1040 * We'll make sure that that slave no longer uses @slave's permanent address.
1041 *
Jay Vosburgh25433312008-01-17 16:24:59 -08001042 * Caller must hold RTNL and no other locks
Linus Torvalds1da177e2005-04-16 15:20:36 -07001043 */
1044static void alb_change_hw_addr_on_detach(struct bonding *bond, struct slave *slave)
1045{
1046 int perm_curr_diff;
1047 int perm_bond_diff;
1048
1049 perm_curr_diff = memcmp(slave->perm_hwaddr,
1050 slave->dev->dev_addr,
1051 ETH_ALEN);
1052 perm_bond_diff = memcmp(slave->perm_hwaddr,
1053 bond->dev->dev_addr,
1054 ETH_ALEN);
1055
1056 if (perm_curr_diff && perm_bond_diff) {
1057 struct slave *tmp_slave;
1058 int i, found = 0;
1059
1060 bond_for_each_slave(bond, tmp_slave, i) {
1061 if (!memcmp(slave->perm_hwaddr,
1062 tmp_slave->dev->dev_addr,
1063 ETH_ALEN)) {
1064 found = 1;
1065 break;
1066 }
1067 }
1068
1069 if (found) {
Jay Vosburgh059fe7a2007-10-17 17:37:49 -07001070 /* locking: needs RTNL and nothing else */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001071 alb_swap_mac_addr(bond, slave, tmp_slave);
Jay Vosburgh059fe7a2007-10-17 17:37:49 -07001072 alb_fasten_mac_swap(bond, slave, tmp_slave);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001073 }
1074 }
1075}
1076
1077/**
1078 * alb_handle_addr_collision_on_attach
1079 * @bond: bonding we're working on
1080 * @slave: the slave that was just attached
1081 *
1082 * checks uniqueness of slave's mac address and handles the case the
1083 * new slave uses the bonds mac address.
1084 *
1085 * If the permanent hw address of @slave is @bond's hw address, we need to
1086 * find a different hw address to give @slave, that isn't in use by any other
1087 * slave in the bond. This address must be, of course, one of the premanent
1088 * addresses of the other slaves.
1089 *
1090 * We go over the slave list, and for each slave there we compare its
1091 * permanent hw address with the current address of all the other slaves.
1092 * If no match was found, then we've found a slave with a permanent address
1093 * that isn't used by any other slave in the bond, so we can assign it to
1094 * @slave.
1095 *
1096 * assumption: this function is called before @slave is attached to the
1097 * bond slave list.
1098 *
1099 * caller must hold the bond lock for write since the mac addresses are compared
1100 * and may be swapped.
1101 */
1102static int alb_handle_addr_collision_on_attach(struct bonding *bond, struct slave *slave)
1103{
1104 struct slave *tmp_slave1, *tmp_slave2, *free_mac_slave;
1105 struct slave *has_bond_addr = bond->curr_active_slave;
1106 int i, j, found = 0;
1107
1108 if (bond->slave_cnt == 0) {
1109 /* this is the first slave */
1110 return 0;
1111 }
1112
1113 /* if slave's mac address differs from bond's mac address
1114 * check uniqueness of slave's mac address against the other
1115 * slaves in the bond.
1116 */
1117 if (memcmp(slave->perm_hwaddr, bond->dev->dev_addr, ETH_ALEN)) {
1118 bond_for_each_slave(bond, tmp_slave1, i) {
1119 if (!memcmp(tmp_slave1->dev->dev_addr, slave->dev->dev_addr,
1120 ETH_ALEN)) {
1121 found = 1;
1122 break;
1123 }
1124 }
1125
John W. Linville6b38aef2005-07-28 15:00:15 -04001126 if (!found)
1127 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001128
John W. Linville6b38aef2005-07-28 15:00:15 -04001129 /* Try setting slave mac to bond address and fall-through
1130 to code handling that situation below... */
1131 alb_set_slave_mac_addr(slave, bond->dev->dev_addr,
1132 bond->alb_info.rlb_enabled);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001133 }
1134
1135 /* The slave's address is equal to the address of the bond.
1136 * Search for a spare address in the bond for this slave.
1137 */
1138 free_mac_slave = NULL;
1139
1140 bond_for_each_slave(bond, tmp_slave1, i) {
1141 found = 0;
1142 bond_for_each_slave(bond, tmp_slave2, j) {
1143 if (!memcmp(tmp_slave1->perm_hwaddr,
1144 tmp_slave2->dev->dev_addr,
1145 ETH_ALEN)) {
1146 found = 1;
1147 break;
1148 }
1149 }
1150
1151 if (!found) {
1152 /* no slave has tmp_slave1's perm addr
1153 * as its curr addr
1154 */
1155 free_mac_slave = tmp_slave1;
1156 break;
1157 }
1158
1159 if (!has_bond_addr) {
1160 if (!memcmp(tmp_slave1->dev->dev_addr,
1161 bond->dev->dev_addr,
1162 ETH_ALEN)) {
1163
1164 has_bond_addr = tmp_slave1;
1165 }
1166 }
1167 }
1168
1169 if (free_mac_slave) {
1170 alb_set_slave_mac_addr(slave, free_mac_slave->perm_hwaddr,
1171 bond->alb_info.rlb_enabled);
1172
Jiri Pirkoe5e2a8f2009-08-13 04:11:52 +00001173 pr_warning(DRV_NAME
1174 ": %s: Warning: the hw address of slave %s is "
1175 "in use by the bond; giving it the hw address "
1176 "of %s\n",
1177 bond->dev->name, slave->dev->name,
1178 free_mac_slave->dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001179
1180 } else if (has_bond_addr) {
Jiri Pirkoe5e2a8f2009-08-13 04:11:52 +00001181 pr_err(DRV_NAME
Mitch Williams4e0952c2005-11-09 10:34:57 -08001182 ": %s: Error: the hw address of slave %s is in use by the "
Linus Torvalds1da177e2005-04-16 15:20:36 -07001183 "bond; couldn't find a slave with a free hw address to "
1184 "give it (this should not have happened)\n",
Mitch Williams4e0952c2005-11-09 10:34:57 -08001185 bond->dev->name, slave->dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001186 return -EFAULT;
1187 }
1188
1189 return 0;
1190}
1191
1192/**
1193 * alb_set_mac_address
1194 * @bond:
1195 * @addr:
1196 *
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
1199 * addresses).
1200 *
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.
1203 *
1204 * Unwinding assumes bond's mac address has not yet changed.
1205 */
1206static int alb_set_mac_address(struct bonding *bond, void *addr)
1207{
1208 struct sockaddr sa;
1209 struct slave *slave, *stop_at;
1210 char tmp_addr[ETH_ALEN];
1211 int res;
1212 int i;
1213
1214 if (bond->alb_info.rlb_enabled) {
1215 return 0;
1216 }
1217
1218 bond_for_each_slave(bond, slave, i) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001219 /* save net_device's current hw address */
1220 memcpy(tmp_addr, slave->dev->dev_addr, ETH_ALEN);
1221
1222 res = dev_set_mac_address(slave->dev, addr);
1223
1224 /* restore net_device's hw address */
1225 memcpy(slave->dev->dev_addr, tmp_addr, ETH_ALEN);
1226
Stephen Hemmingereb7cc592008-11-19 21:56:05 -08001227 if (res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001228 goto unwind;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001229 }
1230
1231 return 0;
1232
1233unwind:
1234 memcpy(sa.sa_data, bond->dev->dev_addr, bond->dev->addr_len);
1235 sa.sa_family = bond->dev->type;
1236
1237 /* unwind from head to the slave that failed */
1238 stop_at = slave;
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);
1243 }
1244
1245 return res;
1246}
1247
1248/************************ exported alb funcions ************************/
1249
1250int bond_alb_initialize(struct bonding *bond, int rlb_enabled)
1251{
1252 int res;
1253
1254 res = tlb_initialize(bond);
1255 if (res) {
1256 return res;
1257 }
1258
1259 if (rlb_enabled) {
1260 bond->alb_info.rlb_enabled = 1;
1261 /* initialize rlb */
1262 res = rlb_initialize(bond);
1263 if (res) {
1264 tlb_deinitialize(bond);
1265 return res;
1266 }
Mitch Williamsb76850a2005-11-09 10:35:35 -08001267 } else {
1268 bond->alb_info.rlb_enabled = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001269 }
1270
1271 return 0;
1272}
1273
1274void bond_alb_deinitialize(struct bonding *bond)
1275{
1276 struct alb_bond_info *bond_info = &(BOND_ALB_INFO(bond));
1277
1278 tlb_deinitialize(bond);
1279
1280 if (bond_info->rlb_enabled) {
1281 rlb_deinitialize(bond);
1282 }
1283}
1284
1285int bond_alb_xmit(struct sk_buff *skb, struct net_device *bond_dev)
1286{
Wang Chen454d7c92008-11-12 23:37:49 -08001287 struct bonding *bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001288 struct ethhdr *eth_data;
1289 struct alb_bond_info *bond_info = &(BOND_ALB_INFO(bond));
1290 struct slave *tx_slave = NULL;
Al Virod3bb52b2007-08-22 20:06:58 -04001291 static const __be32 ip_bcast = htonl(0xffffffff);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001292 int hash_size = 0;
1293 int do_tx_balance = 1;
1294 u32 hash_index = 0;
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07001295 const u8 *hash_start = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001296 int res = 1;
Vlad Yasevich2d1ea192008-08-28 15:38:41 -04001297 struct ipv6hdr *ip6hdr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001298
Arnaldo Carvalho de Melo459a98e2007-03-19 15:30:44 -07001299 skb_reset_mac_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001300 eth_data = eth_hdr(skb);
1301
1302 /* make sure that the curr_active_slave and the slaves list do
1303 * not change during tx
1304 */
1305 read_lock(&bond->lock);
1306 read_lock(&bond->curr_slave_lock);
1307
1308 if (!BOND_IS_OK(bond)) {
1309 goto out;
1310 }
1311
1312 switch (ntohs(skb->protocol)) {
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07001313 case ETH_P_IP: {
1314 const struct iphdr *iph = ip_hdr(skb);
1315
Linus Torvalds1da177e2005-04-16 15:20:36 -07001316 if ((memcmp(eth_data->h_dest, mac_bcast, ETH_ALEN) == 0) ||
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07001317 (iph->daddr == ip_bcast) ||
1318 (iph->protocol == IPPROTO_IGMP)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001319 do_tx_balance = 0;
1320 break;
1321 }
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07001322 hash_start = (char *)&(iph->daddr);
1323 hash_size = sizeof(iph->daddr);
1324 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001325 break;
1326 case ETH_P_IPV6:
Vlad Yasevich2d1ea192008-08-28 15:38:41 -04001327 /* IPv6 doesn't really use broadcast mac address, but leave
1328 * that here just in case.
1329 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001330 if (memcmp(eth_data->h_dest, mac_bcast, ETH_ALEN) == 0) {
1331 do_tx_balance = 0;
1332 break;
1333 }
1334
Vlad Yasevich2d1ea192008-08-28 15:38:41 -04001335 /* IPv6 uses all-nodes multicast as an equivalent to
1336 * broadcasts in IPv4.
1337 */
1338 if (memcmp(eth_data->h_dest, mac_v6_allmcast, ETH_ALEN) == 0) {
1339 do_tx_balance = 0;
1340 break;
1341 }
1342
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.
1346 */
1347 ip6hdr = ipv6_hdr(skb);
1348 if (ipv6_addr_any(&ip6hdr->saddr)) {
1349 do_tx_balance = 0;
1350 break;
1351 }
1352
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -07001353 hash_start = (char *)&(ipv6_hdr(skb)->daddr);
1354 hash_size = sizeof(ipv6_hdr(skb)->daddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001355 break;
1356 case ETH_P_IPX:
Al Virod3bb52b2007-08-22 20:06:58 -04001357 if (ipx_hdr(skb)->ipx_checksum != IPX_NO_CHECKSUM) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001358 /* something is wrong with this packet */
1359 do_tx_balance = 0;
1360 break;
1361 }
1362
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
1366 * mechanism
1367 */
1368 do_tx_balance = 0;
1369 break;
1370 }
1371
1372 hash_start = (char*)eth_data->h_dest;
1373 hash_size = ETH_ALEN;
1374 break;
1375 case ETH_P_ARP:
1376 do_tx_balance = 0;
1377 if (bond_info->rlb_enabled) {
1378 tx_slave = rlb_arp_xmit(skb, bond);
1379 }
1380 break;
1381 default:
1382 do_tx_balance = 0;
1383 break;
1384 }
1385
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);
1389 }
1390
1391 if (!tx_slave) {
1392 /* unbalanced or unassigned, send through primary */
1393 tx_slave = bond->curr_active_slave;
1394 bond_info->unbalanced_load += skb->len;
1395 }
1396
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,
1401 ETH_ALEN);
1402 }
1403
1404 res = bond_dev_queue_xmit(bond, skb, tx_slave->dev);
1405 } else {
1406 if (tx_slave) {
1407 tlb_clear_slave(bond, tx_slave, 0);
1408 }
1409 }
1410
1411out:
1412 if (res) {
1413 /* no suitable interface, frame not sent */
1414 dev_kfree_skb(skb);
1415 }
1416 read_unlock(&bond->curr_slave_lock);
1417 read_unlock(&bond->lock);
Patrick McHardyec634fe2009-07-05 19:23:38 -07001418 return NETDEV_TX_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001419}
1420
Jay Vosburgh1b76b312007-10-17 17:37:45 -07001421void bond_alb_monitor(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001422{
Jay Vosburgh1b76b312007-10-17 17:37:45 -07001423 struct bonding *bond = container_of(work, struct bonding,
1424 alb_work.work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001425 struct alb_bond_info *bond_info = &(BOND_ALB_INFO(bond));
1426 struct slave *slave;
1427 int i;
1428
1429 read_lock(&bond->lock);
1430
1431 if (bond->kill_timers) {
1432 goto out;
1433 }
1434
1435 if (bond->slave_cnt == 0) {
1436 bond_info->tx_rebalance_counter = 0;
1437 bond_info->lp_counter = 0;
1438 goto re_arm;
1439 }
1440
1441 bond_info->tx_rebalance_counter++;
1442 bond_info->lp_counter++;
1443
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
1449 * read.
1450 */
1451 read_lock(&bond->curr_slave_lock);
1452
1453 bond_for_each_slave(bond, slave, i) {
Mitch Williamse944ef72005-11-09 10:36:50 -08001454 alb_send_learning_packets(slave, slave->dev->dev_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001455 }
1456
1457 read_unlock(&bond->curr_slave_lock);
1458
1459 bond_info->lp_counter = 0;
1460 }
1461
1462 /* rebalance tx traffic */
1463 if (bond_info->tx_rebalance_counter >= BOND_TLB_REBALANCE_TICKS) {
1464
1465 read_lock(&bond->curr_slave_lock);
1466
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;
1474 }
1475 }
1476
1477 read_unlock(&bond->curr_slave_lock);
1478
1479 bond_info->tx_rebalance_counter = 0;
1480 }
1481
1482 /* handle rlb stuff */
1483 if (bond_info->rlb_enabled) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001484 if (bond_info->primary_is_promisc &&
1485 (++bond_info->rlb_promisc_timeout_counter >= RLB_PROMISC_TIMEOUT)) {
1486
Jay Vosburghd0e81b72007-10-17 17:37:51 -07001487 /*
1488 * dev_set_promiscuity requires rtnl and
1489 * nothing else.
1490 */
1491 read_unlock(&bond->lock);
1492 rtnl_lock();
1493
Linus Torvalds1da177e2005-04-16 15:20:36 -07001494 bond_info->rlb_promisc_timeout_counter = 0;
1495
1496 /* If the primary was set to promiscuous mode
1497 * because a slave was disabled then
1498 * it can now leave promiscuous mode.
1499 */
1500 dev_set_promiscuity(bond->curr_active_slave->dev, -1);
1501 bond_info->primary_is_promisc = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001502
Jay Vosburghd0e81b72007-10-17 17:37:51 -07001503 rtnl_unlock();
1504 read_lock(&bond->lock);
1505 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001506
1507 if (bond_info->rlb_rebalance) {
1508 bond_info->rlb_rebalance = 0;
1509 rlb_rebalance(bond);
1510 }
1511
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;
1516 } else {
1517 rlb_update_rx_clients(bond);
1518 if (bond_info->rlb_update_retry_counter) {
1519 --bond_info->rlb_update_retry_counter;
1520 } else {
1521 bond_info->rx_ntt = 0;
1522 }
1523 }
1524 }
1525 }
1526
1527re_arm:
Jay Vosburgh1b76b312007-10-17 17:37:45 -07001528 queue_delayed_work(bond->wq, &bond->alb_work, alb_delta_in_ticks);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001529out:
1530 read_unlock(&bond->lock);
1531}
1532
1533/* assumption: called before the slave is attached to the bond
1534 * and not locked by the bond lock
1535 */
1536int bond_alb_init_slave(struct bonding *bond, struct slave *slave)
1537{
1538 int res;
1539
1540 res = alb_set_slave_mac_addr(slave, slave->perm_hwaddr,
1541 bond->alb_info.rlb_enabled);
1542 if (res) {
1543 return res;
1544 }
1545
1546 /* caller must hold the bond lock for write since the mac addresses
1547 * are compared and may be swapped.
1548 */
Jay Vosburgh6603a6f2007-10-17 17:37:50 -07001549 read_lock(&bond->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001550
1551 res = alb_handle_addr_collision_on_attach(bond, slave);
1552
Jay Vosburgh6603a6f2007-10-17 17:37:50 -07001553 read_unlock(&bond->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001554
1555 if (res) {
1556 return res;
1557 }
1558
1559 tlb_init_slave(slave);
1560
1561 /* order a rebalance ASAP */
1562 bond->alb_info.tx_rebalance_counter = BOND_TLB_REBALANCE_TICKS;
1563
1564 if (bond->alb_info.rlb_enabled) {
1565 bond->alb_info.rlb_rebalance = 1;
1566 }
1567
1568 return 0;
1569}
1570
Jay Vosburgh25433312008-01-17 16:24:59 -08001571/*
1572 * Remove slave from tlb and rlb hash tables, and fix up MAC addresses
1573 * if necessary.
1574 *
1575 * Caller must hold RTNL and no other locks
1576 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001577void bond_alb_deinit_slave(struct bonding *bond, struct slave *slave)
1578{
1579 if (bond->slave_cnt > 1) {
1580 alb_change_hw_addr_on_detach(bond, slave);
1581 }
1582
1583 tlb_clear_slave(bond, slave, 0);
1584
1585 if (bond->alb_info.rlb_enabled) {
1586 bond->alb_info.next_rx_slave = NULL;
1587 rlb_clear_slave(bond, slave);
1588 }
1589}
1590
1591/* Caller must hold bond lock for read */
1592void bond_alb_handle_link_change(struct bonding *bond, struct slave *slave, char link)
1593{
1594 struct alb_bond_info *bond_info = &(BOND_ALB_INFO(bond));
1595
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);
1600 }
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..
1610 */
1611 }
1612 }
1613}
1614
1615/**
1616 * bond_alb_handle_active_change - assign new curr_active_slave
1617 * @bond: our bonding struct
1618 * @new_slave: new slave to assign
1619 *
1620 * Set the bond->curr_active_slave to @new_slave and handle
1621 * mac address swapping and promiscuity changes as needed.
1622 *
Jay Vosburgh059fe7a2007-10-17 17:37:49 -07001623 * If new_slave is NULL, caller must hold curr_slave_lock or
1624 * bond->lock for write.
1625 *
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.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001629 */
1630void bond_alb_handle_active_change(struct bonding *bond, struct slave *new_slave)
Hannes Eder1f78d9f2009-02-14 11:15:33 +00001631 __releases(&bond->curr_slave_lock)
1632 __releases(&bond->lock)
1633 __acquires(&bond->lock)
1634 __acquires(&bond->curr_slave_lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001635{
1636 struct slave *swap_slave;
1637 int i;
1638
1639 if (bond->curr_active_slave == new_slave) {
1640 return;
1641 }
1642
1643 if (bond->curr_active_slave && bond->alb_info.primary_is_promisc) {
1644 dev_set_promiscuity(bond->curr_active_slave->dev, -1);
1645 bond->alb_info.primary_is_promisc = 0;
1646 bond->alb_info.rlb_promisc_timeout_counter = 0;
1647 }
1648
1649 swap_slave = bond->curr_active_slave;
1650 bond->curr_active_slave = new_slave;
1651
1652 if (!new_slave || (bond->slave_cnt == 0)) {
1653 return;
1654 }
1655
1656 /* set the new curr_active_slave to the bonds mac address
1657 * i.e. swap mac addresses of old curr_active_slave and new curr_active_slave
1658 */
1659 if (!swap_slave) {
1660 struct slave *tmp_slave;
1661 /* find slave that is holding the bond's mac address */
1662 bond_for_each_slave(bond, tmp_slave, i) {
1663 if (!memcmp(tmp_slave->dev->dev_addr,
1664 bond->dev->dev_addr, ETH_ALEN)) {
1665 swap_slave = tmp_slave;
1666 break;
1667 }
1668 }
1669 }
1670
Jay Vosburgh059fe7a2007-10-17 17:37:49 -07001671 /*
1672 * Arrange for swap_slave and new_slave to temporarily be
1673 * ignored so we can mess with their MAC addresses without
1674 * fear of interference from transmit activity.
1675 */
1676 if (swap_slave) {
1677 tlb_clear_slave(bond, swap_slave, 1);
1678 }
1679 tlb_clear_slave(bond, new_slave, 1);
1680
1681 write_unlock_bh(&bond->curr_slave_lock);
1682 read_unlock(&bond->lock);
1683
Jay Vosburghe0138a62008-01-17 16:24:58 -08001684 ASSERT_RTNL();
1685
Linus Torvalds1da177e2005-04-16 15:20:36 -07001686 /* curr_active_slave must be set before calling alb_swap_mac_addr */
1687 if (swap_slave) {
1688 /* swap mac address */
1689 alb_swap_mac_addr(bond, swap_slave, new_slave);
1690 } else {
1691 /* set the new_slave to the bond mac address */
1692 alb_set_slave_mac_addr(new_slave, bond->dev->dev_addr,
1693 bond->alb_info.rlb_enabled);
Jay Vosburgh059fe7a2007-10-17 17:37:49 -07001694 }
1695
Jay Vosburgh059fe7a2007-10-17 17:37:49 -07001696 if (swap_slave) {
1697 alb_fasten_mac_swap(bond, swap_slave, new_slave);
Jay Vosburgh25433312008-01-17 16:24:59 -08001698 read_lock(&bond->lock);
Jay Vosburgh059fe7a2007-10-17 17:37:49 -07001699 } else {
Jay Vosburgh25433312008-01-17 16:24:59 -08001700 read_lock(&bond->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001701 alb_send_learning_packets(new_slave, bond->dev->dev_addr);
1702 }
Jay Vosburgh059fe7a2007-10-17 17:37:49 -07001703
1704 write_lock_bh(&bond->curr_slave_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001705}
1706
Jay Vosburgh059fe7a2007-10-17 17:37:49 -07001707/*
1708 * Called with RTNL
1709 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001710int bond_alb_set_mac_address(struct net_device *bond_dev, void *addr)
Hannes Eder1f78d9f2009-02-14 11:15:33 +00001711 __acquires(&bond->lock)
Jay Vosburgh815bcc22009-05-04 09:03:37 +00001712 __releases(&bond->lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001713{
Wang Chen454d7c92008-11-12 23:37:49 -08001714 struct bonding *bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001715 struct sockaddr *sa = addr;
1716 struct slave *slave, *swap_slave;
1717 int res;
1718 int i;
1719
1720 if (!is_valid_ether_addr(sa->sa_data)) {
1721 return -EADDRNOTAVAIL;
1722 }
1723
1724 res = alb_set_mac_address(bond, addr);
1725 if (res) {
1726 return res;
1727 }
1728
1729 memcpy(bond_dev->dev_addr, sa->sa_data, bond_dev->addr_len);
1730
1731 /* If there is no curr_active_slave there is nothing else to do.
1732 * Otherwise we'll need to pass the new address to it and handle
1733 * duplications.
1734 */
1735 if (!bond->curr_active_slave) {
1736 return 0;
1737 }
1738
1739 swap_slave = NULL;
1740
1741 bond_for_each_slave(bond, slave, i) {
1742 if (!memcmp(slave->dev->dev_addr, bond_dev->dev_addr, ETH_ALEN)) {
1743 swap_slave = slave;
1744 break;
1745 }
1746 }
1747
1748 if (swap_slave) {
1749 alb_swap_mac_addr(bond, swap_slave, bond->curr_active_slave);
Jay Vosburgh059fe7a2007-10-17 17:37:49 -07001750 alb_fasten_mac_swap(bond, swap_slave, bond->curr_active_slave);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001751 } else {
1752 alb_set_slave_mac_addr(bond->curr_active_slave, bond_dev->dev_addr,
1753 bond->alb_info.rlb_enabled);
1754
Jay Vosburgh815bcc22009-05-04 09:03:37 +00001755 read_lock(&bond->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001756 alb_send_learning_packets(bond->curr_active_slave, bond_dev->dev_addr);
1757 if (bond->alb_info.rlb_enabled) {
1758 /* inform clients mac address has changed */
1759 rlb_req_update_slave_clients(bond, bond->curr_active_slave);
1760 }
Jay Vosburgh815bcc22009-05-04 09:03:37 +00001761 read_unlock(&bond->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001762 }
1763
Linus Torvalds1da177e2005-04-16 15:20:36 -07001764 return 0;
1765}
1766
1767void bond_alb_clear_vlan(struct bonding *bond, unsigned short vlan_id)
1768{
1769 if (bond->alb_info.current_alb_vlan &&
1770 (bond->alb_info.current_alb_vlan->vlan_id == vlan_id)) {
1771 bond->alb_info.current_alb_vlan = NULL;
1772 }
1773
1774 if (bond->alb_info.rlb_enabled) {
1775 rlb_clear_vlan(bond, vlan_id);
1776 }
1777}
1778