blob: f4e638c651298aba65bae970216d4c0e7a7dfd00 [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
Joe Perchesa4aee5c2009-12-13 20:06:07 -080023#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
24
Linus Torvalds1da177e2005-04-16 15:20:36 -070025#include <linux/skbuff.h>
26#include <linux/netdevice.h>
27#include <linux/etherdevice.h>
28#include <linux/pkt_sched.h>
29#include <linux/spinlock.h>
30#include <linux/slab.h>
31#include <linux/timer.h>
32#include <linux/ip.h>
33#include <linux/ipv6.h>
34#include <linux/if_arp.h>
35#include <linux/if_ether.h>
36#include <linux/if_bonding.h>
37#include <linux/if_vlan.h>
38#include <linux/in.h>
39#include <net/ipx.h>
40#include <net/arp.h>
Vlad Yasevich2d1ea192008-08-28 15:38:41 -040041#include <net/ipv6.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070042#include <asm/byteorder.h>
43#include "bonding.h"
44#include "bond_alb.h"
45
46
Linus Torvalds1da177e2005-04-16 15:20:36 -070047
Eric Dumazet885a1362009-09-01 06:31:18 +000048#ifndef __long_aligned
49#define __long_aligned __attribute__((aligned((sizeof(long)))))
50#endif
51static const u8 mac_bcast[ETH_ALEN] __long_aligned = {
52 0xff, 0xff, 0xff, 0xff, 0xff, 0xff
53};
54static const u8 mac_v6_allmcast[ETH_ALEN] __long_aligned = {
55 0x33, 0x33, 0x00, 0x00, 0x00, 0x01
56};
Linus Torvalds1da177e2005-04-16 15:20:36 -070057static const int alb_delta_in_ticks = HZ / ALB_TIMER_TICKS_PER_SEC;
58
59#pragma pack(1)
60struct learning_pkt {
61 u8 mac_dst[ETH_ALEN];
62 u8 mac_src[ETH_ALEN];
Al Virod3bb52b2007-08-22 20:06:58 -040063 __be16 type;
Linus Torvalds1da177e2005-04-16 15:20:36 -070064 u8 padding[ETH_ZLEN - ETH_HLEN];
65};
66
67struct arp_pkt {
Al Virod3bb52b2007-08-22 20:06:58 -040068 __be16 hw_addr_space;
69 __be16 prot_addr_space;
Linus Torvalds1da177e2005-04-16 15:20:36 -070070 u8 hw_addr_len;
71 u8 prot_addr_len;
Al Virod3bb52b2007-08-22 20:06:58 -040072 __be16 op_code;
Linus Torvalds1da177e2005-04-16 15:20:36 -070073 u8 mac_src[ETH_ALEN]; /* sender hardware address */
Al Virod3bb52b2007-08-22 20:06:58 -040074 __be32 ip_src; /* sender IP address */
Linus Torvalds1da177e2005-04-16 15:20:36 -070075 u8 mac_dst[ETH_ALEN]; /* target hardware address */
Al Virod3bb52b2007-08-22 20:06:58 -040076 __be32 ip_dst; /* target IP address */
Linus Torvalds1da177e2005-04-16 15:20:36 -070077};
78#pragma pack()
79
Arnaldo Carvalho de Meloa16aeb32007-03-10 16:07:19 -030080static inline struct arp_pkt *arp_pkt(const struct sk_buff *skb)
81{
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -070082 return (struct arp_pkt *)skb_network_header(skb);
Arnaldo Carvalho de Meloa16aeb32007-03-10 16:07:19 -030083}
84
Linus Torvalds1da177e2005-04-16 15:20:36 -070085/* Forward declaration */
86static void alb_send_learning_packets(struct slave *slave, u8 mac_addr[]);
87
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -070088static inline u8 _simple_hash(const u8 *hash_start, int hash_size)
Linus Torvalds1da177e2005-04-16 15:20:36 -070089{
90 int i;
91 u8 hash = 0;
92
93 for (i = 0; i < hash_size; i++) {
94 hash ^= hash_start[i];
95 }
96
97 return hash;
98}
99
100/*********************** tlb specific functions ***************************/
101
102static inline void _lock_tx_hashtbl(struct bonding *bond)
103{
Jay Vosburgh6603a6f2007-10-17 17:37:50 -0700104 spin_lock_bh(&(BOND_ALB_INFO(bond).tx_hashtbl_lock));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105}
106
107static inline void _unlock_tx_hashtbl(struct bonding *bond)
108{
Jay Vosburgh6603a6f2007-10-17 17:37:50 -0700109 spin_unlock_bh(&(BOND_ALB_INFO(bond).tx_hashtbl_lock));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110}
111
112/* Caller must hold tx_hashtbl lock */
113static inline void tlb_init_table_entry(struct tlb_client_info *entry, int save_load)
114{
115 if (save_load) {
116 entry->load_history = 1 + entry->tx_bytes /
117 BOND_TLB_REBALANCE_INTERVAL;
118 entry->tx_bytes = 0;
119 }
120
121 entry->tx_slave = NULL;
122 entry->next = TLB_NULL_INDEX;
123 entry->prev = TLB_NULL_INDEX;
124}
125
126static inline void tlb_init_slave(struct slave *slave)
127{
128 SLAVE_TLB_INFO(slave).load = 0;
129 SLAVE_TLB_INFO(slave).head = TLB_NULL_INDEX;
130}
131
132/* Caller must hold bond lock for read */
133static void tlb_clear_slave(struct bonding *bond, struct slave *slave, int save_load)
134{
135 struct tlb_client_info *tx_hash_table;
136 u32 index;
137
138 _lock_tx_hashtbl(bond);
139
140 /* clear slave from tx_hashtbl */
141 tx_hash_table = BOND_ALB_INFO(bond).tx_hashtbl;
142
Andy Gospodarekce39a802008-10-30 17:41:16 -0700143 /* skip this if we've already freed the tx hash table */
144 if (tx_hash_table) {
145 index = SLAVE_TLB_INFO(slave).head;
146 while (index != TLB_NULL_INDEX) {
147 u32 next_index = tx_hash_table[index].next;
148 tlb_init_table_entry(&tx_hash_table[index], save_load);
149 index = next_index;
150 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151 }
152
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153 tlb_init_slave(slave);
Jay Vosburgh5af47b22006-01-09 12:14:00 -0800154
155 _unlock_tx_hashtbl(bond);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156}
157
158/* Must be called before starting the monitor timer */
159static int tlb_initialize(struct bonding *bond)
160{
161 struct alb_bond_info *bond_info = &(BOND_ALB_INFO(bond));
162 int size = TLB_HASH_TABLE_SIZE * sizeof(struct tlb_client_info);
Mitch Williams0d206a32005-11-09 10:35:30 -0800163 struct tlb_client_info *new_hashtbl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164 int i;
165
166 spin_lock_init(&(bond_info->tx_hashtbl_lock));
167
Joe Jin243cb4e2007-02-06 14:16:40 -0800168 new_hashtbl = kzalloc(size, GFP_KERNEL);
Mitch Williams0d206a32005-11-09 10:35:30 -0800169 if (!new_hashtbl) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800170 pr_err("%s: Error: Failed to allocate TLB hash table\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171 bond->dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172 return -1;
173 }
Mitch Williams0d206a32005-11-09 10:35:30 -0800174 _lock_tx_hashtbl(bond);
175
176 bond_info->tx_hashtbl = new_hashtbl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178 for (i = 0; i < TLB_HASH_TABLE_SIZE; i++) {
179 tlb_init_table_entry(&bond_info->tx_hashtbl[i], 1);
180 }
181
182 _unlock_tx_hashtbl(bond);
183
184 return 0;
185}
186
187/* Must be called only after all slaves have been released */
188static void tlb_deinitialize(struct bonding *bond)
189{
190 struct alb_bond_info *bond_info = &(BOND_ALB_INFO(bond));
191
192 _lock_tx_hashtbl(bond);
193
194 kfree(bond_info->tx_hashtbl);
195 bond_info->tx_hashtbl = NULL;
196
197 _unlock_tx_hashtbl(bond);
198}
199
Jiri Pirko097811b2010-05-19 03:26:39 +0000200static long long compute_gap(struct slave *slave)
201{
202 return (s64) (slave->speed << 20) - /* Convert to Megabit per sec */
203 (s64) (SLAVE_TLB_INFO(slave).load << 3); /* Bytes to bits */
204}
205
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206/* Caller must hold bond lock for read */
207static struct slave *tlb_get_least_loaded_slave(struct bonding *bond)
208{
209 struct slave *slave, *least_loaded;
Jiri Pirko097811b2010-05-19 03:26:39 +0000210 long long max_gap;
211 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212
Jiri Pirko097811b2010-05-19 03:26:39 +0000213 least_loaded = NULL;
214 max_gap = LLONG_MIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215
216 /* Find the slave with the largest gap */
Jiri Pirko097811b2010-05-19 03:26:39 +0000217 bond_for_each_slave(bond, slave, i) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218 if (SLAVE_IS_OK(slave)) {
Jiri Pirko097811b2010-05-19 03:26:39 +0000219 long long gap = compute_gap(slave);
220
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221 if (max_gap < gap) {
222 least_loaded = slave;
223 max_gap = gap;
224 }
225 }
226 }
227
228 return least_loaded;
229}
230
231/* Caller must hold bond lock for read */
232static struct slave *tlb_choose_channel(struct bonding *bond, u32 hash_index, u32 skb_len)
233{
234 struct alb_bond_info *bond_info = &(BOND_ALB_INFO(bond));
235 struct tlb_client_info *hash_table;
236 struct slave *assigned_slave;
237
238 _lock_tx_hashtbl(bond);
239
240 hash_table = bond_info->tx_hashtbl;
241 assigned_slave = hash_table[hash_index].tx_slave;
242 if (!assigned_slave) {
243 assigned_slave = tlb_get_least_loaded_slave(bond);
244
245 if (assigned_slave) {
246 struct tlb_slave_info *slave_info =
247 &(SLAVE_TLB_INFO(assigned_slave));
248 u32 next_index = slave_info->head;
249
250 hash_table[hash_index].tx_slave = assigned_slave;
251 hash_table[hash_index].next = next_index;
252 hash_table[hash_index].prev = TLB_NULL_INDEX;
253
254 if (next_index != TLB_NULL_INDEX) {
255 hash_table[next_index].prev = hash_index;
256 }
257
258 slave_info->head = hash_index;
259 slave_info->load +=
260 hash_table[hash_index].load_history;
261 }
262 }
263
264 if (assigned_slave) {
265 hash_table[hash_index].tx_bytes += skb_len;
266 }
267
268 _unlock_tx_hashtbl(bond);
269
270 return assigned_slave;
271}
272
273/*********************** rlb specific functions ***************************/
274static inline void _lock_rx_hashtbl(struct bonding *bond)
275{
Jay Vosburgh6603a6f2007-10-17 17:37:50 -0700276 spin_lock_bh(&(BOND_ALB_INFO(bond).rx_hashtbl_lock));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277}
278
279static inline void _unlock_rx_hashtbl(struct bonding *bond)
280{
Jay Vosburgh6603a6f2007-10-17 17:37:50 -0700281 spin_unlock_bh(&(BOND_ALB_INFO(bond).rx_hashtbl_lock));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282}
283
284/* when an ARP REPLY is received from a client update its info
285 * in the rx_hashtbl
286 */
287static void rlb_update_entry_from_arp(struct bonding *bond, struct arp_pkt *arp)
288{
289 struct alb_bond_info *bond_info = &(BOND_ALB_INFO(bond));
290 struct rlb_client_info *client_info;
291 u32 hash_index;
292
293 _lock_rx_hashtbl(bond);
294
295 hash_index = _simple_hash((u8*)&(arp->ip_src), sizeof(arp->ip_src));
296 client_info = &(bond_info->rx_hashtbl[hash_index]);
297
298 if ((client_info->assigned) &&
299 (client_info->ip_src == arp->ip_dst) &&
Flavio Leitner42d782a2010-06-29 08:24:39 +0000300 (client_info->ip_dst == arp->ip_src) &&
301 (compare_ether_addr_64bits(client_info->mac_dst, arp->mac_src))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302 /* update the clients MAC address */
303 memcpy(client_info->mac_dst, arp->mac_src, ETH_ALEN);
304 client_info->ntt = 1;
305 bond_info->rx_ntt = 1;
306 }
307
308 _unlock_rx_hashtbl(bond);
309}
310
David S. Millerf2ccd8f2005-08-09 19:34:12 -0700311static 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 -0700312{
Jay Vosburgh6146b1a2008-11-04 17:51:15 -0800313 struct bonding *bond;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314 struct arp_pkt *arp = (struct arp_pkt *)skb->data;
315 int res = NET_RX_DROP;
316
Jay Vosburgh6146b1a2008-11-04 17:51:15 -0800317 while (bond_dev->priv_flags & IFF_802_1Q_VLAN)
318 bond_dev = vlan_dev_real_dev(bond_dev);
319
320 if (!(bond_dev->priv_flags & IFF_BONDING) ||
321 !(bond_dev->flags & IFF_MASTER))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323
324 if (!arp) {
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -0800325 pr_debug("Packet has no ARP data\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326 goto out;
327 }
328
Andy Gospodarekab128112010-09-10 11:43:20 +0000329 if (!pskb_may_pull(skb, arp_hdr_len(bond_dev)))
330 goto out;
331
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332 if (skb->len < sizeof(struct arp_pkt)) {
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -0800333 pr_debug("Packet is too small to be an ARP\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334 goto out;
335 }
336
337 if (arp->op_code == htons(ARPOP_REPLY)) {
338 /* update rx hash table for this ARP */
Wang Chen454d7c92008-11-12 23:37:49 -0800339 bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340 rlb_update_entry_from_arp(bond, arp);
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -0800341 pr_debug("Server received an ARP Reply from client\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342 }
343
344 res = NET_RX_SUCCESS;
345
346out:
347 dev_kfree_skb(skb);
348
349 return res;
350}
351
352/* Caller must hold bond lock for read */
353static struct slave *rlb_next_rx_slave(struct bonding *bond)
354{
355 struct alb_bond_info *bond_info = &(BOND_ALB_INFO(bond));
356 struct slave *rx_slave, *slave, *start_at;
357 int i = 0;
358
359 if (bond_info->next_rx_slave) {
360 start_at = bond_info->next_rx_slave;
361 } else {
362 start_at = bond->first_slave;
363 }
364
365 rx_slave = NULL;
366
367 bond_for_each_slave_from(bond, slave, i, start_at) {
368 if (SLAVE_IS_OK(slave)) {
369 if (!rx_slave) {
370 rx_slave = slave;
371 } else if (slave->speed > rx_slave->speed) {
372 rx_slave = slave;
373 }
374 }
375 }
376
377 if (rx_slave) {
378 bond_info->next_rx_slave = rx_slave->next;
379 }
380
381 return rx_slave;
382}
383
384/* teach the switch the mac of a disabled slave
385 * on the primary for fault tolerance
386 *
387 * Caller must hold bond->curr_slave_lock for write or bond lock for write
388 */
389static void rlb_teach_disabled_mac_on_primary(struct bonding *bond, u8 addr[])
390{
391 if (!bond->curr_active_slave) {
392 return;
393 }
394
395 if (!bond->alb_info.primary_is_promisc) {
Wang Chen7e1a1ac2008-07-14 20:51:36 -0700396 if (!dev_set_promiscuity(bond->curr_active_slave->dev, 1))
397 bond->alb_info.primary_is_promisc = 1;
398 else
399 bond->alb_info.primary_is_promisc = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400 }
401
402 bond->alb_info.rlb_promisc_timeout_counter = 0;
403
404 alb_send_learning_packets(bond->curr_active_slave, addr);
405}
406
407/* slave being removed should not be active at this point
408 *
409 * Caller must hold bond lock for read
410 */
411static void rlb_clear_slave(struct bonding *bond, struct slave *slave)
412{
413 struct alb_bond_info *bond_info = &(BOND_ALB_INFO(bond));
414 struct rlb_client_info *rx_hash_table;
415 u32 index, next_index;
416
417 /* clear slave from rx_hashtbl */
418 _lock_rx_hashtbl(bond);
419
420 rx_hash_table = bond_info->rx_hashtbl;
421 index = bond_info->rx_hashtbl_head;
422 for (; index != RLB_NULL_INDEX; index = next_index) {
423 next_index = rx_hash_table[index].next;
424 if (rx_hash_table[index].slave == slave) {
425 struct slave *assigned_slave = rlb_next_rx_slave(bond);
426
427 if (assigned_slave) {
428 rx_hash_table[index].slave = assigned_slave;
Eric Dumazet885a1362009-09-01 06:31:18 +0000429 if (compare_ether_addr_64bits(rx_hash_table[index].mac_dst,
430 mac_bcast)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431 bond_info->rx_hashtbl[index].ntt = 1;
432 bond_info->rx_ntt = 1;
433 /* A slave has been removed from the
434 * table because it is either disabled
435 * or being released. We must retry the
436 * update to avoid clients from not
437 * being updated & disconnecting when
438 * there is stress
439 */
440 bond_info->rlb_update_retry_counter =
441 RLB_UPDATE_RETRY;
442 }
443 } else { /* there is no active slave */
444 rx_hash_table[index].slave = NULL;
445 }
446 }
447 }
448
449 _unlock_rx_hashtbl(bond);
450
Jay Vosburgh6603a6f2007-10-17 17:37:50 -0700451 write_lock_bh(&bond->curr_slave_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452
453 if (slave != bond->curr_active_slave) {
454 rlb_teach_disabled_mac_on_primary(bond, slave->dev->dev_addr);
455 }
456
Jay Vosburgh6603a6f2007-10-17 17:37:50 -0700457 write_unlock_bh(&bond->curr_slave_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458}
459
460static void rlb_update_client(struct rlb_client_info *client_info)
461{
462 int i;
463
464 if (!client_info->slave) {
465 return;
466 }
467
468 for (i = 0; i < RLB_ARP_BURST_SIZE; i++) {
469 struct sk_buff *skb;
470
471 skb = arp_create(ARPOP_REPLY, ETH_P_ARP,
472 client_info->ip_dst,
473 client_info->slave->dev,
474 client_info->ip_src,
475 client_info->mac_dst,
476 client_info->slave->dev->dev_addr,
477 client_info->mac_dst);
478 if (!skb) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800479 pr_err("%s: Error: failed to create an ARP packet\n",
Mitch Williams4e0952c2005-11-09 10:34:57 -0800480 client_info->slave->dev->master->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481 continue;
482 }
483
484 skb->dev = client_info->slave->dev;
485
486 if (client_info->tag) {
487 skb = vlan_put_tag(skb, client_info->vlan_id);
488 if (!skb) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800489 pr_err("%s: Error: failed to insert VLAN tag\n",
Mitch Williams4e0952c2005-11-09 10:34:57 -0800490 client_info->slave->dev->master->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491 continue;
492 }
493 }
494
495 arp_xmit(skb);
496 }
497}
498
499/* sends ARP REPLIES that update the clients that need updating */
500static void rlb_update_rx_clients(struct bonding *bond)
501{
502 struct alb_bond_info *bond_info = &(BOND_ALB_INFO(bond));
503 struct rlb_client_info *client_info;
504 u32 hash_index;
505
506 _lock_rx_hashtbl(bond);
507
508 hash_index = bond_info->rx_hashtbl_head;
509 for (; hash_index != RLB_NULL_INDEX; hash_index = client_info->next) {
510 client_info = &(bond_info->rx_hashtbl[hash_index]);
511 if (client_info->ntt) {
512 rlb_update_client(client_info);
513 if (bond_info->rlb_update_retry_counter == 0) {
514 client_info->ntt = 0;
515 }
516 }
517 }
518
Thadeu Lima de Souza Cascardo94e2bd62009-10-16 15:20:49 +0200519 /* do not update the entries again until this counter is zero so that
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520 * not to confuse the clients.
521 */
522 bond_info->rlb_update_delay_counter = RLB_UPDATE_DELAY;
523
524 _unlock_rx_hashtbl(bond);
525}
526
527/* The slave was assigned a new mac address - update the clients */
528static void rlb_req_update_slave_clients(struct bonding *bond, struct slave *slave)
529{
530 struct alb_bond_info *bond_info = &(BOND_ALB_INFO(bond));
531 struct rlb_client_info *client_info;
532 int ntt = 0;
533 u32 hash_index;
534
535 _lock_rx_hashtbl(bond);
536
537 hash_index = bond_info->rx_hashtbl_head;
538 for (; hash_index != RLB_NULL_INDEX; hash_index = client_info->next) {
539 client_info = &(bond_info->rx_hashtbl[hash_index]);
540
541 if ((client_info->slave == slave) &&
Eric Dumazet885a1362009-09-01 06:31:18 +0000542 compare_ether_addr_64bits(client_info->mac_dst, mac_bcast)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543 client_info->ntt = 1;
544 ntt = 1;
545 }
546 }
547
548 // update the team's flag only after the whole iteration
549 if (ntt) {
550 bond_info->rx_ntt = 1;
551 //fasten the change
552 bond_info->rlb_update_retry_counter = RLB_UPDATE_RETRY;
553 }
554
555 _unlock_rx_hashtbl(bond);
556}
557
558/* mark all clients using src_ip to be updated */
Al Virod3bb52b2007-08-22 20:06:58 -0400559static void rlb_req_update_subnet_clients(struct bonding *bond, __be32 src_ip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560{
561 struct alb_bond_info *bond_info = &(BOND_ALB_INFO(bond));
562 struct rlb_client_info *client_info;
563 u32 hash_index;
564
565 _lock_rx_hashtbl(bond);
566
567 hash_index = bond_info->rx_hashtbl_head;
568 for (; hash_index != RLB_NULL_INDEX; hash_index = client_info->next) {
569 client_info = &(bond_info->rx_hashtbl[hash_index]);
570
571 if (!client_info->slave) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800572 pr_err("%s: Error: found a client with no channel in the client's hash table\n",
Mitch Williams4e0952c2005-11-09 10:34:57 -0800573 bond->dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574 continue;
575 }
576 /*update all clients using this src_ip, that are not assigned
577 * to the team's address (curr_active_slave) and have a known
578 * unicast mac address.
579 */
580 if ((client_info->ip_src == src_ip) &&
Eric Dumazet885a1362009-09-01 06:31:18 +0000581 compare_ether_addr_64bits(client_info->slave->dev->dev_addr,
582 bond->dev->dev_addr) &&
583 compare_ether_addr_64bits(client_info->mac_dst, mac_bcast)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584 client_info->ntt = 1;
585 bond_info->rx_ntt = 1;
586 }
587 }
588
589 _unlock_rx_hashtbl(bond);
590}
591
592/* Caller must hold both bond and ptr locks for read */
593static struct slave *rlb_choose_channel(struct sk_buff *skb, struct bonding *bond)
594{
595 struct alb_bond_info *bond_info = &(BOND_ALB_INFO(bond));
Arnaldo Carvalho de Meloa16aeb32007-03-10 16:07:19 -0300596 struct arp_pkt *arp = arp_pkt(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597 struct slave *assigned_slave;
598 struct rlb_client_info *client_info;
599 u32 hash_index = 0;
600
601 _lock_rx_hashtbl(bond);
602
603 hash_index = _simple_hash((u8 *)&arp->ip_dst, sizeof(arp->ip_src));
604 client_info = &(bond_info->rx_hashtbl[hash_index]);
605
606 if (client_info->assigned) {
607 if ((client_info->ip_src == arp->ip_src) &&
608 (client_info->ip_dst == arp->ip_dst)) {
609 /* the entry is already assigned to this client */
Eric Dumazet885a1362009-09-01 06:31:18 +0000610 if (compare_ether_addr_64bits(arp->mac_dst, mac_bcast)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611 /* update mac address from arp */
612 memcpy(client_info->mac_dst, arp->mac_dst, ETH_ALEN);
613 }
614
615 assigned_slave = client_info->slave;
616 if (assigned_slave) {
617 _unlock_rx_hashtbl(bond);
618 return assigned_slave;
619 }
620 } else {
621 /* the entry is already assigned to some other client,
622 * move the old client to primary (curr_active_slave) so
623 * that the new client can be assigned to this entry.
624 */
625 if (bond->curr_active_slave &&
626 client_info->slave != bond->curr_active_slave) {
627 client_info->slave = bond->curr_active_slave;
628 rlb_update_client(client_info);
629 }
630 }
631 }
632 /* assign a new slave */
633 assigned_slave = rlb_next_rx_slave(bond);
634
635 if (assigned_slave) {
636 client_info->ip_src = arp->ip_src;
637 client_info->ip_dst = arp->ip_dst;
638 /* arp->mac_dst is broadcast for arp reqeusts.
639 * will be updated with clients actual unicast mac address
640 * upon receiving an arp reply.
641 */
642 memcpy(client_info->mac_dst, arp->mac_dst, ETH_ALEN);
643 client_info->slave = assigned_slave;
644
Eric Dumazet885a1362009-09-01 06:31:18 +0000645 if (compare_ether_addr_64bits(client_info->mac_dst, mac_bcast)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646 client_info->ntt = 1;
647 bond->alb_info.rx_ntt = 1;
648 } else {
649 client_info->ntt = 0;
650 }
651
Jay Vosburghf35188f2010-07-21 12:14:47 +0000652 if (bond->vlgrp) {
Jay Vosburgh966bc6f2008-03-21 22:29:34 -0700653 if (!vlan_get_tag(skb, &client_info->vlan_id))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654 client_info->tag = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655 }
656
657 if (!client_info->assigned) {
658 u32 prev_tbl_head = bond_info->rx_hashtbl_head;
659 bond_info->rx_hashtbl_head = hash_index;
660 client_info->next = prev_tbl_head;
661 if (prev_tbl_head != RLB_NULL_INDEX) {
662 bond_info->rx_hashtbl[prev_tbl_head].prev =
663 hash_index;
664 }
665 client_info->assigned = 1;
666 }
667 }
668
669 _unlock_rx_hashtbl(bond);
670
671 return assigned_slave;
672}
673
674/* chooses (and returns) transmit channel for arp reply
675 * does not choose channel for other arp types since they are
676 * sent on the curr_active_slave
677 */
678static struct slave *rlb_arp_xmit(struct sk_buff *skb, struct bonding *bond)
679{
Arnaldo Carvalho de Meloa16aeb32007-03-10 16:07:19 -0300680 struct arp_pkt *arp = arp_pkt(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681 struct slave *tx_slave = NULL;
682
Brian Haleyf14c4e42008-09-02 10:08:08 -0400683 if (arp->op_code == htons(ARPOP_REPLY)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684 /* the arp must be sent on the selected
685 * rx channel
686 */
687 tx_slave = rlb_choose_channel(skb, bond);
688 if (tx_slave) {
689 memcpy(arp->mac_src,tx_slave->dev->dev_addr, ETH_ALEN);
690 }
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -0800691 pr_debug("Server sent ARP Reply packet\n");
Brian Haleyf14c4e42008-09-02 10:08:08 -0400692 } else if (arp->op_code == htons(ARPOP_REQUEST)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693 /* Create an entry in the rx_hashtbl for this client as a
694 * place holder.
695 * When the arp reply is received the entry will be updated
696 * with the correct unicast address of the client.
697 */
698 rlb_choose_channel(skb, bond);
699
700 /* The ARP relpy packets must be delayed so that
701 * they can cancel out the influence of the ARP request.
702 */
703 bond->alb_info.rlb_update_delay_counter = RLB_UPDATE_DELAY;
704
705 /* arp requests are broadcast and are sent on the primary
706 * the arp request will collapse all clients on the subnet to
707 * the primary slave. We must register these clients to be
708 * updated with their assigned mac.
709 */
710 rlb_req_update_subnet_clients(bond, arp->ip_src);
Holger Eitzenberger5a03cdb2008-12-09 23:09:22 -0800711 pr_debug("Server sent ARP Request packet\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712 }
713
714 return tx_slave;
715}
716
717/* Caller must hold bond lock for read */
718static void rlb_rebalance(struct bonding *bond)
719{
720 struct alb_bond_info *bond_info = &(BOND_ALB_INFO(bond));
721 struct slave *assigned_slave;
722 struct rlb_client_info *client_info;
723 int ntt;
724 u32 hash_index;
725
726 _lock_rx_hashtbl(bond);
727
728 ntt = 0;
729 hash_index = bond_info->rx_hashtbl_head;
730 for (; hash_index != RLB_NULL_INDEX; hash_index = client_info->next) {
731 client_info = &(bond_info->rx_hashtbl[hash_index]);
732 assigned_slave = rlb_next_rx_slave(bond);
733 if (assigned_slave && (client_info->slave != assigned_slave)) {
734 client_info->slave = assigned_slave;
735 client_info->ntt = 1;
736 ntt = 1;
737 }
738 }
739
740 /* update the team's flag only after the whole iteration */
741 if (ntt) {
742 bond_info->rx_ntt = 1;
743 }
744 _unlock_rx_hashtbl(bond);
745}
746
747/* Caller must hold rx_hashtbl lock */
748static void rlb_init_table_entry(struct rlb_client_info *entry)
749{
750 memset(entry, 0, sizeof(struct rlb_client_info));
751 entry->next = RLB_NULL_INDEX;
752 entry->prev = RLB_NULL_INDEX;
753}
754
755static int rlb_initialize(struct bonding *bond)
756{
757 struct alb_bond_info *bond_info = &(BOND_ALB_INFO(bond));
758 struct packet_type *pk_type = &(BOND_ALB_INFO(bond).rlb_pkt_type);
Mitch Williams0d206a32005-11-09 10:35:30 -0800759 struct rlb_client_info *new_hashtbl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760 int size = RLB_HASH_TABLE_SIZE * sizeof(struct rlb_client_info);
761 int i;
762
763 spin_lock_init(&(bond_info->rx_hashtbl_lock));
764
Mitch Williams0d206a32005-11-09 10:35:30 -0800765 new_hashtbl = kmalloc(size, GFP_KERNEL);
766 if (!new_hashtbl) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800767 pr_err("%s: Error: Failed to allocate RLB hash table\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768 bond->dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769 return -1;
770 }
Mitch Williams0d206a32005-11-09 10:35:30 -0800771 _lock_rx_hashtbl(bond);
772
773 bond_info->rx_hashtbl = new_hashtbl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774
775 bond_info->rx_hashtbl_head = RLB_NULL_INDEX;
776
777 for (i = 0; i < RLB_HASH_TABLE_SIZE; i++) {
778 rlb_init_table_entry(bond_info->rx_hashtbl + i);
779 }
780
781 _unlock_rx_hashtbl(bond);
782
783 /*initialize packet type*/
Harvey Harrison09640e62009-02-01 00:45:17 -0800784 pk_type->type = cpu_to_be16(ETH_P_ARP);
Greg Edwardsd8190df2010-07-23 10:02:04 +0000785 pk_type->dev = bond->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786 pk_type->func = rlb_arp_recv;
787
788 /* register to receive ARPs */
789 dev_add_pack(pk_type);
790
791 return 0;
792}
793
794static void rlb_deinitialize(struct bonding *bond)
795{
796 struct alb_bond_info *bond_info = &(BOND_ALB_INFO(bond));
797
798 dev_remove_pack(&(bond_info->rlb_pkt_type));
799
800 _lock_rx_hashtbl(bond);
801
802 kfree(bond_info->rx_hashtbl);
803 bond_info->rx_hashtbl = NULL;
804 bond_info->rx_hashtbl_head = RLB_NULL_INDEX;
805
806 _unlock_rx_hashtbl(bond);
807}
808
809static void rlb_clear_vlan(struct bonding *bond, unsigned short vlan_id)
810{
811 struct alb_bond_info *bond_info = &(BOND_ALB_INFO(bond));
812 u32 curr_index;
813
814 _lock_rx_hashtbl(bond);
815
816 curr_index = bond_info->rx_hashtbl_head;
817 while (curr_index != RLB_NULL_INDEX) {
818 struct rlb_client_info *curr = &(bond_info->rx_hashtbl[curr_index]);
819 u32 next_index = bond_info->rx_hashtbl[curr_index].next;
820 u32 prev_index = bond_info->rx_hashtbl[curr_index].prev;
821
822 if (curr->tag && (curr->vlan_id == vlan_id)) {
823 if (curr_index == bond_info->rx_hashtbl_head) {
824 bond_info->rx_hashtbl_head = next_index;
825 }
826 if (prev_index != RLB_NULL_INDEX) {
827 bond_info->rx_hashtbl[prev_index].next = next_index;
828 }
829 if (next_index != RLB_NULL_INDEX) {
830 bond_info->rx_hashtbl[next_index].prev = prev_index;
831 }
832
833 rlb_init_table_entry(curr);
834 }
835
836 curr_index = next_index;
837 }
838
839 _unlock_rx_hashtbl(bond);
840}
841
842/*********************** tlb/rlb shared functions *********************/
843
844static void alb_send_learning_packets(struct slave *slave, u8 mac_addr[])
845{
846 struct bonding *bond = bond_get_bond_by_slave(slave);
847 struct learning_pkt pkt;
848 int size = sizeof(struct learning_pkt);
849 int i;
850
851 memset(&pkt, 0, size);
852 memcpy(pkt.mac_dst, mac_addr, ETH_ALEN);
853 memcpy(pkt.mac_src, mac_addr, ETH_ALEN);
Harvey Harrison09640e62009-02-01 00:45:17 -0800854 pkt.type = cpu_to_be16(ETH_P_LOOP);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855
856 for (i = 0; i < MAX_LP_BURST; i++) {
857 struct sk_buff *skb;
858 char *data;
859
860 skb = dev_alloc_skb(size);
861 if (!skb) {
862 return;
863 }
864
865 data = skb_put(skb, size);
866 memcpy(data, &pkt, size);
867
Arnaldo Carvalho de Melo459a98e2007-03-19 15:30:44 -0700868 skb_reset_mac_header(skb);
Arnaldo Carvalho de Melob0e380b2007-04-10 21:21:55 -0700869 skb->network_header = skb->mac_header + ETH_HLEN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870 skb->protocol = pkt.type;
871 skb->priority = TC_PRIO_CONTROL;
872 skb->dev = slave->dev;
873
Jay Vosburghf35188f2010-07-21 12:14:47 +0000874 if (bond->vlgrp) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875 struct vlan_entry *vlan;
876
877 vlan = bond_next_vlan(bond,
878 bond->alb_info.current_alb_vlan);
879
880 bond->alb_info.current_alb_vlan = vlan;
881 if (!vlan) {
882 kfree_skb(skb);
883 continue;
884 }
885
886 skb = vlan_put_tag(skb, vlan->vlan_id);
887 if (!skb) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800888 pr_err("%s: Error: failed to insert VLAN tag\n",
Mitch Williams4e0952c2005-11-09 10:34:57 -0800889 bond->dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890 continue;
891 }
892 }
893
894 dev_queue_xmit(skb);
895 }
896}
897
898/* hw is a boolean parameter that determines whether we should try and
899 * set the hw address of the device as well as the hw address of the
900 * net_device
901 */
902static int alb_set_slave_mac_addr(struct slave *slave, u8 addr[], int hw)
903{
904 struct net_device *dev = slave->dev;
905 struct sockaddr s_addr;
906
907 if (!hw) {
908 memcpy(dev->dev_addr, addr, dev->addr_len);
909 return 0;
910 }
911
912 /* for rlb each slave must have a unique hw mac addresses so that */
913 /* each slave will receive packets destined to a different mac */
914 memcpy(s_addr.sa_data, addr, dev->addr_len);
915 s_addr.sa_family = dev->type;
916 if (dev_set_mac_address(dev, &s_addr)) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -0800917 pr_err("%s: Error: dev_set_mac_address of dev %s failed!\n"
918 "ALB mode requires that the base driver support setting the hw address also when the network device's interface is open\n",
Mitch Williams4e0952c2005-11-09 10:34:57 -0800919 dev->master->name, dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700920 return -EOPNOTSUPP;
921 }
922 return 0;
923}
924
Jay Vosburgh059fe7a2007-10-17 17:37:49 -0700925/*
926 * Swap MAC addresses between two slaves.
927 *
928 * Called with RTNL held, and no other locks.
929 *
930 */
931
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932static void alb_swap_mac_addr(struct bonding *bond, struct slave *slave1, struct slave *slave2)
933{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934 u8 tmp_mac_addr[ETH_ALEN];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700935
936 memcpy(tmp_mac_addr, slave1->dev->dev_addr, ETH_ALEN);
937 alb_set_slave_mac_addr(slave1, slave2->dev->dev_addr, bond->alb_info.rlb_enabled);
938 alb_set_slave_mac_addr(slave2, tmp_mac_addr, bond->alb_info.rlb_enabled);
939
Jay Vosburgh059fe7a2007-10-17 17:37:49 -0700940}
941
942/*
943 * Send learning packets after MAC address swap.
944 *
Jay Vosburgh25433312008-01-17 16:24:59 -0800945 * Called with RTNL and no other locks
Jay Vosburgh059fe7a2007-10-17 17:37:49 -0700946 */
947static void alb_fasten_mac_swap(struct bonding *bond, struct slave *slave1,
948 struct slave *slave2)
949{
950 int slaves_state_differ = (SLAVE_IS_OK(slave1) != SLAVE_IS_OK(slave2));
951 struct slave *disabled_slave = NULL;
952
Jay Vosburgh25433312008-01-17 16:24:59 -0800953 ASSERT_RTNL();
954
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955 /* fasten the change in the switch */
956 if (SLAVE_IS_OK(slave1)) {
957 alb_send_learning_packets(slave1, slave1->dev->dev_addr);
958 if (bond->alb_info.rlb_enabled) {
959 /* inform the clients that the mac address
960 * has changed
961 */
962 rlb_req_update_slave_clients(bond, slave1);
963 }
964 } else {
965 disabled_slave = slave1;
966 }
967
968 if (SLAVE_IS_OK(slave2)) {
969 alb_send_learning_packets(slave2, slave2->dev->dev_addr);
970 if (bond->alb_info.rlb_enabled) {
971 /* inform the clients that the mac address
972 * has changed
973 */
974 rlb_req_update_slave_clients(bond, slave2);
975 }
976 } else {
977 disabled_slave = slave2;
978 }
979
980 if (bond->alb_info.rlb_enabled && slaves_state_differ) {
981 /* A disabled slave was assigned an active mac addr */
982 rlb_teach_disabled_mac_on_primary(bond,
983 disabled_slave->dev->dev_addr);
984 }
985}
986
987/**
988 * alb_change_hw_addr_on_detach
989 * @bond: bonding we're working on
990 * @slave: the slave that was just detached
991 *
992 * We assume that @slave was already detached from the slave list.
993 *
994 * If @slave's permanent hw address is different both from its current
995 * address and from @bond's address, then somewhere in the bond there's
996 * a slave that has @slave's permanet address as its current address.
997 * We'll make sure that that slave no longer uses @slave's permanent address.
998 *
Jay Vosburgh25433312008-01-17 16:24:59 -0800999 * Caller must hold RTNL and no other locks
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000 */
1001static void alb_change_hw_addr_on_detach(struct bonding *bond, struct slave *slave)
1002{
1003 int perm_curr_diff;
1004 int perm_bond_diff;
1005
Eric Dumazet885a1362009-09-01 06:31:18 +00001006 perm_curr_diff = compare_ether_addr_64bits(slave->perm_hwaddr,
1007 slave->dev->dev_addr);
1008 perm_bond_diff = compare_ether_addr_64bits(slave->perm_hwaddr,
1009 bond->dev->dev_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001010
1011 if (perm_curr_diff && perm_bond_diff) {
1012 struct slave *tmp_slave;
1013 int i, found = 0;
1014
1015 bond_for_each_slave(bond, tmp_slave, i) {
Eric Dumazet885a1362009-09-01 06:31:18 +00001016 if (!compare_ether_addr_64bits(slave->perm_hwaddr,
1017 tmp_slave->dev->dev_addr)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001018 found = 1;
1019 break;
1020 }
1021 }
1022
1023 if (found) {
Jay Vosburgh059fe7a2007-10-17 17:37:49 -07001024 /* locking: needs RTNL and nothing else */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001025 alb_swap_mac_addr(bond, slave, tmp_slave);
Jay Vosburgh059fe7a2007-10-17 17:37:49 -07001026 alb_fasten_mac_swap(bond, slave, tmp_slave);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001027 }
1028 }
1029}
1030
1031/**
1032 * alb_handle_addr_collision_on_attach
1033 * @bond: bonding we're working on
1034 * @slave: the slave that was just attached
1035 *
1036 * checks uniqueness of slave's mac address and handles the case the
1037 * new slave uses the bonds mac address.
1038 *
1039 * If the permanent hw address of @slave is @bond's hw address, we need to
1040 * find a different hw address to give @slave, that isn't in use by any other
1041 * slave in the bond. This address must be, of course, one of the premanent
1042 * addresses of the other slaves.
1043 *
1044 * We go over the slave list, and for each slave there we compare its
1045 * permanent hw address with the current address of all the other slaves.
1046 * If no match was found, then we've found a slave with a permanent address
1047 * that isn't used by any other slave in the bond, so we can assign it to
1048 * @slave.
1049 *
1050 * assumption: this function is called before @slave is attached to the
1051 * bond slave list.
1052 *
1053 * caller must hold the bond lock for write since the mac addresses are compared
1054 * and may be swapped.
1055 */
1056static int alb_handle_addr_collision_on_attach(struct bonding *bond, struct slave *slave)
1057{
1058 struct slave *tmp_slave1, *tmp_slave2, *free_mac_slave;
1059 struct slave *has_bond_addr = bond->curr_active_slave;
1060 int i, j, found = 0;
1061
1062 if (bond->slave_cnt == 0) {
1063 /* this is the first slave */
1064 return 0;
1065 }
1066
1067 /* if slave's mac address differs from bond's mac address
1068 * check uniqueness of slave's mac address against the other
1069 * slaves in the bond.
1070 */
Eric Dumazet885a1362009-09-01 06:31:18 +00001071 if (compare_ether_addr_64bits(slave->perm_hwaddr, bond->dev->dev_addr)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001072 bond_for_each_slave(bond, tmp_slave1, i) {
Eric Dumazet885a1362009-09-01 06:31:18 +00001073 if (!compare_ether_addr_64bits(tmp_slave1->dev->dev_addr,
1074 slave->dev->dev_addr)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001075 found = 1;
1076 break;
1077 }
1078 }
1079
John W. Linville6b38aef2005-07-28 15:00:15 -04001080 if (!found)
1081 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001082
John W. Linville6b38aef2005-07-28 15:00:15 -04001083 /* Try setting slave mac to bond address and fall-through
1084 to code handling that situation below... */
1085 alb_set_slave_mac_addr(slave, bond->dev->dev_addr,
1086 bond->alb_info.rlb_enabled);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001087 }
1088
1089 /* The slave's address is equal to the address of the bond.
1090 * Search for a spare address in the bond for this slave.
1091 */
1092 free_mac_slave = NULL;
1093
1094 bond_for_each_slave(bond, tmp_slave1, i) {
1095 found = 0;
1096 bond_for_each_slave(bond, tmp_slave2, j) {
Eric Dumazet885a1362009-09-01 06:31:18 +00001097 if (!compare_ether_addr_64bits(tmp_slave1->perm_hwaddr,
1098 tmp_slave2->dev->dev_addr)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001099 found = 1;
1100 break;
1101 }
1102 }
1103
1104 if (!found) {
1105 /* no slave has tmp_slave1's perm addr
1106 * as its curr addr
1107 */
1108 free_mac_slave = tmp_slave1;
1109 break;
1110 }
1111
1112 if (!has_bond_addr) {
Eric Dumazet885a1362009-09-01 06:31:18 +00001113 if (!compare_ether_addr_64bits(tmp_slave1->dev->dev_addr,
1114 bond->dev->dev_addr)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001115
1116 has_bond_addr = tmp_slave1;
1117 }
1118 }
1119 }
1120
1121 if (free_mac_slave) {
1122 alb_set_slave_mac_addr(slave, free_mac_slave->perm_hwaddr,
1123 bond->alb_info.rlb_enabled);
1124
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001125 pr_warning("%s: Warning: the hw address of slave %s is in use by the bond; giving it the hw address of %s\n",
Jiri Pirkoe5e2a8f2009-08-13 04:11:52 +00001126 bond->dev->name, slave->dev->name,
1127 free_mac_slave->dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001128
1129 } else if (has_bond_addr) {
Joe Perchesa4aee5c2009-12-13 20:06:07 -08001130 pr_err("%s: Error: the hw address of slave %s is in use by the bond; couldn't find a slave with a free hw address to give it (this should not have happened)\n",
Mitch Williams4e0952c2005-11-09 10:34:57 -08001131 bond->dev->name, slave->dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001132 return -EFAULT;
1133 }
1134
1135 return 0;
1136}
1137
1138/**
1139 * alb_set_mac_address
1140 * @bond:
1141 * @addr:
1142 *
1143 * In TLB mode all slaves are configured to the bond's hw address, but set
1144 * their dev_addr field to different addresses (based on their permanent hw
1145 * addresses).
1146 *
1147 * For each slave, this function sets the interface to the new address and then
1148 * changes its dev_addr field to its previous value.
1149 *
1150 * Unwinding assumes bond's mac address has not yet changed.
1151 */
1152static int alb_set_mac_address(struct bonding *bond, void *addr)
1153{
1154 struct sockaddr sa;
1155 struct slave *slave, *stop_at;
1156 char tmp_addr[ETH_ALEN];
1157 int res;
1158 int i;
1159
1160 if (bond->alb_info.rlb_enabled) {
1161 return 0;
1162 }
1163
1164 bond_for_each_slave(bond, slave, i) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001165 /* save net_device's current hw address */
1166 memcpy(tmp_addr, slave->dev->dev_addr, ETH_ALEN);
1167
1168 res = dev_set_mac_address(slave->dev, addr);
1169
1170 /* restore net_device's hw address */
1171 memcpy(slave->dev->dev_addr, tmp_addr, ETH_ALEN);
1172
Stephen Hemmingereb7cc592008-11-19 21:56:05 -08001173 if (res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001174 goto unwind;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001175 }
1176
1177 return 0;
1178
1179unwind:
1180 memcpy(sa.sa_data, bond->dev->dev_addr, bond->dev->addr_len);
1181 sa.sa_family = bond->dev->type;
1182
1183 /* unwind from head to the slave that failed */
1184 stop_at = slave;
1185 bond_for_each_slave_from_to(bond, slave, i, bond->first_slave, stop_at) {
1186 memcpy(tmp_addr, slave->dev->dev_addr, ETH_ALEN);
1187 dev_set_mac_address(slave->dev, &sa);
1188 memcpy(slave->dev->dev_addr, tmp_addr, ETH_ALEN);
1189 }
1190
1191 return res;
1192}
1193
1194/************************ exported alb funcions ************************/
1195
1196int bond_alb_initialize(struct bonding *bond, int rlb_enabled)
1197{
1198 int res;
1199
1200 res = tlb_initialize(bond);
1201 if (res) {
1202 return res;
1203 }
1204
1205 if (rlb_enabled) {
1206 bond->alb_info.rlb_enabled = 1;
1207 /* initialize rlb */
1208 res = rlb_initialize(bond);
1209 if (res) {
1210 tlb_deinitialize(bond);
1211 return res;
1212 }
Mitch Williamsb76850a2005-11-09 10:35:35 -08001213 } else {
1214 bond->alb_info.rlb_enabled = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001215 }
1216
1217 return 0;
1218}
1219
1220void bond_alb_deinitialize(struct bonding *bond)
1221{
1222 struct alb_bond_info *bond_info = &(BOND_ALB_INFO(bond));
1223
1224 tlb_deinitialize(bond);
1225
1226 if (bond_info->rlb_enabled) {
1227 rlb_deinitialize(bond);
1228 }
1229}
1230
1231int bond_alb_xmit(struct sk_buff *skb, struct net_device *bond_dev)
1232{
Wang Chen454d7c92008-11-12 23:37:49 -08001233 struct bonding *bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001234 struct ethhdr *eth_data;
1235 struct alb_bond_info *bond_info = &(BOND_ALB_INFO(bond));
1236 struct slave *tx_slave = NULL;
Al Virod3bb52b2007-08-22 20:06:58 -04001237 static const __be32 ip_bcast = htonl(0xffffffff);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001238 int hash_size = 0;
1239 int do_tx_balance = 1;
1240 u32 hash_index = 0;
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07001241 const u8 *hash_start = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001242 int res = 1;
Vlad Yasevich2d1ea192008-08-28 15:38:41 -04001243 struct ipv6hdr *ip6hdr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001244
Arnaldo Carvalho de Melo459a98e2007-03-19 15:30:44 -07001245 skb_reset_mac_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001246 eth_data = eth_hdr(skb);
1247
1248 /* make sure that the curr_active_slave and the slaves list do
1249 * not change during tx
1250 */
1251 read_lock(&bond->lock);
1252 read_lock(&bond->curr_slave_lock);
1253
1254 if (!BOND_IS_OK(bond)) {
1255 goto out;
1256 }
1257
1258 switch (ntohs(skb->protocol)) {
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07001259 case ETH_P_IP: {
1260 const struct iphdr *iph = ip_hdr(skb);
1261
Eric Dumazet885a1362009-09-01 06:31:18 +00001262 if (!compare_ether_addr_64bits(eth_data->h_dest, mac_bcast) ||
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07001263 (iph->daddr == ip_bcast) ||
1264 (iph->protocol == IPPROTO_IGMP)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001265 do_tx_balance = 0;
1266 break;
1267 }
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07001268 hash_start = (char *)&(iph->daddr);
1269 hash_size = sizeof(iph->daddr);
1270 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001271 break;
1272 case ETH_P_IPV6:
Vlad Yasevich2d1ea192008-08-28 15:38:41 -04001273 /* IPv6 doesn't really use broadcast mac address, but leave
1274 * that here just in case.
1275 */
Eric Dumazet885a1362009-09-01 06:31:18 +00001276 if (!compare_ether_addr_64bits(eth_data->h_dest, mac_bcast)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001277 do_tx_balance = 0;
1278 break;
1279 }
1280
Vlad Yasevich2d1ea192008-08-28 15:38:41 -04001281 /* IPv6 uses all-nodes multicast as an equivalent to
1282 * broadcasts in IPv4.
1283 */
Eric Dumazet885a1362009-09-01 06:31:18 +00001284 if (!compare_ether_addr_64bits(eth_data->h_dest, mac_v6_allmcast)) {
Vlad Yasevich2d1ea192008-08-28 15:38:41 -04001285 do_tx_balance = 0;
1286 break;
1287 }
1288
1289 /* Additianally, DAD probes should not be tx-balanced as that
1290 * will lead to false positives for duplicate addresses and
1291 * prevent address configuration from working.
1292 */
1293 ip6hdr = ipv6_hdr(skb);
1294 if (ipv6_addr_any(&ip6hdr->saddr)) {
1295 do_tx_balance = 0;
1296 break;
1297 }
1298
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -07001299 hash_start = (char *)&(ipv6_hdr(skb)->daddr);
1300 hash_size = sizeof(ipv6_hdr(skb)->daddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001301 break;
1302 case ETH_P_IPX:
Al Virod3bb52b2007-08-22 20:06:58 -04001303 if (ipx_hdr(skb)->ipx_checksum != IPX_NO_CHECKSUM) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001304 /* something is wrong with this packet */
1305 do_tx_balance = 0;
1306 break;
1307 }
1308
1309 if (ipx_hdr(skb)->ipx_type != IPX_TYPE_NCP) {
1310 /* The only protocol worth balancing in
1311 * this family since it has an "ARP" like
1312 * mechanism
1313 */
1314 do_tx_balance = 0;
1315 break;
1316 }
1317
1318 hash_start = (char*)eth_data->h_dest;
1319 hash_size = ETH_ALEN;
1320 break;
1321 case ETH_P_ARP:
1322 do_tx_balance = 0;
1323 if (bond_info->rlb_enabled) {
1324 tx_slave = rlb_arp_xmit(skb, bond);
1325 }
1326 break;
1327 default:
1328 do_tx_balance = 0;
1329 break;
1330 }
1331
1332 if (do_tx_balance) {
1333 hash_index = _simple_hash(hash_start, hash_size);
1334 tx_slave = tlb_choose_channel(bond, hash_index, skb->len);
1335 }
1336
1337 if (!tx_slave) {
1338 /* unbalanced or unassigned, send through primary */
1339 tx_slave = bond->curr_active_slave;
1340 bond_info->unbalanced_load += skb->len;
1341 }
1342
1343 if (tx_slave && SLAVE_IS_OK(tx_slave)) {
1344 if (tx_slave != bond->curr_active_slave) {
1345 memcpy(eth_data->h_source,
1346 tx_slave->dev->dev_addr,
1347 ETH_ALEN);
1348 }
1349
1350 res = bond_dev_queue_xmit(bond, skb, tx_slave->dev);
1351 } else {
1352 if (tx_slave) {
1353 tlb_clear_slave(bond, tx_slave, 0);
1354 }
1355 }
1356
1357out:
1358 if (res) {
1359 /* no suitable interface, frame not sent */
1360 dev_kfree_skb(skb);
1361 }
1362 read_unlock(&bond->curr_slave_lock);
1363 read_unlock(&bond->lock);
Patrick McHardyec634fe2009-07-05 19:23:38 -07001364 return NETDEV_TX_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001365}
1366
Jay Vosburgh1b76b312007-10-17 17:37:45 -07001367void bond_alb_monitor(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001368{
Jay Vosburgh1b76b312007-10-17 17:37:45 -07001369 struct bonding *bond = container_of(work, struct bonding,
1370 alb_work.work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001371 struct alb_bond_info *bond_info = &(BOND_ALB_INFO(bond));
1372 struct slave *slave;
1373 int i;
1374
1375 read_lock(&bond->lock);
1376
1377 if (bond->kill_timers) {
1378 goto out;
1379 }
1380
1381 if (bond->slave_cnt == 0) {
1382 bond_info->tx_rebalance_counter = 0;
1383 bond_info->lp_counter = 0;
1384 goto re_arm;
1385 }
1386
1387 bond_info->tx_rebalance_counter++;
1388 bond_info->lp_counter++;
1389
1390 /* send learning packets */
1391 if (bond_info->lp_counter >= BOND_ALB_LP_TICKS) {
1392 /* change of curr_active_slave involves swapping of mac addresses.
1393 * in order to avoid this swapping from happening while
1394 * sending the learning packets, the curr_slave_lock must be held for
1395 * read.
1396 */
1397 read_lock(&bond->curr_slave_lock);
1398
1399 bond_for_each_slave(bond, slave, i) {
Mitch Williamse944ef72005-11-09 10:36:50 -08001400 alb_send_learning_packets(slave, slave->dev->dev_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001401 }
1402
1403 read_unlock(&bond->curr_slave_lock);
1404
1405 bond_info->lp_counter = 0;
1406 }
1407
1408 /* rebalance tx traffic */
1409 if (bond_info->tx_rebalance_counter >= BOND_TLB_REBALANCE_TICKS) {
1410
1411 read_lock(&bond->curr_slave_lock);
1412
1413 bond_for_each_slave(bond, slave, i) {
1414 tlb_clear_slave(bond, slave, 1);
1415 if (slave == bond->curr_active_slave) {
1416 SLAVE_TLB_INFO(slave).load =
1417 bond_info->unbalanced_load /
1418 BOND_TLB_REBALANCE_INTERVAL;
1419 bond_info->unbalanced_load = 0;
1420 }
1421 }
1422
1423 read_unlock(&bond->curr_slave_lock);
1424
1425 bond_info->tx_rebalance_counter = 0;
1426 }
1427
1428 /* handle rlb stuff */
1429 if (bond_info->rlb_enabled) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001430 if (bond_info->primary_is_promisc &&
1431 (++bond_info->rlb_promisc_timeout_counter >= RLB_PROMISC_TIMEOUT)) {
1432
Jay Vosburghd0e81b72007-10-17 17:37:51 -07001433 /*
1434 * dev_set_promiscuity requires rtnl and
1435 * nothing else.
1436 */
1437 read_unlock(&bond->lock);
1438 rtnl_lock();
1439
Linus Torvalds1da177e2005-04-16 15:20:36 -07001440 bond_info->rlb_promisc_timeout_counter = 0;
1441
1442 /* If the primary was set to promiscuous mode
1443 * because a slave was disabled then
1444 * it can now leave promiscuous mode.
1445 */
1446 dev_set_promiscuity(bond->curr_active_slave->dev, -1);
1447 bond_info->primary_is_promisc = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001448
Jay Vosburghd0e81b72007-10-17 17:37:51 -07001449 rtnl_unlock();
1450 read_lock(&bond->lock);
1451 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001452
1453 if (bond_info->rlb_rebalance) {
1454 bond_info->rlb_rebalance = 0;
1455 rlb_rebalance(bond);
1456 }
1457
1458 /* check if clients need updating */
1459 if (bond_info->rx_ntt) {
1460 if (bond_info->rlb_update_delay_counter) {
1461 --bond_info->rlb_update_delay_counter;
1462 } else {
1463 rlb_update_rx_clients(bond);
1464 if (bond_info->rlb_update_retry_counter) {
1465 --bond_info->rlb_update_retry_counter;
1466 } else {
1467 bond_info->rx_ntt = 0;
1468 }
1469 }
1470 }
1471 }
1472
1473re_arm:
Jay Vosburgh1b76b312007-10-17 17:37:45 -07001474 queue_delayed_work(bond->wq, &bond->alb_work, alb_delta_in_ticks);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001475out:
1476 read_unlock(&bond->lock);
1477}
1478
1479/* assumption: called before the slave is attached to the bond
1480 * and not locked by the bond lock
1481 */
1482int bond_alb_init_slave(struct bonding *bond, struct slave *slave)
1483{
1484 int res;
1485
1486 res = alb_set_slave_mac_addr(slave, slave->perm_hwaddr,
1487 bond->alb_info.rlb_enabled);
1488 if (res) {
1489 return res;
1490 }
1491
1492 /* caller must hold the bond lock for write since the mac addresses
1493 * are compared and may be swapped.
1494 */
Jay Vosburgh6603a6f2007-10-17 17:37:50 -07001495 read_lock(&bond->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001496
1497 res = alb_handle_addr_collision_on_attach(bond, slave);
1498
Jay Vosburgh6603a6f2007-10-17 17:37:50 -07001499 read_unlock(&bond->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001500
1501 if (res) {
1502 return res;
1503 }
1504
1505 tlb_init_slave(slave);
1506
1507 /* order a rebalance ASAP */
1508 bond->alb_info.tx_rebalance_counter = BOND_TLB_REBALANCE_TICKS;
1509
1510 if (bond->alb_info.rlb_enabled) {
1511 bond->alb_info.rlb_rebalance = 1;
1512 }
1513
1514 return 0;
1515}
1516
Jay Vosburgh25433312008-01-17 16:24:59 -08001517/*
1518 * Remove slave from tlb and rlb hash tables, and fix up MAC addresses
1519 * if necessary.
1520 *
1521 * Caller must hold RTNL and no other locks
1522 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001523void bond_alb_deinit_slave(struct bonding *bond, struct slave *slave)
1524{
1525 if (bond->slave_cnt > 1) {
1526 alb_change_hw_addr_on_detach(bond, slave);
1527 }
1528
1529 tlb_clear_slave(bond, slave, 0);
1530
1531 if (bond->alb_info.rlb_enabled) {
1532 bond->alb_info.next_rx_slave = NULL;
1533 rlb_clear_slave(bond, slave);
1534 }
1535}
1536
1537/* Caller must hold bond lock for read */
1538void bond_alb_handle_link_change(struct bonding *bond, struct slave *slave, char link)
1539{
1540 struct alb_bond_info *bond_info = &(BOND_ALB_INFO(bond));
1541
1542 if (link == BOND_LINK_DOWN) {
1543 tlb_clear_slave(bond, slave, 0);
1544 if (bond->alb_info.rlb_enabled) {
1545 rlb_clear_slave(bond, slave);
1546 }
1547 } else if (link == BOND_LINK_UP) {
1548 /* order a rebalance ASAP */
1549 bond_info->tx_rebalance_counter = BOND_TLB_REBALANCE_TICKS;
1550 if (bond->alb_info.rlb_enabled) {
1551 bond->alb_info.rlb_rebalance = 1;
1552 /* If the updelay module parameter is smaller than the
1553 * forwarding delay of the switch the rebalance will
1554 * not work because the rebalance arp replies will
1555 * not be forwarded to the clients..
1556 */
1557 }
1558 }
1559}
1560
1561/**
1562 * bond_alb_handle_active_change - assign new curr_active_slave
1563 * @bond: our bonding struct
1564 * @new_slave: new slave to assign
1565 *
1566 * Set the bond->curr_active_slave to @new_slave and handle
1567 * mac address swapping and promiscuity changes as needed.
1568 *
Jay Vosburgh059fe7a2007-10-17 17:37:49 -07001569 * If new_slave is NULL, caller must hold curr_slave_lock or
1570 * bond->lock for write.
1571 *
1572 * If new_slave is not NULL, caller must hold RTNL, bond->lock for
1573 * read and curr_slave_lock for write. Processing here may sleep, so
1574 * no other locks may be held.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001575 */
1576void bond_alb_handle_active_change(struct bonding *bond, struct slave *new_slave)
Hannes Eder1f78d9f2009-02-14 11:15:33 +00001577 __releases(&bond->curr_slave_lock)
1578 __releases(&bond->lock)
1579 __acquires(&bond->lock)
1580 __acquires(&bond->curr_slave_lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001581{
1582 struct slave *swap_slave;
1583 int i;
1584
1585 if (bond->curr_active_slave == new_slave) {
1586 return;
1587 }
1588
1589 if (bond->curr_active_slave && bond->alb_info.primary_is_promisc) {
1590 dev_set_promiscuity(bond->curr_active_slave->dev, -1);
1591 bond->alb_info.primary_is_promisc = 0;
1592 bond->alb_info.rlb_promisc_timeout_counter = 0;
1593 }
1594
1595 swap_slave = bond->curr_active_slave;
1596 bond->curr_active_slave = new_slave;
1597
1598 if (!new_slave || (bond->slave_cnt == 0)) {
1599 return;
1600 }
1601
1602 /* set the new curr_active_slave to the bonds mac address
1603 * i.e. swap mac addresses of old curr_active_slave and new curr_active_slave
1604 */
1605 if (!swap_slave) {
1606 struct slave *tmp_slave;
1607 /* find slave that is holding the bond's mac address */
1608 bond_for_each_slave(bond, tmp_slave, i) {
Eric Dumazet885a1362009-09-01 06:31:18 +00001609 if (!compare_ether_addr_64bits(tmp_slave->dev->dev_addr,
1610 bond->dev->dev_addr)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001611 swap_slave = tmp_slave;
1612 break;
1613 }
1614 }
1615 }
1616
Jay Vosburgh059fe7a2007-10-17 17:37:49 -07001617 /*
1618 * Arrange for swap_slave and new_slave to temporarily be
1619 * ignored so we can mess with their MAC addresses without
1620 * fear of interference from transmit activity.
1621 */
1622 if (swap_slave) {
1623 tlb_clear_slave(bond, swap_slave, 1);
1624 }
1625 tlb_clear_slave(bond, new_slave, 1);
1626
1627 write_unlock_bh(&bond->curr_slave_lock);
1628 read_unlock(&bond->lock);
1629
Jay Vosburghe0138a62008-01-17 16:24:58 -08001630 ASSERT_RTNL();
1631
Linus Torvalds1da177e2005-04-16 15:20:36 -07001632 /* curr_active_slave must be set before calling alb_swap_mac_addr */
1633 if (swap_slave) {
1634 /* swap mac address */
1635 alb_swap_mac_addr(bond, swap_slave, new_slave);
1636 } else {
1637 /* set the new_slave to the bond mac address */
1638 alb_set_slave_mac_addr(new_slave, bond->dev->dev_addr,
1639 bond->alb_info.rlb_enabled);
Jay Vosburgh059fe7a2007-10-17 17:37:49 -07001640 }
1641
Jay Vosburgh059fe7a2007-10-17 17:37:49 -07001642 if (swap_slave) {
1643 alb_fasten_mac_swap(bond, swap_slave, new_slave);
Jay Vosburgh25433312008-01-17 16:24:59 -08001644 read_lock(&bond->lock);
Jay Vosburgh059fe7a2007-10-17 17:37:49 -07001645 } else {
Jay Vosburgh25433312008-01-17 16:24:59 -08001646 read_lock(&bond->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001647 alb_send_learning_packets(new_slave, bond->dev->dev_addr);
1648 }
Jay Vosburgh059fe7a2007-10-17 17:37:49 -07001649
1650 write_lock_bh(&bond->curr_slave_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001651}
1652
Jay Vosburgh059fe7a2007-10-17 17:37:49 -07001653/*
1654 * Called with RTNL
1655 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001656int bond_alb_set_mac_address(struct net_device *bond_dev, void *addr)
Hannes Eder1f78d9f2009-02-14 11:15:33 +00001657 __acquires(&bond->lock)
Jay Vosburgh815bcc22009-05-04 09:03:37 +00001658 __releases(&bond->lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001659{
Wang Chen454d7c92008-11-12 23:37:49 -08001660 struct bonding *bond = netdev_priv(bond_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001661 struct sockaddr *sa = addr;
1662 struct slave *slave, *swap_slave;
1663 int res;
1664 int i;
1665
1666 if (!is_valid_ether_addr(sa->sa_data)) {
1667 return -EADDRNOTAVAIL;
1668 }
1669
1670 res = alb_set_mac_address(bond, addr);
1671 if (res) {
1672 return res;
1673 }
1674
1675 memcpy(bond_dev->dev_addr, sa->sa_data, bond_dev->addr_len);
1676
1677 /* If there is no curr_active_slave there is nothing else to do.
1678 * Otherwise we'll need to pass the new address to it and handle
1679 * duplications.
1680 */
1681 if (!bond->curr_active_slave) {
1682 return 0;
1683 }
1684
1685 swap_slave = NULL;
1686
1687 bond_for_each_slave(bond, slave, i) {
Eric Dumazet885a1362009-09-01 06:31:18 +00001688 if (!compare_ether_addr_64bits(slave->dev->dev_addr,
1689 bond_dev->dev_addr)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001690 swap_slave = slave;
1691 break;
1692 }
1693 }
1694
1695 if (swap_slave) {
1696 alb_swap_mac_addr(bond, swap_slave, bond->curr_active_slave);
Jay Vosburgh059fe7a2007-10-17 17:37:49 -07001697 alb_fasten_mac_swap(bond, swap_slave, bond->curr_active_slave);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001698 } else {
1699 alb_set_slave_mac_addr(bond->curr_active_slave, bond_dev->dev_addr,
1700 bond->alb_info.rlb_enabled);
1701
Jay Vosburgh815bcc22009-05-04 09:03:37 +00001702 read_lock(&bond->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001703 alb_send_learning_packets(bond->curr_active_slave, bond_dev->dev_addr);
1704 if (bond->alb_info.rlb_enabled) {
1705 /* inform clients mac address has changed */
1706 rlb_req_update_slave_clients(bond, bond->curr_active_slave);
1707 }
Jay Vosburgh815bcc22009-05-04 09:03:37 +00001708 read_unlock(&bond->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001709 }
1710
Linus Torvalds1da177e2005-04-16 15:20:36 -07001711 return 0;
1712}
1713
1714void bond_alb_clear_vlan(struct bonding *bond, unsigned short vlan_id)
1715{
1716 if (bond->alb_info.current_alb_vlan &&
1717 (bond->alb_info.current_alb_vlan->vlan_id == vlan_id)) {
1718 bond->alb_info.current_alb_vlan = NULL;
1719 }
1720
1721 if (bond->alb_info.rlb_enabled) {
1722 rlb_clear_vlan(bond, vlan_id);
1723 }
1724}
1725